From d8e639c71ae9ee64e08a97bb589e24bbd0f686e7 Mon Sep 17 00:00:00 2001 From: sppo-ethx-f66c root user Date: Tue, 25 Sep 2018 13:00:34 -0500 Subject: [PATCH 001/567] Add ability to show/install unstable and RC releases from the command line --- src/Console/AppConsole.vala | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/Console/AppConsole.vala b/src/Console/AppConsole.vala index 2ea735fc..6cf0eb89 100644 --- a/src/Console/AppConsole.vala +++ b/src/Console/AppConsole.vala @@ -93,6 +93,7 @@ public class AppConsole : GLib.Object { msg += " --purge-old-kernels " + _("Remove installed kernels older than running kernel") + "\n"; msg += " --download " + _("Download packages for specified kernel") + "\n"; msg += " --clean-cache " + _("Remove files from application cache") + "\n"; + msg += " --show-unstable " + _("Show unstable and RC releases") + "\n"; msg += "\n"; msg += _("Options") + ":\n"; msg += "\n"; @@ -171,6 +172,10 @@ public class AppConsole : GLib.Object { cmd = args[k].down(); break; + case "--show-unstable": + LinuxKernel.hide_unstable = false; + break; + case "--download": case "--install": case "--remove": From a597677d85832439a93e646896dab647f5a0e8fa Mon Sep 17 00:00:00 2001 From: sppo-ethx-f66c root user Date: Tue, 25 Sep 2018 13:13:45 -0500 Subject: [PATCH 002/567] CLI should also check for dependencies --- src/Console/AppConsole.vala | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/Console/AppConsole.vala b/src/Console/AppConsole.vala index 6cf0eb89..04c444eb 100644 --- a/src/Console/AppConsole.vala +++ b/src/Console/AppConsole.vala @@ -57,6 +57,12 @@ public class AppConsole : GLib.Object { LOG_TIMESTAMP = false; + //check dependencies + string message; + if (!Main.check_dependencies(out message)) { + exit(1); + } + App = new Main(args, false); var console = new AppConsole(); From ac0d486b8415c2d01f48df8283aa18af74f13e3f Mon Sep 17 00:00:00 2001 From: sppo-ethx-f66c root user Date: Wed, 26 Sep 2018 13:56:48 -0500 Subject: [PATCH 003/567] Expand concept of "latest" to include unstable/RC if the user has requested to see unstable/RC releases --- src/Common/LinuxKernel.vala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Common/LinuxKernel.vala b/src/Common/LinuxKernel.vala index 09d2500c..9ef1e7c4 100644 --- a/src/Common/LinuxKernel.vala +++ b/src/Common/LinuxKernel.vala @@ -632,7 +632,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { } // skip unstable - if (kern.is_unstable){ + if (hide_unstable && kern.is_unstable){ continue; } From be3e61c62dcd7c7fe611a18e47197ca1fec05c68 Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Fri, 8 Mar 2019 22:08:52 -0500 Subject: [PATCH 004/567] Update README.md --- README.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 8e78a8e4..2bb0a805 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,12 @@ This is a tool for installing the latest mainline Linux kernel on Ubuntu-based d ### About This Fork -Since the original author stopped maintaining the free version of Ukuu and turned to a [paid version](https://teejeetech.in/tag/ukuu/), I forked this project and will be maintaining and adding features to it here. +Since the original author stopped maintaining the free version of Ukuu and turned to a [paid version](https://teejeetech.in/tag/ukuu/), Several people have forked this project, and this is but one more. This fork starts with https://github.com/stevenpwered/ukuu, and merges in https://github.com/cloyce/ukuu, and then I intend to add my own tweaks: +* First TODO Item (not done yet): STOP SAVING 6 GIGS OF KERNEL PACKAGES IN ~/.cache/ukuu HOLY GOBSMACK WTF ????? +
+bkw@negre:~$ du -sh .cache/ukuu
+5.5G    .cache/ukuu
+
### Enhancements From ab321383be9691d481ad5bd5679fcbd49babe9ee Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Fri, 8 Mar 2019 22:10:50 -0500 Subject: [PATCH 005/567] Update README.md --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 2bb0a805..0431cee6 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ This is a tool for installing the latest mainline Linux kernel on Ubuntu-based d ### About This Fork -Since the original author stopped maintaining the free version of Ukuu and turned to a [paid version](https://teejeetech.in/tag/ukuu/), Several people have forked this project, and this is but one more. This fork starts with https://github.com/stevenpwered/ukuu, and merges in https://github.com/cloyce/ukuu, and then I intend to add my own tweaks: +Since the original author stopped maintaining the free version of Ukuu and turned to a [paid version](https://teejeetech.in/tag/ukuu/), Several people have forked this project, and this is but one more. This fork started with https://github.com/stevenpwered/ukuu, and merged in https://github.com/cloyce/ukuu, and then I intend to add my own tweaks: * First TODO Item (not done yet): STOP SAVING 6 GIGS OF KERNEL PACKAGES IN ~/.cache/ukuu HOLY GOBSMACK WTF ?????
 bkw@negre:~$ du -sh .cache/ukuu
@@ -37,7 +37,7 @@ _Settings Window_
 _Console Options_
 
 ### Downloads & Source Code
-Ukuu is written using Vala and GTK3 toolkit. Source code and binaries are available from the [GitHub project page](https://github.com/stevenpowered/ukuu).
+Ukuu is written using Vala and GTK3 toolkit. Source code and binaries are available from the [GitHub project page](https://github.com/aljex/ukuu).
 
 ### Build instruction
 
@@ -45,8 +45,8 @@ Ukuu is written using Vala and GTK3 toolkit. Source code and binaries are availa
 
  in a terminal window:  
 
-    sudo apt-get install libgee-0.8-dev libjson-glib-dev libvte-2.91-dev valac
-    git clone https://github.com/stevenpowered/ukuu.git
+    sudo apt install libgee-0.8-dev libjson-glib-dev libvte-2.91-dev valac
+    git clone https://github.com/aljex/ukuu.git
     cd ukuu
     make all
     sudo make install

From 257127a84f830d9a5c139eac72a99a58659af587 Mon Sep 17 00:00:00 2001
From: "Brian K. White" 
Date: Mon, 11 Mar 2019 00:22:27 -0400
Subject: [PATCH 006/567] Fix build errors, minor makefile cleanup, change all
 branding strings to defines derived from makefile

---
 .github/ISSUE_TEMPLATE/bug_report.md          |    4 -
 .github/ISSUE_TEMPLATE/feature_request.md     |    4 -
 AUTHORS                                       |    2 +-
 BUILD_CONFIG                                  |    2 +-
 README.md                                     |    4 +
 build.sh                                      |    0
 changelogs/donate.md                          |   10 -
 debian/changelog                              |   13 +
 debian/control                                |    4 +-
 debian/copyright                              |    4 +-
 makefile                                      |   20 +-
 po/ukuu-es.po                                 |  443 +++--
 po/ukuu-fr.po                                 |  449 +++--
 po/ukuu-hr.po                                 |  508 +++---
 po/ukuu-nl.po                                 |  425 +++--
 po/ukuu-pl.po                                 |  422 +++--
 po/ukuu-ru.po                                 | 1365 ++++++++--------
 po/ukuu-sv.po                                 | 1443 +++++++++--------
 po/ukuu-tr.po                                 |  446 +++--
 src/Common/LinuxKernel.vala                   |    6 +-
 src/Common/Main.vala                          |   20 +-
 src/Common/Package.vala                       |    4 +-
 src/Console/AppConsole.vala                   |   42 +-
 src/Gtk/AppGtk.vala                           |   33 +-
 src/Gtk/MainWindow.vala                       |   61 +-
 src/Gtk/TerminalWindow.vala                   |    3 +-
 src/Gtk/UpdateNotificationWindow.vala         |    2 +-
 src/Gtk/VersionMessageWindow.vala             |  151 --
 src/Utility/Gtk/AboutWindow.vala              |   18 -
 src/Utility/Gtk/DonationWindow.vala           |  198 ---
 src/Utility/Gtk/GtkHelper.vala                |    6 +-
 src/Utility/TeeJee.FileSystem.vala            |    5 +-
 src/Utility/TeeJee.Misc.vala                  |    9 +-
 src/makefile                                  |  102 +-
 .../actions/in.teejeetech.pkexec.ukuu.policy  |    6 +-
 src/share/ukuu/images/donate.svg              |  458 ------
 ukuu.geany                                    |  106 +-
 ukuu.pot                                      |  331 ++--
 38 files changed, 3597 insertions(+), 3532 deletions(-)
 mode change 100644 => 100755 build.sh
 delete mode 100644 changelogs/donate.md
 delete mode 100644 src/Gtk/VersionMessageWindow.vala
 delete mode 100644 src/Utility/Gtk/DonationWindow.vala
 delete mode 100755 src/share/ukuu/images/donate.svg

diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md
index 5804bef4..dc60dd28 100644
--- a/.github/ISSUE_TEMPLATE/bug_report.md
+++ b/.github/ISSUE_TEMPLATE/bug_report.md
@@ -23,7 +23,3 @@ If applicable, add screenshots to help explain your problem.
  - Linux Distribution Name and Version: [e.g. Ubuntu 16.04]
  - Desktop [e.g. MATE, XFCE]
  - Application Version [e.g. v18.8]
-
-***Consider making a donation to support this project***
-
-[![](https://www.paypalobjects.com/en_US/i/btn/btn_donate_LG.gif)](https://www.paypal.com/cgi-bin/webscr?business=teejeetech@gmail.com&cmd=_xclick¤cy_code=USD&item_name=Ukuu%20Donation)
diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md
index 34746a60..066b2d92 100644
--- a/.github/ISSUE_TEMPLATE/feature_request.md
+++ b/.github/ISSUE_TEMPLATE/feature_request.md
@@ -15,7 +15,3 @@ A clear and concise description of any alternative solutions or features you've
 
 **Additional context**
 Add any other context or screenshots about the feature request here.
-
-***Consider making a donation to support this project***
-
-[![](https://www.paypalobjects.com/en_US/i/btn/btn_donate_LG.gif)](https://www.paypal.com/cgi-bin/webscr?business=teejeetech@gmail.com&cmd=_xclick¤cy_code=USD&item_name=Ukuu%20Donation)
diff --git a/AUTHORS b/AUTHORS
index 89374f52..59bc6396 100644
--- a/AUTHORS
+++ b/AUTHORS
@@ -1,3 +1,3 @@
 
 Copyright (C) 2013 Tony George (teejee2008@gmail.com)
-
+Forked 20190307 Brian K. White bw.aljex@gmail.com
diff --git a/BUILD_CONFIG b/BUILD_CONFIG
index e21feab4..f0c31228 100644
--- a/BUILD_CONFIG
+++ b/BUILD_CONFIG
@@ -3,4 +3,4 @@ app_fullname="Ubuntu Kernel Update Utility"
 app_name="ukuu"
 pkg_name="ukuu"
 pkg_version=$(dpkg-parsechangelog --show-field Version)
-git_origin="git@github.com:teejee2008/ukuu.git"
+git_origin="git@github.com:aljex/ukuu.git"
diff --git a/README.md b/README.md
index 0431cee6..641a2056 100644
--- a/README.md
+++ b/README.md
@@ -7,11 +7,15 @@ This is a tool for installing the latest mainline Linux kernel on Ubuntu-based d
 ### About This Fork
 
 Since the original author stopped maintaining the free version of Ukuu and turned to a [paid version](https://teejeetech.in/tag/ukuu/), Several people have forked this project, and this is but one more. This fork started with https://github.com/stevenpwered/ukuu, and merged in https://github.com/cloyce/ukuu, and then I intend to add my own tweaks:
+
 * First TODO Item (not done yet): STOP SAVING 6 GIGS OF KERNEL PACKAGES IN ~/.cache/ukuu HOLY GOBSMACK WTF ?????
 
 bkw@negre:~$ du -sh .cache/ukuu
 5.5G    .cache/ukuu
 
+ Until then: As a work-around, you can create a wrapper shell script or menu entry to always run "ukuu --clean-cache" after "ukuu-gtk" + +* Remove all grub options. A kernel package installer has no business messing with grub. dpkg already does the necessary part, which is just adding/removing entries without making any other changes. ### Enhancements diff --git a/build.sh b/build.sh old mode 100644 new mode 100755 diff --git a/changelogs/donate.md b/changelogs/donate.md deleted file mode 100644 index 5f2f8085..00000000 --- a/changelogs/donate.md +++ /dev/null @@ -1,10 +0,0 @@ -### Donate - -**PayPal** ~ If you find this application useful and wish to say thanks, you can buy me a coffee by making a donation with Paypal. - -[![img](https://cdn-images-1.medium.com/max/800/1*MpjVsrkINs-OquoGXYnZ3A.png)](https://www.paypal.com/cgi-bin/webscr?business=teejeetech@gmail.com&cmd=_xclick¤cy_code=USD&amount=10&item_name=Ukuu%20Donation) - -**Patreon** ~ You can also sign up as a sponsor on Patreon.com. As a patron you will get access to beta releases of new applications that I’m working on. You will also get news and updates about new features that are not published elsewhere. - -[![img](https://cdn-images-1.medium.com/max/800/1*d5usqvdMes1NWNnh-T1dog.png)](https://www.patreon.com/bePatron?u=3059450) - diff --git a/debian/changelog b/debian/changelog index 74e3eba0..7c885aee 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,16 @@ +ukuu (18.9.3-bkw) disco; urgency=medium + + * Fork from stevenpowerd + * merge cloyce + * remove references to paid version + * remove donation window and other donation links + * fix compile error + * update Readme.md + * branding - change all branding strings to defines derived from makefile + + -- Brian K. White Fri, 8 Mar 2019 22:57:57 -0500 + + ukuu (18.9.3) xenial; urgency=medium * Fix build issue diff --git a/debian/control b/debian/control index 99cad786..e6b9b674 100644 --- a/debian/control +++ b/debian/control @@ -1,10 +1,10 @@ Source: ukuu Section: utils Priority: extra -Maintainer: Tony George +Maintainer: Brian K. White Build-Depends: debhelper (>= 8.0.0), autotools-dev, valac, libgtk-3-dev, libgee-0.8-dev, libjson-glib-dev, libvte-2.91-dev Standards-Version: 3.9.3 -Homepage: http://teejeetech.blogspot.in/p/ukuu.html +Homepage: https://github.com/aljex/ukuu Package: ukuu Architecture: any diff --git a/debian/copyright b/debian/copyright index 5367093b..d71af0b6 100644 --- a/debian/copyright +++ b/debian/copyright @@ -1,9 +1,9 @@ Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: ukuu -Source: +Source: Files: * -Copyright: 2013 Tony George +Copyright: 2013 Tony George , forked: 2019 Brian K. White License: GPL-2+ This package is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/makefile b/makefile index b68676d0..59580263 100644 --- a/makefile +++ b/makefile @@ -1,20 +1,20 @@ all: - cd src; make all + cd src; make ${@} app: - cd src; make app + cd src; make ${@} app-gtk: - cd src; make app-gtk + cd src; make ${@} + +translations: + cd src; make ${@} -app-translations: - cd src; make app-translations - clean: - cd src; make clean + cd src; make ${@} install: - cd src; make install - + cd src; make ${@} + uninstall: - cd src; make uninstall + cd src; make ${@} diff --git a/po/ukuu-es.po b/po/ukuu-es.po index 411ddb28..606b1c30 100644 --- a/po/ukuu-es.po +++ b/po/ukuu-es.po @@ -5,8 +5,8 @@ msgid "" msgstr "" "Project-Id-Version: ukuu\n" -"Report-Msgid-Bugs-To: teejeetech@gmail.com\n" -"POT-Creation-Date: 2017-12-17 16:41+0530\n" +"Report-Msgid-Bugs-To: bw.aljex@gmail.com\n" +"POT-Creation-Date: 2019-03-10 23:56-0400\n" "PO-Revision-Date: 2018-01-03 02:03-0600\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish\n" @@ -17,11 +17,11 @@ msgstr "" "X-Launchpad-Export-Date: 2017-04-13 11:48+0000\n" "X-Generator: Poedit 2.0.5\n" -#: Gtk/MainWindow.vala:470 +#: Gtk/MainWindow.vala:496 msgid "About" msgstr "Acerca de" -#: Console/AppConsole.vala:103 +#: Console/AppConsole.vala:119 msgid "Admin access is required for running this application." msgstr "" "Se necesitan privilegios administrativos para ejecutar esta aplicación." @@ -30,35 +30,48 @@ msgstr "" msgid "Another instance of this application is running" msgstr "Se está ejecutando otra instancia de esta aplicación" -#: Utility/Gtk/AboutWindow.vala:348 +#: Common/LinuxKernel.vala:108 +#, fuzzy +msgid "Architecture" +msgstr "Arquitectura del sistema" + +#: Utility/Gtk/AboutWindow.vala:338 #, c-format msgid "Artists" msgstr "Artistas" -#: Utility/Gtk/AboutWindow.vala:324 +#: Console/AppConsole.vala:106 +msgid "Assume Yes for all prompts (non-interactive mode)" +msgstr "" + +#: Utility/Gtk/AboutWindow.vala:314 #, c-format msgid "Authors" msgstr "Autores" -#: Common/LinuxKernel.vala:1036 +#: Common/LinuxKernel.vala:1184 msgid "Available Kernels" msgstr "Núcleos disponibles" -#: Utility/Gtk/AboutWindow.vala:295 +#: Utility/Gtk/AboutWindow.vala:285 msgid "Back" msgstr "Atrás" -#: Gtk/MainWindow.vala:785 +#: Gtk/MainWindow.vala:822 msgid "Booting previous kernels" msgstr "Arrancando núcleos anteriores" +#: Console/AppConsole.vala:209 Gtk/AppGtk.vala:110 +msgid "Cache" +msgstr "" + +#: Gtk/ProgressWindow.vala:144 Gtk/TerminalWindow.vala:168 +#: Gtk/UpdateNotificationWindow.vala:167 #: Utility/Gtk/CustomMessageDialog.vala:172 Utility/Gtk/GtkHelper.vala:122 -#: Gtk/ProgressWindow.vala:138 Gtk/UpdateNotificationWindow.vala:167 -#: Gtk/TerminalWindow.vala:168 msgid "Cancel" msgstr "Cancelar" -#: Gtk/MainWindow.vala:426 +#: Gtk/MainWindow.vala:464 msgid "Changes" msgstr "Cambios" @@ -66,34 +79,62 @@ msgstr "Cambios" msgid "Check every" msgstr "Comprobar cada" -#: Console/AppConsole.vala:83 +#: Console/AppConsole.vala:90 msgid "Check for kernel updates" msgstr "Buscar actualizaciones del núcleo" -#: Utility/Gtk/AboutWindow.vala:305 Gtk/TerminalWindow.vala:178 +#: Console/AppConsole.vala:91 +#, fuzzy +msgid "Check for kernel updates and notify current user" +msgstr "Buscar actualizaciones del núcleo" + +#: Gtk/TerminalWindow.vala:178 Utility/Gtk/AboutWindow.vala:295 msgid "Close" msgstr "Cerrar" -#: Common/Main.vala:101 +#: Console/AppConsole.vala:346 +msgid "Command not specified" +msgstr "" + +#: Console/AppConsole.vala:88 +msgid "Commands" +msgstr "" + +#: Common/Main.vala:106 msgid "Commands listed below are not available on this system" msgstr "" "Las órdenes enumeradas a continuación no están disponibles en este sistema" -#: Utility/Gtk/AboutWindow.vala:332 +#: Common/LinuxKernel.vala:740 +#, c-format +msgid "Continue ?" +msgstr "" + +#: Utility/Gtk/AboutWindow.vala:322 #, c-format msgid "Contributions" msgstr "Contribuciones" -#: Console/AppConsole.vala:213 Gtk/MainWindow.vala:103 +#: Common/LinuxKernel.vala:724 +#, fuzzy +msgid "Could not find any kernels to remove" +msgstr "Seleccione los núcleos que se desinstalarán" + +#: Console/AppConsole.vala:314 Gtk/MainWindow.vala:100 msgid "Could not find requested version" msgstr "No se pudo encontrar la versión solicitada" +#: Common/LinuxKernel.vala:718 +#, fuzzy +msgid "Could not find running kernel in list!" +msgstr "No se pudo encontrar la versión solicitada" + #: Utility/TeeJee.FileSystem.vala:349 Utility/TeeJee.FileSystem.vala:352 #: Utility/TeeJee.FileSystem.vala:378 msgid "Created directory" msgstr "Se creó el directorio" -#: Utility/Gtk/AboutWindow.vala:282 Utility/Gtk/AboutWindow.vala:299 +#: Utility/Gtk/AboutWindow.vala:272 Utility/Gtk/AboutWindow.vala:289 msgid "Credits" msgstr "Créditos" @@ -105,37 +146,6 @@ msgstr "Días" msgid "Deleted directory" msgstr "Se eliminó el directorio" -#: Utility/Gtk/DonationWindow.vala:54 -msgid "" -"Did you find this software useful?\n" -"\n" -"You can buy me a coffee or make a donation via PayPal to show your support. " -"Or just drop me an email and say Hi. This application is completely free and " -"will continue to remain that way. Your contributions will help in keeping " -"this project alive and improving it further.\n" -"\n" -"Feel free to send me an email if you find any issues in this application or " -"if you need any changes. Suggestions and feedback are always welcome.\n" -"\n" -"Thanks,\n" -"Tony George\n" -"(teejeetech@gmail.com)" -msgstr "" -"¿Le pareció de utilidad este programa?\n" -"\n" -"Puede comprarme un café o realizar un donativo a través de PayPal para " -"mostrar su apoyo. O bien, escríbame un mensaje para saludar. Esta aplicación " -"es completamente gratuita y seguirá siéndolo. Sus contribuciones ayudan a " -"que este proyecto permanezca activo y en mejora.\n" -"\n" -"No dude en enviarme un mensaje por correo electrónico si halla problemas en " -"la aplicación o si necesita que se le hagan modificaciones. Se acogen con " -"satisfacción las sugerencias y los comentarios.\n" -"\n" -"Gracias.\n" -"Tony George\n" -"(teejeetech@gmail.com)" - #: Utility/TeeJee.FileSystem.vala:509 msgid "Dir not found" msgstr "No se encontró el directorio" @@ -144,41 +154,20 @@ msgstr "No se encontró el directorio" msgid "Display" msgstr "Mostrar" -#: Gtk/SettingsDialog.vala:203 -msgid "Display GRUB menu during boot" -msgstr "Mostrar menú de GRUB durante el arranque" - -#: Common/LinuxKernel.vala:89 +#: Common/LinuxKernel.vala:94 msgid "Distribution" msgstr "Distribución" -#: Utility/Gtk/AboutWindow.vala:364 +#: Utility/Gtk/AboutWindow.vala:354 #, c-format msgid "Documenters" msgstr "Documentadores" -#: Utility/Gtk/DonationWindow.vala:36 Gtk/MainWindow.vala:458 -msgid "Donate" -msgstr "Donar" - -#: Utility/Gtk/DonationWindow.vala:74 -msgid "Donate with Google Wallet" -msgstr "Donar con Google Wallet" - -#: Utility/Gtk/DonationWindow.vala:67 -msgid "Donate with PayPal" -msgstr "Donar con PayPal" - -#: Utility/Gtk/AboutWindow.vala:372 -#, c-format -msgid "Donations" -msgstr "Donaciones" - -#: Console/AppConsole.vala:88 +#: Console/AppConsole.vala:99 msgid "Download packages for specified kernel" msgstr "Descargar paquetes del núcleo especificado" -#: Common/LinuxKernel.vala:1081 +#: Common/LinuxKernel.vala:1230 #, c-format msgid "Downloading" msgstr "Descargando" @@ -187,7 +176,7 @@ msgstr "Descargando" msgid "E" msgstr "E" -#: Common/LinuxKernel.vala:1108 +#: Common/LinuxKernel.vala:1258 #, c-format msgid "ERROR" msgstr "ERROR" @@ -220,10 +209,14 @@ msgstr "Falló la lectura del archivo" msgid "Failed to write file" msgstr "Falló la escritura del archivo" -#: Common/LinuxKernel.vala:385 +#: Common/LinuxKernel.vala:399 msgid "Fetching index from kernel.ubuntu.com..." msgstr "Recuperando índice de kernel.ubuntu.com…" +#: Common/LinuxKernel.vala:356 +msgid "Fetching index..." +msgstr "" + #: Utility/TeeJee.FileSystem.vala:210 Utility/TeeJee.FileSystem.vala:213 msgid "File copied" msgstr "Se copió el archivo" @@ -240,8 +233,7 @@ msgstr "Falta el archivo" msgid "File moved" msgstr "Se trasladó el archivo" -#: Common/LinuxKernel.vala:943 Utility/TeeJee.FileSystem.vala:231 -#: Utility/TeeJee.FileSystem.vala:538 +#: Utility/TeeJee.FileSystem.vala:231 Utility/TeeJee.FileSystem.vala:538 msgid "File not found" msgstr "No se encontró el archivo" @@ -250,14 +242,15 @@ msgstr "No se encontró el archivo" msgid "File not found: %s" msgstr "No se encontró el archivo: %s" -#: Utility/TeeJee.FileSystem.vala:152 Utility/TeeJee.FileSystem.vala:155 -msgid "File read" -msgstr "Se consultó el archivo" - #: Utility/TeeJee.FileSystem.vala:187 Utility/TeeJee.FileSystem.vala:190 msgid "File saved" msgstr "Se guardó el archivo" +#: Common/LinuxKernel.vala:733 +#, c-format +msgid "Following kernels will be removed" +msgstr "" + #: Gtk/SettingsDialog.vala:192 msgid "GRUB Options" msgstr "Opciones de GRUB" @@ -278,19 +271,33 @@ msgstr "Horas" msgid "Ignore this update" msgstr "Ignorar esta actualización" -#: Common/LinuxKernel.vala:254 +#: Common/LinuxKernel.vala:262 msgid "Index is fresh" msgstr "El índice está al día" -#: Common/LinuxKernel.vala:251 +#: Common/LinuxKernel.vala:259 msgid "Index is stale" msgstr "El índice es obsoleto" -#: Gtk/MainWindow.vala:360 Gtk/UpdateNotificationWindow.vala:147 +#: Gtk/MainWindow.vala:359 Gtk/UpdateNotificationWindow.vala:147 msgid "Install" msgstr "Instalar" -#: Console/AppConsole.vala:86 +#: Common/LinuxKernel.vala:797 +#, c-format +msgid "Install Linux v%s ? (y/n): " +msgstr "" + +#: Console/AppConsole.vala:94 +#, fuzzy +msgid "Install latest mainline kernel" +msgstr "Instalar núcleo troncal especificado" + +#: Console/AppConsole.vala:95 +msgid "Install latest point update for current series" +msgstr "" + +#: Console/AppConsole.vala:96 msgid "Install specified mainline kernel" msgstr "Instalar núcleo troncal especificado" @@ -298,34 +305,49 @@ msgstr "Instalar núcleo troncal especificado" msgid "Install this kernel" msgstr "Instalar este núcleo" -#: Common/LinuxKernel.vala:1156 +#: Common/LinuxKernel.vala:1306 msgid "Installation completed with errors" msgstr "Instalación finalizada con errores" -#: Common/LinuxKernel.vala:1153 +#: Common/LinuxKernel.vala:1303 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "Instalación finalizada. Se necesita reiniciar para utilizar el núcleo nuevo." -#: Common/LinuxKernel.vala:1053 Gtk/MainWindow.vala:211 +#: Common/LinuxKernel.vala:1201 Gtk/MainWindow.vala:208 msgid "Installed" msgstr "Instalado" -#: Utility/TeeJee.System.vala:275 Gtk/MainWindow.vala:84 -#: Gtk/MainWindow.vala:351 Gtk/MainWindow.vala:646 +#: Gtk/SettingsDialog.vala:257 +#, fuzzy +msgid "Internect connection timeout in " +msgstr "La conexión a Internet está inactiva" + +#: Gtk/MainWindow.vala:350 Gtk/MainWindow.vala:547 Gtk/MainWindow.vala:683 +#: Utility/TeeJee.System.vala:292 msgid "Internet connection is not active" msgstr "La conexión a Internet está inactiva" -#: Gtk/MainWindow.vala:153 +#: Gtk/MainWindow.vala:150 msgid "Kernel" msgstr "Núcleo" -#: Gtk/MainWindow.vala:501 +#: Gtk/MainWindow.vala:531 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "" "Herramienta de renovación de núcleo para distribuciones basadas en Ubuntu" -#: Console/AppConsole.vala:85 +#: Common/LinuxKernel.vala:779 Console/AppConsole.vala:372 +#, c-format +msgid "Latest point update" +msgstr "" + +#: Common/LinuxKernel.vala:768 Console/AppConsole.vala:365 +#, c-format +msgid "Latest update" +msgstr "" + +#: Console/AppConsole.vala:92 msgid "List all available mainline kernels" msgstr "Mostrar todos los núcleos troncales disponibles" @@ -333,23 +355,28 @@ msgstr "Mostrar todos los núcleos troncales disponibles" msgid "List available kernels" msgstr "Mostrar núcleos disponibles" -#: Gtk/MainWindow.vala:786 +#: Console/AppConsole.vala:93 +#, fuzzy +msgid "List installed kernels" +msgstr "Mostrar núcleos disponibles" + +#: Gtk/MainWindow.vala:823 +#, fuzzy msgid "" "Mainline kernels can sometimes cause problems if there are proprietary " "drivers installed on your system. These issues include:\n" "\n" -"\\342\\226\\260 WiFi not working\n" -"\\342\\226\\260 Black screen on startup\n" -"\\342\\226\\260 Random system freeze\n" +"▰ WiFi not working\n" +"▰ Black screen on startup\n" +"▰ Random system freeze\n" "\n" "If you face any of these issues there is no need to panic.\n" "\n" -"\\342\\226\\260 Reboot your system\n" -"\\342\\226\\260 Select 'Advanced Boot Options' from the GRUB boot menu\n" -"\\342\\226\\260 Select an older kernel from the list displayed on this " -"screen\n" -"\\342\\226\\260 Your system will boot using the selected kernel\n" -"\\342\\226\\260 You can now uninstall the kernel that is causing issues\n" +"▰ Reboot your system\n" +"▰ Select 'Advanced Boot Options' from the GRUB boot menu\n" +"▰ Select an older kernel from the list displayed on this screen\n" +"▰ Your system will boot using the selected kernel\n" +"▰ You can now uninstall the kernel that is causing issues\n" msgstr "" "Los núcleos troncales en ocasiones pueden causar problemas si se instalaron " "controladores privativos en el sistema, por mencionar algunos:\n" @@ -372,11 +399,11 @@ msgstr "" msgid "Missing Icon" msgstr "Falta el icono" -#: Gtk/MainWindow.vala:369 +#: Gtk/MainWindow.vala:368 msgid "Multiple Kernels Selected" msgstr "Se seleccionaron varios núcleos" -#: Console/AppConsole.vala:195 +#: Console/AppConsole.vala:296 msgid "Multiple kernels selected for installation. Select only one." msgstr "Se seleccionaron varios núcleos para su instalación. Elija solo uno." @@ -384,15 +411,20 @@ msgstr "Se seleccionaron varios núcleos para su instalación. Elija solo uno." msgid "No" msgstr "No" -#: Gtk/MainWindow.vala:84 Gtk/MainWindow.vala:351 Gtk/MainWindow.vala:646 +#: Gtk/MainWindow.vala:350 Gtk/MainWindow.vala:547 Gtk/MainWindow.vala:683 msgid "No Internet" msgstr "No hay Internet" -#: Console/AppConsole.vala:349 Gtk/MainWindow.vala:780 +#: Console/AppConsole.vala:290 Console/AppConsole.vala:327 +msgid "No kernels specified" +msgstr "" + +#: Common/LinuxKernel.vala:787 Console/AppConsole.vala:377 +#: Console/AppConsole.vala:457 Gtk/MainWindow.vala:817 msgid "No updates found" msgstr "No se encontró ninguna actualización" -#: Gtk/MainWindow.vala:372 Gtk/MainWindow.vala:383 +#: Gtk/MainWindow.vala:371 Gtk/MainWindow.vala:382 msgid "Not Selected" msgstr "No seleccionado" @@ -408,36 +440,35 @@ msgstr "Notificar si hay una versión importante disponible" msgid "Notify if a point release is available" msgstr "Notificar si hay una versión puntual disponible" -#: Console/AppConsole.vala:84 -msgid "Notify if kernel update is available" -msgstr "Notificar si hay una actualización de núcleo disponible" - -#: Common/LinuxKernel.vala:1099 Utility/Gtk/CustomMessageDialog.vala:167 +#: Common/LinuxKernel.vala:1249 Utility/Gtk/CustomMessageDialog.vala:167 #: Utility/Gtk/CustomMessageDialog.vala:171 Utility/Gtk/GtkHelper.vala:121 -#: Utility/Gtk/DonationWindow.vala:95 #, c-format msgid "OK" msgstr "Aceptar" -#: Console/AppConsole.vala:81 Gtk/AppGtk.vala:181 +#: Console/AppConsole.vala:103 Gtk/AppGtk.vala:181 msgid "Options" msgstr "Opciones" -#: Common/LinuxKernel.vala:922 +#: Gtk/SettingsDialog.vala:236 +msgid "Other" +msgstr "" + +#: Common/LinuxKernel.vala:1063 #, c-format msgid "Packages Available (DEB)" msgstr "Paquetes disponibles (DEB)" -#: Common/LinuxKernel.vala:930 +#: Common/LinuxKernel.vala:1071 #, c-format msgid "Packages Installed" msgstr "Paquetes instalados" -#: Common/Main.vala:102 +#: Common/Main.vala:107 msgid "Please install required packages and try again" msgstr "Instale los paquetes requeridos e inténtelo de nuevo" -#: Common/LinuxKernel.vala:1177 +#: Common/LinuxKernel.vala:1327 msgid "Preparing to remove selected kernels" msgstr "Preparándose para desinstalar los núcleos seleccionados" @@ -445,53 +476,61 @@ msgstr "Preparándose para desinstalar los núcleos seleccionados" msgid "Print debug information" msgstr "Mostrar información de depuración" -#: Gtk/MainWindow.vala:344 +#: Gtk/MainWindow.vala:425 +msgid "Purge" +msgstr "" + +#: Gtk/MainWindow.vala:343 msgid "Refresh" msgstr "Actualizar" -#: Gtk/MainWindow.vala:531 +#: Gtk/MainWindow.vala:566 msgid "Refreshing..." msgstr "Actualizando…" -#: Gtk/MainWindow.vala:377 +#: Gtk/MainWindow.vala:376 msgid "Remove" msgstr "Quitar" -#: Console/AppConsole.vala:90 +#: Console/AppConsole.vala:100 Console/AppConsole.vala:105 msgid "Remove files from application cache" msgstr "Quitar archivos de la antememoria de la aplicación" -#: Console/AppConsole.vala:87 -msgid "Remove specified mainline kernel" +#: Console/AppConsole.vala:98 Gtk/MainWindow.vala:426 +msgid "Remove installed kernels older than running kernel" +msgstr "" + +#: Console/AppConsole.vala:97 +#, fuzzy +msgid "Remove specified kernel" msgstr "Quitar el núcleo troncal especificado" -#: Console/AppConsole.vala:217 -msgid "Run 'ukuu --list' and use the version string listed in first column" +#: Console/AppConsole.vala:204 Console/AppConsole.vala:318 +#: Console/AppConsole.vala:347 +msgid "Run '" msgstr "" -"Ejecute «ukuu --list» y use la cadena de versión mostrada en la primera " -"columna" -#: Console/AppConsole.vala:106 +#: Console/AppConsole.vala:122 msgid "Run the application as admin with pkexec or sudo." msgstr "Ejecute la aplicación con permisos administrativos con pkexec o sudo." -#: Common/LinuxKernel.vala:1053 Gtk/MainWindow.vala:211 +#: Common/LinuxKernel.vala:1201 Gtk/MainWindow.vala:208 msgid "Running" msgstr "En ejecución" -#: Gtk/MainWindow.vala:369 +#: Gtk/MainWindow.vala:368 msgid "Select a single kernel to install" msgstr "Seleccione un solo núcleo para instalarlo" -#: Gtk/MainWindow.vala:372 +#: Gtk/MainWindow.vala:371 msgid "Select the kernel to install" msgstr "Seleccione el núcleo que se instalará" -#: Gtk/MainWindow.vala:383 +#: Gtk/MainWindow.vala:382 msgid "Select the kernels to remove" msgstr "Seleccione los núcleos que se desinstalarán" -#: Common/LinuxKernel.vala:1172 +#: Common/LinuxKernel.vala:1322 msgid "" "Selected kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -499,11 +538,11 @@ msgstr "" "El núcleo seleccionado está en ejecución y no puede desinstalarse.\n" "Instale otro núcleo antes de desinstalar este." -#: Utility/Gtk/DonationWindow.vala:81 -msgid "Send Email" -msgstr "Enviar correo electrónico" +#: Gtk/SettingsDialog.vala:203 +msgid "Set GRUB menu timeout" +msgstr "" -#: Gtk/SettingsDialog.vala:57 Gtk/MainWindow.vala:437 +#: Gtk/MainWindow.vala:475 Gtk/SettingsDialog.vala:57 msgid "Settings" msgstr "Configuración" @@ -523,32 +562,42 @@ msgstr "Mostrar globo de notificación en el escritorio" msgid "Show notification dialog" msgstr "Mostrar cuadro de diálogo de notificación" -#: Gtk/MainWindow.vala:199 +#: Console/AppConsole.vala:101 +#, fuzzy +msgid "Show unstable and RC releases" +msgstr "Ocultar versiones inestables y RC" + +#: Gtk/SettingsDialog.vala:244 +#, fuzzy +msgid "Skip internet connection check" +msgstr "La conexión a Internet está inactiva" + +#: Gtk/MainWindow.vala:196 msgid "Status" msgstr "Estado" -#: Utility/TeeJee.Process.vala:511 +#: Utility/TeeJee.Process.vala:512 msgid "Stopped" msgstr "Detenido" -#: Console/AppConsole.vala:79 Gtk/AppGtk.vala:179 +#: Console/AppConsole.vala:86 Gtk/AppGtk.vala:179 msgid "Syntax" msgstr "Sintaxis" -#: Common/LinuxKernel.vala:103 -msgid "System architecture" -msgstr "Arquitectura del sistema" +#: Console/AppConsole.vala:210 Gtk/AppGtk.vala:111 +msgid "Temp" +msgstr "" -#: Utility/Gtk/AboutWindow.vala:340 +#: Utility/Gtk/AboutWindow.vala:330 #, c-format msgid "Third Party Tools" msgstr "Herramientas de terceros" -#: Common/LinuxKernel.vala:1122 Gtk/MainWindow.vala:641 +#: Common/LinuxKernel.vala:1272 Gtk/MainWindow.vala:678 msgid "This kernel is already installed." msgstr "Este núcleo ya se instaló." -#: Common/LinuxKernel.vala:1230 +#: Common/LinuxKernel.vala:1380 msgid "" "This kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -568,20 +617,20 @@ msgstr "" "0 = No mostrar el menú\n" "-1 = Mostrar indefinidamente hasta que el usuario seleccione algo" -#: Utility/Gtk/AboutWindow.vala:356 +#: Utility/Gtk/AboutWindow.vala:346 #, c-format msgid "Translators" msgstr "Traductores" -#: Common/LinuxKernel.vala:1214 Common/LinuxKernel.vala:1272 +#: Common/LinuxKernel.vala:1364 Common/LinuxKernel.vala:1422 msgid "Un-install completed" msgstr "Desinstalación finalizada" -#: Common/LinuxKernel.vala:1217 Common/LinuxKernel.vala:1275 +#: Common/LinuxKernel.vala:1367 Common/LinuxKernel.vala:1425 msgid "Un-install completed with errors" msgstr "Desinstalación finalizada con errores" -#: Console/AppConsole.vala:270 Gtk/AppGtk.vala:166 +#: Console/AppConsole.vala:202 Gtk/AppGtk.vala:166 msgid "Unknown option" msgstr "Opción desconocida" @@ -604,26 +653,14 @@ msgstr "" "0 = No mostrar el menú\n" "-1 = Mostrar indefinidamente hasta que el usuario seleccione algo" -#: Common/LinuxKernel.vala:1343 +#: Common/LinuxKernel.vala:1493 msgid "Updating GRUB menu" msgstr "Actualizando menú de GRUB" -#: Console/AppConsole.vala:89 -msgid "Use specified user's cache directory" -msgstr "Utilizar directorio de antememoria de usuario especificado" - -#: Console/AppConsole.vala:144 Gtk/AppGtk.vala:109 -msgid "Using cache directory" -msgstr "Utilizando directorio de antememoria" - -#: Gtk/MainWindow.vala:182 +#: Gtk/MainWindow.vala:179 msgid "Version" msgstr "Versión" -#: Utility/Gtk/DonationWindow.vala:88 -msgid "Visit Website" -msgstr "Visitar sitio web" - #: Utility/TeeJee.Logging.vala:89 msgid "W" msgstr "W" @@ -639,3 +676,75 @@ msgstr "Sí" #: Utility/AppLock.vala:56 msgid "[Warning] Deleted invalid lock" msgstr "[Atención] Se eliminó un bloqueo no válido" + +#: Gtk/SettingsDialog.vala:271 +msgid "seconds" +msgstr "" + +#~ msgid "Run 'ukuu --list' and use the version string listed in first column" +#~ msgstr "" +#~ "Ejecute «ukuu --list» y use la cadena de versión mostrada en la primera " +#~ "columna" + +#~ msgid "" +#~ "Did you find this software useful?\n" +#~ "\n" +#~ "You can buy me a coffee or make a donation via PayPal to show your " +#~ "support. Or just drop me an email and say Hi. This application is " +#~ "completely free and will continue to remain that way. Your contributions " +#~ "will help in keeping this project alive and improving it further.\n" +#~ "\n" +#~ "Feel free to send me an email if you find any issues in this application " +#~ "or if you need any changes. Suggestions and feedback are always welcome.\n" +#~ "\n" +#~ "Thanks,\n" +#~ "Tony George\n" +#~ "(teejeetech@gmail.com)" +#~ msgstr "" +#~ "¿Le pareció de utilidad este programa?\n" +#~ "\n" +#~ "Puede comprarme un café o realizar un donativo a través de PayPal para " +#~ "mostrar su apoyo. O bien, escríbame un mensaje para saludar. Esta " +#~ "aplicación es completamente gratuita y seguirá siéndolo. Sus " +#~ "contribuciones ayudan a que este proyecto permanezca activo y en mejora.\n" +#~ "\n" +#~ "No dude en enviarme un mensaje por correo electrónico si halla problemas " +#~ "en la aplicación o si necesita que se le hagan modificaciones. Se acogen " +#~ "con satisfacción las sugerencias y los comentarios.\n" +#~ "\n" +#~ "Gracias.\n" +#~ "Tony George\n" +#~ "(teejeetech@gmail.com)" + +#~ msgid "Display GRUB menu during boot" +#~ msgstr "Mostrar menú de GRUB durante el arranque" + +#~ msgid "Donate" +#~ msgstr "Donar" + +#~ msgid "Donate with Google Wallet" +#~ msgstr "Donar con Google Wallet" + +#~ msgid "Donate with PayPal" +#~ msgstr "Donar con PayPal" + +#~ msgid "Donations" +#~ msgstr "Donaciones" + +#~ msgid "File read" +#~ msgstr "Se consultó el archivo" + +#~ msgid "Notify if kernel update is available" +#~ msgstr "Notificar si hay una actualización de núcleo disponible" + +#~ msgid "Send Email" +#~ msgstr "Enviar correo electrónico" + +#~ msgid "Use specified user's cache directory" +#~ msgstr "Utilizar directorio de antememoria de usuario especificado" + +#~ msgid "Using cache directory" +#~ msgstr "Utilizando directorio de antememoria" + +#~ msgid "Visit Website" +#~ msgstr "Visitar sitio web" diff --git a/po/ukuu-fr.po b/po/ukuu-fr.po index 1bf2f070..bc43825d 100644 --- a/po/ukuu-fr.po +++ b/po/ukuu-fr.po @@ -5,8 +5,8 @@ msgid "" msgstr "" "Project-Id-Version: ukuu\n" -"Report-Msgid-Bugs-To: teejeetech@gmail.com\n" -"POT-Creation-Date: 2017-12-17 16:41+0530\n" +"Report-Msgid-Bugs-To: bw.aljex@gmail.com\n" +"POT-Creation-Date: 2019-03-10 23:56-0400\n" "PO-Revision-Date: 2018-08-05 15:50+0200\n" "Last-Translator: Yolateng0 \n" "Language-Team: French\n" @@ -17,11 +17,11 @@ msgstr "" "X-Launchpad-Export-Date: 2017-04-13 11:48+0000\n" "X-Generator: Poedit 2.0.6\n" -#: Gtk/MainWindow.vala:470 +#: Gtk/MainWindow.vala:496 msgid "About" msgstr "À propos" -#: Console/AppConsole.vala:103 +#: Console/AppConsole.vala:119 msgid "Admin access is required for running this application." msgstr "Accès administrateur requis pour lancer cette application." @@ -29,35 +29,48 @@ msgstr "Accès administrateur requis pour lancer cette application." msgid "Another instance of this application is running" msgstr "Une autre instance de l'application est en cours d'exécution" -#: Utility/Gtk/AboutWindow.vala:348 +#: Common/LinuxKernel.vala:108 +#, fuzzy +msgid "Architecture" +msgstr "Architecture du système" + +#: Utility/Gtk/AboutWindow.vala:338 #, c-format msgid "Artists" msgstr "Artistes" -#: Utility/Gtk/AboutWindow.vala:324 +#: Console/AppConsole.vala:106 +msgid "Assume Yes for all prompts (non-interactive mode)" +msgstr "" + +#: Utility/Gtk/AboutWindow.vala:314 #, c-format msgid "Authors" msgstr "Auteurs" -#: Common/LinuxKernel.vala:1036 +#: Common/LinuxKernel.vala:1184 msgid "Available Kernels" msgstr "Noyaux disponibles" -#: Utility/Gtk/AboutWindow.vala:295 +#: Utility/Gtk/AboutWindow.vala:285 msgid "Back" msgstr "Retour" -#: Gtk/MainWindow.vala:785 +#: Gtk/MainWindow.vala:822 msgid "Booting previous kernels" msgstr "Démarrer sur un noyau précédent" +#: Console/AppConsole.vala:209 Gtk/AppGtk.vala:110 +msgid "Cache" +msgstr "" + +#: Gtk/ProgressWindow.vala:144 Gtk/TerminalWindow.vala:168 +#: Gtk/UpdateNotificationWindow.vala:167 #: Utility/Gtk/CustomMessageDialog.vala:172 Utility/Gtk/GtkHelper.vala:122 -#: Gtk/ProgressWindow.vala:138 Gtk/UpdateNotificationWindow.vala:167 -#: Gtk/TerminalWindow.vala:168 msgid "Cancel" msgstr "Annuler" -#: Gtk/MainWindow.vala:426 +#: Gtk/MainWindow.vala:464 msgid "Changes" msgstr "Changements" @@ -65,33 +78,62 @@ msgstr "Changements" msgid "Check every" msgstr "Vérifier toutes les" -#: Console/AppConsole.vala:83 +#: Console/AppConsole.vala:90 msgid "Check for kernel updates" msgstr "Vérifier les mises à jour des noyaux" -#: Utility/Gtk/AboutWindow.vala:305 Gtk/TerminalWindow.vala:178 +#: Console/AppConsole.vala:91 +#, fuzzy +msgid "Check for kernel updates and notify current user" +msgstr "Vérifier les mises à jour des noyaux" + +#: Gtk/TerminalWindow.vala:178 Utility/Gtk/AboutWindow.vala:295 msgid "Close" msgstr "Fermer" -#: Common/Main.vala:101 +#: Console/AppConsole.vala:346 +#, fuzzy +msgid "Command not specified" +msgstr "Impossible de trouver le fichier" + +#: Console/AppConsole.vala:88 +msgid "Commands" +msgstr "" + +#: Common/Main.vala:106 msgid "Commands listed below are not available on this system" msgstr "Les commandes listées ne sont pas valables pour ce système" -#: Utility/Gtk/AboutWindow.vala:332 +#: Common/LinuxKernel.vala:740 +#, c-format +msgid "Continue ?" +msgstr "" + +#: Utility/Gtk/AboutWindow.vala:322 #, c-format msgid "Contributions" msgstr "Contributions" -#: Console/AppConsole.vala:213 Gtk/MainWindow.vala:103 +#: Common/LinuxKernel.vala:724 +#, fuzzy +msgid "Could not find any kernels to remove" +msgstr "Sélectionnez les noyaux à supprimer" + +#: Console/AppConsole.vala:314 Gtk/MainWindow.vala:100 msgid "Could not find requested version" msgstr "Impossible de trouver la version demandée" +#: Common/LinuxKernel.vala:718 +#, fuzzy +msgid "Could not find running kernel in list!" +msgstr "Impossible de trouver la version demandée" + #: Utility/TeeJee.FileSystem.vala:349 Utility/TeeJee.FileSystem.vala:352 #: Utility/TeeJee.FileSystem.vala:378 msgid "Created directory" msgstr "Dossier créé" -#: Utility/Gtk/AboutWindow.vala:282 Utility/Gtk/AboutWindow.vala:299 +#: Utility/Gtk/AboutWindow.vala:272 Utility/Gtk/AboutWindow.vala:289 msgid "Credits" msgstr "Crédits" @@ -103,38 +145,6 @@ msgstr "Jour(s)" msgid "Deleted directory" msgstr "Dossier éffacé" -#: Utility/Gtk/DonationWindow.vala:54 -msgid "" -"Did you find this software useful?\n" -"\n" -"You can buy me a coffee or make a donation via PayPal to show your support. " -"Or just drop me an email and say Hi. This application is completely free and " -"will continue to remain that way. Your contributions will help in keeping " -"this project alive and improving it further.\n" -"\n" -"Feel free to send me an email if you find any issues in this application or " -"if you need any changes. Suggestions and feedback are always welcome.\n" -"\n" -"Thanks,\n" -"Tony George\n" -"(teejeetech@gmail.com)" -msgstr "" -"Vous trouvez ce logiciel super utile?\n" -"\n" -"Vous pouvez m'acheter un café ou faire un don via PayPal pour montrer votre " -"soutien. Ou envoyez-moi simplement un courriel et dites moi bonjour. Cette " -"application est entièrement gratuite et continuera de rester de cette façon. " -"Vos contributions contribueront à maintenir ce projet vivant et l'améliorer " -"encore.\n" -"\n" -"N'hésitez pas à m'envoyer un courriel si vous trouvez des problèmes dans " -"cette application ou si vous avez besoin de modifications. Les suggestions " -"et les commentaires sont toujours les bienvenus.\n" -"\n" -"Merci beaucoup \n" -"Tony George\n" -"(teejeetech@gmail.com)" - #: Utility/TeeJee.FileSystem.vala:509 msgid "Dir not found" msgstr "Dossier non trouvé" @@ -143,41 +153,20 @@ msgstr "Dossier non trouvé" msgid "Display" msgstr "Afficher" -#: Gtk/SettingsDialog.vala:203 -msgid "Display GRUB menu during boot" -msgstr "Afficher le menu GRUB durant le démarrage" - -#: Common/LinuxKernel.vala:89 +#: Common/LinuxKernel.vala:94 msgid "Distribution" msgstr "Distribution" -#: Utility/Gtk/AboutWindow.vala:364 +#: Utility/Gtk/AboutWindow.vala:354 #, c-format msgid "Documenters" msgstr "Documentalistes" -#: Utility/Gtk/DonationWindow.vala:36 Gtk/MainWindow.vala:458 -msgid "Donate" -msgstr "Dons" - -#: Utility/Gtk/DonationWindow.vala:74 -msgid "Donate with Google Wallet" -msgstr "Dons par Google Wallet" - -#: Utility/Gtk/DonationWindow.vala:67 -msgid "Donate with PayPal" -msgstr "Dons avec PayPal" - -#: Utility/Gtk/AboutWindow.vala:372 -#, c-format -msgid "Donations" -msgstr "Donations" - -#: Console/AppConsole.vala:88 +#: Console/AppConsole.vala:99 msgid "Download packages for specified kernel" msgstr "Télécharger les paquets pour des noyaux spécifiques" -#: Common/LinuxKernel.vala:1081 +#: Common/LinuxKernel.vala:1230 #, c-format msgid "Downloading" msgstr "Téléchargement" @@ -186,7 +175,7 @@ msgstr "Téléchargement" msgid "E" msgstr "E" -#: Common/LinuxKernel.vala:1108 +#: Common/LinuxKernel.vala:1258 #, c-format msgid "ERROR" msgstr "ERREUR" @@ -219,10 +208,14 @@ msgstr "Impossible de lire le fichier" msgid "Failed to write file" msgstr "Impossible d'écrire le fichier" -#: Common/LinuxKernel.vala:385 +#: Common/LinuxKernel.vala:399 msgid "Fetching index from kernel.ubuntu.com..." msgstr "Récupération de l'index depuis kernel.ubuntu.com..." +#: Common/LinuxKernel.vala:356 +msgid "Fetching index..." +msgstr "" + #: Utility/TeeJee.FileSystem.vala:210 Utility/TeeJee.FileSystem.vala:213 msgid "File copied" msgstr "Fichier copié" @@ -239,8 +232,7 @@ msgstr "Fichier disparu" msgid "File moved" msgstr "Fichier déplacé" -#: Common/LinuxKernel.vala:943 Utility/TeeJee.FileSystem.vala:231 -#: Utility/TeeJee.FileSystem.vala:538 +#: Utility/TeeJee.FileSystem.vala:231 Utility/TeeJee.FileSystem.vala:538 msgid "File not found" msgstr "Fichier non trouvé" @@ -249,14 +241,15 @@ msgstr "Fichier non trouvé" msgid "File not found: %s" msgstr "Fichier non trouvé: %s" -#: Utility/TeeJee.FileSystem.vala:152 Utility/TeeJee.FileSystem.vala:155 -msgid "File read" -msgstr "Fichier lu" - #: Utility/TeeJee.FileSystem.vala:187 Utility/TeeJee.FileSystem.vala:190 msgid "File saved" msgstr "Fichier sauvegardé" +#: Common/LinuxKernel.vala:733 +#, c-format +msgid "Following kernels will be removed" +msgstr "" + #: Gtk/SettingsDialog.vala:192 msgid "GRUB Options" msgstr "Options GRUB" @@ -277,19 +270,33 @@ msgstr "Heure(s)" msgid "Ignore this update" msgstr "Ignorer cette mise à jour" -#: Common/LinuxKernel.vala:254 +#: Common/LinuxKernel.vala:262 msgid "Index is fresh" msgstr "L'index est à jour" -#: Common/LinuxKernel.vala:251 +#: Common/LinuxKernel.vala:259 msgid "Index is stale" msgstr "L'index est obsolète" -#: Gtk/MainWindow.vala:360 Gtk/UpdateNotificationWindow.vala:147 +#: Gtk/MainWindow.vala:359 Gtk/UpdateNotificationWindow.vala:147 msgid "Install" msgstr "Installer" -#: Console/AppConsole.vala:86 +#: Common/LinuxKernel.vala:797 +#, c-format +msgid "Install Linux v%s ? (y/n): " +msgstr "" + +#: Console/AppConsole.vala:94 +#, fuzzy +msgid "Install latest mainline kernel" +msgstr "Installer le noyau principal spécifié" + +#: Console/AppConsole.vala:95 +msgid "Install latest point update for current series" +msgstr "" + +#: Console/AppConsole.vala:96 msgid "Install specified mainline kernel" msgstr "Installer le noyau principal spécifié" @@ -297,36 +304,51 @@ msgstr "Installer le noyau principal spécifié" msgid "Install this kernel" msgstr "Installer ce noyau" -#: Common/LinuxKernel.vala:1156 +#: Common/LinuxKernel.vala:1306 msgid "Installation completed with errors" msgstr "Installation terminée avec des erreurs" -#: Common/LinuxKernel.vala:1153 +#: Common/LinuxKernel.vala:1303 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "Installation complétée. Un redémarrage est nécessaire pour utiliser le " "nouveau noyau." -#: Common/LinuxKernel.vala:1053 Gtk/MainWindow.vala:211 +#: Common/LinuxKernel.vala:1201 Gtk/MainWindow.vala:208 msgid "Installed" msgstr "Installé" -#: Utility/TeeJee.System.vala:275 Gtk/MainWindow.vala:84 -#: Gtk/MainWindow.vala:351 Gtk/MainWindow.vala:646 +#: Gtk/SettingsDialog.vala:257 +#, fuzzy +msgid "Internect connection timeout in " +msgstr "Connexion internet inexistante" + +#: Gtk/MainWindow.vala:350 Gtk/MainWindow.vala:547 Gtk/MainWindow.vala:683 +#: Utility/TeeJee.System.vala:292 msgid "Internet connection is not active" msgstr "Connexion internet inexistante" -#: Gtk/MainWindow.vala:153 +#: Gtk/MainWindow.vala:150 msgid "Kernel" msgstr "Noyau" -#: Gtk/MainWindow.vala:501 +#: Gtk/MainWindow.vala:531 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "" "Utilitaire de mise à niveau des noyaux pour les distributions basées pour " "Ubuntu" -#: Console/AppConsole.vala:85 +#: Common/LinuxKernel.vala:779 Console/AppConsole.vala:372 +#, c-format +msgid "Latest point update" +msgstr "" + +#: Common/LinuxKernel.vala:768 Console/AppConsole.vala:365 +#, c-format +msgid "Latest update" +msgstr "" + +#: Console/AppConsole.vala:92 msgid "List all available mainline kernels" msgstr "Lister tous les noyaux mainline disponibles" @@ -334,23 +356,28 @@ msgstr "Lister tous les noyaux mainline disponibles" msgid "List available kernels" msgstr "Lister les noyaux disponibles" -#: Gtk/MainWindow.vala:786 +#: Console/AppConsole.vala:93 +#, fuzzy +msgid "List installed kernels" +msgstr "Lister les noyaux disponibles" + +#: Gtk/MainWindow.vala:823 +#, fuzzy msgid "" "Mainline kernels can sometimes cause problems if there are proprietary " "drivers installed on your system. These issues include:\n" "\n" -"\\342\\226\\260 WiFi not working\n" -"\\342\\226\\260 Black screen on startup\n" -"\\342\\226\\260 Random system freeze\n" +"▰ WiFi not working\n" +"▰ Black screen on startup\n" +"▰ Random system freeze\n" "\n" "If you face any of these issues there is no need to panic.\n" "\n" -"\\342\\226\\260 Reboot your system\n" -"\\342\\226\\260 Select 'Advanced Boot Options' from the GRUB boot menu\n" -"\\342\\226\\260 Select an older kernel from the list displayed on this " -"screen\n" -"\\342\\226\\260 Your system will boot using the selected kernel\n" -"\\342\\226\\260 You can now uninstall the kernel that is causing issues\n" +"▰ Reboot your system\n" +"▰ Select 'Advanced Boot Options' from the GRUB boot menu\n" +"▰ Select an older kernel from the list displayed on this screen\n" +"▰ Your system will boot using the selected kernel\n" +"▰ You can now uninstall the kernel that is causing issues\n" msgstr "" "Certains noyaux peuvent poser problème à cause de l'absence de drivers " "propriétaires installés sur votre système. Cela se présente par :\n" @@ -371,11 +398,11 @@ msgstr "" msgid "Missing Icon" msgstr "Icône introuvable" -#: Gtk/MainWindow.vala:369 +#: Gtk/MainWindow.vala:368 msgid "Multiple Kernels Selected" msgstr "Plusieurs noyaux sélectionnés" -#: Console/AppConsole.vala:195 +#: Console/AppConsole.vala:296 msgid "Multiple kernels selected for installation. Select only one." msgstr "" "Plusieurs noyaux sélectionnés pour être installés. Sélectionnez en seulement " @@ -385,15 +412,20 @@ msgstr "" msgid "No" msgstr "Non" -#: Gtk/MainWindow.vala:84 Gtk/MainWindow.vala:351 Gtk/MainWindow.vala:646 +#: Gtk/MainWindow.vala:350 Gtk/MainWindow.vala:547 Gtk/MainWindow.vala:683 msgid "No Internet" msgstr "Pas d'Internet" -#: Console/AppConsole.vala:349 Gtk/MainWindow.vala:780 +#: Console/AppConsole.vala:290 Console/AppConsole.vala:327 +msgid "No kernels specified" +msgstr "" + +#: Common/LinuxKernel.vala:787 Console/AppConsole.vala:377 +#: Console/AppConsole.vala:457 Gtk/MainWindow.vala:817 msgid "No updates found" msgstr "Aucune mise à jour disponible" -#: Gtk/MainWindow.vala:372 Gtk/MainWindow.vala:383 +#: Gtk/MainWindow.vala:371 Gtk/MainWindow.vala:382 msgid "Not Selected" msgstr "Non selectionné" @@ -409,36 +441,35 @@ msgstr "Notifier si une version stable majeure est disponible" msgid "Notify if a point release is available" msgstr "Notifier si une version stable mineure est disponible" -#: Console/AppConsole.vala:84 -msgid "Notify if kernel update is available" -msgstr "Notifier si une mise à jour du noyau est disponible" - -#: Common/LinuxKernel.vala:1099 Utility/Gtk/CustomMessageDialog.vala:167 +#: Common/LinuxKernel.vala:1249 Utility/Gtk/CustomMessageDialog.vala:167 #: Utility/Gtk/CustomMessageDialog.vala:171 Utility/Gtk/GtkHelper.vala:121 -#: Utility/Gtk/DonationWindow.vala:95 #, c-format msgid "OK" msgstr "OK" -#: Console/AppConsole.vala:81 Gtk/AppGtk.vala:181 +#: Console/AppConsole.vala:103 Gtk/AppGtk.vala:181 msgid "Options" msgstr "Options" -#: Common/LinuxKernel.vala:922 +#: Gtk/SettingsDialog.vala:236 +msgid "Other" +msgstr "" + +#: Common/LinuxKernel.vala:1063 #, c-format msgid "Packages Available (DEB)" msgstr "Paquets disponibles (DEB)" -#: Common/LinuxKernel.vala:930 +#: Common/LinuxKernel.vala:1071 #, c-format msgid "Packages Installed" msgstr "Paquets installés" -#: Common/Main.vala:102 +#: Common/Main.vala:107 msgid "Please install required packages and try again" msgstr "Veuillez installer les paquets requis et réessayer" -#: Common/LinuxKernel.vala:1177 +#: Common/LinuxKernel.vala:1327 msgid "Preparing to remove selected kernels" msgstr "Préparation à la suppression des noyaux sélectionnés" @@ -446,53 +477,61 @@ msgstr "Préparation à la suppression des noyaux sélectionnés" msgid "Print debug information" msgstr "Afficher les informations de débogage" -#: Gtk/MainWindow.vala:344 +#: Gtk/MainWindow.vala:425 +msgid "Purge" +msgstr "" + +#: Gtk/MainWindow.vala:343 msgid "Refresh" msgstr "Actualiser" -#: Gtk/MainWindow.vala:531 +#: Gtk/MainWindow.vala:566 msgid "Refreshing..." msgstr "Actualisation..." -#: Gtk/MainWindow.vala:377 +#: Gtk/MainWindow.vala:376 msgid "Remove" msgstr "Supprimer" -#: Console/AppConsole.vala:90 +#: Console/AppConsole.vala:100 Console/AppConsole.vala:105 msgid "Remove files from application cache" msgstr "Supprimer les fichiers du cache de l'application" -#: Console/AppConsole.vala:87 -msgid "Remove specified mainline kernel" +#: Console/AppConsole.vala:98 Gtk/MainWindow.vala:426 +msgid "Remove installed kernels older than running kernel" +msgstr "" + +#: Console/AppConsole.vala:97 +#, fuzzy +msgid "Remove specified kernel" msgstr "Supprimer le noyau mainline sélectionné" -#: Console/AppConsole.vala:217 -msgid "Run 'ukuu --list' and use the version string listed in first column" +#: Console/AppConsole.vala:204 Console/AppConsole.vala:318 +#: Console/AppConsole.vala:347 +msgid "Run '" msgstr "" -"Exécutez 'ukuu --list' et utilisez la chaîne de la version indiquée dans la " -"première colonne" -#: Console/AppConsole.vala:106 +#: Console/AppConsole.vala:122 msgid "Run the application as admin with pkexec or sudo." msgstr "Exécutez l'application en tant qu'admin avec pkexec or sudo." -#: Common/LinuxKernel.vala:1053 Gtk/MainWindow.vala:211 +#: Common/LinuxKernel.vala:1201 Gtk/MainWindow.vala:208 msgid "Running" msgstr "En cours" -#: Gtk/MainWindow.vala:369 +#: Gtk/MainWindow.vala:368 msgid "Select a single kernel to install" msgstr "Sélectionnez un seul noyau à installer" -#: Gtk/MainWindow.vala:372 +#: Gtk/MainWindow.vala:371 msgid "Select the kernel to install" msgstr "Sélectionnez le noyau à installer" -#: Gtk/MainWindow.vala:383 +#: Gtk/MainWindow.vala:382 msgid "Select the kernels to remove" msgstr "Sélectionnez les noyaux à supprimer" -#: Common/LinuxKernel.vala:1172 +#: Common/LinuxKernel.vala:1322 msgid "" "Selected kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -500,11 +539,11 @@ msgstr "" "Ce noyau est en cours d'exécution et ne peut pas être supprimé.\n" " Installez un autre noyau avant de retirer celui-ci." -#: Utility/Gtk/DonationWindow.vala:81 -msgid "Send Email" -msgstr "Envoyer courriel" +#: Gtk/SettingsDialog.vala:203 +msgid "Set GRUB menu timeout" +msgstr "" -#: Gtk/SettingsDialog.vala:57 Gtk/MainWindow.vala:437 +#: Gtk/MainWindow.vala:475 Gtk/SettingsDialog.vala:57 msgid "Settings" msgstr "Paramètres" @@ -524,32 +563,42 @@ msgstr "Afficher la bulle de notification sur le bureau" msgid "Show notification dialog" msgstr "Afficher les notifications" -#: Gtk/MainWindow.vala:199 +#: Console/AppConsole.vala:101 +#, fuzzy +msgid "Show unstable and RC releases" +msgstr "Cacher les versions instables et RC" + +#: Gtk/SettingsDialog.vala:244 +#, fuzzy +msgid "Skip internet connection check" +msgstr "Connexion internet inexistante" + +#: Gtk/MainWindow.vala:196 msgid "Status" msgstr "Statut" -#: Utility/TeeJee.Process.vala:511 +#: Utility/TeeJee.Process.vala:512 msgid "Stopped" msgstr "Arrêté" -#: Console/AppConsole.vala:79 Gtk/AppGtk.vala:179 +#: Console/AppConsole.vala:86 Gtk/AppGtk.vala:179 msgid "Syntax" msgstr "Syntaxe" -#: Common/LinuxKernel.vala:103 -msgid "System architecture" -msgstr "Architecture du système" +#: Console/AppConsole.vala:210 Gtk/AppGtk.vala:111 +msgid "Temp" +msgstr "" -#: Utility/Gtk/AboutWindow.vala:340 +#: Utility/Gtk/AboutWindow.vala:330 #, c-format msgid "Third Party Tools" msgstr "Outils tiers" -#: Common/LinuxKernel.vala:1122 Gtk/MainWindow.vala:641 +#: Common/LinuxKernel.vala:1272 Gtk/MainWindow.vala:678 msgid "This kernel is already installed." msgstr "Ce noyau est déjà installé." -#: Common/LinuxKernel.vala:1230 +#: Common/LinuxKernel.vala:1380 msgid "" "This kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -569,20 +618,20 @@ msgstr "" "0 = Ne pas afficher de menu\n" "-1 = Afficher indéfiniment le menu jusqu'au choix de l'utilisateur" -#: Utility/Gtk/AboutWindow.vala:356 +#: Utility/Gtk/AboutWindow.vala:346 #, c-format msgid "Translators" msgstr "Traducteurs" -#: Common/LinuxKernel.vala:1214 Common/LinuxKernel.vala:1272 +#: Common/LinuxKernel.vala:1364 Common/LinuxKernel.vala:1422 msgid "Un-install completed" msgstr "Désinstallation complète" -#: Common/LinuxKernel.vala:1217 Common/LinuxKernel.vala:1275 +#: Common/LinuxKernel.vala:1367 Common/LinuxKernel.vala:1425 msgid "Un-install completed with errors" msgstr "Désinstallation terminée avec des erreurs" -#: Console/AppConsole.vala:270 Gtk/AppGtk.vala:166 +#: Console/AppConsole.vala:202 Gtk/AppGtk.vala:166 msgid "Unknown option" msgstr "Option inconnue" @@ -604,26 +653,14 @@ msgstr "" "0 = Ne pas afficher de menu\n" "-1 = Afficher jusqu'au choix de l'utilisateur" -#: Common/LinuxKernel.vala:1343 +#: Common/LinuxKernel.vala:1493 msgid "Updating GRUB menu" msgstr "Mise à jour du menu GRUB" -#: Console/AppConsole.vala:89 -msgid "Use specified user's cache directory" -msgstr "Utiliser le répertoire de cache de l'utilisateur sélectionné" - -#: Console/AppConsole.vala:144 Gtk/AppGtk.vala:109 -msgid "Using cache directory" -msgstr "Utiliser le dossier cache" - -#: Gtk/MainWindow.vala:182 +#: Gtk/MainWindow.vala:179 msgid "Version" msgstr "Version" -#: Utility/Gtk/DonationWindow.vala:88 -msgid "Visit Website" -msgstr "Visiter mon site" - #: Utility/TeeJee.Logging.vala:89 msgid "W" msgstr "W" @@ -640,12 +677,82 @@ msgstr "Oui" msgid "[Warning] Deleted invalid lock" msgstr "[Attention] Verrou invalide supprimé" +#: Gtk/SettingsDialog.vala:271 +msgid "seconds" +msgstr "" + +#~ msgid "Run 'ukuu --list' and use the version string listed in first column" +#~ msgstr "" +#~ "Exécutez 'ukuu --list' et utilisez la chaîne de la version indiquée dans " +#~ "la première colonne" + +#~ msgid "" +#~ "Did you find this software useful?\n" +#~ "\n" +#~ "You can buy me a coffee or make a donation via PayPal to show your " +#~ "support. Or just drop me an email and say Hi. This application is " +#~ "completely free and will continue to remain that way. Your contributions " +#~ "will help in keeping this project alive and improving it further.\n" +#~ "\n" +#~ "Feel free to send me an email if you find any issues in this application " +#~ "or if you need any changes. Suggestions and feedback are always welcome.\n" +#~ "\n" +#~ "Thanks,\n" +#~ "Tony George\n" +#~ "(teejeetech@gmail.com)" +#~ msgstr "" +#~ "Vous trouvez ce logiciel super utile?\n" +#~ "\n" +#~ "Vous pouvez m'acheter un café ou faire un don via PayPal pour montrer " +#~ "votre soutien. Ou envoyez-moi simplement un courriel et dites moi " +#~ "bonjour. Cette application est entièrement gratuite et continuera de " +#~ "rester de cette façon. Vos contributions contribueront à maintenir ce " +#~ "projet vivant et l'améliorer encore.\n" +#~ "\n" +#~ "N'hésitez pas à m'envoyer un courriel si vous trouvez des problèmes dans " +#~ "cette application ou si vous avez besoin de modifications. Les " +#~ "suggestions et les commentaires sont toujours les bienvenus.\n" +#~ "\n" +#~ "Merci beaucoup \n" +#~ "Tony George\n" +#~ "(teejeetech@gmail.com)" + +#~ msgid "Display GRUB menu during boot" +#~ msgstr "Afficher le menu GRUB durant le démarrage" + +#~ msgid "Donate" +#~ msgstr "Dons" + +#~ msgid "Donate with Google Wallet" +#~ msgstr "Dons par Google Wallet" + +#~ msgid "Donate with PayPal" +#~ msgstr "Dons avec PayPal" + +#~ msgid "Donations" +#~ msgstr "Donations" + +#~ msgid "File read" +#~ msgstr "Fichier lu" + +#~ msgid "Notify if kernel update is available" +#~ msgstr "Notifier si une mise à jour du noyau est disponible" + +#~ msgid "Send Email" +#~ msgstr "Envoyer courriel" + +#~ msgid "Use specified user's cache directory" +#~ msgstr "Utiliser le répertoire de cache de l'utilisateur sélectionné" + +#~ msgid "Using cache directory" +#~ msgstr "Utiliser le dossier cache" + +#~ msgid "Visit Website" +#~ msgstr "Visiter mon site" + #~ msgid "Open Ukuu" #~ msgstr "Lancer Ukuu" -#~ msgid "Could not find file" -#~ msgstr "Impossible de trouver le fichier" - #~ msgid "Cron job added" #~ msgstr "Cron ajouter" diff --git a/po/ukuu-hr.po b/po/ukuu-hr.po index d13c9ac8..eb618fe9 100644 --- a/po/ukuu-hr.po +++ b/po/ukuu-hr.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: ukuu\n" -"Report-Msgid-Bugs-To: teejeetech@gmail.com\n" -"POT-Creation-Date: 2017-12-24 00:41+0100\n" +"Report-Msgid-Bugs-To: bw.aljex@gmail.com\n" +"POT-Creation-Date: 2019-03-10 23:56-0400\n" "PO-Revision-Date: 2017-12-24 00:52+0100\n" "Last-Translator: gogo \n" "Language-Team: Croatian \n" @@ -18,11 +18,11 @@ msgstr "" "X-Launchpad-Export-Date: 2017-12-23 23:36+0000\n" "X-Generator: Poedit 1.8.7.1\n" -#: Gtk/MainWindow.vala:470 +#: Gtk/MainWindow.vala:496 msgid "About" msgstr "O programu" -#: Console/AppConsole.vala:103 +#: Console/AppConsole.vala:119 msgid "Admin access is required for running this application." msgstr "Administratorske ovlasti su potrebne za pokretanje ove aplikacije." @@ -30,35 +30,48 @@ msgstr "Administratorske ovlasti su potrebne za pokretanje ove aplikacije." msgid "Another instance of this application is running" msgstr "Drugi primjerak ove aplikacije je pokrenut" -#: Utility/Gtk/AboutWindow.vala:348 +#: Common/LinuxKernel.vala:108 +#, fuzzy +msgid "Architecture" +msgstr "Arhitektura sustava" + +#: Utility/Gtk/AboutWindow.vala:338 #, c-format msgid "Artists" msgstr "Dizajneri" -#: Utility/Gtk/AboutWindow.vala:324 +#: Console/AppConsole.vala:106 +msgid "Assume Yes for all prompts (non-interactive mode)" +msgstr "" + +#: Utility/Gtk/AboutWindow.vala:314 #, c-format msgid "Authors" msgstr "Autori" -#: Common/LinuxKernel.vala:1036 +#: Common/LinuxKernel.vala:1184 msgid "Available Kernels" msgstr "Dostupni kerneli" -#: Utility/Gtk/AboutWindow.vala:295 +#: Utility/Gtk/AboutWindow.vala:285 msgid "Back" msgstr "Natrag" -#: Gtk/MainWindow.vala:785 +#: Gtk/MainWindow.vala:822 msgid "Booting previous kernels" msgstr "Pokretanje prijašnjeg kernela" +#: Console/AppConsole.vala:209 Gtk/AppGtk.vala:110 +msgid "Cache" +msgstr "" + +#: Gtk/ProgressWindow.vala:144 Gtk/TerminalWindow.vala:168 +#: Gtk/UpdateNotificationWindow.vala:167 #: Utility/Gtk/CustomMessageDialog.vala:172 Utility/Gtk/GtkHelper.vala:122 -#: Gtk/ProgressWindow.vala:138 Gtk/UpdateNotificationWindow.vala:167 -#: Gtk/TerminalWindow.vala:168 msgid "Cancel" msgstr "Odustani" -#: Gtk/MainWindow.vala:426 +#: Gtk/MainWindow.vala:464 msgid "Changes" msgstr "Promjene" @@ -66,33 +79,61 @@ msgstr "Promjene" msgid "Check every" msgstr "Provjeri svaka" -#: Console/AppConsole.vala:83 +#: Console/AppConsole.vala:90 msgid "Check for kernel updates" msgstr "Provjeri nadopune kernela" -#: Utility/Gtk/AboutWindow.vala:305 Gtk/TerminalWindow.vala:178 +#: Console/AppConsole.vala:91 +#, fuzzy +msgid "Check for kernel updates and notify current user" +msgstr "Provjeri nadopune kernela" + +#: Gtk/TerminalWindow.vala:178 Utility/Gtk/AboutWindow.vala:295 msgid "Close" msgstr "Zatvori" -#: Common/Main.vala:101 +#: Console/AppConsole.vala:346 +msgid "Command not specified" +msgstr "" + +#: Console/AppConsole.vala:88 +msgid "Commands" +msgstr "" + +#: Common/Main.vala:106 msgid "Commands listed below are not available on this system" msgstr "Naredbe navedene ispod nisu dostupne na ovom sustavu" -#: Utility/Gtk/AboutWindow.vala:332 +#: Common/LinuxKernel.vala:740 +#, c-format +msgid "Continue ?" +msgstr "" + +#: Utility/Gtk/AboutWindow.vala:322 #, c-format msgid "Contributions" msgstr "Prilozi" -#: Console/AppConsole.vala:213 Gtk/MainWindow.vala:103 +#: Common/LinuxKernel.vala:724 +#, fuzzy +msgid "Could not find any kernels to remove" +msgstr "Odaberi kernele za uklanjanje" + +#: Console/AppConsole.vala:314 Gtk/MainWindow.vala:100 msgid "Could not find requested version" msgstr "Nemoguće je pronaći zatraženu inačicu" +#: Common/LinuxKernel.vala:718 +#, fuzzy +msgid "Could not find running kernel in list!" +msgstr "Nemoguće je pronaći zatraženu inačicu" + #: Utility/TeeJee.FileSystem.vala:349 Utility/TeeJee.FileSystem.vala:352 #: Utility/TeeJee.FileSystem.vala:378 msgid "Created directory" msgstr "Stvoren direktorij" -#: Utility/Gtk/AboutWindow.vala:282 Utility/Gtk/AboutWindow.vala:299 +#: Utility/Gtk/AboutWindow.vala:272 Utility/Gtk/AboutWindow.vala:289 msgid "Credits" msgstr "Zasluge" @@ -104,37 +145,6 @@ msgstr "Dan(a)" msgid "Deleted directory" msgstr "Obrisan direktorij" -#: Utility/Gtk/DonationWindow.vala:54 -msgid "" -"Did you find this software useful?\n" -"\n" -"You can buy me a coffee or make a donation via PayPal to show your support. " -"Or just drop me an email and say Hi. This application is completely free and " -"will continue to remain that way. Your contributions will help in keeping " -"this project alive and improving it further.\n" -"\n" -"Feel free to send me an email if you find any issues in this application or " -"if you need any changes. Suggestions and feedback are always welcome.\n" -"\n" -"Thanks,\n" -"Tony George\n" -"(teejeetech@gmail.com)" -msgstr "" -"Je li vam ovaj softver bio koristan?\n" -"\n" -"Možete mi kupiti kavu ili donirati putem PayPala kako bi me podržali. Ili mi " -"jednostavno pošaljite e-poštu i recite mi Bok. Ova aplikacija je u " -"potpunosti besplatna i takva će i ostati. Vaš doprinos će pomoći održati " -"ovaj projekt živim i poboljšanim u budućnosti.\n" -"\n" -"Slobodno mi pošaljite e-poštu ako imate bilo kakav problem s ovom " -"aplikacijom ili želite neku promjenu. Prijedlozi i povratne informacije su " -"uvijek dobrodošle.\n" -"\n" -"Hvala Vam,\n" -"Tony George\n" -"(teejeetech@gmail.com)" - #: Utility/TeeJee.FileSystem.vala:509 msgid "Dir not found" msgstr "Direktorij nije pronađen" @@ -143,41 +153,20 @@ msgstr "Direktorij nije pronađen" msgid "Display" msgstr "Prikaz" -#: Gtk/SettingsDialog.vala:203 -msgid "Display GRUB menu during boot" -msgstr "Prikaži GRUB izbornik tijekom pokretanja sustava" - -#: Common/LinuxKernel.vala:89 +#: Common/LinuxKernel.vala:94 msgid "Distribution" msgstr "Distribucija" -#: Utility/Gtk/AboutWindow.vala:364 +#: Utility/Gtk/AboutWindow.vala:354 #, c-format msgid "Documenters" msgstr "Autori dokumentacije" -#: Utility/Gtk/DonationWindow.vala:36 Gtk/MainWindow.vala:458 -msgid "Donate" -msgstr "Donirajte" - -#: Utility/Gtk/DonationWindow.vala:74 -msgid "Donate with Google Wallet" -msgstr "Donirajte putem Google Walleta" - -#: Utility/Gtk/DonationWindow.vala:67 -msgid "Donate with PayPal" -msgstr "Donirajte putem PayPala" - -#: Utility/Gtk/AboutWindow.vala:372 -#, c-format -msgid "Donations" -msgstr "Donacije" - -#: Console/AppConsole.vala:88 +#: Console/AppConsole.vala:99 msgid "Download packages for specified kernel" msgstr "Preuzmi pakete za određeni kernel" -#: Common/LinuxKernel.vala:1081 +#: Common/LinuxKernel.vala:1230 #, c-format msgid "Downloading" msgstr "Preuzimanje" @@ -186,7 +175,7 @@ msgstr "Preuzimanje" msgid "E" msgstr "G" -#: Common/LinuxKernel.vala:1108 +#: Common/LinuxKernel.vala:1258 #, c-format msgid "ERROR" msgstr "GREŠKA" @@ -219,10 +208,14 @@ msgstr "Neuspjelo čitanje datoteke" msgid "Failed to write file" msgstr "Neuspjelo zapisivanje datoteke" -#: Common/LinuxKernel.vala:385 +#: Common/LinuxKernel.vala:399 msgid "Fetching index from kernel.ubuntu.com..." msgstr "Preuzimanje sadržaja sa kernel.ubuntu.com..." +#: Common/LinuxKernel.vala:356 +msgid "Fetching index..." +msgstr "" + #: Utility/TeeJee.FileSystem.vala:210 Utility/TeeJee.FileSystem.vala:213 msgid "File copied" msgstr "Datoteka kopirana" @@ -239,8 +232,7 @@ msgstr "Datoteka nedostaje" msgid "File moved" msgstr "Datoteka je premještena" -#: Common/LinuxKernel.vala:943 Utility/TeeJee.FileSystem.vala:231 -#: Utility/TeeJee.FileSystem.vala:538 +#: Utility/TeeJee.FileSystem.vala:231 Utility/TeeJee.FileSystem.vala:538 msgid "File not found" msgstr "Datoteka nije pronađena" @@ -249,14 +241,15 @@ msgstr "Datoteka nije pronađena" msgid "File not found: %s" msgstr "Datoteka nije pronađena: %s" -#: Utility/TeeJee.FileSystem.vala:152 Utility/TeeJee.FileSystem.vala:155 -msgid "File read" -msgstr "Datoteka je pročitana" - #: Utility/TeeJee.FileSystem.vala:187 Utility/TeeJee.FileSystem.vala:190 msgid "File saved" msgstr "Datoteka je spremljenja" +#: Common/LinuxKernel.vala:733 +#, c-format +msgid "Following kernels will be removed" +msgstr "" + #: Gtk/SettingsDialog.vala:192 msgid "GRUB Options" msgstr "GRUB mogućnosti" @@ -277,19 +270,33 @@ msgstr "Sat(a)" msgid "Ignore this update" msgstr "Zanemari ovu nadopunu" -#: Common/LinuxKernel.vala:254 +#: Common/LinuxKernel.vala:262 msgid "Index is fresh" msgstr "Sadržaj je osvježen" -#: Common/LinuxKernel.vala:251 +#: Common/LinuxKernel.vala:259 msgid "Index is stale" msgstr "Sadržaj je zastario" -#: Gtk/MainWindow.vala:360 Gtk/UpdateNotificationWindow.vala:147 +#: Gtk/MainWindow.vala:359 Gtk/UpdateNotificationWindow.vala:147 msgid "Install" msgstr "Instaliraj" -#: Console/AppConsole.vala:86 +#: Common/LinuxKernel.vala:797 +#, c-format +msgid "Install Linux v%s ? (y/n): " +msgstr "" + +#: Console/AppConsole.vala:94 +#, fuzzy +msgid "Install latest mainline kernel" +msgstr "Instaliraj određeni mainline kernel" + +#: Console/AppConsole.vala:95 +msgid "Install latest point update for current series" +msgstr "" + +#: Console/AppConsole.vala:96 msgid "Install specified mainline kernel" msgstr "Instaliraj određeni mainline kernel" @@ -297,34 +304,49 @@ msgstr "Instaliraj određeni mainline kernel" msgid "Install this kernel" msgstr "Instaliraj ovaj kernel" -#: Common/LinuxKernel.vala:1156 +#: Common/LinuxKernel.vala:1306 msgid "Installation completed with errors" msgstr "Instalacija je završena s greškama" -#: Common/LinuxKernel.vala:1153 +#: Common/LinuxKernel.vala:1303 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "Instalacija je završena. Potrebno je ponovno pokretanje računala kako bi se " "koristio novi kernel." -#: Common/LinuxKernel.vala:1053 Gtk/MainWindow.vala:211 +#: Common/LinuxKernel.vala:1201 Gtk/MainWindow.vala:208 msgid "Installed" msgstr "Instalirano" -#: Utility/TeeJee.System.vala:275 Gtk/MainWindow.vala:84 -#: Gtk/MainWindow.vala:351 Gtk/MainWindow.vala:646 +#: Gtk/SettingsDialog.vala:257 +#, fuzzy +msgid "Internect connection timeout in " +msgstr "Internet povezivanje nije aktivno" + +#: Gtk/MainWindow.vala:350 Gtk/MainWindow.vala:547 Gtk/MainWindow.vala:683 +#: Utility/TeeJee.System.vala:292 msgid "Internet connection is not active" msgstr "Internet povezivanje nije aktivno" -#: Gtk/MainWindow.vala:153 +#: Gtk/MainWindow.vala:150 msgid "Kernel" msgstr "Kernel" -#: Gtk/MainWindow.vala:501 +#: Gtk/MainWindow.vala:531 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Alat za nadogradnju kernela Ubuntu temeljenih distribucija" -#: Console/AppConsole.vala:85 +#: Common/LinuxKernel.vala:779 Console/AppConsole.vala:372 +#, c-format +msgid "Latest point update" +msgstr "" + +#: Common/LinuxKernel.vala:768 Console/AppConsole.vala:365 +#, c-format +msgid "Latest update" +msgstr "" + +#: Console/AppConsole.vala:92 msgid "List all available mainline kernels" msgstr "Prikaži sve mainline kernele" @@ -332,49 +354,52 @@ msgstr "Prikaži sve mainline kernele" msgid "List available kernels" msgstr "Prikaži sve kernele" -#: Gtk/MainWindow.vala:786 +#: Console/AppConsole.vala:93 +#, fuzzy +msgid "List installed kernels" +msgstr "Prikaži sve kernele" + +#: Gtk/MainWindow.vala:823 msgid "" "Mainline kernels can sometimes cause problems if there are proprietary " "drivers installed on your system. These issues include:\n" "\n" -"\\342\\226\\260 WiFi not working\n" -"\\342\\226\\260 Black screen on startup\n" -"\\342\\226\\260 Random system freeze\n" +"▰ WiFi not working\n" +"▰ Black screen on startup\n" +"▰ Random system freeze\n" "\n" "If you face any of these issues there is no need to panic.\n" "\n" -"\\342\\226\\260 Reboot your system\n" -"\\342\\226\\260 Select 'Advanced Boot Options' from the GRUB boot menu\n" -"\\342\\226\\260 Select an older kernel from the list displayed on this " -"screen\n" -"\\342\\226\\260 Your system will boot using the selected kernel\n" -"\\342\\226\\260 You can now uninstall the kernel that is causing issues\n" +"▰ Reboot your system\n" +"▰ Select 'Advanced Boot Options' from the GRUB boot menu\n" +"▰ Select an older kernel from the list displayed on this screen\n" +"▰ Your system will boot using the selected kernel\n" +"▰ You can now uninstall the kernel that is causing issues\n" msgstr "" -"Mainline kerneli ponekad mogu prouzrokovati probleme ako su vlasnički " -"upravljački programi instalirani na vašem sustavu. Ti problemi obuhvaćaju:\n" +"Mainline kerneli ponekada mogu prouzrokovati probleme ako su instalirani " +"vlasnički upravljački programi na vašem sustavu. Ti problemi uključuju:\n" "\n" -"\\342\\226\\260 Bežična mreža ne radi\n" -"\\342\\226\\260 Crni zaslon pri pokretanju\n" -"\\342\\226\\260 Naizmjenično smrzavanje sustava\n" +"▰ Bežična mreža ne radi\n" +"▰ Crni zaslon pri pokretanju\n" +"▰ Slučajna smrzavanja sustava\n" "\n" -"Ako se suočite sa nekim od ovih problema ne paničarite.\n" +"Ako se suočite s bilo kojim od ovih problema nemojte paničariti.\n" "\n" -"\\342\\226\\260 Ponovno pokrenite vaš sustav\n" -"\\342\\226\\260 Odaberite 'Napredne mogućnosti' iz GRUB izbornika\n" -"\\342\\226\\260 Odaberite stariji kernel s popisa prikazanih na ovom " -"zaslonu\n" -"\\342\\226\\260 Vaš sustav će se pokrenuti koristeći odabrani kernel\n" -"\\342\\226\\260 Sada možete ukloniti kernel koji uzrokuje probleme\n" +"▰ Ponovno pokrenite svoj sustav\n" +"▰ Odaberite 'Napredne mogućnosti pokretanja' s GRUB izbornika pokretanja\n" +"▰ Odaberite stariji kernel s popisa prikazanog na zaslonu\n" +"▰ Vaš sustav će se pokrenuti pomoću odabranog kernela\n" +"▰ Sada možete ukloniti kernel koji uzrokuje probleme\n" #: Utility/Gtk/GtkHelper.vala:272 msgid "Missing Icon" msgstr "Ikone koje nedostaju" -#: Gtk/MainWindow.vala:369 +#: Gtk/MainWindow.vala:368 msgid "Multiple Kernels Selected" msgstr "Više kernela je odabrano" -#: Console/AppConsole.vala:195 +#: Console/AppConsole.vala:296 msgid "Multiple kernels selected for installation. Select only one." msgstr "Više kernela je odabrano za instalaciju. odaberite samo jedan." @@ -382,15 +407,20 @@ msgstr "Više kernela je odabrano za instalaciju. odaberite samo jedan." msgid "No" msgstr "Ne" -#: Gtk/MainWindow.vala:84 Gtk/MainWindow.vala:351 Gtk/MainWindow.vala:646 +#: Gtk/MainWindow.vala:350 Gtk/MainWindow.vala:547 Gtk/MainWindow.vala:683 msgid "No Internet" msgstr "Nema pristupa internetu" -#: Console/AppConsole.vala:349 Gtk/MainWindow.vala:780 +#: Console/AppConsole.vala:290 Console/AppConsole.vala:327 +msgid "No kernels specified" +msgstr "" + +#: Common/LinuxKernel.vala:787 Console/AppConsole.vala:377 +#: Console/AppConsole.vala:457 Gtk/MainWindow.vala:817 msgid "No updates found" msgstr "Nema pronađenih nadopuna" -#: Gtk/MainWindow.vala:372 Gtk/MainWindow.vala:383 +#: Gtk/MainWindow.vala:371 Gtk/MainWindow.vala:382 msgid "Not Selected" msgstr "Nije odabrano" @@ -406,36 +436,35 @@ msgstr "Obavijesti kada je glavno izdanje dostupno" msgid "Notify if a point release is available" msgstr "Obavijesti kada je pojedino izdanje dostupno" -#: Console/AppConsole.vala:84 -msgid "Notify if kernel update is available" -msgstr "Obavijesti kada je nadopuna kernela dostupna" - -#: Common/LinuxKernel.vala:1099 Utility/Gtk/CustomMessageDialog.vala:167 +#: Common/LinuxKernel.vala:1249 Utility/Gtk/CustomMessageDialog.vala:167 #: Utility/Gtk/CustomMessageDialog.vala:171 Utility/Gtk/GtkHelper.vala:121 -#: Utility/Gtk/DonationWindow.vala:95 #, c-format msgid "OK" msgstr "U redu" -#: Console/AppConsole.vala:81 Gtk/AppGtk.vala:181 +#: Console/AppConsole.vala:103 Gtk/AppGtk.vala:181 msgid "Options" msgstr "Mogućnosti" -#: Common/LinuxKernel.vala:922 +#: Gtk/SettingsDialog.vala:236 +msgid "Other" +msgstr "" + +#: Common/LinuxKernel.vala:1063 #, c-format msgid "Packages Available (DEB)" msgstr "Dostupni paketi (DEB)" -#: Common/LinuxKernel.vala:930 +#: Common/LinuxKernel.vala:1071 #, c-format msgid "Packages Installed" msgstr "Instalirani paketi" -#: Common/Main.vala:102 +#: Common/Main.vala:107 msgid "Please install required packages and try again" msgstr "Instalirajte potrebni paket i pokušajte ponovno" -#: Common/LinuxKernel.vala:1177 +#: Common/LinuxKernel.vala:1327 msgid "Preparing to remove selected kernels" msgstr "Pripremanje uklanjanja odabranih kernela" @@ -443,51 +472,61 @@ msgstr "Pripremanje uklanjanja odabranih kernela" msgid "Print debug information" msgstr "Ispiši informacije otklanjanja grešaka" -#: Gtk/MainWindow.vala:344 +#: Gtk/MainWindow.vala:425 +msgid "Purge" +msgstr "" + +#: Gtk/MainWindow.vala:343 msgid "Refresh" msgstr "Osvježi" -#: Gtk/MainWindow.vala:531 +#: Gtk/MainWindow.vala:566 msgid "Refreshing..." msgstr "Osvježavanje..." -#: Gtk/MainWindow.vala:377 +#: Gtk/MainWindow.vala:376 msgid "Remove" msgstr "Ukloni" -#: Console/AppConsole.vala:90 +#: Console/AppConsole.vala:100 Console/AppConsole.vala:105 msgid "Remove files from application cache" msgstr "Ukloni datoteke iz predmemorije aplikacije" -#: Console/AppConsole.vala:87 -msgid "Remove specified mainline kernel" +#: Console/AppConsole.vala:98 Gtk/MainWindow.vala:426 +msgid "Remove installed kernels older than running kernel" +msgstr "" + +#: Console/AppConsole.vala:97 +#, fuzzy +msgid "Remove specified kernel" msgstr "Ukloni određeni mainline kernel" -#: Console/AppConsole.vala:217 -msgid "Run 'ukuu --list' and use the version string listed in first column" -msgstr "Pokrenite 'ukuu --list' i koristite izraz inačice u prvom stupcu" +#: Console/AppConsole.vala:204 Console/AppConsole.vala:318 +#: Console/AppConsole.vala:347 +msgid "Run '" +msgstr "" -#: Console/AppConsole.vala:106 +#: Console/AppConsole.vala:122 msgid "Run the application as admin with pkexec or sudo." msgstr "Pokreni aplikaciju kao administrator sa pkexec ili sudo." -#: Common/LinuxKernel.vala:1053 Gtk/MainWindow.vala:211 +#: Common/LinuxKernel.vala:1201 Gtk/MainWindow.vala:208 msgid "Running" msgstr "Pokrenuto" -#: Gtk/MainWindow.vala:369 +#: Gtk/MainWindow.vala:368 msgid "Select a single kernel to install" msgstr "Odaberi pojedni kernel za instalaciju" -#: Gtk/MainWindow.vala:372 +#: Gtk/MainWindow.vala:371 msgid "Select the kernel to install" msgstr "Odaberi kernel za instalaciju" -#: Gtk/MainWindow.vala:383 +#: Gtk/MainWindow.vala:382 msgid "Select the kernels to remove" msgstr "Odaberi kernele za uklanjanje" -#: Common/LinuxKernel.vala:1172 +#: Common/LinuxKernel.vala:1322 msgid "" "Selected kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -495,11 +534,11 @@ msgstr "" "Odabrani kernel je trenutno pokernut i ne može se ukloniti.\n" " Instalirajte drugi kernel prije uklanjanja trenutnog kernela." -#: Utility/Gtk/DonationWindow.vala:81 -msgid "Send Email" -msgstr "Pošalji e-poštu" +#: Gtk/SettingsDialog.vala:203 +msgid "Set GRUB menu timeout" +msgstr "" -#: Gtk/SettingsDialog.vala:57 Gtk/MainWindow.vala:437 +#: Gtk/MainWindow.vala:475 Gtk/SettingsDialog.vala:57 msgid "Settings" msgstr "Postavke" @@ -519,32 +558,42 @@ msgstr "Prikaži mjehurić obavijesti radne površine" msgid "Show notification dialog" msgstr "Prikaži dijalog obavijesti" -#: Gtk/MainWindow.vala:199 +#: Console/AppConsole.vala:101 +#, fuzzy +msgid "Show unstable and RC releases" +msgstr "Sakrij nestabilne kernele i predizdanja" + +#: Gtk/SettingsDialog.vala:244 +#, fuzzy +msgid "Skip internet connection check" +msgstr "Internet povezivanje nije aktivno" + +#: Gtk/MainWindow.vala:196 msgid "Status" msgstr "Stanje" -#: Utility/TeeJee.Process.vala:511 +#: Utility/TeeJee.Process.vala:512 msgid "Stopped" msgstr "Zaustavljeno" -#: Console/AppConsole.vala:79 Gtk/AppGtk.vala:179 +#: Console/AppConsole.vala:86 Gtk/AppGtk.vala:179 msgid "Syntax" msgstr "Sintaksa" -#: Common/LinuxKernel.vala:103 -msgid "System architecture" -msgstr "Arhitektura sustava" +#: Console/AppConsole.vala:210 Gtk/AppGtk.vala:111 +msgid "Temp" +msgstr "" -#: Utility/Gtk/AboutWindow.vala:340 +#: Utility/Gtk/AboutWindow.vala:330 #, c-format msgid "Third Party Tools" msgstr "Alati treće strane" -#: Common/LinuxKernel.vala:1122 Gtk/MainWindow.vala:641 +#: Common/LinuxKernel.vala:1272 Gtk/MainWindow.vala:678 msgid "This kernel is already installed." msgstr "Ovaj kernel je već instaliran." -#: Common/LinuxKernel.vala:1230 +#: Common/LinuxKernel.vala:1380 msgid "" "This kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -564,20 +613,20 @@ msgstr "" "0 = Ne prikazuj izbornik\n" "-1 = Prikaži izbornik sve do korisnikovog odabira" -#: Utility/Gtk/AboutWindow.vala:356 +#: Utility/Gtk/AboutWindow.vala:346 #, c-format msgid "Translators" msgstr "Prevoditelji" -#: Common/LinuxKernel.vala:1214 Common/LinuxKernel.vala:1272 +#: Common/LinuxKernel.vala:1364 Common/LinuxKernel.vala:1422 msgid "Un-install completed" msgstr "Deinstalacija završena" -#: Common/LinuxKernel.vala:1217 Common/LinuxKernel.vala:1275 +#: Common/LinuxKernel.vala:1367 Common/LinuxKernel.vala:1425 msgid "Un-install completed with errors" msgstr "Deinstalacija završena s greškama" -#: Console/AppConsole.vala:270 Gtk/AppGtk.vala:166 +#: Console/AppConsole.vala:202 Gtk/AppGtk.vala:166 msgid "Unknown option" msgstr "Nepoznata mogućnost" @@ -600,26 +649,14 @@ msgstr "" "0 = Ne prikazuj izbornik\n" "-1 = Prikaži izbornik sve do korisnikovog odabira" -#: Common/LinuxKernel.vala:1343 +#: Common/LinuxKernel.vala:1493 msgid "Updating GRUB menu" msgstr "Nadopuna GRUB izbornika" -#: Console/AppConsole.vala:89 -msgid "Use specified user's cache directory" -msgstr "Koristi korisnikom određeni direktorij predmemorije" - -#: Console/AppConsole.vala:144 Gtk/AppGtk.vala:109 -msgid "Using cache directory" -msgstr "Direktorij predmemorije u upotrebi" - -#: Gtk/MainWindow.vala:182 +#: Gtk/MainWindow.vala:179 msgid "Version" msgstr "Inačica" -#: Utility/Gtk/DonationWindow.vala:88 -msgid "Visit Website" -msgstr "Posjetite web stranicu" - #: Utility/TeeJee.Logging.vala:89 msgid "W" msgstr "Z" @@ -636,39 +673,112 @@ msgstr "Da" msgid "[Warning] Deleted invalid lock" msgstr "[Upozorenje] Obrisano je neispravno zaključavanje" -#~ msgid "Enter path or browse for directory" -#~ msgstr "Upišite putanju ili odabrite direktorij" +#: Gtk/SettingsDialog.vala:271 +msgid "seconds" +msgstr "" + +#~ msgid "Run 'ukuu --list' and use the version string listed in first column" +#~ msgstr "Pokrenite 'ukuu --list' i koristite izraz inačice u prvom stupcu" + +#~ msgid "" +#~ "Did you find this software useful?\n" +#~ "\n" +#~ "You can buy me a coffee or make a donation via PayPal to show your " +#~ "support. Or just drop me an email and say Hi. This application is " +#~ "completely free and will continue to remain that way. Your contributions " +#~ "will help in keeping this project alive and improving it further.\n" +#~ "\n" +#~ "Feel free to send me an email if you find any issues in this application " +#~ "or if you need any changes. Suggestions and feedback are always welcome.\n" +#~ "\n" +#~ "Thanks,\n" +#~ "Tony George\n" +#~ "(teejeetech@gmail.com)" +#~ msgstr "" +#~ "Je li vam ovaj softver bio koristan?\n" +#~ "\n" +#~ "Možete mi kupiti kavu ili donirati putem PayPala kako bi me podržali. Ili " +#~ "mi jednostavno pošaljite e-poštu i recite mi Bok. Ova aplikacija je u " +#~ "potpunosti besplatna i takva će i ostati. Vaš doprinos će pomoći održati " +#~ "ovaj projekt živim i poboljšanim u budućnosti.\n" +#~ "\n" +#~ "Slobodno mi pošaljite e-poštu ako imate bilo kakav problem s ovom " +#~ "aplikacijom ili želite neku promjenu. Prijedlozi i povratne informacije " +#~ "su uvijek dobrodošle.\n" +#~ "\n" +#~ "Hvala Vam,\n" +#~ "Tony George\n" +#~ "(teejeetech@gmail.com)" + +#~ msgid "Display GRUB menu during boot" +#~ msgstr "Prikaži GRUB izbornik tijekom pokretanja sustava" + +#~ msgid "Donate" +#~ msgstr "Donirajte" + +#~ msgid "Donate with Google Wallet" +#~ msgstr "Donirajte putem Google Walleta" + +#~ msgid "Donate with PayPal" +#~ msgstr "Donirajte putem PayPala" + +#~ msgid "Donations" +#~ msgstr "Donacije" + +#~ msgid "File read" +#~ msgstr "Datoteka je pročitana" #~ msgid "" #~ "Mainline kernels can sometimes cause problems if there are proprietary " #~ "drivers installed on your system. These issues include:\n" #~ "\n" -#~ "▰ WiFi not working\n" -#~ "▰ Black screen on startup\n" -#~ "▰ Random system freeze\n" +#~ "\\342\\226\\260 WiFi not working\n" +#~ "\\342\\226\\260 Black screen on startup\n" +#~ "\\342\\226\\260 Random system freeze\n" #~ "\n" #~ "If you face any of these issues there is no need to panic.\n" #~ "\n" -#~ "▰ Reboot your system\n" -#~ "▰ Select 'Advanced Boot Options' from the GRUB boot menu\n" -#~ "▰ Select an older kernel from the list displayed on this screen\n" -#~ "▰ Your system will boot using the selected kernel\n" -#~ "▰ You can now uninstall the kernel that is causing issues\n" +#~ "\\342\\226\\260 Reboot your system\n" +#~ "\\342\\226\\260 Select 'Advanced Boot Options' from the GRUB boot menu\n" +#~ "\\342\\226\\260 Select an older kernel from the list displayed on this " +#~ "screen\n" +#~ "\\342\\226\\260 Your system will boot using the selected kernel\n" +#~ "\\342\\226\\260 You can now uninstall the kernel that is causing issues\n" #~ msgstr "" -#~ "Mainline kerneli ponekada mogu prouzrokovati probleme ako su instalirani " -#~ "vlasnički upravljački programi na vašem sustavu. Ti problemi uključuju:\n" +#~ "Mainline kerneli ponekad mogu prouzrokovati probleme ako su vlasnički " +#~ "upravljački programi instalirani na vašem sustavu. Ti problemi " +#~ "obuhvaćaju:\n" #~ "\n" -#~ "▰ Bežična mreža ne radi\n" -#~ "▰ Crni zaslon pri pokretanju\n" -#~ "▰ Slučajna smrzavanja sustava\n" +#~ "\\342\\226\\260 Bežična mreža ne radi\n" +#~ "\\342\\226\\260 Crni zaslon pri pokretanju\n" +#~ "\\342\\226\\260 Naizmjenično smrzavanje sustava\n" #~ "\n" -#~ "Ako se suočite s bilo kojim od ovih problema nemojte paničariti.\n" +#~ "Ako se suočite sa nekim od ovih problema ne paničarite.\n" #~ "\n" -#~ "▰ Ponovno pokrenite svoj sustav\n" -#~ "▰ Odaberite 'Napredne mogućnosti pokretanja' s GRUB izbornika pokretanja\n" -#~ "▰ Odaberite stariji kernel s popisa prikazanog na zaslonu\n" -#~ "▰ Vaš sustav će se pokrenuti pomoću odabranog kernela\n" -#~ "▰ Sada možete ukloniti kernel koji uzrokuje probleme\n" +#~ "\\342\\226\\260 Ponovno pokrenite vaš sustav\n" +#~ "\\342\\226\\260 Odaberite 'Napredne mogućnosti' iz GRUB izbornika\n" +#~ "\\342\\226\\260 Odaberite stariji kernel s popisa prikazanih na ovom " +#~ "zaslonu\n" +#~ "\\342\\226\\260 Vaš sustav će se pokrenuti koristeći odabrani kernel\n" +#~ "\\342\\226\\260 Sada možete ukloniti kernel koji uzrokuje probleme\n" + +#~ msgid "Notify if kernel update is available" +#~ msgstr "Obavijesti kada je nadopuna kernela dostupna" + +#~ msgid "Send Email" +#~ msgstr "Pošalji e-poštu" + +#~ msgid "Use specified user's cache directory" +#~ msgstr "Koristi korisnikom određeni direktorij predmemorije" + +#~ msgid "Using cache directory" +#~ msgstr "Direktorij predmemorije u upotrebi" + +#~ msgid "Visit Website" +#~ msgstr "Posjetite web stranicu" + +#~ msgid "Enter path or browse for directory" +#~ msgstr "Upišite putanju ili odabrite direktorij" #~ msgid "Open" #~ msgstr "Otvori" diff --git a/po/ukuu-nl.po b/po/ukuu-nl.po index cf21e30f..7de933cc 100644 --- a/po/ukuu-nl.po +++ b/po/ukuu-nl.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: ukuu 2.2\n" -"Report-Msgid-Bugs-To: teejeetech@gmail.com\n" -"POT-Creation-Date: 2017-12-17 16:41+0530\n" +"Report-Msgid-Bugs-To: bw.aljex@gmail.com\n" +"POT-Creation-Date: 2019-03-10 23:56-0400\n" "PO-Revision-Date: 2017-04-30 11:50+0200\n" "Last-Translator: Heimen Stoffels \n" "Language-Team: \n" @@ -18,11 +18,11 @@ msgstr "" "X-Generator: Poedit 2.0.1\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: Gtk/MainWindow.vala:470 +#: Gtk/MainWindow.vala:496 msgid "About" msgstr "Over" -#: Console/AppConsole.vala:103 +#: Console/AppConsole.vala:119 msgid "Admin access is required for running this application." msgstr "" "U heeft administrator-rechten nodig om deze applicatie te kunnen draaien." @@ -31,35 +31,48 @@ msgstr "" msgid "Another instance of this application is running" msgstr "Er is al een venster geopend van deze applicatie" -#: Utility/Gtk/AboutWindow.vala:348 +#: Common/LinuxKernel.vala:108 +#, fuzzy +msgid "Architecture" +msgstr "Systeemarchitectuur" + +#: Utility/Gtk/AboutWindow.vala:338 #, c-format msgid "Artists" msgstr "Artiesten" -#: Utility/Gtk/AboutWindow.vala:324 +#: Console/AppConsole.vala:106 +msgid "Assume Yes for all prompts (non-interactive mode)" +msgstr "" + +#: Utility/Gtk/AboutWindow.vala:314 #, c-format msgid "Authors" msgstr "Auteurs" -#: Common/LinuxKernel.vala:1036 +#: Common/LinuxKernel.vala:1184 msgid "Available Kernels" msgstr "Beschikbare kernels" -#: Utility/Gtk/AboutWindow.vala:295 +#: Utility/Gtk/AboutWindow.vala:285 msgid "Back" msgstr "Terug" -#: Gtk/MainWindow.vala:785 +#: Gtk/MainWindow.vala:822 msgid "Booting previous kernels" msgstr "Opstarten van vorige kernels" +#: Console/AppConsole.vala:209 Gtk/AppGtk.vala:110 +msgid "Cache" +msgstr "" + +#: Gtk/ProgressWindow.vala:144 Gtk/TerminalWindow.vala:168 +#: Gtk/UpdateNotificationWindow.vala:167 #: Utility/Gtk/CustomMessageDialog.vala:172 Utility/Gtk/GtkHelper.vala:122 -#: Gtk/ProgressWindow.vala:138 Gtk/UpdateNotificationWindow.vala:167 -#: Gtk/TerminalWindow.vala:168 msgid "Cancel" msgstr "Annuleren" -#: Gtk/MainWindow.vala:426 +#: Gtk/MainWindow.vala:464 msgid "Changes" msgstr "Wijzigingen" @@ -67,33 +80,61 @@ msgstr "Wijzigingen" msgid "Check every" msgstr "Controleer elke" -#: Console/AppConsole.vala:83 +#: Console/AppConsole.vala:90 msgid "Check for kernel updates" msgstr "Controleren op kernel-updates" -#: Utility/Gtk/AboutWindow.vala:305 Gtk/TerminalWindow.vala:178 +#: Console/AppConsole.vala:91 +#, fuzzy +msgid "Check for kernel updates and notify current user" +msgstr "Controleren op kernel-updates" + +#: Gtk/TerminalWindow.vala:178 Utility/Gtk/AboutWindow.vala:295 msgid "Close" msgstr "Sluiten" -#: Common/Main.vala:101 +#: Console/AppConsole.vala:346 +msgid "Command not specified" +msgstr "" + +#: Console/AppConsole.vala:88 +msgid "Commands" +msgstr "" + +#: Common/Main.vala:106 msgid "Commands listed below are not available on this system" msgstr "De onderstaande opdrachten zijn niet beschikbaar op dit systeem" -#: Utility/Gtk/AboutWindow.vala:332 +#: Common/LinuxKernel.vala:740 +#, c-format +msgid "Continue ?" +msgstr "" + +#: Utility/Gtk/AboutWindow.vala:322 #, c-format msgid "Contributions" msgstr "Bijdragen" -#: Console/AppConsole.vala:213 Gtk/MainWindow.vala:103 +#: Common/LinuxKernel.vala:724 +#, fuzzy +msgid "Could not find any kernels to remove" +msgstr "Selecteer de te verwijderen kernels" + +#: Console/AppConsole.vala:314 Gtk/MainWindow.vala:100 msgid "Could not find requested version" msgstr "De vereiste versie kan niet worden gevonden" +#: Common/LinuxKernel.vala:718 +#, fuzzy +msgid "Could not find running kernel in list!" +msgstr "De vereiste versie kan niet worden gevonden" + #: Utility/TeeJee.FileSystem.vala:349 Utility/TeeJee.FileSystem.vala:352 #: Utility/TeeJee.FileSystem.vala:378 msgid "Created directory" msgstr "Map gecreëerd" -#: Utility/Gtk/AboutWindow.vala:282 Utility/Gtk/AboutWindow.vala:299 +#: Utility/Gtk/AboutWindow.vala:272 Utility/Gtk/AboutWindow.vala:289 msgid "Credits" msgstr "Met dank aan" @@ -105,36 +146,6 @@ msgstr "dag(en)" msgid "Deleted directory" msgstr "Map verwijderd" -#: Utility/Gtk/DonationWindow.vala:54 -msgid "" -"Did you find this software useful?\n" -"\n" -"You can buy me a coffee or make a donation via PayPal to show your support. " -"Or just drop me an email and say Hi. This application is completely free and " -"will continue to remain that way. Your contributions will help in keeping " -"this project alive and improving it further.\n" -"\n" -"Feel free to send me an email if you find any issues in this application or " -"if you need any changes. Suggestions and feedback are always welcome.\n" -"\n" -"Thanks,\n" -"Tony George\n" -"(teejeetech@gmail.com)" -msgstr "" -"Vindt u deze software handig?\n" -"\n" -"U kunt een kopje koffie voor me kopen of een donatie doen via PayPal om me " -"te ondersteunen. Of stuur me een e-mail en zeg me gedag. Deze applicatie is " -"volledig gratis en dat zal ook altijd zo blijven. Uw bijdragen helpen me om " -"dit project te blijven ontwikkelen en te verbeteren.\n" -"\n" -"Stuur me een e-mail als u problemen ervaart met deze applicatie of als u " -"dingen anders wilt zien. Suggesties en feedback worden altijd gewaardeerd!\n" -"\n" -"Bedankt,\n" -"Tony George\n" -"(teejeetech@gmail.com)" - #: Utility/TeeJee.FileSystem.vala:509 msgid "Dir not found" msgstr "Map niet gevonden" @@ -143,41 +154,20 @@ msgstr "Map niet gevonden" msgid "Display" msgstr "Weergave" -#: Gtk/SettingsDialog.vala:203 -msgid "Display GRUB menu during boot" -msgstr "GRUB-menu weergeven tijdens opstarten" - -#: Common/LinuxKernel.vala:89 +#: Common/LinuxKernel.vala:94 msgid "Distribution" msgstr "Distributie" -#: Utility/Gtk/AboutWindow.vala:364 +#: Utility/Gtk/AboutWindow.vala:354 #, c-format msgid "Documenters" msgstr "Documenteerders" -#: Utility/Gtk/DonationWindow.vala:36 Gtk/MainWindow.vala:458 -msgid "Donate" -msgstr "Doneren" - -#: Utility/Gtk/DonationWindow.vala:74 -msgid "Donate with Google Wallet" -msgstr "Doneren met Google Wallet" - -#: Utility/Gtk/DonationWindow.vala:67 -msgid "Donate with PayPal" -msgstr "Doneren met PayPal" - -#: Utility/Gtk/AboutWindow.vala:372 -#, c-format -msgid "Donations" -msgstr "Donaties" - -#: Console/AppConsole.vala:88 +#: Console/AppConsole.vala:99 msgid "Download packages for specified kernel" msgstr "Pakketten downloaden voor opgegeven kernel" -#: Common/LinuxKernel.vala:1081 +#: Common/LinuxKernel.vala:1230 #, c-format msgid "Downloading" msgstr "Bezig met downloaden" @@ -186,7 +176,7 @@ msgstr "Bezig met downloaden" msgid "E" msgstr "E" -#: Common/LinuxKernel.vala:1108 +#: Common/LinuxKernel.vala:1258 #, c-format msgid "ERROR" msgstr "FOUT" @@ -219,10 +209,14 @@ msgstr "Lezen van bestand is mislukt" msgid "Failed to write file" msgstr "Schrijven naar bestand is mislukt" -#: Common/LinuxKernel.vala:385 +#: Common/LinuxKernel.vala:399 msgid "Fetching index from kernel.ubuntu.com..." msgstr "Bezig met ophalen van index van kernel.ubuntu.com..." +#: Common/LinuxKernel.vala:356 +msgid "Fetching index..." +msgstr "" + #: Utility/TeeJee.FileSystem.vala:210 Utility/TeeJee.FileSystem.vala:213 msgid "File copied" msgstr "Bestand gekopieerd" @@ -239,8 +233,7 @@ msgstr "Bestand ontbreekt" msgid "File moved" msgstr "Bestand verplaatst" -#: Common/LinuxKernel.vala:943 Utility/TeeJee.FileSystem.vala:231 -#: Utility/TeeJee.FileSystem.vala:538 +#: Utility/TeeJee.FileSystem.vala:231 Utility/TeeJee.FileSystem.vala:538 msgid "File not found" msgstr "Bestand niet gevonden" @@ -249,14 +242,15 @@ msgstr "Bestand niet gevonden" msgid "File not found: %s" msgstr "Bestand niet gevonden: %s" -#: Utility/TeeJee.FileSystem.vala:152 Utility/TeeJee.FileSystem.vala:155 -msgid "File read" -msgstr "Bestand gelezen" - #: Utility/TeeJee.FileSystem.vala:187 Utility/TeeJee.FileSystem.vala:190 msgid "File saved" msgstr "Bestand opgeslagen" +#: Common/LinuxKernel.vala:733 +#, c-format +msgid "Following kernels will be removed" +msgstr "" + #: Gtk/SettingsDialog.vala:192 msgid "GRUB Options" msgstr "GRUB-opties" @@ -277,19 +271,33 @@ msgstr "uur" msgid "Ignore this update" msgstr "Deze update negeren" -#: Common/LinuxKernel.vala:254 +#: Common/LinuxKernel.vala:262 msgid "Index is fresh" msgstr "De index is up-to-date" -#: Common/LinuxKernel.vala:251 +#: Common/LinuxKernel.vala:259 msgid "Index is stale" msgstr "De index is verouderd" -#: Gtk/MainWindow.vala:360 Gtk/UpdateNotificationWindow.vala:147 +#: Gtk/MainWindow.vala:359 Gtk/UpdateNotificationWindow.vala:147 msgid "Install" msgstr "Installeren" -#: Console/AppConsole.vala:86 +#: Common/LinuxKernel.vala:797 +#, c-format +msgid "Install Linux v%s ? (y/n): " +msgstr "" + +#: Console/AppConsole.vala:94 +#, fuzzy +msgid "Install latest mainline kernel" +msgstr "Opgegeven mainline-kernel installeren" + +#: Console/AppConsole.vala:95 +msgid "Install latest point update for current series" +msgstr "" + +#: Console/AppConsole.vala:96 msgid "Install specified mainline kernel" msgstr "Opgegeven mainline-kernel installeren" @@ -297,34 +305,49 @@ msgstr "Opgegeven mainline-kernel installeren" msgid "Install this kernel" msgstr "Deze kernel installeren" -#: Common/LinuxKernel.vala:1156 +#: Common/LinuxKernel.vala:1306 msgid "Installation completed with errors" msgstr "De installatie is foutloos voltooid" -#: Common/LinuxKernel.vala:1153 +#: Common/LinuxKernel.vala:1303 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "De installatie is voltooid. Herstart de computer om de nieuwe kernel te " "gebruiken." -#: Common/LinuxKernel.vala:1053 Gtk/MainWindow.vala:211 +#: Common/LinuxKernel.vala:1201 Gtk/MainWindow.vala:208 msgid "Installed" msgstr "Geïnstalleerd" -#: Utility/TeeJee.System.vala:275 Gtk/MainWindow.vala:84 -#: Gtk/MainWindow.vala:351 Gtk/MainWindow.vala:646 +#: Gtk/SettingsDialog.vala:257 +#, fuzzy +msgid "Internect connection timeout in " +msgstr "U bent niet verbonden met het internet" + +#: Gtk/MainWindow.vala:350 Gtk/MainWindow.vala:547 Gtk/MainWindow.vala:683 +#: Utility/TeeJee.System.vala:292 msgid "Internet connection is not active" msgstr "U bent niet verbonden met het internet" -#: Gtk/MainWindow.vala:153 +#: Gtk/MainWindow.vala:150 msgid "Kernel" msgstr "Kernel" -#: Gtk/MainWindow.vala:501 +#: Gtk/MainWindow.vala:531 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Kernel-upgradehulpmiddel voor op Ubuntu-gebaseerde distributies" -#: Console/AppConsole.vala:85 +#: Common/LinuxKernel.vala:779 Console/AppConsole.vala:372 +#, c-format +msgid "Latest point update" +msgstr "" + +#: Common/LinuxKernel.vala:768 Console/AppConsole.vala:365 +#, c-format +msgid "Latest update" +msgstr "" + +#: Console/AppConsole.vala:92 msgid "List all available mainline kernels" msgstr "Alle beschikbare mainline-kernels weergeven" @@ -333,7 +356,12 @@ msgstr "Alle beschikbare mainline-kernels weergeven" msgid "List available kernels" msgstr "Alle beschikbare mainline-kernels weergeven" -#: Gtk/MainWindow.vala:786 +#: Console/AppConsole.vala:93 +#, fuzzy +msgid "List installed kernels" +msgstr "Alle beschikbare mainline-kernels weergeven" + +#: Gtk/MainWindow.vala:823 #, fuzzy msgid "" "Mainline kernels can sometimes cause problems if there are proprietary " @@ -371,11 +399,11 @@ msgstr "" msgid "Missing Icon" msgstr "Ontbrekend pictogram" -#: Gtk/MainWindow.vala:369 +#: Gtk/MainWindow.vala:368 msgid "Multiple Kernels Selected" msgstr "Meerdere kernels geselecteerd" -#: Console/AppConsole.vala:195 +#: Console/AppConsole.vala:296 msgid "Multiple kernels selected for installation. Select only one." msgstr "" "Er zijn meerdere te installeren kernels geselecteerd. Selecteer er slechts " @@ -385,15 +413,20 @@ msgstr "" msgid "No" msgstr "" -#: Gtk/MainWindow.vala:84 Gtk/MainWindow.vala:351 Gtk/MainWindow.vala:646 +#: Gtk/MainWindow.vala:350 Gtk/MainWindow.vala:547 Gtk/MainWindow.vala:683 msgid "No Internet" msgstr "Geen internetverbinding" -#: Console/AppConsole.vala:349 Gtk/MainWindow.vala:780 +#: Console/AppConsole.vala:290 Console/AppConsole.vala:327 +msgid "No kernels specified" +msgstr "" + +#: Common/LinuxKernel.vala:787 Console/AppConsole.vala:377 +#: Console/AppConsole.vala:457 Gtk/MainWindow.vala:817 msgid "No updates found" msgstr "Geen updates gevonden" -#: Gtk/MainWindow.vala:372 Gtk/MainWindow.vala:383 +#: Gtk/MainWindow.vala:371 Gtk/MainWindow.vala:382 msgid "Not Selected" msgstr "Niet geselecteerd" @@ -409,36 +442,35 @@ msgstr "Melding weergeven als er een grote update beschikbaar is" msgid "Notify if a point release is available" msgstr "Melding weergeven als er een puntupdate beschikbaar is" -#: Console/AppConsole.vala:84 -msgid "Notify if kernel update is available" -msgstr "Melding weergeven als er een kernelupdate beschikbaar is" - -#: Common/LinuxKernel.vala:1099 Utility/Gtk/CustomMessageDialog.vala:167 +#: Common/LinuxKernel.vala:1249 Utility/Gtk/CustomMessageDialog.vala:167 #: Utility/Gtk/CustomMessageDialog.vala:171 Utility/Gtk/GtkHelper.vala:121 -#: Utility/Gtk/DonationWindow.vala:95 #, c-format msgid "OK" msgstr "Oké" -#: Console/AppConsole.vala:81 Gtk/AppGtk.vala:181 +#: Console/AppConsole.vala:103 Gtk/AppGtk.vala:181 msgid "Options" msgstr "Opties" -#: Common/LinuxKernel.vala:922 +#: Gtk/SettingsDialog.vala:236 +msgid "Other" +msgstr "" + +#: Common/LinuxKernel.vala:1063 #, c-format msgid "Packages Available (DEB)" msgstr "Beschikbare pakketten (DEB)" -#: Common/LinuxKernel.vala:930 +#: Common/LinuxKernel.vala:1071 #, c-format msgid "Packages Installed" msgstr "Geïnstalleerde pakketten" -#: Common/Main.vala:102 +#: Common/Main.vala:107 msgid "Please install required packages and try again" msgstr "Installeer de vereiste pakketten en probeer het opnieuw" -#: Common/LinuxKernel.vala:1177 +#: Common/LinuxKernel.vala:1327 msgid "Preparing to remove selected kernels" msgstr "Bezig met voorbereiden van verwijderen van geselecteerde kernels" @@ -446,54 +478,62 @@ msgstr "Bezig met voorbereiden van verwijderen van geselecteerde kernels" msgid "Print debug information" msgstr "Foutopsporingsinformatie printen" -#: Gtk/MainWindow.vala:344 +#: Gtk/MainWindow.vala:425 +msgid "Purge" +msgstr "" + +#: Gtk/MainWindow.vala:343 msgid "Refresh" msgstr "Verversen" -#: Gtk/MainWindow.vala:531 +#: Gtk/MainWindow.vala:566 msgid "Refreshing..." msgstr "Bezig met verversen..." -#: Gtk/MainWindow.vala:377 +#: Gtk/MainWindow.vala:376 msgid "Remove" msgstr "Verwijderen" -#: Console/AppConsole.vala:90 +#: Console/AppConsole.vala:100 Console/AppConsole.vala:105 msgid "Remove files from application cache" msgstr "Bestanden verwijderen uit applicatie-cache" -#: Console/AppConsole.vala:87 -msgid "Remove specified mainline kernel" +#: Console/AppConsole.vala:98 Gtk/MainWindow.vala:426 +msgid "Remove installed kernels older than running kernel" +msgstr "" + +#: Console/AppConsole.vala:97 +#, fuzzy +msgid "Remove specified kernel" msgstr "Opgegeven mainline-kernel verwijderen" -#: Console/AppConsole.vala:217 -msgid "Run 'ukuu --list' and use the version string listed in first column" +#: Console/AppConsole.vala:204 Console/AppConsole.vala:318 +#: Console/AppConsole.vala:347 +msgid "Run '" msgstr "" -"Draai het commando 'ukuu --list' en gebruik de versiestring uit de eerste " -"kolom" -#: Console/AppConsole.vala:106 +#: Console/AppConsole.vala:122 #, fuzzy msgid "Run the application as admin with pkexec or sudo." msgstr "Draai de applicatie als root of m.b.v. gksu/sudo." -#: Common/LinuxKernel.vala:1053 Gtk/MainWindow.vala:211 +#: Common/LinuxKernel.vala:1201 Gtk/MainWindow.vala:208 msgid "Running" msgstr "Bezig met draaien" -#: Gtk/MainWindow.vala:369 +#: Gtk/MainWindow.vala:368 msgid "Select a single kernel to install" msgstr "Selecteer een enkele te installeren kernel" -#: Gtk/MainWindow.vala:372 +#: Gtk/MainWindow.vala:371 msgid "Select the kernel to install" msgstr "Selecteer de te installeren kernel" -#: Gtk/MainWindow.vala:383 +#: Gtk/MainWindow.vala:382 msgid "Select the kernels to remove" msgstr "Selecteer de te verwijderen kernels" -#: Common/LinuxKernel.vala:1172 +#: Common/LinuxKernel.vala:1322 msgid "" "Selected kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -502,11 +542,11 @@ msgstr "" "verwijderd.\n" " Installeer een andere kernel voordat u deze verwijdert." -#: Utility/Gtk/DonationWindow.vala:81 -msgid "Send Email" -msgstr "E-mail versturen" +#: Gtk/SettingsDialog.vala:203 +msgid "Set GRUB menu timeout" +msgstr "" -#: Gtk/SettingsDialog.vala:57 Gtk/MainWindow.vala:437 +#: Gtk/MainWindow.vala:475 Gtk/SettingsDialog.vala:57 msgid "Settings" msgstr "Instellingen" @@ -526,32 +566,42 @@ msgstr "Bureaubladmelding weergeven" msgid "Show notification dialog" msgstr "Meldingsvenster weergeven" -#: Gtk/MainWindow.vala:199 +#: Console/AppConsole.vala:101 +#, fuzzy +msgid "Show unstable and RC releases" +msgstr "Instabiele en RC-uitgaven verbergen" + +#: Gtk/SettingsDialog.vala:244 +#, fuzzy +msgid "Skip internet connection check" +msgstr "U bent niet verbonden met het internet" + +#: Gtk/MainWindow.vala:196 msgid "Status" msgstr "Status" -#: Utility/TeeJee.Process.vala:511 +#: Utility/TeeJee.Process.vala:512 msgid "Stopped" msgstr "Gestopt" -#: Console/AppConsole.vala:79 Gtk/AppGtk.vala:179 +#: Console/AppConsole.vala:86 Gtk/AppGtk.vala:179 msgid "Syntax" msgstr "Syntax" -#: Common/LinuxKernel.vala:103 -msgid "System architecture" -msgstr "Systeemarchitectuur" +#: Console/AppConsole.vala:210 Gtk/AppGtk.vala:111 +msgid "Temp" +msgstr "" -#: Utility/Gtk/AboutWindow.vala:340 +#: Utility/Gtk/AboutWindow.vala:330 #, c-format msgid "Third Party Tools" msgstr "Externe hulpmiddelen" -#: Common/LinuxKernel.vala:1122 Gtk/MainWindow.vala:641 +#: Common/LinuxKernel.vala:1272 Gtk/MainWindow.vala:678 msgid "This kernel is already installed." msgstr "Deze kernel is al geïnstalleerd." -#: Common/LinuxKernel.vala:1230 +#: Common/LinuxKernel.vala:1380 msgid "" "This kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -571,20 +621,20 @@ msgstr "" "0 = Menu niet weergeven\n" "-1 = Menu weergeven totdat de gebruiker een selectie maakt" -#: Utility/Gtk/AboutWindow.vala:356 +#: Utility/Gtk/AboutWindow.vala:346 #, c-format msgid "Translators" msgstr "Vertalers" -#: Common/LinuxKernel.vala:1214 Common/LinuxKernel.vala:1272 +#: Common/LinuxKernel.vala:1364 Common/LinuxKernel.vala:1422 msgid "Un-install completed" msgstr "Deïnstalleren voltooid" -#: Common/LinuxKernel.vala:1217 Common/LinuxKernel.vala:1275 +#: Common/LinuxKernel.vala:1367 Common/LinuxKernel.vala:1425 msgid "Un-install completed with errors" msgstr "Deïnstalleren voltooid, maar met fouten" -#: Console/AppConsole.vala:270 Gtk/AppGtk.vala:166 +#: Console/AppConsole.vala:202 Gtk/AppGtk.vala:166 msgid "Unknown option" msgstr "Onbekende optie" @@ -607,26 +657,14 @@ msgstr "" "0 = Menu niet weergeven\n" "-1 = Menu weergeven totdat de gebruiker een selectie maakt" -#: Common/LinuxKernel.vala:1343 +#: Common/LinuxKernel.vala:1493 msgid "Updating GRUB menu" msgstr "Bezig met bijwerken van GRUB-menu" -#: Console/AppConsole.vala:89 -msgid "Use specified user's cache directory" -msgstr "Gebruik de opgegeven gebruikerscache-map" - -#: Console/AppConsole.vala:144 Gtk/AppGtk.vala:109 -msgid "Using cache directory" -msgstr "Cachemap" - -#: Gtk/MainWindow.vala:182 +#: Gtk/MainWindow.vala:179 msgid "Version" msgstr "Versie" -#: Utility/Gtk/DonationWindow.vala:88 -msgid "Visit Website" -msgstr "Website bezoeken" - #: Utility/TeeJee.Logging.vala:89 msgid "W" msgstr "W" @@ -643,6 +681,79 @@ msgstr "" msgid "[Warning] Deleted invalid lock" msgstr "[Waarschuwing] Ongeldige lock verwijderd" +#: Gtk/SettingsDialog.vala:271 +msgid "seconds" +msgstr "" + +#~ msgid "Run 'ukuu --list' and use the version string listed in first column" +#~ msgstr "" +#~ "Draai het commando 'ukuu --list' en gebruik de versiestring uit de eerste " +#~ "kolom" + +#~ msgid "" +#~ "Did you find this software useful?\n" +#~ "\n" +#~ "You can buy me a coffee or make a donation via PayPal to show your " +#~ "support. Or just drop me an email and say Hi. This application is " +#~ "completely free and will continue to remain that way. Your contributions " +#~ "will help in keeping this project alive and improving it further.\n" +#~ "\n" +#~ "Feel free to send me an email if you find any issues in this application " +#~ "or if you need any changes. Suggestions and feedback are always welcome.\n" +#~ "\n" +#~ "Thanks,\n" +#~ "Tony George\n" +#~ "(teejeetech@gmail.com)" +#~ msgstr "" +#~ "Vindt u deze software handig?\n" +#~ "\n" +#~ "U kunt een kopje koffie voor me kopen of een donatie doen via PayPal om " +#~ "me te ondersteunen. Of stuur me een e-mail en zeg me gedag. Deze " +#~ "applicatie is volledig gratis en dat zal ook altijd zo blijven. Uw " +#~ "bijdragen helpen me om dit project te blijven ontwikkelen en te " +#~ "verbeteren.\n" +#~ "\n" +#~ "Stuur me een e-mail als u problemen ervaart met deze applicatie of als u " +#~ "dingen anders wilt zien. Suggesties en feedback worden altijd " +#~ "gewaardeerd!\n" +#~ "\n" +#~ "Bedankt,\n" +#~ "Tony George\n" +#~ "(teejeetech@gmail.com)" + +#~ msgid "Display GRUB menu during boot" +#~ msgstr "GRUB-menu weergeven tijdens opstarten" + +#~ msgid "Donate" +#~ msgstr "Doneren" + +#~ msgid "Donate with Google Wallet" +#~ msgstr "Doneren met Google Wallet" + +#~ msgid "Donate with PayPal" +#~ msgstr "Doneren met PayPal" + +#~ msgid "Donations" +#~ msgstr "Donaties" + +#~ msgid "File read" +#~ msgstr "Bestand gelezen" + +#~ msgid "Notify if kernel update is available" +#~ msgstr "Melding weergeven als er een kernelupdate beschikbaar is" + +#~ msgid "Send Email" +#~ msgstr "E-mail versturen" + +#~ msgid "Use specified user's cache directory" +#~ msgstr "Gebruik de opgegeven gebruikerscache-map" + +#~ msgid "Using cache directory" +#~ msgstr "Cachemap" + +#~ msgid "Visit Website" +#~ msgstr "Website bezoeken" + #~ msgid "Open Ukuu" #~ msgstr "Ukuu openen" diff --git a/po/ukuu-pl.po b/po/ukuu-pl.po index 92c1a846..422aa2dd 100644 --- a/po/ukuu-pl.po +++ b/po/ukuu-pl.po @@ -5,8 +5,8 @@ msgid "" msgstr "" "Project-Id-Version: ukuu\n" -"Report-Msgid-Bugs-To: teejeetech@gmail.com\n" -"POT-Creation-Date: 2017-12-17 16:41+0530\n" +"Report-Msgid-Bugs-To: bw.aljex@gmail.com\n" +"POT-Creation-Date: 2019-03-10 23:56-0400\n" "PO-Revision-Date: 2017-08-12 15:26+0200\n" "Last-Translator: \n" "Language-Team: Polish\n" @@ -16,11 +16,11 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Poedit 1.8.7.1\n" -#: Gtk/MainWindow.vala:470 +#: Gtk/MainWindow.vala:496 msgid "About" msgstr "O programie" -#: Console/AppConsole.vala:103 +#: Console/AppConsole.vala:119 msgid "Admin access is required for running this application." msgstr "Aby uruchomić tę aplikację niezbędne są prawa administratora." @@ -28,35 +28,48 @@ msgstr "Aby uruchomić tę aplikację niezbędne są prawa administratora." msgid "Another instance of this application is running" msgstr "Inna instancja tej aplikacji jest uruchomiona" -#: Utility/Gtk/AboutWindow.vala:348 +#: Common/LinuxKernel.vala:108 +#, fuzzy +msgid "Architecture" +msgstr "Architektura systemu" + +#: Utility/Gtk/AboutWindow.vala:338 #, c-format msgid "Artists" msgstr "Artyści" -#: Utility/Gtk/AboutWindow.vala:324 +#: Console/AppConsole.vala:106 +msgid "Assume Yes for all prompts (non-interactive mode)" +msgstr "" + +#: Utility/Gtk/AboutWindow.vala:314 #, c-format msgid "Authors" msgstr "Аutorzy" -#: Common/LinuxKernel.vala:1036 +#: Common/LinuxKernel.vala:1184 msgid "Available Kernels" msgstr "Dostępne jądra" -#: Utility/Gtk/AboutWindow.vala:295 +#: Utility/Gtk/AboutWindow.vala:285 msgid "Back" msgstr "Wstecz" -#: Gtk/MainWindow.vala:785 +#: Gtk/MainWindow.vala:822 msgid "Booting previous kernels" msgstr "Uruchamianie poprzednich jąder" +#: Console/AppConsole.vala:209 Gtk/AppGtk.vala:110 +msgid "Cache" +msgstr "" + +#: Gtk/ProgressWindow.vala:144 Gtk/TerminalWindow.vala:168 +#: Gtk/UpdateNotificationWindow.vala:167 #: Utility/Gtk/CustomMessageDialog.vala:172 Utility/Gtk/GtkHelper.vala:122 -#: Gtk/ProgressWindow.vala:138 Gtk/UpdateNotificationWindow.vala:167 -#: Gtk/TerminalWindow.vala:168 msgid "Cancel" msgstr "Anuluj" -#: Gtk/MainWindow.vala:426 +#: Gtk/MainWindow.vala:464 msgid "Changes" msgstr "Zmiany" @@ -64,33 +77,61 @@ msgstr "Zmiany" msgid "Check every" msgstr "Sprawdzaj co" -#: Console/AppConsole.vala:83 +#: Console/AppConsole.vala:90 msgid "Check for kernel updates" msgstr "Sprawdź nowe wersje jądra" -#: Utility/Gtk/AboutWindow.vala:305 Gtk/TerminalWindow.vala:178 +#: Console/AppConsole.vala:91 +#, fuzzy +msgid "Check for kernel updates and notify current user" +msgstr "Sprawdź nowe wersje jądra" + +#: Gtk/TerminalWindow.vala:178 Utility/Gtk/AboutWindow.vala:295 msgid "Close" msgstr "Zamknij" -#: Common/Main.vala:101 +#: Console/AppConsole.vala:346 +msgid "Command not specified" +msgstr "" + +#: Console/AppConsole.vala:88 +msgid "Commands" +msgstr "" + +#: Common/Main.vala:106 msgid "Commands listed below are not available on this system" msgstr "Poniższe polecenia nie są dostępne na tym systemie" -#: Utility/Gtk/AboutWindow.vala:332 +#: Common/LinuxKernel.vala:740 +#, c-format +msgid "Continue ?" +msgstr "" + +#: Utility/Gtk/AboutWindow.vala:322 #, c-format msgid "Contributions" msgstr "Wkład" -#: Console/AppConsole.vala:213 Gtk/MainWindow.vala:103 +#: Common/LinuxKernel.vala:724 +#, fuzzy +msgid "Could not find any kernels to remove" +msgstr "Wybierz jądro do usunięcia" + +#: Console/AppConsole.vala:314 Gtk/MainWindow.vala:100 msgid "Could not find requested version" msgstr "Nie można odnaleźć żądanej wersji" +#: Common/LinuxKernel.vala:718 +#, fuzzy +msgid "Could not find running kernel in list!" +msgstr "Nie można odnaleźć żądanej wersji" + #: Utility/TeeJee.FileSystem.vala:349 Utility/TeeJee.FileSystem.vala:352 #: Utility/TeeJee.FileSystem.vala:378 msgid "Created directory" msgstr "Utworzono katalog" -#: Utility/Gtk/AboutWindow.vala:282 Utility/Gtk/AboutWindow.vala:299 +#: Utility/Gtk/AboutWindow.vala:272 Utility/Gtk/AboutWindow.vala:289 msgid "Credits" msgstr "Zasługi" @@ -102,36 +143,6 @@ msgstr "Dni" msgid "Deleted directory" msgstr "Usunięto katalog" -#: Utility/Gtk/DonationWindow.vala:54 -msgid "" -"Did you find this software useful?\n" -"\n" -"You can buy me a coffee or make a donation via PayPal to show your support. " -"Or just drop me an email and say Hi. This application is completely free and " -"will continue to remain that way. Your contributions will help in keeping " -"this project alive and improving it further.\n" -"\n" -"Feel free to send me an email if you find any issues in this application or " -"if you need any changes. Suggestions and feedback are always welcome.\n" -"\n" -"Thanks,\n" -"Tony George\n" -"(teejeetech@gmail.com)" -msgstr "" -"Czy to oprogramowanie jest dla Ciebie przydatne?\n" -"\n" -"Możesz kupić mi kawę lub złożyć darowiznę za pośrednictwem PayPal, aby " -"okazać swoje wsparcie. Lub po prostu wyślij e-maila i powiedz Cześć. Ta " -"aplikacja jest zupełnie bezpłatna i taka pozostanie. Twój wkład pomoże w " -"utrzymaniu projektu przy życiu i ulepszaniu go w przyszłości.\n" -"\n" -"Jeśli znajdziesz jakieś błędy lub potrzebujesz zmian w tej aplikacji, napisz " -"do mnie e-mail. Sugestie i opinie są zawsze mile widziane.\n" -"\n" -"Dziękuję,\n" -"Tony George\n" -"(teejeetech@gmail.com)" - #: Utility/TeeJee.FileSystem.vala:509 msgid "Dir not found" msgstr "Katalog nie odnaleziony" @@ -140,41 +151,20 @@ msgstr "Katalog nie odnaleziony" msgid "Display" msgstr "Pokaż" -#: Gtk/SettingsDialog.vala:203 -msgid "Display GRUB menu during boot" -msgstr "Pokaż menu GRUB przy starcie" - -#: Common/LinuxKernel.vala:89 +#: Common/LinuxKernel.vala:94 msgid "Distribution" msgstr "Dystrybucja" -#: Utility/Gtk/AboutWindow.vala:364 +#: Utility/Gtk/AboutWindow.vala:354 #, c-format msgid "Documenters" msgstr "Dokumentujący" -#: Utility/Gtk/DonationWindow.vala:36 Gtk/MainWindow.vala:458 -msgid "Donate" -msgstr "Wesprzyj" - -#: Utility/Gtk/DonationWindow.vala:74 -msgid "Donate with Google Wallet" -msgstr "Wesprzyj poprzez Google Wallet" - -#: Utility/Gtk/DonationWindow.vala:67 -msgid "Donate with PayPal" -msgstr "Wesprzyj poprzez PayPal" - -#: Utility/Gtk/AboutWindow.vala:372 -#, c-format -msgid "Donations" -msgstr "Wsparcie" - -#: Console/AppConsole.vala:88 +#: Console/AppConsole.vala:99 msgid "Download packages for specified kernel" msgstr "Pobierz pakiety dla wybranego jądra" -#: Common/LinuxKernel.vala:1081 +#: Common/LinuxKernel.vala:1230 #, c-format msgid "Downloading" msgstr "Pobieranie" @@ -183,7 +173,7 @@ msgstr "Pobieranie" msgid "E" msgstr "E" -#: Common/LinuxKernel.vala:1108 +#: Common/LinuxKernel.vala:1258 #, c-format msgid "ERROR" msgstr "BŁĄD" @@ -216,10 +206,14 @@ msgstr "Nie udało się odczytać pliku" msgid "Failed to write file" msgstr "Nie udało się zapisać pliku" -#: Common/LinuxKernel.vala:385 +#: Common/LinuxKernel.vala:399 msgid "Fetching index from kernel.ubuntu.com..." msgstr "Pobieranie indeksu z kernel.ubuntu.com..." +#: Common/LinuxKernel.vala:356 +msgid "Fetching index..." +msgstr "" + #: Utility/TeeJee.FileSystem.vala:210 Utility/TeeJee.FileSystem.vala:213 msgid "File copied" msgstr "Plik skopiowany" @@ -236,8 +230,7 @@ msgstr "Brak pliku" msgid "File moved" msgstr "Plik przeniesiony" -#: Common/LinuxKernel.vala:943 Utility/TeeJee.FileSystem.vala:231 -#: Utility/TeeJee.FileSystem.vala:538 +#: Utility/TeeJee.FileSystem.vala:231 Utility/TeeJee.FileSystem.vala:538 msgid "File not found" msgstr "Nie odnaleziono pliku" @@ -246,14 +239,15 @@ msgstr "Nie odnaleziono pliku" msgid "File not found: %s" msgstr "Nie odnaleziono pliku: %s" -#: Utility/TeeJee.FileSystem.vala:152 Utility/TeeJee.FileSystem.vala:155 -msgid "File read" -msgstr "Plik odczytany" - #: Utility/TeeJee.FileSystem.vala:187 Utility/TeeJee.FileSystem.vala:190 msgid "File saved" msgstr "Plik zapisany" +#: Common/LinuxKernel.vala:733 +#, c-format +msgid "Following kernels will be removed" +msgstr "" + #: Gtk/SettingsDialog.vala:192 msgid "GRUB Options" msgstr "Opcje GRUB" @@ -274,19 +268,33 @@ msgstr "Godzin(y)" msgid "Ignore this update" msgstr "Zignoruj tę aktualizację" -#: Common/LinuxKernel.vala:254 +#: Common/LinuxKernel.vala:262 msgid "Index is fresh" msgstr "Indeks jest aktualny" -#: Common/LinuxKernel.vala:251 +#: Common/LinuxKernel.vala:259 msgid "Index is stale" msgstr "Indeks jest nieaktualny" -#: Gtk/MainWindow.vala:360 Gtk/UpdateNotificationWindow.vala:147 +#: Gtk/MainWindow.vala:359 Gtk/UpdateNotificationWindow.vala:147 msgid "Install" msgstr "Zainstaluj" -#: Console/AppConsole.vala:86 +#: Common/LinuxKernel.vala:797 +#, c-format +msgid "Install Linux v%s ? (y/n): " +msgstr "" + +#: Console/AppConsole.vala:94 +#, fuzzy +msgid "Install latest mainline kernel" +msgstr "Zainstaluj wybrane jądro" + +#: Console/AppConsole.vala:95 +msgid "Install latest point update for current series" +msgstr "" + +#: Console/AppConsole.vala:96 msgid "Install specified mainline kernel" msgstr "Zainstaluj wybrane jądro" @@ -294,34 +302,49 @@ msgstr "Zainstaluj wybrane jądro" msgid "Install this kernel" msgstr "Zainstaluj to jądro" -#: Common/LinuxKernel.vala:1156 +#: Common/LinuxKernel.vala:1306 msgid "Installation completed with errors" msgstr "Instalacja zakończona z błędami" -#: Common/LinuxKernel.vala:1153 +#: Common/LinuxKernel.vala:1303 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "Instalacja zakończona. Aby korzystać z nowego jądra, konieczne jest ponowne " "uruchomienie." -#: Common/LinuxKernel.vala:1053 Gtk/MainWindow.vala:211 +#: Common/LinuxKernel.vala:1201 Gtk/MainWindow.vala:208 msgid "Installed" msgstr "Zainstalowany" -#: Utility/TeeJee.System.vala:275 Gtk/MainWindow.vala:84 -#: Gtk/MainWindow.vala:351 Gtk/MainWindow.vala:646 +#: Gtk/SettingsDialog.vala:257 +#, fuzzy +msgid "Internect connection timeout in " +msgstr "Brak połączenia z internetem" + +#: Gtk/MainWindow.vala:350 Gtk/MainWindow.vala:547 Gtk/MainWindow.vala:683 +#: Utility/TeeJee.System.vala:292 msgid "Internet connection is not active" msgstr "Brak połączenia z internetem" -#: Gtk/MainWindow.vala:153 +#: Gtk/MainWindow.vala:150 msgid "Kernel" msgstr "Jądro" -#: Gtk/MainWindow.vala:501 +#: Gtk/MainWindow.vala:531 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Narzędzie uaktualniania jądra dla dystrybucji z rodziny Ubuntu" -#: Console/AppConsole.vala:85 +#: Common/LinuxKernel.vala:779 Console/AppConsole.vala:372 +#, c-format +msgid "Latest point update" +msgstr "" + +#: Common/LinuxKernel.vala:768 Console/AppConsole.vala:365 +#, c-format +msgid "Latest update" +msgstr "" + +#: Console/AppConsole.vala:92 msgid "List all available mainline kernels" msgstr "Pokaż wszystkie dostępne jądra" @@ -330,7 +353,12 @@ msgstr "Pokaż wszystkie dostępne jądra" msgid "List available kernels" msgstr "Pokaż wszystkie dostępne jądra" -#: Gtk/MainWindow.vala:786 +#: Console/AppConsole.vala:93 +#, fuzzy +msgid "List installed kernels" +msgstr "Pokaż wszystkie dostępne jądra" + +#: Gtk/MainWindow.vala:823 #, fuzzy msgid "" "Mainline kernels can sometimes cause problems if there are proprietary " @@ -367,11 +395,11 @@ msgstr "" msgid "Missing Icon" msgstr "Brakująca ikona" -#: Gtk/MainWindow.vala:369 +#: Gtk/MainWindow.vala:368 msgid "Multiple Kernels Selected" msgstr "Wybrano kilka jąder" -#: Console/AppConsole.vala:195 +#: Console/AppConsole.vala:296 msgid "Multiple kernels selected for installation. Select only one." msgstr "Wybrano kilka jąder do instalacji. Wybierz tylko jedno." @@ -379,15 +407,20 @@ msgstr "Wybrano kilka jąder do instalacji. Wybierz tylko jedno." msgid "No" msgstr "" -#: Gtk/MainWindow.vala:84 Gtk/MainWindow.vala:351 Gtk/MainWindow.vala:646 +#: Gtk/MainWindow.vala:350 Gtk/MainWindow.vala:547 Gtk/MainWindow.vala:683 msgid "No Internet" msgstr "Brak internetu" -#: Console/AppConsole.vala:349 Gtk/MainWindow.vala:780 +#: Console/AppConsole.vala:290 Console/AppConsole.vala:327 +msgid "No kernels specified" +msgstr "" + +#: Common/LinuxKernel.vala:787 Console/AppConsole.vala:377 +#: Console/AppConsole.vala:457 Gtk/MainWindow.vala:817 msgid "No updates found" msgstr "Nie znaleziono aktualizacji" -#: Gtk/MainWindow.vala:372 Gtk/MainWindow.vala:383 +#: Gtk/MainWindow.vala:371 Gtk/MainWindow.vala:382 msgid "Not Selected" msgstr "Nie wybrany" @@ -403,36 +436,35 @@ msgstr "Powiadom, jeśli pojawi się główna wersja" msgid "Notify if a point release is available" msgstr "Powiadom, jeśli pojawi się wersja punktowa" -#: Console/AppConsole.vala:84 -msgid "Notify if kernel update is available" -msgstr "Powiadom, jeśli pojawi się aktualizacja jądra" - -#: Common/LinuxKernel.vala:1099 Utility/Gtk/CustomMessageDialog.vala:167 +#: Common/LinuxKernel.vala:1249 Utility/Gtk/CustomMessageDialog.vala:167 #: Utility/Gtk/CustomMessageDialog.vala:171 Utility/Gtk/GtkHelper.vala:121 -#: Utility/Gtk/DonationWindow.vala:95 #, c-format msgid "OK" msgstr "OK" -#: Console/AppConsole.vala:81 Gtk/AppGtk.vala:181 +#: Console/AppConsole.vala:103 Gtk/AppGtk.vala:181 msgid "Options" msgstr "Opcje" -#: Common/LinuxKernel.vala:922 +#: Gtk/SettingsDialog.vala:236 +msgid "Other" +msgstr "" + +#: Common/LinuxKernel.vala:1063 #, c-format msgid "Packages Available (DEB)" msgstr "Dostępne pakiety (DEB)" -#: Common/LinuxKernel.vala:930 +#: Common/LinuxKernel.vala:1071 #, c-format msgid "Packages Installed" msgstr "Pakiety zainstalowane" -#: Common/Main.vala:102 +#: Common/Main.vala:107 msgid "Please install required packages and try again" msgstr "Zainstaluj wymagane pakiety i spróbuj ponownie" -#: Common/LinuxKernel.vala:1177 +#: Common/LinuxKernel.vala:1327 msgid "Preparing to remove selected kernels" msgstr "Przygotowanie do usunięcia wybranych jąder" @@ -440,52 +472,62 @@ msgstr "Przygotowanie do usunięcia wybranych jąder" msgid "Print debug information" msgstr "Wypisz informacje debugujące" -#: Gtk/MainWindow.vala:344 +#: Gtk/MainWindow.vala:425 +msgid "Purge" +msgstr "" + +#: Gtk/MainWindow.vala:343 msgid "Refresh" msgstr "Odśwież" -#: Gtk/MainWindow.vala:531 +#: Gtk/MainWindow.vala:566 msgid "Refreshing..." msgstr "Odświeżam..." -#: Gtk/MainWindow.vala:377 +#: Gtk/MainWindow.vala:376 msgid "Remove" msgstr "Usuń" -#: Console/AppConsole.vala:90 +#: Console/AppConsole.vala:100 Console/AppConsole.vala:105 msgid "Remove files from application cache" msgstr "Usuń pliki z pamięci podręcznej aplikacji" -#: Console/AppConsole.vala:87 -msgid "Remove specified mainline kernel" +#: Console/AppConsole.vala:98 Gtk/MainWindow.vala:426 +msgid "Remove installed kernels older than running kernel" +msgstr "" + +#: Console/AppConsole.vala:97 +#, fuzzy +msgid "Remove specified kernel" msgstr "Usuń wybrane jądro" -#: Console/AppConsole.vala:217 -msgid "Run 'ukuu --list' and use the version string listed in first column" -msgstr "Uruchom 'ukuu --list' i użyj wersji wyświetlonej w pierwszej kolumnie" +#: Console/AppConsole.vala:204 Console/AppConsole.vala:318 +#: Console/AppConsole.vala:347 +msgid "Run '" +msgstr "" -#: Console/AppConsole.vala:106 +#: Console/AppConsole.vala:122 #, fuzzy msgid "Run the application as admin with pkexec or sudo." msgstr "Uruchom aplikację jako root albo użyj gksu/sudo." -#: Common/LinuxKernel.vala:1053 Gtk/MainWindow.vala:211 +#: Common/LinuxKernel.vala:1201 Gtk/MainWindow.vala:208 msgid "Running" msgstr "Uruchomiony" -#: Gtk/MainWindow.vala:369 +#: Gtk/MainWindow.vala:368 msgid "Select a single kernel to install" msgstr "Wybierz pojedyncze jądro do instalacji" -#: Gtk/MainWindow.vala:372 +#: Gtk/MainWindow.vala:371 msgid "Select the kernel to install" msgstr "Wybierz pojedyncze do instalacji" -#: Gtk/MainWindow.vala:383 +#: Gtk/MainWindow.vala:382 msgid "Select the kernels to remove" msgstr "Wybierz jądro do usunięcia" -#: Common/LinuxKernel.vala:1172 +#: Common/LinuxKernel.vala:1322 msgid "" "Selected kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -493,11 +535,11 @@ msgstr "" "Wybrane jądro aktualnie działa i nie może zostać usunięte.\n" " Zainstaluj inne jądro przed usunięciem tego." -#: Utility/Gtk/DonationWindow.vala:81 -msgid "Send Email" -msgstr "Wyślij e-mail" +#: Gtk/SettingsDialog.vala:203 +msgid "Set GRUB menu timeout" +msgstr "" -#: Gtk/SettingsDialog.vala:57 Gtk/MainWindow.vala:437 +#: Gtk/MainWindow.vala:475 Gtk/SettingsDialog.vala:57 msgid "Settings" msgstr "Ustawienia" @@ -517,32 +559,42 @@ msgstr "Pokaż powiadomienia na pulpicie" msgid "Show notification dialog" msgstr "Pokaż okno powiadomień" -#: Gtk/MainWindow.vala:199 +#: Console/AppConsole.vala:101 +#, fuzzy +msgid "Show unstable and RC releases" +msgstr "Ukryj wydania niestabilne i RC" + +#: Gtk/SettingsDialog.vala:244 +#, fuzzy +msgid "Skip internet connection check" +msgstr "Brak połączenia z internetem" + +#: Gtk/MainWindow.vala:196 msgid "Status" msgstr "Status" -#: Utility/TeeJee.Process.vala:511 +#: Utility/TeeJee.Process.vala:512 msgid "Stopped" msgstr "Zatrzymany" -#: Console/AppConsole.vala:79 Gtk/AppGtk.vala:179 +#: Console/AppConsole.vala:86 Gtk/AppGtk.vala:179 msgid "Syntax" msgstr "Składnia" -#: Common/LinuxKernel.vala:103 -msgid "System architecture" -msgstr "Architektura systemu" +#: Console/AppConsole.vala:210 Gtk/AppGtk.vala:111 +msgid "Temp" +msgstr "" -#: Utility/Gtk/AboutWindow.vala:340 +#: Utility/Gtk/AboutWindow.vala:330 #, c-format msgid "Third Party Tools" msgstr "Narzędzia osób trzecich" -#: Common/LinuxKernel.vala:1122 Gtk/MainWindow.vala:641 +#: Common/LinuxKernel.vala:1272 Gtk/MainWindow.vala:678 msgid "This kernel is already installed." msgstr "To jądro jest już zainstalowane." -#: Common/LinuxKernel.vala:1230 +#: Common/LinuxKernel.vala:1380 msgid "" "This kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -562,20 +614,20 @@ msgstr "" "0 = Nie pokazuj\n" "-1 = Wyświetlaj do momentu wybrania przez użytkownika" -#: Utility/Gtk/AboutWindow.vala:356 +#: Utility/Gtk/AboutWindow.vala:346 #, c-format msgid "Translators" msgstr "Tłumacze" -#: Common/LinuxKernel.vala:1214 Common/LinuxKernel.vala:1272 +#: Common/LinuxKernel.vala:1364 Common/LinuxKernel.vala:1422 msgid "Un-install completed" msgstr "De-instalacja zakończona" -#: Common/LinuxKernel.vala:1217 Common/LinuxKernel.vala:1275 +#: Common/LinuxKernel.vala:1367 Common/LinuxKernel.vala:1425 msgid "Un-install completed with errors" msgstr "De-instalacja zakończona z błędami" -#: Console/AppConsole.vala:270 Gtk/AppGtk.vala:166 +#: Console/AppConsole.vala:202 Gtk/AppGtk.vala:166 msgid "Unknown option" msgstr "Nieznana opcja" @@ -598,26 +650,14 @@ msgstr "" "0 = Nie pokazuj\n" "-1 = Wyświetlaj do momentu wybrania przez użytkownika" -#: Common/LinuxKernel.vala:1343 +#: Common/LinuxKernel.vala:1493 msgid "Updating GRUB menu" msgstr "Aktualizacja menu GRUB" -#: Console/AppConsole.vala:89 -msgid "Use specified user's cache directory" -msgstr "Użyj katalogu podręcznego wybranego użytkownika" - -#: Console/AppConsole.vala:144 Gtk/AppGtk.vala:109 -msgid "Using cache directory" -msgstr "Użycie katalogu pamięci podręcznej" - -#: Gtk/MainWindow.vala:182 +#: Gtk/MainWindow.vala:179 msgid "Version" msgstr "Wersja" -#: Utility/Gtk/DonationWindow.vala:88 -msgid "Visit Website" -msgstr "Odwiedź stronę WWW" - #: Utility/TeeJee.Logging.vala:89 msgid "W" msgstr "W" @@ -634,6 +674,76 @@ msgstr "" msgid "[Warning] Deleted invalid lock" msgstr "[Ostrzeżenie] Usunięto nieprawidłową blokadę" +#: Gtk/SettingsDialog.vala:271 +msgid "seconds" +msgstr "" + +#~ msgid "Run 'ukuu --list' and use the version string listed in first column" +#~ msgstr "" +#~ "Uruchom 'ukuu --list' i użyj wersji wyświetlonej w pierwszej kolumnie" + +#~ msgid "" +#~ "Did you find this software useful?\n" +#~ "\n" +#~ "You can buy me a coffee or make a donation via PayPal to show your " +#~ "support. Or just drop me an email and say Hi. This application is " +#~ "completely free and will continue to remain that way. Your contributions " +#~ "will help in keeping this project alive and improving it further.\n" +#~ "\n" +#~ "Feel free to send me an email if you find any issues in this application " +#~ "or if you need any changes. Suggestions and feedback are always welcome.\n" +#~ "\n" +#~ "Thanks,\n" +#~ "Tony George\n" +#~ "(teejeetech@gmail.com)" +#~ msgstr "" +#~ "Czy to oprogramowanie jest dla Ciebie przydatne?\n" +#~ "\n" +#~ "Możesz kupić mi kawę lub złożyć darowiznę za pośrednictwem PayPal, aby " +#~ "okazać swoje wsparcie. Lub po prostu wyślij e-maila i powiedz Cześć. Ta " +#~ "aplikacja jest zupełnie bezpłatna i taka pozostanie. Twój wkład pomoże w " +#~ "utrzymaniu projektu przy życiu i ulepszaniu go w przyszłości.\n" +#~ "\n" +#~ "Jeśli znajdziesz jakieś błędy lub potrzebujesz zmian w tej aplikacji, " +#~ "napisz do mnie e-mail. Sugestie i opinie są zawsze mile widziane.\n" +#~ "\n" +#~ "Dziękuję,\n" +#~ "Tony George\n" +#~ "(teejeetech@gmail.com)" + +#~ msgid "Display GRUB menu during boot" +#~ msgstr "Pokaż menu GRUB przy starcie" + +#~ msgid "Donate" +#~ msgstr "Wesprzyj" + +#~ msgid "Donate with Google Wallet" +#~ msgstr "Wesprzyj poprzez Google Wallet" + +#~ msgid "Donate with PayPal" +#~ msgstr "Wesprzyj poprzez PayPal" + +#~ msgid "Donations" +#~ msgstr "Wsparcie" + +#~ msgid "File read" +#~ msgstr "Plik odczytany" + +#~ msgid "Notify if kernel update is available" +#~ msgstr "Powiadom, jeśli pojawi się aktualizacja jądra" + +#~ msgid "Send Email" +#~ msgstr "Wyślij e-mail" + +#~ msgid "Use specified user's cache directory" +#~ msgstr "Użyj katalogu podręcznego wybranego użytkownika" + +#~ msgid "Using cache directory" +#~ msgstr "Użycie katalogu pamięci podręcznej" + +#~ msgid "Visit Website" +#~ msgstr "Odwiedź stronę WWW" + #~ msgid "Open Ukuu" #~ msgstr "Otwórz Ukuu" diff --git a/po/ukuu-ru.po b/po/ukuu-ru.po index 866a6de0..e13bc079 100644 --- a/po/ukuu-ru.po +++ b/po/ukuu-ru.po @@ -3,635 +3,736 @@ # This file is distributed under the same license as the ukuu package. # FIRST AUTHOR , 2016. # -msgid "" -msgstr "" -"Project-Id-Version: ukuu\n" -"Report-Msgid-Bugs-To: teejeetech@gmail.com\n" -"POT-Creation-Date: 2017-12-17 16:41+0530\n" -"PO-Revision-Date: 2016-12-13 16:46+0300\n" -"Last-Translator: Faust3000 \n" -"Language-Team: Russian \n" -"Language: ru\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2016-12-13 11:48+0000\n" -"X-Generator: Poedit 1.8.7.1\n" - -#: Gtk/MainWindow.vala:470 -msgid "About" -msgstr "О программе" - -#: Console/AppConsole.vala:103 -msgid "Admin access is required for running this application." -msgstr "Для запуска программы требуются права администратора." - -#: Utility/AppLock.vala:51 -msgid "Another instance of this application is running" -msgstr "Запущен другой экземпляр программы" - -#: Utility/Gtk/AboutWindow.vala:348 -#, c-format -msgid "Artists" -msgstr "Художники" - -#: Utility/Gtk/AboutWindow.vala:324 -#, c-format -msgid "Authors" -msgstr "Авторы" - -#: Common/LinuxKernel.vala:1036 -msgid "Available Kernels" -msgstr "Доступные ядра" - -#: Utility/Gtk/AboutWindow.vala:295 -msgid "Back" -msgstr "Назад" - -#: Gtk/MainWindow.vala:785 -msgid "Booting previous kernels" -msgstr "" - -#: Utility/Gtk/CustomMessageDialog.vala:172 Utility/Gtk/GtkHelper.vala:122 -#: Gtk/ProgressWindow.vala:138 Gtk/UpdateNotificationWindow.vala:167 -#: Gtk/TerminalWindow.vala:168 -msgid "Cancel" -msgstr "Отмена" - -#: Gtk/MainWindow.vala:426 -msgid "Changes" -msgstr "Изменения" - -#: Gtk/SettingsDialog.vala:122 -msgid "Check every" -msgstr "Проверять каждые" - -#: Console/AppConsole.vala:83 -msgid "Check for kernel updates" -msgstr "Проверить обновления ядра" - -#: Utility/Gtk/AboutWindow.vala:305 Gtk/TerminalWindow.vala:178 -msgid "Close" -msgstr "Закрыть" - -#: Common/Main.vala:101 -msgid "Commands listed below are not available on this system" -msgstr "Команды перечисленные ниже недоступны на этой системе" - -#: Utility/Gtk/AboutWindow.vala:332 -#, c-format -msgid "Contributions" -msgstr "Взносы" - -#: Console/AppConsole.vala:213 Gtk/MainWindow.vala:103 -msgid "Could not find requested version" -msgstr "Не удалось найти запрошенную версию" - -#: Utility/TeeJee.FileSystem.vala:349 Utility/TeeJee.FileSystem.vala:352 -#: Utility/TeeJee.FileSystem.vala:378 -#, fuzzy -msgid "Created directory" -msgstr "Используемая кэш-папка" - -#: Utility/Gtk/AboutWindow.vala:282 Utility/Gtk/AboutWindow.vala:299 -msgid "Credits" -msgstr "Создатели" - -#: Gtk/SettingsDialog.vala:155 -msgid "Day(s)" -msgstr "День(дней)" - -#: Utility/TeeJee.FileSystem.vala:375 -msgid "Deleted directory" -msgstr "" - -#: Utility/Gtk/DonationWindow.vala:54 -msgid "" -"Did you find this software useful?\n" -"\n" -"You can buy me a coffee or make a donation via PayPal to show your support. " -"Or just drop me an email and say Hi. This application is completely free and " -"will continue to remain that way. Your contributions will help in keeping " -"this project alive and improving it further.\n" -"\n" -"Feel free to send me an email if you find any issues in this application or " -"if you need any changes. Suggestions and feedback are always welcome.\n" -"\n" -"Thanks,\n" -"Tony George\n" -"(teejeetech@gmail.com)" -msgstr "" -"Считаете эту программу полезной?\n" -"\n" -"Вы можете купить мне кофе или сделать пожертвование с помощью PayPal, чтобы " -"оказать поддержку. Или просто напишите мне письмо и скажите \"Привет\". Эта " -"программа полностью бесплатна и будет оставаться таковой. Ваши пожертвования " -"помогут поддержке и развитию проекта.\n" -"\n" -"Не стесняйтесь прислать мне письмо, если Вы найдете какие-то ошибки в " -"программе, или если у Вас будут идеи по улучшению функциональности. Отзывы и " -"предложения всегда приветствуются.\n" -"\n" -"Спасибо, ваш\n" -"Tony George\n" -"(teejeetech@gmail.com)" - -#: Utility/TeeJee.FileSystem.vala:509 -msgid "Dir not found" -msgstr "Папка не найдена" - -#: Gtk/SettingsDialog.vala:162 -msgid "Display" -msgstr "Вид" - -#: Gtk/SettingsDialog.vala:203 -msgid "Display GRUB menu during boot" -msgstr "Отображать меню GRUB во время загрузки" - -#: Common/LinuxKernel.vala:89 -msgid "Distribution" -msgstr "Дистрибутив" - -#: Utility/Gtk/AboutWindow.vala:364 -#, c-format -msgid "Documenters" -msgstr "Составители документации" - -#: Utility/Gtk/DonationWindow.vala:36 Gtk/MainWindow.vala:458 -msgid "Donate" -msgstr "Пожертвования" - -#: Utility/Gtk/DonationWindow.vala:74 -msgid "Donate with Google Wallet" -msgstr "Пожертвовать через Google Wallet" - -#: Utility/Gtk/DonationWindow.vala:67 -msgid "Donate with PayPal" -msgstr "Пожертвовать через PayPal" - -#: Utility/Gtk/AboutWindow.vala:372 -#, c-format -msgid "Donations" -msgstr "Спонсоры" - -#: Console/AppConsole.vala:88 -msgid "Download packages for specified kernel" -msgstr "Скачать пакеты для указанного ядра" - -#: Common/LinuxKernel.vala:1081 -#, c-format -msgid "Downloading" -msgstr "Загрузка" - -#: Utility/TeeJee.Logging.vala:89 -msgid "E" -msgstr "E" - -#: Common/LinuxKernel.vala:1108 -#, c-format -msgid "ERROR" -msgstr "ОШИБКА" - -#: Utility/Gtk/GtkHelper.vala:18 -msgid "Error" -msgstr "Ошибка" - -#: Utility/TeeJee.FileSystem.vala:221 -msgid "Failed to copy file" -msgstr "Не удалось скопировать файл" - -#: Utility/TeeJee.FileSystem.vala:359 -msgid "Failed to create dir" -msgstr "Не удалось создать папку" - -#: Utility/TeeJee.FileSystem.vala:106 -msgid "Failed to delete file" -msgstr "Не удалось удалить файл" - -#: Utility/TeeJee.FileSystem.vala:253 -msgid "Failed to move file" -msgstr "Не удалось переместить файл" - -#: Utility/TeeJee.FileSystem.vala:162 -msgid "Failed to read file" -msgstr "Не удалось прочитать файл" - -#: Utility/TeeJee.FileSystem.vala:197 -msgid "Failed to write file" -msgstr "Не удалось записать файл" - -#: Common/LinuxKernel.vala:385 -msgid "Fetching index from kernel.ubuntu.com..." -msgstr "Получение сведений с kernel.ubuntu.com..." - -#: Utility/TeeJee.FileSystem.vala:210 Utility/TeeJee.FileSystem.vala:213 -#, fuzzy -msgid "File copied" -msgstr "Не удалось скопировать файл" - -#: Utility/TeeJee.FileSystem.vala:97 Utility/TeeJee.FileSystem.vala:100 -#, fuzzy -msgid "File deleted" -msgstr "Не удалось удалить файл" - -#: Utility/TeeJee.FileSystem.vala:662 Utility/TeeJee.FileSystem.vala:711 -msgid "File is missing" -msgstr "Файл отсутствует" - -#: Utility/TeeJee.FileSystem.vala:245 Utility/TeeJee.FileSystem.vala:248 -#, fuzzy -msgid "File moved" -msgstr "Удалить" - -#: Common/LinuxKernel.vala:943 Utility/TeeJee.FileSystem.vala:231 -#: Utility/TeeJee.FileSystem.vala:538 -msgid "File not found" -msgstr "Файл не найден" - -#: Common/Package.vala:133 Common/Package.vala:195 -#, c-format -msgid "File not found: %s" -msgstr "Файл не найден: %s" - -#: Utility/TeeJee.FileSystem.vala:152 Utility/TeeJee.FileSystem.vala:155 -#, fuzzy -msgid "File read" -msgstr "Не удалось прочитать файл" - -#: Utility/TeeJee.FileSystem.vala:187 Utility/TeeJee.FileSystem.vala:190 -#, fuzzy -msgid "File saved" -msgstr "Файловая система" - -#: Gtk/SettingsDialog.vala:192 -msgid "GRUB Options" -msgstr "Настройки GRUB" - -#: Gtk/SettingsDialog.vala:181 -msgid "Hide kernels older than 4.0" -msgstr "Скрыть ядра старше версии 4.0" - -#: Gtk/SettingsDialog.vala:170 -msgid "Hide unstable and RC releases" -msgstr "Скрыть нестабильные и релиз-кандидат версии" - -#: Gtk/SettingsDialog.vala:153 -msgid "Hour(s)" -msgstr "Час(ов)" - -#: Gtk/UpdateNotificationWindow.vala:168 -msgid "Ignore this update" -msgstr "Игнорировать это обновление" - -#: Common/LinuxKernel.vala:254 -msgid "Index is fresh" -msgstr "Сведения актуальны" - -#: Common/LinuxKernel.vala:251 -msgid "Index is stale" -msgstr "Сведения устарели" - -#: Gtk/MainWindow.vala:360 Gtk/UpdateNotificationWindow.vala:147 -msgid "Install" -msgstr "Установить" - -#: Console/AppConsole.vala:86 -msgid "Install specified mainline kernel" -msgstr "Установить указанную ветку ядра" - -#: Gtk/UpdateNotificationWindow.vala:148 -msgid "Install this kernel" -msgstr "Установить это ядро" - -#: Common/LinuxKernel.vala:1156 -msgid "Installation completed with errors" -msgstr "Установка завершена с ошибками" - -#: Common/LinuxKernel.vala:1153 -msgid "Installation completed. A reboot is required to use the new kernel." -msgstr "" -"Установка завершена. Обязательно выполните перезагрузку, чтобы использовать " -"новое ядро." - -#: Common/LinuxKernel.vala:1053 Gtk/MainWindow.vala:211 -msgid "Installed" -msgstr "Установлено" - -#: Utility/TeeJee.System.vala:275 Gtk/MainWindow.vala:84 -#: Gtk/MainWindow.vala:351 Gtk/MainWindow.vala:646 -msgid "Internet connection is not active" -msgstr "Интернет соединение не активно" - -#: Gtk/MainWindow.vala:153 -msgid "Kernel" -msgstr "Ядро" - -#: Gtk/MainWindow.vala:501 -msgid "Kernel upgrade utility for Ubuntu-based distributions" -msgstr "Программа обновления ядра для дистрибутивов на базе Ubuntu" - -#: Console/AppConsole.vala:85 -msgid "List all available mainline kernels" -msgstr "Список всех доступных основных ядер" - -#: Gtk/UpdateNotificationWindow.vala:158 -#, fuzzy -msgid "List available kernels" -msgstr "Список всех доступных основных ядер" - -#: Gtk/MainWindow.vala:786 -msgid "" -"Mainline kernels can sometimes cause problems if there are proprietary " -"drivers installed on your system. These issues include:\n" -"\n" -"▰ WiFi not working\n" -"▰ Black screen on startup\n" -"▰ Random system freeze\n" -"\n" -"If you face any of these issues there is no need to panic.\n" -"\n" -"▰ Reboot your system\n" -"▰ Select 'Advanced Boot Options' from the GRUB boot menu\n" -"▰ Select an older kernel from the list displayed on this screen\n" -"▰ Your system will boot using the selected kernel\n" -"▰ You can now uninstall the kernel that is causing issues\n" -msgstr "" - -#: Utility/Gtk/GtkHelper.vala:272 -msgid "Missing Icon" -msgstr "Значок отсутствует" - -#: Gtk/MainWindow.vala:369 -msgid "Multiple Kernels Selected" -msgstr "" - -#: Console/AppConsole.vala:195 -msgid "Multiple kernels selected for installation. Select only one." -msgstr "" - -#: Utility/Gtk/CustomMessageDialog.vala:177 -msgid "No" -msgstr "" - -#: Gtk/MainWindow.vala:84 Gtk/MainWindow.vala:351 Gtk/MainWindow.vala:646 -msgid "No Internet" -msgstr "" - -#: Console/AppConsole.vala:349 Gtk/MainWindow.vala:780 -msgid "No updates found" -msgstr "Обновлений не найдено" - -#: Gtk/MainWindow.vala:372 Gtk/MainWindow.vala:383 -msgid "Not Selected" -msgstr "" - -#: Gtk/SettingsDialog.vala:67 -msgid "Notification" -msgstr "Уведомления" - -#: Gtk/SettingsDialog.vala:74 -msgid "Notify if a major release is available" -msgstr "Уведомлять, если доступно крупное обновление" - -#: Gtk/SettingsDialog.vala:85 -msgid "Notify if a point release is available" -msgstr "Уведомлять, если доступно небольшое обновление" - -#: Console/AppConsole.vala:84 -msgid "Notify if kernel update is available" -msgstr "Уведомлять, если доступно обновление ядра" - -#: Common/LinuxKernel.vala:1099 Utility/Gtk/CustomMessageDialog.vala:167 -#: Utility/Gtk/CustomMessageDialog.vala:171 Utility/Gtk/GtkHelper.vala:121 -#: Utility/Gtk/DonationWindow.vala:95 -#, c-format -msgid "OK" -msgstr "OK" - -#: Console/AppConsole.vala:81 Gtk/AppGtk.vala:181 -msgid "Options" -msgstr "Параметры" - -#: Common/LinuxKernel.vala:922 -#, c-format -msgid "Packages Available (DEB)" -msgstr "" - -#: Common/LinuxKernel.vala:930 -#, fuzzy, c-format -msgid "Packages Installed" -msgstr "Установлено" - -#: Common/Main.vala:102 -msgid "Please install required packages and try again" -msgstr "Установить необходимые пакеты и попробуйте снова" - -#: Common/LinuxKernel.vala:1177 -msgid "Preparing to remove selected kernels" -msgstr "" - -#: Gtk/AppGtk.vala:183 -msgid "Print debug information" -msgstr "Распечатать отладочную информацию" - -#: Gtk/MainWindow.vala:344 -msgid "Refresh" -msgstr "Обновить" - -#: Gtk/MainWindow.vala:531 -msgid "Refreshing..." -msgstr "Обновление..." - -#: Gtk/MainWindow.vala:377 -msgid "Remove" -msgstr "Удалить" - -#: Gtk/MainWindow.vala:425 -msgid "Purge" -msgstr "Очистить" - -#: Gtk/MainWindow.vala:426 -msgid "Remove installed kernels older than running kernel" -msgstr "Удалить более старшие установленные ядра, чем используемое" - -#: Console/AppConsole.vala:90 -msgid "Remove files from application cache" -msgstr "Удалить файлы из кэша программы" - -#: Console/AppConsole.vala:87 -msgid "Remove specified mainline kernel" -msgstr "Удалить указанную ветку ядра" - -#: Console/AppConsole.vala:217 -msgid "Run 'ukuu --list' and use the version string listed in first column" -msgstr "Выполните 'ukuu --list' и используйте версию из первого столбца" - -#: Console/AppConsole.vala:106 -#, fuzzy -msgid "Run the application as admin with pkexec or sudo." -msgstr "Запустите программу с правами Root или используйте gksu/sudo." - -#: Common/LinuxKernel.vala:1053 Gtk/MainWindow.vala:211 -msgid "Running" -msgstr "Используется" - -#: Gtk/MainWindow.vala:369 -msgid "Select a single kernel to install" -msgstr "" - -#: Gtk/MainWindow.vala:372 -msgid "Select the kernel to install" -msgstr "" - -#: Gtk/MainWindow.vala:383 -msgid "Select the kernels to remove" -msgstr "" - -#: Common/LinuxKernel.vala:1172 -#, fuzzy -msgid "" -"Selected kernel is currently running and cannot be removed.\n" -" Install another kernel before removing this one." -msgstr "" -"Это ядро в настоящий момент работает и не может быть удалено.\n" -" Установите другое ядро, прежде чем удалять его." - -#: Utility/Gtk/DonationWindow.vala:81 -msgid "Send Email" -msgstr "Отправить email" - -#: Gtk/SettingsDialog.vala:57 Gtk/MainWindow.vala:437 -msgid "Settings" -msgstr "Настройки" - -#: Gtk/UpdateNotificationWindow.vala:157 -msgid "Show" -msgstr "" - -#: Gtk/AppGtk.vala:184 -msgid "Show all options" -msgstr "Показать все параметры" - -#: Gtk/SettingsDialog.vala:96 -msgid "Show notification bubble on desktop" -msgstr "Показывать окно оповещений на рабочем столе" - -#: Gtk/SettingsDialog.vala:107 -msgid "Show notification dialog" -msgstr "Показывать окно оповещений" - -#: Gtk/MainWindow.vala:199 -msgid "Status" -msgstr "Состояние" - -#: Utility/TeeJee.Process.vala:511 -msgid "Stopped" -msgstr "Остановлено" - -#: Console/AppConsole.vala:79 Gtk/AppGtk.vala:179 -msgid "Syntax" -msgstr "Синтаксис" - -#: Common/LinuxKernel.vala:103 -msgid "System architecture" -msgstr "Системная архитектура" - -#: Utility/Gtk/AboutWindow.vala:340 -#, c-format -msgid "Third Party Tools" -msgstr "Сторонние инструменты" - -#: Common/LinuxKernel.vala:1122 Gtk/MainWindow.vala:641 -msgid "This kernel is already installed." -msgstr "Это ядро уже установлено." - -#: Common/LinuxKernel.vala:1230 -msgid "" -"This kernel is currently running and cannot be removed.\n" -" Install another kernel before removing this one." -msgstr "" -"Это ядро в настоящий момент работает и не может быть удалено.\n" -" Установите другое ядро, прежде чем удалять его." - -#: Gtk/SettingsDialog.vala:223 -msgid "" -"Time (in seconds) to display the GRUB menu\n" -"\n" -"0 = Do not show menu\n" -"-1 = Show indefinitely till user selects" -msgstr "" -"Время отображения меню GRUB (в секундах)\n" -"\n" -"0 = Не отображать меню\n" -"-1 = Отображать до выбора пользователя" - -#: Utility/Gtk/AboutWindow.vala:356 -#, c-format -msgid "Translators" -msgstr "Переводчики" - -#: Common/LinuxKernel.vala:1214 Common/LinuxKernel.vala:1272 -msgid "Un-install completed" -msgstr "Удаление завершено" - -#: Common/LinuxKernel.vala:1217 Common/LinuxKernel.vala:1275 -msgid "Un-install completed with errors" -msgstr "Удаление завершено с ошибками" - -#: Console/AppConsole.vala:270 Gtk/AppGtk.vala:166 -msgid "Unknown option" -msgstr "Неизвестный параметр" - -#: Gtk/SettingsDialog.vala:210 -msgid "" -"Updates the GRUB menu after installing or removing kernels, so that the menu " -"is displayed for 2 seconds at boot time. This will help you recover from a " -"bad kernel update by selecting another kernel to boot. During boot, use the " -"'Advanced options for Ubuntu' menu entry to select another kernel.\n" -"\n" -"0 = Do not show menu\n" -"-1 = Show indefinitely till user selects" -msgstr "" -"Обновляет меню GRUB после установки или удаления ядер, после чего оно " -"отображается на 2 секунды после загрузки. Это даст возможность выбрать " -"другое ядро после неудачного обновления. Во время загрузки выберите " -"пункт меню 'Advanced options for Ubuntu' для запуска другого ядра.\n" -"\n" -"0 = Не отображать меню\n" -"-1 = Отображать до выбора пользователя" - -#: Common/LinuxKernel.vala:1343 -msgid "Updating GRUB menu" -msgstr "Обновление меню GRUB" - -#: Console/AppConsole.vala:89 -msgid "Use specified user's cache directory" -msgstr "Использовать указанную пользователем папку для кэша" - -#: Console/AppConsole.vala:144 Gtk/AppGtk.vala:109 -msgid "Using cache directory" -msgstr "Используемая кэш-папка" - -#: Gtk/MainWindow.vala:182 -msgid "Version" -msgstr "Версия" - -#: Utility/Gtk/DonationWindow.vala:88 -msgid "Visit Website" -msgstr "Посетить сайт" - -#: Utility/TeeJee.Logging.vala:89 -msgid "W" -msgstr "W" - -#: Gtk/SettingsDialog.vala:157 -msgid "Week(s)" -msgstr "Неделю(ли)" - -#: Utility/Gtk/CustomMessageDialog.vala:176 -msgid "Yes" -msgstr "" - -#: Utility/AppLock.vala:56 -msgid "[Warning] Deleted invalid lock" -msgstr "[Внимание] Удалена неправильная блокировка" +msgid "" +msgstr "" +"Project-Id-Version: ukuu\n" +"Report-Msgid-Bugs-To: bw.aljex@gmail.com\n" +"POT-Creation-Date: 2019-03-10 23:56-0400\n" +"PO-Revision-Date: 2016-12-13 16:46+0300\n" +"Last-Translator: Faust3000 \n" +"Language-Team: Russian \n" +"Language: ru\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2016-12-13 11:48+0000\n" +"X-Generator: Poedit 1.8.7.1\n" + +#: Gtk/MainWindow.vala:496 +msgid "About" +msgstr "О программе" + +#: Console/AppConsole.vala:119 +msgid "Admin access is required for running this application." +msgstr "Для запуска программы требуются права администратора." + +#: Utility/AppLock.vala:51 +msgid "Another instance of this application is running" +msgstr "Запущен другой экземпляр программы" + +#: Common/LinuxKernel.vala:108 +#, fuzzy +msgid "Architecture" +msgstr "Системная архитектура" + +#: Utility/Gtk/AboutWindow.vala:338 +#, c-format +msgid "Artists" +msgstr "Художники" + +#: Console/AppConsole.vala:106 +msgid "Assume Yes for all prompts (non-interactive mode)" +msgstr "" + +#: Utility/Gtk/AboutWindow.vala:314 +#, c-format +msgid "Authors" +msgstr "Авторы" + +#: Common/LinuxKernel.vala:1184 +msgid "Available Kernels" +msgstr "Доступные ядра" + +#: Utility/Gtk/AboutWindow.vala:285 +msgid "Back" +msgstr "Назад" + +#: Gtk/MainWindow.vala:822 +msgid "Booting previous kernels" +msgstr "" + +#: Console/AppConsole.vala:209 Gtk/AppGtk.vala:110 +msgid "Cache" +msgstr "" + +#: Gtk/ProgressWindow.vala:144 Gtk/TerminalWindow.vala:168 +#: Gtk/UpdateNotificationWindow.vala:167 +#: Utility/Gtk/CustomMessageDialog.vala:172 Utility/Gtk/GtkHelper.vala:122 +msgid "Cancel" +msgstr "Отмена" + +#: Gtk/MainWindow.vala:464 +msgid "Changes" +msgstr "Изменения" + +#: Gtk/SettingsDialog.vala:122 +msgid "Check every" +msgstr "Проверять каждые" + +#: Console/AppConsole.vala:90 +msgid "Check for kernel updates" +msgstr "Проверить обновления ядра" + +#: Console/AppConsole.vala:91 +#, fuzzy +msgid "Check for kernel updates and notify current user" +msgstr "Проверить обновления ядра" + +#: Gtk/TerminalWindow.vala:178 Utility/Gtk/AboutWindow.vala:295 +msgid "Close" +msgstr "Закрыть" + +#: Console/AppConsole.vala:346 +msgid "Command not specified" +msgstr "" + +#: Console/AppConsole.vala:88 +msgid "Commands" +msgstr "" + +#: Common/Main.vala:106 +msgid "Commands listed below are not available on this system" +msgstr "Команды перечисленные ниже недоступны на этой системе" + +#: Common/LinuxKernel.vala:740 +#, c-format +msgid "Continue ?" +msgstr "" + +#: Utility/Gtk/AboutWindow.vala:322 +#, c-format +msgid "Contributions" +msgstr "Взносы" + +#: Common/LinuxKernel.vala:724 +#, fuzzy +msgid "Could not find any kernels to remove" +msgstr "Не удалось найти запрошенную версию" + +#: Console/AppConsole.vala:314 Gtk/MainWindow.vala:100 +msgid "Could not find requested version" +msgstr "Не удалось найти запрошенную версию" + +#: Common/LinuxKernel.vala:718 +#, fuzzy +msgid "Could not find running kernel in list!" +msgstr "Не удалось найти запрошенную версию" + +#: Utility/TeeJee.FileSystem.vala:349 Utility/TeeJee.FileSystem.vala:352 +#: Utility/TeeJee.FileSystem.vala:378 +#, fuzzy +msgid "Created directory" +msgstr "Используемая кэш-папка" + +#: Utility/Gtk/AboutWindow.vala:272 Utility/Gtk/AboutWindow.vala:289 +msgid "Credits" +msgstr "Создатели" + +#: Gtk/SettingsDialog.vala:155 +msgid "Day(s)" +msgstr "День(дней)" + +#: Utility/TeeJee.FileSystem.vala:375 +msgid "Deleted directory" +msgstr "" + +#: Utility/TeeJee.FileSystem.vala:509 +msgid "Dir not found" +msgstr "Папка не найдена" + +#: Gtk/SettingsDialog.vala:162 +msgid "Display" +msgstr "Вид" + +#: Common/LinuxKernel.vala:94 +msgid "Distribution" +msgstr "Дистрибутив" + +#: Utility/Gtk/AboutWindow.vala:354 +#, c-format +msgid "Documenters" +msgstr "Составители документации" + +#: Console/AppConsole.vala:99 +msgid "Download packages for specified kernel" +msgstr "Скачать пакеты для указанного ядра" + +#: Common/LinuxKernel.vala:1230 +#, c-format +msgid "Downloading" +msgstr "Загрузка" + +#: Utility/TeeJee.Logging.vala:89 +msgid "E" +msgstr "E" + +#: Common/LinuxKernel.vala:1258 +#, c-format +msgid "ERROR" +msgstr "ОШИБКА" + +#: Utility/Gtk/GtkHelper.vala:18 +msgid "Error" +msgstr "Ошибка" + +#: Utility/TeeJee.FileSystem.vala:221 +msgid "Failed to copy file" +msgstr "Не удалось скопировать файл" + +#: Utility/TeeJee.FileSystem.vala:359 +msgid "Failed to create dir" +msgstr "Не удалось создать папку" + +#: Utility/TeeJee.FileSystem.vala:106 +msgid "Failed to delete file" +msgstr "Не удалось удалить файл" + +#: Utility/TeeJee.FileSystem.vala:253 +msgid "Failed to move file" +msgstr "Не удалось переместить файл" + +#: Utility/TeeJee.FileSystem.vala:162 +msgid "Failed to read file" +msgstr "Не удалось прочитать файл" + +#: Utility/TeeJee.FileSystem.vala:197 +msgid "Failed to write file" +msgstr "Не удалось записать файл" + +#: Common/LinuxKernel.vala:399 +msgid "Fetching index from kernel.ubuntu.com..." +msgstr "Получение сведений с kernel.ubuntu.com..." + +#: Common/LinuxKernel.vala:356 +msgid "Fetching index..." +msgstr "" + +#: Utility/TeeJee.FileSystem.vala:210 Utility/TeeJee.FileSystem.vala:213 +#, fuzzy +msgid "File copied" +msgstr "Не удалось скопировать файл" + +#: Utility/TeeJee.FileSystem.vala:97 Utility/TeeJee.FileSystem.vala:100 +#, fuzzy +msgid "File deleted" +msgstr "Не удалось удалить файл" + +#: Utility/TeeJee.FileSystem.vala:662 Utility/TeeJee.FileSystem.vala:711 +msgid "File is missing" +msgstr "Файл отсутствует" + +#: Utility/TeeJee.FileSystem.vala:245 Utility/TeeJee.FileSystem.vala:248 +#, fuzzy +msgid "File moved" +msgstr "Удалить" + +#: Utility/TeeJee.FileSystem.vala:231 Utility/TeeJee.FileSystem.vala:538 +msgid "File not found" +msgstr "Файл не найден" + +#: Common/Package.vala:133 Common/Package.vala:195 +#, c-format +msgid "File not found: %s" +msgstr "Файл не найден: %s" + +#: Utility/TeeJee.FileSystem.vala:187 Utility/TeeJee.FileSystem.vala:190 +#, fuzzy +msgid "File saved" +msgstr "Файловая система" + +#: Common/LinuxKernel.vala:733 +#, c-format +msgid "Following kernels will be removed" +msgstr "" + +#: Gtk/SettingsDialog.vala:192 +msgid "GRUB Options" +msgstr "Настройки GRUB" + +#: Gtk/SettingsDialog.vala:181 +msgid "Hide kernels older than 4.0" +msgstr "Скрыть ядра старше версии 4.0" + +#: Gtk/SettingsDialog.vala:170 +msgid "Hide unstable and RC releases" +msgstr "Скрыть нестабильные и релиз-кандидат версии" + +#: Gtk/SettingsDialog.vala:153 +msgid "Hour(s)" +msgstr "Час(ов)" + +#: Gtk/UpdateNotificationWindow.vala:168 +msgid "Ignore this update" +msgstr "Игнорировать это обновление" + +#: Common/LinuxKernel.vala:262 +msgid "Index is fresh" +msgstr "Сведения актуальны" + +#: Common/LinuxKernel.vala:259 +msgid "Index is stale" +msgstr "Сведения устарели" + +#: Gtk/MainWindow.vala:359 Gtk/UpdateNotificationWindow.vala:147 +msgid "Install" +msgstr "Установить" + +#: Common/LinuxKernel.vala:797 +#, c-format +msgid "Install Linux v%s ? (y/n): " +msgstr "" + +#: Console/AppConsole.vala:94 +#, fuzzy +msgid "Install latest mainline kernel" +msgstr "Установить указанную ветку ядра" + +#: Console/AppConsole.vala:95 +msgid "Install latest point update for current series" +msgstr "" + +#: Console/AppConsole.vala:96 +msgid "Install specified mainline kernel" +msgstr "Установить указанную ветку ядра" + +#: Gtk/UpdateNotificationWindow.vala:148 +msgid "Install this kernel" +msgstr "Установить это ядро" + +#: Common/LinuxKernel.vala:1306 +msgid "Installation completed with errors" +msgstr "Установка завершена с ошибками" + +#: Common/LinuxKernel.vala:1303 +msgid "Installation completed. A reboot is required to use the new kernel." +msgstr "" +"Установка завершена. Обязательно выполните перезагрузку, чтобы использовать " +"новое ядро." + +#: Common/LinuxKernel.vala:1201 Gtk/MainWindow.vala:208 +msgid "Installed" +msgstr "Установлено" + +#: Gtk/SettingsDialog.vala:257 +#, fuzzy +msgid "Internect connection timeout in " +msgstr "Интернет соединение не активно" + +#: Gtk/MainWindow.vala:350 Gtk/MainWindow.vala:547 Gtk/MainWindow.vala:683 +#: Utility/TeeJee.System.vala:292 +msgid "Internet connection is not active" +msgstr "Интернет соединение не активно" + +#: Gtk/MainWindow.vala:150 +msgid "Kernel" +msgstr "Ядро" + +#: Gtk/MainWindow.vala:531 +msgid "Kernel upgrade utility for Ubuntu-based distributions" +msgstr "Программа обновления ядра для дистрибутивов на базе Ubuntu" + +#: Common/LinuxKernel.vala:779 Console/AppConsole.vala:372 +#, c-format +msgid "Latest point update" +msgstr "" + +#: Common/LinuxKernel.vala:768 Console/AppConsole.vala:365 +#, c-format +msgid "Latest update" +msgstr "" + +#: Console/AppConsole.vala:92 +msgid "List all available mainline kernels" +msgstr "Список всех доступных основных ядер" + +#: Gtk/UpdateNotificationWindow.vala:158 +#, fuzzy +msgid "List available kernels" +msgstr "Список всех доступных основных ядер" + +#: Console/AppConsole.vala:93 +#, fuzzy +msgid "List installed kernels" +msgstr "Список всех доступных основных ядер" + +#: Gtk/MainWindow.vala:823 +msgid "" +"Mainline kernels can sometimes cause problems if there are proprietary " +"drivers installed on your system. These issues include:\n" +"\n" +"▰ WiFi not working\n" +"▰ Black screen on startup\n" +"▰ Random system freeze\n" +"\n" +"If you face any of these issues there is no need to panic.\n" +"\n" +"▰ Reboot your system\n" +"▰ Select 'Advanced Boot Options' from the GRUB boot menu\n" +"▰ Select an older kernel from the list displayed on this screen\n" +"▰ Your system will boot using the selected kernel\n" +"▰ You can now uninstall the kernel that is causing issues\n" +msgstr "" + +#: Utility/Gtk/GtkHelper.vala:272 +msgid "Missing Icon" +msgstr "Значок отсутствует" + +#: Gtk/MainWindow.vala:368 +msgid "Multiple Kernels Selected" +msgstr "" + +#: Console/AppConsole.vala:296 +msgid "Multiple kernels selected for installation. Select only one." +msgstr "" + +#: Utility/Gtk/CustomMessageDialog.vala:177 +msgid "No" +msgstr "" + +#: Gtk/MainWindow.vala:350 Gtk/MainWindow.vala:547 Gtk/MainWindow.vala:683 +msgid "No Internet" +msgstr "" + +#: Console/AppConsole.vala:290 Console/AppConsole.vala:327 +msgid "No kernels specified" +msgstr "" + +#: Common/LinuxKernel.vala:787 Console/AppConsole.vala:377 +#: Console/AppConsole.vala:457 Gtk/MainWindow.vala:817 +msgid "No updates found" +msgstr "Обновлений не найдено" + +#: Gtk/MainWindow.vala:371 Gtk/MainWindow.vala:382 +msgid "Not Selected" +msgstr "" + +#: Gtk/SettingsDialog.vala:67 +msgid "Notification" +msgstr "Уведомления" + +#: Gtk/SettingsDialog.vala:74 +msgid "Notify if a major release is available" +msgstr "Уведомлять, если доступно крупное обновление" + +#: Gtk/SettingsDialog.vala:85 +msgid "Notify if a point release is available" +msgstr "Уведомлять, если доступно небольшое обновление" + +#: Common/LinuxKernel.vala:1249 Utility/Gtk/CustomMessageDialog.vala:167 +#: Utility/Gtk/CustomMessageDialog.vala:171 Utility/Gtk/GtkHelper.vala:121 +#, c-format +msgid "OK" +msgstr "OK" + +#: Console/AppConsole.vala:103 Gtk/AppGtk.vala:181 +msgid "Options" +msgstr "Параметры" + +#: Gtk/SettingsDialog.vala:236 +msgid "Other" +msgstr "" + +#: Common/LinuxKernel.vala:1063 +#, c-format +msgid "Packages Available (DEB)" +msgstr "" + +#: Common/LinuxKernel.vala:1071 +#, fuzzy, c-format +msgid "Packages Installed" +msgstr "Установлено" + +#: Common/Main.vala:107 +msgid "Please install required packages and try again" +msgstr "Установить необходимые пакеты и попробуйте снова" + +#: Common/LinuxKernel.vala:1327 +msgid "Preparing to remove selected kernels" +msgstr "" + +#: Gtk/AppGtk.vala:183 +msgid "Print debug information" +msgstr "Распечатать отладочную информацию" + +#: Gtk/MainWindow.vala:425 +msgid "Purge" +msgstr "Очистить" + +#: Gtk/MainWindow.vala:343 +msgid "Refresh" +msgstr "Обновить" + +#: Gtk/MainWindow.vala:566 +msgid "Refreshing..." +msgstr "Обновление..." + +#: Gtk/MainWindow.vala:376 +msgid "Remove" +msgstr "Удалить" + +#: Console/AppConsole.vala:100 Console/AppConsole.vala:105 +msgid "Remove files from application cache" +msgstr "Удалить файлы из кэша программы" + +#: Console/AppConsole.vala:98 Gtk/MainWindow.vala:426 +msgid "Remove installed kernels older than running kernel" +msgstr "Удалить более старшие установленные ядра, чем используемое" + +#: Console/AppConsole.vala:97 +#, fuzzy +msgid "Remove specified kernel" +msgstr "Удалить указанную ветку ядра" + +#: Console/AppConsole.vala:204 Console/AppConsole.vala:318 +#: Console/AppConsole.vala:347 +msgid "Run '" +msgstr "" + +#: Console/AppConsole.vala:122 +#, fuzzy +msgid "Run the application as admin with pkexec or sudo." +msgstr "Запустите программу с правами Root или используйте gksu/sudo." + +#: Common/LinuxKernel.vala:1201 Gtk/MainWindow.vala:208 +msgid "Running" +msgstr "Используется" + +#: Gtk/MainWindow.vala:368 +msgid "Select a single kernel to install" +msgstr "" + +#: Gtk/MainWindow.vala:371 +msgid "Select the kernel to install" +msgstr "" + +#: Gtk/MainWindow.vala:382 +msgid "Select the kernels to remove" +msgstr "" + +#: Common/LinuxKernel.vala:1322 +#, fuzzy +msgid "" +"Selected kernel is currently running and cannot be removed.\n" +" Install another kernel before removing this one." +msgstr "" +"Это ядро в настоящий момент работает и не может быть удалено.\n" +" Установите другое ядро, прежде чем удалять его." + +#: Gtk/SettingsDialog.vala:203 +msgid "Set GRUB menu timeout" +msgstr "" + +#: Gtk/MainWindow.vala:475 Gtk/SettingsDialog.vala:57 +msgid "Settings" +msgstr "Настройки" + +#: Gtk/UpdateNotificationWindow.vala:157 +msgid "Show" +msgstr "" + +#: Gtk/AppGtk.vala:184 +msgid "Show all options" +msgstr "Показать все параметры" + +#: Gtk/SettingsDialog.vala:96 +msgid "Show notification bubble on desktop" +msgstr "Показывать окно оповещений на рабочем столе" + +#: Gtk/SettingsDialog.vala:107 +msgid "Show notification dialog" +msgstr "Показывать окно оповещений" + +#: Console/AppConsole.vala:101 +#, fuzzy +msgid "Show unstable and RC releases" +msgstr "Скрыть нестабильные и релиз-кандидат версии" + +#: Gtk/SettingsDialog.vala:244 +#, fuzzy +msgid "Skip internet connection check" +msgstr "Интернет соединение не активно" + +#: Gtk/MainWindow.vala:196 +msgid "Status" +msgstr "Состояние" + +#: Utility/TeeJee.Process.vala:512 +msgid "Stopped" +msgstr "Остановлено" + +#: Console/AppConsole.vala:86 Gtk/AppGtk.vala:179 +msgid "Syntax" +msgstr "Синтаксис" + +#: Console/AppConsole.vala:210 Gtk/AppGtk.vala:111 +msgid "Temp" +msgstr "" + +#: Utility/Gtk/AboutWindow.vala:330 +#, c-format +msgid "Third Party Tools" +msgstr "Сторонние инструменты" + +#: Common/LinuxKernel.vala:1272 Gtk/MainWindow.vala:678 +msgid "This kernel is already installed." +msgstr "Это ядро уже установлено." + +#: Common/LinuxKernel.vala:1380 +msgid "" +"This kernel is currently running and cannot be removed.\n" +" Install another kernel before removing this one." +msgstr "" +"Это ядро в настоящий момент работает и не может быть удалено.\n" +" Установите другое ядро, прежде чем удалять его." + +#: Gtk/SettingsDialog.vala:223 +msgid "" +"Time (in seconds) to display the GRUB menu\n" +"\n" +"0 = Do not show menu\n" +"-1 = Show indefinitely till user selects" +msgstr "" +"Время отображения меню GRUB (в секундах)\n" +"\n" +"0 = Не отображать меню\n" +"-1 = Отображать до выбора пользователя" + +#: Utility/Gtk/AboutWindow.vala:346 +#, c-format +msgid "Translators" +msgstr "Переводчики" + +#: Common/LinuxKernel.vala:1364 Common/LinuxKernel.vala:1422 +msgid "Un-install completed" +msgstr "Удаление завершено" + +#: Common/LinuxKernel.vala:1367 Common/LinuxKernel.vala:1425 +msgid "Un-install completed with errors" +msgstr "Удаление завершено с ошибками" + +#: Console/AppConsole.vala:202 Gtk/AppGtk.vala:166 +msgid "Unknown option" +msgstr "Неизвестный параметр" + +#: Gtk/SettingsDialog.vala:210 +msgid "" +"Updates the GRUB menu after installing or removing kernels, so that the menu " +"is displayed for 2 seconds at boot time. This will help you recover from a " +"bad kernel update by selecting another kernel to boot. During boot, use the " +"'Advanced options for Ubuntu' menu entry to select another kernel.\n" +"\n" +"0 = Do not show menu\n" +"-1 = Show indefinitely till user selects" +msgstr "" +"Обновляет меню GRUB после установки или удаления ядер, после чего оно " +"отображается на 2 секунды после загрузки. Это даст возможность выбрать " +"другое ядро после неудачного обновления. Во время загрузки выберите пункт " +"меню 'Advanced options for Ubuntu' для запуска другого ядра.\n" +"\n" +"0 = Не отображать меню\n" +"-1 = Отображать до выбора пользователя" + +#: Common/LinuxKernel.vala:1493 +msgid "Updating GRUB menu" +msgstr "Обновление меню GRUB" + +#: Gtk/MainWindow.vala:179 +msgid "Version" +msgstr "Версия" + +#: Utility/TeeJee.Logging.vala:89 +msgid "W" +msgstr "W" + +#: Gtk/SettingsDialog.vala:157 +msgid "Week(s)" +msgstr "Неделю(ли)" + +#: Utility/Gtk/CustomMessageDialog.vala:176 +msgid "Yes" +msgstr "" + +#: Utility/AppLock.vala:56 +msgid "[Warning] Deleted invalid lock" +msgstr "[Внимание] Удалена неправильная блокировка" + +#: Gtk/SettingsDialog.vala:271 +msgid "seconds" +msgstr "" + +#~ msgid "Run 'ukuu --list' and use the version string listed in first column" +#~ msgstr "Выполните 'ukuu --list' и используйте версию из первого столбца" + +#~ msgid "" +#~ "Did you find this software useful?\n" +#~ "\n" +#~ "You can buy me a coffee or make a donation via PayPal to show your " +#~ "support. Or just drop me an email and say Hi. This application is " +#~ "completely free and will continue to remain that way. Your contributions " +#~ "will help in keeping this project alive and improving it further.\n" +#~ "\n" +#~ "Feel free to send me an email if you find any issues in this application " +#~ "or if you need any changes. Suggestions and feedback are always welcome.\n" +#~ "\n" +#~ "Thanks,\n" +#~ "Tony George\n" +#~ "(teejeetech@gmail.com)" +#~ msgstr "" +#~ "Считаете эту программу полезной?\n" +#~ "\n" +#~ "Вы можете купить мне кофе или сделать пожертвование с помощью PayPal, " +#~ "чтобы оказать поддержку. Или просто напишите мне письмо и скажите \"Привет" +#~ "\". Эта программа полностью бесплатна и будет оставаться таковой. Ваши " +#~ "пожертвования помогут поддержке и развитию проекта.\n" +#~ "\n" +#~ "Не стесняйтесь прислать мне письмо, если Вы найдете какие-то ошибки в " +#~ "программе, или если у Вас будут идеи по улучшению функциональности. " +#~ "Отзывы и предложения всегда приветствуются.\n" +#~ "\n" +#~ "Спасибо, ваш\n" +#~ "Tony George\n" +#~ "(teejeetech@gmail.com)" + +#~ msgid "Display GRUB menu during boot" +#~ msgstr "Отображать меню GRUB во время загрузки" + +#~ msgid "Donate" +#~ msgstr "Пожертвования" + +#~ msgid "Donate with Google Wallet" +#~ msgstr "Пожертвовать через Google Wallet" + +#~ msgid "Donate with PayPal" +#~ msgstr "Пожертвовать через PayPal" + +#~ msgid "Donations" +#~ msgstr "Спонсоры" + +#, fuzzy +#~ msgid "File read" +#~ msgstr "Не удалось прочитать файл" + +#~ msgid "Notify if kernel update is available" +#~ msgstr "Уведомлять, если доступно обновление ядра" + +#~ msgid "Send Email" +#~ msgstr "Отправить email" + +#~ msgid "Use specified user's cache directory" +#~ msgstr "Использовать указанную пользователем папку для кэша" + +#~ msgid "Using cache directory" +#~ msgstr "Используемая кэш-папка" + +#~ msgid "Visit Website" +#~ msgstr "Посетить сайт" diff --git a/po/ukuu-sv.po b/po/ukuu-sv.po index 688a10cc..5bc5c0f0 100644 --- a/po/ukuu-sv.po +++ b/po/ukuu-sv.po @@ -2,675 +2,774 @@ # Copyright (C) YEAR Tony George (teejeetech@gmail.com) # This file is distributed under the same license as the ukuu package. # Åke Engelbrektson , 2016. -# -msgid "" -msgstr "" -"Project-Id-Version: ukuu 2.2\n" -"Report-Msgid-Bugs-To: teejeetech@gmail.com\n" -"POT-Creation-Date: 2017-12-17 16:41+0530\n" -"PO-Revision-Date: 2018-01-13 16:56+0100\n" -"Last-Translator: Åke Engelbrektson \n" -"Language-Team: Svenska Språkfiler \n" -"Language: sv\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Poedit 1.8.7.1\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: Gtk/MainWindow.vala:470 -msgid "About" -msgstr "Om" - -#: Console/AppConsole.vala:103 -msgid "Admin access is required for running this application." -msgstr "Root-åtkomst krävs för att köra detta program." - -#: Utility/AppLock.vala:51 -msgid "Another instance of this application is running" -msgstr "En annan instans av programmet körs redan" - -#: Utility/Gtk/AboutWindow.vala:348 -#, c-format -msgid "Artists" -msgstr "Artister" - -#: Utility/Gtk/AboutWindow.vala:324 -#, c-format -msgid "Authors" -msgstr "Utvecklare" - -#: Common/LinuxKernel.vala:1036 -msgid "Available Kernels" -msgstr "Tillgängliga kärnor" - -#: Utility/Gtk/AboutWindow.vala:295 -msgid "Back" -msgstr "Tillbaka" - -#: Gtk/MainWindow.vala:785 -msgid "Booting previous kernels" -msgstr "Startar föregående kärnor" - -#: Utility/Gtk/CustomMessageDialog.vala:172 Utility/Gtk/GtkHelper.vala:122 -#: Gtk/ProgressWindow.vala:138 Gtk/UpdateNotificationWindow.vala:167 -#: Gtk/TerminalWindow.vala:168 -msgid "Cancel" -msgstr "Avbryt" - -#: Gtk/MainWindow.vala:426 -msgid "Changes" -msgstr "Ändringar" - -#: Gtk/SettingsDialog.vala:122 -msgid "Check every" -msgstr "Kontrollera varje" - -#: Console/AppConsole.vala:83 -msgid "Check for kernel updates" -msgstr "Sök efter kärnuppdateringar" - -#: Utility/Gtk/AboutWindow.vala:305 Gtk/TerminalWindow.vala:178 -msgid "Close" -msgstr "Stäng" - -#: Common/Main.vala:101 -msgid "Commands listed below are not available on this system" -msgstr "Kommandon listade nedan, finns inte tillgängliga i detta system." - -#: Utility/Gtk/AboutWindow.vala:332 -#, c-format -msgid "Contributions" -msgstr "Bidrag" - -#: Console/AppConsole.vala:213 Gtk/MainWindow.vala:103 -msgid "Could not find requested version" -msgstr "Kunde inte hitta efterfrågad version" - -#: Utility/TeeJee.FileSystem.vala:349 Utility/TeeJee.FileSystem.vala:352 -#: Utility/TeeJee.FileSystem.vala:378 -msgid "Created directory" -msgstr "Skapade mapp" - -#: Utility/Gtk/AboutWindow.vala:282 Utility/Gtk/AboutWindow.vala:299 -msgid "Credits" -msgstr "Tack" - -#: Gtk/SettingsDialog.vala:155 -msgid "Day(s)" -msgstr "Dag(ar)" - -#: Utility/TeeJee.FileSystem.vala:375 -msgid "Deleted directory" -msgstr "Tog bort mapp" - -#: Utility/Gtk/DonationWindow.vala:54 -msgid "" -"Did you find this software useful?\n" -"\n" -"You can buy me a coffee or make a donation via PayPal to show your support. " -"Or just drop me an email and say Hi. This application is completely free and " -"will continue to remain that way. Your contributions will help in keeping " -"this project alive and improving it further.\n" -"\n" -"Feel free to send me an email if you find any issues in this application or " -"if you need any changes. Suggestions and feedback are always welcome.\n" -"\n" -"Thanks,\n" -"Tony George\n" -"(teejeetech@gmail.com)" -msgstr "" -"Tycker du att detta program är användbart?\n" -"\n" -"Du kan bjuda mig på en kopp kaffe eller donera via PayPal för att visa ditt " -"stöd. Eller bara skicka ett e-postmeddelande och säga Hej! Programmet är " -"helt gratis och kommer att fortsätta vara så. Ditt bidrag hjälper mig att " -"hålla projektet levande och att utveckla det vidare.\n" -"\n" -"Skicka gärna ett e-postmeddelande om du stöter på några problem med " -"programmet eller behöver några ändringar. Förslag och återkoppling är alltid " -"välkommet.\n" -"\n" -"Tack!\n" -"Tony George\n" -"(teejeetech@gmail.com)" - -#: Utility/TeeJee.FileSystem.vala:509 -msgid "Dir not found" -msgstr "Mappen kan inte hittas" - -#: Gtk/SettingsDialog.vala:162 -msgid "Display" -msgstr "Visa" - -#: Gtk/SettingsDialog.vala:203 -msgid "Display GRUB menu during boot" -msgstr "Visa GRUB-menyn vid systemstart" - -#: Common/LinuxKernel.vala:89 -msgid "Distribution" -msgstr "Distribution" - -#: Utility/Gtk/AboutWindow.vala:364 -#, c-format -msgid "Documenters" -msgstr "Dokumentalister" - -#: Utility/Gtk/DonationWindow.vala:36 Gtk/MainWindow.vala:458 -msgid "Donate" -msgstr "Donera" - -#: Utility/Gtk/DonationWindow.vala:74 -msgid "Donate with Google Wallet" -msgstr "Donera med Google Wallet" - -#: Utility/Gtk/DonationWindow.vala:67 -msgid "Donate with PayPal" -msgstr "Donera med PayPal" - -#: Utility/Gtk/AboutWindow.vala:372 -#, c-format -msgid "Donations" -msgstr "Donationer" - -#: Console/AppConsole.vala:88 -msgid "Download packages for specified kernel" -msgstr "Ladda ner paket för specificerad kärna" - -#: Common/LinuxKernel.vala:1081 -#, c-format -msgid "Downloading" -msgstr "Laddar ner" - -#: Utility/TeeJee.Logging.vala:89 -msgid "E" -msgstr "F" - -#: Common/LinuxKernel.vala:1108 -#, c-format -msgid "ERROR" -msgstr "FEL" - -#: Utility/Gtk/GtkHelper.vala:18 -msgid "Error" -msgstr "Fel" - -#: Utility/TeeJee.FileSystem.vala:221 -msgid "Failed to copy file" -msgstr "Kunde inte kopiera filen" - -#: Utility/TeeJee.FileSystem.vala:359 -msgid "Failed to create dir" -msgstr "Kunde inte skapa mappen" - -#: Utility/TeeJee.FileSystem.vala:106 -msgid "Failed to delete file" -msgstr "Kunde inte ta bort filen" - -#: Utility/TeeJee.FileSystem.vala:253 -msgid "Failed to move file" -msgstr "Kunde inte flytta filen" - -#: Utility/TeeJee.FileSystem.vala:162 -msgid "Failed to read file" -msgstr "Kunde inte läsa filen" - -#: Utility/TeeJee.FileSystem.vala:197 -msgid "Failed to write file" -msgstr "Kunde inte skriva filen" - -#: Common/LinuxKernel.vala:385 -msgid "Fetching index from kernel.ubuntu.com..." -msgstr "Hämtar index från kernel.ubuntu.com ..." - -#: Utility/TeeJee.FileSystem.vala:210 Utility/TeeJee.FileSystem.vala:213 -msgid "File copied" -msgstr "Kopierade fil" - -#: Utility/TeeJee.FileSystem.vala:97 Utility/TeeJee.FileSystem.vala:100 -msgid "File deleted" -msgstr "Fil borttagen" - -#: Utility/TeeJee.FileSystem.vala:662 Utility/TeeJee.FileSystem.vala:711 -msgid "File is missing" -msgstr "Filen saknas" - -#: Utility/TeeJee.FileSystem.vala:245 Utility/TeeJee.FileSystem.vala:248 -msgid "File moved" -msgstr "Fil flyttad" - -#: Common/LinuxKernel.vala:943 Utility/TeeJee.FileSystem.vala:231 -#: Utility/TeeJee.FileSystem.vala:538 -msgid "File not found" -msgstr "Filen kan inte hittas" - -#: Common/Package.vala:133 Common/Package.vala:195 -#, c-format -msgid "File not found: %s" -msgstr "Filen kunde inte hittas: %s" - -#: Utility/TeeJee.FileSystem.vala:152 Utility/TeeJee.FileSystem.vala:155 -msgid "File read" -msgstr "Fil läst" - -#: Utility/TeeJee.FileSystem.vala:187 Utility/TeeJee.FileSystem.vala:190 -msgid "File saved" -msgstr "Fil sparad" - -#: Gtk/SettingsDialog.vala:192 -msgid "GRUB Options" -msgstr "GRUB-alternativ" - -#: Gtk/SettingsDialog.vala:181 -msgid "Hide kernels older than 4.0" -msgstr "Dölj kärnor, äldre än 4.0" - -#: Gtk/SettingsDialog.vala:170 -msgid "Hide unstable and RC releases" -msgstr "Dölj instabila- och RC-publiceringar" - -#: Gtk/SettingsDialog.vala:153 -msgid "Hour(s)" -msgstr "Timma(r)" - -#: Gtk/UpdateNotificationWindow.vala:168 -msgid "Ignore this update" -msgstr "Undanta denna uppdatering" - -#: Common/LinuxKernel.vala:254 -msgid "Index is fresh" -msgstr "Index är uppdaterat" - -#: Common/LinuxKernel.vala:251 -msgid "Index is stale" -msgstr "Index är inaktuellt" - -#: Gtk/MainWindow.vala:360 Gtk/UpdateNotificationWindow.vala:147 -msgid "Install" -msgstr "Installera" - -#: Console/AppConsole.vala:86 -msgid "Install specified mainline kernel" -msgstr "Installera specificerad kärna" - -#: Gtk/UpdateNotificationWindow.vala:148 -msgid "Install this kernel" -msgstr "Installera denna kärna" - -#: Common/LinuxKernel.vala:1156 -msgid "Installation completed with errors" -msgstr "Installation slutförd med fel" - -#: Common/LinuxKernel.vala:1153 -msgid "Installation completed. A reboot is required to use the new kernel." -msgstr "Installation slutförd. Omstart krävs för att tillämpa den nya kärnan." - -#: Common/LinuxKernel.vala:1053 Gtk/MainWindow.vala:211 -msgid "Installed" -msgstr "Installerad" - -#: Utility/TeeJee.System.vala:275 Gtk/MainWindow.vala:84 -#: Gtk/MainWindow.vala:351 Gtk/MainWindow.vala:646 -msgid "Internet connection is not active" -msgstr "Internetuppkopplingen är inte aktiv" - -#: Gtk/MainWindow.vala:153 -msgid "Kernel" -msgstr "Kärna" - -#: Gtk/MainWindow.vala:501 -msgid "Kernel upgrade utility for Ubuntu-based distributions" -msgstr "Kärnuppgraderingsverktyg för Ubuntu-baserade distributioner" - -#: Console/AppConsole.vala:85 -msgid "List all available mainline kernels" -msgstr "Lista alla tillgängliga kärnor" - -#: Gtk/UpdateNotificationWindow.vala:158 -msgid "List available kernels" -msgstr "Lista tillgängliga kärnor" - -#: Gtk/MainWindow.vala:786 -msgid "" -"Mainline kernels can sometimes cause problems if there are proprietary " -"drivers installed on your system. These issues include:\n" -"\n" -"▰ WiFi not working\n" -"▰ Black screen on startup\n" -"▰ Random system freeze\n" -"\n" -"If you face any of these issues there is no need to panic.\n" -"\n" -"▰ Reboot your system\n" -"▰ Select 'Advanced Boot Options' from the GRUB boot menu\n" -"▰ Select an older kernel from the list displayed on this screen\n" -"▰ Your system will boot using the selected kernel\n" -"▰ You can now uninstall the kernel that is causing issues\n" -msgstr "" -"Standardkärnor kan ibland orsaka problem, om det finns proprietära " -"drivrutiner installerade i ditt system. Dessa problem kan inkludera:\n" -"\n" -"▰ Trådlöst nätverk som inte fungerar\n" -"▰ Svart skärm vid systemstart\n" -"▰ Slumpartade systemfrysningar\n" -"\n" -"Råkar du ut för något av dessa problem, är det ingen panik\n" -"\n" -"▰ Starta om ditt system\n" -"▰ Välj \"Avancerade startalternativ\" i GRUB-menyn\n" -"▰ Välj en äldre kärna från listan som visas\n" -"▰ Ditt system startar då med med den valda kärnan\n" -"▰ Du kan nu avinstallera den kärna som orsakar problem\n" - -#: Utility/Gtk/GtkHelper.vala:272 -msgid "Missing Icon" -msgstr "Saknad ikon" - -#: Gtk/MainWindow.vala:369 -msgid "Multiple Kernels Selected" -msgstr "Flera kärnor markerade" - -#: Console/AppConsole.vala:195 -msgid "Multiple kernels selected for installation. Select only one." -msgstr "Flera kärnor valda för installation. Välj endast en." - -#: Utility/Gtk/CustomMessageDialog.vala:177 -msgid "No" -msgstr "Nej" - -#: Gtk/MainWindow.vala:84 Gtk/MainWindow.vala:351 Gtk/MainWindow.vala:646 -msgid "No Internet" -msgstr "Inget internet" - -#: Console/AppConsole.vala:349 Gtk/MainWindow.vala:780 -msgid "No updates found" -msgstr "Inga uppdateringar hittades" - -#: Gtk/MainWindow.vala:372 Gtk/MainWindow.vala:383 -msgid "Not Selected" -msgstr "Inte vald" - -#: Gtk/SettingsDialog.vala:67 -msgid "Notification" -msgstr "Avisering" - -#: Gtk/SettingsDialog.vala:74 -msgid "Notify if a major release is available" -msgstr "Meddela om en ny (stor) uppdatering finns tillgänglig" - -#: Gtk/SettingsDialog.vala:85 -msgid "Notify if a point release is available" -msgstr "Meddela om en ny (mindre) uppdatering finns tillgänglig" - -#: Console/AppConsole.vala:84 -msgid "Notify if kernel update is available" -msgstr "Meddela om en kärnuppdatering finns tillgänglig" - -#: Common/LinuxKernel.vala:1099 Utility/Gtk/CustomMessageDialog.vala:167 -#: Utility/Gtk/CustomMessageDialog.vala:171 Utility/Gtk/GtkHelper.vala:121 -#: Utility/Gtk/DonationWindow.vala:95 -#, c-format -msgid "OK" -msgstr "OK" - -#: Console/AppConsole.vala:81 Gtk/AppGtk.vala:181 -msgid "Options" -msgstr "Alternativ" - -#: Common/LinuxKernel.vala:922 -#, c-format -msgid "Packages Available (DEB)" -msgstr "Tillgängliga paket (DEB)" - -#: Common/LinuxKernel.vala:930 -#, c-format -msgid "Packages Installed" -msgstr "Installerade paket" - -#: Common/Main.vala:102 -msgid "Please install required packages and try again" -msgstr "Installera nödvändiga paket och försök igen" - -#: Common/LinuxKernel.vala:1177 -msgid "Preparing to remove selected kernels" -msgstr "Förbereder borttagning av markerade kärnor" - -#: Gtk/AppGtk.vala:183 -msgid "Print debug information" -msgstr "Skriv ut felsökningsinformation" - -#: Gtk/MainWindow.vala:344 -msgid "Refresh" -msgstr "Uppdatera" - -#: Gtk/MainWindow.vala:425 -msgid "Purge" -msgstr "Rensa" - -#: Gtk/MainWindow.vala:426 -msgid "Remove installed kernels older than running kernel" -msgstr "Ta bort installerade kärnor äldre än den som körs" - -#: Gtk/MainWindow.vala:531 -msgid "Refreshing..." -msgstr "Uppdaterar ..." - -#: Gtk/MainWindow.vala:377 -msgid "Remove" -msgstr "Ta bort" - -#: Console/AppConsole.vala:90 -msgid "Remove files from application cache" -msgstr "Ta bort filer från program-cachen" - -#: Console/AppConsole.vala:87 -msgid "Remove specified mainline kernel" -msgstr "Ta bort specificerad kärna" - -#: Console/AppConsole.vala:217 -msgid "Run 'ukuu --list' and use the version string listed in first column" -msgstr "" -"Kör \"ukuu --list\" och använd den versionssträng som listas i första " -"kolumnen" - -#: Console/AppConsole.vala:106 -msgid "Run the application as admin with pkexec or sudo." -msgstr "Kör programmet som administratör, med pkexec eller sudo." - -#: Common/LinuxKernel.vala:1053 Gtk/MainWindow.vala:211 -msgid "Running" -msgstr "Körs" - -#: Gtk/MainWindow.vala:369 -msgid "Select a single kernel to install" -msgstr "Välj en enstaka kärna att installera" - -#: Gtk/MainWindow.vala:372 -msgid "Select the kernel to install" -msgstr "Välj kärna för installation" - -#: Gtk/MainWindow.vala:383 -msgid "Select the kernels to remove" -msgstr "Välj kärnor för borttagning" - -#: Common/LinuxKernel.vala:1172 -msgid "" -"Selected kernel is currently running and cannot be removed.\n" -" Install another kernel before removing this one." -msgstr "" -"Denna kärna används för tillfället och kan inte tas bort.\n" -"Installera en annan kärna innan du tar bort den här." - -#: Utility/Gtk/DonationWindow.vala:81 -msgid "Send Email" -msgstr "Skicka e-post" - -#: Gtk/SettingsDialog.vala:57 Gtk/MainWindow.vala:437 -msgid "Settings" -msgstr "Inställningar" - -#: Gtk/UpdateNotificationWindow.vala:157 -msgid "Show" -msgstr "Visa" - -#: Gtk/AppGtk.vala:184 -msgid "Show all options" -msgstr "Visa alla alternativ" - -#: Gtk/SettingsDialog.vala:96 -msgid "Show notification bubble on desktop" -msgstr "Visa aviseringsruta på skrivbordet" - -#: Gtk/SettingsDialog.vala:107 -msgid "Show notification dialog" -msgstr "Visa aviseringsdialog" - -#: Gtk/MainWindow.vala:199 -msgid "Status" -msgstr "Status" - -#: Utility/TeeJee.Process.vala:511 -msgid "Stopped" -msgstr "Stoppad" - -#: Console/AppConsole.vala:79 Gtk/AppGtk.vala:179 -msgid "Syntax" -msgstr "Syntax" - -#: Common/LinuxKernel.vala:103 -msgid "System architecture" -msgstr "Systemarkitektur" - -#: Utility/Gtk/AboutWindow.vala:340 -#, c-format -msgid "Third Party Tools" -msgstr "Tredjepartsverktyg" - -#: Common/LinuxKernel.vala:1122 Gtk/MainWindow.vala:641 -msgid "This kernel is already installed." -msgstr "Denna kärna är redan installerad" - -#: Common/LinuxKernel.vala:1230 -msgid "" -"This kernel is currently running and cannot be removed.\n" -" Install another kernel before removing this one." -msgstr "" -"Denna kärna används för tillfället och kan inte tas bort.\n" -"Installera en annan kärna innan du tar bort den här." - -#: Gtk/SettingsDialog.vala:223 -msgid "" -"Time (in seconds) to display the GRUB menu\n" -"\n" -"0 = Do not show menu\n" -"-1 = Show indefinitely till user selects" -msgstr "" -"Tid (i sekunder) att visa GRUB-menyn\n" -"\n" -"0 = Visa ingen meny\n" -"-1 = Visa oavbrutet tills användaren väljer" - -#: Utility/Gtk/AboutWindow.vala:356 -#, c-format -msgid "Translators" -msgstr "Översättare" - -#: Common/LinuxKernel.vala:1214 Common/LinuxKernel.vala:1272 -msgid "Un-install completed" -msgstr "Avinstallation slutförd" - -#: Common/LinuxKernel.vala:1217 Common/LinuxKernel.vala:1275 -msgid "Un-install completed with errors" -msgstr "Avinstallation slutförd med fel" - -#: Console/AppConsole.vala:270 Gtk/AppGtk.vala:166 -msgid "Unknown option" -msgstr "Okänt alternativ" - -#: Gtk/SettingsDialog.vala:210 -msgid "" -"Updates the GRUB menu after installing or removing kernels, so that the menu " -"is displayed for 2 seconds at boot time. This will help you recover from a " -"bad kernel update by selecting another kernel to boot. During boot, use the " -"'Advanced options for Ubuntu' menu entry to select another kernel.\n" -"\n" -"0 = Do not show menu\n" -"-1 = Show indefinitely till user selects" -msgstr "" -"Uppdaterar GRUB-menyn efter installation eller borttagning av kärnor, så att " -"menyn visas i 2 sekunder vid systemstart. Detta hjälper dig att återställa " -"från en dålig kärnuppdatering, genom att du kan välja en annan kärna att " -"starta med. Under uppstarten väljer du \"Avancerade alternativ...\" för att " -"välja en annan kärna.\n" -"\n" -"0 = Visa ingen meny\n" -"-1 = Visa menyn oavbrutet tills användaren väljer" - -#: Common/LinuxKernel.vala:1343 -msgid "Updating GRUB menu" -msgstr "Uppdaterar GRUB-menyn" - -#: Console/AppConsole.vala:89 -msgid "Use specified user's cache directory" -msgstr "Använd specificerad användares cache-mapp" - -#: Console/AppConsole.vala:144 Gtk/AppGtk.vala:109 -msgid "Using cache directory" -msgstr "Använder cache-mapp" - -#: Gtk/MainWindow.vala:182 -msgid "Version" -msgstr "Version" - -#: Utility/Gtk/DonationWindow.vala:88 -msgid "Visit Website" -msgstr "Besök hemsidan" - -#: Utility/TeeJee.Logging.vala:89 -msgid "W" -msgstr "V" - -#: Gtk/SettingsDialog.vala:157 -msgid "Week(s)" -msgstr "Veckor" - -#: Utility/Gtk/CustomMessageDialog.vala:176 -msgid "Yes" -msgstr "Ja" - -#: Utility/AppLock.vala:56 -msgid "[Warning] Deleted invalid lock" -msgstr "[Varning] Tog bort ogiltigt lås" - -#~ msgid "Open Ukuu" -#~ msgstr "Öppna Ukuu" - -#~ msgid "Cron job added" -#~ msgstr "Cron-jobb tillagt" - -#~ msgid "Cron job removed" -#~ msgstr "Cron-jobb borttaget" - -#~ msgid "Failed to add cron job" -#~ msgstr "Kunde inte lägga till Cron-jobb" - -#~ msgid "Failed to read cron tab" -#~ msgstr "Kunde inte läsa cron-fliken" - -#~ msgid "Failed to remove cron job" -#~ msgstr "Kunde inte ta bort cron-jobbet" - -#~ msgid "Fetching changelog for" -#~ msgstr "Hämtar ändringslogg för" - -#~ msgid "Fetching index for" -#~ msgstr "Hämtar index för" - -#~ msgid "Open" -#~ msgstr "Öppna" - -#~ msgid "Root Access Required" -#~ msgstr "Root-åtkomst krävs" - -#~ msgid "Root access is required for running this application." -#~ msgstr "Root-åtkomst krävs för att använda det här programmet" +# +msgid "" +msgstr "" +"Project-Id-Version: ukuu 2.2\n" +"Report-Msgid-Bugs-To: bw.aljex@gmail.com\n" +"POT-Creation-Date: 2019-03-10 23:56-0400\n" +"PO-Revision-Date: 2018-01-13 16:56+0100\n" +"Last-Translator: Åke Engelbrektson \n" +"Language-Team: Svenska Språkfiler \n" +"Language: sv\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Poedit 1.8.7.1\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: Gtk/MainWindow.vala:496 +msgid "About" +msgstr "Om" + +#: Console/AppConsole.vala:119 +msgid "Admin access is required for running this application." +msgstr "Root-åtkomst krävs för att köra detta program." + +#: Utility/AppLock.vala:51 +msgid "Another instance of this application is running" +msgstr "En annan instans av programmet körs redan" + +#: Common/LinuxKernel.vala:108 +#, fuzzy +msgid "Architecture" +msgstr "Systemarkitektur" + +#: Utility/Gtk/AboutWindow.vala:338 +#, c-format +msgid "Artists" +msgstr "Artister" + +#: Console/AppConsole.vala:106 +msgid "Assume Yes for all prompts (non-interactive mode)" +msgstr "" + +#: Utility/Gtk/AboutWindow.vala:314 +#, c-format +msgid "Authors" +msgstr "Utvecklare" + +#: Common/LinuxKernel.vala:1184 +msgid "Available Kernels" +msgstr "Tillgängliga kärnor" + +#: Utility/Gtk/AboutWindow.vala:285 +msgid "Back" +msgstr "Tillbaka" + +#: Gtk/MainWindow.vala:822 +msgid "Booting previous kernels" +msgstr "Startar föregående kärnor" + +#: Console/AppConsole.vala:209 Gtk/AppGtk.vala:110 +msgid "Cache" +msgstr "" + +#: Gtk/ProgressWindow.vala:144 Gtk/TerminalWindow.vala:168 +#: Gtk/UpdateNotificationWindow.vala:167 +#: Utility/Gtk/CustomMessageDialog.vala:172 Utility/Gtk/GtkHelper.vala:122 +msgid "Cancel" +msgstr "Avbryt" + +#: Gtk/MainWindow.vala:464 +msgid "Changes" +msgstr "Ändringar" + +#: Gtk/SettingsDialog.vala:122 +msgid "Check every" +msgstr "Kontrollera varje" + +#: Console/AppConsole.vala:90 +msgid "Check for kernel updates" +msgstr "Sök efter kärnuppdateringar" + +#: Console/AppConsole.vala:91 +#, fuzzy +msgid "Check for kernel updates and notify current user" +msgstr "Sök efter kärnuppdateringar" + +#: Gtk/TerminalWindow.vala:178 Utility/Gtk/AboutWindow.vala:295 +msgid "Close" +msgstr "Stäng" + +#: Console/AppConsole.vala:346 +msgid "Command not specified" +msgstr "" + +#: Console/AppConsole.vala:88 +msgid "Commands" +msgstr "" + +#: Common/Main.vala:106 +msgid "Commands listed below are not available on this system" +msgstr "Kommandon listade nedan, finns inte tillgängliga i detta system." + +#: Common/LinuxKernel.vala:740 +#, c-format +msgid "Continue ?" +msgstr "" + +#: Utility/Gtk/AboutWindow.vala:322 +#, c-format +msgid "Contributions" +msgstr "Bidrag" + +#: Common/LinuxKernel.vala:724 +#, fuzzy +msgid "Could not find any kernels to remove" +msgstr "Välj kärnor för borttagning" + +#: Console/AppConsole.vala:314 Gtk/MainWindow.vala:100 +msgid "Could not find requested version" +msgstr "Kunde inte hitta efterfrågad version" + +#: Common/LinuxKernel.vala:718 +#, fuzzy +msgid "Could not find running kernel in list!" +msgstr "Kunde inte hitta efterfrågad version" + +#: Utility/TeeJee.FileSystem.vala:349 Utility/TeeJee.FileSystem.vala:352 +#: Utility/TeeJee.FileSystem.vala:378 +msgid "Created directory" +msgstr "Skapade mapp" + +#: Utility/Gtk/AboutWindow.vala:272 Utility/Gtk/AboutWindow.vala:289 +msgid "Credits" +msgstr "Tack" + +#: Gtk/SettingsDialog.vala:155 +msgid "Day(s)" +msgstr "Dag(ar)" + +#: Utility/TeeJee.FileSystem.vala:375 +msgid "Deleted directory" +msgstr "Tog bort mapp" + +#: Utility/TeeJee.FileSystem.vala:509 +msgid "Dir not found" +msgstr "Mappen kan inte hittas" + +#: Gtk/SettingsDialog.vala:162 +msgid "Display" +msgstr "Visa" + +#: Common/LinuxKernel.vala:94 +msgid "Distribution" +msgstr "Distribution" + +#: Utility/Gtk/AboutWindow.vala:354 +#, c-format +msgid "Documenters" +msgstr "Dokumentalister" + +#: Console/AppConsole.vala:99 +msgid "Download packages for specified kernel" +msgstr "Ladda ner paket för specificerad kärna" + +#: Common/LinuxKernel.vala:1230 +#, c-format +msgid "Downloading" +msgstr "Laddar ner" + +#: Utility/TeeJee.Logging.vala:89 +msgid "E" +msgstr "F" + +#: Common/LinuxKernel.vala:1258 +#, c-format +msgid "ERROR" +msgstr "FEL" + +#: Utility/Gtk/GtkHelper.vala:18 +msgid "Error" +msgstr "Fel" + +#: Utility/TeeJee.FileSystem.vala:221 +msgid "Failed to copy file" +msgstr "Kunde inte kopiera filen" + +#: Utility/TeeJee.FileSystem.vala:359 +msgid "Failed to create dir" +msgstr "Kunde inte skapa mappen" + +#: Utility/TeeJee.FileSystem.vala:106 +msgid "Failed to delete file" +msgstr "Kunde inte ta bort filen" + +#: Utility/TeeJee.FileSystem.vala:253 +msgid "Failed to move file" +msgstr "Kunde inte flytta filen" + +#: Utility/TeeJee.FileSystem.vala:162 +msgid "Failed to read file" +msgstr "Kunde inte läsa filen" + +#: Utility/TeeJee.FileSystem.vala:197 +msgid "Failed to write file" +msgstr "Kunde inte skriva filen" + +#: Common/LinuxKernel.vala:399 +msgid "Fetching index from kernel.ubuntu.com..." +msgstr "Hämtar index från kernel.ubuntu.com ..." + +#: Common/LinuxKernel.vala:356 +#, fuzzy +msgid "Fetching index..." +msgstr "Hämtar index för" + +#: Utility/TeeJee.FileSystem.vala:210 Utility/TeeJee.FileSystem.vala:213 +msgid "File copied" +msgstr "Kopierade fil" + +#: Utility/TeeJee.FileSystem.vala:97 Utility/TeeJee.FileSystem.vala:100 +msgid "File deleted" +msgstr "Fil borttagen" + +#: Utility/TeeJee.FileSystem.vala:662 Utility/TeeJee.FileSystem.vala:711 +msgid "File is missing" +msgstr "Filen saknas" + +#: Utility/TeeJee.FileSystem.vala:245 Utility/TeeJee.FileSystem.vala:248 +msgid "File moved" +msgstr "Fil flyttad" + +#: Utility/TeeJee.FileSystem.vala:231 Utility/TeeJee.FileSystem.vala:538 +msgid "File not found" +msgstr "Filen kan inte hittas" + +#: Common/Package.vala:133 Common/Package.vala:195 +#, c-format +msgid "File not found: %s" +msgstr "Filen kunde inte hittas: %s" + +#: Utility/TeeJee.FileSystem.vala:187 Utility/TeeJee.FileSystem.vala:190 +msgid "File saved" +msgstr "Fil sparad" + +#: Common/LinuxKernel.vala:733 +#, c-format +msgid "Following kernels will be removed" +msgstr "" + +#: Gtk/SettingsDialog.vala:192 +msgid "GRUB Options" +msgstr "GRUB-alternativ" + +#: Gtk/SettingsDialog.vala:181 +msgid "Hide kernels older than 4.0" +msgstr "Dölj kärnor, äldre än 4.0" + +#: Gtk/SettingsDialog.vala:170 +msgid "Hide unstable and RC releases" +msgstr "Dölj instabila- och RC-publiceringar" + +#: Gtk/SettingsDialog.vala:153 +msgid "Hour(s)" +msgstr "Timma(r)" + +#: Gtk/UpdateNotificationWindow.vala:168 +msgid "Ignore this update" +msgstr "Undanta denna uppdatering" + +#: Common/LinuxKernel.vala:262 +msgid "Index is fresh" +msgstr "Index är uppdaterat" + +#: Common/LinuxKernel.vala:259 +msgid "Index is stale" +msgstr "Index är inaktuellt" + +#: Gtk/MainWindow.vala:359 Gtk/UpdateNotificationWindow.vala:147 +msgid "Install" +msgstr "Installera" + +#: Common/LinuxKernel.vala:797 +#, c-format +msgid "Install Linux v%s ? (y/n): " +msgstr "" + +#: Console/AppConsole.vala:94 +#, fuzzy +msgid "Install latest mainline kernel" +msgstr "Installera specificerad kärna" + +#: Console/AppConsole.vala:95 +msgid "Install latest point update for current series" +msgstr "" + +#: Console/AppConsole.vala:96 +msgid "Install specified mainline kernel" +msgstr "Installera specificerad kärna" + +#: Gtk/UpdateNotificationWindow.vala:148 +msgid "Install this kernel" +msgstr "Installera denna kärna" + +#: Common/LinuxKernel.vala:1306 +msgid "Installation completed with errors" +msgstr "Installation slutförd med fel" + +#: Common/LinuxKernel.vala:1303 +msgid "Installation completed. A reboot is required to use the new kernel." +msgstr "Installation slutförd. Omstart krävs för att tillämpa den nya kärnan." + +#: Common/LinuxKernel.vala:1201 Gtk/MainWindow.vala:208 +msgid "Installed" +msgstr "Installerad" + +#: Gtk/SettingsDialog.vala:257 +#, fuzzy +msgid "Internect connection timeout in " +msgstr "Internetuppkopplingen är inte aktiv" + +#: Gtk/MainWindow.vala:350 Gtk/MainWindow.vala:547 Gtk/MainWindow.vala:683 +#: Utility/TeeJee.System.vala:292 +msgid "Internet connection is not active" +msgstr "Internetuppkopplingen är inte aktiv" + +#: Gtk/MainWindow.vala:150 +msgid "Kernel" +msgstr "Kärna" + +#: Gtk/MainWindow.vala:531 +msgid "Kernel upgrade utility for Ubuntu-based distributions" +msgstr "Kärnuppgraderingsverktyg för Ubuntu-baserade distributioner" + +#: Common/LinuxKernel.vala:779 Console/AppConsole.vala:372 +#, c-format +msgid "Latest point update" +msgstr "" + +#: Common/LinuxKernel.vala:768 Console/AppConsole.vala:365 +#, c-format +msgid "Latest update" +msgstr "" + +#: Console/AppConsole.vala:92 +msgid "List all available mainline kernels" +msgstr "Lista alla tillgängliga kärnor" + +#: Gtk/UpdateNotificationWindow.vala:158 +msgid "List available kernels" +msgstr "Lista tillgängliga kärnor" + +#: Console/AppConsole.vala:93 +#, fuzzy +msgid "List installed kernels" +msgstr "Lista tillgängliga kärnor" + +#: Gtk/MainWindow.vala:823 +msgid "" +"Mainline kernels can sometimes cause problems if there are proprietary " +"drivers installed on your system. These issues include:\n" +"\n" +"▰ WiFi not working\n" +"▰ Black screen on startup\n" +"▰ Random system freeze\n" +"\n" +"If you face any of these issues there is no need to panic.\n" +"\n" +"▰ Reboot your system\n" +"▰ Select 'Advanced Boot Options' from the GRUB boot menu\n" +"▰ Select an older kernel from the list displayed on this screen\n" +"▰ Your system will boot using the selected kernel\n" +"▰ You can now uninstall the kernel that is causing issues\n" +msgstr "" +"Standardkärnor kan ibland orsaka problem, om det finns proprietära " +"drivrutiner installerade i ditt system. Dessa problem kan inkludera:\n" +"\n" +"▰ Trådlöst nätverk som inte fungerar\n" +"▰ Svart skärm vid systemstart\n" +"▰ Slumpartade systemfrysningar\n" +"\n" +"Råkar du ut för något av dessa problem, är det ingen panik\n" +"\n" +"▰ Starta om ditt system\n" +"▰ Välj \"Avancerade startalternativ\" i GRUB-menyn\n" +"▰ Välj en äldre kärna från listan som visas\n" +"▰ Ditt system startar då med med den valda kärnan\n" +"▰ Du kan nu avinstallera den kärna som orsakar problem\n" + +#: Utility/Gtk/GtkHelper.vala:272 +msgid "Missing Icon" +msgstr "Saknad ikon" + +#: Gtk/MainWindow.vala:368 +msgid "Multiple Kernels Selected" +msgstr "Flera kärnor markerade" + +#: Console/AppConsole.vala:296 +msgid "Multiple kernels selected for installation. Select only one." +msgstr "Flera kärnor valda för installation. Välj endast en." + +#: Utility/Gtk/CustomMessageDialog.vala:177 +msgid "No" +msgstr "Nej" + +#: Gtk/MainWindow.vala:350 Gtk/MainWindow.vala:547 Gtk/MainWindow.vala:683 +msgid "No Internet" +msgstr "Inget internet" + +#: Console/AppConsole.vala:290 Console/AppConsole.vala:327 +msgid "No kernels specified" +msgstr "" + +#: Common/LinuxKernel.vala:787 Console/AppConsole.vala:377 +#: Console/AppConsole.vala:457 Gtk/MainWindow.vala:817 +msgid "No updates found" +msgstr "Inga uppdateringar hittades" + +#: Gtk/MainWindow.vala:371 Gtk/MainWindow.vala:382 +msgid "Not Selected" +msgstr "Inte vald" + +#: Gtk/SettingsDialog.vala:67 +msgid "Notification" +msgstr "Avisering" + +#: Gtk/SettingsDialog.vala:74 +msgid "Notify if a major release is available" +msgstr "Meddela om en ny (stor) uppdatering finns tillgänglig" + +#: Gtk/SettingsDialog.vala:85 +msgid "Notify if a point release is available" +msgstr "Meddela om en ny (mindre) uppdatering finns tillgänglig" + +#: Common/LinuxKernel.vala:1249 Utility/Gtk/CustomMessageDialog.vala:167 +#: Utility/Gtk/CustomMessageDialog.vala:171 Utility/Gtk/GtkHelper.vala:121 +#, c-format +msgid "OK" +msgstr "OK" + +#: Console/AppConsole.vala:103 Gtk/AppGtk.vala:181 +msgid "Options" +msgstr "Alternativ" + +#: Gtk/SettingsDialog.vala:236 +msgid "Other" +msgstr "" + +#: Common/LinuxKernel.vala:1063 +#, c-format +msgid "Packages Available (DEB)" +msgstr "Tillgängliga paket (DEB)" + +#: Common/LinuxKernel.vala:1071 +#, c-format +msgid "Packages Installed" +msgstr "Installerade paket" + +#: Common/Main.vala:107 +msgid "Please install required packages and try again" +msgstr "Installera nödvändiga paket och försök igen" + +#: Common/LinuxKernel.vala:1327 +msgid "Preparing to remove selected kernels" +msgstr "Förbereder borttagning av markerade kärnor" + +#: Gtk/AppGtk.vala:183 +msgid "Print debug information" +msgstr "Skriv ut felsökningsinformation" + +#: Gtk/MainWindow.vala:425 +msgid "Purge" +msgstr "Rensa" + +#: Gtk/MainWindow.vala:343 +msgid "Refresh" +msgstr "Uppdatera" + +#: Gtk/MainWindow.vala:566 +msgid "Refreshing..." +msgstr "Uppdaterar ..." + +#: Gtk/MainWindow.vala:376 +msgid "Remove" +msgstr "Ta bort" + +#: Console/AppConsole.vala:100 Console/AppConsole.vala:105 +msgid "Remove files from application cache" +msgstr "Ta bort filer från program-cachen" + +#: Console/AppConsole.vala:98 Gtk/MainWindow.vala:426 +msgid "Remove installed kernels older than running kernel" +msgstr "Ta bort installerade kärnor äldre än den som körs" + +#: Console/AppConsole.vala:97 +#, fuzzy +msgid "Remove specified kernel" +msgstr "Ta bort specificerad kärna" + +#: Console/AppConsole.vala:204 Console/AppConsole.vala:318 +#: Console/AppConsole.vala:347 +msgid "Run '" +msgstr "" + +#: Console/AppConsole.vala:122 +msgid "Run the application as admin with pkexec or sudo." +msgstr "Kör programmet som administratör, med pkexec eller sudo." + +#: Common/LinuxKernel.vala:1201 Gtk/MainWindow.vala:208 +msgid "Running" +msgstr "Körs" + +#: Gtk/MainWindow.vala:368 +msgid "Select a single kernel to install" +msgstr "Välj en enstaka kärna att installera" + +#: Gtk/MainWindow.vala:371 +msgid "Select the kernel to install" +msgstr "Välj kärna för installation" + +#: Gtk/MainWindow.vala:382 +msgid "Select the kernels to remove" +msgstr "Välj kärnor för borttagning" + +#: Common/LinuxKernel.vala:1322 +msgid "" +"Selected kernel is currently running and cannot be removed.\n" +" Install another kernel before removing this one." +msgstr "" +"Denna kärna används för tillfället och kan inte tas bort.\n" +"Installera en annan kärna innan du tar bort den här." + +#: Gtk/SettingsDialog.vala:203 +msgid "Set GRUB menu timeout" +msgstr "" + +#: Gtk/MainWindow.vala:475 Gtk/SettingsDialog.vala:57 +msgid "Settings" +msgstr "Inställningar" + +#: Gtk/UpdateNotificationWindow.vala:157 +msgid "Show" +msgstr "Visa" + +#: Gtk/AppGtk.vala:184 +msgid "Show all options" +msgstr "Visa alla alternativ" + +#: Gtk/SettingsDialog.vala:96 +msgid "Show notification bubble on desktop" +msgstr "Visa aviseringsruta på skrivbordet" + +#: Gtk/SettingsDialog.vala:107 +msgid "Show notification dialog" +msgstr "Visa aviseringsdialog" + +#: Console/AppConsole.vala:101 +#, fuzzy +msgid "Show unstable and RC releases" +msgstr "Dölj instabila- och RC-publiceringar" + +#: Gtk/SettingsDialog.vala:244 +#, fuzzy +msgid "Skip internet connection check" +msgstr "Internetuppkopplingen är inte aktiv" + +#: Gtk/MainWindow.vala:196 +msgid "Status" +msgstr "Status" + +#: Utility/TeeJee.Process.vala:512 +msgid "Stopped" +msgstr "Stoppad" + +#: Console/AppConsole.vala:86 Gtk/AppGtk.vala:179 +msgid "Syntax" +msgstr "Syntax" + +#: Console/AppConsole.vala:210 Gtk/AppGtk.vala:111 +msgid "Temp" +msgstr "" + +#: Utility/Gtk/AboutWindow.vala:330 +#, c-format +msgid "Third Party Tools" +msgstr "Tredjepartsverktyg" + +#: Common/LinuxKernel.vala:1272 Gtk/MainWindow.vala:678 +msgid "This kernel is already installed." +msgstr "Denna kärna är redan installerad" + +#: Common/LinuxKernel.vala:1380 +msgid "" +"This kernel is currently running and cannot be removed.\n" +" Install another kernel before removing this one." +msgstr "" +"Denna kärna används för tillfället och kan inte tas bort.\n" +"Installera en annan kärna innan du tar bort den här." + +#: Gtk/SettingsDialog.vala:223 +msgid "" +"Time (in seconds) to display the GRUB menu\n" +"\n" +"0 = Do not show menu\n" +"-1 = Show indefinitely till user selects" +msgstr "" +"Tid (i sekunder) att visa GRUB-menyn\n" +"\n" +"0 = Visa ingen meny\n" +"-1 = Visa oavbrutet tills användaren väljer" + +#: Utility/Gtk/AboutWindow.vala:346 +#, c-format +msgid "Translators" +msgstr "Översättare" + +#: Common/LinuxKernel.vala:1364 Common/LinuxKernel.vala:1422 +msgid "Un-install completed" +msgstr "Avinstallation slutförd" + +#: Common/LinuxKernel.vala:1367 Common/LinuxKernel.vala:1425 +msgid "Un-install completed with errors" +msgstr "Avinstallation slutförd med fel" + +#: Console/AppConsole.vala:202 Gtk/AppGtk.vala:166 +msgid "Unknown option" +msgstr "Okänt alternativ" + +#: Gtk/SettingsDialog.vala:210 +msgid "" +"Updates the GRUB menu after installing or removing kernels, so that the menu " +"is displayed for 2 seconds at boot time. This will help you recover from a " +"bad kernel update by selecting another kernel to boot. During boot, use the " +"'Advanced options for Ubuntu' menu entry to select another kernel.\n" +"\n" +"0 = Do not show menu\n" +"-1 = Show indefinitely till user selects" +msgstr "" +"Uppdaterar GRUB-menyn efter installation eller borttagning av kärnor, så att " +"menyn visas i 2 sekunder vid systemstart. Detta hjälper dig att återställa " +"från en dålig kärnuppdatering, genom att du kan välja en annan kärna att " +"starta med. Under uppstarten väljer du \"Avancerade alternativ...\" för att " +"välja en annan kärna.\n" +"\n" +"0 = Visa ingen meny\n" +"-1 = Visa menyn oavbrutet tills användaren väljer" + +#: Common/LinuxKernel.vala:1493 +msgid "Updating GRUB menu" +msgstr "Uppdaterar GRUB-menyn" + +#: Gtk/MainWindow.vala:179 +msgid "Version" +msgstr "Version" + +#: Utility/TeeJee.Logging.vala:89 +msgid "W" +msgstr "V" + +#: Gtk/SettingsDialog.vala:157 +msgid "Week(s)" +msgstr "Veckor" + +#: Utility/Gtk/CustomMessageDialog.vala:176 +msgid "Yes" +msgstr "Ja" + +#: Utility/AppLock.vala:56 +msgid "[Warning] Deleted invalid lock" +msgstr "[Varning] Tog bort ogiltigt lås" + +#: Gtk/SettingsDialog.vala:271 +msgid "seconds" +msgstr "" + +#~ msgid "Run 'ukuu --list' and use the version string listed in first column" +#~ msgstr "" +#~ "Kör \"ukuu --list\" och använd den versionssträng som listas i första " +#~ "kolumnen" + +#~ msgid "" +#~ "Did you find this software useful?\n" +#~ "\n" +#~ "You can buy me a coffee or make a donation via PayPal to show your " +#~ "support. Or just drop me an email and say Hi. This application is " +#~ "completely free and will continue to remain that way. Your contributions " +#~ "will help in keeping this project alive and improving it further.\n" +#~ "\n" +#~ "Feel free to send me an email if you find any issues in this application " +#~ "or if you need any changes. Suggestions and feedback are always welcome.\n" +#~ "\n" +#~ "Thanks,\n" +#~ "Tony George\n" +#~ "(teejeetech@gmail.com)" +#~ msgstr "" +#~ "Tycker du att detta program är användbart?\n" +#~ "\n" +#~ "Du kan bjuda mig på en kopp kaffe eller donera via PayPal för att visa " +#~ "ditt stöd. Eller bara skicka ett e-postmeddelande och säga Hej! " +#~ "Programmet är helt gratis och kommer att fortsätta vara så. Ditt bidrag " +#~ "hjälper mig att hålla projektet levande och att utveckla det vidare.\n" +#~ "\n" +#~ "Skicka gärna ett e-postmeddelande om du stöter på några problem med " +#~ "programmet eller behöver några ändringar. Förslag och återkoppling är " +#~ "alltid välkommet.\n" +#~ "\n" +#~ "Tack!\n" +#~ "Tony George\n" +#~ "(teejeetech@gmail.com)" + +#~ msgid "Display GRUB menu during boot" +#~ msgstr "Visa GRUB-menyn vid systemstart" + +#~ msgid "Donate" +#~ msgstr "Donera" + +#~ msgid "Donate with Google Wallet" +#~ msgstr "Donera med Google Wallet" + +#~ msgid "Donate with PayPal" +#~ msgstr "Donera med PayPal" + +#~ msgid "Donations" +#~ msgstr "Donationer" + +#~ msgid "File read" +#~ msgstr "Fil läst" + +#~ msgid "Notify if kernel update is available" +#~ msgstr "Meddela om en kärnuppdatering finns tillgänglig" + +#~ msgid "Send Email" +#~ msgstr "Skicka e-post" + +#~ msgid "Use specified user's cache directory" +#~ msgstr "Använd specificerad användares cache-mapp" + +#~ msgid "Using cache directory" +#~ msgstr "Använder cache-mapp" + +#~ msgid "Visit Website" +#~ msgstr "Besök hemsidan" + +#~ msgid "Open Ukuu" +#~ msgstr "Öppna Ukuu" + +#~ msgid "Cron job added" +#~ msgstr "Cron-jobb tillagt" + +#~ msgid "Cron job removed" +#~ msgstr "Cron-jobb borttaget" + +#~ msgid "Failed to add cron job" +#~ msgstr "Kunde inte lägga till Cron-jobb" + +#~ msgid "Failed to read cron tab" +#~ msgstr "Kunde inte läsa cron-fliken" + +#~ msgid "Failed to remove cron job" +#~ msgstr "Kunde inte ta bort cron-jobbet" + +#~ msgid "Fetching changelog for" +#~ msgstr "Hämtar ändringslogg för" + +#~ msgid "Open" +#~ msgstr "Öppna" + +#~ msgid "Root Access Required" +#~ msgstr "Root-åtkomst krävs" + +#~ msgid "Root access is required for running this application." +#~ msgstr "Root-åtkomst krävs för att använda det här programmet" diff --git a/po/ukuu-tr.po b/po/ukuu-tr.po index 0c957958..3ff20fc1 100644 --- a/po/ukuu-tr.po +++ b/po/ukuu-tr.po @@ -6,23 +6,23 @@ msgid "" msgstr "" "Project-Id-Version: ukuu\n" -"Report-Msgid-Bugs-To: teejeetech@gmail.com\n" -"POT-Creation-Date: 2018-03-24 21:00+0300\n" +"Report-Msgid-Bugs-To: bw.aljex@gmail.com\n" +"POT-Creation-Date: 2019-03-10 23:56-0400\n" "PO-Revision-Date: 2018-03-30 20:59+0300\n" +"Last-Translator: Gökhan Gökkaya \n" "Language-Team: Turkish\n" "Language: tr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Poedit 1.8.7.1\n" -"Last-Translator: Gökhan Gökkaya \n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: Gtk/MainWindow.vala:470 +#: Gtk/MainWindow.vala:496 msgid "About" msgstr "Hakkında" -#: Console/AppConsole.vala:103 +#: Console/AppConsole.vala:119 msgid "Admin access is required for running this application." msgstr "Bu uygulamayı çalıştırmak için yönetici izni gerekiyor." @@ -30,35 +30,48 @@ msgstr "Bu uygulamayı çalıştırmak için yönetici izni gerekiyor." msgid "Another instance of this application is running" msgstr "Bu uygulamanın başka bir örneği çalışıyor" -#: Utility/Gtk/AboutWindow.vala:348 +#: Common/LinuxKernel.vala:108 +#, fuzzy +msgid "Architecture" +msgstr "Sistem mimarisi" + +#: Utility/Gtk/AboutWindow.vala:338 #, c-format msgid "Artists" msgstr "Sanatçılar" -#: Utility/Gtk/AboutWindow.vala:324 +#: Console/AppConsole.vala:106 +msgid "Assume Yes for all prompts (non-interactive mode)" +msgstr "" + +#: Utility/Gtk/AboutWindow.vala:314 #, c-format msgid "Authors" msgstr "Yazar" -#: Common/LinuxKernel.vala:1036 +#: Common/LinuxKernel.vala:1184 msgid "Available Kernels" msgstr "Mevcut Çekirdekler" -#: Utility/Gtk/AboutWindow.vala:295 +#: Utility/Gtk/AboutWindow.vala:285 msgid "Back" msgstr "Geri" -#: Gtk/MainWindow.vala:785 +#: Gtk/MainWindow.vala:822 msgid "Booting previous kernels" msgstr "Önceki çekirdeklerin önyüklenmesi" +#: Console/AppConsole.vala:209 Gtk/AppGtk.vala:110 +msgid "Cache" +msgstr "" + +#: Gtk/ProgressWindow.vala:144 Gtk/TerminalWindow.vala:168 +#: Gtk/UpdateNotificationWindow.vala:167 #: Utility/Gtk/CustomMessageDialog.vala:172 Utility/Gtk/GtkHelper.vala:122 -#: Gtk/ProgressWindow.vala:138 Gtk/UpdateNotificationWindow.vala:167 -#: Gtk/TerminalWindow.vala:168 msgid "Cancel" msgstr "İptal" -#: Gtk/MainWindow.vala:426 +#: Gtk/MainWindow.vala:464 msgid "Changes" msgstr "Değişiklikler" @@ -66,33 +79,61 @@ msgstr "Değişiklikler" msgid "Check every" msgstr "Kontrol aralığı" -#: Console/AppConsole.vala:83 +#: Console/AppConsole.vala:90 msgid "Check for kernel updates" msgstr "Çekirdek güncellemelerini kontrol et" -#: Utility/Gtk/AboutWindow.vala:305 Gtk/TerminalWindow.vala:178 +#: Console/AppConsole.vala:91 +#, fuzzy +msgid "Check for kernel updates and notify current user" +msgstr "Çekirdek güncellemelerini kontrol et" + +#: Gtk/TerminalWindow.vala:178 Utility/Gtk/AboutWindow.vala:295 msgid "Close" msgstr "Kapat" -#: Common/Main.vala:101 +#: Console/AppConsole.vala:346 +msgid "Command not specified" +msgstr "" + +#: Console/AppConsole.vala:88 +msgid "Commands" +msgstr "" + +#: Common/Main.vala:106 msgid "Commands listed below are not available on this system" msgstr "Aşağıda listelenen komutlar bu sistemde mevcut değil" -#: Utility/Gtk/AboutWindow.vala:332 +#: Common/LinuxKernel.vala:740 +#, c-format +msgid "Continue ?" +msgstr "" + +#: Utility/Gtk/AboutWindow.vala:322 #, c-format msgid "Contributions" msgstr "Destek verenler" -#: Console/AppConsole.vala:213 Gtk/MainWindow.vala:103 +#: Common/LinuxKernel.vala:724 +#, fuzzy +msgid "Could not find any kernels to remove" +msgstr "Kaldırma için çekirdek seçin" + +#: Console/AppConsole.vala:314 Gtk/MainWindow.vala:100 msgid "Could not find requested version" msgstr "İstenen sürüm bulunamadı" +#: Common/LinuxKernel.vala:718 +#, fuzzy +msgid "Could not find running kernel in list!" +msgstr "İstenen sürüm bulunamadı" + #: Utility/TeeJee.FileSystem.vala:349 Utility/TeeJee.FileSystem.vala:352 #: Utility/TeeJee.FileSystem.vala:378 msgid "Created directory" msgstr "Dizin oluşturuldu" -#: Utility/Gtk/AboutWindow.vala:282 Utility/Gtk/AboutWindow.vala:299 +#: Utility/Gtk/AboutWindow.vala:272 Utility/Gtk/AboutWindow.vala:289 msgid "Credits" msgstr "Katkı sağlayanlar" @@ -104,37 +145,6 @@ msgstr "Gün" msgid "Deleted directory" msgstr "Silinen dizin" -#: Utility/Gtk/DonationWindow.vala:54 -msgid "" -"Did you find this software useful?\n" -"\n" -"You can buy me a coffee or make a donation via PayPal to show your support. " -"Or just drop me an email and say Hi. This application is completely free and " -"will continue to remain that way. Your contributions will help in keeping " -"this project alive and improving it further.\n" -"\n" -"Feel free to send me an email if you find any issues in this application or " -"if you need any changes. Suggestions and feedback are always welcome.\n" -"\n" -"Thanks,\n" -"Tony George\n" -"(teejeetech@gmail.com)" -msgstr "" -"Bu yazılımı faydalı buldunuz mu?\n" -"\n" -"Bana bir kahve ısmarlayabilir ya da PayPal ile bağışta bulunarak desteğinizi " -"gösterebilirsiniz. Ya da bana bir e posta bırakıp Merhaba (Hi) " -"diyebilirsiniz. Bu yazılım tamamen özgürdür ve öyle kalmaya devam edecktir. " -"Katkılarınız bu projeyi canlı tutmak ve daha da geliştirmek için yardımcı " -"olacaktır.\n" -"\n" -"Eğer bir sorun bulursanız veya bir değişikliğe ihtiyaç duyuyorsanız bana bir " -"e-posta göndermekten çekinmeyin. Öneri ve geribildirim her zaman açığız.\n" -"\n" -"Teşekkürler,\n" -"Tony George\n" -"(teejeetech@gmail.com)" - #: Utility/TeeJee.FileSystem.vala:509 msgid "Dir not found" msgstr "Dizin bulunamadı" @@ -143,41 +153,20 @@ msgstr "Dizin bulunamadı" msgid "Display" msgstr "Gösterim" -#: Gtk/SettingsDialog.vala:203 -msgid "Display GRUB menu during boot" -msgstr "Açılış sırasında GRUB menüsü gösterimi" - -#: Common/LinuxKernel.vala:89 +#: Common/LinuxKernel.vala:94 msgid "Distribution" msgstr "Dağıtım" -#: Utility/Gtk/AboutWindow.vala:364 +#: Utility/Gtk/AboutWindow.vala:354 #, c-format msgid "Documenters" msgstr "Belgelendirenler" -#: Utility/Gtk/DonationWindow.vala:36 Gtk/MainWindow.vala:458 -msgid "Donate" -msgstr "Bağış" - -#: Utility/Gtk/DonationWindow.vala:74 -msgid "Donate with Google Wallet" -msgstr "Google Wallet ile bağış" - -#: Utility/Gtk/DonationWindow.vala:67 -msgid "Donate with PayPal" -msgstr "Paypal ile bağış" - -#: Utility/Gtk/AboutWindow.vala:372 -#, c-format -msgid "Donations" -msgstr "Bağışlar" - -#: Console/AppConsole.vala:88 +#: Console/AppConsole.vala:99 msgid "Download packages for specified kernel" msgstr "Belirtilen çekirdek için paketleri indir" -#: Common/LinuxKernel.vala:1081 +#: Common/LinuxKernel.vala:1230 #, c-format msgid "Downloading" msgstr "İndiriliyor" @@ -186,7 +175,7 @@ msgstr "İndiriliyor" msgid "E" msgstr "H" -#: Common/LinuxKernel.vala:1108 +#: Common/LinuxKernel.vala:1258 #, c-format msgid "ERROR" msgstr "HATA" @@ -219,10 +208,14 @@ msgstr "Dosya okuma başarısız" msgid "Failed to write file" msgstr "Dosya yazma başarısız" -#: Common/LinuxKernel.vala:385 +#: Common/LinuxKernel.vala:399 msgid "Fetching index from kernel.ubuntu.com..." msgstr "kernel.ubuntu.com alanından içerik listesi alınıyor ..." +#: Common/LinuxKernel.vala:356 +msgid "Fetching index..." +msgstr "" + #: Utility/TeeJee.FileSystem.vala:210 Utility/TeeJee.FileSystem.vala:213 msgid "File copied" msgstr "Dosya kopyalandı" @@ -239,8 +232,7 @@ msgstr "Dosya eksik" msgid "File moved" msgstr "Dosya taşındı" -#: Common/LinuxKernel.vala:943 Utility/TeeJee.FileSystem.vala:231 -#: Utility/TeeJee.FileSystem.vala:538 +#: Utility/TeeJee.FileSystem.vala:231 Utility/TeeJee.FileSystem.vala:538 msgid "File not found" msgstr "Dosya bulunamadı" @@ -249,14 +241,15 @@ msgstr "Dosya bulunamadı" msgid "File not found: %s" msgstr "Şu dosya bulunamadı: %s" -#: Utility/TeeJee.FileSystem.vala:152 Utility/TeeJee.FileSystem.vala:155 -msgid "File read" -msgstr "Dosya okundu" - #: Utility/TeeJee.FileSystem.vala:187 Utility/TeeJee.FileSystem.vala:190 msgid "File saved" msgstr "Dosya kaydedildi" +#: Common/LinuxKernel.vala:733 +#, c-format +msgid "Following kernels will be removed" +msgstr "" + #: Gtk/SettingsDialog.vala:192 msgid "GRUB Options" msgstr "GRUB seçenekleri" @@ -277,19 +270,33 @@ msgstr "Saat" msgid "Ignore this update" msgstr "Bu güncellemeyi yoksay" -#: Common/LinuxKernel.vala:254 +#: Common/LinuxKernel.vala:262 msgid "Index is fresh" msgstr "İçerik listesi güncel" -#: Common/LinuxKernel.vala:251 +#: Common/LinuxKernel.vala:259 msgid "Index is stale" msgstr "İçerik listesi eski" -#: Gtk/MainWindow.vala:360 Gtk/UpdateNotificationWindow.vala:147 +#: Gtk/MainWindow.vala:359 Gtk/UpdateNotificationWindow.vala:147 msgid "Install" msgstr "Kur" -#: Console/AppConsole.vala:86 +#: Common/LinuxKernel.vala:797 +#, c-format +msgid "Install Linux v%s ? (y/n): " +msgstr "" + +#: Console/AppConsole.vala:94 +#, fuzzy +msgid "Install latest mainline kernel" +msgstr "Belirtilen mainline çekirdeğini kur" + +#: Console/AppConsole.vala:95 +msgid "Install latest point update for current series" +msgstr "" + +#: Console/AppConsole.vala:96 msgid "Install specified mainline kernel" msgstr "Belirtilen mainline çekirdeğini kur" @@ -297,33 +304,48 @@ msgstr "Belirtilen mainline çekirdeğini kur" msgid "Install this kernel" msgstr "Bu çekirdeği kur" -#: Common/LinuxKernel.vala:1156 +#: Common/LinuxKernel.vala:1306 msgid "Installation completed with errors" msgstr "Kurulum hatalarla tamamlandı" -#: Common/LinuxKernel.vala:1153 +#: Common/LinuxKernel.vala:1303 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "Kurulum tamamlandı. Yeni çekirdeği kullanmak için yeniden başlatma gerekiyor." -#: Common/LinuxKernel.vala:1053 Gtk/MainWindow.vala:211 +#: Common/LinuxKernel.vala:1201 Gtk/MainWindow.vala:208 msgid "Installed" msgstr "Kurulu" -#: Utility/TeeJee.System.vala:275 Gtk/MainWindow.vala:84 -#: Gtk/MainWindow.vala:351 Gtk/MainWindow.vala:646 +#: Gtk/SettingsDialog.vala:257 +#, fuzzy +msgid "Internect connection timeout in " +msgstr "İnternet bağlantısı aktif değil" + +#: Gtk/MainWindow.vala:350 Gtk/MainWindow.vala:547 Gtk/MainWindow.vala:683 +#: Utility/TeeJee.System.vala:292 msgid "Internet connection is not active" msgstr "İnternet bağlantısı aktif değil" -#: Gtk/MainWindow.vala:153 +#: Gtk/MainWindow.vala:150 msgid "Kernel" msgstr "Çekirdek" -#: Gtk/MainWindow.vala:501 +#: Gtk/MainWindow.vala:531 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Ubuntu tabanlı dağıtımlar için çekirdek güncelleme aracı" -#: Console/AppConsole.vala:85 +#: Common/LinuxKernel.vala:779 Console/AppConsole.vala:372 +#, c-format +msgid "Latest point update" +msgstr "" + +#: Common/LinuxKernel.vala:768 Console/AppConsole.vala:365 +#, c-format +msgid "Latest update" +msgstr "" + +#: Console/AppConsole.vala:92 msgid "List all available mainline kernels" msgstr "Tüm mainline çekirdeklerini listele" @@ -331,23 +353,28 @@ msgstr "Tüm mainline çekirdeklerini listele" msgid "List available kernels" msgstr "Tüm çekirdekleri listele" -#: Gtk/MainWindow.vala:786 +#: Console/AppConsole.vala:93 +#, fuzzy +msgid "List installed kernels" +msgstr "Tüm çekirdekleri listele" + +#: Gtk/MainWindow.vala:823 +#, fuzzy msgid "" "Mainline kernels can sometimes cause problems if there are proprietary " "drivers installed on your system. These issues include:\n" "\n" -"\\342\\226\\260 WiFi not working\n" -"\\342\\226\\260 Black screen on startup\n" -"\\342\\226\\260 Random system freeze\n" +"▰ WiFi not working\n" +"▰ Black screen on startup\n" +"▰ Random system freeze\n" "\n" "If you face any of these issues there is no need to panic.\n" "\n" -"\\342\\226\\260 Reboot your system\n" -"\\342\\226\\260 Select 'Advanced Boot Options' from the GRUB boot menu\n" -"\\342\\226\\260 Select an older kernel from the list displayed on this " -"screen\n" -"\\342\\226\\260 Your system will boot using the selected kernel\n" -"\\342\\226\\260 You can now uninstall the kernel that is causing issues\n" +"▰ Reboot your system\n" +"▰ Select 'Advanced Boot Options' from the GRUB boot menu\n" +"▰ Select an older kernel from the list displayed on this screen\n" +"▰ Your system will boot using the selected kernel\n" +"▰ You can now uninstall the kernel that is causing issues\n" msgstr "" "Eğer sisteminizde sahipli/tescilli sürücüler kurulu ise, mainline " "çekirdekleri bazen sorunlara neden olabilir. Bunlar arasında aşağıdakiler " @@ -370,11 +397,11 @@ msgstr "" msgid "Missing Icon" msgstr "Eksik Simge" -#: Gtk/MainWindow.vala:369 +#: Gtk/MainWindow.vala:368 msgid "Multiple Kernels Selected" msgstr "Çoklu Çekirdek Seçildi" -#: Console/AppConsole.vala:195 +#: Console/AppConsole.vala:296 msgid "Multiple kernels selected for installation. Select only one." msgstr "Kurulum için çoklu çekirdek seçildi. Sadece bir tane seçiniz." @@ -382,15 +409,20 @@ msgstr "Kurulum için çoklu çekirdek seçildi. Sadece bir tane seçiniz." msgid "No" msgstr "Hayır" -#: Gtk/MainWindow.vala:84 Gtk/MainWindow.vala:351 Gtk/MainWindow.vala:646 +#: Gtk/MainWindow.vala:350 Gtk/MainWindow.vala:547 Gtk/MainWindow.vala:683 msgid "No Internet" msgstr "İnternet Yok" -#: Console/AppConsole.vala:349 Gtk/MainWindow.vala:780 +#: Console/AppConsole.vala:290 Console/AppConsole.vala:327 +msgid "No kernels specified" +msgstr "" + +#: Common/LinuxKernel.vala:787 Console/AppConsole.vala:377 +#: Console/AppConsole.vala:457 Gtk/MainWindow.vala:817 msgid "No updates found" msgstr "Güncelleme bulunamadı" -#: Gtk/MainWindow.vala:372 Gtk/MainWindow.vala:383 +#: Gtk/MainWindow.vala:371 Gtk/MainWindow.vala:382 msgid "Not Selected" msgstr "Seçilen Yok" @@ -406,36 +438,35 @@ msgstr "Ana sürüm mevcutsa bildir" msgid "Notify if a point release is available" msgstr "Ara sürüm mevcutsa bildir" -#: Console/AppConsole.vala:84 -msgid "Notify if kernel update is available" -msgstr "Çekirdek güncellemesi mevcutsa bildir" - -#: Common/LinuxKernel.vala:1099 Utility/Gtk/CustomMessageDialog.vala:167 +#: Common/LinuxKernel.vala:1249 Utility/Gtk/CustomMessageDialog.vala:167 #: Utility/Gtk/CustomMessageDialog.vala:171 Utility/Gtk/GtkHelper.vala:121 -#: Utility/Gtk/DonationWindow.vala:95 #, c-format msgid "OK" msgstr "TAMAM" -#: Console/AppConsole.vala:81 Gtk/AppGtk.vala:181 +#: Console/AppConsole.vala:103 Gtk/AppGtk.vala:181 msgid "Options" msgstr "Seçenekler" -#: Common/LinuxKernel.vala:922 +#: Gtk/SettingsDialog.vala:236 +msgid "Other" +msgstr "" + +#: Common/LinuxKernel.vala:1063 #, c-format msgid "Packages Available (DEB)" msgstr "Mevcut Paketler (DEB)" -#: Common/LinuxKernel.vala:930 +#: Common/LinuxKernel.vala:1071 #, c-format msgid "Packages Installed" msgstr "Paketler Kuruldu" -#: Common/Main.vala:102 +#: Common/Main.vala:107 msgid "Please install required packages and try again" msgstr "Lütfen gerekli paketleri yükleyin ve tekrar deneyin" -#: Common/LinuxKernel.vala:1177 +#: Common/LinuxKernel.vala:1327 msgid "Preparing to remove selected kernels" msgstr "Seçilen çekirdekleri kaldırmak için hazırlanıyor" @@ -443,53 +474,61 @@ msgstr "Seçilen çekirdekleri kaldırmak için hazırlanıyor" msgid "Print debug information" msgstr "Hata ayıklama bilgisini yazdır" -#: Gtk/MainWindow.vala:344 +#: Gtk/MainWindow.vala:425 +msgid "Purge" +msgstr "" + +#: Gtk/MainWindow.vala:343 msgid "Refresh" msgstr "Yenile" -#: Gtk/MainWindow.vala:531 +#: Gtk/MainWindow.vala:566 msgid "Refreshing..." msgstr "Yenileniyor..." -#: Gtk/MainWindow.vala:377 +#: Gtk/MainWindow.vala:376 msgid "Remove" msgstr "Kaldır" -#: Console/AppConsole.vala:90 +#: Console/AppConsole.vala:100 Console/AppConsole.vala:105 msgid "Remove files from application cache" msgstr "Dosyaları uygulama önbelleğinden sil" -#: Console/AppConsole.vala:87 -msgid "Remove specified mainline kernel" +#: Console/AppConsole.vala:98 Gtk/MainWindow.vala:426 +msgid "Remove installed kernels older than running kernel" +msgstr "" + +#: Console/AppConsole.vala:97 +#, fuzzy +msgid "Remove specified kernel" msgstr "Belirtilen mainline çekirdeğini kaldır" -#: Console/AppConsole.vala:217 -msgid "Run 'ukuu --list' and use the version string listed in first column" +#: Console/AppConsole.vala:204 Console/AppConsole.vala:318 +#: Console/AppConsole.vala:347 +msgid "Run '" msgstr "" -"'ukuu --list' komutunu çalıştırın ve ilk sütunda listelenen sürüm dizesini " -"kullanın" -#: Console/AppConsole.vala:106 +#: Console/AppConsole.vala:122 msgid "Run the application as admin with pkexec or sudo." msgstr "Bu uygulamayı pkexec yada sudo ile yönetici haklarıyla çalıştırın." -#: Common/LinuxKernel.vala:1053 Gtk/MainWindow.vala:211 +#: Common/LinuxKernel.vala:1201 Gtk/MainWindow.vala:208 msgid "Running" msgstr "Çalışıyor" -#: Gtk/MainWindow.vala:369 +#: Gtk/MainWindow.vala:368 msgid "Select a single kernel to install" msgstr "Kurulum için tek çekirdek seçin" -#: Gtk/MainWindow.vala:372 +#: Gtk/MainWindow.vala:371 msgid "Select the kernel to install" msgstr "Kurulum için çekirdek seçin" -#: Gtk/MainWindow.vala:383 +#: Gtk/MainWindow.vala:382 msgid "Select the kernels to remove" msgstr "Kaldırma için çekirdek seçin" -#: Common/LinuxKernel.vala:1172 +#: Common/LinuxKernel.vala:1322 msgid "" "Selected kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -497,11 +536,11 @@ msgstr "" "Seçilen çekirdek şu anda çalışıyor ve kaldırılamıyor.\n" " Bunu kaldırmadan önce başka bir çekirdek yükleyin." -#: Utility/Gtk/DonationWindow.vala:81 -msgid "Send Email" -msgstr "E Posta Gönder" +#: Gtk/SettingsDialog.vala:203 +msgid "Set GRUB menu timeout" +msgstr "" -#: Gtk/SettingsDialog.vala:57 Gtk/MainWindow.vala:437 +#: Gtk/MainWindow.vala:475 Gtk/SettingsDialog.vala:57 msgid "Settings" msgstr "Ayarlar" @@ -521,32 +560,42 @@ msgstr "Masaüstünde bildirim baloncuğu göster" msgid "Show notification dialog" msgstr "Bildirim iletişimini göster" -#: Gtk/MainWindow.vala:199 +#: Console/AppConsole.vala:101 +#, fuzzy +msgid "Show unstable and RC releases" +msgstr "Kararsız ve RC sürümleri gizle" + +#: Gtk/SettingsDialog.vala:244 +#, fuzzy +msgid "Skip internet connection check" +msgstr "İnternet bağlantısı aktif değil" + +#: Gtk/MainWindow.vala:196 msgid "Status" msgstr "Durum" -#: Utility/TeeJee.Process.vala:511 +#: Utility/TeeJee.Process.vala:512 msgid "Stopped" msgstr "Durduruldu" -#: Console/AppConsole.vala:79 Gtk/AppGtk.vala:179 +#: Console/AppConsole.vala:86 Gtk/AppGtk.vala:179 msgid "Syntax" msgstr "Sözdizimi" -#: Common/LinuxKernel.vala:103 -msgid "System architecture" -msgstr "Sistem mimarisi" +#: Console/AppConsole.vala:210 Gtk/AppGtk.vala:111 +msgid "Temp" +msgstr "" -#: Utility/Gtk/AboutWindow.vala:340 +#: Utility/Gtk/AboutWindow.vala:330 #, c-format msgid "Third Party Tools" msgstr "Üçüncü Parti Araçlar" -#: Common/LinuxKernel.vala:1122 Gtk/MainWindow.vala:641 +#: Common/LinuxKernel.vala:1272 Gtk/MainWindow.vala:678 msgid "This kernel is already installed." msgstr "Bu çekirdek zaten kurulu." -#: Common/LinuxKernel.vala:1230 +#: Common/LinuxKernel.vala:1380 msgid "" "This kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -566,20 +615,20 @@ msgstr "" "0 = Menüyü gösterme\n" "-1 = Kullanıcı seçimine kadar süresiz göster" -#: Utility/Gtk/AboutWindow.vala:356 +#: Utility/Gtk/AboutWindow.vala:346 #, c-format msgid "Translators" msgstr "Çevirenler" -#: Common/LinuxKernel.vala:1214 Common/LinuxKernel.vala:1272 +#: Common/LinuxKernel.vala:1364 Common/LinuxKernel.vala:1422 msgid "Un-install completed" msgstr "Kaldırma tamamlandı" -#: Common/LinuxKernel.vala:1217 Common/LinuxKernel.vala:1275 +#: Common/LinuxKernel.vala:1367 Common/LinuxKernel.vala:1425 msgid "Un-install completed with errors" msgstr "Kaldırma hatalarla tamamlandı" -#: Console/AppConsole.vala:270 Gtk/AppGtk.vala:166 +#: Console/AppConsole.vala:202 Gtk/AppGtk.vala:166 msgid "Unknown option" msgstr "Bilinmeyen seçenek" @@ -602,26 +651,14 @@ msgstr "" "0 = Menüyü gösterme\n" "-1 = Kullanıcı seçimine kadar süresiz göster" -#: Common/LinuxKernel.vala:1343 +#: Common/LinuxKernel.vala:1493 msgid "Updating GRUB menu" msgstr "GRUB menüsü güncelleniyor" -#: Console/AppConsole.vala:89 -msgid "Use specified user's cache directory" -msgstr "Kullanıcının belirlediği önbellek dizinini kullan" - -#: Console/AppConsole.vala:144 Gtk/AppGtk.vala:109 -msgid "Using cache directory" -msgstr "Önbellek dizini kullanımı" - -#: Gtk/MainWindow.vala:182 +#: Gtk/MainWindow.vala:179 msgid "Version" msgstr "Sürüm" -#: Utility/Gtk/DonationWindow.vala:88 -msgid "Visit Website" -msgstr "Websitesini Ziyaret Et" - #: Utility/TeeJee.Logging.vala:89 msgid "W" msgstr "U" @@ -637,3 +674,76 @@ msgstr "Evet" #: Utility/AppLock.vala:56 msgid "[Warning] Deleted invalid lock" msgstr "[Uyarı] Geçersiz kilit silindi" + +#: Gtk/SettingsDialog.vala:271 +msgid "seconds" +msgstr "" + +#~ msgid "Run 'ukuu --list' and use the version string listed in first column" +#~ msgstr "" +#~ "'ukuu --list' komutunu çalıştırın ve ilk sütunda listelenen sürüm " +#~ "dizesini kullanın" + +#~ msgid "" +#~ "Did you find this software useful?\n" +#~ "\n" +#~ "You can buy me a coffee or make a donation via PayPal to show your " +#~ "support. Or just drop me an email and say Hi. This application is " +#~ "completely free and will continue to remain that way. Your contributions " +#~ "will help in keeping this project alive and improving it further.\n" +#~ "\n" +#~ "Feel free to send me an email if you find any issues in this application " +#~ "or if you need any changes. Suggestions and feedback are always welcome.\n" +#~ "\n" +#~ "Thanks,\n" +#~ "Tony George\n" +#~ "(teejeetech@gmail.com)" +#~ msgstr "" +#~ "Bu yazılımı faydalı buldunuz mu?\n" +#~ "\n" +#~ "Bana bir kahve ısmarlayabilir ya da PayPal ile bağışta bulunarak " +#~ "desteğinizi gösterebilirsiniz. Ya da bana bir e posta bırakıp Merhaba " +#~ "(Hi) diyebilirsiniz. Bu yazılım tamamen özgürdür ve öyle kalmaya devam " +#~ "edecktir. Katkılarınız bu projeyi canlı tutmak ve daha da geliştirmek " +#~ "için yardımcı olacaktır.\n" +#~ "\n" +#~ "Eğer bir sorun bulursanız veya bir değişikliğe ihtiyaç duyuyorsanız bana " +#~ "bir e-posta göndermekten çekinmeyin. Öneri ve geribildirim her zaman " +#~ "açığız.\n" +#~ "\n" +#~ "Teşekkürler,\n" +#~ "Tony George\n" +#~ "(teejeetech@gmail.com)" + +#~ msgid "Display GRUB menu during boot" +#~ msgstr "Açılış sırasında GRUB menüsü gösterimi" + +#~ msgid "Donate" +#~ msgstr "Bağış" + +#~ msgid "Donate with Google Wallet" +#~ msgstr "Google Wallet ile bağış" + +#~ msgid "Donate with PayPal" +#~ msgstr "Paypal ile bağış" + +#~ msgid "Donations" +#~ msgstr "Bağışlar" + +#~ msgid "File read" +#~ msgstr "Dosya okundu" + +#~ msgid "Notify if kernel update is available" +#~ msgstr "Çekirdek güncellemesi mevcutsa bildir" + +#~ msgid "Send Email" +#~ msgstr "E Posta Gönder" + +#~ msgid "Use specified user's cache directory" +#~ msgstr "Kullanıcının belirlediği önbellek dizinini kullan" + +#~ msgid "Using cache directory" +#~ msgstr "Önbellek dizini kullanımı" + +#~ msgid "Visit Website" +#~ msgstr "Websitesini Ziyaret Et" diff --git a/src/Common/LinuxKernel.vala b/src/Common/LinuxKernel.vala index 9ef1e7c4..e8d9e88b 100644 --- a/src/Common/LinuxKernel.vala +++ b/src/Common/LinuxKernel.vala @@ -38,7 +38,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { // static public static string URI_KERNEL_UBUNTU_MAINLINE = "http://kernel.ubuntu.com/~kernel-ppa/mainline/"; - public static string CACHE_DIR = "/var/cache/ukuu"; + public static string CACHE_DIR = "/var/cache/" + BRANDING_SHORTNAME; public static string NATIVE_ARCH; public static string LINUX_DISTRO; public static string RUNNING_KERNEL; @@ -1146,6 +1146,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { deb_list = list; } +/* private void get_package_version(){ if (NATIVE_ARCH.length == 0){ @@ -1172,7 +1173,8 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { } } } - +*/ + // actions public static void print_list(){ diff --git a/src/Common/Main.vala b/src/Common/Main.vala index 40400b75..85adf7aa 100644 --- a/src/Common/Main.vala +++ b/src/Common/Main.vala @@ -67,9 +67,6 @@ public class Main : GLib.Object{ public int notify_interval_value = 2; public bool skip_connection_check = false; public int connection_timeout_seconds = 15; - - public bool message_shown = false; - public bool confirm = true; // constructors ------------ @@ -128,11 +125,11 @@ public class Main : GLib.Object{ user_home = get_user_home(user_login); // app config files - APP_CONFIG_FILE = user_home + "/.config/ukuu.json"; - STARTUP_SCRIPT_FILE = user_home + "/.config/ukuu-notify.sh"; - STARTUP_DESKTOP_FILE = user_home + "/.config/autostart/ukuu.desktop"; + APP_CONFIG_FILE = user_home + "/.config/" + BRANDING_SHORTNAME + ".json"; + STARTUP_SCRIPT_FILE = user_home + "/.config/" + BRANDING_SHORTNAME + "-notify.sh"; + STARTUP_DESKTOP_FILE = user_home + "/.config/autostart/" + BRANDING_SHORTNAME + ".desktop"; - LinuxKernel.CACHE_DIR = user_home + "/.cache/ukuu"; + LinuxKernel.CACHE_DIR = user_home + "/.cache/" + BRANDING_SHORTNAME; LinuxKernel.CURRENT_USER = user_login; LinuxKernel.CURRENT_USER_HOME = user_home; } @@ -154,9 +151,6 @@ public class Main : GLib.Object{ config.set_string_member("connection_timeout_seconds", connection_timeout_seconds.to_string()); config.set_string_member("skip_connection_check", skip_connection_check.to_string()); - config.set_string_member("message_shown", message_shown.to_string()); - - var json = new Json.Generator(); json.pretty = true; json.indent = 2; @@ -222,8 +216,6 @@ public class Main : GLib.Object{ LinuxKernel.grub_timeout = json_get_int(config, "grub_timeout", 2); LinuxKernel.update_grub_timeout = json_get_bool(config, "update_grub_timeout", false); - message_shown = json_get_bool(config, "message_shown", false); - log_debug("Load config file: %s".printf(APP_CONFIG_FILE)); } @@ -260,7 +252,7 @@ public class Main : GLib.Object{ txt += "sleep %ds\n".printf(startup_delay); txt += "while true\n"; txt += "do\n"; - txt += " ukuu --notify ; sleep %d%s \n".printf(count, suffix); + txt += " "+BRANDING_SHORTNAME+" --notify ; sleep %d%s \n".printf(count, suffix); txt += "done\n"; if (file_exists(STARTUP_SCRIPT_FILE)){ @@ -322,7 +314,7 @@ Comment=Ukuu Notification update_startup_script(); - process_quit_by_name("sh", "ukuu-notify.sh", false); + process_quit_by_name("sh", BRANDING_SHORTNAME+" -notify.sh", false); // don't start script again } diff --git a/src/Common/Package.vala b/src/Common/Package.vala index 923695ae..9d58b8a9 100644 --- a/src/Common/Package.vala +++ b/src/Common/Package.vala @@ -88,7 +88,7 @@ public class Package : GLib.Object { // get installed packages from aptitude -------------- string std_out, std_err; - int status = exec_sync("aptitude search --disable-columns -F '%p|%v|%M|%d' '?installed'", out std_out, out std_err); + exec_sync("aptitude search --disable-columns -F '%p|%v|%M|%d' '?installed'", out std_out, out std_err); file_write(temp_file, std_out); // parse ------------------------ @@ -150,7 +150,7 @@ public class Package : GLib.Object { string std_out, std_err; string cmd = "aptitude search --disable-columns -F '%%p|%%v|%%M|%%d' '!installed ?architecture(native) %s'".printf(search_string); - int status = exec_sync(cmd, out std_out, out std_err); + exec_sync(cmd, out std_out, out std_err); file_write(temp_file, std_out); // parse ------------------------ diff --git a/src/Console/AppConsole.vala b/src/Console/AppConsole.vala index eaa10452..41b40d39 100644 --- a/src/Console/AppConsole.vala +++ b/src/Console/AppConsole.vala @@ -34,13 +34,12 @@ using TeeJee.System; using TeeJee.Misc; public Main App; -public const string AppName = "Ubuntu Kernel Update Utility"; -public const string AppShortName = "ukuu"; -public const string AppVersion = "18.9.3"; -public const string AppAuthor = "Tony George"; -public const string AppAuthorEmail = "teejeetech@gmail.com"; +[CCode(cname="BRANDING_SHORTNAME")] extern const string BRANDING_SHORTNAME; +[CCode(cname="BRANDING_LONGNAME")] extern const string BRANDING_LONGNAME; +[CCode(cname="BRANDING_VERSION")] extern const string BRANDING_VERSION; +[CCode(cname="BRANDING_AUTHORNAME")] extern const string BRANDING_AUTHORNAME; +[CCode(cname="BRANDING_AUTHOREMAIL")] extern const string BRANDING_AUTHOREMAIL; -const string GETTEXT_PACKAGE = ""; const string LOCALE_DIR = "/usr/share/locale"; public class AppConsole : GLib.Object { @@ -49,9 +48,9 @@ public class AppConsole : GLib.Object { set_locale(); - log_msg("%s v%s".printf(AppShortName, AppVersion)); + log_msg("%s v%s".printf(BRANDING_SHORTNAME, BRANDING_VERSION)); - init_tmp("ukuu"); + init_tmp(BRANDING_SHORTNAME); //check_if_admin(); @@ -74,17 +73,17 @@ public class AppConsole : GLib.Object { } private static void set_locale() { - Intl.setlocale(GLib.LocaleCategory.MESSAGES, "ukuu"); - Intl.textdomain(GETTEXT_PACKAGE); - Intl.bind_textdomain_codeset(GETTEXT_PACKAGE, "utf-8"); - Intl.bindtextdomain(GETTEXT_PACKAGE, LOCALE_DIR); + Intl.setlocale(GLib.LocaleCategory.MESSAGES, "%s".printf(BRANDING_SHORTNAME)); + Intl.textdomain(BRANDING_SHORTNAME); + Intl.bind_textdomain_codeset(BRANDING_SHORTNAME, "utf-8"); + Intl.bindtextdomain(BRANDING_SHORTNAME, LOCALE_DIR); } private static string help_message() { - string msg = "\n" + AppName + " v" + AppVersion + " by Tony George (teejeetech@gmail.com)" + "\n"; + string msg = "\n" + BRANDING_LONGNAME + " v" + BRANDING_VERSION + " by " + BRANDING_AUTHORNAME + " (" + BRANDING_AUTHOREMAIL + ")\n"; msg += "\n"; - msg += _("Syntax") + ": ukuu [options]\n"; + msg += _("Syntax") + ": " + BRANDING_SHORTNAME + " [options]\n"; msg += "\n"; msg += _("Commands") + ":\n"; msg += "\n"; @@ -129,7 +128,7 @@ public class AppConsole : GLib.Object { public bool parse_arguments(string[] args) { - string txt = "ukuu "; + string txt = BRANDING_SHORTNAME + " "; for (int k = 1; k < args.length; k++) { txt += "'%s' ".printf(args[k]); } @@ -201,7 +200,8 @@ public class AppConsole : GLib.Object { default: // unknown option log_error(_("Unknown option") + ": %s".printf(args[k])); - log_error(_("Run 'ukuu --help' to list all options")); + // FIXME use argv[0] instead of hardcoded app name + log_error(_("Run '"+BRANDING_SHORTNAME+" --help' to list all options")); return false; } } @@ -315,7 +315,7 @@ public class AppConsole : GLib.Object { msg += ": %s".printf(requested_version); log_error(msg); - log_error(_("Run 'ukuu --list' and use the version string listed in first column")); + log_error(_("Run '"+BRANDING_SHORTNAME+" --list' and use the version string listed in first column")); exit(1); } @@ -344,7 +344,7 @@ public class AppConsole : GLib.Object { default: // unknown option log_error(_("Command not specified")); - log_error(_("Run 'ukuu --help' to list all commands")); + log_error(_("Run '"+BRANDING_SHORTNAME+" --help' to list all commands")); break; } @@ -403,7 +403,7 @@ public class AppConsole : GLib.Object { log_msg(message); if (App.notify_dialog){ - exec_script_async("ukuu-gtk --notify"); + exec_script_async(BRANDING_SHORTNAME+"-gtk --notify"); exit(0); } @@ -425,7 +425,7 @@ public class AppConsole : GLib.Object { log_msg(message); if (App.notify_dialog){ - exec_script_async("ukuu-gtk --notify"); + exec_script_async(BRANDING_SHORTNAME+"-gtk --notify"); exit(0); } @@ -445,7 +445,7 @@ public class AppConsole : GLib.Object { if (App.notify_dialog){ var win = new UpdateNotificationWindow( - AppName, + BRANDING_LONGNAME, "%s\n\n%s".printf(title, message), null); diff --git a/src/Gtk/AppGtk.vala b/src/Gtk/AppGtk.vala index b8eb8819..df583f98 100644 --- a/src/Gtk/AppGtk.vala +++ b/src/Gtk/AppGtk.vala @@ -17,8 +17,6 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, * MA 02110-1301, USA. - * - * */ using GLib; @@ -35,13 +33,15 @@ using TeeJee.System; using TeeJee.Misc; public Main App; -public const string AppName = "Ubuntu Kernel Update Utility"; -public const string AppShortName = "ukuu"; -public const string AppVersion = "18.9.3"; -public const string AppAuthor = "Tony George"; -public const string AppAuthorEmail = "teejeetech@gmail.com"; -const string GETTEXT_PACKAGE = ""; +[CCode(cname="BRANDING_SHORTNAME")] extern const string BRANDING_SHORTNAME; +[CCode(cname="BRANDING_LONGNAME")] extern const string BRANDING_LONGNAME; +[CCode(cname="BRANDING_VERSION")] extern const string BRANDING_VERSION; +[CCode(cname="BRANDING_AUTHORNAME")] extern const string BRANDING_AUTHORNAME; +[CCode(cname="BRANDING_AUTHOREMAIL")] extern const string BRANDING_AUTHOREMAIL; +[CCode(cname="BRANDING_WEBSITE")] extern const string BRANDING_WEBSITE; +public const string ICON_DIR = BRANDING_SHORTNAME; + const string LOCALE_DIR = "/usr/share/locale"; public class AppGtk : GLib.Object { @@ -50,11 +50,11 @@ public class AppGtk : GLib.Object { set_locale(); - log_msg("%s v%s".printf(AppShortName, AppVersion)); + log_msg("%s v%s".printf(BRANDING_SHORTNAME, BRANDING_VERSION)); Gtk.init(ref args); - init_tmp("ukuu-gtk"); + init_tmp(BRANDING_SHORTNAME+"-gtk"); //check_if_admin(); @@ -99,11 +99,10 @@ public class AppGtk : GLib.Object { } private static void set_locale() { - - Intl.setlocale(GLib.LocaleCategory.MESSAGES, "ukuu"); - Intl.textdomain(GETTEXT_PACKAGE); - Intl.bind_textdomain_codeset(GETTEXT_PACKAGE, "utf-8"); - Intl.bindtextdomain(GETTEXT_PACKAGE, LOCALE_DIR); + Intl.setlocale(GLib.LocaleCategory.MESSAGES, BRANDING_SHORTNAME); + Intl.textdomain(BRANDING_SHORTNAME); + Intl.bind_textdomain_codeset(BRANDING_SHORTNAME, "utf-8"); + Intl.bindtextdomain(BRANDING_SHORTNAME, LOCALE_DIR); } public static bool parse_arguments(string[] args) { @@ -175,9 +174,9 @@ public class AppGtk : GLib.Object { public static string help_message() { - string msg = "\n" + AppName + " v" + AppVersion + " by Tony George (teejeetech@gmail.com)" + "\n"; + string msg = "\n" + BRANDING_LONGNAME + " v" + BRANDING_VERSION + " by " + BRANDING_AUTHORNAME + " (" + BRANDING_AUTHOREMAIL + ")\n"; msg += "\n"; - msg += _("Syntax") + ": ukuu-gtk [options]\n"; + msg += _("Syntax") + ": " + BRANDING_SHORTNAME + "-gtk [options]\n"; msg += "\n"; msg += _("Options") + ":\n"; msg += "\n"; diff --git a/src/Gtk/MainWindow.vala b/src/Gtk/MainWindow.vala index f7cb4a49..e66d8017 100644 --- a/src/Gtk/MainWindow.vala +++ b/src/Gtk/MainWindow.vala @@ -55,7 +55,7 @@ public class MainWindow : Gtk.Window{ public MainWindow() { - title = AppName; //"%s (Ukuu) v%s".printf(AppName, AppVersion); + title = BRANDING_LONGNAME; window_position = WindowPosition.CENTER; icon = get_app_icon(16,".svg"); @@ -112,11 +112,6 @@ public class MainWindow : Gtk.Window{ notify_user(); break; - - default: - - show_paid_version_message(); - break; } return false; @@ -268,11 +263,11 @@ public class MainWindow : Gtk.Window{ Gdk.Pixbuf pix_mainline_rc = null; try { - pix_ubuntu = new Gdk.Pixbuf.from_file ("/usr/share/ukuu/images/ubuntu-logo.png"); + pix_ubuntu = new Gdk.Pixbuf.from_file ("/usr/share/" + BRANDING_SHORTNAME + "/images/ubuntu-logo.png"); - pix_mainline = new Gdk.Pixbuf.from_file ("/usr/share/ukuu/images/tux.png"); + pix_mainline = new Gdk.Pixbuf.from_file ("/usr/share/" + BRANDING_SHORTNAME + "/images/tux.png"); - pix_mainline_rc = new Gdk.Pixbuf.from_file ("/usr/share/ukuu/images/tux-red.png"); + pix_mainline_rc = new Gdk.Pixbuf.from_file ("/usr/share/" + BRANDING_SHORTNAME + "/images/tux-red.png"); } catch (Error e) { log_error (e.message); @@ -402,7 +397,7 @@ public class MainWindow : Gtk.Window{ string sh = ""; sh += "pkexec env DISPLAY=$DISPLAY XAUTHORITY=$XAUTHORITY "; - sh += "ukuu --user %s".printf(App.user_login); + sh += BRANDING_SHORTNAME+" --user %s".printf(App.user_login); if (LOG_DEBUG){ sh += " --debug"; } @@ -447,8 +442,8 @@ public class MainWindow : Gtk.Window{ }); string sh = ""; - sh += "pkexec env DISPLAY=$DISPLAY XAUTHORITY=$XAUTHORITY "; - sh += "ukuu --user %s".printf(App.user_login); + sh += "pkexec env DISPLAY=$DISPLAY XAUTHORITY=$XAUTHORITY "; + sh += BRANDING_SHORTNAME+" --user "+App.user_login; if (LOG_DEBUG){ sh += " --debug"; } @@ -497,15 +492,6 @@ public class MainWindow : Gtk.Window{ tv_refresh(); }); - // donate - button = new Gtk.Button.with_label (_("Donate")); - hbox.pack_start (button, true, true, 0); - - button.clicked.connect(() => { - var dlg = new DonationWindow(this); - dlg.show_all(); - }); - // about button = new Gtk.Button.with_label (_("About")); hbox.pack_start (button, true, true, 0); @@ -519,7 +505,8 @@ public class MainWindow : Gtk.Window{ dialog.set_transient_for (this); dialog.authors = { - "Tony George:teejeetech@gmail.com" + "Tony George:teejeetech@gmail.com", + BRANDING_AUTHORNAME+":"+BRANDING_AUTHOREMAIL }; dialog.third_party = { @@ -539,17 +526,16 @@ public class MainWindow : Gtk.Window{ dialog.documenters = null; dialog.artists = null; - dialog.donations = null; - dialog.program_name = AppName; + dialog.program_name = BRANDING_LONGNAME; dialog.comments = _("Kernel upgrade utility for Ubuntu-based distributions"); - dialog.copyright = "Copyright © 2012-17 Tony George (%s)".printf(AppAuthorEmail); - dialog.version = AppVersion; + dialog.copyright = "Original copyright © 2012-17 Tony George, Forked 2019 "+BRANDING_AUTHORNAME+" ("+BRANDING_AUTHOREMAIL+")"; + dialog.version = BRANDING_VERSION; dialog.logo = get_app_icon(128); dialog.license = "This program is free for personal and commercial use and comes with absolutely no warranty. You use this program entirely at your own risk. The author will not be liable for any damages arising from the use of this program."; - dialog.website = "http://teejeetech.in"; - dialog.website_label = "http://teejeetech.blogspot.in"; + dialog.website = BRANDING_WEBSITE; + dialog.website_label = BRANDING_WEBSITE; dialog.initialize(); dialog.show_all(); @@ -724,7 +710,7 @@ public class MainWindow : Gtk.Window{ string sh = ""; sh += "pkexec env DISPLAY=$DISPLAY XAUTHORITY=$XAUTHORITY "; - sh += "ukuu --user %s".printf(App.user_login); + sh += BRANDING_SHORTNAME+" --user "+App.user_login; if (LOG_DEBUG){ sh += " --debug"; } @@ -755,7 +741,7 @@ public class MainWindow : Gtk.Window{ if (App.notify_dialog){ var win = new UpdateNotificationWindow( - AppName, + BRANDING_LONGNAME, "%s\n\n%s".printf(title, message), null, kern); @@ -788,7 +774,7 @@ public class MainWindow : Gtk.Window{ if (App.notify_dialog){ var win = new UpdateNotificationWindow( - AppName, + BRANDING_LONGNAME, "%s\n\n%s".printf(title, message), this, kern); @@ -819,7 +805,7 @@ public class MainWindow : Gtk.Window{ if (App.notify_dialog){ var win = new UpdateNotificationWindow( - AppName, + BRANDING_LONGNAME, "%s\n\n%s".printf(title, message), null); @@ -842,15 +828,4 @@ public class MainWindow : Gtk.Window{ App.exit_app(0); } } - - public void show_paid_version_message(){ - - if (!App.message_shown){ - - App.message_shown = true; - App.save_app_config(); - - var win = new VersionMessageWindow(this); - } - } } diff --git a/src/Gtk/TerminalWindow.vala b/src/Gtk/TerminalWindow.vala index 32b04c30..22ae3515 100644 --- a/src/Gtk/TerminalWindow.vala +++ b/src/Gtk/TerminalWindow.vala @@ -238,7 +238,8 @@ public class TerminalWindow : Gtk.Window { } public void execute_command(string command){ - term.feed_child("%s\n".printf(command), -1); + string c = command.concat("\n"); + term.feed_child(c.to_utf8()); } public void execute_script(string script_path, bool wait = false){ diff --git a/src/Gtk/UpdateNotificationWindow.vala b/src/Gtk/UpdateNotificationWindow.vala index c72f3a01..e0a2a80a 100644 --- a/src/Gtk/UpdateNotificationWindow.vala +++ b/src/Gtk/UpdateNotificationWindow.vala @@ -75,7 +75,7 @@ public class UpdateNotificationWindow : Gtk.Window { public void init_window () { - title = AppName; + title = BRANDING_LONGNAME; window_position = WindowPosition.CENTER_ON_PARENT; icon = get_app_icon(16); resizable = false; diff --git a/src/Gtk/VersionMessageWindow.vala b/src/Gtk/VersionMessageWindow.vala deleted file mode 100644 index 8d26b829..00000000 --- a/src/Gtk/VersionMessageWindow.vala +++ /dev/null @@ -1,151 +0,0 @@ -/* - * VersionMessageWindow.vala - * - * Copyright 2015 Tony George - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, - * MA 02110-1301, USA. - * - * - */ - - -using Gtk; -using Gee; - -using TeeJee.Logging; -using TeeJee.FileSystem; -using TeeJee.JsonHelper; -using TeeJee.ProcessHelper; -using TeeJee.GtkHelper; -using TeeJee.System; -using TeeJee.Misc; - -public class VersionMessageWindow : Gtk.Window { - - private Gtk.Box vbox_main; - private Gtk.Label lbl_msg; - private Gtk.ScrolledWindow sw_msg; - - private string msg_title; - private string msg_body; - private Gtk.MessageType msg_type; - - private LinuxKernel kern_update; - private MainWindow main_window; - - public VersionMessageWindow(MainWindow? _window) { - - window_position = WindowPosition.CENTER; - - set_transient_for(_window); - set_modal(true); - - main_window = _window; - - msg_title = _("New Version Available"); - - msg_body = _("A paid version of Ukuu is now available, with more features and new UI"); - - msg_body = "%s\n\n%s".printf(msg_title, msg_body); - - init_window(); - - show_all(); - - set_size_request(350, 200); - } - - public void init_window () { - - title = AppName; - window_position = WindowPosition.CENTER_ON_PARENT; - icon = get_app_icon(16); - resizable = false; - deletable = false; - //skip_taskbar_hint = true; - //skip_pager_hint = true; - - //vbox_main - vbox_main = new Gtk.Box(Orientation.VERTICAL, 6); - vbox_main.margin = 6; - add(vbox_main); - - //hbox_contents - var hbox_contents = new Gtk.Box(Orientation.HORIZONTAL, 6); - hbox_contents.margin = 6; - vbox_main.add (hbox_contents); - - string icon_name = "gtk-dialog-info"; - - // img - var img = new Image.from_icon_name(icon_name, Gtk.IconSize.DIALOG); - img.margin_right = 12; - hbox_contents.add(img); - - // vbox_msg - var vbox_msg = new Gtk.Box(Orientation.VERTICAL, 24); - vbox_msg.margin_right = 6; - hbox_contents.add(vbox_msg); - - // lbl_msg - lbl_msg = new Gtk.Label(msg_body); - lbl_msg.set_use_markup(true); - lbl_msg.xalign = (float) 0.0; - lbl_msg.max_width_chars = 70; - lbl_msg.wrap = true; - lbl_msg.wrap_mode = Pango.WrapMode.WORD; - //hbox_contents.add(lbl_msg); - - // sw_msg - sw_msg = new ScrolledWindow(null, null); - //sw_msg.set_shadow_type (ShadowType.ETCHED_IN); - sw_msg.add (lbl_msg); - sw_msg.expand = true; - sw_msg.hscrollbar_policy = PolicyType.NEVER; - sw_msg.vscrollbar_policy = PolicyType.AUTOMATIC; - //sw_msg.set_size_request(); - vbox_msg.add(sw_msg); - - // actions - var hbox_actions = new Gtk.Box(Orientation.HORIZONTAL, 6); - vbox_msg.add (hbox_actions); - - // open web page - var button = new Gtk.Button.with_label(_("More Info")); - button.set_size_request(100,-1); - hbox_actions.add(button); - - var btn_show = button; - - btn_show.clicked.connect(()=>{ - xdg_open("https://teejeetech.in/2019/01/20/ukuu-v19-01/"); - this.destroy(); - }); - - // cancel - button = new Gtk.Button.with_label(_("OK")); - button.set_size_request(100,-1); - hbox_actions.add(button); - - var btn_ok = button; - - btn_ok.clicked.connect(()=>{ - this.destroy(); - }); - } -} - - diff --git a/src/Utility/Gtk/AboutWindow.vala b/src/Utility/Gtk/AboutWindow.vala index 437603b6..93889c51 100644 --- a/src/Utility/Gtk/AboutWindow.vala +++ b/src/Utility/Gtk/AboutWindow.vala @@ -107,16 +107,6 @@ public class AboutWindow : Dialog { } } - private string[] _donations; - public string[] donations{ - get{ - return _donations; - } - set{ - _donations = value; - } - } - private string _license = ""; public string license{ get{ @@ -368,14 +358,6 @@ public class AboutWindow : Dialog { add_line("\n"); } - if (donations.length > 0){ - add_header("%s\n".printf(_("Donations"))); - foreach(string name in donations){ - add_line("%s\n".printf(name)); - } - add_line("\n"); - } - if (vbox_lines.get_children().length() == 0){ btn_credits.visible = false; } diff --git a/src/Utility/Gtk/DonationWindow.vala b/src/Utility/Gtk/DonationWindow.vala deleted file mode 100644 index e3694159..00000000 --- a/src/Utility/Gtk/DonationWindow.vala +++ /dev/null @@ -1,198 +0,0 @@ -/* - * DonationWindow.vala - * - * Copyright 2012-18 Tony George - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, - * MA 02110-1301, USA. - * - * - */ - -using Gtk; - -using TeeJee.Logging; -using TeeJee.FileSystem; -using TeeJee.JsonHelper; -using TeeJee.ProcessHelper; -using TeeJee.System; -using TeeJee.Misc; -using TeeJee.GtkHelper; - -public class DonationWindow : Gtk.Window { - - private Gtk.Box vbox_main; - private string username = ""; - private string appname = "Ukuu"; - private bool has_wiki = false; - - public DonationWindow(Gtk.Window window) { - - set_title(_("Donate")); - - set_transient_for(window); - set_destroy_with_parent(true); - - window_position = WindowPosition.CENTER_ON_PARENT; - - set_modal(true); - set_resizable(false); - set_deletable(true); - - // vbox_main - vbox_main = new Gtk.Box(Orientation.VERTICAL, 12); - vbox_main.margin = 12; - - this.add(vbox_main); - - if (get_user_id_effective() == 0){ - username = get_username(); - } - - // ----------------------------- - - string msg = _("This software is free for personal and commercial use. It is distributed in the hope that it is useful but without any warranty. See the GNU General Public License v2 or later for more information"); - - add_label(msg); - - msg = _("If you find this application useful, consider making a donation to support the development."); - - add_label(msg); - - var hbox = add_hbox(); - - add_button(hbox, _("Donate"), - "https://www.paypal.com/cgi-bin/webscr?business=teejeetech@gmail.com&cmd=_xclick¤cy_code=USD&item_name=%s+Donation".printf(appname)); - - add_button(hbox, _("Become a Patron"), - "https://www.patreon.com/bePatron?u=3059450"); - - // ----------------------------- - - msg = format_heading(_("Support")) + " "; - - add_label(msg); - - msg = _("Please avoid reporting issues by email. Use the issue tracker for reporting issues, requesting features, and asking questions."); - - add_label(msg); - - hbox = add_hbox(); - - add_button(hbox, _("Issue Tracker"), - "https://github.com/teejee2008/%s/issues".printf(appname.down())); - - if (has_wiki){ - - add_button(hbox, _("Wiki"), - "https://github.com/teejee2008/%s/wiki".printf(appname.down())); - } - - // ----------------------------- - - msg = format_heading(_("Feature Requests")) + " "; - - add_label(msg); - - msg = _("This application was created for my own use in my spare time. It's not practical for me to work for free, on every change that is requested. If you need new features or changes to the application, consider making a donation to sponsor the work. If you are a developer, consider contributing to the project, by picking up items from issue tracker and submitting code changes."); - - add_label(msg); - - // close window --------------------------------------------------------- - - hbox = add_hbox(); - - var button = new Gtk.Button.with_label(_("Close")); - button.margin_top = 24; - hbox.add(button); - - button.clicked.connect(() => { - this.destroy(); - }); - - this.show_all(); - } - - private void add_heading(string msg){ - - var label = new Gtk.Label("%s".printf(msg)); - - label.set_use_markup(true); - - label.wrap = true; - label.wrap_mode = Pango.WrapMode.WORD; - label.max_width_chars = 80; - - label.xalign = 0.0f; - label.margin_top = 12; - vbox_main.add(label); - } - - private string format_heading(string msg){ - - return "%s".printf(msg); - } - - private Gtk.Label add_label(string msg){ - - var label = new Gtk.Label(msg); - - label.set_use_markup(true); - - label.wrap = true; - label.wrap_mode = Pango.WrapMode.WORD; - label.max_width_chars = 50; - - label.xalign = 0.0f; - - vbox_main.add(label); - - return label; - } - - private Gtk.ButtonBox add_hbox(){ - - var hbox = new Gtk.ButtonBox(Orientation.HORIZONTAL); - hbox.set_layout(Gtk.ButtonBoxStyle.CENTER); - hbox.set_spacing(6); - vbox_main.add(hbox); - return hbox; - } - - private void add_button(Gtk.Box box, string text, string url){ - - var button = new Gtk.Button.with_label(text); - button.set_tooltip_text(url); - box.add(button); - - //button.set_size_request(200,-1); - - button.clicked.connect(() => { - xdg_open(url, username); - }); - } - - private void add_link_button(Gtk.Box box, string text, string url){ - - var button = new Gtk.LinkButton.with_label("", text); - button.set_tooltip_text(url); - box.add(button); - - button.clicked.connect(() => { - xdg_open(url, username); - }); - } -} - diff --git a/src/Utility/Gtk/GtkHelper.vala b/src/Utility/Gtk/GtkHelper.vala index 40ca7cd1..f6342843 100644 --- a/src/Utility/Gtk/GtkHelper.vala +++ b/src/Utility/Gtk/GtkHelper.vala @@ -230,7 +230,7 @@ namespace TeeJee.GtkHelper{ // icon ---------------------------------------------- public Gdk.Pixbuf? get_app_icon(int icon_size, string format = ".png"){ - var img_icon = get_shared_icon(AppShortName, AppShortName + format,icon_size,"pixmaps"); + var img_icon = get_shared_icon(BRANDING_SHORTNAME, BRANDING_SHORTNAME + format,icon_size,"pixmaps"); if (img_icon != null){ return img_icon.pixbuf; } @@ -243,7 +243,7 @@ namespace TeeJee.GtkHelper{ string icon_name, string fallback_icon_file_name, int icon_size, - string icon_directory = AppShortName + "/images"){ + string icon_directory = ICON_DIR + "/images"){ Gdk.Pixbuf pix_icon = null; Gtk.Image img_icon = null; @@ -281,7 +281,7 @@ namespace TeeJee.GtkHelper{ public Gdk.Pixbuf? get_shared_icon_pixbuf(string icon_name, string fallback_file_name, int icon_size, - string icon_directory = AppShortName + "/images"){ + string icon_directory = ICON_DIR + "/images"){ var img = get_shared_icon(icon_name, fallback_file_name, icon_size, icon_directory); var pixbuf = (img == null) ? null : img.pixbuf; diff --git a/src/Utility/TeeJee.FileSystem.vala b/src/Utility/TeeJee.FileSystem.vala index de703f1d..d68f5470 100644 --- a/src/Utility/TeeJee.FileSystem.vala +++ b/src/Utility/TeeJee.FileSystem.vala @@ -21,7 +21,7 @@ * * */ - + namespace TeeJee.FileSystem{ /* Convenience functions for handling files and directories */ @@ -714,8 +714,8 @@ namespace TeeJee.FileSystem{ return false; } +/* // hashing ----------- - private string hash_md5(string path){ Checksum checksum = new Checksum (ChecksumType.MD5); FileStream stream = FileStream.open (path, "rb"); @@ -730,6 +730,7 @@ namespace TeeJee.FileSystem{ return digest; } +*/ // misc -------------------- diff --git a/src/Utility/TeeJee.Misc.vala b/src/Utility/TeeJee.Misc.vala index 32091ef8..e84e8a12 100644 --- a/src/Utility/TeeJee.Misc.vala +++ b/src/Utility/TeeJee.Misc.vala @@ -254,6 +254,7 @@ namespace TeeJee.Misc { return random; } +/* private string pad_numbers_in_string( string input, int max_length = 3, char pad_char = '0'){ @@ -295,7 +296,7 @@ namespace TeeJee.Misc { return output; } - +*/ public bool is_numeric(string text){ for (int i = 0; i < text.length; i++){ if (!text[i].isdigit()){ @@ -343,9 +344,9 @@ namespace TeeJee.Misc { double length_partial = length - length_remaining - Math.floor(length_complete); - double length_char = 1.0 / length; + //double length_char = 1.0 / length; - var partial_chars = new string[] { " ", "▏","▎","▍","▌","▋","▊","▉","█" }; + //var partial_chars = new string[] { " ", "▏","▎","▍","▌","▋","▊","▉","█" }; int partial_index = (int) (length_partial * 8.0); @@ -356,7 +357,7 @@ namespace TeeJee.Misc { partial_index = 8; } - var char_partial = partial_chars[partial_index]; + //var char_partial = partial_chars[partial_index]; if (length_complete > 0){ for(int i = 0; i < length_complete; i++){ diff --git a/src/makefile b/src/makefile index e01afd62..a639b5cb 100644 --- a/src/makefile +++ b/src/makefile @@ -9,60 +9,50 @@ launcherdir=$(sharedir)/applications polkitdir=$(sharedir)/polkit-1/actions mandir=$(sharedir)/man man1dir=$(mandir)/man1 +translations = es fr hr nl pl ru sv tr -app_name=ukuu - -# vte ----------------------------- +branding_shortname = ukuu +branding_longname = Ubuntu Kernel Update Utility +branding_version = 18.9 +branding_authorname = Brian K. White +branding_authoremail = bw.aljex@gmail.com +branding_website = https://github.com/aljex/ukuu vte_symbol = -D VTE_291 -vte_version=$(shell { (pkg-config --modversion vte-2.91 | cut -d. -f 2); } ) -vala_version=$(shell { (valac --version | cut -d. -f 2); } ) -dist_id=$(shell { (lsb_release -i -s); } ) -dist_codename=$(shell { (lsb_release -c -s); } ) - -vte_version=$(shell { ((ldconfig -p | grep libvte-2.91*.so) >/dev/null && echo 'vte-2.91') || echo 'vte-2.90'; } ) +vte_version = vte-2.91 -# symbols -------------------------- +################################################################################ -define_symbols=$(shell { echo "${vte_symbol}"; } ) +branding_defines = -X -D'BRANDING_SHORTNAME="${branding_shortname}"' -X -D'BRANDING_LONGNAME="${branding_longname}"' -X -D'BRANDING_VERSION="${branding_version}"' -X -D'BRANDING_AUTHORNAME="${branding_authorname}"' -X -D'BRANDING_AUTHOREMAIL="${branding_authoremail}"' -X -D'BRANDING_WEBSITE="${branding_website}"' -X -D'GETTEXT_PACKAGE="${branding_shortname}"' -all: app app-gtk app-translations +all: app app-gtk translations app-gtk: - # app-gtk - valac -X -D'GETTEXT_PACKAGE="${app_name}"' --Xcc="-lm" ${define_symbols} \ - Common/*.vala Gtk/*.vala Utility/*.vala Utility/Gtk/*.vala \ - -o ${app_name}-gtk \ - --pkg glib-2.0 --pkg gio-unix-2.0 --pkg posix --pkg gtk+-3.0 --pkg gee-0.8 --pkg json-glib-1.0 --pkg $(vte_version) + valac ${branding_defines} ${vte_symbol} --Xcc="-lm" \ + --pkg glib-2.0 --pkg gio-unix-2.0 --pkg posix --pkg gtk+-3.0 --pkg gee-0.8 --pkg json-glib-1.0 --pkg ${vte_version} \ + Common/*.vala Gtk/*.vala Utility/*.vala Utility/Gtk/*.vala -o ${branding_shortname}-gtk app: - # app - valac -X -D'GETTEXT_PACKAGE="${app_name}"' --Xcc="-lm" \ - Common/*.vala Console/*.vala Utility/*.vala \ - -o ${app_name} \ - --pkg glib-2.0 --pkg gio-unix-2.0 --pkg posix --pkg gee-0.8 --pkg libsoup-2.4 --pkg json-glib-1.0 + valac ${branding_defines} --Xcc="-lm" \ + --pkg glib-2.0 --pkg gio-unix-2.0 --pkg posix --pkg gee-0.8 --pkg libsoup-2.4 --pkg json-glib-1.0 \ + Common/*.vala Console/*.vala Utility/*.vala -o ${branding_shortname} -app-translations: - - # update translation template +translations: find . -iname "*.vala" | xargs xgettext --from-code=UTF-8 --language=C --keyword=_ \ - --copyright-holder='Tony George (teejeetech@gmail.com)' \ - --package-name="${app_name}" \ - --package-version='1.6' \ - --msgid-bugs-address='teejeetech@gmail.com' \ - --escape --sort-output -o ../${app_name}.pot - - # update translation files - # am ar az bg ca cs da de el en_GB es et eu fr he hi hr hu ia id is it ko lt nb ne nl pl pt pt_BR ro ru sk sr sv tr uk vi zh_CN - for lang in es fr hr nl pl ru sv tr; do \ - msgmerge --update -v ../po/${app_name}-$$lang.po ../${app_name}.pot ; \ + --copyright-holder="${branding_authorname} (${branding_authoremail})" \ + --package-name="${branding_shortname}" \ + --package-version="${branding_version}" \ + --msgid-bugs-address="${branding_authoremail}" \ + --escape --sort-output -o ../${branding_shortname}.pot + for lang in ${translations} ; do \ + msgmerge --update -v ../po/${branding_shortname}-$$lang.po ../${branding_shortname}.pot ; \ done - + clean: rm -rfv ../release/{source,i386,amd64,armel,armhf} rm -rfv ../release/*.{run,deb} rm -rfv *.c *.o *.mo - rm -fv ${app_name} ${app_name}-gtk + rm -fv ${branding_shortname} ${branding_shortname}-gtk install: mkdir -p "$(DESTDIR)$(bindir)" @@ -72,54 +62,54 @@ install: mkdir -p "$(DESTDIR)$(launcherdir)" mkdir -p "$(DESTDIR)$(polkitdir)" mkdir -p "$(DESTDIR)$(sharedir)/glib-2.0/schemas/" - mkdir -p "$(DESTDIR)$(sharedir)/${app_name}" + mkdir -p "$(DESTDIR)$(sharedir)/${branding_shortname}" mkdir -p "$(DESTDIR)$(sharedir)/pixmaps" # binary - install -m 0755 ${app_name} "$(DESTDIR)$(bindir)" - install -m 0755 ${app_name}-gtk "$(DESTDIR)$(bindir)" - install -m 0755 ${app_name}-uninstall "$(DESTDIR)$(bindir)" + install -m 0755 ${branding_shortname} "$(DESTDIR)$(bindir)" + install -m 0755 ${branding_shortname}-gtk "$(DESTDIR)$(bindir)" + install -m 0755 ${branding_shortname}-uninstall "$(DESTDIR)$(bindir)" # shared files - cp -dpr --no-preserve=ownership -t "$(DESTDIR)$(sharedir)/${app_name}" ./share/${app_name}/* - chmod --recursive 0755 $(DESTDIR)$(sharedir)/${app_name}/* + cp -dpr --no-preserve=ownership -t "$(DESTDIR)$(sharedir)/${branding_shortname}" ./share/${branding_shortname}/* + chmod --recursive 0755 $(DESTDIR)$(sharedir)/${branding_shortname}/* # polkit policy file #install -m 0644 ./share/polkit-1/actions/in.teejeetech.pkexec.ukuu.policy "$(DESTDIR)$(polkitdir)" # launcher - install -m 0755 ${app_name}.desktop "$(DESTDIR)$(launcherdir)" + install -m 0755 ${branding_shortname}.desktop "$(DESTDIR)$(launcherdir)" # app icon - install -m 0755 ./share/pixmaps/${app_name}.* "$(DESTDIR)$(sharedir)/pixmaps" + install -m 0755 ./share/pixmaps/${branding_shortname}.* "$(DESTDIR)$(sharedir)/pixmaps" # translations - for lang in es fr hr nl pl ru sv tr; do \ + for lang in ${translations}; do \ mkdir -p "$(DESTDIR)$(localedir)/$$lang/LC_MESSAGES"; \ - msgfmt --check --verbose -o "$(DESTDIR)$(localedir)/$$lang/LC_MESSAGES/${app_name}.mo" ../po/${app_name}-$$lang.po ; \ + msgfmt --check --verbose -o "$(DESTDIR)$(localedir)/$$lang/LC_MESSAGES/${branding_shortname}.mo" ../po/${branding_shortname}-$$lang.po ; \ done uninstall: # binary - rm -f "$(DESTDIR)$(bindir)/${app_name}" - rm -f "$(DESTDIR)$(bindir)/${app_name}-uninstall" + rm -f "$(DESTDIR)$(bindir)/${branding_shortname}" + rm -f "$(DESTDIR)$(bindir)/${branding_shortname}-uninstall" # shared files - rm -rf "$(DESTDIR)$(sharedir)/${app_name}" + rm -rf "$(DESTDIR)$(sharedir)/${branding_shortname}" # polkit policy file #rm -f "$(DESTDIR)$(polkitdir)/in.teejeetech.pkexec.ukuu.policy" # launcher - rm -f "$(DESTDIR)$(launcherdir)/${app_name}.desktop" + rm -f "$(DESTDIR)$(launcherdir)/${branding_shortname}.desktop" # app icon - rm -f "$(DESTDIR)$(sharedir)/pixmaps/${app_name}.png" + rm -f "$(DESTDIR)$(sharedir)/pixmaps/${branding_shortname}.png" - # translations - rm -f $(DESTDIR)$(localedir)/*/LC_MESSAGES/${app_name}.mo + # translations + rm -f $(DESTDIR)$(localedir)/*/LC_MESSAGES/${branding_shortname}.mo # startup scripts - rm -f $(DESTDIR)/home/*/.config/ukuu-notify.sh - rm -f $(DESTDIR)/home/*/.config/autostart/ukuu.desktop + rm -f $(DESTDIR)/home/*/.config/${branding_shortname}-notify.sh + rm -f $(DESTDIR)/home/*/.config/autostart/${branding_shortname}.desktop diff --git a/src/share/polkit-1/actions/in.teejeetech.pkexec.ukuu.policy b/src/share/polkit-1/actions/in.teejeetech.pkexec.ukuu.policy index 48e598e0..7fefd53a 100644 --- a/src/share/polkit-1/actions/in.teejeetech.pkexec.ukuu.policy +++ b/src/share/polkit-1/actions/in.teejeetech.pkexec.ukuu.policy @@ -3,9 +3,9 @@ "-//freedesktop//DTD PolicyKit Policy Configuration 1.0//EN" "http://www.freedesktop.org/standards/PolicyKit/1/policyconfig.dtd"> - Tony George - https://github.com/teejee2008 - + Brian K. White + https://github.com/aljex + Authentication is required to manage kernel packages ukuu diff --git a/src/share/ukuu/images/donate.svg b/src/share/ukuu/images/donate.svg deleted file mode 100755 index 28be2f62..00000000 --- a/src/share/ukuu/images/donate.svg +++ /dev/null @@ -1,458 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/ukuu.geany b/ukuu.geany index 00f0c2af..5986f6e9 100644 --- a/ukuu.geany +++ b/ukuu.geany @@ -7,8 +7,8 @@ detect_indent_width=false indent_mode=2 [project] -name=ukuu-github -base_path=/home/teejee/projects/linux-github/ukuu +name=ukuu +base_path=/home/bkw/src/ukuu description= file_patterns= @@ -17,53 +17,69 @@ long_line_behaviour=1 long_line_column=80 [files] -current_page=24 -FILE_NAME_0=0;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux-github%2Fukuu%2Fsrc%2FCommon%2FDownloadManager.vala;0;4 -FILE_NAME_1=0;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux-github%2Fukuu%2Fsrc%2FCommon%2FLinuxKernel.vala;0;4 -FILE_NAME_2=0;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux-github%2Fukuu%2Fsrc%2FCommon%2FMain.vala;0;4 -FILE_NAME_3=0;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux-github%2Fukuu%2Fsrc%2FCommon%2FPackage.vala;0;4 -FILE_NAME_4=1166;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux-github%2Fukuu%2Fsrc%2FConsole%2FAppConsole.vala;0;4 -FILE_NAME_5=0;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux-github%2Fukuu%2Fsrc%2FGtk%2FMainWindow.vala;0;4 -FILE_NAME_6=0;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux-github%2Fukuu%2Fsrc%2FGtk%2FProgressWindow.vala;0;4 -FILE_NAME_7=0;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux-github%2Fukuu%2Fsrc%2FGtk%2FSettingsDialog.vala;0;4 -FILE_NAME_8=0;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux-github%2Fukuu%2Fsrc%2FGtk%2FTerminalWindow.vala;0;4 -FILE_NAME_9=0;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux-github%2Fukuu%2Fsrc%2FGtk%2FUpdateNotificationWindow.vala;0;4 -FILE_NAME_10=0;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux-github%2Fukuu%2Fsrc%2FGtk%2FVersionMessageWindow.vala;0;4 -FILE_NAME_11=0;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux-github%2Fukuu%2Fsrc%2FUtility%2FAppLock.vala;0;4 -FILE_NAME_12=0;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux-github%2Fukuu%2Fsrc%2FUtility%2FAsyncTask.vala;0;4 -FILE_NAME_13=0;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux-github%2Fukuu%2Fsrc%2FUtility%2FOSDNotify.vala;0;4 -FILE_NAME_14=0;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux-github%2Fukuu%2Fsrc%2FUtility%2FTeeJee.FileSystem.vala;0;4 -FILE_NAME_15=0;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux-github%2Fukuu%2Fsrc%2FUtility%2FTeeJee.Json.vala;0;4 -FILE_NAME_16=0;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux-github%2Fukuu%2Fsrc%2FUtility%2FTeeJee.Logging.vala;0;4 -FILE_NAME_17=0;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux-github%2Fukuu%2Fsrc%2FUtility%2FTeeJee.Misc.vala;0;4 -FILE_NAME_18=0;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux-github%2Fukuu%2Fsrc%2FUtility%2FTeeJee.Process.vala;0;4 -FILE_NAME_19=0;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux-github%2Fukuu%2Fsrc%2FUtility%2FTeeJee.System.vala;0;4 -FILE_NAME_20=805;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux-github%2Fukuu%2Fsrc%2FUtility%2FVersion.vala;0;4 -FILE_NAME_21=0;Make;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux-github%2Fukuu%2Fsrc%2Fmakefile;0;4 -FILE_NAME_22=11;None;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux-github%2Fukuu%2Fdebian%2Fchangelog;0;4 -FILE_NAME_23=1183;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux-github%2Fukuu%2Fsrc%2FGtk%2FAppGtk.vala;0;4 -FILE_NAME_24=568;YAML;0;EUTF-8;1;1;1;%2Fhome%2Fteejee%2Fprojects%2Flinux%2Ftimeshift%2Fsnapcraft.yaml;0;4 +current_page=6 +FILE_NAME_0=434;Make;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2Fmakefile;0;4 +FILE_NAME_1=239;None;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fdebian%2Fchangelog;0;4 +FILE_NAME_2=8696;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FCommon%2FMain.vala;0;4 +FILE_NAME_3=5011;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FCommon%2FDownloadManager.vala;0;4 +FILE_NAME_4=1207;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FCommon%2FLinuxKernel.vala;0;4 +FILE_NAME_5=4098;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FCommon%2FPackage.vala;0;4 +FILE_NAME_6=1400;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FConsole%2FAppConsole.vala;0;4 +FILE_NAME_7=1465;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FGtk%2FAppGtk.vala;0;4 +FILE_NAME_8=13902;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FGtk%2FMainWindow.vala;0;4 +FILE_NAME_9=29;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FGtk%2FProgressWindow.vala;0;4 +FILE_NAME_10=37;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FGtk%2FSettingsDialog.vala;0;4 +FILE_NAME_11=29;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FGtk%2FTerminalWindow.vala;0;4 +FILE_NAME_12=1978;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FGtk%2FUpdateNotificationWindow.vala;0;4 +FILE_NAME_13=23;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FUtility%2FAppLock.vala;0;4 +FILE_NAME_14=24;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FUtility%2FAsyncTask.vala;0;4 +FILE_NAME_15=25;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FUtility%2FOSDNotify.vala;0;4 +FILE_NAME_16=18058;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FUtility%2FTeeJee.FileSystem.vala;0;4 +FILE_NAME_17=33;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FUtility%2FTeeJee.Json.vala;0;4 +FILE_NAME_18=30;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FUtility%2FTeeJee.Logging.vala;0;4 +FILE_NAME_19=8075;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FUtility%2FTeeJee.Misc.vala;0;4 +FILE_NAME_20=2336;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FUtility%2FTeeJee.Process.vala;0;4 +FILE_NAME_21=6206;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FUtility%2FTeeJee.System.vala;0;4 +FILE_NAME_22=23;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FUtility%2FVersion.vala;0;4 +FILE_NAME_23=8259;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FUtility%2FGtk%2FAboutWindow.vala;0;4 +FILE_NAME_24=34;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FUtility%2FGtk%2FCustomMessageDialog.vala;0;4 +FILE_NAME_25=6668;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FUtility%2FGtk%2FGtkHelper.vala;0;4 +FILE_NAME_26=250;XML;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2Fshare%2Fpolkit-1%2Factions%2Fin.teejeetech.pkexec.ukuu.policy;0;4 +FILE_NAME_27=0;Conf;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2Fukuu.desktop;0;4 +FILE_NAME_28=136;Markdown;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2FREADME.md;0;4 +FILE_NAME_29=0;Markdown;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2F.github%2FISSUE_TEMPLATE%2Fbug_report.md;0;4 +FILE_NAME_30=560;Markdown;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2F.github%2FISSUE_TEMPLATE%2Ffeature_request.md;0;4 +FILE_NAME_31=55;None;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2FAUTHORS;0;4 +FILE_NAME_32=240;Conf;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fdebian%2Fcontrol;0;4 +FILE_NAME_33=94;None;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fdebian%2Fcopyright;0;4 +FILE_NAME_34=13557;Po;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fukuu.pot;0;4 +FILE_NAME_35=133;None;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2FBUILD_CONFIG;0;4 +FILE_NAME_36=72;Markdown;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fchangelogs%2Fv17.12.1.md;0;4 +FILE_NAME_37=403;Markdown;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fchangelogs%2Fv17.12.md;0;4 +FILE_NAME_38=66;Markdown;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fchangelogs%2Fv18.1.md;0;4 +FILE_NAME_39=7677;C++;0;EUTF-8;1;1;1;%2Fusr%2Finclude%2Fglib-2.0%2Fgio%2Fgdatainputstream.h;0;4 +FILE_NAME_40=929;C++;0;EUTF-8;1;1;1;%2Fusr%2Finclude%2Fglib-2.0%2Fglib%2Fgi18n-lib.h;0;4 +FILE_NAME_41=20303;Po;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fpo%2Fukuu-es.po;0;4 +FILE_NAME_42=20216;Po;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fpo%2Fukuu-fr.po;0;4 +FILE_NAME_43=18310;Po;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fpo%2Fukuu-hr.po;0;4 +FILE_NAME_44=107;Perl;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2F.git%2Fhooks%2Ffsmonitor-watchman.sample;0;4 +FILE_NAME_45=110;Conf;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2F.git%2Fconfig;0;4 +FILE_NAME_46=35096;None;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2FCOPYING;0;4 +FILE_NAME_47=102;Markdown;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2FLICENSE.md;0;4 +FILE_NAME_48=113;XML;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2Fshare%2Fpixmaps%2Fukuu.svg;0;4 +FILE_NAME_49=55;XML;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2Fshare%2Fukuu%2Fimages%2Fgeneral.svg;0;4 [VTE] -last_dir=/data/.Trash-1000/files/ukuu +last_dir=/home/bkw [build-menu] -ValaFT_00_LB=_Compile -ValaFT_00_CM= -ValaFT_00_WD= filetypes=Vala;Make; -NF_00_LB=Build App -NF_00_CM=make app app-gtk -NF_00_WD=%p EX_00_LB=_Execute (debug) EX_00_CM=src/ukuu-gtk --debug EX_00_WD=%p EX_01_LB=Execute EX_01_CM=src/ukuu-gtk EX_01_WD=%p -ValaFT_01_LB=_Build -ValaFT_01_CM=make app app-gtk -ValaFT_01_WD=%p NF_01_LB= NF_01_CM= NF_01_WD= @@ -72,13 +88,23 @@ NF_02_CM= NF_02_WD= MakeFT_00_LB=Make All MakeFT_00_CM=make all -MakeFT_00_WD=/home/teejee/projects/linux/ukuu +MakeFT_00_WD=/home/bkw/src/ukuu MakeFT_01_LB=Make Install MakeFT_01_CM=make install -MakeFT_01_WD=/home/teejee/projects/linux/ukuu +MakeFT_01_WD=/home/bkw/src/ukuu MakeFT_02_LB= MakeFT_02_CM= MakeFT_02_WD= +error_regex=error +NF_00_LB=_Make +NF_00_CM=make +NF_00_WD=%p +ValaFT_00_LB=_Compile +ValaFT_00_CM=make +ValaFT_00_WD=%p +ValaFT_01_LB=_Build +ValaFT_01_CM=make +ValaFT_01_WD=%p [file_prefs] final_new_line=true diff --git a/ukuu.pot b/ukuu.pot index 638ab682..d256268b 100644 --- a/ukuu.pot +++ b/ukuu.pot @@ -1,14 +1,14 @@ # SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR Tony George (teejeetech@gmail.com) +# Copyright (C) YEAR Brian K. White (bw.aljex@gmail.com) # This file is distributed under the same license as the ukuu package. # FIRST AUTHOR , YEAR. # #, fuzzy msgid "" msgstr "" -"Project-Id-Version: ukuu 1.6\n" -"Report-Msgid-Bugs-To: teejeetech@gmail.com\n" -"POT-Creation-Date: 2017-12-17 16:41+0530\n" +"Project-Id-Version: ukuu 18.9\n" +"Report-Msgid-Bugs-To: bw.aljex@gmail.com\n" +"POT-Creation-Date: 2019-03-11 00:10-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,11 +17,11 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: Gtk/MainWindow.vala:470 +#: Gtk/MainWindow.vala:496 msgid "About" msgstr "" -#: Console/AppConsole.vala:103 +#: Console/AppConsole.vala:119 msgid "Admin access is required for running this application." msgstr "" @@ -29,35 +29,47 @@ msgstr "" msgid "Another instance of this application is running" msgstr "" -#: Utility/Gtk/AboutWindow.vala:348 +#: Common/LinuxKernel.vala:108 +msgid "Architecture" +msgstr "" + +#: Utility/Gtk/AboutWindow.vala:338 #, c-format msgid "Artists" msgstr "" -#: Utility/Gtk/AboutWindow.vala:324 +#: Console/AppConsole.vala:106 +msgid "Assume Yes for all prompts (non-interactive mode)" +msgstr "" + +#: Utility/Gtk/AboutWindow.vala:314 #, c-format msgid "Authors" msgstr "" -#: Common/LinuxKernel.vala:1036 +#: Common/LinuxKernel.vala:1184 msgid "Available Kernels" msgstr "" -#: Utility/Gtk/AboutWindow.vala:295 +#: Utility/Gtk/AboutWindow.vala:285 msgid "Back" msgstr "" -#: Gtk/MainWindow.vala:785 +#: Gtk/MainWindow.vala:822 msgid "Booting previous kernels" msgstr "" +#: Console/AppConsole.vala:209 Gtk/AppGtk.vala:110 +msgid "Cache" +msgstr "" + +#: Gtk/ProgressWindow.vala:144 Gtk/TerminalWindow.vala:168 +#: Gtk/UpdateNotificationWindow.vala:167 #: Utility/Gtk/CustomMessageDialog.vala:172 Utility/Gtk/GtkHelper.vala:122 -#: Gtk/ProgressWindow.vala:138 Gtk/UpdateNotificationWindow.vala:167 -#: Gtk/TerminalWindow.vala:168 msgid "Cancel" msgstr "" -#: Gtk/MainWindow.vala:426 +#: Gtk/MainWindow.vala:464 msgid "Changes" msgstr "" @@ -65,33 +77,58 @@ msgstr "" msgid "Check every" msgstr "" -#: Console/AppConsole.vala:83 +#: Console/AppConsole.vala:90 msgid "Check for kernel updates" msgstr "" -#: Utility/Gtk/AboutWindow.vala:305 Gtk/TerminalWindow.vala:178 +#: Console/AppConsole.vala:91 +msgid "Check for kernel updates and notify current user" +msgstr "" + +#: Gtk/TerminalWindow.vala:178 Utility/Gtk/AboutWindow.vala:295 msgid "Close" msgstr "" -#: Common/Main.vala:101 +#: Console/AppConsole.vala:346 +msgid "Command not specified" +msgstr "" + +#: Console/AppConsole.vala:88 +msgid "Commands" +msgstr "" + +#: Common/Main.vala:106 msgid "Commands listed below are not available on this system" msgstr "" -#: Utility/Gtk/AboutWindow.vala:332 +#: Common/LinuxKernel.vala:740 +#, c-format +msgid "Continue ?" +msgstr "" + +#: Utility/Gtk/AboutWindow.vala:322 #, c-format msgid "Contributions" msgstr "" -#: Console/AppConsole.vala:213 Gtk/MainWindow.vala:103 +#: Common/LinuxKernel.vala:724 +msgid "Could not find any kernels to remove" +msgstr "" + +#: Console/AppConsole.vala:314 Gtk/MainWindow.vala:100 msgid "Could not find requested version" msgstr "" +#: Common/LinuxKernel.vala:718 +msgid "Could not find running kernel in list!" +msgstr "" + #: Utility/TeeJee.FileSystem.vala:349 Utility/TeeJee.FileSystem.vala:352 #: Utility/TeeJee.FileSystem.vala:378 msgid "Created directory" msgstr "" -#: Utility/Gtk/AboutWindow.vala:282 Utility/Gtk/AboutWindow.vala:299 +#: Utility/Gtk/AboutWindow.vala:272 Utility/Gtk/AboutWindow.vala:289 msgid "Credits" msgstr "" @@ -103,23 +140,6 @@ msgstr "" msgid "Deleted directory" msgstr "" -#: Utility/Gtk/DonationWindow.vala:54 -msgid "" -"Did you find this software useful?\n" -"\n" -"You can buy me a coffee or make a donation via PayPal to show your support. " -"Or just drop me an email and say Hi. This application is completely free and " -"will continue to remain that way. Your contributions will help in keeping " -"this project alive and improving it further.\n" -"\n" -"Feel free to send me an email if you find any issues in this application or " -"if you need any changes. Suggestions and feedback are always welcome.\n" -"\n" -"Thanks,\n" -"Tony George\n" -"(teejeetech@gmail.com)" -msgstr "" - #: Utility/TeeJee.FileSystem.vala:509 msgid "Dir not found" msgstr "" @@ -128,41 +148,20 @@ msgstr "" msgid "Display" msgstr "" -#: Gtk/SettingsDialog.vala:203 -msgid "Display GRUB menu during boot" -msgstr "" - -#: Common/LinuxKernel.vala:89 +#: Common/LinuxKernel.vala:94 msgid "Distribution" msgstr "" -#: Utility/Gtk/AboutWindow.vala:364 +#: Utility/Gtk/AboutWindow.vala:354 #, c-format msgid "Documenters" msgstr "" -#: Utility/Gtk/DonationWindow.vala:36 Gtk/MainWindow.vala:458 -msgid "Donate" -msgstr "" - -#: Utility/Gtk/DonationWindow.vala:74 -msgid "Donate with Google Wallet" -msgstr "" - -#: Utility/Gtk/DonationWindow.vala:67 -msgid "Donate with PayPal" -msgstr "" - -#: Utility/Gtk/AboutWindow.vala:372 -#, c-format -msgid "Donations" -msgstr "" - -#: Console/AppConsole.vala:88 +#: Console/AppConsole.vala:99 msgid "Download packages for specified kernel" msgstr "" -#: Common/LinuxKernel.vala:1081 +#: Common/LinuxKernel.vala:1230 #, c-format msgid "Downloading" msgstr "" @@ -171,7 +170,7 @@ msgstr "" msgid "E" msgstr "" -#: Common/LinuxKernel.vala:1108 +#: Common/LinuxKernel.vala:1258 #, c-format msgid "ERROR" msgstr "" @@ -204,10 +203,14 @@ msgstr "" msgid "Failed to write file" msgstr "" -#: Common/LinuxKernel.vala:385 +#: Common/LinuxKernel.vala:399 msgid "Fetching index from kernel.ubuntu.com..." msgstr "" +#: Common/LinuxKernel.vala:356 +msgid "Fetching index..." +msgstr "" + #: Utility/TeeJee.FileSystem.vala:210 Utility/TeeJee.FileSystem.vala:213 msgid "File copied" msgstr "" @@ -224,8 +227,7 @@ msgstr "" msgid "File moved" msgstr "" -#: Common/LinuxKernel.vala:943 Utility/TeeJee.FileSystem.vala:231 -#: Utility/TeeJee.FileSystem.vala:538 +#: Utility/TeeJee.FileSystem.vala:231 Utility/TeeJee.FileSystem.vala:538 msgid "File not found" msgstr "" @@ -234,14 +236,15 @@ msgstr "" msgid "File not found: %s" msgstr "" -#: Utility/TeeJee.FileSystem.vala:152 Utility/TeeJee.FileSystem.vala:155 -msgid "File read" -msgstr "" - #: Utility/TeeJee.FileSystem.vala:187 Utility/TeeJee.FileSystem.vala:190 msgid "File saved" msgstr "" +#: Common/LinuxKernel.vala:733 +#, c-format +msgid "Following kernels will be removed" +msgstr "" + #: Gtk/SettingsDialog.vala:192 msgid "GRUB Options" msgstr "" @@ -262,19 +265,32 @@ msgstr "" msgid "Ignore this update" msgstr "" -#: Common/LinuxKernel.vala:254 +#: Common/LinuxKernel.vala:262 msgid "Index is fresh" msgstr "" -#: Common/LinuxKernel.vala:251 +#: Common/LinuxKernel.vala:259 msgid "Index is stale" msgstr "" -#: Gtk/MainWindow.vala:360 Gtk/UpdateNotificationWindow.vala:147 +#: Gtk/MainWindow.vala:359 Gtk/UpdateNotificationWindow.vala:147 msgid "Install" msgstr "" -#: Console/AppConsole.vala:86 +#: Common/LinuxKernel.vala:797 +#, c-format +msgid "Install Linux v%s ? (y/n): " +msgstr "" + +#: Console/AppConsole.vala:94 +msgid "Install latest mainline kernel" +msgstr "" + +#: Console/AppConsole.vala:95 +msgid "Install latest point update for current series" +msgstr "" + +#: Console/AppConsole.vala:96 msgid "Install specified mainline kernel" msgstr "" @@ -282,32 +298,46 @@ msgstr "" msgid "Install this kernel" msgstr "" -#: Common/LinuxKernel.vala:1156 +#: Common/LinuxKernel.vala:1306 msgid "Installation completed with errors" msgstr "" -#: Common/LinuxKernel.vala:1153 +#: Common/LinuxKernel.vala:1303 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" -#: Common/LinuxKernel.vala:1053 Gtk/MainWindow.vala:211 +#: Common/LinuxKernel.vala:1201 Gtk/MainWindow.vala:208 msgid "Installed" msgstr "" -#: Utility/TeeJee.System.vala:275 Gtk/MainWindow.vala:84 -#: Gtk/MainWindow.vala:351 Gtk/MainWindow.vala:646 +#: Gtk/SettingsDialog.vala:257 +msgid "Internect connection timeout in " +msgstr "" + +#: Gtk/MainWindow.vala:350 Gtk/MainWindow.vala:547 Gtk/MainWindow.vala:683 +#: Utility/TeeJee.System.vala:292 msgid "Internet connection is not active" msgstr "" -#: Gtk/MainWindow.vala:153 +#: Gtk/MainWindow.vala:150 msgid "Kernel" msgstr "" -#: Gtk/MainWindow.vala:501 +#: Gtk/MainWindow.vala:531 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "" -#: Console/AppConsole.vala:85 +#: Common/LinuxKernel.vala:779 Console/AppConsole.vala:372 +#, c-format +msgid "Latest point update" +msgstr "" + +#: Common/LinuxKernel.vala:768 Console/AppConsole.vala:365 +#, c-format +msgid "Latest update" +msgstr "" + +#: Console/AppConsole.vala:92 msgid "List all available mainline kernels" msgstr "" @@ -315,7 +345,11 @@ msgstr "" msgid "List available kernels" msgstr "" -#: Gtk/MainWindow.vala:786 +#: Console/AppConsole.vala:93 +msgid "List installed kernels" +msgstr "" + +#: Gtk/MainWindow.vala:823 msgid "" "Mainline kernels can sometimes cause problems if there are proprietary " "drivers installed on your system. These issues include:\n" @@ -337,11 +371,11 @@ msgstr "" msgid "Missing Icon" msgstr "" -#: Gtk/MainWindow.vala:369 +#: Gtk/MainWindow.vala:368 msgid "Multiple Kernels Selected" msgstr "" -#: Console/AppConsole.vala:195 +#: Console/AppConsole.vala:296 msgid "Multiple kernels selected for installation. Select only one." msgstr "" @@ -349,15 +383,20 @@ msgstr "" msgid "No" msgstr "" -#: Gtk/MainWindow.vala:84 Gtk/MainWindow.vala:351 Gtk/MainWindow.vala:646 +#: Gtk/MainWindow.vala:350 Gtk/MainWindow.vala:547 Gtk/MainWindow.vala:683 msgid "No Internet" msgstr "" -#: Console/AppConsole.vala:349 Gtk/MainWindow.vala:780 +#: Console/AppConsole.vala:290 Console/AppConsole.vala:327 +msgid "No kernels specified" +msgstr "" + +#: Common/LinuxKernel.vala:787 Console/AppConsole.vala:377 +#: Console/AppConsole.vala:457 Gtk/MainWindow.vala:817 msgid "No updates found" msgstr "" -#: Gtk/MainWindow.vala:372 Gtk/MainWindow.vala:383 +#: Gtk/MainWindow.vala:371 Gtk/MainWindow.vala:382 msgid "Not Selected" msgstr "" @@ -373,36 +412,35 @@ msgstr "" msgid "Notify if a point release is available" msgstr "" -#: Console/AppConsole.vala:84 -msgid "Notify if kernel update is available" -msgstr "" - -#: Common/LinuxKernel.vala:1099 Utility/Gtk/CustomMessageDialog.vala:167 +#: Common/LinuxKernel.vala:1249 Utility/Gtk/CustomMessageDialog.vala:167 #: Utility/Gtk/CustomMessageDialog.vala:171 Utility/Gtk/GtkHelper.vala:121 -#: Utility/Gtk/DonationWindow.vala:95 #, c-format msgid "OK" msgstr "" -#: Console/AppConsole.vala:81 Gtk/AppGtk.vala:181 +#: Console/AppConsole.vala:103 Gtk/AppGtk.vala:181 msgid "Options" msgstr "" -#: Common/LinuxKernel.vala:922 +#: Gtk/SettingsDialog.vala:236 +msgid "Other" +msgstr "" + +#: Common/LinuxKernel.vala:1063 #, c-format msgid "Packages Available (DEB)" msgstr "" -#: Common/LinuxKernel.vala:930 +#: Common/LinuxKernel.vala:1071 #, c-format msgid "Packages Installed" msgstr "" -#: Common/Main.vala:102 +#: Common/Main.vala:107 msgid "Please install required packages and try again" msgstr "" -#: Common/LinuxKernel.vala:1177 +#: Common/LinuxKernel.vala:1327 msgid "Preparing to remove selected kernels" msgstr "" @@ -410,61 +448,70 @@ msgstr "" msgid "Print debug information" msgstr "" -#: Gtk/MainWindow.vala:344 +#: Gtk/MainWindow.vala:425 +msgid "Purge" +msgstr "" + +#: Gtk/MainWindow.vala:343 msgid "Refresh" msgstr "" -#: Gtk/MainWindow.vala:531 +#: Gtk/MainWindow.vala:566 msgid "Refreshing..." msgstr "" -#: Gtk/MainWindow.vala:377 +#: Gtk/MainWindow.vala:376 msgid "Remove" msgstr "" -#: Console/AppConsole.vala:90 +#: Console/AppConsole.vala:100 Console/AppConsole.vala:105 msgid "Remove files from application cache" msgstr "" -#: Console/AppConsole.vala:87 -msgid "Remove specified mainline kernel" +#: Console/AppConsole.vala:98 Gtk/MainWindow.vala:426 +msgid "Remove installed kernels older than running kernel" msgstr "" -#: Console/AppConsole.vala:217 -msgid "Run 'ukuu --list' and use the version string listed in first column" +#: Console/AppConsole.vala:97 +msgid "Remove specified kernel" msgstr "" -#: Console/AppConsole.vala:106 +#: Console/AppConsole.vala:204 Console/AppConsole.vala:318 +#: Console/AppConsole.vala:347 +msgid "Run '" +msgstr "" + +#: Console/AppConsole.vala:122 msgid "Run the application as admin with pkexec or sudo." msgstr "" -#: Common/LinuxKernel.vala:1053 Gtk/MainWindow.vala:211 +#: Common/LinuxKernel.vala:1201 Gtk/MainWindow.vala:208 msgid "Running" msgstr "" -#: Gtk/MainWindow.vala:369 +#: Gtk/MainWindow.vala:368 msgid "Select a single kernel to install" msgstr "" -#: Gtk/MainWindow.vala:372 +#: Gtk/MainWindow.vala:371 msgid "Select the kernel to install" msgstr "" -#: Gtk/MainWindow.vala:383 +#: Gtk/MainWindow.vala:382 msgid "Select the kernels to remove" msgstr "" -#: Common/LinuxKernel.vala:1172 +#: Common/LinuxKernel.vala:1322 msgid "" "Selected kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." msgstr "" -#: Utility/Gtk/DonationWindow.vala:81 -msgid "Send Email" +#: Gtk/SettingsDialog.vala:203 +msgid "Set GRUB menu timeout" msgstr "" -#: Gtk/SettingsDialog.vala:57 Gtk/MainWindow.vala:437 +#: Gtk/MainWindow.vala:475 Gtk/SettingsDialog.vala:57 msgid "Settings" msgstr "" @@ -484,32 +531,40 @@ msgstr "" msgid "Show notification dialog" msgstr "" -#: Gtk/MainWindow.vala:199 +#: Console/AppConsole.vala:101 +msgid "Show unstable and RC releases" +msgstr "" + +#: Gtk/SettingsDialog.vala:244 +msgid "Skip internet connection check" +msgstr "" + +#: Gtk/MainWindow.vala:196 msgid "Status" msgstr "" -#: Utility/TeeJee.Process.vala:511 +#: Utility/TeeJee.Process.vala:512 msgid "Stopped" msgstr "" -#: Console/AppConsole.vala:79 Gtk/AppGtk.vala:179 +#: Console/AppConsole.vala:86 Gtk/AppGtk.vala:179 msgid "Syntax" msgstr "" -#: Common/LinuxKernel.vala:103 -msgid "System architecture" +#: Console/AppConsole.vala:210 Gtk/AppGtk.vala:111 +msgid "Temp" msgstr "" -#: Utility/Gtk/AboutWindow.vala:340 +#: Utility/Gtk/AboutWindow.vala:330 #, c-format msgid "Third Party Tools" msgstr "" -#: Common/LinuxKernel.vala:1122 Gtk/MainWindow.vala:641 +#: Common/LinuxKernel.vala:1272 Gtk/MainWindow.vala:678 msgid "This kernel is already installed." msgstr "" -#: Common/LinuxKernel.vala:1230 +#: Common/LinuxKernel.vala:1380 msgid "" "This kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -523,20 +578,20 @@ msgid "" "-1 = Show indefinitely till user selects" msgstr "" -#: Utility/Gtk/AboutWindow.vala:356 +#: Utility/Gtk/AboutWindow.vala:346 #, c-format msgid "Translators" msgstr "" -#: Common/LinuxKernel.vala:1214 Common/LinuxKernel.vala:1272 +#: Common/LinuxKernel.vala:1364 Common/LinuxKernel.vala:1422 msgid "Un-install completed" msgstr "" -#: Common/LinuxKernel.vala:1217 Common/LinuxKernel.vala:1275 +#: Common/LinuxKernel.vala:1367 Common/LinuxKernel.vala:1425 msgid "Un-install completed with errors" msgstr "" -#: Console/AppConsole.vala:270 Gtk/AppGtk.vala:166 +#: Console/AppConsole.vala:202 Gtk/AppGtk.vala:166 msgid "Unknown option" msgstr "" @@ -551,26 +606,14 @@ msgid "" "-1 = Show indefinitely till user selects" msgstr "" -#: Common/LinuxKernel.vala:1343 +#: Common/LinuxKernel.vala:1493 msgid "Updating GRUB menu" msgstr "" -#: Console/AppConsole.vala:89 -msgid "Use specified user's cache directory" -msgstr "" - -#: Console/AppConsole.vala:144 Gtk/AppGtk.vala:109 -msgid "Using cache directory" -msgstr "" - -#: Gtk/MainWindow.vala:182 +#: Gtk/MainWindow.vala:179 msgid "Version" msgstr "" -#: Utility/Gtk/DonationWindow.vala:88 -msgid "Visit Website" -msgstr "" - #: Utility/TeeJee.Logging.vala:89 msgid "W" msgstr "" @@ -586,3 +629,7 @@ msgstr "" #: Utility/AppLock.vala:56 msgid "[Warning] Deleted invalid lock" msgstr "" + +#: Gtk/SettingsDialog.vala:271 +msgid "seconds" +msgstr "" From 466dd2e885127cfad26504bdefb11dd6c331dcf5 Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Mon, 11 Mar 2019 06:23:42 -0400 Subject: [PATCH 007/567] build scripts comments, minor touchups --- build-deb.sh | 15 ++++++++++----- build-installers.sh | 10 ++++++++-- build-source.sh | 4 ++-- ukuu.pot | 2 +- 4 files changed, 21 insertions(+), 10 deletions(-) diff --git a/build-deb.sh b/build-deb.sh index 5943c151..5b2b5f85 100755 --- a/build-deb.sh +++ b/build-deb.sh @@ -1,7 +1,12 @@ #!/bin/bash - -backup=`pwd` -DIR="$( cd "$( dirname "$0" )" && pwd )" +# Generates .deb packages +# Requires (at least): +# apt install ubuntu-dev-tools # install pbuilder-dist +# pbuilder-dist cosmic i386 create # create a build environment +# pbuilder-disp cosmic amd64 create # create a build environment + +backup=${PWD} +DIR=${0%*/} cd $DIR . ./BUILD_CONFIG @@ -37,8 +42,8 @@ echo "-------------------------------------------------------------------------- } -build_deb_for_dist xenial i386 -build_deb_for_dist xenial amd64 +build_deb_for_dist cosmic i386 +build_deb_for_dist cosmic amd64 #build_deb_for_dist stretch armel #build_deb_for_dist stretch armhf diff --git a/build-installers.sh b/build-installers.sh index 2e7f4856..83c303f5 100755 --- a/build-installers.sh +++ b/build-installers.sh @@ -1,7 +1,11 @@ #!/bin/bash +# Generates *.run installers +# Requires (at least): +# Run build-deb.sh first +# "sanity" from https://github.com/teejee2008/sanity-installer -backup=`pwd` -DIR="$( cd "$( dirname "$0" )" && pwd )" +backup=${PWD} +DIR=${0%/*} cd $DIR . ./BUILD_CONFIG @@ -33,6 +37,8 @@ echo "-------------------------------------------------------------------------- rm -rfv release/${arch}/${pkg_name}*.* # remove source files created by pbuilder cp -pv --no-preserve=ownership release/sanity.config release/${arch}/sanity.config + +# "sanity" command comes from https://github.com/teejee2008/sanity-installer sanity --generate --base-path release/${arch} --out-path release --arch ${arch} --xz if [ $? -ne 0 ]; then cd "$backup"; echo "Failed"; exit 1; fi diff --git a/build-source.sh b/build-source.sh index 99e4bad2..60984163 100755 --- a/build-source.sh +++ b/build-source.sh @@ -1,7 +1,7 @@ #!/bin/bash -backup=`pwd` -DIR="$( cd "$( dirname "$0" )" && pwd )" +backup=${PWD} +DIR=${0%/*} cd "$DIR" . ./BUILD_CONFIG diff --git a/ukuu.pot b/ukuu.pot index d256268b..c7eef513 100644 --- a/ukuu.pot +++ b/ukuu.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu 18.9\n" "Report-Msgid-Bugs-To: bw.aljex@gmail.com\n" -"POT-Creation-Date: 2019-03-11 00:10-0400\n" +"POT-Creation-Date: 2019-03-11 00:24-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" From 8458b7192c32f02be4057840f8c8de3054be2d4b Mon Sep 17 00:00:00 2001 From: Butterfly Date: Tue, 12 Mar 2019 19:36:28 +0300 Subject: [PATCH 008/567] Update ukuu-tr.po Update ukuu-tr.po --- po/ukuu-tr.po | 92 ++++++++++++++++++++++----------------------------- 1 file changed, 40 insertions(+), 52 deletions(-) diff --git a/po/ukuu-tr.po b/po/ukuu-tr.po index 3ff20fc1..9f300cbf 100644 --- a/po/ukuu-tr.po +++ b/po/ukuu-tr.po @@ -8,14 +8,14 @@ msgstr "" "Project-Id-Version: ukuu\n" "Report-Msgid-Bugs-To: bw.aljex@gmail.com\n" "POT-Creation-Date: 2019-03-10 23:56-0400\n" -"PO-Revision-Date: 2018-03-30 20:59+0300\n" -"Last-Translator: Gökhan Gökkaya \n" +"PO-Revision-Date: 2019-03-12 19:35+0300\n" +"Last-Translator: Gökhan GÖKKAYA \n" "Language-Team: Turkish\n" "Language: tr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Poedit 1.8.7.1\n" +"X-Generator: Poedit 2.0.6\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: Gtk/MainWindow.vala:496 @@ -31,7 +31,6 @@ msgid "Another instance of this application is running" msgstr "Bu uygulamanın başka bir örneği çalışıyor" #: Common/LinuxKernel.vala:108 -#, fuzzy msgid "Architecture" msgstr "Sistem mimarisi" @@ -42,7 +41,7 @@ msgstr "Sanatçılar" #: Console/AppConsole.vala:106 msgid "Assume Yes for all prompts (non-interactive mode)" -msgstr "" +msgstr "Tüm istemler için Evet'i kabul edin (etkileşimsiz kip)" #: Utility/Gtk/AboutWindow.vala:314 #, c-format @@ -63,7 +62,7 @@ msgstr "Önceki çekirdeklerin önyüklenmesi" #: Console/AppConsole.vala:209 Gtk/AppGtk.vala:110 msgid "Cache" -msgstr "" +msgstr "Önbellek" #: Gtk/ProgressWindow.vala:144 Gtk/TerminalWindow.vala:168 #: Gtk/UpdateNotificationWindow.vala:167 @@ -84,9 +83,8 @@ msgid "Check for kernel updates" msgstr "Çekirdek güncellemelerini kontrol et" #: Console/AppConsole.vala:91 -#, fuzzy msgid "Check for kernel updates and notify current user" -msgstr "Çekirdek güncellemelerini kontrol et" +msgstr "Çekirdek güncellemelerini kontrol et ve mevcut kullanıcıyı uyar" #: Gtk/TerminalWindow.vala:178 Utility/Gtk/AboutWindow.vala:295 msgid "Close" @@ -94,11 +92,11 @@ msgstr "Kapat" #: Console/AppConsole.vala:346 msgid "Command not specified" -msgstr "" +msgstr "Komut belirtilmedi" #: Console/AppConsole.vala:88 msgid "Commands" -msgstr "" +msgstr "Komutlar" #: Common/Main.vala:106 msgid "Commands listed below are not available on this system" @@ -107,7 +105,7 @@ msgstr "Aşağıda listelenen komutlar bu sistemde mevcut değil" #: Common/LinuxKernel.vala:740 #, c-format msgid "Continue ?" -msgstr "" +msgstr "Devam et ?" #: Utility/Gtk/AboutWindow.vala:322 #, c-format @@ -115,18 +113,16 @@ msgid "Contributions" msgstr "Destek verenler" #: Common/LinuxKernel.vala:724 -#, fuzzy msgid "Could not find any kernels to remove" -msgstr "Kaldırma için çekirdek seçin" +msgstr "Kaldırılacak çekirdek bulunamadı" #: Console/AppConsole.vala:314 Gtk/MainWindow.vala:100 msgid "Could not find requested version" msgstr "İstenen sürüm bulunamadı" #: Common/LinuxKernel.vala:718 -#, fuzzy msgid "Could not find running kernel in list!" -msgstr "İstenen sürüm bulunamadı" +msgstr "İstenen sürüm bulunamadı!" #: Utility/TeeJee.FileSystem.vala:349 Utility/TeeJee.FileSystem.vala:352 #: Utility/TeeJee.FileSystem.vala:378 @@ -210,11 +206,11 @@ msgstr "Dosya yazma başarısız" #: Common/LinuxKernel.vala:399 msgid "Fetching index from kernel.ubuntu.com..." -msgstr "kernel.ubuntu.com alanından içerik listesi alınıyor ..." +msgstr "İçerik listesi kernel.ubuntu.com alanından alınıyor..." #: Common/LinuxKernel.vala:356 msgid "Fetching index..." -msgstr "" +msgstr "İçerik dizini alınıyor..." #: Utility/TeeJee.FileSystem.vala:210 Utility/TeeJee.FileSystem.vala:213 msgid "File copied" @@ -248,7 +244,7 @@ msgstr "Dosya kaydedildi" #: Common/LinuxKernel.vala:733 #, c-format msgid "Following kernels will be removed" -msgstr "" +msgstr "Aşağıdaki çekirdekler silinecek" #: Gtk/SettingsDialog.vala:192 msgid "GRUB Options" @@ -285,16 +281,15 @@ msgstr "Kur" #: Common/LinuxKernel.vala:797 #, c-format msgid "Install Linux v%s ? (y/n): " -msgstr "" +msgstr "Linux v%s Kur ? (e/h): " #: Console/AppConsole.vala:94 -#, fuzzy msgid "Install latest mainline kernel" -msgstr "Belirtilen mainline çekirdeğini kur" +msgstr "En son mainline çekirdeğini kur" #: Console/AppConsole.vala:95 msgid "Install latest point update for current series" -msgstr "" +msgstr "Mevcut çekirdek serisi için en güncelleme noktasını kur" #: Console/AppConsole.vala:96 msgid "Install specified mainline kernel" @@ -318,9 +313,8 @@ msgid "Installed" msgstr "Kurulu" #: Gtk/SettingsDialog.vala:257 -#, fuzzy msgid "Internect connection timeout in " -msgstr "İnternet bağlantısı aktif değil" +msgstr "İnternet bağlantısı aktif değil " #: Gtk/MainWindow.vala:350 Gtk/MainWindow.vala:547 Gtk/MainWindow.vala:683 #: Utility/TeeJee.System.vala:292 @@ -338,12 +332,12 @@ msgstr "Ubuntu tabanlı dağıtımlar için çekirdek güncelleme aracı" #: Common/LinuxKernel.vala:779 Console/AppConsole.vala:372 #, c-format msgid "Latest point update" -msgstr "" +msgstr "Son güncelleme noktası" #: Common/LinuxKernel.vala:768 Console/AppConsole.vala:365 #, c-format msgid "Latest update" -msgstr "" +msgstr "Son güncelleme" #: Console/AppConsole.vala:92 msgid "List all available mainline kernels" @@ -354,12 +348,10 @@ msgid "List available kernels" msgstr "Tüm çekirdekleri listele" #: Console/AppConsole.vala:93 -#, fuzzy msgid "List installed kernels" -msgstr "Tüm çekirdekleri listele" +msgstr "Kurulu çekirdekleri listele" #: Gtk/MainWindow.vala:823 -#, fuzzy msgid "" "Mainline kernels can sometimes cause problems if there are proprietary " "drivers installed on your system. These issues include:\n" @@ -380,18 +372,17 @@ msgstr "" "çekirdekleri bazen sorunlara neden olabilir. Bunlar arasında aşağıdakiler " "olabilir:\n" "\n" -"\\342\\226\\260 Kablosuz ağ aygıtının çalışmaması\n" -"\\342\\226\\260 Sistem açılışının siyah ekranda kalması\n" -"\\342\\226\\260 Rsstgele sistem donmaları\n" +"▰ Kablosuz ağ aygıtının çalışmaması\n" +"▰ Sistem açılışının siyah ekranda kalması\n" +"▰ Rastgele sistem donmaları\n" "\n" "Bu sorunlardan herhangi biriyle karşılaşırsanız paniğe kapılmayın.\n" "\n" -"\\342\\226\\260 Sisteminizi yeniden başlatın\n" -"\\342\\226\\260 GRUB açılış menüsünden 'Gelişmiş Açılış Seçenekleri'ni " -"seçin\n" -"\\342\\226\\260 Bu ekranda listelenenlerden önceki bir çekirdeği seçin\n" -"\\342\\226\\260 Sisteminiz seçilen çekirdek kullanılarak başlatılacaktır\n" -"\\342\\226\\260 Şimdi sorun oluşturan çekirdeği kaldırabilirsiniz\n" +"▰ Sisteminizi yeniden başlatın\n" +"▰ GRUB açılış menüsünden 'Gelişmiş Açılış Seçenekleri'ni seçin\n" +"▰ Bu ekranda listelenenlerin önceki sürümlerinden birini seçin\n" +"▰ Sisteminiz seçilen çekirdek kullanılarak başlatılacaktır\n" +"▰ Şimdi sorun oluşturan çekirdeği kaldırabilirsiniz\n" #: Utility/Gtk/GtkHelper.vala:272 msgid "Missing Icon" @@ -415,7 +406,7 @@ msgstr "İnternet Yok" #: Console/AppConsole.vala:290 Console/AppConsole.vala:327 msgid "No kernels specified" -msgstr "" +msgstr "Belirtilen çekirdek yok" #: Common/LinuxKernel.vala:787 Console/AppConsole.vala:377 #: Console/AppConsole.vala:457 Gtk/MainWindow.vala:817 @@ -450,7 +441,7 @@ msgstr "Seçenekler" #: Gtk/SettingsDialog.vala:236 msgid "Other" -msgstr "" +msgstr "Diğer" #: Common/LinuxKernel.vala:1063 #, c-format @@ -476,7 +467,7 @@ msgstr "Hata ayıklama bilgisini yazdır" #: Gtk/MainWindow.vala:425 msgid "Purge" -msgstr "" +msgstr "Kaldır" #: Gtk/MainWindow.vala:343 msgid "Refresh" @@ -496,17 +487,16 @@ msgstr "Dosyaları uygulama önbelleğinden sil" #: Console/AppConsole.vala:98 Gtk/MainWindow.vala:426 msgid "Remove installed kernels older than running kernel" -msgstr "" +msgstr "Çalışan çekirdekten eski olan kurulu çekirdekleri kaldır" #: Console/AppConsole.vala:97 -#, fuzzy msgid "Remove specified kernel" -msgstr "Belirtilen mainline çekirdeğini kaldır" +msgstr "Belirtilen çekirdeği kaldır" #: Console/AppConsole.vala:204 Console/AppConsole.vala:318 #: Console/AppConsole.vala:347 msgid "Run '" -msgstr "" +msgstr "Çalıştır '" #: Console/AppConsole.vala:122 msgid "Run the application as admin with pkexec or sudo." @@ -538,7 +528,7 @@ msgstr "" #: Gtk/SettingsDialog.vala:203 msgid "Set GRUB menu timeout" -msgstr "" +msgstr "Grub menüsü zaman aşımını ayarla" #: Gtk/MainWindow.vala:475 Gtk/SettingsDialog.vala:57 msgid "Settings" @@ -561,14 +551,12 @@ msgid "Show notification dialog" msgstr "Bildirim iletişimini göster" #: Console/AppConsole.vala:101 -#, fuzzy msgid "Show unstable and RC releases" -msgstr "Kararsız ve RC sürümleri gizle" +msgstr "Kararsız ve RC sürümleri göster" #: Gtk/SettingsDialog.vala:244 -#, fuzzy msgid "Skip internet connection check" -msgstr "İnternet bağlantısı aktif değil" +msgstr "İnternet bağlantı kontrolünü atla" #: Gtk/MainWindow.vala:196 msgid "Status" @@ -584,7 +572,7 @@ msgstr "Sözdizimi" #: Console/AppConsole.vala:210 Gtk/AppGtk.vala:111 msgid "Temp" -msgstr "" +msgstr "Geçici" #: Utility/Gtk/AboutWindow.vala:330 #, c-format @@ -677,7 +665,7 @@ msgstr "[Uyarı] Geçersiz kilit silindi" #: Gtk/SettingsDialog.vala:271 msgid "seconds" -msgstr "" +msgstr "saniye" #~ msgid "Run 'ukuu --list' and use the version string listed in first column" #~ msgstr "" From f2f35b39a4ebbd89e950bbdcf67056a73b6e5d55 Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Tue, 12 Mar 2019 14:07:21 -0400 Subject: [PATCH 009/567] More branding and building un-hardcoding. Remove all GRUB features. Move user cfg files to an ukuu dir. --- BRANDING.mak | 14 + BUILD_CONFIG | 6 - MKDEB_TARGETS | 18 + README.md | 80 ++--- build-deb.sh | 89 +++-- build-installers.sh | 55 ---- build-source.sh | 45 +-- debian/changelog | 30 +- debian/source/options | 3 + main_window.png | Bin 0 -> 39398 bytes po/ukuu-es.po | 305 +++++++++-------- po/ukuu-fr.po | 303 +++++++++-------- po/ukuu-hr.po | 301 +++++++++-------- po/ukuu-nl.po | 305 +++++++++-------- po/ukuu-pl.po | 304 +++++++++-------- po/ukuu-ru.po | 251 +++++++------- po/ukuu-sv.po | 301 +++++++++-------- po/ukuu-tr.po | 308 +++++++++--------- release/sanity.config | 7 - src/Common/LinuxKernel.vala | 81 +---- src/Common/Main.vala | 77 +---- src/Console/AppConsole.vala | 26 -- src/Gtk/MainWindow.vala | 38 +-- src/Gtk/SettingsDialog.vala | 45 --- src/Gtk/TerminalWindow.vala | 8 +- src/makefile | 72 ++-- ...jeetech.pkexec.ukuu.policy => ukuu.policy} | 5 +- ukuu.geany | 52 +-- ukuu.pot | 207 +++++------- 29 files changed, 1481 insertions(+), 1855 deletions(-) create mode 100644 BRANDING.mak delete mode 100644 BUILD_CONFIG create mode 100644 MKDEB_TARGETS delete mode 100755 build-installers.sh create mode 100644 debian/source/options create mode 100644 main_window.png delete mode 100644 release/sanity.config rename src/share/polkit-1/actions/{in.teejeetech.pkexec.ukuu.policy => ukuu.policy} (84%) diff --git a/BRANDING.mak b/BRANDING.mak new file mode 100644 index 00000000..807d2345 --- /dev/null +++ b/BRANDING.mak @@ -0,0 +1,14 @@ +# This file is in Makefile format + +# The goal is to define these values in a single place, +# and have as many other places as possible all refer to this. + +# Use Makefile syntax, as this is actually included by other makefiles, +# but keep it simple enough that it can also be parsed easily by anything else. + +BRANDING_SHORTNAME = ukuu +BRANDING_LONGNAME = Ubuntu Kernel Update Utility +BRANDING_VERSION = 18.9 +BRANDING_AUTHORNAME = Brian K. White +BRANDING_AUTHOREMAIL = bw.aljex@gmail.com +BRANDING_WEBSITE = https://github.com/aljex/ukuu diff --git a/BUILD_CONFIG b/BUILD_CONFIG deleted file mode 100644 index f0c31228..00000000 --- a/BUILD_CONFIG +++ /dev/null @@ -1,6 +0,0 @@ - -app_fullname="Ubuntu Kernel Update Utility" -app_name="ukuu" -pkg_name="ukuu" -pkg_version=$(dpkg-parsechangelog --show-field Version) -git_origin="git@github.com:aljex/ukuu.git" diff --git a/MKDEB_TARGETS b/MKDEB_TARGETS new file mode 100644 index 00000000..82ca6a3c --- /dev/null +++ b/MKDEB_TARGETS @@ -0,0 +1,18 @@ +# This file is sourced by build-deb.sh , use bash syntax. + +# DEBS[] +# Optional: Specify the distributions & architectures to generate *.deb +# files for. Defaut = single target same as host, IE: MKDEBS[disco]=amd64 +# Format is a bash associative array with [dist]=arch,arch,arch,... + +# Don't try to build for xenial: +# Gtk/TerminalWindow.vala:242.19-242.29: error: Argument 1: Cannot convert from `char[]' to `string' +# term.feed_child(c.to_utf8()); +# ^^^^^^^^^^^ + +# just let it do the default +#declare -A DEBS=( +# [xenial]=i386,amd64 +# [cosmic]=i386,amd64 +# [disco]=i386,amd64 +#) diff --git a/README.md b/README.md index 641a2056..d929110c 100644 --- a/README.md +++ b/README.md @@ -2,55 +2,47 @@ This is a tool for installing the latest mainline Linux kernel on Ubuntu-based distributions. -![](https://2.bp.blogspot.com/-76C_l3BcJyg/WNdzTpSoiKI/AAAAAAAAGKs/xOvB-LCH2cYiDpdbqWkeOLhY9I7TVACJwCLcB/s1600/ukuu_main_window.png) - -### About This Fork - -Since the original author stopped maintaining the free version of Ukuu and turned to a [paid version](https://teejeetech.in/tag/ukuu/), Several people have forked this project, and this is but one more. This fork started with https://github.com/stevenpwered/ukuu, and merged in https://github.com/cloyce/ukuu, and then I intend to add my own tweaks: - -* First TODO Item (not done yet): STOP SAVING 6 GIGS OF KERNEL PACKAGES IN ~/.cache/ukuu HOLY GOBSMACK WTF ????? -
-bkw@negre:~$ du -sh .cache/ukuu
-5.5G    .cache/ukuu
-
- Until then: As a work-around, you can create a wrapper shell script or menu entry to always run "ukuu --clean-cache" after "ukuu-gtk" - -* Remove all grub options. A kernel package installer has no business messing with grub. dpkg already does the necessary part, which is just adding/removing entries without making any other changes. - -### Enhancements - -* Option in settings to skip internet connection check - -Please feel free to submit a feature request in the Issues section. +![Main window screenshot](main_window.png) ### Features -* Fetches list of kernels from [kernel.ubuntu.com](http://kernel.ubuntu.com/~kernel-ppa/mainline/) -* Displays notifications when a new kernel update is available. -* Downloads and installs packages automatically - -### Screenshots - -![](https://2.bp.blogspot.com/-76C_l3BcJyg/WNdzTpSoiKI/AAAAAAAAGKs/xOvB-LCH2cYiDpdbqWkeOLhY9I7TVACJwCLcB/s1600/ukuu_main_window.png) -_Main Window_ - -![](https://2.bp.blogspot.com/-ATv4vsOVOnc/WNdztEZHJNI/AAAAAAAAGKw/1pOIuyu8ITo4z8mnMK6MfCZ3T_Nd4gQNQCLcB/s1600/ukuu_settings.png) -_Settings Window_ - -![](https://4.bp.blogspot.com/-Y-1zhHcpk1M/WNd42_ybTyI/AAAAAAAAGLE/gLaBdWpoh54OGrvF81Ka1bCVJjZ0WqKrQCLcB/s1600/ukuu_console_options.png) -_Console Options_ +* Fetches list of available kernels from [Ubuntu Mainline PPA](http://kernel.ubuntu.com/~kernel-ppa/mainline/) +* Optionally watches and displays notifications when a new kernel update is available +* Downloads and installs packages automatically +* Display available and installed kernels conveniently +* Install/remove kernels from gui +* For each kernel, the related packages (headers & modules) are installed or removed at the same time ### Downloads & Source Code Ukuu is written using Vala and GTK3 toolkit. Source code and binaries are available from the [GitHub project page](https://github.com/aljex/ukuu). -### Build instruction +### Build + sudo apt install libgee-0.8-dev libjson-glib-dev libvte-2.91-dev valac + git clone https://github.com/aljex/ukuu.git + cd ukuu + make + sudo make install -#### Ubuntu-based Distributions (Ubuntu, Linux Mint, Elementary, etc) - - in a terminal window: - - sudo apt install libgee-0.8-dev libjson-glib-dev libvte-2.91-dev valac - git clone https://github.com/aljex/ukuu.git - cd ukuu - make all - sudo make install +### About This Fork +The original author stopped maintaining the original GPL version of ukuu and switched to a [paid license](https://teejeetech.in/tag/ukuu/) for future versions. So, several people have forked that project, and this is one. + +### Enhancements / Deviations from the original author's final GPL version + +* (from [stevenpowerd](https://github.com/stevenpowered/ukuu)) Option to skip internet connection check +* (from [cloyce](https://github.com/cloyce/ukuu)) Option to include or hide pre-release kernels +* Removed all GRUB options +* Removed all donate buttons, links, dialogs + +### Development Plans / TODO +* Stop consuming over 5GB in ```~/.cache/ukuu``` with kernel package files +:Until then: As a work-around, "ukuu --clean-cache" deletes the cache +* Better (more automatic) initial sizes for the window and the columns in the kernel list display so you don't have to manually expand them +* More efficient download & caching of info about available kernels, without the kernel packages +* Clean up build warnings +* Clean up run-time GTK warnings +* Make http client configurable (curl/wget/other) +* Reduce dependencies, stop using aptitude just to query installed packages when you can get the info from apt or even dpkg, use the same download client for everything instead of using both curl and aria +* Customizable appearance +* Option to specify kernel variant (generic, lowlatency, snapdragon, etc...) +* Configurable version threshhold instead of arbitrary hard-coded "hide older than 4.0" +* Improve the annoying pkexec behavior. It would be nicer to run lxqt-sudo or gsudo or pkexec etc one time for the whole session, and only have to enter a password once, instead of once per user action. But currently, if you do that, it creates files in the users home directory that are owned by root, which the user cannot then remove. diff --git a/build-deb.sh b/build-deb.sh index 5b2b5f85..db39dc50 100755 --- a/build-deb.sh +++ b/build-deb.sh @@ -1,50 +1,77 @@ #!/bin/bash # Generates .deb packages -# Requires (at least): -# apt install ubuntu-dev-tools # install pbuilder-dist -# pbuilder-dist cosmic i386 create # create a build environment -# pbuilder-disp cosmic amd64 create # create a build environment +# 2019 Brian K. White +# Requires (one time): +# sudo apt install ubuntu-dev-tools # install pbuilder-dist +# pbuilder-dist cosmic i386 create # create a build environment, repeat for all dists & arches +# Requires (periodically): +# pbuilder-disp cosmic amd64 update # update a build environment, repeat for all dists & arches -backup=${PWD} -DIR=${0%*/} -cd $DIR +################################################################################ +# functions -. ./BUILD_CONFIG +abrt () { echo -e "${SELF}: ${@:-Failed}" >&2 ; exit 1 ; } -sh build-source.sh +_mkdeb () { + echo "" + echo "==========================================================================" + echo " ${SELF}: dist=\"${dist}\" arch=\"${arch}\"" + echo "==========================================================================" + echo "" -build_deb_for_dist() { + [[ "${dist}" ]] || abrt "_mkdeb(): Missing \"dist\"" + [[ "${arch}" ]] || abrt "_mkdeb(): Missing \"arch\"" -dist=$1 -arch=$2 + # check if base.tgz exists + unset a + [[ "${arch}" == "${host_arch}" ]] || a="-${arch}" + b=~/pbuilder/${dist}${a}-base.tgz + [[ -f ${b} ]] || abrt "Missing ${b}\nRun \"pbuilder-dist ${dist} ${arch} create\"" + # TODO - check if base.tgz is old, and automatically run "pbuilder-dist ... update" -echo "" -echo "==========================================================================" -echo " build-deb.sh : $dist-$arch" -echo "==========================================================================" -echo "" + mkdir -pv release/${dist}/${arch} -mkdir -pv release/${arch} + CMD="pbuilder-dist ${dist} ${arch} build release/source/${BRANDING[SHORTNAME]}*.dsc --buildresult release/${dist}/${arch}" + ${CMD} || abrt "Failed: \"${CMD}\"" -echo "-------------------------------------------------------------------------" + mv release/${dist}/${arch}/${BRANDING[SHORTNAME]}*.deb release/${dist}/${BRANDING[SHORTNAME]}-v${PKG_VERSION}-${arch}.deb || abrt -pbuilder-dist $dist $arch build release/source/${pkg_name}*.dsc --buildresult release/$arch +} -if [ $? -ne 0 ]; then cd "$backup"; echo "Failed"; exit 1; fi +################################################################################ +# main -echo "--------------------------------------------------------------------------" +SELF=${0##*/} +cd ${0%/*} || abrt "Failed cd to \"${0%/*}\"" -cp -pv --no-preserve=ownership release/${arch}/${pkg_name}*.deb release/${pkg_name}-v${pkg_version}-${arch}.deb +# get pkg name from BRANDING.mak +unset BRANDING ;declare -A BRANDING +[[ -s BRANDING.mak ]] && while read k x v ;do + [[ "${k}" =~ ^BRANDING_ ]] && BRANDING[${k#*_}]="${v}" +done < BRANDING.mak +[[ ${BRANDING[SHORTNAME]} ]] || abrt "Missing BRANDING_SHORTNAME (check BRANDING.mak)" -if [ $? -ne 0 ]; then cd "$backup"; echo "Failed"; exit 1; fi +# get pkg version from debian/changelog (not branding.mak) +PKG_VERSION=`dpkg-parsechangelog --show-field Version` -echo "--------------------------------------------------------------------------" +# get deb build targets +host_dist=`lsb_release -sc` +host_arch=`dpkg --print-architecture` +unset DEBS +[[ -s MKDEB_TARGETS ]] && . ./MKDEB_TARGETS # no err if not present +[[ "${#DEBS[@]}" -lt 1 ]] && declare -A DEBS[${host_dist}]=${host_arch} # default -} +export host_dist host_arch BRANDING PKG_VERSION + +# generate the source dsc and tar files +./build-source.sh || abrt "Failed: build-source.sh" + +# generate debs +for dist in ${!DEBS[@]} ;do + for arch in ${DEBS[${dist}]//,/ } ;do _mkdeb ;done +done -build_deb_for_dist cosmic i386 -build_deb_for_dist cosmic amd64 -#build_deb_for_dist stretch armel -#build_deb_for_dist stretch armhf +echo +echo "Generated:" +find release -type f -name '*.deb' -cd "$backup" diff --git a/build-installers.sh b/build-installers.sh deleted file mode 100755 index 83c303f5..00000000 --- a/build-installers.sh +++ /dev/null @@ -1,55 +0,0 @@ -#!/bin/bash -# Generates *.run installers -# Requires (at least): -# Run build-deb.sh first -# "sanity" from https://github.com/teejee2008/sanity-installer - -backup=${PWD} -DIR=${0%/*} -cd $DIR - -. ./BUILD_CONFIG - -rm -vf release/*.run -rm -vf release/*.deb - -# build debs -sh build-deb.sh - - -for arch in i386 amd64 -do - -rm -rfv release/${arch}/files -mkdir -pv release/${arch}/files - -echo "" -echo "==========================================================================" -echo " build-installers.sh : $arch" -echo "==========================================================================" -echo "" - -dpkg-deb -x release/${pkg_name}-v${pkg_version}-${arch}.deb release/${arch}/files - -if [ $? -ne 0 ]; then cd "$backup"; echo "Failed"; exit 1;fi - -echo "--------------------------------------------------------------------------" - -rm -rfv release/${arch}/${pkg_name}*.* # remove source files created by pbuilder -cp -pv --no-preserve=ownership release/sanity.config release/${arch}/sanity.config - -# "sanity" command comes from https://github.com/teejee2008/sanity-installer -sanity --generate --base-path release/${arch} --out-path release --arch ${arch} --xz - -if [ $? -ne 0 ]; then cd "$backup"; echo "Failed"; exit 1; fi - -mv -v release/*${arch}.run release/${pkg_name}-v${pkg_version}-${arch}.run - -echo "--------------------------------------------------------------------------" - -done - -cp -vf release/*.run ../PACKAGES/ -cp -vf release/*.deb ../PACKAGES/ - -cd "$backup" diff --git a/build-source.sh b/build-source.sh index 60984163..191ede1e 100755 --- a/build-source.sh +++ b/build-source.sh @@ -1,45 +1,50 @@ #!/bin/bash +# Generates debian source dsc and tar files +# This is run by build-deb.sh -backup=${PWD} -DIR=${0%/*} -cd "$DIR" +################################################################################ +#functions -. ./BUILD_CONFIG +abrt () { echo "${SELF}: ${@:-Failed}" >&2 ; exit 1 ; } + +################################################################################ +# main + +SELF=${0##*/} +cd ${0%/*} || abrt "Failed to cd \"${0%/*}\"" echo "" echo "==========================================================================" -echo " build-source.sh" +echo " ${0}" echo "==========================================================================" echo "" -echo "app_name: $app_name" -echo "pkg_name: $pkg_name" +# get pkg name from BRANDING.mak +[[ "${BRANDING[SHORTNAME]}" ]] || { + unset BRANDING ;declare -A BRANDING + [[ -s BRANDING.mak ]] && while read k x v ; do + [[ "${k}" =~ ^BRANDING_ ]] && BRANDING[${k#*_}]="${v}" + done < BRANDING.mak +} +[[ "${BRANDING[SHORTNAME]}" ]] || abrt "Missing BRANDING_SHORTNAME (check BRANDING.mak)" + +echo "pkg name: ${BRANDING[SHORTNAME]}" echo "--------------------------------------------------------------------------" # clean build dir - rm -rfv /tmp/builds mkdir -pv /tmp/builds - make clean - mkdir -pv release/source - echo "--------------------------------------------------------------------------" # build source package -dpkg-source --build ./ - -mv -vf ../$pkg_name*.dsc release/source/ -mv -vf ../$pkg_name*.tar.xz release/source/ - -if [ $? -ne 0 ]; then cd "$backup"; echo "Failed"; exit 1; fi +dpkg-source --build . || abrt +mv -vf ../${BRANDING[SHORTNAME]}*.dsc release/source/ || abrt +mv -vf ../${BRANDING[SHORTNAME]}*.tar.* release/source/ || abrt echo "--------------------------------------------------------------------------" # list files ls -l release/source - echo "-------------------------------------------------------------------------" - -cd "$backup" diff --git a/debian/changelog b/debian/changelog index 7c885aee..de3c3e51 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,12 +1,24 @@ -ukuu (18.9.3-bkw) disco; urgency=medium - - * Fork from stevenpowerd - * merge cloyce - * remove references to paid version - * remove donation window and other donation links - * fix compile error - * update Readme.md - * branding - change all branding strings to defines derived from makefile +ukuu (18.9.4-bkw) disco; urgency=medium + * Removed all grub options + * Fix formatting in per-kernel package list tooltip + * New screenshots for readme, and self-hosted + * Removed build-installers.sh and other references to sanity *.run installers + * Relocate config.json & ukuu-notify.sh to .config/ukuu/ dir + * Moved branding to BRANDING.mak so other scripts can read it too + * Removed all hard-coding from build-deb.sh & build-source.sh + + -- Brian K. White Mon, 11 Mar 2019 17:50:38 -0500 + + +ukuu (18.9.3-bkw) cosmic; urgency=medium + + * Fork from http://github.com/stevenpowerd/ukuu + * Merge http://github.com/cloyce/ukuu + * Remove references to paid version + * Remove donation window and other donation links + * Fix compile error + * Update Readme.md + * Branding - Change all branding strings to variables derived from makefile -- Brian K. White Fri, 8 Mar 2019 22:57:57 -0500 diff --git a/debian/source/options b/debian/source/options new file mode 100644 index 00000000..101412a0 --- /dev/null +++ b/debian/source/options @@ -0,0 +1,3 @@ +#git-ref = "master" +#git-depth = "1" +compression = "bzip2" diff --git a/main_window.png b/main_window.png new file mode 100644 index 0000000000000000000000000000000000000000..ee3b601e5b73ada7a0b4591354ce83550731c4f7 GIT binary patch literal 39398 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%0DroNv7y&D_noIDEcd`vK51D>ZoS# z-{^gZ;A*d{2OR%=>sv4%)*|+n2o!C_!O+<0wTn~i`3-b8R1EZjT78I-DGBkNLAer{ zNv!iW$)wlgUD63Oj&)rQhWZjCG=I>;(OS;HH7*=+?%55p>p>#>S4-TPNVNQW!P3vh zoR@z{)q8jZO8oV9I_~T<>$Opf7D;#^%#q^HHyUEm^j^Xj0uEYEVE5RM2UhYEV_pT+ zZ;GnnFdDVERSBxyJQ=sA2vKVPw=j7qXeJs^@on{u-0Z8g`0PJQ+@rnexlqRpI0kyg4Eio zmS2hqV%f@Iy2FDqiNrT(`Kl+bEWng<#L=2rREoR%;y-P&Z+$k<;~MVSRp&DA*Zyt8-|nO)c3?&2G|ui&vR{Qr{s|2J?Dc^gd*N2l#D zq8nZm@5*%Bf#wK)lH(>KHrmZUza=QxYASC;u4;DpGee_nIH8o4)0w!T@0GDf{mo2~|j_%neC`R%e6IdxqaK+m>Yql*R3kXwFUL9BZ3vDPn>1ImI< z>L-uzN+dUw7idI!ihB^Tb;52h>96|4!_@LWHZ;CLJW0Esk+5W{2ERcKZ322&%p4A; zpn}OT%&0kWw>itEF$nP_#HSh4jZT}@pZ;KvRVa;uz~YsKCgmRJJ5m>diD3IsuyUpN zP|=K$`PPxlPb*uOH7QHjm_rbC6}i5`pdo|1as*ErcbaAHQoc3Gh)rWt98*&I@F3X< zTYM3F@epUZsst~UbYkFk$GM1{&401851s~XIl37NusUm{wWVNzYh^&nKWtiydDLSmg+Z_;Kj0aa-xBzDV6eH&UyScb zpgEa<& zv-3-!!~iNNeTNZz?=WzCQG~#9E+p?J_`WIAO)VPl)a$Q(RHI_la-;$A!ZuBVFbjRh zae^eo|6Vxho4y-EP}A7Cq`uY-OXSdu$@zZs4$=;$$R&=h8Xg{&*mmTr<|TvboQ*6q zPd#L!c=wLDfg5iQukUzlr4lm}ZGF9**N;vJJRR&sX4Y9HKa|n2Racf)82G@p^p*)U zem7N*J9?h5c&_@G@&0oMyA^{{$9Gacf5g5%E?hMggF4$iihO(a-*Scpyx(2Do^tz{ z_vpv%n5YS&@B)#Xtfkx25BXKUQLyqWe5?w|LH8uIg5RETbR-xp+y4h({@)hOe-ZW6 zC1xT_Ljx?@yfZzuck-9QJA`XqaQhP}nLsAu#hLAExNkFDXP=%zchh%;^HAbr=e*gd zeGGH7Voxpwo|1M#-T`dcLfsPiyE(k8Wun*l%KrrE#%w6qFH?*+Sl|kx(r5F z8{nvZQmWE3N{*fqpona2#*9CTk>ce{yE$Yq_~j=zgz~NjtwV5&o-$-ZGrfr9M%?oe zE}}O(-^IAUF6rE3APfwIw}m58N2`YoHtU-)W$x*BM2u^pZVQx&PVH`>_>;|)83kqF zI;~@RL2A^n>-36!r;^%RpI{Tsm{!_>XAoemE@mRawh|ft#N-{Umf)>C^O=aKqv=Sb zt6+2IXv791?ZnM5JvooRDP}aoD-KeJP0_)@{BiQw+sBHkUDO*hjpdK_O@Vx@9;K4` zG_c`2+#pZ0zMp{ir^ zbyYu7tl?bDC>K6629k+l4~A|-DL}?NiTDcbMEkO|hfY^K z%k^w+(#lo8ejAn{kCwZ4MIvHzV=YjQ?GGSqXqBp=+@pX3r(QLOc)_@;AqGB#_tYE34zmtc@%-Y=x=0Ee4uCH~ ztl<8NPNfoNO2(JslLesOeL$gj*~Hyuh8Ny8^(#~rTGBnuVW6;(0SXSoB7tz=cB|Mi5*+~ntkkNiC)=^&c z%Ej3plwZAttD!13?WHd{8^bI{e?9ld3t_^zvOFvBf(3pr@D^8sPUNzNPuxiNvF{sS zsKz~OClb<^FTg4NV_OIt?IA1P7})gGQp5`nitX;DIebP8p_bpGW}EuxrS(Gf-t*SmfFyah;B zc>2k*H%XM8O$&P4>HXz7wyz8{Mhf``mr9K|dzDisFoGjKdTNZ6? zSQ?r1!YqMpNr4ePS1D}c*TVWcJ1#VED*kKHbv3RXU<0RbV_?ccD$dKEjQc`8l}2&& zO#`>2-%subYW?0v&KEzuk4;N|T)8DqYcj(psG8RN$N&C{k2MWh?k+8DfHolk75TAR z3vg(BS!Z}|OiZ{v@W8-KbT|RCR_|Smk82;l#^>Y8E)>+80s#H$eO0ALM^NI8TWFC^ z?uSb8dujfhY3?*C(mjN?{<=0{TDM?)k_SAmz%8L&S8@XRhB?89Hh=JPVF)S+heFBs zzOs~434TbeEc3872$8B6+F_yjR47p30qBxh^; z&=h@6j!bc3z&_xU+za$q#y4N3HBmYL4W6c4PJlB_=33zFqYzP0wVo?zI|l@~cfXUP zP&Z~y9~x{1z>!)7m0Sx0dP#b0NV=B14#gTwNYosGI@QZ2jA)sxh@o$A%PA#N%jn4U z3PP!;(G|RWjX39sIijbnXGC`hB)(0oE!;RMbTrsxJnuW1o+BFILLcb}*%hx|MNZv+ zQ~T-r%`;8+oR=nY315?+(*qA1czg-In-0pxI+nKdhF8LVozCnBn1>sw+;Y!5&yi%x zmUAE3iZMmUyl7$U(B&*bqxkiBHV5RNm5P5cx)i0+AmjnNKzx=sse)p>nLbmdDUwab z(BiQF!BKfXRF$s37b2M4t9SS3QrC( ziR`+j`A4hL;$KFk*v(Ymz8ix93pc&fLx+0F6|P>wbV(Bl*<52daoPD(Oiqe{0a7BU zjRh@q9Jt847Zp6z-h!H3{}Z|XZ@n!-A}sGCI&H8P!(zsfq?e>!Y8Pxnv91L>RmSJKj;LXK@br}E~$U`!LN;W7CMEMoLvZ{ zcn&>UeIx3=tlA)W=eYp|`R8%4j>550kXJTb$Az_O4&4fqnP-lZ`xT(|K*pjg-p4vCN~`ig9o_9GU!k2r;gLElY{AljeG zmcLQz%HDe$fsxfme4CMEvVMBuPlZWHpkghvAaz#8z^y8SAg96Ac@YmG$Z*7j1x`a- zHctOI<_v1g%C12Opk$vYEg0VNN016aqju7$lu($rj!r`mqT86yrzWDWP?R3MR7dt^8oK=PAhMpUURxWC;d6Zz#}E zIn2xF!*-vqycMJI``IuZyhq@Lf2@9Y?qT3%5%2f?p44f{>DQd>-ECQQx6jhMCr9@A zE1@Rt$G%ZNHOou#2xo?S&8eob{>o<5OC3aRzP?BEojdL00|Y|1p7aOTje@73n{$+` zZ~kr1IT1}gIuY|Vgesh%jUh?Vb53tA?D zzVNo=kpHW$^Nwn&+qU?LAt96iDn_b_3R0x=i6{tBz(Q9P5TpqRf(S~a2SU^jQEAdd zia{x&f>h}tp@hUB)=@&V zi#y!+e>M#D6-){H7YgJr6h%*{Q4>LP#G}@Z^Fn(=0Xb%KA){|TM7%8hGk>KpF5%B& zlC(S{+I3nvPRrxFP5JUv0%pPDc4l(RlM;MK6B<|9wt>c^hyX`n!;|6p`c_svJbzNl zW3qZjq$#+EIuW}PV3_p-A%0+=G1V{|-`@f(-=6vQOU4sY4*ykiR_Ty;-nJaP-yS3? zk=2$LmExN6aC$5>FLbgJwo$PG$~eD&2A*!=^!&q1t}~`e4h~oSG&o*<2Y)(M*s(pt)`3~D3U$^lK4@-BBBXe-}Kdw%lReLi@d|Va+mYFmd|7{ zdrfgCyCB&qlO{b!Hb01FCRF};MTzUPbsq3X{$nq#<iGG&-m!5!9O0qeGW#*2~H{H67`W z^DlmVnYwg2>`)hmC$HmoKb#AhIsgz)3KjqqCr@EjL!zf4V+qZpP8B4Z$VpEdyCw}>Zc`UnpWZm?d4BlX)vH*PWsS zzONw&Bd2b1S~e#*z#^b)8iSwwwQ{7{5l^JP96`&K9ZWKlaGBOQ0}EZ(AAO0YiD~SX zCcH~|=yQO4J~iP2cS`KA-T{j*B-fqy3J@^8(VUxA-{*XPG_J+vN}guK+Y!|BVcW#+ zd)~uocL?uU8a30GGJHO#q~i{6rF)D1KcUEfc)YDUaHbkotsTUUhswXEzi59GT&I*v z6CSE;xAsl6=(Do(ml-MKGz(3S6~!-CTi3E`?CD0YcLh4GRdBc(ew>>rT$36oYz!88 zp#46dY1}L*t3r@TJs_bWW)9aGSA*0{OuhrY<<|jmtW*o(C4M>$<32KzMhdkO_qg2M zl+qKuI+V|hQ3*ust=Ce{bv;s&zuI!Y%>$}Q3mIwS!N-_As;JO*tDkW3AABJQU`Iu- zxt%4Kcy7}OwvXct>n);1!RBHpi!TCu4Lh0rX@O`WMPuZ~$u9j?c!h`BMX^7wkKc6WxoSBU5Kwvof0XB4P==26# z;`Sz5ZuR*q?Yq3VN+tiOXZlz=Inl?+3kYtoMlxcjr3LkyhQ7WUk;0|!>JAOK8{>|V z8~`#sq3#|j#_{y-)p9q5v|?4LH*z~3W-9aSAq=0b1~rhoyF=>82Dc;b#0tOpv>kyV z<%b2F+{0sBf{m74^By|VRLYC5guI{$tO_aR(n#z?_4%5j6%6KDy5F2V{Wp-fb_=L@ z569feRx&E($M#Pl{ObqUS9co#-R^BZ{JHqawv1;#pV12~c}E$J&1zWwB>C?`^q$h{w%B&+S8Bfc!wbrEhHI6ppPPLFIPema5yzPoR;IF z-axMW>*w?5h~5z9Tw~@pz(<{f>a5Zzl$@xP#j6y;UiBV-$d4P^R7ILv^>)Sd3YdID zoO)dCox`E|?wCaTKw?6<0lzTKfNRq}%}x=`^X*=yPX00I0?M_jo@!3{wGj_HZ*5h; zw6OrFNq9DaP*qT+I@{me>ziAr>_Cr*d$(5xquFdDjj0k$s-EoI3qLr~B8unAvZ{1( zH$-Vmjy3f&17C8^j%DmgKe42CHo%n^*Dad(nC+2s?n=3stm>3?`IyeY+wQ5~H->Ad z-&wcPw0?3kdjBl{S@mD>FUoQV{$iH&_oRY(rS?7lT^ySwFsJa@u1XAiLSMk3*V?D6 zKHi7!1SM=!cp#vSK>{Ni5bM<9JhR(L?KCInDG*~)OJNc@%aZ5D#eRHqUb^4K2lQXZ ziW=$Hv347mvX2Ni9;S;RJih^2yZO&1$LN6cHA3`@Qj0d57EVjwtBK_B$q~ZKigR#+ zp67WJTH>yK&+jS}=p z9X^`Vc#@`Q@wL)JJI{X=!l!K~hrL(~@PC;YQ8D0C3mR~s5cG!jZ*|HX1-YtT;!37J zh3PJaPi7|{_YU#iy1Z*8z?}WjaP$kHjyKV`JoEbKKcJXKAJdMPGQ4fYn*q@1&)VdE zMTtE&zg6k5AG|0#pIbSZ0t79%{qIo>W?1_%V#UW93O})ITl01IK!e_y3=>_i*kkgF zcwE+Fgb7jlA?gV%uJ-Q(d^?Tl_H}yF7}o5N4J-SYbdyUhzwjIRUq-V4t|!2$+H9Sn zjV1jOd#zRRosc0^*BbXZ@+!yaaaB@FOHri?Nf?~3M9G*3o-ZlLGI7&G zy>NnM*P8`FUk4_v6uhQOx4;zwg@S~e_u}VK*j>~}E}FCuCjki;Hi)VDL{7}Ai&5nV z0%YL;k8O9zHBmfLaA$e>n}C@vd5mc;wFM59CtUce$88JD7PZpLLlHa*^S_?1d|TAY z9Ssrk%s}dF=wu%UpMPsQ4Q2=iP%OQ$m zkHwsw{9gK5_$@30Fm)E8i+eyw!;xN;tHI}ixRuXbD$lg1PsaoE_9d>*G@se?)mrZ; z1SGRlaNyxrrKK{wDmj+(3{85`QoQ;HZEKU?*=w@l{_kYZR|Q4bp2^xX@7CyG1i2Mx z?hhzeX%CZrd(CHTi4S!WSe5@iQScwl(;k{RVjexe;cPzGiV)5U0UN`T7dKG$z^#s~ z-P$~Q7I7d}^~Rdo!i@&lxP9Qde~q)11O2`i`euchqxs5|5kF4opAv4h@K%ij9jgXx zM+#A5LFCFUdCAJ43wJw{Ox9%v{uQ#VUb3M~$SgakQJIGykpy^|eTv?qJhps^Ebq~j zjqE(+WwPnCc3j77>CvgG=o1gAr#eJ<4)7f#$(*`qgOEN?$vuo}QMW#B{JFM4+8*kd zL^HK8!*Mr)6pv22$ob_(W8E^aA7z#R(k!@6&jo6ARUQ-6b}9c8n5F^AV|6uG>u3Uu z5UCClH<54kxi??lXPh}LC1B5D-=oL+~&@$lax=l5{c z=>}}e>tc>x_&#=HmTq8nnv{qCtJQxN6&FpCG=x_SF(?T!~x_ z3m%+T3>ln{dFiutiz~_vO3}8hQiGHap~%#fg^S;>zH1%;!z(9W{>%L1CVG%0DuyG~ zli;u-2$3m8kATnlHx>Bbp_jJX;0`7dZXyne&k78ff@?x#V^=6={a`?$7lZ=CGHk)^ zpJDgmcmTU`8_$>G*w&{zns{mQNOs-#QZgkL{3o&DfJ@LMm(U^%H*pKej9quwo0*Lj z$M6C`UIFz!z;^of0QN8ugtXuC^)KHD07k1r7|rZsl}xY}7Du@Nqi|6rjaz(e*$&>I zdE-$hlVGdk`y;j!u_OFZSRQhl8gPs<6&ZP|BO~J^w9*!>VL^jYc~D{EO|4Jv8up#<>>8p@H?yo) z9=x6mES<`eaH+U`g|PfRRk1kvXkeomU%Gqs`Z0k;abBE{u8ib`4>yB{iF|mX6Zhs^ zC2GDJfhc|;Bl>&751yQNT(76LviM4GBn4BT1_k(@jWq~_msz-~2<>|aI&w#>Q}26W zZs#ksYSRucZ^`_!+6Gqq^YBIa&MHX_ONNnfIH9iuCfL%M>VNW*$@nsT0dXC=$q<=0 z%mVi`uv#wFs6lhyNA->lEXJ=b8FV&4%Ma5^`yEU<)_ReqKi)Y1F*af0wj*JyX)Ty` zdE#j9WXTcV-gtBW=RUfl5tCo_&*W6J7*kaMd@sx6&kR<~j*|u_WV9F7)ZdL>*-C@0 z=1CEaN(V6kfB(8r9aoz;8=4Sv%io11rNnCPZECzTyXzKDYIFKo#g|GaMAq7nwArxa z?!7L(59ucJd9eI=+{_Eu`5IbN!Zf@nv8=~(O6<-v)i*1x>7~AC%5>_C8*Rv{H1UIU z`b2E8H+(WAHau-1ahm#zIrMic6ECovEs{#pQ+Q(mC1&&hhFd%)utzTjv z(4>(YttPw_!u${={UZF)NPy5CN9gqQOh%?sVXbo8zH&7?Hy%9qhH9=gy2XA6;hDkQDk_&Zq# z{C0;&Z@(8^EFkn75NnD*C1Pkc@O*>csU?T@$NrEelI~W1g^Gh2BD6~r#-GG0gHMQ) zso5|uDIL<$%n?yYa?sLokys3J9EMf*gpCTzldzr7emg$Y`hc9;ztUGZ!mVAYnc)s@f*e<(cQcU=^*^ zlbvB>u+UFbUloEnG1^Qzdr-h%6;-ARH5x9*V4x-Hs+c72t}~1wXkzl*pfHJV*YI;5 zQ#3vqDj-DX5?dkl3HrN6(krPz4=D5T+|y}`DA>rJHWg(5^r}vTZ&!Kf4BTfaaQv!a zww~t>b2P7$5Ip+M0AAv`4jI{febhCi4cvGFG$iQcY7oFuiqAHBB(Vtq|(Arax^XN z%i0O%(6qscUw@qIJ&~sw6$q~!vHTy9hgh`Y2gU7m#_yJC(O^{+*z9Z-VOoouiqbx~ zbO5oMdHg=bOo%q^ZOwn)yNJ1jP6fsKA*^cSg%sR*TQg)efX?2}L9~N26R*5CISg&> z6xnPgQt1sy(YEYrN^2ChJ4{h={~0W(_YTm9c9X&l8w{+f^?TGBmQ203pE>htbaM~8 z9n3MVNhQH>-?u-#**Z93Es8&&+Bu|WM)pfkfXuktStF`PKshfxPRcyUu6mJ^9K5;q z5WyB8VBq~GzAml7VH8#2|00J#q<}}R9YmdsSs463ZRtARKKPjeT@B> Tp=5Cx0*?!N#=3cD?8*NCI#WL_ literal 0 HcmV?d00001 diff --git a/po/ukuu-es.po b/po/ukuu-es.po index 606b1c30..b08d9e69 100644 --- a/po/ukuu-es.po +++ b/po/ukuu-es.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu\n" "Report-Msgid-Bugs-To: bw.aljex@gmail.com\n" -"POT-Creation-Date: 2019-03-10 23:56-0400\n" +"POT-Creation-Date: 2019-03-12 07:00-0400\n" "PO-Revision-Date: 2018-01-03 02:03-0600\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish\n" @@ -21,7 +21,7 @@ msgstr "" msgid "About" msgstr "Acerca de" -#: Console/AppConsole.vala:119 +#: Console/AppConsole.vala:117 msgid "Admin access is required for running this application." msgstr "" "Se necesitan privilegios administrativos para ejecutar esta aplicación." @@ -30,7 +30,7 @@ msgstr "" msgid "Another instance of this application is running" msgstr "Se está ejecutando otra instancia de esta aplicación" -#: Common/LinuxKernel.vala:108 +#: Common/LinuxKernel.vala:105 #, fuzzy msgid "Architecture" msgstr "Arquitectura del sistema" @@ -40,7 +40,7 @@ msgstr "Arquitectura del sistema" msgid "Artists" msgstr "Artistas" -#: Console/AppConsole.vala:106 +#: Console/AppConsole.vala:104 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "" @@ -49,7 +49,7 @@ msgstr "" msgid "Authors" msgstr "Autores" -#: Common/LinuxKernel.vala:1184 +#: Common/LinuxKernel.vala:1181 msgid "Available Kernels" msgstr "Núcleos disponibles" @@ -57,11 +57,7 @@ msgstr "Núcleos disponibles" msgid "Back" msgstr "Atrás" -#: Gtk/MainWindow.vala:822 -msgid "Booting previous kernels" -msgstr "Arrancando núcleos anteriores" - -#: Console/AppConsole.vala:209 Gtk/AppGtk.vala:110 +#: Console/AppConsole.vala:207 Gtk/AppGtk.vala:110 msgid "Cache" msgstr "" @@ -75,15 +71,15 @@ msgstr "Cancelar" msgid "Changes" msgstr "Cambios" -#: Gtk/SettingsDialog.vala:122 +#: Gtk/SettingsDialog.vala:121 msgid "Check every" msgstr "Comprobar cada" -#: Console/AppConsole.vala:90 +#: Console/AppConsole.vala:88 msgid "Check for kernel updates" msgstr "Buscar actualizaciones del núcleo" -#: Console/AppConsole.vala:91 +#: Console/AppConsole.vala:89 #, fuzzy msgid "Check for kernel updates and notify current user" msgstr "Buscar actualizaciones del núcleo" @@ -92,11 +88,11 @@ msgstr "Buscar actualizaciones del núcleo" msgid "Close" msgstr "Cerrar" -#: Console/AppConsole.vala:346 +#: Console/AppConsole.vala:344 msgid "Command not specified" msgstr "" -#: Console/AppConsole.vala:88 +#: Console/AppConsole.vala:86 msgid "Commands" msgstr "" @@ -105,7 +101,7 @@ msgid "Commands listed below are not available on this system" msgstr "" "Las órdenes enumeradas a continuación no están disponibles en este sistema" -#: Common/LinuxKernel.vala:740 +#: Common/LinuxKernel.vala:737 #, c-format msgid "Continue ?" msgstr "" @@ -115,16 +111,16 @@ msgstr "" msgid "Contributions" msgstr "Contribuciones" -#: Common/LinuxKernel.vala:724 +#: Common/LinuxKernel.vala:721 #, fuzzy msgid "Could not find any kernels to remove" msgstr "Seleccione los núcleos que se desinstalarán" -#: Console/AppConsole.vala:314 Gtk/MainWindow.vala:100 +#: Console/AppConsole.vala:312 Gtk/MainWindow.vala:100 msgid "Could not find requested version" msgstr "No se pudo encontrar la versión solicitada" -#: Common/LinuxKernel.vala:718 +#: Common/LinuxKernel.vala:715 #, fuzzy msgid "Could not find running kernel in list!" msgstr "No se pudo encontrar la versión solicitada" @@ -138,7 +134,7 @@ msgstr "Se creó el directorio" msgid "Credits" msgstr "Créditos" -#: Gtk/SettingsDialog.vala:155 +#: Gtk/SettingsDialog.vala:154 msgid "Day(s)" msgstr "Días" @@ -150,11 +146,11 @@ msgstr "Se eliminó el directorio" msgid "Dir not found" msgstr "No se encontró el directorio" -#: Gtk/SettingsDialog.vala:162 +#: Gtk/SettingsDialog.vala:161 msgid "Display" msgstr "Mostrar" -#: Common/LinuxKernel.vala:94 +#: Common/LinuxKernel.vala:91 msgid "Distribution" msgstr "Distribución" @@ -163,11 +159,11 @@ msgstr "Distribución" msgid "Documenters" msgstr "Documentadores" -#: Console/AppConsole.vala:99 +#: Console/AppConsole.vala:97 msgid "Download packages for specified kernel" msgstr "Descargar paquetes del núcleo especificado" -#: Common/LinuxKernel.vala:1230 +#: Common/LinuxKernel.vala:1227 #, c-format msgid "Downloading" msgstr "Descargando" @@ -176,7 +172,7 @@ msgstr "Descargando" msgid "E" msgstr "E" -#: Common/LinuxKernel.vala:1258 +#: Common/LinuxKernel.vala:1255 #, c-format msgid "ERROR" msgstr "ERROR" @@ -209,11 +205,11 @@ msgstr "Falló la lectura del archivo" msgid "Failed to write file" msgstr "Falló la escritura del archivo" -#: Common/LinuxKernel.vala:399 +#: Common/LinuxKernel.vala:396 msgid "Fetching index from kernel.ubuntu.com..." msgstr "Recuperando índice de kernel.ubuntu.com…" -#: Common/LinuxKernel.vala:356 +#: Common/LinuxKernel.vala:353 msgid "Fetching index..." msgstr "" @@ -246,24 +242,20 @@ msgstr "No se encontró el archivo: %s" msgid "File saved" msgstr "Se guardó el archivo" -#: Common/LinuxKernel.vala:733 +#: Common/LinuxKernel.vala:730 #, c-format msgid "Following kernels will be removed" msgstr "" -#: Gtk/SettingsDialog.vala:192 -msgid "GRUB Options" -msgstr "Opciones de GRUB" - -#: Gtk/SettingsDialog.vala:181 +#: Gtk/SettingsDialog.vala:180 msgid "Hide kernels older than 4.0" msgstr "Ocultar núcleos anteriores a 4.0" -#: Gtk/SettingsDialog.vala:170 +#: Gtk/SettingsDialog.vala:169 msgid "Hide unstable and RC releases" msgstr "Ocultar versiones inestables y RC" -#: Gtk/SettingsDialog.vala:153 +#: Gtk/SettingsDialog.vala:152 msgid "Hour(s)" msgstr "Horas" @@ -271,11 +263,11 @@ msgstr "Horas" msgid "Ignore this update" msgstr "Ignorar esta actualización" -#: Common/LinuxKernel.vala:262 +#: Common/LinuxKernel.vala:259 msgid "Index is fresh" msgstr "El índice está al día" -#: Common/LinuxKernel.vala:259 +#: Common/LinuxKernel.vala:256 msgid "Index is stale" msgstr "El índice es obsoleto" @@ -283,21 +275,21 @@ msgstr "El índice es obsoleto" msgid "Install" msgstr "Instalar" -#: Common/LinuxKernel.vala:797 +#: Common/LinuxKernel.vala:794 #, c-format msgid "Install Linux v%s ? (y/n): " msgstr "" -#: Console/AppConsole.vala:94 +#: Console/AppConsole.vala:92 #, fuzzy msgid "Install latest mainline kernel" msgstr "Instalar núcleo troncal especificado" -#: Console/AppConsole.vala:95 +#: Console/AppConsole.vala:93 msgid "Install latest point update for current series" msgstr "" -#: Console/AppConsole.vala:96 +#: Console/AppConsole.vala:94 msgid "Install specified mainline kernel" msgstr "Instalar núcleo troncal especificado" @@ -305,20 +297,20 @@ msgstr "Instalar núcleo troncal especificado" msgid "Install this kernel" msgstr "Instalar este núcleo" -#: Common/LinuxKernel.vala:1306 +#: Common/LinuxKernel.vala:1301 msgid "Installation completed with errors" msgstr "Instalación finalizada con errores" -#: Common/LinuxKernel.vala:1303 +#: Common/LinuxKernel.vala:1298 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "Instalación finalizada. Se necesita reiniciar para utilizar el núcleo nuevo." -#: Common/LinuxKernel.vala:1201 Gtk/MainWindow.vala:208 +#: Common/LinuxKernel.vala:1198 Gtk/MainWindow.vala:208 msgid "Installed" msgstr "Instalado" -#: Gtk/SettingsDialog.vala:257 +#: Gtk/SettingsDialog.vala:212 #, fuzzy msgid "Internect connection timeout in " msgstr "La conexión a Internet está inactiva" @@ -337,17 +329,17 @@ msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "" "Herramienta de renovación de núcleo para distribuciones basadas en Ubuntu" -#: Common/LinuxKernel.vala:779 Console/AppConsole.vala:372 +#: Common/LinuxKernel.vala:776 Console/AppConsole.vala:370 #, c-format msgid "Latest point update" msgstr "" -#: Common/LinuxKernel.vala:768 Console/AppConsole.vala:365 +#: Common/LinuxKernel.vala:765 Console/AppConsole.vala:363 #, c-format msgid "Latest update" msgstr "" -#: Console/AppConsole.vala:92 +#: Console/AppConsole.vala:90 msgid "List all available mainline kernels" msgstr "Mostrar todos los núcleos troncales disponibles" @@ -355,46 +347,11 @@ msgstr "Mostrar todos los núcleos troncales disponibles" msgid "List available kernels" msgstr "Mostrar núcleos disponibles" -#: Console/AppConsole.vala:93 +#: Console/AppConsole.vala:91 #, fuzzy msgid "List installed kernels" msgstr "Mostrar núcleos disponibles" -#: Gtk/MainWindow.vala:823 -#, fuzzy -msgid "" -"Mainline kernels can sometimes cause problems if there are proprietary " -"drivers installed on your system. These issues include:\n" -"\n" -"▰ WiFi not working\n" -"▰ Black screen on startup\n" -"▰ Random system freeze\n" -"\n" -"If you face any of these issues there is no need to panic.\n" -"\n" -"▰ Reboot your system\n" -"▰ Select 'Advanced Boot Options' from the GRUB boot menu\n" -"▰ Select an older kernel from the list displayed on this screen\n" -"▰ Your system will boot using the selected kernel\n" -"▰ You can now uninstall the kernel that is causing issues\n" -msgstr "" -"Los núcleos troncales en ocasiones pueden causar problemas si se instalaron " -"controladores privativos en el sistema, por mencionar algunos:\n" -"\n" -"\\342\\226\\260 Wifi disfuncional\n" -"\\342\\226\\260 Pantalla negra al arrancar\n" -"\\342\\226\\260 Bloqueos del sistema fortuitos\n" -"\n" -"No se alarme si se topa con alguno de estos problemas.\n" -"\n" -"\\342\\226\\260 Reinicie el sistema\n" -"\\342\\226\\260 Seleccione «Opciones de arranque avanzadas» en el menú de " -"GRUB\n" -"\\342\\226\\260 Elija un núcleo anterior de la lista que aparece en " -"pantalla\n" -"\\342\\226\\260 El sistema arrancará utilizando el núcleo seleccionado\n" -"\\342\\226\\260 Ahora podrá desinstalar el núcleo problemático\n" - #: Utility/Gtk/GtkHelper.vala:272 msgid "Missing Icon" msgstr "Falta el icono" @@ -403,7 +360,7 @@ msgstr "Falta el icono" msgid "Multiple Kernels Selected" msgstr "Se seleccionaron varios núcleos" -#: Console/AppConsole.vala:296 +#: Console/AppConsole.vala:294 msgid "Multiple kernels selected for installation. Select only one." msgstr "Se seleccionaron varios núcleos para su instalación. Elija solo uno." @@ -415,12 +372,12 @@ msgstr "No" msgid "No Internet" msgstr "No hay Internet" -#: Console/AppConsole.vala:290 Console/AppConsole.vala:327 +#: Console/AppConsole.vala:288 Console/AppConsole.vala:325 msgid "No kernels specified" msgstr "" -#: Common/LinuxKernel.vala:787 Console/AppConsole.vala:377 -#: Console/AppConsole.vala:457 Gtk/MainWindow.vala:817 +#: Common/LinuxKernel.vala:784 Console/AppConsole.vala:375 +#: Console/AppConsole.vala:433 Gtk/MainWindow.vala:793 msgid "No updates found" msgstr "No se encontró ninguna actualización" @@ -428,38 +385,38 @@ msgstr "No se encontró ninguna actualización" msgid "Not Selected" msgstr "No seleccionado" -#: Gtk/SettingsDialog.vala:67 +#: Gtk/SettingsDialog.vala:66 msgid "Notification" msgstr "Notificación" -#: Gtk/SettingsDialog.vala:74 +#: Gtk/SettingsDialog.vala:73 msgid "Notify if a major release is available" msgstr "Notificar si hay una versión importante disponible" -#: Gtk/SettingsDialog.vala:85 +#: Gtk/SettingsDialog.vala:84 msgid "Notify if a point release is available" msgstr "Notificar si hay una versión puntual disponible" -#: Common/LinuxKernel.vala:1249 Utility/Gtk/CustomMessageDialog.vala:167 +#: Common/LinuxKernel.vala:1246 Utility/Gtk/CustomMessageDialog.vala:167 #: Utility/Gtk/CustomMessageDialog.vala:171 Utility/Gtk/GtkHelper.vala:121 #, c-format msgid "OK" msgstr "Aceptar" -#: Console/AppConsole.vala:103 Gtk/AppGtk.vala:181 +#: Console/AppConsole.vala:101 Gtk/AppGtk.vala:181 msgid "Options" msgstr "Opciones" -#: Gtk/SettingsDialog.vala:236 +#: Gtk/SettingsDialog.vala:191 msgid "Other" msgstr "" -#: Common/LinuxKernel.vala:1063 +#: Common/LinuxKernel.vala:1060 #, c-format msgid "Packages Available (DEB)" msgstr "Paquetes disponibles (DEB)" -#: Common/LinuxKernel.vala:1071 +#: Common/LinuxKernel.vala:1068 #, c-format msgid "Packages Installed" msgstr "Paquetes instalados" @@ -468,7 +425,7 @@ msgstr "Paquetes instalados" msgid "Please install required packages and try again" msgstr "Instale los paquetes requeridos e inténtelo de nuevo" -#: Common/LinuxKernel.vala:1327 +#: Common/LinuxKernel.vala:1322 msgid "Preparing to remove selected kernels" msgstr "Preparándose para desinstalar los núcleos seleccionados" @@ -492,29 +449,29 @@ msgstr "Actualizando…" msgid "Remove" msgstr "Quitar" -#: Console/AppConsole.vala:100 Console/AppConsole.vala:105 +#: Console/AppConsole.vala:98 Console/AppConsole.vala:103 msgid "Remove files from application cache" msgstr "Quitar archivos de la antememoria de la aplicación" -#: Console/AppConsole.vala:98 Gtk/MainWindow.vala:426 +#: Console/AppConsole.vala:96 Gtk/MainWindow.vala:426 msgid "Remove installed kernels older than running kernel" msgstr "" -#: Console/AppConsole.vala:97 +#: Console/AppConsole.vala:95 #, fuzzy msgid "Remove specified kernel" msgstr "Quitar el núcleo troncal especificado" -#: Console/AppConsole.vala:204 Console/AppConsole.vala:318 -#: Console/AppConsole.vala:347 +#: Console/AppConsole.vala:202 Console/AppConsole.vala:316 +#: Console/AppConsole.vala:345 msgid "Run '" msgstr "" -#: Console/AppConsole.vala:122 +#: Console/AppConsole.vala:120 msgid "Run the application as admin with pkexec or sudo." msgstr "Ejecute la aplicación con permisos administrativos con pkexec o sudo." -#: Common/LinuxKernel.vala:1201 Gtk/MainWindow.vala:208 +#: Common/LinuxKernel.vala:1198 Gtk/MainWindow.vala:208 msgid "Running" msgstr "En ejecución" @@ -530,7 +487,7 @@ msgstr "Seleccione el núcleo que se instalará" msgid "Select the kernels to remove" msgstr "Seleccione los núcleos que se desinstalarán" -#: Common/LinuxKernel.vala:1322 +#: Common/LinuxKernel.vala:1317 msgid "" "Selected kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -538,11 +495,7 @@ msgstr "" "El núcleo seleccionado está en ejecución y no puede desinstalarse.\n" "Instale otro núcleo antes de desinstalar este." -#: Gtk/SettingsDialog.vala:203 -msgid "Set GRUB menu timeout" -msgstr "" - -#: Gtk/MainWindow.vala:475 Gtk/SettingsDialog.vala:57 +#: Gtk/MainWindow.vala:475 Gtk/SettingsDialog.vala:56 msgid "Settings" msgstr "Configuración" @@ -554,20 +507,20 @@ msgstr "Mostrar" msgid "Show all options" msgstr "Mostrar todas las opciones" -#: Gtk/SettingsDialog.vala:96 +#: Gtk/SettingsDialog.vala:95 msgid "Show notification bubble on desktop" msgstr "Mostrar globo de notificación en el escritorio" -#: Gtk/SettingsDialog.vala:107 +#: Gtk/SettingsDialog.vala:106 msgid "Show notification dialog" msgstr "Mostrar cuadro de diálogo de notificación" -#: Console/AppConsole.vala:101 +#: Console/AppConsole.vala:99 #, fuzzy msgid "Show unstable and RC releases" msgstr "Ocultar versiones inestables y RC" -#: Gtk/SettingsDialog.vala:244 +#: Gtk/SettingsDialog.vala:199 #, fuzzy msgid "Skip internet connection check" msgstr "La conexión a Internet está inactiva" @@ -580,11 +533,11 @@ msgstr "Estado" msgid "Stopped" msgstr "Detenido" -#: Console/AppConsole.vala:86 Gtk/AppGtk.vala:179 +#: Console/AppConsole.vala:84 Gtk/AppGtk.vala:179 msgid "Syntax" msgstr "Sintaxis" -#: Console/AppConsole.vala:210 Gtk/AppGtk.vala:111 +#: Console/AppConsole.vala:208 Gtk/AppGtk.vala:111 msgid "Temp" msgstr "" @@ -593,11 +546,11 @@ msgstr "" msgid "Third Party Tools" msgstr "Herramientas de terceros" -#: Common/LinuxKernel.vala:1272 Gtk/MainWindow.vala:678 +#: Common/LinuxKernel.vala:1269 Gtk/MainWindow.vala:678 msgid "This kernel is already installed." msgstr "Este núcleo ya se instaló." -#: Common/LinuxKernel.vala:1380 +#: Common/LinuxKernel.vala:1373 msgid "" "This kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -605,58 +558,23 @@ msgstr "" "Este núcleo está en ejecución y no se puede desinstalar.\n" "Instale otro núcleo antes de desinstalar este." -#: Gtk/SettingsDialog.vala:223 -msgid "" -"Time (in seconds) to display the GRUB menu\n" -"\n" -"0 = Do not show menu\n" -"-1 = Show indefinitely till user selects" -msgstr "" -"Tiempo (en segundos) para mostrar el menú de GRUB\n" -"\n" -"0 = No mostrar el menú\n" -"-1 = Mostrar indefinidamente hasta que el usuario seleccione algo" - #: Utility/Gtk/AboutWindow.vala:346 #, c-format msgid "Translators" msgstr "Traductores" -#: Common/LinuxKernel.vala:1364 Common/LinuxKernel.vala:1422 +#: Common/LinuxKernel.vala:1357 Common/LinuxKernel.vala:1413 msgid "Un-install completed" msgstr "Desinstalación finalizada" -#: Common/LinuxKernel.vala:1367 Common/LinuxKernel.vala:1425 +#: Common/LinuxKernel.vala:1360 Common/LinuxKernel.vala:1416 msgid "Un-install completed with errors" msgstr "Desinstalación finalizada con errores" -#: Console/AppConsole.vala:202 Gtk/AppGtk.vala:166 +#: Console/AppConsole.vala:200 Gtk/AppGtk.vala:166 msgid "Unknown option" msgstr "Opción desconocida" -#: Gtk/SettingsDialog.vala:210 -msgid "" -"Updates the GRUB menu after installing or removing kernels, so that the menu " -"is displayed for 2 seconds at boot time. This will help you recover from a " -"bad kernel update by selecting another kernel to boot. During boot, use the " -"'Advanced options for Ubuntu' menu entry to select another kernel.\n" -"\n" -"0 = Do not show menu\n" -"-1 = Show indefinitely till user selects" -msgstr "" -"Actualiza el menú de GRUB tras instalar o quitar núcleos para que este " -"aparezca por dos segundos durante el arranque. Esto le ayudará a recuperarse " -"de una actualización de núcleo problemática permitiéndole elegir otro núcleo " -"para arrancar. Durante el arranque, utilice «Opciones avanzadas para Ubuntu» " -"para elegir otro núcleo.\n" -"\n" -"0 = No mostrar el menú\n" -"-1 = Mostrar indefinidamente hasta que el usuario seleccione algo" - -#: Common/LinuxKernel.vala:1493 -msgid "Updating GRUB menu" -msgstr "Actualizando menú de GRUB" - #: Gtk/MainWindow.vala:179 msgid "Version" msgstr "Versión" @@ -665,7 +583,7 @@ msgstr "Versión" msgid "W" msgstr "W" -#: Gtk/SettingsDialog.vala:157 +#: Gtk/SettingsDialog.vala:156 msgid "Week(s)" msgstr "Semanas" @@ -677,10 +595,81 @@ msgstr "Sí" msgid "[Warning] Deleted invalid lock" msgstr "[Atención] Se eliminó un bloqueo no válido" -#: Gtk/SettingsDialog.vala:271 +#: Gtk/SettingsDialog.vala:226 msgid "seconds" msgstr "" +#~ msgid "Booting previous kernels" +#~ msgstr "Arrancando núcleos anteriores" + +#, fuzzy +#~ msgid "" +#~ "Mainline kernels can sometimes cause problems if there are proprietary " +#~ "drivers installed on your system. These issues include:\n" +#~ "\n" +#~ "▰ WiFi not working\n" +#~ "▰ Black screen on startup\n" +#~ "▰ Random system freeze\n" +#~ "\n" +#~ "If you face any of these issues there is no need to panic.\n" +#~ "\n" +#~ "▰ Reboot your system\n" +#~ "▰ Select 'Advanced Boot Options' from the GRUB boot menu\n" +#~ "▰ Select an older kernel from the list displayed on this screen\n" +#~ "▰ Your system will boot using the selected kernel\n" +#~ "▰ You can now uninstall the kernel that is causing issues\n" +#~ msgstr "" +#~ "Los núcleos troncales en ocasiones pueden causar problemas si se " +#~ "instalaron controladores privativos en el sistema, por mencionar " +#~ "algunos:\n" +#~ "\n" +#~ "\\342\\226\\260 Wifi disfuncional\n" +#~ "\\342\\226\\260 Pantalla negra al arrancar\n" +#~ "\\342\\226\\260 Bloqueos del sistema fortuitos\n" +#~ "\n" +#~ "No se alarme si se topa con alguno de estos problemas.\n" +#~ "\n" +#~ "\\342\\226\\260 Reinicie el sistema\n" +#~ "\\342\\226\\260 Seleccione «Opciones de arranque avanzadas» en el menú de " +#~ "GRUB\n" +#~ "\\342\\226\\260 Elija un núcleo anterior de la lista que aparece en " +#~ "pantalla\n" +#~ "\\342\\226\\260 El sistema arrancará utilizando el núcleo seleccionado\n" +#~ "\\342\\226\\260 Ahora podrá desinstalar el núcleo problemático\n" + +#~ msgid "" +#~ "Time (in seconds) to display the GRUB menu\n" +#~ "\n" +#~ "0 = Do not show menu\n" +#~ "-1 = Show indefinitely till user selects" +#~ msgstr "" +#~ "Tiempo (en segundos) para mostrar el menú de GRUB\n" +#~ "\n" +#~ "0 = No mostrar el menú\n" +#~ "-1 = Mostrar indefinidamente hasta que el usuario seleccione algo" + +#~ msgid "" +#~ "Updates the GRUB menu after installing or removing kernels, so that the " +#~ "menu is displayed for 2 seconds at boot time. This will help you recover " +#~ "from a bad kernel update by selecting another kernel to boot. During " +#~ "boot, use the 'Advanced options for Ubuntu' menu entry to select another " +#~ "kernel.\n" +#~ "\n" +#~ "0 = Do not show menu\n" +#~ "-1 = Show indefinitely till user selects" +#~ msgstr "" +#~ "Actualiza el menú de GRUB tras instalar o quitar núcleos para que este " +#~ "aparezca por dos segundos durante el arranque. Esto le ayudará a " +#~ "recuperarse de una actualización de núcleo problemática permitiéndole " +#~ "elegir otro núcleo para arrancar. Durante el arranque, utilice «Opciones " +#~ "avanzadas para Ubuntu» para elegir otro núcleo.\n" +#~ "\n" +#~ "0 = No mostrar el menú\n" +#~ "-1 = Mostrar indefinidamente hasta que el usuario seleccione algo" + +#~ msgid "Updating GRUB menu" +#~ msgstr "Actualizando menú de GRUB" + #~ msgid "Run 'ukuu --list' and use the version string listed in first column" #~ msgstr "" #~ "Ejecute «ukuu --list» y use la cadena de versión mostrada en la primera " diff --git a/po/ukuu-fr.po b/po/ukuu-fr.po index bc43825d..875ac140 100644 --- a/po/ukuu-fr.po +++ b/po/ukuu-fr.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu\n" "Report-Msgid-Bugs-To: bw.aljex@gmail.com\n" -"POT-Creation-Date: 2019-03-10 23:56-0400\n" +"POT-Creation-Date: 2019-03-12 07:00-0400\n" "PO-Revision-Date: 2018-08-05 15:50+0200\n" "Last-Translator: Yolateng0 \n" "Language-Team: French\n" @@ -21,7 +21,7 @@ msgstr "" msgid "About" msgstr "À propos" -#: Console/AppConsole.vala:119 +#: Console/AppConsole.vala:117 msgid "Admin access is required for running this application." msgstr "Accès administrateur requis pour lancer cette application." @@ -29,7 +29,7 @@ msgstr "Accès administrateur requis pour lancer cette application." msgid "Another instance of this application is running" msgstr "Une autre instance de l'application est en cours d'exécution" -#: Common/LinuxKernel.vala:108 +#: Common/LinuxKernel.vala:105 #, fuzzy msgid "Architecture" msgstr "Architecture du système" @@ -39,7 +39,7 @@ msgstr "Architecture du système" msgid "Artists" msgstr "Artistes" -#: Console/AppConsole.vala:106 +#: Console/AppConsole.vala:104 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "" @@ -48,7 +48,7 @@ msgstr "" msgid "Authors" msgstr "Auteurs" -#: Common/LinuxKernel.vala:1184 +#: Common/LinuxKernel.vala:1181 msgid "Available Kernels" msgstr "Noyaux disponibles" @@ -56,11 +56,7 @@ msgstr "Noyaux disponibles" msgid "Back" msgstr "Retour" -#: Gtk/MainWindow.vala:822 -msgid "Booting previous kernels" -msgstr "Démarrer sur un noyau précédent" - -#: Console/AppConsole.vala:209 Gtk/AppGtk.vala:110 +#: Console/AppConsole.vala:207 Gtk/AppGtk.vala:110 msgid "Cache" msgstr "" @@ -74,15 +70,15 @@ msgstr "Annuler" msgid "Changes" msgstr "Changements" -#: Gtk/SettingsDialog.vala:122 +#: Gtk/SettingsDialog.vala:121 msgid "Check every" msgstr "Vérifier toutes les" -#: Console/AppConsole.vala:90 +#: Console/AppConsole.vala:88 msgid "Check for kernel updates" msgstr "Vérifier les mises à jour des noyaux" -#: Console/AppConsole.vala:91 +#: Console/AppConsole.vala:89 #, fuzzy msgid "Check for kernel updates and notify current user" msgstr "Vérifier les mises à jour des noyaux" @@ -91,12 +87,12 @@ msgstr "Vérifier les mises à jour des noyaux" msgid "Close" msgstr "Fermer" -#: Console/AppConsole.vala:346 +#: Console/AppConsole.vala:344 #, fuzzy msgid "Command not specified" msgstr "Impossible de trouver le fichier" -#: Console/AppConsole.vala:88 +#: Console/AppConsole.vala:86 msgid "Commands" msgstr "" @@ -104,7 +100,7 @@ msgstr "" msgid "Commands listed below are not available on this system" msgstr "Les commandes listées ne sont pas valables pour ce système" -#: Common/LinuxKernel.vala:740 +#: Common/LinuxKernel.vala:737 #, c-format msgid "Continue ?" msgstr "" @@ -114,16 +110,16 @@ msgstr "" msgid "Contributions" msgstr "Contributions" -#: Common/LinuxKernel.vala:724 +#: Common/LinuxKernel.vala:721 #, fuzzy msgid "Could not find any kernels to remove" msgstr "Sélectionnez les noyaux à supprimer" -#: Console/AppConsole.vala:314 Gtk/MainWindow.vala:100 +#: Console/AppConsole.vala:312 Gtk/MainWindow.vala:100 msgid "Could not find requested version" msgstr "Impossible de trouver la version demandée" -#: Common/LinuxKernel.vala:718 +#: Common/LinuxKernel.vala:715 #, fuzzy msgid "Could not find running kernel in list!" msgstr "Impossible de trouver la version demandée" @@ -137,7 +133,7 @@ msgstr "Dossier créé" msgid "Credits" msgstr "Crédits" -#: Gtk/SettingsDialog.vala:155 +#: Gtk/SettingsDialog.vala:154 msgid "Day(s)" msgstr "Jour(s)" @@ -149,11 +145,11 @@ msgstr "Dossier éffacé" msgid "Dir not found" msgstr "Dossier non trouvé" -#: Gtk/SettingsDialog.vala:162 +#: Gtk/SettingsDialog.vala:161 msgid "Display" msgstr "Afficher" -#: Common/LinuxKernel.vala:94 +#: Common/LinuxKernel.vala:91 msgid "Distribution" msgstr "Distribution" @@ -162,11 +158,11 @@ msgstr "Distribution" msgid "Documenters" msgstr "Documentalistes" -#: Console/AppConsole.vala:99 +#: Console/AppConsole.vala:97 msgid "Download packages for specified kernel" msgstr "Télécharger les paquets pour des noyaux spécifiques" -#: Common/LinuxKernel.vala:1230 +#: Common/LinuxKernel.vala:1227 #, c-format msgid "Downloading" msgstr "Téléchargement" @@ -175,7 +171,7 @@ msgstr "Téléchargement" msgid "E" msgstr "E" -#: Common/LinuxKernel.vala:1258 +#: Common/LinuxKernel.vala:1255 #, c-format msgid "ERROR" msgstr "ERREUR" @@ -208,11 +204,11 @@ msgstr "Impossible de lire le fichier" msgid "Failed to write file" msgstr "Impossible d'écrire le fichier" -#: Common/LinuxKernel.vala:399 +#: Common/LinuxKernel.vala:396 msgid "Fetching index from kernel.ubuntu.com..." msgstr "Récupération de l'index depuis kernel.ubuntu.com..." -#: Common/LinuxKernel.vala:356 +#: Common/LinuxKernel.vala:353 msgid "Fetching index..." msgstr "" @@ -245,24 +241,20 @@ msgstr "Fichier non trouvé: %s" msgid "File saved" msgstr "Fichier sauvegardé" -#: Common/LinuxKernel.vala:733 +#: Common/LinuxKernel.vala:730 #, c-format msgid "Following kernels will be removed" msgstr "" -#: Gtk/SettingsDialog.vala:192 -msgid "GRUB Options" -msgstr "Options GRUB" - -#: Gtk/SettingsDialog.vala:181 +#: Gtk/SettingsDialog.vala:180 msgid "Hide kernels older than 4.0" msgstr "Masquer les noyaux antérieurs à la version 4.0" -#: Gtk/SettingsDialog.vala:170 +#: Gtk/SettingsDialog.vala:169 msgid "Hide unstable and RC releases" msgstr "Cacher les versions instables et RC" -#: Gtk/SettingsDialog.vala:153 +#: Gtk/SettingsDialog.vala:152 msgid "Hour(s)" msgstr "Heure(s)" @@ -270,11 +262,11 @@ msgstr "Heure(s)" msgid "Ignore this update" msgstr "Ignorer cette mise à jour" -#: Common/LinuxKernel.vala:262 +#: Common/LinuxKernel.vala:259 msgid "Index is fresh" msgstr "L'index est à jour" -#: Common/LinuxKernel.vala:259 +#: Common/LinuxKernel.vala:256 msgid "Index is stale" msgstr "L'index est obsolète" @@ -282,21 +274,21 @@ msgstr "L'index est obsolète" msgid "Install" msgstr "Installer" -#: Common/LinuxKernel.vala:797 +#: Common/LinuxKernel.vala:794 #, c-format msgid "Install Linux v%s ? (y/n): " msgstr "" -#: Console/AppConsole.vala:94 +#: Console/AppConsole.vala:92 #, fuzzy msgid "Install latest mainline kernel" msgstr "Installer le noyau principal spécifié" -#: Console/AppConsole.vala:95 +#: Console/AppConsole.vala:93 msgid "Install latest point update for current series" msgstr "" -#: Console/AppConsole.vala:96 +#: Console/AppConsole.vala:94 msgid "Install specified mainline kernel" msgstr "Installer le noyau principal spécifié" @@ -304,21 +296,21 @@ msgstr "Installer le noyau principal spécifié" msgid "Install this kernel" msgstr "Installer ce noyau" -#: Common/LinuxKernel.vala:1306 +#: Common/LinuxKernel.vala:1301 msgid "Installation completed with errors" msgstr "Installation terminée avec des erreurs" -#: Common/LinuxKernel.vala:1303 +#: Common/LinuxKernel.vala:1298 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "Installation complétée. Un redémarrage est nécessaire pour utiliser le " "nouveau noyau." -#: Common/LinuxKernel.vala:1201 Gtk/MainWindow.vala:208 +#: Common/LinuxKernel.vala:1198 Gtk/MainWindow.vala:208 msgid "Installed" msgstr "Installé" -#: Gtk/SettingsDialog.vala:257 +#: Gtk/SettingsDialog.vala:212 #, fuzzy msgid "Internect connection timeout in " msgstr "Connexion internet inexistante" @@ -338,17 +330,17 @@ msgstr "" "Utilitaire de mise à niveau des noyaux pour les distributions basées pour " "Ubuntu" -#: Common/LinuxKernel.vala:779 Console/AppConsole.vala:372 +#: Common/LinuxKernel.vala:776 Console/AppConsole.vala:370 #, c-format msgid "Latest point update" msgstr "" -#: Common/LinuxKernel.vala:768 Console/AppConsole.vala:365 +#: Common/LinuxKernel.vala:765 Console/AppConsole.vala:363 #, c-format msgid "Latest update" msgstr "" -#: Console/AppConsole.vala:92 +#: Console/AppConsole.vala:90 msgid "List all available mainline kernels" msgstr "Lister tous les noyaux mainline disponibles" @@ -356,44 +348,11 @@ msgstr "Lister tous les noyaux mainline disponibles" msgid "List available kernels" msgstr "Lister les noyaux disponibles" -#: Console/AppConsole.vala:93 +#: Console/AppConsole.vala:91 #, fuzzy msgid "List installed kernels" msgstr "Lister les noyaux disponibles" -#: Gtk/MainWindow.vala:823 -#, fuzzy -msgid "" -"Mainline kernels can sometimes cause problems if there are proprietary " -"drivers installed on your system. These issues include:\n" -"\n" -"▰ WiFi not working\n" -"▰ Black screen on startup\n" -"▰ Random system freeze\n" -"\n" -"If you face any of these issues there is no need to panic.\n" -"\n" -"▰ Reboot your system\n" -"▰ Select 'Advanced Boot Options' from the GRUB boot menu\n" -"▰ Select an older kernel from the list displayed on this screen\n" -"▰ Your system will boot using the selected kernel\n" -"▰ You can now uninstall the kernel that is causing issues\n" -msgstr "" -"Certains noyaux peuvent poser problème à cause de l'absence de drivers " -"propriétaires installés sur votre système. Cela se présente par :\n" -"\n" -"\\342\\226\\260 Le WiFi qui ne fonctionne pas\n" -"\\342\\226\\260 Un écran noir au démarrage\n" -"\\342\\226\\260 Le système qui se fige et se bloque\n" -"\n" -"Si vous êtes face à ces problèmes, pas de panique.\n" -"\n" -"\\342\\226\\260 Redémarrer votre système\n" -"\\342\\226\\260 Sélectionnez 'Advanced Boot Options' dans le menu GRUB boot\n" -"\\342\\226\\260 Sélectionnez un ancien noyau qui fonctionne\n" -"\\342\\226\\260 Votre système va redémarrer avec le noyau sélectionné\n" -"\\342\\226\\260 Vous pouvez supprimer le noyau responsable de cette erreur\n" - #: Utility/Gtk/GtkHelper.vala:272 msgid "Missing Icon" msgstr "Icône introuvable" @@ -402,7 +361,7 @@ msgstr "Icône introuvable" msgid "Multiple Kernels Selected" msgstr "Plusieurs noyaux sélectionnés" -#: Console/AppConsole.vala:296 +#: Console/AppConsole.vala:294 msgid "Multiple kernels selected for installation. Select only one." msgstr "" "Plusieurs noyaux sélectionnés pour être installés. Sélectionnez en seulement " @@ -416,12 +375,12 @@ msgstr "Non" msgid "No Internet" msgstr "Pas d'Internet" -#: Console/AppConsole.vala:290 Console/AppConsole.vala:327 +#: Console/AppConsole.vala:288 Console/AppConsole.vala:325 msgid "No kernels specified" msgstr "" -#: Common/LinuxKernel.vala:787 Console/AppConsole.vala:377 -#: Console/AppConsole.vala:457 Gtk/MainWindow.vala:817 +#: Common/LinuxKernel.vala:784 Console/AppConsole.vala:375 +#: Console/AppConsole.vala:433 Gtk/MainWindow.vala:793 msgid "No updates found" msgstr "Aucune mise à jour disponible" @@ -429,38 +388,38 @@ msgstr "Aucune mise à jour disponible" msgid "Not Selected" msgstr "Non selectionné" -#: Gtk/SettingsDialog.vala:67 +#: Gtk/SettingsDialog.vala:66 msgid "Notification" msgstr "Notification" -#: Gtk/SettingsDialog.vala:74 +#: Gtk/SettingsDialog.vala:73 msgid "Notify if a major release is available" msgstr "Notifier si une version stable majeure est disponible" -#: Gtk/SettingsDialog.vala:85 +#: Gtk/SettingsDialog.vala:84 msgid "Notify if a point release is available" msgstr "Notifier si une version stable mineure est disponible" -#: Common/LinuxKernel.vala:1249 Utility/Gtk/CustomMessageDialog.vala:167 +#: Common/LinuxKernel.vala:1246 Utility/Gtk/CustomMessageDialog.vala:167 #: Utility/Gtk/CustomMessageDialog.vala:171 Utility/Gtk/GtkHelper.vala:121 #, c-format msgid "OK" msgstr "OK" -#: Console/AppConsole.vala:103 Gtk/AppGtk.vala:181 +#: Console/AppConsole.vala:101 Gtk/AppGtk.vala:181 msgid "Options" msgstr "Options" -#: Gtk/SettingsDialog.vala:236 +#: Gtk/SettingsDialog.vala:191 msgid "Other" msgstr "" -#: Common/LinuxKernel.vala:1063 +#: Common/LinuxKernel.vala:1060 #, c-format msgid "Packages Available (DEB)" msgstr "Paquets disponibles (DEB)" -#: Common/LinuxKernel.vala:1071 +#: Common/LinuxKernel.vala:1068 #, c-format msgid "Packages Installed" msgstr "Paquets installés" @@ -469,7 +428,7 @@ msgstr "Paquets installés" msgid "Please install required packages and try again" msgstr "Veuillez installer les paquets requis et réessayer" -#: Common/LinuxKernel.vala:1327 +#: Common/LinuxKernel.vala:1322 msgid "Preparing to remove selected kernels" msgstr "Préparation à la suppression des noyaux sélectionnés" @@ -493,29 +452,29 @@ msgstr "Actualisation..." msgid "Remove" msgstr "Supprimer" -#: Console/AppConsole.vala:100 Console/AppConsole.vala:105 +#: Console/AppConsole.vala:98 Console/AppConsole.vala:103 msgid "Remove files from application cache" msgstr "Supprimer les fichiers du cache de l'application" -#: Console/AppConsole.vala:98 Gtk/MainWindow.vala:426 +#: Console/AppConsole.vala:96 Gtk/MainWindow.vala:426 msgid "Remove installed kernels older than running kernel" msgstr "" -#: Console/AppConsole.vala:97 +#: Console/AppConsole.vala:95 #, fuzzy msgid "Remove specified kernel" msgstr "Supprimer le noyau mainline sélectionné" -#: Console/AppConsole.vala:204 Console/AppConsole.vala:318 -#: Console/AppConsole.vala:347 +#: Console/AppConsole.vala:202 Console/AppConsole.vala:316 +#: Console/AppConsole.vala:345 msgid "Run '" msgstr "" -#: Console/AppConsole.vala:122 +#: Console/AppConsole.vala:120 msgid "Run the application as admin with pkexec or sudo." msgstr "Exécutez l'application en tant qu'admin avec pkexec or sudo." -#: Common/LinuxKernel.vala:1201 Gtk/MainWindow.vala:208 +#: Common/LinuxKernel.vala:1198 Gtk/MainWindow.vala:208 msgid "Running" msgstr "En cours" @@ -531,7 +490,7 @@ msgstr "Sélectionnez le noyau à installer" msgid "Select the kernels to remove" msgstr "Sélectionnez les noyaux à supprimer" -#: Common/LinuxKernel.vala:1322 +#: Common/LinuxKernel.vala:1317 msgid "" "Selected kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -539,11 +498,7 @@ msgstr "" "Ce noyau est en cours d'exécution et ne peut pas être supprimé.\n" " Installez un autre noyau avant de retirer celui-ci." -#: Gtk/SettingsDialog.vala:203 -msgid "Set GRUB menu timeout" -msgstr "" - -#: Gtk/MainWindow.vala:475 Gtk/SettingsDialog.vala:57 +#: Gtk/MainWindow.vala:475 Gtk/SettingsDialog.vala:56 msgid "Settings" msgstr "Paramètres" @@ -555,20 +510,20 @@ msgstr "Afficher" msgid "Show all options" msgstr "Afficher toutes les options" -#: Gtk/SettingsDialog.vala:96 +#: Gtk/SettingsDialog.vala:95 msgid "Show notification bubble on desktop" msgstr "Afficher la bulle de notification sur le bureau" -#: Gtk/SettingsDialog.vala:107 +#: Gtk/SettingsDialog.vala:106 msgid "Show notification dialog" msgstr "Afficher les notifications" -#: Console/AppConsole.vala:101 +#: Console/AppConsole.vala:99 #, fuzzy msgid "Show unstable and RC releases" msgstr "Cacher les versions instables et RC" -#: Gtk/SettingsDialog.vala:244 +#: Gtk/SettingsDialog.vala:199 #, fuzzy msgid "Skip internet connection check" msgstr "Connexion internet inexistante" @@ -581,11 +536,11 @@ msgstr "Statut" msgid "Stopped" msgstr "Arrêté" -#: Console/AppConsole.vala:86 Gtk/AppGtk.vala:179 +#: Console/AppConsole.vala:84 Gtk/AppGtk.vala:179 msgid "Syntax" msgstr "Syntaxe" -#: Console/AppConsole.vala:210 Gtk/AppGtk.vala:111 +#: Console/AppConsole.vala:208 Gtk/AppGtk.vala:111 msgid "Temp" msgstr "" @@ -594,11 +549,11 @@ msgstr "" msgid "Third Party Tools" msgstr "Outils tiers" -#: Common/LinuxKernel.vala:1272 Gtk/MainWindow.vala:678 +#: Common/LinuxKernel.vala:1269 Gtk/MainWindow.vala:678 msgid "This kernel is already installed." msgstr "Ce noyau est déjà installé." -#: Common/LinuxKernel.vala:1380 +#: Common/LinuxKernel.vala:1373 msgid "" "This kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -606,57 +561,23 @@ msgstr "" "Ce noyau est en cours d'exécution et ne peut pas être supprimé.\n" " Installez un autre noyau avant de retirer celui-ci." -#: Gtk/SettingsDialog.vala:223 -msgid "" -"Time (in seconds) to display the GRUB menu\n" -"\n" -"0 = Do not show menu\n" -"-1 = Show indefinitely till user selects" -msgstr "" -"Temps (en secondes) pour afficher le menu GRUB\n" -"\n" -"0 = Ne pas afficher de menu\n" -"-1 = Afficher indéfiniment le menu jusqu'au choix de l'utilisateur" - #: Utility/Gtk/AboutWindow.vala:346 #, c-format msgid "Translators" msgstr "Traducteurs" -#: Common/LinuxKernel.vala:1364 Common/LinuxKernel.vala:1422 +#: Common/LinuxKernel.vala:1357 Common/LinuxKernel.vala:1413 msgid "Un-install completed" msgstr "Désinstallation complète" -#: Common/LinuxKernel.vala:1367 Common/LinuxKernel.vala:1425 +#: Common/LinuxKernel.vala:1360 Common/LinuxKernel.vala:1416 msgid "Un-install completed with errors" msgstr "Désinstallation terminée avec des erreurs" -#: Console/AppConsole.vala:202 Gtk/AppGtk.vala:166 +#: Console/AppConsole.vala:200 Gtk/AppGtk.vala:166 msgid "Unknown option" msgstr "Option inconnue" -#: Gtk/SettingsDialog.vala:210 -msgid "" -"Updates the GRUB menu after installing or removing kernels, so that the menu " -"is displayed for 2 seconds at boot time. This will help you recover from a " -"bad kernel update by selecting another kernel to boot. During boot, use the " -"'Advanced options for Ubuntu' menu entry to select another kernel.\n" -"\n" -"0 = Do not show menu\n" -"-1 = Show indefinitely till user selects" -msgstr "" -"Mise à jour du menu GRUB après installation ou suppression. Vous aurez 2 " -"secondes au lancement pour changer de noyau au démarrage et choisir un noyau " -"fonctionnel. Durant le démarrage, sélectionnez 'Option avancées Ubuntu' et " -"sélectionnez un autre noyau.\n" -"\n" -"0 = Ne pas afficher de menu\n" -"-1 = Afficher jusqu'au choix de l'utilisateur" - -#: Common/LinuxKernel.vala:1493 -msgid "Updating GRUB menu" -msgstr "Mise à jour du menu GRUB" - #: Gtk/MainWindow.vala:179 msgid "Version" msgstr "Version" @@ -665,7 +586,7 @@ msgstr "Version" msgid "W" msgstr "W" -#: Gtk/SettingsDialog.vala:157 +#: Gtk/SettingsDialog.vala:156 msgid "Week(s)" msgstr "Semaine(s)" @@ -677,10 +598,82 @@ msgstr "Oui" msgid "[Warning] Deleted invalid lock" msgstr "[Attention] Verrou invalide supprimé" -#: Gtk/SettingsDialog.vala:271 +#: Gtk/SettingsDialog.vala:226 msgid "seconds" msgstr "" +#~ msgid "Booting previous kernels" +#~ msgstr "Démarrer sur un noyau précédent" + +#~ msgid "GRUB Options" +#~ msgstr "Options GRUB" + +#, fuzzy +#~ msgid "" +#~ "Mainline kernels can sometimes cause problems if there are proprietary " +#~ "drivers installed on your system. These issues include:\n" +#~ "\n" +#~ "▰ WiFi not working\n" +#~ "▰ Black screen on startup\n" +#~ "▰ Random system freeze\n" +#~ "\n" +#~ "If you face any of these issues there is no need to panic.\n" +#~ "\n" +#~ "▰ Reboot your system\n" +#~ "▰ Select 'Advanced Boot Options' from the GRUB boot menu\n" +#~ "▰ Select an older kernel from the list displayed on this screen\n" +#~ "▰ Your system will boot using the selected kernel\n" +#~ "▰ You can now uninstall the kernel that is causing issues\n" +#~ msgstr "" +#~ "Certains noyaux peuvent poser problème à cause de l'absence de drivers " +#~ "propriétaires installés sur votre système. Cela se présente par :\n" +#~ "\n" +#~ "\\342\\226\\260 Le WiFi qui ne fonctionne pas\n" +#~ "\\342\\226\\260 Un écran noir au démarrage\n" +#~ "\\342\\226\\260 Le système qui se fige et se bloque\n" +#~ "\n" +#~ "Si vous êtes face à ces problèmes, pas de panique.\n" +#~ "\n" +#~ "\\342\\226\\260 Redémarrer votre système\n" +#~ "\\342\\226\\260 Sélectionnez 'Advanced Boot Options' dans le menu GRUB " +#~ "boot\n" +#~ "\\342\\226\\260 Sélectionnez un ancien noyau qui fonctionne\n" +#~ "\\342\\226\\260 Votre système va redémarrer avec le noyau sélectionné\n" +#~ "\\342\\226\\260 Vous pouvez supprimer le noyau responsable de cette " +#~ "erreur\n" + +#~ msgid "" +#~ "Time (in seconds) to display the GRUB menu\n" +#~ "\n" +#~ "0 = Do not show menu\n" +#~ "-1 = Show indefinitely till user selects" +#~ msgstr "" +#~ "Temps (en secondes) pour afficher le menu GRUB\n" +#~ "\n" +#~ "0 = Ne pas afficher de menu\n" +#~ "-1 = Afficher indéfiniment le menu jusqu'au choix de l'utilisateur" + +#~ msgid "" +#~ "Updates the GRUB menu after installing or removing kernels, so that the " +#~ "menu is displayed for 2 seconds at boot time. This will help you recover " +#~ "from a bad kernel update by selecting another kernel to boot. During " +#~ "boot, use the 'Advanced options for Ubuntu' menu entry to select another " +#~ "kernel.\n" +#~ "\n" +#~ "0 = Do not show menu\n" +#~ "-1 = Show indefinitely till user selects" +#~ msgstr "" +#~ "Mise à jour du menu GRUB après installation ou suppression. Vous aurez 2 " +#~ "secondes au lancement pour changer de noyau au démarrage et choisir un " +#~ "noyau fonctionnel. Durant le démarrage, sélectionnez 'Option avancées " +#~ "Ubuntu' et sélectionnez un autre noyau.\n" +#~ "\n" +#~ "0 = Ne pas afficher de menu\n" +#~ "-1 = Afficher jusqu'au choix de l'utilisateur" + +#~ msgid "Updating GRUB menu" +#~ msgstr "Mise à jour du menu GRUB" + #~ msgid "Run 'ukuu --list' and use the version string listed in first column" #~ msgstr "" #~ "Exécutez 'ukuu --list' et utilisez la chaîne de la version indiquée dans " diff --git a/po/ukuu-hr.po b/po/ukuu-hr.po index eb618fe9..aaf7cb2e 100644 --- a/po/ukuu-hr.po +++ b/po/ukuu-hr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu\n" "Report-Msgid-Bugs-To: bw.aljex@gmail.com\n" -"POT-Creation-Date: 2019-03-10 23:56-0400\n" +"POT-Creation-Date: 2019-03-12 07:00-0400\n" "PO-Revision-Date: 2017-12-24 00:52+0100\n" "Last-Translator: gogo \n" "Language-Team: Croatian \n" @@ -22,7 +22,7 @@ msgstr "" msgid "About" msgstr "O programu" -#: Console/AppConsole.vala:119 +#: Console/AppConsole.vala:117 msgid "Admin access is required for running this application." msgstr "Administratorske ovlasti su potrebne za pokretanje ove aplikacije." @@ -30,7 +30,7 @@ msgstr "Administratorske ovlasti su potrebne za pokretanje ove aplikacije." msgid "Another instance of this application is running" msgstr "Drugi primjerak ove aplikacije je pokrenut" -#: Common/LinuxKernel.vala:108 +#: Common/LinuxKernel.vala:105 #, fuzzy msgid "Architecture" msgstr "Arhitektura sustava" @@ -40,7 +40,7 @@ msgstr "Arhitektura sustava" msgid "Artists" msgstr "Dizajneri" -#: Console/AppConsole.vala:106 +#: Console/AppConsole.vala:104 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "" @@ -49,7 +49,7 @@ msgstr "" msgid "Authors" msgstr "Autori" -#: Common/LinuxKernel.vala:1184 +#: Common/LinuxKernel.vala:1181 msgid "Available Kernels" msgstr "Dostupni kerneli" @@ -57,11 +57,7 @@ msgstr "Dostupni kerneli" msgid "Back" msgstr "Natrag" -#: Gtk/MainWindow.vala:822 -msgid "Booting previous kernels" -msgstr "Pokretanje prijašnjeg kernela" - -#: Console/AppConsole.vala:209 Gtk/AppGtk.vala:110 +#: Console/AppConsole.vala:207 Gtk/AppGtk.vala:110 msgid "Cache" msgstr "" @@ -75,15 +71,15 @@ msgstr "Odustani" msgid "Changes" msgstr "Promjene" -#: Gtk/SettingsDialog.vala:122 +#: Gtk/SettingsDialog.vala:121 msgid "Check every" msgstr "Provjeri svaka" -#: Console/AppConsole.vala:90 +#: Console/AppConsole.vala:88 msgid "Check for kernel updates" msgstr "Provjeri nadopune kernela" -#: Console/AppConsole.vala:91 +#: Console/AppConsole.vala:89 #, fuzzy msgid "Check for kernel updates and notify current user" msgstr "Provjeri nadopune kernela" @@ -92,11 +88,11 @@ msgstr "Provjeri nadopune kernela" msgid "Close" msgstr "Zatvori" -#: Console/AppConsole.vala:346 +#: Console/AppConsole.vala:344 msgid "Command not specified" msgstr "" -#: Console/AppConsole.vala:88 +#: Console/AppConsole.vala:86 msgid "Commands" msgstr "" @@ -104,7 +100,7 @@ msgstr "" msgid "Commands listed below are not available on this system" msgstr "Naredbe navedene ispod nisu dostupne na ovom sustavu" -#: Common/LinuxKernel.vala:740 +#: Common/LinuxKernel.vala:737 #, c-format msgid "Continue ?" msgstr "" @@ -114,16 +110,16 @@ msgstr "" msgid "Contributions" msgstr "Prilozi" -#: Common/LinuxKernel.vala:724 +#: Common/LinuxKernel.vala:721 #, fuzzy msgid "Could not find any kernels to remove" msgstr "Odaberi kernele za uklanjanje" -#: Console/AppConsole.vala:314 Gtk/MainWindow.vala:100 +#: Console/AppConsole.vala:312 Gtk/MainWindow.vala:100 msgid "Could not find requested version" msgstr "Nemoguće je pronaći zatraženu inačicu" -#: Common/LinuxKernel.vala:718 +#: Common/LinuxKernel.vala:715 #, fuzzy msgid "Could not find running kernel in list!" msgstr "Nemoguće je pronaći zatraženu inačicu" @@ -137,7 +133,7 @@ msgstr "Stvoren direktorij" msgid "Credits" msgstr "Zasluge" -#: Gtk/SettingsDialog.vala:155 +#: Gtk/SettingsDialog.vala:154 msgid "Day(s)" msgstr "Dan(a)" @@ -149,11 +145,11 @@ msgstr "Obrisan direktorij" msgid "Dir not found" msgstr "Direktorij nije pronađen" -#: Gtk/SettingsDialog.vala:162 +#: Gtk/SettingsDialog.vala:161 msgid "Display" msgstr "Prikaz" -#: Common/LinuxKernel.vala:94 +#: Common/LinuxKernel.vala:91 msgid "Distribution" msgstr "Distribucija" @@ -162,11 +158,11 @@ msgstr "Distribucija" msgid "Documenters" msgstr "Autori dokumentacije" -#: Console/AppConsole.vala:99 +#: Console/AppConsole.vala:97 msgid "Download packages for specified kernel" msgstr "Preuzmi pakete za određeni kernel" -#: Common/LinuxKernel.vala:1230 +#: Common/LinuxKernel.vala:1227 #, c-format msgid "Downloading" msgstr "Preuzimanje" @@ -175,7 +171,7 @@ msgstr "Preuzimanje" msgid "E" msgstr "G" -#: Common/LinuxKernel.vala:1258 +#: Common/LinuxKernel.vala:1255 #, c-format msgid "ERROR" msgstr "GREŠKA" @@ -208,11 +204,11 @@ msgstr "Neuspjelo čitanje datoteke" msgid "Failed to write file" msgstr "Neuspjelo zapisivanje datoteke" -#: Common/LinuxKernel.vala:399 +#: Common/LinuxKernel.vala:396 msgid "Fetching index from kernel.ubuntu.com..." msgstr "Preuzimanje sadržaja sa kernel.ubuntu.com..." -#: Common/LinuxKernel.vala:356 +#: Common/LinuxKernel.vala:353 msgid "Fetching index..." msgstr "" @@ -245,24 +241,20 @@ msgstr "Datoteka nije pronađena: %s" msgid "File saved" msgstr "Datoteka je spremljenja" -#: Common/LinuxKernel.vala:733 +#: Common/LinuxKernel.vala:730 #, c-format msgid "Following kernels will be removed" msgstr "" -#: Gtk/SettingsDialog.vala:192 -msgid "GRUB Options" -msgstr "GRUB mogućnosti" - -#: Gtk/SettingsDialog.vala:181 +#: Gtk/SettingsDialog.vala:180 msgid "Hide kernels older than 4.0" msgstr "Sakrij kernele starije od inačice 4.0" -#: Gtk/SettingsDialog.vala:170 +#: Gtk/SettingsDialog.vala:169 msgid "Hide unstable and RC releases" msgstr "Sakrij nestabilne kernele i predizdanja" -#: Gtk/SettingsDialog.vala:153 +#: Gtk/SettingsDialog.vala:152 msgid "Hour(s)" msgstr "Sat(a)" @@ -270,11 +262,11 @@ msgstr "Sat(a)" msgid "Ignore this update" msgstr "Zanemari ovu nadopunu" -#: Common/LinuxKernel.vala:262 +#: Common/LinuxKernel.vala:259 msgid "Index is fresh" msgstr "Sadržaj je osvježen" -#: Common/LinuxKernel.vala:259 +#: Common/LinuxKernel.vala:256 msgid "Index is stale" msgstr "Sadržaj je zastario" @@ -282,21 +274,21 @@ msgstr "Sadržaj je zastario" msgid "Install" msgstr "Instaliraj" -#: Common/LinuxKernel.vala:797 +#: Common/LinuxKernel.vala:794 #, c-format msgid "Install Linux v%s ? (y/n): " msgstr "" -#: Console/AppConsole.vala:94 +#: Console/AppConsole.vala:92 #, fuzzy msgid "Install latest mainline kernel" msgstr "Instaliraj određeni mainline kernel" -#: Console/AppConsole.vala:95 +#: Console/AppConsole.vala:93 msgid "Install latest point update for current series" msgstr "" -#: Console/AppConsole.vala:96 +#: Console/AppConsole.vala:94 msgid "Install specified mainline kernel" msgstr "Instaliraj određeni mainline kernel" @@ -304,21 +296,21 @@ msgstr "Instaliraj određeni mainline kernel" msgid "Install this kernel" msgstr "Instaliraj ovaj kernel" -#: Common/LinuxKernel.vala:1306 +#: Common/LinuxKernel.vala:1301 msgid "Installation completed with errors" msgstr "Instalacija je završena s greškama" -#: Common/LinuxKernel.vala:1303 +#: Common/LinuxKernel.vala:1298 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "Instalacija je završena. Potrebno je ponovno pokretanje računala kako bi se " "koristio novi kernel." -#: Common/LinuxKernel.vala:1201 Gtk/MainWindow.vala:208 +#: Common/LinuxKernel.vala:1198 Gtk/MainWindow.vala:208 msgid "Installed" msgstr "Instalirano" -#: Gtk/SettingsDialog.vala:257 +#: Gtk/SettingsDialog.vala:212 #, fuzzy msgid "Internect connection timeout in " msgstr "Internet povezivanje nije aktivno" @@ -336,17 +328,17 @@ msgstr "Kernel" msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Alat za nadogradnju kernela Ubuntu temeljenih distribucija" -#: Common/LinuxKernel.vala:779 Console/AppConsole.vala:372 +#: Common/LinuxKernel.vala:776 Console/AppConsole.vala:370 #, c-format msgid "Latest point update" msgstr "" -#: Common/LinuxKernel.vala:768 Console/AppConsole.vala:365 +#: Common/LinuxKernel.vala:765 Console/AppConsole.vala:363 #, c-format msgid "Latest update" msgstr "" -#: Console/AppConsole.vala:92 +#: Console/AppConsole.vala:90 msgid "List all available mainline kernels" msgstr "Prikaži sve mainline kernele" @@ -354,43 +346,11 @@ msgstr "Prikaži sve mainline kernele" msgid "List available kernels" msgstr "Prikaži sve kernele" -#: Console/AppConsole.vala:93 +#: Console/AppConsole.vala:91 #, fuzzy msgid "List installed kernels" msgstr "Prikaži sve kernele" -#: Gtk/MainWindow.vala:823 -msgid "" -"Mainline kernels can sometimes cause problems if there are proprietary " -"drivers installed on your system. These issues include:\n" -"\n" -"▰ WiFi not working\n" -"▰ Black screen on startup\n" -"▰ Random system freeze\n" -"\n" -"If you face any of these issues there is no need to panic.\n" -"\n" -"▰ Reboot your system\n" -"▰ Select 'Advanced Boot Options' from the GRUB boot menu\n" -"▰ Select an older kernel from the list displayed on this screen\n" -"▰ Your system will boot using the selected kernel\n" -"▰ You can now uninstall the kernel that is causing issues\n" -msgstr "" -"Mainline kerneli ponekada mogu prouzrokovati probleme ako su instalirani " -"vlasnički upravljački programi na vašem sustavu. Ti problemi uključuju:\n" -"\n" -"▰ Bežična mreža ne radi\n" -"▰ Crni zaslon pri pokretanju\n" -"▰ Slučajna smrzavanja sustava\n" -"\n" -"Ako se suočite s bilo kojim od ovih problema nemojte paničariti.\n" -"\n" -"▰ Ponovno pokrenite svoj sustav\n" -"▰ Odaberite 'Napredne mogućnosti pokretanja' s GRUB izbornika pokretanja\n" -"▰ Odaberite stariji kernel s popisa prikazanog na zaslonu\n" -"▰ Vaš sustav će se pokrenuti pomoću odabranog kernela\n" -"▰ Sada možete ukloniti kernel koji uzrokuje probleme\n" - #: Utility/Gtk/GtkHelper.vala:272 msgid "Missing Icon" msgstr "Ikone koje nedostaju" @@ -399,7 +359,7 @@ msgstr "Ikone koje nedostaju" msgid "Multiple Kernels Selected" msgstr "Više kernela je odabrano" -#: Console/AppConsole.vala:296 +#: Console/AppConsole.vala:294 msgid "Multiple kernels selected for installation. Select only one." msgstr "Više kernela je odabrano za instalaciju. odaberite samo jedan." @@ -411,12 +371,12 @@ msgstr "Ne" msgid "No Internet" msgstr "Nema pristupa internetu" -#: Console/AppConsole.vala:290 Console/AppConsole.vala:327 +#: Console/AppConsole.vala:288 Console/AppConsole.vala:325 msgid "No kernels specified" msgstr "" -#: Common/LinuxKernel.vala:787 Console/AppConsole.vala:377 -#: Console/AppConsole.vala:457 Gtk/MainWindow.vala:817 +#: Common/LinuxKernel.vala:784 Console/AppConsole.vala:375 +#: Console/AppConsole.vala:433 Gtk/MainWindow.vala:793 msgid "No updates found" msgstr "Nema pronađenih nadopuna" @@ -424,38 +384,38 @@ msgstr "Nema pronađenih nadopuna" msgid "Not Selected" msgstr "Nije odabrano" -#: Gtk/SettingsDialog.vala:67 +#: Gtk/SettingsDialog.vala:66 msgid "Notification" msgstr "Obavijesti" -#: Gtk/SettingsDialog.vala:74 +#: Gtk/SettingsDialog.vala:73 msgid "Notify if a major release is available" msgstr "Obavijesti kada je glavno izdanje dostupno" -#: Gtk/SettingsDialog.vala:85 +#: Gtk/SettingsDialog.vala:84 msgid "Notify if a point release is available" msgstr "Obavijesti kada je pojedino izdanje dostupno" -#: Common/LinuxKernel.vala:1249 Utility/Gtk/CustomMessageDialog.vala:167 +#: Common/LinuxKernel.vala:1246 Utility/Gtk/CustomMessageDialog.vala:167 #: Utility/Gtk/CustomMessageDialog.vala:171 Utility/Gtk/GtkHelper.vala:121 #, c-format msgid "OK" msgstr "U redu" -#: Console/AppConsole.vala:103 Gtk/AppGtk.vala:181 +#: Console/AppConsole.vala:101 Gtk/AppGtk.vala:181 msgid "Options" msgstr "Mogućnosti" -#: Gtk/SettingsDialog.vala:236 +#: Gtk/SettingsDialog.vala:191 msgid "Other" msgstr "" -#: Common/LinuxKernel.vala:1063 +#: Common/LinuxKernel.vala:1060 #, c-format msgid "Packages Available (DEB)" msgstr "Dostupni paketi (DEB)" -#: Common/LinuxKernel.vala:1071 +#: Common/LinuxKernel.vala:1068 #, c-format msgid "Packages Installed" msgstr "Instalirani paketi" @@ -464,7 +424,7 @@ msgstr "Instalirani paketi" msgid "Please install required packages and try again" msgstr "Instalirajte potrebni paket i pokušajte ponovno" -#: Common/LinuxKernel.vala:1327 +#: Common/LinuxKernel.vala:1322 msgid "Preparing to remove selected kernels" msgstr "Pripremanje uklanjanja odabranih kernela" @@ -488,29 +448,29 @@ msgstr "Osvježavanje..." msgid "Remove" msgstr "Ukloni" -#: Console/AppConsole.vala:100 Console/AppConsole.vala:105 +#: Console/AppConsole.vala:98 Console/AppConsole.vala:103 msgid "Remove files from application cache" msgstr "Ukloni datoteke iz predmemorije aplikacije" -#: Console/AppConsole.vala:98 Gtk/MainWindow.vala:426 +#: Console/AppConsole.vala:96 Gtk/MainWindow.vala:426 msgid "Remove installed kernels older than running kernel" msgstr "" -#: Console/AppConsole.vala:97 +#: Console/AppConsole.vala:95 #, fuzzy msgid "Remove specified kernel" msgstr "Ukloni određeni mainline kernel" -#: Console/AppConsole.vala:204 Console/AppConsole.vala:318 -#: Console/AppConsole.vala:347 +#: Console/AppConsole.vala:202 Console/AppConsole.vala:316 +#: Console/AppConsole.vala:345 msgid "Run '" msgstr "" -#: Console/AppConsole.vala:122 +#: Console/AppConsole.vala:120 msgid "Run the application as admin with pkexec or sudo." msgstr "Pokreni aplikaciju kao administrator sa pkexec ili sudo." -#: Common/LinuxKernel.vala:1201 Gtk/MainWindow.vala:208 +#: Common/LinuxKernel.vala:1198 Gtk/MainWindow.vala:208 msgid "Running" msgstr "Pokrenuto" @@ -526,7 +486,7 @@ msgstr "Odaberi kernel za instalaciju" msgid "Select the kernels to remove" msgstr "Odaberi kernele za uklanjanje" -#: Common/LinuxKernel.vala:1322 +#: Common/LinuxKernel.vala:1317 msgid "" "Selected kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -534,11 +494,7 @@ msgstr "" "Odabrani kernel je trenutno pokernut i ne može se ukloniti.\n" " Instalirajte drugi kernel prije uklanjanja trenutnog kernela." -#: Gtk/SettingsDialog.vala:203 -msgid "Set GRUB menu timeout" -msgstr "" - -#: Gtk/MainWindow.vala:475 Gtk/SettingsDialog.vala:57 +#: Gtk/MainWindow.vala:475 Gtk/SettingsDialog.vala:56 msgid "Settings" msgstr "Postavke" @@ -550,20 +506,20 @@ msgstr "Prikaži" msgid "Show all options" msgstr "Prikaži sve mogućnosti" -#: Gtk/SettingsDialog.vala:96 +#: Gtk/SettingsDialog.vala:95 msgid "Show notification bubble on desktop" msgstr "Prikaži mjehurić obavijesti radne površine" -#: Gtk/SettingsDialog.vala:107 +#: Gtk/SettingsDialog.vala:106 msgid "Show notification dialog" msgstr "Prikaži dijalog obavijesti" -#: Console/AppConsole.vala:101 +#: Console/AppConsole.vala:99 #, fuzzy msgid "Show unstable and RC releases" msgstr "Sakrij nestabilne kernele i predizdanja" -#: Gtk/SettingsDialog.vala:244 +#: Gtk/SettingsDialog.vala:199 #, fuzzy msgid "Skip internet connection check" msgstr "Internet povezivanje nije aktivno" @@ -576,11 +532,11 @@ msgstr "Stanje" msgid "Stopped" msgstr "Zaustavljeno" -#: Console/AppConsole.vala:86 Gtk/AppGtk.vala:179 +#: Console/AppConsole.vala:84 Gtk/AppGtk.vala:179 msgid "Syntax" msgstr "Sintaksa" -#: Console/AppConsole.vala:210 Gtk/AppGtk.vala:111 +#: Console/AppConsole.vala:208 Gtk/AppGtk.vala:111 msgid "Temp" msgstr "" @@ -589,11 +545,11 @@ msgstr "" msgid "Third Party Tools" msgstr "Alati treće strane" -#: Common/LinuxKernel.vala:1272 Gtk/MainWindow.vala:678 +#: Common/LinuxKernel.vala:1269 Gtk/MainWindow.vala:678 msgid "This kernel is already installed." msgstr "Ovaj kernel je već instaliran." -#: Common/LinuxKernel.vala:1380 +#: Common/LinuxKernel.vala:1373 msgid "" "This kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -601,58 +557,23 @@ msgstr "" "Ovaj kernel je trenutno pokrenut i ne može se ukloniti.\n" " Instalirajte drugi kernel prije uklanjanja trenutnog kernela." -#: Gtk/SettingsDialog.vala:223 -msgid "" -"Time (in seconds) to display the GRUB menu\n" -"\n" -"0 = Do not show menu\n" -"-1 = Show indefinitely till user selects" -msgstr "" -"Vrijeme (u sekundama) prikaza GRUB izbornika\n" -"\n" -"0 = Ne prikazuj izbornik\n" -"-1 = Prikaži izbornik sve do korisnikovog odabira" - #: Utility/Gtk/AboutWindow.vala:346 #, c-format msgid "Translators" msgstr "Prevoditelji" -#: Common/LinuxKernel.vala:1364 Common/LinuxKernel.vala:1422 +#: Common/LinuxKernel.vala:1357 Common/LinuxKernel.vala:1413 msgid "Un-install completed" msgstr "Deinstalacija završena" -#: Common/LinuxKernel.vala:1367 Common/LinuxKernel.vala:1425 +#: Common/LinuxKernel.vala:1360 Common/LinuxKernel.vala:1416 msgid "Un-install completed with errors" msgstr "Deinstalacija završena s greškama" -#: Console/AppConsole.vala:202 Gtk/AppGtk.vala:166 +#: Console/AppConsole.vala:200 Gtk/AppGtk.vala:166 msgid "Unknown option" msgstr "Nepoznata mogućnost" -#: Gtk/SettingsDialog.vala:210 -msgid "" -"Updates the GRUB menu after installing or removing kernels, so that the menu " -"is displayed for 2 seconds at boot time. This will help you recover from a " -"bad kernel update by selecting another kernel to boot. During boot, use the " -"'Advanced options for Ubuntu' menu entry to select another kernel.\n" -"\n" -"0 = Do not show menu\n" -"-1 = Show indefinitely till user selects" -msgstr "" -"Nadopunjuje GRUB izbornik nakon instalacije ili uklanjanja kernela, tako da " -"je izbornik prikazan 2 sekunde pri pokretanju računala. Ovo će vam pomoći u " -"slučaju nepotpune nadopune kernela odabirom drugog kernela za pokretanje. " -"Tijekom pokretanja, koristite stavku izbornika 'Napredne mogućnosti za " -"Ubuntu' kako bi odabrali drugi kernel.\n" -"\n" -"0 = Ne prikazuj izbornik\n" -"-1 = Prikaži izbornik sve do korisnikovog odabira" - -#: Common/LinuxKernel.vala:1493 -msgid "Updating GRUB menu" -msgstr "Nadopuna GRUB izbornika" - #: Gtk/MainWindow.vala:179 msgid "Version" msgstr "Inačica" @@ -661,7 +582,7 @@ msgstr "Inačica" msgid "W" msgstr "Z" -#: Gtk/SettingsDialog.vala:157 +#: Gtk/SettingsDialog.vala:156 msgid "Week(s)" msgstr "Tjedan(a)" @@ -673,10 +594,80 @@ msgstr "Da" msgid "[Warning] Deleted invalid lock" msgstr "[Upozorenje] Obrisano je neispravno zaključavanje" -#: Gtk/SettingsDialog.vala:271 +#: Gtk/SettingsDialog.vala:226 msgid "seconds" msgstr "" +#~ msgid "Booting previous kernels" +#~ msgstr "Pokretanje prijašnjeg kernela" + +#~ msgid "GRUB Options" +#~ msgstr "GRUB mogućnosti" + +#~ msgid "" +#~ "Mainline kernels can sometimes cause problems if there are proprietary " +#~ "drivers installed on your system. These issues include:\n" +#~ "\n" +#~ "▰ WiFi not working\n" +#~ "▰ Black screen on startup\n" +#~ "▰ Random system freeze\n" +#~ "\n" +#~ "If you face any of these issues there is no need to panic.\n" +#~ "\n" +#~ "▰ Reboot your system\n" +#~ "▰ Select 'Advanced Boot Options' from the GRUB boot menu\n" +#~ "▰ Select an older kernel from the list displayed on this screen\n" +#~ "▰ Your system will boot using the selected kernel\n" +#~ "▰ You can now uninstall the kernel that is causing issues\n" +#~ msgstr "" +#~ "Mainline kerneli ponekada mogu prouzrokovati probleme ako su instalirani " +#~ "vlasnički upravljački programi na vašem sustavu. Ti problemi uključuju:\n" +#~ "\n" +#~ "▰ Bežična mreža ne radi\n" +#~ "▰ Crni zaslon pri pokretanju\n" +#~ "▰ Slučajna smrzavanja sustava\n" +#~ "\n" +#~ "Ako se suočite s bilo kojim od ovih problema nemojte paničariti.\n" +#~ "\n" +#~ "▰ Ponovno pokrenite svoj sustav\n" +#~ "▰ Odaberite 'Napredne mogućnosti pokretanja' s GRUB izbornika pokretanja\n" +#~ "▰ Odaberite stariji kernel s popisa prikazanog na zaslonu\n" +#~ "▰ Vaš sustav će se pokrenuti pomoću odabranog kernela\n" +#~ "▰ Sada možete ukloniti kernel koji uzrokuje probleme\n" + +#~ msgid "" +#~ "Time (in seconds) to display the GRUB menu\n" +#~ "\n" +#~ "0 = Do not show menu\n" +#~ "-1 = Show indefinitely till user selects" +#~ msgstr "" +#~ "Vrijeme (u sekundama) prikaza GRUB izbornika\n" +#~ "\n" +#~ "0 = Ne prikazuj izbornik\n" +#~ "-1 = Prikaži izbornik sve do korisnikovog odabira" + +#~ msgid "" +#~ "Updates the GRUB menu after installing or removing kernels, so that the " +#~ "menu is displayed for 2 seconds at boot time. This will help you recover " +#~ "from a bad kernel update by selecting another kernel to boot. During " +#~ "boot, use the 'Advanced options for Ubuntu' menu entry to select another " +#~ "kernel.\n" +#~ "\n" +#~ "0 = Do not show menu\n" +#~ "-1 = Show indefinitely till user selects" +#~ msgstr "" +#~ "Nadopunjuje GRUB izbornik nakon instalacije ili uklanjanja kernela, tako " +#~ "da je izbornik prikazan 2 sekunde pri pokretanju računala. Ovo će vam " +#~ "pomoći u slučaju nepotpune nadopune kernela odabirom drugog kernela za " +#~ "pokretanje. Tijekom pokretanja, koristite stavku izbornika 'Napredne " +#~ "mogućnosti za Ubuntu' kako bi odabrali drugi kernel.\n" +#~ "\n" +#~ "0 = Ne prikazuj izbornik\n" +#~ "-1 = Prikaži izbornik sve do korisnikovog odabira" + +#~ msgid "Updating GRUB menu" +#~ msgstr "Nadopuna GRUB izbornika" + #~ msgid "Run 'ukuu --list' and use the version string listed in first column" #~ msgstr "Pokrenite 'ukuu --list' i koristite izraz inačice u prvom stupcu" diff --git a/po/ukuu-nl.po b/po/ukuu-nl.po index 7de933cc..fa48fb10 100644 --- a/po/ukuu-nl.po +++ b/po/ukuu-nl.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu 2.2\n" "Report-Msgid-Bugs-To: bw.aljex@gmail.com\n" -"POT-Creation-Date: 2019-03-10 23:56-0400\n" +"POT-Creation-Date: 2019-03-12 07:00-0400\n" "PO-Revision-Date: 2017-04-30 11:50+0200\n" "Last-Translator: Heimen Stoffels \n" "Language-Team: \n" @@ -22,7 +22,7 @@ msgstr "" msgid "About" msgstr "Over" -#: Console/AppConsole.vala:119 +#: Console/AppConsole.vala:117 msgid "Admin access is required for running this application." msgstr "" "U heeft administrator-rechten nodig om deze applicatie te kunnen draaien." @@ -31,7 +31,7 @@ msgstr "" msgid "Another instance of this application is running" msgstr "Er is al een venster geopend van deze applicatie" -#: Common/LinuxKernel.vala:108 +#: Common/LinuxKernel.vala:105 #, fuzzy msgid "Architecture" msgstr "Systeemarchitectuur" @@ -41,7 +41,7 @@ msgstr "Systeemarchitectuur" msgid "Artists" msgstr "Artiesten" -#: Console/AppConsole.vala:106 +#: Console/AppConsole.vala:104 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "" @@ -50,7 +50,7 @@ msgstr "" msgid "Authors" msgstr "Auteurs" -#: Common/LinuxKernel.vala:1184 +#: Common/LinuxKernel.vala:1181 msgid "Available Kernels" msgstr "Beschikbare kernels" @@ -58,11 +58,7 @@ msgstr "Beschikbare kernels" msgid "Back" msgstr "Terug" -#: Gtk/MainWindow.vala:822 -msgid "Booting previous kernels" -msgstr "Opstarten van vorige kernels" - -#: Console/AppConsole.vala:209 Gtk/AppGtk.vala:110 +#: Console/AppConsole.vala:207 Gtk/AppGtk.vala:110 msgid "Cache" msgstr "" @@ -76,15 +72,15 @@ msgstr "Annuleren" msgid "Changes" msgstr "Wijzigingen" -#: Gtk/SettingsDialog.vala:122 +#: Gtk/SettingsDialog.vala:121 msgid "Check every" msgstr "Controleer elke" -#: Console/AppConsole.vala:90 +#: Console/AppConsole.vala:88 msgid "Check for kernel updates" msgstr "Controleren op kernel-updates" -#: Console/AppConsole.vala:91 +#: Console/AppConsole.vala:89 #, fuzzy msgid "Check for kernel updates and notify current user" msgstr "Controleren op kernel-updates" @@ -93,11 +89,11 @@ msgstr "Controleren op kernel-updates" msgid "Close" msgstr "Sluiten" -#: Console/AppConsole.vala:346 +#: Console/AppConsole.vala:344 msgid "Command not specified" msgstr "" -#: Console/AppConsole.vala:88 +#: Console/AppConsole.vala:86 msgid "Commands" msgstr "" @@ -105,7 +101,7 @@ msgstr "" msgid "Commands listed below are not available on this system" msgstr "De onderstaande opdrachten zijn niet beschikbaar op dit systeem" -#: Common/LinuxKernel.vala:740 +#: Common/LinuxKernel.vala:737 #, c-format msgid "Continue ?" msgstr "" @@ -115,16 +111,16 @@ msgstr "" msgid "Contributions" msgstr "Bijdragen" -#: Common/LinuxKernel.vala:724 +#: Common/LinuxKernel.vala:721 #, fuzzy msgid "Could not find any kernels to remove" msgstr "Selecteer de te verwijderen kernels" -#: Console/AppConsole.vala:314 Gtk/MainWindow.vala:100 +#: Console/AppConsole.vala:312 Gtk/MainWindow.vala:100 msgid "Could not find requested version" msgstr "De vereiste versie kan niet worden gevonden" -#: Common/LinuxKernel.vala:718 +#: Common/LinuxKernel.vala:715 #, fuzzy msgid "Could not find running kernel in list!" msgstr "De vereiste versie kan niet worden gevonden" @@ -138,7 +134,7 @@ msgstr "Map gecreëerd" msgid "Credits" msgstr "Met dank aan" -#: Gtk/SettingsDialog.vala:155 +#: Gtk/SettingsDialog.vala:154 msgid "Day(s)" msgstr "dag(en)" @@ -150,11 +146,11 @@ msgstr "Map verwijderd" msgid "Dir not found" msgstr "Map niet gevonden" -#: Gtk/SettingsDialog.vala:162 +#: Gtk/SettingsDialog.vala:161 msgid "Display" msgstr "Weergave" -#: Common/LinuxKernel.vala:94 +#: Common/LinuxKernel.vala:91 msgid "Distribution" msgstr "Distributie" @@ -163,11 +159,11 @@ msgstr "Distributie" msgid "Documenters" msgstr "Documenteerders" -#: Console/AppConsole.vala:99 +#: Console/AppConsole.vala:97 msgid "Download packages for specified kernel" msgstr "Pakketten downloaden voor opgegeven kernel" -#: Common/LinuxKernel.vala:1230 +#: Common/LinuxKernel.vala:1227 #, c-format msgid "Downloading" msgstr "Bezig met downloaden" @@ -176,7 +172,7 @@ msgstr "Bezig met downloaden" msgid "E" msgstr "E" -#: Common/LinuxKernel.vala:1258 +#: Common/LinuxKernel.vala:1255 #, c-format msgid "ERROR" msgstr "FOUT" @@ -209,11 +205,11 @@ msgstr "Lezen van bestand is mislukt" msgid "Failed to write file" msgstr "Schrijven naar bestand is mislukt" -#: Common/LinuxKernel.vala:399 +#: Common/LinuxKernel.vala:396 msgid "Fetching index from kernel.ubuntu.com..." msgstr "Bezig met ophalen van index van kernel.ubuntu.com..." -#: Common/LinuxKernel.vala:356 +#: Common/LinuxKernel.vala:353 msgid "Fetching index..." msgstr "" @@ -246,24 +242,20 @@ msgstr "Bestand niet gevonden: %s" msgid "File saved" msgstr "Bestand opgeslagen" -#: Common/LinuxKernel.vala:733 +#: Common/LinuxKernel.vala:730 #, c-format msgid "Following kernels will be removed" msgstr "" -#: Gtk/SettingsDialog.vala:192 -msgid "GRUB Options" -msgstr "GRUB-opties" - -#: Gtk/SettingsDialog.vala:181 +#: Gtk/SettingsDialog.vala:180 msgid "Hide kernels older than 4.0" msgstr "Kernels ouder dan 4.0 verbergen" -#: Gtk/SettingsDialog.vala:170 +#: Gtk/SettingsDialog.vala:169 msgid "Hide unstable and RC releases" msgstr "Instabiele en RC-uitgaven verbergen" -#: Gtk/SettingsDialog.vala:153 +#: Gtk/SettingsDialog.vala:152 msgid "Hour(s)" msgstr "uur" @@ -271,11 +263,11 @@ msgstr "uur" msgid "Ignore this update" msgstr "Deze update negeren" -#: Common/LinuxKernel.vala:262 +#: Common/LinuxKernel.vala:259 msgid "Index is fresh" msgstr "De index is up-to-date" -#: Common/LinuxKernel.vala:259 +#: Common/LinuxKernel.vala:256 msgid "Index is stale" msgstr "De index is verouderd" @@ -283,21 +275,21 @@ msgstr "De index is verouderd" msgid "Install" msgstr "Installeren" -#: Common/LinuxKernel.vala:797 +#: Common/LinuxKernel.vala:794 #, c-format msgid "Install Linux v%s ? (y/n): " msgstr "" -#: Console/AppConsole.vala:94 +#: Console/AppConsole.vala:92 #, fuzzy msgid "Install latest mainline kernel" msgstr "Opgegeven mainline-kernel installeren" -#: Console/AppConsole.vala:95 +#: Console/AppConsole.vala:93 msgid "Install latest point update for current series" msgstr "" -#: Console/AppConsole.vala:96 +#: Console/AppConsole.vala:94 msgid "Install specified mainline kernel" msgstr "Opgegeven mainline-kernel installeren" @@ -305,21 +297,21 @@ msgstr "Opgegeven mainline-kernel installeren" msgid "Install this kernel" msgstr "Deze kernel installeren" -#: Common/LinuxKernel.vala:1306 +#: Common/LinuxKernel.vala:1301 msgid "Installation completed with errors" msgstr "De installatie is foutloos voltooid" -#: Common/LinuxKernel.vala:1303 +#: Common/LinuxKernel.vala:1298 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "De installatie is voltooid. Herstart de computer om de nieuwe kernel te " "gebruiken." -#: Common/LinuxKernel.vala:1201 Gtk/MainWindow.vala:208 +#: Common/LinuxKernel.vala:1198 Gtk/MainWindow.vala:208 msgid "Installed" msgstr "Geïnstalleerd" -#: Gtk/SettingsDialog.vala:257 +#: Gtk/SettingsDialog.vala:212 #, fuzzy msgid "Internect connection timeout in " msgstr "U bent niet verbonden met het internet" @@ -337,17 +329,17 @@ msgstr "Kernel" msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Kernel-upgradehulpmiddel voor op Ubuntu-gebaseerde distributies" -#: Common/LinuxKernel.vala:779 Console/AppConsole.vala:372 +#: Common/LinuxKernel.vala:776 Console/AppConsole.vala:370 #, c-format msgid "Latest point update" msgstr "" -#: Common/LinuxKernel.vala:768 Console/AppConsole.vala:365 +#: Common/LinuxKernel.vala:765 Console/AppConsole.vala:363 #, c-format msgid "Latest update" msgstr "" -#: Console/AppConsole.vala:92 +#: Console/AppConsole.vala:90 msgid "List all available mainline kernels" msgstr "Alle beschikbare mainline-kernels weergeven" @@ -356,45 +348,11 @@ msgstr "Alle beschikbare mainline-kernels weergeven" msgid "List available kernels" msgstr "Alle beschikbare mainline-kernels weergeven" -#: Console/AppConsole.vala:93 +#: Console/AppConsole.vala:91 #, fuzzy msgid "List installed kernels" msgstr "Alle beschikbare mainline-kernels weergeven" -#: Gtk/MainWindow.vala:823 -#, fuzzy -msgid "" -"Mainline kernels can sometimes cause problems if there are proprietary " -"drivers installed on your system. These issues include:\n" -"\n" -"▰ WiFi not working\n" -"▰ Black screen on startup\n" -"▰ Random system freeze\n" -"\n" -"If you face any of these issues there is no need to panic.\n" -"\n" -"▰ Reboot your system\n" -"▰ Select 'Advanced Boot Options' from the GRUB boot menu\n" -"▰ Select an older kernel from the list displayed on this screen\n" -"▰ Your system will boot using the selected kernel\n" -"▰ You can now uninstall the kernel that is causing issues\n" -msgstr "" -"Mainline-kernels kunnen soms problemen geven als er gesloten drivers " -"geïnstalleerd zijn op het systeem. Deze problemen zijn o.a.:\n" -"\n" -"\\342\\226\\260 Wi-Fi werkt niet\n" -"\\342\\226\\260 Zwart scherm na opstarten\n" -"\\342\\226\\260 Willekeurige vastlopers\n" -"\n" -"Als u één van deze problemen ervaart, is er geen reden tot paniek.\n" -"\n" -"\\342\\226\\260 Start uw systeem opnieuw op\n" -"\\342\\226\\260 Selecteer 'Geavanceerde opstartinstellingen' in het GRUB-" -"opstartmenu\n" -"\\342\\226\\260 Selecteer een oudere kernel uit de lijst\n" -"\\342\\226\\260 Uw systeem zal de geselecteerde kernel opstarten\n" -"\\342\\226\\260 Daarna kunt u de probleemkernel deïnstalleren\n" - #: Utility/Gtk/GtkHelper.vala:272 msgid "Missing Icon" msgstr "Ontbrekend pictogram" @@ -403,7 +361,7 @@ msgstr "Ontbrekend pictogram" msgid "Multiple Kernels Selected" msgstr "Meerdere kernels geselecteerd" -#: Console/AppConsole.vala:296 +#: Console/AppConsole.vala:294 msgid "Multiple kernels selected for installation. Select only one." msgstr "" "Er zijn meerdere te installeren kernels geselecteerd. Selecteer er slechts " @@ -417,12 +375,12 @@ msgstr "" msgid "No Internet" msgstr "Geen internetverbinding" -#: Console/AppConsole.vala:290 Console/AppConsole.vala:327 +#: Console/AppConsole.vala:288 Console/AppConsole.vala:325 msgid "No kernels specified" msgstr "" -#: Common/LinuxKernel.vala:787 Console/AppConsole.vala:377 -#: Console/AppConsole.vala:457 Gtk/MainWindow.vala:817 +#: Common/LinuxKernel.vala:784 Console/AppConsole.vala:375 +#: Console/AppConsole.vala:433 Gtk/MainWindow.vala:793 msgid "No updates found" msgstr "Geen updates gevonden" @@ -430,38 +388,38 @@ msgstr "Geen updates gevonden" msgid "Not Selected" msgstr "Niet geselecteerd" -#: Gtk/SettingsDialog.vala:67 +#: Gtk/SettingsDialog.vala:66 msgid "Notification" msgstr "Melding" -#: Gtk/SettingsDialog.vala:74 +#: Gtk/SettingsDialog.vala:73 msgid "Notify if a major release is available" msgstr "Melding weergeven als er een grote update beschikbaar is" -#: Gtk/SettingsDialog.vala:85 +#: Gtk/SettingsDialog.vala:84 msgid "Notify if a point release is available" msgstr "Melding weergeven als er een puntupdate beschikbaar is" -#: Common/LinuxKernel.vala:1249 Utility/Gtk/CustomMessageDialog.vala:167 +#: Common/LinuxKernel.vala:1246 Utility/Gtk/CustomMessageDialog.vala:167 #: Utility/Gtk/CustomMessageDialog.vala:171 Utility/Gtk/GtkHelper.vala:121 #, c-format msgid "OK" msgstr "Oké" -#: Console/AppConsole.vala:103 Gtk/AppGtk.vala:181 +#: Console/AppConsole.vala:101 Gtk/AppGtk.vala:181 msgid "Options" msgstr "Opties" -#: Gtk/SettingsDialog.vala:236 +#: Gtk/SettingsDialog.vala:191 msgid "Other" msgstr "" -#: Common/LinuxKernel.vala:1063 +#: Common/LinuxKernel.vala:1060 #, c-format msgid "Packages Available (DEB)" msgstr "Beschikbare pakketten (DEB)" -#: Common/LinuxKernel.vala:1071 +#: Common/LinuxKernel.vala:1068 #, c-format msgid "Packages Installed" msgstr "Geïnstalleerde pakketten" @@ -470,7 +428,7 @@ msgstr "Geïnstalleerde pakketten" msgid "Please install required packages and try again" msgstr "Installeer de vereiste pakketten en probeer het opnieuw" -#: Common/LinuxKernel.vala:1327 +#: Common/LinuxKernel.vala:1322 msgid "Preparing to remove selected kernels" msgstr "Bezig met voorbereiden van verwijderen van geselecteerde kernels" @@ -494,30 +452,30 @@ msgstr "Bezig met verversen..." msgid "Remove" msgstr "Verwijderen" -#: Console/AppConsole.vala:100 Console/AppConsole.vala:105 +#: Console/AppConsole.vala:98 Console/AppConsole.vala:103 msgid "Remove files from application cache" msgstr "Bestanden verwijderen uit applicatie-cache" -#: Console/AppConsole.vala:98 Gtk/MainWindow.vala:426 +#: Console/AppConsole.vala:96 Gtk/MainWindow.vala:426 msgid "Remove installed kernels older than running kernel" msgstr "" -#: Console/AppConsole.vala:97 +#: Console/AppConsole.vala:95 #, fuzzy msgid "Remove specified kernel" msgstr "Opgegeven mainline-kernel verwijderen" -#: Console/AppConsole.vala:204 Console/AppConsole.vala:318 -#: Console/AppConsole.vala:347 +#: Console/AppConsole.vala:202 Console/AppConsole.vala:316 +#: Console/AppConsole.vala:345 msgid "Run '" msgstr "" -#: Console/AppConsole.vala:122 +#: Console/AppConsole.vala:120 #, fuzzy msgid "Run the application as admin with pkexec or sudo." msgstr "Draai de applicatie als root of m.b.v. gksu/sudo." -#: Common/LinuxKernel.vala:1201 Gtk/MainWindow.vala:208 +#: Common/LinuxKernel.vala:1198 Gtk/MainWindow.vala:208 msgid "Running" msgstr "Bezig met draaien" @@ -533,7 +491,7 @@ msgstr "Selecteer de te installeren kernel" msgid "Select the kernels to remove" msgstr "Selecteer de te verwijderen kernels" -#: Common/LinuxKernel.vala:1322 +#: Common/LinuxKernel.vala:1317 msgid "" "Selected kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -542,11 +500,7 @@ msgstr "" "verwijderd.\n" " Installeer een andere kernel voordat u deze verwijdert." -#: Gtk/SettingsDialog.vala:203 -msgid "Set GRUB menu timeout" -msgstr "" - -#: Gtk/MainWindow.vala:475 Gtk/SettingsDialog.vala:57 +#: Gtk/MainWindow.vala:475 Gtk/SettingsDialog.vala:56 msgid "Settings" msgstr "Instellingen" @@ -558,20 +512,20 @@ msgstr "" msgid "Show all options" msgstr "Alle opties weergeven" -#: Gtk/SettingsDialog.vala:96 +#: Gtk/SettingsDialog.vala:95 msgid "Show notification bubble on desktop" msgstr "Bureaubladmelding weergeven" -#: Gtk/SettingsDialog.vala:107 +#: Gtk/SettingsDialog.vala:106 msgid "Show notification dialog" msgstr "Meldingsvenster weergeven" -#: Console/AppConsole.vala:101 +#: Console/AppConsole.vala:99 #, fuzzy msgid "Show unstable and RC releases" msgstr "Instabiele en RC-uitgaven verbergen" -#: Gtk/SettingsDialog.vala:244 +#: Gtk/SettingsDialog.vala:199 #, fuzzy msgid "Skip internet connection check" msgstr "U bent niet verbonden met het internet" @@ -584,11 +538,11 @@ msgstr "Status" msgid "Stopped" msgstr "Gestopt" -#: Console/AppConsole.vala:86 Gtk/AppGtk.vala:179 +#: Console/AppConsole.vala:84 Gtk/AppGtk.vala:179 msgid "Syntax" msgstr "Syntax" -#: Console/AppConsole.vala:210 Gtk/AppGtk.vala:111 +#: Console/AppConsole.vala:208 Gtk/AppGtk.vala:111 msgid "Temp" msgstr "" @@ -597,11 +551,11 @@ msgstr "" msgid "Third Party Tools" msgstr "Externe hulpmiddelen" -#: Common/LinuxKernel.vala:1272 Gtk/MainWindow.vala:678 +#: Common/LinuxKernel.vala:1269 Gtk/MainWindow.vala:678 msgid "This kernel is already installed." msgstr "Deze kernel is al geïnstalleerd." -#: Common/LinuxKernel.vala:1380 +#: Common/LinuxKernel.vala:1373 msgid "" "This kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -609,58 +563,23 @@ msgstr "" "Deze kernel is momenteel in gebruik en kan daarom niet worden verwijderd.\n" " Installeer een andere kernel voordat u deze verwijdert." -#: Gtk/SettingsDialog.vala:223 -msgid "" -"Time (in seconds) to display the GRUB menu\n" -"\n" -"0 = Do not show menu\n" -"-1 = Show indefinitely till user selects" -msgstr "" -"Tijdsduur (in seconden) dat het GRUB-menu moet worden weergegeven\n" -"\n" -"0 = Menu niet weergeven\n" -"-1 = Menu weergeven totdat de gebruiker een selectie maakt" - #: Utility/Gtk/AboutWindow.vala:346 #, c-format msgid "Translators" msgstr "Vertalers" -#: Common/LinuxKernel.vala:1364 Common/LinuxKernel.vala:1422 +#: Common/LinuxKernel.vala:1357 Common/LinuxKernel.vala:1413 msgid "Un-install completed" msgstr "Deïnstalleren voltooid" -#: Common/LinuxKernel.vala:1367 Common/LinuxKernel.vala:1425 +#: Common/LinuxKernel.vala:1360 Common/LinuxKernel.vala:1416 msgid "Un-install completed with errors" msgstr "Deïnstalleren voltooid, maar met fouten" -#: Console/AppConsole.vala:202 Gtk/AppGtk.vala:166 +#: Console/AppConsole.vala:200 Gtk/AppGtk.vala:166 msgid "Unknown option" msgstr "Onbekende optie" -#: Gtk/SettingsDialog.vala:210 -msgid "" -"Updates the GRUB menu after installing or removing kernels, so that the menu " -"is displayed for 2 seconds at boot time. This will help you recover from a " -"bad kernel update by selecting another kernel to boot. During boot, use the " -"'Advanced options for Ubuntu' menu entry to select another kernel.\n" -"\n" -"0 = Do not show menu\n" -"-1 = Show indefinitely till user selects" -msgstr "" -"Werkt het GRUB-menu bij na het installeren of verwijderen van kernels, zodat " -"het menu 2 seconden wordt weergegeven bij het opstarten. Hierdoor kunt u, in " -"geval van een probleemkernel(update), een andere op te starten kernel " -"selecteren. Kies tijdens het opstarten voor 'Geavanceerde opties voor " -"Ubuntu' in het menu om een andere kernel te selecteren.\n" -"\n" -"0 = Menu niet weergeven\n" -"-1 = Menu weergeven totdat de gebruiker een selectie maakt" - -#: Common/LinuxKernel.vala:1493 -msgid "Updating GRUB menu" -msgstr "Bezig met bijwerken van GRUB-menu" - #: Gtk/MainWindow.vala:179 msgid "Version" msgstr "Versie" @@ -669,7 +588,7 @@ msgstr "Versie" msgid "W" msgstr "W" -#: Gtk/SettingsDialog.vala:157 +#: Gtk/SettingsDialog.vala:156 msgid "Week(s)" msgstr "we(e)k(en)" @@ -681,10 +600,82 @@ msgstr "" msgid "[Warning] Deleted invalid lock" msgstr "[Waarschuwing] Ongeldige lock verwijderd" -#: Gtk/SettingsDialog.vala:271 +#: Gtk/SettingsDialog.vala:226 msgid "seconds" msgstr "" +#~ msgid "Booting previous kernels" +#~ msgstr "Opstarten van vorige kernels" + +#~ msgid "GRUB Options" +#~ msgstr "GRUB-opties" + +#, fuzzy +#~ msgid "" +#~ "Mainline kernels can sometimes cause problems if there are proprietary " +#~ "drivers installed on your system. These issues include:\n" +#~ "\n" +#~ "▰ WiFi not working\n" +#~ "▰ Black screen on startup\n" +#~ "▰ Random system freeze\n" +#~ "\n" +#~ "If you face any of these issues there is no need to panic.\n" +#~ "\n" +#~ "▰ Reboot your system\n" +#~ "▰ Select 'Advanced Boot Options' from the GRUB boot menu\n" +#~ "▰ Select an older kernel from the list displayed on this screen\n" +#~ "▰ Your system will boot using the selected kernel\n" +#~ "▰ You can now uninstall the kernel that is causing issues\n" +#~ msgstr "" +#~ "Mainline-kernels kunnen soms problemen geven als er gesloten drivers " +#~ "geïnstalleerd zijn op het systeem. Deze problemen zijn o.a.:\n" +#~ "\n" +#~ "\\342\\226\\260 Wi-Fi werkt niet\n" +#~ "\\342\\226\\260 Zwart scherm na opstarten\n" +#~ "\\342\\226\\260 Willekeurige vastlopers\n" +#~ "\n" +#~ "Als u één van deze problemen ervaart, is er geen reden tot paniek.\n" +#~ "\n" +#~ "\\342\\226\\260 Start uw systeem opnieuw op\n" +#~ "\\342\\226\\260 Selecteer 'Geavanceerde opstartinstellingen' in het GRUB-" +#~ "opstartmenu\n" +#~ "\\342\\226\\260 Selecteer een oudere kernel uit de lijst\n" +#~ "\\342\\226\\260 Uw systeem zal de geselecteerde kernel opstarten\n" +#~ "\\342\\226\\260 Daarna kunt u de probleemkernel deïnstalleren\n" + +#~ msgid "" +#~ "Time (in seconds) to display the GRUB menu\n" +#~ "\n" +#~ "0 = Do not show menu\n" +#~ "-1 = Show indefinitely till user selects" +#~ msgstr "" +#~ "Tijdsduur (in seconden) dat het GRUB-menu moet worden weergegeven\n" +#~ "\n" +#~ "0 = Menu niet weergeven\n" +#~ "-1 = Menu weergeven totdat de gebruiker een selectie maakt" + +#~ msgid "" +#~ "Updates the GRUB menu after installing or removing kernels, so that the " +#~ "menu is displayed for 2 seconds at boot time. This will help you recover " +#~ "from a bad kernel update by selecting another kernel to boot. During " +#~ "boot, use the 'Advanced options for Ubuntu' menu entry to select another " +#~ "kernel.\n" +#~ "\n" +#~ "0 = Do not show menu\n" +#~ "-1 = Show indefinitely till user selects" +#~ msgstr "" +#~ "Werkt het GRUB-menu bij na het installeren of verwijderen van kernels, " +#~ "zodat het menu 2 seconden wordt weergegeven bij het opstarten. Hierdoor " +#~ "kunt u, in geval van een probleemkernel(update), een andere op te starten " +#~ "kernel selecteren. Kies tijdens het opstarten voor 'Geavanceerde opties " +#~ "voor Ubuntu' in het menu om een andere kernel te selecteren.\n" +#~ "\n" +#~ "0 = Menu niet weergeven\n" +#~ "-1 = Menu weergeven totdat de gebruiker een selectie maakt" + +#~ msgid "Updating GRUB menu" +#~ msgstr "Bezig met bijwerken van GRUB-menu" + #~ msgid "Run 'ukuu --list' and use the version string listed in first column" #~ msgstr "" #~ "Draai het commando 'ukuu --list' en gebruik de versiestring uit de eerste " diff --git a/po/ukuu-pl.po b/po/ukuu-pl.po index 422aa2dd..b85d1039 100644 --- a/po/ukuu-pl.po +++ b/po/ukuu-pl.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu\n" "Report-Msgid-Bugs-To: bw.aljex@gmail.com\n" -"POT-Creation-Date: 2019-03-10 23:56-0400\n" +"POT-Creation-Date: 2019-03-12 07:00-0400\n" "PO-Revision-Date: 2017-08-12 15:26+0200\n" "Last-Translator: \n" "Language-Team: Polish\n" @@ -20,7 +20,7 @@ msgstr "" msgid "About" msgstr "O programie" -#: Console/AppConsole.vala:119 +#: Console/AppConsole.vala:117 msgid "Admin access is required for running this application." msgstr "Aby uruchomić tę aplikację niezbędne są prawa administratora." @@ -28,7 +28,7 @@ msgstr "Aby uruchomić tę aplikację niezbędne są prawa administratora." msgid "Another instance of this application is running" msgstr "Inna instancja tej aplikacji jest uruchomiona" -#: Common/LinuxKernel.vala:108 +#: Common/LinuxKernel.vala:105 #, fuzzy msgid "Architecture" msgstr "Architektura systemu" @@ -38,7 +38,7 @@ msgstr "Architektura systemu" msgid "Artists" msgstr "Artyści" -#: Console/AppConsole.vala:106 +#: Console/AppConsole.vala:104 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "" @@ -47,7 +47,7 @@ msgstr "" msgid "Authors" msgstr "Аutorzy" -#: Common/LinuxKernel.vala:1184 +#: Common/LinuxKernel.vala:1181 msgid "Available Kernels" msgstr "Dostępne jądra" @@ -55,11 +55,7 @@ msgstr "Dostępne jądra" msgid "Back" msgstr "Wstecz" -#: Gtk/MainWindow.vala:822 -msgid "Booting previous kernels" -msgstr "Uruchamianie poprzednich jąder" - -#: Console/AppConsole.vala:209 Gtk/AppGtk.vala:110 +#: Console/AppConsole.vala:207 Gtk/AppGtk.vala:110 msgid "Cache" msgstr "" @@ -73,15 +69,15 @@ msgstr "Anuluj" msgid "Changes" msgstr "Zmiany" -#: Gtk/SettingsDialog.vala:122 +#: Gtk/SettingsDialog.vala:121 msgid "Check every" msgstr "Sprawdzaj co" -#: Console/AppConsole.vala:90 +#: Console/AppConsole.vala:88 msgid "Check for kernel updates" msgstr "Sprawdź nowe wersje jądra" -#: Console/AppConsole.vala:91 +#: Console/AppConsole.vala:89 #, fuzzy msgid "Check for kernel updates and notify current user" msgstr "Sprawdź nowe wersje jądra" @@ -90,11 +86,11 @@ msgstr "Sprawdź nowe wersje jądra" msgid "Close" msgstr "Zamknij" -#: Console/AppConsole.vala:346 +#: Console/AppConsole.vala:344 msgid "Command not specified" msgstr "" -#: Console/AppConsole.vala:88 +#: Console/AppConsole.vala:86 msgid "Commands" msgstr "" @@ -102,7 +98,7 @@ msgstr "" msgid "Commands listed below are not available on this system" msgstr "Poniższe polecenia nie są dostępne na tym systemie" -#: Common/LinuxKernel.vala:740 +#: Common/LinuxKernel.vala:737 #, c-format msgid "Continue ?" msgstr "" @@ -112,16 +108,16 @@ msgstr "" msgid "Contributions" msgstr "Wkład" -#: Common/LinuxKernel.vala:724 +#: Common/LinuxKernel.vala:721 #, fuzzy msgid "Could not find any kernels to remove" msgstr "Wybierz jądro do usunięcia" -#: Console/AppConsole.vala:314 Gtk/MainWindow.vala:100 +#: Console/AppConsole.vala:312 Gtk/MainWindow.vala:100 msgid "Could not find requested version" msgstr "Nie można odnaleźć żądanej wersji" -#: Common/LinuxKernel.vala:718 +#: Common/LinuxKernel.vala:715 #, fuzzy msgid "Could not find running kernel in list!" msgstr "Nie można odnaleźć żądanej wersji" @@ -135,7 +131,7 @@ msgstr "Utworzono katalog" msgid "Credits" msgstr "Zasługi" -#: Gtk/SettingsDialog.vala:155 +#: Gtk/SettingsDialog.vala:154 msgid "Day(s)" msgstr "Dni" @@ -147,11 +143,11 @@ msgstr "Usunięto katalog" msgid "Dir not found" msgstr "Katalog nie odnaleziony" -#: Gtk/SettingsDialog.vala:162 +#: Gtk/SettingsDialog.vala:161 msgid "Display" msgstr "Pokaż" -#: Common/LinuxKernel.vala:94 +#: Common/LinuxKernel.vala:91 msgid "Distribution" msgstr "Dystrybucja" @@ -160,11 +156,11 @@ msgstr "Dystrybucja" msgid "Documenters" msgstr "Dokumentujący" -#: Console/AppConsole.vala:99 +#: Console/AppConsole.vala:97 msgid "Download packages for specified kernel" msgstr "Pobierz pakiety dla wybranego jądra" -#: Common/LinuxKernel.vala:1230 +#: Common/LinuxKernel.vala:1227 #, c-format msgid "Downloading" msgstr "Pobieranie" @@ -173,7 +169,7 @@ msgstr "Pobieranie" msgid "E" msgstr "E" -#: Common/LinuxKernel.vala:1258 +#: Common/LinuxKernel.vala:1255 #, c-format msgid "ERROR" msgstr "BŁĄD" @@ -206,11 +202,11 @@ msgstr "Nie udało się odczytać pliku" msgid "Failed to write file" msgstr "Nie udało się zapisać pliku" -#: Common/LinuxKernel.vala:399 +#: Common/LinuxKernel.vala:396 msgid "Fetching index from kernel.ubuntu.com..." msgstr "Pobieranie indeksu z kernel.ubuntu.com..." -#: Common/LinuxKernel.vala:356 +#: Common/LinuxKernel.vala:353 msgid "Fetching index..." msgstr "" @@ -243,24 +239,20 @@ msgstr "Nie odnaleziono pliku: %s" msgid "File saved" msgstr "Plik zapisany" -#: Common/LinuxKernel.vala:733 +#: Common/LinuxKernel.vala:730 #, c-format msgid "Following kernels will be removed" msgstr "" -#: Gtk/SettingsDialog.vala:192 -msgid "GRUB Options" -msgstr "Opcje GRUB" - -#: Gtk/SettingsDialog.vala:181 +#: Gtk/SettingsDialog.vala:180 msgid "Hide kernels older than 4.0" msgstr "Ukryj jądra starsze niż 4.0" -#: Gtk/SettingsDialog.vala:170 +#: Gtk/SettingsDialog.vala:169 msgid "Hide unstable and RC releases" msgstr "Ukryj wydania niestabilne i RC" -#: Gtk/SettingsDialog.vala:153 +#: Gtk/SettingsDialog.vala:152 msgid "Hour(s)" msgstr "Godzin(y)" @@ -268,11 +260,11 @@ msgstr "Godzin(y)" msgid "Ignore this update" msgstr "Zignoruj tę aktualizację" -#: Common/LinuxKernel.vala:262 +#: Common/LinuxKernel.vala:259 msgid "Index is fresh" msgstr "Indeks jest aktualny" -#: Common/LinuxKernel.vala:259 +#: Common/LinuxKernel.vala:256 msgid "Index is stale" msgstr "Indeks jest nieaktualny" @@ -280,21 +272,21 @@ msgstr "Indeks jest nieaktualny" msgid "Install" msgstr "Zainstaluj" -#: Common/LinuxKernel.vala:797 +#: Common/LinuxKernel.vala:794 #, c-format msgid "Install Linux v%s ? (y/n): " msgstr "" -#: Console/AppConsole.vala:94 +#: Console/AppConsole.vala:92 #, fuzzy msgid "Install latest mainline kernel" msgstr "Zainstaluj wybrane jądro" -#: Console/AppConsole.vala:95 +#: Console/AppConsole.vala:93 msgid "Install latest point update for current series" msgstr "" -#: Console/AppConsole.vala:96 +#: Console/AppConsole.vala:94 msgid "Install specified mainline kernel" msgstr "Zainstaluj wybrane jądro" @@ -302,21 +294,21 @@ msgstr "Zainstaluj wybrane jądro" msgid "Install this kernel" msgstr "Zainstaluj to jądro" -#: Common/LinuxKernel.vala:1306 +#: Common/LinuxKernel.vala:1301 msgid "Installation completed with errors" msgstr "Instalacja zakończona z błędami" -#: Common/LinuxKernel.vala:1303 +#: Common/LinuxKernel.vala:1298 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "Instalacja zakończona. Aby korzystać z nowego jądra, konieczne jest ponowne " "uruchomienie." -#: Common/LinuxKernel.vala:1201 Gtk/MainWindow.vala:208 +#: Common/LinuxKernel.vala:1198 Gtk/MainWindow.vala:208 msgid "Installed" msgstr "Zainstalowany" -#: Gtk/SettingsDialog.vala:257 +#: Gtk/SettingsDialog.vala:212 #, fuzzy msgid "Internect connection timeout in " msgstr "Brak połączenia z internetem" @@ -334,17 +326,17 @@ msgstr "Jądro" msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Narzędzie uaktualniania jądra dla dystrybucji z rodziny Ubuntu" -#: Common/LinuxKernel.vala:779 Console/AppConsole.vala:372 +#: Common/LinuxKernel.vala:776 Console/AppConsole.vala:370 #, c-format msgid "Latest point update" msgstr "" -#: Common/LinuxKernel.vala:768 Console/AppConsole.vala:365 +#: Common/LinuxKernel.vala:765 Console/AppConsole.vala:363 #, c-format msgid "Latest update" msgstr "" -#: Console/AppConsole.vala:92 +#: Console/AppConsole.vala:90 msgid "List all available mainline kernels" msgstr "Pokaż wszystkie dostępne jądra" @@ -353,44 +345,11 @@ msgstr "Pokaż wszystkie dostępne jądra" msgid "List available kernels" msgstr "Pokaż wszystkie dostępne jądra" -#: Console/AppConsole.vala:93 +#: Console/AppConsole.vala:91 #, fuzzy msgid "List installed kernels" msgstr "Pokaż wszystkie dostępne jądra" -#: Gtk/MainWindow.vala:823 -#, fuzzy -msgid "" -"Mainline kernels can sometimes cause problems if there are proprietary " -"drivers installed on your system. These issues include:\n" -"\n" -"▰ WiFi not working\n" -"▰ Black screen on startup\n" -"▰ Random system freeze\n" -"\n" -"If you face any of these issues there is no need to panic.\n" -"\n" -"▰ Reboot your system\n" -"▰ Select 'Advanced Boot Options' from the GRUB boot menu\n" -"▰ Select an older kernel from the list displayed on this screen\n" -"▰ Your system will boot using the selected kernel\n" -"▰ You can now uninstall the kernel that is causing issues\n" -msgstr "" -"Jądra mogą być przyczyną problemów jeśli w systemie są zainstalowane " -"sterowniki własnościowe. Możliwe problemy:\n" -"\n" -"\\342\\226\\260 Nie działa WiFi\n" -"\\342\\226\\260 Czarny ekran przy uruchamianiu\n" -"\\342\\226\\260 Losowe zawieszanie systemu\n" -"\n" -"Jeśli napotkasz jakiekolwiek problemy, nie należy panikować.\n" -"\n" -"\\342\\226\\260 Zrestartuj system\n" -"\\342\\226\\260 Z menu GRUB wybierz opcję 'Advanced Boot Options'\n" -"\\342\\226\\260 Wybierz starsze jądro z listy wyświetlanej na tym ekranie\n" -"\\342\\226\\260 Twój system uruchomi się za pomocą wybranego jądra\n" -"\\342\\226\\260 Możesz teraz odinstalować jądro powodujące problemy\n" - #: Utility/Gtk/GtkHelper.vala:272 msgid "Missing Icon" msgstr "Brakująca ikona" @@ -399,7 +358,7 @@ msgstr "Brakująca ikona" msgid "Multiple Kernels Selected" msgstr "Wybrano kilka jąder" -#: Console/AppConsole.vala:296 +#: Console/AppConsole.vala:294 msgid "Multiple kernels selected for installation. Select only one." msgstr "Wybrano kilka jąder do instalacji. Wybierz tylko jedno." @@ -411,12 +370,12 @@ msgstr "" msgid "No Internet" msgstr "Brak internetu" -#: Console/AppConsole.vala:290 Console/AppConsole.vala:327 +#: Console/AppConsole.vala:288 Console/AppConsole.vala:325 msgid "No kernels specified" msgstr "" -#: Common/LinuxKernel.vala:787 Console/AppConsole.vala:377 -#: Console/AppConsole.vala:457 Gtk/MainWindow.vala:817 +#: Common/LinuxKernel.vala:784 Console/AppConsole.vala:375 +#: Console/AppConsole.vala:433 Gtk/MainWindow.vala:793 msgid "No updates found" msgstr "Nie znaleziono aktualizacji" @@ -424,38 +383,38 @@ msgstr "Nie znaleziono aktualizacji" msgid "Not Selected" msgstr "Nie wybrany" -#: Gtk/SettingsDialog.vala:67 +#: Gtk/SettingsDialog.vala:66 msgid "Notification" msgstr "Powiadomienia" -#: Gtk/SettingsDialog.vala:74 +#: Gtk/SettingsDialog.vala:73 msgid "Notify if a major release is available" msgstr "Powiadom, jeśli pojawi się główna wersja" -#: Gtk/SettingsDialog.vala:85 +#: Gtk/SettingsDialog.vala:84 msgid "Notify if a point release is available" msgstr "Powiadom, jeśli pojawi się wersja punktowa" -#: Common/LinuxKernel.vala:1249 Utility/Gtk/CustomMessageDialog.vala:167 +#: Common/LinuxKernel.vala:1246 Utility/Gtk/CustomMessageDialog.vala:167 #: Utility/Gtk/CustomMessageDialog.vala:171 Utility/Gtk/GtkHelper.vala:121 #, c-format msgid "OK" msgstr "OK" -#: Console/AppConsole.vala:103 Gtk/AppGtk.vala:181 +#: Console/AppConsole.vala:101 Gtk/AppGtk.vala:181 msgid "Options" msgstr "Opcje" -#: Gtk/SettingsDialog.vala:236 +#: Gtk/SettingsDialog.vala:191 msgid "Other" msgstr "" -#: Common/LinuxKernel.vala:1063 +#: Common/LinuxKernel.vala:1060 #, c-format msgid "Packages Available (DEB)" msgstr "Dostępne pakiety (DEB)" -#: Common/LinuxKernel.vala:1071 +#: Common/LinuxKernel.vala:1068 #, c-format msgid "Packages Installed" msgstr "Pakiety zainstalowane" @@ -464,7 +423,7 @@ msgstr "Pakiety zainstalowane" msgid "Please install required packages and try again" msgstr "Zainstaluj wymagane pakiety i spróbuj ponownie" -#: Common/LinuxKernel.vala:1327 +#: Common/LinuxKernel.vala:1322 msgid "Preparing to remove selected kernels" msgstr "Przygotowanie do usunięcia wybranych jąder" @@ -488,30 +447,30 @@ msgstr "Odświeżam..." msgid "Remove" msgstr "Usuń" -#: Console/AppConsole.vala:100 Console/AppConsole.vala:105 +#: Console/AppConsole.vala:98 Console/AppConsole.vala:103 msgid "Remove files from application cache" msgstr "Usuń pliki z pamięci podręcznej aplikacji" -#: Console/AppConsole.vala:98 Gtk/MainWindow.vala:426 +#: Console/AppConsole.vala:96 Gtk/MainWindow.vala:426 msgid "Remove installed kernels older than running kernel" msgstr "" -#: Console/AppConsole.vala:97 +#: Console/AppConsole.vala:95 #, fuzzy msgid "Remove specified kernel" msgstr "Usuń wybrane jądro" -#: Console/AppConsole.vala:204 Console/AppConsole.vala:318 -#: Console/AppConsole.vala:347 +#: Console/AppConsole.vala:202 Console/AppConsole.vala:316 +#: Console/AppConsole.vala:345 msgid "Run '" msgstr "" -#: Console/AppConsole.vala:122 +#: Console/AppConsole.vala:120 #, fuzzy msgid "Run the application as admin with pkexec or sudo." msgstr "Uruchom aplikację jako root albo użyj gksu/sudo." -#: Common/LinuxKernel.vala:1201 Gtk/MainWindow.vala:208 +#: Common/LinuxKernel.vala:1198 Gtk/MainWindow.vala:208 msgid "Running" msgstr "Uruchomiony" @@ -527,7 +486,7 @@ msgstr "Wybierz pojedyncze do instalacji" msgid "Select the kernels to remove" msgstr "Wybierz jądro do usunięcia" -#: Common/LinuxKernel.vala:1322 +#: Common/LinuxKernel.vala:1317 msgid "" "Selected kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -535,11 +494,7 @@ msgstr "" "Wybrane jądro aktualnie działa i nie może zostać usunięte.\n" " Zainstaluj inne jądro przed usunięciem tego." -#: Gtk/SettingsDialog.vala:203 -msgid "Set GRUB menu timeout" -msgstr "" - -#: Gtk/MainWindow.vala:475 Gtk/SettingsDialog.vala:57 +#: Gtk/MainWindow.vala:475 Gtk/SettingsDialog.vala:56 msgid "Settings" msgstr "Ustawienia" @@ -551,20 +506,20 @@ msgstr "" msgid "Show all options" msgstr "Pokaż wszystkie opcje" -#: Gtk/SettingsDialog.vala:96 +#: Gtk/SettingsDialog.vala:95 msgid "Show notification bubble on desktop" msgstr "Pokaż powiadomienia na pulpicie" -#: Gtk/SettingsDialog.vala:107 +#: Gtk/SettingsDialog.vala:106 msgid "Show notification dialog" msgstr "Pokaż okno powiadomień" -#: Console/AppConsole.vala:101 +#: Console/AppConsole.vala:99 #, fuzzy msgid "Show unstable and RC releases" msgstr "Ukryj wydania niestabilne i RC" -#: Gtk/SettingsDialog.vala:244 +#: Gtk/SettingsDialog.vala:199 #, fuzzy msgid "Skip internet connection check" msgstr "Brak połączenia z internetem" @@ -577,11 +532,11 @@ msgstr "Status" msgid "Stopped" msgstr "Zatrzymany" -#: Console/AppConsole.vala:86 Gtk/AppGtk.vala:179 +#: Console/AppConsole.vala:84 Gtk/AppGtk.vala:179 msgid "Syntax" msgstr "Składnia" -#: Console/AppConsole.vala:210 Gtk/AppGtk.vala:111 +#: Console/AppConsole.vala:208 Gtk/AppGtk.vala:111 msgid "Temp" msgstr "" @@ -590,11 +545,11 @@ msgstr "" msgid "Third Party Tools" msgstr "Narzędzia osób trzecich" -#: Common/LinuxKernel.vala:1272 Gtk/MainWindow.vala:678 +#: Common/LinuxKernel.vala:1269 Gtk/MainWindow.vala:678 msgid "This kernel is already installed." msgstr "To jądro jest już zainstalowane." -#: Common/LinuxKernel.vala:1380 +#: Common/LinuxKernel.vala:1373 msgid "" "This kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -602,58 +557,23 @@ msgstr "" "To jądro aktualnie działa i nie może zostać usunięte.\n" " Zainstaluj inne jądro przed usunięciem tego." -#: Gtk/SettingsDialog.vala:223 -msgid "" -"Time (in seconds) to display the GRUB menu\n" -"\n" -"0 = Do not show menu\n" -"-1 = Show indefinitely till user selects" -msgstr "" -"Czas (w sekundach) wyświetlania menu GRUB\n" -"\n" -"0 = Nie pokazuj\n" -"-1 = Wyświetlaj do momentu wybrania przez użytkownika" - #: Utility/Gtk/AboutWindow.vala:346 #, c-format msgid "Translators" msgstr "Tłumacze" -#: Common/LinuxKernel.vala:1364 Common/LinuxKernel.vala:1422 +#: Common/LinuxKernel.vala:1357 Common/LinuxKernel.vala:1413 msgid "Un-install completed" msgstr "De-instalacja zakończona" -#: Common/LinuxKernel.vala:1367 Common/LinuxKernel.vala:1425 +#: Common/LinuxKernel.vala:1360 Common/LinuxKernel.vala:1416 msgid "Un-install completed with errors" msgstr "De-instalacja zakończona z błędami" -#: Console/AppConsole.vala:202 Gtk/AppGtk.vala:166 +#: Console/AppConsole.vala:200 Gtk/AppGtk.vala:166 msgid "Unknown option" msgstr "Nieznana opcja" -#: Gtk/SettingsDialog.vala:210 -msgid "" -"Updates the GRUB menu after installing or removing kernels, so that the menu " -"is displayed for 2 seconds at boot time. This will help you recover from a " -"bad kernel update by selecting another kernel to boot. During boot, use the " -"'Advanced options for Ubuntu' menu entry to select another kernel.\n" -"\n" -"0 = Do not show menu\n" -"-1 = Show indefinitely till user selects" -msgstr "" -"Aktualizuje menu GRUB po zainstalowaniu lub usunięciu jądra, dzięki czemu " -"menu jest wyświetlane przez 2 sekundy w czasie rozruchu. Pomoże to odzyskać " -"kontrolę z powodu złej aktualizacji jądra, przez wybranie innego jądra do " -"uruchomienia. Podczas uruchamiania wybierz opcję \"Advanced options for " -"Ubuntu\" w celu wybrania innego jądra.\n" -"\n" -"0 = Nie pokazuj\n" -"-1 = Wyświetlaj do momentu wybrania przez użytkownika" - -#: Common/LinuxKernel.vala:1493 -msgid "Updating GRUB menu" -msgstr "Aktualizacja menu GRUB" - #: Gtk/MainWindow.vala:179 msgid "Version" msgstr "Wersja" @@ -662,7 +582,7 @@ msgstr "Wersja" msgid "W" msgstr "W" -#: Gtk/SettingsDialog.vala:157 +#: Gtk/SettingsDialog.vala:156 msgid "Week(s)" msgstr "Tygodni" @@ -674,10 +594,82 @@ msgstr "" msgid "[Warning] Deleted invalid lock" msgstr "[Ostrzeżenie] Usunięto nieprawidłową blokadę" -#: Gtk/SettingsDialog.vala:271 +#: Gtk/SettingsDialog.vala:226 msgid "seconds" msgstr "" +#~ msgid "Booting previous kernels" +#~ msgstr "Uruchamianie poprzednich jąder" + +#~ msgid "GRUB Options" +#~ msgstr "Opcje GRUB" + +#, fuzzy +#~ msgid "" +#~ "Mainline kernels can sometimes cause problems if there are proprietary " +#~ "drivers installed on your system. These issues include:\n" +#~ "\n" +#~ "▰ WiFi not working\n" +#~ "▰ Black screen on startup\n" +#~ "▰ Random system freeze\n" +#~ "\n" +#~ "If you face any of these issues there is no need to panic.\n" +#~ "\n" +#~ "▰ Reboot your system\n" +#~ "▰ Select 'Advanced Boot Options' from the GRUB boot menu\n" +#~ "▰ Select an older kernel from the list displayed on this screen\n" +#~ "▰ Your system will boot using the selected kernel\n" +#~ "▰ You can now uninstall the kernel that is causing issues\n" +#~ msgstr "" +#~ "Jądra mogą być przyczyną problemów jeśli w systemie są zainstalowane " +#~ "sterowniki własnościowe. Możliwe problemy:\n" +#~ "\n" +#~ "\\342\\226\\260 Nie działa WiFi\n" +#~ "\\342\\226\\260 Czarny ekran przy uruchamianiu\n" +#~ "\\342\\226\\260 Losowe zawieszanie systemu\n" +#~ "\n" +#~ "Jeśli napotkasz jakiekolwiek problemy, nie należy panikować.\n" +#~ "\n" +#~ "\\342\\226\\260 Zrestartuj system\n" +#~ "\\342\\226\\260 Z menu GRUB wybierz opcję 'Advanced Boot Options'\n" +#~ "\\342\\226\\260 Wybierz starsze jądro z listy wyświetlanej na tym " +#~ "ekranie\n" +#~ "\\342\\226\\260 Twój system uruchomi się za pomocą wybranego jądra\n" +#~ "\\342\\226\\260 Możesz teraz odinstalować jądro powodujące problemy\n" + +#~ msgid "" +#~ "Time (in seconds) to display the GRUB menu\n" +#~ "\n" +#~ "0 = Do not show menu\n" +#~ "-1 = Show indefinitely till user selects" +#~ msgstr "" +#~ "Czas (w sekundach) wyświetlania menu GRUB\n" +#~ "\n" +#~ "0 = Nie pokazuj\n" +#~ "-1 = Wyświetlaj do momentu wybrania przez użytkownika" + +#~ msgid "" +#~ "Updates the GRUB menu after installing or removing kernels, so that the " +#~ "menu is displayed for 2 seconds at boot time. This will help you recover " +#~ "from a bad kernel update by selecting another kernel to boot. During " +#~ "boot, use the 'Advanced options for Ubuntu' menu entry to select another " +#~ "kernel.\n" +#~ "\n" +#~ "0 = Do not show menu\n" +#~ "-1 = Show indefinitely till user selects" +#~ msgstr "" +#~ "Aktualizuje menu GRUB po zainstalowaniu lub usunięciu jądra, dzięki czemu " +#~ "menu jest wyświetlane przez 2 sekundy w czasie rozruchu. Pomoże to " +#~ "odzyskać kontrolę z powodu złej aktualizacji jądra, przez wybranie innego " +#~ "jądra do uruchomienia. Podczas uruchamiania wybierz opcję \"Advanced " +#~ "options for Ubuntu\" w celu wybrania innego jądra.\n" +#~ "\n" +#~ "0 = Nie pokazuj\n" +#~ "-1 = Wyświetlaj do momentu wybrania przez użytkownika" + +#~ msgid "Updating GRUB menu" +#~ msgstr "Aktualizacja menu GRUB" + #~ msgid "Run 'ukuu --list' and use the version string listed in first column" #~ msgstr "" #~ "Uruchom 'ukuu --list' i użyj wersji wyświetlonej w pierwszej kolumnie" diff --git a/po/ukuu-ru.po b/po/ukuu-ru.po index e13bc079..8d343b76 100644 --- a/po/ukuu-ru.po +++ b/po/ukuu-ru.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu\n" "Report-Msgid-Bugs-To: bw.aljex@gmail.com\n" -"POT-Creation-Date: 2019-03-10 23:56-0400\n" +"POT-Creation-Date: 2019-03-12 07:00-0400\n" "PO-Revision-Date: 2016-12-13 16:46+0300\n" "Last-Translator: Faust3000 \n" "Language-Team: Russian \n" @@ -22,7 +22,7 @@ msgstr "" msgid "About" msgstr "О программе" -#: Console/AppConsole.vala:119 +#: Console/AppConsole.vala:117 msgid "Admin access is required for running this application." msgstr "Для запуска программы требуются права администратора." @@ -30,7 +30,7 @@ msgstr "Для запуска программы требуются права msgid "Another instance of this application is running" msgstr "Запущен другой экземпляр программы" -#: Common/LinuxKernel.vala:108 +#: Common/LinuxKernel.vala:105 #, fuzzy msgid "Architecture" msgstr "Системная архитектура" @@ -40,7 +40,7 @@ msgstr "Системная архитектура" msgid "Artists" msgstr "Художники" -#: Console/AppConsole.vala:106 +#: Console/AppConsole.vala:104 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "" @@ -49,7 +49,7 @@ msgstr "" msgid "Authors" msgstr "Авторы" -#: Common/LinuxKernel.vala:1184 +#: Common/LinuxKernel.vala:1181 msgid "Available Kernels" msgstr "Доступные ядра" @@ -57,11 +57,7 @@ msgstr "Доступные ядра" msgid "Back" msgstr "Назад" -#: Gtk/MainWindow.vala:822 -msgid "Booting previous kernels" -msgstr "" - -#: Console/AppConsole.vala:209 Gtk/AppGtk.vala:110 +#: Console/AppConsole.vala:207 Gtk/AppGtk.vala:110 msgid "Cache" msgstr "" @@ -75,15 +71,15 @@ msgstr "Отмена" msgid "Changes" msgstr "Изменения" -#: Gtk/SettingsDialog.vala:122 +#: Gtk/SettingsDialog.vala:121 msgid "Check every" msgstr "Проверять каждые" -#: Console/AppConsole.vala:90 +#: Console/AppConsole.vala:88 msgid "Check for kernel updates" msgstr "Проверить обновления ядра" -#: Console/AppConsole.vala:91 +#: Console/AppConsole.vala:89 #, fuzzy msgid "Check for kernel updates and notify current user" msgstr "Проверить обновления ядра" @@ -92,11 +88,11 @@ msgstr "Проверить обновления ядра" msgid "Close" msgstr "Закрыть" -#: Console/AppConsole.vala:346 +#: Console/AppConsole.vala:344 msgid "Command not specified" msgstr "" -#: Console/AppConsole.vala:88 +#: Console/AppConsole.vala:86 msgid "Commands" msgstr "" @@ -104,7 +100,7 @@ msgstr "" msgid "Commands listed below are not available on this system" msgstr "Команды перечисленные ниже недоступны на этой системе" -#: Common/LinuxKernel.vala:740 +#: Common/LinuxKernel.vala:737 #, c-format msgid "Continue ?" msgstr "" @@ -114,16 +110,16 @@ msgstr "" msgid "Contributions" msgstr "Взносы" -#: Common/LinuxKernel.vala:724 +#: Common/LinuxKernel.vala:721 #, fuzzy msgid "Could not find any kernels to remove" msgstr "Не удалось найти запрошенную версию" -#: Console/AppConsole.vala:314 Gtk/MainWindow.vala:100 +#: Console/AppConsole.vala:312 Gtk/MainWindow.vala:100 msgid "Could not find requested version" msgstr "Не удалось найти запрошенную версию" -#: Common/LinuxKernel.vala:718 +#: Common/LinuxKernel.vala:715 #, fuzzy msgid "Could not find running kernel in list!" msgstr "Не удалось найти запрошенную версию" @@ -138,7 +134,7 @@ msgstr "Используемая кэш-папка" msgid "Credits" msgstr "Создатели" -#: Gtk/SettingsDialog.vala:155 +#: Gtk/SettingsDialog.vala:154 msgid "Day(s)" msgstr "День(дней)" @@ -150,11 +146,11 @@ msgstr "" msgid "Dir not found" msgstr "Папка не найдена" -#: Gtk/SettingsDialog.vala:162 +#: Gtk/SettingsDialog.vala:161 msgid "Display" msgstr "Вид" -#: Common/LinuxKernel.vala:94 +#: Common/LinuxKernel.vala:91 msgid "Distribution" msgstr "Дистрибутив" @@ -163,11 +159,11 @@ msgstr "Дистрибутив" msgid "Documenters" msgstr "Составители документации" -#: Console/AppConsole.vala:99 +#: Console/AppConsole.vala:97 msgid "Download packages for specified kernel" msgstr "Скачать пакеты для указанного ядра" -#: Common/LinuxKernel.vala:1230 +#: Common/LinuxKernel.vala:1227 #, c-format msgid "Downloading" msgstr "Загрузка" @@ -176,7 +172,7 @@ msgstr "Загрузка" msgid "E" msgstr "E" -#: Common/LinuxKernel.vala:1258 +#: Common/LinuxKernel.vala:1255 #, c-format msgid "ERROR" msgstr "ОШИБКА" @@ -209,11 +205,11 @@ msgstr "Не удалось прочитать файл" msgid "Failed to write file" msgstr "Не удалось записать файл" -#: Common/LinuxKernel.vala:399 +#: Common/LinuxKernel.vala:396 msgid "Fetching index from kernel.ubuntu.com..." msgstr "Получение сведений с kernel.ubuntu.com..." -#: Common/LinuxKernel.vala:356 +#: Common/LinuxKernel.vala:353 msgid "Fetching index..." msgstr "" @@ -250,24 +246,20 @@ msgstr "Файл не найден: %s" msgid "File saved" msgstr "Файловая система" -#: Common/LinuxKernel.vala:733 +#: Common/LinuxKernel.vala:730 #, c-format msgid "Following kernels will be removed" msgstr "" -#: Gtk/SettingsDialog.vala:192 -msgid "GRUB Options" -msgstr "Настройки GRUB" - -#: Gtk/SettingsDialog.vala:181 +#: Gtk/SettingsDialog.vala:180 msgid "Hide kernels older than 4.0" msgstr "Скрыть ядра старше версии 4.0" -#: Gtk/SettingsDialog.vala:170 +#: Gtk/SettingsDialog.vala:169 msgid "Hide unstable and RC releases" msgstr "Скрыть нестабильные и релиз-кандидат версии" -#: Gtk/SettingsDialog.vala:153 +#: Gtk/SettingsDialog.vala:152 msgid "Hour(s)" msgstr "Час(ов)" @@ -275,11 +267,11 @@ msgstr "Час(ов)" msgid "Ignore this update" msgstr "Игнорировать это обновление" -#: Common/LinuxKernel.vala:262 +#: Common/LinuxKernel.vala:259 msgid "Index is fresh" msgstr "Сведения актуальны" -#: Common/LinuxKernel.vala:259 +#: Common/LinuxKernel.vala:256 msgid "Index is stale" msgstr "Сведения устарели" @@ -287,21 +279,21 @@ msgstr "Сведения устарели" msgid "Install" msgstr "Установить" -#: Common/LinuxKernel.vala:797 +#: Common/LinuxKernel.vala:794 #, c-format msgid "Install Linux v%s ? (y/n): " msgstr "" -#: Console/AppConsole.vala:94 +#: Console/AppConsole.vala:92 #, fuzzy msgid "Install latest mainline kernel" msgstr "Установить указанную ветку ядра" -#: Console/AppConsole.vala:95 +#: Console/AppConsole.vala:93 msgid "Install latest point update for current series" msgstr "" -#: Console/AppConsole.vala:96 +#: Console/AppConsole.vala:94 msgid "Install specified mainline kernel" msgstr "Установить указанную ветку ядра" @@ -309,21 +301,21 @@ msgstr "Установить указанную ветку ядра" msgid "Install this kernel" msgstr "Установить это ядро" -#: Common/LinuxKernel.vala:1306 +#: Common/LinuxKernel.vala:1301 msgid "Installation completed with errors" msgstr "Установка завершена с ошибками" -#: Common/LinuxKernel.vala:1303 +#: Common/LinuxKernel.vala:1298 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "Установка завершена. Обязательно выполните перезагрузку, чтобы использовать " "новое ядро." -#: Common/LinuxKernel.vala:1201 Gtk/MainWindow.vala:208 +#: Common/LinuxKernel.vala:1198 Gtk/MainWindow.vala:208 msgid "Installed" msgstr "Установлено" -#: Gtk/SettingsDialog.vala:257 +#: Gtk/SettingsDialog.vala:212 #, fuzzy msgid "Internect connection timeout in " msgstr "Интернет соединение не активно" @@ -341,17 +333,17 @@ msgstr "Ядро" msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Программа обновления ядра для дистрибутивов на базе Ubuntu" -#: Common/LinuxKernel.vala:779 Console/AppConsole.vala:372 +#: Common/LinuxKernel.vala:776 Console/AppConsole.vala:370 #, c-format msgid "Latest point update" msgstr "" -#: Common/LinuxKernel.vala:768 Console/AppConsole.vala:365 +#: Common/LinuxKernel.vala:765 Console/AppConsole.vala:363 #, c-format msgid "Latest update" msgstr "" -#: Console/AppConsole.vala:92 +#: Console/AppConsole.vala:90 msgid "List all available mainline kernels" msgstr "Список всех доступных основных ядер" @@ -360,29 +352,11 @@ msgstr "Список всех доступных основных ядер" msgid "List available kernels" msgstr "Список всех доступных основных ядер" -#: Console/AppConsole.vala:93 +#: Console/AppConsole.vala:91 #, fuzzy msgid "List installed kernels" msgstr "Список всех доступных основных ядер" -#: Gtk/MainWindow.vala:823 -msgid "" -"Mainline kernels can sometimes cause problems if there are proprietary " -"drivers installed on your system. These issues include:\n" -"\n" -"▰ WiFi not working\n" -"▰ Black screen on startup\n" -"▰ Random system freeze\n" -"\n" -"If you face any of these issues there is no need to panic.\n" -"\n" -"▰ Reboot your system\n" -"▰ Select 'Advanced Boot Options' from the GRUB boot menu\n" -"▰ Select an older kernel from the list displayed on this screen\n" -"▰ Your system will boot using the selected kernel\n" -"▰ You can now uninstall the kernel that is causing issues\n" -msgstr "" - #: Utility/Gtk/GtkHelper.vala:272 msgid "Missing Icon" msgstr "Значок отсутствует" @@ -391,7 +365,7 @@ msgstr "Значок отсутствует" msgid "Multiple Kernels Selected" msgstr "" -#: Console/AppConsole.vala:296 +#: Console/AppConsole.vala:294 msgid "Multiple kernels selected for installation. Select only one." msgstr "" @@ -403,12 +377,12 @@ msgstr "" msgid "No Internet" msgstr "" -#: Console/AppConsole.vala:290 Console/AppConsole.vala:327 +#: Console/AppConsole.vala:288 Console/AppConsole.vala:325 msgid "No kernels specified" msgstr "" -#: Common/LinuxKernel.vala:787 Console/AppConsole.vala:377 -#: Console/AppConsole.vala:457 Gtk/MainWindow.vala:817 +#: Common/LinuxKernel.vala:784 Console/AppConsole.vala:375 +#: Console/AppConsole.vala:433 Gtk/MainWindow.vala:793 msgid "No updates found" msgstr "Обновлений не найдено" @@ -416,38 +390,38 @@ msgstr "Обновлений не найдено" msgid "Not Selected" msgstr "" -#: Gtk/SettingsDialog.vala:67 +#: Gtk/SettingsDialog.vala:66 msgid "Notification" msgstr "Уведомления" -#: Gtk/SettingsDialog.vala:74 +#: Gtk/SettingsDialog.vala:73 msgid "Notify if a major release is available" msgstr "Уведомлять, если доступно крупное обновление" -#: Gtk/SettingsDialog.vala:85 +#: Gtk/SettingsDialog.vala:84 msgid "Notify if a point release is available" msgstr "Уведомлять, если доступно небольшое обновление" -#: Common/LinuxKernel.vala:1249 Utility/Gtk/CustomMessageDialog.vala:167 +#: Common/LinuxKernel.vala:1246 Utility/Gtk/CustomMessageDialog.vala:167 #: Utility/Gtk/CustomMessageDialog.vala:171 Utility/Gtk/GtkHelper.vala:121 #, c-format msgid "OK" msgstr "OK" -#: Console/AppConsole.vala:103 Gtk/AppGtk.vala:181 +#: Console/AppConsole.vala:101 Gtk/AppGtk.vala:181 msgid "Options" msgstr "Параметры" -#: Gtk/SettingsDialog.vala:236 +#: Gtk/SettingsDialog.vala:191 msgid "Other" msgstr "" -#: Common/LinuxKernel.vala:1063 +#: Common/LinuxKernel.vala:1060 #, c-format msgid "Packages Available (DEB)" msgstr "" -#: Common/LinuxKernel.vala:1071 +#: Common/LinuxKernel.vala:1068 #, fuzzy, c-format msgid "Packages Installed" msgstr "Установлено" @@ -456,7 +430,7 @@ msgstr "Установлено" msgid "Please install required packages and try again" msgstr "Установить необходимые пакеты и попробуйте снова" -#: Common/LinuxKernel.vala:1327 +#: Common/LinuxKernel.vala:1322 msgid "Preparing to remove selected kernels" msgstr "" @@ -480,30 +454,30 @@ msgstr "Обновление..." msgid "Remove" msgstr "Удалить" -#: Console/AppConsole.vala:100 Console/AppConsole.vala:105 +#: Console/AppConsole.vala:98 Console/AppConsole.vala:103 msgid "Remove files from application cache" msgstr "Удалить файлы из кэша программы" -#: Console/AppConsole.vala:98 Gtk/MainWindow.vala:426 +#: Console/AppConsole.vala:96 Gtk/MainWindow.vala:426 msgid "Remove installed kernels older than running kernel" msgstr "Удалить более старшие установленные ядра, чем используемое" -#: Console/AppConsole.vala:97 +#: Console/AppConsole.vala:95 #, fuzzy msgid "Remove specified kernel" msgstr "Удалить указанную ветку ядра" -#: Console/AppConsole.vala:204 Console/AppConsole.vala:318 -#: Console/AppConsole.vala:347 +#: Console/AppConsole.vala:202 Console/AppConsole.vala:316 +#: Console/AppConsole.vala:345 msgid "Run '" msgstr "" -#: Console/AppConsole.vala:122 +#: Console/AppConsole.vala:120 #, fuzzy msgid "Run the application as admin with pkexec or sudo." msgstr "Запустите программу с правами Root или используйте gksu/sudo." -#: Common/LinuxKernel.vala:1201 Gtk/MainWindow.vala:208 +#: Common/LinuxKernel.vala:1198 Gtk/MainWindow.vala:208 msgid "Running" msgstr "Используется" @@ -519,7 +493,7 @@ msgstr "" msgid "Select the kernels to remove" msgstr "" -#: Common/LinuxKernel.vala:1322 +#: Common/LinuxKernel.vala:1317 #, fuzzy msgid "" "Selected kernel is currently running and cannot be removed.\n" @@ -528,11 +502,7 @@ msgstr "" "Это ядро в настоящий момент работает и не может быть удалено.\n" " Установите другое ядро, прежде чем удалять его." -#: Gtk/SettingsDialog.vala:203 -msgid "Set GRUB menu timeout" -msgstr "" - -#: Gtk/MainWindow.vala:475 Gtk/SettingsDialog.vala:57 +#: Gtk/MainWindow.vala:475 Gtk/SettingsDialog.vala:56 msgid "Settings" msgstr "Настройки" @@ -544,20 +514,20 @@ msgstr "" msgid "Show all options" msgstr "Показать все параметры" -#: Gtk/SettingsDialog.vala:96 +#: Gtk/SettingsDialog.vala:95 msgid "Show notification bubble on desktop" msgstr "Показывать окно оповещений на рабочем столе" -#: Gtk/SettingsDialog.vala:107 +#: Gtk/SettingsDialog.vala:106 msgid "Show notification dialog" msgstr "Показывать окно оповещений" -#: Console/AppConsole.vala:101 +#: Console/AppConsole.vala:99 #, fuzzy msgid "Show unstable and RC releases" msgstr "Скрыть нестабильные и релиз-кандидат версии" -#: Gtk/SettingsDialog.vala:244 +#: Gtk/SettingsDialog.vala:199 #, fuzzy msgid "Skip internet connection check" msgstr "Интернет соединение не активно" @@ -570,11 +540,11 @@ msgstr "Состояние" msgid "Stopped" msgstr "Остановлено" -#: Console/AppConsole.vala:86 Gtk/AppGtk.vala:179 +#: Console/AppConsole.vala:84 Gtk/AppGtk.vala:179 msgid "Syntax" msgstr "Синтаксис" -#: Console/AppConsole.vala:210 Gtk/AppGtk.vala:111 +#: Console/AppConsole.vala:208 Gtk/AppGtk.vala:111 msgid "Temp" msgstr "" @@ -583,11 +553,11 @@ msgstr "" msgid "Third Party Tools" msgstr "Сторонние инструменты" -#: Common/LinuxKernel.vala:1272 Gtk/MainWindow.vala:678 +#: Common/LinuxKernel.vala:1269 Gtk/MainWindow.vala:678 msgid "This kernel is already installed." msgstr "Это ядро уже установлено." -#: Common/LinuxKernel.vala:1380 +#: Common/LinuxKernel.vala:1373 msgid "" "This kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -595,57 +565,23 @@ msgstr "" "Это ядро в настоящий момент работает и не может быть удалено.\n" " Установите другое ядро, прежде чем удалять его." -#: Gtk/SettingsDialog.vala:223 -msgid "" -"Time (in seconds) to display the GRUB menu\n" -"\n" -"0 = Do not show menu\n" -"-1 = Show indefinitely till user selects" -msgstr "" -"Время отображения меню GRUB (в секундах)\n" -"\n" -"0 = Не отображать меню\n" -"-1 = Отображать до выбора пользователя" - #: Utility/Gtk/AboutWindow.vala:346 #, c-format msgid "Translators" msgstr "Переводчики" -#: Common/LinuxKernel.vala:1364 Common/LinuxKernel.vala:1422 +#: Common/LinuxKernel.vala:1357 Common/LinuxKernel.vala:1413 msgid "Un-install completed" msgstr "Удаление завершено" -#: Common/LinuxKernel.vala:1367 Common/LinuxKernel.vala:1425 +#: Common/LinuxKernel.vala:1360 Common/LinuxKernel.vala:1416 msgid "Un-install completed with errors" msgstr "Удаление завершено с ошибками" -#: Console/AppConsole.vala:202 Gtk/AppGtk.vala:166 +#: Console/AppConsole.vala:200 Gtk/AppGtk.vala:166 msgid "Unknown option" msgstr "Неизвестный параметр" -#: Gtk/SettingsDialog.vala:210 -msgid "" -"Updates the GRUB menu after installing or removing kernels, so that the menu " -"is displayed for 2 seconds at boot time. This will help you recover from a " -"bad kernel update by selecting another kernel to boot. During boot, use the " -"'Advanced options for Ubuntu' menu entry to select another kernel.\n" -"\n" -"0 = Do not show menu\n" -"-1 = Show indefinitely till user selects" -msgstr "" -"Обновляет меню GRUB после установки или удаления ядер, после чего оно " -"отображается на 2 секунды после загрузки. Это даст возможность выбрать " -"другое ядро после неудачного обновления. Во время загрузки выберите пункт " -"меню 'Advanced options for Ubuntu' для запуска другого ядра.\n" -"\n" -"0 = Не отображать меню\n" -"-1 = Отображать до выбора пользователя" - -#: Common/LinuxKernel.vala:1493 -msgid "Updating GRUB menu" -msgstr "Обновление меню GRUB" - #: Gtk/MainWindow.vala:179 msgid "Version" msgstr "Версия" @@ -654,7 +590,7 @@ msgstr "Версия" msgid "W" msgstr "W" -#: Gtk/SettingsDialog.vala:157 +#: Gtk/SettingsDialog.vala:156 msgid "Week(s)" msgstr "Неделю(ли)" @@ -666,10 +602,45 @@ msgstr "" msgid "[Warning] Deleted invalid lock" msgstr "[Внимание] Удалена неправильная блокировка" -#: Gtk/SettingsDialog.vala:271 +#: Gtk/SettingsDialog.vala:226 msgid "seconds" msgstr "" +#~ msgid "GRUB Options" +#~ msgstr "Настройки GRUB" + +#~ msgid "" +#~ "Time (in seconds) to display the GRUB menu\n" +#~ "\n" +#~ "0 = Do not show menu\n" +#~ "-1 = Show indefinitely till user selects" +#~ msgstr "" +#~ "Время отображения меню GRUB (в секундах)\n" +#~ "\n" +#~ "0 = Не отображать меню\n" +#~ "-1 = Отображать до выбора пользователя" + +#~ msgid "" +#~ "Updates the GRUB menu after installing or removing kernels, so that the " +#~ "menu is displayed for 2 seconds at boot time. This will help you recover " +#~ "from a bad kernel update by selecting another kernel to boot. During " +#~ "boot, use the 'Advanced options for Ubuntu' menu entry to select another " +#~ "kernel.\n" +#~ "\n" +#~ "0 = Do not show menu\n" +#~ "-1 = Show indefinitely till user selects" +#~ msgstr "" +#~ "Обновляет меню GRUB после установки или удаления ядер, после чего оно " +#~ "отображается на 2 секунды после загрузки. Это даст возможность выбрать " +#~ "другое ядро после неудачного обновления. Во время загрузки выберите пункт " +#~ "меню 'Advanced options for Ubuntu' для запуска другого ядра.\n" +#~ "\n" +#~ "0 = Не отображать меню\n" +#~ "-1 = Отображать до выбора пользователя" + +#~ msgid "Updating GRUB menu" +#~ msgstr "Обновление меню GRUB" + #~ msgid "Run 'ukuu --list' and use the version string listed in first column" #~ msgstr "Выполните 'ukuu --list' и используйте версию из первого столбца" diff --git a/po/ukuu-sv.po b/po/ukuu-sv.po index 5bc5c0f0..6d2a5080 100644 --- a/po/ukuu-sv.po +++ b/po/ukuu-sv.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu 2.2\n" "Report-Msgid-Bugs-To: bw.aljex@gmail.com\n" -"POT-Creation-Date: 2019-03-10 23:56-0400\n" +"POT-Creation-Date: 2019-03-12 07:00-0400\n" "PO-Revision-Date: 2018-01-13 16:56+0100\n" "Last-Translator: Åke Engelbrektson \n" "Language-Team: Svenska Språkfiler \n" @@ -22,7 +22,7 @@ msgstr "" msgid "About" msgstr "Om" -#: Console/AppConsole.vala:119 +#: Console/AppConsole.vala:117 msgid "Admin access is required for running this application." msgstr "Root-åtkomst krävs för att köra detta program." @@ -30,7 +30,7 @@ msgstr "Root-åtkomst krävs för att köra detta program." msgid "Another instance of this application is running" msgstr "En annan instans av programmet körs redan" -#: Common/LinuxKernel.vala:108 +#: Common/LinuxKernel.vala:105 #, fuzzy msgid "Architecture" msgstr "Systemarkitektur" @@ -40,7 +40,7 @@ msgstr "Systemarkitektur" msgid "Artists" msgstr "Artister" -#: Console/AppConsole.vala:106 +#: Console/AppConsole.vala:104 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "" @@ -49,7 +49,7 @@ msgstr "" msgid "Authors" msgstr "Utvecklare" -#: Common/LinuxKernel.vala:1184 +#: Common/LinuxKernel.vala:1181 msgid "Available Kernels" msgstr "Tillgängliga kärnor" @@ -57,11 +57,7 @@ msgstr "Tillgängliga kärnor" msgid "Back" msgstr "Tillbaka" -#: Gtk/MainWindow.vala:822 -msgid "Booting previous kernels" -msgstr "Startar föregående kärnor" - -#: Console/AppConsole.vala:209 Gtk/AppGtk.vala:110 +#: Console/AppConsole.vala:207 Gtk/AppGtk.vala:110 msgid "Cache" msgstr "" @@ -75,15 +71,15 @@ msgstr "Avbryt" msgid "Changes" msgstr "Ändringar" -#: Gtk/SettingsDialog.vala:122 +#: Gtk/SettingsDialog.vala:121 msgid "Check every" msgstr "Kontrollera varje" -#: Console/AppConsole.vala:90 +#: Console/AppConsole.vala:88 msgid "Check for kernel updates" msgstr "Sök efter kärnuppdateringar" -#: Console/AppConsole.vala:91 +#: Console/AppConsole.vala:89 #, fuzzy msgid "Check for kernel updates and notify current user" msgstr "Sök efter kärnuppdateringar" @@ -92,11 +88,11 @@ msgstr "Sök efter kärnuppdateringar" msgid "Close" msgstr "Stäng" -#: Console/AppConsole.vala:346 +#: Console/AppConsole.vala:344 msgid "Command not specified" msgstr "" -#: Console/AppConsole.vala:88 +#: Console/AppConsole.vala:86 msgid "Commands" msgstr "" @@ -104,7 +100,7 @@ msgstr "" msgid "Commands listed below are not available on this system" msgstr "Kommandon listade nedan, finns inte tillgängliga i detta system." -#: Common/LinuxKernel.vala:740 +#: Common/LinuxKernel.vala:737 #, c-format msgid "Continue ?" msgstr "" @@ -114,16 +110,16 @@ msgstr "" msgid "Contributions" msgstr "Bidrag" -#: Common/LinuxKernel.vala:724 +#: Common/LinuxKernel.vala:721 #, fuzzy msgid "Could not find any kernels to remove" msgstr "Välj kärnor för borttagning" -#: Console/AppConsole.vala:314 Gtk/MainWindow.vala:100 +#: Console/AppConsole.vala:312 Gtk/MainWindow.vala:100 msgid "Could not find requested version" msgstr "Kunde inte hitta efterfrågad version" -#: Common/LinuxKernel.vala:718 +#: Common/LinuxKernel.vala:715 #, fuzzy msgid "Could not find running kernel in list!" msgstr "Kunde inte hitta efterfrågad version" @@ -137,7 +133,7 @@ msgstr "Skapade mapp" msgid "Credits" msgstr "Tack" -#: Gtk/SettingsDialog.vala:155 +#: Gtk/SettingsDialog.vala:154 msgid "Day(s)" msgstr "Dag(ar)" @@ -149,11 +145,11 @@ msgstr "Tog bort mapp" msgid "Dir not found" msgstr "Mappen kan inte hittas" -#: Gtk/SettingsDialog.vala:162 +#: Gtk/SettingsDialog.vala:161 msgid "Display" msgstr "Visa" -#: Common/LinuxKernel.vala:94 +#: Common/LinuxKernel.vala:91 msgid "Distribution" msgstr "Distribution" @@ -162,11 +158,11 @@ msgstr "Distribution" msgid "Documenters" msgstr "Dokumentalister" -#: Console/AppConsole.vala:99 +#: Console/AppConsole.vala:97 msgid "Download packages for specified kernel" msgstr "Ladda ner paket för specificerad kärna" -#: Common/LinuxKernel.vala:1230 +#: Common/LinuxKernel.vala:1227 #, c-format msgid "Downloading" msgstr "Laddar ner" @@ -175,7 +171,7 @@ msgstr "Laddar ner" msgid "E" msgstr "F" -#: Common/LinuxKernel.vala:1258 +#: Common/LinuxKernel.vala:1255 #, c-format msgid "ERROR" msgstr "FEL" @@ -208,11 +204,11 @@ msgstr "Kunde inte läsa filen" msgid "Failed to write file" msgstr "Kunde inte skriva filen" -#: Common/LinuxKernel.vala:399 +#: Common/LinuxKernel.vala:396 msgid "Fetching index from kernel.ubuntu.com..." msgstr "Hämtar index från kernel.ubuntu.com ..." -#: Common/LinuxKernel.vala:356 +#: Common/LinuxKernel.vala:353 #, fuzzy msgid "Fetching index..." msgstr "Hämtar index för" @@ -246,24 +242,20 @@ msgstr "Filen kunde inte hittas: %s" msgid "File saved" msgstr "Fil sparad" -#: Common/LinuxKernel.vala:733 +#: Common/LinuxKernel.vala:730 #, c-format msgid "Following kernels will be removed" msgstr "" -#: Gtk/SettingsDialog.vala:192 -msgid "GRUB Options" -msgstr "GRUB-alternativ" - -#: Gtk/SettingsDialog.vala:181 +#: Gtk/SettingsDialog.vala:180 msgid "Hide kernels older than 4.0" msgstr "Dölj kärnor, äldre än 4.0" -#: Gtk/SettingsDialog.vala:170 +#: Gtk/SettingsDialog.vala:169 msgid "Hide unstable and RC releases" msgstr "Dölj instabila- och RC-publiceringar" -#: Gtk/SettingsDialog.vala:153 +#: Gtk/SettingsDialog.vala:152 msgid "Hour(s)" msgstr "Timma(r)" @@ -271,11 +263,11 @@ msgstr "Timma(r)" msgid "Ignore this update" msgstr "Undanta denna uppdatering" -#: Common/LinuxKernel.vala:262 +#: Common/LinuxKernel.vala:259 msgid "Index is fresh" msgstr "Index är uppdaterat" -#: Common/LinuxKernel.vala:259 +#: Common/LinuxKernel.vala:256 msgid "Index is stale" msgstr "Index är inaktuellt" @@ -283,21 +275,21 @@ msgstr "Index är inaktuellt" msgid "Install" msgstr "Installera" -#: Common/LinuxKernel.vala:797 +#: Common/LinuxKernel.vala:794 #, c-format msgid "Install Linux v%s ? (y/n): " msgstr "" -#: Console/AppConsole.vala:94 +#: Console/AppConsole.vala:92 #, fuzzy msgid "Install latest mainline kernel" msgstr "Installera specificerad kärna" -#: Console/AppConsole.vala:95 +#: Console/AppConsole.vala:93 msgid "Install latest point update for current series" msgstr "" -#: Console/AppConsole.vala:96 +#: Console/AppConsole.vala:94 msgid "Install specified mainline kernel" msgstr "Installera specificerad kärna" @@ -305,19 +297,19 @@ msgstr "Installera specificerad kärna" msgid "Install this kernel" msgstr "Installera denna kärna" -#: Common/LinuxKernel.vala:1306 +#: Common/LinuxKernel.vala:1301 msgid "Installation completed with errors" msgstr "Installation slutförd med fel" -#: Common/LinuxKernel.vala:1303 +#: Common/LinuxKernel.vala:1298 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "Installation slutförd. Omstart krävs för att tillämpa den nya kärnan." -#: Common/LinuxKernel.vala:1201 Gtk/MainWindow.vala:208 +#: Common/LinuxKernel.vala:1198 Gtk/MainWindow.vala:208 msgid "Installed" msgstr "Installerad" -#: Gtk/SettingsDialog.vala:257 +#: Gtk/SettingsDialog.vala:212 #, fuzzy msgid "Internect connection timeout in " msgstr "Internetuppkopplingen är inte aktiv" @@ -335,17 +327,17 @@ msgstr "Kärna" msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Kärnuppgraderingsverktyg för Ubuntu-baserade distributioner" -#: Common/LinuxKernel.vala:779 Console/AppConsole.vala:372 +#: Common/LinuxKernel.vala:776 Console/AppConsole.vala:370 #, c-format msgid "Latest point update" msgstr "" -#: Common/LinuxKernel.vala:768 Console/AppConsole.vala:365 +#: Common/LinuxKernel.vala:765 Console/AppConsole.vala:363 #, c-format msgid "Latest update" msgstr "" -#: Console/AppConsole.vala:92 +#: Console/AppConsole.vala:90 msgid "List all available mainline kernels" msgstr "Lista alla tillgängliga kärnor" @@ -353,43 +345,11 @@ msgstr "Lista alla tillgängliga kärnor" msgid "List available kernels" msgstr "Lista tillgängliga kärnor" -#: Console/AppConsole.vala:93 +#: Console/AppConsole.vala:91 #, fuzzy msgid "List installed kernels" msgstr "Lista tillgängliga kärnor" -#: Gtk/MainWindow.vala:823 -msgid "" -"Mainline kernels can sometimes cause problems if there are proprietary " -"drivers installed on your system. These issues include:\n" -"\n" -"▰ WiFi not working\n" -"▰ Black screen on startup\n" -"▰ Random system freeze\n" -"\n" -"If you face any of these issues there is no need to panic.\n" -"\n" -"▰ Reboot your system\n" -"▰ Select 'Advanced Boot Options' from the GRUB boot menu\n" -"▰ Select an older kernel from the list displayed on this screen\n" -"▰ Your system will boot using the selected kernel\n" -"▰ You can now uninstall the kernel that is causing issues\n" -msgstr "" -"Standardkärnor kan ibland orsaka problem, om det finns proprietära " -"drivrutiner installerade i ditt system. Dessa problem kan inkludera:\n" -"\n" -"▰ Trådlöst nätverk som inte fungerar\n" -"▰ Svart skärm vid systemstart\n" -"▰ Slumpartade systemfrysningar\n" -"\n" -"Råkar du ut för något av dessa problem, är det ingen panik\n" -"\n" -"▰ Starta om ditt system\n" -"▰ Välj \"Avancerade startalternativ\" i GRUB-menyn\n" -"▰ Välj en äldre kärna från listan som visas\n" -"▰ Ditt system startar då med med den valda kärnan\n" -"▰ Du kan nu avinstallera den kärna som orsakar problem\n" - #: Utility/Gtk/GtkHelper.vala:272 msgid "Missing Icon" msgstr "Saknad ikon" @@ -398,7 +358,7 @@ msgstr "Saknad ikon" msgid "Multiple Kernels Selected" msgstr "Flera kärnor markerade" -#: Console/AppConsole.vala:296 +#: Console/AppConsole.vala:294 msgid "Multiple kernels selected for installation. Select only one." msgstr "Flera kärnor valda för installation. Välj endast en." @@ -410,12 +370,12 @@ msgstr "Nej" msgid "No Internet" msgstr "Inget internet" -#: Console/AppConsole.vala:290 Console/AppConsole.vala:327 +#: Console/AppConsole.vala:288 Console/AppConsole.vala:325 msgid "No kernels specified" msgstr "" -#: Common/LinuxKernel.vala:787 Console/AppConsole.vala:377 -#: Console/AppConsole.vala:457 Gtk/MainWindow.vala:817 +#: Common/LinuxKernel.vala:784 Console/AppConsole.vala:375 +#: Console/AppConsole.vala:433 Gtk/MainWindow.vala:793 msgid "No updates found" msgstr "Inga uppdateringar hittades" @@ -423,38 +383,38 @@ msgstr "Inga uppdateringar hittades" msgid "Not Selected" msgstr "Inte vald" -#: Gtk/SettingsDialog.vala:67 +#: Gtk/SettingsDialog.vala:66 msgid "Notification" msgstr "Avisering" -#: Gtk/SettingsDialog.vala:74 +#: Gtk/SettingsDialog.vala:73 msgid "Notify if a major release is available" msgstr "Meddela om en ny (stor) uppdatering finns tillgänglig" -#: Gtk/SettingsDialog.vala:85 +#: Gtk/SettingsDialog.vala:84 msgid "Notify if a point release is available" msgstr "Meddela om en ny (mindre) uppdatering finns tillgänglig" -#: Common/LinuxKernel.vala:1249 Utility/Gtk/CustomMessageDialog.vala:167 +#: Common/LinuxKernel.vala:1246 Utility/Gtk/CustomMessageDialog.vala:167 #: Utility/Gtk/CustomMessageDialog.vala:171 Utility/Gtk/GtkHelper.vala:121 #, c-format msgid "OK" msgstr "OK" -#: Console/AppConsole.vala:103 Gtk/AppGtk.vala:181 +#: Console/AppConsole.vala:101 Gtk/AppGtk.vala:181 msgid "Options" msgstr "Alternativ" -#: Gtk/SettingsDialog.vala:236 +#: Gtk/SettingsDialog.vala:191 msgid "Other" msgstr "" -#: Common/LinuxKernel.vala:1063 +#: Common/LinuxKernel.vala:1060 #, c-format msgid "Packages Available (DEB)" msgstr "Tillgängliga paket (DEB)" -#: Common/LinuxKernel.vala:1071 +#: Common/LinuxKernel.vala:1068 #, c-format msgid "Packages Installed" msgstr "Installerade paket" @@ -463,7 +423,7 @@ msgstr "Installerade paket" msgid "Please install required packages and try again" msgstr "Installera nödvändiga paket och försök igen" -#: Common/LinuxKernel.vala:1327 +#: Common/LinuxKernel.vala:1322 msgid "Preparing to remove selected kernels" msgstr "Förbereder borttagning av markerade kärnor" @@ -487,29 +447,29 @@ msgstr "Uppdaterar ..." msgid "Remove" msgstr "Ta bort" -#: Console/AppConsole.vala:100 Console/AppConsole.vala:105 +#: Console/AppConsole.vala:98 Console/AppConsole.vala:103 msgid "Remove files from application cache" msgstr "Ta bort filer från program-cachen" -#: Console/AppConsole.vala:98 Gtk/MainWindow.vala:426 +#: Console/AppConsole.vala:96 Gtk/MainWindow.vala:426 msgid "Remove installed kernels older than running kernel" msgstr "Ta bort installerade kärnor äldre än den som körs" -#: Console/AppConsole.vala:97 +#: Console/AppConsole.vala:95 #, fuzzy msgid "Remove specified kernel" msgstr "Ta bort specificerad kärna" -#: Console/AppConsole.vala:204 Console/AppConsole.vala:318 -#: Console/AppConsole.vala:347 +#: Console/AppConsole.vala:202 Console/AppConsole.vala:316 +#: Console/AppConsole.vala:345 msgid "Run '" msgstr "" -#: Console/AppConsole.vala:122 +#: Console/AppConsole.vala:120 msgid "Run the application as admin with pkexec or sudo." msgstr "Kör programmet som administratör, med pkexec eller sudo." -#: Common/LinuxKernel.vala:1201 Gtk/MainWindow.vala:208 +#: Common/LinuxKernel.vala:1198 Gtk/MainWindow.vala:208 msgid "Running" msgstr "Körs" @@ -525,7 +485,7 @@ msgstr "Välj kärna för installation" msgid "Select the kernels to remove" msgstr "Välj kärnor för borttagning" -#: Common/LinuxKernel.vala:1322 +#: Common/LinuxKernel.vala:1317 msgid "" "Selected kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -533,11 +493,7 @@ msgstr "" "Denna kärna används för tillfället och kan inte tas bort.\n" "Installera en annan kärna innan du tar bort den här." -#: Gtk/SettingsDialog.vala:203 -msgid "Set GRUB menu timeout" -msgstr "" - -#: Gtk/MainWindow.vala:475 Gtk/SettingsDialog.vala:57 +#: Gtk/MainWindow.vala:475 Gtk/SettingsDialog.vala:56 msgid "Settings" msgstr "Inställningar" @@ -549,20 +505,20 @@ msgstr "Visa" msgid "Show all options" msgstr "Visa alla alternativ" -#: Gtk/SettingsDialog.vala:96 +#: Gtk/SettingsDialog.vala:95 msgid "Show notification bubble on desktop" msgstr "Visa aviseringsruta på skrivbordet" -#: Gtk/SettingsDialog.vala:107 +#: Gtk/SettingsDialog.vala:106 msgid "Show notification dialog" msgstr "Visa aviseringsdialog" -#: Console/AppConsole.vala:101 +#: Console/AppConsole.vala:99 #, fuzzy msgid "Show unstable and RC releases" msgstr "Dölj instabila- och RC-publiceringar" -#: Gtk/SettingsDialog.vala:244 +#: Gtk/SettingsDialog.vala:199 #, fuzzy msgid "Skip internet connection check" msgstr "Internetuppkopplingen är inte aktiv" @@ -575,11 +531,11 @@ msgstr "Status" msgid "Stopped" msgstr "Stoppad" -#: Console/AppConsole.vala:86 Gtk/AppGtk.vala:179 +#: Console/AppConsole.vala:84 Gtk/AppGtk.vala:179 msgid "Syntax" msgstr "Syntax" -#: Console/AppConsole.vala:210 Gtk/AppGtk.vala:111 +#: Console/AppConsole.vala:208 Gtk/AppGtk.vala:111 msgid "Temp" msgstr "" @@ -588,11 +544,11 @@ msgstr "" msgid "Third Party Tools" msgstr "Tredjepartsverktyg" -#: Common/LinuxKernel.vala:1272 Gtk/MainWindow.vala:678 +#: Common/LinuxKernel.vala:1269 Gtk/MainWindow.vala:678 msgid "This kernel is already installed." msgstr "Denna kärna är redan installerad" -#: Common/LinuxKernel.vala:1380 +#: Common/LinuxKernel.vala:1373 msgid "" "This kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -600,58 +556,23 @@ msgstr "" "Denna kärna används för tillfället och kan inte tas bort.\n" "Installera en annan kärna innan du tar bort den här." -#: Gtk/SettingsDialog.vala:223 -msgid "" -"Time (in seconds) to display the GRUB menu\n" -"\n" -"0 = Do not show menu\n" -"-1 = Show indefinitely till user selects" -msgstr "" -"Tid (i sekunder) att visa GRUB-menyn\n" -"\n" -"0 = Visa ingen meny\n" -"-1 = Visa oavbrutet tills användaren väljer" - #: Utility/Gtk/AboutWindow.vala:346 #, c-format msgid "Translators" msgstr "Översättare" -#: Common/LinuxKernel.vala:1364 Common/LinuxKernel.vala:1422 +#: Common/LinuxKernel.vala:1357 Common/LinuxKernel.vala:1413 msgid "Un-install completed" msgstr "Avinstallation slutförd" -#: Common/LinuxKernel.vala:1367 Common/LinuxKernel.vala:1425 +#: Common/LinuxKernel.vala:1360 Common/LinuxKernel.vala:1416 msgid "Un-install completed with errors" msgstr "Avinstallation slutförd med fel" -#: Console/AppConsole.vala:202 Gtk/AppGtk.vala:166 +#: Console/AppConsole.vala:200 Gtk/AppGtk.vala:166 msgid "Unknown option" msgstr "Okänt alternativ" -#: Gtk/SettingsDialog.vala:210 -msgid "" -"Updates the GRUB menu after installing or removing kernels, so that the menu " -"is displayed for 2 seconds at boot time. This will help you recover from a " -"bad kernel update by selecting another kernel to boot. During boot, use the " -"'Advanced options for Ubuntu' menu entry to select another kernel.\n" -"\n" -"0 = Do not show menu\n" -"-1 = Show indefinitely till user selects" -msgstr "" -"Uppdaterar GRUB-menyn efter installation eller borttagning av kärnor, så att " -"menyn visas i 2 sekunder vid systemstart. Detta hjälper dig att återställa " -"från en dålig kärnuppdatering, genom att du kan välja en annan kärna att " -"starta med. Under uppstarten väljer du \"Avancerade alternativ...\" för att " -"välja en annan kärna.\n" -"\n" -"0 = Visa ingen meny\n" -"-1 = Visa menyn oavbrutet tills användaren väljer" - -#: Common/LinuxKernel.vala:1493 -msgid "Updating GRUB menu" -msgstr "Uppdaterar GRUB-menyn" - #: Gtk/MainWindow.vala:179 msgid "Version" msgstr "Version" @@ -660,7 +581,7 @@ msgstr "Version" msgid "W" msgstr "V" -#: Gtk/SettingsDialog.vala:157 +#: Gtk/SettingsDialog.vala:156 msgid "Week(s)" msgstr "Veckor" @@ -672,10 +593,80 @@ msgstr "Ja" msgid "[Warning] Deleted invalid lock" msgstr "[Varning] Tog bort ogiltigt lås" -#: Gtk/SettingsDialog.vala:271 +#: Gtk/SettingsDialog.vala:226 msgid "seconds" msgstr "" +#~ msgid "Booting previous kernels" +#~ msgstr "Startar föregående kärnor" + +#~ msgid "GRUB Options" +#~ msgstr "GRUB-alternativ" + +#~ msgid "" +#~ "Mainline kernels can sometimes cause problems if there are proprietary " +#~ "drivers installed on your system. These issues include:\n" +#~ "\n" +#~ "▰ WiFi not working\n" +#~ "▰ Black screen on startup\n" +#~ "▰ Random system freeze\n" +#~ "\n" +#~ "If you face any of these issues there is no need to panic.\n" +#~ "\n" +#~ "▰ Reboot your system\n" +#~ "▰ Select 'Advanced Boot Options' from the GRUB boot menu\n" +#~ "▰ Select an older kernel from the list displayed on this screen\n" +#~ "▰ Your system will boot using the selected kernel\n" +#~ "▰ You can now uninstall the kernel that is causing issues\n" +#~ msgstr "" +#~ "Standardkärnor kan ibland orsaka problem, om det finns proprietära " +#~ "drivrutiner installerade i ditt system. Dessa problem kan inkludera:\n" +#~ "\n" +#~ "▰ Trådlöst nätverk som inte fungerar\n" +#~ "▰ Svart skärm vid systemstart\n" +#~ "▰ Slumpartade systemfrysningar\n" +#~ "\n" +#~ "Råkar du ut för något av dessa problem, är det ingen panik\n" +#~ "\n" +#~ "▰ Starta om ditt system\n" +#~ "▰ Välj \"Avancerade startalternativ\" i GRUB-menyn\n" +#~ "▰ Välj en äldre kärna från listan som visas\n" +#~ "▰ Ditt system startar då med med den valda kärnan\n" +#~ "▰ Du kan nu avinstallera den kärna som orsakar problem\n" + +#~ msgid "" +#~ "Time (in seconds) to display the GRUB menu\n" +#~ "\n" +#~ "0 = Do not show menu\n" +#~ "-1 = Show indefinitely till user selects" +#~ msgstr "" +#~ "Tid (i sekunder) att visa GRUB-menyn\n" +#~ "\n" +#~ "0 = Visa ingen meny\n" +#~ "-1 = Visa oavbrutet tills användaren väljer" + +#~ msgid "" +#~ "Updates the GRUB menu after installing or removing kernels, so that the " +#~ "menu is displayed for 2 seconds at boot time. This will help you recover " +#~ "from a bad kernel update by selecting another kernel to boot. During " +#~ "boot, use the 'Advanced options for Ubuntu' menu entry to select another " +#~ "kernel.\n" +#~ "\n" +#~ "0 = Do not show menu\n" +#~ "-1 = Show indefinitely till user selects" +#~ msgstr "" +#~ "Uppdaterar GRUB-menyn efter installation eller borttagning av kärnor, så " +#~ "att menyn visas i 2 sekunder vid systemstart. Detta hjälper dig att " +#~ "återställa från en dålig kärnuppdatering, genom att du kan välja en annan " +#~ "kärna att starta med. Under uppstarten väljer du \"Avancerade " +#~ "alternativ...\" för att välja en annan kärna.\n" +#~ "\n" +#~ "0 = Visa ingen meny\n" +#~ "-1 = Visa menyn oavbrutet tills användaren väljer" + +#~ msgid "Updating GRUB menu" +#~ msgstr "Uppdaterar GRUB-menyn" + #~ msgid "Run 'ukuu --list' and use the version string listed in first column" #~ msgstr "" #~ "Kör \"ukuu --list\" och använd den versionssträng som listas i första " diff --git a/po/ukuu-tr.po b/po/ukuu-tr.po index 3ff20fc1..f3e441af 100644 --- a/po/ukuu-tr.po +++ b/po/ukuu-tr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu\n" "Report-Msgid-Bugs-To: bw.aljex@gmail.com\n" -"POT-Creation-Date: 2019-03-10 23:56-0400\n" +"POT-Creation-Date: 2019-03-12 07:00-0400\n" "PO-Revision-Date: 2018-03-30 20:59+0300\n" "Last-Translator: Gökhan Gökkaya \n" "Language-Team: Turkish\n" @@ -22,7 +22,7 @@ msgstr "" msgid "About" msgstr "Hakkında" -#: Console/AppConsole.vala:119 +#: Console/AppConsole.vala:117 msgid "Admin access is required for running this application." msgstr "Bu uygulamayı çalıştırmak için yönetici izni gerekiyor." @@ -30,7 +30,7 @@ msgstr "Bu uygulamayı çalıştırmak için yönetici izni gerekiyor." msgid "Another instance of this application is running" msgstr "Bu uygulamanın başka bir örneği çalışıyor" -#: Common/LinuxKernel.vala:108 +#: Common/LinuxKernel.vala:105 #, fuzzy msgid "Architecture" msgstr "Sistem mimarisi" @@ -40,7 +40,7 @@ msgstr "Sistem mimarisi" msgid "Artists" msgstr "Sanatçılar" -#: Console/AppConsole.vala:106 +#: Console/AppConsole.vala:104 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "" @@ -49,7 +49,7 @@ msgstr "" msgid "Authors" msgstr "Yazar" -#: Common/LinuxKernel.vala:1184 +#: Common/LinuxKernel.vala:1181 msgid "Available Kernels" msgstr "Mevcut Çekirdekler" @@ -57,11 +57,7 @@ msgstr "Mevcut Çekirdekler" msgid "Back" msgstr "Geri" -#: Gtk/MainWindow.vala:822 -msgid "Booting previous kernels" -msgstr "Önceki çekirdeklerin önyüklenmesi" - -#: Console/AppConsole.vala:209 Gtk/AppGtk.vala:110 +#: Console/AppConsole.vala:207 Gtk/AppGtk.vala:110 msgid "Cache" msgstr "" @@ -75,15 +71,15 @@ msgstr "İptal" msgid "Changes" msgstr "Değişiklikler" -#: Gtk/SettingsDialog.vala:122 +#: Gtk/SettingsDialog.vala:121 msgid "Check every" msgstr "Kontrol aralığı" -#: Console/AppConsole.vala:90 +#: Console/AppConsole.vala:88 msgid "Check for kernel updates" msgstr "Çekirdek güncellemelerini kontrol et" -#: Console/AppConsole.vala:91 +#: Console/AppConsole.vala:89 #, fuzzy msgid "Check for kernel updates and notify current user" msgstr "Çekirdek güncellemelerini kontrol et" @@ -92,11 +88,11 @@ msgstr "Çekirdek güncellemelerini kontrol et" msgid "Close" msgstr "Kapat" -#: Console/AppConsole.vala:346 +#: Console/AppConsole.vala:344 msgid "Command not specified" msgstr "" -#: Console/AppConsole.vala:88 +#: Console/AppConsole.vala:86 msgid "Commands" msgstr "" @@ -104,7 +100,7 @@ msgstr "" msgid "Commands listed below are not available on this system" msgstr "Aşağıda listelenen komutlar bu sistemde mevcut değil" -#: Common/LinuxKernel.vala:740 +#: Common/LinuxKernel.vala:737 #, c-format msgid "Continue ?" msgstr "" @@ -114,16 +110,16 @@ msgstr "" msgid "Contributions" msgstr "Destek verenler" -#: Common/LinuxKernel.vala:724 +#: Common/LinuxKernel.vala:721 #, fuzzy msgid "Could not find any kernels to remove" msgstr "Kaldırma için çekirdek seçin" -#: Console/AppConsole.vala:314 Gtk/MainWindow.vala:100 +#: Console/AppConsole.vala:312 Gtk/MainWindow.vala:100 msgid "Could not find requested version" msgstr "İstenen sürüm bulunamadı" -#: Common/LinuxKernel.vala:718 +#: Common/LinuxKernel.vala:715 #, fuzzy msgid "Could not find running kernel in list!" msgstr "İstenen sürüm bulunamadı" @@ -137,7 +133,7 @@ msgstr "Dizin oluşturuldu" msgid "Credits" msgstr "Katkı sağlayanlar" -#: Gtk/SettingsDialog.vala:155 +#: Gtk/SettingsDialog.vala:154 msgid "Day(s)" msgstr "Gün" @@ -149,11 +145,11 @@ msgstr "Silinen dizin" msgid "Dir not found" msgstr "Dizin bulunamadı" -#: Gtk/SettingsDialog.vala:162 +#: Gtk/SettingsDialog.vala:161 msgid "Display" msgstr "Gösterim" -#: Common/LinuxKernel.vala:94 +#: Common/LinuxKernel.vala:91 msgid "Distribution" msgstr "Dağıtım" @@ -162,11 +158,11 @@ msgstr "Dağıtım" msgid "Documenters" msgstr "Belgelendirenler" -#: Console/AppConsole.vala:99 +#: Console/AppConsole.vala:97 msgid "Download packages for specified kernel" msgstr "Belirtilen çekirdek için paketleri indir" -#: Common/LinuxKernel.vala:1230 +#: Common/LinuxKernel.vala:1227 #, c-format msgid "Downloading" msgstr "İndiriliyor" @@ -175,7 +171,7 @@ msgstr "İndiriliyor" msgid "E" msgstr "H" -#: Common/LinuxKernel.vala:1258 +#: Common/LinuxKernel.vala:1255 #, c-format msgid "ERROR" msgstr "HATA" @@ -208,11 +204,11 @@ msgstr "Dosya okuma başarısız" msgid "Failed to write file" msgstr "Dosya yazma başarısız" -#: Common/LinuxKernel.vala:399 +#: Common/LinuxKernel.vala:396 msgid "Fetching index from kernel.ubuntu.com..." msgstr "kernel.ubuntu.com alanından içerik listesi alınıyor ..." -#: Common/LinuxKernel.vala:356 +#: Common/LinuxKernel.vala:353 msgid "Fetching index..." msgstr "" @@ -245,24 +241,20 @@ msgstr "Şu dosya bulunamadı: %s" msgid "File saved" msgstr "Dosya kaydedildi" -#: Common/LinuxKernel.vala:733 +#: Common/LinuxKernel.vala:730 #, c-format msgid "Following kernels will be removed" msgstr "" -#: Gtk/SettingsDialog.vala:192 -msgid "GRUB Options" -msgstr "GRUB seçenekleri" - -#: Gtk/SettingsDialog.vala:181 +#: Gtk/SettingsDialog.vala:180 msgid "Hide kernels older than 4.0" msgstr "4.0 sürümden düşük çekirdekleri gizle" -#: Gtk/SettingsDialog.vala:170 +#: Gtk/SettingsDialog.vala:169 msgid "Hide unstable and RC releases" msgstr "Kararsız ve RC sürümleri gizle" -#: Gtk/SettingsDialog.vala:153 +#: Gtk/SettingsDialog.vala:152 msgid "Hour(s)" msgstr "Saat" @@ -270,11 +262,11 @@ msgstr "Saat" msgid "Ignore this update" msgstr "Bu güncellemeyi yoksay" -#: Common/LinuxKernel.vala:262 +#: Common/LinuxKernel.vala:259 msgid "Index is fresh" msgstr "İçerik listesi güncel" -#: Common/LinuxKernel.vala:259 +#: Common/LinuxKernel.vala:256 msgid "Index is stale" msgstr "İçerik listesi eski" @@ -282,21 +274,21 @@ msgstr "İçerik listesi eski" msgid "Install" msgstr "Kur" -#: Common/LinuxKernel.vala:797 +#: Common/LinuxKernel.vala:794 #, c-format msgid "Install Linux v%s ? (y/n): " msgstr "" -#: Console/AppConsole.vala:94 +#: Console/AppConsole.vala:92 #, fuzzy msgid "Install latest mainline kernel" msgstr "Belirtilen mainline çekirdeğini kur" -#: Console/AppConsole.vala:95 +#: Console/AppConsole.vala:93 msgid "Install latest point update for current series" msgstr "" -#: Console/AppConsole.vala:96 +#: Console/AppConsole.vala:94 msgid "Install specified mainline kernel" msgstr "Belirtilen mainline çekirdeğini kur" @@ -304,20 +296,20 @@ msgstr "Belirtilen mainline çekirdeğini kur" msgid "Install this kernel" msgstr "Bu çekirdeği kur" -#: Common/LinuxKernel.vala:1306 +#: Common/LinuxKernel.vala:1301 msgid "Installation completed with errors" msgstr "Kurulum hatalarla tamamlandı" -#: Common/LinuxKernel.vala:1303 +#: Common/LinuxKernel.vala:1298 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "Kurulum tamamlandı. Yeni çekirdeği kullanmak için yeniden başlatma gerekiyor." -#: Common/LinuxKernel.vala:1201 Gtk/MainWindow.vala:208 +#: Common/LinuxKernel.vala:1198 Gtk/MainWindow.vala:208 msgid "Installed" msgstr "Kurulu" -#: Gtk/SettingsDialog.vala:257 +#: Gtk/SettingsDialog.vala:212 #, fuzzy msgid "Internect connection timeout in " msgstr "İnternet bağlantısı aktif değil" @@ -335,17 +327,17 @@ msgstr "Çekirdek" msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Ubuntu tabanlı dağıtımlar için çekirdek güncelleme aracı" -#: Common/LinuxKernel.vala:779 Console/AppConsole.vala:372 +#: Common/LinuxKernel.vala:776 Console/AppConsole.vala:370 #, c-format msgid "Latest point update" msgstr "" -#: Common/LinuxKernel.vala:768 Console/AppConsole.vala:365 +#: Common/LinuxKernel.vala:765 Console/AppConsole.vala:363 #, c-format msgid "Latest update" msgstr "" -#: Console/AppConsole.vala:92 +#: Console/AppConsole.vala:90 msgid "List all available mainline kernels" msgstr "Tüm mainline çekirdeklerini listele" @@ -353,46 +345,11 @@ msgstr "Tüm mainline çekirdeklerini listele" msgid "List available kernels" msgstr "Tüm çekirdekleri listele" -#: Console/AppConsole.vala:93 +#: Console/AppConsole.vala:91 #, fuzzy msgid "List installed kernels" msgstr "Tüm çekirdekleri listele" -#: Gtk/MainWindow.vala:823 -#, fuzzy -msgid "" -"Mainline kernels can sometimes cause problems if there are proprietary " -"drivers installed on your system. These issues include:\n" -"\n" -"▰ WiFi not working\n" -"▰ Black screen on startup\n" -"▰ Random system freeze\n" -"\n" -"If you face any of these issues there is no need to panic.\n" -"\n" -"▰ Reboot your system\n" -"▰ Select 'Advanced Boot Options' from the GRUB boot menu\n" -"▰ Select an older kernel from the list displayed on this screen\n" -"▰ Your system will boot using the selected kernel\n" -"▰ You can now uninstall the kernel that is causing issues\n" -msgstr "" -"Eğer sisteminizde sahipli/tescilli sürücüler kurulu ise, mainline " -"çekirdekleri bazen sorunlara neden olabilir. Bunlar arasında aşağıdakiler " -"olabilir:\n" -"\n" -"\\342\\226\\260 Kablosuz ağ aygıtının çalışmaması\n" -"\\342\\226\\260 Sistem açılışının siyah ekranda kalması\n" -"\\342\\226\\260 Rsstgele sistem donmaları\n" -"\n" -"Bu sorunlardan herhangi biriyle karşılaşırsanız paniğe kapılmayın.\n" -"\n" -"\\342\\226\\260 Sisteminizi yeniden başlatın\n" -"\\342\\226\\260 GRUB açılış menüsünden 'Gelişmiş Açılış Seçenekleri'ni " -"seçin\n" -"\\342\\226\\260 Bu ekranda listelenenlerden önceki bir çekirdeği seçin\n" -"\\342\\226\\260 Sisteminiz seçilen çekirdek kullanılarak başlatılacaktır\n" -"\\342\\226\\260 Şimdi sorun oluşturan çekirdeği kaldırabilirsiniz\n" - #: Utility/Gtk/GtkHelper.vala:272 msgid "Missing Icon" msgstr "Eksik Simge" @@ -401,7 +358,7 @@ msgstr "Eksik Simge" msgid "Multiple Kernels Selected" msgstr "Çoklu Çekirdek Seçildi" -#: Console/AppConsole.vala:296 +#: Console/AppConsole.vala:294 msgid "Multiple kernels selected for installation. Select only one." msgstr "Kurulum için çoklu çekirdek seçildi. Sadece bir tane seçiniz." @@ -413,12 +370,12 @@ msgstr "Hayır" msgid "No Internet" msgstr "İnternet Yok" -#: Console/AppConsole.vala:290 Console/AppConsole.vala:327 +#: Console/AppConsole.vala:288 Console/AppConsole.vala:325 msgid "No kernels specified" msgstr "" -#: Common/LinuxKernel.vala:787 Console/AppConsole.vala:377 -#: Console/AppConsole.vala:457 Gtk/MainWindow.vala:817 +#: Common/LinuxKernel.vala:784 Console/AppConsole.vala:375 +#: Console/AppConsole.vala:433 Gtk/MainWindow.vala:793 msgid "No updates found" msgstr "Güncelleme bulunamadı" @@ -426,38 +383,38 @@ msgstr "Güncelleme bulunamadı" msgid "Not Selected" msgstr "Seçilen Yok" -#: Gtk/SettingsDialog.vala:67 +#: Gtk/SettingsDialog.vala:66 msgid "Notification" msgstr "Bildirim" -#: Gtk/SettingsDialog.vala:74 +#: Gtk/SettingsDialog.vala:73 msgid "Notify if a major release is available" msgstr "Ana sürüm mevcutsa bildir" -#: Gtk/SettingsDialog.vala:85 +#: Gtk/SettingsDialog.vala:84 msgid "Notify if a point release is available" msgstr "Ara sürüm mevcutsa bildir" -#: Common/LinuxKernel.vala:1249 Utility/Gtk/CustomMessageDialog.vala:167 +#: Common/LinuxKernel.vala:1246 Utility/Gtk/CustomMessageDialog.vala:167 #: Utility/Gtk/CustomMessageDialog.vala:171 Utility/Gtk/GtkHelper.vala:121 #, c-format msgid "OK" msgstr "TAMAM" -#: Console/AppConsole.vala:103 Gtk/AppGtk.vala:181 +#: Console/AppConsole.vala:101 Gtk/AppGtk.vala:181 msgid "Options" msgstr "Seçenekler" -#: Gtk/SettingsDialog.vala:236 +#: Gtk/SettingsDialog.vala:191 msgid "Other" msgstr "" -#: Common/LinuxKernel.vala:1063 +#: Common/LinuxKernel.vala:1060 #, c-format msgid "Packages Available (DEB)" msgstr "Mevcut Paketler (DEB)" -#: Common/LinuxKernel.vala:1071 +#: Common/LinuxKernel.vala:1068 #, c-format msgid "Packages Installed" msgstr "Paketler Kuruldu" @@ -466,7 +423,7 @@ msgstr "Paketler Kuruldu" msgid "Please install required packages and try again" msgstr "Lütfen gerekli paketleri yükleyin ve tekrar deneyin" -#: Common/LinuxKernel.vala:1327 +#: Common/LinuxKernel.vala:1322 msgid "Preparing to remove selected kernels" msgstr "Seçilen çekirdekleri kaldırmak için hazırlanıyor" @@ -490,29 +447,29 @@ msgstr "Yenileniyor..." msgid "Remove" msgstr "Kaldır" -#: Console/AppConsole.vala:100 Console/AppConsole.vala:105 +#: Console/AppConsole.vala:98 Console/AppConsole.vala:103 msgid "Remove files from application cache" msgstr "Dosyaları uygulama önbelleğinden sil" -#: Console/AppConsole.vala:98 Gtk/MainWindow.vala:426 +#: Console/AppConsole.vala:96 Gtk/MainWindow.vala:426 msgid "Remove installed kernels older than running kernel" msgstr "" -#: Console/AppConsole.vala:97 +#: Console/AppConsole.vala:95 #, fuzzy msgid "Remove specified kernel" msgstr "Belirtilen mainline çekirdeğini kaldır" -#: Console/AppConsole.vala:204 Console/AppConsole.vala:318 -#: Console/AppConsole.vala:347 +#: Console/AppConsole.vala:202 Console/AppConsole.vala:316 +#: Console/AppConsole.vala:345 msgid "Run '" msgstr "" -#: Console/AppConsole.vala:122 +#: Console/AppConsole.vala:120 msgid "Run the application as admin with pkexec or sudo." msgstr "Bu uygulamayı pkexec yada sudo ile yönetici haklarıyla çalıştırın." -#: Common/LinuxKernel.vala:1201 Gtk/MainWindow.vala:208 +#: Common/LinuxKernel.vala:1198 Gtk/MainWindow.vala:208 msgid "Running" msgstr "Çalışıyor" @@ -528,7 +485,7 @@ msgstr "Kurulum için çekirdek seçin" msgid "Select the kernels to remove" msgstr "Kaldırma için çekirdek seçin" -#: Common/LinuxKernel.vala:1322 +#: Common/LinuxKernel.vala:1317 msgid "" "Selected kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -536,11 +493,7 @@ msgstr "" "Seçilen çekirdek şu anda çalışıyor ve kaldırılamıyor.\n" " Bunu kaldırmadan önce başka bir çekirdek yükleyin." -#: Gtk/SettingsDialog.vala:203 -msgid "Set GRUB menu timeout" -msgstr "" - -#: Gtk/MainWindow.vala:475 Gtk/SettingsDialog.vala:57 +#: Gtk/MainWindow.vala:475 Gtk/SettingsDialog.vala:56 msgid "Settings" msgstr "Ayarlar" @@ -552,20 +505,20 @@ msgstr "Göster" msgid "Show all options" msgstr "Tüm seçenekleri göster" -#: Gtk/SettingsDialog.vala:96 +#: Gtk/SettingsDialog.vala:95 msgid "Show notification bubble on desktop" msgstr "Masaüstünde bildirim baloncuğu göster" -#: Gtk/SettingsDialog.vala:107 +#: Gtk/SettingsDialog.vala:106 msgid "Show notification dialog" msgstr "Bildirim iletişimini göster" -#: Console/AppConsole.vala:101 +#: Console/AppConsole.vala:99 #, fuzzy msgid "Show unstable and RC releases" msgstr "Kararsız ve RC sürümleri gizle" -#: Gtk/SettingsDialog.vala:244 +#: Gtk/SettingsDialog.vala:199 #, fuzzy msgid "Skip internet connection check" msgstr "İnternet bağlantısı aktif değil" @@ -578,11 +531,11 @@ msgstr "Durum" msgid "Stopped" msgstr "Durduruldu" -#: Console/AppConsole.vala:86 Gtk/AppGtk.vala:179 +#: Console/AppConsole.vala:84 Gtk/AppGtk.vala:179 msgid "Syntax" msgstr "Sözdizimi" -#: Console/AppConsole.vala:210 Gtk/AppGtk.vala:111 +#: Console/AppConsole.vala:208 Gtk/AppGtk.vala:111 msgid "Temp" msgstr "" @@ -591,11 +544,11 @@ msgstr "" msgid "Third Party Tools" msgstr "Üçüncü Parti Araçlar" -#: Common/LinuxKernel.vala:1272 Gtk/MainWindow.vala:678 +#: Common/LinuxKernel.vala:1269 Gtk/MainWindow.vala:678 msgid "This kernel is already installed." msgstr "Bu çekirdek zaten kurulu." -#: Common/LinuxKernel.vala:1380 +#: Common/LinuxKernel.vala:1373 msgid "" "This kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -603,58 +556,23 @@ msgstr "" "Bu çekirdek şu anda çalışıyor ve bu sebeple kaldırılamaz.\n" "Bunu kaldırmadan önce başka bir çekirdek yükleyin." -#: Gtk/SettingsDialog.vala:223 -msgid "" -"Time (in seconds) to display the GRUB menu\n" -"\n" -"0 = Do not show menu\n" -"-1 = Show indefinitely till user selects" -msgstr "" -"GRUB menüsünün görüntüleneceği süre (saniye cinsinden)\n" -"\n" -"0 = Menüyü gösterme\n" -"-1 = Kullanıcı seçimine kadar süresiz göster" - #: Utility/Gtk/AboutWindow.vala:346 #, c-format msgid "Translators" msgstr "Çevirenler" -#: Common/LinuxKernel.vala:1364 Common/LinuxKernel.vala:1422 +#: Common/LinuxKernel.vala:1357 Common/LinuxKernel.vala:1413 msgid "Un-install completed" msgstr "Kaldırma tamamlandı" -#: Common/LinuxKernel.vala:1367 Common/LinuxKernel.vala:1425 +#: Common/LinuxKernel.vala:1360 Common/LinuxKernel.vala:1416 msgid "Un-install completed with errors" msgstr "Kaldırma hatalarla tamamlandı" -#: Console/AppConsole.vala:202 Gtk/AppGtk.vala:166 +#: Console/AppConsole.vala:200 Gtk/AppGtk.vala:166 msgid "Unknown option" msgstr "Bilinmeyen seçenek" -#: Gtk/SettingsDialog.vala:210 -msgid "" -"Updates the GRUB menu after installing or removing kernels, so that the menu " -"is displayed for 2 seconds at boot time. This will help you recover from a " -"bad kernel update by selecting another kernel to boot. During boot, use the " -"'Advanced options for Ubuntu' menu entry to select another kernel.\n" -"\n" -"0 = Do not show menu\n" -"-1 = Show indefinitely till user selects" -msgstr "" -"Çekirdekleri kurduktan ya da kaldırdıktan sonra GRUB menüsünü günceller, " -"böylece önyükleme zamanında menü belirlenen saniye görüntülenir. Böylece " -"önyükleme için başka bir çekirdek seçerek, hatalı bir çekirdek " -"güncellemesinden kurtarmanıza yardımcı olur. Önyükleme sırasında \"Gelişmiş " -"seçenekler...\" menü girdisinden başka bir çekirdeği seçebilirsiniz.\n" -"\n" -"0 = Menüyü gösterme\n" -"-1 = Kullanıcı seçimine kadar süresiz göster" - -#: Common/LinuxKernel.vala:1493 -msgid "Updating GRUB menu" -msgstr "GRUB menüsü güncelleniyor" - #: Gtk/MainWindow.vala:179 msgid "Version" msgstr "Sürüm" @@ -663,7 +581,7 @@ msgstr "Sürüm" msgid "W" msgstr "U" -#: Gtk/SettingsDialog.vala:157 +#: Gtk/SettingsDialog.vala:156 msgid "Week(s)" msgstr "Hafta" @@ -675,10 +593,84 @@ msgstr "Evet" msgid "[Warning] Deleted invalid lock" msgstr "[Uyarı] Geçersiz kilit silindi" -#: Gtk/SettingsDialog.vala:271 +#: Gtk/SettingsDialog.vala:226 msgid "seconds" msgstr "" +#~ msgid "Booting previous kernels" +#~ msgstr "Önceki çekirdeklerin önyüklenmesi" + +#~ msgid "GRUB Options" +#~ msgstr "GRUB seçenekleri" + +#, fuzzy +#~ msgid "" +#~ "Mainline kernels can sometimes cause problems if there are proprietary " +#~ "drivers installed on your system. These issues include:\n" +#~ "\n" +#~ "▰ WiFi not working\n" +#~ "▰ Black screen on startup\n" +#~ "▰ Random system freeze\n" +#~ "\n" +#~ "If you face any of these issues there is no need to panic.\n" +#~ "\n" +#~ "▰ Reboot your system\n" +#~ "▰ Select 'Advanced Boot Options' from the GRUB boot menu\n" +#~ "▰ Select an older kernel from the list displayed on this screen\n" +#~ "▰ Your system will boot using the selected kernel\n" +#~ "▰ You can now uninstall the kernel that is causing issues\n" +#~ msgstr "" +#~ "Eğer sisteminizde sahipli/tescilli sürücüler kurulu ise, mainline " +#~ "çekirdekleri bazen sorunlara neden olabilir. Bunlar arasında aşağıdakiler " +#~ "olabilir:\n" +#~ "\n" +#~ "\\342\\226\\260 Kablosuz ağ aygıtının çalışmaması\n" +#~ "\\342\\226\\260 Sistem açılışının siyah ekranda kalması\n" +#~ "\\342\\226\\260 Rsstgele sistem donmaları\n" +#~ "\n" +#~ "Bu sorunlardan herhangi biriyle karşılaşırsanız paniğe kapılmayın.\n" +#~ "\n" +#~ "\\342\\226\\260 Sisteminizi yeniden başlatın\n" +#~ "\\342\\226\\260 GRUB açılış menüsünden 'Gelişmiş Açılış Seçenekleri'ni " +#~ "seçin\n" +#~ "\\342\\226\\260 Bu ekranda listelenenlerden önceki bir çekirdeği seçin\n" +#~ "\\342\\226\\260 Sisteminiz seçilen çekirdek kullanılarak başlatılacaktır\n" +#~ "\\342\\226\\260 Şimdi sorun oluşturan çekirdeği kaldırabilirsiniz\n" + +#~ msgid "" +#~ "Time (in seconds) to display the GRUB menu\n" +#~ "\n" +#~ "0 = Do not show menu\n" +#~ "-1 = Show indefinitely till user selects" +#~ msgstr "" +#~ "GRUB menüsünün görüntüleneceği süre (saniye cinsinden)\n" +#~ "\n" +#~ "0 = Menüyü gösterme\n" +#~ "-1 = Kullanıcı seçimine kadar süresiz göster" + +#~ msgid "" +#~ "Updates the GRUB menu after installing or removing kernels, so that the " +#~ "menu is displayed for 2 seconds at boot time. This will help you recover " +#~ "from a bad kernel update by selecting another kernel to boot. During " +#~ "boot, use the 'Advanced options for Ubuntu' menu entry to select another " +#~ "kernel.\n" +#~ "\n" +#~ "0 = Do not show menu\n" +#~ "-1 = Show indefinitely till user selects" +#~ msgstr "" +#~ "Çekirdekleri kurduktan ya da kaldırdıktan sonra GRUB menüsünü günceller, " +#~ "böylece önyükleme zamanında menü belirlenen saniye görüntülenir. Böylece " +#~ "önyükleme için başka bir çekirdek seçerek, hatalı bir çekirdek " +#~ "güncellemesinden kurtarmanıza yardımcı olur. Önyükleme sırasında " +#~ "\"Gelişmiş seçenekler...\" menü girdisinden başka bir çekirdeği " +#~ "seçebilirsiniz.\n" +#~ "\n" +#~ "0 = Menüyü gösterme\n" +#~ "-1 = Kullanıcı seçimine kadar süresiz göster" + +#~ msgid "Updating GRUB menu" +#~ msgstr "GRUB menüsü güncelleniyor" + #~ msgid "Run 'ukuu --list' and use the version string listed in first column" #~ msgstr "" #~ "'ukuu --list' komutunu çalıştırın ve ilk sütunda listelenen sürüm " diff --git a/release/sanity.config b/release/sanity.config deleted file mode 100644 index 828823c4..00000000 --- a/release/sanity.config +++ /dev/null @@ -1,7 +0,0 @@ -app_name: Ubuntu Kernel Update Utility -depends_debian: libgee-0.8-2 libvte-2.91-0 libjson-glib-1.0-0 rsync aptitude aria2 curl -depends_redhat: libgee vte291 json-glib rsync aptitude aria2 curl -depends_arch: libgee vte3 json-glib rsync aptitude aria2 curl -depends_generic: libgee libvte json-glib rsync aptitude aria2 curl -assume_yes: 0 -exec_line: ukuu-gtk diff --git a/src/Common/LinuxKernel.vala b/src/Common/LinuxKernel.vala index e8d9e88b..f9fc50c1 100644 --- a/src/Common/LinuxKernel.vala +++ b/src/Common/LinuxKernel.vala @@ -47,9 +47,6 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { public static bool hide_older; public static bool hide_unstable; - - public static int grub_timeout; - public static bool update_grub_timeout; public static LinuxKernel kernel_active; public static LinuxKernel kernel_update_major; @@ -1068,7 +1065,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { list += "\n%s".printf(deb); } if (list.length > 0){ - txt += "%s\n%s".printf(_("Packages Installed"), list); + txt += "\n\n%s\n%s".printf(_("Packages Installed"), list); } return txt; @@ -1297,8 +1294,6 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { ok = (status == 0); - update_grub_menu(); - if (ok){ log_msg(_("Installation completed. A reboot is required to use the new kernel.")); } @@ -1358,8 +1353,6 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { ok = (status == 0); - update_grub_menu(); - if (ok){ log_msg(_("Un-install completed")); } @@ -1416,8 +1409,6 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { } ok = (status == 0); - update_grub_menu(); - if (ok){ log_msg(_("Un-install completed")); } @@ -1427,75 +1418,5 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { return ok; } - - // dep: update-grub - public static bool update_grub_menu(){ - - string grub_file = "/etc/default/grub"; - if (!file_exists(grub_file)){ - return false; - } - - string txt = ""; - bool file_changed = false; - bool grub_timeout_found = false; - - foreach(var line in file_read(grub_file).split("\n")){ - - if (line.up().contains("GRUB_HIDDEN_TIMEOUT=") && !line.strip().has_prefix("#")){ - // comment the line - txt += "#%s\n".printf(line); - file_changed = true; - } - else if (line.up().contains("GRUB_TIMEOUT=")){ - - int64 seconds = 0; - if (int64.try_parse(line.split("=")[1], out seconds)){ - // value can be 0, > 0 or -1 (indefinite wait) - if (seconds == grub_timeout){ - txt += "%s\n".printf(line); - } - else{ - txt += "%s=%d\n".printf("GRUB_TIMEOUT", grub_timeout); - file_changed = true; - } - } - else{ - txt += "%s=%d\n".printf("GRUB_TIMEOUT", grub_timeout); - file_changed = true; - } - grub_timeout_found = true; - } - else if (line.up().contains("GRUB_TIMEOUT_STYLE=") && !line.strip().has_prefix("#")){ - // comment the line; same as setting value to 'menu' - txt += "#%s\n".printf(line); - file_changed = true; - } - else if (line.up().contains("GRUB_HIDDEN_TIMEOUT_QUIET=") && !line.strip().has_prefix("#")){ - // comment the line; deprecated option - txt += "#%s\n".printf(line); - file_changed = true; - } - else{ - txt += "%s\n".printf(line); - } - } - - if (!grub_timeout_found){ - txt += "%s=%d\n".printf("GRUB_TIMEOUT", grub_timeout); - file_changed = true; - } - - if (file_changed && update_grub_timeout){ - file_write(grub_file, txt); - } - - log_msg(_("Updating GRUB menu")); - - string cmd = "update-grub"; - Posix.system(cmd); - - return true; - } } diff --git a/src/Common/Main.vala b/src/Common/Main.vala index 85adf7aa..4f722eb2 100644 --- a/src/Common/Main.vala +++ b/src/Common/Main.vala @@ -42,7 +42,6 @@ public class Main : GLib.Object{ public string STARTUP_SCRIPT_FILE = ""; public string STARTUP_DESKTOP_FILE = ""; - public int startup_delay = 300; public string user_login = ""; public string user_home = ""; @@ -125,8 +124,8 @@ public class Main : GLib.Object{ user_home = get_user_home(user_login); // app config files - APP_CONFIG_FILE = user_home + "/.config/" + BRANDING_SHORTNAME + ".json"; - STARTUP_SCRIPT_FILE = user_home + "/.config/" + BRANDING_SHORTNAME + "-notify.sh"; + APP_CONFIG_FILE = user_home + "/.config/" + BRANDING_SHORTNAME + "/config.json"; + STARTUP_SCRIPT_FILE = user_home + "/.config/" + BRANDING_SHORTNAME + "/" + BRANDING_SHORTNAME + "-notify.sh"; STARTUP_DESKTOP_FILE = user_home + "/.config/autostart/" + BRANDING_SHORTNAME + ".desktop"; LinuxKernel.CACHE_DIR = user_home + "/.cache/" + BRANDING_SHORTNAME; @@ -145,9 +144,6 @@ public class Main : GLib.Object{ config.set_string_member("hide_older", LinuxKernel.hide_older.to_string()); config.set_string_member("notify_interval_unit", notify_interval_unit.to_string()); config.set_string_member("notify_interval_value", notify_interval_value.to_string()); - //config.set_string_member("show_grub_menu", LinuxKernel.show_grub_menu.to_string()); - config.set_string_member("grub_timeout", LinuxKernel.grub_timeout.to_string()); - config.set_string_member("update_grub_timeout", LinuxKernel.update_grub_timeout.to_string()); config.set_string_member("connection_timeout_seconds", connection_timeout_seconds.to_string()); config.set_string_member("skip_connection_check", skip_connection_check.to_string()); @@ -185,8 +181,6 @@ public class Main : GLib.Object{ // initialize static LinuxKernel.hide_unstable = true; LinuxKernel.hide_older = true; - LinuxKernel.update_grub_timeout = false; - LinuxKernel.grub_timeout = 2; return; } @@ -212,9 +206,6 @@ public class Main : GLib.Object{ LinuxKernel.hide_unstable = json_get_bool(config, "hide_unstable", true); LinuxKernel.hide_older = json_get_bool(config, "hide_older", true); - //LinuxKernel.show_grub_menu = json_get_bool(config, "show_grub_menu", true); - LinuxKernel.grub_timeout = json_get_int(config, "grub_timeout", 2); - LinuxKernel.update_grub_timeout = json_get_bool(config, "update_grub_timeout", false); log_debug("Load config file: %s".printf(APP_CONFIG_FILE)); } @@ -244,52 +235,33 @@ public class Main : GLib.Object{ count = App.notify_interval_value * 7; break; } - - //count = 20; - //suffix = "s"; - - string txt = ""; - txt += "sleep %ds\n".printf(startup_delay); - txt += "while true\n"; - txt += "do\n"; - txt += " "+BRANDING_SHORTNAME+" --notify ; sleep %d%s \n".printf(count, suffix); - txt += "done\n"; if (file_exists(STARTUP_SCRIPT_FILE)){ file_delete(STARTUP_SCRIPT_FILE); } + // UGLY - this should be a cron job + string txt = "# Notifications are disabled\nexit 0\n"; if (notify_minor || notify_major){ - file_write( - STARTUP_SCRIPT_FILE, - txt); - } - else{ - file_write( - STARTUP_SCRIPT_FILE, - "# Notifications are disabled\n\nexit 0"); // write dummy script + txt = "while sleep %d%s".printf(count, suffix)+" ;do "+BRANDING_SHORTNAME+" --notify ;done\n"; } + file_write(STARTUP_SCRIPT_FILE,txt); + chown(STARTUP_SCRIPT_FILE, user_login, user_login); } private void update_startup_desktop_file(){ if (notify_minor || notify_major){ - string txt = -"""[Desktop Entry] -Type=Application -Exec={command} -Hidden=false -NoDisplay=false -X-GNOME-Autostart-enabled=true -Name[en_IN]=Ukuu Notification -Name=Ukuu Notification -Comment[en_IN]=Ukuu Notification -Comment=Ukuu Notification -"""; - - txt = txt.replace("{command}", "sh \"%s\"".printf(STARTUP_SCRIPT_FILE)); + string txt = "[Desktop Entry]\n" + + "Type=Application\n" + + "Exec=sh \"" + STARTUP_SCRIPT_FILE + "\"\n" + + "Hidden=false\n" + + "NoDisplay=false\n" + + "X-GNOME-Autostart-enabled=true\n" + + "Name=Ukuu Notification\n" + + "Comment=Ukuu Notification\n"; file_write(STARTUP_DESKTOP_FILE, txt); @@ -299,24 +271,5 @@ Comment=Ukuu Notification file_delete(STARTUP_DESKTOP_FILE); } } - - public void fix_startup_script_error(){ - - /* This fixes a critical issue with startup script in versions prior to Ukuu v16.12 */ - - if (!file_exists(STARTUP_SCRIPT_FILE)){ - return; - } - - if (!file_read(STARTUP_SCRIPT_FILE).contains("&&")){ - return; - } - - update_startup_script(); - - process_quit_by_name("sh", BRANDING_SHORTNAME+" -notify.sh", false); - - // don't start script again - } } diff --git a/src/Console/AppConsole.vala b/src/Console/AppConsole.vala index 41b40d39..d3e0472d 100644 --- a/src/Console/AppConsole.vala +++ b/src/Console/AppConsole.vala @@ -67,8 +67,6 @@ public class AppConsole : GLib.Object { var console = new AppConsole(); bool is_success = console.parse_arguments(args); - App.fix_startup_script_error(); - return (is_success) ? 0 : 1; } @@ -432,28 +430,6 @@ public class AppConsole : GLib.Object { return; } - // dummy - - /* - var title = "Linux v4.7 Available"; - var message = "Minor update available for installation"; - - if (App.notify_bubble){ - OSDNotify.notify_send(title,message,3000,"normal","info"); - } - - if (App.notify_dialog){ - - var win = new UpdateNotificationWindow( - BRANDING_LONGNAME, - "%s\n\n%s".printf(title, message), - null); - - win.destroy.connect(Gtk.main_quit); - Gtk.main(); // start event loop - } - * */ - log_msg(_("No updates found")); } @@ -461,8 +437,6 @@ public class AppConsole : GLib.Object { if (!check_internet_connectivity()){ - App.fix_startup_script_error(); - if (exit_app){ exit(1); } diff --git a/src/Gtk/MainWindow.vala b/src/Gtk/MainWindow.vala index e66d8017..5488024c 100644 --- a/src/Gtk/MainWindow.vala +++ b/src/Gtk/MainWindow.vala @@ -693,9 +693,7 @@ public class MainWindow : Gtk.Window{ }); term.destroy.connect(()=>{ - - show_grub_message(); - + if (App.command == "list"){ this.present(); refresh_cache(); @@ -792,40 +790,6 @@ public class MainWindow : Gtk.Window{ return; } - // dummy - - /* - var title = "Linux v4.7 Available"; - var message = "Minor update available for installation"; - - if (App.notify_bubble){ - OSDNotify.notify_send(title,message,3000,"normal","info"); - } - - if (App.notify_dialog){ - - var win = new UpdateNotificationWindow( - BRANDING_LONGNAME, - "%s\n\n%s".printf(title, message), - null); - - win.destroy.connect(Gtk.main_quit); - Gtk.main(); // start event loop - } - * */ - log_msg(_("No updates found")); } - - public void show_grub_message(){ - - string title = _("Booting previous kernels"); - string msg = _("Mainline kernels can sometimes cause problems if there are proprietary drivers installed on your system. These issues include:\n\n▰ WiFi not working\n▰ Black screen on startup\n▰ Random system freeze\n\nIf you face any of these issues there is no need to panic.\n\n▰ Reboot your system\n▰ Select 'Advanced Boot Options' from the GRUB boot menu\n▰ Select an older kernel from the list displayed on this screen\n▰ Your system will boot using the selected kernel\n▰ You can now uninstall the kernel that is causing issues\n"); - gtk_messagebox(title, msg, this, false); - - if (App.command != "list"){ - Gtk.main_quit(); - App.exit_app(0); - } - } } diff --git a/src/Gtk/SettingsDialog.vala b/src/Gtk/SettingsDialog.vala index 6b3c6bfe..39bc8b19 100644 --- a/src/Gtk/SettingsDialog.vala +++ b/src/Gtk/SettingsDialog.vala @@ -41,7 +41,6 @@ public class SettingsDialog : Gtk.Dialog { private Gtk.CheckButton chk_notify_dialog; private Gtk.CheckButton chk_hide_unstable; private Gtk.CheckButton chk_hide_older; - private Gtk.CheckButton chk_update_grub_timeout; public SettingsDialog.with_parent(Window parent) { set_transient_for(parent); @@ -187,50 +186,6 @@ public class SettingsDialog : Gtk.Dialog { chk.toggled.connect(()=>{ LinuxKernel.hide_older = chk_hide_older.active; }); - - // grub - label = new Label("" + _("GRUB Options") + ""); - label.set_use_markup(true); - label.xalign = (float) 0.0; - label.margin_top = 12; - label.margin_bottom = 6; - vbox_main.add (label); - - hbox = new Gtk.Box(Gtk.Orientation.HORIZONTAL, 6); - vbox_main.add(hbox); - - // chk_update_grub_timeout - chk = new CheckButton.with_label(_("Set GRUB menu timeout")); - chk.active = LinuxKernel.update_grub_timeout; - chk.margin_left = 6; - chk.hexpand = true; - hbox.add(chk); - chk_update_grub_timeout = chk; - - chk.set_tooltip_text(_("Updates the GRUB menu after installing or removing kernels, so that the menu is displayed for 2 seconds at boot time. This will help you recover from a bad kernel update by selecting another kernel to boot. During boot, use the 'Advanced options for Ubuntu' menu entry to select another kernel.\n\n0 = Do not show menu\n-1 = Show indefinitely till user selects")); - - chk.toggled.connect(()=>{ - LinuxKernel.update_grub_timeout = chk_update_grub_timeout.active; - }); - - adjustment = new Gtk.Adjustment(LinuxKernel.grub_timeout, 1, 9999, 1, 1, 0); - spin = new Gtk.SpinButton (adjustment, 1, 0); - spin.xalign = (float) 0.5; - spin.margin_right = 6; - hbox.add(spin); - var spin_grub = spin; - - spin.set_tooltip_text(_("Time (in seconds) to display the GRUB menu\n\n0 = Do not show menu\n-1 = Show indefinitely till user selects")); - - spin.changed.connect(()=>{ - LinuxKernel.grub_timeout = (int) spin_grub.get_value(); - }); - - chk_update_grub_timeout.toggled.connect(()=>{ - spin_grub.sensitive = chk_update_grub_timeout.active; - }); - - chk_update_grub_timeout.toggled(); // other label = new Label("" + _("Other") + ""); diff --git a/src/Gtk/TerminalWindow.vala b/src/Gtk/TerminalWindow.vala index 22ae3515..def57b7f 100644 --- a/src/Gtk/TerminalWindow.vala +++ b/src/Gtk/TerminalWindow.vala @@ -236,7 +236,13 @@ public class TerminalWindow : Gtk.Window { btn_cancel.sensitive = false; process_quit(child_pid); } - + +/* when building in xenial environment: +Gtk/TerminalWindow.vala:242.19-242.29: error: Argument 1: Cannot convert from `char[]' to `string' + term.feed_child(c.to_utf8()); + ^^^^^^^^^^^ +*/ + public void execute_command(string command){ string c = command.concat("\n"); term.feed_child(c.to_utf8()); diff --git a/src/makefile b/src/makefile index a639b5cb..6c99db01 100644 --- a/src/makefile +++ b/src/makefile @@ -11,48 +11,42 @@ mandir=$(sharedir)/man man1dir=$(mandir)/man1 translations = es fr hr nl pl ru sv tr -branding_shortname = ukuu -branding_longname = Ubuntu Kernel Update Utility -branding_version = 18.9 -branding_authorname = Brian K. White -branding_authoremail = bw.aljex@gmail.com -branding_website = https://github.com/aljex/ukuu +include ../BRANDING.mak vte_symbol = -D VTE_291 vte_version = vte-2.91 ################################################################################ -branding_defines = -X -D'BRANDING_SHORTNAME="${branding_shortname}"' -X -D'BRANDING_LONGNAME="${branding_longname}"' -X -D'BRANDING_VERSION="${branding_version}"' -X -D'BRANDING_AUTHORNAME="${branding_authorname}"' -X -D'BRANDING_AUTHOREMAIL="${branding_authoremail}"' -X -D'BRANDING_WEBSITE="${branding_website}"' -X -D'GETTEXT_PACKAGE="${branding_shortname}"' +branding_symbols = -X -D'BRANDING_SHORTNAME="${BRANDING_SHORTNAME}"' -X -D'BRANDING_LONGNAME="${BRANDING_LONGNAME}"' -X -D'BRANDING_VERSION="${BRANDING_VERSION}"' -X -D'BRANDING_AUTHORNAME="${BRANDING_AUTHORNAME}"' -X -D'BRANDING_AUTHOREMAIL="${BRANDING_AUTHOREMAIL}"' -X -D'BRANDING_WEBSITE="${BRANDING_WEBSITE}"' -X -D'GETTEXT_PACKAGE="${BRANDING_SHORTNAME}"' all: app app-gtk translations app-gtk: - valac ${branding_defines} ${vte_symbol} --Xcc="-lm" \ + valac ${branding_symbols} ${vte_symbol} --Xcc="-lm" \ --pkg glib-2.0 --pkg gio-unix-2.0 --pkg posix --pkg gtk+-3.0 --pkg gee-0.8 --pkg json-glib-1.0 --pkg ${vte_version} \ - Common/*.vala Gtk/*.vala Utility/*.vala Utility/Gtk/*.vala -o ${branding_shortname}-gtk + Common/*.vala Gtk/*.vala Utility/*.vala Utility/Gtk/*.vala -o ${BRANDING_SHORTNAME}-gtk app: - valac ${branding_defines} --Xcc="-lm" \ + valac ${branding_symbols} --Xcc="-lm" \ --pkg glib-2.0 --pkg gio-unix-2.0 --pkg posix --pkg gee-0.8 --pkg libsoup-2.4 --pkg json-glib-1.0 \ - Common/*.vala Console/*.vala Utility/*.vala -o ${branding_shortname} + Common/*.vala Console/*.vala Utility/*.vala -o ${BRANDING_SHORTNAME} translations: find . -iname "*.vala" | xargs xgettext --from-code=UTF-8 --language=C --keyword=_ \ - --copyright-holder="${branding_authorname} (${branding_authoremail})" \ - --package-name="${branding_shortname}" \ - --package-version="${branding_version}" \ - --msgid-bugs-address="${branding_authoremail}" \ - --escape --sort-output -o ../${branding_shortname}.pot + --copyright-holder="${BRANDING_AUTHORNAME} (${BRANDING_AUTHOREMAIL})" \ + --package-name="${BRANDING_SHORTNAME}" \ + --package-version="${BRANDING_VERSION}" \ + --msgid-bugs-address="${BRANDING_AUTHOREMAIL}" \ + --escape --sort-output -o ../${BRANDING_SHORTNAME}.pot for lang in ${translations} ; do \ - msgmerge --update -v ../po/${branding_shortname}-$$lang.po ../${branding_shortname}.pot ; \ + msgmerge --update -v ../po/${BRANDING_SHORTNAME}-$$lang.po ../${BRANDING_SHORTNAME}.pot ; \ done clean: - rm -rfv ../release/{source,i386,amd64,armel,armhf} - rm -rfv ../release/*.{run,deb} + rm -rfv ../release/* rm -rfv *.c *.o *.mo - rm -fv ${branding_shortname} ${branding_shortname}-gtk + rm -fv ${BRANDING_SHORTNAME} ${BRANDING_SHORTNAME}-gtk install: mkdir -p "$(DESTDIR)$(bindir)" @@ -62,54 +56,54 @@ install: mkdir -p "$(DESTDIR)$(launcherdir)" mkdir -p "$(DESTDIR)$(polkitdir)" mkdir -p "$(DESTDIR)$(sharedir)/glib-2.0/schemas/" - mkdir -p "$(DESTDIR)$(sharedir)/${branding_shortname}" + mkdir -p "$(DESTDIR)$(sharedir)/${BRANDING_SHORTNAME}" mkdir -p "$(DESTDIR)$(sharedir)/pixmaps" # binary - install -m 0755 ${branding_shortname} "$(DESTDIR)$(bindir)" - install -m 0755 ${branding_shortname}-gtk "$(DESTDIR)$(bindir)" - install -m 0755 ${branding_shortname}-uninstall "$(DESTDIR)$(bindir)" + install -m 0755 ${BRANDING_SHORTNAME} "$(DESTDIR)$(bindir)" + install -m 0755 ${BRANDING_SHORTNAME}-gtk "$(DESTDIR)$(bindir)" + install -m 0755 ${BRANDING_SHORTNAME}-uninstall "$(DESTDIR)$(bindir)" # shared files - cp -dpr --no-preserve=ownership -t "$(DESTDIR)$(sharedir)/${branding_shortname}" ./share/${branding_shortname}/* - chmod --recursive 0755 $(DESTDIR)$(sharedir)/${branding_shortname}/* + cp -dpr --no-preserve=ownership -t "$(DESTDIR)$(sharedir)/${BRANDING_SHORTNAME}" ./share/${BRANDING_SHORTNAME}/* + chmod --recursive 0755 $(DESTDIR)$(sharedir)/${BRANDING_SHORTNAME}/* # polkit policy file - #install -m 0644 ./share/polkit-1/actions/in.teejeetech.pkexec.ukuu.policy "$(DESTDIR)$(polkitdir)" + #install -m 0644 ./share/polkit-1/actions/${BRANDING_SHORTNAME}.policy "$(DESTDIR)$(polkitdir)" # launcher - install -m 0755 ${branding_shortname}.desktop "$(DESTDIR)$(launcherdir)" + install -m 0755 ${BRANDING_SHORTNAME}.desktop "$(DESTDIR)$(launcherdir)" # app icon - install -m 0755 ./share/pixmaps/${branding_shortname}.* "$(DESTDIR)$(sharedir)/pixmaps" + install -m 0755 ./share/pixmaps/${BRANDING_SHORTNAME}.* "$(DESTDIR)$(sharedir)/pixmaps" # translations for lang in ${translations}; do \ mkdir -p "$(DESTDIR)$(localedir)/$$lang/LC_MESSAGES"; \ - msgfmt --check --verbose -o "$(DESTDIR)$(localedir)/$$lang/LC_MESSAGES/${branding_shortname}.mo" ../po/${branding_shortname}-$$lang.po ; \ + msgfmt --check --verbose -o "$(DESTDIR)$(localedir)/$$lang/LC_MESSAGES/${BRANDING_SHORTNAME}.mo" ../po/${BRANDING_SHORTNAME}-$$lang.po ; \ done uninstall: # binary - rm -f "$(DESTDIR)$(bindir)/${branding_shortname}" - rm -f "$(DESTDIR)$(bindir)/${branding_shortname}-uninstall" + rm -f "$(DESTDIR)$(bindir)/${BRANDING_SHORTNAME}" + rm -f "$(DESTDIR)$(bindir)/${BRANDING_SHORTNAME}-uninstall" # shared files - rm -rf "$(DESTDIR)$(sharedir)/${branding_shortname}" + rm -rf "$(DESTDIR)$(sharedir)/${BRANDING_SHORTNAME}" # polkit policy file - #rm -f "$(DESTDIR)$(polkitdir)/in.teejeetech.pkexec.ukuu.policy" + #rm -f "$(DESTDIR)$(polkitdir)/${BRANDING_SHORTNAME}.policy" # launcher - rm -f "$(DESTDIR)$(launcherdir)/${branding_shortname}.desktop" + rm -f "$(DESTDIR)$(launcherdir)/${BRANDING_SHORTNAME}.desktop" # app icon - rm -f "$(DESTDIR)$(sharedir)/pixmaps/${branding_shortname}.png" + rm -f "$(DESTDIR)$(sharedir)/pixmaps/${BRANDING_SHORTNAME}.png" # translations - rm -f $(DESTDIR)$(localedir)/*/LC_MESSAGES/${branding_shortname}.mo + rm -f $(DESTDIR)$(localedir)/*/LC_MESSAGES/${BRANDING_SHORTNAME}.mo # startup scripts - rm -f $(DESTDIR)/home/*/.config/${branding_shortname}-notify.sh - rm -f $(DESTDIR)/home/*/.config/autostart/${branding_shortname}.desktop + rm -f $(DESTDIR)/home/*/.config/${BRANDING_SHORTNAME}/${BRANDING_SHORTNAME}-notify.sh + rm -f $(DESTDIR)/home/*/.config/autostart/${BRANDING_SHORTNAME}.desktop diff --git a/src/share/polkit-1/actions/in.teejeetech.pkexec.ukuu.policy b/src/share/polkit-1/actions/ukuu.policy similarity index 84% rename from src/share/polkit-1/actions/in.teejeetech.pkexec.ukuu.policy rename to src/share/polkit-1/actions/ukuu.policy index 7fefd53a..8202d74f 100644 --- a/src/share/polkit-1/actions/in.teejeetech.pkexec.ukuu.policy +++ b/src/share/polkit-1/actions/ukuu.policy @@ -3,9 +3,7 @@ "-//freedesktop//DTD PolicyKit Policy Configuration 1.0//EN" "http://www.freedesktop.org/standards/PolicyKit/1/policyconfig.dtd"> - Brian K. White - https://github.com/aljex - + Authentication is required to manage kernel packages ukuu @@ -16,5 +14,4 @@ /usr/bin/ukuu true - diff --git a/ukuu.geany b/ukuu.geany index 5986f6e9..3bb8b264 100644 --- a/ukuu.geany +++ b/ukuu.geany @@ -17,14 +17,14 @@ long_line_behaviour=1 long_line_column=80 [files] -current_page=6 -FILE_NAME_0=434;Make;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2Fmakefile;0;4 -FILE_NAME_1=239;None;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fdebian%2Fchangelog;0;4 -FILE_NAME_2=8696;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FCommon%2FMain.vala;0;4 +current_page=2 +FILE_NAME_0=33;Make;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2Fmakefile;0;4 +FILE_NAME_1=445;None;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fdebian%2Fchangelog;0;4 +FILE_NAME_2=6971;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FCommon%2FMain.vala;0;4 FILE_NAME_3=5011;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FCommon%2FDownloadManager.vala;0;4 FILE_NAME_4=1207;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FCommon%2FLinuxKernel.vala;0;4 FILE_NAME_5=4098;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FCommon%2FPackage.vala;0;4 -FILE_NAME_6=1400;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FConsole%2FAppConsole.vala;0;4 +FILE_NAME_6=2648;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FConsole%2FAppConsole.vala;0;4 FILE_NAME_7=1465;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FGtk%2FAppGtk.vala;0;4 FILE_NAME_8=13902;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FGtk%2FMainWindow.vala;0;4 FILE_NAME_9=29;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FGtk%2FProgressWindow.vala;0;4 @@ -34,7 +34,7 @@ FILE_NAME_12=1978;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FGtk%2FU FILE_NAME_13=23;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FUtility%2FAppLock.vala;0;4 FILE_NAME_14=24;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FUtility%2FAsyncTask.vala;0;4 FILE_NAME_15=25;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FUtility%2FOSDNotify.vala;0;4 -FILE_NAME_16=18058;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FUtility%2FTeeJee.FileSystem.vala;0;4 +FILE_NAME_16=4464;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FUtility%2FTeeJee.FileSystem.vala;0;4 FILE_NAME_17=33;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FUtility%2FTeeJee.Json.vala;0;4 FILE_NAME_18=30;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FUtility%2FTeeJee.Logging.vala;0;4 FILE_NAME_19=8075;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FUtility%2FTeeJee.Misc.vala;0;4 @@ -44,30 +44,32 @@ FILE_NAME_22=23;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FUtility%2 FILE_NAME_23=8259;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FUtility%2FGtk%2FAboutWindow.vala;0;4 FILE_NAME_24=34;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FUtility%2FGtk%2FCustomMessageDialog.vala;0;4 FILE_NAME_25=6668;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FUtility%2FGtk%2FGtkHelper.vala;0;4 -FILE_NAME_26=250;XML;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2Fshare%2Fpolkit-1%2Factions%2Fin.teejeetech.pkexec.ukuu.policy;0;4 -FILE_NAME_27=0;Conf;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2Fukuu.desktop;0;4 -FILE_NAME_28=136;Markdown;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2FREADME.md;0;4 +FILE_NAME_26=230;XML;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2Fshare%2Fpolkit-1%2Factions%2Fukuu.policy;0;4 +FILE_NAME_27=187;Conf;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2Fukuu.desktop;0;4 +FILE_NAME_28=160;Markdown;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2FREADME.md;0;4 FILE_NAME_29=0;Markdown;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2F.github%2FISSUE_TEMPLATE%2Fbug_report.md;0;4 FILE_NAME_30=560;Markdown;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2F.github%2FISSUE_TEMPLATE%2Ffeature_request.md;0;4 FILE_NAME_31=55;None;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2FAUTHORS;0;4 FILE_NAME_32=240;Conf;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fdebian%2Fcontrol;0;4 FILE_NAME_33=94;None;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fdebian%2Fcopyright;0;4 -FILE_NAME_34=13557;Po;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fukuu.pot;0;4 -FILE_NAME_35=133;None;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2FBUILD_CONFIG;0;4 -FILE_NAME_36=72;Markdown;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fchangelogs%2Fv17.12.1.md;0;4 -FILE_NAME_37=403;Markdown;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fchangelogs%2Fv17.12.md;0;4 -FILE_NAME_38=66;Markdown;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fchangelogs%2Fv18.1.md;0;4 -FILE_NAME_39=7677;C++;0;EUTF-8;1;1;1;%2Fusr%2Finclude%2Fglib-2.0%2Fgio%2Fgdatainputstream.h;0;4 -FILE_NAME_40=929;C++;0;EUTF-8;1;1;1;%2Fusr%2Finclude%2Fglib-2.0%2Fglib%2Fgi18n-lib.h;0;4 -FILE_NAME_41=20303;Po;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fpo%2Fukuu-es.po;0;4 -FILE_NAME_42=20216;Po;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fpo%2Fukuu-fr.po;0;4 -FILE_NAME_43=18310;Po;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fpo%2Fukuu-hr.po;0;4 -FILE_NAME_44=107;Perl;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2F.git%2Fhooks%2Ffsmonitor-watchman.sample;0;4 -FILE_NAME_45=110;Conf;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2F.git%2Fconfig;0;4 -FILE_NAME_46=35096;None;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2FCOPYING;0;4 -FILE_NAME_47=102;Markdown;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2FLICENSE.md;0;4 -FILE_NAME_48=113;XML;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2Fshare%2Fpixmaps%2Fukuu.svg;0;4 -FILE_NAME_49=55;XML;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2Fshare%2Fukuu%2Fimages%2Fgeneral.svg;0;4 +FILE_NAME_34=11981;Po;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fukuu.pot;0;4 +FILE_NAME_35=72;Markdown;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fchangelogs%2Fv17.12.1.md;0;4 +FILE_NAME_36=403;Markdown;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fchangelogs%2Fv17.12.md;0;4 +FILE_NAME_37=66;Markdown;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fchangelogs%2Fv18.1.md;0;4 +FILE_NAME_38=7677;C++;0;EUTF-8;1;1;1;%2Fusr%2Finclude%2Fglib-2.0%2Fgio%2Fgdatainputstream.h;0;4 +FILE_NAME_39=929;C++;0;EUTF-8;1;1;1;%2Fusr%2Finclude%2Fglib-2.0%2Fglib%2Fgi18n-lib.h;0;4 +FILE_NAME_40=20303;Po;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fpo%2Fukuu-es.po;0;4 +FILE_NAME_41=20216;Po;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fpo%2Fukuu-fr.po;0;4 +FILE_NAME_42=18310;Po;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fpo%2Fukuu-hr.po;0;4 +FILE_NAME_43=107;Perl;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2F.git%2Fhooks%2Ffsmonitor-watchman.sample;0;4 +FILE_NAME_44=110;Conf;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2F.git%2Fconfig;0;4 +FILE_NAME_45=35096;None;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2FCOPYING;0;4 +FILE_NAME_46=102;Markdown;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2FLICENSE.md;0;4 +FILE_NAME_47=113;XML;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2Fshare%2Fpixmaps%2Fukuu.svg;0;4 +FILE_NAME_48=55;XML;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2Fshare%2Fukuu%2Fimages%2Fgeneral.svg;0;4 +FILE_NAME_49=0;Sh;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fbuild.sh;0;4 +FILE_NAME_50=1496;Sh;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fbuild-deb.sh;0;4 +FILE_NAME_51=1211;Sh;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fbuild-source.sh;0;4 [VTE] last_dir=/home/bkw diff --git a/ukuu.pot b/ukuu.pot index c7eef513..d7a2568b 100644 --- a/ukuu.pot +++ b/ukuu.pot @@ -8,20 +8,20 @@ msgid "" msgstr "" "Project-Id-Version: ukuu 18.9\n" "Report-Msgid-Bugs-To: bw.aljex@gmail.com\n" -"POT-Creation-Date: 2019-03-11 00:24-0400\n" +"POT-Creation-Date: 2019-03-12 07:15-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" "Language: \n" "MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" +"Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" #: Gtk/MainWindow.vala:496 msgid "About" msgstr "" -#: Console/AppConsole.vala:119 +#: Console/AppConsole.vala:117 msgid "Admin access is required for running this application." msgstr "" @@ -29,7 +29,7 @@ msgstr "" msgid "Another instance of this application is running" msgstr "" -#: Common/LinuxKernel.vala:108 +#: Common/LinuxKernel.vala:105 msgid "Architecture" msgstr "" @@ -38,7 +38,7 @@ msgstr "" msgid "Artists" msgstr "" -#: Console/AppConsole.vala:106 +#: Console/AppConsole.vala:104 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "" @@ -47,7 +47,7 @@ msgstr "" msgid "Authors" msgstr "" -#: Common/LinuxKernel.vala:1184 +#: Common/LinuxKernel.vala:1181 msgid "Available Kernels" msgstr "" @@ -55,11 +55,7 @@ msgstr "" msgid "Back" msgstr "" -#: Gtk/MainWindow.vala:822 -msgid "Booting previous kernels" -msgstr "" - -#: Console/AppConsole.vala:209 Gtk/AppGtk.vala:110 +#: Console/AppConsole.vala:207 Gtk/AppGtk.vala:110 msgid "Cache" msgstr "" @@ -73,15 +69,15 @@ msgstr "" msgid "Changes" msgstr "" -#: Gtk/SettingsDialog.vala:122 +#: Gtk/SettingsDialog.vala:121 msgid "Check every" msgstr "" -#: Console/AppConsole.vala:90 +#: Console/AppConsole.vala:88 msgid "Check for kernel updates" msgstr "" -#: Console/AppConsole.vala:91 +#: Console/AppConsole.vala:89 msgid "Check for kernel updates and notify current user" msgstr "" @@ -89,11 +85,11 @@ msgstr "" msgid "Close" msgstr "" -#: Console/AppConsole.vala:346 +#: Console/AppConsole.vala:344 msgid "Command not specified" msgstr "" -#: Console/AppConsole.vala:88 +#: Console/AppConsole.vala:86 msgid "Commands" msgstr "" @@ -101,7 +97,7 @@ msgstr "" msgid "Commands listed below are not available on this system" msgstr "" -#: Common/LinuxKernel.vala:740 +#: Common/LinuxKernel.vala:737 #, c-format msgid "Continue ?" msgstr "" @@ -111,15 +107,15 @@ msgstr "" msgid "Contributions" msgstr "" -#: Common/LinuxKernel.vala:724 +#: Common/LinuxKernel.vala:721 msgid "Could not find any kernels to remove" msgstr "" -#: Console/AppConsole.vala:314 Gtk/MainWindow.vala:100 +#: Console/AppConsole.vala:312 Gtk/MainWindow.vala:100 msgid "Could not find requested version" msgstr "" -#: Common/LinuxKernel.vala:718 +#: Common/LinuxKernel.vala:715 msgid "Could not find running kernel in list!" msgstr "" @@ -132,7 +128,7 @@ msgstr "" msgid "Credits" msgstr "" -#: Gtk/SettingsDialog.vala:155 +#: Gtk/SettingsDialog.vala:154 msgid "Day(s)" msgstr "" @@ -144,11 +140,11 @@ msgstr "" msgid "Dir not found" msgstr "" -#: Gtk/SettingsDialog.vala:162 +#: Gtk/SettingsDialog.vala:161 msgid "Display" msgstr "" -#: Common/LinuxKernel.vala:94 +#: Common/LinuxKernel.vala:91 msgid "Distribution" msgstr "" @@ -157,11 +153,11 @@ msgstr "" msgid "Documenters" msgstr "" -#: Console/AppConsole.vala:99 +#: Console/AppConsole.vala:97 msgid "Download packages for specified kernel" msgstr "" -#: Common/LinuxKernel.vala:1230 +#: Common/LinuxKernel.vala:1227 #, c-format msgid "Downloading" msgstr "" @@ -170,7 +166,7 @@ msgstr "" msgid "E" msgstr "" -#: Common/LinuxKernel.vala:1258 +#: Common/LinuxKernel.vala:1255 #, c-format msgid "ERROR" msgstr "" @@ -203,11 +199,11 @@ msgstr "" msgid "Failed to write file" msgstr "" -#: Common/LinuxKernel.vala:399 +#: Common/LinuxKernel.vala:396 msgid "Fetching index from kernel.ubuntu.com..." msgstr "" -#: Common/LinuxKernel.vala:356 +#: Common/LinuxKernel.vala:353 msgid "Fetching index..." msgstr "" @@ -240,24 +236,20 @@ msgstr "" msgid "File saved" msgstr "" -#: Common/LinuxKernel.vala:733 +#: Common/LinuxKernel.vala:730 #, c-format msgid "Following kernels will be removed" msgstr "" -#: Gtk/SettingsDialog.vala:192 -msgid "GRUB Options" -msgstr "" - -#: Gtk/SettingsDialog.vala:181 +#: Gtk/SettingsDialog.vala:180 msgid "Hide kernels older than 4.0" msgstr "" -#: Gtk/SettingsDialog.vala:170 +#: Gtk/SettingsDialog.vala:169 msgid "Hide unstable and RC releases" msgstr "" -#: Gtk/SettingsDialog.vala:153 +#: Gtk/SettingsDialog.vala:152 msgid "Hour(s)" msgstr "" @@ -265,11 +257,11 @@ msgstr "" msgid "Ignore this update" msgstr "" -#: Common/LinuxKernel.vala:262 +#: Common/LinuxKernel.vala:259 msgid "Index is fresh" msgstr "" -#: Common/LinuxKernel.vala:259 +#: Common/LinuxKernel.vala:256 msgid "Index is stale" msgstr "" @@ -277,20 +269,20 @@ msgstr "" msgid "Install" msgstr "" -#: Common/LinuxKernel.vala:797 +#: Common/LinuxKernel.vala:794 #, c-format msgid "Install Linux v%s ? (y/n): " msgstr "" -#: Console/AppConsole.vala:94 +#: Console/AppConsole.vala:92 msgid "Install latest mainline kernel" msgstr "" -#: Console/AppConsole.vala:95 +#: Console/AppConsole.vala:93 msgid "Install latest point update for current series" msgstr "" -#: Console/AppConsole.vala:96 +#: Console/AppConsole.vala:94 msgid "Install specified mainline kernel" msgstr "" @@ -298,19 +290,19 @@ msgstr "" msgid "Install this kernel" msgstr "" -#: Common/LinuxKernel.vala:1306 +#: Common/LinuxKernel.vala:1301 msgid "Installation completed with errors" msgstr "" -#: Common/LinuxKernel.vala:1303 +#: Common/LinuxKernel.vala:1298 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" -#: Common/LinuxKernel.vala:1201 Gtk/MainWindow.vala:208 +#: Common/LinuxKernel.vala:1198 Gtk/MainWindow.vala:208 msgid "Installed" msgstr "" -#: Gtk/SettingsDialog.vala:257 +#: Gtk/SettingsDialog.vala:212 msgid "Internect connection timeout in " msgstr "" @@ -327,17 +319,17 @@ msgstr "" msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "" -#: Common/LinuxKernel.vala:779 Console/AppConsole.vala:372 +#: Common/LinuxKernel.vala:776 Console/AppConsole.vala:370 #, c-format msgid "Latest point update" msgstr "" -#: Common/LinuxKernel.vala:768 Console/AppConsole.vala:365 +#: Common/LinuxKernel.vala:765 Console/AppConsole.vala:363 #, c-format msgid "Latest update" msgstr "" -#: Console/AppConsole.vala:92 +#: Console/AppConsole.vala:90 msgid "List all available mainline kernels" msgstr "" @@ -345,28 +337,10 @@ msgstr "" msgid "List available kernels" msgstr "" -#: Console/AppConsole.vala:93 +#: Console/AppConsole.vala:91 msgid "List installed kernels" msgstr "" -#: Gtk/MainWindow.vala:823 -msgid "" -"Mainline kernels can sometimes cause problems if there are proprietary " -"drivers installed on your system. These issues include:\n" -"\n" -"\342\226\260 WiFi not working\n" -"\342\226\260 Black screen on startup\n" -"\342\226\260 Random system freeze\n" -"\n" -"If you face any of these issues there is no need to panic.\n" -"\n" -"\342\226\260 Reboot your system\n" -"\342\226\260 Select 'Advanced Boot Options' from the GRUB boot menu\n" -"\342\226\260 Select an older kernel from the list displayed on this screen\n" -"\342\226\260 Your system will boot using the selected kernel\n" -"\342\226\260 You can now uninstall the kernel that is causing issues\n" -msgstr "" - #: Utility/Gtk/GtkHelper.vala:272 msgid "Missing Icon" msgstr "" @@ -375,7 +349,7 @@ msgstr "" msgid "Multiple Kernels Selected" msgstr "" -#: Console/AppConsole.vala:296 +#: Console/AppConsole.vala:294 msgid "Multiple kernels selected for installation. Select only one." msgstr "" @@ -387,12 +361,12 @@ msgstr "" msgid "No Internet" msgstr "" -#: Console/AppConsole.vala:290 Console/AppConsole.vala:327 +#: Console/AppConsole.vala:288 Console/AppConsole.vala:325 msgid "No kernels specified" msgstr "" -#: Common/LinuxKernel.vala:787 Console/AppConsole.vala:377 -#: Console/AppConsole.vala:457 Gtk/MainWindow.vala:817 +#: Common/LinuxKernel.vala:784 Console/AppConsole.vala:375 +#: Console/AppConsole.vala:433 Gtk/MainWindow.vala:793 msgid "No updates found" msgstr "" @@ -400,38 +374,38 @@ msgstr "" msgid "Not Selected" msgstr "" -#: Gtk/SettingsDialog.vala:67 +#: Gtk/SettingsDialog.vala:66 msgid "Notification" msgstr "" -#: Gtk/SettingsDialog.vala:74 +#: Gtk/SettingsDialog.vala:73 msgid "Notify if a major release is available" msgstr "" -#: Gtk/SettingsDialog.vala:85 +#: Gtk/SettingsDialog.vala:84 msgid "Notify if a point release is available" msgstr "" -#: Common/LinuxKernel.vala:1249 Utility/Gtk/CustomMessageDialog.vala:167 +#: Common/LinuxKernel.vala:1246 Utility/Gtk/CustomMessageDialog.vala:167 #: Utility/Gtk/CustomMessageDialog.vala:171 Utility/Gtk/GtkHelper.vala:121 #, c-format msgid "OK" msgstr "" -#: Console/AppConsole.vala:103 Gtk/AppGtk.vala:181 +#: Console/AppConsole.vala:101 Gtk/AppGtk.vala:181 msgid "Options" msgstr "" -#: Gtk/SettingsDialog.vala:236 +#: Gtk/SettingsDialog.vala:191 msgid "Other" msgstr "" -#: Common/LinuxKernel.vala:1063 +#: Common/LinuxKernel.vala:1060 #, c-format msgid "Packages Available (DEB)" msgstr "" -#: Common/LinuxKernel.vala:1071 +#: Common/LinuxKernel.vala:1068 #, c-format msgid "Packages Installed" msgstr "" @@ -440,7 +414,7 @@ msgstr "" msgid "Please install required packages and try again" msgstr "" -#: Common/LinuxKernel.vala:1327 +#: Common/LinuxKernel.vala:1322 msgid "Preparing to remove selected kernels" msgstr "" @@ -464,28 +438,28 @@ msgstr "" msgid "Remove" msgstr "" -#: Console/AppConsole.vala:100 Console/AppConsole.vala:105 +#: Console/AppConsole.vala:98 Console/AppConsole.vala:103 msgid "Remove files from application cache" msgstr "" -#: Console/AppConsole.vala:98 Gtk/MainWindow.vala:426 +#: Console/AppConsole.vala:96 Gtk/MainWindow.vala:426 msgid "Remove installed kernels older than running kernel" msgstr "" -#: Console/AppConsole.vala:97 +#: Console/AppConsole.vala:95 msgid "Remove specified kernel" msgstr "" -#: Console/AppConsole.vala:204 Console/AppConsole.vala:318 -#: Console/AppConsole.vala:347 +#: Console/AppConsole.vala:202 Console/AppConsole.vala:316 +#: Console/AppConsole.vala:345 msgid "Run '" msgstr "" -#: Console/AppConsole.vala:122 +#: Console/AppConsole.vala:120 msgid "Run the application as admin with pkexec or sudo." msgstr "" -#: Common/LinuxKernel.vala:1201 Gtk/MainWindow.vala:208 +#: Common/LinuxKernel.vala:1198 Gtk/MainWindow.vala:208 msgid "Running" msgstr "" @@ -501,17 +475,13 @@ msgstr "" msgid "Select the kernels to remove" msgstr "" -#: Common/LinuxKernel.vala:1322 +#: Common/LinuxKernel.vala:1317 msgid "" "Selected kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." msgstr "" -#: Gtk/SettingsDialog.vala:203 -msgid "Set GRUB menu timeout" -msgstr "" - -#: Gtk/MainWindow.vala:475 Gtk/SettingsDialog.vala:57 +#: Gtk/MainWindow.vala:475 Gtk/SettingsDialog.vala:56 msgid "Settings" msgstr "" @@ -523,19 +493,19 @@ msgstr "" msgid "Show all options" msgstr "" -#: Gtk/SettingsDialog.vala:96 +#: Gtk/SettingsDialog.vala:95 msgid "Show notification bubble on desktop" msgstr "" -#: Gtk/SettingsDialog.vala:107 +#: Gtk/SettingsDialog.vala:106 msgid "Show notification dialog" msgstr "" -#: Console/AppConsole.vala:101 +#: Console/AppConsole.vala:99 msgid "Show unstable and RC releases" msgstr "" -#: Gtk/SettingsDialog.vala:244 +#: Gtk/SettingsDialog.vala:199 msgid "Skip internet connection check" msgstr "" @@ -547,11 +517,11 @@ msgstr "" msgid "Stopped" msgstr "" -#: Console/AppConsole.vala:86 Gtk/AppGtk.vala:179 +#: Console/AppConsole.vala:84 Gtk/AppGtk.vala:179 msgid "Syntax" msgstr "" -#: Console/AppConsole.vala:210 Gtk/AppGtk.vala:111 +#: Console/AppConsole.vala:208 Gtk/AppGtk.vala:111 msgid "Temp" msgstr "" @@ -560,56 +530,33 @@ msgstr "" msgid "Third Party Tools" msgstr "" -#: Common/LinuxKernel.vala:1272 Gtk/MainWindow.vala:678 +#: Common/LinuxKernel.vala:1269 Gtk/MainWindow.vala:678 msgid "This kernel is already installed." msgstr "" -#: Common/LinuxKernel.vala:1380 +#: Common/LinuxKernel.vala:1373 msgid "" "This kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." msgstr "" -#: Gtk/SettingsDialog.vala:223 -msgid "" -"Time (in seconds) to display the GRUB menu\n" -"\n" -"0 = Do not show menu\n" -"-1 = Show indefinitely till user selects" -msgstr "" - #: Utility/Gtk/AboutWindow.vala:346 #, c-format msgid "Translators" msgstr "" -#: Common/LinuxKernel.vala:1364 Common/LinuxKernel.vala:1422 +#: Common/LinuxKernel.vala:1357 Common/LinuxKernel.vala:1413 msgid "Un-install completed" msgstr "" -#: Common/LinuxKernel.vala:1367 Common/LinuxKernel.vala:1425 +#: Common/LinuxKernel.vala:1360 Common/LinuxKernel.vala:1416 msgid "Un-install completed with errors" msgstr "" -#: Console/AppConsole.vala:202 Gtk/AppGtk.vala:166 +#: Console/AppConsole.vala:200 Gtk/AppGtk.vala:166 msgid "Unknown option" msgstr "" -#: Gtk/SettingsDialog.vala:210 -msgid "" -"Updates the GRUB menu after installing or removing kernels, so that the menu " -"is displayed for 2 seconds at boot time. This will help you recover from a " -"bad kernel update by selecting another kernel to boot. During boot, use the " -"'Advanced options for Ubuntu' menu entry to select another kernel.\n" -"\n" -"0 = Do not show menu\n" -"-1 = Show indefinitely till user selects" -msgstr "" - -#: Common/LinuxKernel.vala:1493 -msgid "Updating GRUB menu" -msgstr "" - #: Gtk/MainWindow.vala:179 msgid "Version" msgstr "" @@ -618,7 +565,7 @@ msgstr "" msgid "W" msgstr "" -#: Gtk/SettingsDialog.vala:157 +#: Gtk/SettingsDialog.vala:156 msgid "Week(s)" msgstr "" @@ -630,6 +577,6 @@ msgstr "" msgid "[Warning] Deleted invalid lock" msgstr "" -#: Gtk/SettingsDialog.vala:271 +#: Gtk/SettingsDialog.vala:226 msgid "seconds" msgstr "" From 102f995acf5f7e8d6a8ec7eb6c06c2922acf76fe Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Tue, 12 Mar 2019 14:49:50 -0400 Subject: [PATCH 010/567] regen .po files --- po/ukuu-es.po | 6 +++--- po/ukuu-fr.po | 6 +++--- po/ukuu-hr.po | 6 +++--- po/ukuu-nl.po | 6 +++--- po/ukuu-pl.po | 6 +++--- po/ukuu-ru.po | 6 +++--- po/ukuu-sv.po | 6 +++--- po/ukuu-tr.po | 26 +++++++++++++------------- ukuu.pot | 6 +++--- 9 files changed, 37 insertions(+), 37 deletions(-) diff --git a/po/ukuu-es.po b/po/ukuu-es.po index b08d9e69..8e44e8ca 100644 --- a/po/ukuu-es.po +++ b/po/ukuu-es.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu\n" "Report-Msgid-Bugs-To: bw.aljex@gmail.com\n" -"POT-Creation-Date: 2019-03-12 07:00-0400\n" +"POT-Creation-Date: 2019-03-12 14:47-0400\n" "PO-Revision-Date: 2018-01-03 02:03-0600\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish\n" @@ -96,7 +96,7 @@ msgstr "" msgid "Commands" msgstr "" -#: Common/Main.vala:106 +#: Common/Main.vala:105 msgid "Commands listed below are not available on this system" msgstr "" "Las órdenes enumeradas a continuación no están disponibles en este sistema" @@ -421,7 +421,7 @@ msgstr "Paquetes disponibles (DEB)" msgid "Packages Installed" msgstr "Paquetes instalados" -#: Common/Main.vala:107 +#: Common/Main.vala:106 msgid "Please install required packages and try again" msgstr "Instale los paquetes requeridos e inténtelo de nuevo" diff --git a/po/ukuu-fr.po b/po/ukuu-fr.po index 875ac140..b9162fce 100644 --- a/po/ukuu-fr.po +++ b/po/ukuu-fr.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu\n" "Report-Msgid-Bugs-To: bw.aljex@gmail.com\n" -"POT-Creation-Date: 2019-03-12 07:00-0400\n" +"POT-Creation-Date: 2019-03-12 14:47-0400\n" "PO-Revision-Date: 2018-08-05 15:50+0200\n" "Last-Translator: Yolateng0 \n" "Language-Team: French\n" @@ -96,7 +96,7 @@ msgstr "Impossible de trouver le fichier" msgid "Commands" msgstr "" -#: Common/Main.vala:106 +#: Common/Main.vala:105 msgid "Commands listed below are not available on this system" msgstr "Les commandes listées ne sont pas valables pour ce système" @@ -424,7 +424,7 @@ msgstr "Paquets disponibles (DEB)" msgid "Packages Installed" msgstr "Paquets installés" -#: Common/Main.vala:107 +#: Common/Main.vala:106 msgid "Please install required packages and try again" msgstr "Veuillez installer les paquets requis et réessayer" diff --git a/po/ukuu-hr.po b/po/ukuu-hr.po index aaf7cb2e..4a1fbf8d 100644 --- a/po/ukuu-hr.po +++ b/po/ukuu-hr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu\n" "Report-Msgid-Bugs-To: bw.aljex@gmail.com\n" -"POT-Creation-Date: 2019-03-12 07:00-0400\n" +"POT-Creation-Date: 2019-03-12 14:47-0400\n" "PO-Revision-Date: 2017-12-24 00:52+0100\n" "Last-Translator: gogo \n" "Language-Team: Croatian \n" @@ -96,7 +96,7 @@ msgstr "" msgid "Commands" msgstr "" -#: Common/Main.vala:106 +#: Common/Main.vala:105 msgid "Commands listed below are not available on this system" msgstr "Naredbe navedene ispod nisu dostupne na ovom sustavu" @@ -420,7 +420,7 @@ msgstr "Dostupni paketi (DEB)" msgid "Packages Installed" msgstr "Instalirani paketi" -#: Common/Main.vala:107 +#: Common/Main.vala:106 msgid "Please install required packages and try again" msgstr "Instalirajte potrebni paket i pokušajte ponovno" diff --git a/po/ukuu-nl.po b/po/ukuu-nl.po index fa48fb10..0a2a7255 100644 --- a/po/ukuu-nl.po +++ b/po/ukuu-nl.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu 2.2\n" "Report-Msgid-Bugs-To: bw.aljex@gmail.com\n" -"POT-Creation-Date: 2019-03-12 07:00-0400\n" +"POT-Creation-Date: 2019-03-12 14:47-0400\n" "PO-Revision-Date: 2017-04-30 11:50+0200\n" "Last-Translator: Heimen Stoffels \n" "Language-Team: \n" @@ -97,7 +97,7 @@ msgstr "" msgid "Commands" msgstr "" -#: Common/Main.vala:106 +#: Common/Main.vala:105 msgid "Commands listed below are not available on this system" msgstr "De onderstaande opdrachten zijn niet beschikbaar op dit systeem" @@ -424,7 +424,7 @@ msgstr "Beschikbare pakketten (DEB)" msgid "Packages Installed" msgstr "Geïnstalleerde pakketten" -#: Common/Main.vala:107 +#: Common/Main.vala:106 msgid "Please install required packages and try again" msgstr "Installeer de vereiste pakketten en probeer het opnieuw" diff --git a/po/ukuu-pl.po b/po/ukuu-pl.po index b85d1039..38886c43 100644 --- a/po/ukuu-pl.po +++ b/po/ukuu-pl.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu\n" "Report-Msgid-Bugs-To: bw.aljex@gmail.com\n" -"POT-Creation-Date: 2019-03-12 07:00-0400\n" +"POT-Creation-Date: 2019-03-12 14:47-0400\n" "PO-Revision-Date: 2017-08-12 15:26+0200\n" "Last-Translator: \n" "Language-Team: Polish\n" @@ -94,7 +94,7 @@ msgstr "" msgid "Commands" msgstr "" -#: Common/Main.vala:106 +#: Common/Main.vala:105 msgid "Commands listed below are not available on this system" msgstr "Poniższe polecenia nie są dostępne na tym systemie" @@ -419,7 +419,7 @@ msgstr "Dostępne pakiety (DEB)" msgid "Packages Installed" msgstr "Pakiety zainstalowane" -#: Common/Main.vala:107 +#: Common/Main.vala:106 msgid "Please install required packages and try again" msgstr "Zainstaluj wymagane pakiety i spróbuj ponownie" diff --git a/po/ukuu-ru.po b/po/ukuu-ru.po index 8d343b76..fb0c177b 100644 --- a/po/ukuu-ru.po +++ b/po/ukuu-ru.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu\n" "Report-Msgid-Bugs-To: bw.aljex@gmail.com\n" -"POT-Creation-Date: 2019-03-12 07:00-0400\n" +"POT-Creation-Date: 2019-03-12 14:47-0400\n" "PO-Revision-Date: 2016-12-13 16:46+0300\n" "Last-Translator: Faust3000 \n" "Language-Team: Russian \n" @@ -96,7 +96,7 @@ msgstr "" msgid "Commands" msgstr "" -#: Common/Main.vala:106 +#: Common/Main.vala:105 msgid "Commands listed below are not available on this system" msgstr "Команды перечисленные ниже недоступны на этой системе" @@ -426,7 +426,7 @@ msgstr "" msgid "Packages Installed" msgstr "Установлено" -#: Common/Main.vala:107 +#: Common/Main.vala:106 msgid "Please install required packages and try again" msgstr "Установить необходимые пакеты и попробуйте снова" diff --git a/po/ukuu-sv.po b/po/ukuu-sv.po index 6d2a5080..1cd098db 100644 --- a/po/ukuu-sv.po +++ b/po/ukuu-sv.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu 2.2\n" "Report-Msgid-Bugs-To: bw.aljex@gmail.com\n" -"POT-Creation-Date: 2019-03-12 07:00-0400\n" +"POT-Creation-Date: 2019-03-12 14:47-0400\n" "PO-Revision-Date: 2018-01-13 16:56+0100\n" "Last-Translator: Åke Engelbrektson \n" "Language-Team: Svenska Språkfiler \n" @@ -96,7 +96,7 @@ msgstr "" msgid "Commands" msgstr "" -#: Common/Main.vala:106 +#: Common/Main.vala:105 msgid "Commands listed below are not available on this system" msgstr "Kommandon listade nedan, finns inte tillgängliga i detta system." @@ -419,7 +419,7 @@ msgstr "Tillgängliga paket (DEB)" msgid "Packages Installed" msgstr "Installerade paket" -#: Common/Main.vala:107 +#: Common/Main.vala:106 msgid "Please install required packages and try again" msgstr "Installera nödvändiga paket och försök igen" diff --git a/po/ukuu-tr.po b/po/ukuu-tr.po index 17d3172a..3f35e4d3 100644 --- a/po/ukuu-tr.po +++ b/po/ukuu-tr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu\n" "Report-Msgid-Bugs-To: bw.aljex@gmail.com\n" -"POT-Creation-Date: 2019-03-10 23:56-0400\n" +"POT-Creation-Date: 2019-03-12 14:47-0400\n" "PO-Revision-Date: 2019-03-12 19:35+0300\n" "Last-Translator: Gökhan GÖKKAYA \n" "Language-Team: Turkish\n" @@ -30,7 +30,7 @@ msgstr "Bu uygulamayı çalıştırmak için yönetici izni gerekiyor." msgid "Another instance of this application is running" msgstr "Bu uygulamanın başka bir örneği çalışıyor" -#: Common/LinuxKernel.vala:108 +#: Common/LinuxKernel.vala:105 msgid "Architecture" msgstr "Sistem mimarisi" @@ -78,7 +78,7 @@ msgstr "Kontrol aralığı" msgid "Check for kernel updates" msgstr "Çekirdek güncellemelerini kontrol et" -#: Console/AppConsole.vala:91 +#: Console/AppConsole.vala:89 msgid "Check for kernel updates and notify current user" msgstr "Çekirdek güncellemelerini kontrol et ve mevcut kullanıcıyı uyar" @@ -94,7 +94,7 @@ msgstr "Komut belirtilmedi" msgid "Commands" msgstr "Komutlar" -#: Common/Main.vala:106 +#: Common/Main.vala:105 msgid "Commands listed below are not available on this system" msgstr "Aşağıda listelenen komutlar bu sistemde mevcut değil" @@ -108,7 +108,7 @@ msgstr "Devam et ?" msgid "Contributions" msgstr "Destek verenler" -#: Common/LinuxKernel.vala:724 +#: Common/LinuxKernel.vala:721 msgid "Could not find any kernels to remove" msgstr "Kaldırılacak çekirdek bulunamadı" @@ -116,7 +116,7 @@ msgstr "Kaldırılacak çekirdek bulunamadı" msgid "Could not find requested version" msgstr "İstenen sürüm bulunamadı" -#: Common/LinuxKernel.vala:718 +#: Common/LinuxKernel.vala:715 msgid "Could not find running kernel in list!" msgstr "İstenen sürüm bulunamadı!" @@ -275,7 +275,7 @@ msgstr "Kur" msgid "Install Linux v%s ? (y/n): " msgstr "Linux v%s Kur ? (e/h): " -#: Console/AppConsole.vala:94 +#: Console/AppConsole.vala:92 msgid "Install latest mainline kernel" msgstr "En son mainline çekirdeğini kur" @@ -304,7 +304,7 @@ msgstr "" msgid "Installed" msgstr "Kurulu" -#: Gtk/SettingsDialog.vala:257 +#: Gtk/SettingsDialog.vala:212 msgid "Internect connection timeout in " msgstr "İnternet bağlantısı aktif değil " @@ -339,7 +339,7 @@ msgstr "Tüm mainline çekirdeklerini listele" msgid "List available kernels" msgstr "Tüm çekirdekleri listele" -#: Console/AppConsole.vala:93 +#: Console/AppConsole.vala:91 msgid "List installed kernels" msgstr "Kurulu çekirdekleri listele" @@ -412,7 +412,7 @@ msgstr "Mevcut Paketler (DEB)" msgid "Packages Installed" msgstr "Paketler Kuruldu" -#: Common/Main.vala:107 +#: Common/Main.vala:106 msgid "Please install required packages and try again" msgstr "Lütfen gerekli paketleri yükleyin ve tekrar deneyin" @@ -448,7 +448,7 @@ msgstr "Dosyaları uygulama önbelleğinden sil" msgid "Remove installed kernels older than running kernel" msgstr "Çalışan çekirdekten eski olan kurulu çekirdekleri kaldır" -#: Console/AppConsole.vala:97 +#: Console/AppConsole.vala:95 msgid "Remove specified kernel" msgstr "Belirtilen çekirdeği kaldır" @@ -505,11 +505,11 @@ msgstr "Masaüstünde bildirim baloncuğu göster" msgid "Show notification dialog" msgstr "Bildirim iletişimini göster" -#: Console/AppConsole.vala:101 +#: Console/AppConsole.vala:99 msgid "Show unstable and RC releases" msgstr "Kararsız ve RC sürümleri göster" -#: Gtk/SettingsDialog.vala:244 +#: Gtk/SettingsDialog.vala:199 msgid "Skip internet connection check" msgstr "İnternet bağlantı kontrolünü atla" diff --git a/ukuu.pot b/ukuu.pot index d7a2568b..5f6c8d87 100644 --- a/ukuu.pot +++ b/ukuu.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu 18.9\n" "Report-Msgid-Bugs-To: bw.aljex@gmail.com\n" -"POT-Creation-Date: 2019-03-12 07:15-0400\n" +"POT-Creation-Date: 2019-03-12 14:47-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -93,7 +93,7 @@ msgstr "" msgid "Commands" msgstr "" -#: Common/Main.vala:106 +#: Common/Main.vala:105 msgid "Commands listed below are not available on this system" msgstr "" @@ -410,7 +410,7 @@ msgstr "" msgid "Packages Installed" msgstr "" -#: Common/Main.vala:107 +#: Common/Main.vala:106 msgid "Please install required packages and try again" msgstr "" From f7af41d014d95ff2a004dccc907892c7e68bb127 Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Wed, 13 Mar 2019 08:09:18 -0400 Subject: [PATCH 011/567] Remove more cruft. Remove unused rsync code and rsync dependency. Remove build-*.sh scripts. Add make deb. More un-hardcoding. desktop & debian control files generated from templates now. Updated Spanish translation. --- MKDEB_TARGETS | 18 -- Makefile | 30 +++ README.md | 10 +- build-deb.sh | 77 ------- build-source.sh | 50 ----- build.sh | 2 +- debian/changelog | 16 +- debian/compat | 2 +- debian/control | 4 +- debian/control.src | 17 ++ debian/copyright | 4 +- debian/copyright.src | 23 +++ debian/ukuu.debhelper.log | 6 - makefile | 20 -- po/ukuu-es.po | 189 ++---------------- po/ukuu-fr.po | 16 +- po/ukuu-hr.po | 16 +- po/ukuu-nl.po | 16 +- po/ukuu-pl.po | 16 +- po/ukuu-ru.po | 28 +-- po/ukuu-sv.po | 26 +-- po/ukuu-tr.po | 16 +- src/Common/LinuxKernel.vala | 6 +- src/Common/Main.vala | 4 +- src/Gtk/MainWindow.vala | 2 +- src/Gtk/TerminalWindow.vala | 5 +- src/{makefile => Makefile} | 24 ++- src/Utility/AppLock.vala | 4 +- src/Utility/AsyncTask.vala | 116 ----------- src/Utility/TeeJee.FileSystem.vala | 12 -- src/miscs.mak | 2 + .../actions/{ukuu.policy => ukuu.policy.src} | 6 +- src/ukuu-uninstall | 125 ------------ src/ukuu.desktop | 8 +- src/ukuu.desktop.src | 11 + ukuu.geany | 76 +++---- ukuu.pot | 14 +- 37 files changed, 273 insertions(+), 744 deletions(-) delete mode 100644 MKDEB_TARGETS create mode 100644 Makefile delete mode 100755 build-deb.sh delete mode 100755 build-source.sh create mode 100644 debian/control.src create mode 100644 debian/copyright.src delete mode 100644 debian/ukuu.debhelper.log delete mode 100644 makefile rename src/{makefile => Makefile} (78%) create mode 100644 src/miscs.mak rename src/share/polkit-1/actions/{ukuu.policy => ukuu.policy.src} (85%) delete mode 100755 src/ukuu-uninstall create mode 100644 src/ukuu.desktop.src diff --git a/MKDEB_TARGETS b/MKDEB_TARGETS deleted file mode 100644 index 82ca6a3c..00000000 --- a/MKDEB_TARGETS +++ /dev/null @@ -1,18 +0,0 @@ -# This file is sourced by build-deb.sh , use bash syntax. - -# DEBS[] -# Optional: Specify the distributions & architectures to generate *.deb -# files for. Defaut = single target same as host, IE: MKDEBS[disco]=amd64 -# Format is a bash associative array with [dist]=arch,arch,arch,... - -# Don't try to build for xenial: -# Gtk/TerminalWindow.vala:242.19-242.29: error: Argument 1: Cannot convert from `char[]' to `string' -# term.feed_child(c.to_utf8()); -# ^^^^^^^^^^^ - -# just let it do the default -#declare -A DEBS=( -# [xenial]=i386,amd64 -# [cosmic]=i386,amd64 -# [disco]=i386,amd64 -#) diff --git a/Makefile b/Makefile new file mode 100644 index 00000000..9cf213e0 --- /dev/null +++ b/Makefile @@ -0,0 +1,30 @@ +# Makefile for github.com/aljex fork of ukuu + +include BRANDING.mak +include src/miscs.mak + +'': all +.PHONY: all deb-src deb + +# FIXME these globbing patters are unsafe +# FIXME allowing dpkg-source to generate files in the parent outside the source tree is unsafe +# FIXME dpkg-source is supposed to be running "make clean" itself but isn't +# FIXME locations & paths are convoluted for miscs.mak and the files listed in it, +# it's a work-around for the way the context switches between here & src/makefile +deb-src: clean ${miscs} + dpkg-source --build . + mkdir -p release/deb-src + mv -f ../${BRANDING_SHORTNAME}*.dsc release/deb-src/ + mv -f ../${BRANDING_SHORTNAME}*.tar.* release/deb-src/ + ls -l release/deb-src + +deb: deb-src + mkdir -p release/deb + pbuilder-dist `lsb_release -sc` build release/deb-src/${BRANDING_SHORTNAME}*.dsc --buildresult release/deb + ls -l release/deb + +debian/%: debian/%.src BRANDING.mak + $(MAKE) -C src ../${@} + +.DEFAULT: + $(MAKE) -C src ${@} diff --git a/README.md b/README.md index d929110c..f72e0723 100644 --- a/README.md +++ b/README.md @@ -34,15 +34,17 @@ The original author stopped maintaining the original GPL version of ukuu and swi * Removed all donate buttons, links, dialogs ### Development Plans / TODO -* Stop consuming over 5GB in ```~/.cache/ukuu``` with kernel package files -:Until then: As a work-around, "ukuu --clean-cache" deletes the cache +* Stop consuming over 5GB in ```~/.cache/ukuu``` with kernel package files +Until then: As a work-around, "ukuu --clean-cache" deletes the cache * Better (more automatic) initial sizes for the window and the columns in the kernel list display so you don't have to manually expand them * More efficient download & caching of info about available kernels, without the kernel packages * Clean up build warnings * Clean up run-time GTK warnings * Make http client configurable (curl/wget/other) * Reduce dependencies, stop using aptitude just to query installed packages when you can get the info from apt or even dpkg, use the same download client for everything instead of using both curl and aria -* Customizable appearance +* Customizable appearance, at least colors * Option to specify kernel variant (generic, lowlatency, snapdragon, etc...) * Configurable version threshhold instead of arbitrary hard-coded "hide older than 4.0" -* Improve the annoying pkexec behavior. It would be nicer to run lxqt-sudo or gsudo or pkexec etc one time for the whole session, and only have to enter a password once, instead of once per user action. But currently, if you do that, it creates files in the users home directory that are owned by root, which the user cannot then remove. +* Improve the annoying pkexec behavior. +It would be nicer to run lxqt-sudo or gksudo or pkexec etc one time for the whole session, and only have to enter a password once, instead of once per user action. +But currently, if you do that, it creates files in the users home directory that are owned by root, so don't do that. diff --git a/build-deb.sh b/build-deb.sh deleted file mode 100755 index db39dc50..00000000 --- a/build-deb.sh +++ /dev/null @@ -1,77 +0,0 @@ -#!/bin/bash -# Generates .deb packages -# 2019 Brian K. White -# Requires (one time): -# sudo apt install ubuntu-dev-tools # install pbuilder-dist -# pbuilder-dist cosmic i386 create # create a build environment, repeat for all dists & arches -# Requires (periodically): -# pbuilder-disp cosmic amd64 update # update a build environment, repeat for all dists & arches - -################################################################################ -# functions - -abrt () { echo -e "${SELF}: ${@:-Failed}" >&2 ; exit 1 ; } - -_mkdeb () { - echo "" - echo "==========================================================================" - echo " ${SELF}: dist=\"${dist}\" arch=\"${arch}\"" - echo "==========================================================================" - echo "" - - [[ "${dist}" ]] || abrt "_mkdeb(): Missing \"dist\"" - [[ "${arch}" ]] || abrt "_mkdeb(): Missing \"arch\"" - - # check if base.tgz exists - unset a - [[ "${arch}" == "${host_arch}" ]] || a="-${arch}" - b=~/pbuilder/${dist}${a}-base.tgz - [[ -f ${b} ]] || abrt "Missing ${b}\nRun \"pbuilder-dist ${dist} ${arch} create\"" - # TODO - check if base.tgz is old, and automatically run "pbuilder-dist ... update" - - mkdir -pv release/${dist}/${arch} - - CMD="pbuilder-dist ${dist} ${arch} build release/source/${BRANDING[SHORTNAME]}*.dsc --buildresult release/${dist}/${arch}" - ${CMD} || abrt "Failed: \"${CMD}\"" - - mv release/${dist}/${arch}/${BRANDING[SHORTNAME]}*.deb release/${dist}/${BRANDING[SHORTNAME]}-v${PKG_VERSION}-${arch}.deb || abrt - -} - -################################################################################ -# main - -SELF=${0##*/} -cd ${0%/*} || abrt "Failed cd to \"${0%/*}\"" - -# get pkg name from BRANDING.mak -unset BRANDING ;declare -A BRANDING -[[ -s BRANDING.mak ]] && while read k x v ;do - [[ "${k}" =~ ^BRANDING_ ]] && BRANDING[${k#*_}]="${v}" -done < BRANDING.mak -[[ ${BRANDING[SHORTNAME]} ]] || abrt "Missing BRANDING_SHORTNAME (check BRANDING.mak)" - -# get pkg version from debian/changelog (not branding.mak) -PKG_VERSION=`dpkg-parsechangelog --show-field Version` - -# get deb build targets -host_dist=`lsb_release -sc` -host_arch=`dpkg --print-architecture` -unset DEBS -[[ -s MKDEB_TARGETS ]] && . ./MKDEB_TARGETS # no err if not present -[[ "${#DEBS[@]}" -lt 1 ]] && declare -A DEBS[${host_dist}]=${host_arch} # default - -export host_dist host_arch BRANDING PKG_VERSION - -# generate the source dsc and tar files -./build-source.sh || abrt "Failed: build-source.sh" - -# generate debs -for dist in ${!DEBS[@]} ;do - for arch in ${DEBS[${dist}]//,/ } ;do _mkdeb ;done -done - -echo -echo "Generated:" -find release -type f -name '*.deb' - diff --git a/build-source.sh b/build-source.sh deleted file mode 100755 index 191ede1e..00000000 --- a/build-source.sh +++ /dev/null @@ -1,50 +0,0 @@ -#!/bin/bash -# Generates debian source dsc and tar files -# This is run by build-deb.sh - -################################################################################ -#functions - -abrt () { echo "${SELF}: ${@:-Failed}" >&2 ; exit 1 ; } - -################################################################################ -# main - -SELF=${0##*/} -cd ${0%/*} || abrt "Failed to cd \"${0%/*}\"" - -echo "" -echo "==========================================================================" -echo " ${0}" -echo "==========================================================================" -echo "" - -# get pkg name from BRANDING.mak -[[ "${BRANDING[SHORTNAME]}" ]] || { - unset BRANDING ;declare -A BRANDING - [[ -s BRANDING.mak ]] && while read k x v ; do - [[ "${k}" =~ ^BRANDING_ ]] && BRANDING[${k#*_}]="${v}" - done < BRANDING.mak -} -[[ "${BRANDING[SHORTNAME]}" ]] || abrt "Missing BRANDING_SHORTNAME (check BRANDING.mak)" - -echo "pkg name: ${BRANDING[SHORTNAME]}" -echo "--------------------------------------------------------------------------" - -# clean build dir -rm -rfv /tmp/builds -mkdir -pv /tmp/builds -make clean -mkdir -pv release/source -echo "--------------------------------------------------------------------------" - -# build source package -dpkg-source --build . || abrt -mv -vf ../${BRANDING[SHORTNAME]}*.dsc release/source/ || abrt -mv -vf ../${BRANDING[SHORTNAME]}*.tar.* release/source/ || abrt - -echo "--------------------------------------------------------------------------" - -# list files -ls -l release/source -echo "-------------------------------------------------------------------------" diff --git a/build.sh b/build.sh index c8add27f..58d05b2c 100755 --- a/build.sh +++ b/build.sh @@ -1,2 +1,2 @@ -make 2>&1 | grep -E --color=never 'error:|.vala:.*warning:' | grep -E --color=always "error:|$" +make 2>&1 | grep -E --line-buffered --color=never 'error:|.vala:.*warning:' | grep -E --line-buffered --color=always "error:|$" diff --git a/debian/changelog b/debian/changelog index de3c3e51..6dac6c0d 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,12 +1,24 @@ +ukuu (18.9.5-bkw) disco; urgency=medium + * More un-hardcoding branding/name/maintainer strings in source files + ukuu.desktop, debian/control, debian/copyright, ukuu.policy all generated from BRANDING.mak + * Remove build-deb.sh and build-source.sh + Now we have "make deb" + * Removed some more source cruft, stuff we aren't using from TeeJee utilities + * Updated the Spanish translation just from google translate. + + -- Brian K. White Wed, 13 Mar 2019 2:35:02 -0500 + ukuu (18.9.4-bkw) disco; urgency=medium * Removed all grub options * Fix formatting in per-kernel package list tooltip - * New screenshots for readme, and self-hosted + * Clean up README.md * Removed build-installers.sh and other references to sanity *.run installers * Relocate config.json & ukuu-notify.sh to .config/ukuu/ dir * Moved branding to BRANDING.mak so other scripts can read it too * Removed all hard-coding from build-deb.sh & build-source.sh - + * Turkish translation (github/kelebek333) + * Remove misc cruft + -- Brian K. White Mon, 11 Mar 2019 17:50:38 -0500 diff --git a/debian/compat b/debian/compat index 45a4fb75..f599e28b 100644 --- a/debian/compat +++ b/debian/compat @@ -1 +1 @@ -8 +10 diff --git a/debian/control b/debian/control index e6b9b674..fff97645 100644 --- a/debian/control +++ b/debian/control @@ -8,8 +8,10 @@ Homepage: https://github.com/aljex/ukuu Package: ukuu Architecture: any -Depends: ${shlibs:Depends}, ${misc:Depends}, rsync, aptitude, aria2, curl +Depends: ${shlibs:Depends}, ${misc:Depends}, aptitude, aria2, curl Recommends: Description: Kernel Update Utility for Ubuntu-based distributions Utility for installing mainline Linux kernels on Ubuntu-based distributions. Downloads and installs kernel packages from kernel.ubuntu.com. + . + This is a fork and continuation of the final GPL version of the original author's package "ukuu". diff --git a/debian/control.src b/debian/control.src new file mode 100644 index 00000000..3cf621e0 --- /dev/null +++ b/debian/control.src @@ -0,0 +1,17 @@ +Source: BRANDING_SHORTNAME +Section: utils +Priority: extra +Maintainer: BRANDING_AUTHORNAME +Build-Depends: debhelper (>= 8.0.0), autotools-dev, valac, libgtk-3-dev, libgee-0.8-dev, libjson-glib-dev, libvte-2.91-dev +Standards-Version: 3.9.3 +Homepage: BRANDING_WEBSITE + +Package: BRANDING_SHORTNAME +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends}, aptitude, aria2, curl +Recommends: +Description: Kernel Update Utility for Ubuntu-based distributions + Utility for installing mainline Linux kernels on Ubuntu-based distributions. + Downloads and installs kernel packages from kernel.ubuntu.com. + . + This is a fork and continuation of the final GPL version of the original author's package "ukuu". diff --git a/debian/copyright b/debian/copyright index d71af0b6..df615f60 100644 --- a/debian/copyright +++ b/debian/copyright @@ -1,9 +1,9 @@ Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: ukuu -Source: +Source: Files: * -Copyright: 2013 Tony George , forked: 2019 Brian K. White +Copyright: 2013 Tony George , Forked: 2019 Brian K. White License: GPL-2+ This package is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/debian/copyright.src b/debian/copyright.src new file mode 100644 index 00000000..5803161b --- /dev/null +++ b/debian/copyright.src @@ -0,0 +1,23 @@ +Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ +Upstream-Name: BRANDING_SHORTNAME +Source: + +Files: * +Copyright: 2013 Tony George , Forked: 2019 BRANDING_AUTHORNAME +License: GPL-2+ + This package is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + . + This package is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + . + You should have received a copy of the GNU General Public License + along with this program. If not, see + . + On Debian systems, the complete text of the GNU General + Public License version 2 can be found in "/usr/share/common-licenses/GPL-2". + diff --git a/debian/ukuu.debhelper.log b/debian/ukuu.debhelper.log deleted file mode 100644 index 0dd861d4..00000000 --- a/debian/ukuu.debhelper.log +++ /dev/null @@ -1,6 +0,0 @@ -dh_autotools-dev_updateconfig -dh_auto_configure -dh_auto_build -dh_auto_test -dh_prep -dh_installdirs diff --git a/makefile b/makefile deleted file mode 100644 index 59580263..00000000 --- a/makefile +++ /dev/null @@ -1,20 +0,0 @@ -all: - cd src; make ${@} - -app: - cd src; make ${@} - -app-gtk: - cd src; make ${@} - -translations: - cd src; make ${@} - -clean: - cd src; make ${@} - -install: - cd src; make ${@} - -uninstall: - cd src; make ${@} diff --git a/po/ukuu-es.po b/po/ukuu-es.po index 8e44e8ca..30c909ee 100644 --- a/po/ukuu-es.po +++ b/po/ukuu-es.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu\n" "Report-Msgid-Bugs-To: bw.aljex@gmail.com\n" -"POT-Creation-Date: 2019-03-12 14:47-0400\n" +"POT-Creation-Date: 2019-03-13 07:31-0400\n" "PO-Revision-Date: 2018-01-03 02:03-0600\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish\n" @@ -31,7 +31,6 @@ msgid "Another instance of this application is running" msgstr "Se está ejecutando otra instancia de esta aplicación" #: Common/LinuxKernel.vala:105 -#, fuzzy msgid "Architecture" msgstr "Arquitectura del sistema" @@ -42,7 +41,7 @@ msgstr "Artistas" #: Console/AppConsole.vala:104 msgid "Assume Yes for all prompts (non-interactive mode)" -msgstr "" +msgstr "Asumir Sí para todas las solicitudes (modo no interactivo)" #: Utility/Gtk/AboutWindow.vala:314 #, c-format @@ -59,7 +58,7 @@ msgstr "Atrás" #: Console/AppConsole.vala:207 Gtk/AppGtk.vala:110 msgid "Cache" -msgstr "" +msgstr "Cache" #: Gtk/ProgressWindow.vala:144 Gtk/TerminalWindow.vala:168 #: Gtk/UpdateNotificationWindow.vala:167 @@ -80,9 +79,8 @@ msgid "Check for kernel updates" msgstr "Buscar actualizaciones del núcleo" #: Console/AppConsole.vala:89 -#, fuzzy msgid "Check for kernel updates and notify current user" -msgstr "Buscar actualizaciones del núcleo" +msgstr "Compruebe las actualizaciones del kernel y notifique al usuario actual" #: Gtk/TerminalWindow.vala:178 Utility/Gtk/AboutWindow.vala:295 msgid "Close" @@ -90,11 +88,11 @@ msgstr "Cerrar" #: Console/AppConsole.vala:344 msgid "Command not specified" -msgstr "" +msgstr "Coomand no especificado" #: Console/AppConsole.vala:86 msgid "Commands" -msgstr "" +msgstr "Comandos" #: Common/Main.vala:105 msgid "Commands listed below are not available on this system" @@ -104,7 +102,7 @@ msgstr "" #: Common/LinuxKernel.vala:737 #, c-format msgid "Continue ?" -msgstr "" +msgstr "¿Continuar?" #: Utility/Gtk/AboutWindow.vala:322 #, c-format @@ -112,7 +110,6 @@ msgid "Contributions" msgstr "Contribuciones" #: Common/LinuxKernel.vala:721 -#, fuzzy msgid "Could not find any kernels to remove" msgstr "Seleccione los núcleos que se desinstalarán" @@ -121,9 +118,8 @@ msgid "Could not find requested version" msgstr "No se pudo encontrar la versión solicitada" #: Common/LinuxKernel.vala:715 -#, fuzzy msgid "Could not find running kernel in list!" -msgstr "No se pudo encontrar la versión solicitada" +msgstr "¡No se pudo encontrar el núcleo en ejecución en la lista!" #: Utility/TeeJee.FileSystem.vala:349 Utility/TeeJee.FileSystem.vala:352 #: Utility/TeeJee.FileSystem.vala:378 @@ -211,7 +207,7 @@ msgstr "Recuperando índice de kernel.ubuntu.com…" #: Common/LinuxKernel.vala:353 msgid "Fetching index..." -msgstr "" +msgstr "Recuperando índice..." #: Utility/TeeJee.FileSystem.vala:210 Utility/TeeJee.FileSystem.vala:213 msgid "File copied" @@ -242,11 +238,6 @@ msgstr "No se encontró el archivo: %s" msgid "File saved" msgstr "Se guardó el archivo" -#: Common/LinuxKernel.vala:730 -#, c-format -msgid "Following kernels will be removed" -msgstr "" - #: Gtk/SettingsDialog.vala:180 msgid "Hide kernels older than 4.0" msgstr "Ocultar núcleos anteriores a 4.0" @@ -281,9 +272,8 @@ msgid "Install Linux v%s ? (y/n): " msgstr "" #: Console/AppConsole.vala:92 -#, fuzzy msgid "Install latest mainline kernel" -msgstr "Instalar núcleo troncal especificado" +msgstr "Instalar kernel troncal especificado" #: Console/AppConsole.vala:93 msgid "Install latest point update for current series" @@ -295,7 +285,7 @@ msgstr "Instalar núcleo troncal especificado" #: Gtk/UpdateNotificationWindow.vala:148 msgid "Install this kernel" -msgstr "Instalar este núcleo" +msgstr "Instalar este kernel" #: Common/LinuxKernel.vala:1301 msgid "Installation completed with errors" @@ -311,7 +301,6 @@ msgid "Installed" msgstr "Instalado" #: Gtk/SettingsDialog.vala:212 -#, fuzzy msgid "Internect connection timeout in " msgstr "La conexión a Internet está inactiva" @@ -348,9 +337,8 @@ msgid "List available kernels" msgstr "Mostrar núcleos disponibles" #: Console/AppConsole.vala:91 -#, fuzzy msgid "List installed kernels" -msgstr "Mostrar núcleos disponibles" +msgstr "Mostrar kernels disponibles" #: Utility/Gtk/GtkHelper.vala:272 msgid "Missing Icon" @@ -358,7 +346,7 @@ msgstr "Falta el icono" #: Gtk/MainWindow.vala:368 msgid "Multiple Kernels Selected" -msgstr "Se seleccionaron varios núcleos" +msgstr "Se seleccionaron varios kernels" #: Console/AppConsole.vala:294 msgid "Multiple kernels selected for installation. Select only one." @@ -413,8 +401,8 @@ msgstr "" #: Common/LinuxKernel.vala:1060 #, c-format -msgid "Packages Available (DEB)" -msgstr "Paquetes disponibles (DEB)" +msgid "Packages Available" +msgstr "Paquetes disponibles" #: Common/LinuxKernel.vala:1068 #, c-format @@ -458,7 +446,6 @@ msgid "Remove installed kernels older than running kernel" msgstr "" #: Console/AppConsole.vala:95 -#, fuzzy msgid "Remove specified kernel" msgstr "Quitar el núcleo troncal especificado" @@ -516,12 +503,10 @@ msgid "Show notification dialog" msgstr "Mostrar cuadro de diálogo de notificación" #: Console/AppConsole.vala:99 -#, fuzzy msgid "Show unstable and RC releases" msgstr "Ocultar versiones inestables y RC" #: Gtk/SettingsDialog.vala:199 -#, fuzzy msgid "Skip internet connection check" msgstr "La conexión a Internet está inactiva" @@ -541,6 +526,11 @@ msgstr "Sintaxis" msgid "Temp" msgstr "" +#: Common/LinuxKernel.vala:730 +#, c-format +msgid "The following kernels will be removed:" +msgstr "Los siguientes kernels serán eliminados:" + #: Utility/Gtk/AboutWindow.vala:330 #, c-format msgid "Third Party Tools" @@ -598,142 +588,3 @@ msgstr "[Atención] Se eliminó un bloqueo no válido" #: Gtk/SettingsDialog.vala:226 msgid "seconds" msgstr "" - -#~ msgid "Booting previous kernels" -#~ msgstr "Arrancando núcleos anteriores" - -#, fuzzy -#~ msgid "" -#~ "Mainline kernels can sometimes cause problems if there are proprietary " -#~ "drivers installed on your system. These issues include:\n" -#~ "\n" -#~ "▰ WiFi not working\n" -#~ "▰ Black screen on startup\n" -#~ "▰ Random system freeze\n" -#~ "\n" -#~ "If you face any of these issues there is no need to panic.\n" -#~ "\n" -#~ "▰ Reboot your system\n" -#~ "▰ Select 'Advanced Boot Options' from the GRUB boot menu\n" -#~ "▰ Select an older kernel from the list displayed on this screen\n" -#~ "▰ Your system will boot using the selected kernel\n" -#~ "▰ You can now uninstall the kernel that is causing issues\n" -#~ msgstr "" -#~ "Los núcleos troncales en ocasiones pueden causar problemas si se " -#~ "instalaron controladores privativos en el sistema, por mencionar " -#~ "algunos:\n" -#~ "\n" -#~ "\\342\\226\\260 Wifi disfuncional\n" -#~ "\\342\\226\\260 Pantalla negra al arrancar\n" -#~ "\\342\\226\\260 Bloqueos del sistema fortuitos\n" -#~ "\n" -#~ "No se alarme si se topa con alguno de estos problemas.\n" -#~ "\n" -#~ "\\342\\226\\260 Reinicie el sistema\n" -#~ "\\342\\226\\260 Seleccione «Opciones de arranque avanzadas» en el menú de " -#~ "GRUB\n" -#~ "\\342\\226\\260 Elija un núcleo anterior de la lista que aparece en " -#~ "pantalla\n" -#~ "\\342\\226\\260 El sistema arrancará utilizando el núcleo seleccionado\n" -#~ "\\342\\226\\260 Ahora podrá desinstalar el núcleo problemático\n" - -#~ msgid "" -#~ "Time (in seconds) to display the GRUB menu\n" -#~ "\n" -#~ "0 = Do not show menu\n" -#~ "-1 = Show indefinitely till user selects" -#~ msgstr "" -#~ "Tiempo (en segundos) para mostrar el menú de GRUB\n" -#~ "\n" -#~ "0 = No mostrar el menú\n" -#~ "-1 = Mostrar indefinidamente hasta que el usuario seleccione algo" - -#~ msgid "" -#~ "Updates the GRUB menu after installing or removing kernels, so that the " -#~ "menu is displayed for 2 seconds at boot time. This will help you recover " -#~ "from a bad kernel update by selecting another kernel to boot. During " -#~ "boot, use the 'Advanced options for Ubuntu' menu entry to select another " -#~ "kernel.\n" -#~ "\n" -#~ "0 = Do not show menu\n" -#~ "-1 = Show indefinitely till user selects" -#~ msgstr "" -#~ "Actualiza el menú de GRUB tras instalar o quitar núcleos para que este " -#~ "aparezca por dos segundos durante el arranque. Esto le ayudará a " -#~ "recuperarse de una actualización de núcleo problemática permitiéndole " -#~ "elegir otro núcleo para arrancar. Durante el arranque, utilice «Opciones " -#~ "avanzadas para Ubuntu» para elegir otro núcleo.\n" -#~ "\n" -#~ "0 = No mostrar el menú\n" -#~ "-1 = Mostrar indefinidamente hasta que el usuario seleccione algo" - -#~ msgid "Updating GRUB menu" -#~ msgstr "Actualizando menú de GRUB" - -#~ msgid "Run 'ukuu --list' and use the version string listed in first column" -#~ msgstr "" -#~ "Ejecute «ukuu --list» y use la cadena de versión mostrada en la primera " -#~ "columna" - -#~ msgid "" -#~ "Did you find this software useful?\n" -#~ "\n" -#~ "You can buy me a coffee or make a donation via PayPal to show your " -#~ "support. Or just drop me an email and say Hi. This application is " -#~ "completely free and will continue to remain that way. Your contributions " -#~ "will help in keeping this project alive and improving it further.\n" -#~ "\n" -#~ "Feel free to send me an email if you find any issues in this application " -#~ "or if you need any changes. Suggestions and feedback are always welcome.\n" -#~ "\n" -#~ "Thanks,\n" -#~ "Tony George\n" -#~ "(teejeetech@gmail.com)" -#~ msgstr "" -#~ "¿Le pareció de utilidad este programa?\n" -#~ "\n" -#~ "Puede comprarme un café o realizar un donativo a través de PayPal para " -#~ "mostrar su apoyo. O bien, escríbame un mensaje para saludar. Esta " -#~ "aplicación es completamente gratuita y seguirá siéndolo. Sus " -#~ "contribuciones ayudan a que este proyecto permanezca activo y en mejora.\n" -#~ "\n" -#~ "No dude en enviarme un mensaje por correo electrónico si halla problemas " -#~ "en la aplicación o si necesita que se le hagan modificaciones. Se acogen " -#~ "con satisfacción las sugerencias y los comentarios.\n" -#~ "\n" -#~ "Gracias.\n" -#~ "Tony George\n" -#~ "(teejeetech@gmail.com)" - -#~ msgid "Display GRUB menu during boot" -#~ msgstr "Mostrar menú de GRUB durante el arranque" - -#~ msgid "Donate" -#~ msgstr "Donar" - -#~ msgid "Donate with Google Wallet" -#~ msgstr "Donar con Google Wallet" - -#~ msgid "Donate with PayPal" -#~ msgstr "Donar con PayPal" - -#~ msgid "Donations" -#~ msgstr "Donaciones" - -#~ msgid "File read" -#~ msgstr "Se consultó el archivo" - -#~ msgid "Notify if kernel update is available" -#~ msgstr "Notificar si hay una actualización de núcleo disponible" - -#~ msgid "Send Email" -#~ msgstr "Enviar correo electrónico" - -#~ msgid "Use specified user's cache directory" -#~ msgstr "Utilizar directorio de antememoria de usuario especificado" - -#~ msgid "Using cache directory" -#~ msgstr "Utilizando directorio de antememoria" - -#~ msgid "Visit Website" -#~ msgstr "Visitar sitio web" diff --git a/po/ukuu-fr.po b/po/ukuu-fr.po index b9162fce..44193e83 100644 --- a/po/ukuu-fr.po +++ b/po/ukuu-fr.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu\n" "Report-Msgid-Bugs-To: bw.aljex@gmail.com\n" -"POT-Creation-Date: 2019-03-12 14:47-0400\n" +"POT-Creation-Date: 2019-03-13 07:31-0400\n" "PO-Revision-Date: 2018-08-05 15:50+0200\n" "Last-Translator: Yolateng0 \n" "Language-Team: French\n" @@ -241,11 +241,6 @@ msgstr "Fichier non trouvé: %s" msgid "File saved" msgstr "Fichier sauvegardé" -#: Common/LinuxKernel.vala:730 -#, c-format -msgid "Following kernels will be removed" -msgstr "" - #: Gtk/SettingsDialog.vala:180 msgid "Hide kernels older than 4.0" msgstr "Masquer les noyaux antérieurs à la version 4.0" @@ -416,8 +411,8 @@ msgstr "" #: Common/LinuxKernel.vala:1060 #, c-format -msgid "Packages Available (DEB)" -msgstr "Paquets disponibles (DEB)" +msgid "Packages Available" +msgstr "Paquets disponibles" #: Common/LinuxKernel.vala:1068 #, c-format @@ -544,6 +539,11 @@ msgstr "Syntaxe" msgid "Temp" msgstr "" +#: Common/LinuxKernel.vala:730 +#, c-format +msgid "The following kernels will be removed:" +msgstr "" + #: Utility/Gtk/AboutWindow.vala:330 #, c-format msgid "Third Party Tools" diff --git a/po/ukuu-hr.po b/po/ukuu-hr.po index 4a1fbf8d..109d38dd 100644 --- a/po/ukuu-hr.po +++ b/po/ukuu-hr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu\n" "Report-Msgid-Bugs-To: bw.aljex@gmail.com\n" -"POT-Creation-Date: 2019-03-12 14:47-0400\n" +"POT-Creation-Date: 2019-03-13 07:31-0400\n" "PO-Revision-Date: 2017-12-24 00:52+0100\n" "Last-Translator: gogo \n" "Language-Team: Croatian \n" @@ -241,11 +241,6 @@ msgstr "Datoteka nije pronađena: %s" msgid "File saved" msgstr "Datoteka je spremljenja" -#: Common/LinuxKernel.vala:730 -#, c-format -msgid "Following kernels will be removed" -msgstr "" - #: Gtk/SettingsDialog.vala:180 msgid "Hide kernels older than 4.0" msgstr "Sakrij kernele starije od inačice 4.0" @@ -412,8 +407,8 @@ msgstr "" #: Common/LinuxKernel.vala:1060 #, c-format -msgid "Packages Available (DEB)" -msgstr "Dostupni paketi (DEB)" +msgid "Packages Available" +msgstr "Dostupni paketi" #: Common/LinuxKernel.vala:1068 #, c-format @@ -540,6 +535,11 @@ msgstr "Sintaksa" msgid "Temp" msgstr "" +#: Common/LinuxKernel.vala:730 +#, c-format +msgid "The following kernels will be removed:" +msgstr "" + #: Utility/Gtk/AboutWindow.vala:330 #, c-format msgid "Third Party Tools" diff --git a/po/ukuu-nl.po b/po/ukuu-nl.po index 0a2a7255..09a6e0c6 100644 --- a/po/ukuu-nl.po +++ b/po/ukuu-nl.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu 2.2\n" "Report-Msgid-Bugs-To: bw.aljex@gmail.com\n" -"POT-Creation-Date: 2019-03-12 14:47-0400\n" +"POT-Creation-Date: 2019-03-13 07:31-0400\n" "PO-Revision-Date: 2017-04-30 11:50+0200\n" "Last-Translator: Heimen Stoffels \n" "Language-Team: \n" @@ -242,11 +242,6 @@ msgstr "Bestand niet gevonden: %s" msgid "File saved" msgstr "Bestand opgeslagen" -#: Common/LinuxKernel.vala:730 -#, c-format -msgid "Following kernels will be removed" -msgstr "" - #: Gtk/SettingsDialog.vala:180 msgid "Hide kernels older than 4.0" msgstr "Kernels ouder dan 4.0 verbergen" @@ -416,8 +411,8 @@ msgstr "" #: Common/LinuxKernel.vala:1060 #, c-format -msgid "Packages Available (DEB)" -msgstr "Beschikbare pakketten (DEB)" +msgid "Packages Available" +msgstr "Beschikbare pakketten" #: Common/LinuxKernel.vala:1068 #, c-format @@ -546,6 +541,11 @@ msgstr "Syntax" msgid "Temp" msgstr "" +#: Common/LinuxKernel.vala:730 +#, c-format +msgid "The following kernels will be removed:" +msgstr "" + #: Utility/Gtk/AboutWindow.vala:330 #, c-format msgid "Third Party Tools" diff --git a/po/ukuu-pl.po b/po/ukuu-pl.po index 38886c43..94291d0c 100644 --- a/po/ukuu-pl.po +++ b/po/ukuu-pl.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu\n" "Report-Msgid-Bugs-To: bw.aljex@gmail.com\n" -"POT-Creation-Date: 2019-03-12 14:47-0400\n" +"POT-Creation-Date: 2019-03-13 07:31-0400\n" "PO-Revision-Date: 2017-08-12 15:26+0200\n" "Last-Translator: \n" "Language-Team: Polish\n" @@ -239,11 +239,6 @@ msgstr "Nie odnaleziono pliku: %s" msgid "File saved" msgstr "Plik zapisany" -#: Common/LinuxKernel.vala:730 -#, c-format -msgid "Following kernels will be removed" -msgstr "" - #: Gtk/SettingsDialog.vala:180 msgid "Hide kernels older than 4.0" msgstr "Ukryj jądra starsze niż 4.0" @@ -411,8 +406,8 @@ msgstr "" #: Common/LinuxKernel.vala:1060 #, c-format -msgid "Packages Available (DEB)" -msgstr "Dostępne pakiety (DEB)" +msgid "Packages Available" +msgstr "Dostępne pakiety" #: Common/LinuxKernel.vala:1068 #, c-format @@ -540,6 +535,11 @@ msgstr "Składnia" msgid "Temp" msgstr "" +#: Common/LinuxKernel.vala:730 +#, c-format +msgid "The following kernels will be removed:" +msgstr "" + #: Utility/Gtk/AboutWindow.vala:330 #, c-format msgid "Third Party Tools" diff --git a/po/ukuu-ru.po b/po/ukuu-ru.po index fb0c177b..0b3c371e 100644 --- a/po/ukuu-ru.po +++ b/po/ukuu-ru.po @@ -1,13 +1,13 @@ -# Russian translation for ukuu -# Copyright (c) 2016 Rosetta Contributors and Canonical Ltd 2016 -# This file is distributed under the same license as the ukuu package. -# FIRST AUTHOR , 2016. -# +# Russian translation for ukuu +# Copyright (c) 2016 Rosetta Contributors and Canonical Ltd 2016 +# This file is distributed under the same license as the ukuu package. +# FIRST AUTHOR , 2016. +# msgid "" msgstr "" "Project-Id-Version: ukuu\n" "Report-Msgid-Bugs-To: bw.aljex@gmail.com\n" -"POT-Creation-Date: 2019-03-12 14:47-0400\n" +"POT-Creation-Date: 2019-03-13 05:37-0400\n" "PO-Revision-Date: 2016-12-13 16:46+0300\n" "Last-Translator: Faust3000 \n" "Language-Team: Russian \n" @@ -246,11 +246,6 @@ msgstr "Файл не найден: %s" msgid "File saved" msgstr "Файловая система" -#: Common/LinuxKernel.vala:730 -#, c-format -msgid "Following kernels will be removed" -msgstr "" - #: Gtk/SettingsDialog.vala:180 msgid "Hide kernels older than 4.0" msgstr "Скрыть ядра старше версии 4.0" @@ -417,9 +412,9 @@ msgid "Other" msgstr "" #: Common/LinuxKernel.vala:1060 -#, c-format -msgid "Packages Available (DEB)" -msgstr "" +#, fuzzy, c-format +msgid "Packages Available" +msgstr "Установлено" #: Common/LinuxKernel.vala:1068 #, fuzzy, c-format @@ -548,6 +543,11 @@ msgstr "Синтаксис" msgid "Temp" msgstr "" +#: Common/LinuxKernel.vala:730 +#, c-format +msgid "The following kernels will be removed:" +msgstr "" + #: Utility/Gtk/AboutWindow.vala:330 #, c-format msgid "Third Party Tools" diff --git a/po/ukuu-sv.po b/po/ukuu-sv.po index 1cd098db..5a8624bc 100644 --- a/po/ukuu-sv.po +++ b/po/ukuu-sv.po @@ -1,13 +1,13 @@ -# Translation package for ukuu. -# Copyright (C) YEAR Tony George (teejeetech@gmail.com) -# This file is distributed under the same license as the ukuu package. -# Åke Engelbrektson , 2016. -# +# Translation package for ukuu. +# Copyright (C) YEAR Tony George (teejeetech@gmail.com) +# This file is distributed under the same license as the ukuu package. +# Åke Engelbrektson , 2016. +# msgid "" msgstr "" "Project-Id-Version: ukuu 2.2\n" "Report-Msgid-Bugs-To: bw.aljex@gmail.com\n" -"POT-Creation-Date: 2019-03-12 14:47-0400\n" +"POT-Creation-Date: 2019-03-13 07:31-0400\n" "PO-Revision-Date: 2018-01-13 16:56+0100\n" "Last-Translator: Åke Engelbrektson \n" "Language-Team: Svenska Språkfiler \n" @@ -242,11 +242,6 @@ msgstr "Filen kunde inte hittas: %s" msgid "File saved" msgstr "Fil sparad" -#: Common/LinuxKernel.vala:730 -#, c-format -msgid "Following kernels will be removed" -msgstr "" - #: Gtk/SettingsDialog.vala:180 msgid "Hide kernels older than 4.0" msgstr "Dölj kärnor, äldre än 4.0" @@ -411,8 +406,8 @@ msgstr "" #: Common/LinuxKernel.vala:1060 #, c-format -msgid "Packages Available (DEB)" -msgstr "Tillgängliga paket (DEB)" +msgid "Packages Available" +msgstr "Tillgängliga paket" #: Common/LinuxKernel.vala:1068 #, c-format @@ -539,6 +534,11 @@ msgstr "Syntax" msgid "Temp" msgstr "" +#: Common/LinuxKernel.vala:730 +#, c-format +msgid "The following kernels will be removed:" +msgstr "" + #: Utility/Gtk/AboutWindow.vala:330 #, c-format msgid "Third Party Tools" diff --git a/po/ukuu-tr.po b/po/ukuu-tr.po index 3f35e4d3..6f2e4d80 100644 --- a/po/ukuu-tr.po +++ b/po/ukuu-tr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu\n" "Report-Msgid-Bugs-To: bw.aljex@gmail.com\n" -"POT-Creation-Date: 2019-03-12 14:47-0400\n" +"POT-Creation-Date: 2019-03-13 07:31-0400\n" "PO-Revision-Date: 2019-03-12 19:35+0300\n" "Last-Translator: Gökhan GÖKKAYA \n" "Language-Team: Turkish\n" @@ -237,11 +237,6 @@ msgstr "Şu dosya bulunamadı: %s" msgid "File saved" msgstr "Dosya kaydedildi" -#: Common/LinuxKernel.vala:730 -#, c-format -msgid "Following kernels will be removed" -msgstr "Aşağıdaki çekirdekler silinecek" - #: Gtk/SettingsDialog.vala:180 msgid "Hide kernels older than 4.0" msgstr "4.0 sürümden düşük çekirdekleri gizle" @@ -404,8 +399,8 @@ msgstr "Diğer" #: Common/LinuxKernel.vala:1060 #, c-format -msgid "Packages Available (DEB)" -msgstr "Mevcut Paketler (DEB)" +msgid "Packages Available" +msgstr "Mevcut Paketler" #: Common/LinuxKernel.vala:1068 #, c-format @@ -529,6 +524,11 @@ msgstr "Sözdizimi" msgid "Temp" msgstr "Geçici" +#: Common/LinuxKernel.vala:730 +#, fuzzy, c-format +msgid "The following kernels will be removed:" +msgstr "Aşağıdaki çekirdekler silinecek" + #: Utility/Gtk/AboutWindow.vala:330 #, c-format msgid "Third Party Tools" diff --git a/src/Common/LinuxKernel.vala b/src/Common/LinuxKernel.vala index f9fc50c1..49ee451f 100644 --- a/src/Common/LinuxKernel.vala +++ b/src/Common/LinuxKernel.vala @@ -727,8 +727,8 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { if (confirm){ - var message = "\n%s:\n".printf(_("Following kernels will be removed")); - + var message = "\n%s:\n".printf(_("The following kernels will be removed:")); + foreach(var kern in list){ message += " ▰ v%s\n".printf(kern.version_main); @@ -1057,7 +1057,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { list += "\n%s".printf(deb); } if (list.length > 0){ - txt += "%s\n%s".printf(_("Packages Available (DEB)"), list); + txt += "%s\n%s".printf(_("Packages Available"), list); } list = ""; diff --git a/src/Common/Main.vala b/src/Common/Main.vala index 4f722eb2..17926a4b 100644 --- a/src/Common/Main.vala +++ b/src/Common/Main.vala @@ -260,8 +260,8 @@ public class Main : GLib.Object{ + "Hidden=false\n" + "NoDisplay=false\n" + "X-GNOME-Autostart-enabled=true\n" - + "Name=Ukuu Notification\n" - + "Comment=Ukuu Notification\n"; + + "Name="+BRANDING_SHORTNAME+" notification\n" + + "Comment="+BRANDING_SHORTNAME+" notification\n"; file_write(STARTUP_DESKTOP_FILE, txt); diff --git a/src/Gtk/MainWindow.vala b/src/Gtk/MainWindow.vala index 5488024c..2da1b6ae 100644 --- a/src/Gtk/MainWindow.vala +++ b/src/Gtk/MainWindow.vala @@ -529,7 +529,7 @@ public class MainWindow : Gtk.Window{ dialog.program_name = BRANDING_LONGNAME; dialog.comments = _("Kernel upgrade utility for Ubuntu-based distributions"); - dialog.copyright = "Original copyright © 2012-17 Tony George, Forked 2019 "+BRANDING_AUTHORNAME+" ("+BRANDING_AUTHOREMAIL+")"; + dialog.copyright = "Original: © 2012-18 Tony George\nForked: 2019 "+BRANDING_AUTHORNAME+" ("+BRANDING_AUTHOREMAIL+")"; dialog.version = BRANDING_VERSION; dialog.logo = get_app_icon(128); diff --git a/src/Gtk/TerminalWindow.vala b/src/Gtk/TerminalWindow.vala index def57b7f..5ef6a367 100644 --- a/src/Gtk/TerminalWindow.vala +++ b/src/Gtk/TerminalWindow.vala @@ -237,11 +237,12 @@ public class TerminalWindow : Gtk.Window { process_quit(child_pid); } -/* when building in xenial environment: +/* builds in cosmic and disco + * xenial fails with: Gtk/TerminalWindow.vala:242.19-242.29: error: Argument 1: Cannot convert from `char[]' to `string' term.feed_child(c.to_utf8()); ^^^^^^^^^^^ -*/ + */ public void execute_command(string command){ string c = command.concat("\n"); diff --git a/src/makefile b/src/Makefile similarity index 78% rename from src/makefile rename to src/Makefile index 6c99db01..5d3b3a1b 100644 --- a/src/makefile +++ b/src/Makefile @@ -12,6 +12,7 @@ man1dir=$(mandir)/man1 translations = es fr hr nl pl ru sv tr include ../BRANDING.mak +include miscs.mak vte_symbol = -D VTE_291 vte_version = vte-2.91 @@ -20,7 +21,7 @@ vte_version = vte-2.91 branding_symbols = -X -D'BRANDING_SHORTNAME="${BRANDING_SHORTNAME}"' -X -D'BRANDING_LONGNAME="${BRANDING_LONGNAME}"' -X -D'BRANDING_VERSION="${BRANDING_VERSION}"' -X -D'BRANDING_AUTHORNAME="${BRANDING_AUTHORNAME}"' -X -D'BRANDING_AUTHOREMAIL="${BRANDING_AUTHOREMAIL}"' -X -D'BRANDING_WEBSITE="${BRANDING_WEBSITE}"' -X -D'GETTEXT_PACKAGE="${BRANDING_SHORTNAME}"' -all: app app-gtk translations +all: app app-gtk translations $(miscs) app-gtk: valac ${branding_symbols} ${vte_symbol} --Xcc="-lm" \ @@ -32,6 +33,21 @@ app: --pkg glib-2.0 --pkg gio-unix-2.0 --pkg posix --pkg gee-0.8 --pkg libsoup-2.4 --pkg json-glib-1.0 \ Common/*.vala Console/*.vala Utility/*.vala -o ${BRANDING_SHORTNAME} +# $(miscs) is a special case. +# We want these files to be regenerated any time either the matching *.src file OR ../BRANDING.mak changes. +# We do NOT want "make clean" to delete any of the $(miscs) files. Especially not debian/* +# "make deb" needs the files in debian/* to all be generated before running any deb packaging/building tools. +# And, those tools themselves run "make clean" along the way internally, +# so "make clean" should not delete the debian/* files at least. +$(miscs): %: %.src ../BRANDING.mak + sed -e 's/BRANDING_SHORTNAME/${BRANDING_SHORTNAME}/g' \ + -e ';s/BRANDING_LONGNAME/${BRANDING_LONGNAME}/g' \ + -e ';s/BRANDING_AUTHORNAME/${BRANDING_AUTHORNAME}/g' \ + -e ';s/BRANDING_AUTHOREMAIL/${BRANDING_AUTHOREMAIL}/g' \ + -e ';s|BRANDING_WEBSITE|${BRANDING_WEBSITE}|g' \ + -e ';s/BRANDING_VERSION/${BRANDING_VERSION}/g' \ + ${@}.src >${@} + translations: find . -iname "*.vala" | xargs xgettext --from-code=UTF-8 --language=C --keyword=_ \ --copyright-holder="${BRANDING_AUTHORNAME} (${BRANDING_AUTHOREMAIL})" \ @@ -43,9 +59,9 @@ translations: msgmerge --update -v ../po/${BRANDING_SHORTNAME}-$$lang.po ../${BRANDING_SHORTNAME}.pot ; \ done +# Intentionally do not remove the files created by $(miscs) clean: - rm -rfv ../release/* - rm -rfv *.c *.o *.mo + rm -rfv ../release/* *.c *.o *.mo rm -fv ${BRANDING_SHORTNAME} ${BRANDING_SHORTNAME}-gtk install: @@ -62,7 +78,6 @@ install: # binary install -m 0755 ${BRANDING_SHORTNAME} "$(DESTDIR)$(bindir)" install -m 0755 ${BRANDING_SHORTNAME}-gtk "$(DESTDIR)$(bindir)" - install -m 0755 ${BRANDING_SHORTNAME}-uninstall "$(DESTDIR)$(bindir)" # shared files cp -dpr --no-preserve=ownership -t "$(DESTDIR)$(sharedir)/${BRANDING_SHORTNAME}" ./share/${BRANDING_SHORTNAME}/* @@ -87,7 +102,6 @@ uninstall: # binary rm -f "$(DESTDIR)$(bindir)/${BRANDING_SHORTNAME}" - rm -f "$(DESTDIR)$(bindir)/${BRANDING_SHORTNAME}-uninstall" # shared files rm -rf "$(DESTDIR)$(sharedir)/${BRANDING_SHORTNAME}" diff --git a/src/Utility/AppLock.vala b/src/Utility/AppLock.vala index c4f75932..af4a1f31 100644 --- a/src/Utility/AppLock.vala +++ b/src/Utility/AppLock.vala @@ -32,9 +32,9 @@ public class AppLock : GLib.Object { public string lock_file = ""; public string lock_message = ""; - public bool create(string app_name, string message){ + public bool create(string lck_name, string message){ - var lock_dir = "/var/run/lock/%s".printf(app_name); + var lock_dir = "/var/run/lock/%s".printf(lck_name); dir_create(lock_dir); lock_file = path_combine(lock_dir, "lock"); diff --git a/src/Utility/AsyncTask.vala b/src/Utility/AsyncTask.vala index 788f08eb..c7cff2b8 100644 --- a/src/Utility/AsyncTask.vala +++ b/src/Utility/AsyncTask.vala @@ -445,119 +445,3 @@ public enum AppStatus { CANCELLED, PASSWORD_REQUIRED } - -/* Sample Subclass: -public class RsyncTask : AsyncTask{ - - public bool delete_extra = true; - public string rsync_log_file = ""; - public string exclude_from_file = ""; - public string source_path = ""; - public string dest_path = ""; - public bool verbose = true; - - public RsyncTask(string _script_file, string _working_dir, string _log_file){ - working_dir = _working_dir; - script_file = _script_file; - log_file = _log_file; - } - - public void prepare() { - string script_text = build_script(); - save_bash_script_temp(script_text, script_file); - } - - private string build_script() { - var script = new StringBuilder(); - - var cmd = "rsync -ai"; - - if (verbose){ - cmd += " --verbose"; - } - else{ - cmd += " --quiet"; - } - - if (delete_extra){ - cmd += " --delete"; - } - - cmd += " --numeric-ids --stats --relative --delete-excluded"; - - if (rsync_log_file.length > 0){ - cmd += " --log-file='%s'".printf(escape_single_quote(rsync_log_file)); - } - - if (exclude_from_file.length > 0){ - cmd += " --exclude-from='%s'".printf(escape_single_quote(exclude_from_file)); - } - - source_path = remove_trailing_slash(source_path); - - dest_path = remove_trailing_slash(dest_path); - - cmd += " '%s/'".printf(escape_single_quote(source_path)); - - cmd += " '%s/'".printf(escape_single_quote(dest_path)); - - //cmd += " /. \"%s\"".printf(sync_path + "/localhost/"); - - return script.str; - } - - // execution ---------------------------- - - public void execute() { - - prepare(); - - begin(); - - if (status == AppStatus.RUNNING){ - - - } - } - - public override void parse_stdout_line(string out_line){ - if (is_terminated) { - return; - } - - update_progress_parse_console_output(out_line); - } - - public override void parse_stderr_line(string err_line){ - if (is_terminated) { - return; - } - - update_progress_parse_console_output(err_line); - } - - public bool update_progress_parse_console_output (string line) { - if ((line == null) || (line.length == 0)) { - return true; - } - - return true; - } - - protected override void finish_task(){ - if ((status != AppStatus.CANCELLED) && (status != AppStatus.PASSWORD_REQUIRED)) { - status = AppStatus.FINISHED; - } - } - - public int read_status(){ - var status_file = working_dir + "/status"; - var f = File.new_for_path(status_file); - if (f.query_exists()){ - var txt = file_read(status_file); - return int.parse(txt); - } - return -1; - } -} -*/ diff --git a/src/Utility/TeeJee.FileSystem.vala b/src/Utility/TeeJee.FileSystem.vala index d68f5470..32f9f669 100644 --- a/src/Utility/TeeJee.FileSystem.vala +++ b/src/Utility/TeeJee.FileSystem.vala @@ -817,16 +817,4 @@ namespace TeeJee.FileSystem{ return filePath2; } - - public int rsync (string sourceDirectory, string destDirectory, bool updateExisting, bool deleteExtra){ - - /* Sync files with rsync */ - - string cmd = "rsync -avh"; - cmd += updateExisting ? "" : " --ignore-existing"; - cmd += deleteExtra ? " --delete" : ""; - cmd += " '%s'".printf(escape_single_quote(sourceDirectory) + "//"); - cmd += " '%s'".printf(escape_single_quote(destDirectory)); - return exec_sync (cmd, null, null); - } } diff --git a/src/miscs.mak b/src/miscs.mak new file mode 100644 index 00000000..ca4a3c3a --- /dev/null +++ b/src/miscs.mak @@ -0,0 +1,2 @@ +#miscs = ${BRANDING_SHORTNAME}.desktop ../debian/control ../debian/copyright share/polkit-1/actions/${BRANDING_SHORTNAME}.policy +miscs = ${BRANDING_SHORTNAME}.desktop ../debian/control ../debian/copyright diff --git a/src/share/polkit-1/actions/ukuu.policy b/src/share/polkit-1/actions/ukuu.policy.src similarity index 85% rename from src/share/polkit-1/actions/ukuu.policy rename to src/share/polkit-1/actions/ukuu.policy.src index 8202d74f..7c9efcf5 100644 --- a/src/share/polkit-1/actions/ukuu.policy +++ b/src/share/polkit-1/actions/ukuu.policy.src @@ -3,15 +3,15 @@ "-//freedesktop//DTD PolicyKit Policy Configuration 1.0//EN" "http://www.freedesktop.org/standards/PolicyKit/1/policyconfig.dtd"> - + Authentication is required to manage kernel packages - ukuu + BRANDING_SHORTNAME auth_admin_keep auth_admin_keep auth_admin_keep - /usr/bin/ukuu + /usr/bin/BRANDING_SHORTNAME true diff --git a/src/ukuu-uninstall b/src/ukuu-uninstall deleted file mode 100755 index 9a2c33b9..00000000 --- a/src/ukuu-uninstall +++ /dev/null @@ -1,125 +0,0 @@ -#!/bin/bash - -app_name='ukuu' -app_fullname='Selene' - -Reset='\e[0m' -Red='\e[1;31m' -Green='\e[1;32m' -Yellow='\e[1;33m' - -CHECK_COLOR_SUPPORT() { - colors=`tput colors` - if [ $colors -gt 1 ]; then - COLORS_SUPPORTED=0 - else - COLORS_SUPPORTED=1 - fi -} - -MSG_INFO() { - add_newline='' - if [ "$2" == 0 ]; then - add_newline='-n' - fi - - if [ $COLORS_SUPPORTED -eq 0 ]; then - echo -e ${add_newline} "[${Yellow}*${Reset}] ${Green}$1${Reset}" - else - echo -e ${add_newline} "[*] $1" - fi -} - -MSG_WARNING() { - add_newline='' - if [ "$2" == 0 ]; then - add_newline='-n' - fi - - if [ $COLORS_SUPPORTED -eq 0 ]; then - echo -e ${add_newline} "[${Red}!${Reset}] ${Yellow}$1${Reset}" - else - echo -e ${add_newline} "[!] $1" - fi -} - -MSG_ERROR() { - add_newline='' - if [ "$2" == 0 ]; then - add_newline='-n' - fi - - if [ $COLORS_SUPPORTED -eq 0 ]; then - echo -e ${add_newline} "[${Red}X${Reset}] ${Yellow}$1${Reset}" - else - echo -e ${add_newline} "[X] $1" - fi -} - -CD_PUSH() { - cd_backup=`pwd` -} - -CD_POP() { - if [ ! -z "${cd_backup}" ]; then - cd "${cd_backup}" - fi -} - -EXIT(){ - CD_POP - exit $1 -} - -WAIT_FOR_INPUT() { - echo "" - echo "Press any key to exit..." - read dummy -} - -GET_SCRIPT_PATH(){ - SCRIPTPATH="$(cd "$(dirname "$0")" && pwd)" - SCRIPTNAME=`basename $0` -} - -RUN_AS_ADMIN() { - if [ ! `id -u` -eq 0 ]; then - GET_SCRIPT_PATH - if command -v sudo >/dev/null 2>&1; then - sudo "${SCRIPTPATH}/${SCRIPTNAME}" - EXIT $? - elif command -v su >/dev/null 2>&1; then - su -c "${SCRIPTPATH}/${SCRIPTNAME}" - EXIT $? - else - echo "" - MSG_ERROR "** Uninstaller must be run as Admin (using 'sudo' or 'su') **" - echo "" - EXIT 1 - fi - fi -} - -CD_PUSH -CHECK_COLOR_SUPPORT -RUN_AS_ADMIN - -if [ ! -z "${app_name}" ]; then - rm -f "/usr/bin/${app_name}" - rm -f "/usr/bin/${app_name}-uninstall" - rm -f "/usr/share/applications/${app_name}.desktop" - rm -f "/usr/share/pixmaps/${app_name}.png" - rm -rf "/usr/share/${app_name}" - rm -rf "/usr/share/doc/${app_name}" - rm -f /usr/share/locale/*/LC_MESSAGES/${app_name}.mo -fi - -if [ $? -eq 0 ]; then - echo "${app_fullname} was uninstalled successfully." - EXIT 0 -else - echo "Uninstalled completed (some files could not be removed)" - EXIT 1 -fi - -CD_POP diff --git a/src/ukuu.desktop b/src/ukuu.desktop index 47fbc960..e4923d0e 100644 --- a/src/ukuu.desktop +++ b/src/ukuu.desktop @@ -1,13 +1,11 @@ [Desktop Entry] -Name=Ukuu Kernel Update Utility +Name=Ubuntu Kernel Update Utility MimeType= Exec=ukuu-gtk Type=Application -GenericName=Kernel Update Utility -GenericName[ru]=Программа обновления ядра +GenericName=Ubuntu Kernel Update Utility Terminal=false Icon=ukuu -Comment=Kernel Update Utility -Comment[ru]=Программа обновления ядра +Comment=Ubuntu Kernel Update Utility X-KDE-StartupNotify=false Categories=System; diff --git a/src/ukuu.desktop.src b/src/ukuu.desktop.src new file mode 100644 index 00000000..f566b33d --- /dev/null +++ b/src/ukuu.desktop.src @@ -0,0 +1,11 @@ +[Desktop Entry] +Name=BRANDING_LONGNAME +MimeType= +Exec=BRANDING_SHORTNAME-gtk +Type=Application +GenericName=BRANDING_LONGNAME +Terminal=false +Icon=ukuu +Comment=BRANDING_LONGNAME +X-KDE-StartupNotify=false +Categories=System; diff --git a/ukuu.geany b/ukuu.geany index 3bb8b264..0a35e120 100644 --- a/ukuu.geany +++ b/ukuu.geany @@ -17,24 +17,24 @@ long_line_behaviour=1 long_line_column=80 [files] -current_page=2 -FILE_NAME_0=33;Make;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2Fmakefile;0;4 -FILE_NAME_1=445;None;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fdebian%2Fchangelog;0;4 -FILE_NAME_2=6971;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FCommon%2FMain.vala;0;4 -FILE_NAME_3=5011;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FCommon%2FDownloadManager.vala;0;4 -FILE_NAME_4=1207;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FCommon%2FLinuxKernel.vala;0;4 +current_page=38 +FILE_NAME_0=1725;Make;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2Fmakefile;0;4 +FILE_NAME_1=0;None;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fdebian%2Fchangelog;0;4 +FILE_NAME_2=7410;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FCommon%2FMain.vala;0;4 +FILE_NAME_3=1200;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FCommon%2FDownloadManager.vala;0;4 +FILE_NAME_4=31208;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FCommon%2FLinuxKernel.vala;0;4 FILE_NAME_5=4098;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FCommon%2FPackage.vala;0;4 -FILE_NAME_6=2648;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FConsole%2FAppConsole.vala;0;4 -FILE_NAME_7=1465;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FGtk%2FAppGtk.vala;0;4 -FILE_NAME_8=13902;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FGtk%2FMainWindow.vala;0;4 -FILE_NAME_9=29;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FGtk%2FProgressWindow.vala;0;4 -FILE_NAME_10=37;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FGtk%2FSettingsDialog.vala;0;4 -FILE_NAME_11=29;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FGtk%2FTerminalWindow.vala;0;4 -FILE_NAME_12=1978;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FGtk%2FUpdateNotificationWindow.vala;0;4 -FILE_NAME_13=23;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FUtility%2FAppLock.vala;0;4 -FILE_NAME_14=24;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FUtility%2FAsyncTask.vala;0;4 -FILE_NAME_15=25;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FUtility%2FOSDNotify.vala;0;4 -FILE_NAME_16=4464;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FUtility%2FTeeJee.FileSystem.vala;0;4 +FILE_NAME_6=2420;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FConsole%2FAppConsole.vala;0;4 +FILE_NAME_7=4608;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FGtk%2FAppGtk.vala;0;4 +FILE_NAME_8=13538;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FGtk%2FMainWindow.vala;0;4 +FILE_NAME_9=4986;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FGtk%2FProgressWindow.vala;0;4 +FILE_NAME_10=6656;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FGtk%2FSettingsDialog.vala;0;4 +FILE_NAME_11=5462;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FGtk%2FTerminalWindow.vala;0;4 +FILE_NAME_12=4555;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FGtk%2FUpdateNotificationWindow.vala;0;4 +FILE_NAME_13=2255;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FUtility%2FAppLock.vala;0;4 +FILE_NAME_14=8914;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FUtility%2FAsyncTask.vala;0;4 +FILE_NAME_15=2171;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FUtility%2FOSDNotify.vala;0;4 +FILE_NAME_16=20451;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FUtility%2FTeeJee.FileSystem.vala;0;4 FILE_NAME_17=33;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FUtility%2FTeeJee.Json.vala;0;4 FILE_NAME_18=30;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FUtility%2FTeeJee.Logging.vala;0;4 FILE_NAME_19=8075;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FUtility%2FTeeJee.Misc.vala;0;4 @@ -44,32 +44,22 @@ FILE_NAME_22=23;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FUtility%2 FILE_NAME_23=8259;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FUtility%2FGtk%2FAboutWindow.vala;0;4 FILE_NAME_24=34;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FUtility%2FGtk%2FCustomMessageDialog.vala;0;4 FILE_NAME_25=6668;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FUtility%2FGtk%2FGtkHelper.vala;0;4 -FILE_NAME_26=230;XML;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2Fshare%2Fpolkit-1%2Factions%2Fukuu.policy;0;4 -FILE_NAME_27=187;Conf;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2Fukuu.desktop;0;4 -FILE_NAME_28=160;Markdown;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2FREADME.md;0;4 -FILE_NAME_29=0;Markdown;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2F.github%2FISSUE_TEMPLATE%2Fbug_report.md;0;4 -FILE_NAME_30=560;Markdown;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2F.github%2FISSUE_TEMPLATE%2Ffeature_request.md;0;4 -FILE_NAME_31=55;None;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2FAUTHORS;0;4 -FILE_NAME_32=240;Conf;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fdebian%2Fcontrol;0;4 -FILE_NAME_33=94;None;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fdebian%2Fcopyright;0;4 -FILE_NAME_34=11981;Po;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fukuu.pot;0;4 -FILE_NAME_35=72;Markdown;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fchangelogs%2Fv17.12.1.md;0;4 -FILE_NAME_36=403;Markdown;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fchangelogs%2Fv17.12.md;0;4 -FILE_NAME_37=66;Markdown;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fchangelogs%2Fv18.1.md;0;4 -FILE_NAME_38=7677;C++;0;EUTF-8;1;1;1;%2Fusr%2Finclude%2Fglib-2.0%2Fgio%2Fgdatainputstream.h;0;4 -FILE_NAME_39=929;C++;0;EUTF-8;1;1;1;%2Fusr%2Finclude%2Fglib-2.0%2Fglib%2Fgi18n-lib.h;0;4 -FILE_NAME_40=20303;Po;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fpo%2Fukuu-es.po;0;4 -FILE_NAME_41=20216;Po;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fpo%2Fukuu-fr.po;0;4 -FILE_NAME_42=18310;Po;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fpo%2Fukuu-hr.po;0;4 -FILE_NAME_43=107;Perl;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2F.git%2Fhooks%2Ffsmonitor-watchman.sample;0;4 -FILE_NAME_44=110;Conf;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2F.git%2Fconfig;0;4 -FILE_NAME_45=35096;None;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2FCOPYING;0;4 -FILE_NAME_46=102;Markdown;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2FLICENSE.md;0;4 -FILE_NAME_47=113;XML;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2Fshare%2Fpixmaps%2Fukuu.svg;0;4 -FILE_NAME_48=55;XML;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2Fshare%2Fukuu%2Fimages%2Fgeneral.svg;0;4 -FILE_NAME_49=0;Sh;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fbuild.sh;0;4 -FILE_NAME_50=1496;Sh;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fbuild-deb.sh;0;4 -FILE_NAME_51=1211;Sh;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fbuild-source.sh;0;4 +FILE_NAME_26=727;XML;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2Fshare%2Fpolkit-1%2Factions%2Fukuu.policy.src;0;4 +FILE_NAME_27=58;Conf;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2Fukuu.desktop;0;4 +FILE_NAME_28=2542;Markdown;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2FREADME.md;0;4 +FILE_NAME_29=55;None;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2FAUTHORS;0;4 +FILE_NAME_30=313;Conf;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fdebian%2Fcontrol;0;4 +FILE_NAME_31=94;None;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fdebian%2Fcopyright;0;4 +FILE_NAME_32=11111;Po;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fukuu.pot;0;4 +FILE_NAME_33=35096;None;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2FCOPYING;0;4 +FILE_NAME_34=102;Markdown;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2FLICENSE.md;0;4 +FILE_NAME_35=129;Sh;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fbuild.sh;0;4 +FILE_NAME_36=52;Make;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fmakefile;0;4 +FILE_NAME_37=487;Make;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fdebian%2Frules;0;4 +FILE_NAME_38=402;Conf;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fdebian%2Fcontrol.src;0;4 +FILE_NAME_39=0;Conf;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fdebian%2Fcopyright.src;0;4 +FILE_NAME_40=0;Conf;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2Fukuu.desktop.src;0;4 +FILE_NAME_41=77;Make;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2Fmiscs.mak;0;4 [VTE] last_dir=/home/bkw diff --git a/ukuu.pot b/ukuu.pot index 5f6c8d87..fc7bbbb7 100644 --- a/ukuu.pot +++ b/ukuu.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu 18.9\n" "Report-Msgid-Bugs-To: bw.aljex@gmail.com\n" -"POT-Creation-Date: 2019-03-12 14:47-0400\n" +"POT-Creation-Date: 2019-03-13 07:31-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -236,11 +236,6 @@ msgstr "" msgid "File saved" msgstr "" -#: Common/LinuxKernel.vala:730 -#, c-format -msgid "Following kernels will be removed" -msgstr "" - #: Gtk/SettingsDialog.vala:180 msgid "Hide kernels older than 4.0" msgstr "" @@ -402,7 +397,7 @@ msgstr "" #: Common/LinuxKernel.vala:1060 #, c-format -msgid "Packages Available (DEB)" +msgid "Packages Available" msgstr "" #: Common/LinuxKernel.vala:1068 @@ -525,6 +520,11 @@ msgstr "" msgid "Temp" msgstr "" +#: Common/LinuxKernel.vala:730 +#, c-format +msgid "The following kernels will be removed:" +msgstr "" + #: Utility/Gtk/AboutWindow.vala:330 #, c-format msgid "Third Party Tools" From e14948006888dad20f5f485f83e2a652d59c64ff Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Wed, 13 Mar 2019 08:24:20 -0400 Subject: [PATCH 012/567] revert unwise makefile tweak --- Makefile | 1 - ukuu.pot | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 9cf213e0..2646d0d3 100644 --- a/Makefile +++ b/Makefile @@ -4,7 +4,6 @@ include BRANDING.mak include src/miscs.mak '': all -.PHONY: all deb-src deb # FIXME these globbing patters are unsafe # FIXME allowing dpkg-source to generate files in the parent outside the source tree is unsafe diff --git a/ukuu.pot b/ukuu.pot index fc7bbbb7..35a25b0e 100644 --- a/ukuu.pot +++ b/ukuu.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu 18.9\n" "Report-Msgid-Bugs-To: bw.aljex@gmail.com\n" -"POT-Creation-Date: 2019-03-13 07:31-0400\n" +"POT-Creation-Date: 2019-03-13 08:23-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" From 1546f40b3f4916ea2a6877241110c48bcaefe770 Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Wed, 13 Mar 2019 11:50:56 -0400 Subject: [PATCH 013/567] Remove VTE_291 #ifdefs. debian/compat 10 fails "make deb", 9 works. Fix typo in a display message. --- debian/compat | 2 +- debian/rules | 4 +- po/ukuu-es.po | 15 ++++--- po/ukuu-fr.po | 16 +++---- po/ukuu-hr.po | 16 +++---- po/ukuu-nl.po | 16 +++---- po/ukuu-pl.po | 16 +++---- po/ukuu-ru.po | 16 +++---- po/ukuu-sv.po | 16 +++---- po/ukuu-tr.po | 15 ++++--- src/Gtk/ProgressWindow.vala | 2 - src/Gtk/SettingsDialog.vala | 4 +- src/Gtk/TerminalWindow.vala | 66 +++------------------------- src/Makefile | 3 +- ukuu.geany | 87 +++++++++++++++++++------------------ ukuu.pot | 14 +++--- 16 files changed, 126 insertions(+), 182 deletions(-) diff --git a/debian/compat b/debian/compat index f599e28b..ec635144 100644 --- a/debian/compat +++ b/debian/compat @@ -1 +1 @@ -10 +9 diff --git a/debian/rules b/debian/rules index 465d63be..955dd78b 100755 --- a/debian/rules +++ b/debian/rules @@ -9,7 +9,5 @@ # Uncomment this to turn on verbose mode. #export DH_VERBOSE=1 -override_dh_usrlocal: - %: - dh $@ --with autotools-dev + dh $@ diff --git a/po/ukuu-es.po b/po/ukuu-es.po index 30c909ee..1d7ac418 100644 --- a/po/ukuu-es.po +++ b/po/ukuu-es.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu\n" "Report-Msgid-Bugs-To: bw.aljex@gmail.com\n" -"POT-Creation-Date: 2019-03-13 07:31-0400\n" +"POT-Creation-Date: 2019-03-13 11:41-0400\n" "PO-Revision-Date: 2018-01-03 02:03-0600\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish\n" @@ -60,7 +60,7 @@ msgstr "Atrás" msgid "Cache" msgstr "Cache" -#: Gtk/ProgressWindow.vala:144 Gtk/TerminalWindow.vala:168 +#: Gtk/ProgressWindow.vala:144 Gtk/TerminalWindow.vala:151 #: Gtk/UpdateNotificationWindow.vala:167 #: Utility/Gtk/CustomMessageDialog.vala:172 Utility/Gtk/GtkHelper.vala:122 msgid "Cancel" @@ -82,7 +82,7 @@ msgstr "Buscar actualizaciones del núcleo" msgid "Check for kernel updates and notify current user" msgstr "Compruebe las actualizaciones del kernel y notifique al usuario actual" -#: Gtk/TerminalWindow.vala:178 Utility/Gtk/AboutWindow.vala:295 +#: Gtk/TerminalWindow.vala:161 Utility/Gtk/AboutWindow.vala:295 msgid "Close" msgstr "Cerrar" @@ -300,15 +300,16 @@ msgstr "" msgid "Installed" msgstr "Instalado" -#: Gtk/SettingsDialog.vala:212 -msgid "Internect connection timeout in " -msgstr "La conexión a Internet está inactiva" - #: Gtk/MainWindow.vala:350 Gtk/MainWindow.vala:547 Gtk/MainWindow.vala:683 #: Utility/TeeJee.System.vala:292 msgid "Internet connection is not active" msgstr "La conexión a Internet está inactiva" +#: Gtk/SettingsDialog.vala:212 +#, fuzzy +msgid "Internet connection timeout in " +msgstr "La conexión a Internet está inactiva" + #: Gtk/MainWindow.vala:150 msgid "Kernel" msgstr "Núcleo" diff --git a/po/ukuu-fr.po b/po/ukuu-fr.po index 44193e83..c98f910c 100644 --- a/po/ukuu-fr.po +++ b/po/ukuu-fr.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu\n" "Report-Msgid-Bugs-To: bw.aljex@gmail.com\n" -"POT-Creation-Date: 2019-03-13 07:31-0400\n" +"POT-Creation-Date: 2019-03-13 11:41-0400\n" "PO-Revision-Date: 2018-08-05 15:50+0200\n" "Last-Translator: Yolateng0 \n" "Language-Team: French\n" @@ -60,7 +60,7 @@ msgstr "Retour" msgid "Cache" msgstr "" -#: Gtk/ProgressWindow.vala:144 Gtk/TerminalWindow.vala:168 +#: Gtk/ProgressWindow.vala:144 Gtk/TerminalWindow.vala:151 #: Gtk/UpdateNotificationWindow.vala:167 #: Utility/Gtk/CustomMessageDialog.vala:172 Utility/Gtk/GtkHelper.vala:122 msgid "Cancel" @@ -83,7 +83,7 @@ msgstr "Vérifier les mises à jour des noyaux" msgid "Check for kernel updates and notify current user" msgstr "Vérifier les mises à jour des noyaux" -#: Gtk/TerminalWindow.vala:178 Utility/Gtk/AboutWindow.vala:295 +#: Gtk/TerminalWindow.vala:161 Utility/Gtk/AboutWindow.vala:295 msgid "Close" msgstr "Fermer" @@ -305,16 +305,16 @@ msgstr "" msgid "Installed" msgstr "Installé" -#: Gtk/SettingsDialog.vala:212 -#, fuzzy -msgid "Internect connection timeout in " -msgstr "Connexion internet inexistante" - #: Gtk/MainWindow.vala:350 Gtk/MainWindow.vala:547 Gtk/MainWindow.vala:683 #: Utility/TeeJee.System.vala:292 msgid "Internet connection is not active" msgstr "Connexion internet inexistante" +#: Gtk/SettingsDialog.vala:212 +#, fuzzy +msgid "Internet connection timeout in " +msgstr "Connexion internet inexistante" + #: Gtk/MainWindow.vala:150 msgid "Kernel" msgstr "Noyau" diff --git a/po/ukuu-hr.po b/po/ukuu-hr.po index 109d38dd..009799f4 100644 --- a/po/ukuu-hr.po +++ b/po/ukuu-hr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu\n" "Report-Msgid-Bugs-To: bw.aljex@gmail.com\n" -"POT-Creation-Date: 2019-03-13 07:31-0400\n" +"POT-Creation-Date: 2019-03-13 11:41-0400\n" "PO-Revision-Date: 2017-12-24 00:52+0100\n" "Last-Translator: gogo \n" "Language-Team: Croatian \n" @@ -61,7 +61,7 @@ msgstr "Natrag" msgid "Cache" msgstr "" -#: Gtk/ProgressWindow.vala:144 Gtk/TerminalWindow.vala:168 +#: Gtk/ProgressWindow.vala:144 Gtk/TerminalWindow.vala:151 #: Gtk/UpdateNotificationWindow.vala:167 #: Utility/Gtk/CustomMessageDialog.vala:172 Utility/Gtk/GtkHelper.vala:122 msgid "Cancel" @@ -84,7 +84,7 @@ msgstr "Provjeri nadopune kernela" msgid "Check for kernel updates and notify current user" msgstr "Provjeri nadopune kernela" -#: Gtk/TerminalWindow.vala:178 Utility/Gtk/AboutWindow.vala:295 +#: Gtk/TerminalWindow.vala:161 Utility/Gtk/AboutWindow.vala:295 msgid "Close" msgstr "Zatvori" @@ -305,16 +305,16 @@ msgstr "" msgid "Installed" msgstr "Instalirano" -#: Gtk/SettingsDialog.vala:212 -#, fuzzy -msgid "Internect connection timeout in " -msgstr "Internet povezivanje nije aktivno" - #: Gtk/MainWindow.vala:350 Gtk/MainWindow.vala:547 Gtk/MainWindow.vala:683 #: Utility/TeeJee.System.vala:292 msgid "Internet connection is not active" msgstr "Internet povezivanje nije aktivno" +#: Gtk/SettingsDialog.vala:212 +#, fuzzy +msgid "Internet connection timeout in " +msgstr "Internet povezivanje nije aktivno" + #: Gtk/MainWindow.vala:150 msgid "Kernel" msgstr "Kernel" diff --git a/po/ukuu-nl.po b/po/ukuu-nl.po index 09a6e0c6..a50d9fcb 100644 --- a/po/ukuu-nl.po +++ b/po/ukuu-nl.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu 2.2\n" "Report-Msgid-Bugs-To: bw.aljex@gmail.com\n" -"POT-Creation-Date: 2019-03-13 07:31-0400\n" +"POT-Creation-Date: 2019-03-13 11:41-0400\n" "PO-Revision-Date: 2017-04-30 11:50+0200\n" "Last-Translator: Heimen Stoffels \n" "Language-Team: \n" @@ -62,7 +62,7 @@ msgstr "Terug" msgid "Cache" msgstr "" -#: Gtk/ProgressWindow.vala:144 Gtk/TerminalWindow.vala:168 +#: Gtk/ProgressWindow.vala:144 Gtk/TerminalWindow.vala:151 #: Gtk/UpdateNotificationWindow.vala:167 #: Utility/Gtk/CustomMessageDialog.vala:172 Utility/Gtk/GtkHelper.vala:122 msgid "Cancel" @@ -85,7 +85,7 @@ msgstr "Controleren op kernel-updates" msgid "Check for kernel updates and notify current user" msgstr "Controleren op kernel-updates" -#: Gtk/TerminalWindow.vala:178 Utility/Gtk/AboutWindow.vala:295 +#: Gtk/TerminalWindow.vala:161 Utility/Gtk/AboutWindow.vala:295 msgid "Close" msgstr "Sluiten" @@ -306,16 +306,16 @@ msgstr "" msgid "Installed" msgstr "Geïnstalleerd" -#: Gtk/SettingsDialog.vala:212 -#, fuzzy -msgid "Internect connection timeout in " -msgstr "U bent niet verbonden met het internet" - #: Gtk/MainWindow.vala:350 Gtk/MainWindow.vala:547 Gtk/MainWindow.vala:683 #: Utility/TeeJee.System.vala:292 msgid "Internet connection is not active" msgstr "U bent niet verbonden met het internet" +#: Gtk/SettingsDialog.vala:212 +#, fuzzy +msgid "Internet connection timeout in " +msgstr "U bent niet verbonden met het internet" + #: Gtk/MainWindow.vala:150 msgid "Kernel" msgstr "Kernel" diff --git a/po/ukuu-pl.po b/po/ukuu-pl.po index 94291d0c..1d4fb6ed 100644 --- a/po/ukuu-pl.po +++ b/po/ukuu-pl.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu\n" "Report-Msgid-Bugs-To: bw.aljex@gmail.com\n" -"POT-Creation-Date: 2019-03-13 07:31-0400\n" +"POT-Creation-Date: 2019-03-13 11:41-0400\n" "PO-Revision-Date: 2017-08-12 15:26+0200\n" "Last-Translator: \n" "Language-Team: Polish\n" @@ -59,7 +59,7 @@ msgstr "Wstecz" msgid "Cache" msgstr "" -#: Gtk/ProgressWindow.vala:144 Gtk/TerminalWindow.vala:168 +#: Gtk/ProgressWindow.vala:144 Gtk/TerminalWindow.vala:151 #: Gtk/UpdateNotificationWindow.vala:167 #: Utility/Gtk/CustomMessageDialog.vala:172 Utility/Gtk/GtkHelper.vala:122 msgid "Cancel" @@ -82,7 +82,7 @@ msgstr "Sprawdź nowe wersje jądra" msgid "Check for kernel updates and notify current user" msgstr "Sprawdź nowe wersje jądra" -#: Gtk/TerminalWindow.vala:178 Utility/Gtk/AboutWindow.vala:295 +#: Gtk/TerminalWindow.vala:161 Utility/Gtk/AboutWindow.vala:295 msgid "Close" msgstr "Zamknij" @@ -303,16 +303,16 @@ msgstr "" msgid "Installed" msgstr "Zainstalowany" -#: Gtk/SettingsDialog.vala:212 -#, fuzzy -msgid "Internect connection timeout in " -msgstr "Brak połączenia z internetem" - #: Gtk/MainWindow.vala:350 Gtk/MainWindow.vala:547 Gtk/MainWindow.vala:683 #: Utility/TeeJee.System.vala:292 msgid "Internet connection is not active" msgstr "Brak połączenia z internetem" +#: Gtk/SettingsDialog.vala:212 +#, fuzzy +msgid "Internet connection timeout in " +msgstr "Brak połączenia z internetem" + #: Gtk/MainWindow.vala:150 msgid "Kernel" msgstr "Jądro" diff --git a/po/ukuu-ru.po b/po/ukuu-ru.po index 0b3c371e..1d1f0c54 100644 --- a/po/ukuu-ru.po +++ b/po/ukuu-ru.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu\n" "Report-Msgid-Bugs-To: bw.aljex@gmail.com\n" -"POT-Creation-Date: 2019-03-13 05:37-0400\n" +"POT-Creation-Date: 2019-03-13 11:41-0400\n" "PO-Revision-Date: 2016-12-13 16:46+0300\n" "Last-Translator: Faust3000 \n" "Language-Team: Russian \n" @@ -61,7 +61,7 @@ msgstr "Назад" msgid "Cache" msgstr "" -#: Gtk/ProgressWindow.vala:144 Gtk/TerminalWindow.vala:168 +#: Gtk/ProgressWindow.vala:144 Gtk/TerminalWindow.vala:151 #: Gtk/UpdateNotificationWindow.vala:167 #: Utility/Gtk/CustomMessageDialog.vala:172 Utility/Gtk/GtkHelper.vala:122 msgid "Cancel" @@ -84,7 +84,7 @@ msgstr "Проверить обновления ядра" msgid "Check for kernel updates and notify current user" msgstr "Проверить обновления ядра" -#: Gtk/TerminalWindow.vala:178 Utility/Gtk/AboutWindow.vala:295 +#: Gtk/TerminalWindow.vala:161 Utility/Gtk/AboutWindow.vala:295 msgid "Close" msgstr "Закрыть" @@ -310,16 +310,16 @@ msgstr "" msgid "Installed" msgstr "Установлено" -#: Gtk/SettingsDialog.vala:212 -#, fuzzy -msgid "Internect connection timeout in " -msgstr "Интернет соединение не активно" - #: Gtk/MainWindow.vala:350 Gtk/MainWindow.vala:547 Gtk/MainWindow.vala:683 #: Utility/TeeJee.System.vala:292 msgid "Internet connection is not active" msgstr "Интернет соединение не активно" +#: Gtk/SettingsDialog.vala:212 +#, fuzzy +msgid "Internet connection timeout in " +msgstr "Интернет соединение не активно" + #: Gtk/MainWindow.vala:150 msgid "Kernel" msgstr "Ядро" diff --git a/po/ukuu-sv.po b/po/ukuu-sv.po index 5a8624bc..0be3b890 100644 --- a/po/ukuu-sv.po +++ b/po/ukuu-sv.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu 2.2\n" "Report-Msgid-Bugs-To: bw.aljex@gmail.com\n" -"POT-Creation-Date: 2019-03-13 07:31-0400\n" +"POT-Creation-Date: 2019-03-13 11:41-0400\n" "PO-Revision-Date: 2018-01-13 16:56+0100\n" "Last-Translator: Åke Engelbrektson \n" "Language-Team: Svenska Språkfiler \n" @@ -61,7 +61,7 @@ msgstr "Tillbaka" msgid "Cache" msgstr "" -#: Gtk/ProgressWindow.vala:144 Gtk/TerminalWindow.vala:168 +#: Gtk/ProgressWindow.vala:144 Gtk/TerminalWindow.vala:151 #: Gtk/UpdateNotificationWindow.vala:167 #: Utility/Gtk/CustomMessageDialog.vala:172 Utility/Gtk/GtkHelper.vala:122 msgid "Cancel" @@ -84,7 +84,7 @@ msgstr "Sök efter kärnuppdateringar" msgid "Check for kernel updates and notify current user" msgstr "Sök efter kärnuppdateringar" -#: Gtk/TerminalWindow.vala:178 Utility/Gtk/AboutWindow.vala:295 +#: Gtk/TerminalWindow.vala:161 Utility/Gtk/AboutWindow.vala:295 msgid "Close" msgstr "Stäng" @@ -304,16 +304,16 @@ msgstr "Installation slutförd. Omstart krävs för att tillämpa den nya kärna msgid "Installed" msgstr "Installerad" -#: Gtk/SettingsDialog.vala:212 -#, fuzzy -msgid "Internect connection timeout in " -msgstr "Internetuppkopplingen är inte aktiv" - #: Gtk/MainWindow.vala:350 Gtk/MainWindow.vala:547 Gtk/MainWindow.vala:683 #: Utility/TeeJee.System.vala:292 msgid "Internet connection is not active" msgstr "Internetuppkopplingen är inte aktiv" +#: Gtk/SettingsDialog.vala:212 +#, fuzzy +msgid "Internet connection timeout in " +msgstr "Internetuppkopplingen är inte aktiv" + #: Gtk/MainWindow.vala:150 msgid "Kernel" msgstr "Kärna" diff --git a/po/ukuu-tr.po b/po/ukuu-tr.po index 6f2e4d80..45e19645 100644 --- a/po/ukuu-tr.po +++ b/po/ukuu-tr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu\n" "Report-Msgid-Bugs-To: bw.aljex@gmail.com\n" -"POT-Creation-Date: 2019-03-13 07:31-0400\n" +"POT-Creation-Date: 2019-03-13 11:41-0400\n" "PO-Revision-Date: 2019-03-12 19:35+0300\n" "Last-Translator: Gökhan GÖKKAYA \n" "Language-Team: Turkish\n" @@ -60,7 +60,7 @@ msgstr "Geri" msgid "Cache" msgstr "Önbellek" -#: Gtk/ProgressWindow.vala:144 Gtk/TerminalWindow.vala:168 +#: Gtk/ProgressWindow.vala:144 Gtk/TerminalWindow.vala:151 #: Gtk/UpdateNotificationWindow.vala:167 #: Utility/Gtk/CustomMessageDialog.vala:172 Utility/Gtk/GtkHelper.vala:122 msgid "Cancel" @@ -82,7 +82,7 @@ msgstr "Çekirdek güncellemelerini kontrol et" msgid "Check for kernel updates and notify current user" msgstr "Çekirdek güncellemelerini kontrol et ve mevcut kullanıcıyı uyar" -#: Gtk/TerminalWindow.vala:178 Utility/Gtk/AboutWindow.vala:295 +#: Gtk/TerminalWindow.vala:161 Utility/Gtk/AboutWindow.vala:295 msgid "Close" msgstr "Kapat" @@ -299,15 +299,16 @@ msgstr "" msgid "Installed" msgstr "Kurulu" -#: Gtk/SettingsDialog.vala:212 -msgid "Internect connection timeout in " -msgstr "İnternet bağlantısı aktif değil " - #: Gtk/MainWindow.vala:350 Gtk/MainWindow.vala:547 Gtk/MainWindow.vala:683 #: Utility/TeeJee.System.vala:292 msgid "Internet connection is not active" msgstr "İnternet bağlantısı aktif değil" +#: Gtk/SettingsDialog.vala:212 +#, fuzzy +msgid "Internet connection timeout in " +msgstr "İnternet bağlantısı aktif değil " + #: Gtk/MainWindow.vala:150 msgid "Kernel" msgstr "Çekirdek" diff --git a/src/Gtk/ProgressWindow.vala b/src/Gtk/ProgressWindow.vala index baa1c235..3a0ef262 100644 --- a/src/Gtk/ProgressWindow.vala +++ b/src/Gtk/ProgressWindow.vala @@ -227,5 +227,3 @@ public class ProgressWindow : Gtk.Window { gtk_do_events(); } } - - diff --git a/src/Gtk/SettingsDialog.vala b/src/Gtk/SettingsDialog.vala index 39bc8b19..6beada61 100644 --- a/src/Gtk/SettingsDialog.vala +++ b/src/Gtk/SettingsDialog.vala @@ -209,7 +209,7 @@ public class SettingsDialog : Gtk.Dialog { hbox = new Gtk.Box(Orientation.HORIZONTAL, 6); vbox_main.add (hbox); - label = new Label(_("Internect connection timeout in ")); + label = new Label(_("Internet connection timeout in ")); label.xalign = (float) 0.0; label.margin_left = 6; hbox.add (label); @@ -243,5 +243,3 @@ public class SettingsDialog : Gtk.Dialog { App.save_app_config(); } } - - diff --git a/src/Gtk/TerminalWindow.vala b/src/Gtk/TerminalWindow.vala index 5ef6a367..51027b0e 100644 --- a/src/Gtk/TerminalWindow.vala +++ b/src/Gtk/TerminalWindow.vala @@ -111,47 +111,30 @@ public class TerminalWindow : Gtk.Window { scroll_win.hscrollbar_policy = PolicyType.AUTOMATIC; scroll_win.vscrollbar_policy = PolicyType.AUTOMATIC; vbox_main.add(scroll_win); - - #if VTE_291 - + term.input_enabled = true; term.backspace_binding = Vte.EraseBinding.AUTO; term.cursor_blink_mode = Vte.CursorBlinkMode.SYSTEM; term.cursor_shape = Vte.CursorShape.UNDERLINE; term.rewrap_on_resize = true; - #endif - term.scroll_on_keystroke = true; term.scroll_on_output = true; term.scrollback_lines = 100000; // colors ----------------------------- - - #if VTE_291 - + var color = Gdk.RGBA(); color.parse("#FFFFFF"); term.set_color_foreground(color); color.parse("#404040"); term.set_color_background(color); - - #else - - Gdk.Color color; - Gdk.Color.parse("#FFFFFF", out color); - term.set_color_foreground(color); - Gdk.Color.parse("#404040", out color); - term.set_color_background(color); - - #endif - // grab focus ---------------- - + term.grab_focus(); - + // add cancel button -------------- var hbox = new Gtk.Box(Orientation.HORIZONTAL, 6); @@ -199,9 +182,7 @@ public class TerminalWindow : Gtk.Window { try{ is_running = true; - - #if VTE_291 - + term.spawn_sync( Vte.PtyFlags.DEFAULT, //pty_flags TEMP_DIR, //working_directory @@ -213,19 +194,6 @@ public class TerminalWindow : Gtk.Window { null ); - #else - - term.fork_command_full( - Vte.PtyFlags.DEFAULT, //pty_flags - TEMP_DIR, //working_directory - argv, //argv - env, //env - GLib.SpawnFlags.SEARCH_PATH, //spawn_flags - null, //child_setup - out child_pid - ); - - #endif } catch (Error e) { log_error (e.message); @@ -258,9 +226,7 @@ Gtk/TerminalWindow.vala:242.19-242.29: error: Argument 1: Cannot convert from `c try{ is_running = true; - - #if VTE_291 - + term.spawn_sync( Vte.PtyFlags.DEFAULT, //pty_flags TEMP_DIR, //working_directory @@ -272,20 +238,6 @@ Gtk/TerminalWindow.vala:242.19-242.29: error: Argument 1: Cannot convert from `c null ); - #else - - term.fork_command_full( - Vte.PtyFlags.DEFAULT, //pty_flags - TEMP_DIR, //working_directory - argv, //argv - env, //env - GLib.SpawnFlags.SEARCH_PATH | GLib.SpawnFlags.DO_NOT_REAP_CHILD, //spawn_flags - null, //child_setup - out child_pid - ); - - #endif - term.watch_child(child_pid); term.child_exited.connect(script_exit); @@ -302,15 +254,11 @@ Gtk/TerminalWindow.vala:242.19-242.29: error: Argument 1: Cannot convert from `c } } - #if VTE_291 public void script_exit(int status){ - #else - public void script_exit(){ - #endif is_running = false; - Process.close_pid(child_pid); //required on Windows, doesn't do anything on Unix + //Process.close_pid(child_pid); //required on Windows, doesn't do anything on Unix btn_cancel.visible = false; btn_close.visible = true; diff --git a/src/Makefile b/src/Makefile index 5d3b3a1b..e7b0a77d 100644 --- a/src/Makefile +++ b/src/Makefile @@ -14,7 +14,6 @@ translations = es fr hr nl pl ru sv tr include ../BRANDING.mak include miscs.mak -vte_symbol = -D VTE_291 vte_version = vte-2.91 ################################################################################ @@ -24,7 +23,7 @@ branding_symbols = -X -D'BRANDING_SHORTNAME="${BRANDING_SHORTNAME}"' -X -D'BRAND all: app app-gtk translations $(miscs) app-gtk: - valac ${branding_symbols} ${vte_symbol} --Xcc="-lm" \ + valac ${branding_symbols} --Xcc="-lm" \ --pkg glib-2.0 --pkg gio-unix-2.0 --pkg posix --pkg gtk+-3.0 --pkg gee-0.8 --pkg json-glib-1.0 --pkg ${vte_version} \ Common/*.vala Gtk/*.vala Utility/*.vala Utility/Gtk/*.vala -o ${BRANDING_SHORTNAME}-gtk diff --git a/ukuu.geany b/ukuu.geany index 0a35e120..4c1fa94c 100644 --- a/ukuu.geany +++ b/ukuu.geany @@ -17,49 +17,50 @@ long_line_behaviour=1 long_line_column=80 [files] -current_page=38 -FILE_NAME_0=1725;Make;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2Fmakefile;0;4 -FILE_NAME_1=0;None;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fdebian%2Fchangelog;0;4 -FILE_NAME_2=7410;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FCommon%2FMain.vala;0;4 -FILE_NAME_3=1200;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FCommon%2FDownloadManager.vala;0;4 -FILE_NAME_4=31208;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FCommon%2FLinuxKernel.vala;0;4 -FILE_NAME_5=4098;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FCommon%2FPackage.vala;0;4 -FILE_NAME_6=2420;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FConsole%2FAppConsole.vala;0;4 -FILE_NAME_7=4608;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FGtk%2FAppGtk.vala;0;4 -FILE_NAME_8=13538;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FGtk%2FMainWindow.vala;0;4 -FILE_NAME_9=4986;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FGtk%2FProgressWindow.vala;0;4 -FILE_NAME_10=6656;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FGtk%2FSettingsDialog.vala;0;4 -FILE_NAME_11=5462;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FGtk%2FTerminalWindow.vala;0;4 -FILE_NAME_12=4555;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FGtk%2FUpdateNotificationWindow.vala;0;4 -FILE_NAME_13=2255;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FUtility%2FAppLock.vala;0;4 -FILE_NAME_14=8914;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FUtility%2FAsyncTask.vala;0;4 -FILE_NAME_15=2171;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FUtility%2FOSDNotify.vala;0;4 -FILE_NAME_16=20451;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FUtility%2FTeeJee.FileSystem.vala;0;4 -FILE_NAME_17=33;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FUtility%2FTeeJee.Json.vala;0;4 -FILE_NAME_18=30;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FUtility%2FTeeJee.Logging.vala;0;4 -FILE_NAME_19=8075;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FUtility%2FTeeJee.Misc.vala;0;4 -FILE_NAME_20=2336;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FUtility%2FTeeJee.Process.vala;0;4 -FILE_NAME_21=6206;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FUtility%2FTeeJee.System.vala;0;4 -FILE_NAME_22=23;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FUtility%2FVersion.vala;0;4 -FILE_NAME_23=8259;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FUtility%2FGtk%2FAboutWindow.vala;0;4 -FILE_NAME_24=34;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FUtility%2FGtk%2FCustomMessageDialog.vala;0;4 -FILE_NAME_25=6668;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FUtility%2FGtk%2FGtkHelper.vala;0;4 -FILE_NAME_26=727;XML;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2Fshare%2Fpolkit-1%2Factions%2Fukuu.policy.src;0;4 -FILE_NAME_27=58;Conf;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2Fukuu.desktop;0;4 -FILE_NAME_28=2542;Markdown;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2FREADME.md;0;4 -FILE_NAME_29=55;None;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2FAUTHORS;0;4 -FILE_NAME_30=313;Conf;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fdebian%2Fcontrol;0;4 -FILE_NAME_31=94;None;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fdebian%2Fcopyright;0;4 -FILE_NAME_32=11111;Po;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fukuu.pot;0;4 -FILE_NAME_33=35096;None;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2FCOPYING;0;4 -FILE_NAME_34=102;Markdown;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2FLICENSE.md;0;4 -FILE_NAME_35=129;Sh;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fbuild.sh;0;4 -FILE_NAME_36=52;Make;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fmakefile;0;4 -FILE_NAME_37=487;Make;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fdebian%2Frules;0;4 -FILE_NAME_38=402;Conf;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fdebian%2Fcontrol.src;0;4 -FILE_NAME_39=0;Conf;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fdebian%2Fcopyright.src;0;4 -FILE_NAME_40=0;Conf;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2Fukuu.desktop.src;0;4 -FILE_NAME_41=77;Make;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2Fmiscs.mak;0;4 +current_page=23 +FILE_NAME_0=0;None;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fdebian%2Fchangelog;0;4 +FILE_NAME_1=7410;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FCommon%2FMain.vala;0;4 +FILE_NAME_2=1200;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FCommon%2FDownloadManager.vala;0;4 +FILE_NAME_3=31208;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FCommon%2FLinuxKernel.vala;0;4 +FILE_NAME_4=4098;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FCommon%2FPackage.vala;0;4 +FILE_NAME_5=2420;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FConsole%2FAppConsole.vala;0;4 +FILE_NAME_6=4608;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FGtk%2FAppGtk.vala;0;4 +FILE_NAME_7=13538;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FGtk%2FMainWindow.vala;0;4 +FILE_NAME_8=4984;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FGtk%2FProgressWindow.vala;0;4 +FILE_NAME_9=6653;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FGtk%2FSettingsDialog.vala;0;4 +FILE_NAME_10=5975;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FGtk%2FTerminalWindow.vala;0;4 +FILE_NAME_11=4555;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FGtk%2FUpdateNotificationWindow.vala;0;4 +FILE_NAME_12=2255;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FUtility%2FAppLock.vala;0;4 +FILE_NAME_13=8914;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FUtility%2FAsyncTask.vala;0;4 +FILE_NAME_14=2171;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FUtility%2FOSDNotify.vala;0;4 +FILE_NAME_15=20451;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FUtility%2FTeeJee.FileSystem.vala;0;4 +FILE_NAME_16=33;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FUtility%2FTeeJee.Json.vala;0;4 +FILE_NAME_17=30;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FUtility%2FTeeJee.Logging.vala;0;4 +FILE_NAME_18=8075;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FUtility%2FTeeJee.Misc.vala;0;4 +FILE_NAME_19=2336;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FUtility%2FTeeJee.Process.vala;0;4 +FILE_NAME_20=6206;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FUtility%2FTeeJee.System.vala;0;4 +FILE_NAME_21=23;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FUtility%2FVersion.vala;0;4 +FILE_NAME_22=8259;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FUtility%2FGtk%2FAboutWindow.vala;0;4 +FILE_NAME_23=34;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FUtility%2FGtk%2FCustomMessageDialog.vala;0;4 +FILE_NAME_24=6668;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FUtility%2FGtk%2FGtkHelper.vala;0;4 +FILE_NAME_25=727;XML;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2Fshare%2Fpolkit-1%2Factions%2Fukuu.policy.src;0;4 +FILE_NAME_26=58;Conf;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2Fukuu.desktop;0;4 +FILE_NAME_27=2826;Markdown;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2FREADME.md;0;4 +FILE_NAME_28=55;None;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2FAUTHORS;0;4 +FILE_NAME_29=313;Conf;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fdebian%2Fcontrol;0;4 +FILE_NAME_30=94;None;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fdebian%2Fcopyright;0;4 +FILE_NAME_31=11111;Po;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fukuu.pot;0;4 +FILE_NAME_32=35096;None;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2FCOPYING;0;4 +FILE_NAME_33=292;Markdown;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2FLICENSE.md;0;4 +FILE_NAME_34=129;Sh;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fbuild.sh;0;4 +FILE_NAME_35=441;Make;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fdebian%2Frules;0;4 +FILE_NAME_36=402;Conf;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fdebian%2Fcontrol.src;0;4 +FILE_NAME_37=0;Conf;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fdebian%2Fcopyright.src;0;4 +FILE_NAME_38=0;Conf;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2Fukuu.desktop.src;0;4 +FILE_NAME_39=77;Make;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2Fmiscs.mak;0;4 +FILE_NAME_40=1781;XML;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2Fshare%2Fukuu%2Fimages%2Fgeneral.svg;0;4 +FILE_NAME_41=326;Make;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FMakefile;0;4 +FILE_NAME_42=1722;Sh;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Flibserialport%2Fconfigure.ac;0;4 [VTE] last_dir=/home/bkw diff --git a/ukuu.pot b/ukuu.pot index 35a25b0e..06182d58 100644 --- a/ukuu.pot +++ b/ukuu.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu 18.9\n" "Report-Msgid-Bugs-To: bw.aljex@gmail.com\n" -"POT-Creation-Date: 2019-03-13 08:23-0400\n" +"POT-Creation-Date: 2019-03-13 11:41-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -59,7 +59,7 @@ msgstr "" msgid "Cache" msgstr "" -#: Gtk/ProgressWindow.vala:144 Gtk/TerminalWindow.vala:168 +#: Gtk/ProgressWindow.vala:144 Gtk/TerminalWindow.vala:151 #: Gtk/UpdateNotificationWindow.vala:167 #: Utility/Gtk/CustomMessageDialog.vala:172 Utility/Gtk/GtkHelper.vala:122 msgid "Cancel" @@ -81,7 +81,7 @@ msgstr "" msgid "Check for kernel updates and notify current user" msgstr "" -#: Gtk/TerminalWindow.vala:178 Utility/Gtk/AboutWindow.vala:295 +#: Gtk/TerminalWindow.vala:161 Utility/Gtk/AboutWindow.vala:295 msgid "Close" msgstr "" @@ -297,15 +297,15 @@ msgstr "" msgid "Installed" msgstr "" -#: Gtk/SettingsDialog.vala:212 -msgid "Internect connection timeout in " -msgstr "" - #: Gtk/MainWindow.vala:350 Gtk/MainWindow.vala:547 Gtk/MainWindow.vala:683 #: Utility/TeeJee.System.vala:292 msgid "Internet connection is not active" msgstr "" +#: Gtk/SettingsDialog.vala:212 +msgid "Internet connection timeout in " +msgstr "" + #: Gtk/MainWindow.vala:150 msgid "Kernel" msgstr "" From 07f6aa2fb86bd63aea7b9b031010b8cff88f6380 Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Wed, 13 Mar 2019 12:12:59 -0400 Subject: [PATCH 014/567] remove noop close_pid()s --- src/Gtk/TerminalWindow.vala | 2 -- src/Utility/AsyncTask.vala | 3 --- ukuu.geany | 6 +++--- 3 files changed, 3 insertions(+), 8 deletions(-) diff --git a/src/Gtk/TerminalWindow.vala b/src/Gtk/TerminalWindow.vala index 51027b0e..561be0b7 100644 --- a/src/Gtk/TerminalWindow.vala +++ b/src/Gtk/TerminalWindow.vala @@ -258,8 +258,6 @@ Gtk/TerminalWindow.vala:242.19-242.29: error: Argument 1: Cannot convert from `c is_running = false; - //Process.close_pid(child_pid); //required on Windows, doesn't do anything on Unix - btn_cancel.visible = false; btn_close.visible = true; diff --git a/src/Utility/AsyncTask.vala b/src/Utility/AsyncTask.vala index c7cff2b8..2e199c82 100644 --- a/src/Utility/AsyncTask.vala +++ b/src/Utility/AsyncTask.vala @@ -279,9 +279,6 @@ public abstract class AsyncTask : GLib.Object{ dos_in = null; GLib.FileUtils.close(input_fd); - // dispose child process - Process.close_pid(child_pid); //required on Windows, doesn't do anything on Unix - try{ // dispose log if ((dos_log != null) && !dos_log.is_closed() && !dos_log.is_closing()){ diff --git a/ukuu.geany b/ukuu.geany index 4c1fa94c..8d3bc085 100644 --- a/ukuu.geany +++ b/ukuu.geany @@ -17,7 +17,7 @@ long_line_behaviour=1 long_line_column=80 [files] -current_page=23 +current_page=13 FILE_NAME_0=0;None;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fdebian%2Fchangelog;0;4 FILE_NAME_1=7410;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FCommon%2FMain.vala;0;4 FILE_NAME_2=1200;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FCommon%2FDownloadManager.vala;0;4 @@ -28,10 +28,10 @@ FILE_NAME_6=4608;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FGtk%2FAp FILE_NAME_7=13538;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FGtk%2FMainWindow.vala;0;4 FILE_NAME_8=4984;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FGtk%2FProgressWindow.vala;0;4 FILE_NAME_9=6653;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FGtk%2FSettingsDialog.vala;0;4 -FILE_NAME_10=5975;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FGtk%2FTerminalWindow.vala;0;4 +FILE_NAME_10=5806;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FGtk%2FTerminalWindow.vala;0;4 FILE_NAME_11=4555;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FGtk%2FUpdateNotificationWindow.vala;0;4 FILE_NAME_12=2255;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FUtility%2FAppLock.vala;0;4 -FILE_NAME_13=8914;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FUtility%2FAsyncTask.vala;0;4 +FILE_NAME_13=7083;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FUtility%2FAsyncTask.vala;0;4 FILE_NAME_14=2171;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FUtility%2FOSDNotify.vala;0;4 FILE_NAME_15=20451;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FUtility%2FTeeJee.FileSystem.vala;0;4 FILE_NAME_16=33;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FUtility%2FTeeJee.Json.vala;0;4 From 61d712963fe2f3b9c624942040dc983987a05e39 Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Wed, 13 Mar 2019 12:21:56 -0400 Subject: [PATCH 015/567] changelog about removing ukuu-uninstall --- debian/changelog | 1 + 1 file changed, 1 insertion(+) diff --git a/debian/changelog b/debian/changelog index 6dac6c0d..c165fc09 100644 --- a/debian/changelog +++ b/debian/changelog @@ -5,6 +5,7 @@ ukuu (18.9.5-bkw) disco; urgency=medium Now we have "make deb" * Removed some more source cruft, stuff we aren't using from TeeJee utilities * Updated the Spanish translation just from google translate. + * Remove ukuu-uninstall -- Brian K. White Wed, 13 Mar 2019 2:35:02 -0500 From b4e6fdf1defd93dc37450079315f33f10df8e247 Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Wed, 13 Mar 2019 12:33:55 -0400 Subject: [PATCH 016/567] Remove more cruft. Old "What's new" announcements, no-op man page dir, github bug report & feature request templates. Man page is on the todo list, but until then, the noop man dir is just junk. --- .github/ISSUE_TEMPLATE/bug_report.md | 25 - .github/ISSUE_TEMPLATE/feature_request.md | 17 - changelogs/v17.12.1.md | 28 - changelogs/v17.12.md | 8 - changelogs/v18.1.md | 36 - man/ChangeLog | 1 - man/Makefile.am | 30 - man/Makefile.in | 916 ---------------------- 8 files changed, 1061 deletions(-) delete mode 100644 .github/ISSUE_TEMPLATE/bug_report.md delete mode 100644 .github/ISSUE_TEMPLATE/feature_request.md delete mode 100644 changelogs/v17.12.1.md delete mode 100644 changelogs/v17.12.md delete mode 100644 changelogs/v18.1.md delete mode 100644 man/ChangeLog delete mode 100644 man/Makefile.am delete mode 100644 man/Makefile.in diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md deleted file mode 100644 index dc60dd28..00000000 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -name: Bug report -about: Report an issue - ---- - -**Describe the bug** -A clear and concise description of what the bug is. - -**To Reproduce** -Steps to reproduce the behavior: -1. Go to '...' -2. Click on '....' -3. Error message - -**Expected behavior** -A clear and concise description of what you expected to happen. - -**Screenshots** -If applicable, add screenshots to help explain your problem. - -**System (please complete the following information):** - - Linux Distribution Name and Version: [e.g. Ubuntu 16.04] - - Desktop [e.g. MATE, XFCE] - - Application Version [e.g. v18.8] diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md deleted file mode 100644 index 066b2d92..00000000 --- a/.github/ISSUE_TEMPLATE/feature_request.md +++ /dev/null @@ -1,17 +0,0 @@ ---- -name: Feature request -about: Suggest an idea for this project - ---- - -**Is your feature request related to a problem? Please describe.** -A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] - -**Describe the solution you'd like** -A clear and concise description of what you want to happen. - -**Describe alternatives you've considered** -A clear and concise description of any alternative solutions or features you've considered. - -**Additional context** -Add any other context or screenshots about the feature request here. diff --git a/changelogs/v17.12.1.md b/changelogs/v17.12.1.md deleted file mode 100644 index 1838870c..00000000 --- a/changelogs/v17.12.1.md +++ /dev/null @@ -1,28 +0,0 @@ -# v2017.12.1 (23-Dec-2017) - -### What’s New - -#### **Wayland Support** - -In previous versions, the console app (ukuu) had Gtk dependencies and required admin privileges for installing kernel packages. It would fail to run under Wayland, since Wayland doesn’t allow Gtk apps to run as admin. - -Gtk dependencies have been removed for the console app. It can now be used in a Wayland session, which is the default on Ubuntu 17.10. It can also be used on systems which doesn’t have a display server installed - -#### **Internet Connectivity Fixes** - -The code for checking internet connectivity is updated to support systems where **ping** is not available (ping is sometimes blocked by system administrators). - -The code now uses **curl** to test the connection to kernels.ubuntu.com. Curl supports proxy servers that may be configured on your system. These are usually specified in environment variables: - -``` -export http_proxy=proxy.example.com:1234 -export https_proxy=proxy.example.com:1234 -export ftp_proxy=proxy.example.com:1234 -``` - -You can add above lines to your **~/.bashrc** file if you wish to use any specific proxies for connecting to the internet. - -#### Other Changes - -- Update notification window now shows up in taskbar so that you can minimise and restore it later. It didn’t show up in taskbar in previous versions. -- Installers are now compressed with XZ. This reduces size of installer, but also requires XZ to be installed on the target system. \ No newline at end of file diff --git a/changelogs/v17.12.md b/changelogs/v17.12.md deleted file mode 100644 index 3569ebbb..00000000 --- a/changelogs/v17.12.md +++ /dev/null @@ -1,8 +0,0 @@ -# v2017.12 (09-Dec-2017) - -* [#20](https://github.com/teejee2008/ukuu/issues/16) - Fixed: Use *xdg-open* to open CHANGES file instead of *exo-open* and *gedit* -* [#6](https://github.com/teejee2008/ukuu/issues/6) - Fixed: User's home directory was not detected correctly -* [#26](https://github.com/teejee2008/ukuu/issues/26) - Fixed sizing issues with CustomMessageDialog on some versions of GTK+ toolkit -* [#3](https://github.com/teejee2008/ukuu/issues/3) - Fixed an error in parsing kernel version string. This would cause an update notifcation even when there were no updates available. - - diff --git a/changelogs/v18.1.md b/changelogs/v18.1.md deleted file mode 100644 index f8ea337f..00000000 --- a/changelogs/v18.1.md +++ /dev/null @@ -1,36 +0,0 @@ -# v18.1 (14-Jan-2018) - -## What’s New - -### **New Commands** - -``` -Syntax: ukuu [options] - -Commands: - --list-installed List installed kernels - --install-latest Install latest mainline kernel - --install-point Install latest point update for current series - --purge-old-kernels Remove installed kernels older than running kernel -``` - -`--install-latest` installs the latest available mainline kernel. - -`--install-point` installs the latest available point update for the same kernel series as currently running kernel. - -These two commands can be used in scripts for installing the latest kernel updates. - -`--purge-old-kernels` uninstalls kernels older than the running kernel. A list of kernels to be uninstalled will be displayed for confirmation. Please review the list carefully before you proceeed. - -`--list-installed` displays installed kernels - both official kernels as well as mainline kernels. - -### Miscellaneous - -* A button was added to the Main Window for removing older kernels -* A 5-second timeout was added for the internet connectivity test. -* Console: Progressbar will be displayed in terminal while refreshing the index -* Fixed an issue where Gtk app would freeze if command-line app is started first after installation -* Added Croation translation by gogo. - - - diff --git a/man/ChangeLog b/man/ChangeLog deleted file mode 100644 index 8b137891..00000000 --- a/man/ChangeLog +++ /dev/null @@ -1 +0,0 @@ - diff --git a/man/Makefile.am b/man/Makefile.am deleted file mode 100644 index b59e945a..00000000 --- a/man/Makefile.am +++ /dev/null @@ -1,30 +0,0 @@ -# Makefile.am for hello/man. -# -# Copyright 2004, 2005, 2006, 2007, 2008, 2009, 2010 -# Free Software Foundation, Inc. -# -# This program is free software; you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation; either version 3, or (at your option) -# any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with this program. If not, see . - -man_MANS = hello.1 -EXTRA_DIST = $(man_MANS) -MAINTAINERCLEANFILES = $(man_MANS) - -# The man pages depend on the --help strings and the version number. -common_mandeps = $(top_srcdir)/configure.ac - -# Depend on the source, not the binary; we don't need to regenerate the -# binary when any source file changes, only the main one. -# Use -o so that the `missing' program can infer the output file. -hello.1: $(top_srcdir)/src/hello.c $(common_mandeps) - $(HELP2MAN) --name="friendly greeting program" ../src/hello -o $@ diff --git a/man/Makefile.in b/man/Makefile.in deleted file mode 100644 index 356aa692..00000000 --- a/man/Makefile.in +++ /dev/null @@ -1,916 +0,0 @@ -# Makefile.in generated by automake 1.11.3 from Makefile.am. -# @configure_input@ - -# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, -# 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software -# Foundation, Inc. -# This Makefile.in is free software; the Free Software Foundation -# gives unlimited permission to copy and/or distribute it, -# with or without modifications, as long as this notice is preserved. - -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY, to the extent permitted by law; without -# even the implied warranty of MERCHANTABILITY or FITNESS FOR A -# PARTICULAR PURPOSE. - -@SET_MAKE@ - -# Makefile.am for hello/man. -# -# Copyright 2004, 2005, 2006, 2007, 2008, 2009, 2010 -# Free Software Foundation, Inc. -# -# This program is free software; you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation; either version 3, or (at your option) -# any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with this program. If not, see . -VPATH = @srcdir@ -pkgdatadir = $(datadir)/@PACKAGE@ -pkgincludedir = $(includedir)/@PACKAGE@ -pkglibdir = $(libdir)/@PACKAGE@ -am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd -install_sh_DATA = $(install_sh) -c -m 644 -install_sh_PROGRAM = $(install_sh) -c -install_sh_SCRIPT = $(install_sh) -c -INSTALL_HEADER = $(INSTALL_DATA) -transform = $(program_transform_name) -NORMAL_INSTALL = : -PRE_INSTALL = : -POST_INSTALL = : -NORMAL_UNINSTALL = : -PRE_UNINSTALL = : -POST_UNINSTALL = : -build_triplet = @build@ -host_triplet = @host@ -subdir = man -DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in ChangeLog -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -am__aclocal_m4_deps = $(top_srcdir)/m4/00gnulib.m4 \ - $(top_srcdir)/m4/close-stream.m4 $(top_srcdir)/m4/closeout.m4 \ - $(top_srcdir)/m4/codeset.m4 $(top_srcdir)/m4/configmake.m4 \ - $(top_srcdir)/m4/errno_h.m4 $(top_srcdir)/m4/error.m4 \ - $(top_srcdir)/m4/extensions.m4 $(top_srcdir)/m4/fcntl-o.m4 \ - $(top_srcdir)/m4/fpending.m4 $(top_srcdir)/m4/getopt.m4 \ - $(top_srcdir)/m4/gettext.m4 $(top_srcdir)/m4/glibc21.m4 \ - $(top_srcdir)/m4/gnulib-common.m4 \ - $(top_srcdir)/m4/gnulib-comp.m4 $(top_srcdir)/m4/iconv.m4 \ - $(top_srcdir)/m4/include_next.m4 $(top_srcdir)/m4/inline.m4 \ - $(top_srcdir)/m4/intlmacosx.m4 $(top_srcdir)/m4/lib-ld.m4 \ - $(top_srcdir)/m4/lib-link.m4 $(top_srcdir)/m4/lib-prefix.m4 \ - $(top_srcdir)/m4/localcharset.m4 $(top_srcdir)/m4/locale-fr.m4 \ - $(top_srcdir)/m4/locale-ja.m4 $(top_srcdir)/m4/locale-zh.m4 \ - $(top_srcdir)/m4/mbrtowc.m4 $(top_srcdir)/m4/mbsinit.m4 \ - $(top_srcdir)/m4/mbstate_t.m4 $(top_srcdir)/m4/msvc-inval.m4 \ - $(top_srcdir)/m4/msvc-nothrow.m4 $(top_srcdir)/m4/nls.m4 \ - $(top_srcdir)/m4/nocrash.m4 $(top_srcdir)/m4/po.m4 \ - $(top_srcdir)/m4/progtest.m4 $(top_srcdir)/m4/quotearg.m4 \ - $(top_srcdir)/m4/ssize_t.m4 $(top_srcdir)/m4/stdbool.m4 \ - $(top_srcdir)/m4/stddef_h.m4 $(top_srcdir)/m4/stdlib_h.m4 \ - $(top_srcdir)/m4/strerror.m4 $(top_srcdir)/m4/string_h.m4 \ - $(top_srcdir)/m4/sys_socket_h.m4 $(top_srcdir)/m4/unistd_h.m4 \ - $(top_srcdir)/m4/warn-on-use.m4 $(top_srcdir)/m4/wchar_h.m4 \ - $(top_srcdir)/m4/wchar_t.m4 $(top_srcdir)/m4/wctype_h.m4 \ - $(top_srcdir)/m4/wint_t.m4 $(top_srcdir)/m4/xalloc.m4 \ - $(top_srcdir)/configure.ac -am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ - $(ACLOCAL_M4) -mkinstalldirs = $(install_sh) -d -CONFIG_HEADER = $(top_builddir)/config.h -CONFIG_CLEAN_FILES = -CONFIG_CLEAN_VPATH_FILES = -SOURCES = -DIST_SOURCES = -am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; -am__vpath_adj = case $$p in \ - $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ - *) f=$$p;; \ - esac; -am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; -am__install_max = 40 -am__nobase_strip_setup = \ - srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` -am__nobase_strip = \ - for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" -am__nobase_list = $(am__nobase_strip_setup); \ - for p in $$list; do echo "$$p $$p"; done | \ - sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ - $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ - if (++n[$$2] == $(am__install_max)) \ - { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ - END { for (dir in files) print dir, files[dir] }' -am__base_list = \ - sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ - sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' -am__uninstall_files_from_dir = { \ - test -z "$$files" \ - || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ - || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ - $(am__cd) "$$dir" && rm -f $$files; }; \ - } -man1dir = $(mandir)/man1 -am__installdirs = "$(DESTDIR)$(man1dir)" -NROFF = nroff -MANS = $(man_MANS) -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) -pkglibexecdir = @pkglibexecdir@ -ACLOCAL = @ACLOCAL@ -AMTAR = @AMTAR@ -AR = @AR@ -ARFLAGS = @ARFLAGS@ -AUTOCONF = @AUTOCONF@ -AUTOHEADER = @AUTOHEADER@ -AUTOMAKE = @AUTOMAKE@ -AWK = @AWK@ -CC = @CC@ -CCDEPMODE = @CCDEPMODE@ -CFLAGS = @CFLAGS@ -CONFIG_INCLUDE = @CONFIG_INCLUDE@ -CPP = @CPP@ -CPPFLAGS = @CPPFLAGS@ -CYGPATH_W = @CYGPATH_W@ -DEFS = @DEFS@ -DEPDIR = @DEPDIR@ -ECHO_C = @ECHO_C@ -ECHO_N = @ECHO_N@ -ECHO_T = @ECHO_T@ -EGREP = @EGREP@ -EMULTIHOP_HIDDEN = @EMULTIHOP_HIDDEN@ -EMULTIHOP_VALUE = @EMULTIHOP_VALUE@ -ENOLINK_HIDDEN = @ENOLINK_HIDDEN@ -ENOLINK_VALUE = @ENOLINK_VALUE@ -EOVERFLOW_HIDDEN = @EOVERFLOW_HIDDEN@ -EOVERFLOW_VALUE = @EOVERFLOW_VALUE@ -ERRNO_H = @ERRNO_H@ -EXEEXT = @EXEEXT@ -GETOPT_H = @GETOPT_H@ -GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@ -GLIBC21 = @GLIBC21@ -GMSGFMT = @GMSGFMT@ -GMSGFMT_015 = @GMSGFMT_015@ -GNULIB_ATOLL = @GNULIB_ATOLL@ -GNULIB_BTOWC = @GNULIB_BTOWC@ -GNULIB_CALLOC_POSIX = @GNULIB_CALLOC_POSIX@ -GNULIB_CANONICALIZE_FILE_NAME = @GNULIB_CANONICALIZE_FILE_NAME@ -GNULIB_CHDIR = @GNULIB_CHDIR@ -GNULIB_CHOWN = @GNULIB_CHOWN@ -GNULIB_CLOSE = @GNULIB_CLOSE@ -GNULIB_DUP = @GNULIB_DUP@ -GNULIB_DUP2 = @GNULIB_DUP2@ -GNULIB_DUP3 = @GNULIB_DUP3@ -GNULIB_ENVIRON = @GNULIB_ENVIRON@ -GNULIB_EUIDACCESS = @GNULIB_EUIDACCESS@ -GNULIB_FACCESSAT = @GNULIB_FACCESSAT@ -GNULIB_FCHDIR = @GNULIB_FCHDIR@ -GNULIB_FCHOWNAT = @GNULIB_FCHOWNAT@ -GNULIB_FDATASYNC = @GNULIB_FDATASYNC@ -GNULIB_FFSL = @GNULIB_FFSL@ -GNULIB_FFSLL = @GNULIB_FFSLL@ -GNULIB_FSYNC = @GNULIB_FSYNC@ -GNULIB_FTRUNCATE = @GNULIB_FTRUNCATE@ -GNULIB_GETCWD = @GNULIB_GETCWD@ -GNULIB_GETDOMAINNAME = @GNULIB_GETDOMAINNAME@ -GNULIB_GETDTABLESIZE = @GNULIB_GETDTABLESIZE@ -GNULIB_GETGROUPS = @GNULIB_GETGROUPS@ -GNULIB_GETHOSTNAME = @GNULIB_GETHOSTNAME@ -GNULIB_GETLOADAVG = @GNULIB_GETLOADAVG@ -GNULIB_GETLOGIN = @GNULIB_GETLOGIN@ -GNULIB_GETLOGIN_R = @GNULIB_GETLOGIN_R@ -GNULIB_GETPAGESIZE = @GNULIB_GETPAGESIZE@ -GNULIB_GETSUBOPT = @GNULIB_GETSUBOPT@ -GNULIB_GETUSERSHELL = @GNULIB_GETUSERSHELL@ -GNULIB_GL_UNISTD_H_GETOPT = @GNULIB_GL_UNISTD_H_GETOPT@ -GNULIB_GRANTPT = @GNULIB_GRANTPT@ -GNULIB_GROUP_MEMBER = @GNULIB_GROUP_MEMBER@ -GNULIB_ISATTY = @GNULIB_ISATTY@ -GNULIB_ISWBLANK = @GNULIB_ISWBLANK@ -GNULIB_ISWCTYPE = @GNULIB_ISWCTYPE@ -GNULIB_LCHOWN = @GNULIB_LCHOWN@ -GNULIB_LINK = @GNULIB_LINK@ -GNULIB_LINKAT = @GNULIB_LINKAT@ -GNULIB_LSEEK = @GNULIB_LSEEK@ -GNULIB_MALLOC_POSIX = @GNULIB_MALLOC_POSIX@ -GNULIB_MBRLEN = @GNULIB_MBRLEN@ -GNULIB_MBRTOWC = @GNULIB_MBRTOWC@ -GNULIB_MBSCASECMP = @GNULIB_MBSCASECMP@ -GNULIB_MBSCASESTR = @GNULIB_MBSCASESTR@ -GNULIB_MBSCHR = @GNULIB_MBSCHR@ -GNULIB_MBSCSPN = @GNULIB_MBSCSPN@ -GNULIB_MBSINIT = @GNULIB_MBSINIT@ -GNULIB_MBSLEN = @GNULIB_MBSLEN@ -GNULIB_MBSNCASECMP = @GNULIB_MBSNCASECMP@ -GNULIB_MBSNLEN = @GNULIB_MBSNLEN@ -GNULIB_MBSNRTOWCS = @GNULIB_MBSNRTOWCS@ -GNULIB_MBSPBRK = @GNULIB_MBSPBRK@ -GNULIB_MBSPCASECMP = @GNULIB_MBSPCASECMP@ -GNULIB_MBSRCHR = @GNULIB_MBSRCHR@ -GNULIB_MBSRTOWCS = @GNULIB_MBSRTOWCS@ -GNULIB_MBSSEP = @GNULIB_MBSSEP@ -GNULIB_MBSSPN = @GNULIB_MBSSPN@ -GNULIB_MBSSTR = @GNULIB_MBSSTR@ -GNULIB_MBSTOK_R = @GNULIB_MBSTOK_R@ -GNULIB_MBTOWC = @GNULIB_MBTOWC@ -GNULIB_MEMCHR = @GNULIB_MEMCHR@ -GNULIB_MEMMEM = @GNULIB_MEMMEM@ -GNULIB_MEMPCPY = @GNULIB_MEMPCPY@ -GNULIB_MEMRCHR = @GNULIB_MEMRCHR@ -GNULIB_MKDTEMP = @GNULIB_MKDTEMP@ -GNULIB_MKOSTEMP = @GNULIB_MKOSTEMP@ -GNULIB_MKOSTEMPS = @GNULIB_MKOSTEMPS@ -GNULIB_MKSTEMP = @GNULIB_MKSTEMP@ -GNULIB_MKSTEMPS = @GNULIB_MKSTEMPS@ -GNULIB_PIPE = @GNULIB_PIPE@ -GNULIB_PIPE2 = @GNULIB_PIPE2@ -GNULIB_POSIX_OPENPT = @GNULIB_POSIX_OPENPT@ -GNULIB_PREAD = @GNULIB_PREAD@ -GNULIB_PTSNAME = @GNULIB_PTSNAME@ -GNULIB_PTSNAME_R = @GNULIB_PTSNAME_R@ -GNULIB_PUTENV = @GNULIB_PUTENV@ -GNULIB_PWRITE = @GNULIB_PWRITE@ -GNULIB_RANDOM = @GNULIB_RANDOM@ -GNULIB_RANDOM_R = @GNULIB_RANDOM_R@ -GNULIB_RAWMEMCHR = @GNULIB_RAWMEMCHR@ -GNULIB_READ = @GNULIB_READ@ -GNULIB_READLINK = @GNULIB_READLINK@ -GNULIB_READLINKAT = @GNULIB_READLINKAT@ -GNULIB_REALLOC_POSIX = @GNULIB_REALLOC_POSIX@ -GNULIB_REALPATH = @GNULIB_REALPATH@ -GNULIB_RMDIR = @GNULIB_RMDIR@ -GNULIB_RPMATCH = @GNULIB_RPMATCH@ -GNULIB_SETENV = @GNULIB_SETENV@ -GNULIB_SETHOSTNAME = @GNULIB_SETHOSTNAME@ -GNULIB_SLEEP = @GNULIB_SLEEP@ -GNULIB_STPCPY = @GNULIB_STPCPY@ -GNULIB_STPNCPY = @GNULIB_STPNCPY@ -GNULIB_STRCASESTR = @GNULIB_STRCASESTR@ -GNULIB_STRCHRNUL = @GNULIB_STRCHRNUL@ -GNULIB_STRDUP = @GNULIB_STRDUP@ -GNULIB_STRERROR = @GNULIB_STRERROR@ -GNULIB_STRERROR_R = @GNULIB_STRERROR_R@ -GNULIB_STRNCAT = @GNULIB_STRNCAT@ -GNULIB_STRNDUP = @GNULIB_STRNDUP@ -GNULIB_STRNLEN = @GNULIB_STRNLEN@ -GNULIB_STRPBRK = @GNULIB_STRPBRK@ -GNULIB_STRSEP = @GNULIB_STRSEP@ -GNULIB_STRSIGNAL = @GNULIB_STRSIGNAL@ -GNULIB_STRSTR = @GNULIB_STRSTR@ -GNULIB_STRTOD = @GNULIB_STRTOD@ -GNULIB_STRTOK_R = @GNULIB_STRTOK_R@ -GNULIB_STRTOLL = @GNULIB_STRTOLL@ -GNULIB_STRTOULL = @GNULIB_STRTOULL@ -GNULIB_STRVERSCMP = @GNULIB_STRVERSCMP@ -GNULIB_SYMLINK = @GNULIB_SYMLINK@ -GNULIB_SYMLINKAT = @GNULIB_SYMLINKAT@ -GNULIB_SYSTEM_POSIX = @GNULIB_SYSTEM_POSIX@ -GNULIB_TOWCTRANS = @GNULIB_TOWCTRANS@ -GNULIB_TTYNAME_R = @GNULIB_TTYNAME_R@ -GNULIB_UNISTD_H_NONBLOCKING = @GNULIB_UNISTD_H_NONBLOCKING@ -GNULIB_UNISTD_H_SIGPIPE = @GNULIB_UNISTD_H_SIGPIPE@ -GNULIB_UNLINK = @GNULIB_UNLINK@ -GNULIB_UNLINKAT = @GNULIB_UNLINKAT@ -GNULIB_UNLOCKPT = @GNULIB_UNLOCKPT@ -GNULIB_UNSETENV = @GNULIB_UNSETENV@ -GNULIB_USLEEP = @GNULIB_USLEEP@ -GNULIB_WCPCPY = @GNULIB_WCPCPY@ -GNULIB_WCPNCPY = @GNULIB_WCPNCPY@ -GNULIB_WCRTOMB = @GNULIB_WCRTOMB@ -GNULIB_WCSCASECMP = @GNULIB_WCSCASECMP@ -GNULIB_WCSCAT = @GNULIB_WCSCAT@ -GNULIB_WCSCHR = @GNULIB_WCSCHR@ -GNULIB_WCSCMP = @GNULIB_WCSCMP@ -GNULIB_WCSCOLL = @GNULIB_WCSCOLL@ -GNULIB_WCSCPY = @GNULIB_WCSCPY@ -GNULIB_WCSCSPN = @GNULIB_WCSCSPN@ -GNULIB_WCSDUP = @GNULIB_WCSDUP@ -GNULIB_WCSLEN = @GNULIB_WCSLEN@ -GNULIB_WCSNCASECMP = @GNULIB_WCSNCASECMP@ -GNULIB_WCSNCAT = @GNULIB_WCSNCAT@ -GNULIB_WCSNCMP = @GNULIB_WCSNCMP@ -GNULIB_WCSNCPY = @GNULIB_WCSNCPY@ -GNULIB_WCSNLEN = @GNULIB_WCSNLEN@ -GNULIB_WCSNRTOMBS = @GNULIB_WCSNRTOMBS@ -GNULIB_WCSPBRK = @GNULIB_WCSPBRK@ -GNULIB_WCSRCHR = @GNULIB_WCSRCHR@ -GNULIB_WCSRTOMBS = @GNULIB_WCSRTOMBS@ -GNULIB_WCSSPN = @GNULIB_WCSSPN@ -GNULIB_WCSSTR = @GNULIB_WCSSTR@ -GNULIB_WCSTOK = @GNULIB_WCSTOK@ -GNULIB_WCSWIDTH = @GNULIB_WCSWIDTH@ -GNULIB_WCSXFRM = @GNULIB_WCSXFRM@ -GNULIB_WCTOB = @GNULIB_WCTOB@ -GNULIB_WCTOMB = @GNULIB_WCTOMB@ -GNULIB_WCTRANS = @GNULIB_WCTRANS@ -GNULIB_WCTYPE = @GNULIB_WCTYPE@ -GNULIB_WCWIDTH = @GNULIB_WCWIDTH@ -GNULIB_WMEMCHR = @GNULIB_WMEMCHR@ -GNULIB_WMEMCMP = @GNULIB_WMEMCMP@ -GNULIB_WMEMCPY = @GNULIB_WMEMCPY@ -GNULIB_WMEMMOVE = @GNULIB_WMEMMOVE@ -GNULIB_WMEMSET = @GNULIB_WMEMSET@ -GNULIB_WRITE = @GNULIB_WRITE@ -GNULIB__EXIT = @GNULIB__EXIT@ -GREP = @GREP@ -HAVE_ATOLL = @HAVE_ATOLL@ -HAVE_BTOWC = @HAVE_BTOWC@ -HAVE_CANONICALIZE_FILE_NAME = @HAVE_CANONICALIZE_FILE_NAME@ -HAVE_CHOWN = @HAVE_CHOWN@ -HAVE_DECL_ENVIRON = @HAVE_DECL_ENVIRON@ -HAVE_DECL_FCHDIR = @HAVE_DECL_FCHDIR@ -HAVE_DECL_FDATASYNC = @HAVE_DECL_FDATASYNC@ -HAVE_DECL_GETDOMAINNAME = @HAVE_DECL_GETDOMAINNAME@ -HAVE_DECL_GETLOADAVG = @HAVE_DECL_GETLOADAVG@ -HAVE_DECL_GETLOGIN_R = @HAVE_DECL_GETLOGIN_R@ -HAVE_DECL_GETPAGESIZE = @HAVE_DECL_GETPAGESIZE@ -HAVE_DECL_GETUSERSHELL = @HAVE_DECL_GETUSERSHELL@ -HAVE_DECL_MEMMEM = @HAVE_DECL_MEMMEM@ -HAVE_DECL_MEMRCHR = @HAVE_DECL_MEMRCHR@ -HAVE_DECL_SETENV = @HAVE_DECL_SETENV@ -HAVE_DECL_SETHOSTNAME = @HAVE_DECL_SETHOSTNAME@ -HAVE_DECL_STRDUP = @HAVE_DECL_STRDUP@ -HAVE_DECL_STRERROR_R = @HAVE_DECL_STRERROR_R@ -HAVE_DECL_STRNDUP = @HAVE_DECL_STRNDUP@ -HAVE_DECL_STRNLEN = @HAVE_DECL_STRNLEN@ -HAVE_DECL_STRSIGNAL = @HAVE_DECL_STRSIGNAL@ -HAVE_DECL_STRTOK_R = @HAVE_DECL_STRTOK_R@ -HAVE_DECL_TTYNAME_R = @HAVE_DECL_TTYNAME_R@ -HAVE_DECL_UNSETENV = @HAVE_DECL_UNSETENV@ -HAVE_DECL_WCTOB = @HAVE_DECL_WCTOB@ -HAVE_DECL_WCWIDTH = @HAVE_DECL_WCWIDTH@ -HAVE_DUP2 = @HAVE_DUP2@ -HAVE_DUP3 = @HAVE_DUP3@ -HAVE_EUIDACCESS = @HAVE_EUIDACCESS@ -HAVE_FACCESSAT = @HAVE_FACCESSAT@ -HAVE_FCHDIR = @HAVE_FCHDIR@ -HAVE_FCHOWNAT = @HAVE_FCHOWNAT@ -HAVE_FDATASYNC = @HAVE_FDATASYNC@ -HAVE_FEATURES_H = @HAVE_FEATURES_H@ -HAVE_FFSL = @HAVE_FFSL@ -HAVE_FFSLL = @HAVE_FFSLL@ -HAVE_FSYNC = @HAVE_FSYNC@ -HAVE_FTRUNCATE = @HAVE_FTRUNCATE@ -HAVE_GETDTABLESIZE = @HAVE_GETDTABLESIZE@ -HAVE_GETGROUPS = @HAVE_GETGROUPS@ -HAVE_GETHOSTNAME = @HAVE_GETHOSTNAME@ -HAVE_GETLOGIN = @HAVE_GETLOGIN@ -HAVE_GETOPT_H = @HAVE_GETOPT_H@ -HAVE_GETPAGESIZE = @HAVE_GETPAGESIZE@ -HAVE_GETSUBOPT = @HAVE_GETSUBOPT@ -HAVE_GRANTPT = @HAVE_GRANTPT@ -HAVE_GROUP_MEMBER = @HAVE_GROUP_MEMBER@ -HAVE_ISWBLANK = @HAVE_ISWBLANK@ -HAVE_ISWCNTRL = @HAVE_ISWCNTRL@ -HAVE_LCHOWN = @HAVE_LCHOWN@ -HAVE_LINK = @HAVE_LINK@ -HAVE_LINKAT = @HAVE_LINKAT@ -HAVE_MBRLEN = @HAVE_MBRLEN@ -HAVE_MBRTOWC = @HAVE_MBRTOWC@ -HAVE_MBSINIT = @HAVE_MBSINIT@ -HAVE_MBSLEN = @HAVE_MBSLEN@ -HAVE_MBSNRTOWCS = @HAVE_MBSNRTOWCS@ -HAVE_MBSRTOWCS = @HAVE_MBSRTOWCS@ -HAVE_MEMCHR = @HAVE_MEMCHR@ -HAVE_MEMPCPY = @HAVE_MEMPCPY@ -HAVE_MKDTEMP = @HAVE_MKDTEMP@ -HAVE_MKOSTEMP = @HAVE_MKOSTEMP@ -HAVE_MKOSTEMPS = @HAVE_MKOSTEMPS@ -HAVE_MKSTEMP = @HAVE_MKSTEMP@ -HAVE_MKSTEMPS = @HAVE_MKSTEMPS@ -HAVE_MSVC_INVALID_PARAMETER_HANDLER = @HAVE_MSVC_INVALID_PARAMETER_HANDLER@ -HAVE_OS_H = @HAVE_OS_H@ -HAVE_PIPE = @HAVE_PIPE@ -HAVE_PIPE2 = @HAVE_PIPE2@ -HAVE_POSIX_OPENPT = @HAVE_POSIX_OPENPT@ -HAVE_PREAD = @HAVE_PREAD@ -HAVE_PTSNAME = @HAVE_PTSNAME@ -HAVE_PTSNAME_R = @HAVE_PTSNAME_R@ -HAVE_PWRITE = @HAVE_PWRITE@ -HAVE_RANDOM = @HAVE_RANDOM@ -HAVE_RANDOM_H = @HAVE_RANDOM_H@ -HAVE_RANDOM_R = @HAVE_RANDOM_R@ -HAVE_RAWMEMCHR = @HAVE_RAWMEMCHR@ -HAVE_READLINK = @HAVE_READLINK@ -HAVE_READLINKAT = @HAVE_READLINKAT@ -HAVE_REALPATH = @HAVE_REALPATH@ -HAVE_RPMATCH = @HAVE_RPMATCH@ -HAVE_SETENV = @HAVE_SETENV@ -HAVE_SETHOSTNAME = @HAVE_SETHOSTNAME@ -HAVE_SLEEP = @HAVE_SLEEP@ -HAVE_STPCPY = @HAVE_STPCPY@ -HAVE_STPNCPY = @HAVE_STPNCPY@ -HAVE_STRCASESTR = @HAVE_STRCASESTR@ -HAVE_STRCHRNUL = @HAVE_STRCHRNUL@ -HAVE_STRPBRK = @HAVE_STRPBRK@ -HAVE_STRSEP = @HAVE_STRSEP@ -HAVE_STRTOD = @HAVE_STRTOD@ -HAVE_STRTOLL = @HAVE_STRTOLL@ -HAVE_STRTOULL = @HAVE_STRTOULL@ -HAVE_STRUCT_RANDOM_DATA = @HAVE_STRUCT_RANDOM_DATA@ -HAVE_STRVERSCMP = @HAVE_STRVERSCMP@ -HAVE_SYMLINK = @HAVE_SYMLINK@ -HAVE_SYMLINKAT = @HAVE_SYMLINKAT@ -HAVE_SYS_LOADAVG_H = @HAVE_SYS_LOADAVG_H@ -HAVE_SYS_PARAM_H = @HAVE_SYS_PARAM_H@ -HAVE_UNISTD_H = @HAVE_UNISTD_H@ -HAVE_UNLINKAT = @HAVE_UNLINKAT@ -HAVE_UNLOCKPT = @HAVE_UNLOCKPT@ -HAVE_USLEEP = @HAVE_USLEEP@ -HAVE_WCHAR_H = @HAVE_WCHAR_H@ -HAVE_WCHAR_T = @HAVE_WCHAR_T@ -HAVE_WCPCPY = @HAVE_WCPCPY@ -HAVE_WCPNCPY = @HAVE_WCPNCPY@ -HAVE_WCRTOMB = @HAVE_WCRTOMB@ -HAVE_WCSCASECMP = @HAVE_WCSCASECMP@ -HAVE_WCSCAT = @HAVE_WCSCAT@ -HAVE_WCSCHR = @HAVE_WCSCHR@ -HAVE_WCSCMP = @HAVE_WCSCMP@ -HAVE_WCSCOLL = @HAVE_WCSCOLL@ -HAVE_WCSCPY = @HAVE_WCSCPY@ -HAVE_WCSCSPN = @HAVE_WCSCSPN@ -HAVE_WCSDUP = @HAVE_WCSDUP@ -HAVE_WCSLEN = @HAVE_WCSLEN@ -HAVE_WCSNCASECMP = @HAVE_WCSNCASECMP@ -HAVE_WCSNCAT = @HAVE_WCSNCAT@ -HAVE_WCSNCMP = @HAVE_WCSNCMP@ -HAVE_WCSNCPY = @HAVE_WCSNCPY@ -HAVE_WCSNLEN = @HAVE_WCSNLEN@ -HAVE_WCSNRTOMBS = @HAVE_WCSNRTOMBS@ -HAVE_WCSPBRK = @HAVE_WCSPBRK@ -HAVE_WCSRCHR = @HAVE_WCSRCHR@ -HAVE_WCSRTOMBS = @HAVE_WCSRTOMBS@ -HAVE_WCSSPN = @HAVE_WCSSPN@ -HAVE_WCSSTR = @HAVE_WCSSTR@ -HAVE_WCSTOK = @HAVE_WCSTOK@ -HAVE_WCSWIDTH = @HAVE_WCSWIDTH@ -HAVE_WCSXFRM = @HAVE_WCSXFRM@ -HAVE_WCTRANS_T = @HAVE_WCTRANS_T@ -HAVE_WCTYPE_H = @HAVE_WCTYPE_H@ -HAVE_WCTYPE_T = @HAVE_WCTYPE_T@ -HAVE_WINSOCK2_H = @HAVE_WINSOCK2_H@ -HAVE_WINT_T = @HAVE_WINT_T@ -HAVE_WMEMCHR = @HAVE_WMEMCHR@ -HAVE_WMEMCMP = @HAVE_WMEMCMP@ -HAVE_WMEMCPY = @HAVE_WMEMCPY@ -HAVE_WMEMMOVE = @HAVE_WMEMMOVE@ -HAVE_WMEMSET = @HAVE_WMEMSET@ -HAVE__BOOL = @HAVE__BOOL@ -HAVE__EXIT = @HAVE__EXIT@ -HELP2MAN = @HELP2MAN@ -INCLUDE_NEXT = @INCLUDE_NEXT@ -INCLUDE_NEXT_AS_FIRST_DIRECTIVE = @INCLUDE_NEXT_AS_FIRST_DIRECTIVE@ -INSTALL = @INSTALL@ -INSTALL_DATA = @INSTALL_DATA@ -INSTALL_PROGRAM = @INSTALL_PROGRAM@ -INSTALL_SCRIPT = @INSTALL_SCRIPT@ -INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ -INTLLIBS = @INTLLIBS@ -INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@ -LDFLAGS = @LDFLAGS@ -LIBHELLO_LIBDEPS = @LIBHELLO_LIBDEPS@ -LIBHELLO_LTLIBDEPS = @LIBHELLO_LTLIBDEPS@ -LIBICONV = @LIBICONV@ -LIBINTL = @LIBINTL@ -LIBOBJS = @LIBOBJS@ -LIBS = @LIBS@ -LOCALCHARSET_TESTS_ENVIRONMENT = @LOCALCHARSET_TESTS_ENVIRONMENT@ -LOCALE_FR_UTF8 = @LOCALE_FR_UTF8@ -LOCALE_JA = @LOCALE_JA@ -LOCALE_ZH_CN = @LOCALE_ZH_CN@ -LTLIBICONV = @LTLIBICONV@ -LTLIBINTL = @LTLIBINTL@ -LTLIBOBJS = @LTLIBOBJS@ -MAKEINFO = @MAKEINFO@ -MKDIR_P = @MKDIR_P@ -MSGFMT = @MSGFMT@ -MSGFMT_015 = @MSGFMT_015@ -MSGMERGE = @MSGMERGE@ -NEXT_AS_FIRST_DIRECTIVE_ERRNO_H = @NEXT_AS_FIRST_DIRECTIVE_ERRNO_H@ -NEXT_AS_FIRST_DIRECTIVE_GETOPT_H = @NEXT_AS_FIRST_DIRECTIVE_GETOPT_H@ -NEXT_AS_FIRST_DIRECTIVE_STDDEF_H = @NEXT_AS_FIRST_DIRECTIVE_STDDEF_H@ -NEXT_AS_FIRST_DIRECTIVE_STDLIB_H = @NEXT_AS_FIRST_DIRECTIVE_STDLIB_H@ -NEXT_AS_FIRST_DIRECTIVE_STRING_H = @NEXT_AS_FIRST_DIRECTIVE_STRING_H@ -NEXT_AS_FIRST_DIRECTIVE_UNISTD_H = @NEXT_AS_FIRST_DIRECTIVE_UNISTD_H@ -NEXT_AS_FIRST_DIRECTIVE_WCHAR_H = @NEXT_AS_FIRST_DIRECTIVE_WCHAR_H@ -NEXT_AS_FIRST_DIRECTIVE_WCTYPE_H = @NEXT_AS_FIRST_DIRECTIVE_WCTYPE_H@ -NEXT_ERRNO_H = @NEXT_ERRNO_H@ -NEXT_GETOPT_H = @NEXT_GETOPT_H@ -NEXT_STDDEF_H = @NEXT_STDDEF_H@ -NEXT_STDLIB_H = @NEXT_STDLIB_H@ -NEXT_STRING_H = @NEXT_STRING_H@ -NEXT_UNISTD_H = @NEXT_UNISTD_H@ -NEXT_WCHAR_H = @NEXT_WCHAR_H@ -NEXT_WCTYPE_H = @NEXT_WCTYPE_H@ -OBJEXT = @OBJEXT@ -PACKAGE = @PACKAGE@ -PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ -PACKAGE_NAME = @PACKAGE_NAME@ -PACKAGE_STRING = @PACKAGE_STRING@ -PACKAGE_TARNAME = @PACKAGE_TARNAME@ -PACKAGE_URL = @PACKAGE_URL@ -PACKAGE_VERSION = @PACKAGE_VERSION@ -PATH_SEPARATOR = @PATH_SEPARATOR@ -POSUB = @POSUB@ -PRAGMA_COLUMNS = @PRAGMA_COLUMNS@ -PRAGMA_SYSTEM_HEADER = @PRAGMA_SYSTEM_HEADER@ -RANLIB = @RANLIB@ -REPLACE_BTOWC = @REPLACE_BTOWC@ -REPLACE_CALLOC = @REPLACE_CALLOC@ -REPLACE_CANONICALIZE_FILE_NAME = @REPLACE_CANONICALIZE_FILE_NAME@ -REPLACE_CHOWN = @REPLACE_CHOWN@ -REPLACE_CLOSE = @REPLACE_CLOSE@ -REPLACE_DUP = @REPLACE_DUP@ -REPLACE_DUP2 = @REPLACE_DUP2@ -REPLACE_FCHOWNAT = @REPLACE_FCHOWNAT@ -REPLACE_GETCWD = @REPLACE_GETCWD@ -REPLACE_GETDOMAINNAME = @REPLACE_GETDOMAINNAME@ -REPLACE_GETGROUPS = @REPLACE_GETGROUPS@ -REPLACE_GETLOGIN_R = @REPLACE_GETLOGIN_R@ -REPLACE_GETPAGESIZE = @REPLACE_GETPAGESIZE@ -REPLACE_ISATTY = @REPLACE_ISATTY@ -REPLACE_ISWBLANK = @REPLACE_ISWBLANK@ -REPLACE_ISWCNTRL = @REPLACE_ISWCNTRL@ -REPLACE_LCHOWN = @REPLACE_LCHOWN@ -REPLACE_LINK = @REPLACE_LINK@ -REPLACE_LINKAT = @REPLACE_LINKAT@ -REPLACE_LSEEK = @REPLACE_LSEEK@ -REPLACE_MALLOC = @REPLACE_MALLOC@ -REPLACE_MBRLEN = @REPLACE_MBRLEN@ -REPLACE_MBRTOWC = @REPLACE_MBRTOWC@ -REPLACE_MBSINIT = @REPLACE_MBSINIT@ -REPLACE_MBSNRTOWCS = @REPLACE_MBSNRTOWCS@ -REPLACE_MBSRTOWCS = @REPLACE_MBSRTOWCS@ -REPLACE_MBSTATE_T = @REPLACE_MBSTATE_T@ -REPLACE_MBTOWC = @REPLACE_MBTOWC@ -REPLACE_MEMCHR = @REPLACE_MEMCHR@ -REPLACE_MEMMEM = @REPLACE_MEMMEM@ -REPLACE_MKSTEMP = @REPLACE_MKSTEMP@ -REPLACE_NULL = @REPLACE_NULL@ -REPLACE_PREAD = @REPLACE_PREAD@ -REPLACE_PTSNAME_R = @REPLACE_PTSNAME_R@ -REPLACE_PUTENV = @REPLACE_PUTENV@ -REPLACE_PWRITE = @REPLACE_PWRITE@ -REPLACE_RANDOM_R = @REPLACE_RANDOM_R@ -REPLACE_READ = @REPLACE_READ@ -REPLACE_READLINK = @REPLACE_READLINK@ -REPLACE_REALLOC = @REPLACE_REALLOC@ -REPLACE_REALPATH = @REPLACE_REALPATH@ -REPLACE_RMDIR = @REPLACE_RMDIR@ -REPLACE_SETENV = @REPLACE_SETENV@ -REPLACE_SLEEP = @REPLACE_SLEEP@ -REPLACE_STPNCPY = @REPLACE_STPNCPY@ -REPLACE_STRCASESTR = @REPLACE_STRCASESTR@ -REPLACE_STRCHRNUL = @REPLACE_STRCHRNUL@ -REPLACE_STRDUP = @REPLACE_STRDUP@ -REPLACE_STRERROR = @REPLACE_STRERROR@ -REPLACE_STRERROR_R = @REPLACE_STRERROR_R@ -REPLACE_STRNCAT = @REPLACE_STRNCAT@ -REPLACE_STRNDUP = @REPLACE_STRNDUP@ -REPLACE_STRNLEN = @REPLACE_STRNLEN@ -REPLACE_STRSIGNAL = @REPLACE_STRSIGNAL@ -REPLACE_STRSTR = @REPLACE_STRSTR@ -REPLACE_STRTOD = @REPLACE_STRTOD@ -REPLACE_STRTOK_R = @REPLACE_STRTOK_R@ -REPLACE_SYMLINK = @REPLACE_SYMLINK@ -REPLACE_TOWLOWER = @REPLACE_TOWLOWER@ -REPLACE_TTYNAME_R = @REPLACE_TTYNAME_R@ -REPLACE_UNLINK = @REPLACE_UNLINK@ -REPLACE_UNLINKAT = @REPLACE_UNLINKAT@ -REPLACE_UNSETENV = @REPLACE_UNSETENV@ -REPLACE_USLEEP = @REPLACE_USLEEP@ -REPLACE_WCRTOMB = @REPLACE_WCRTOMB@ -REPLACE_WCSNRTOMBS = @REPLACE_WCSNRTOMBS@ -REPLACE_WCSRTOMBS = @REPLACE_WCSRTOMBS@ -REPLACE_WCSWIDTH = @REPLACE_WCSWIDTH@ -REPLACE_WCTOB = @REPLACE_WCTOB@ -REPLACE_WCTOMB = @REPLACE_WCTOMB@ -REPLACE_WCWIDTH = @REPLACE_WCWIDTH@ -REPLACE_WRITE = @REPLACE_WRITE@ -SET_MAKE = @SET_MAKE@ -SHELL = @SHELL@ -STDBOOL_H = @STDBOOL_H@ -STDDEF_H = @STDDEF_H@ -STRIP = @STRIP@ -UNDEFINE_STRTOK_R = @UNDEFINE_STRTOK_R@ -UNISTD_H_HAVE_WINSOCK2_H = @UNISTD_H_HAVE_WINSOCK2_H@ -UNISTD_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS = @UNISTD_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS@ -USE_NLS = @USE_NLS@ -VERSION = @VERSION@ -XGETTEXT = @XGETTEXT@ -XGETTEXT_015 = @XGETTEXT_015@ -XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@ -abs_builddir = @abs_builddir@ -abs_srcdir = @abs_srcdir@ -abs_top_builddir = @abs_top_builddir@ -abs_top_srcdir = @abs_top_srcdir@ -ac_ct_CC = @ac_ct_CC@ -am__include = @am__include@ -am__leading_dot = @am__leading_dot@ -am__quote = @am__quote@ -am__tar = @am__tar@ -am__untar = @am__untar@ -bindir = @bindir@ -build = @build@ -build_alias = @build_alias@ -build_cpu = @build_cpu@ -build_os = @build_os@ -build_vendor = @build_vendor@ -builddir = @builddir@ -datadir = @datadir@ -datarootdir = @datarootdir@ -docdir = @docdir@ -dvidir = @dvidir@ -exec_prefix = @exec_prefix@ -gl_LIBOBJS = @gl_LIBOBJS@ -gl_LTLIBOBJS = @gl_LTLIBOBJS@ -gltests_LIBOBJS = @gltests_LIBOBJS@ -gltests_LTLIBOBJS = @gltests_LTLIBOBJS@ -gltests_WITNESS = @gltests_WITNESS@ -host = @host@ -host_alias = @host_alias@ -host_cpu = @host_cpu@ -host_os = @host_os@ -host_vendor = @host_vendor@ -htmldir = @htmldir@ -includedir = @includedir@ -infodir = @infodir@ -install_sh = @install_sh@ -libdir = @libdir@ -libexecdir = @libexecdir@ -lispdir = @lispdir@ -localedir = @localedir@ -localstatedir = @localstatedir@ -mandir = @mandir@ -mkdir_p = @mkdir_p@ -oldincludedir = @oldincludedir@ -pdfdir = @pdfdir@ -prefix = @prefix@ -program_transform_name = @program_transform_name@ -psdir = @psdir@ -sbindir = @sbindir@ -sharedstatedir = @sharedstatedir@ -srcdir = @srcdir@ -sysconfdir = @sysconfdir@ -target_alias = @target_alias@ -top_build_prefix = @top_build_prefix@ -top_builddir = @top_builddir@ -top_srcdir = @top_srcdir@ -man_MANS = hello.1 -EXTRA_DIST = $(man_MANS) -MAINTAINERCLEANFILES = $(man_MANS) - -# The man pages depend on the --help strings and the version number. -common_mandeps = $(top_srcdir)/configure.ac -all: all-am - -.SUFFIXES: -$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) - @for dep in $?; do \ - case '$(am__configure_deps)' in \ - *$$dep*) \ - ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ - && { if test -f $@; then exit 0; else break; fi; }; \ - exit 1;; \ - esac; \ - done; \ - echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu man/Makefile'; \ - $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --gnu man/Makefile -.PRECIOUS: Makefile -Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status - @case '$?' in \ - *config.status*) \ - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ - *) \ - echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ - esac; - -$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh - -$(top_srcdir)/configure: $(am__configure_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(ACLOCAL_M4): $(am__aclocal_m4_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(am__aclocal_m4_deps): -install-man1: $(man_MANS) - @$(NORMAL_INSTALL) - test -z "$(man1dir)" || $(MKDIR_P) "$(DESTDIR)$(man1dir)" - @list=''; test -n "$(man1dir)" || exit 0; \ - { for i in $$list; do echo "$$i"; done; \ - l2='$(man_MANS)'; for i in $$l2; do echo "$$i"; done | \ - sed -n '/\.1[a-z]*$$/p'; \ - } | while read p; do \ - if test -f $$p; then d=; else d="$(srcdir)/"; fi; \ - echo "$$d$$p"; echo "$$p"; \ - done | \ - sed -e 'n;s,.*/,,;p;h;s,.*\.,,;s,^[^1][0-9a-z]*$$,1,;x' \ - -e 's,\.[0-9a-z]*$$,,;$(transform);G;s,\n,.,' | \ - sed 'N;N;s,\n, ,g' | { \ - list=; while read file base inst; do \ - if test "$$base" = "$$inst"; then list="$$list $$file"; else \ - echo " $(INSTALL_DATA) '$$file' '$(DESTDIR)$(man1dir)/$$inst'"; \ - $(INSTALL_DATA) "$$file" "$(DESTDIR)$(man1dir)/$$inst" || exit $$?; \ - fi; \ - done; \ - for i in $$list; do echo "$$i"; done | $(am__base_list) | \ - while read files; do \ - test -z "$$files" || { \ - echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(man1dir)'"; \ - $(INSTALL_DATA) $$files "$(DESTDIR)$(man1dir)" || exit $$?; }; \ - done; } - -uninstall-man1: - @$(NORMAL_UNINSTALL) - @list=''; test -n "$(man1dir)" || exit 0; \ - files=`{ for i in $$list; do echo "$$i"; done; \ - l2='$(man_MANS)'; for i in $$l2; do echo "$$i"; done | \ - sed -n '/\.1[a-z]*$$/p'; \ - } | sed -e 's,.*/,,;h;s,.*\.,,;s,^[^1][0-9a-z]*$$,1,;x' \ - -e 's,\.[0-9a-z]*$$,,;$(transform);G;s,\n,.,'`; \ - dir='$(DESTDIR)$(man1dir)'; $(am__uninstall_files_from_dir) -tags: TAGS -TAGS: - -ctags: CTAGS -CTAGS: - - -distdir: $(DISTFILES) - @list='$(MANS)'; if test -n "$$list"; then \ - list=`for p in $$list; do \ - if test -f $$p; then d=; else d="$(srcdir)/"; fi; \ - if test -f "$$d$$p"; then echo "$$d$$p"; else :; fi; done`; \ - if test -n "$$list" && \ - grep 'ab help2man is required to generate this page' $$list >/dev/null; then \ - echo "error: found man pages containing the \`missing help2man' replacement text:" >&2; \ - grep -l 'ab help2man is required to generate this page' $$list | sed 's/^/ /' >&2; \ - echo " to fix them, install help2man, remove and regenerate the man pages;" >&2; \ - echo " typically \`make maintainer-clean' will remove them" >&2; \ - exit 1; \ - else :; fi; \ - else :; fi - @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ - list='$(DISTFILES)'; \ - dist_files=`for file in $$list; do echo $$file; done | \ - sed -e "s|^$$srcdirstrip/||;t" \ - -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ - case $$dist_files in \ - */*) $(MKDIR_P) `echo "$$dist_files" | \ - sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ - sort -u` ;; \ - esac; \ - for file in $$dist_files; do \ - if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ - if test -d $$d/$$file; then \ - dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ - if test -d "$(distdir)/$$file"; then \ - find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ - fi; \ - if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ - cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ - find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ - fi; \ - cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ - else \ - test -f "$(distdir)/$$file" \ - || cp -p $$d/$$file "$(distdir)/$$file" \ - || exit 1; \ - fi; \ - done -check-am: all-am -check: check-am -all-am: Makefile $(MANS) -installdirs: - for dir in "$(DESTDIR)$(man1dir)"; do \ - test -z "$$dir" || $(MKDIR_P) "$$dir"; \ - done -install: install-am -install-exec: install-exec-am -install-data: install-data-am -uninstall: uninstall-am - -install-am: all-am - @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am - -installcheck: installcheck-am -install-strip: - if test -z '$(STRIP)'; then \ - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ - install; \ - else \ - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ - "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ - fi -mostlyclean-generic: - -clean-generic: - -distclean-generic: - -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) - -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) - -maintainer-clean-generic: - @echo "This command is intended for maintainers to use" - @echo "it deletes files that may require special tools to rebuild." - -test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES) -clean: clean-am - -clean-am: clean-generic mostlyclean-am - -distclean: distclean-am - -rm -f Makefile -distclean-am: clean-am distclean-generic - -dvi: dvi-am - -dvi-am: - -html: html-am - -html-am: - -info: info-am - -info-am: - -install-data-am: install-man - -install-dvi: install-dvi-am - -install-dvi-am: - -install-exec-am: - -install-html: install-html-am - -install-html-am: - -install-info: install-info-am - -install-info-am: - -install-man: install-man1 - -install-pdf: install-pdf-am - -install-pdf-am: - -install-ps: install-ps-am - -install-ps-am: - -installcheck-am: - -maintainer-clean: maintainer-clean-am - -rm -f Makefile -maintainer-clean-am: distclean-am maintainer-clean-generic - -mostlyclean: mostlyclean-am - -mostlyclean-am: mostlyclean-generic - -pdf: pdf-am - -pdf-am: - -ps: ps-am - -ps-am: - -uninstall-am: uninstall-man - -uninstall-man: uninstall-man1 - -.MAKE: install-am install-strip - -.PHONY: all all-am check check-am clean clean-generic distclean \ - distclean-generic distdir dvi dvi-am html html-am info info-am \ - install install-am install-data install-data-am install-dvi \ - install-dvi-am install-exec install-exec-am install-html \ - install-html-am install-info install-info-am install-man \ - install-man1 install-pdf install-pdf-am install-ps \ - install-ps-am install-strip installcheck installcheck-am \ - installdirs maintainer-clean maintainer-clean-generic \ - mostlyclean mostlyclean-generic pdf pdf-am ps ps-am uninstall \ - uninstall-am uninstall-man uninstall-man1 - - -# Depend on the source, not the binary; we don't need to regenerate the -# binary when any source file changes, only the main one. -# Use -o so that the `missing' program can infer the output file. -hello.1: $(top_srcdir)/src/hello.c $(common_mandeps) - $(HELP2MAN) --name="friendly greeting program" ../src/hello -o $@ - -# Tell versions [3.59,3.63) of GNU make to not export all variables. -# Otherwise a system limit (for SysV at least) may be exceeded. -.NOEXPORT: From 418c785440ebda79ae0a5a3e1614af648d351876 Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Wed, 13 Mar 2019 12:40:49 -0400 Subject: [PATCH 017/567] current screenshot --- main_window.png | Bin 39398 -> 29419 bytes 1 file changed, 0 insertions(+), 0 deletions(-) diff --git a/main_window.png b/main_window.png index ee3b601e5b73ada7a0b4591354ce83550731c4f7..4e2bcfe2b779fa0bf55c4d27bb7e6f4efde43083 100644 GIT binary patch literal 29419 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 literal 39398 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%0DroNv7y&D_noIDEcd`vK51D>ZoS# z-{^gZ;A*d{2OR%=>sv4%)*|+n2o!C_!O+<0wTn~i`3-b8R1EZjT78I-DGBkNLAer{ zNv!iW$)wlgUD63Oj&)rQhWZjCG=I>;(OS;HH7*=+?%55p>p>#>S4-TPNVNQW!P3vh zoR@z{)q8jZO8oV9I_~T<>$Opf7D;#^%#q^HHyUEm^j^Xj0uEYEVE5RM2UhYEV_pT+ zZ;GnnFdDVERSBxyJQ=sA2vKVPw=j7qXeJs^@on{u-0Z8g`0PJQ+@rnexlqRpI0kyg4Eio zmS2hqV%f@Iy2FDqiNrT(`Kl+bEWng<#L=2rREoR%;y-P&Z+$k<;~MVSRp&DA*Zyt8-|nO)c3?&2G|ui&vR{Qr{s|2J?Dc^gd*N2l#D zq8nZm@5*%Bf#wK)lH(>KHrmZUza=QxYASC;u4;DpGee_nIH8o4)0w!T@0GDf{mo2~|j_%neC`R%e6IdxqaK+m>Yql*R3kXwFUL9BZ3vDPn>1ImI< z>L-uzN+dUw7idI!ihB^Tb;52h>96|4!_@LWHZ;CLJW0Esk+5W{2ERcKZ322&%p4A; zpn}OT%&0kWw>itEF$nP_#HSh4jZT}@pZ;KvRVa;uz~YsKCgmRJJ5m>diD3IsuyUpN zP|=K$`PPxlPb*uOH7QHjm_rbC6}i5`pdo|1as*ErcbaAHQoc3Gh)rWt98*&I@F3X< zTYM3F@epUZsst~UbYkFk$GM1{&401851s~XIl37NusUm{wWVNzYh^&nKWtiydDLSmg+Z_;Kj0aa-xBzDV6eH&UyScb zpgEa<& zv-3-!!~iNNeTNZz?=WzCQG~#9E+p?J_`WIAO)VPl)a$Q(RHI_la-;$A!ZuBVFbjRh zae^eo|6Vxho4y-EP}A7Cq`uY-OXSdu$@zZs4$=;$$R&=h8Xg{&*mmTr<|TvboQ*6q zPd#L!c=wLDfg5iQukUzlr4lm}ZGF9**N;vJJRR&sX4Y9HKa|n2Racf)82G@p^p*)U zem7N*J9?h5c&_@G@&0oMyA^{{$9Gacf5g5%E?hMggF4$iihO(a-*Scpyx(2Do^tz{ z_vpv%n5YS&@B)#Xtfkx25BXKUQLyqWe5?w|LH8uIg5RETbR-xp+y4h({@)hOe-ZW6 zC1xT_Ljx?@yfZzuck-9QJA`XqaQhP}nLsAu#hLAExNkFDXP=%zchh%;^HAbr=e*gd zeGGH7Voxpwo|1M#-T`dcLfsPiyE(k8Wun*l%KrrE#%w6qFH?*+Sl|kx(r5F z8{nvZQmWE3N{*fqpona2#*9CTk>ce{yE$Yq_~j=zgz~NjtwV5&o-$-ZGrfr9M%?oe zE}}O(-^IAUF6rE3APfwIw}m58N2`YoHtU-)W$x*BM2u^pZVQx&PVH`>_>;|)83kqF zI;~@RL2A^n>-36!r;^%RpI{Tsm{!_>XAoemE@mRawh|ft#N-{Umf)>C^O=aKqv=Sb zt6+2IXv791?ZnM5JvooRDP}aoD-KeJP0_)@{BiQw+sBHkUDO*hjpdK_O@Vx@9;K4` zG_c`2+#pZ0zMp{ir^ zbyYu7tl?bDC>K6629k+l4~A|-DL}?NiTDcbMEkO|hfY^K z%k^w+(#lo8ejAn{kCwZ4MIvHzV=YjQ?GGSqXqBp=+@pX3r(QLOc)_@;AqGB#_tYE34zmtc@%-Y=x=0Ee4uCH~ ztl<8NPNfoNO2(JslLesOeL$gj*~Hyuh8Ny8^(#~rTGBnuVW6;(0SXSoB7tz=cB|Mi5*+~ntkkNiC)=^&c z%Ej3plwZAttD!13?WHd{8^bI{e?9ld3t_^zvOFvBf(3pr@D^8sPUNzNPuxiNvF{sS zsKz~OClb<^FTg4NV_OIt?IA1P7})gGQp5`nitX;DIebP8p_bpGW}EuxrS(Gf-t*SmfFyah;B zc>2k*H%XM8O$&P4>HXz7wyz8{Mhf``mr9K|dzDisFoGjKdTNZ6? zSQ?r1!YqMpNr4ePS1D}c*TVWcJ1#VED*kKHbv3RXU<0RbV_?ccD$dKEjQc`8l}2&& zO#`>2-%subYW?0v&KEzuk4;N|T)8DqYcj(psG8RN$N&C{k2MWh?k+8DfHolk75TAR z3vg(BS!Z}|OiZ{v@W8-KbT|RCR_|Smk82;l#^>Y8E)>+80s#H$eO0ALM^NI8TWFC^ z?uSb8dujfhY3?*C(mjN?{<=0{TDM?)k_SAmz%8L&S8@XRhB?89Hh=JPVF)S+heFBs zzOs~434TbeEc3872$8B6+F_yjR47p30qBxh^; z&=h@6j!bc3z&_xU+za$q#y4N3HBmYL4W6c4PJlB_=33zFqYzP0wVo?zI|l@~cfXUP zP&Z~y9~x{1z>!)7m0Sx0dP#b0NV=B14#gTwNYosGI@QZ2jA)sxh@o$A%PA#N%jn4U z3PP!;(G|RWjX39sIijbnXGC`hB)(0oE!;RMbTrsxJnuW1o+BFILLcb}*%hx|MNZv+ zQ~T-r%`;8+oR=nY315?+(*qA1czg-In-0pxI+nKdhF8LVozCnBn1>sw+;Y!5&yi%x zmUAE3iZMmUyl7$U(B&*bqxkiBHV5RNm5P5cx)i0+AmjnNKzx=sse)p>nLbmdDUwab z(BiQF!BKfXRF$s37b2M4t9SS3QrC( ziR`+j`A4hL;$KFk*v(Ymz8ix93pc&fLx+0F6|P>wbV(Bl*<52daoPD(Oiqe{0a7BU zjRh@q9Jt847Zp6z-h!H3{}Z|XZ@n!-A}sGCI&H8P!(zsfq?e>!Y8Pxnv91L>RmSJKj;LXK@br}E~$U`!LN;W7CMEMoLvZ{ zcn&>UeIx3=tlA)W=eYp|`R8%4j>550kXJTb$Az_O4&4fqnP-lZ`xT(|K*pjg-p4vCN~`ig9o_9GU!k2r;gLElY{AljeG zmcLQz%HDe$fsxfme4CMEvVMBuPlZWHpkghvAaz#8z^y8SAg96Ac@YmG$Z*7j1x`a- zHctOI<_v1g%C12Opk$vYEg0VNN016aqju7$lu($rj!r`mqT86yrzWDWP?R3MR7dt^8oK=PAhMpUURxWC;d6Zz#}E zIn2xF!*-vqycMJI``IuZyhq@Lf2@9Y?qT3%5%2f?p44f{>DQd>-ECQQx6jhMCr9@A zE1@Rt$G%ZNHOou#2xo?S&8eob{>o<5OC3aRzP?BEojdL00|Y|1p7aOTje@73n{$+` zZ~kr1IT1}gIuY|Vgesh%jUh?Vb53tA?D zzVNo=kpHW$^Nwn&+qU?LAt96iDn_b_3R0x=i6{tBz(Q9P5TpqRf(S~a2SU^jQEAdd zia{x&f>h}tp@hUB)=@&V zi#y!+e>M#D6-){H7YgJr6h%*{Q4>LP#G}@Z^Fn(=0Xb%KA){|TM7%8hGk>KpF5%B& zlC(S{+I3nvPRrxFP5JUv0%pPDc4l(RlM;MK6B<|9wt>c^hyX`n!;|6p`c_svJbzNl zW3qZjq$#+EIuW}PV3_p-A%0+=G1V{|-`@f(-=6vQOU4sY4*ykiR_Ty;-nJaP-yS3? zk=2$LmExN6aC$5>FLbgJwo$PG$~eD&2A*!=^!&q1t}~`e4h~oSG&o*<2Y)(M*s(pt)`3~D3U$^lK4@-BBBXe-}Kdw%lReLi@d|Va+mYFmd|7{ zdrfgCyCB&qlO{b!Hb01FCRF};MTzUPbsq3X{$nq#<iGG&-m!5!9O0qeGW#*2~H{H67`W z^DlmVnYwg2>`)hmC$HmoKb#AhIsgz)3KjqqCr@EjL!zf4V+qZpP8B4Z$VpEdyCw}>Zc`UnpWZm?d4BlX)vH*PWsS zzONw&Bd2b1S~e#*z#^b)8iSwwwQ{7{5l^JP96`&K9ZWKlaGBOQ0}EZ(AAO0YiD~SX zCcH~|=yQO4J~iP2cS`KA-T{j*B-fqy3J@^8(VUxA-{*XPG_J+vN}guK+Y!|BVcW#+ zd)~uocL?uU8a30GGJHO#q~i{6rF)D1KcUEfc)YDUaHbkotsTUUhswXEzi59GT&I*v z6CSE;xAsl6=(Do(ml-MKGz(3S6~!-CTi3E`?CD0YcLh4GRdBc(ew>>rT$36oYz!88 zp#46dY1}L*t3r@TJs_bWW)9aGSA*0{OuhrY<<|jmtW*o(C4M>$<32KzMhdkO_qg2M zl+qKuI+V|hQ3*ust=Ce{bv;s&zuI!Y%>$}Q3mIwS!N-_As;JO*tDkW3AABJQU`Iu- zxt%4Kcy7}OwvXct>n);1!RBHpi!TCu4Lh0rX@O`WMPuZ~$u9j?c!h`BMX^7wkKc6WxoSBU5Kwvof0XB4P==26# z;`Sz5ZuR*q?Yq3VN+tiOXZlz=Inl?+3kYtoMlxcjr3LkyhQ7WUk;0|!>JAOK8{>|V z8~`#sq3#|j#_{y-)p9q5v|?4LH*z~3W-9aSAq=0b1~rhoyF=>82Dc;b#0tOpv>kyV z<%b2F+{0sBf{m74^By|VRLYC5guI{$tO_aR(n#z?_4%5j6%6KDy5F2V{Wp-fb_=L@ z569feRx&E($M#Pl{ObqUS9co#-R^BZ{JHqawv1;#pV12~c}E$J&1zWwB>C?`^q$h{w%B&+S8Bfc!wbrEhHI6ppPPLFIPema5yzPoR;IF z-axMW>*w?5h~5z9Tw~@pz(<{f>a5Zzl$@xP#j6y;UiBV-$d4P^R7ILv^>)Sd3YdID zoO)dCox`E|?wCaTKw?6<0lzTKfNRq}%}x=`^X*=yPX00I0?M_jo@!3{wGj_HZ*5h; zw6OrFNq9DaP*qT+I@{me>ziAr>_Cr*d$(5xquFdDjj0k$s-EoI3qLr~B8unAvZ{1( zH$-Vmjy3f&17C8^j%DmgKe42CHo%n^*Dad(nC+2s?n=3stm>3?`IyeY+wQ5~H->Ad z-&wcPw0?3kdjBl{S@mD>FUoQV{$iH&_oRY(rS?7lT^ySwFsJa@u1XAiLSMk3*V?D6 zKHi7!1SM=!cp#vSK>{Ni5bM<9JhR(L?KCInDG*~)OJNc@%aZ5D#eRHqUb^4K2lQXZ ziW=$Hv347mvX2Ni9;S;RJih^2yZO&1$LN6cHA3`@Qj0d57EVjwtBK_B$q~ZKigR#+ zp67WJTH>yK&+jS}=p z9X^`Vc#@`Q@wL)JJI{X=!l!K~hrL(~@PC;YQ8D0C3mR~s5cG!jZ*|HX1-YtT;!37J zh3PJaPi7|{_YU#iy1Z*8z?}WjaP$kHjyKV`JoEbKKcJXKAJdMPGQ4fYn*q@1&)VdE zMTtE&zg6k5AG|0#pIbSZ0t79%{qIo>W?1_%V#UW93O})ITl01IK!e_y3=>_i*kkgF zcwE+Fgb7jlA?gV%uJ-Q(d^?Tl_H}yF7}o5N4J-SYbdyUhzwjIRUq-V4t|!2$+H9Sn zjV1jOd#zRRosc0^*BbXZ@+!yaaaB@FOHri?Nf?~3M9G*3o-ZlLGI7&G zy>NnM*P8`FUk4_v6uhQOx4;zwg@S~e_u}VK*j>~}E}FCuCjki;Hi)VDL{7}Ai&5nV z0%YL;k8O9zHBmfLaA$e>n}C@vd5mc;wFM59CtUce$88JD7PZpLLlHa*^S_?1d|TAY z9Ssrk%s}dF=wu%UpMPsQ4Q2=iP%OQ$m zkHwsw{9gK5_$@30Fm)E8i+eyw!;xN;tHI}ixRuXbD$lg1PsaoE_9d>*G@se?)mrZ; z1SGRlaNyxrrKK{wDmj+(3{85`QoQ;HZEKU?*=w@l{_kYZR|Q4bp2^xX@7CyG1i2Mx z?hhzeX%CZrd(CHTi4S!WSe5@iQScwl(;k{RVjexe;cPzGiV)5U0UN`T7dKG$z^#s~ z-P$~Q7I7d}^~Rdo!i@&lxP9Qde~q)11O2`i`euchqxs5|5kF4opAv4h@K%ij9jgXx zM+#A5LFCFUdCAJ43wJw{Ox9%v{uQ#VUb3M~$SgakQJIGykpy^|eTv?qJhps^Ebq~j zjqE(+WwPnCc3j77>CvgG=o1gAr#eJ<4)7f#$(*`qgOEN?$vuo}QMW#B{JFM4+8*kd zL^HK8!*Mr)6pv22$ob_(W8E^aA7z#R(k!@6&jo6ARUQ-6b}9c8n5F^AV|6uG>u3Uu z5UCClH<54kxi??lXPh}LC1B5D-=oL+~&@$lax=l5{c z=>}}e>tc>x_&#=HmTq8nnv{qCtJQxN6&FpCG=x_SF(?T!~x_ z3m%+T3>ln{dFiutiz~_vO3}8hQiGHap~%#fg^S;>zH1%;!z(9W{>%L1CVG%0DuyG~ zli;u-2$3m8kATnlHx>Bbp_jJX;0`7dZXyne&k78ff@?x#V^=6={a`?$7lZ=CGHk)^ zpJDgmcmTU`8_$>G*w&{zns{mQNOs-#QZgkL{3o&DfJ@LMm(U^%H*pKej9quwo0*Lj z$M6C`UIFz!z;^of0QN8ugtXuC^)KHD07k1r7|rZsl}xY}7Du@Nqi|6rjaz(e*$&>I zdE-$hlVGdk`y;j!u_OFZSRQhl8gPs<6&ZP|BO~J^w9*!>VL^jYc~D{EO|4Jv8up#<>>8p@H?yo) z9=x6mES<`eaH+U`g|PfRRk1kvXkeomU%Gqs`Z0k;abBE{u8ib`4>yB{iF|mX6Zhs^ zC2GDJfhc|;Bl>&751yQNT(76LviM4GBn4BT1_k(@jWq~_msz-~2<>|aI&w#>Q}26W zZs#ksYSRucZ^`_!+6Gqq^YBIa&MHX_ONNnfIH9iuCfL%M>VNW*$@nsT0dXC=$q<=0 z%mVi`uv#wFs6lhyNA->lEXJ=b8FV&4%Ma5^`yEU<)_ReqKi)Y1F*af0wj*JyX)Ty` zdE#j9WXTcV-gtBW=RUfl5tCo_&*W6J7*kaMd@sx6&kR<~j*|u_WV9F7)ZdL>*-C@0 z=1CEaN(V6kfB(8r9aoz;8=4Sv%io11rNnCPZECzTyXzKDYIFKo#g|GaMAq7nwArxa z?!7L(59ucJd9eI=+{_Eu`5IbN!Zf@nv8=~(O6<-v)i*1x>7~AC%5>_C8*Rv{H1UIU z`b2E8H+(WAHau-1ahm#zIrMic6ECovEs{#pQ+Q(mC1&&hhFd%)utzTjv z(4>(YttPw_!u${={UZF)NPy5CN9gqQOh%?sVXbo8zH&7?Hy%9qhH9=gy2XA6;hDkQDk_&Zq# z{C0;&Z@(8^EFkn75NnD*C1Pkc@O*>csU?T@$NrEelI~W1g^Gh2BD6~r#-GG0gHMQ) zso5|uDIL<$%n?yYa?sLokys3J9EMf*gpCTzldzr7emg$Y`hc9;ztUGZ!mVAYnc)s@f*e<(cQcU=^*^ zlbvB>u+UFbUloEnG1^Qzdr-h%6;-ARH5x9*V4x-Hs+c72t}~1wXkzl*pfHJV*YI;5 zQ#3vqDj-DX5?dkl3HrN6(krPz4=D5T+|y}`DA>rJHWg(5^r}vTZ&!Kf4BTfaaQv!a zww~t>b2P7$5Ip+M0AAv`4jI{febhCi4cvGFG$iQcY7oFuiqAHBB(Vtq|(Arax^XN z%i0O%(6qscUw@qIJ&~sw6$q~!vHTy9hgh`Y2gU7m#_yJC(O^{+*z9Z-VOoouiqbx~ zbO5oMdHg=bOo%q^ZOwn)yNJ1jP6fsKA*^cSg%sR*TQg)efX?2}L9~N26R*5CISg&> z6xnPgQt1sy(YEYrN^2ChJ4{h={~0W(_YTm9c9X&l8w{+f^?TGBmQ203pE>htbaM~8 z9n3MVNhQH>-?u-#**Z93Es8&&+Bu|WM)pfkfXuktStF`PKshfxPRcyUu6mJ^9K5;q z5WyB8VBq~GzAml7VH8#2|00J#q<}}R9YmdsSs463ZRtARKKPjeT@B> Tp=5Cx0*?!N#=3cD?8*NCI#WL_ From f2d61c8d9b703e20e5aa2e87145ec9ee65679a3a Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Wed, 13 Mar 2019 12:56:33 -0400 Subject: [PATCH 018/567] Add more todo items in readme --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index f72e0723..fdba72a0 100644 --- a/README.md +++ b/README.md @@ -48,3 +48,7 @@ Until then: As a work-around, "ukuu --clean-cache" deletes the cache * Improve the annoying pkexec behavior. It would be nicer to run lxqt-sudo or gksudo or pkexec etc one time for the whole session, and only have to enter a password once, instead of once per user action. But currently, if you do that, it creates files in the users home directory that are owned by root, so don't do that. +I think this might be addressed by getting the policy kit file working. +* Write a man page +* Make all the terminal & child processes more robust. It's always really been pretty 9/10ths-baked. Kernel downloads fail, but work if you just do it again. dpkg installs fail, but work if you just do it again. Populating the main window fails, but works if you just do it again... That could all be a lot better. +* More careful temp file / temp working dir management. It too-often creates dirs as one user and then can't remove or use them later as another user. It too-often fails to deal with the possibility of a user running the app via pkexec or sudo etc. From beaf861293ece449d8f6c4a3f678f010c9341a9e Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Wed, 13 Mar 2019 12:58:33 -0400 Subject: [PATCH 019/567] readme formatting --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index fdba72a0..d35eb01c 100644 --- a/README.md +++ b/README.md @@ -47,7 +47,7 @@ Until then: As a work-around, "ukuu --clean-cache" deletes the cache * Configurable version threshhold instead of arbitrary hard-coded "hide older than 4.0" * Improve the annoying pkexec behavior. It would be nicer to run lxqt-sudo or gksudo or pkexec etc one time for the whole session, and only have to enter a password once, instead of once per user action. -But currently, if you do that, it creates files in the users home directory that are owned by root, so don't do that. +But currently, if you do that, it creates files in the users home directory that are owned by root, so don't do that. I think this might be addressed by getting the policy kit file working. * Write a man page * Make all the terminal & child processes more robust. It's always really been pretty 9/10ths-baked. Kernel downloads fail, but work if you just do it again. dpkg installs fail, but work if you just do it again. Populating the main window fails, but works if you just do it again... That could all be a lot better. From 3f98a16f385938901b7664f2579c6e88b34daaff Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Wed, 13 Mar 2019 16:09:51 -0400 Subject: [PATCH 020/567] Remove curl & soup, use aria2c for everything. --- BRANDING.mak | 2 +- debian/changelog | 2 + debian/control | 2 +- debian/control.src | 2 +- po/ukuu-es.po | 66 +++++++++++----------- po/ukuu-fr.po | 66 +++++++++++----------- po/ukuu-hr.po | 66 +++++++++++----------- po/ukuu-nl.po | 66 +++++++++++----------- po/ukuu-pl.po | 66 +++++++++++----------- po/ukuu-ru.po | 66 +++++++++++----------- po/ukuu-sv.po | 66 +++++++++++----------- po/ukuu-tr.po | 66 +++++++++++----------- src/Common/DownloadManager.vala | 97 ++++++++++----------------------- src/Console/AppConsole.vala | 1 - src/Makefile | 2 +- src/Utility/TeeJee.System.vala | 47 +--------------- ukuu.geany | 24 ++++---- ukuu.pot | 68 +++++++++++------------ 18 files changed, 348 insertions(+), 427 deletions(-) diff --git a/BRANDING.mak b/BRANDING.mak index 807d2345..b6f8b754 100644 --- a/BRANDING.mak +++ b/BRANDING.mak @@ -8,7 +8,7 @@ BRANDING_SHORTNAME = ukuu BRANDING_LONGNAME = Ubuntu Kernel Update Utility -BRANDING_VERSION = 18.9 +BRANDING_VERSION = 18.9.5-bkw BRANDING_AUTHORNAME = Brian K. White BRANDING_AUTHOREMAIL = bw.aljex@gmail.com BRANDING_WEBSITE = https://github.com/aljex/ukuu diff --git a/debian/changelog b/debian/changelog index c165fc09..22a8d906 100644 --- a/debian/changelog +++ b/debian/changelog @@ -6,6 +6,8 @@ ukuu (18.9.5-bkw) disco; urgency=medium * Removed some more source cruft, stuff we aren't using from TeeJee utilities * Updated the Spanish translation just from google translate. * Remove ukuu-uninstall + * Make aria2 retry a few times + * Remove pointless curl dependency by using aria2c for connection test -- Brian K. White Wed, 13 Mar 2019 2:35:02 -0500 diff --git a/debian/control b/debian/control index fff97645..03111e07 100644 --- a/debian/control +++ b/debian/control @@ -8,7 +8,7 @@ Homepage: https://github.com/aljex/ukuu Package: ukuu Architecture: any -Depends: ${shlibs:Depends}, ${misc:Depends}, aptitude, aria2, curl +Depends: ${shlibs:Depends}, ${misc:Depends}, aptitude, aria2 Recommends: Description: Kernel Update Utility for Ubuntu-based distributions Utility for installing mainline Linux kernels on Ubuntu-based distributions. diff --git a/debian/control.src b/debian/control.src index 3cf621e0..5f9d1e3b 100644 --- a/debian/control.src +++ b/debian/control.src @@ -8,7 +8,7 @@ Homepage: BRANDING_WEBSITE Package: BRANDING_SHORTNAME Architecture: any -Depends: ${shlibs:Depends}, ${misc:Depends}, aptitude, aria2, curl +Depends: ${shlibs:Depends}, ${misc:Depends}, aptitude, aria2 Recommends: Description: Kernel Update Utility for Ubuntu-based distributions Utility for installing mainline Linux kernels on Ubuntu-based distributions. diff --git a/po/ukuu-es.po b/po/ukuu-es.po index 1d7ac418..7d5b058c 100644 --- a/po/ukuu-es.po +++ b/po/ukuu-es.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu\n" "Report-Msgid-Bugs-To: bw.aljex@gmail.com\n" -"POT-Creation-Date: 2019-03-13 11:41-0400\n" +"POT-Creation-Date: 2019-03-13 16:02-0400\n" "PO-Revision-Date: 2018-01-03 02:03-0600\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish\n" @@ -21,7 +21,7 @@ msgstr "" msgid "About" msgstr "Acerca de" -#: Console/AppConsole.vala:117 +#: Console/AppConsole.vala:116 msgid "Admin access is required for running this application." msgstr "" "Se necesitan privilegios administrativos para ejecutar esta aplicación." @@ -39,7 +39,7 @@ msgstr "Arquitectura del sistema" msgid "Artists" msgstr "Artistas" -#: Console/AppConsole.vala:104 +#: Console/AppConsole.vala:103 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "Asumir Sí para todas las solicitudes (modo no interactivo)" @@ -56,7 +56,7 @@ msgstr "Núcleos disponibles" msgid "Back" msgstr "Atrás" -#: Console/AppConsole.vala:207 Gtk/AppGtk.vala:110 +#: Console/AppConsole.vala:206 Gtk/AppGtk.vala:110 msgid "Cache" msgstr "Cache" @@ -74,11 +74,11 @@ msgstr "Cambios" msgid "Check every" msgstr "Comprobar cada" -#: Console/AppConsole.vala:88 +#: Console/AppConsole.vala:87 msgid "Check for kernel updates" msgstr "Buscar actualizaciones del núcleo" -#: Console/AppConsole.vala:89 +#: Console/AppConsole.vala:88 msgid "Check for kernel updates and notify current user" msgstr "Compruebe las actualizaciones del kernel y notifique al usuario actual" @@ -86,11 +86,11 @@ msgstr "Compruebe las actualizaciones del kernel y notifique al usuario actual" msgid "Close" msgstr "Cerrar" -#: Console/AppConsole.vala:344 +#: Console/AppConsole.vala:343 msgid "Command not specified" msgstr "Coomand no especificado" -#: Console/AppConsole.vala:86 +#: Console/AppConsole.vala:85 msgid "Commands" msgstr "Comandos" @@ -113,7 +113,7 @@ msgstr "Contribuciones" msgid "Could not find any kernels to remove" msgstr "Seleccione los núcleos que se desinstalarán" -#: Console/AppConsole.vala:312 Gtk/MainWindow.vala:100 +#: Console/AppConsole.vala:311 Gtk/MainWindow.vala:100 msgid "Could not find requested version" msgstr "No se pudo encontrar la versión solicitada" @@ -155,7 +155,7 @@ msgstr "Distribución" msgid "Documenters" msgstr "Documentadores" -#: Console/AppConsole.vala:97 +#: Console/AppConsole.vala:96 msgid "Download packages for specified kernel" msgstr "Descargar paquetes del núcleo especificado" @@ -271,15 +271,15 @@ msgstr "Instalar" msgid "Install Linux v%s ? (y/n): " msgstr "" -#: Console/AppConsole.vala:92 +#: Console/AppConsole.vala:91 msgid "Install latest mainline kernel" msgstr "Instalar kernel troncal especificado" -#: Console/AppConsole.vala:93 +#: Console/AppConsole.vala:92 msgid "Install latest point update for current series" msgstr "" -#: Console/AppConsole.vala:94 +#: Console/AppConsole.vala:93 msgid "Install specified mainline kernel" msgstr "Instalar núcleo troncal especificado" @@ -301,7 +301,7 @@ msgid "Installed" msgstr "Instalado" #: Gtk/MainWindow.vala:350 Gtk/MainWindow.vala:547 Gtk/MainWindow.vala:683 -#: Utility/TeeJee.System.vala:292 +#: Utility/TeeJee.System.vala:281 msgid "Internet connection is not active" msgstr "La conexión a Internet está inactiva" @@ -319,17 +319,17 @@ msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "" "Herramienta de renovación de núcleo para distribuciones basadas en Ubuntu" -#: Common/LinuxKernel.vala:776 Console/AppConsole.vala:370 +#: Common/LinuxKernel.vala:776 Console/AppConsole.vala:369 #, c-format msgid "Latest point update" msgstr "" -#: Common/LinuxKernel.vala:765 Console/AppConsole.vala:363 +#: Common/LinuxKernel.vala:765 Console/AppConsole.vala:362 #, c-format msgid "Latest update" msgstr "" -#: Console/AppConsole.vala:90 +#: Console/AppConsole.vala:89 msgid "List all available mainline kernels" msgstr "Mostrar todos los núcleos troncales disponibles" @@ -337,7 +337,7 @@ msgstr "Mostrar todos los núcleos troncales disponibles" msgid "List available kernels" msgstr "Mostrar núcleos disponibles" -#: Console/AppConsole.vala:91 +#: Console/AppConsole.vala:90 msgid "List installed kernels" msgstr "Mostrar kernels disponibles" @@ -349,7 +349,7 @@ msgstr "Falta el icono" msgid "Multiple Kernels Selected" msgstr "Se seleccionaron varios kernels" -#: Console/AppConsole.vala:294 +#: Console/AppConsole.vala:293 msgid "Multiple kernels selected for installation. Select only one." msgstr "Se seleccionaron varios núcleos para su instalación. Elija solo uno." @@ -361,12 +361,12 @@ msgstr "No" msgid "No Internet" msgstr "No hay Internet" -#: Console/AppConsole.vala:288 Console/AppConsole.vala:325 +#: Console/AppConsole.vala:287 Console/AppConsole.vala:324 msgid "No kernels specified" msgstr "" -#: Common/LinuxKernel.vala:784 Console/AppConsole.vala:375 -#: Console/AppConsole.vala:433 Gtk/MainWindow.vala:793 +#: Common/LinuxKernel.vala:784 Console/AppConsole.vala:374 +#: Console/AppConsole.vala:432 Gtk/MainWindow.vala:793 msgid "No updates found" msgstr "No se encontró ninguna actualización" @@ -392,7 +392,7 @@ msgstr "Notificar si hay una versión puntual disponible" msgid "OK" msgstr "Aceptar" -#: Console/AppConsole.vala:101 Gtk/AppGtk.vala:181 +#: Console/AppConsole.vala:100 Gtk/AppGtk.vala:181 msgid "Options" msgstr "Opciones" @@ -438,24 +438,24 @@ msgstr "Actualizando…" msgid "Remove" msgstr "Quitar" -#: Console/AppConsole.vala:98 Console/AppConsole.vala:103 +#: Console/AppConsole.vala:97 Console/AppConsole.vala:102 msgid "Remove files from application cache" msgstr "Quitar archivos de la antememoria de la aplicación" -#: Console/AppConsole.vala:96 Gtk/MainWindow.vala:426 +#: Console/AppConsole.vala:95 Gtk/MainWindow.vala:426 msgid "Remove installed kernels older than running kernel" msgstr "" -#: Console/AppConsole.vala:95 +#: Console/AppConsole.vala:94 msgid "Remove specified kernel" msgstr "Quitar el núcleo troncal especificado" -#: Console/AppConsole.vala:202 Console/AppConsole.vala:316 -#: Console/AppConsole.vala:345 +#: Console/AppConsole.vala:201 Console/AppConsole.vala:315 +#: Console/AppConsole.vala:344 msgid "Run '" msgstr "" -#: Console/AppConsole.vala:120 +#: Console/AppConsole.vala:119 msgid "Run the application as admin with pkexec or sudo." msgstr "Ejecute la aplicación con permisos administrativos con pkexec o sudo." @@ -503,7 +503,7 @@ msgstr "Mostrar globo de notificación en el escritorio" msgid "Show notification dialog" msgstr "Mostrar cuadro de diálogo de notificación" -#: Console/AppConsole.vala:99 +#: Console/AppConsole.vala:98 msgid "Show unstable and RC releases" msgstr "Ocultar versiones inestables y RC" @@ -519,11 +519,11 @@ msgstr "Estado" msgid "Stopped" msgstr "Detenido" -#: Console/AppConsole.vala:84 Gtk/AppGtk.vala:179 +#: Console/AppConsole.vala:83 Gtk/AppGtk.vala:179 msgid "Syntax" msgstr "Sintaxis" -#: Console/AppConsole.vala:208 Gtk/AppGtk.vala:111 +#: Console/AppConsole.vala:207 Gtk/AppGtk.vala:111 msgid "Temp" msgstr "" @@ -562,7 +562,7 @@ msgstr "Desinstalación finalizada" msgid "Un-install completed with errors" msgstr "Desinstalación finalizada con errores" -#: Console/AppConsole.vala:200 Gtk/AppGtk.vala:166 +#: Console/AppConsole.vala:199 Gtk/AppGtk.vala:166 msgid "Unknown option" msgstr "Opción desconocida" diff --git a/po/ukuu-fr.po b/po/ukuu-fr.po index c98f910c..3f3747f6 100644 --- a/po/ukuu-fr.po +++ b/po/ukuu-fr.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu\n" "Report-Msgid-Bugs-To: bw.aljex@gmail.com\n" -"POT-Creation-Date: 2019-03-13 11:41-0400\n" +"POT-Creation-Date: 2019-03-13 16:02-0400\n" "PO-Revision-Date: 2018-08-05 15:50+0200\n" "Last-Translator: Yolateng0 \n" "Language-Team: French\n" @@ -21,7 +21,7 @@ msgstr "" msgid "About" msgstr "À propos" -#: Console/AppConsole.vala:117 +#: Console/AppConsole.vala:116 msgid "Admin access is required for running this application." msgstr "Accès administrateur requis pour lancer cette application." @@ -39,7 +39,7 @@ msgstr "Architecture du système" msgid "Artists" msgstr "Artistes" -#: Console/AppConsole.vala:104 +#: Console/AppConsole.vala:103 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "" @@ -56,7 +56,7 @@ msgstr "Noyaux disponibles" msgid "Back" msgstr "Retour" -#: Console/AppConsole.vala:207 Gtk/AppGtk.vala:110 +#: Console/AppConsole.vala:206 Gtk/AppGtk.vala:110 msgid "Cache" msgstr "" @@ -74,11 +74,11 @@ msgstr "Changements" msgid "Check every" msgstr "Vérifier toutes les" -#: Console/AppConsole.vala:88 +#: Console/AppConsole.vala:87 msgid "Check for kernel updates" msgstr "Vérifier les mises à jour des noyaux" -#: Console/AppConsole.vala:89 +#: Console/AppConsole.vala:88 #, fuzzy msgid "Check for kernel updates and notify current user" msgstr "Vérifier les mises à jour des noyaux" @@ -87,12 +87,12 @@ msgstr "Vérifier les mises à jour des noyaux" msgid "Close" msgstr "Fermer" -#: Console/AppConsole.vala:344 +#: Console/AppConsole.vala:343 #, fuzzy msgid "Command not specified" msgstr "Impossible de trouver le fichier" -#: Console/AppConsole.vala:86 +#: Console/AppConsole.vala:85 msgid "Commands" msgstr "" @@ -115,7 +115,7 @@ msgstr "Contributions" msgid "Could not find any kernels to remove" msgstr "Sélectionnez les noyaux à supprimer" -#: Console/AppConsole.vala:312 Gtk/MainWindow.vala:100 +#: Console/AppConsole.vala:311 Gtk/MainWindow.vala:100 msgid "Could not find requested version" msgstr "Impossible de trouver la version demandée" @@ -158,7 +158,7 @@ msgstr "Distribution" msgid "Documenters" msgstr "Documentalistes" -#: Console/AppConsole.vala:97 +#: Console/AppConsole.vala:96 msgid "Download packages for specified kernel" msgstr "Télécharger les paquets pour des noyaux spécifiques" @@ -274,16 +274,16 @@ msgstr "Installer" msgid "Install Linux v%s ? (y/n): " msgstr "" -#: Console/AppConsole.vala:92 +#: Console/AppConsole.vala:91 #, fuzzy msgid "Install latest mainline kernel" msgstr "Installer le noyau principal spécifié" -#: Console/AppConsole.vala:93 +#: Console/AppConsole.vala:92 msgid "Install latest point update for current series" msgstr "" -#: Console/AppConsole.vala:94 +#: Console/AppConsole.vala:93 msgid "Install specified mainline kernel" msgstr "Installer le noyau principal spécifié" @@ -306,7 +306,7 @@ msgid "Installed" msgstr "Installé" #: Gtk/MainWindow.vala:350 Gtk/MainWindow.vala:547 Gtk/MainWindow.vala:683 -#: Utility/TeeJee.System.vala:292 +#: Utility/TeeJee.System.vala:281 msgid "Internet connection is not active" msgstr "Connexion internet inexistante" @@ -325,17 +325,17 @@ msgstr "" "Utilitaire de mise à niveau des noyaux pour les distributions basées pour " "Ubuntu" -#: Common/LinuxKernel.vala:776 Console/AppConsole.vala:370 +#: Common/LinuxKernel.vala:776 Console/AppConsole.vala:369 #, c-format msgid "Latest point update" msgstr "" -#: Common/LinuxKernel.vala:765 Console/AppConsole.vala:363 +#: Common/LinuxKernel.vala:765 Console/AppConsole.vala:362 #, c-format msgid "Latest update" msgstr "" -#: Console/AppConsole.vala:90 +#: Console/AppConsole.vala:89 msgid "List all available mainline kernels" msgstr "Lister tous les noyaux mainline disponibles" @@ -343,7 +343,7 @@ msgstr "Lister tous les noyaux mainline disponibles" msgid "List available kernels" msgstr "Lister les noyaux disponibles" -#: Console/AppConsole.vala:91 +#: Console/AppConsole.vala:90 #, fuzzy msgid "List installed kernels" msgstr "Lister les noyaux disponibles" @@ -356,7 +356,7 @@ msgstr "Icône introuvable" msgid "Multiple Kernels Selected" msgstr "Plusieurs noyaux sélectionnés" -#: Console/AppConsole.vala:294 +#: Console/AppConsole.vala:293 msgid "Multiple kernels selected for installation. Select only one." msgstr "" "Plusieurs noyaux sélectionnés pour être installés. Sélectionnez en seulement " @@ -370,12 +370,12 @@ msgstr "Non" msgid "No Internet" msgstr "Pas d'Internet" -#: Console/AppConsole.vala:288 Console/AppConsole.vala:325 +#: Console/AppConsole.vala:287 Console/AppConsole.vala:324 msgid "No kernels specified" msgstr "" -#: Common/LinuxKernel.vala:784 Console/AppConsole.vala:375 -#: Console/AppConsole.vala:433 Gtk/MainWindow.vala:793 +#: Common/LinuxKernel.vala:784 Console/AppConsole.vala:374 +#: Console/AppConsole.vala:432 Gtk/MainWindow.vala:793 msgid "No updates found" msgstr "Aucune mise à jour disponible" @@ -401,7 +401,7 @@ msgstr "Notifier si une version stable mineure est disponible" msgid "OK" msgstr "OK" -#: Console/AppConsole.vala:101 Gtk/AppGtk.vala:181 +#: Console/AppConsole.vala:100 Gtk/AppGtk.vala:181 msgid "Options" msgstr "Options" @@ -447,25 +447,25 @@ msgstr "Actualisation..." msgid "Remove" msgstr "Supprimer" -#: Console/AppConsole.vala:98 Console/AppConsole.vala:103 +#: Console/AppConsole.vala:97 Console/AppConsole.vala:102 msgid "Remove files from application cache" msgstr "Supprimer les fichiers du cache de l'application" -#: Console/AppConsole.vala:96 Gtk/MainWindow.vala:426 +#: Console/AppConsole.vala:95 Gtk/MainWindow.vala:426 msgid "Remove installed kernels older than running kernel" msgstr "" -#: Console/AppConsole.vala:95 +#: Console/AppConsole.vala:94 #, fuzzy msgid "Remove specified kernel" msgstr "Supprimer le noyau mainline sélectionné" -#: Console/AppConsole.vala:202 Console/AppConsole.vala:316 -#: Console/AppConsole.vala:345 +#: Console/AppConsole.vala:201 Console/AppConsole.vala:315 +#: Console/AppConsole.vala:344 msgid "Run '" msgstr "" -#: Console/AppConsole.vala:120 +#: Console/AppConsole.vala:119 msgid "Run the application as admin with pkexec or sudo." msgstr "Exécutez l'application en tant qu'admin avec pkexec or sudo." @@ -513,7 +513,7 @@ msgstr "Afficher la bulle de notification sur le bureau" msgid "Show notification dialog" msgstr "Afficher les notifications" -#: Console/AppConsole.vala:99 +#: Console/AppConsole.vala:98 #, fuzzy msgid "Show unstable and RC releases" msgstr "Cacher les versions instables et RC" @@ -531,11 +531,11 @@ msgstr "Statut" msgid "Stopped" msgstr "Arrêté" -#: Console/AppConsole.vala:84 Gtk/AppGtk.vala:179 +#: Console/AppConsole.vala:83 Gtk/AppGtk.vala:179 msgid "Syntax" msgstr "Syntaxe" -#: Console/AppConsole.vala:208 Gtk/AppGtk.vala:111 +#: Console/AppConsole.vala:207 Gtk/AppGtk.vala:111 msgid "Temp" msgstr "" @@ -574,7 +574,7 @@ msgstr "Désinstallation complète" msgid "Un-install completed with errors" msgstr "Désinstallation terminée avec des erreurs" -#: Console/AppConsole.vala:200 Gtk/AppGtk.vala:166 +#: Console/AppConsole.vala:199 Gtk/AppGtk.vala:166 msgid "Unknown option" msgstr "Option inconnue" diff --git a/po/ukuu-hr.po b/po/ukuu-hr.po index 009799f4..26abf27f 100644 --- a/po/ukuu-hr.po +++ b/po/ukuu-hr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu\n" "Report-Msgid-Bugs-To: bw.aljex@gmail.com\n" -"POT-Creation-Date: 2019-03-13 11:41-0400\n" +"POT-Creation-Date: 2019-03-13 16:02-0400\n" "PO-Revision-Date: 2017-12-24 00:52+0100\n" "Last-Translator: gogo \n" "Language-Team: Croatian \n" @@ -22,7 +22,7 @@ msgstr "" msgid "About" msgstr "O programu" -#: Console/AppConsole.vala:117 +#: Console/AppConsole.vala:116 msgid "Admin access is required for running this application." msgstr "Administratorske ovlasti su potrebne za pokretanje ove aplikacije." @@ -40,7 +40,7 @@ msgstr "Arhitektura sustava" msgid "Artists" msgstr "Dizajneri" -#: Console/AppConsole.vala:104 +#: Console/AppConsole.vala:103 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "" @@ -57,7 +57,7 @@ msgstr "Dostupni kerneli" msgid "Back" msgstr "Natrag" -#: Console/AppConsole.vala:207 Gtk/AppGtk.vala:110 +#: Console/AppConsole.vala:206 Gtk/AppGtk.vala:110 msgid "Cache" msgstr "" @@ -75,11 +75,11 @@ msgstr "Promjene" msgid "Check every" msgstr "Provjeri svaka" -#: Console/AppConsole.vala:88 +#: Console/AppConsole.vala:87 msgid "Check for kernel updates" msgstr "Provjeri nadopune kernela" -#: Console/AppConsole.vala:89 +#: Console/AppConsole.vala:88 #, fuzzy msgid "Check for kernel updates and notify current user" msgstr "Provjeri nadopune kernela" @@ -88,11 +88,11 @@ msgstr "Provjeri nadopune kernela" msgid "Close" msgstr "Zatvori" -#: Console/AppConsole.vala:344 +#: Console/AppConsole.vala:343 msgid "Command not specified" msgstr "" -#: Console/AppConsole.vala:86 +#: Console/AppConsole.vala:85 msgid "Commands" msgstr "" @@ -115,7 +115,7 @@ msgstr "Prilozi" msgid "Could not find any kernels to remove" msgstr "Odaberi kernele za uklanjanje" -#: Console/AppConsole.vala:312 Gtk/MainWindow.vala:100 +#: Console/AppConsole.vala:311 Gtk/MainWindow.vala:100 msgid "Could not find requested version" msgstr "Nemoguće je pronaći zatraženu inačicu" @@ -158,7 +158,7 @@ msgstr "Distribucija" msgid "Documenters" msgstr "Autori dokumentacije" -#: Console/AppConsole.vala:97 +#: Console/AppConsole.vala:96 msgid "Download packages for specified kernel" msgstr "Preuzmi pakete za određeni kernel" @@ -274,16 +274,16 @@ msgstr "Instaliraj" msgid "Install Linux v%s ? (y/n): " msgstr "" -#: Console/AppConsole.vala:92 +#: Console/AppConsole.vala:91 #, fuzzy msgid "Install latest mainline kernel" msgstr "Instaliraj određeni mainline kernel" -#: Console/AppConsole.vala:93 +#: Console/AppConsole.vala:92 msgid "Install latest point update for current series" msgstr "" -#: Console/AppConsole.vala:94 +#: Console/AppConsole.vala:93 msgid "Install specified mainline kernel" msgstr "Instaliraj određeni mainline kernel" @@ -306,7 +306,7 @@ msgid "Installed" msgstr "Instalirano" #: Gtk/MainWindow.vala:350 Gtk/MainWindow.vala:547 Gtk/MainWindow.vala:683 -#: Utility/TeeJee.System.vala:292 +#: Utility/TeeJee.System.vala:281 msgid "Internet connection is not active" msgstr "Internet povezivanje nije aktivno" @@ -323,17 +323,17 @@ msgstr "Kernel" msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Alat za nadogradnju kernela Ubuntu temeljenih distribucija" -#: Common/LinuxKernel.vala:776 Console/AppConsole.vala:370 +#: Common/LinuxKernel.vala:776 Console/AppConsole.vala:369 #, c-format msgid "Latest point update" msgstr "" -#: Common/LinuxKernel.vala:765 Console/AppConsole.vala:363 +#: Common/LinuxKernel.vala:765 Console/AppConsole.vala:362 #, c-format msgid "Latest update" msgstr "" -#: Console/AppConsole.vala:90 +#: Console/AppConsole.vala:89 msgid "List all available mainline kernels" msgstr "Prikaži sve mainline kernele" @@ -341,7 +341,7 @@ msgstr "Prikaži sve mainline kernele" msgid "List available kernels" msgstr "Prikaži sve kernele" -#: Console/AppConsole.vala:91 +#: Console/AppConsole.vala:90 #, fuzzy msgid "List installed kernels" msgstr "Prikaži sve kernele" @@ -354,7 +354,7 @@ msgstr "Ikone koje nedostaju" msgid "Multiple Kernels Selected" msgstr "Više kernela je odabrano" -#: Console/AppConsole.vala:294 +#: Console/AppConsole.vala:293 msgid "Multiple kernels selected for installation. Select only one." msgstr "Više kernela je odabrano za instalaciju. odaberite samo jedan." @@ -366,12 +366,12 @@ msgstr "Ne" msgid "No Internet" msgstr "Nema pristupa internetu" -#: Console/AppConsole.vala:288 Console/AppConsole.vala:325 +#: Console/AppConsole.vala:287 Console/AppConsole.vala:324 msgid "No kernels specified" msgstr "" -#: Common/LinuxKernel.vala:784 Console/AppConsole.vala:375 -#: Console/AppConsole.vala:433 Gtk/MainWindow.vala:793 +#: Common/LinuxKernel.vala:784 Console/AppConsole.vala:374 +#: Console/AppConsole.vala:432 Gtk/MainWindow.vala:793 msgid "No updates found" msgstr "Nema pronađenih nadopuna" @@ -397,7 +397,7 @@ msgstr "Obavijesti kada je pojedino izdanje dostupno" msgid "OK" msgstr "U redu" -#: Console/AppConsole.vala:101 Gtk/AppGtk.vala:181 +#: Console/AppConsole.vala:100 Gtk/AppGtk.vala:181 msgid "Options" msgstr "Mogućnosti" @@ -443,25 +443,25 @@ msgstr "Osvježavanje..." msgid "Remove" msgstr "Ukloni" -#: Console/AppConsole.vala:98 Console/AppConsole.vala:103 +#: Console/AppConsole.vala:97 Console/AppConsole.vala:102 msgid "Remove files from application cache" msgstr "Ukloni datoteke iz predmemorije aplikacije" -#: Console/AppConsole.vala:96 Gtk/MainWindow.vala:426 +#: Console/AppConsole.vala:95 Gtk/MainWindow.vala:426 msgid "Remove installed kernels older than running kernel" msgstr "" -#: Console/AppConsole.vala:95 +#: Console/AppConsole.vala:94 #, fuzzy msgid "Remove specified kernel" msgstr "Ukloni određeni mainline kernel" -#: Console/AppConsole.vala:202 Console/AppConsole.vala:316 -#: Console/AppConsole.vala:345 +#: Console/AppConsole.vala:201 Console/AppConsole.vala:315 +#: Console/AppConsole.vala:344 msgid "Run '" msgstr "" -#: Console/AppConsole.vala:120 +#: Console/AppConsole.vala:119 msgid "Run the application as admin with pkexec or sudo." msgstr "Pokreni aplikaciju kao administrator sa pkexec ili sudo." @@ -509,7 +509,7 @@ msgstr "Prikaži mjehurić obavijesti radne površine" msgid "Show notification dialog" msgstr "Prikaži dijalog obavijesti" -#: Console/AppConsole.vala:99 +#: Console/AppConsole.vala:98 #, fuzzy msgid "Show unstable and RC releases" msgstr "Sakrij nestabilne kernele i predizdanja" @@ -527,11 +527,11 @@ msgstr "Stanje" msgid "Stopped" msgstr "Zaustavljeno" -#: Console/AppConsole.vala:84 Gtk/AppGtk.vala:179 +#: Console/AppConsole.vala:83 Gtk/AppGtk.vala:179 msgid "Syntax" msgstr "Sintaksa" -#: Console/AppConsole.vala:208 Gtk/AppGtk.vala:111 +#: Console/AppConsole.vala:207 Gtk/AppGtk.vala:111 msgid "Temp" msgstr "" @@ -570,7 +570,7 @@ msgstr "Deinstalacija završena" msgid "Un-install completed with errors" msgstr "Deinstalacija završena s greškama" -#: Console/AppConsole.vala:200 Gtk/AppGtk.vala:166 +#: Console/AppConsole.vala:199 Gtk/AppGtk.vala:166 msgid "Unknown option" msgstr "Nepoznata mogućnost" diff --git a/po/ukuu-nl.po b/po/ukuu-nl.po index a50d9fcb..545e92ab 100644 --- a/po/ukuu-nl.po +++ b/po/ukuu-nl.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu 2.2\n" "Report-Msgid-Bugs-To: bw.aljex@gmail.com\n" -"POT-Creation-Date: 2019-03-13 11:41-0400\n" +"POT-Creation-Date: 2019-03-13 16:02-0400\n" "PO-Revision-Date: 2017-04-30 11:50+0200\n" "Last-Translator: Heimen Stoffels \n" "Language-Team: \n" @@ -22,7 +22,7 @@ msgstr "" msgid "About" msgstr "Over" -#: Console/AppConsole.vala:117 +#: Console/AppConsole.vala:116 msgid "Admin access is required for running this application." msgstr "" "U heeft administrator-rechten nodig om deze applicatie te kunnen draaien." @@ -41,7 +41,7 @@ msgstr "Systeemarchitectuur" msgid "Artists" msgstr "Artiesten" -#: Console/AppConsole.vala:104 +#: Console/AppConsole.vala:103 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "" @@ -58,7 +58,7 @@ msgstr "Beschikbare kernels" msgid "Back" msgstr "Terug" -#: Console/AppConsole.vala:207 Gtk/AppGtk.vala:110 +#: Console/AppConsole.vala:206 Gtk/AppGtk.vala:110 msgid "Cache" msgstr "" @@ -76,11 +76,11 @@ msgstr "Wijzigingen" msgid "Check every" msgstr "Controleer elke" -#: Console/AppConsole.vala:88 +#: Console/AppConsole.vala:87 msgid "Check for kernel updates" msgstr "Controleren op kernel-updates" -#: Console/AppConsole.vala:89 +#: Console/AppConsole.vala:88 #, fuzzy msgid "Check for kernel updates and notify current user" msgstr "Controleren op kernel-updates" @@ -89,11 +89,11 @@ msgstr "Controleren op kernel-updates" msgid "Close" msgstr "Sluiten" -#: Console/AppConsole.vala:344 +#: Console/AppConsole.vala:343 msgid "Command not specified" msgstr "" -#: Console/AppConsole.vala:86 +#: Console/AppConsole.vala:85 msgid "Commands" msgstr "" @@ -116,7 +116,7 @@ msgstr "Bijdragen" msgid "Could not find any kernels to remove" msgstr "Selecteer de te verwijderen kernels" -#: Console/AppConsole.vala:312 Gtk/MainWindow.vala:100 +#: Console/AppConsole.vala:311 Gtk/MainWindow.vala:100 msgid "Could not find requested version" msgstr "De vereiste versie kan niet worden gevonden" @@ -159,7 +159,7 @@ msgstr "Distributie" msgid "Documenters" msgstr "Documenteerders" -#: Console/AppConsole.vala:97 +#: Console/AppConsole.vala:96 msgid "Download packages for specified kernel" msgstr "Pakketten downloaden voor opgegeven kernel" @@ -275,16 +275,16 @@ msgstr "Installeren" msgid "Install Linux v%s ? (y/n): " msgstr "" -#: Console/AppConsole.vala:92 +#: Console/AppConsole.vala:91 #, fuzzy msgid "Install latest mainline kernel" msgstr "Opgegeven mainline-kernel installeren" -#: Console/AppConsole.vala:93 +#: Console/AppConsole.vala:92 msgid "Install latest point update for current series" msgstr "" -#: Console/AppConsole.vala:94 +#: Console/AppConsole.vala:93 msgid "Install specified mainline kernel" msgstr "Opgegeven mainline-kernel installeren" @@ -307,7 +307,7 @@ msgid "Installed" msgstr "Geïnstalleerd" #: Gtk/MainWindow.vala:350 Gtk/MainWindow.vala:547 Gtk/MainWindow.vala:683 -#: Utility/TeeJee.System.vala:292 +#: Utility/TeeJee.System.vala:281 msgid "Internet connection is not active" msgstr "U bent niet verbonden met het internet" @@ -324,17 +324,17 @@ msgstr "Kernel" msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Kernel-upgradehulpmiddel voor op Ubuntu-gebaseerde distributies" -#: Common/LinuxKernel.vala:776 Console/AppConsole.vala:370 +#: Common/LinuxKernel.vala:776 Console/AppConsole.vala:369 #, c-format msgid "Latest point update" msgstr "" -#: Common/LinuxKernel.vala:765 Console/AppConsole.vala:363 +#: Common/LinuxKernel.vala:765 Console/AppConsole.vala:362 #, c-format msgid "Latest update" msgstr "" -#: Console/AppConsole.vala:90 +#: Console/AppConsole.vala:89 msgid "List all available mainline kernels" msgstr "Alle beschikbare mainline-kernels weergeven" @@ -343,7 +343,7 @@ msgstr "Alle beschikbare mainline-kernels weergeven" msgid "List available kernels" msgstr "Alle beschikbare mainline-kernels weergeven" -#: Console/AppConsole.vala:91 +#: Console/AppConsole.vala:90 #, fuzzy msgid "List installed kernels" msgstr "Alle beschikbare mainline-kernels weergeven" @@ -356,7 +356,7 @@ msgstr "Ontbrekend pictogram" msgid "Multiple Kernels Selected" msgstr "Meerdere kernels geselecteerd" -#: Console/AppConsole.vala:294 +#: Console/AppConsole.vala:293 msgid "Multiple kernels selected for installation. Select only one." msgstr "" "Er zijn meerdere te installeren kernels geselecteerd. Selecteer er slechts " @@ -370,12 +370,12 @@ msgstr "" msgid "No Internet" msgstr "Geen internetverbinding" -#: Console/AppConsole.vala:288 Console/AppConsole.vala:325 +#: Console/AppConsole.vala:287 Console/AppConsole.vala:324 msgid "No kernels specified" msgstr "" -#: Common/LinuxKernel.vala:784 Console/AppConsole.vala:375 -#: Console/AppConsole.vala:433 Gtk/MainWindow.vala:793 +#: Common/LinuxKernel.vala:784 Console/AppConsole.vala:374 +#: Console/AppConsole.vala:432 Gtk/MainWindow.vala:793 msgid "No updates found" msgstr "Geen updates gevonden" @@ -401,7 +401,7 @@ msgstr "Melding weergeven als er een puntupdate beschikbaar is" msgid "OK" msgstr "Oké" -#: Console/AppConsole.vala:101 Gtk/AppGtk.vala:181 +#: Console/AppConsole.vala:100 Gtk/AppGtk.vala:181 msgid "Options" msgstr "Opties" @@ -447,25 +447,25 @@ msgstr "Bezig met verversen..." msgid "Remove" msgstr "Verwijderen" -#: Console/AppConsole.vala:98 Console/AppConsole.vala:103 +#: Console/AppConsole.vala:97 Console/AppConsole.vala:102 msgid "Remove files from application cache" msgstr "Bestanden verwijderen uit applicatie-cache" -#: Console/AppConsole.vala:96 Gtk/MainWindow.vala:426 +#: Console/AppConsole.vala:95 Gtk/MainWindow.vala:426 msgid "Remove installed kernels older than running kernel" msgstr "" -#: Console/AppConsole.vala:95 +#: Console/AppConsole.vala:94 #, fuzzy msgid "Remove specified kernel" msgstr "Opgegeven mainline-kernel verwijderen" -#: Console/AppConsole.vala:202 Console/AppConsole.vala:316 -#: Console/AppConsole.vala:345 +#: Console/AppConsole.vala:201 Console/AppConsole.vala:315 +#: Console/AppConsole.vala:344 msgid "Run '" msgstr "" -#: Console/AppConsole.vala:120 +#: Console/AppConsole.vala:119 #, fuzzy msgid "Run the application as admin with pkexec or sudo." msgstr "Draai de applicatie als root of m.b.v. gksu/sudo." @@ -515,7 +515,7 @@ msgstr "Bureaubladmelding weergeven" msgid "Show notification dialog" msgstr "Meldingsvenster weergeven" -#: Console/AppConsole.vala:99 +#: Console/AppConsole.vala:98 #, fuzzy msgid "Show unstable and RC releases" msgstr "Instabiele en RC-uitgaven verbergen" @@ -533,11 +533,11 @@ msgstr "Status" msgid "Stopped" msgstr "Gestopt" -#: Console/AppConsole.vala:84 Gtk/AppGtk.vala:179 +#: Console/AppConsole.vala:83 Gtk/AppGtk.vala:179 msgid "Syntax" msgstr "Syntax" -#: Console/AppConsole.vala:208 Gtk/AppGtk.vala:111 +#: Console/AppConsole.vala:207 Gtk/AppGtk.vala:111 msgid "Temp" msgstr "" @@ -576,7 +576,7 @@ msgstr "Deïnstalleren voltooid" msgid "Un-install completed with errors" msgstr "Deïnstalleren voltooid, maar met fouten" -#: Console/AppConsole.vala:200 Gtk/AppGtk.vala:166 +#: Console/AppConsole.vala:199 Gtk/AppGtk.vala:166 msgid "Unknown option" msgstr "Onbekende optie" diff --git a/po/ukuu-pl.po b/po/ukuu-pl.po index 1d4fb6ed..72e4780f 100644 --- a/po/ukuu-pl.po +++ b/po/ukuu-pl.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu\n" "Report-Msgid-Bugs-To: bw.aljex@gmail.com\n" -"POT-Creation-Date: 2019-03-13 11:41-0400\n" +"POT-Creation-Date: 2019-03-13 16:02-0400\n" "PO-Revision-Date: 2017-08-12 15:26+0200\n" "Last-Translator: \n" "Language-Team: Polish\n" @@ -20,7 +20,7 @@ msgstr "" msgid "About" msgstr "O programie" -#: Console/AppConsole.vala:117 +#: Console/AppConsole.vala:116 msgid "Admin access is required for running this application." msgstr "Aby uruchomić tę aplikację niezbędne są prawa administratora." @@ -38,7 +38,7 @@ msgstr "Architektura systemu" msgid "Artists" msgstr "Artyści" -#: Console/AppConsole.vala:104 +#: Console/AppConsole.vala:103 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "" @@ -55,7 +55,7 @@ msgstr "Dostępne jądra" msgid "Back" msgstr "Wstecz" -#: Console/AppConsole.vala:207 Gtk/AppGtk.vala:110 +#: Console/AppConsole.vala:206 Gtk/AppGtk.vala:110 msgid "Cache" msgstr "" @@ -73,11 +73,11 @@ msgstr "Zmiany" msgid "Check every" msgstr "Sprawdzaj co" -#: Console/AppConsole.vala:88 +#: Console/AppConsole.vala:87 msgid "Check for kernel updates" msgstr "Sprawdź nowe wersje jądra" -#: Console/AppConsole.vala:89 +#: Console/AppConsole.vala:88 #, fuzzy msgid "Check for kernel updates and notify current user" msgstr "Sprawdź nowe wersje jądra" @@ -86,11 +86,11 @@ msgstr "Sprawdź nowe wersje jądra" msgid "Close" msgstr "Zamknij" -#: Console/AppConsole.vala:344 +#: Console/AppConsole.vala:343 msgid "Command not specified" msgstr "" -#: Console/AppConsole.vala:86 +#: Console/AppConsole.vala:85 msgid "Commands" msgstr "" @@ -113,7 +113,7 @@ msgstr "Wkład" msgid "Could not find any kernels to remove" msgstr "Wybierz jądro do usunięcia" -#: Console/AppConsole.vala:312 Gtk/MainWindow.vala:100 +#: Console/AppConsole.vala:311 Gtk/MainWindow.vala:100 msgid "Could not find requested version" msgstr "Nie można odnaleźć żądanej wersji" @@ -156,7 +156,7 @@ msgstr "Dystrybucja" msgid "Documenters" msgstr "Dokumentujący" -#: Console/AppConsole.vala:97 +#: Console/AppConsole.vala:96 msgid "Download packages for specified kernel" msgstr "Pobierz pakiety dla wybranego jądra" @@ -272,16 +272,16 @@ msgstr "Zainstaluj" msgid "Install Linux v%s ? (y/n): " msgstr "" -#: Console/AppConsole.vala:92 +#: Console/AppConsole.vala:91 #, fuzzy msgid "Install latest mainline kernel" msgstr "Zainstaluj wybrane jądro" -#: Console/AppConsole.vala:93 +#: Console/AppConsole.vala:92 msgid "Install latest point update for current series" msgstr "" -#: Console/AppConsole.vala:94 +#: Console/AppConsole.vala:93 msgid "Install specified mainline kernel" msgstr "Zainstaluj wybrane jądro" @@ -304,7 +304,7 @@ msgid "Installed" msgstr "Zainstalowany" #: Gtk/MainWindow.vala:350 Gtk/MainWindow.vala:547 Gtk/MainWindow.vala:683 -#: Utility/TeeJee.System.vala:292 +#: Utility/TeeJee.System.vala:281 msgid "Internet connection is not active" msgstr "Brak połączenia z internetem" @@ -321,17 +321,17 @@ msgstr "Jądro" msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Narzędzie uaktualniania jądra dla dystrybucji z rodziny Ubuntu" -#: Common/LinuxKernel.vala:776 Console/AppConsole.vala:370 +#: Common/LinuxKernel.vala:776 Console/AppConsole.vala:369 #, c-format msgid "Latest point update" msgstr "" -#: Common/LinuxKernel.vala:765 Console/AppConsole.vala:363 +#: Common/LinuxKernel.vala:765 Console/AppConsole.vala:362 #, c-format msgid "Latest update" msgstr "" -#: Console/AppConsole.vala:90 +#: Console/AppConsole.vala:89 msgid "List all available mainline kernels" msgstr "Pokaż wszystkie dostępne jądra" @@ -340,7 +340,7 @@ msgstr "Pokaż wszystkie dostępne jądra" msgid "List available kernels" msgstr "Pokaż wszystkie dostępne jądra" -#: Console/AppConsole.vala:91 +#: Console/AppConsole.vala:90 #, fuzzy msgid "List installed kernels" msgstr "Pokaż wszystkie dostępne jądra" @@ -353,7 +353,7 @@ msgstr "Brakująca ikona" msgid "Multiple Kernels Selected" msgstr "Wybrano kilka jąder" -#: Console/AppConsole.vala:294 +#: Console/AppConsole.vala:293 msgid "Multiple kernels selected for installation. Select only one." msgstr "Wybrano kilka jąder do instalacji. Wybierz tylko jedno." @@ -365,12 +365,12 @@ msgstr "" msgid "No Internet" msgstr "Brak internetu" -#: Console/AppConsole.vala:288 Console/AppConsole.vala:325 +#: Console/AppConsole.vala:287 Console/AppConsole.vala:324 msgid "No kernels specified" msgstr "" -#: Common/LinuxKernel.vala:784 Console/AppConsole.vala:375 -#: Console/AppConsole.vala:433 Gtk/MainWindow.vala:793 +#: Common/LinuxKernel.vala:784 Console/AppConsole.vala:374 +#: Console/AppConsole.vala:432 Gtk/MainWindow.vala:793 msgid "No updates found" msgstr "Nie znaleziono aktualizacji" @@ -396,7 +396,7 @@ msgstr "Powiadom, jeśli pojawi się wersja punktowa" msgid "OK" msgstr "OK" -#: Console/AppConsole.vala:101 Gtk/AppGtk.vala:181 +#: Console/AppConsole.vala:100 Gtk/AppGtk.vala:181 msgid "Options" msgstr "Opcje" @@ -442,25 +442,25 @@ msgstr "Odświeżam..." msgid "Remove" msgstr "Usuń" -#: Console/AppConsole.vala:98 Console/AppConsole.vala:103 +#: Console/AppConsole.vala:97 Console/AppConsole.vala:102 msgid "Remove files from application cache" msgstr "Usuń pliki z pamięci podręcznej aplikacji" -#: Console/AppConsole.vala:96 Gtk/MainWindow.vala:426 +#: Console/AppConsole.vala:95 Gtk/MainWindow.vala:426 msgid "Remove installed kernels older than running kernel" msgstr "" -#: Console/AppConsole.vala:95 +#: Console/AppConsole.vala:94 #, fuzzy msgid "Remove specified kernel" msgstr "Usuń wybrane jądro" -#: Console/AppConsole.vala:202 Console/AppConsole.vala:316 -#: Console/AppConsole.vala:345 +#: Console/AppConsole.vala:201 Console/AppConsole.vala:315 +#: Console/AppConsole.vala:344 msgid "Run '" msgstr "" -#: Console/AppConsole.vala:120 +#: Console/AppConsole.vala:119 #, fuzzy msgid "Run the application as admin with pkexec or sudo." msgstr "Uruchom aplikację jako root albo użyj gksu/sudo." @@ -509,7 +509,7 @@ msgstr "Pokaż powiadomienia na pulpicie" msgid "Show notification dialog" msgstr "Pokaż okno powiadomień" -#: Console/AppConsole.vala:99 +#: Console/AppConsole.vala:98 #, fuzzy msgid "Show unstable and RC releases" msgstr "Ukryj wydania niestabilne i RC" @@ -527,11 +527,11 @@ msgstr "Status" msgid "Stopped" msgstr "Zatrzymany" -#: Console/AppConsole.vala:84 Gtk/AppGtk.vala:179 +#: Console/AppConsole.vala:83 Gtk/AppGtk.vala:179 msgid "Syntax" msgstr "Składnia" -#: Console/AppConsole.vala:208 Gtk/AppGtk.vala:111 +#: Console/AppConsole.vala:207 Gtk/AppGtk.vala:111 msgid "Temp" msgstr "" @@ -570,7 +570,7 @@ msgstr "De-instalacja zakończona" msgid "Un-install completed with errors" msgstr "De-instalacja zakończona z błędami" -#: Console/AppConsole.vala:200 Gtk/AppGtk.vala:166 +#: Console/AppConsole.vala:199 Gtk/AppGtk.vala:166 msgid "Unknown option" msgstr "Nieznana opcja" diff --git a/po/ukuu-ru.po b/po/ukuu-ru.po index 1d1f0c54..1e33f854 100644 --- a/po/ukuu-ru.po +++ b/po/ukuu-ru.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu\n" "Report-Msgid-Bugs-To: bw.aljex@gmail.com\n" -"POT-Creation-Date: 2019-03-13 11:41-0400\n" +"POT-Creation-Date: 2019-03-13 16:02-0400\n" "PO-Revision-Date: 2016-12-13 16:46+0300\n" "Last-Translator: Faust3000 \n" "Language-Team: Russian \n" @@ -22,7 +22,7 @@ msgstr "" msgid "About" msgstr "О программе" -#: Console/AppConsole.vala:117 +#: Console/AppConsole.vala:116 msgid "Admin access is required for running this application." msgstr "Для запуска программы требуются права администратора." @@ -40,7 +40,7 @@ msgstr "Системная архитектура" msgid "Artists" msgstr "Художники" -#: Console/AppConsole.vala:104 +#: Console/AppConsole.vala:103 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "" @@ -57,7 +57,7 @@ msgstr "Доступные ядра" msgid "Back" msgstr "Назад" -#: Console/AppConsole.vala:207 Gtk/AppGtk.vala:110 +#: Console/AppConsole.vala:206 Gtk/AppGtk.vala:110 msgid "Cache" msgstr "" @@ -75,11 +75,11 @@ msgstr "Изменения" msgid "Check every" msgstr "Проверять каждые" -#: Console/AppConsole.vala:88 +#: Console/AppConsole.vala:87 msgid "Check for kernel updates" msgstr "Проверить обновления ядра" -#: Console/AppConsole.vala:89 +#: Console/AppConsole.vala:88 #, fuzzy msgid "Check for kernel updates and notify current user" msgstr "Проверить обновления ядра" @@ -88,11 +88,11 @@ msgstr "Проверить обновления ядра" msgid "Close" msgstr "Закрыть" -#: Console/AppConsole.vala:344 +#: Console/AppConsole.vala:343 msgid "Command not specified" msgstr "" -#: Console/AppConsole.vala:86 +#: Console/AppConsole.vala:85 msgid "Commands" msgstr "" @@ -115,7 +115,7 @@ msgstr "Взносы" msgid "Could not find any kernels to remove" msgstr "Не удалось найти запрошенную версию" -#: Console/AppConsole.vala:312 Gtk/MainWindow.vala:100 +#: Console/AppConsole.vala:311 Gtk/MainWindow.vala:100 msgid "Could not find requested version" msgstr "Не удалось найти запрошенную версию" @@ -159,7 +159,7 @@ msgstr "Дистрибутив" msgid "Documenters" msgstr "Составители документации" -#: Console/AppConsole.vala:97 +#: Console/AppConsole.vala:96 msgid "Download packages for specified kernel" msgstr "Скачать пакеты для указанного ядра" @@ -279,16 +279,16 @@ msgstr "Установить" msgid "Install Linux v%s ? (y/n): " msgstr "" -#: Console/AppConsole.vala:92 +#: Console/AppConsole.vala:91 #, fuzzy msgid "Install latest mainline kernel" msgstr "Установить указанную ветку ядра" -#: Console/AppConsole.vala:93 +#: Console/AppConsole.vala:92 msgid "Install latest point update for current series" msgstr "" -#: Console/AppConsole.vala:94 +#: Console/AppConsole.vala:93 msgid "Install specified mainline kernel" msgstr "Установить указанную ветку ядра" @@ -311,7 +311,7 @@ msgid "Installed" msgstr "Установлено" #: Gtk/MainWindow.vala:350 Gtk/MainWindow.vala:547 Gtk/MainWindow.vala:683 -#: Utility/TeeJee.System.vala:292 +#: Utility/TeeJee.System.vala:281 msgid "Internet connection is not active" msgstr "Интернет соединение не активно" @@ -328,17 +328,17 @@ msgstr "Ядро" msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Программа обновления ядра для дистрибутивов на базе Ubuntu" -#: Common/LinuxKernel.vala:776 Console/AppConsole.vala:370 +#: Common/LinuxKernel.vala:776 Console/AppConsole.vala:369 #, c-format msgid "Latest point update" msgstr "" -#: Common/LinuxKernel.vala:765 Console/AppConsole.vala:363 +#: Common/LinuxKernel.vala:765 Console/AppConsole.vala:362 #, c-format msgid "Latest update" msgstr "" -#: Console/AppConsole.vala:90 +#: Console/AppConsole.vala:89 msgid "List all available mainline kernels" msgstr "Список всех доступных основных ядер" @@ -347,7 +347,7 @@ msgstr "Список всех доступных основных ядер" msgid "List available kernels" msgstr "Список всех доступных основных ядер" -#: Console/AppConsole.vala:91 +#: Console/AppConsole.vala:90 #, fuzzy msgid "List installed kernels" msgstr "Список всех доступных основных ядер" @@ -360,7 +360,7 @@ msgstr "Значок отсутствует" msgid "Multiple Kernels Selected" msgstr "" -#: Console/AppConsole.vala:294 +#: Console/AppConsole.vala:293 msgid "Multiple kernels selected for installation. Select only one." msgstr "" @@ -372,12 +372,12 @@ msgstr "" msgid "No Internet" msgstr "" -#: Console/AppConsole.vala:288 Console/AppConsole.vala:325 +#: Console/AppConsole.vala:287 Console/AppConsole.vala:324 msgid "No kernels specified" msgstr "" -#: Common/LinuxKernel.vala:784 Console/AppConsole.vala:375 -#: Console/AppConsole.vala:433 Gtk/MainWindow.vala:793 +#: Common/LinuxKernel.vala:784 Console/AppConsole.vala:374 +#: Console/AppConsole.vala:432 Gtk/MainWindow.vala:793 msgid "No updates found" msgstr "Обновлений не найдено" @@ -403,7 +403,7 @@ msgstr "Уведомлять, если доступно небольшое об msgid "OK" msgstr "OK" -#: Console/AppConsole.vala:101 Gtk/AppGtk.vala:181 +#: Console/AppConsole.vala:100 Gtk/AppGtk.vala:181 msgid "Options" msgstr "Параметры" @@ -449,25 +449,25 @@ msgstr "Обновление..." msgid "Remove" msgstr "Удалить" -#: Console/AppConsole.vala:98 Console/AppConsole.vala:103 +#: Console/AppConsole.vala:97 Console/AppConsole.vala:102 msgid "Remove files from application cache" msgstr "Удалить файлы из кэша программы" -#: Console/AppConsole.vala:96 Gtk/MainWindow.vala:426 +#: Console/AppConsole.vala:95 Gtk/MainWindow.vala:426 msgid "Remove installed kernels older than running kernel" msgstr "Удалить более старшие установленные ядра, чем используемое" -#: Console/AppConsole.vala:95 +#: Console/AppConsole.vala:94 #, fuzzy msgid "Remove specified kernel" msgstr "Удалить указанную ветку ядра" -#: Console/AppConsole.vala:202 Console/AppConsole.vala:316 -#: Console/AppConsole.vala:345 +#: Console/AppConsole.vala:201 Console/AppConsole.vala:315 +#: Console/AppConsole.vala:344 msgid "Run '" msgstr "" -#: Console/AppConsole.vala:120 +#: Console/AppConsole.vala:119 #, fuzzy msgid "Run the application as admin with pkexec or sudo." msgstr "Запустите программу с правами Root или используйте gksu/sudo." @@ -517,7 +517,7 @@ msgstr "Показывать окно оповещений на рабочем msgid "Show notification dialog" msgstr "Показывать окно оповещений" -#: Console/AppConsole.vala:99 +#: Console/AppConsole.vala:98 #, fuzzy msgid "Show unstable and RC releases" msgstr "Скрыть нестабильные и релиз-кандидат версии" @@ -535,11 +535,11 @@ msgstr "Состояние" msgid "Stopped" msgstr "Остановлено" -#: Console/AppConsole.vala:84 Gtk/AppGtk.vala:179 +#: Console/AppConsole.vala:83 Gtk/AppGtk.vala:179 msgid "Syntax" msgstr "Синтаксис" -#: Console/AppConsole.vala:208 Gtk/AppGtk.vala:111 +#: Console/AppConsole.vala:207 Gtk/AppGtk.vala:111 msgid "Temp" msgstr "" @@ -578,7 +578,7 @@ msgstr "Удаление завершено" msgid "Un-install completed with errors" msgstr "Удаление завершено с ошибками" -#: Console/AppConsole.vala:200 Gtk/AppGtk.vala:166 +#: Console/AppConsole.vala:199 Gtk/AppGtk.vala:166 msgid "Unknown option" msgstr "Неизвестный параметр" diff --git a/po/ukuu-sv.po b/po/ukuu-sv.po index 0be3b890..807af8b5 100644 --- a/po/ukuu-sv.po +++ b/po/ukuu-sv.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu 2.2\n" "Report-Msgid-Bugs-To: bw.aljex@gmail.com\n" -"POT-Creation-Date: 2019-03-13 11:41-0400\n" +"POT-Creation-Date: 2019-03-13 16:02-0400\n" "PO-Revision-Date: 2018-01-13 16:56+0100\n" "Last-Translator: Åke Engelbrektson \n" "Language-Team: Svenska Språkfiler \n" @@ -22,7 +22,7 @@ msgstr "" msgid "About" msgstr "Om" -#: Console/AppConsole.vala:117 +#: Console/AppConsole.vala:116 msgid "Admin access is required for running this application." msgstr "Root-åtkomst krävs för att köra detta program." @@ -40,7 +40,7 @@ msgstr "Systemarkitektur" msgid "Artists" msgstr "Artister" -#: Console/AppConsole.vala:104 +#: Console/AppConsole.vala:103 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "" @@ -57,7 +57,7 @@ msgstr "Tillgängliga kärnor" msgid "Back" msgstr "Tillbaka" -#: Console/AppConsole.vala:207 Gtk/AppGtk.vala:110 +#: Console/AppConsole.vala:206 Gtk/AppGtk.vala:110 msgid "Cache" msgstr "" @@ -75,11 +75,11 @@ msgstr "Ändringar" msgid "Check every" msgstr "Kontrollera varje" -#: Console/AppConsole.vala:88 +#: Console/AppConsole.vala:87 msgid "Check for kernel updates" msgstr "Sök efter kärnuppdateringar" -#: Console/AppConsole.vala:89 +#: Console/AppConsole.vala:88 #, fuzzy msgid "Check for kernel updates and notify current user" msgstr "Sök efter kärnuppdateringar" @@ -88,11 +88,11 @@ msgstr "Sök efter kärnuppdateringar" msgid "Close" msgstr "Stäng" -#: Console/AppConsole.vala:344 +#: Console/AppConsole.vala:343 msgid "Command not specified" msgstr "" -#: Console/AppConsole.vala:86 +#: Console/AppConsole.vala:85 msgid "Commands" msgstr "" @@ -115,7 +115,7 @@ msgstr "Bidrag" msgid "Could not find any kernels to remove" msgstr "Välj kärnor för borttagning" -#: Console/AppConsole.vala:312 Gtk/MainWindow.vala:100 +#: Console/AppConsole.vala:311 Gtk/MainWindow.vala:100 msgid "Could not find requested version" msgstr "Kunde inte hitta efterfrågad version" @@ -158,7 +158,7 @@ msgstr "Distribution" msgid "Documenters" msgstr "Dokumentalister" -#: Console/AppConsole.vala:97 +#: Console/AppConsole.vala:96 msgid "Download packages for specified kernel" msgstr "Ladda ner paket för specificerad kärna" @@ -275,16 +275,16 @@ msgstr "Installera" msgid "Install Linux v%s ? (y/n): " msgstr "" -#: Console/AppConsole.vala:92 +#: Console/AppConsole.vala:91 #, fuzzy msgid "Install latest mainline kernel" msgstr "Installera specificerad kärna" -#: Console/AppConsole.vala:93 +#: Console/AppConsole.vala:92 msgid "Install latest point update for current series" msgstr "" -#: Console/AppConsole.vala:94 +#: Console/AppConsole.vala:93 msgid "Install specified mainline kernel" msgstr "Installera specificerad kärna" @@ -305,7 +305,7 @@ msgid "Installed" msgstr "Installerad" #: Gtk/MainWindow.vala:350 Gtk/MainWindow.vala:547 Gtk/MainWindow.vala:683 -#: Utility/TeeJee.System.vala:292 +#: Utility/TeeJee.System.vala:281 msgid "Internet connection is not active" msgstr "Internetuppkopplingen är inte aktiv" @@ -322,17 +322,17 @@ msgstr "Kärna" msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Kärnuppgraderingsverktyg för Ubuntu-baserade distributioner" -#: Common/LinuxKernel.vala:776 Console/AppConsole.vala:370 +#: Common/LinuxKernel.vala:776 Console/AppConsole.vala:369 #, c-format msgid "Latest point update" msgstr "" -#: Common/LinuxKernel.vala:765 Console/AppConsole.vala:363 +#: Common/LinuxKernel.vala:765 Console/AppConsole.vala:362 #, c-format msgid "Latest update" msgstr "" -#: Console/AppConsole.vala:90 +#: Console/AppConsole.vala:89 msgid "List all available mainline kernels" msgstr "Lista alla tillgängliga kärnor" @@ -340,7 +340,7 @@ msgstr "Lista alla tillgängliga kärnor" msgid "List available kernels" msgstr "Lista tillgängliga kärnor" -#: Console/AppConsole.vala:91 +#: Console/AppConsole.vala:90 #, fuzzy msgid "List installed kernels" msgstr "Lista tillgängliga kärnor" @@ -353,7 +353,7 @@ msgstr "Saknad ikon" msgid "Multiple Kernels Selected" msgstr "Flera kärnor markerade" -#: Console/AppConsole.vala:294 +#: Console/AppConsole.vala:293 msgid "Multiple kernels selected for installation. Select only one." msgstr "Flera kärnor valda för installation. Välj endast en." @@ -365,12 +365,12 @@ msgstr "Nej" msgid "No Internet" msgstr "Inget internet" -#: Console/AppConsole.vala:288 Console/AppConsole.vala:325 +#: Console/AppConsole.vala:287 Console/AppConsole.vala:324 msgid "No kernels specified" msgstr "" -#: Common/LinuxKernel.vala:784 Console/AppConsole.vala:375 -#: Console/AppConsole.vala:433 Gtk/MainWindow.vala:793 +#: Common/LinuxKernel.vala:784 Console/AppConsole.vala:374 +#: Console/AppConsole.vala:432 Gtk/MainWindow.vala:793 msgid "No updates found" msgstr "Inga uppdateringar hittades" @@ -396,7 +396,7 @@ msgstr "Meddela om en ny (mindre) uppdatering finns tillgänglig" msgid "OK" msgstr "OK" -#: Console/AppConsole.vala:101 Gtk/AppGtk.vala:181 +#: Console/AppConsole.vala:100 Gtk/AppGtk.vala:181 msgid "Options" msgstr "Alternativ" @@ -442,25 +442,25 @@ msgstr "Uppdaterar ..." msgid "Remove" msgstr "Ta bort" -#: Console/AppConsole.vala:98 Console/AppConsole.vala:103 +#: Console/AppConsole.vala:97 Console/AppConsole.vala:102 msgid "Remove files from application cache" msgstr "Ta bort filer från program-cachen" -#: Console/AppConsole.vala:96 Gtk/MainWindow.vala:426 +#: Console/AppConsole.vala:95 Gtk/MainWindow.vala:426 msgid "Remove installed kernels older than running kernel" msgstr "Ta bort installerade kärnor äldre än den som körs" -#: Console/AppConsole.vala:95 +#: Console/AppConsole.vala:94 #, fuzzy msgid "Remove specified kernel" msgstr "Ta bort specificerad kärna" -#: Console/AppConsole.vala:202 Console/AppConsole.vala:316 -#: Console/AppConsole.vala:345 +#: Console/AppConsole.vala:201 Console/AppConsole.vala:315 +#: Console/AppConsole.vala:344 msgid "Run '" msgstr "" -#: Console/AppConsole.vala:120 +#: Console/AppConsole.vala:119 msgid "Run the application as admin with pkexec or sudo." msgstr "Kör programmet som administratör, med pkexec eller sudo." @@ -508,7 +508,7 @@ msgstr "Visa aviseringsruta på skrivbordet" msgid "Show notification dialog" msgstr "Visa aviseringsdialog" -#: Console/AppConsole.vala:99 +#: Console/AppConsole.vala:98 #, fuzzy msgid "Show unstable and RC releases" msgstr "Dölj instabila- och RC-publiceringar" @@ -526,11 +526,11 @@ msgstr "Status" msgid "Stopped" msgstr "Stoppad" -#: Console/AppConsole.vala:84 Gtk/AppGtk.vala:179 +#: Console/AppConsole.vala:83 Gtk/AppGtk.vala:179 msgid "Syntax" msgstr "Syntax" -#: Console/AppConsole.vala:208 Gtk/AppGtk.vala:111 +#: Console/AppConsole.vala:207 Gtk/AppGtk.vala:111 msgid "Temp" msgstr "" @@ -569,7 +569,7 @@ msgstr "Avinstallation slutförd" msgid "Un-install completed with errors" msgstr "Avinstallation slutförd med fel" -#: Console/AppConsole.vala:200 Gtk/AppGtk.vala:166 +#: Console/AppConsole.vala:199 Gtk/AppGtk.vala:166 msgid "Unknown option" msgstr "Okänt alternativ" diff --git a/po/ukuu-tr.po b/po/ukuu-tr.po index 45e19645..d26436ef 100644 --- a/po/ukuu-tr.po +++ b/po/ukuu-tr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu\n" "Report-Msgid-Bugs-To: bw.aljex@gmail.com\n" -"POT-Creation-Date: 2019-03-13 11:41-0400\n" +"POT-Creation-Date: 2019-03-13 16:02-0400\n" "PO-Revision-Date: 2019-03-12 19:35+0300\n" "Last-Translator: Gökhan GÖKKAYA \n" "Language-Team: Turkish\n" @@ -22,7 +22,7 @@ msgstr "" msgid "About" msgstr "Hakkında" -#: Console/AppConsole.vala:117 +#: Console/AppConsole.vala:116 msgid "Admin access is required for running this application." msgstr "Bu uygulamayı çalıştırmak için yönetici izni gerekiyor." @@ -39,7 +39,7 @@ msgstr "Sistem mimarisi" msgid "Artists" msgstr "Sanatçılar" -#: Console/AppConsole.vala:104 +#: Console/AppConsole.vala:103 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "Tüm istemler için Evet'i kabul edin (etkileşimsiz kip)" @@ -56,7 +56,7 @@ msgstr "Mevcut Çekirdekler" msgid "Back" msgstr "Geri" -#: Console/AppConsole.vala:207 Gtk/AppGtk.vala:110 +#: Console/AppConsole.vala:206 Gtk/AppGtk.vala:110 msgid "Cache" msgstr "Önbellek" @@ -74,11 +74,11 @@ msgstr "Değişiklikler" msgid "Check every" msgstr "Kontrol aralığı" -#: Console/AppConsole.vala:88 +#: Console/AppConsole.vala:87 msgid "Check for kernel updates" msgstr "Çekirdek güncellemelerini kontrol et" -#: Console/AppConsole.vala:89 +#: Console/AppConsole.vala:88 msgid "Check for kernel updates and notify current user" msgstr "Çekirdek güncellemelerini kontrol et ve mevcut kullanıcıyı uyar" @@ -86,11 +86,11 @@ msgstr "Çekirdek güncellemelerini kontrol et ve mevcut kullanıcıyı uyar" msgid "Close" msgstr "Kapat" -#: Console/AppConsole.vala:344 +#: Console/AppConsole.vala:343 msgid "Command not specified" msgstr "Komut belirtilmedi" -#: Console/AppConsole.vala:86 +#: Console/AppConsole.vala:85 msgid "Commands" msgstr "Komutlar" @@ -112,7 +112,7 @@ msgstr "Destek verenler" msgid "Could not find any kernels to remove" msgstr "Kaldırılacak çekirdek bulunamadı" -#: Console/AppConsole.vala:312 Gtk/MainWindow.vala:100 +#: Console/AppConsole.vala:311 Gtk/MainWindow.vala:100 msgid "Could not find requested version" msgstr "İstenen sürüm bulunamadı" @@ -154,7 +154,7 @@ msgstr "Dağıtım" msgid "Documenters" msgstr "Belgelendirenler" -#: Console/AppConsole.vala:97 +#: Console/AppConsole.vala:96 msgid "Download packages for specified kernel" msgstr "Belirtilen çekirdek için paketleri indir" @@ -270,15 +270,15 @@ msgstr "Kur" msgid "Install Linux v%s ? (y/n): " msgstr "Linux v%s Kur ? (e/h): " -#: Console/AppConsole.vala:92 +#: Console/AppConsole.vala:91 msgid "Install latest mainline kernel" msgstr "En son mainline çekirdeğini kur" -#: Console/AppConsole.vala:93 +#: Console/AppConsole.vala:92 msgid "Install latest point update for current series" msgstr "Mevcut çekirdek serisi için en güncelleme noktasını kur" -#: Console/AppConsole.vala:94 +#: Console/AppConsole.vala:93 msgid "Install specified mainline kernel" msgstr "Belirtilen mainline çekirdeğini kur" @@ -300,7 +300,7 @@ msgid "Installed" msgstr "Kurulu" #: Gtk/MainWindow.vala:350 Gtk/MainWindow.vala:547 Gtk/MainWindow.vala:683 -#: Utility/TeeJee.System.vala:292 +#: Utility/TeeJee.System.vala:281 msgid "Internet connection is not active" msgstr "İnternet bağlantısı aktif değil" @@ -317,17 +317,17 @@ msgstr "Çekirdek" msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Ubuntu tabanlı dağıtımlar için çekirdek güncelleme aracı" -#: Common/LinuxKernel.vala:776 Console/AppConsole.vala:370 +#: Common/LinuxKernel.vala:776 Console/AppConsole.vala:369 #, c-format msgid "Latest point update" msgstr "Son güncelleme noktası" -#: Common/LinuxKernel.vala:765 Console/AppConsole.vala:363 +#: Common/LinuxKernel.vala:765 Console/AppConsole.vala:362 #, c-format msgid "Latest update" msgstr "Son güncelleme" -#: Console/AppConsole.vala:90 +#: Console/AppConsole.vala:89 msgid "List all available mainline kernels" msgstr "Tüm mainline çekirdeklerini listele" @@ -335,7 +335,7 @@ msgstr "Tüm mainline çekirdeklerini listele" msgid "List available kernels" msgstr "Tüm çekirdekleri listele" -#: Console/AppConsole.vala:91 +#: Console/AppConsole.vala:90 msgid "List installed kernels" msgstr "Kurulu çekirdekleri listele" @@ -347,7 +347,7 @@ msgstr "Eksik Simge" msgid "Multiple Kernels Selected" msgstr "Çoklu Çekirdek Seçildi" -#: Console/AppConsole.vala:294 +#: Console/AppConsole.vala:293 msgid "Multiple kernels selected for installation. Select only one." msgstr "Kurulum için çoklu çekirdek seçildi. Sadece bir tane seçiniz." @@ -359,12 +359,12 @@ msgstr "Hayır" msgid "No Internet" msgstr "İnternet Yok" -#: Console/AppConsole.vala:288 Console/AppConsole.vala:325 +#: Console/AppConsole.vala:287 Console/AppConsole.vala:324 msgid "No kernels specified" msgstr "Belirtilen çekirdek yok" -#: Common/LinuxKernel.vala:784 Console/AppConsole.vala:375 -#: Console/AppConsole.vala:433 Gtk/MainWindow.vala:793 +#: Common/LinuxKernel.vala:784 Console/AppConsole.vala:374 +#: Console/AppConsole.vala:432 Gtk/MainWindow.vala:793 msgid "No updates found" msgstr "Güncelleme bulunamadı" @@ -390,7 +390,7 @@ msgstr "Ara sürüm mevcutsa bildir" msgid "OK" msgstr "TAMAM" -#: Console/AppConsole.vala:101 Gtk/AppGtk.vala:181 +#: Console/AppConsole.vala:100 Gtk/AppGtk.vala:181 msgid "Options" msgstr "Seçenekler" @@ -436,24 +436,24 @@ msgstr "Yenileniyor..." msgid "Remove" msgstr "Kaldır" -#: Console/AppConsole.vala:98 Console/AppConsole.vala:103 +#: Console/AppConsole.vala:97 Console/AppConsole.vala:102 msgid "Remove files from application cache" msgstr "Dosyaları uygulama önbelleğinden sil" -#: Console/AppConsole.vala:96 Gtk/MainWindow.vala:426 +#: Console/AppConsole.vala:95 Gtk/MainWindow.vala:426 msgid "Remove installed kernels older than running kernel" msgstr "Çalışan çekirdekten eski olan kurulu çekirdekleri kaldır" -#: Console/AppConsole.vala:95 +#: Console/AppConsole.vala:94 msgid "Remove specified kernel" msgstr "Belirtilen çekirdeği kaldır" -#: Console/AppConsole.vala:202 Console/AppConsole.vala:316 -#: Console/AppConsole.vala:345 +#: Console/AppConsole.vala:201 Console/AppConsole.vala:315 +#: Console/AppConsole.vala:344 msgid "Run '" msgstr "Çalıştır '" -#: Console/AppConsole.vala:120 +#: Console/AppConsole.vala:119 msgid "Run the application as admin with pkexec or sudo." msgstr "Bu uygulamayı pkexec yada sudo ile yönetici haklarıyla çalıştırın." @@ -501,7 +501,7 @@ msgstr "Masaüstünde bildirim baloncuğu göster" msgid "Show notification dialog" msgstr "Bildirim iletişimini göster" -#: Console/AppConsole.vala:99 +#: Console/AppConsole.vala:98 msgid "Show unstable and RC releases" msgstr "Kararsız ve RC sürümleri göster" @@ -517,11 +517,11 @@ msgstr "Durum" msgid "Stopped" msgstr "Durduruldu" -#: Console/AppConsole.vala:84 Gtk/AppGtk.vala:179 +#: Console/AppConsole.vala:83 Gtk/AppGtk.vala:179 msgid "Syntax" msgstr "Sözdizimi" -#: Console/AppConsole.vala:208 Gtk/AppGtk.vala:111 +#: Console/AppConsole.vala:207 Gtk/AppGtk.vala:111 msgid "Temp" msgstr "Geçici" @@ -560,7 +560,7 @@ msgstr "Kaldırma tamamlandı" msgid "Un-install completed with errors" msgstr "Kaldırma hatalarla tamamlandı" -#: Console/AppConsole.vala:200 Gtk/AppGtk.vala:166 +#: Console/AppConsole.vala:199 Gtk/AppGtk.vala:166 msgid "Unknown option" msgstr "Bilinmeyen seçenek" diff --git a/src/Common/DownloadManager.vala b/src/Common/DownloadManager.vala index f99f66ca..b474630a 100644 --- a/src/Common/DownloadManager.vala +++ b/src/Common/DownloadManager.vala @@ -44,36 +44,6 @@ public class DownloadTask : AsyncTask{ catch (Error e) { log_error (e.message); } - - check_tool_version(); - } - - public static void check_tool_version(){ - - if (tool_version != null){ - return; - } - - log_debug("DownloadTask: check_tool_version()"); - - string std_out, std_err; - - string cmd = "aria2c --version"; - - log_debug(cmd); - - exec_script_sync(cmd, out std_out, out std_err); - - string line = std_out.split("\n")[0]; - var arr = line.split(" "); - if (arr.length >= 3){ - string part = arr[2].strip(); - tool_version = new TeeJee.Version(part); - log_msg("aria2c version: %s".printf(tool_version.version)); - } - else{ - tool_version = new TeeJee.Version("1.19"); // assume - } } // execution ---------------------------- @@ -117,47 +87,36 @@ public class DownloadTask : AsyncTask{ } private string build_script() { - string cmd = ""; - - var command = "wget"; - var cmd_path = get_cmd_path ("aria2c"); - if ((cmd_path != null) && (cmd_path.length > 0)) { - command = "aria2c"; - } - if (command == "aria2c"){ - string list = ""; - string list_file = path_combine(working_dir, "download.list"); - foreach(var item in downloads){ - list += "%s\n".printf(item.source_uri); - list += " gid=%s\n".printf(item.gid); - list += " dir=%s\n".printf(item.partial_dir); - list += " out=%s\n".printf(item.file_name); - } - file_write(list_file, list); - log_debug("saved download list: %s".printf(list_file)); - - cmd += "aria2c"; - cmd += " -i '%s'".printf(escape_single_quote(list_file)); - cmd += " --show-console-readout=false"; - cmd += " --summary-interval=1"; - cmd += " --auto-save-interval=1"; // save aria2 control file every sec - cmd += " --human-readable=false"; - - if (tool_version.is_minimum("1.19")){ - cmd += " --enable-color=false"; // enabling color breaks the output parsing - } - - cmd += " --allow-overwrite"; - cmd += " --connect-timeout=%d".printf(connect_timeout_secs); - cmd += " --timeout=%d".printf(timeout_secs); - cmd += " --max-concurrent-downloads=%d".printf(concurrent_downloads); - //cmd += " --continue"; // never use - this is for continuing files downloaded sequentially by web browser and other programs - //cmd += " --optimize-concurrent-downloads=true"; // not supported by all versions - //cmd += " -l download.log"; // too much logging - //cmd += " --direct-file-mapping=false"; // not required - //cmd += " --dry-run"; + string list = ""; + string list_file = path_combine(working_dir, "download.list"); + foreach(var item in downloads){ + list += "%s\n".printf(item.source_uri); + list += " gid=%s\n".printf(item.gid); + list += " dir=%s\n".printf(item.partial_dir); + list += " out=%s\n".printf(item.file_name); } + file_write(list_file, list); + log_debug("saved download list: %s".printf(list_file)); + + string cmd = "aria2c"; + cmd += " --no-netrc true"; + cmd += " -i '%s'".printf(escape_single_quote(list_file)); + cmd += " --show-console-readout=false"; + cmd += " --summary-interval=1"; + cmd += " --auto-save-interval=1"; + cmd += " --human-readable=false"; + cmd += " --enable-color=false"; + cmd += " --allow-overwrite"; + cmd += " --connect-timeout=%d".printf(connect_timeout_secs); + cmd += " --timeout=%d".printf(timeout_secs); + cmd += " --max-concurrent-downloads=%d".printf(concurrent_downloads); + cmd += " --max-file-not-found=3"; + cmd += " --retry-wait=2"; + //cmd += " --optimize-concurrent-downloads=true"; // not supported by all versions + //cmd += " -l download.log"; + //cmd += " --direct-file-mapping=false"; + //cmd += " --dry-run"; log_debug(cmd); diff --git a/src/Console/AppConsole.vala b/src/Console/AppConsole.vala index d3e0472d..9fda7f93 100644 --- a/src/Console/AppConsole.vala +++ b/src/Console/AppConsole.vala @@ -23,7 +23,6 @@ using GLib; using Gee; -using Soup; using Json; using TeeJee.Logging; diff --git a/src/Makefile b/src/Makefile index e7b0a77d..7700122d 100644 --- a/src/Makefile +++ b/src/Makefile @@ -29,7 +29,7 @@ app-gtk: app: valac ${branding_symbols} --Xcc="-lm" \ - --pkg glib-2.0 --pkg gio-unix-2.0 --pkg posix --pkg gee-0.8 --pkg libsoup-2.4 --pkg json-glib-1.0 \ + --pkg glib-2.0 --pkg gio-unix-2.0 --pkg posix --pkg gee-0.8 --pkg json-glib-1.0 \ Common/*.vala Console/*.vala Utility/*.vala -o ${BRANDING_SHORTNAME} # $(miscs) is a special case. diff --git a/src/Utility/TeeJee.System.vala b/src/Utility/TeeJee.System.vala index daeaba9c..589ce2be 100644 --- a/src/Utility/TeeJee.System.vala +++ b/src/Utility/TeeJee.System.vala @@ -21,7 +21,7 @@ * * */ - + namespace TeeJee.System{ using TeeJee.ProcessHelper; @@ -261,70 +261,29 @@ namespace TeeJee.System{ } // internet helpers ---------------------- - public bool check_internet_connectivity(){ if (App.skip_connection_check) { return true; } - - string std_err, std_out; - string cmd = "url='https://www.google.com' \n"; + string std_err, std_out; - // Note: minimum of 3 seconds is required for timeout, to avoid wrong results - - cmd += "httpCode=$(curl -o /dev/null --silent --max-time " + App.connection_timeout_seconds.to_string() + " --head --write-out '%{http_code}\n' $url) \n"; - - cmd += "test $httpCode -lt 400 -a $httpCode -gt 0 \n"; + string cmd = "aria2c --no-netrc --no-conf --connect-timeout="+App.connection_timeout_seconds.to_string()+" --max-file-not-found=3 --retry-wait=2 --max-tries=3 --dry-run --quiet https://www.google.com/"; - cmd += "exit $?"; - int status = exec_script_sync(cmd, out std_out, out std_err, false); if (std_err.length > 0){ - log_error(std_err); } if (status != 0){ - log_error(_("Internet connection is not active")); } return (status == 0); } - public bool check_internet_connectivity_test1(){ - - // Deprecated: 'ping' may be disabled on enterprise systems - - string std_err, std_out; - - string cmd = "ping -q -w 1 -c 1 `ip r | grep default | cut -d ' ' -f 3`\n"; - - cmd += "exit $?"; - - int status = exec_script_sync(cmd, out std_out, out std_err, false); - - return (status == 0); - } - - public bool check_internet_connectivity_test2(){ - - // Deprecated: 'ping' may be disabled on enterprise systems - - string std_err, std_out; - - string cmd = "ping -q -w 1 -c 1 google.com\n"; - - cmd += "exit $?"; - - int status = exec_script_sync(cmd, out std_out, out std_err, false); - - return (status == 0); - } - public bool shutdown (){ /* Shutdown the system immediately */ diff --git a/ukuu.geany b/ukuu.geany index 8d3bc085..04486c99 100644 --- a/ukuu.geany +++ b/ukuu.geany @@ -17,14 +17,14 @@ long_line_behaviour=1 long_line_column=80 [files] -current_page=13 -FILE_NAME_0=0;None;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fdebian%2Fchangelog;0;4 +current_page=36 +FILE_NAME_0=481;None;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fdebian%2Fchangelog;0;4 FILE_NAME_1=7410;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FCommon%2FMain.vala;0;4 -FILE_NAME_2=1200;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FCommon%2FDownloadManager.vala;0;4 -FILE_NAME_3=31208;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FCommon%2FLinuxKernel.vala;0;4 +FILE_NAME_2=4918;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FCommon%2FDownloadManager.vala;0;4 +FILE_NAME_3=27197;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FCommon%2FLinuxKernel.vala;0;4 FILE_NAME_4=4098;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FCommon%2FPackage.vala;0;4 -FILE_NAME_5=2420;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FConsole%2FAppConsole.vala;0;4 -FILE_NAME_6=4608;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FGtk%2FAppGtk.vala;0;4 +FILE_NAME_5=2284;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FConsole%2FAppConsole.vala;0;4 +FILE_NAME_6=4165;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FGtk%2FAppGtk.vala;0;4 FILE_NAME_7=13538;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FGtk%2FMainWindow.vala;0;4 FILE_NAME_8=4984;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FGtk%2FProgressWindow.vala;0;4 FILE_NAME_9=6653;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FGtk%2FSettingsDialog.vala;0;4 @@ -38,29 +38,31 @@ FILE_NAME_16=33;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FUtility%2 FILE_NAME_17=30;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FUtility%2FTeeJee.Logging.vala;0;4 FILE_NAME_18=8075;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FUtility%2FTeeJee.Misc.vala;0;4 FILE_NAME_19=2336;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FUtility%2FTeeJee.Process.vala;0;4 -FILE_NAME_20=6206;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FUtility%2FTeeJee.System.vala;0;4 +FILE_NAME_20=6080;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FUtility%2FTeeJee.System.vala;0;4 FILE_NAME_21=23;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FUtility%2FVersion.vala;0;4 FILE_NAME_22=8259;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FUtility%2FGtk%2FAboutWindow.vala;0;4 FILE_NAME_23=34;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FUtility%2FGtk%2FCustomMessageDialog.vala;0;4 FILE_NAME_24=6668;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FUtility%2FGtk%2FGtkHelper.vala;0;4 FILE_NAME_25=727;XML;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2Fshare%2Fpolkit-1%2Factions%2Fukuu.policy.src;0;4 FILE_NAME_26=58;Conf;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2Fukuu.desktop;0;4 -FILE_NAME_27=2826;Markdown;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2FREADME.md;0;4 +FILE_NAME_27=2087;Markdown;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2FREADME.md;0;4 FILE_NAME_28=55;None;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2FAUTHORS;0;4 -FILE_NAME_29=313;Conf;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fdebian%2Fcontrol;0;4 +FILE_NAME_29=697;Conf;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fdebian%2Fcontrol;0;4 FILE_NAME_30=94;None;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fdebian%2Fcopyright;0;4 FILE_NAME_31=11111;Po;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fukuu.pot;0;4 FILE_NAME_32=35096;None;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2FCOPYING;0;4 FILE_NAME_33=292;Markdown;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2FLICENSE.md;0;4 FILE_NAME_34=129;Sh;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fbuild.sh;0;4 FILE_NAME_35=441;Make;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fdebian%2Frules;0;4 -FILE_NAME_36=402;Conf;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fdebian%2Fcontrol.src;0;4 +FILE_NAME_36=395;Conf;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fdebian%2Fcontrol.src;0;4 FILE_NAME_37=0;Conf;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fdebian%2Fcopyright.src;0;4 FILE_NAME_38=0;Conf;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2Fukuu.desktop.src;0;4 FILE_NAME_39=77;Make;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2Fmiscs.mak;0;4 FILE_NAME_40=1781;XML;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2Fshare%2Fukuu%2Fimages%2Fgeneral.svg;0;4 -FILE_NAME_41=326;Make;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FMakefile;0;4 +FILE_NAME_41=2391;Make;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FMakefile;0;4 FILE_NAME_42=1722;Sh;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Flibserialport%2Fconfigure.ac;0;4 +FILE_NAME_43=541;Make;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2FBRANDING.mak;0;4 +FILE_NAME_44=9218;None;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Frelease%2Fdeb%2Fukuu_18.9.5-bkw_amd64.build;0;4 [VTE] last_dir=/home/bkw diff --git a/ukuu.pot b/ukuu.pot index 06182d58..fc869b53 100644 --- a/ukuu.pot +++ b/ukuu.pot @@ -6,9 +6,9 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: ukuu 18.9\n" +"Project-Id-Version: ukuu 18.9.5-bkw\n" "Report-Msgid-Bugs-To: bw.aljex@gmail.com\n" -"POT-Creation-Date: 2019-03-13 11:41-0400\n" +"POT-Creation-Date: 2019-03-13 16:02-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -21,7 +21,7 @@ msgstr "" msgid "About" msgstr "" -#: Console/AppConsole.vala:117 +#: Console/AppConsole.vala:116 msgid "Admin access is required for running this application." msgstr "" @@ -38,7 +38,7 @@ msgstr "" msgid "Artists" msgstr "" -#: Console/AppConsole.vala:104 +#: Console/AppConsole.vala:103 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "" @@ -55,7 +55,7 @@ msgstr "" msgid "Back" msgstr "" -#: Console/AppConsole.vala:207 Gtk/AppGtk.vala:110 +#: Console/AppConsole.vala:206 Gtk/AppGtk.vala:110 msgid "Cache" msgstr "" @@ -73,11 +73,11 @@ msgstr "" msgid "Check every" msgstr "" -#: Console/AppConsole.vala:88 +#: Console/AppConsole.vala:87 msgid "Check for kernel updates" msgstr "" -#: Console/AppConsole.vala:89 +#: Console/AppConsole.vala:88 msgid "Check for kernel updates and notify current user" msgstr "" @@ -85,11 +85,11 @@ msgstr "" msgid "Close" msgstr "" -#: Console/AppConsole.vala:344 +#: Console/AppConsole.vala:343 msgid "Command not specified" msgstr "" -#: Console/AppConsole.vala:86 +#: Console/AppConsole.vala:85 msgid "Commands" msgstr "" @@ -111,7 +111,7 @@ msgstr "" msgid "Could not find any kernels to remove" msgstr "" -#: Console/AppConsole.vala:312 Gtk/MainWindow.vala:100 +#: Console/AppConsole.vala:311 Gtk/MainWindow.vala:100 msgid "Could not find requested version" msgstr "" @@ -153,7 +153,7 @@ msgstr "" msgid "Documenters" msgstr "" -#: Console/AppConsole.vala:97 +#: Console/AppConsole.vala:96 msgid "Download packages for specified kernel" msgstr "" @@ -269,15 +269,15 @@ msgstr "" msgid "Install Linux v%s ? (y/n): " msgstr "" -#: Console/AppConsole.vala:92 +#: Console/AppConsole.vala:91 msgid "Install latest mainline kernel" msgstr "" -#: Console/AppConsole.vala:93 +#: Console/AppConsole.vala:92 msgid "Install latest point update for current series" msgstr "" -#: Console/AppConsole.vala:94 +#: Console/AppConsole.vala:93 msgid "Install specified mainline kernel" msgstr "" @@ -298,7 +298,7 @@ msgid "Installed" msgstr "" #: Gtk/MainWindow.vala:350 Gtk/MainWindow.vala:547 Gtk/MainWindow.vala:683 -#: Utility/TeeJee.System.vala:292 +#: Utility/TeeJee.System.vala:281 msgid "Internet connection is not active" msgstr "" @@ -314,17 +314,17 @@ msgstr "" msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "" -#: Common/LinuxKernel.vala:776 Console/AppConsole.vala:370 +#: Common/LinuxKernel.vala:776 Console/AppConsole.vala:369 #, c-format msgid "Latest point update" msgstr "" -#: Common/LinuxKernel.vala:765 Console/AppConsole.vala:363 +#: Common/LinuxKernel.vala:765 Console/AppConsole.vala:362 #, c-format msgid "Latest update" msgstr "" -#: Console/AppConsole.vala:90 +#: Console/AppConsole.vala:89 msgid "List all available mainline kernels" msgstr "" @@ -332,7 +332,7 @@ msgstr "" msgid "List available kernels" msgstr "" -#: Console/AppConsole.vala:91 +#: Console/AppConsole.vala:90 msgid "List installed kernels" msgstr "" @@ -344,7 +344,7 @@ msgstr "" msgid "Multiple Kernels Selected" msgstr "" -#: Console/AppConsole.vala:294 +#: Console/AppConsole.vala:293 msgid "Multiple kernels selected for installation. Select only one." msgstr "" @@ -356,12 +356,12 @@ msgstr "" msgid "No Internet" msgstr "" -#: Console/AppConsole.vala:288 Console/AppConsole.vala:325 +#: Console/AppConsole.vala:287 Console/AppConsole.vala:324 msgid "No kernels specified" msgstr "" -#: Common/LinuxKernel.vala:784 Console/AppConsole.vala:375 -#: Console/AppConsole.vala:433 Gtk/MainWindow.vala:793 +#: Common/LinuxKernel.vala:784 Console/AppConsole.vala:374 +#: Console/AppConsole.vala:432 Gtk/MainWindow.vala:793 msgid "No updates found" msgstr "" @@ -387,7 +387,7 @@ msgstr "" msgid "OK" msgstr "" -#: Console/AppConsole.vala:101 Gtk/AppGtk.vala:181 +#: Console/AppConsole.vala:100 Gtk/AppGtk.vala:181 msgid "Options" msgstr "" @@ -433,24 +433,24 @@ msgstr "" msgid "Remove" msgstr "" -#: Console/AppConsole.vala:98 Console/AppConsole.vala:103 +#: Console/AppConsole.vala:97 Console/AppConsole.vala:102 msgid "Remove files from application cache" msgstr "" -#: Console/AppConsole.vala:96 Gtk/MainWindow.vala:426 +#: Console/AppConsole.vala:95 Gtk/MainWindow.vala:426 msgid "Remove installed kernels older than running kernel" msgstr "" -#: Console/AppConsole.vala:95 +#: Console/AppConsole.vala:94 msgid "Remove specified kernel" msgstr "" -#: Console/AppConsole.vala:202 Console/AppConsole.vala:316 -#: Console/AppConsole.vala:345 +#: Console/AppConsole.vala:201 Console/AppConsole.vala:315 +#: Console/AppConsole.vala:344 msgid "Run '" msgstr "" -#: Console/AppConsole.vala:120 +#: Console/AppConsole.vala:119 msgid "Run the application as admin with pkexec or sudo." msgstr "" @@ -496,7 +496,7 @@ msgstr "" msgid "Show notification dialog" msgstr "" -#: Console/AppConsole.vala:99 +#: Console/AppConsole.vala:98 msgid "Show unstable and RC releases" msgstr "" @@ -512,11 +512,11 @@ msgstr "" msgid "Stopped" msgstr "" -#: Console/AppConsole.vala:84 Gtk/AppGtk.vala:179 +#: Console/AppConsole.vala:83 Gtk/AppGtk.vala:179 msgid "Syntax" msgstr "" -#: Console/AppConsole.vala:208 Gtk/AppGtk.vala:111 +#: Console/AppConsole.vala:207 Gtk/AppGtk.vala:111 msgid "Temp" msgstr "" @@ -553,7 +553,7 @@ msgstr "" msgid "Un-install completed with errors" msgstr "" -#: Console/AppConsole.vala:200 Gtk/AppGtk.vala:166 +#: Console/AppConsole.vala:199 Gtk/AppGtk.vala:166 msgid "Unknown option" msgstr "" From b5155c4f2ec8e71b68efed5dbdc2bd1a41335896 Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Wed, 13 Mar 2019 18:47:55 -0400 Subject: [PATCH 021/567] Remove a few dependencies and checks for things we aren't actually using. Increase initial window size. --- debian/control | 2 +- debian/control.src | 2 +- po/ukuu-es.po | 4 ++-- po/ukuu-fr.po | 4 ++-- po/ukuu-hr.po | 4 ++-- po/ukuu-nl.po | 4 ++-- po/ukuu-pl.po | 4 ++-- po/ukuu-ru.po | 4 ++-- po/ukuu-sv.po | 4 ++-- po/ukuu-tr.po | 4 ++-- src/Common/DownloadManager.vala | 1 - src/Common/Main.vala | 2 +- src/Gtk/MainWindow.vala | 4 ++-- src/Gtk/ProgressWindow.vala | 1 - src/Utility/TeeJee.System.vala | 17 ----------------- ukuu.geany | 18 ++++++++---------- ukuu.pot | 4 ++-- 17 files changed, 31 insertions(+), 52 deletions(-) diff --git a/debian/control b/debian/control index 03111e07..b46e819a 100644 --- a/debian/control +++ b/debian/control @@ -2,7 +2,7 @@ Source: ukuu Section: utils Priority: extra Maintainer: Brian K. White -Build-Depends: debhelper (>= 8.0.0), autotools-dev, valac, libgtk-3-dev, libgee-0.8-dev, libjson-glib-dev, libvte-2.91-dev +Build-Depends: debhelper (>= 8.0.0), valac, libgtk-3-dev, libgee-0.8-dev, libjson-glib-dev, libvte-2.91-dev Standards-Version: 3.9.3 Homepage: https://github.com/aljex/ukuu diff --git a/debian/control.src b/debian/control.src index 5f9d1e3b..9e90b873 100644 --- a/debian/control.src +++ b/debian/control.src @@ -2,7 +2,7 @@ Source: BRANDING_SHORTNAME Section: utils Priority: extra Maintainer: BRANDING_AUTHORNAME -Build-Depends: debhelper (>= 8.0.0), autotools-dev, valac, libgtk-3-dev, libgee-0.8-dev, libjson-glib-dev, libvte-2.91-dev +Build-Depends: debhelper (>= 8.0.0), valac, libgtk-3-dev, libgee-0.8-dev, libjson-glib-dev, libvte-2.91-dev Standards-Version: 3.9.3 Homepage: BRANDING_WEBSITE diff --git a/po/ukuu-es.po b/po/ukuu-es.po index 7d5b058c..f4367394 100644 --- a/po/ukuu-es.po +++ b/po/ukuu-es.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu\n" "Report-Msgid-Bugs-To: bw.aljex@gmail.com\n" -"POT-Creation-Date: 2019-03-13 16:02-0400\n" +"POT-Creation-Date: 2019-03-13 17:28-0400\n" "PO-Revision-Date: 2018-01-03 02:03-0600\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish\n" @@ -60,7 +60,7 @@ msgstr "Atrás" msgid "Cache" msgstr "Cache" -#: Gtk/ProgressWindow.vala:144 Gtk/TerminalWindow.vala:151 +#: Gtk/ProgressWindow.vala:143 Gtk/TerminalWindow.vala:151 #: Gtk/UpdateNotificationWindow.vala:167 #: Utility/Gtk/CustomMessageDialog.vala:172 Utility/Gtk/GtkHelper.vala:122 msgid "Cancel" diff --git a/po/ukuu-fr.po b/po/ukuu-fr.po index 3f3747f6..80bedaf7 100644 --- a/po/ukuu-fr.po +++ b/po/ukuu-fr.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu\n" "Report-Msgid-Bugs-To: bw.aljex@gmail.com\n" -"POT-Creation-Date: 2019-03-13 16:02-0400\n" +"POT-Creation-Date: 2019-03-13 17:28-0400\n" "PO-Revision-Date: 2018-08-05 15:50+0200\n" "Last-Translator: Yolateng0 \n" "Language-Team: French\n" @@ -60,7 +60,7 @@ msgstr "Retour" msgid "Cache" msgstr "" -#: Gtk/ProgressWindow.vala:144 Gtk/TerminalWindow.vala:151 +#: Gtk/ProgressWindow.vala:143 Gtk/TerminalWindow.vala:151 #: Gtk/UpdateNotificationWindow.vala:167 #: Utility/Gtk/CustomMessageDialog.vala:172 Utility/Gtk/GtkHelper.vala:122 msgid "Cancel" diff --git a/po/ukuu-hr.po b/po/ukuu-hr.po index 26abf27f..85cbbaaf 100644 --- a/po/ukuu-hr.po +++ b/po/ukuu-hr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu\n" "Report-Msgid-Bugs-To: bw.aljex@gmail.com\n" -"POT-Creation-Date: 2019-03-13 16:02-0400\n" +"POT-Creation-Date: 2019-03-13 17:28-0400\n" "PO-Revision-Date: 2017-12-24 00:52+0100\n" "Last-Translator: gogo \n" "Language-Team: Croatian \n" @@ -61,7 +61,7 @@ msgstr "Natrag" msgid "Cache" msgstr "" -#: Gtk/ProgressWindow.vala:144 Gtk/TerminalWindow.vala:151 +#: Gtk/ProgressWindow.vala:143 Gtk/TerminalWindow.vala:151 #: Gtk/UpdateNotificationWindow.vala:167 #: Utility/Gtk/CustomMessageDialog.vala:172 Utility/Gtk/GtkHelper.vala:122 msgid "Cancel" diff --git a/po/ukuu-nl.po b/po/ukuu-nl.po index 545e92ab..4d34b718 100644 --- a/po/ukuu-nl.po +++ b/po/ukuu-nl.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu 2.2\n" "Report-Msgid-Bugs-To: bw.aljex@gmail.com\n" -"POT-Creation-Date: 2019-03-13 16:02-0400\n" +"POT-Creation-Date: 2019-03-13 17:28-0400\n" "PO-Revision-Date: 2017-04-30 11:50+0200\n" "Last-Translator: Heimen Stoffels \n" "Language-Team: \n" @@ -62,7 +62,7 @@ msgstr "Terug" msgid "Cache" msgstr "" -#: Gtk/ProgressWindow.vala:144 Gtk/TerminalWindow.vala:151 +#: Gtk/ProgressWindow.vala:143 Gtk/TerminalWindow.vala:151 #: Gtk/UpdateNotificationWindow.vala:167 #: Utility/Gtk/CustomMessageDialog.vala:172 Utility/Gtk/GtkHelper.vala:122 msgid "Cancel" diff --git a/po/ukuu-pl.po b/po/ukuu-pl.po index 72e4780f..eab65f4c 100644 --- a/po/ukuu-pl.po +++ b/po/ukuu-pl.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu\n" "Report-Msgid-Bugs-To: bw.aljex@gmail.com\n" -"POT-Creation-Date: 2019-03-13 16:02-0400\n" +"POT-Creation-Date: 2019-03-13 17:28-0400\n" "PO-Revision-Date: 2017-08-12 15:26+0200\n" "Last-Translator: \n" "Language-Team: Polish\n" @@ -59,7 +59,7 @@ msgstr "Wstecz" msgid "Cache" msgstr "" -#: Gtk/ProgressWindow.vala:144 Gtk/TerminalWindow.vala:151 +#: Gtk/ProgressWindow.vala:143 Gtk/TerminalWindow.vala:151 #: Gtk/UpdateNotificationWindow.vala:167 #: Utility/Gtk/CustomMessageDialog.vala:172 Utility/Gtk/GtkHelper.vala:122 msgid "Cancel" diff --git a/po/ukuu-ru.po b/po/ukuu-ru.po index 1e33f854..5bc55fb6 100644 --- a/po/ukuu-ru.po +++ b/po/ukuu-ru.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu\n" "Report-Msgid-Bugs-To: bw.aljex@gmail.com\n" -"POT-Creation-Date: 2019-03-13 16:02-0400\n" +"POT-Creation-Date: 2019-03-13 17:28-0400\n" "PO-Revision-Date: 2016-12-13 16:46+0300\n" "Last-Translator: Faust3000 \n" "Language-Team: Russian \n" @@ -61,7 +61,7 @@ msgstr "Назад" msgid "Cache" msgstr "" -#: Gtk/ProgressWindow.vala:144 Gtk/TerminalWindow.vala:151 +#: Gtk/ProgressWindow.vala:143 Gtk/TerminalWindow.vala:151 #: Gtk/UpdateNotificationWindow.vala:167 #: Utility/Gtk/CustomMessageDialog.vala:172 Utility/Gtk/GtkHelper.vala:122 msgid "Cancel" diff --git a/po/ukuu-sv.po b/po/ukuu-sv.po index 807af8b5..74c14f2f 100644 --- a/po/ukuu-sv.po +++ b/po/ukuu-sv.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu 2.2\n" "Report-Msgid-Bugs-To: bw.aljex@gmail.com\n" -"POT-Creation-Date: 2019-03-13 16:02-0400\n" +"POT-Creation-Date: 2019-03-13 17:28-0400\n" "PO-Revision-Date: 2018-01-13 16:56+0100\n" "Last-Translator: Åke Engelbrektson \n" "Language-Team: Svenska Språkfiler \n" @@ -61,7 +61,7 @@ msgstr "Tillbaka" msgid "Cache" msgstr "" -#: Gtk/ProgressWindow.vala:144 Gtk/TerminalWindow.vala:151 +#: Gtk/ProgressWindow.vala:143 Gtk/TerminalWindow.vala:151 #: Gtk/UpdateNotificationWindow.vala:167 #: Utility/Gtk/CustomMessageDialog.vala:172 Utility/Gtk/GtkHelper.vala:122 msgid "Cancel" diff --git a/po/ukuu-tr.po b/po/ukuu-tr.po index d26436ef..c0c25e88 100644 --- a/po/ukuu-tr.po +++ b/po/ukuu-tr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu\n" "Report-Msgid-Bugs-To: bw.aljex@gmail.com\n" -"POT-Creation-Date: 2019-03-13 16:02-0400\n" +"POT-Creation-Date: 2019-03-13 17:28-0400\n" "PO-Revision-Date: 2019-03-12 19:35+0300\n" "Last-Translator: Gökhan GÖKKAYA \n" "Language-Team: Turkish\n" @@ -60,7 +60,7 @@ msgstr "Geri" msgid "Cache" msgstr "Önbellek" -#: Gtk/ProgressWindow.vala:144 Gtk/TerminalWindow.vala:151 +#: Gtk/ProgressWindow.vala:143 Gtk/TerminalWindow.vala:151 #: Gtk/UpdateNotificationWindow.vala:167 #: Utility/Gtk/CustomMessageDialog.vala:172 Utility/Gtk/GtkHelper.vala:122 msgid "Cancel" diff --git a/src/Common/DownloadManager.vala b/src/Common/DownloadManager.vala index b474630a..2646b887 100644 --- a/src/Common/DownloadManager.vala +++ b/src/Common/DownloadManager.vala @@ -18,7 +18,6 @@ public class DownloadTask : AsyncTask{ private Gee.HashMap map; private Gee.HashMap regex = null; - private static TeeJee.Version tool_version = null; public DownloadTask(){ diff --git a/src/Common/Main.vala b/src/Common/Main.vala index 17926a4b..a9197bf7 100644 --- a/src/Common/Main.vala +++ b/src/Common/Main.vala @@ -89,7 +89,7 @@ public class Main : GLib.Object{ public static bool check_dependencies(out string msg) { - string[] dependencies = { "aptitude", "apt-get", "aria2c", "dpkg", "uname", "lsb_release", "ping" }; + string[] dependencies = { "aptitude", "aria2c", "dpkg", "uname", "lsb_release" }; msg = ""; diff --git a/src/Gtk/MainWindow.vala b/src/Gtk/MainWindow.vala index 2da1b6ae..fed7640f 100644 --- a/src/Gtk/MainWindow.vala +++ b/src/Gtk/MainWindow.vala @@ -47,8 +47,8 @@ public class MainWindow : Gtk.Window{ // helper members - private int window_width = 600; - private int window_height = 400; + private int window_width = 800; + private int window_height = 600; private uint tmr_init = -1; private Gee.ArrayList selected_kernels; diff --git a/src/Gtk/ProgressWindow.vala b/src/Gtk/ProgressWindow.vala index 3a0ef262..fdbc31d5 100644 --- a/src/Gtk/ProgressWindow.vala +++ b/src/Gtk/ProgressWindow.vala @@ -43,7 +43,6 @@ public class ProgressWindow : Gtk.Window { private Gtk.Button btn_cancel; private uint tmr_init = 0; - private uint tmr_pulse = 0; private uint tmr_close = 0; private int def_width = 400; private int def_height = 50; diff --git a/src/Utility/TeeJee.System.vala b/src/Utility/TeeJee.System.vala index 589ce2be..e0882559 100644 --- a/src/Utility/TeeJee.System.vala +++ b/src/Utility/TeeJee.System.vala @@ -284,22 +284,6 @@ namespace TeeJee.System{ return (status == 0); } - public bool shutdown (){ - - /* Shutdown the system immediately */ - - try{ - string[] argv = { "shutdown", "-h", "now" }; - Pid procId; - Process.spawn_async(null, argv, null, SpawnFlags.SEARCH_PATH, null, out procId); - return true; - } - catch (Error e) { - log_error (e.message); - return false; - } - } - public bool command_exists(string command){ string path = get_cmd_path(command); return ((path != null) && (path.length > 0)); @@ -421,7 +405,6 @@ namespace TeeJee.System{ log_msg("%s %lu\n".printf(seconds.to_string(), microseconds)); } - public void set_numeric_locale(string type){ Intl.setlocale(GLib.LocaleCategory.NUMERIC, type); Intl.setlocale(GLib.LocaleCategory.COLLATE, type); diff --git a/ukuu.geany b/ukuu.geany index 04486c99..7b43398c 100644 --- a/ukuu.geany +++ b/ukuu.geany @@ -17,15 +17,15 @@ long_line_behaviour=1 long_line_column=80 [files] -current_page=36 +current_page=20 FILE_NAME_0=481;None;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fdebian%2Fchangelog;0;4 FILE_NAME_1=7410;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FCommon%2FMain.vala;0;4 -FILE_NAME_2=4918;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FCommon%2FDownloadManager.vala;0;4 -FILE_NAME_3=27197;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FCommon%2FLinuxKernel.vala;0;4 +FILE_NAME_2=1442;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FCommon%2FDownloadManager.vala;0;4 +FILE_NAME_3=7036;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FCommon%2FLinuxKernel.vala;0;4 FILE_NAME_4=4098;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FCommon%2FPackage.vala;0;4 -FILE_NAME_5=2284;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FConsole%2FAppConsole.vala;0;4 +FILE_NAME_5=837;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FConsole%2FAppConsole.vala;0;4 FILE_NAME_6=4165;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FGtk%2FAppGtk.vala;0;4 -FILE_NAME_7=13538;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FGtk%2FMainWindow.vala;0;4 +FILE_NAME_7=17215;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FGtk%2FMainWindow.vala;0;4 FILE_NAME_8=4984;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FGtk%2FProgressWindow.vala;0;4 FILE_NAME_9=6653;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FGtk%2FSettingsDialog.vala;0;4 FILE_NAME_10=5806;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FGtk%2FTerminalWindow.vala;0;4 @@ -38,7 +38,7 @@ FILE_NAME_16=33;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FUtility%2 FILE_NAME_17=30;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FUtility%2FTeeJee.Logging.vala;0;4 FILE_NAME_18=8075;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FUtility%2FTeeJee.Misc.vala;0;4 FILE_NAME_19=2336;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FUtility%2FTeeJee.Process.vala;0;4 -FILE_NAME_20=6080;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FUtility%2FTeeJee.System.vala;0;4 +FILE_NAME_20=5849;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FUtility%2FTeeJee.System.vala;0;4 FILE_NAME_21=23;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FUtility%2FVersion.vala;0;4 FILE_NAME_22=8259;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FUtility%2FGtk%2FAboutWindow.vala;0;4 FILE_NAME_23=34;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FUtility%2FGtk%2FCustomMessageDialog.vala;0;4 @@ -59,10 +59,8 @@ FILE_NAME_37=0;Conf;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fdebian%2Fcopyrig FILE_NAME_38=0;Conf;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2Fukuu.desktop.src;0;4 FILE_NAME_39=77;Make;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2Fmiscs.mak;0;4 FILE_NAME_40=1781;XML;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2Fshare%2Fukuu%2Fimages%2Fgeneral.svg;0;4 -FILE_NAME_41=2391;Make;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FMakefile;0;4 -FILE_NAME_42=1722;Sh;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Flibserialport%2Fconfigure.ac;0;4 -FILE_NAME_43=541;Make;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2FBRANDING.mak;0;4 -FILE_NAME_44=9218;None;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Frelease%2Fdeb%2Fukuu_18.9.5-bkw_amd64.build;0;4 +FILE_NAME_41=962;Make;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FMakefile;0;4 +FILE_NAME_42=541;Make;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2FBRANDING.mak;0;4 [VTE] last_dir=/home/bkw diff --git a/ukuu.pot b/ukuu.pot index fc869b53..916ffddf 100644 --- a/ukuu.pot +++ b/ukuu.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu 18.9.5-bkw\n" "Report-Msgid-Bugs-To: bw.aljex@gmail.com\n" -"POT-Creation-Date: 2019-03-13 16:02-0400\n" +"POT-Creation-Date: 2019-03-13 18:37-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -59,7 +59,7 @@ msgstr "" msgid "Cache" msgstr "" -#: Gtk/ProgressWindow.vala:144 Gtk/TerminalWindow.vala:151 +#: Gtk/ProgressWindow.vala:143 Gtk/TerminalWindow.vala:151 #: Gtk/UpdateNotificationWindow.vala:167 #: Utility/Gtk/CustomMessageDialog.vala:172 Utility/Gtk/GtkHelper.vala:122 msgid "Cancel" From bbdc43ff13bb8986d4057feee8bac959db058ffc Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Sat, 16 Mar 2019 05:07:05 -0400 Subject: [PATCH 022/567] Rename project from ukuu to mainline. Reorganize many source and build files. Remove conflicting copyrights to put a single proper one back in via github, GPL3 is still indicated in debian/copyright even during the transition between removing & replacing --- .bzrignore | 15 - .gitignore | 17 +- AUTHORS | 7 +- BRANDING.mak | 9 +- COPYING | 674 ------------------ INSTALL | 9 +- LICENSE.md | 166 ----- Makefile | 128 +++- README.md | 44 +- README.md.src | 70 ++ debian/changelog | 14 + debian/control | 12 +- debian/control.src | 6 +- debian/copyright | 25 +- debian/copyright.src | 21 +- debian/source/options | 3 - mainline.desktop | 11 + src/ukuu.desktop.src => mainline.desktop.src | 0 po/_messages.pot | 592 +++++++++++++++ po/{ukuu-es.po => es.po} | 294 ++++---- po/{ukuu-fr.po => fr.po} | 294 ++++---- po/{ukuu-hr.po => hr.po} | 294 ++++---- po/{ukuu-nl.po => nl.po} | 294 ++++---- po/{ukuu-pl.po => pl.po} | 294 ++++---- po/{ukuu-ru.po => ru.po} | 294 ++++---- po/{ukuu-sv.po => sv.po} | 294 ++++---- po/{ukuu-tr.po => tr.po} | 294 ++++---- .../mainline}/images/general.svg | 0 .../mainline}/images/help-info.svg | 0 .../mainline}/images/tux-red.png | Bin .../ukuu => share/mainline}/images/tux.png | Bin .../ukuu => share/mainline}/images/tux.svg | 0 .../mainline}/images/ubuntu-logo.png | Bin .../ukuu.svg => share/pixmaps/mainline.svg | 0 .../polkit-1/actions/mainline.policy.src | 0 src/Makefile | 122 ---- src/miscs.mak | 2 - src/ukuu.desktop | 11 - ukuu.geany | 111 --- ukuu.pot | 582 --------------- 40 files changed, 2078 insertions(+), 2925 deletions(-) delete mode 100644 .bzrignore delete mode 100644 COPYING delete mode 100644 LICENSE.md create mode 100644 README.md.src create mode 100644 mainline.desktop rename src/ukuu.desktop.src => mainline.desktop.src (100%) create mode 100644 po/_messages.pot rename po/{ukuu-es.po => es.po} (60%) rename po/{ukuu-fr.po => fr.po} (73%) rename po/{ukuu-hr.po => hr.po} (71%) rename po/{ukuu-nl.po => nl.po} (70%) rename po/{ukuu-pl.po => pl.po} (69%) rename po/{ukuu-ru.po => ru.po} (70%) rename po/{ukuu-sv.po => sv.po} (69%) rename po/{ukuu-tr.po => tr.po} (69%) rename {src/share/ukuu => share/mainline}/images/general.svg (100%) rename {src/share/ukuu => share/mainline}/images/help-info.svg (100%) rename {src/share/ukuu => share/mainline}/images/tux-red.png (100%) rename {src/share/ukuu => share/mainline}/images/tux.png (100%) rename {src/share/ukuu => share/mainline}/images/tux.svg (100%) rename {src/share/ukuu => share/mainline}/images/ubuntu-logo.png (100%) rename src/share/pixmaps/ukuu.svg => share/pixmaps/mainline.svg (100%) rename src/share/polkit-1/actions/ukuu.policy.src => share/polkit-1/actions/mainline.policy.src (100%) delete mode 100644 src/Makefile delete mode 100644 src/miscs.mak delete mode 100644 src/ukuu.desktop delete mode 100644 ukuu.geany delete mode 100644 ukuu.pot diff --git a/.bzrignore b/.bzrignore deleted file mode 100644 index 3fb8c03f..00000000 --- a/.bzrignore +++ /dev/null @@ -1,15 +0,0 @@ -src/ukuu -src/ukuu-gtk -release/source -release/amd64 -release/i386 -release/armel -release/armhf -release/*.deb -release/*.run -*.geany -*.mo -*.c -*.o -.git -.bzr diff --git a/.gitignore b/.gitignore index 9be9335f..e63c8cb6 100644 --- a/.gitignore +++ b/.gitignore @@ -1,18 +1,7 @@ -src/ukuu -src/ukuu-gtk -designs -release/source -release/amd64 -release/i386 -release/armel -release/armhf -release/*.deb -release/*.run -*.geany -*.mo +src/mainline +src/mainline-gtk +release *.c *.o *~ .git -.bzr - diff --git a/AUTHORS b/AUTHORS index 59bc6396..c54d6f56 100644 --- a/AUTHORS +++ b/AUTHORS @@ -1,3 +1,4 @@ - -Copyright (C) 2013 Tony George (teejee2008@gmail.com) -Forked 20190307 Brian K. White bw.aljex@gmail.com +Tony George first version of all files +Steven G revisions to SettingsDialog.vala Main.vala TeeJee.System.vala +Cloyce D. Spradling revisions to LinuxKernel.vala AppConsole.vala +Brian K. White revisions to many files diff --git a/BRANDING.mak b/BRANDING.mak index b6f8b754..0923880e 100644 --- a/BRANDING.mak +++ b/BRANDING.mak @@ -6,9 +6,10 @@ # Use Makefile syntax, as this is actually included by other makefiles, # but keep it simple enough that it can also be parsed easily by anything else. -BRANDING_SHORTNAME = ukuu -BRANDING_LONGNAME = Ubuntu Kernel Update Utility -BRANDING_VERSION = 18.9.5-bkw +BRANDING_SHORTNAME = mainline +BRANDING_LONGNAME = Ubuntu Mainline Kernel Installer +BRANDING_VERSION = 1.0.0 BRANDING_AUTHORNAME = Brian K. White BRANDING_AUTHOREMAIL = bw.aljex@gmail.com -BRANDING_WEBSITE = https://github.com/aljex/ukuu +BRANDING_WEBSITE = https://github.com/aljex/mainline +BRANDING_GITREPO = https://github.com/aljex/mainline.git diff --git a/COPYING b/COPYING deleted file mode 100644 index 94a9ed02..00000000 --- a/COPYING +++ /dev/null @@ -1,674 +0,0 @@ - GNU GENERAL PUBLIC LICENSE - Version 3, 29 June 2007 - - Copyright (C) 2007 Free Software Foundation, Inc. - Everyone is permitted to copy and distribute verbatim copies - of this license document, but changing it is not allowed. - - Preamble - - The GNU General Public License is a free, copyleft license for -software and other kinds of works. - - The licenses for most software and other practical works are designed -to take away your freedom to share and change the works. By contrast, -the GNU General Public License is intended to guarantee your freedom to -share and change all versions of a program--to make sure it remains free -software for all its users. We, the Free Software Foundation, use the -GNU General Public License for most of our software; it applies also to -any other work released this way by its authors. You can apply it to -your programs, too. - - When we speak of free software, we are referring to freedom, not -price. Our General Public Licenses are designed to make sure that you -have the freedom to distribute copies of free software (and charge for -them if you wish), that you receive source code or can get it if you -want it, that you can change the software or use pieces of it in new -free programs, and that you know you can do these things. - - To protect your rights, we need to prevent others from denying you -these rights or asking you to surrender the rights. Therefore, you have -certain responsibilities if you distribute copies of the software, or if -you modify it: responsibilities to respect the freedom of others. - - For example, if you distribute copies of such a program, whether -gratis or for a fee, you must pass on to the recipients the same -freedoms that you received. You must make sure that they, too, receive -or can get the source code. And you must show them these terms so they -know their rights. - - Developers that use the GNU GPL protect your rights with two steps: -(1) assert copyright on the software, and (2) offer you this License -giving you legal permission to copy, distribute and/or modify it. - - For the developers' and authors' protection, the GPL clearly explains -that there is no warranty for this free software. For both users' and -authors' sake, the GPL requires that modified versions be marked as -changed, so that their problems will not be attributed erroneously to -authors of previous versions. - - Some devices are designed to deny users access to install or run -modified versions of the software inside them, although the manufacturer -can do so. This is fundamentally incompatible with the aim of -protecting users' freedom to change the software. The systematic -pattern of such abuse occurs in the area of products for individuals to -use, which is precisely where it is most unacceptable. Therefore, we -have designed this version of the GPL to prohibit the practice for those -products. If such problems arise substantially in other domains, we -stand ready to extend this provision to those domains in future versions -of the GPL, as needed to protect the freedom of users. - - Finally, every program is threatened constantly by software patents. -States should not allow patents to restrict development and use of -software on general-purpose computers, but in those that do, we wish to -avoid the special danger that patents applied to a free program could -make it effectively proprietary. To prevent this, the GPL assures that -patents cannot be used to render the program non-free. - - The precise terms and conditions for copying, distribution and -modification follow. - - TERMS AND CONDITIONS - - 0. Definitions. - - "This License" refers to version 3 of the GNU General Public License. - - "Copyright" also means copyright-like laws that apply to other kinds of -works, such as semiconductor masks. - - "The Program" refers to any copyrightable work licensed under this -License. Each licensee is addressed as "you". "Licensees" and -"recipients" may be individuals or organizations. - - To "modify" a work means to copy from or adapt all or part of the work -in a fashion requiring copyright permission, other than the making of an -exact copy. The resulting work is called a "modified version" of the -earlier work or a work "based on" the earlier work. - - A "covered work" means either the unmodified Program or a work based -on the Program. - - To "propagate" a work means to do anything with it that, without -permission, would make you directly or secondarily liable for -infringement under applicable copyright law, except executing it on a -computer or modifying a private copy. Propagation includes copying, -distribution (with or without modification), making available to the -public, and in some countries other activities as well. - - To "convey" a work means any kind of propagation that enables other -parties to make or receive copies. Mere interaction with a user through -a computer network, with no transfer of a copy, is not conveying. - - An interactive user interface displays "Appropriate Legal Notices" -to the extent that it includes a convenient and prominently visible -feature that (1) displays an appropriate copyright notice, and (2) -tells the user that there is no warranty for the work (except to the -extent that warranties are provided), that licensees may convey the -work under this License, and how to view a copy of this License. If -the interface presents a list of user commands or options, such as a -menu, a prominent item in the list meets this criterion. - - 1. Source Code. - - The "source code" for a work means the preferred form of the work -for making modifications to it. "Object code" means any non-source -form of a work. - - A "Standard Interface" means an interface that either is an official -standard defined by a recognized standards body, or, in the case of -interfaces specified for a particular programming language, one that -is widely used among developers working in that language. - - The "System Libraries" of an executable work include anything, other -than the work as a whole, that (a) is included in the normal form of -packaging a Major Component, but which is not part of that Major -Component, and (b) serves only to enable use of the work with that -Major Component, or to implement a Standard Interface for which an -implementation is available to the public in source code form. A -"Major Component", in this context, means a major essential component -(kernel, window system, and so on) of the specific operating system -(if any) on which the executable work runs, or a compiler used to -produce the work, or an object code interpreter used to run it. - - The "Corresponding Source" for a work in object code form means all -the source code needed to generate, install, and (for an executable -work) run the object code and to modify the work, including scripts to -control those activities. However, it does not include the work's -System Libraries, or general-purpose tools or generally available free -programs which are used unmodified in performing those activities but -which are not part of the work. For example, Corresponding Source -includes interface definition files associated with source files for -the work, and the source code for shared libraries and dynamically -linked subprograms that the work is specifically designed to require, -such as by intimate data communication or control flow between those -subprograms and other parts of the work. - - The Corresponding Source need not include anything that users -can regenerate automatically from other parts of the Corresponding -Source. - - The Corresponding Source for a work in source code form is that -same work. - - 2. Basic Permissions. - - All rights granted under this License are granted for the term of -copyright on the Program, and are irrevocable provided the stated -conditions are met. This License explicitly affirms your unlimited -permission to run the unmodified Program. The output from running a -covered work is covered by this License only if the output, given its -content, constitutes a covered work. This License acknowledges your -rights of fair use or other equivalent, as provided by copyright law. - - You may make, run and propagate covered works that you do not -convey, without conditions so long as your license otherwise remains -in force. You may convey covered works to others for the sole purpose -of having them make modifications exclusively for you, or provide you -with facilities for running those works, provided that you comply with -the terms of this License in conveying all material for which you do -not control copyright. Those thus making or running the covered works -for you must do so exclusively on your behalf, under your direction -and control, on terms that prohibit them from making any copies of -your copyrighted material outside their relationship with you. - - Conveying under any other circumstances is permitted solely under -the conditions stated below. Sublicensing is not allowed; section 10 -makes it unnecessary. - - 3. Protecting Users' Legal Rights From Anti-Circumvention Law. - - No covered work shall be deemed part of an effective technological -measure under any applicable law fulfilling obligations under article -11 of the WIPO copyright treaty adopted on 20 December 1996, or -similar laws prohibiting or restricting circumvention of such -measures. - - When you convey a covered work, you waive any legal power to forbid -circumvention of technological measures to the extent such circumvention -is effected by exercising rights under this License with respect to -the covered work, and you disclaim any intention to limit operation or -modification of the work as a means of enforcing, against the work's -users, your or third parties' legal rights to forbid circumvention of -technological measures. - - 4. Conveying Verbatim Copies. - - You may convey verbatim copies of the Program's source code as you -receive it, in any medium, provided that you conspicuously and -appropriately publish on each copy an appropriate copyright notice; -keep intact all notices stating that this License and any -non-permissive terms added in accord with section 7 apply to the code; -keep intact all notices of the absence of any warranty; and give all -recipients a copy of this License along with the Program. - - You may charge any price or no price for each copy that you convey, -and you may offer support or warranty protection for a fee. - - 5. Conveying Modified Source Versions. - - You may convey a work based on the Program, or the modifications to -produce it from the Program, in the form of source code under the -terms of section 4, provided that you also meet all of these conditions: - - a) The work must carry prominent notices stating that you modified - it, and giving a relevant date. - - b) The work must carry prominent notices stating that it is - released under this License and any conditions added under section - 7. This requirement modifies the requirement in section 4 to - "keep intact all notices". - - c) You must license the entire work, as a whole, under this - License to anyone who comes into possession of a copy. This - License will therefore apply, along with any applicable section 7 - additional terms, to the whole of the work, and all its parts, - regardless of how they are packaged. This License gives no - permission to license the work in any other way, but it does not - invalidate such permission if you have separately received it. - - d) If the work has interactive user interfaces, each must display - Appropriate Legal Notices; however, if the Program has interactive - interfaces that do not display Appropriate Legal Notices, your - work need not make them do so. - - A compilation of a covered work with other separate and independent -works, which are not by their nature extensions of the covered work, -and which are not combined with it such as to form a larger program, -in or on a volume of a storage or distribution medium, is called an -"aggregate" if the compilation and its resulting copyright are not -used to limit the access or legal rights of the compilation's users -beyond what the individual works permit. Inclusion of a covered work -in an aggregate does not cause this License to apply to the other -parts of the aggregate. - - 6. Conveying Non-Source Forms. - - You may convey a covered work in object code form under the terms -of sections 4 and 5, provided that you also convey the -machine-readable Corresponding Source under the terms of this License, -in one of these ways: - - a) Convey the object code in, or embodied in, a physical product - (including a physical distribution medium), accompanied by the - Corresponding Source fixed on a durable physical medium - customarily used for software interchange. - - b) Convey the object code in, or embodied in, a physical product - (including a physical distribution medium), accompanied by a - written offer, valid for at least three years and valid for as - long as you offer spare parts or customer support for that product - model, to give anyone who possesses the object code either (1) a - copy of the Corresponding Source for all the software in the - product that is covered by this License, on a durable physical - medium customarily used for software interchange, for a price no - more than your reasonable cost of physically performing this - conveying of source, or (2) access to copy the - Corresponding Source from a network server at no charge. - - c) Convey individual copies of the object code with a copy of the - written offer to provide the Corresponding Source. This - alternative is allowed only occasionally and noncommercially, and - only if you received the object code with such an offer, in accord - with subsection 6b. - - d) Convey the object code by offering access from a designated - place (gratis or for a charge), and offer equivalent access to the - Corresponding Source in the same way through the same place at no - further charge. You need not require recipients to copy the - Corresponding Source along with the object code. If the place to - copy the object code is a network server, the Corresponding Source - may be on a different server (operated by you or a third party) - that supports equivalent copying facilities, provided you maintain - clear directions next to the object code saying where to find the - Corresponding Source. Regardless of what server hosts the - Corresponding Source, you remain obligated to ensure that it is - available for as long as needed to satisfy these requirements. - - e) Convey the object code using peer-to-peer transmission, provided - you inform other peers where the object code and Corresponding - Source of the work are being offered to the general public at no - charge under subsection 6d. - - A separable portion of the object code, whose source code is excluded -from the Corresponding Source as a System Library, need not be -included in conveying the object code work. - - A "User Product" is either (1) a "consumer product", which means any -tangible personal property which is normally used for personal, family, -or household purposes, or (2) anything designed or sold for incorporation -into a dwelling. In determining whether a product is a consumer product, -doubtful cases shall be resolved in favor of coverage. For a particular -product received by a particular user, "normally used" refers to a -typical or common use of that class of product, regardless of the status -of the particular user or of the way in which the particular user -actually uses, or expects or is expected to use, the product. A product -is a consumer product regardless of whether the product has substantial -commercial, industrial or non-consumer uses, unless such uses represent -the only significant mode of use of the product. - - "Installation Information" for a User Product means any methods, -procedures, authorization keys, or other information required to install -and execute modified versions of a covered work in that User Product from -a modified version of its Corresponding Source. The information must -suffice to ensure that the continued functioning of the modified object -code is in no case prevented or interfered with solely because -modification has been made. - - If you convey an object code work under this section in, or with, or -specifically for use in, a User Product, and the conveying occurs as -part of a transaction in which the right of possession and use of the -User Product is transferred to the recipient in perpetuity or for a -fixed term (regardless of how the transaction is characterized), the -Corresponding Source conveyed under this section must be accompanied -by the Installation Information. But this requirement does not apply -if neither you nor any third party retains the ability to install -modified object code on the User Product (for example, the work has -been installed in ROM). - - The requirement to provide Installation Information does not include a -requirement to continue to provide support service, warranty, or updates -for a work that has been modified or installed by the recipient, or for -the User Product in which it has been modified or installed. Access to a -network may be denied when the modification itself materially and -adversely affects the operation of the network or violates the rules and -protocols for communication across the network. - - Corresponding Source conveyed, and Installation Information provided, -in accord with this section must be in a format that is publicly -documented (and with an implementation available to the public in -source code form), and must require no special password or key for -unpacking, reading or copying. - - 7. Additional Terms. - - "Additional permissions" are terms that supplement the terms of this -License by making exceptions from one or more of its conditions. -Additional permissions that are applicable to the entire Program shall -be treated as though they were included in this License, to the extent -that they are valid under applicable law. If additional permissions -apply only to part of the Program, that part may be used separately -under those permissions, but the entire Program remains governed by -this License without regard to the additional permissions. - - When you convey a copy of a covered work, you may at your option -remove any additional permissions from that copy, or from any part of -it. (Additional permissions may be written to require their own -removal in certain cases when you modify the work.) You may place -additional permissions on material, added by you to a covered work, -for which you have or can give appropriate copyright permission. - - Notwithstanding any other provision of this License, for material you -add to a covered work, you may (if authorized by the copyright holders of -that material) supplement the terms of this License with terms: - - a) Disclaiming warranty or limiting liability differently from the - terms of sections 15 and 16 of this License; or - - b) Requiring preservation of specified reasonable legal notices or - author attributions in that material or in the Appropriate Legal - Notices displayed by works containing it; or - - c) Prohibiting misrepresentation of the origin of that material, or - requiring that modified versions of such material be marked in - reasonable ways as different from the original version; or - - d) Limiting the use for publicity purposes of names of licensors or - authors of the material; or - - e) Declining to grant rights under trademark law for use of some - trade names, trademarks, or service marks; or - - f) Requiring indemnification of licensors and authors of that - material by anyone who conveys the material (or modified versions of - it) with contractual assumptions of liability to the recipient, for - any liability that these contractual assumptions directly impose on - those licensors and authors. - - All other non-permissive additional terms are considered "further -restrictions" within the meaning of section 10. If the Program as you -received it, or any part of it, contains a notice stating that it is -governed by this License along with a term that is a further -restriction, you may remove that term. If a license document contains -a further restriction but permits relicensing or conveying under this -License, you may add to a covered work material governed by the terms -of that license document, provided that the further restriction does -not survive such relicensing or conveying. - - If you add terms to a covered work in accord with this section, you -must place, in the relevant source files, a statement of the -additional terms that apply to those files, or a notice indicating -where to find the applicable terms. - - Additional terms, permissive or non-permissive, may be stated in the -form of a separately written license, or stated as exceptions; -the above requirements apply either way. - - 8. Termination. - - You may not propagate or modify a covered work except as expressly -provided under this License. Any attempt otherwise to propagate or -modify it is void, and will automatically terminate your rights under -this License (including any patent licenses granted under the third -paragraph of section 11). - - However, if you cease all violation of this License, then your -license from a particular copyright holder is reinstated (a) -provisionally, unless and until the copyright holder explicitly and -finally terminates your license, and (b) permanently, if the copyright -holder fails to notify you of the violation by some reasonable means -prior to 60 days after the cessation. - - Moreover, your license from a particular copyright holder is -reinstated permanently if the copyright holder notifies you of the -violation by some reasonable means, this is the first time you have -received notice of violation of this License (for any work) from that -copyright holder, and you cure the violation prior to 30 days after -your receipt of the notice. - - Termination of your rights under this section does not terminate the -licenses of parties who have received copies or rights from you under -this License. If your rights have been terminated and not permanently -reinstated, you do not qualify to receive new licenses for the same -material under section 10. - - 9. Acceptance Not Required for Having Copies. - - You are not required to accept this License in order to receive or -run a copy of the Program. Ancillary propagation of a covered work -occurring solely as a consequence of using peer-to-peer transmission -to receive a copy likewise does not require acceptance. However, -nothing other than this License grants you permission to propagate or -modify any covered work. These actions infringe copyright if you do -not accept this License. Therefore, by modifying or propagating a -covered work, you indicate your acceptance of this License to do so. - - 10. Automatic Licensing of Downstream Recipients. - - Each time you convey a covered work, the recipient automatically -receives a license from the original licensors, to run, modify and -propagate that work, subject to this License. You are not responsible -for enforcing compliance by third parties with this License. - - An "entity transaction" is a transaction transferring control of an -organization, or substantially all assets of one, or subdividing an -organization, or merging organizations. If propagation of a covered -work results from an entity transaction, each party to that -transaction who receives a copy of the work also receives whatever -licenses to the work the party's predecessor in interest had or could -give under the previous paragraph, plus a right to possession of the -Corresponding Source of the work from the predecessor in interest, if -the predecessor has it or can get it with reasonable efforts. - - You may not impose any further restrictions on the exercise of the -rights granted or affirmed under this License. For example, you may -not impose a license fee, royalty, or other charge for exercise of -rights granted under this License, and you may not initiate litigation -(including a cross-claim or counterclaim in a lawsuit) alleging that -any patent claim is infringed by making, using, selling, offering for -sale, or importing the Program or any portion of it. - - 11. Patents. - - A "contributor" is a copyright holder who authorizes use under this -License of the Program or a work on which the Program is based. The -work thus licensed is called the contributor's "contributor version". - - A contributor's "essential patent claims" are all patent claims -owned or controlled by the contributor, whether already acquired or -hereafter acquired, that would be infringed by some manner, permitted -by this License, of making, using, or selling its contributor version, -but do not include claims that would be infringed only as a -consequence of further modification of the contributor version. For -purposes of this definition, "control" includes the right to grant -patent sublicenses in a manner consistent with the requirements of -this License. - - Each contributor grants you a non-exclusive, worldwide, royalty-free -patent license under the contributor's essential patent claims, to -make, use, sell, offer for sale, import and otherwise run, modify and -propagate the contents of its contributor version. - - In the following three paragraphs, a "patent license" is any express -agreement or commitment, however denominated, not to enforce a patent -(such as an express permission to practice a patent or covenant not to -sue for patent infringement). To "grant" such a patent license to a -party means to make such an agreement or commitment not to enforce a -patent against the party. - - If you convey a covered work, knowingly relying on a patent license, -and the Corresponding Source of the work is not available for anyone -to copy, free of charge and under the terms of this License, through a -publicly available network server or other readily accessible means, -then you must either (1) cause the Corresponding Source to be so -available, or (2) arrange to deprive yourself of the benefit of the -patent license for this particular work, or (3) arrange, in a manner -consistent with the requirements of this License, to extend the patent -license to downstream recipients. "Knowingly relying" means you have -actual knowledge that, but for the patent license, your conveying the -covered work in a country, or your recipient's use of the covered work -in a country, would infringe one or more identifiable patents in that -country that you have reason to believe are valid. - - If, pursuant to or in connection with a single transaction or -arrangement, you convey, or propagate by procuring conveyance of, a -covered work, and grant a patent license to some of the parties -receiving the covered work authorizing them to use, propagate, modify -or convey a specific copy of the covered work, then the patent license -you grant is automatically extended to all recipients of the covered -work and works based on it. - - A patent license is "discriminatory" if it does not include within -the scope of its coverage, prohibits the exercise of, or is -conditioned on the non-exercise of one or more of the rights that are -specifically granted under this License. You may not convey a covered -work if you are a party to an arrangement with a third party that is -in the business of distributing software, under which you make payment -to the third party based on the extent of your activity of conveying -the work, and under which the third party grants, to any of the -parties who would receive the covered work from you, a discriminatory -patent license (a) in connection with copies of the covered work -conveyed by you (or copies made from those copies), or (b) primarily -for and in connection with specific products or compilations that -contain the covered work, unless you entered into that arrangement, -or that patent license was granted, prior to 28 March 2007. - - Nothing in this License shall be construed as excluding or limiting -any implied license or other defenses to infringement that may -otherwise be available to you under applicable patent law. - - 12. No Surrender of Others' Freedom. - - If conditions are imposed on you (whether by court order, agreement or -otherwise) that contradict the conditions of this License, they do not -excuse you from the conditions of this License. If you cannot convey a -covered work so as to satisfy simultaneously your obligations under this -License and any other pertinent obligations, then as a consequence you may -not convey it at all. For example, if you agree to terms that obligate you -to collect a royalty for further conveying from those to whom you convey -the Program, the only way you could satisfy both those terms and this -License would be to refrain entirely from conveying the Program. - - 13. Use with the GNU Affero General Public License. - - Notwithstanding any other provision of this License, you have -permission to link or combine any covered work with a work licensed -under version 3 of the GNU Affero General Public License into a single -combined work, and to convey the resulting work. The terms of this -License will continue to apply to the part which is the covered work, -but the special requirements of the GNU Affero General Public License, -section 13, concerning interaction through a network will apply to the -combination as such. - - 14. Revised Versions of this License. - - The Free Software Foundation may publish revised and/or new versions of -the GNU General Public License from time to time. Such new versions will -be similar in spirit to the present version, but may differ in detail to -address new problems or concerns. - - Each version is given a distinguishing version number. If the -Program specifies that a certain numbered version of the GNU General -Public License "or any later version" applies to it, you have the -option of following the terms and conditions either of that numbered -version or of any later version published by the Free Software -Foundation. If the Program does not specify a version number of the -GNU General Public License, you may choose any version ever published -by the Free Software Foundation. - - If the Program specifies that a proxy can decide which future -versions of the GNU General Public License can be used, that proxy's -public statement of acceptance of a version permanently authorizes you -to choose that version for the Program. - - Later license versions may give you additional or different -permissions. However, no additional obligations are imposed on any -author or copyright holder as a result of your choosing to follow a -later version. - - 15. Disclaimer of Warranty. - - THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY -APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT -HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY -OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, -THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM -IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF -ALL NECESSARY SERVICING, REPAIR OR CORRECTION. - - 16. Limitation of Liability. - - IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING -WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS -THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY -GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE -USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF -DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD -PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), -EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF -SUCH DAMAGES. - - 17. Interpretation of Sections 15 and 16. - - If the disclaimer of warranty and limitation of liability provided -above cannot be given local legal effect according to their terms, -reviewing courts shall apply local law that most closely approximates -an absolute waiver of all civil liability in connection with the -Program, unless a warranty or assumption of liability accompanies a -copy of the Program in return for a fee. - - END OF TERMS AND CONDITIONS - - How to Apply These Terms to Your New Programs - - If you develop a new program, and you want it to be of the greatest -possible use to the public, the best way to achieve this is to make it -free software which everyone can redistribute and change under these terms. - - To do so, attach the following notices to the program. It is safest -to attach them to the start of each source file to most effectively -state the exclusion of warranty; and each file should have at least -the "copyright" line and a pointer to where the full notice is found. - - - Copyright (C) - - This program is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. - - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with this program. If not, see . - -Also add information on how to contact you by electronic and paper mail. - - If the program does terminal interaction, make it output a short -notice like this when it starts in an interactive mode: - - Copyright (C) - This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. - This is free software, and you are welcome to redistribute it - under certain conditions; type `show c' for details. - -The hypothetical commands `show w' and `show c' should show the appropriate -parts of the General Public License. Of course, your program's commands -might be different; for a GUI interface, you would use an "about box". - - You should also get your employer (if you work as a programmer) or school, -if any, to sign a "copyright disclaimer" for the program, if necessary. -For more information on this, and how to apply and follow the GNU GPL, see -. - - The GNU General Public License does not permit incorporating your program -into proprietary programs. If your program is a subroutine library, you -may consider it more useful to permit linking proprietary applications with -the library. If this is what you want to do, use the GNU Lesser General -Public License instead of this License. But first, please read -. diff --git a/INSTALL b/INSTALL index e07d63e5..59973ca4 100644 --- a/INSTALL +++ b/INSTALL @@ -1,6 +1,6 @@ # build -make all +make # install @@ -8,6 +8,7 @@ sudo make install # building only some components -make app # console app -make app-gtk # GTK app -make app-translations # update POT and PO files from source +make app # console app +make app-gtk # GTK app +make translations # update POT and PO files from source + diff --git a/LICENSE.md b/LICENSE.md deleted file mode 100644 index 5f5ff16a..00000000 --- a/LICENSE.md +++ /dev/null @@ -1,166 +0,0 @@ - - GNU LESSER GENERAL PUBLIC LICENSE - Version 3, 29 June 2007 - - Copyright (C) 2007 Free Software Foundation, Inc. - Everyone is permitted to copy and distribute verbatim copies - of this license document, but changing it is not allowed. - - - This version of the GNU Lesser General Public License incorporates -the terms and conditions of version 3 of the GNU General Public -License, supplemented by the additional permissions listed below. - - 0. Additional Definitions. - - As used herein, "this License" refers to version 3 of the GNU Lesser -General Public License, and the "GNU GPL" refers to version 3 of the GNU -General Public License. - - "The Library" refers to a covered work governed by this License, -other than an Application or a Combined Work as defined below. - - An "Application" is any work that makes use of an interface provided -by the Library, but which is not otherwise based on the Library. -Defining a subclass of a class defined by the Library is deemed a mode -of using an interface provided by the Library. - - A "Combined Work" is a work produced by combining or linking an -Application with the Library. The particular version of the Library -with which the Combined Work was made is also called the "Linked -Version". - - The "Minimal Corresponding Source" for a Combined Work means the -Corresponding Source for the Combined Work, excluding any source code -for portions of the Combined Work that, considered in isolation, are -based on the Application, and not on the Linked Version. - - The "Corresponding Application Code" for a Combined Work means the -object code and/or source code for the Application, including any data -and utility programs needed for reproducing the Combined Work from the -Application, but excluding the System Libraries of the Combined Work. - - 1. Exception to Section 3 of the GNU GPL. - - You may convey a covered work under sections 3 and 4 of this License -without being bound by section 3 of the GNU GPL. - - 2. Conveying Modified Versions. - - If you modify a copy of the Library, and, in your modifications, a -facility refers to a function or data to be supplied by an Application -that uses the facility (other than as an argument passed when the -facility is invoked), then you may convey a copy of the modified -version: - - a) under this License, provided that you make a good faith effort to - ensure that, in the event an Application does not supply the - function or data, the facility still operates, and performs - whatever part of its purpose remains meaningful, or - - b) under the GNU GPL, with none of the additional permissions of - this License applicable to that copy. - - 3. Object Code Incorporating Material from Library Header Files. - - The object code form of an Application may incorporate material from -a header file that is part of the Library. You may convey such object -code under terms of your choice, provided that, if the incorporated -material is not limited to numerical parameters, data structure -layouts and accessors, or small macros, inline functions and templates -(ten or fewer lines in length), you do both of the following: - - a) Give prominent notice with each copy of the object code that the - Library is used in it and that the Library and its use are - covered by this License. - - b) Accompany the object code with a copy of the GNU GPL and this license - document. - - 4. Combined Works. - - You may convey a Combined Work under terms of your choice that, -taken together, effectively do not restrict modification of the -portions of the Library contained in the Combined Work and reverse -engineering for debugging such modifications, if you also do each of -the following: - - a) Give prominent notice with each copy of the Combined Work that - the Library is used in it and that the Library and its use are - covered by this License. - - b) Accompany the Combined Work with a copy of the GNU GPL and this license - document. - - c) For a Combined Work that displays copyright notices during - execution, include the copyright notice for the Library among - these notices, as well as a reference directing the user to the - copies of the GNU GPL and this license document. - - d) Do one of the following: - - 0) Convey the Minimal Corresponding Source under the terms of this - License, and the Corresponding Application Code in a form - suitable for, and under terms that permit, the user to - recombine or relink the Application with a modified version of - the Linked Version to produce a modified Combined Work, in the - manner specified by section 6 of the GNU GPL for conveying - Corresponding Source. - - 1) Use a suitable shared library mechanism for linking with the - Library. A suitable mechanism is one that (a) uses at run time - a copy of the Library already present on the user's computer - system, and (b) will operate properly with a modified version - of the Library that is interface-compatible with the Linked - Version. - - e) Provide Installation Information, but only if you would otherwise - be required to provide such information under section 6 of the - GNU GPL, and only to the extent that such information is - necessary to install and execute a modified version of the - Combined Work produced by recombining or relinking the - Application with a modified version of the Linked Version. (If - you use option 4d0, the Installation Information must accompany - the Minimal Corresponding Source and Corresponding Application - Code. If you use option 4d1, you must provide the Installation - Information in the manner specified by section 6 of the GNU GPL - for conveying Corresponding Source.) - - 5. Combined Libraries. - - You may place library facilities that are a work based on the -Library side by side in a single library together with other library -facilities that are not Applications and are not covered by this -License, and convey such a combined library under terms of your -choice, if you do both of the following: - - a) Accompany the combined library with a copy of the same work based - on the Library, uncombined with any other library facilities, - conveyed under the terms of this License. - - b) Give prominent notice with the combined library that part of it - is a work based on the Library, and explaining where to find the - accompanying uncombined form of the same work. - - 6. Revised Versions of the GNU Lesser General Public License. - - The Free Software Foundation may publish revised and/or new versions -of the GNU Lesser General Public License from time to time. Such new -versions will be similar in spirit to the present version, but may -differ in detail to address new problems or concerns. - - Each version is given a distinguishing version number. If the -Library as you received it specifies that a certain numbered version -of the GNU Lesser General Public License "or any later version" -applies to it, you have the option of following the terms and -conditions either of that published version or of any later version -published by the Free Software Foundation. If the Library as you -received it does not specify a version number of the GNU Lesser -General Public License, you may choose any version of the GNU Lesser -General Public License ever published by the Free Software Foundation. - - If the Library as you received it specifies that a proxy can decide -whether future versions of the GNU Lesser General Public License shall -apply, that proxy's public statement of acceptance of any version is -permanent authorization for you to choose that version for the -Library. diff --git a/Makefile b/Makefile index 2646d0d3..58bab30d 100644 --- a/Makefile +++ b/Makefile @@ -1,29 +1,123 @@ # Makefile for github.com/aljex fork of ukuu include BRANDING.mak -include src/miscs.mak -'': all +SHELL=/bin/bash +CFLAGS=--std=c99 + +prefix=/usr +bindir=$(prefix)/bin +sharedir=$(prefix)/share +localedir=$(sharedir)/locale +launcherdir=$(sharedir)/applications +polkitdir=$(sharedir)/polkit-1/actions +mandir=$(sharedir)/man +man1dir=$(mandir)/man1 + +translations = es fr hr nl pl ru sv tr + +vte_version = vte-2.91 +glib_version = glib-2.0 +gio_version = gio-unix-2.0 +gtk_version = gtk+-3.0 +json-glib_version = json-glib-1.0 +gee_version = gee-0.8 + +host_dist:=$(shell lsb_release -sc) +host_arch:=$(shell dpkg --print-architecture) +pkg_version=$(shell dpkg-parsechangelog -S Version) + +branding_symbols := -X -D'BRANDING_SHORTNAME="${BRANDING_SHORTNAME}"' -X -D'BRANDING_LONGNAME="${BRANDING_LONGNAME}"' -X -D'BRANDING_VERSION="${BRANDING_VERSION}"' -X -D'BRANDING_AUTHORNAME="${BRANDING_AUTHORNAME}"' -X -D'BRANDING_AUTHOREMAIL="${BRANDING_AUTHOREMAIL}"' -X -D'BRANDING_WEBSITE="${BRANDING_WEBSITE}"' -X -D'GETTEXT_PACKAGE="${BRANDING_SHORTNAME}"' +misc_files := README.md ${BRANDING_SHORTNAME}.desktop debian/control debian/copyright +# ... share/polkit-1/actions/${BRANDING_SHORTNAME}.policy + +################################################################################ + +all: $(misc_files) app app-gtk translations + +app-gtk: + valac ${branding_symbols} --Xcc="-lm" \ + --pkg ${glib_version} --pkg ${gio_version} --pkg posix --pkg ${gee_version} --pkg ${json-glib_version} --pkg ${gtk_version} --pkg ${vte_version} \ + src/Common/*.vala src/Gtk/*.vala src/Utility/*.vala src/Utility/Gtk/*.vala -o ${BRANDING_SHORTNAME}-gtk + +app: + valac ${branding_symbols} --Xcc="-lm" \ + --pkg ${glib_version} --pkg ${gio_version} --pkg posix --pkg ${gee_version} --pkg ${json-glib_version} \ + src/Common/*.vala src/Console/*.vala src/Utility/*.vala -o ${BRANDING_SHORTNAME} + +$(misc_files): %: %.src BRANDING.mak + sed -e 's/BRANDING_SHORTNAME/${BRANDING_SHORTNAME}/g' \ + -e ';s/BRANDING_LONGNAME/${BRANDING_LONGNAME}/g' \ + -e ';s/BRANDING_AUTHORNAME/${BRANDING_AUTHORNAME}/g' \ + -e ';s/BRANDING_AUTHOREMAIL/${BRANDING_AUTHOREMAIL}/g' \ + -e ';s|BRANDING_WEBSITE|${BRANDING_WEBSITE}|g' \ + -e ';s/BRANDING_VERSION/${BRANDING_VERSION}/g' \ + -e ';s|BRANDING_GITREPO|${BRANDING_GITREPO}|g' \ + ${@}.src >${@} + +translations: + find . -iname "*.vala" | xargs xgettext --from-code=UTF-8 --language=C --keyword=_ \ + --copyright-holder="${BRANDING_AUTHORNAME} (${BRANDING_AUTHOREMAIL})" \ + --package-name="${BRANDING_SHORTNAME}" \ + --package-version="${BRANDING_VERSION}" \ + --msgid-bugs-address="${BRANDING_AUTHOREMAIL}" \ + --escape --sort-output -o po/_messages.pot + for lang in ${translations} ; do \ + msgmerge --update -v po/$$lang.po po/_messages.pot ; \ + done + +clean: + rm -rfv release *.c *.o *.po~ + rm -fv ${BRANDING_SHORTNAME} ${BRANDING_SHORTNAME}-gtk + +install: + mkdir -p "$(DESTDIR)$(bindir)" + mkdir -p "$(DESTDIR)$(sharedir)" + mkdir -p "$(DESTDIR)$(mandir)" + mkdir -p "$(DESTDIR)$(man1dir)" + mkdir -p "$(DESTDIR)$(launcherdir)" + mkdir -p "$(DESTDIR)$(polkitdir)" + mkdir -p "$(DESTDIR)$(sharedir)/glib-2.0/schemas/" + mkdir -p "$(DESTDIR)$(sharedir)/${BRANDING_SHORTNAME}" + mkdir -p "$(DESTDIR)$(sharedir)/pixmaps" + install -m 0755 ${BRANDING_SHORTNAME} "$(DESTDIR)$(bindir)" + install -m 0755 ${BRANDING_SHORTNAME}-gtk "$(DESTDIR)$(bindir)" + cp -dpr --no-preserve=ownership -t "$(DESTDIR)$(sharedir)/${BRANDING_SHORTNAME}" share/${BRANDING_SHORTNAME}/* + chmod --recursive 0755 $(DESTDIR)$(sharedir)/${BRANDING_SHORTNAME}/* + #install -m 0644 share/polkit-1/actions/${BRANDING_SHORTNAME}.policy "$(DESTDIR)$(polkitdir)" + install -m 0755 ${BRANDING_SHORTNAME}.desktop "$(DESTDIR)$(launcherdir)" + install -m 0755 share/pixmaps/${BRANDING_SHORTNAME}.* "$(DESTDIR)$(sharedir)/pixmaps" + for lang in ${translations}; do \ + mkdir -p "$(DESTDIR)$(localedir)/$$lang/LC_MESSAGES"; \ + msgfmt --check --verbose -o "$(DESTDIR)$(localedir)/$$lang/LC_MESSAGES/${BRANDING_SHORTNAME}.mo" po/$$lang.po ; \ + done + +uninstall: + rm -f "$(DESTDIR)$(bindir)/${BRANDING_SHORTNAME}" + rm -rf "$(DESTDIR)$(sharedir)/${BRANDING_SHORTNAME}" + #rm -f "$(DESTDIR)$(polkitdir)/${BRANDING_SHORTNAME}.policy" + rm -f "$(DESTDIR)$(launcherdir)/${BRANDING_SHORTNAME}.desktop" + rm -f "$(DESTDIR)$(sharedir)/pixmaps/${BRANDING_SHORTNAME}.*" + rm -f $(DESTDIR)$(localedir)/*/LC_MESSAGES/${BRANDING_SHORTNAME}.mo + rm -f $(DESTDIR)/home/*/.config/${BRANDING_SHORTNAME}/${BRANDING_SHORTNAME}-notify.sh + rm -f $(DESTDIR)/home/*/.config/autostart/${BRANDING_SHORTNAME}.desktop -# FIXME these globbing patters are unsafe -# FIXME allowing dpkg-source to generate files in the parent outside the source tree is unsafe -# FIXME dpkg-source is supposed to be running "make clean" itself but isn't -# FIXME locations & paths are convoluted for miscs.mak and the files listed in it, -# it's a work-around for the way the context switches between here & src/makefile deb-src: clean ${miscs} dpkg-source --build . - mkdir -p release/deb-src - mv -f ../${BRANDING_SHORTNAME}*.dsc release/deb-src/ - mv -f ../${BRANDING_SHORTNAME}*.tar.* release/deb-src/ + mkdir -pv release/deb-src + mv -fv ../${BRANDING_SHORTNAME}_$(pkg_version).dsc release/deb-src/ + mv -fv ../${BRANDING_SHORTNAME}_$(pkg_version).tar.* release/deb-src/ ls -l release/deb-src deb: deb-src - mkdir -p release/deb - pbuilder-dist `lsb_release -sc` build release/deb-src/${BRANDING_SHORTNAME}*.dsc --buildresult release/deb - ls -l release/deb + mkdir -pv release/deb + pbuilder-dist ${host_dist} build release/deb-src/${BRANDING_SHORTNAME}_$(pkg_version).dsc --buildresult release/deb + ls -lv release/deb -debian/%: debian/%.src BRANDING.mak - $(MAKE) -C src ../${@} +install-deb: + sudo dpkg -i release/deb/${BRANDING_SHORTNAME}_$(pkg_version)_${host_arch}.deb +.PHONY: install-deb -.DEFAULT: - $(MAKE) -C src ${@} +uninstall-deb: + sudo dpkg -r ${BRANDING_SHORTNAME} +.PHONY: uninstall-deb diff --git a/README.md b/README.md index d35eb01c..357a99a2 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -### Ubuntu Kernel Update Utility (Ukuu) +### Ubuntu Mainline Kernel Installer This is a tool for installing the latest mainline Linux kernel on Ubuntu-based distributions. @@ -14,41 +14,57 @@ This is a tool for installing the latest mainline Linux kernel on Ubuntu-based d * For each kernel, the related packages (headers & modules) are installed or removed at the same time ### Downloads & Source Code -Ukuu is written using Vala and GTK3 toolkit. Source code and binaries are available from the [GitHub project page](https://github.com/aljex/ukuu). +mainline is written using Vala and GTK3. Source code and binaries are available from the [GitHub project page](https://github.com/aljex/mainline). ### Build sudo apt install libgee-0.8-dev libjson-glib-dev libvte-2.91-dev valac - git clone https://github.com/aljex/ukuu.git - cd ukuu + git clone https://github.com/aljex/mainline.git + cd mainline make sudo make install -### About This Fork -The original author stopped maintaining the original GPL version of ukuu and switched to a [paid license](https://teejeetech.in/tag/ukuu/) for future versions. So, several people have forked that project, and this is one. +### About +mainline is a fork of [ukuu](https://github.com/teejee2008/ukuu) + +The original author stopped maintaining the original GPL version of ukuu and switched to a [paid license](https://teejeetech.in/tag/ukuu/) for future versions. ### Enhancements / Deviations from the original author's final GPL version -* (from [stevenpowerd](https://github.com/stevenpowered/ukuu)) Option to skip internet connection check +* (from [stevenpowerd](https://github.com/stevenpowered/ukuu)) Options controlling the internet connection check * (from [cloyce](https://github.com/cloyce/ukuu)) Option to include or hide pre-release kernels +* Cahnged name from "ukuu" to "mainline" * Removed all GRUB options * Removed all donate buttons, links, dialogs +* Remove source cruft ### Development Plans / TODO * Stop consuming over 5GB in ```~/.cache/ukuu``` with kernel package files Until then: As a work-around, "ukuu --clean-cache" deletes the cache -* Better (more automatic) initial sizes for the window and the columns in the kernel list display so you don't have to manually expand them +* Better (more automatic) initial sizes for the window and the columns in the kernel list display so you don't have to manually expand them +...or at least, remember the sizes the user last set. * More efficient download & caching of info about available kernels, without the kernel packages * Clean up build warnings * Clean up run-time GTK warnings * Make http client configurable (curl/wget/other) -* Reduce dependencies, stop using aptitude just to query installed packages when you can get the info from apt or even dpkg, use the same download client for everything instead of using both curl and aria +* Reduce dependencies, + stop using aptitude just to query installed packages when you can get the info from apt or even dpkg, + (done) use the same download client for everything instead of using both curl and aria2c * Customizable appearance, at least colors * Option to specify kernel variant (generic, lowlatency, snapdragon, etc...) -* Configurable version threshhold instead of arbitrary hard-coded "hide older than 4.0" +* Configurable lowest version threshhold instead of the current hard-coded 4.0 +...or, automatically use current highest release version minus 1 * Improve the annoying pkexec behavior. -It would be nicer to run lxqt-sudo or gksudo or pkexec etc one time for the whole session, and only have to enter a password once, instead of once per user action. -But currently, if you do that, it creates files in the users home directory that are owned by root, so don't do that. + It would be nicer to run lxqt-sudo or gksudo or pkexec etc one time for the whole session, and only have to enter a password once, instead of once per user action. + But currently, if you do that, it creates files in the users home directory that are owned by root, so don't do that. I think this might be addressed by getting the policy kit file working. * Write a man page -* Make all the terminal & child processes more robust. It's always really been pretty 9/10ths-baked. Kernel downloads fail, but work if you just do it again. dpkg installs fail, but work if you just do it again. Populating the main window fails, but works if you just do it again... That could all be a lot better. -* More careful temp file / temp working dir management. It too-often creates dirs as one user and then can't remove or use them later as another user. It too-often fails to deal with the possibility of a user running the app via pkexec or sudo etc. +* Make all the terminal & child processes more robust. +It's always really been pretty 9/10ths-baked. +Kernel downloads fail, but work if you just do it again. +dpkg installs fail, but work if you just do it again. +Populating the main window fails, but works if you just do it again. +Determining what is currently install & running fails, but works if you just do it again +...that is really kind of inexcusable crap could all be a lot better. +* More careful temp file / temp working dir management. +It does avoidable dumb things like creating dirs/files as one user and then can't remove or use them later as another user. +* Replace the entire thing with a bash script, maybe with zenity for an optional gui. I think this vala/gtk project is actually kind of crap. \ No newline at end of file diff --git a/README.md.src b/README.md.src new file mode 100644 index 00000000..92d2b7a4 --- /dev/null +++ b/README.md.src @@ -0,0 +1,70 @@ +### BRANDING_LONGNAME + +This is a tool for installing the latest mainline Linux kernel on Ubuntu-based distributions. + +![Main window screenshot](main_window.png) + +### Features + +* Fetches list of available kernels from [Ubuntu Mainline PPA](http://kernel.ubuntu.com/~kernel-ppa/mainline/) +* Optionally watches and displays notifications when a new kernel update is available +* Downloads and installs packages automatically +* Display available and installed kernels conveniently +* Install/remove kernels from gui +* For each kernel, the related packages (headers & modules) are installed or removed at the same time + +### Downloads & Source Code +BRANDING_SHORTNAME is written using Vala and GTK3. Source code and binaries are available from the [GitHub project page](BRANDING_WEBSITE). + +### Build + sudo apt install libgee-0.8-dev libjson-glib-dev libvte-2.91-dev valac + git clone BRANDING_GITREPO + cd BRANDING_SHORTNAME + make + sudo make install + +### About +BRANDING_SHORTNAME is a fork of [ukuu](https://github.com/teejee2008/ukuu) + +The original author stopped maintaining the original GPL version of ukuu and switched to a [paid license](https://teejeetech.in/tag/ukuu/) for future versions. + +### Enhancements / Deviations from the original author's final GPL version + +* (from [stevenpowerd](https://github.com/stevenpowered/ukuu)) Options controlling the internet connection check +* (from [cloyce](https://github.com/cloyce/ukuu)) Option to include or hide pre-release kernels +* Cahnged name from "ukuu" to "BRANDING_SHORTNAME" +* Removed all GRUB options +* Removed all donate buttons, links, dialogs +* Remove source cruft + +### Development Plans / TODO +* Stop consuming over 5GB in ```~/.cache/ukuu``` with kernel package files +Until then: As a work-around, "ukuu --clean-cache" deletes the cache +* Better (more automatic) initial sizes for the window and the columns in the kernel list display so you don't have to manually expand them +...or at least, remember the sizes the user last set. +* More efficient download & caching of info about available kernels, without the kernel packages +* Clean up build warnings +* Clean up run-time GTK warnings +* Make http client configurable (curl/wget/other) +* Reduce dependencies, + stop using aptitude just to query installed packages when you can get the info from apt or even dpkg, + (done) use the same download client for everything instead of using both curl and aria2c +* Customizable appearance, at least colors +* Option to specify kernel variant (generic, lowlatency, snapdragon, etc...) +* Configurable lowest version threshhold instead of the current hard-coded 4.0 +...or, automatically use current highest release version minus 1 +* Improve the annoying pkexec behavior. + It would be nicer to run lxqt-sudo or gksudo or pkexec etc one time for the whole session, and only have to enter a password once, instead of once per user action. + But currently, if you do that, it creates files in the users home directory that are owned by root, so don't do that. +I think this might be addressed by getting the policy kit file working. +* Write a man page +* Make all the terminal & child processes more robust. +It's always really been pretty 9/10ths-baked. +Kernel downloads fail, but work if you just do it again. +dpkg installs fail, but work if you just do it again. +Populating the main window fails, but works if you just do it again. +Determining what is currently install & running fails, but works if you just do it again +...that is really kind of inexcusable crap could all be a lot better. +* More careful temp file / temp working dir management. +It does avoidable dumb things like creating dirs/files as one user and then can't remove or use them later as another user. +* Replace the entire thing with a bash script, maybe with zenity for an optional gui. I think this vala/gtk project is actually kind of crap. \ No newline at end of file diff --git a/debian/changelog b/debian/changelog index 22a8d906..ce01c43d 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,17 @@ +mainline (1.0.0) disco; urgency=medium + + * Rename project from "ukuu" to "mainline" + * Start version number over at 1.0.0 + * Much reoganizing of source files + * Removed confliciting LICENCE.md, COPYING, and text in debian/copyright + COPYING had GPL3 + LICENSE.md had LGPL2 + debian/copyright had GPL2+ + Asserting only GPL3 going forward + * Reformatted AUTHORS file per gnu.org example + + -- Brian K. White Sat, 16 Mar 2019 04:34:40 -0400 + ukuu (18.9.5-bkw) disco; urgency=medium * More un-hardcoding branding/name/maintainer strings in source files ukuu.desktop, debian/control, debian/copyright, ukuu.policy all generated from BRANDING.mak diff --git a/debian/control b/debian/control index b46e819a..f98df001 100644 --- a/debian/control +++ b/debian/control @@ -1,15 +1,15 @@ -Source: ukuu +Source: mainline Section: utils Priority: extra Maintainer: Brian K. White -Build-Depends: debhelper (>= 8.0.0), valac, libgtk-3-dev, libgee-0.8-dev, libjson-glib-dev, libvte-2.91-dev -Standards-Version: 3.9.3 -Homepage: https://github.com/aljex/ukuu +Build-Depends: debhelper, valac, libgtk-3-dev, libgee-0.8-dev, libjson-glib-dev, libvte-2.91-dev +Standards-Version: 4.3.0 +Homepage: https://github.com/aljex/mainline -Package: ukuu +Package: mainline Architecture: any Depends: ${shlibs:Depends}, ${misc:Depends}, aptitude, aria2 -Recommends: +Recommends: Description: Kernel Update Utility for Ubuntu-based distributions Utility for installing mainline Linux kernels on Ubuntu-based distributions. Downloads and installs kernel packages from kernel.ubuntu.com. diff --git a/debian/control.src b/debian/control.src index 9e90b873..ef663dcb 100644 --- a/debian/control.src +++ b/debian/control.src @@ -2,14 +2,14 @@ Source: BRANDING_SHORTNAME Section: utils Priority: extra Maintainer: BRANDING_AUTHORNAME -Build-Depends: debhelper (>= 8.0.0), valac, libgtk-3-dev, libgee-0.8-dev, libjson-glib-dev, libvte-2.91-dev -Standards-Version: 3.9.3 +Build-Depends: debhelper, valac, libgtk-3-dev, libgee-0.8-dev, libjson-glib-dev, libvte-2.91-dev +Standards-Version: 4.3.0 Homepage: BRANDING_WEBSITE Package: BRANDING_SHORTNAME Architecture: any Depends: ${shlibs:Depends}, ${misc:Depends}, aptitude, aria2 -Recommends: +Recommends: Description: Kernel Update Utility for Ubuntu-based distributions Utility for installing mainline Linux kernels on Ubuntu-based distributions. Downloads and installs kernel packages from kernel.ubuntu.com. diff --git a/debian/copyright b/debian/copyright index df615f60..365410b2 100644 --- a/debian/copyright +++ b/debian/copyright @@ -1,23 +1,8 @@ Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ -Upstream-Name: ukuu -Source: +Upstream-Name: mainline +Source: Files: * -Copyright: 2013 Tony George , Forked: 2019 Brian K. White -License: GPL-2+ - This package is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. - . - This package is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - . - You should have received a copy of the GNU General Public License - along with this program. If not, see - . - On Debian systems, the complete text of the GNU General - Public License version 2 can be found in "/usr/share/common-licenses/GPL-2". - +Copyright: 2016-2018 Tony George + 2019 Brian K. White +License: GPL-3 diff --git a/debian/copyright.src b/debian/copyright.src index 5803161b..16a0469c 100644 --- a/debian/copyright.src +++ b/debian/copyright.src @@ -3,21 +3,6 @@ Upstream-Name: BRANDING_SHORTNAME Source: Files: * -Copyright: 2013 Tony George , Forked: 2019 BRANDING_AUTHORNAME -License: GPL-2+ - This package is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. - . - This package is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - . - You should have received a copy of the GNU General Public License - along with this program. If not, see - . - On Debian systems, the complete text of the GNU General - Public License version 2 can be found in "/usr/share/common-licenses/GPL-2". - +Copyright: 2016-2018 Tony George + 2019 BRANDING_AUTHORNAME +License: GPL-3 diff --git a/debian/source/options b/debian/source/options index 101412a0..e69de29b 100644 --- a/debian/source/options +++ b/debian/source/options @@ -1,3 +0,0 @@ -#git-ref = "master" -#git-depth = "1" -compression = "bzip2" diff --git a/mainline.desktop b/mainline.desktop new file mode 100644 index 00000000..beca80dd --- /dev/null +++ b/mainline.desktop @@ -0,0 +1,11 @@ +[Desktop Entry] +Name=Ubuntu Mainline Kernel Installer +MimeType= +Exec=mainline-gtk +Type=Application +GenericName=Ubuntu Mainline Kernel Installer +Terminal=false +Icon=ukuu +Comment=Ubuntu Mainline Kernel Installer +X-KDE-StartupNotify=false +Categories=System; diff --git a/src/ukuu.desktop.src b/mainline.desktop.src similarity index 100% rename from src/ukuu.desktop.src rename to mainline.desktop.src diff --git a/po/_messages.pot b/po/_messages.pot new file mode 100644 index 00000000..d6dfdbb9 --- /dev/null +++ b/po/_messages.pot @@ -0,0 +1,592 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR Brian K. White (bw.aljex@gmail.com) +# This file is distributed under the same license as the mainline package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: mainline 1.0.0\n" +"Report-Msgid-Bugs-To: bw.aljex@gmail.com\n" +"POT-Creation-Date: 2019-03-16 04:27-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=CHARSET\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/Gtk/MainWindow.vala:496 +msgid "About" +msgstr "" + +#: src/Console/AppConsole.vala:116 +msgid "Admin access is required for running this application." +msgstr "" + +#: src/Utility/AppLock.vala:51 +msgid "Another instance of this application is running" +msgstr "" + +#: src/Common/LinuxKernel.vala:105 +msgid "Architecture" +msgstr "" + +#: src/Utility/Gtk/AboutWindow.vala:338 +#, c-format +msgid "Artists" +msgstr "" + +#: src/Console/AppConsole.vala:103 +msgid "Assume Yes for all prompts (non-interactive mode)" +msgstr "" + +#: src/Utility/Gtk/AboutWindow.vala:314 +#, c-format +msgid "Authors" +msgstr "" + +#: src/Common/LinuxKernel.vala:1181 +msgid "Available Kernels" +msgstr "" + +#: src/Utility/Gtk/AboutWindow.vala:285 +msgid "Back" +msgstr "" + +#: src/Console/AppConsole.vala:206 src/Gtk/AppGtk.vala:110 +msgid "Cache" +msgstr "" + +#: src/Gtk/ProgressWindow.vala:143 src/Gtk/TerminalWindow.vala:151 +#: src/Gtk/UpdateNotificationWindow.vala:167 +#: src/Utility/Gtk/CustomMessageDialog.vala:172 +#: src/Utility/Gtk/GtkHelper.vala:122 +msgid "Cancel" +msgstr "" + +#: src/Gtk/MainWindow.vala:464 +msgid "Changes" +msgstr "" + +#: src/Gtk/SettingsDialog.vala:121 +msgid "Check every" +msgstr "" + +#: src/Console/AppConsole.vala:87 +msgid "Check for kernel updates" +msgstr "" + +#: src/Console/AppConsole.vala:88 +msgid "Check for kernel updates and notify current user" +msgstr "" + +#: src/Gtk/TerminalWindow.vala:161 src/Utility/Gtk/AboutWindow.vala:295 +msgid "Close" +msgstr "" + +#: src/Console/AppConsole.vala:343 +msgid "Command not specified" +msgstr "" + +#: src/Console/AppConsole.vala:85 +msgid "Commands" +msgstr "" + +#: src/Common/Main.vala:105 +msgid "Commands listed below are not available on this system" +msgstr "" + +#: src/Common/LinuxKernel.vala:737 +#, c-format +msgid "Continue ?" +msgstr "" + +#: src/Utility/Gtk/AboutWindow.vala:322 +#, c-format +msgid "Contributions" +msgstr "" + +#: src/Common/LinuxKernel.vala:721 +msgid "Could not find any kernels to remove" +msgstr "" + +#: src/Console/AppConsole.vala:311 src/Gtk/MainWindow.vala:100 +msgid "Could not find requested version" +msgstr "" + +#: src/Common/LinuxKernel.vala:715 +msgid "Could not find running kernel in list!" +msgstr "" + +#: src/Utility/TeeJee.FileSystem.vala:349 +#: src/Utility/TeeJee.FileSystem.vala:352 +#: src/Utility/TeeJee.FileSystem.vala:378 +msgid "Created directory" +msgstr "" + +#: src/Utility/Gtk/AboutWindow.vala:272 src/Utility/Gtk/AboutWindow.vala:289 +msgid "Credits" +msgstr "" + +#: src/Gtk/SettingsDialog.vala:154 +msgid "Day(s)" +msgstr "" + +#: src/Utility/TeeJee.FileSystem.vala:375 +msgid "Deleted directory" +msgstr "" + +#: src/Utility/TeeJee.FileSystem.vala:509 +msgid "Dir not found" +msgstr "" + +#: src/Gtk/SettingsDialog.vala:161 +msgid "Display" +msgstr "" + +#: src/Common/LinuxKernel.vala:91 +msgid "Distribution" +msgstr "" + +#: src/Utility/Gtk/AboutWindow.vala:354 +#, c-format +msgid "Documenters" +msgstr "" + +#: src/Console/AppConsole.vala:96 +msgid "Download packages for specified kernel" +msgstr "" + +#: src/Common/LinuxKernel.vala:1227 +#, c-format +msgid "Downloading" +msgstr "" + +#: src/Utility/TeeJee.Logging.vala:89 +msgid "E" +msgstr "" + +#: src/Common/LinuxKernel.vala:1255 +#, c-format +msgid "ERROR" +msgstr "" + +#: src/Utility/Gtk/GtkHelper.vala:18 +msgid "Error" +msgstr "" + +#: src/Utility/TeeJee.FileSystem.vala:221 +msgid "Failed to copy file" +msgstr "" + +#: src/Utility/TeeJee.FileSystem.vala:359 +msgid "Failed to create dir" +msgstr "" + +#: src/Utility/TeeJee.FileSystem.vala:106 +msgid "Failed to delete file" +msgstr "" + +#: src/Utility/TeeJee.FileSystem.vala:253 +msgid "Failed to move file" +msgstr "" + +#: src/Utility/TeeJee.FileSystem.vala:162 +msgid "Failed to read file" +msgstr "" + +#: src/Utility/TeeJee.FileSystem.vala:197 +msgid "Failed to write file" +msgstr "" + +#: src/Common/LinuxKernel.vala:396 +msgid "Fetching index from kernel.ubuntu.com..." +msgstr "" + +#: src/Common/LinuxKernel.vala:353 +msgid "Fetching index..." +msgstr "" + +#: src/Utility/TeeJee.FileSystem.vala:210 +#: src/Utility/TeeJee.FileSystem.vala:213 +msgid "File copied" +msgstr "" + +#: src/Utility/TeeJee.FileSystem.vala:97 src/Utility/TeeJee.FileSystem.vala:100 +msgid "File deleted" +msgstr "" + +#: src/Utility/TeeJee.FileSystem.vala:662 +#: src/Utility/TeeJee.FileSystem.vala:711 +msgid "File is missing" +msgstr "" + +#: src/Utility/TeeJee.FileSystem.vala:245 +#: src/Utility/TeeJee.FileSystem.vala:248 +msgid "File moved" +msgstr "" + +#: src/Utility/TeeJee.FileSystem.vala:231 +#: src/Utility/TeeJee.FileSystem.vala:538 +msgid "File not found" +msgstr "" + +#: src/Common/Package.vala:133 src/Common/Package.vala:195 +#, c-format +msgid "File not found: %s" +msgstr "" + +#: src/Utility/TeeJee.FileSystem.vala:187 +#: src/Utility/TeeJee.FileSystem.vala:190 +msgid "File saved" +msgstr "" + +#: src/Gtk/SettingsDialog.vala:180 +msgid "Hide kernels older than 4.0" +msgstr "" + +#: src/Gtk/SettingsDialog.vala:169 +msgid "Hide unstable and RC releases" +msgstr "" + +#: src/Gtk/SettingsDialog.vala:152 +msgid "Hour(s)" +msgstr "" + +#: src/Gtk/UpdateNotificationWindow.vala:168 +msgid "Ignore this update" +msgstr "" + +#: src/Common/LinuxKernel.vala:259 +msgid "Index is fresh" +msgstr "" + +#: src/Common/LinuxKernel.vala:256 +msgid "Index is stale" +msgstr "" + +#: src/Gtk/MainWindow.vala:359 src/Gtk/UpdateNotificationWindow.vala:147 +msgid "Install" +msgstr "" + +#: src/Common/LinuxKernel.vala:794 +#, c-format +msgid "Install Linux v%s ? (y/n): " +msgstr "" + +#: src/Console/AppConsole.vala:91 +msgid "Install latest mainline kernel" +msgstr "" + +#: src/Console/AppConsole.vala:92 +msgid "Install latest point update for current series" +msgstr "" + +#: src/Console/AppConsole.vala:93 +msgid "Install specified mainline kernel" +msgstr "" + +#: src/Gtk/UpdateNotificationWindow.vala:148 +msgid "Install this kernel" +msgstr "" + +#: src/Common/LinuxKernel.vala:1301 +msgid "Installation completed with errors" +msgstr "" + +#: src/Common/LinuxKernel.vala:1298 +msgid "Installation completed. A reboot is required to use the new kernel." +msgstr "" + +#: src/Common/LinuxKernel.vala:1198 src/Gtk/MainWindow.vala:208 +msgid "Installed" +msgstr "" + +#: src/Gtk/MainWindow.vala:350 src/Gtk/MainWindow.vala:547 +#: src/Gtk/MainWindow.vala:683 src/Utility/TeeJee.System.vala:281 +msgid "Internet connection is not active" +msgstr "" + +#: src/Gtk/SettingsDialog.vala:212 +msgid "Internet connection timeout in " +msgstr "" + +#: src/Gtk/MainWindow.vala:150 +msgid "Kernel" +msgstr "" + +#: src/Gtk/MainWindow.vala:531 +msgid "Kernel upgrade utility for Ubuntu-based distributions" +msgstr "" + +#: src/Common/LinuxKernel.vala:776 src/Console/AppConsole.vala:369 +#, c-format +msgid "Latest point update" +msgstr "" + +#: src/Common/LinuxKernel.vala:765 src/Console/AppConsole.vala:362 +#, c-format +msgid "Latest update" +msgstr "" + +#: src/Console/AppConsole.vala:89 +msgid "List all available mainline kernels" +msgstr "" + +#: src/Gtk/UpdateNotificationWindow.vala:158 +msgid "List available kernels" +msgstr "" + +#: src/Console/AppConsole.vala:90 +msgid "List installed kernels" +msgstr "" + +#: src/Utility/Gtk/GtkHelper.vala:272 +msgid "Missing Icon" +msgstr "" + +#: src/Gtk/MainWindow.vala:368 +msgid "Multiple Kernels Selected" +msgstr "" + +#: src/Console/AppConsole.vala:293 +msgid "Multiple kernels selected for installation. Select only one." +msgstr "" + +#: src/Utility/Gtk/CustomMessageDialog.vala:177 +msgid "No" +msgstr "" + +#: src/Gtk/MainWindow.vala:350 src/Gtk/MainWindow.vala:547 +#: src/Gtk/MainWindow.vala:683 +msgid "No Internet" +msgstr "" + +#: src/Console/AppConsole.vala:287 src/Console/AppConsole.vala:324 +msgid "No kernels specified" +msgstr "" + +#: src/Common/LinuxKernel.vala:784 src/Console/AppConsole.vala:374 +#: src/Console/AppConsole.vala:432 src/Gtk/MainWindow.vala:793 +msgid "No updates found" +msgstr "" + +#: src/Gtk/MainWindow.vala:371 src/Gtk/MainWindow.vala:382 +msgid "Not Selected" +msgstr "" + +#: src/Gtk/SettingsDialog.vala:66 +msgid "Notification" +msgstr "" + +#: src/Gtk/SettingsDialog.vala:73 +msgid "Notify if a major release is available" +msgstr "" + +#: src/Gtk/SettingsDialog.vala:84 +msgid "Notify if a point release is available" +msgstr "" + +#: src/Common/LinuxKernel.vala:1246 +#: src/Utility/Gtk/CustomMessageDialog.vala:167 +#: src/Utility/Gtk/CustomMessageDialog.vala:171 +#: src/Utility/Gtk/GtkHelper.vala:121 +#, c-format +msgid "OK" +msgstr "" + +#: src/Console/AppConsole.vala:100 src/Gtk/AppGtk.vala:181 +msgid "Options" +msgstr "" + +#: src/Gtk/SettingsDialog.vala:191 +msgid "Other" +msgstr "" + +#: src/Common/LinuxKernel.vala:1060 +#, c-format +msgid "Packages Available" +msgstr "" + +#: src/Common/LinuxKernel.vala:1068 +#, c-format +msgid "Packages Installed" +msgstr "" + +#: src/Common/Main.vala:106 +msgid "Please install required packages and try again" +msgstr "" + +#: src/Common/LinuxKernel.vala:1322 +msgid "Preparing to remove selected kernels" +msgstr "" + +#: src/Gtk/AppGtk.vala:183 +msgid "Print debug information" +msgstr "" + +#: src/Gtk/MainWindow.vala:425 +msgid "Purge" +msgstr "" + +#: src/Gtk/MainWindow.vala:343 +msgid "Refresh" +msgstr "" + +#: src/Gtk/MainWindow.vala:566 +msgid "Refreshing..." +msgstr "" + +#: src/Gtk/MainWindow.vala:376 +msgid "Remove" +msgstr "" + +#: src/Console/AppConsole.vala:97 src/Console/AppConsole.vala:102 +msgid "Remove files from application cache" +msgstr "" + +#: src/Console/AppConsole.vala:95 src/Gtk/MainWindow.vala:426 +msgid "Remove installed kernels older than running kernel" +msgstr "" + +#: src/Console/AppConsole.vala:94 +msgid "Remove specified kernel" +msgstr "" + +#: src/Console/AppConsole.vala:201 src/Console/AppConsole.vala:315 +#: src/Console/AppConsole.vala:344 +msgid "Run '" +msgstr "" + +#: src/Console/AppConsole.vala:119 +msgid "Run the application as admin with pkexec or sudo." +msgstr "" + +#: src/Common/LinuxKernel.vala:1198 src/Gtk/MainWindow.vala:208 +msgid "Running" +msgstr "" + +#: src/Gtk/MainWindow.vala:368 +msgid "Select a single kernel to install" +msgstr "" + +#: src/Gtk/MainWindow.vala:371 +msgid "Select the kernel to install" +msgstr "" + +#: src/Gtk/MainWindow.vala:382 +msgid "Select the kernels to remove" +msgstr "" + +#: src/Common/LinuxKernel.vala:1317 +msgid "" +"Selected kernel is currently running and cannot be removed.\n" +" Install another kernel before removing this one." +msgstr "" + +#: src/Gtk/MainWindow.vala:475 src/Gtk/SettingsDialog.vala:56 +msgid "Settings" +msgstr "" + +#: src/Gtk/UpdateNotificationWindow.vala:157 +msgid "Show" +msgstr "" + +#: src/Gtk/AppGtk.vala:184 +msgid "Show all options" +msgstr "" + +#: src/Gtk/SettingsDialog.vala:95 +msgid "Show notification bubble on desktop" +msgstr "" + +#: src/Gtk/SettingsDialog.vala:106 +msgid "Show notification dialog" +msgstr "" + +#: src/Console/AppConsole.vala:98 +msgid "Show unstable and RC releases" +msgstr "" + +#: src/Gtk/SettingsDialog.vala:199 +msgid "Skip internet connection check" +msgstr "" + +#: src/Gtk/MainWindow.vala:196 +msgid "Status" +msgstr "" + +#: src/Utility/TeeJee.Process.vala:512 +msgid "Stopped" +msgstr "" + +#: src/Console/AppConsole.vala:83 src/Gtk/AppGtk.vala:179 +msgid "Syntax" +msgstr "" + +#: src/Console/AppConsole.vala:207 src/Gtk/AppGtk.vala:111 +msgid "Temp" +msgstr "" + +#: src/Common/LinuxKernel.vala:730 +#, c-format +msgid "The following kernels will be removed:" +msgstr "" + +#: src/Utility/Gtk/AboutWindow.vala:330 +#, c-format +msgid "Third Party Tools" +msgstr "" + +#: src/Common/LinuxKernel.vala:1269 src/Gtk/MainWindow.vala:678 +msgid "This kernel is already installed." +msgstr "" + +#: src/Common/LinuxKernel.vala:1373 +msgid "" +"This kernel is currently running and cannot be removed.\n" +" Install another kernel before removing this one." +msgstr "" + +#: src/Utility/Gtk/AboutWindow.vala:346 +#, c-format +msgid "Translators" +msgstr "" + +#: src/Common/LinuxKernel.vala:1357 src/Common/LinuxKernel.vala:1413 +msgid "Un-install completed" +msgstr "" + +#: src/Common/LinuxKernel.vala:1360 src/Common/LinuxKernel.vala:1416 +msgid "Un-install completed with errors" +msgstr "" + +#: src/Console/AppConsole.vala:199 src/Gtk/AppGtk.vala:166 +msgid "Unknown option" +msgstr "" + +#: src/Gtk/MainWindow.vala:179 +msgid "Version" +msgstr "" + +#: src/Utility/TeeJee.Logging.vala:89 +msgid "W" +msgstr "" + +#: src/Gtk/SettingsDialog.vala:156 +msgid "Week(s)" +msgstr "" + +#: src/Utility/Gtk/CustomMessageDialog.vala:176 +msgid "Yes" +msgstr "" + +#: src/Utility/AppLock.vala:56 +msgid "[Warning] Deleted invalid lock" +msgstr "" + +#: src/Gtk/SettingsDialog.vala:226 +msgid "seconds" +msgstr "" diff --git a/po/ukuu-es.po b/po/es.po similarity index 60% rename from po/ukuu-es.po rename to po/es.po index f4367394..f679d64d 100644 --- a/po/ukuu-es.po +++ b/po/es.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu\n" "Report-Msgid-Bugs-To: bw.aljex@gmail.com\n" -"POT-Creation-Date: 2019-03-13 17:28-0400\n" +"POT-Creation-Date: 2019-03-16 04:27-0400\n" "PO-Revision-Date: 2018-01-03 02:03-0600\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish\n" @@ -17,465 +17,475 @@ msgstr "" "X-Launchpad-Export-Date: 2017-04-13 11:48+0000\n" "X-Generator: Poedit 2.0.5\n" -#: Gtk/MainWindow.vala:496 +#: src/Gtk/MainWindow.vala:496 msgid "About" msgstr "Acerca de" -#: Console/AppConsole.vala:116 +#: src/Console/AppConsole.vala:116 msgid "Admin access is required for running this application." msgstr "" "Se necesitan privilegios administrativos para ejecutar esta aplicación." -#: Utility/AppLock.vala:51 +#: src/Utility/AppLock.vala:51 msgid "Another instance of this application is running" msgstr "Se está ejecutando otra instancia de esta aplicación" -#: Common/LinuxKernel.vala:105 +#: src/Common/LinuxKernel.vala:105 msgid "Architecture" msgstr "Arquitectura del sistema" -#: Utility/Gtk/AboutWindow.vala:338 +#: src/Utility/Gtk/AboutWindow.vala:338 #, c-format msgid "Artists" msgstr "Artistas" -#: Console/AppConsole.vala:103 +#: src/Console/AppConsole.vala:103 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "Asumir Sí para todas las solicitudes (modo no interactivo)" -#: Utility/Gtk/AboutWindow.vala:314 +#: src/Utility/Gtk/AboutWindow.vala:314 #, c-format msgid "Authors" msgstr "Autores" -#: Common/LinuxKernel.vala:1181 +#: src/Common/LinuxKernel.vala:1181 msgid "Available Kernels" msgstr "Núcleos disponibles" -#: Utility/Gtk/AboutWindow.vala:285 +#: src/Utility/Gtk/AboutWindow.vala:285 msgid "Back" msgstr "Atrás" -#: Console/AppConsole.vala:206 Gtk/AppGtk.vala:110 +#: src/Console/AppConsole.vala:206 src/Gtk/AppGtk.vala:110 msgid "Cache" msgstr "Cache" -#: Gtk/ProgressWindow.vala:143 Gtk/TerminalWindow.vala:151 -#: Gtk/UpdateNotificationWindow.vala:167 -#: Utility/Gtk/CustomMessageDialog.vala:172 Utility/Gtk/GtkHelper.vala:122 +#: src/Gtk/ProgressWindow.vala:143 src/Gtk/TerminalWindow.vala:151 +#: src/Gtk/UpdateNotificationWindow.vala:167 +#: src/Utility/Gtk/CustomMessageDialog.vala:172 +#: src/Utility/Gtk/GtkHelper.vala:122 msgid "Cancel" msgstr "Cancelar" -#: Gtk/MainWindow.vala:464 +#: src/Gtk/MainWindow.vala:464 msgid "Changes" msgstr "Cambios" -#: Gtk/SettingsDialog.vala:121 +#: src/Gtk/SettingsDialog.vala:121 msgid "Check every" msgstr "Comprobar cada" -#: Console/AppConsole.vala:87 +#: src/Console/AppConsole.vala:87 msgid "Check for kernel updates" msgstr "Buscar actualizaciones del núcleo" -#: Console/AppConsole.vala:88 +#: src/Console/AppConsole.vala:88 msgid "Check for kernel updates and notify current user" msgstr "Compruebe las actualizaciones del kernel y notifique al usuario actual" -#: Gtk/TerminalWindow.vala:161 Utility/Gtk/AboutWindow.vala:295 +#: src/Gtk/TerminalWindow.vala:161 src/Utility/Gtk/AboutWindow.vala:295 msgid "Close" msgstr "Cerrar" -#: Console/AppConsole.vala:343 +#: src/Console/AppConsole.vala:343 msgid "Command not specified" msgstr "Coomand no especificado" -#: Console/AppConsole.vala:85 +#: src/Console/AppConsole.vala:85 msgid "Commands" msgstr "Comandos" -#: Common/Main.vala:105 +#: src/Common/Main.vala:105 msgid "Commands listed below are not available on this system" msgstr "" "Las órdenes enumeradas a continuación no están disponibles en este sistema" -#: Common/LinuxKernel.vala:737 +#: src/Common/LinuxKernel.vala:737 #, c-format msgid "Continue ?" msgstr "¿Continuar?" -#: Utility/Gtk/AboutWindow.vala:322 +#: src/Utility/Gtk/AboutWindow.vala:322 #, c-format msgid "Contributions" msgstr "Contribuciones" -#: Common/LinuxKernel.vala:721 +#: src/Common/LinuxKernel.vala:721 msgid "Could not find any kernels to remove" msgstr "Seleccione los núcleos que se desinstalarán" -#: Console/AppConsole.vala:311 Gtk/MainWindow.vala:100 +#: src/Console/AppConsole.vala:311 src/Gtk/MainWindow.vala:100 msgid "Could not find requested version" msgstr "No se pudo encontrar la versión solicitada" -#: Common/LinuxKernel.vala:715 +#: src/Common/LinuxKernel.vala:715 msgid "Could not find running kernel in list!" msgstr "¡No se pudo encontrar el núcleo en ejecución en la lista!" -#: Utility/TeeJee.FileSystem.vala:349 Utility/TeeJee.FileSystem.vala:352 -#: Utility/TeeJee.FileSystem.vala:378 +#: src/Utility/TeeJee.FileSystem.vala:349 +#: src/Utility/TeeJee.FileSystem.vala:352 +#: src/Utility/TeeJee.FileSystem.vala:378 msgid "Created directory" msgstr "Se creó el directorio" -#: Utility/Gtk/AboutWindow.vala:272 Utility/Gtk/AboutWindow.vala:289 +#: src/Utility/Gtk/AboutWindow.vala:272 src/Utility/Gtk/AboutWindow.vala:289 msgid "Credits" msgstr "Créditos" -#: Gtk/SettingsDialog.vala:154 +#: src/Gtk/SettingsDialog.vala:154 msgid "Day(s)" msgstr "Días" -#: Utility/TeeJee.FileSystem.vala:375 +#: src/Utility/TeeJee.FileSystem.vala:375 msgid "Deleted directory" msgstr "Se eliminó el directorio" -#: Utility/TeeJee.FileSystem.vala:509 +#: src/Utility/TeeJee.FileSystem.vala:509 msgid "Dir not found" msgstr "No se encontró el directorio" -#: Gtk/SettingsDialog.vala:161 +#: src/Gtk/SettingsDialog.vala:161 msgid "Display" msgstr "Mostrar" -#: Common/LinuxKernel.vala:91 +#: src/Common/LinuxKernel.vala:91 msgid "Distribution" msgstr "Distribución" -#: Utility/Gtk/AboutWindow.vala:354 +#: src/Utility/Gtk/AboutWindow.vala:354 #, c-format msgid "Documenters" msgstr "Documentadores" -#: Console/AppConsole.vala:96 +#: src/Console/AppConsole.vala:96 msgid "Download packages for specified kernel" msgstr "Descargar paquetes del núcleo especificado" -#: Common/LinuxKernel.vala:1227 +#: src/Common/LinuxKernel.vala:1227 #, c-format msgid "Downloading" msgstr "Descargando" -#: Utility/TeeJee.Logging.vala:89 +#: src/Utility/TeeJee.Logging.vala:89 msgid "E" msgstr "E" -#: Common/LinuxKernel.vala:1255 +#: src/Common/LinuxKernel.vala:1255 #, c-format msgid "ERROR" msgstr "ERROR" -#: Utility/Gtk/GtkHelper.vala:18 +#: src/Utility/Gtk/GtkHelper.vala:18 msgid "Error" msgstr "Error" -#: Utility/TeeJee.FileSystem.vala:221 +#: src/Utility/TeeJee.FileSystem.vala:221 msgid "Failed to copy file" msgstr "Falló la copia del archivo" -#: Utility/TeeJee.FileSystem.vala:359 +#: src/Utility/TeeJee.FileSystem.vala:359 msgid "Failed to create dir" msgstr "Falló la creación del directorio" -#: Utility/TeeJee.FileSystem.vala:106 +#: src/Utility/TeeJee.FileSystem.vala:106 msgid "Failed to delete file" msgstr "Falló la eliminación del archivo" -#: Utility/TeeJee.FileSystem.vala:253 +#: src/Utility/TeeJee.FileSystem.vala:253 msgid "Failed to move file" msgstr "Falló el traslado del archivo" -#: Utility/TeeJee.FileSystem.vala:162 +#: src/Utility/TeeJee.FileSystem.vala:162 msgid "Failed to read file" msgstr "Falló la lectura del archivo" -#: Utility/TeeJee.FileSystem.vala:197 +#: src/Utility/TeeJee.FileSystem.vala:197 msgid "Failed to write file" msgstr "Falló la escritura del archivo" -#: Common/LinuxKernel.vala:396 +#: src/Common/LinuxKernel.vala:396 msgid "Fetching index from kernel.ubuntu.com..." msgstr "Recuperando índice de kernel.ubuntu.com…" -#: Common/LinuxKernel.vala:353 +#: src/Common/LinuxKernel.vala:353 msgid "Fetching index..." msgstr "Recuperando índice..." -#: Utility/TeeJee.FileSystem.vala:210 Utility/TeeJee.FileSystem.vala:213 +#: src/Utility/TeeJee.FileSystem.vala:210 +#: src/Utility/TeeJee.FileSystem.vala:213 msgid "File copied" msgstr "Se copió el archivo" -#: Utility/TeeJee.FileSystem.vala:97 Utility/TeeJee.FileSystem.vala:100 +#: src/Utility/TeeJee.FileSystem.vala:97 src/Utility/TeeJee.FileSystem.vala:100 msgid "File deleted" msgstr "Se eliminó el archivo" -#: Utility/TeeJee.FileSystem.vala:662 Utility/TeeJee.FileSystem.vala:711 +#: src/Utility/TeeJee.FileSystem.vala:662 +#: src/Utility/TeeJee.FileSystem.vala:711 msgid "File is missing" msgstr "Falta el archivo" -#: Utility/TeeJee.FileSystem.vala:245 Utility/TeeJee.FileSystem.vala:248 +#: src/Utility/TeeJee.FileSystem.vala:245 +#: src/Utility/TeeJee.FileSystem.vala:248 msgid "File moved" msgstr "Se trasladó el archivo" -#: Utility/TeeJee.FileSystem.vala:231 Utility/TeeJee.FileSystem.vala:538 +#: src/Utility/TeeJee.FileSystem.vala:231 +#: src/Utility/TeeJee.FileSystem.vala:538 msgid "File not found" msgstr "No se encontró el archivo" -#: Common/Package.vala:133 Common/Package.vala:195 +#: src/Common/Package.vala:133 src/Common/Package.vala:195 #, c-format msgid "File not found: %s" msgstr "No se encontró el archivo: %s" -#: Utility/TeeJee.FileSystem.vala:187 Utility/TeeJee.FileSystem.vala:190 +#: src/Utility/TeeJee.FileSystem.vala:187 +#: src/Utility/TeeJee.FileSystem.vala:190 msgid "File saved" msgstr "Se guardó el archivo" -#: Gtk/SettingsDialog.vala:180 +#: src/Gtk/SettingsDialog.vala:180 msgid "Hide kernels older than 4.0" msgstr "Ocultar núcleos anteriores a 4.0" -#: Gtk/SettingsDialog.vala:169 +#: src/Gtk/SettingsDialog.vala:169 msgid "Hide unstable and RC releases" msgstr "Ocultar versiones inestables y RC" -#: Gtk/SettingsDialog.vala:152 +#: src/Gtk/SettingsDialog.vala:152 msgid "Hour(s)" msgstr "Horas" -#: Gtk/UpdateNotificationWindow.vala:168 +#: src/Gtk/UpdateNotificationWindow.vala:168 msgid "Ignore this update" msgstr "Ignorar esta actualización" -#: Common/LinuxKernel.vala:259 +#: src/Common/LinuxKernel.vala:259 msgid "Index is fresh" msgstr "El índice está al día" -#: Common/LinuxKernel.vala:256 +#: src/Common/LinuxKernel.vala:256 msgid "Index is stale" msgstr "El índice es obsoleto" -#: Gtk/MainWindow.vala:359 Gtk/UpdateNotificationWindow.vala:147 +#: src/Gtk/MainWindow.vala:359 src/Gtk/UpdateNotificationWindow.vala:147 msgid "Install" msgstr "Instalar" -#: Common/LinuxKernel.vala:794 +#: src/Common/LinuxKernel.vala:794 #, c-format msgid "Install Linux v%s ? (y/n): " msgstr "" -#: Console/AppConsole.vala:91 +#: src/Console/AppConsole.vala:91 msgid "Install latest mainline kernel" msgstr "Instalar kernel troncal especificado" -#: Console/AppConsole.vala:92 +#: src/Console/AppConsole.vala:92 msgid "Install latest point update for current series" msgstr "" -#: Console/AppConsole.vala:93 +#: src/Console/AppConsole.vala:93 msgid "Install specified mainline kernel" msgstr "Instalar núcleo troncal especificado" -#: Gtk/UpdateNotificationWindow.vala:148 +#: src/Gtk/UpdateNotificationWindow.vala:148 msgid "Install this kernel" msgstr "Instalar este kernel" -#: Common/LinuxKernel.vala:1301 +#: src/Common/LinuxKernel.vala:1301 msgid "Installation completed with errors" msgstr "Instalación finalizada con errores" -#: Common/LinuxKernel.vala:1298 +#: src/Common/LinuxKernel.vala:1298 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "Instalación finalizada. Se necesita reiniciar para utilizar el núcleo nuevo." -#: Common/LinuxKernel.vala:1198 Gtk/MainWindow.vala:208 +#: src/Common/LinuxKernel.vala:1198 src/Gtk/MainWindow.vala:208 msgid "Installed" msgstr "Instalado" -#: Gtk/MainWindow.vala:350 Gtk/MainWindow.vala:547 Gtk/MainWindow.vala:683 -#: Utility/TeeJee.System.vala:281 +#: src/Gtk/MainWindow.vala:350 src/Gtk/MainWindow.vala:547 +#: src/Gtk/MainWindow.vala:683 src/Utility/TeeJee.System.vala:281 msgid "Internet connection is not active" msgstr "La conexión a Internet está inactiva" -#: Gtk/SettingsDialog.vala:212 +#: src/Gtk/SettingsDialog.vala:212 #, fuzzy msgid "Internet connection timeout in " msgstr "La conexión a Internet está inactiva" -#: Gtk/MainWindow.vala:150 +#: src/Gtk/MainWindow.vala:150 msgid "Kernel" msgstr "Núcleo" -#: Gtk/MainWindow.vala:531 +#: src/Gtk/MainWindow.vala:531 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "" "Herramienta de renovación de núcleo para distribuciones basadas en Ubuntu" -#: Common/LinuxKernel.vala:776 Console/AppConsole.vala:369 +#: src/Common/LinuxKernel.vala:776 src/Console/AppConsole.vala:369 #, c-format msgid "Latest point update" msgstr "" -#: Common/LinuxKernel.vala:765 Console/AppConsole.vala:362 +#: src/Common/LinuxKernel.vala:765 src/Console/AppConsole.vala:362 #, c-format msgid "Latest update" msgstr "" -#: Console/AppConsole.vala:89 +#: src/Console/AppConsole.vala:89 msgid "List all available mainline kernels" msgstr "Mostrar todos los núcleos troncales disponibles" -#: Gtk/UpdateNotificationWindow.vala:158 +#: src/Gtk/UpdateNotificationWindow.vala:158 msgid "List available kernels" msgstr "Mostrar núcleos disponibles" -#: Console/AppConsole.vala:90 +#: src/Console/AppConsole.vala:90 msgid "List installed kernels" msgstr "Mostrar kernels disponibles" -#: Utility/Gtk/GtkHelper.vala:272 +#: src/Utility/Gtk/GtkHelper.vala:272 msgid "Missing Icon" msgstr "Falta el icono" -#: Gtk/MainWindow.vala:368 +#: src/Gtk/MainWindow.vala:368 msgid "Multiple Kernels Selected" msgstr "Se seleccionaron varios kernels" -#: Console/AppConsole.vala:293 +#: src/Console/AppConsole.vala:293 msgid "Multiple kernels selected for installation. Select only one." msgstr "Se seleccionaron varios núcleos para su instalación. Elija solo uno." -#: Utility/Gtk/CustomMessageDialog.vala:177 +#: src/Utility/Gtk/CustomMessageDialog.vala:177 msgid "No" msgstr "No" -#: Gtk/MainWindow.vala:350 Gtk/MainWindow.vala:547 Gtk/MainWindow.vala:683 +#: src/Gtk/MainWindow.vala:350 src/Gtk/MainWindow.vala:547 +#: src/Gtk/MainWindow.vala:683 msgid "No Internet" msgstr "No hay Internet" -#: Console/AppConsole.vala:287 Console/AppConsole.vala:324 +#: src/Console/AppConsole.vala:287 src/Console/AppConsole.vala:324 msgid "No kernels specified" msgstr "" -#: Common/LinuxKernel.vala:784 Console/AppConsole.vala:374 -#: Console/AppConsole.vala:432 Gtk/MainWindow.vala:793 +#: src/Common/LinuxKernel.vala:784 src/Console/AppConsole.vala:374 +#: src/Console/AppConsole.vala:432 src/Gtk/MainWindow.vala:793 msgid "No updates found" msgstr "No se encontró ninguna actualización" -#: Gtk/MainWindow.vala:371 Gtk/MainWindow.vala:382 +#: src/Gtk/MainWindow.vala:371 src/Gtk/MainWindow.vala:382 msgid "Not Selected" msgstr "No seleccionado" -#: Gtk/SettingsDialog.vala:66 +#: src/Gtk/SettingsDialog.vala:66 msgid "Notification" msgstr "Notificación" -#: Gtk/SettingsDialog.vala:73 +#: src/Gtk/SettingsDialog.vala:73 msgid "Notify if a major release is available" msgstr "Notificar si hay una versión importante disponible" -#: Gtk/SettingsDialog.vala:84 +#: src/Gtk/SettingsDialog.vala:84 msgid "Notify if a point release is available" msgstr "Notificar si hay una versión puntual disponible" -#: Common/LinuxKernel.vala:1246 Utility/Gtk/CustomMessageDialog.vala:167 -#: Utility/Gtk/CustomMessageDialog.vala:171 Utility/Gtk/GtkHelper.vala:121 +#: src/Common/LinuxKernel.vala:1246 +#: src/Utility/Gtk/CustomMessageDialog.vala:167 +#: src/Utility/Gtk/CustomMessageDialog.vala:171 +#: src/Utility/Gtk/GtkHelper.vala:121 #, c-format msgid "OK" msgstr "Aceptar" -#: Console/AppConsole.vala:100 Gtk/AppGtk.vala:181 +#: src/Console/AppConsole.vala:100 src/Gtk/AppGtk.vala:181 msgid "Options" msgstr "Opciones" -#: Gtk/SettingsDialog.vala:191 +#: src/Gtk/SettingsDialog.vala:191 msgid "Other" msgstr "" -#: Common/LinuxKernel.vala:1060 +#: src/Common/LinuxKernel.vala:1060 #, c-format msgid "Packages Available" msgstr "Paquetes disponibles" -#: Common/LinuxKernel.vala:1068 +#: src/Common/LinuxKernel.vala:1068 #, c-format msgid "Packages Installed" msgstr "Paquetes instalados" -#: Common/Main.vala:106 +#: src/Common/Main.vala:106 msgid "Please install required packages and try again" msgstr "Instale los paquetes requeridos e inténtelo de nuevo" -#: Common/LinuxKernel.vala:1322 +#: src/Common/LinuxKernel.vala:1322 msgid "Preparing to remove selected kernels" msgstr "Preparándose para desinstalar los núcleos seleccionados" -#: Gtk/AppGtk.vala:183 +#: src/Gtk/AppGtk.vala:183 msgid "Print debug information" msgstr "Mostrar información de depuración" -#: Gtk/MainWindow.vala:425 +#: src/Gtk/MainWindow.vala:425 msgid "Purge" msgstr "" -#: Gtk/MainWindow.vala:343 +#: src/Gtk/MainWindow.vala:343 msgid "Refresh" msgstr "Actualizar" -#: Gtk/MainWindow.vala:566 +#: src/Gtk/MainWindow.vala:566 msgid "Refreshing..." msgstr "Actualizando…" -#: Gtk/MainWindow.vala:376 +#: src/Gtk/MainWindow.vala:376 msgid "Remove" msgstr "Quitar" -#: Console/AppConsole.vala:97 Console/AppConsole.vala:102 +#: src/Console/AppConsole.vala:97 src/Console/AppConsole.vala:102 msgid "Remove files from application cache" msgstr "Quitar archivos de la antememoria de la aplicación" -#: Console/AppConsole.vala:95 Gtk/MainWindow.vala:426 +#: src/Console/AppConsole.vala:95 src/Gtk/MainWindow.vala:426 msgid "Remove installed kernels older than running kernel" msgstr "" -#: Console/AppConsole.vala:94 +#: src/Console/AppConsole.vala:94 msgid "Remove specified kernel" msgstr "Quitar el núcleo troncal especificado" -#: Console/AppConsole.vala:201 Console/AppConsole.vala:315 -#: Console/AppConsole.vala:344 +#: src/Console/AppConsole.vala:201 src/Console/AppConsole.vala:315 +#: src/Console/AppConsole.vala:344 msgid "Run '" msgstr "" -#: Console/AppConsole.vala:119 +#: src/Console/AppConsole.vala:119 msgid "Run the application as admin with pkexec or sudo." msgstr "Ejecute la aplicación con permisos administrativos con pkexec o sudo." -#: Common/LinuxKernel.vala:1198 Gtk/MainWindow.vala:208 +#: src/Common/LinuxKernel.vala:1198 src/Gtk/MainWindow.vala:208 msgid "Running" msgstr "En ejecución" -#: Gtk/MainWindow.vala:368 +#: src/Gtk/MainWindow.vala:368 msgid "Select a single kernel to install" msgstr "Seleccione un solo núcleo para instalarlo" -#: Gtk/MainWindow.vala:371 +#: src/Gtk/MainWindow.vala:371 msgid "Select the kernel to install" msgstr "Seleccione el núcleo que se instalará" -#: Gtk/MainWindow.vala:382 +#: src/Gtk/MainWindow.vala:382 msgid "Select the kernels to remove" msgstr "Seleccione los núcleos que se desinstalarán" -#: Common/LinuxKernel.vala:1317 +#: src/Common/LinuxKernel.vala:1317 msgid "" "Selected kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -483,65 +493,65 @@ msgstr "" "El núcleo seleccionado está en ejecución y no puede desinstalarse.\n" "Instale otro núcleo antes de desinstalar este." -#: Gtk/MainWindow.vala:475 Gtk/SettingsDialog.vala:56 +#: src/Gtk/MainWindow.vala:475 src/Gtk/SettingsDialog.vala:56 msgid "Settings" msgstr "Configuración" -#: Gtk/UpdateNotificationWindow.vala:157 +#: src/Gtk/UpdateNotificationWindow.vala:157 msgid "Show" msgstr "Mostrar" -#: Gtk/AppGtk.vala:184 +#: src/Gtk/AppGtk.vala:184 msgid "Show all options" msgstr "Mostrar todas las opciones" -#: Gtk/SettingsDialog.vala:95 +#: src/Gtk/SettingsDialog.vala:95 msgid "Show notification bubble on desktop" msgstr "Mostrar globo de notificación en el escritorio" -#: Gtk/SettingsDialog.vala:106 +#: src/Gtk/SettingsDialog.vala:106 msgid "Show notification dialog" msgstr "Mostrar cuadro de diálogo de notificación" -#: Console/AppConsole.vala:98 +#: src/Console/AppConsole.vala:98 msgid "Show unstable and RC releases" msgstr "Ocultar versiones inestables y RC" -#: Gtk/SettingsDialog.vala:199 +#: src/Gtk/SettingsDialog.vala:199 msgid "Skip internet connection check" msgstr "La conexión a Internet está inactiva" -#: Gtk/MainWindow.vala:196 +#: src/Gtk/MainWindow.vala:196 msgid "Status" msgstr "Estado" -#: Utility/TeeJee.Process.vala:512 +#: src/Utility/TeeJee.Process.vala:512 msgid "Stopped" msgstr "Detenido" -#: Console/AppConsole.vala:83 Gtk/AppGtk.vala:179 +#: src/Console/AppConsole.vala:83 src/Gtk/AppGtk.vala:179 msgid "Syntax" msgstr "Sintaxis" -#: Console/AppConsole.vala:207 Gtk/AppGtk.vala:111 +#: src/Console/AppConsole.vala:207 src/Gtk/AppGtk.vala:111 msgid "Temp" msgstr "" -#: Common/LinuxKernel.vala:730 +#: src/Common/LinuxKernel.vala:730 #, c-format msgid "The following kernels will be removed:" msgstr "Los siguientes kernels serán eliminados:" -#: Utility/Gtk/AboutWindow.vala:330 +#: src/Utility/Gtk/AboutWindow.vala:330 #, c-format msgid "Third Party Tools" msgstr "Herramientas de terceros" -#: Common/LinuxKernel.vala:1269 Gtk/MainWindow.vala:678 +#: src/Common/LinuxKernel.vala:1269 src/Gtk/MainWindow.vala:678 msgid "This kernel is already installed." msgstr "Este núcleo ya se instaló." -#: Common/LinuxKernel.vala:1373 +#: src/Common/LinuxKernel.vala:1373 msgid "" "This kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -549,43 +559,43 @@ msgstr "" "Este núcleo está en ejecución y no se puede desinstalar.\n" "Instale otro núcleo antes de desinstalar este." -#: Utility/Gtk/AboutWindow.vala:346 +#: src/Utility/Gtk/AboutWindow.vala:346 #, c-format msgid "Translators" msgstr "Traductores" -#: Common/LinuxKernel.vala:1357 Common/LinuxKernel.vala:1413 +#: src/Common/LinuxKernel.vala:1357 src/Common/LinuxKernel.vala:1413 msgid "Un-install completed" msgstr "Desinstalación finalizada" -#: Common/LinuxKernel.vala:1360 Common/LinuxKernel.vala:1416 +#: src/Common/LinuxKernel.vala:1360 src/Common/LinuxKernel.vala:1416 msgid "Un-install completed with errors" msgstr "Desinstalación finalizada con errores" -#: Console/AppConsole.vala:199 Gtk/AppGtk.vala:166 +#: src/Console/AppConsole.vala:199 src/Gtk/AppGtk.vala:166 msgid "Unknown option" msgstr "Opción desconocida" -#: Gtk/MainWindow.vala:179 +#: src/Gtk/MainWindow.vala:179 msgid "Version" msgstr "Versión" -#: Utility/TeeJee.Logging.vala:89 +#: src/Utility/TeeJee.Logging.vala:89 msgid "W" msgstr "W" -#: Gtk/SettingsDialog.vala:156 +#: src/Gtk/SettingsDialog.vala:156 msgid "Week(s)" msgstr "Semanas" -#: Utility/Gtk/CustomMessageDialog.vala:176 +#: src/Utility/Gtk/CustomMessageDialog.vala:176 msgid "Yes" msgstr "Sí" -#: Utility/AppLock.vala:56 +#: src/Utility/AppLock.vala:56 msgid "[Warning] Deleted invalid lock" msgstr "[Atención] Se eliminó un bloqueo no válido" -#: Gtk/SettingsDialog.vala:226 +#: src/Gtk/SettingsDialog.vala:226 msgid "seconds" msgstr "" diff --git a/po/ukuu-fr.po b/po/fr.po similarity index 73% rename from po/ukuu-fr.po rename to po/fr.po index 80bedaf7..9b8d1eb8 100644 --- a/po/ukuu-fr.po +++ b/po/fr.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu\n" "Report-Msgid-Bugs-To: bw.aljex@gmail.com\n" -"POT-Creation-Date: 2019-03-13 17:28-0400\n" +"POT-Creation-Date: 2019-03-16 04:27-0400\n" "PO-Revision-Date: 2018-08-05 15:50+0200\n" "Last-Translator: Yolateng0 \n" "Language-Team: French\n" @@ -17,475 +17,485 @@ msgstr "" "X-Launchpad-Export-Date: 2017-04-13 11:48+0000\n" "X-Generator: Poedit 2.0.6\n" -#: Gtk/MainWindow.vala:496 +#: src/Gtk/MainWindow.vala:496 msgid "About" msgstr "À propos" -#: Console/AppConsole.vala:116 +#: src/Console/AppConsole.vala:116 msgid "Admin access is required for running this application." msgstr "Accès administrateur requis pour lancer cette application." -#: Utility/AppLock.vala:51 +#: src/Utility/AppLock.vala:51 msgid "Another instance of this application is running" msgstr "Une autre instance de l'application est en cours d'exécution" -#: Common/LinuxKernel.vala:105 +#: src/Common/LinuxKernel.vala:105 #, fuzzy msgid "Architecture" msgstr "Architecture du système" -#: Utility/Gtk/AboutWindow.vala:338 +#: src/Utility/Gtk/AboutWindow.vala:338 #, c-format msgid "Artists" msgstr "Artistes" -#: Console/AppConsole.vala:103 +#: src/Console/AppConsole.vala:103 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "" -#: Utility/Gtk/AboutWindow.vala:314 +#: src/Utility/Gtk/AboutWindow.vala:314 #, c-format msgid "Authors" msgstr "Auteurs" -#: Common/LinuxKernel.vala:1181 +#: src/Common/LinuxKernel.vala:1181 msgid "Available Kernels" msgstr "Noyaux disponibles" -#: Utility/Gtk/AboutWindow.vala:285 +#: src/Utility/Gtk/AboutWindow.vala:285 msgid "Back" msgstr "Retour" -#: Console/AppConsole.vala:206 Gtk/AppGtk.vala:110 +#: src/Console/AppConsole.vala:206 src/Gtk/AppGtk.vala:110 msgid "Cache" msgstr "" -#: Gtk/ProgressWindow.vala:143 Gtk/TerminalWindow.vala:151 -#: Gtk/UpdateNotificationWindow.vala:167 -#: Utility/Gtk/CustomMessageDialog.vala:172 Utility/Gtk/GtkHelper.vala:122 +#: src/Gtk/ProgressWindow.vala:143 src/Gtk/TerminalWindow.vala:151 +#: src/Gtk/UpdateNotificationWindow.vala:167 +#: src/Utility/Gtk/CustomMessageDialog.vala:172 +#: src/Utility/Gtk/GtkHelper.vala:122 msgid "Cancel" msgstr "Annuler" -#: Gtk/MainWindow.vala:464 +#: src/Gtk/MainWindow.vala:464 msgid "Changes" msgstr "Changements" -#: Gtk/SettingsDialog.vala:121 +#: src/Gtk/SettingsDialog.vala:121 msgid "Check every" msgstr "Vérifier toutes les" -#: Console/AppConsole.vala:87 +#: src/Console/AppConsole.vala:87 msgid "Check for kernel updates" msgstr "Vérifier les mises à jour des noyaux" -#: Console/AppConsole.vala:88 +#: src/Console/AppConsole.vala:88 #, fuzzy msgid "Check for kernel updates and notify current user" msgstr "Vérifier les mises à jour des noyaux" -#: Gtk/TerminalWindow.vala:161 Utility/Gtk/AboutWindow.vala:295 +#: src/Gtk/TerminalWindow.vala:161 src/Utility/Gtk/AboutWindow.vala:295 msgid "Close" msgstr "Fermer" -#: Console/AppConsole.vala:343 +#: src/Console/AppConsole.vala:343 #, fuzzy msgid "Command not specified" msgstr "Impossible de trouver le fichier" -#: Console/AppConsole.vala:85 +#: src/Console/AppConsole.vala:85 msgid "Commands" msgstr "" -#: Common/Main.vala:105 +#: src/Common/Main.vala:105 msgid "Commands listed below are not available on this system" msgstr "Les commandes listées ne sont pas valables pour ce système" -#: Common/LinuxKernel.vala:737 +#: src/Common/LinuxKernel.vala:737 #, c-format msgid "Continue ?" msgstr "" -#: Utility/Gtk/AboutWindow.vala:322 +#: src/Utility/Gtk/AboutWindow.vala:322 #, c-format msgid "Contributions" msgstr "Contributions" -#: Common/LinuxKernel.vala:721 +#: src/Common/LinuxKernel.vala:721 #, fuzzy msgid "Could not find any kernels to remove" msgstr "Sélectionnez les noyaux à supprimer" -#: Console/AppConsole.vala:311 Gtk/MainWindow.vala:100 +#: src/Console/AppConsole.vala:311 src/Gtk/MainWindow.vala:100 msgid "Could not find requested version" msgstr "Impossible de trouver la version demandée" -#: Common/LinuxKernel.vala:715 +#: src/Common/LinuxKernel.vala:715 #, fuzzy msgid "Could not find running kernel in list!" msgstr "Impossible de trouver la version demandée" -#: Utility/TeeJee.FileSystem.vala:349 Utility/TeeJee.FileSystem.vala:352 -#: Utility/TeeJee.FileSystem.vala:378 +#: src/Utility/TeeJee.FileSystem.vala:349 +#: src/Utility/TeeJee.FileSystem.vala:352 +#: src/Utility/TeeJee.FileSystem.vala:378 msgid "Created directory" msgstr "Dossier créé" -#: Utility/Gtk/AboutWindow.vala:272 Utility/Gtk/AboutWindow.vala:289 +#: src/Utility/Gtk/AboutWindow.vala:272 src/Utility/Gtk/AboutWindow.vala:289 msgid "Credits" msgstr "Crédits" -#: Gtk/SettingsDialog.vala:154 +#: src/Gtk/SettingsDialog.vala:154 msgid "Day(s)" msgstr "Jour(s)" -#: Utility/TeeJee.FileSystem.vala:375 +#: src/Utility/TeeJee.FileSystem.vala:375 msgid "Deleted directory" msgstr "Dossier éffacé" -#: Utility/TeeJee.FileSystem.vala:509 +#: src/Utility/TeeJee.FileSystem.vala:509 msgid "Dir not found" msgstr "Dossier non trouvé" -#: Gtk/SettingsDialog.vala:161 +#: src/Gtk/SettingsDialog.vala:161 msgid "Display" msgstr "Afficher" -#: Common/LinuxKernel.vala:91 +#: src/Common/LinuxKernel.vala:91 msgid "Distribution" msgstr "Distribution" -#: Utility/Gtk/AboutWindow.vala:354 +#: src/Utility/Gtk/AboutWindow.vala:354 #, c-format msgid "Documenters" msgstr "Documentalistes" -#: Console/AppConsole.vala:96 +#: src/Console/AppConsole.vala:96 msgid "Download packages for specified kernel" msgstr "Télécharger les paquets pour des noyaux spécifiques" -#: Common/LinuxKernel.vala:1227 +#: src/Common/LinuxKernel.vala:1227 #, c-format msgid "Downloading" msgstr "Téléchargement" -#: Utility/TeeJee.Logging.vala:89 +#: src/Utility/TeeJee.Logging.vala:89 msgid "E" msgstr "E" -#: Common/LinuxKernel.vala:1255 +#: src/Common/LinuxKernel.vala:1255 #, c-format msgid "ERROR" msgstr "ERREUR" -#: Utility/Gtk/GtkHelper.vala:18 +#: src/Utility/Gtk/GtkHelper.vala:18 msgid "Error" msgstr "Erreur" -#: Utility/TeeJee.FileSystem.vala:221 +#: src/Utility/TeeJee.FileSystem.vala:221 msgid "Failed to copy file" msgstr "Impossible de copier le fichier" -#: Utility/TeeJee.FileSystem.vala:359 +#: src/Utility/TeeJee.FileSystem.vala:359 msgid "Failed to create dir" msgstr "Impossible de créer le nouveau dossier" -#: Utility/TeeJee.FileSystem.vala:106 +#: src/Utility/TeeJee.FileSystem.vala:106 msgid "Failed to delete file" msgstr "Impossible d'effacer le fichier" -#: Utility/TeeJee.FileSystem.vala:253 +#: src/Utility/TeeJee.FileSystem.vala:253 msgid "Failed to move file" msgstr "Impossible de déplacer le fichier" -#: Utility/TeeJee.FileSystem.vala:162 +#: src/Utility/TeeJee.FileSystem.vala:162 msgid "Failed to read file" msgstr "Impossible de lire le fichier" -#: Utility/TeeJee.FileSystem.vala:197 +#: src/Utility/TeeJee.FileSystem.vala:197 msgid "Failed to write file" msgstr "Impossible d'écrire le fichier" -#: Common/LinuxKernel.vala:396 +#: src/Common/LinuxKernel.vala:396 msgid "Fetching index from kernel.ubuntu.com..." msgstr "Récupération de l'index depuis kernel.ubuntu.com..." -#: Common/LinuxKernel.vala:353 +#: src/Common/LinuxKernel.vala:353 msgid "Fetching index..." msgstr "" -#: Utility/TeeJee.FileSystem.vala:210 Utility/TeeJee.FileSystem.vala:213 +#: src/Utility/TeeJee.FileSystem.vala:210 +#: src/Utility/TeeJee.FileSystem.vala:213 msgid "File copied" msgstr "Fichier copié" -#: Utility/TeeJee.FileSystem.vala:97 Utility/TeeJee.FileSystem.vala:100 +#: src/Utility/TeeJee.FileSystem.vala:97 src/Utility/TeeJee.FileSystem.vala:100 msgid "File deleted" msgstr "Fichier effacé" -#: Utility/TeeJee.FileSystem.vala:662 Utility/TeeJee.FileSystem.vala:711 +#: src/Utility/TeeJee.FileSystem.vala:662 +#: src/Utility/TeeJee.FileSystem.vala:711 msgid "File is missing" msgstr "Fichier disparu" -#: Utility/TeeJee.FileSystem.vala:245 Utility/TeeJee.FileSystem.vala:248 +#: src/Utility/TeeJee.FileSystem.vala:245 +#: src/Utility/TeeJee.FileSystem.vala:248 msgid "File moved" msgstr "Fichier déplacé" -#: Utility/TeeJee.FileSystem.vala:231 Utility/TeeJee.FileSystem.vala:538 +#: src/Utility/TeeJee.FileSystem.vala:231 +#: src/Utility/TeeJee.FileSystem.vala:538 msgid "File not found" msgstr "Fichier non trouvé" -#: Common/Package.vala:133 Common/Package.vala:195 +#: src/Common/Package.vala:133 src/Common/Package.vala:195 #, c-format msgid "File not found: %s" msgstr "Fichier non trouvé: %s" -#: Utility/TeeJee.FileSystem.vala:187 Utility/TeeJee.FileSystem.vala:190 +#: src/Utility/TeeJee.FileSystem.vala:187 +#: src/Utility/TeeJee.FileSystem.vala:190 msgid "File saved" msgstr "Fichier sauvegardé" -#: Gtk/SettingsDialog.vala:180 +#: src/Gtk/SettingsDialog.vala:180 msgid "Hide kernels older than 4.0" msgstr "Masquer les noyaux antérieurs à la version 4.0" -#: Gtk/SettingsDialog.vala:169 +#: src/Gtk/SettingsDialog.vala:169 msgid "Hide unstable and RC releases" msgstr "Cacher les versions instables et RC" -#: Gtk/SettingsDialog.vala:152 +#: src/Gtk/SettingsDialog.vala:152 msgid "Hour(s)" msgstr "Heure(s)" -#: Gtk/UpdateNotificationWindow.vala:168 +#: src/Gtk/UpdateNotificationWindow.vala:168 msgid "Ignore this update" msgstr "Ignorer cette mise à jour" -#: Common/LinuxKernel.vala:259 +#: src/Common/LinuxKernel.vala:259 msgid "Index is fresh" msgstr "L'index est à jour" -#: Common/LinuxKernel.vala:256 +#: src/Common/LinuxKernel.vala:256 msgid "Index is stale" msgstr "L'index est obsolète" -#: Gtk/MainWindow.vala:359 Gtk/UpdateNotificationWindow.vala:147 +#: src/Gtk/MainWindow.vala:359 src/Gtk/UpdateNotificationWindow.vala:147 msgid "Install" msgstr "Installer" -#: Common/LinuxKernel.vala:794 +#: src/Common/LinuxKernel.vala:794 #, c-format msgid "Install Linux v%s ? (y/n): " msgstr "" -#: Console/AppConsole.vala:91 +#: src/Console/AppConsole.vala:91 #, fuzzy msgid "Install latest mainline kernel" msgstr "Installer le noyau principal spécifié" -#: Console/AppConsole.vala:92 +#: src/Console/AppConsole.vala:92 msgid "Install latest point update for current series" msgstr "" -#: Console/AppConsole.vala:93 +#: src/Console/AppConsole.vala:93 msgid "Install specified mainline kernel" msgstr "Installer le noyau principal spécifié" -#: Gtk/UpdateNotificationWindow.vala:148 +#: src/Gtk/UpdateNotificationWindow.vala:148 msgid "Install this kernel" msgstr "Installer ce noyau" -#: Common/LinuxKernel.vala:1301 +#: src/Common/LinuxKernel.vala:1301 msgid "Installation completed with errors" msgstr "Installation terminée avec des erreurs" -#: Common/LinuxKernel.vala:1298 +#: src/Common/LinuxKernel.vala:1298 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "Installation complétée. Un redémarrage est nécessaire pour utiliser le " "nouveau noyau." -#: Common/LinuxKernel.vala:1198 Gtk/MainWindow.vala:208 +#: src/Common/LinuxKernel.vala:1198 src/Gtk/MainWindow.vala:208 msgid "Installed" msgstr "Installé" -#: Gtk/MainWindow.vala:350 Gtk/MainWindow.vala:547 Gtk/MainWindow.vala:683 -#: Utility/TeeJee.System.vala:281 +#: src/Gtk/MainWindow.vala:350 src/Gtk/MainWindow.vala:547 +#: src/Gtk/MainWindow.vala:683 src/Utility/TeeJee.System.vala:281 msgid "Internet connection is not active" msgstr "Connexion internet inexistante" -#: Gtk/SettingsDialog.vala:212 +#: src/Gtk/SettingsDialog.vala:212 #, fuzzy msgid "Internet connection timeout in " msgstr "Connexion internet inexistante" -#: Gtk/MainWindow.vala:150 +#: src/Gtk/MainWindow.vala:150 msgid "Kernel" msgstr "Noyau" -#: Gtk/MainWindow.vala:531 +#: src/Gtk/MainWindow.vala:531 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "" "Utilitaire de mise à niveau des noyaux pour les distributions basées pour " "Ubuntu" -#: Common/LinuxKernel.vala:776 Console/AppConsole.vala:369 +#: src/Common/LinuxKernel.vala:776 src/Console/AppConsole.vala:369 #, c-format msgid "Latest point update" msgstr "" -#: Common/LinuxKernel.vala:765 Console/AppConsole.vala:362 +#: src/Common/LinuxKernel.vala:765 src/Console/AppConsole.vala:362 #, c-format msgid "Latest update" msgstr "" -#: Console/AppConsole.vala:89 +#: src/Console/AppConsole.vala:89 msgid "List all available mainline kernels" msgstr "Lister tous les noyaux mainline disponibles" -#: Gtk/UpdateNotificationWindow.vala:158 +#: src/Gtk/UpdateNotificationWindow.vala:158 msgid "List available kernels" msgstr "Lister les noyaux disponibles" -#: Console/AppConsole.vala:90 +#: src/Console/AppConsole.vala:90 #, fuzzy msgid "List installed kernels" msgstr "Lister les noyaux disponibles" -#: Utility/Gtk/GtkHelper.vala:272 +#: src/Utility/Gtk/GtkHelper.vala:272 msgid "Missing Icon" msgstr "Icône introuvable" -#: Gtk/MainWindow.vala:368 +#: src/Gtk/MainWindow.vala:368 msgid "Multiple Kernels Selected" msgstr "Plusieurs noyaux sélectionnés" -#: Console/AppConsole.vala:293 +#: src/Console/AppConsole.vala:293 msgid "Multiple kernels selected for installation. Select only one." msgstr "" "Plusieurs noyaux sélectionnés pour être installés. Sélectionnez en seulement " "un." -#: Utility/Gtk/CustomMessageDialog.vala:177 +#: src/Utility/Gtk/CustomMessageDialog.vala:177 msgid "No" msgstr "Non" -#: Gtk/MainWindow.vala:350 Gtk/MainWindow.vala:547 Gtk/MainWindow.vala:683 +#: src/Gtk/MainWindow.vala:350 src/Gtk/MainWindow.vala:547 +#: src/Gtk/MainWindow.vala:683 msgid "No Internet" msgstr "Pas d'Internet" -#: Console/AppConsole.vala:287 Console/AppConsole.vala:324 +#: src/Console/AppConsole.vala:287 src/Console/AppConsole.vala:324 msgid "No kernels specified" msgstr "" -#: Common/LinuxKernel.vala:784 Console/AppConsole.vala:374 -#: Console/AppConsole.vala:432 Gtk/MainWindow.vala:793 +#: src/Common/LinuxKernel.vala:784 src/Console/AppConsole.vala:374 +#: src/Console/AppConsole.vala:432 src/Gtk/MainWindow.vala:793 msgid "No updates found" msgstr "Aucune mise à jour disponible" -#: Gtk/MainWindow.vala:371 Gtk/MainWindow.vala:382 +#: src/Gtk/MainWindow.vala:371 src/Gtk/MainWindow.vala:382 msgid "Not Selected" msgstr "Non selectionné" -#: Gtk/SettingsDialog.vala:66 +#: src/Gtk/SettingsDialog.vala:66 msgid "Notification" msgstr "Notification" -#: Gtk/SettingsDialog.vala:73 +#: src/Gtk/SettingsDialog.vala:73 msgid "Notify if a major release is available" msgstr "Notifier si une version stable majeure est disponible" -#: Gtk/SettingsDialog.vala:84 +#: src/Gtk/SettingsDialog.vala:84 msgid "Notify if a point release is available" msgstr "Notifier si une version stable mineure est disponible" -#: Common/LinuxKernel.vala:1246 Utility/Gtk/CustomMessageDialog.vala:167 -#: Utility/Gtk/CustomMessageDialog.vala:171 Utility/Gtk/GtkHelper.vala:121 +#: src/Common/LinuxKernel.vala:1246 +#: src/Utility/Gtk/CustomMessageDialog.vala:167 +#: src/Utility/Gtk/CustomMessageDialog.vala:171 +#: src/Utility/Gtk/GtkHelper.vala:121 #, c-format msgid "OK" msgstr "OK" -#: Console/AppConsole.vala:100 Gtk/AppGtk.vala:181 +#: src/Console/AppConsole.vala:100 src/Gtk/AppGtk.vala:181 msgid "Options" msgstr "Options" -#: Gtk/SettingsDialog.vala:191 +#: src/Gtk/SettingsDialog.vala:191 msgid "Other" msgstr "" -#: Common/LinuxKernel.vala:1060 +#: src/Common/LinuxKernel.vala:1060 #, c-format msgid "Packages Available" msgstr "Paquets disponibles" -#: Common/LinuxKernel.vala:1068 +#: src/Common/LinuxKernel.vala:1068 #, c-format msgid "Packages Installed" msgstr "Paquets installés" -#: Common/Main.vala:106 +#: src/Common/Main.vala:106 msgid "Please install required packages and try again" msgstr "Veuillez installer les paquets requis et réessayer" -#: Common/LinuxKernel.vala:1322 +#: src/Common/LinuxKernel.vala:1322 msgid "Preparing to remove selected kernels" msgstr "Préparation à la suppression des noyaux sélectionnés" -#: Gtk/AppGtk.vala:183 +#: src/Gtk/AppGtk.vala:183 msgid "Print debug information" msgstr "Afficher les informations de débogage" -#: Gtk/MainWindow.vala:425 +#: src/Gtk/MainWindow.vala:425 msgid "Purge" msgstr "" -#: Gtk/MainWindow.vala:343 +#: src/Gtk/MainWindow.vala:343 msgid "Refresh" msgstr "Actualiser" -#: Gtk/MainWindow.vala:566 +#: src/Gtk/MainWindow.vala:566 msgid "Refreshing..." msgstr "Actualisation..." -#: Gtk/MainWindow.vala:376 +#: src/Gtk/MainWindow.vala:376 msgid "Remove" msgstr "Supprimer" -#: Console/AppConsole.vala:97 Console/AppConsole.vala:102 +#: src/Console/AppConsole.vala:97 src/Console/AppConsole.vala:102 msgid "Remove files from application cache" msgstr "Supprimer les fichiers du cache de l'application" -#: Console/AppConsole.vala:95 Gtk/MainWindow.vala:426 +#: src/Console/AppConsole.vala:95 src/Gtk/MainWindow.vala:426 msgid "Remove installed kernels older than running kernel" msgstr "" -#: Console/AppConsole.vala:94 +#: src/Console/AppConsole.vala:94 #, fuzzy msgid "Remove specified kernel" msgstr "Supprimer le noyau mainline sélectionné" -#: Console/AppConsole.vala:201 Console/AppConsole.vala:315 -#: Console/AppConsole.vala:344 +#: src/Console/AppConsole.vala:201 src/Console/AppConsole.vala:315 +#: src/Console/AppConsole.vala:344 msgid "Run '" msgstr "" -#: Console/AppConsole.vala:119 +#: src/Console/AppConsole.vala:119 msgid "Run the application as admin with pkexec or sudo." msgstr "Exécutez l'application en tant qu'admin avec pkexec or sudo." -#: Common/LinuxKernel.vala:1198 Gtk/MainWindow.vala:208 +#: src/Common/LinuxKernel.vala:1198 src/Gtk/MainWindow.vala:208 msgid "Running" msgstr "En cours" -#: Gtk/MainWindow.vala:368 +#: src/Gtk/MainWindow.vala:368 msgid "Select a single kernel to install" msgstr "Sélectionnez un seul noyau à installer" -#: Gtk/MainWindow.vala:371 +#: src/Gtk/MainWindow.vala:371 msgid "Select the kernel to install" msgstr "Sélectionnez le noyau à installer" -#: Gtk/MainWindow.vala:382 +#: src/Gtk/MainWindow.vala:382 msgid "Select the kernels to remove" msgstr "Sélectionnez les noyaux à supprimer" -#: Common/LinuxKernel.vala:1317 +#: src/Common/LinuxKernel.vala:1317 msgid "" "Selected kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -493,67 +503,67 @@ msgstr "" "Ce noyau est en cours d'exécution et ne peut pas être supprimé.\n" " Installez un autre noyau avant de retirer celui-ci." -#: Gtk/MainWindow.vala:475 Gtk/SettingsDialog.vala:56 +#: src/Gtk/MainWindow.vala:475 src/Gtk/SettingsDialog.vala:56 msgid "Settings" msgstr "Paramètres" -#: Gtk/UpdateNotificationWindow.vala:157 +#: src/Gtk/UpdateNotificationWindow.vala:157 msgid "Show" msgstr "Afficher" -#: Gtk/AppGtk.vala:184 +#: src/Gtk/AppGtk.vala:184 msgid "Show all options" msgstr "Afficher toutes les options" -#: Gtk/SettingsDialog.vala:95 +#: src/Gtk/SettingsDialog.vala:95 msgid "Show notification bubble on desktop" msgstr "Afficher la bulle de notification sur le bureau" -#: Gtk/SettingsDialog.vala:106 +#: src/Gtk/SettingsDialog.vala:106 msgid "Show notification dialog" msgstr "Afficher les notifications" -#: Console/AppConsole.vala:98 +#: src/Console/AppConsole.vala:98 #, fuzzy msgid "Show unstable and RC releases" msgstr "Cacher les versions instables et RC" -#: Gtk/SettingsDialog.vala:199 +#: src/Gtk/SettingsDialog.vala:199 #, fuzzy msgid "Skip internet connection check" msgstr "Connexion internet inexistante" -#: Gtk/MainWindow.vala:196 +#: src/Gtk/MainWindow.vala:196 msgid "Status" msgstr "Statut" -#: Utility/TeeJee.Process.vala:512 +#: src/Utility/TeeJee.Process.vala:512 msgid "Stopped" msgstr "Arrêté" -#: Console/AppConsole.vala:83 Gtk/AppGtk.vala:179 +#: src/Console/AppConsole.vala:83 src/Gtk/AppGtk.vala:179 msgid "Syntax" msgstr "Syntaxe" -#: Console/AppConsole.vala:207 Gtk/AppGtk.vala:111 +#: src/Console/AppConsole.vala:207 src/Gtk/AppGtk.vala:111 msgid "Temp" msgstr "" -#: Common/LinuxKernel.vala:730 +#: src/Common/LinuxKernel.vala:730 #, c-format msgid "The following kernels will be removed:" msgstr "" -#: Utility/Gtk/AboutWindow.vala:330 +#: src/Utility/Gtk/AboutWindow.vala:330 #, c-format msgid "Third Party Tools" msgstr "Outils tiers" -#: Common/LinuxKernel.vala:1269 Gtk/MainWindow.vala:678 +#: src/Common/LinuxKernel.vala:1269 src/Gtk/MainWindow.vala:678 msgid "This kernel is already installed." msgstr "Ce noyau est déjà installé." -#: Common/LinuxKernel.vala:1373 +#: src/Common/LinuxKernel.vala:1373 msgid "" "This kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -561,44 +571,44 @@ msgstr "" "Ce noyau est en cours d'exécution et ne peut pas être supprimé.\n" " Installez un autre noyau avant de retirer celui-ci." -#: Utility/Gtk/AboutWindow.vala:346 +#: src/Utility/Gtk/AboutWindow.vala:346 #, c-format msgid "Translators" msgstr "Traducteurs" -#: Common/LinuxKernel.vala:1357 Common/LinuxKernel.vala:1413 +#: src/Common/LinuxKernel.vala:1357 src/Common/LinuxKernel.vala:1413 msgid "Un-install completed" msgstr "Désinstallation complète" -#: Common/LinuxKernel.vala:1360 Common/LinuxKernel.vala:1416 +#: src/Common/LinuxKernel.vala:1360 src/Common/LinuxKernel.vala:1416 msgid "Un-install completed with errors" msgstr "Désinstallation terminée avec des erreurs" -#: Console/AppConsole.vala:199 Gtk/AppGtk.vala:166 +#: src/Console/AppConsole.vala:199 src/Gtk/AppGtk.vala:166 msgid "Unknown option" msgstr "Option inconnue" -#: Gtk/MainWindow.vala:179 +#: src/Gtk/MainWindow.vala:179 msgid "Version" msgstr "Version" -#: Utility/TeeJee.Logging.vala:89 +#: src/Utility/TeeJee.Logging.vala:89 msgid "W" msgstr "W" -#: Gtk/SettingsDialog.vala:156 +#: src/Gtk/SettingsDialog.vala:156 msgid "Week(s)" msgstr "Semaine(s)" -#: Utility/Gtk/CustomMessageDialog.vala:176 +#: src/Utility/Gtk/CustomMessageDialog.vala:176 msgid "Yes" msgstr "Oui" -#: Utility/AppLock.vala:56 +#: src/Utility/AppLock.vala:56 msgid "[Warning] Deleted invalid lock" msgstr "[Attention] Verrou invalide supprimé" -#: Gtk/SettingsDialog.vala:226 +#: src/Gtk/SettingsDialog.vala:226 msgid "seconds" msgstr "" diff --git a/po/ukuu-hr.po b/po/hr.po similarity index 71% rename from po/ukuu-hr.po rename to po/hr.po index 85cbbaaf..11acb28a 100644 --- a/po/ukuu-hr.po +++ b/po/hr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu\n" "Report-Msgid-Bugs-To: bw.aljex@gmail.com\n" -"POT-Creation-Date: 2019-03-13 17:28-0400\n" +"POT-Creation-Date: 2019-03-16 04:27-0400\n" "PO-Revision-Date: 2017-12-24 00:52+0100\n" "Last-Translator: gogo \n" "Language-Team: Croatian \n" @@ -18,470 +18,480 @@ msgstr "" "X-Launchpad-Export-Date: 2017-12-23 23:36+0000\n" "X-Generator: Poedit 1.8.7.1\n" -#: Gtk/MainWindow.vala:496 +#: src/Gtk/MainWindow.vala:496 msgid "About" msgstr "O programu" -#: Console/AppConsole.vala:116 +#: src/Console/AppConsole.vala:116 msgid "Admin access is required for running this application." msgstr "Administratorske ovlasti su potrebne za pokretanje ove aplikacije." -#: Utility/AppLock.vala:51 +#: src/Utility/AppLock.vala:51 msgid "Another instance of this application is running" msgstr "Drugi primjerak ove aplikacije je pokrenut" -#: Common/LinuxKernel.vala:105 +#: src/Common/LinuxKernel.vala:105 #, fuzzy msgid "Architecture" msgstr "Arhitektura sustava" -#: Utility/Gtk/AboutWindow.vala:338 +#: src/Utility/Gtk/AboutWindow.vala:338 #, c-format msgid "Artists" msgstr "Dizajneri" -#: Console/AppConsole.vala:103 +#: src/Console/AppConsole.vala:103 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "" -#: Utility/Gtk/AboutWindow.vala:314 +#: src/Utility/Gtk/AboutWindow.vala:314 #, c-format msgid "Authors" msgstr "Autori" -#: Common/LinuxKernel.vala:1181 +#: src/Common/LinuxKernel.vala:1181 msgid "Available Kernels" msgstr "Dostupni kerneli" -#: Utility/Gtk/AboutWindow.vala:285 +#: src/Utility/Gtk/AboutWindow.vala:285 msgid "Back" msgstr "Natrag" -#: Console/AppConsole.vala:206 Gtk/AppGtk.vala:110 +#: src/Console/AppConsole.vala:206 src/Gtk/AppGtk.vala:110 msgid "Cache" msgstr "" -#: Gtk/ProgressWindow.vala:143 Gtk/TerminalWindow.vala:151 -#: Gtk/UpdateNotificationWindow.vala:167 -#: Utility/Gtk/CustomMessageDialog.vala:172 Utility/Gtk/GtkHelper.vala:122 +#: src/Gtk/ProgressWindow.vala:143 src/Gtk/TerminalWindow.vala:151 +#: src/Gtk/UpdateNotificationWindow.vala:167 +#: src/Utility/Gtk/CustomMessageDialog.vala:172 +#: src/Utility/Gtk/GtkHelper.vala:122 msgid "Cancel" msgstr "Odustani" -#: Gtk/MainWindow.vala:464 +#: src/Gtk/MainWindow.vala:464 msgid "Changes" msgstr "Promjene" -#: Gtk/SettingsDialog.vala:121 +#: src/Gtk/SettingsDialog.vala:121 msgid "Check every" msgstr "Provjeri svaka" -#: Console/AppConsole.vala:87 +#: src/Console/AppConsole.vala:87 msgid "Check for kernel updates" msgstr "Provjeri nadopune kernela" -#: Console/AppConsole.vala:88 +#: src/Console/AppConsole.vala:88 #, fuzzy msgid "Check for kernel updates and notify current user" msgstr "Provjeri nadopune kernela" -#: Gtk/TerminalWindow.vala:161 Utility/Gtk/AboutWindow.vala:295 +#: src/Gtk/TerminalWindow.vala:161 src/Utility/Gtk/AboutWindow.vala:295 msgid "Close" msgstr "Zatvori" -#: Console/AppConsole.vala:343 +#: src/Console/AppConsole.vala:343 msgid "Command not specified" msgstr "" -#: Console/AppConsole.vala:85 +#: src/Console/AppConsole.vala:85 msgid "Commands" msgstr "" -#: Common/Main.vala:105 +#: src/Common/Main.vala:105 msgid "Commands listed below are not available on this system" msgstr "Naredbe navedene ispod nisu dostupne na ovom sustavu" -#: Common/LinuxKernel.vala:737 +#: src/Common/LinuxKernel.vala:737 #, c-format msgid "Continue ?" msgstr "" -#: Utility/Gtk/AboutWindow.vala:322 +#: src/Utility/Gtk/AboutWindow.vala:322 #, c-format msgid "Contributions" msgstr "Prilozi" -#: Common/LinuxKernel.vala:721 +#: src/Common/LinuxKernel.vala:721 #, fuzzy msgid "Could not find any kernels to remove" msgstr "Odaberi kernele za uklanjanje" -#: Console/AppConsole.vala:311 Gtk/MainWindow.vala:100 +#: src/Console/AppConsole.vala:311 src/Gtk/MainWindow.vala:100 msgid "Could not find requested version" msgstr "Nemoguće je pronaći zatraženu inačicu" -#: Common/LinuxKernel.vala:715 +#: src/Common/LinuxKernel.vala:715 #, fuzzy msgid "Could not find running kernel in list!" msgstr "Nemoguće je pronaći zatraženu inačicu" -#: Utility/TeeJee.FileSystem.vala:349 Utility/TeeJee.FileSystem.vala:352 -#: Utility/TeeJee.FileSystem.vala:378 +#: src/Utility/TeeJee.FileSystem.vala:349 +#: src/Utility/TeeJee.FileSystem.vala:352 +#: src/Utility/TeeJee.FileSystem.vala:378 msgid "Created directory" msgstr "Stvoren direktorij" -#: Utility/Gtk/AboutWindow.vala:272 Utility/Gtk/AboutWindow.vala:289 +#: src/Utility/Gtk/AboutWindow.vala:272 src/Utility/Gtk/AboutWindow.vala:289 msgid "Credits" msgstr "Zasluge" -#: Gtk/SettingsDialog.vala:154 +#: src/Gtk/SettingsDialog.vala:154 msgid "Day(s)" msgstr "Dan(a)" -#: Utility/TeeJee.FileSystem.vala:375 +#: src/Utility/TeeJee.FileSystem.vala:375 msgid "Deleted directory" msgstr "Obrisan direktorij" -#: Utility/TeeJee.FileSystem.vala:509 +#: src/Utility/TeeJee.FileSystem.vala:509 msgid "Dir not found" msgstr "Direktorij nije pronađen" -#: Gtk/SettingsDialog.vala:161 +#: src/Gtk/SettingsDialog.vala:161 msgid "Display" msgstr "Prikaz" -#: Common/LinuxKernel.vala:91 +#: src/Common/LinuxKernel.vala:91 msgid "Distribution" msgstr "Distribucija" -#: Utility/Gtk/AboutWindow.vala:354 +#: src/Utility/Gtk/AboutWindow.vala:354 #, c-format msgid "Documenters" msgstr "Autori dokumentacije" -#: Console/AppConsole.vala:96 +#: src/Console/AppConsole.vala:96 msgid "Download packages for specified kernel" msgstr "Preuzmi pakete za određeni kernel" -#: Common/LinuxKernel.vala:1227 +#: src/Common/LinuxKernel.vala:1227 #, c-format msgid "Downloading" msgstr "Preuzimanje" -#: Utility/TeeJee.Logging.vala:89 +#: src/Utility/TeeJee.Logging.vala:89 msgid "E" msgstr "G" -#: Common/LinuxKernel.vala:1255 +#: src/Common/LinuxKernel.vala:1255 #, c-format msgid "ERROR" msgstr "GREŠKA" -#: Utility/Gtk/GtkHelper.vala:18 +#: src/Utility/Gtk/GtkHelper.vala:18 msgid "Error" msgstr "Greška" -#: Utility/TeeJee.FileSystem.vala:221 +#: src/Utility/TeeJee.FileSystem.vala:221 msgid "Failed to copy file" msgstr "Neuspjelo kopiranje datoteke" -#: Utility/TeeJee.FileSystem.vala:359 +#: src/Utility/TeeJee.FileSystem.vala:359 msgid "Failed to create dir" msgstr "Neuspjelo stvarnje direktorija" -#: Utility/TeeJee.FileSystem.vala:106 +#: src/Utility/TeeJee.FileSystem.vala:106 msgid "Failed to delete file" msgstr "Neuspjelo brisanje datoteke" -#: Utility/TeeJee.FileSystem.vala:253 +#: src/Utility/TeeJee.FileSystem.vala:253 msgid "Failed to move file" msgstr "Neuspjelo premještanje datoteke" -#: Utility/TeeJee.FileSystem.vala:162 +#: src/Utility/TeeJee.FileSystem.vala:162 msgid "Failed to read file" msgstr "Neuspjelo čitanje datoteke" -#: Utility/TeeJee.FileSystem.vala:197 +#: src/Utility/TeeJee.FileSystem.vala:197 msgid "Failed to write file" msgstr "Neuspjelo zapisivanje datoteke" -#: Common/LinuxKernel.vala:396 +#: src/Common/LinuxKernel.vala:396 msgid "Fetching index from kernel.ubuntu.com..." msgstr "Preuzimanje sadržaja sa kernel.ubuntu.com..." -#: Common/LinuxKernel.vala:353 +#: src/Common/LinuxKernel.vala:353 msgid "Fetching index..." msgstr "" -#: Utility/TeeJee.FileSystem.vala:210 Utility/TeeJee.FileSystem.vala:213 +#: src/Utility/TeeJee.FileSystem.vala:210 +#: src/Utility/TeeJee.FileSystem.vala:213 msgid "File copied" msgstr "Datoteka kopirana" -#: Utility/TeeJee.FileSystem.vala:97 Utility/TeeJee.FileSystem.vala:100 +#: src/Utility/TeeJee.FileSystem.vala:97 src/Utility/TeeJee.FileSystem.vala:100 msgid "File deleted" msgstr "Datoteka obrisana" -#: Utility/TeeJee.FileSystem.vala:662 Utility/TeeJee.FileSystem.vala:711 +#: src/Utility/TeeJee.FileSystem.vala:662 +#: src/Utility/TeeJee.FileSystem.vala:711 msgid "File is missing" msgstr "Datoteka nedostaje" -#: Utility/TeeJee.FileSystem.vala:245 Utility/TeeJee.FileSystem.vala:248 +#: src/Utility/TeeJee.FileSystem.vala:245 +#: src/Utility/TeeJee.FileSystem.vala:248 msgid "File moved" msgstr "Datoteka je premještena" -#: Utility/TeeJee.FileSystem.vala:231 Utility/TeeJee.FileSystem.vala:538 +#: src/Utility/TeeJee.FileSystem.vala:231 +#: src/Utility/TeeJee.FileSystem.vala:538 msgid "File not found" msgstr "Datoteka nije pronađena" -#: Common/Package.vala:133 Common/Package.vala:195 +#: src/Common/Package.vala:133 src/Common/Package.vala:195 #, c-format msgid "File not found: %s" msgstr "Datoteka nije pronađena: %s" -#: Utility/TeeJee.FileSystem.vala:187 Utility/TeeJee.FileSystem.vala:190 +#: src/Utility/TeeJee.FileSystem.vala:187 +#: src/Utility/TeeJee.FileSystem.vala:190 msgid "File saved" msgstr "Datoteka je spremljenja" -#: Gtk/SettingsDialog.vala:180 +#: src/Gtk/SettingsDialog.vala:180 msgid "Hide kernels older than 4.0" msgstr "Sakrij kernele starije od inačice 4.0" -#: Gtk/SettingsDialog.vala:169 +#: src/Gtk/SettingsDialog.vala:169 msgid "Hide unstable and RC releases" msgstr "Sakrij nestabilne kernele i predizdanja" -#: Gtk/SettingsDialog.vala:152 +#: src/Gtk/SettingsDialog.vala:152 msgid "Hour(s)" msgstr "Sat(a)" -#: Gtk/UpdateNotificationWindow.vala:168 +#: src/Gtk/UpdateNotificationWindow.vala:168 msgid "Ignore this update" msgstr "Zanemari ovu nadopunu" -#: Common/LinuxKernel.vala:259 +#: src/Common/LinuxKernel.vala:259 msgid "Index is fresh" msgstr "Sadržaj je osvježen" -#: Common/LinuxKernel.vala:256 +#: src/Common/LinuxKernel.vala:256 msgid "Index is stale" msgstr "Sadržaj je zastario" -#: Gtk/MainWindow.vala:359 Gtk/UpdateNotificationWindow.vala:147 +#: src/Gtk/MainWindow.vala:359 src/Gtk/UpdateNotificationWindow.vala:147 msgid "Install" msgstr "Instaliraj" -#: Common/LinuxKernel.vala:794 +#: src/Common/LinuxKernel.vala:794 #, c-format msgid "Install Linux v%s ? (y/n): " msgstr "" -#: Console/AppConsole.vala:91 +#: src/Console/AppConsole.vala:91 #, fuzzy msgid "Install latest mainline kernel" msgstr "Instaliraj određeni mainline kernel" -#: Console/AppConsole.vala:92 +#: src/Console/AppConsole.vala:92 msgid "Install latest point update for current series" msgstr "" -#: Console/AppConsole.vala:93 +#: src/Console/AppConsole.vala:93 msgid "Install specified mainline kernel" msgstr "Instaliraj određeni mainline kernel" -#: Gtk/UpdateNotificationWindow.vala:148 +#: src/Gtk/UpdateNotificationWindow.vala:148 msgid "Install this kernel" msgstr "Instaliraj ovaj kernel" -#: Common/LinuxKernel.vala:1301 +#: src/Common/LinuxKernel.vala:1301 msgid "Installation completed with errors" msgstr "Instalacija je završena s greškama" -#: Common/LinuxKernel.vala:1298 +#: src/Common/LinuxKernel.vala:1298 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "Instalacija je završena. Potrebno je ponovno pokretanje računala kako bi se " "koristio novi kernel." -#: Common/LinuxKernel.vala:1198 Gtk/MainWindow.vala:208 +#: src/Common/LinuxKernel.vala:1198 src/Gtk/MainWindow.vala:208 msgid "Installed" msgstr "Instalirano" -#: Gtk/MainWindow.vala:350 Gtk/MainWindow.vala:547 Gtk/MainWindow.vala:683 -#: Utility/TeeJee.System.vala:281 +#: src/Gtk/MainWindow.vala:350 src/Gtk/MainWindow.vala:547 +#: src/Gtk/MainWindow.vala:683 src/Utility/TeeJee.System.vala:281 msgid "Internet connection is not active" msgstr "Internet povezivanje nije aktivno" -#: Gtk/SettingsDialog.vala:212 +#: src/Gtk/SettingsDialog.vala:212 #, fuzzy msgid "Internet connection timeout in " msgstr "Internet povezivanje nije aktivno" -#: Gtk/MainWindow.vala:150 +#: src/Gtk/MainWindow.vala:150 msgid "Kernel" msgstr "Kernel" -#: Gtk/MainWindow.vala:531 +#: src/Gtk/MainWindow.vala:531 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Alat za nadogradnju kernela Ubuntu temeljenih distribucija" -#: Common/LinuxKernel.vala:776 Console/AppConsole.vala:369 +#: src/Common/LinuxKernel.vala:776 src/Console/AppConsole.vala:369 #, c-format msgid "Latest point update" msgstr "" -#: Common/LinuxKernel.vala:765 Console/AppConsole.vala:362 +#: src/Common/LinuxKernel.vala:765 src/Console/AppConsole.vala:362 #, c-format msgid "Latest update" msgstr "" -#: Console/AppConsole.vala:89 +#: src/Console/AppConsole.vala:89 msgid "List all available mainline kernels" msgstr "Prikaži sve mainline kernele" -#: Gtk/UpdateNotificationWindow.vala:158 +#: src/Gtk/UpdateNotificationWindow.vala:158 msgid "List available kernels" msgstr "Prikaži sve kernele" -#: Console/AppConsole.vala:90 +#: src/Console/AppConsole.vala:90 #, fuzzy msgid "List installed kernels" msgstr "Prikaži sve kernele" -#: Utility/Gtk/GtkHelper.vala:272 +#: src/Utility/Gtk/GtkHelper.vala:272 msgid "Missing Icon" msgstr "Ikone koje nedostaju" -#: Gtk/MainWindow.vala:368 +#: src/Gtk/MainWindow.vala:368 msgid "Multiple Kernels Selected" msgstr "Više kernela je odabrano" -#: Console/AppConsole.vala:293 +#: src/Console/AppConsole.vala:293 msgid "Multiple kernels selected for installation. Select only one." msgstr "Više kernela je odabrano za instalaciju. odaberite samo jedan." -#: Utility/Gtk/CustomMessageDialog.vala:177 +#: src/Utility/Gtk/CustomMessageDialog.vala:177 msgid "No" msgstr "Ne" -#: Gtk/MainWindow.vala:350 Gtk/MainWindow.vala:547 Gtk/MainWindow.vala:683 +#: src/Gtk/MainWindow.vala:350 src/Gtk/MainWindow.vala:547 +#: src/Gtk/MainWindow.vala:683 msgid "No Internet" msgstr "Nema pristupa internetu" -#: Console/AppConsole.vala:287 Console/AppConsole.vala:324 +#: src/Console/AppConsole.vala:287 src/Console/AppConsole.vala:324 msgid "No kernels specified" msgstr "" -#: Common/LinuxKernel.vala:784 Console/AppConsole.vala:374 -#: Console/AppConsole.vala:432 Gtk/MainWindow.vala:793 +#: src/Common/LinuxKernel.vala:784 src/Console/AppConsole.vala:374 +#: src/Console/AppConsole.vala:432 src/Gtk/MainWindow.vala:793 msgid "No updates found" msgstr "Nema pronađenih nadopuna" -#: Gtk/MainWindow.vala:371 Gtk/MainWindow.vala:382 +#: src/Gtk/MainWindow.vala:371 src/Gtk/MainWindow.vala:382 msgid "Not Selected" msgstr "Nije odabrano" -#: Gtk/SettingsDialog.vala:66 +#: src/Gtk/SettingsDialog.vala:66 msgid "Notification" msgstr "Obavijesti" -#: Gtk/SettingsDialog.vala:73 +#: src/Gtk/SettingsDialog.vala:73 msgid "Notify if a major release is available" msgstr "Obavijesti kada je glavno izdanje dostupno" -#: Gtk/SettingsDialog.vala:84 +#: src/Gtk/SettingsDialog.vala:84 msgid "Notify if a point release is available" msgstr "Obavijesti kada je pojedino izdanje dostupno" -#: Common/LinuxKernel.vala:1246 Utility/Gtk/CustomMessageDialog.vala:167 -#: Utility/Gtk/CustomMessageDialog.vala:171 Utility/Gtk/GtkHelper.vala:121 +#: src/Common/LinuxKernel.vala:1246 +#: src/Utility/Gtk/CustomMessageDialog.vala:167 +#: src/Utility/Gtk/CustomMessageDialog.vala:171 +#: src/Utility/Gtk/GtkHelper.vala:121 #, c-format msgid "OK" msgstr "U redu" -#: Console/AppConsole.vala:100 Gtk/AppGtk.vala:181 +#: src/Console/AppConsole.vala:100 src/Gtk/AppGtk.vala:181 msgid "Options" msgstr "Mogućnosti" -#: Gtk/SettingsDialog.vala:191 +#: src/Gtk/SettingsDialog.vala:191 msgid "Other" msgstr "" -#: Common/LinuxKernel.vala:1060 +#: src/Common/LinuxKernel.vala:1060 #, c-format msgid "Packages Available" msgstr "Dostupni paketi" -#: Common/LinuxKernel.vala:1068 +#: src/Common/LinuxKernel.vala:1068 #, c-format msgid "Packages Installed" msgstr "Instalirani paketi" -#: Common/Main.vala:106 +#: src/Common/Main.vala:106 msgid "Please install required packages and try again" msgstr "Instalirajte potrebni paket i pokušajte ponovno" -#: Common/LinuxKernel.vala:1322 +#: src/Common/LinuxKernel.vala:1322 msgid "Preparing to remove selected kernels" msgstr "Pripremanje uklanjanja odabranih kernela" -#: Gtk/AppGtk.vala:183 +#: src/Gtk/AppGtk.vala:183 msgid "Print debug information" msgstr "Ispiši informacije otklanjanja grešaka" -#: Gtk/MainWindow.vala:425 +#: src/Gtk/MainWindow.vala:425 msgid "Purge" msgstr "" -#: Gtk/MainWindow.vala:343 +#: src/Gtk/MainWindow.vala:343 msgid "Refresh" msgstr "Osvježi" -#: Gtk/MainWindow.vala:566 +#: src/Gtk/MainWindow.vala:566 msgid "Refreshing..." msgstr "Osvježavanje..." -#: Gtk/MainWindow.vala:376 +#: src/Gtk/MainWindow.vala:376 msgid "Remove" msgstr "Ukloni" -#: Console/AppConsole.vala:97 Console/AppConsole.vala:102 +#: src/Console/AppConsole.vala:97 src/Console/AppConsole.vala:102 msgid "Remove files from application cache" msgstr "Ukloni datoteke iz predmemorije aplikacije" -#: Console/AppConsole.vala:95 Gtk/MainWindow.vala:426 +#: src/Console/AppConsole.vala:95 src/Gtk/MainWindow.vala:426 msgid "Remove installed kernels older than running kernel" msgstr "" -#: Console/AppConsole.vala:94 +#: src/Console/AppConsole.vala:94 #, fuzzy msgid "Remove specified kernel" msgstr "Ukloni određeni mainline kernel" -#: Console/AppConsole.vala:201 Console/AppConsole.vala:315 -#: Console/AppConsole.vala:344 +#: src/Console/AppConsole.vala:201 src/Console/AppConsole.vala:315 +#: src/Console/AppConsole.vala:344 msgid "Run '" msgstr "" -#: Console/AppConsole.vala:119 +#: src/Console/AppConsole.vala:119 msgid "Run the application as admin with pkexec or sudo." msgstr "Pokreni aplikaciju kao administrator sa pkexec ili sudo." -#: Common/LinuxKernel.vala:1198 Gtk/MainWindow.vala:208 +#: src/Common/LinuxKernel.vala:1198 src/Gtk/MainWindow.vala:208 msgid "Running" msgstr "Pokrenuto" -#: Gtk/MainWindow.vala:368 +#: src/Gtk/MainWindow.vala:368 msgid "Select a single kernel to install" msgstr "Odaberi pojedni kernel za instalaciju" -#: Gtk/MainWindow.vala:371 +#: src/Gtk/MainWindow.vala:371 msgid "Select the kernel to install" msgstr "Odaberi kernel za instalaciju" -#: Gtk/MainWindow.vala:382 +#: src/Gtk/MainWindow.vala:382 msgid "Select the kernels to remove" msgstr "Odaberi kernele za uklanjanje" -#: Common/LinuxKernel.vala:1317 +#: src/Common/LinuxKernel.vala:1317 msgid "" "Selected kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -489,67 +499,67 @@ msgstr "" "Odabrani kernel je trenutno pokernut i ne može se ukloniti.\n" " Instalirajte drugi kernel prije uklanjanja trenutnog kernela." -#: Gtk/MainWindow.vala:475 Gtk/SettingsDialog.vala:56 +#: src/Gtk/MainWindow.vala:475 src/Gtk/SettingsDialog.vala:56 msgid "Settings" msgstr "Postavke" -#: Gtk/UpdateNotificationWindow.vala:157 +#: src/Gtk/UpdateNotificationWindow.vala:157 msgid "Show" msgstr "Prikaži" -#: Gtk/AppGtk.vala:184 +#: src/Gtk/AppGtk.vala:184 msgid "Show all options" msgstr "Prikaži sve mogućnosti" -#: Gtk/SettingsDialog.vala:95 +#: src/Gtk/SettingsDialog.vala:95 msgid "Show notification bubble on desktop" msgstr "Prikaži mjehurić obavijesti radne površine" -#: Gtk/SettingsDialog.vala:106 +#: src/Gtk/SettingsDialog.vala:106 msgid "Show notification dialog" msgstr "Prikaži dijalog obavijesti" -#: Console/AppConsole.vala:98 +#: src/Console/AppConsole.vala:98 #, fuzzy msgid "Show unstable and RC releases" msgstr "Sakrij nestabilne kernele i predizdanja" -#: Gtk/SettingsDialog.vala:199 +#: src/Gtk/SettingsDialog.vala:199 #, fuzzy msgid "Skip internet connection check" msgstr "Internet povezivanje nije aktivno" -#: Gtk/MainWindow.vala:196 +#: src/Gtk/MainWindow.vala:196 msgid "Status" msgstr "Stanje" -#: Utility/TeeJee.Process.vala:512 +#: src/Utility/TeeJee.Process.vala:512 msgid "Stopped" msgstr "Zaustavljeno" -#: Console/AppConsole.vala:83 Gtk/AppGtk.vala:179 +#: src/Console/AppConsole.vala:83 src/Gtk/AppGtk.vala:179 msgid "Syntax" msgstr "Sintaksa" -#: Console/AppConsole.vala:207 Gtk/AppGtk.vala:111 +#: src/Console/AppConsole.vala:207 src/Gtk/AppGtk.vala:111 msgid "Temp" msgstr "" -#: Common/LinuxKernel.vala:730 +#: src/Common/LinuxKernel.vala:730 #, c-format msgid "The following kernels will be removed:" msgstr "" -#: Utility/Gtk/AboutWindow.vala:330 +#: src/Utility/Gtk/AboutWindow.vala:330 #, c-format msgid "Third Party Tools" msgstr "Alati treće strane" -#: Common/LinuxKernel.vala:1269 Gtk/MainWindow.vala:678 +#: src/Common/LinuxKernel.vala:1269 src/Gtk/MainWindow.vala:678 msgid "This kernel is already installed." msgstr "Ovaj kernel je već instaliran." -#: Common/LinuxKernel.vala:1373 +#: src/Common/LinuxKernel.vala:1373 msgid "" "This kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -557,44 +567,44 @@ msgstr "" "Ovaj kernel je trenutno pokrenut i ne može se ukloniti.\n" " Instalirajte drugi kernel prije uklanjanja trenutnog kernela." -#: Utility/Gtk/AboutWindow.vala:346 +#: src/Utility/Gtk/AboutWindow.vala:346 #, c-format msgid "Translators" msgstr "Prevoditelji" -#: Common/LinuxKernel.vala:1357 Common/LinuxKernel.vala:1413 +#: src/Common/LinuxKernel.vala:1357 src/Common/LinuxKernel.vala:1413 msgid "Un-install completed" msgstr "Deinstalacija završena" -#: Common/LinuxKernel.vala:1360 Common/LinuxKernel.vala:1416 +#: src/Common/LinuxKernel.vala:1360 src/Common/LinuxKernel.vala:1416 msgid "Un-install completed with errors" msgstr "Deinstalacija završena s greškama" -#: Console/AppConsole.vala:199 Gtk/AppGtk.vala:166 +#: src/Console/AppConsole.vala:199 src/Gtk/AppGtk.vala:166 msgid "Unknown option" msgstr "Nepoznata mogućnost" -#: Gtk/MainWindow.vala:179 +#: src/Gtk/MainWindow.vala:179 msgid "Version" msgstr "Inačica" -#: Utility/TeeJee.Logging.vala:89 +#: src/Utility/TeeJee.Logging.vala:89 msgid "W" msgstr "Z" -#: Gtk/SettingsDialog.vala:156 +#: src/Gtk/SettingsDialog.vala:156 msgid "Week(s)" msgstr "Tjedan(a)" -#: Utility/Gtk/CustomMessageDialog.vala:176 +#: src/Utility/Gtk/CustomMessageDialog.vala:176 msgid "Yes" msgstr "Da" -#: Utility/AppLock.vala:56 +#: src/Utility/AppLock.vala:56 msgid "[Warning] Deleted invalid lock" msgstr "[Upozorenje] Obrisano je neispravno zaključavanje" -#: Gtk/SettingsDialog.vala:226 +#: src/Gtk/SettingsDialog.vala:226 msgid "seconds" msgstr "" diff --git a/po/ukuu-nl.po b/po/nl.po similarity index 70% rename from po/ukuu-nl.po rename to po/nl.po index 4d34b718..013d1dbd 100644 --- a/po/ukuu-nl.po +++ b/po/nl.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu 2.2\n" "Report-Msgid-Bugs-To: bw.aljex@gmail.com\n" -"POT-Creation-Date: 2019-03-13 17:28-0400\n" +"POT-Creation-Date: 2019-03-16 04:27-0400\n" "PO-Revision-Date: 2017-04-30 11:50+0200\n" "Last-Translator: Heimen Stoffels \n" "Language-Team: \n" @@ -18,475 +18,485 @@ msgstr "" "X-Generator: Poedit 2.0.1\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: Gtk/MainWindow.vala:496 +#: src/Gtk/MainWindow.vala:496 msgid "About" msgstr "Over" -#: Console/AppConsole.vala:116 +#: src/Console/AppConsole.vala:116 msgid "Admin access is required for running this application." msgstr "" "U heeft administrator-rechten nodig om deze applicatie te kunnen draaien." -#: Utility/AppLock.vala:51 +#: src/Utility/AppLock.vala:51 msgid "Another instance of this application is running" msgstr "Er is al een venster geopend van deze applicatie" -#: Common/LinuxKernel.vala:105 +#: src/Common/LinuxKernel.vala:105 #, fuzzy msgid "Architecture" msgstr "Systeemarchitectuur" -#: Utility/Gtk/AboutWindow.vala:338 +#: src/Utility/Gtk/AboutWindow.vala:338 #, c-format msgid "Artists" msgstr "Artiesten" -#: Console/AppConsole.vala:103 +#: src/Console/AppConsole.vala:103 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "" -#: Utility/Gtk/AboutWindow.vala:314 +#: src/Utility/Gtk/AboutWindow.vala:314 #, c-format msgid "Authors" msgstr "Auteurs" -#: Common/LinuxKernel.vala:1181 +#: src/Common/LinuxKernel.vala:1181 msgid "Available Kernels" msgstr "Beschikbare kernels" -#: Utility/Gtk/AboutWindow.vala:285 +#: src/Utility/Gtk/AboutWindow.vala:285 msgid "Back" msgstr "Terug" -#: Console/AppConsole.vala:206 Gtk/AppGtk.vala:110 +#: src/Console/AppConsole.vala:206 src/Gtk/AppGtk.vala:110 msgid "Cache" msgstr "" -#: Gtk/ProgressWindow.vala:143 Gtk/TerminalWindow.vala:151 -#: Gtk/UpdateNotificationWindow.vala:167 -#: Utility/Gtk/CustomMessageDialog.vala:172 Utility/Gtk/GtkHelper.vala:122 +#: src/Gtk/ProgressWindow.vala:143 src/Gtk/TerminalWindow.vala:151 +#: src/Gtk/UpdateNotificationWindow.vala:167 +#: src/Utility/Gtk/CustomMessageDialog.vala:172 +#: src/Utility/Gtk/GtkHelper.vala:122 msgid "Cancel" msgstr "Annuleren" -#: Gtk/MainWindow.vala:464 +#: src/Gtk/MainWindow.vala:464 msgid "Changes" msgstr "Wijzigingen" -#: Gtk/SettingsDialog.vala:121 +#: src/Gtk/SettingsDialog.vala:121 msgid "Check every" msgstr "Controleer elke" -#: Console/AppConsole.vala:87 +#: src/Console/AppConsole.vala:87 msgid "Check for kernel updates" msgstr "Controleren op kernel-updates" -#: Console/AppConsole.vala:88 +#: src/Console/AppConsole.vala:88 #, fuzzy msgid "Check for kernel updates and notify current user" msgstr "Controleren op kernel-updates" -#: Gtk/TerminalWindow.vala:161 Utility/Gtk/AboutWindow.vala:295 +#: src/Gtk/TerminalWindow.vala:161 src/Utility/Gtk/AboutWindow.vala:295 msgid "Close" msgstr "Sluiten" -#: Console/AppConsole.vala:343 +#: src/Console/AppConsole.vala:343 msgid "Command not specified" msgstr "" -#: Console/AppConsole.vala:85 +#: src/Console/AppConsole.vala:85 msgid "Commands" msgstr "" -#: Common/Main.vala:105 +#: src/Common/Main.vala:105 msgid "Commands listed below are not available on this system" msgstr "De onderstaande opdrachten zijn niet beschikbaar op dit systeem" -#: Common/LinuxKernel.vala:737 +#: src/Common/LinuxKernel.vala:737 #, c-format msgid "Continue ?" msgstr "" -#: Utility/Gtk/AboutWindow.vala:322 +#: src/Utility/Gtk/AboutWindow.vala:322 #, c-format msgid "Contributions" msgstr "Bijdragen" -#: Common/LinuxKernel.vala:721 +#: src/Common/LinuxKernel.vala:721 #, fuzzy msgid "Could not find any kernels to remove" msgstr "Selecteer de te verwijderen kernels" -#: Console/AppConsole.vala:311 Gtk/MainWindow.vala:100 +#: src/Console/AppConsole.vala:311 src/Gtk/MainWindow.vala:100 msgid "Could not find requested version" msgstr "De vereiste versie kan niet worden gevonden" -#: Common/LinuxKernel.vala:715 +#: src/Common/LinuxKernel.vala:715 #, fuzzy msgid "Could not find running kernel in list!" msgstr "De vereiste versie kan niet worden gevonden" -#: Utility/TeeJee.FileSystem.vala:349 Utility/TeeJee.FileSystem.vala:352 -#: Utility/TeeJee.FileSystem.vala:378 +#: src/Utility/TeeJee.FileSystem.vala:349 +#: src/Utility/TeeJee.FileSystem.vala:352 +#: src/Utility/TeeJee.FileSystem.vala:378 msgid "Created directory" msgstr "Map gecreëerd" -#: Utility/Gtk/AboutWindow.vala:272 Utility/Gtk/AboutWindow.vala:289 +#: src/Utility/Gtk/AboutWindow.vala:272 src/Utility/Gtk/AboutWindow.vala:289 msgid "Credits" msgstr "Met dank aan" -#: Gtk/SettingsDialog.vala:154 +#: src/Gtk/SettingsDialog.vala:154 msgid "Day(s)" msgstr "dag(en)" -#: Utility/TeeJee.FileSystem.vala:375 +#: src/Utility/TeeJee.FileSystem.vala:375 msgid "Deleted directory" msgstr "Map verwijderd" -#: Utility/TeeJee.FileSystem.vala:509 +#: src/Utility/TeeJee.FileSystem.vala:509 msgid "Dir not found" msgstr "Map niet gevonden" -#: Gtk/SettingsDialog.vala:161 +#: src/Gtk/SettingsDialog.vala:161 msgid "Display" msgstr "Weergave" -#: Common/LinuxKernel.vala:91 +#: src/Common/LinuxKernel.vala:91 msgid "Distribution" msgstr "Distributie" -#: Utility/Gtk/AboutWindow.vala:354 +#: src/Utility/Gtk/AboutWindow.vala:354 #, c-format msgid "Documenters" msgstr "Documenteerders" -#: Console/AppConsole.vala:96 +#: src/Console/AppConsole.vala:96 msgid "Download packages for specified kernel" msgstr "Pakketten downloaden voor opgegeven kernel" -#: Common/LinuxKernel.vala:1227 +#: src/Common/LinuxKernel.vala:1227 #, c-format msgid "Downloading" msgstr "Bezig met downloaden" -#: Utility/TeeJee.Logging.vala:89 +#: src/Utility/TeeJee.Logging.vala:89 msgid "E" msgstr "E" -#: Common/LinuxKernel.vala:1255 +#: src/Common/LinuxKernel.vala:1255 #, c-format msgid "ERROR" msgstr "FOUT" -#: Utility/Gtk/GtkHelper.vala:18 +#: src/Utility/Gtk/GtkHelper.vala:18 msgid "Error" msgstr "Fout" -#: Utility/TeeJee.FileSystem.vala:221 +#: src/Utility/TeeJee.FileSystem.vala:221 msgid "Failed to copy file" msgstr "Kopiëren van bestand is mislukt" -#: Utility/TeeJee.FileSystem.vala:359 +#: src/Utility/TeeJee.FileSystem.vala:359 msgid "Failed to create dir" msgstr "Creëren van map is mislukt" -#: Utility/TeeJee.FileSystem.vala:106 +#: src/Utility/TeeJee.FileSystem.vala:106 msgid "Failed to delete file" msgstr "Verwijderen van map is mislukt" -#: Utility/TeeJee.FileSystem.vala:253 +#: src/Utility/TeeJee.FileSystem.vala:253 msgid "Failed to move file" msgstr "Verplaatsen van bestand is mislukt" -#: Utility/TeeJee.FileSystem.vala:162 +#: src/Utility/TeeJee.FileSystem.vala:162 msgid "Failed to read file" msgstr "Lezen van bestand is mislukt" -#: Utility/TeeJee.FileSystem.vala:197 +#: src/Utility/TeeJee.FileSystem.vala:197 msgid "Failed to write file" msgstr "Schrijven naar bestand is mislukt" -#: Common/LinuxKernel.vala:396 +#: src/Common/LinuxKernel.vala:396 msgid "Fetching index from kernel.ubuntu.com..." msgstr "Bezig met ophalen van index van kernel.ubuntu.com..." -#: Common/LinuxKernel.vala:353 +#: src/Common/LinuxKernel.vala:353 msgid "Fetching index..." msgstr "" -#: Utility/TeeJee.FileSystem.vala:210 Utility/TeeJee.FileSystem.vala:213 +#: src/Utility/TeeJee.FileSystem.vala:210 +#: src/Utility/TeeJee.FileSystem.vala:213 msgid "File copied" msgstr "Bestand gekopieerd" -#: Utility/TeeJee.FileSystem.vala:97 Utility/TeeJee.FileSystem.vala:100 +#: src/Utility/TeeJee.FileSystem.vala:97 src/Utility/TeeJee.FileSystem.vala:100 msgid "File deleted" msgstr "Bestand verwijderd" -#: Utility/TeeJee.FileSystem.vala:662 Utility/TeeJee.FileSystem.vala:711 +#: src/Utility/TeeJee.FileSystem.vala:662 +#: src/Utility/TeeJee.FileSystem.vala:711 msgid "File is missing" msgstr "Bestand ontbreekt" -#: Utility/TeeJee.FileSystem.vala:245 Utility/TeeJee.FileSystem.vala:248 +#: src/Utility/TeeJee.FileSystem.vala:245 +#: src/Utility/TeeJee.FileSystem.vala:248 msgid "File moved" msgstr "Bestand verplaatst" -#: Utility/TeeJee.FileSystem.vala:231 Utility/TeeJee.FileSystem.vala:538 +#: src/Utility/TeeJee.FileSystem.vala:231 +#: src/Utility/TeeJee.FileSystem.vala:538 msgid "File not found" msgstr "Bestand niet gevonden" -#: Common/Package.vala:133 Common/Package.vala:195 +#: src/Common/Package.vala:133 src/Common/Package.vala:195 #, c-format msgid "File not found: %s" msgstr "Bestand niet gevonden: %s" -#: Utility/TeeJee.FileSystem.vala:187 Utility/TeeJee.FileSystem.vala:190 +#: src/Utility/TeeJee.FileSystem.vala:187 +#: src/Utility/TeeJee.FileSystem.vala:190 msgid "File saved" msgstr "Bestand opgeslagen" -#: Gtk/SettingsDialog.vala:180 +#: src/Gtk/SettingsDialog.vala:180 msgid "Hide kernels older than 4.0" msgstr "Kernels ouder dan 4.0 verbergen" -#: Gtk/SettingsDialog.vala:169 +#: src/Gtk/SettingsDialog.vala:169 msgid "Hide unstable and RC releases" msgstr "Instabiele en RC-uitgaven verbergen" -#: Gtk/SettingsDialog.vala:152 +#: src/Gtk/SettingsDialog.vala:152 msgid "Hour(s)" msgstr "uur" -#: Gtk/UpdateNotificationWindow.vala:168 +#: src/Gtk/UpdateNotificationWindow.vala:168 msgid "Ignore this update" msgstr "Deze update negeren" -#: Common/LinuxKernel.vala:259 +#: src/Common/LinuxKernel.vala:259 msgid "Index is fresh" msgstr "De index is up-to-date" -#: Common/LinuxKernel.vala:256 +#: src/Common/LinuxKernel.vala:256 msgid "Index is stale" msgstr "De index is verouderd" -#: Gtk/MainWindow.vala:359 Gtk/UpdateNotificationWindow.vala:147 +#: src/Gtk/MainWindow.vala:359 src/Gtk/UpdateNotificationWindow.vala:147 msgid "Install" msgstr "Installeren" -#: Common/LinuxKernel.vala:794 +#: src/Common/LinuxKernel.vala:794 #, c-format msgid "Install Linux v%s ? (y/n): " msgstr "" -#: Console/AppConsole.vala:91 +#: src/Console/AppConsole.vala:91 #, fuzzy msgid "Install latest mainline kernel" msgstr "Opgegeven mainline-kernel installeren" -#: Console/AppConsole.vala:92 +#: src/Console/AppConsole.vala:92 msgid "Install latest point update for current series" msgstr "" -#: Console/AppConsole.vala:93 +#: src/Console/AppConsole.vala:93 msgid "Install specified mainline kernel" msgstr "Opgegeven mainline-kernel installeren" -#: Gtk/UpdateNotificationWindow.vala:148 +#: src/Gtk/UpdateNotificationWindow.vala:148 msgid "Install this kernel" msgstr "Deze kernel installeren" -#: Common/LinuxKernel.vala:1301 +#: src/Common/LinuxKernel.vala:1301 msgid "Installation completed with errors" msgstr "De installatie is foutloos voltooid" -#: Common/LinuxKernel.vala:1298 +#: src/Common/LinuxKernel.vala:1298 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "De installatie is voltooid. Herstart de computer om de nieuwe kernel te " "gebruiken." -#: Common/LinuxKernel.vala:1198 Gtk/MainWindow.vala:208 +#: src/Common/LinuxKernel.vala:1198 src/Gtk/MainWindow.vala:208 msgid "Installed" msgstr "Geïnstalleerd" -#: Gtk/MainWindow.vala:350 Gtk/MainWindow.vala:547 Gtk/MainWindow.vala:683 -#: Utility/TeeJee.System.vala:281 +#: src/Gtk/MainWindow.vala:350 src/Gtk/MainWindow.vala:547 +#: src/Gtk/MainWindow.vala:683 src/Utility/TeeJee.System.vala:281 msgid "Internet connection is not active" msgstr "U bent niet verbonden met het internet" -#: Gtk/SettingsDialog.vala:212 +#: src/Gtk/SettingsDialog.vala:212 #, fuzzy msgid "Internet connection timeout in " msgstr "U bent niet verbonden met het internet" -#: Gtk/MainWindow.vala:150 +#: src/Gtk/MainWindow.vala:150 msgid "Kernel" msgstr "Kernel" -#: Gtk/MainWindow.vala:531 +#: src/Gtk/MainWindow.vala:531 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Kernel-upgradehulpmiddel voor op Ubuntu-gebaseerde distributies" -#: Common/LinuxKernel.vala:776 Console/AppConsole.vala:369 +#: src/Common/LinuxKernel.vala:776 src/Console/AppConsole.vala:369 #, c-format msgid "Latest point update" msgstr "" -#: Common/LinuxKernel.vala:765 Console/AppConsole.vala:362 +#: src/Common/LinuxKernel.vala:765 src/Console/AppConsole.vala:362 #, c-format msgid "Latest update" msgstr "" -#: Console/AppConsole.vala:89 +#: src/Console/AppConsole.vala:89 msgid "List all available mainline kernels" msgstr "Alle beschikbare mainline-kernels weergeven" -#: Gtk/UpdateNotificationWindow.vala:158 +#: src/Gtk/UpdateNotificationWindow.vala:158 #, fuzzy msgid "List available kernels" msgstr "Alle beschikbare mainline-kernels weergeven" -#: Console/AppConsole.vala:90 +#: src/Console/AppConsole.vala:90 #, fuzzy msgid "List installed kernels" msgstr "Alle beschikbare mainline-kernels weergeven" -#: Utility/Gtk/GtkHelper.vala:272 +#: src/Utility/Gtk/GtkHelper.vala:272 msgid "Missing Icon" msgstr "Ontbrekend pictogram" -#: Gtk/MainWindow.vala:368 +#: src/Gtk/MainWindow.vala:368 msgid "Multiple Kernels Selected" msgstr "Meerdere kernels geselecteerd" -#: Console/AppConsole.vala:293 +#: src/Console/AppConsole.vala:293 msgid "Multiple kernels selected for installation. Select only one." msgstr "" "Er zijn meerdere te installeren kernels geselecteerd. Selecteer er slechts " "één." -#: Utility/Gtk/CustomMessageDialog.vala:177 +#: src/Utility/Gtk/CustomMessageDialog.vala:177 msgid "No" msgstr "" -#: Gtk/MainWindow.vala:350 Gtk/MainWindow.vala:547 Gtk/MainWindow.vala:683 +#: src/Gtk/MainWindow.vala:350 src/Gtk/MainWindow.vala:547 +#: src/Gtk/MainWindow.vala:683 msgid "No Internet" msgstr "Geen internetverbinding" -#: Console/AppConsole.vala:287 Console/AppConsole.vala:324 +#: src/Console/AppConsole.vala:287 src/Console/AppConsole.vala:324 msgid "No kernels specified" msgstr "" -#: Common/LinuxKernel.vala:784 Console/AppConsole.vala:374 -#: Console/AppConsole.vala:432 Gtk/MainWindow.vala:793 +#: src/Common/LinuxKernel.vala:784 src/Console/AppConsole.vala:374 +#: src/Console/AppConsole.vala:432 src/Gtk/MainWindow.vala:793 msgid "No updates found" msgstr "Geen updates gevonden" -#: Gtk/MainWindow.vala:371 Gtk/MainWindow.vala:382 +#: src/Gtk/MainWindow.vala:371 src/Gtk/MainWindow.vala:382 msgid "Not Selected" msgstr "Niet geselecteerd" -#: Gtk/SettingsDialog.vala:66 +#: src/Gtk/SettingsDialog.vala:66 msgid "Notification" msgstr "Melding" -#: Gtk/SettingsDialog.vala:73 +#: src/Gtk/SettingsDialog.vala:73 msgid "Notify if a major release is available" msgstr "Melding weergeven als er een grote update beschikbaar is" -#: Gtk/SettingsDialog.vala:84 +#: src/Gtk/SettingsDialog.vala:84 msgid "Notify if a point release is available" msgstr "Melding weergeven als er een puntupdate beschikbaar is" -#: Common/LinuxKernel.vala:1246 Utility/Gtk/CustomMessageDialog.vala:167 -#: Utility/Gtk/CustomMessageDialog.vala:171 Utility/Gtk/GtkHelper.vala:121 +#: src/Common/LinuxKernel.vala:1246 +#: src/Utility/Gtk/CustomMessageDialog.vala:167 +#: src/Utility/Gtk/CustomMessageDialog.vala:171 +#: src/Utility/Gtk/GtkHelper.vala:121 #, c-format msgid "OK" msgstr "Oké" -#: Console/AppConsole.vala:100 Gtk/AppGtk.vala:181 +#: src/Console/AppConsole.vala:100 src/Gtk/AppGtk.vala:181 msgid "Options" msgstr "Opties" -#: Gtk/SettingsDialog.vala:191 +#: src/Gtk/SettingsDialog.vala:191 msgid "Other" msgstr "" -#: Common/LinuxKernel.vala:1060 +#: src/Common/LinuxKernel.vala:1060 #, c-format msgid "Packages Available" msgstr "Beschikbare pakketten" -#: Common/LinuxKernel.vala:1068 +#: src/Common/LinuxKernel.vala:1068 #, c-format msgid "Packages Installed" msgstr "Geïnstalleerde pakketten" -#: Common/Main.vala:106 +#: src/Common/Main.vala:106 msgid "Please install required packages and try again" msgstr "Installeer de vereiste pakketten en probeer het opnieuw" -#: Common/LinuxKernel.vala:1322 +#: src/Common/LinuxKernel.vala:1322 msgid "Preparing to remove selected kernels" msgstr "Bezig met voorbereiden van verwijderen van geselecteerde kernels" -#: Gtk/AppGtk.vala:183 +#: src/Gtk/AppGtk.vala:183 msgid "Print debug information" msgstr "Foutopsporingsinformatie printen" -#: Gtk/MainWindow.vala:425 +#: src/Gtk/MainWindow.vala:425 msgid "Purge" msgstr "" -#: Gtk/MainWindow.vala:343 +#: src/Gtk/MainWindow.vala:343 msgid "Refresh" msgstr "Verversen" -#: Gtk/MainWindow.vala:566 +#: src/Gtk/MainWindow.vala:566 msgid "Refreshing..." msgstr "Bezig met verversen..." -#: Gtk/MainWindow.vala:376 +#: src/Gtk/MainWindow.vala:376 msgid "Remove" msgstr "Verwijderen" -#: Console/AppConsole.vala:97 Console/AppConsole.vala:102 +#: src/Console/AppConsole.vala:97 src/Console/AppConsole.vala:102 msgid "Remove files from application cache" msgstr "Bestanden verwijderen uit applicatie-cache" -#: Console/AppConsole.vala:95 Gtk/MainWindow.vala:426 +#: src/Console/AppConsole.vala:95 src/Gtk/MainWindow.vala:426 msgid "Remove installed kernels older than running kernel" msgstr "" -#: Console/AppConsole.vala:94 +#: src/Console/AppConsole.vala:94 #, fuzzy msgid "Remove specified kernel" msgstr "Opgegeven mainline-kernel verwijderen" -#: Console/AppConsole.vala:201 Console/AppConsole.vala:315 -#: Console/AppConsole.vala:344 +#: src/Console/AppConsole.vala:201 src/Console/AppConsole.vala:315 +#: src/Console/AppConsole.vala:344 msgid "Run '" msgstr "" -#: Console/AppConsole.vala:119 +#: src/Console/AppConsole.vala:119 #, fuzzy msgid "Run the application as admin with pkexec or sudo." msgstr "Draai de applicatie als root of m.b.v. gksu/sudo." -#: Common/LinuxKernel.vala:1198 Gtk/MainWindow.vala:208 +#: src/Common/LinuxKernel.vala:1198 src/Gtk/MainWindow.vala:208 msgid "Running" msgstr "Bezig met draaien" -#: Gtk/MainWindow.vala:368 +#: src/Gtk/MainWindow.vala:368 msgid "Select a single kernel to install" msgstr "Selecteer een enkele te installeren kernel" -#: Gtk/MainWindow.vala:371 +#: src/Gtk/MainWindow.vala:371 msgid "Select the kernel to install" msgstr "Selecteer de te installeren kernel" -#: Gtk/MainWindow.vala:382 +#: src/Gtk/MainWindow.vala:382 msgid "Select the kernels to remove" msgstr "Selecteer de te verwijderen kernels" -#: Common/LinuxKernel.vala:1317 +#: src/Common/LinuxKernel.vala:1317 msgid "" "Selected kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -495,67 +505,67 @@ msgstr "" "verwijderd.\n" " Installeer een andere kernel voordat u deze verwijdert." -#: Gtk/MainWindow.vala:475 Gtk/SettingsDialog.vala:56 +#: src/Gtk/MainWindow.vala:475 src/Gtk/SettingsDialog.vala:56 msgid "Settings" msgstr "Instellingen" -#: Gtk/UpdateNotificationWindow.vala:157 +#: src/Gtk/UpdateNotificationWindow.vala:157 msgid "Show" msgstr "" -#: Gtk/AppGtk.vala:184 +#: src/Gtk/AppGtk.vala:184 msgid "Show all options" msgstr "Alle opties weergeven" -#: Gtk/SettingsDialog.vala:95 +#: src/Gtk/SettingsDialog.vala:95 msgid "Show notification bubble on desktop" msgstr "Bureaubladmelding weergeven" -#: Gtk/SettingsDialog.vala:106 +#: src/Gtk/SettingsDialog.vala:106 msgid "Show notification dialog" msgstr "Meldingsvenster weergeven" -#: Console/AppConsole.vala:98 +#: src/Console/AppConsole.vala:98 #, fuzzy msgid "Show unstable and RC releases" msgstr "Instabiele en RC-uitgaven verbergen" -#: Gtk/SettingsDialog.vala:199 +#: src/Gtk/SettingsDialog.vala:199 #, fuzzy msgid "Skip internet connection check" msgstr "U bent niet verbonden met het internet" -#: Gtk/MainWindow.vala:196 +#: src/Gtk/MainWindow.vala:196 msgid "Status" msgstr "Status" -#: Utility/TeeJee.Process.vala:512 +#: src/Utility/TeeJee.Process.vala:512 msgid "Stopped" msgstr "Gestopt" -#: Console/AppConsole.vala:83 Gtk/AppGtk.vala:179 +#: src/Console/AppConsole.vala:83 src/Gtk/AppGtk.vala:179 msgid "Syntax" msgstr "Syntax" -#: Console/AppConsole.vala:207 Gtk/AppGtk.vala:111 +#: src/Console/AppConsole.vala:207 src/Gtk/AppGtk.vala:111 msgid "Temp" msgstr "" -#: Common/LinuxKernel.vala:730 +#: src/Common/LinuxKernel.vala:730 #, c-format msgid "The following kernels will be removed:" msgstr "" -#: Utility/Gtk/AboutWindow.vala:330 +#: src/Utility/Gtk/AboutWindow.vala:330 #, c-format msgid "Third Party Tools" msgstr "Externe hulpmiddelen" -#: Common/LinuxKernel.vala:1269 Gtk/MainWindow.vala:678 +#: src/Common/LinuxKernel.vala:1269 src/Gtk/MainWindow.vala:678 msgid "This kernel is already installed." msgstr "Deze kernel is al geïnstalleerd." -#: Common/LinuxKernel.vala:1373 +#: src/Common/LinuxKernel.vala:1373 msgid "" "This kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -563,44 +573,44 @@ msgstr "" "Deze kernel is momenteel in gebruik en kan daarom niet worden verwijderd.\n" " Installeer een andere kernel voordat u deze verwijdert." -#: Utility/Gtk/AboutWindow.vala:346 +#: src/Utility/Gtk/AboutWindow.vala:346 #, c-format msgid "Translators" msgstr "Vertalers" -#: Common/LinuxKernel.vala:1357 Common/LinuxKernel.vala:1413 +#: src/Common/LinuxKernel.vala:1357 src/Common/LinuxKernel.vala:1413 msgid "Un-install completed" msgstr "Deïnstalleren voltooid" -#: Common/LinuxKernel.vala:1360 Common/LinuxKernel.vala:1416 +#: src/Common/LinuxKernel.vala:1360 src/Common/LinuxKernel.vala:1416 msgid "Un-install completed with errors" msgstr "Deïnstalleren voltooid, maar met fouten" -#: Console/AppConsole.vala:199 Gtk/AppGtk.vala:166 +#: src/Console/AppConsole.vala:199 src/Gtk/AppGtk.vala:166 msgid "Unknown option" msgstr "Onbekende optie" -#: Gtk/MainWindow.vala:179 +#: src/Gtk/MainWindow.vala:179 msgid "Version" msgstr "Versie" -#: Utility/TeeJee.Logging.vala:89 +#: src/Utility/TeeJee.Logging.vala:89 msgid "W" msgstr "W" -#: Gtk/SettingsDialog.vala:156 +#: src/Gtk/SettingsDialog.vala:156 msgid "Week(s)" msgstr "we(e)k(en)" -#: Utility/Gtk/CustomMessageDialog.vala:176 +#: src/Utility/Gtk/CustomMessageDialog.vala:176 msgid "Yes" msgstr "" -#: Utility/AppLock.vala:56 +#: src/Utility/AppLock.vala:56 msgid "[Warning] Deleted invalid lock" msgstr "[Waarschuwing] Ongeldige lock verwijderd" -#: Gtk/SettingsDialog.vala:226 +#: src/Gtk/SettingsDialog.vala:226 msgid "seconds" msgstr "" diff --git a/po/ukuu-pl.po b/po/pl.po similarity index 69% rename from po/ukuu-pl.po rename to po/pl.po index eab65f4c..de562044 100644 --- a/po/ukuu-pl.po +++ b/po/pl.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu\n" "Report-Msgid-Bugs-To: bw.aljex@gmail.com\n" -"POT-Creation-Date: 2019-03-13 17:28-0400\n" +"POT-Creation-Date: 2019-03-16 04:27-0400\n" "PO-Revision-Date: 2017-08-12 15:26+0200\n" "Last-Translator: \n" "Language-Team: Polish\n" @@ -16,472 +16,482 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Poedit 1.8.7.1\n" -#: Gtk/MainWindow.vala:496 +#: src/Gtk/MainWindow.vala:496 msgid "About" msgstr "O programie" -#: Console/AppConsole.vala:116 +#: src/Console/AppConsole.vala:116 msgid "Admin access is required for running this application." msgstr "Aby uruchomić tę aplikację niezbędne są prawa administratora." -#: Utility/AppLock.vala:51 +#: src/Utility/AppLock.vala:51 msgid "Another instance of this application is running" msgstr "Inna instancja tej aplikacji jest uruchomiona" -#: Common/LinuxKernel.vala:105 +#: src/Common/LinuxKernel.vala:105 #, fuzzy msgid "Architecture" msgstr "Architektura systemu" -#: Utility/Gtk/AboutWindow.vala:338 +#: src/Utility/Gtk/AboutWindow.vala:338 #, c-format msgid "Artists" msgstr "Artyści" -#: Console/AppConsole.vala:103 +#: src/Console/AppConsole.vala:103 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "" -#: Utility/Gtk/AboutWindow.vala:314 +#: src/Utility/Gtk/AboutWindow.vala:314 #, c-format msgid "Authors" msgstr "Аutorzy" -#: Common/LinuxKernel.vala:1181 +#: src/Common/LinuxKernel.vala:1181 msgid "Available Kernels" msgstr "Dostępne jądra" -#: Utility/Gtk/AboutWindow.vala:285 +#: src/Utility/Gtk/AboutWindow.vala:285 msgid "Back" msgstr "Wstecz" -#: Console/AppConsole.vala:206 Gtk/AppGtk.vala:110 +#: src/Console/AppConsole.vala:206 src/Gtk/AppGtk.vala:110 msgid "Cache" msgstr "" -#: Gtk/ProgressWindow.vala:143 Gtk/TerminalWindow.vala:151 -#: Gtk/UpdateNotificationWindow.vala:167 -#: Utility/Gtk/CustomMessageDialog.vala:172 Utility/Gtk/GtkHelper.vala:122 +#: src/Gtk/ProgressWindow.vala:143 src/Gtk/TerminalWindow.vala:151 +#: src/Gtk/UpdateNotificationWindow.vala:167 +#: src/Utility/Gtk/CustomMessageDialog.vala:172 +#: src/Utility/Gtk/GtkHelper.vala:122 msgid "Cancel" msgstr "Anuluj" -#: Gtk/MainWindow.vala:464 +#: src/Gtk/MainWindow.vala:464 msgid "Changes" msgstr "Zmiany" -#: Gtk/SettingsDialog.vala:121 +#: src/Gtk/SettingsDialog.vala:121 msgid "Check every" msgstr "Sprawdzaj co" -#: Console/AppConsole.vala:87 +#: src/Console/AppConsole.vala:87 msgid "Check for kernel updates" msgstr "Sprawdź nowe wersje jądra" -#: Console/AppConsole.vala:88 +#: src/Console/AppConsole.vala:88 #, fuzzy msgid "Check for kernel updates and notify current user" msgstr "Sprawdź nowe wersje jądra" -#: Gtk/TerminalWindow.vala:161 Utility/Gtk/AboutWindow.vala:295 +#: src/Gtk/TerminalWindow.vala:161 src/Utility/Gtk/AboutWindow.vala:295 msgid "Close" msgstr "Zamknij" -#: Console/AppConsole.vala:343 +#: src/Console/AppConsole.vala:343 msgid "Command not specified" msgstr "" -#: Console/AppConsole.vala:85 +#: src/Console/AppConsole.vala:85 msgid "Commands" msgstr "" -#: Common/Main.vala:105 +#: src/Common/Main.vala:105 msgid "Commands listed below are not available on this system" msgstr "Poniższe polecenia nie są dostępne na tym systemie" -#: Common/LinuxKernel.vala:737 +#: src/Common/LinuxKernel.vala:737 #, c-format msgid "Continue ?" msgstr "" -#: Utility/Gtk/AboutWindow.vala:322 +#: src/Utility/Gtk/AboutWindow.vala:322 #, c-format msgid "Contributions" msgstr "Wkład" -#: Common/LinuxKernel.vala:721 +#: src/Common/LinuxKernel.vala:721 #, fuzzy msgid "Could not find any kernels to remove" msgstr "Wybierz jądro do usunięcia" -#: Console/AppConsole.vala:311 Gtk/MainWindow.vala:100 +#: src/Console/AppConsole.vala:311 src/Gtk/MainWindow.vala:100 msgid "Could not find requested version" msgstr "Nie można odnaleźć żądanej wersji" -#: Common/LinuxKernel.vala:715 +#: src/Common/LinuxKernel.vala:715 #, fuzzy msgid "Could not find running kernel in list!" msgstr "Nie można odnaleźć żądanej wersji" -#: Utility/TeeJee.FileSystem.vala:349 Utility/TeeJee.FileSystem.vala:352 -#: Utility/TeeJee.FileSystem.vala:378 +#: src/Utility/TeeJee.FileSystem.vala:349 +#: src/Utility/TeeJee.FileSystem.vala:352 +#: src/Utility/TeeJee.FileSystem.vala:378 msgid "Created directory" msgstr "Utworzono katalog" -#: Utility/Gtk/AboutWindow.vala:272 Utility/Gtk/AboutWindow.vala:289 +#: src/Utility/Gtk/AboutWindow.vala:272 src/Utility/Gtk/AboutWindow.vala:289 msgid "Credits" msgstr "Zasługi" -#: Gtk/SettingsDialog.vala:154 +#: src/Gtk/SettingsDialog.vala:154 msgid "Day(s)" msgstr "Dni" -#: Utility/TeeJee.FileSystem.vala:375 +#: src/Utility/TeeJee.FileSystem.vala:375 msgid "Deleted directory" msgstr "Usunięto katalog" -#: Utility/TeeJee.FileSystem.vala:509 +#: src/Utility/TeeJee.FileSystem.vala:509 msgid "Dir not found" msgstr "Katalog nie odnaleziony" -#: Gtk/SettingsDialog.vala:161 +#: src/Gtk/SettingsDialog.vala:161 msgid "Display" msgstr "Pokaż" -#: Common/LinuxKernel.vala:91 +#: src/Common/LinuxKernel.vala:91 msgid "Distribution" msgstr "Dystrybucja" -#: Utility/Gtk/AboutWindow.vala:354 +#: src/Utility/Gtk/AboutWindow.vala:354 #, c-format msgid "Documenters" msgstr "Dokumentujący" -#: Console/AppConsole.vala:96 +#: src/Console/AppConsole.vala:96 msgid "Download packages for specified kernel" msgstr "Pobierz pakiety dla wybranego jądra" -#: Common/LinuxKernel.vala:1227 +#: src/Common/LinuxKernel.vala:1227 #, c-format msgid "Downloading" msgstr "Pobieranie" -#: Utility/TeeJee.Logging.vala:89 +#: src/Utility/TeeJee.Logging.vala:89 msgid "E" msgstr "E" -#: Common/LinuxKernel.vala:1255 +#: src/Common/LinuxKernel.vala:1255 #, c-format msgid "ERROR" msgstr "BŁĄD" -#: Utility/Gtk/GtkHelper.vala:18 +#: src/Utility/Gtk/GtkHelper.vala:18 msgid "Error" msgstr "Błąd" -#: Utility/TeeJee.FileSystem.vala:221 +#: src/Utility/TeeJee.FileSystem.vala:221 msgid "Failed to copy file" msgstr "Nie udało się skopiować pliku" -#: Utility/TeeJee.FileSystem.vala:359 +#: src/Utility/TeeJee.FileSystem.vala:359 msgid "Failed to create dir" msgstr "Nie udało się utworzyć katalogu" -#: Utility/TeeJee.FileSystem.vala:106 +#: src/Utility/TeeJee.FileSystem.vala:106 msgid "Failed to delete file" msgstr "Nie udało się usunąć pliku" -#: Utility/TeeJee.FileSystem.vala:253 +#: src/Utility/TeeJee.FileSystem.vala:253 msgid "Failed to move file" msgstr "Nie udało się przenieść pliku" -#: Utility/TeeJee.FileSystem.vala:162 +#: src/Utility/TeeJee.FileSystem.vala:162 msgid "Failed to read file" msgstr "Nie udało się odczytać pliku" -#: Utility/TeeJee.FileSystem.vala:197 +#: src/Utility/TeeJee.FileSystem.vala:197 msgid "Failed to write file" msgstr "Nie udało się zapisać pliku" -#: Common/LinuxKernel.vala:396 +#: src/Common/LinuxKernel.vala:396 msgid "Fetching index from kernel.ubuntu.com..." msgstr "Pobieranie indeksu z kernel.ubuntu.com..." -#: Common/LinuxKernel.vala:353 +#: src/Common/LinuxKernel.vala:353 msgid "Fetching index..." msgstr "" -#: Utility/TeeJee.FileSystem.vala:210 Utility/TeeJee.FileSystem.vala:213 +#: src/Utility/TeeJee.FileSystem.vala:210 +#: src/Utility/TeeJee.FileSystem.vala:213 msgid "File copied" msgstr "Plik skopiowany" -#: Utility/TeeJee.FileSystem.vala:97 Utility/TeeJee.FileSystem.vala:100 +#: src/Utility/TeeJee.FileSystem.vala:97 src/Utility/TeeJee.FileSystem.vala:100 msgid "File deleted" msgstr "Plik usunięty" -#: Utility/TeeJee.FileSystem.vala:662 Utility/TeeJee.FileSystem.vala:711 +#: src/Utility/TeeJee.FileSystem.vala:662 +#: src/Utility/TeeJee.FileSystem.vala:711 msgid "File is missing" msgstr "Brak pliku" -#: Utility/TeeJee.FileSystem.vala:245 Utility/TeeJee.FileSystem.vala:248 +#: src/Utility/TeeJee.FileSystem.vala:245 +#: src/Utility/TeeJee.FileSystem.vala:248 msgid "File moved" msgstr "Plik przeniesiony" -#: Utility/TeeJee.FileSystem.vala:231 Utility/TeeJee.FileSystem.vala:538 +#: src/Utility/TeeJee.FileSystem.vala:231 +#: src/Utility/TeeJee.FileSystem.vala:538 msgid "File not found" msgstr "Nie odnaleziono pliku" -#: Common/Package.vala:133 Common/Package.vala:195 +#: src/Common/Package.vala:133 src/Common/Package.vala:195 #, c-format msgid "File not found: %s" msgstr "Nie odnaleziono pliku: %s" -#: Utility/TeeJee.FileSystem.vala:187 Utility/TeeJee.FileSystem.vala:190 +#: src/Utility/TeeJee.FileSystem.vala:187 +#: src/Utility/TeeJee.FileSystem.vala:190 msgid "File saved" msgstr "Plik zapisany" -#: Gtk/SettingsDialog.vala:180 +#: src/Gtk/SettingsDialog.vala:180 msgid "Hide kernels older than 4.0" msgstr "Ukryj jądra starsze niż 4.0" -#: Gtk/SettingsDialog.vala:169 +#: src/Gtk/SettingsDialog.vala:169 msgid "Hide unstable and RC releases" msgstr "Ukryj wydania niestabilne i RC" -#: Gtk/SettingsDialog.vala:152 +#: src/Gtk/SettingsDialog.vala:152 msgid "Hour(s)" msgstr "Godzin(y)" -#: Gtk/UpdateNotificationWindow.vala:168 +#: src/Gtk/UpdateNotificationWindow.vala:168 msgid "Ignore this update" msgstr "Zignoruj tę aktualizację" -#: Common/LinuxKernel.vala:259 +#: src/Common/LinuxKernel.vala:259 msgid "Index is fresh" msgstr "Indeks jest aktualny" -#: Common/LinuxKernel.vala:256 +#: src/Common/LinuxKernel.vala:256 msgid "Index is stale" msgstr "Indeks jest nieaktualny" -#: Gtk/MainWindow.vala:359 Gtk/UpdateNotificationWindow.vala:147 +#: src/Gtk/MainWindow.vala:359 src/Gtk/UpdateNotificationWindow.vala:147 msgid "Install" msgstr "Zainstaluj" -#: Common/LinuxKernel.vala:794 +#: src/Common/LinuxKernel.vala:794 #, c-format msgid "Install Linux v%s ? (y/n): " msgstr "" -#: Console/AppConsole.vala:91 +#: src/Console/AppConsole.vala:91 #, fuzzy msgid "Install latest mainline kernel" msgstr "Zainstaluj wybrane jądro" -#: Console/AppConsole.vala:92 +#: src/Console/AppConsole.vala:92 msgid "Install latest point update for current series" msgstr "" -#: Console/AppConsole.vala:93 +#: src/Console/AppConsole.vala:93 msgid "Install specified mainline kernel" msgstr "Zainstaluj wybrane jądro" -#: Gtk/UpdateNotificationWindow.vala:148 +#: src/Gtk/UpdateNotificationWindow.vala:148 msgid "Install this kernel" msgstr "Zainstaluj to jądro" -#: Common/LinuxKernel.vala:1301 +#: src/Common/LinuxKernel.vala:1301 msgid "Installation completed with errors" msgstr "Instalacja zakończona z błędami" -#: Common/LinuxKernel.vala:1298 +#: src/Common/LinuxKernel.vala:1298 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "Instalacja zakończona. Aby korzystać z nowego jądra, konieczne jest ponowne " "uruchomienie." -#: Common/LinuxKernel.vala:1198 Gtk/MainWindow.vala:208 +#: src/Common/LinuxKernel.vala:1198 src/Gtk/MainWindow.vala:208 msgid "Installed" msgstr "Zainstalowany" -#: Gtk/MainWindow.vala:350 Gtk/MainWindow.vala:547 Gtk/MainWindow.vala:683 -#: Utility/TeeJee.System.vala:281 +#: src/Gtk/MainWindow.vala:350 src/Gtk/MainWindow.vala:547 +#: src/Gtk/MainWindow.vala:683 src/Utility/TeeJee.System.vala:281 msgid "Internet connection is not active" msgstr "Brak połączenia z internetem" -#: Gtk/SettingsDialog.vala:212 +#: src/Gtk/SettingsDialog.vala:212 #, fuzzy msgid "Internet connection timeout in " msgstr "Brak połączenia z internetem" -#: Gtk/MainWindow.vala:150 +#: src/Gtk/MainWindow.vala:150 msgid "Kernel" msgstr "Jądro" -#: Gtk/MainWindow.vala:531 +#: src/Gtk/MainWindow.vala:531 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Narzędzie uaktualniania jądra dla dystrybucji z rodziny Ubuntu" -#: Common/LinuxKernel.vala:776 Console/AppConsole.vala:369 +#: src/Common/LinuxKernel.vala:776 src/Console/AppConsole.vala:369 #, c-format msgid "Latest point update" msgstr "" -#: Common/LinuxKernel.vala:765 Console/AppConsole.vala:362 +#: src/Common/LinuxKernel.vala:765 src/Console/AppConsole.vala:362 #, c-format msgid "Latest update" msgstr "" -#: Console/AppConsole.vala:89 +#: src/Console/AppConsole.vala:89 msgid "List all available mainline kernels" msgstr "Pokaż wszystkie dostępne jądra" -#: Gtk/UpdateNotificationWindow.vala:158 +#: src/Gtk/UpdateNotificationWindow.vala:158 #, fuzzy msgid "List available kernels" msgstr "Pokaż wszystkie dostępne jądra" -#: Console/AppConsole.vala:90 +#: src/Console/AppConsole.vala:90 #, fuzzy msgid "List installed kernels" msgstr "Pokaż wszystkie dostępne jądra" -#: Utility/Gtk/GtkHelper.vala:272 +#: src/Utility/Gtk/GtkHelper.vala:272 msgid "Missing Icon" msgstr "Brakująca ikona" -#: Gtk/MainWindow.vala:368 +#: src/Gtk/MainWindow.vala:368 msgid "Multiple Kernels Selected" msgstr "Wybrano kilka jąder" -#: Console/AppConsole.vala:293 +#: src/Console/AppConsole.vala:293 msgid "Multiple kernels selected for installation. Select only one." msgstr "Wybrano kilka jąder do instalacji. Wybierz tylko jedno." -#: Utility/Gtk/CustomMessageDialog.vala:177 +#: src/Utility/Gtk/CustomMessageDialog.vala:177 msgid "No" msgstr "" -#: Gtk/MainWindow.vala:350 Gtk/MainWindow.vala:547 Gtk/MainWindow.vala:683 +#: src/Gtk/MainWindow.vala:350 src/Gtk/MainWindow.vala:547 +#: src/Gtk/MainWindow.vala:683 msgid "No Internet" msgstr "Brak internetu" -#: Console/AppConsole.vala:287 Console/AppConsole.vala:324 +#: src/Console/AppConsole.vala:287 src/Console/AppConsole.vala:324 msgid "No kernels specified" msgstr "" -#: Common/LinuxKernel.vala:784 Console/AppConsole.vala:374 -#: Console/AppConsole.vala:432 Gtk/MainWindow.vala:793 +#: src/Common/LinuxKernel.vala:784 src/Console/AppConsole.vala:374 +#: src/Console/AppConsole.vala:432 src/Gtk/MainWindow.vala:793 msgid "No updates found" msgstr "Nie znaleziono aktualizacji" -#: Gtk/MainWindow.vala:371 Gtk/MainWindow.vala:382 +#: src/Gtk/MainWindow.vala:371 src/Gtk/MainWindow.vala:382 msgid "Not Selected" msgstr "Nie wybrany" -#: Gtk/SettingsDialog.vala:66 +#: src/Gtk/SettingsDialog.vala:66 msgid "Notification" msgstr "Powiadomienia" -#: Gtk/SettingsDialog.vala:73 +#: src/Gtk/SettingsDialog.vala:73 msgid "Notify if a major release is available" msgstr "Powiadom, jeśli pojawi się główna wersja" -#: Gtk/SettingsDialog.vala:84 +#: src/Gtk/SettingsDialog.vala:84 msgid "Notify if a point release is available" msgstr "Powiadom, jeśli pojawi się wersja punktowa" -#: Common/LinuxKernel.vala:1246 Utility/Gtk/CustomMessageDialog.vala:167 -#: Utility/Gtk/CustomMessageDialog.vala:171 Utility/Gtk/GtkHelper.vala:121 +#: src/Common/LinuxKernel.vala:1246 +#: src/Utility/Gtk/CustomMessageDialog.vala:167 +#: src/Utility/Gtk/CustomMessageDialog.vala:171 +#: src/Utility/Gtk/GtkHelper.vala:121 #, c-format msgid "OK" msgstr "OK" -#: Console/AppConsole.vala:100 Gtk/AppGtk.vala:181 +#: src/Console/AppConsole.vala:100 src/Gtk/AppGtk.vala:181 msgid "Options" msgstr "Opcje" -#: Gtk/SettingsDialog.vala:191 +#: src/Gtk/SettingsDialog.vala:191 msgid "Other" msgstr "" -#: Common/LinuxKernel.vala:1060 +#: src/Common/LinuxKernel.vala:1060 #, c-format msgid "Packages Available" msgstr "Dostępne pakiety" -#: Common/LinuxKernel.vala:1068 +#: src/Common/LinuxKernel.vala:1068 #, c-format msgid "Packages Installed" msgstr "Pakiety zainstalowane" -#: Common/Main.vala:106 +#: src/Common/Main.vala:106 msgid "Please install required packages and try again" msgstr "Zainstaluj wymagane pakiety i spróbuj ponownie" -#: Common/LinuxKernel.vala:1322 +#: src/Common/LinuxKernel.vala:1322 msgid "Preparing to remove selected kernels" msgstr "Przygotowanie do usunięcia wybranych jąder" -#: Gtk/AppGtk.vala:183 +#: src/Gtk/AppGtk.vala:183 msgid "Print debug information" msgstr "Wypisz informacje debugujące" -#: Gtk/MainWindow.vala:425 +#: src/Gtk/MainWindow.vala:425 msgid "Purge" msgstr "" -#: Gtk/MainWindow.vala:343 +#: src/Gtk/MainWindow.vala:343 msgid "Refresh" msgstr "Odśwież" -#: Gtk/MainWindow.vala:566 +#: src/Gtk/MainWindow.vala:566 msgid "Refreshing..." msgstr "Odświeżam..." -#: Gtk/MainWindow.vala:376 +#: src/Gtk/MainWindow.vala:376 msgid "Remove" msgstr "Usuń" -#: Console/AppConsole.vala:97 Console/AppConsole.vala:102 +#: src/Console/AppConsole.vala:97 src/Console/AppConsole.vala:102 msgid "Remove files from application cache" msgstr "Usuń pliki z pamięci podręcznej aplikacji" -#: Console/AppConsole.vala:95 Gtk/MainWindow.vala:426 +#: src/Console/AppConsole.vala:95 src/Gtk/MainWindow.vala:426 msgid "Remove installed kernels older than running kernel" msgstr "" -#: Console/AppConsole.vala:94 +#: src/Console/AppConsole.vala:94 #, fuzzy msgid "Remove specified kernel" msgstr "Usuń wybrane jądro" -#: Console/AppConsole.vala:201 Console/AppConsole.vala:315 -#: Console/AppConsole.vala:344 +#: src/Console/AppConsole.vala:201 src/Console/AppConsole.vala:315 +#: src/Console/AppConsole.vala:344 msgid "Run '" msgstr "" -#: Console/AppConsole.vala:119 +#: src/Console/AppConsole.vala:119 #, fuzzy msgid "Run the application as admin with pkexec or sudo." msgstr "Uruchom aplikację jako root albo użyj gksu/sudo." -#: Common/LinuxKernel.vala:1198 Gtk/MainWindow.vala:208 +#: src/Common/LinuxKernel.vala:1198 src/Gtk/MainWindow.vala:208 msgid "Running" msgstr "Uruchomiony" -#: Gtk/MainWindow.vala:368 +#: src/Gtk/MainWindow.vala:368 msgid "Select a single kernel to install" msgstr "Wybierz pojedyncze jądro do instalacji" -#: Gtk/MainWindow.vala:371 +#: src/Gtk/MainWindow.vala:371 msgid "Select the kernel to install" msgstr "Wybierz pojedyncze do instalacji" -#: Gtk/MainWindow.vala:382 +#: src/Gtk/MainWindow.vala:382 msgid "Select the kernels to remove" msgstr "Wybierz jądro do usunięcia" -#: Common/LinuxKernel.vala:1317 +#: src/Common/LinuxKernel.vala:1317 msgid "" "Selected kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -489,67 +499,67 @@ msgstr "" "Wybrane jądro aktualnie działa i nie może zostać usunięte.\n" " Zainstaluj inne jądro przed usunięciem tego." -#: Gtk/MainWindow.vala:475 Gtk/SettingsDialog.vala:56 +#: src/Gtk/MainWindow.vala:475 src/Gtk/SettingsDialog.vala:56 msgid "Settings" msgstr "Ustawienia" -#: Gtk/UpdateNotificationWindow.vala:157 +#: src/Gtk/UpdateNotificationWindow.vala:157 msgid "Show" msgstr "" -#: Gtk/AppGtk.vala:184 +#: src/Gtk/AppGtk.vala:184 msgid "Show all options" msgstr "Pokaż wszystkie opcje" -#: Gtk/SettingsDialog.vala:95 +#: src/Gtk/SettingsDialog.vala:95 msgid "Show notification bubble on desktop" msgstr "Pokaż powiadomienia na pulpicie" -#: Gtk/SettingsDialog.vala:106 +#: src/Gtk/SettingsDialog.vala:106 msgid "Show notification dialog" msgstr "Pokaż okno powiadomień" -#: Console/AppConsole.vala:98 +#: src/Console/AppConsole.vala:98 #, fuzzy msgid "Show unstable and RC releases" msgstr "Ukryj wydania niestabilne i RC" -#: Gtk/SettingsDialog.vala:199 +#: src/Gtk/SettingsDialog.vala:199 #, fuzzy msgid "Skip internet connection check" msgstr "Brak połączenia z internetem" -#: Gtk/MainWindow.vala:196 +#: src/Gtk/MainWindow.vala:196 msgid "Status" msgstr "Status" -#: Utility/TeeJee.Process.vala:512 +#: src/Utility/TeeJee.Process.vala:512 msgid "Stopped" msgstr "Zatrzymany" -#: Console/AppConsole.vala:83 Gtk/AppGtk.vala:179 +#: src/Console/AppConsole.vala:83 src/Gtk/AppGtk.vala:179 msgid "Syntax" msgstr "Składnia" -#: Console/AppConsole.vala:207 Gtk/AppGtk.vala:111 +#: src/Console/AppConsole.vala:207 src/Gtk/AppGtk.vala:111 msgid "Temp" msgstr "" -#: Common/LinuxKernel.vala:730 +#: src/Common/LinuxKernel.vala:730 #, c-format msgid "The following kernels will be removed:" msgstr "" -#: Utility/Gtk/AboutWindow.vala:330 +#: src/Utility/Gtk/AboutWindow.vala:330 #, c-format msgid "Third Party Tools" msgstr "Narzędzia osób trzecich" -#: Common/LinuxKernel.vala:1269 Gtk/MainWindow.vala:678 +#: src/Common/LinuxKernel.vala:1269 src/Gtk/MainWindow.vala:678 msgid "This kernel is already installed." msgstr "To jądro jest już zainstalowane." -#: Common/LinuxKernel.vala:1373 +#: src/Common/LinuxKernel.vala:1373 msgid "" "This kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -557,44 +567,44 @@ msgstr "" "To jądro aktualnie działa i nie może zostać usunięte.\n" " Zainstaluj inne jądro przed usunięciem tego." -#: Utility/Gtk/AboutWindow.vala:346 +#: src/Utility/Gtk/AboutWindow.vala:346 #, c-format msgid "Translators" msgstr "Tłumacze" -#: Common/LinuxKernel.vala:1357 Common/LinuxKernel.vala:1413 +#: src/Common/LinuxKernel.vala:1357 src/Common/LinuxKernel.vala:1413 msgid "Un-install completed" msgstr "De-instalacja zakończona" -#: Common/LinuxKernel.vala:1360 Common/LinuxKernel.vala:1416 +#: src/Common/LinuxKernel.vala:1360 src/Common/LinuxKernel.vala:1416 msgid "Un-install completed with errors" msgstr "De-instalacja zakończona z błędami" -#: Console/AppConsole.vala:199 Gtk/AppGtk.vala:166 +#: src/Console/AppConsole.vala:199 src/Gtk/AppGtk.vala:166 msgid "Unknown option" msgstr "Nieznana opcja" -#: Gtk/MainWindow.vala:179 +#: src/Gtk/MainWindow.vala:179 msgid "Version" msgstr "Wersja" -#: Utility/TeeJee.Logging.vala:89 +#: src/Utility/TeeJee.Logging.vala:89 msgid "W" msgstr "W" -#: Gtk/SettingsDialog.vala:156 +#: src/Gtk/SettingsDialog.vala:156 msgid "Week(s)" msgstr "Tygodni" -#: Utility/Gtk/CustomMessageDialog.vala:176 +#: src/Utility/Gtk/CustomMessageDialog.vala:176 msgid "Yes" msgstr "" -#: Utility/AppLock.vala:56 +#: src/Utility/AppLock.vala:56 msgid "[Warning] Deleted invalid lock" msgstr "[Ostrzeżenie] Usunięto nieprawidłową blokadę" -#: Gtk/SettingsDialog.vala:226 +#: src/Gtk/SettingsDialog.vala:226 msgid "seconds" msgstr "" diff --git a/po/ukuu-ru.po b/po/ru.po similarity index 70% rename from po/ukuu-ru.po rename to po/ru.po index 5bc55fb6..126c41d1 100644 --- a/po/ukuu-ru.po +++ b/po/ru.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu\n" "Report-Msgid-Bugs-To: bw.aljex@gmail.com\n" -"POT-Creation-Date: 2019-03-13 17:28-0400\n" +"POT-Creation-Date: 2019-03-16 04:27-0400\n" "PO-Revision-Date: 2016-12-13 16:46+0300\n" "Last-Translator: Faust3000 \n" "Language-Team: Russian \n" @@ -18,477 +18,487 @@ msgstr "" "X-Launchpad-Export-Date: 2016-12-13 11:48+0000\n" "X-Generator: Poedit 1.8.7.1\n" -#: Gtk/MainWindow.vala:496 +#: src/Gtk/MainWindow.vala:496 msgid "About" msgstr "О программе" -#: Console/AppConsole.vala:116 +#: src/Console/AppConsole.vala:116 msgid "Admin access is required for running this application." msgstr "Для запуска программы требуются права администратора." -#: Utility/AppLock.vala:51 +#: src/Utility/AppLock.vala:51 msgid "Another instance of this application is running" msgstr "Запущен другой экземпляр программы" -#: Common/LinuxKernel.vala:105 +#: src/Common/LinuxKernel.vala:105 #, fuzzy msgid "Architecture" msgstr "Системная архитектура" -#: Utility/Gtk/AboutWindow.vala:338 +#: src/Utility/Gtk/AboutWindow.vala:338 #, c-format msgid "Artists" msgstr "Художники" -#: Console/AppConsole.vala:103 +#: src/Console/AppConsole.vala:103 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "" -#: Utility/Gtk/AboutWindow.vala:314 +#: src/Utility/Gtk/AboutWindow.vala:314 #, c-format msgid "Authors" msgstr "Авторы" -#: Common/LinuxKernel.vala:1181 +#: src/Common/LinuxKernel.vala:1181 msgid "Available Kernels" msgstr "Доступные ядра" -#: Utility/Gtk/AboutWindow.vala:285 +#: src/Utility/Gtk/AboutWindow.vala:285 msgid "Back" msgstr "Назад" -#: Console/AppConsole.vala:206 Gtk/AppGtk.vala:110 +#: src/Console/AppConsole.vala:206 src/Gtk/AppGtk.vala:110 msgid "Cache" msgstr "" -#: Gtk/ProgressWindow.vala:143 Gtk/TerminalWindow.vala:151 -#: Gtk/UpdateNotificationWindow.vala:167 -#: Utility/Gtk/CustomMessageDialog.vala:172 Utility/Gtk/GtkHelper.vala:122 +#: src/Gtk/ProgressWindow.vala:143 src/Gtk/TerminalWindow.vala:151 +#: src/Gtk/UpdateNotificationWindow.vala:167 +#: src/Utility/Gtk/CustomMessageDialog.vala:172 +#: src/Utility/Gtk/GtkHelper.vala:122 msgid "Cancel" msgstr "Отмена" -#: Gtk/MainWindow.vala:464 +#: src/Gtk/MainWindow.vala:464 msgid "Changes" msgstr "Изменения" -#: Gtk/SettingsDialog.vala:121 +#: src/Gtk/SettingsDialog.vala:121 msgid "Check every" msgstr "Проверять каждые" -#: Console/AppConsole.vala:87 +#: src/Console/AppConsole.vala:87 msgid "Check for kernel updates" msgstr "Проверить обновления ядра" -#: Console/AppConsole.vala:88 +#: src/Console/AppConsole.vala:88 #, fuzzy msgid "Check for kernel updates and notify current user" msgstr "Проверить обновления ядра" -#: Gtk/TerminalWindow.vala:161 Utility/Gtk/AboutWindow.vala:295 +#: src/Gtk/TerminalWindow.vala:161 src/Utility/Gtk/AboutWindow.vala:295 msgid "Close" msgstr "Закрыть" -#: Console/AppConsole.vala:343 +#: src/Console/AppConsole.vala:343 msgid "Command not specified" msgstr "" -#: Console/AppConsole.vala:85 +#: src/Console/AppConsole.vala:85 msgid "Commands" msgstr "" -#: Common/Main.vala:105 +#: src/Common/Main.vala:105 msgid "Commands listed below are not available on this system" msgstr "Команды перечисленные ниже недоступны на этой системе" -#: Common/LinuxKernel.vala:737 +#: src/Common/LinuxKernel.vala:737 #, c-format msgid "Continue ?" msgstr "" -#: Utility/Gtk/AboutWindow.vala:322 +#: src/Utility/Gtk/AboutWindow.vala:322 #, c-format msgid "Contributions" msgstr "Взносы" -#: Common/LinuxKernel.vala:721 +#: src/Common/LinuxKernel.vala:721 #, fuzzy msgid "Could not find any kernels to remove" msgstr "Не удалось найти запрошенную версию" -#: Console/AppConsole.vala:311 Gtk/MainWindow.vala:100 +#: src/Console/AppConsole.vala:311 src/Gtk/MainWindow.vala:100 msgid "Could not find requested version" msgstr "Не удалось найти запрошенную версию" -#: Common/LinuxKernel.vala:715 +#: src/Common/LinuxKernel.vala:715 #, fuzzy msgid "Could not find running kernel in list!" msgstr "Не удалось найти запрошенную версию" -#: Utility/TeeJee.FileSystem.vala:349 Utility/TeeJee.FileSystem.vala:352 -#: Utility/TeeJee.FileSystem.vala:378 +#: src/Utility/TeeJee.FileSystem.vala:349 +#: src/Utility/TeeJee.FileSystem.vala:352 +#: src/Utility/TeeJee.FileSystem.vala:378 #, fuzzy msgid "Created directory" msgstr "Используемая кэш-папка" -#: Utility/Gtk/AboutWindow.vala:272 Utility/Gtk/AboutWindow.vala:289 +#: src/Utility/Gtk/AboutWindow.vala:272 src/Utility/Gtk/AboutWindow.vala:289 msgid "Credits" msgstr "Создатели" -#: Gtk/SettingsDialog.vala:154 +#: src/Gtk/SettingsDialog.vala:154 msgid "Day(s)" msgstr "День(дней)" -#: Utility/TeeJee.FileSystem.vala:375 +#: src/Utility/TeeJee.FileSystem.vala:375 msgid "Deleted directory" msgstr "" -#: Utility/TeeJee.FileSystem.vala:509 +#: src/Utility/TeeJee.FileSystem.vala:509 msgid "Dir not found" msgstr "Папка не найдена" -#: Gtk/SettingsDialog.vala:161 +#: src/Gtk/SettingsDialog.vala:161 msgid "Display" msgstr "Вид" -#: Common/LinuxKernel.vala:91 +#: src/Common/LinuxKernel.vala:91 msgid "Distribution" msgstr "Дистрибутив" -#: Utility/Gtk/AboutWindow.vala:354 +#: src/Utility/Gtk/AboutWindow.vala:354 #, c-format msgid "Documenters" msgstr "Составители документации" -#: Console/AppConsole.vala:96 +#: src/Console/AppConsole.vala:96 msgid "Download packages for specified kernel" msgstr "Скачать пакеты для указанного ядра" -#: Common/LinuxKernel.vala:1227 +#: src/Common/LinuxKernel.vala:1227 #, c-format msgid "Downloading" msgstr "Загрузка" -#: Utility/TeeJee.Logging.vala:89 +#: src/Utility/TeeJee.Logging.vala:89 msgid "E" msgstr "E" -#: Common/LinuxKernel.vala:1255 +#: src/Common/LinuxKernel.vala:1255 #, c-format msgid "ERROR" msgstr "ОШИБКА" -#: Utility/Gtk/GtkHelper.vala:18 +#: src/Utility/Gtk/GtkHelper.vala:18 msgid "Error" msgstr "Ошибка" -#: Utility/TeeJee.FileSystem.vala:221 +#: src/Utility/TeeJee.FileSystem.vala:221 msgid "Failed to copy file" msgstr "Не удалось скопировать файл" -#: Utility/TeeJee.FileSystem.vala:359 +#: src/Utility/TeeJee.FileSystem.vala:359 msgid "Failed to create dir" msgstr "Не удалось создать папку" -#: Utility/TeeJee.FileSystem.vala:106 +#: src/Utility/TeeJee.FileSystem.vala:106 msgid "Failed to delete file" msgstr "Не удалось удалить файл" -#: Utility/TeeJee.FileSystem.vala:253 +#: src/Utility/TeeJee.FileSystem.vala:253 msgid "Failed to move file" msgstr "Не удалось переместить файл" -#: Utility/TeeJee.FileSystem.vala:162 +#: src/Utility/TeeJee.FileSystem.vala:162 msgid "Failed to read file" msgstr "Не удалось прочитать файл" -#: Utility/TeeJee.FileSystem.vala:197 +#: src/Utility/TeeJee.FileSystem.vala:197 msgid "Failed to write file" msgstr "Не удалось записать файл" -#: Common/LinuxKernel.vala:396 +#: src/Common/LinuxKernel.vala:396 msgid "Fetching index from kernel.ubuntu.com..." msgstr "Получение сведений с kernel.ubuntu.com..." -#: Common/LinuxKernel.vala:353 +#: src/Common/LinuxKernel.vala:353 msgid "Fetching index..." msgstr "" -#: Utility/TeeJee.FileSystem.vala:210 Utility/TeeJee.FileSystem.vala:213 +#: src/Utility/TeeJee.FileSystem.vala:210 +#: src/Utility/TeeJee.FileSystem.vala:213 #, fuzzy msgid "File copied" msgstr "Не удалось скопировать файл" -#: Utility/TeeJee.FileSystem.vala:97 Utility/TeeJee.FileSystem.vala:100 +#: src/Utility/TeeJee.FileSystem.vala:97 src/Utility/TeeJee.FileSystem.vala:100 #, fuzzy msgid "File deleted" msgstr "Не удалось удалить файл" -#: Utility/TeeJee.FileSystem.vala:662 Utility/TeeJee.FileSystem.vala:711 +#: src/Utility/TeeJee.FileSystem.vala:662 +#: src/Utility/TeeJee.FileSystem.vala:711 msgid "File is missing" msgstr "Файл отсутствует" -#: Utility/TeeJee.FileSystem.vala:245 Utility/TeeJee.FileSystem.vala:248 +#: src/Utility/TeeJee.FileSystem.vala:245 +#: src/Utility/TeeJee.FileSystem.vala:248 #, fuzzy msgid "File moved" msgstr "Удалить" -#: Utility/TeeJee.FileSystem.vala:231 Utility/TeeJee.FileSystem.vala:538 +#: src/Utility/TeeJee.FileSystem.vala:231 +#: src/Utility/TeeJee.FileSystem.vala:538 msgid "File not found" msgstr "Файл не найден" -#: Common/Package.vala:133 Common/Package.vala:195 +#: src/Common/Package.vala:133 src/Common/Package.vala:195 #, c-format msgid "File not found: %s" msgstr "Файл не найден: %s" -#: Utility/TeeJee.FileSystem.vala:187 Utility/TeeJee.FileSystem.vala:190 +#: src/Utility/TeeJee.FileSystem.vala:187 +#: src/Utility/TeeJee.FileSystem.vala:190 #, fuzzy msgid "File saved" msgstr "Файловая система" -#: Gtk/SettingsDialog.vala:180 +#: src/Gtk/SettingsDialog.vala:180 msgid "Hide kernels older than 4.0" msgstr "Скрыть ядра старше версии 4.0" -#: Gtk/SettingsDialog.vala:169 +#: src/Gtk/SettingsDialog.vala:169 msgid "Hide unstable and RC releases" msgstr "Скрыть нестабильные и релиз-кандидат версии" -#: Gtk/SettingsDialog.vala:152 +#: src/Gtk/SettingsDialog.vala:152 msgid "Hour(s)" msgstr "Час(ов)" -#: Gtk/UpdateNotificationWindow.vala:168 +#: src/Gtk/UpdateNotificationWindow.vala:168 msgid "Ignore this update" msgstr "Игнорировать это обновление" -#: Common/LinuxKernel.vala:259 +#: src/Common/LinuxKernel.vala:259 msgid "Index is fresh" msgstr "Сведения актуальны" -#: Common/LinuxKernel.vala:256 +#: src/Common/LinuxKernel.vala:256 msgid "Index is stale" msgstr "Сведения устарели" -#: Gtk/MainWindow.vala:359 Gtk/UpdateNotificationWindow.vala:147 +#: src/Gtk/MainWindow.vala:359 src/Gtk/UpdateNotificationWindow.vala:147 msgid "Install" msgstr "Установить" -#: Common/LinuxKernel.vala:794 +#: src/Common/LinuxKernel.vala:794 #, c-format msgid "Install Linux v%s ? (y/n): " msgstr "" -#: Console/AppConsole.vala:91 +#: src/Console/AppConsole.vala:91 #, fuzzy msgid "Install latest mainline kernel" msgstr "Установить указанную ветку ядра" -#: Console/AppConsole.vala:92 +#: src/Console/AppConsole.vala:92 msgid "Install latest point update for current series" msgstr "" -#: Console/AppConsole.vala:93 +#: src/Console/AppConsole.vala:93 msgid "Install specified mainline kernel" msgstr "Установить указанную ветку ядра" -#: Gtk/UpdateNotificationWindow.vala:148 +#: src/Gtk/UpdateNotificationWindow.vala:148 msgid "Install this kernel" msgstr "Установить это ядро" -#: Common/LinuxKernel.vala:1301 +#: src/Common/LinuxKernel.vala:1301 msgid "Installation completed with errors" msgstr "Установка завершена с ошибками" -#: Common/LinuxKernel.vala:1298 +#: src/Common/LinuxKernel.vala:1298 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "Установка завершена. Обязательно выполните перезагрузку, чтобы использовать " "новое ядро." -#: Common/LinuxKernel.vala:1198 Gtk/MainWindow.vala:208 +#: src/Common/LinuxKernel.vala:1198 src/Gtk/MainWindow.vala:208 msgid "Installed" msgstr "Установлено" -#: Gtk/MainWindow.vala:350 Gtk/MainWindow.vala:547 Gtk/MainWindow.vala:683 -#: Utility/TeeJee.System.vala:281 +#: src/Gtk/MainWindow.vala:350 src/Gtk/MainWindow.vala:547 +#: src/Gtk/MainWindow.vala:683 src/Utility/TeeJee.System.vala:281 msgid "Internet connection is not active" msgstr "Интернет соединение не активно" -#: Gtk/SettingsDialog.vala:212 +#: src/Gtk/SettingsDialog.vala:212 #, fuzzy msgid "Internet connection timeout in " msgstr "Интернет соединение не активно" -#: Gtk/MainWindow.vala:150 +#: src/Gtk/MainWindow.vala:150 msgid "Kernel" msgstr "Ядро" -#: Gtk/MainWindow.vala:531 +#: src/Gtk/MainWindow.vala:531 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Программа обновления ядра для дистрибутивов на базе Ubuntu" -#: Common/LinuxKernel.vala:776 Console/AppConsole.vala:369 +#: src/Common/LinuxKernel.vala:776 src/Console/AppConsole.vala:369 #, c-format msgid "Latest point update" msgstr "" -#: Common/LinuxKernel.vala:765 Console/AppConsole.vala:362 +#: src/Common/LinuxKernel.vala:765 src/Console/AppConsole.vala:362 #, c-format msgid "Latest update" msgstr "" -#: Console/AppConsole.vala:89 +#: src/Console/AppConsole.vala:89 msgid "List all available mainline kernels" msgstr "Список всех доступных основных ядер" -#: Gtk/UpdateNotificationWindow.vala:158 +#: src/Gtk/UpdateNotificationWindow.vala:158 #, fuzzy msgid "List available kernels" msgstr "Список всех доступных основных ядер" -#: Console/AppConsole.vala:90 +#: src/Console/AppConsole.vala:90 #, fuzzy msgid "List installed kernels" msgstr "Список всех доступных основных ядер" -#: Utility/Gtk/GtkHelper.vala:272 +#: src/Utility/Gtk/GtkHelper.vala:272 msgid "Missing Icon" msgstr "Значок отсутствует" -#: Gtk/MainWindow.vala:368 +#: src/Gtk/MainWindow.vala:368 msgid "Multiple Kernels Selected" msgstr "" -#: Console/AppConsole.vala:293 +#: src/Console/AppConsole.vala:293 msgid "Multiple kernels selected for installation. Select only one." msgstr "" -#: Utility/Gtk/CustomMessageDialog.vala:177 +#: src/Utility/Gtk/CustomMessageDialog.vala:177 msgid "No" msgstr "" -#: Gtk/MainWindow.vala:350 Gtk/MainWindow.vala:547 Gtk/MainWindow.vala:683 +#: src/Gtk/MainWindow.vala:350 src/Gtk/MainWindow.vala:547 +#: src/Gtk/MainWindow.vala:683 msgid "No Internet" msgstr "" -#: Console/AppConsole.vala:287 Console/AppConsole.vala:324 +#: src/Console/AppConsole.vala:287 src/Console/AppConsole.vala:324 msgid "No kernels specified" msgstr "" -#: Common/LinuxKernel.vala:784 Console/AppConsole.vala:374 -#: Console/AppConsole.vala:432 Gtk/MainWindow.vala:793 +#: src/Common/LinuxKernel.vala:784 src/Console/AppConsole.vala:374 +#: src/Console/AppConsole.vala:432 src/Gtk/MainWindow.vala:793 msgid "No updates found" msgstr "Обновлений не найдено" -#: Gtk/MainWindow.vala:371 Gtk/MainWindow.vala:382 +#: src/Gtk/MainWindow.vala:371 src/Gtk/MainWindow.vala:382 msgid "Not Selected" msgstr "" -#: Gtk/SettingsDialog.vala:66 +#: src/Gtk/SettingsDialog.vala:66 msgid "Notification" msgstr "Уведомления" -#: Gtk/SettingsDialog.vala:73 +#: src/Gtk/SettingsDialog.vala:73 msgid "Notify if a major release is available" msgstr "Уведомлять, если доступно крупное обновление" -#: Gtk/SettingsDialog.vala:84 +#: src/Gtk/SettingsDialog.vala:84 msgid "Notify if a point release is available" msgstr "Уведомлять, если доступно небольшое обновление" -#: Common/LinuxKernel.vala:1246 Utility/Gtk/CustomMessageDialog.vala:167 -#: Utility/Gtk/CustomMessageDialog.vala:171 Utility/Gtk/GtkHelper.vala:121 +#: src/Common/LinuxKernel.vala:1246 +#: src/Utility/Gtk/CustomMessageDialog.vala:167 +#: src/Utility/Gtk/CustomMessageDialog.vala:171 +#: src/Utility/Gtk/GtkHelper.vala:121 #, c-format msgid "OK" msgstr "OK" -#: Console/AppConsole.vala:100 Gtk/AppGtk.vala:181 +#: src/Console/AppConsole.vala:100 src/Gtk/AppGtk.vala:181 msgid "Options" msgstr "Параметры" -#: Gtk/SettingsDialog.vala:191 +#: src/Gtk/SettingsDialog.vala:191 msgid "Other" msgstr "" -#: Common/LinuxKernel.vala:1060 +#: src/Common/LinuxKernel.vala:1060 #, fuzzy, c-format msgid "Packages Available" msgstr "Установлено" -#: Common/LinuxKernel.vala:1068 +#: src/Common/LinuxKernel.vala:1068 #, fuzzy, c-format msgid "Packages Installed" msgstr "Установлено" -#: Common/Main.vala:106 +#: src/Common/Main.vala:106 msgid "Please install required packages and try again" msgstr "Установить необходимые пакеты и попробуйте снова" -#: Common/LinuxKernel.vala:1322 +#: src/Common/LinuxKernel.vala:1322 msgid "Preparing to remove selected kernels" msgstr "" -#: Gtk/AppGtk.vala:183 +#: src/Gtk/AppGtk.vala:183 msgid "Print debug information" msgstr "Распечатать отладочную информацию" -#: Gtk/MainWindow.vala:425 +#: src/Gtk/MainWindow.vala:425 msgid "Purge" msgstr "Очистить" -#: Gtk/MainWindow.vala:343 +#: src/Gtk/MainWindow.vala:343 msgid "Refresh" msgstr "Обновить" -#: Gtk/MainWindow.vala:566 +#: src/Gtk/MainWindow.vala:566 msgid "Refreshing..." msgstr "Обновление..." -#: Gtk/MainWindow.vala:376 +#: src/Gtk/MainWindow.vala:376 msgid "Remove" msgstr "Удалить" -#: Console/AppConsole.vala:97 Console/AppConsole.vala:102 +#: src/Console/AppConsole.vala:97 src/Console/AppConsole.vala:102 msgid "Remove files from application cache" msgstr "Удалить файлы из кэша программы" -#: Console/AppConsole.vala:95 Gtk/MainWindow.vala:426 +#: src/Console/AppConsole.vala:95 src/Gtk/MainWindow.vala:426 msgid "Remove installed kernels older than running kernel" msgstr "Удалить более старшие установленные ядра, чем используемое" -#: Console/AppConsole.vala:94 +#: src/Console/AppConsole.vala:94 #, fuzzy msgid "Remove specified kernel" msgstr "Удалить указанную ветку ядра" -#: Console/AppConsole.vala:201 Console/AppConsole.vala:315 -#: Console/AppConsole.vala:344 +#: src/Console/AppConsole.vala:201 src/Console/AppConsole.vala:315 +#: src/Console/AppConsole.vala:344 msgid "Run '" msgstr "" -#: Console/AppConsole.vala:119 +#: src/Console/AppConsole.vala:119 #, fuzzy msgid "Run the application as admin with pkexec or sudo." msgstr "Запустите программу с правами Root или используйте gksu/sudo." -#: Common/LinuxKernel.vala:1198 Gtk/MainWindow.vala:208 +#: src/Common/LinuxKernel.vala:1198 src/Gtk/MainWindow.vala:208 msgid "Running" msgstr "Используется" -#: Gtk/MainWindow.vala:368 +#: src/Gtk/MainWindow.vala:368 msgid "Select a single kernel to install" msgstr "" -#: Gtk/MainWindow.vala:371 +#: src/Gtk/MainWindow.vala:371 msgid "Select the kernel to install" msgstr "" -#: Gtk/MainWindow.vala:382 +#: src/Gtk/MainWindow.vala:382 msgid "Select the kernels to remove" msgstr "" -#: Common/LinuxKernel.vala:1317 +#: src/Common/LinuxKernel.vala:1317 #, fuzzy msgid "" "Selected kernel is currently running and cannot be removed.\n" @@ -497,67 +507,67 @@ msgstr "" "Это ядро в настоящий момент работает и не может быть удалено.\n" " Установите другое ядро, прежде чем удалять его." -#: Gtk/MainWindow.vala:475 Gtk/SettingsDialog.vala:56 +#: src/Gtk/MainWindow.vala:475 src/Gtk/SettingsDialog.vala:56 msgid "Settings" msgstr "Настройки" -#: Gtk/UpdateNotificationWindow.vala:157 +#: src/Gtk/UpdateNotificationWindow.vala:157 msgid "Show" msgstr "" -#: Gtk/AppGtk.vala:184 +#: src/Gtk/AppGtk.vala:184 msgid "Show all options" msgstr "Показать все параметры" -#: Gtk/SettingsDialog.vala:95 +#: src/Gtk/SettingsDialog.vala:95 msgid "Show notification bubble on desktop" msgstr "Показывать окно оповещений на рабочем столе" -#: Gtk/SettingsDialog.vala:106 +#: src/Gtk/SettingsDialog.vala:106 msgid "Show notification dialog" msgstr "Показывать окно оповещений" -#: Console/AppConsole.vala:98 +#: src/Console/AppConsole.vala:98 #, fuzzy msgid "Show unstable and RC releases" msgstr "Скрыть нестабильные и релиз-кандидат версии" -#: Gtk/SettingsDialog.vala:199 +#: src/Gtk/SettingsDialog.vala:199 #, fuzzy msgid "Skip internet connection check" msgstr "Интернет соединение не активно" -#: Gtk/MainWindow.vala:196 +#: src/Gtk/MainWindow.vala:196 msgid "Status" msgstr "Состояние" -#: Utility/TeeJee.Process.vala:512 +#: src/Utility/TeeJee.Process.vala:512 msgid "Stopped" msgstr "Остановлено" -#: Console/AppConsole.vala:83 Gtk/AppGtk.vala:179 +#: src/Console/AppConsole.vala:83 src/Gtk/AppGtk.vala:179 msgid "Syntax" msgstr "Синтаксис" -#: Console/AppConsole.vala:207 Gtk/AppGtk.vala:111 +#: src/Console/AppConsole.vala:207 src/Gtk/AppGtk.vala:111 msgid "Temp" msgstr "" -#: Common/LinuxKernel.vala:730 +#: src/Common/LinuxKernel.vala:730 #, c-format msgid "The following kernels will be removed:" msgstr "" -#: Utility/Gtk/AboutWindow.vala:330 +#: src/Utility/Gtk/AboutWindow.vala:330 #, c-format msgid "Third Party Tools" msgstr "Сторонние инструменты" -#: Common/LinuxKernel.vala:1269 Gtk/MainWindow.vala:678 +#: src/Common/LinuxKernel.vala:1269 src/Gtk/MainWindow.vala:678 msgid "This kernel is already installed." msgstr "Это ядро уже установлено." -#: Common/LinuxKernel.vala:1373 +#: src/Common/LinuxKernel.vala:1373 msgid "" "This kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -565,44 +575,44 @@ msgstr "" "Это ядро в настоящий момент работает и не может быть удалено.\n" " Установите другое ядро, прежде чем удалять его." -#: Utility/Gtk/AboutWindow.vala:346 +#: src/Utility/Gtk/AboutWindow.vala:346 #, c-format msgid "Translators" msgstr "Переводчики" -#: Common/LinuxKernel.vala:1357 Common/LinuxKernel.vala:1413 +#: src/Common/LinuxKernel.vala:1357 src/Common/LinuxKernel.vala:1413 msgid "Un-install completed" msgstr "Удаление завершено" -#: Common/LinuxKernel.vala:1360 Common/LinuxKernel.vala:1416 +#: src/Common/LinuxKernel.vala:1360 src/Common/LinuxKernel.vala:1416 msgid "Un-install completed with errors" msgstr "Удаление завершено с ошибками" -#: Console/AppConsole.vala:199 Gtk/AppGtk.vala:166 +#: src/Console/AppConsole.vala:199 src/Gtk/AppGtk.vala:166 msgid "Unknown option" msgstr "Неизвестный параметр" -#: Gtk/MainWindow.vala:179 +#: src/Gtk/MainWindow.vala:179 msgid "Version" msgstr "Версия" -#: Utility/TeeJee.Logging.vala:89 +#: src/Utility/TeeJee.Logging.vala:89 msgid "W" msgstr "W" -#: Gtk/SettingsDialog.vala:156 +#: src/Gtk/SettingsDialog.vala:156 msgid "Week(s)" msgstr "Неделю(ли)" -#: Utility/Gtk/CustomMessageDialog.vala:176 +#: src/Utility/Gtk/CustomMessageDialog.vala:176 msgid "Yes" msgstr "" -#: Utility/AppLock.vala:56 +#: src/Utility/AppLock.vala:56 msgid "[Warning] Deleted invalid lock" msgstr "[Внимание] Удалена неправильная блокировка" -#: Gtk/SettingsDialog.vala:226 +#: src/Gtk/SettingsDialog.vala:226 msgid "seconds" msgstr "" diff --git a/po/ukuu-sv.po b/po/sv.po similarity index 69% rename from po/ukuu-sv.po rename to po/sv.po index 74c14f2f..dd8b51c7 100644 --- a/po/ukuu-sv.po +++ b/po/sv.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu 2.2\n" "Report-Msgid-Bugs-To: bw.aljex@gmail.com\n" -"POT-Creation-Date: 2019-03-13 17:28-0400\n" +"POT-Creation-Date: 2019-03-16 04:27-0400\n" "PO-Revision-Date: 2018-01-13 16:56+0100\n" "Last-Translator: Åke Engelbrektson \n" "Language-Team: Svenska Språkfiler \n" @@ -18,469 +18,479 @@ msgstr "" "X-Generator: Poedit 1.8.7.1\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: Gtk/MainWindow.vala:496 +#: src/Gtk/MainWindow.vala:496 msgid "About" msgstr "Om" -#: Console/AppConsole.vala:116 +#: src/Console/AppConsole.vala:116 msgid "Admin access is required for running this application." msgstr "Root-åtkomst krävs för att köra detta program." -#: Utility/AppLock.vala:51 +#: src/Utility/AppLock.vala:51 msgid "Another instance of this application is running" msgstr "En annan instans av programmet körs redan" -#: Common/LinuxKernel.vala:105 +#: src/Common/LinuxKernel.vala:105 #, fuzzy msgid "Architecture" msgstr "Systemarkitektur" -#: Utility/Gtk/AboutWindow.vala:338 +#: src/Utility/Gtk/AboutWindow.vala:338 #, c-format msgid "Artists" msgstr "Artister" -#: Console/AppConsole.vala:103 +#: src/Console/AppConsole.vala:103 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "" -#: Utility/Gtk/AboutWindow.vala:314 +#: src/Utility/Gtk/AboutWindow.vala:314 #, c-format msgid "Authors" msgstr "Utvecklare" -#: Common/LinuxKernel.vala:1181 +#: src/Common/LinuxKernel.vala:1181 msgid "Available Kernels" msgstr "Tillgängliga kärnor" -#: Utility/Gtk/AboutWindow.vala:285 +#: src/Utility/Gtk/AboutWindow.vala:285 msgid "Back" msgstr "Tillbaka" -#: Console/AppConsole.vala:206 Gtk/AppGtk.vala:110 +#: src/Console/AppConsole.vala:206 src/Gtk/AppGtk.vala:110 msgid "Cache" msgstr "" -#: Gtk/ProgressWindow.vala:143 Gtk/TerminalWindow.vala:151 -#: Gtk/UpdateNotificationWindow.vala:167 -#: Utility/Gtk/CustomMessageDialog.vala:172 Utility/Gtk/GtkHelper.vala:122 +#: src/Gtk/ProgressWindow.vala:143 src/Gtk/TerminalWindow.vala:151 +#: src/Gtk/UpdateNotificationWindow.vala:167 +#: src/Utility/Gtk/CustomMessageDialog.vala:172 +#: src/Utility/Gtk/GtkHelper.vala:122 msgid "Cancel" msgstr "Avbryt" -#: Gtk/MainWindow.vala:464 +#: src/Gtk/MainWindow.vala:464 msgid "Changes" msgstr "Ändringar" -#: Gtk/SettingsDialog.vala:121 +#: src/Gtk/SettingsDialog.vala:121 msgid "Check every" msgstr "Kontrollera varje" -#: Console/AppConsole.vala:87 +#: src/Console/AppConsole.vala:87 msgid "Check for kernel updates" msgstr "Sök efter kärnuppdateringar" -#: Console/AppConsole.vala:88 +#: src/Console/AppConsole.vala:88 #, fuzzy msgid "Check for kernel updates and notify current user" msgstr "Sök efter kärnuppdateringar" -#: Gtk/TerminalWindow.vala:161 Utility/Gtk/AboutWindow.vala:295 +#: src/Gtk/TerminalWindow.vala:161 src/Utility/Gtk/AboutWindow.vala:295 msgid "Close" msgstr "Stäng" -#: Console/AppConsole.vala:343 +#: src/Console/AppConsole.vala:343 msgid "Command not specified" msgstr "" -#: Console/AppConsole.vala:85 +#: src/Console/AppConsole.vala:85 msgid "Commands" msgstr "" -#: Common/Main.vala:105 +#: src/Common/Main.vala:105 msgid "Commands listed below are not available on this system" msgstr "Kommandon listade nedan, finns inte tillgängliga i detta system." -#: Common/LinuxKernel.vala:737 +#: src/Common/LinuxKernel.vala:737 #, c-format msgid "Continue ?" msgstr "" -#: Utility/Gtk/AboutWindow.vala:322 +#: src/Utility/Gtk/AboutWindow.vala:322 #, c-format msgid "Contributions" msgstr "Bidrag" -#: Common/LinuxKernel.vala:721 +#: src/Common/LinuxKernel.vala:721 #, fuzzy msgid "Could not find any kernels to remove" msgstr "Välj kärnor för borttagning" -#: Console/AppConsole.vala:311 Gtk/MainWindow.vala:100 +#: src/Console/AppConsole.vala:311 src/Gtk/MainWindow.vala:100 msgid "Could not find requested version" msgstr "Kunde inte hitta efterfrågad version" -#: Common/LinuxKernel.vala:715 +#: src/Common/LinuxKernel.vala:715 #, fuzzy msgid "Could not find running kernel in list!" msgstr "Kunde inte hitta efterfrågad version" -#: Utility/TeeJee.FileSystem.vala:349 Utility/TeeJee.FileSystem.vala:352 -#: Utility/TeeJee.FileSystem.vala:378 +#: src/Utility/TeeJee.FileSystem.vala:349 +#: src/Utility/TeeJee.FileSystem.vala:352 +#: src/Utility/TeeJee.FileSystem.vala:378 msgid "Created directory" msgstr "Skapade mapp" -#: Utility/Gtk/AboutWindow.vala:272 Utility/Gtk/AboutWindow.vala:289 +#: src/Utility/Gtk/AboutWindow.vala:272 src/Utility/Gtk/AboutWindow.vala:289 msgid "Credits" msgstr "Tack" -#: Gtk/SettingsDialog.vala:154 +#: src/Gtk/SettingsDialog.vala:154 msgid "Day(s)" msgstr "Dag(ar)" -#: Utility/TeeJee.FileSystem.vala:375 +#: src/Utility/TeeJee.FileSystem.vala:375 msgid "Deleted directory" msgstr "Tog bort mapp" -#: Utility/TeeJee.FileSystem.vala:509 +#: src/Utility/TeeJee.FileSystem.vala:509 msgid "Dir not found" msgstr "Mappen kan inte hittas" -#: Gtk/SettingsDialog.vala:161 +#: src/Gtk/SettingsDialog.vala:161 msgid "Display" msgstr "Visa" -#: Common/LinuxKernel.vala:91 +#: src/Common/LinuxKernel.vala:91 msgid "Distribution" msgstr "Distribution" -#: Utility/Gtk/AboutWindow.vala:354 +#: src/Utility/Gtk/AboutWindow.vala:354 #, c-format msgid "Documenters" msgstr "Dokumentalister" -#: Console/AppConsole.vala:96 +#: src/Console/AppConsole.vala:96 msgid "Download packages for specified kernel" msgstr "Ladda ner paket för specificerad kärna" -#: Common/LinuxKernel.vala:1227 +#: src/Common/LinuxKernel.vala:1227 #, c-format msgid "Downloading" msgstr "Laddar ner" -#: Utility/TeeJee.Logging.vala:89 +#: src/Utility/TeeJee.Logging.vala:89 msgid "E" msgstr "F" -#: Common/LinuxKernel.vala:1255 +#: src/Common/LinuxKernel.vala:1255 #, c-format msgid "ERROR" msgstr "FEL" -#: Utility/Gtk/GtkHelper.vala:18 +#: src/Utility/Gtk/GtkHelper.vala:18 msgid "Error" msgstr "Fel" -#: Utility/TeeJee.FileSystem.vala:221 +#: src/Utility/TeeJee.FileSystem.vala:221 msgid "Failed to copy file" msgstr "Kunde inte kopiera filen" -#: Utility/TeeJee.FileSystem.vala:359 +#: src/Utility/TeeJee.FileSystem.vala:359 msgid "Failed to create dir" msgstr "Kunde inte skapa mappen" -#: Utility/TeeJee.FileSystem.vala:106 +#: src/Utility/TeeJee.FileSystem.vala:106 msgid "Failed to delete file" msgstr "Kunde inte ta bort filen" -#: Utility/TeeJee.FileSystem.vala:253 +#: src/Utility/TeeJee.FileSystem.vala:253 msgid "Failed to move file" msgstr "Kunde inte flytta filen" -#: Utility/TeeJee.FileSystem.vala:162 +#: src/Utility/TeeJee.FileSystem.vala:162 msgid "Failed to read file" msgstr "Kunde inte läsa filen" -#: Utility/TeeJee.FileSystem.vala:197 +#: src/Utility/TeeJee.FileSystem.vala:197 msgid "Failed to write file" msgstr "Kunde inte skriva filen" -#: Common/LinuxKernel.vala:396 +#: src/Common/LinuxKernel.vala:396 msgid "Fetching index from kernel.ubuntu.com..." msgstr "Hämtar index från kernel.ubuntu.com ..." -#: Common/LinuxKernel.vala:353 +#: src/Common/LinuxKernel.vala:353 #, fuzzy msgid "Fetching index..." msgstr "Hämtar index för" -#: Utility/TeeJee.FileSystem.vala:210 Utility/TeeJee.FileSystem.vala:213 +#: src/Utility/TeeJee.FileSystem.vala:210 +#: src/Utility/TeeJee.FileSystem.vala:213 msgid "File copied" msgstr "Kopierade fil" -#: Utility/TeeJee.FileSystem.vala:97 Utility/TeeJee.FileSystem.vala:100 +#: src/Utility/TeeJee.FileSystem.vala:97 src/Utility/TeeJee.FileSystem.vala:100 msgid "File deleted" msgstr "Fil borttagen" -#: Utility/TeeJee.FileSystem.vala:662 Utility/TeeJee.FileSystem.vala:711 +#: src/Utility/TeeJee.FileSystem.vala:662 +#: src/Utility/TeeJee.FileSystem.vala:711 msgid "File is missing" msgstr "Filen saknas" -#: Utility/TeeJee.FileSystem.vala:245 Utility/TeeJee.FileSystem.vala:248 +#: src/Utility/TeeJee.FileSystem.vala:245 +#: src/Utility/TeeJee.FileSystem.vala:248 msgid "File moved" msgstr "Fil flyttad" -#: Utility/TeeJee.FileSystem.vala:231 Utility/TeeJee.FileSystem.vala:538 +#: src/Utility/TeeJee.FileSystem.vala:231 +#: src/Utility/TeeJee.FileSystem.vala:538 msgid "File not found" msgstr "Filen kan inte hittas" -#: Common/Package.vala:133 Common/Package.vala:195 +#: src/Common/Package.vala:133 src/Common/Package.vala:195 #, c-format msgid "File not found: %s" msgstr "Filen kunde inte hittas: %s" -#: Utility/TeeJee.FileSystem.vala:187 Utility/TeeJee.FileSystem.vala:190 +#: src/Utility/TeeJee.FileSystem.vala:187 +#: src/Utility/TeeJee.FileSystem.vala:190 msgid "File saved" msgstr "Fil sparad" -#: Gtk/SettingsDialog.vala:180 +#: src/Gtk/SettingsDialog.vala:180 msgid "Hide kernels older than 4.0" msgstr "Dölj kärnor, äldre än 4.0" -#: Gtk/SettingsDialog.vala:169 +#: src/Gtk/SettingsDialog.vala:169 msgid "Hide unstable and RC releases" msgstr "Dölj instabila- och RC-publiceringar" -#: Gtk/SettingsDialog.vala:152 +#: src/Gtk/SettingsDialog.vala:152 msgid "Hour(s)" msgstr "Timma(r)" -#: Gtk/UpdateNotificationWindow.vala:168 +#: src/Gtk/UpdateNotificationWindow.vala:168 msgid "Ignore this update" msgstr "Undanta denna uppdatering" -#: Common/LinuxKernel.vala:259 +#: src/Common/LinuxKernel.vala:259 msgid "Index is fresh" msgstr "Index är uppdaterat" -#: Common/LinuxKernel.vala:256 +#: src/Common/LinuxKernel.vala:256 msgid "Index is stale" msgstr "Index är inaktuellt" -#: Gtk/MainWindow.vala:359 Gtk/UpdateNotificationWindow.vala:147 +#: src/Gtk/MainWindow.vala:359 src/Gtk/UpdateNotificationWindow.vala:147 msgid "Install" msgstr "Installera" -#: Common/LinuxKernel.vala:794 +#: src/Common/LinuxKernel.vala:794 #, c-format msgid "Install Linux v%s ? (y/n): " msgstr "" -#: Console/AppConsole.vala:91 +#: src/Console/AppConsole.vala:91 #, fuzzy msgid "Install latest mainline kernel" msgstr "Installera specificerad kärna" -#: Console/AppConsole.vala:92 +#: src/Console/AppConsole.vala:92 msgid "Install latest point update for current series" msgstr "" -#: Console/AppConsole.vala:93 +#: src/Console/AppConsole.vala:93 msgid "Install specified mainline kernel" msgstr "Installera specificerad kärna" -#: Gtk/UpdateNotificationWindow.vala:148 +#: src/Gtk/UpdateNotificationWindow.vala:148 msgid "Install this kernel" msgstr "Installera denna kärna" -#: Common/LinuxKernel.vala:1301 +#: src/Common/LinuxKernel.vala:1301 msgid "Installation completed with errors" msgstr "Installation slutförd med fel" -#: Common/LinuxKernel.vala:1298 +#: src/Common/LinuxKernel.vala:1298 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "Installation slutförd. Omstart krävs för att tillämpa den nya kärnan." -#: Common/LinuxKernel.vala:1198 Gtk/MainWindow.vala:208 +#: src/Common/LinuxKernel.vala:1198 src/Gtk/MainWindow.vala:208 msgid "Installed" msgstr "Installerad" -#: Gtk/MainWindow.vala:350 Gtk/MainWindow.vala:547 Gtk/MainWindow.vala:683 -#: Utility/TeeJee.System.vala:281 +#: src/Gtk/MainWindow.vala:350 src/Gtk/MainWindow.vala:547 +#: src/Gtk/MainWindow.vala:683 src/Utility/TeeJee.System.vala:281 msgid "Internet connection is not active" msgstr "Internetuppkopplingen är inte aktiv" -#: Gtk/SettingsDialog.vala:212 +#: src/Gtk/SettingsDialog.vala:212 #, fuzzy msgid "Internet connection timeout in " msgstr "Internetuppkopplingen är inte aktiv" -#: Gtk/MainWindow.vala:150 +#: src/Gtk/MainWindow.vala:150 msgid "Kernel" msgstr "Kärna" -#: Gtk/MainWindow.vala:531 +#: src/Gtk/MainWindow.vala:531 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Kärnuppgraderingsverktyg för Ubuntu-baserade distributioner" -#: Common/LinuxKernel.vala:776 Console/AppConsole.vala:369 +#: src/Common/LinuxKernel.vala:776 src/Console/AppConsole.vala:369 #, c-format msgid "Latest point update" msgstr "" -#: Common/LinuxKernel.vala:765 Console/AppConsole.vala:362 +#: src/Common/LinuxKernel.vala:765 src/Console/AppConsole.vala:362 #, c-format msgid "Latest update" msgstr "" -#: Console/AppConsole.vala:89 +#: src/Console/AppConsole.vala:89 msgid "List all available mainline kernels" msgstr "Lista alla tillgängliga kärnor" -#: Gtk/UpdateNotificationWindow.vala:158 +#: src/Gtk/UpdateNotificationWindow.vala:158 msgid "List available kernels" msgstr "Lista tillgängliga kärnor" -#: Console/AppConsole.vala:90 +#: src/Console/AppConsole.vala:90 #, fuzzy msgid "List installed kernels" msgstr "Lista tillgängliga kärnor" -#: Utility/Gtk/GtkHelper.vala:272 +#: src/Utility/Gtk/GtkHelper.vala:272 msgid "Missing Icon" msgstr "Saknad ikon" -#: Gtk/MainWindow.vala:368 +#: src/Gtk/MainWindow.vala:368 msgid "Multiple Kernels Selected" msgstr "Flera kärnor markerade" -#: Console/AppConsole.vala:293 +#: src/Console/AppConsole.vala:293 msgid "Multiple kernels selected for installation. Select only one." msgstr "Flera kärnor valda för installation. Välj endast en." -#: Utility/Gtk/CustomMessageDialog.vala:177 +#: src/Utility/Gtk/CustomMessageDialog.vala:177 msgid "No" msgstr "Nej" -#: Gtk/MainWindow.vala:350 Gtk/MainWindow.vala:547 Gtk/MainWindow.vala:683 +#: src/Gtk/MainWindow.vala:350 src/Gtk/MainWindow.vala:547 +#: src/Gtk/MainWindow.vala:683 msgid "No Internet" msgstr "Inget internet" -#: Console/AppConsole.vala:287 Console/AppConsole.vala:324 +#: src/Console/AppConsole.vala:287 src/Console/AppConsole.vala:324 msgid "No kernels specified" msgstr "" -#: Common/LinuxKernel.vala:784 Console/AppConsole.vala:374 -#: Console/AppConsole.vala:432 Gtk/MainWindow.vala:793 +#: src/Common/LinuxKernel.vala:784 src/Console/AppConsole.vala:374 +#: src/Console/AppConsole.vala:432 src/Gtk/MainWindow.vala:793 msgid "No updates found" msgstr "Inga uppdateringar hittades" -#: Gtk/MainWindow.vala:371 Gtk/MainWindow.vala:382 +#: src/Gtk/MainWindow.vala:371 src/Gtk/MainWindow.vala:382 msgid "Not Selected" msgstr "Inte vald" -#: Gtk/SettingsDialog.vala:66 +#: src/Gtk/SettingsDialog.vala:66 msgid "Notification" msgstr "Avisering" -#: Gtk/SettingsDialog.vala:73 +#: src/Gtk/SettingsDialog.vala:73 msgid "Notify if a major release is available" msgstr "Meddela om en ny (stor) uppdatering finns tillgänglig" -#: Gtk/SettingsDialog.vala:84 +#: src/Gtk/SettingsDialog.vala:84 msgid "Notify if a point release is available" msgstr "Meddela om en ny (mindre) uppdatering finns tillgänglig" -#: Common/LinuxKernel.vala:1246 Utility/Gtk/CustomMessageDialog.vala:167 -#: Utility/Gtk/CustomMessageDialog.vala:171 Utility/Gtk/GtkHelper.vala:121 +#: src/Common/LinuxKernel.vala:1246 +#: src/Utility/Gtk/CustomMessageDialog.vala:167 +#: src/Utility/Gtk/CustomMessageDialog.vala:171 +#: src/Utility/Gtk/GtkHelper.vala:121 #, c-format msgid "OK" msgstr "OK" -#: Console/AppConsole.vala:100 Gtk/AppGtk.vala:181 +#: src/Console/AppConsole.vala:100 src/Gtk/AppGtk.vala:181 msgid "Options" msgstr "Alternativ" -#: Gtk/SettingsDialog.vala:191 +#: src/Gtk/SettingsDialog.vala:191 msgid "Other" msgstr "" -#: Common/LinuxKernel.vala:1060 +#: src/Common/LinuxKernel.vala:1060 #, c-format msgid "Packages Available" msgstr "Tillgängliga paket" -#: Common/LinuxKernel.vala:1068 +#: src/Common/LinuxKernel.vala:1068 #, c-format msgid "Packages Installed" msgstr "Installerade paket" -#: Common/Main.vala:106 +#: src/Common/Main.vala:106 msgid "Please install required packages and try again" msgstr "Installera nödvändiga paket och försök igen" -#: Common/LinuxKernel.vala:1322 +#: src/Common/LinuxKernel.vala:1322 msgid "Preparing to remove selected kernels" msgstr "Förbereder borttagning av markerade kärnor" -#: Gtk/AppGtk.vala:183 +#: src/Gtk/AppGtk.vala:183 msgid "Print debug information" msgstr "Skriv ut felsökningsinformation" -#: Gtk/MainWindow.vala:425 +#: src/Gtk/MainWindow.vala:425 msgid "Purge" msgstr "Rensa" -#: Gtk/MainWindow.vala:343 +#: src/Gtk/MainWindow.vala:343 msgid "Refresh" msgstr "Uppdatera" -#: Gtk/MainWindow.vala:566 +#: src/Gtk/MainWindow.vala:566 msgid "Refreshing..." msgstr "Uppdaterar ..." -#: Gtk/MainWindow.vala:376 +#: src/Gtk/MainWindow.vala:376 msgid "Remove" msgstr "Ta bort" -#: Console/AppConsole.vala:97 Console/AppConsole.vala:102 +#: src/Console/AppConsole.vala:97 src/Console/AppConsole.vala:102 msgid "Remove files from application cache" msgstr "Ta bort filer från program-cachen" -#: Console/AppConsole.vala:95 Gtk/MainWindow.vala:426 +#: src/Console/AppConsole.vala:95 src/Gtk/MainWindow.vala:426 msgid "Remove installed kernels older than running kernel" msgstr "Ta bort installerade kärnor äldre än den som körs" -#: Console/AppConsole.vala:94 +#: src/Console/AppConsole.vala:94 #, fuzzy msgid "Remove specified kernel" msgstr "Ta bort specificerad kärna" -#: Console/AppConsole.vala:201 Console/AppConsole.vala:315 -#: Console/AppConsole.vala:344 +#: src/Console/AppConsole.vala:201 src/Console/AppConsole.vala:315 +#: src/Console/AppConsole.vala:344 msgid "Run '" msgstr "" -#: Console/AppConsole.vala:119 +#: src/Console/AppConsole.vala:119 msgid "Run the application as admin with pkexec or sudo." msgstr "Kör programmet som administratör, med pkexec eller sudo." -#: Common/LinuxKernel.vala:1198 Gtk/MainWindow.vala:208 +#: src/Common/LinuxKernel.vala:1198 src/Gtk/MainWindow.vala:208 msgid "Running" msgstr "Körs" -#: Gtk/MainWindow.vala:368 +#: src/Gtk/MainWindow.vala:368 msgid "Select a single kernel to install" msgstr "Välj en enstaka kärna att installera" -#: Gtk/MainWindow.vala:371 +#: src/Gtk/MainWindow.vala:371 msgid "Select the kernel to install" msgstr "Välj kärna för installation" -#: Gtk/MainWindow.vala:382 +#: src/Gtk/MainWindow.vala:382 msgid "Select the kernels to remove" msgstr "Välj kärnor för borttagning" -#: Common/LinuxKernel.vala:1317 +#: src/Common/LinuxKernel.vala:1317 msgid "" "Selected kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -488,67 +498,67 @@ msgstr "" "Denna kärna används för tillfället och kan inte tas bort.\n" "Installera en annan kärna innan du tar bort den här." -#: Gtk/MainWindow.vala:475 Gtk/SettingsDialog.vala:56 +#: src/Gtk/MainWindow.vala:475 src/Gtk/SettingsDialog.vala:56 msgid "Settings" msgstr "Inställningar" -#: Gtk/UpdateNotificationWindow.vala:157 +#: src/Gtk/UpdateNotificationWindow.vala:157 msgid "Show" msgstr "Visa" -#: Gtk/AppGtk.vala:184 +#: src/Gtk/AppGtk.vala:184 msgid "Show all options" msgstr "Visa alla alternativ" -#: Gtk/SettingsDialog.vala:95 +#: src/Gtk/SettingsDialog.vala:95 msgid "Show notification bubble on desktop" msgstr "Visa aviseringsruta på skrivbordet" -#: Gtk/SettingsDialog.vala:106 +#: src/Gtk/SettingsDialog.vala:106 msgid "Show notification dialog" msgstr "Visa aviseringsdialog" -#: Console/AppConsole.vala:98 +#: src/Console/AppConsole.vala:98 #, fuzzy msgid "Show unstable and RC releases" msgstr "Dölj instabila- och RC-publiceringar" -#: Gtk/SettingsDialog.vala:199 +#: src/Gtk/SettingsDialog.vala:199 #, fuzzy msgid "Skip internet connection check" msgstr "Internetuppkopplingen är inte aktiv" -#: Gtk/MainWindow.vala:196 +#: src/Gtk/MainWindow.vala:196 msgid "Status" msgstr "Status" -#: Utility/TeeJee.Process.vala:512 +#: src/Utility/TeeJee.Process.vala:512 msgid "Stopped" msgstr "Stoppad" -#: Console/AppConsole.vala:83 Gtk/AppGtk.vala:179 +#: src/Console/AppConsole.vala:83 src/Gtk/AppGtk.vala:179 msgid "Syntax" msgstr "Syntax" -#: Console/AppConsole.vala:207 Gtk/AppGtk.vala:111 +#: src/Console/AppConsole.vala:207 src/Gtk/AppGtk.vala:111 msgid "Temp" msgstr "" -#: Common/LinuxKernel.vala:730 +#: src/Common/LinuxKernel.vala:730 #, c-format msgid "The following kernels will be removed:" msgstr "" -#: Utility/Gtk/AboutWindow.vala:330 +#: src/Utility/Gtk/AboutWindow.vala:330 #, c-format msgid "Third Party Tools" msgstr "Tredjepartsverktyg" -#: Common/LinuxKernel.vala:1269 Gtk/MainWindow.vala:678 +#: src/Common/LinuxKernel.vala:1269 src/Gtk/MainWindow.vala:678 msgid "This kernel is already installed." msgstr "Denna kärna är redan installerad" -#: Common/LinuxKernel.vala:1373 +#: src/Common/LinuxKernel.vala:1373 msgid "" "This kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -556,44 +566,44 @@ msgstr "" "Denna kärna används för tillfället och kan inte tas bort.\n" "Installera en annan kärna innan du tar bort den här." -#: Utility/Gtk/AboutWindow.vala:346 +#: src/Utility/Gtk/AboutWindow.vala:346 #, c-format msgid "Translators" msgstr "Översättare" -#: Common/LinuxKernel.vala:1357 Common/LinuxKernel.vala:1413 +#: src/Common/LinuxKernel.vala:1357 src/Common/LinuxKernel.vala:1413 msgid "Un-install completed" msgstr "Avinstallation slutförd" -#: Common/LinuxKernel.vala:1360 Common/LinuxKernel.vala:1416 +#: src/Common/LinuxKernel.vala:1360 src/Common/LinuxKernel.vala:1416 msgid "Un-install completed with errors" msgstr "Avinstallation slutförd med fel" -#: Console/AppConsole.vala:199 Gtk/AppGtk.vala:166 +#: src/Console/AppConsole.vala:199 src/Gtk/AppGtk.vala:166 msgid "Unknown option" msgstr "Okänt alternativ" -#: Gtk/MainWindow.vala:179 +#: src/Gtk/MainWindow.vala:179 msgid "Version" msgstr "Version" -#: Utility/TeeJee.Logging.vala:89 +#: src/Utility/TeeJee.Logging.vala:89 msgid "W" msgstr "V" -#: Gtk/SettingsDialog.vala:156 +#: src/Gtk/SettingsDialog.vala:156 msgid "Week(s)" msgstr "Veckor" -#: Utility/Gtk/CustomMessageDialog.vala:176 +#: src/Utility/Gtk/CustomMessageDialog.vala:176 msgid "Yes" msgstr "Ja" -#: Utility/AppLock.vala:56 +#: src/Utility/AppLock.vala:56 msgid "[Warning] Deleted invalid lock" msgstr "[Varning] Tog bort ogiltigt lås" -#: Gtk/SettingsDialog.vala:226 +#: src/Gtk/SettingsDialog.vala:226 msgid "seconds" msgstr "" diff --git a/po/ukuu-tr.po b/po/tr.po similarity index 69% rename from po/ukuu-tr.po rename to po/tr.po index c0c25e88..52eb99b5 100644 --- a/po/ukuu-tr.po +++ b/po/tr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu\n" "Report-Msgid-Bugs-To: bw.aljex@gmail.com\n" -"POT-Creation-Date: 2019-03-13 17:28-0400\n" +"POT-Creation-Date: 2019-03-16 04:27-0400\n" "PO-Revision-Date: 2019-03-12 19:35+0300\n" "Last-Translator: Gökhan GÖKKAYA \n" "Language-Team: Turkish\n" @@ -18,462 +18,472 @@ msgstr "" "X-Generator: Poedit 2.0.6\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: Gtk/MainWindow.vala:496 +#: src/Gtk/MainWindow.vala:496 msgid "About" msgstr "Hakkında" -#: Console/AppConsole.vala:116 +#: src/Console/AppConsole.vala:116 msgid "Admin access is required for running this application." msgstr "Bu uygulamayı çalıştırmak için yönetici izni gerekiyor." -#: Utility/AppLock.vala:51 +#: src/Utility/AppLock.vala:51 msgid "Another instance of this application is running" msgstr "Bu uygulamanın başka bir örneği çalışıyor" -#: Common/LinuxKernel.vala:105 +#: src/Common/LinuxKernel.vala:105 msgid "Architecture" msgstr "Sistem mimarisi" -#: Utility/Gtk/AboutWindow.vala:338 +#: src/Utility/Gtk/AboutWindow.vala:338 #, c-format msgid "Artists" msgstr "Sanatçılar" -#: Console/AppConsole.vala:103 +#: src/Console/AppConsole.vala:103 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "Tüm istemler için Evet'i kabul edin (etkileşimsiz kip)" -#: Utility/Gtk/AboutWindow.vala:314 +#: src/Utility/Gtk/AboutWindow.vala:314 #, c-format msgid "Authors" msgstr "Yazar" -#: Common/LinuxKernel.vala:1181 +#: src/Common/LinuxKernel.vala:1181 msgid "Available Kernels" msgstr "Mevcut Çekirdekler" -#: Utility/Gtk/AboutWindow.vala:285 +#: src/Utility/Gtk/AboutWindow.vala:285 msgid "Back" msgstr "Geri" -#: Console/AppConsole.vala:206 Gtk/AppGtk.vala:110 +#: src/Console/AppConsole.vala:206 src/Gtk/AppGtk.vala:110 msgid "Cache" msgstr "Önbellek" -#: Gtk/ProgressWindow.vala:143 Gtk/TerminalWindow.vala:151 -#: Gtk/UpdateNotificationWindow.vala:167 -#: Utility/Gtk/CustomMessageDialog.vala:172 Utility/Gtk/GtkHelper.vala:122 +#: src/Gtk/ProgressWindow.vala:143 src/Gtk/TerminalWindow.vala:151 +#: src/Gtk/UpdateNotificationWindow.vala:167 +#: src/Utility/Gtk/CustomMessageDialog.vala:172 +#: src/Utility/Gtk/GtkHelper.vala:122 msgid "Cancel" msgstr "İptal" -#: Gtk/MainWindow.vala:464 +#: src/Gtk/MainWindow.vala:464 msgid "Changes" msgstr "Değişiklikler" -#: Gtk/SettingsDialog.vala:121 +#: src/Gtk/SettingsDialog.vala:121 msgid "Check every" msgstr "Kontrol aralığı" -#: Console/AppConsole.vala:87 +#: src/Console/AppConsole.vala:87 msgid "Check for kernel updates" msgstr "Çekirdek güncellemelerini kontrol et" -#: Console/AppConsole.vala:88 +#: src/Console/AppConsole.vala:88 msgid "Check for kernel updates and notify current user" msgstr "Çekirdek güncellemelerini kontrol et ve mevcut kullanıcıyı uyar" -#: Gtk/TerminalWindow.vala:161 Utility/Gtk/AboutWindow.vala:295 +#: src/Gtk/TerminalWindow.vala:161 src/Utility/Gtk/AboutWindow.vala:295 msgid "Close" msgstr "Kapat" -#: Console/AppConsole.vala:343 +#: src/Console/AppConsole.vala:343 msgid "Command not specified" msgstr "Komut belirtilmedi" -#: Console/AppConsole.vala:85 +#: src/Console/AppConsole.vala:85 msgid "Commands" msgstr "Komutlar" -#: Common/Main.vala:105 +#: src/Common/Main.vala:105 msgid "Commands listed below are not available on this system" msgstr "Aşağıda listelenen komutlar bu sistemde mevcut değil" -#: Common/LinuxKernel.vala:737 +#: src/Common/LinuxKernel.vala:737 #, c-format msgid "Continue ?" msgstr "Devam et ?" -#: Utility/Gtk/AboutWindow.vala:322 +#: src/Utility/Gtk/AboutWindow.vala:322 #, c-format msgid "Contributions" msgstr "Destek verenler" -#: Common/LinuxKernel.vala:721 +#: src/Common/LinuxKernel.vala:721 msgid "Could not find any kernels to remove" msgstr "Kaldırılacak çekirdek bulunamadı" -#: Console/AppConsole.vala:311 Gtk/MainWindow.vala:100 +#: src/Console/AppConsole.vala:311 src/Gtk/MainWindow.vala:100 msgid "Could not find requested version" msgstr "İstenen sürüm bulunamadı" -#: Common/LinuxKernel.vala:715 +#: src/Common/LinuxKernel.vala:715 msgid "Could not find running kernel in list!" msgstr "İstenen sürüm bulunamadı!" -#: Utility/TeeJee.FileSystem.vala:349 Utility/TeeJee.FileSystem.vala:352 -#: Utility/TeeJee.FileSystem.vala:378 +#: src/Utility/TeeJee.FileSystem.vala:349 +#: src/Utility/TeeJee.FileSystem.vala:352 +#: src/Utility/TeeJee.FileSystem.vala:378 msgid "Created directory" msgstr "Dizin oluşturuldu" -#: Utility/Gtk/AboutWindow.vala:272 Utility/Gtk/AboutWindow.vala:289 +#: src/Utility/Gtk/AboutWindow.vala:272 src/Utility/Gtk/AboutWindow.vala:289 msgid "Credits" msgstr "Katkı sağlayanlar" -#: Gtk/SettingsDialog.vala:154 +#: src/Gtk/SettingsDialog.vala:154 msgid "Day(s)" msgstr "Gün" -#: Utility/TeeJee.FileSystem.vala:375 +#: src/Utility/TeeJee.FileSystem.vala:375 msgid "Deleted directory" msgstr "Silinen dizin" -#: Utility/TeeJee.FileSystem.vala:509 +#: src/Utility/TeeJee.FileSystem.vala:509 msgid "Dir not found" msgstr "Dizin bulunamadı" -#: Gtk/SettingsDialog.vala:161 +#: src/Gtk/SettingsDialog.vala:161 msgid "Display" msgstr "Gösterim" -#: Common/LinuxKernel.vala:91 +#: src/Common/LinuxKernel.vala:91 msgid "Distribution" msgstr "Dağıtım" -#: Utility/Gtk/AboutWindow.vala:354 +#: src/Utility/Gtk/AboutWindow.vala:354 #, c-format msgid "Documenters" msgstr "Belgelendirenler" -#: Console/AppConsole.vala:96 +#: src/Console/AppConsole.vala:96 msgid "Download packages for specified kernel" msgstr "Belirtilen çekirdek için paketleri indir" -#: Common/LinuxKernel.vala:1227 +#: src/Common/LinuxKernel.vala:1227 #, c-format msgid "Downloading" msgstr "İndiriliyor" -#: Utility/TeeJee.Logging.vala:89 +#: src/Utility/TeeJee.Logging.vala:89 msgid "E" msgstr "H" -#: Common/LinuxKernel.vala:1255 +#: src/Common/LinuxKernel.vala:1255 #, c-format msgid "ERROR" msgstr "HATA" -#: Utility/Gtk/GtkHelper.vala:18 +#: src/Utility/Gtk/GtkHelper.vala:18 msgid "Error" msgstr "Hata" -#: Utility/TeeJee.FileSystem.vala:221 +#: src/Utility/TeeJee.FileSystem.vala:221 msgid "Failed to copy file" msgstr "Dosya kopyalama başarısız" -#: Utility/TeeJee.FileSystem.vala:359 +#: src/Utility/TeeJee.FileSystem.vala:359 msgid "Failed to create dir" msgstr "Dizin oluşturma başarısız" -#: Utility/TeeJee.FileSystem.vala:106 +#: src/Utility/TeeJee.FileSystem.vala:106 msgid "Failed to delete file" msgstr "Dosya silme başarısız" -#: Utility/TeeJee.FileSystem.vala:253 +#: src/Utility/TeeJee.FileSystem.vala:253 msgid "Failed to move file" msgstr "Dosya taşıma başarısız" -#: Utility/TeeJee.FileSystem.vala:162 +#: src/Utility/TeeJee.FileSystem.vala:162 msgid "Failed to read file" msgstr "Dosya okuma başarısız" -#: Utility/TeeJee.FileSystem.vala:197 +#: src/Utility/TeeJee.FileSystem.vala:197 msgid "Failed to write file" msgstr "Dosya yazma başarısız" -#: Common/LinuxKernel.vala:396 +#: src/Common/LinuxKernel.vala:396 msgid "Fetching index from kernel.ubuntu.com..." msgstr "İçerik listesi kernel.ubuntu.com alanından alınıyor..." -#: Common/LinuxKernel.vala:353 +#: src/Common/LinuxKernel.vala:353 msgid "Fetching index..." msgstr "İçerik dizini alınıyor..." -#: Utility/TeeJee.FileSystem.vala:210 Utility/TeeJee.FileSystem.vala:213 +#: src/Utility/TeeJee.FileSystem.vala:210 +#: src/Utility/TeeJee.FileSystem.vala:213 msgid "File copied" msgstr "Dosya kopyalandı" -#: Utility/TeeJee.FileSystem.vala:97 Utility/TeeJee.FileSystem.vala:100 +#: src/Utility/TeeJee.FileSystem.vala:97 src/Utility/TeeJee.FileSystem.vala:100 msgid "File deleted" msgstr "Dosya silindi" -#: Utility/TeeJee.FileSystem.vala:662 Utility/TeeJee.FileSystem.vala:711 +#: src/Utility/TeeJee.FileSystem.vala:662 +#: src/Utility/TeeJee.FileSystem.vala:711 msgid "File is missing" msgstr "Dosya eksik" -#: Utility/TeeJee.FileSystem.vala:245 Utility/TeeJee.FileSystem.vala:248 +#: src/Utility/TeeJee.FileSystem.vala:245 +#: src/Utility/TeeJee.FileSystem.vala:248 msgid "File moved" msgstr "Dosya taşındı" -#: Utility/TeeJee.FileSystem.vala:231 Utility/TeeJee.FileSystem.vala:538 +#: src/Utility/TeeJee.FileSystem.vala:231 +#: src/Utility/TeeJee.FileSystem.vala:538 msgid "File not found" msgstr "Dosya bulunamadı" -#: Common/Package.vala:133 Common/Package.vala:195 +#: src/Common/Package.vala:133 src/Common/Package.vala:195 #, c-format msgid "File not found: %s" msgstr "Şu dosya bulunamadı: %s" -#: Utility/TeeJee.FileSystem.vala:187 Utility/TeeJee.FileSystem.vala:190 +#: src/Utility/TeeJee.FileSystem.vala:187 +#: src/Utility/TeeJee.FileSystem.vala:190 msgid "File saved" msgstr "Dosya kaydedildi" -#: Gtk/SettingsDialog.vala:180 +#: src/Gtk/SettingsDialog.vala:180 msgid "Hide kernels older than 4.0" msgstr "4.0 sürümden düşük çekirdekleri gizle" -#: Gtk/SettingsDialog.vala:169 +#: src/Gtk/SettingsDialog.vala:169 msgid "Hide unstable and RC releases" msgstr "Kararsız ve RC sürümleri gizle" -#: Gtk/SettingsDialog.vala:152 +#: src/Gtk/SettingsDialog.vala:152 msgid "Hour(s)" msgstr "Saat" -#: Gtk/UpdateNotificationWindow.vala:168 +#: src/Gtk/UpdateNotificationWindow.vala:168 msgid "Ignore this update" msgstr "Bu güncellemeyi yoksay" -#: Common/LinuxKernel.vala:259 +#: src/Common/LinuxKernel.vala:259 msgid "Index is fresh" msgstr "İçerik listesi güncel" -#: Common/LinuxKernel.vala:256 +#: src/Common/LinuxKernel.vala:256 msgid "Index is stale" msgstr "İçerik listesi eski" -#: Gtk/MainWindow.vala:359 Gtk/UpdateNotificationWindow.vala:147 +#: src/Gtk/MainWindow.vala:359 src/Gtk/UpdateNotificationWindow.vala:147 msgid "Install" msgstr "Kur" -#: Common/LinuxKernel.vala:794 +#: src/Common/LinuxKernel.vala:794 #, c-format msgid "Install Linux v%s ? (y/n): " msgstr "Linux v%s Kur ? (e/h): " -#: Console/AppConsole.vala:91 +#: src/Console/AppConsole.vala:91 msgid "Install latest mainline kernel" msgstr "En son mainline çekirdeğini kur" -#: Console/AppConsole.vala:92 +#: src/Console/AppConsole.vala:92 msgid "Install latest point update for current series" msgstr "Mevcut çekirdek serisi için en güncelleme noktasını kur" -#: Console/AppConsole.vala:93 +#: src/Console/AppConsole.vala:93 msgid "Install specified mainline kernel" msgstr "Belirtilen mainline çekirdeğini kur" -#: Gtk/UpdateNotificationWindow.vala:148 +#: src/Gtk/UpdateNotificationWindow.vala:148 msgid "Install this kernel" msgstr "Bu çekirdeği kur" -#: Common/LinuxKernel.vala:1301 +#: src/Common/LinuxKernel.vala:1301 msgid "Installation completed with errors" msgstr "Kurulum hatalarla tamamlandı" -#: Common/LinuxKernel.vala:1298 +#: src/Common/LinuxKernel.vala:1298 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "Kurulum tamamlandı. Yeni çekirdeği kullanmak için yeniden başlatma gerekiyor." -#: Common/LinuxKernel.vala:1198 Gtk/MainWindow.vala:208 +#: src/Common/LinuxKernel.vala:1198 src/Gtk/MainWindow.vala:208 msgid "Installed" msgstr "Kurulu" -#: Gtk/MainWindow.vala:350 Gtk/MainWindow.vala:547 Gtk/MainWindow.vala:683 -#: Utility/TeeJee.System.vala:281 +#: src/Gtk/MainWindow.vala:350 src/Gtk/MainWindow.vala:547 +#: src/Gtk/MainWindow.vala:683 src/Utility/TeeJee.System.vala:281 msgid "Internet connection is not active" msgstr "İnternet bağlantısı aktif değil" -#: Gtk/SettingsDialog.vala:212 +#: src/Gtk/SettingsDialog.vala:212 #, fuzzy msgid "Internet connection timeout in " msgstr "İnternet bağlantısı aktif değil " -#: Gtk/MainWindow.vala:150 +#: src/Gtk/MainWindow.vala:150 msgid "Kernel" msgstr "Çekirdek" -#: Gtk/MainWindow.vala:531 +#: src/Gtk/MainWindow.vala:531 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Ubuntu tabanlı dağıtımlar için çekirdek güncelleme aracı" -#: Common/LinuxKernel.vala:776 Console/AppConsole.vala:369 +#: src/Common/LinuxKernel.vala:776 src/Console/AppConsole.vala:369 #, c-format msgid "Latest point update" msgstr "Son güncelleme noktası" -#: Common/LinuxKernel.vala:765 Console/AppConsole.vala:362 +#: src/Common/LinuxKernel.vala:765 src/Console/AppConsole.vala:362 #, c-format msgid "Latest update" msgstr "Son güncelleme" -#: Console/AppConsole.vala:89 +#: src/Console/AppConsole.vala:89 msgid "List all available mainline kernels" msgstr "Tüm mainline çekirdeklerini listele" -#: Gtk/UpdateNotificationWindow.vala:158 +#: src/Gtk/UpdateNotificationWindow.vala:158 msgid "List available kernels" msgstr "Tüm çekirdekleri listele" -#: Console/AppConsole.vala:90 +#: src/Console/AppConsole.vala:90 msgid "List installed kernels" msgstr "Kurulu çekirdekleri listele" -#: Utility/Gtk/GtkHelper.vala:272 +#: src/Utility/Gtk/GtkHelper.vala:272 msgid "Missing Icon" msgstr "Eksik Simge" -#: Gtk/MainWindow.vala:368 +#: src/Gtk/MainWindow.vala:368 msgid "Multiple Kernels Selected" msgstr "Çoklu Çekirdek Seçildi" -#: Console/AppConsole.vala:293 +#: src/Console/AppConsole.vala:293 msgid "Multiple kernels selected for installation. Select only one." msgstr "Kurulum için çoklu çekirdek seçildi. Sadece bir tane seçiniz." -#: Utility/Gtk/CustomMessageDialog.vala:177 +#: src/Utility/Gtk/CustomMessageDialog.vala:177 msgid "No" msgstr "Hayır" -#: Gtk/MainWindow.vala:350 Gtk/MainWindow.vala:547 Gtk/MainWindow.vala:683 +#: src/Gtk/MainWindow.vala:350 src/Gtk/MainWindow.vala:547 +#: src/Gtk/MainWindow.vala:683 msgid "No Internet" msgstr "İnternet Yok" -#: Console/AppConsole.vala:287 Console/AppConsole.vala:324 +#: src/Console/AppConsole.vala:287 src/Console/AppConsole.vala:324 msgid "No kernels specified" msgstr "Belirtilen çekirdek yok" -#: Common/LinuxKernel.vala:784 Console/AppConsole.vala:374 -#: Console/AppConsole.vala:432 Gtk/MainWindow.vala:793 +#: src/Common/LinuxKernel.vala:784 src/Console/AppConsole.vala:374 +#: src/Console/AppConsole.vala:432 src/Gtk/MainWindow.vala:793 msgid "No updates found" msgstr "Güncelleme bulunamadı" -#: Gtk/MainWindow.vala:371 Gtk/MainWindow.vala:382 +#: src/Gtk/MainWindow.vala:371 src/Gtk/MainWindow.vala:382 msgid "Not Selected" msgstr "Seçilen Yok" -#: Gtk/SettingsDialog.vala:66 +#: src/Gtk/SettingsDialog.vala:66 msgid "Notification" msgstr "Bildirim" -#: Gtk/SettingsDialog.vala:73 +#: src/Gtk/SettingsDialog.vala:73 msgid "Notify if a major release is available" msgstr "Ana sürüm mevcutsa bildir" -#: Gtk/SettingsDialog.vala:84 +#: src/Gtk/SettingsDialog.vala:84 msgid "Notify if a point release is available" msgstr "Ara sürüm mevcutsa bildir" -#: Common/LinuxKernel.vala:1246 Utility/Gtk/CustomMessageDialog.vala:167 -#: Utility/Gtk/CustomMessageDialog.vala:171 Utility/Gtk/GtkHelper.vala:121 +#: src/Common/LinuxKernel.vala:1246 +#: src/Utility/Gtk/CustomMessageDialog.vala:167 +#: src/Utility/Gtk/CustomMessageDialog.vala:171 +#: src/Utility/Gtk/GtkHelper.vala:121 #, c-format msgid "OK" msgstr "TAMAM" -#: Console/AppConsole.vala:100 Gtk/AppGtk.vala:181 +#: src/Console/AppConsole.vala:100 src/Gtk/AppGtk.vala:181 msgid "Options" msgstr "Seçenekler" -#: Gtk/SettingsDialog.vala:191 +#: src/Gtk/SettingsDialog.vala:191 msgid "Other" msgstr "Diğer" -#: Common/LinuxKernel.vala:1060 +#: src/Common/LinuxKernel.vala:1060 #, c-format msgid "Packages Available" msgstr "Mevcut Paketler" -#: Common/LinuxKernel.vala:1068 +#: src/Common/LinuxKernel.vala:1068 #, c-format msgid "Packages Installed" msgstr "Paketler Kuruldu" -#: Common/Main.vala:106 +#: src/Common/Main.vala:106 msgid "Please install required packages and try again" msgstr "Lütfen gerekli paketleri yükleyin ve tekrar deneyin" -#: Common/LinuxKernel.vala:1322 +#: src/Common/LinuxKernel.vala:1322 msgid "Preparing to remove selected kernels" msgstr "Seçilen çekirdekleri kaldırmak için hazırlanıyor" -#: Gtk/AppGtk.vala:183 +#: src/Gtk/AppGtk.vala:183 msgid "Print debug information" msgstr "Hata ayıklama bilgisini yazdır" -#: Gtk/MainWindow.vala:425 +#: src/Gtk/MainWindow.vala:425 msgid "Purge" msgstr "Kaldır" -#: Gtk/MainWindow.vala:343 +#: src/Gtk/MainWindow.vala:343 msgid "Refresh" msgstr "Yenile" -#: Gtk/MainWindow.vala:566 +#: src/Gtk/MainWindow.vala:566 msgid "Refreshing..." msgstr "Yenileniyor..." -#: Gtk/MainWindow.vala:376 +#: src/Gtk/MainWindow.vala:376 msgid "Remove" msgstr "Kaldır" -#: Console/AppConsole.vala:97 Console/AppConsole.vala:102 +#: src/Console/AppConsole.vala:97 src/Console/AppConsole.vala:102 msgid "Remove files from application cache" msgstr "Dosyaları uygulama önbelleğinden sil" -#: Console/AppConsole.vala:95 Gtk/MainWindow.vala:426 +#: src/Console/AppConsole.vala:95 src/Gtk/MainWindow.vala:426 msgid "Remove installed kernels older than running kernel" msgstr "Çalışan çekirdekten eski olan kurulu çekirdekleri kaldır" -#: Console/AppConsole.vala:94 +#: src/Console/AppConsole.vala:94 msgid "Remove specified kernel" msgstr "Belirtilen çekirdeği kaldır" -#: Console/AppConsole.vala:201 Console/AppConsole.vala:315 -#: Console/AppConsole.vala:344 +#: src/Console/AppConsole.vala:201 src/Console/AppConsole.vala:315 +#: src/Console/AppConsole.vala:344 msgid "Run '" msgstr "Çalıştır '" -#: Console/AppConsole.vala:119 +#: src/Console/AppConsole.vala:119 msgid "Run the application as admin with pkexec or sudo." msgstr "Bu uygulamayı pkexec yada sudo ile yönetici haklarıyla çalıştırın." -#: Common/LinuxKernel.vala:1198 Gtk/MainWindow.vala:208 +#: src/Common/LinuxKernel.vala:1198 src/Gtk/MainWindow.vala:208 msgid "Running" msgstr "Çalışıyor" -#: Gtk/MainWindow.vala:368 +#: src/Gtk/MainWindow.vala:368 msgid "Select a single kernel to install" msgstr "Kurulum için tek çekirdek seçin" -#: Gtk/MainWindow.vala:371 +#: src/Gtk/MainWindow.vala:371 msgid "Select the kernel to install" msgstr "Kurulum için çekirdek seçin" -#: Gtk/MainWindow.vala:382 +#: src/Gtk/MainWindow.vala:382 msgid "Select the kernels to remove" msgstr "Kaldırma için çekirdek seçin" -#: Common/LinuxKernel.vala:1317 +#: src/Common/LinuxKernel.vala:1317 msgid "" "Selected kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -481,65 +491,65 @@ msgstr "" "Seçilen çekirdek şu anda çalışıyor ve kaldırılamıyor.\n" " Bunu kaldırmadan önce başka bir çekirdek yükleyin." -#: Gtk/MainWindow.vala:475 Gtk/SettingsDialog.vala:56 +#: src/Gtk/MainWindow.vala:475 src/Gtk/SettingsDialog.vala:56 msgid "Settings" msgstr "Ayarlar" -#: Gtk/UpdateNotificationWindow.vala:157 +#: src/Gtk/UpdateNotificationWindow.vala:157 msgid "Show" msgstr "Göster" -#: Gtk/AppGtk.vala:184 +#: src/Gtk/AppGtk.vala:184 msgid "Show all options" msgstr "Tüm seçenekleri göster" -#: Gtk/SettingsDialog.vala:95 +#: src/Gtk/SettingsDialog.vala:95 msgid "Show notification bubble on desktop" msgstr "Masaüstünde bildirim baloncuğu göster" -#: Gtk/SettingsDialog.vala:106 +#: src/Gtk/SettingsDialog.vala:106 msgid "Show notification dialog" msgstr "Bildirim iletişimini göster" -#: Console/AppConsole.vala:98 +#: src/Console/AppConsole.vala:98 msgid "Show unstable and RC releases" msgstr "Kararsız ve RC sürümleri göster" -#: Gtk/SettingsDialog.vala:199 +#: src/Gtk/SettingsDialog.vala:199 msgid "Skip internet connection check" msgstr "İnternet bağlantı kontrolünü atla" -#: Gtk/MainWindow.vala:196 +#: src/Gtk/MainWindow.vala:196 msgid "Status" msgstr "Durum" -#: Utility/TeeJee.Process.vala:512 +#: src/Utility/TeeJee.Process.vala:512 msgid "Stopped" msgstr "Durduruldu" -#: Console/AppConsole.vala:83 Gtk/AppGtk.vala:179 +#: src/Console/AppConsole.vala:83 src/Gtk/AppGtk.vala:179 msgid "Syntax" msgstr "Sözdizimi" -#: Console/AppConsole.vala:207 Gtk/AppGtk.vala:111 +#: src/Console/AppConsole.vala:207 src/Gtk/AppGtk.vala:111 msgid "Temp" msgstr "Geçici" -#: Common/LinuxKernel.vala:730 +#: src/Common/LinuxKernel.vala:730 #, fuzzy, c-format msgid "The following kernels will be removed:" msgstr "Aşağıdaki çekirdekler silinecek" -#: Utility/Gtk/AboutWindow.vala:330 +#: src/Utility/Gtk/AboutWindow.vala:330 #, c-format msgid "Third Party Tools" msgstr "Üçüncü Parti Araçlar" -#: Common/LinuxKernel.vala:1269 Gtk/MainWindow.vala:678 +#: src/Common/LinuxKernel.vala:1269 src/Gtk/MainWindow.vala:678 msgid "This kernel is already installed." msgstr "Bu çekirdek zaten kurulu." -#: Common/LinuxKernel.vala:1373 +#: src/Common/LinuxKernel.vala:1373 msgid "" "This kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -547,44 +557,44 @@ msgstr "" "Bu çekirdek şu anda çalışıyor ve bu sebeple kaldırılamaz.\n" "Bunu kaldırmadan önce başka bir çekirdek yükleyin." -#: Utility/Gtk/AboutWindow.vala:346 +#: src/Utility/Gtk/AboutWindow.vala:346 #, c-format msgid "Translators" msgstr "Çevirenler" -#: Common/LinuxKernel.vala:1357 Common/LinuxKernel.vala:1413 +#: src/Common/LinuxKernel.vala:1357 src/Common/LinuxKernel.vala:1413 msgid "Un-install completed" msgstr "Kaldırma tamamlandı" -#: Common/LinuxKernel.vala:1360 Common/LinuxKernel.vala:1416 +#: src/Common/LinuxKernel.vala:1360 src/Common/LinuxKernel.vala:1416 msgid "Un-install completed with errors" msgstr "Kaldırma hatalarla tamamlandı" -#: Console/AppConsole.vala:199 Gtk/AppGtk.vala:166 +#: src/Console/AppConsole.vala:199 src/Gtk/AppGtk.vala:166 msgid "Unknown option" msgstr "Bilinmeyen seçenek" -#: Gtk/MainWindow.vala:179 +#: src/Gtk/MainWindow.vala:179 msgid "Version" msgstr "Sürüm" -#: Utility/TeeJee.Logging.vala:89 +#: src/Utility/TeeJee.Logging.vala:89 msgid "W" msgstr "U" -#: Gtk/SettingsDialog.vala:156 +#: src/Gtk/SettingsDialog.vala:156 msgid "Week(s)" msgstr "Hafta" -#: Utility/Gtk/CustomMessageDialog.vala:176 +#: src/Utility/Gtk/CustomMessageDialog.vala:176 msgid "Yes" msgstr "Evet" -#: Utility/AppLock.vala:56 +#: src/Utility/AppLock.vala:56 msgid "[Warning] Deleted invalid lock" msgstr "[Uyarı] Geçersiz kilit silindi" -#: Gtk/SettingsDialog.vala:226 +#: src/Gtk/SettingsDialog.vala:226 msgid "seconds" msgstr "saniye" diff --git a/src/share/ukuu/images/general.svg b/share/mainline/images/general.svg similarity index 100% rename from src/share/ukuu/images/general.svg rename to share/mainline/images/general.svg diff --git a/src/share/ukuu/images/help-info.svg b/share/mainline/images/help-info.svg similarity index 100% rename from src/share/ukuu/images/help-info.svg rename to share/mainline/images/help-info.svg diff --git a/src/share/ukuu/images/tux-red.png b/share/mainline/images/tux-red.png similarity index 100% rename from src/share/ukuu/images/tux-red.png rename to share/mainline/images/tux-red.png diff --git a/src/share/ukuu/images/tux.png b/share/mainline/images/tux.png similarity index 100% rename from src/share/ukuu/images/tux.png rename to share/mainline/images/tux.png diff --git a/src/share/ukuu/images/tux.svg b/share/mainline/images/tux.svg similarity index 100% rename from src/share/ukuu/images/tux.svg rename to share/mainline/images/tux.svg diff --git a/src/share/ukuu/images/ubuntu-logo.png b/share/mainline/images/ubuntu-logo.png similarity index 100% rename from src/share/ukuu/images/ubuntu-logo.png rename to share/mainline/images/ubuntu-logo.png diff --git a/src/share/pixmaps/ukuu.svg b/share/pixmaps/mainline.svg similarity index 100% rename from src/share/pixmaps/ukuu.svg rename to share/pixmaps/mainline.svg diff --git a/src/share/polkit-1/actions/ukuu.policy.src b/share/polkit-1/actions/mainline.policy.src similarity index 100% rename from src/share/polkit-1/actions/ukuu.policy.src rename to share/polkit-1/actions/mainline.policy.src diff --git a/src/Makefile b/src/Makefile deleted file mode 100644 index 7700122d..00000000 --- a/src/Makefile +++ /dev/null @@ -1,122 +0,0 @@ -SHELL=/bin/bash -CFLAGS=--std=c99 - -prefix=/usr -bindir=$(prefix)/bin -sharedir=$(prefix)/share -localedir=$(sharedir)/locale -launcherdir=$(sharedir)/applications -polkitdir=$(sharedir)/polkit-1/actions -mandir=$(sharedir)/man -man1dir=$(mandir)/man1 -translations = es fr hr nl pl ru sv tr - -include ../BRANDING.mak -include miscs.mak - -vte_version = vte-2.91 - -################################################################################ - -branding_symbols = -X -D'BRANDING_SHORTNAME="${BRANDING_SHORTNAME}"' -X -D'BRANDING_LONGNAME="${BRANDING_LONGNAME}"' -X -D'BRANDING_VERSION="${BRANDING_VERSION}"' -X -D'BRANDING_AUTHORNAME="${BRANDING_AUTHORNAME}"' -X -D'BRANDING_AUTHOREMAIL="${BRANDING_AUTHOREMAIL}"' -X -D'BRANDING_WEBSITE="${BRANDING_WEBSITE}"' -X -D'GETTEXT_PACKAGE="${BRANDING_SHORTNAME}"' - -all: app app-gtk translations $(miscs) - -app-gtk: - valac ${branding_symbols} --Xcc="-lm" \ - --pkg glib-2.0 --pkg gio-unix-2.0 --pkg posix --pkg gtk+-3.0 --pkg gee-0.8 --pkg json-glib-1.0 --pkg ${vte_version} \ - Common/*.vala Gtk/*.vala Utility/*.vala Utility/Gtk/*.vala -o ${BRANDING_SHORTNAME}-gtk - -app: - valac ${branding_symbols} --Xcc="-lm" \ - --pkg glib-2.0 --pkg gio-unix-2.0 --pkg posix --pkg gee-0.8 --pkg json-glib-1.0 \ - Common/*.vala Console/*.vala Utility/*.vala -o ${BRANDING_SHORTNAME} - -# $(miscs) is a special case. -# We want these files to be regenerated any time either the matching *.src file OR ../BRANDING.mak changes. -# We do NOT want "make clean" to delete any of the $(miscs) files. Especially not debian/* -# "make deb" needs the files in debian/* to all be generated before running any deb packaging/building tools. -# And, those tools themselves run "make clean" along the way internally, -# so "make clean" should not delete the debian/* files at least. -$(miscs): %: %.src ../BRANDING.mak - sed -e 's/BRANDING_SHORTNAME/${BRANDING_SHORTNAME}/g' \ - -e ';s/BRANDING_LONGNAME/${BRANDING_LONGNAME}/g' \ - -e ';s/BRANDING_AUTHORNAME/${BRANDING_AUTHORNAME}/g' \ - -e ';s/BRANDING_AUTHOREMAIL/${BRANDING_AUTHOREMAIL}/g' \ - -e ';s|BRANDING_WEBSITE|${BRANDING_WEBSITE}|g' \ - -e ';s/BRANDING_VERSION/${BRANDING_VERSION}/g' \ - ${@}.src >${@} - -translations: - find . -iname "*.vala" | xargs xgettext --from-code=UTF-8 --language=C --keyword=_ \ - --copyright-holder="${BRANDING_AUTHORNAME} (${BRANDING_AUTHOREMAIL})" \ - --package-name="${BRANDING_SHORTNAME}" \ - --package-version="${BRANDING_VERSION}" \ - --msgid-bugs-address="${BRANDING_AUTHOREMAIL}" \ - --escape --sort-output -o ../${BRANDING_SHORTNAME}.pot - for lang in ${translations} ; do \ - msgmerge --update -v ../po/${BRANDING_SHORTNAME}-$$lang.po ../${BRANDING_SHORTNAME}.pot ; \ - done - -# Intentionally do not remove the files created by $(miscs) -clean: - rm -rfv ../release/* *.c *.o *.mo - rm -fv ${BRANDING_SHORTNAME} ${BRANDING_SHORTNAME}-gtk - -install: - mkdir -p "$(DESTDIR)$(bindir)" - mkdir -p "$(DESTDIR)$(sharedir)" - mkdir -p "$(DESTDIR)$(mandir)" - mkdir -p "$(DESTDIR)$(man1dir)" - mkdir -p "$(DESTDIR)$(launcherdir)" - mkdir -p "$(DESTDIR)$(polkitdir)" - mkdir -p "$(DESTDIR)$(sharedir)/glib-2.0/schemas/" - mkdir -p "$(DESTDIR)$(sharedir)/${BRANDING_SHORTNAME}" - mkdir -p "$(DESTDIR)$(sharedir)/pixmaps" - - # binary - install -m 0755 ${BRANDING_SHORTNAME} "$(DESTDIR)$(bindir)" - install -m 0755 ${BRANDING_SHORTNAME}-gtk "$(DESTDIR)$(bindir)" - - # shared files - cp -dpr --no-preserve=ownership -t "$(DESTDIR)$(sharedir)/${BRANDING_SHORTNAME}" ./share/${BRANDING_SHORTNAME}/* - chmod --recursive 0755 $(DESTDIR)$(sharedir)/${BRANDING_SHORTNAME}/* - - # polkit policy file - #install -m 0644 ./share/polkit-1/actions/${BRANDING_SHORTNAME}.policy "$(DESTDIR)$(polkitdir)" - - # launcher - install -m 0755 ${BRANDING_SHORTNAME}.desktop "$(DESTDIR)$(launcherdir)" - - # app icon - install -m 0755 ./share/pixmaps/${BRANDING_SHORTNAME}.* "$(DESTDIR)$(sharedir)/pixmaps" - - # translations - for lang in ${translations}; do \ - mkdir -p "$(DESTDIR)$(localedir)/$$lang/LC_MESSAGES"; \ - msgfmt --check --verbose -o "$(DESTDIR)$(localedir)/$$lang/LC_MESSAGES/${BRANDING_SHORTNAME}.mo" ../po/${BRANDING_SHORTNAME}-$$lang.po ; \ - done - -uninstall: - - # binary - rm -f "$(DESTDIR)$(bindir)/${BRANDING_SHORTNAME}" - - # shared files - rm -rf "$(DESTDIR)$(sharedir)/${BRANDING_SHORTNAME}" - - # polkit policy file - #rm -f "$(DESTDIR)$(polkitdir)/${BRANDING_SHORTNAME}.policy" - - # launcher - rm -f "$(DESTDIR)$(launcherdir)/${BRANDING_SHORTNAME}.desktop" - - # app icon - rm -f "$(DESTDIR)$(sharedir)/pixmaps/${BRANDING_SHORTNAME}.png" - - # translations - rm -f $(DESTDIR)$(localedir)/*/LC_MESSAGES/${BRANDING_SHORTNAME}.mo - - # startup scripts - rm -f $(DESTDIR)/home/*/.config/${BRANDING_SHORTNAME}/${BRANDING_SHORTNAME}-notify.sh - rm -f $(DESTDIR)/home/*/.config/autostart/${BRANDING_SHORTNAME}.desktop diff --git a/src/miscs.mak b/src/miscs.mak deleted file mode 100644 index ca4a3c3a..00000000 --- a/src/miscs.mak +++ /dev/null @@ -1,2 +0,0 @@ -#miscs = ${BRANDING_SHORTNAME}.desktop ../debian/control ../debian/copyright share/polkit-1/actions/${BRANDING_SHORTNAME}.policy -miscs = ${BRANDING_SHORTNAME}.desktop ../debian/control ../debian/copyright diff --git a/src/ukuu.desktop b/src/ukuu.desktop deleted file mode 100644 index e4923d0e..00000000 --- a/src/ukuu.desktop +++ /dev/null @@ -1,11 +0,0 @@ -[Desktop Entry] -Name=Ubuntu Kernel Update Utility -MimeType= -Exec=ukuu-gtk -Type=Application -GenericName=Ubuntu Kernel Update Utility -Terminal=false -Icon=ukuu -Comment=Ubuntu Kernel Update Utility -X-KDE-StartupNotify=false -Categories=System; diff --git a/ukuu.geany b/ukuu.geany deleted file mode 100644 index 7b43398c..00000000 --- a/ukuu.geany +++ /dev/null @@ -1,111 +0,0 @@ -[indentation] -indent_width=4 -indent_type=1 -indent_hard_tab_width=8 -detect_indent=false -detect_indent_width=false -indent_mode=2 - -[project] -name=ukuu -base_path=/home/bkw/src/ukuu -description= -file_patterns= - -[long line marker] -long_line_behaviour=1 -long_line_column=80 - -[files] -current_page=20 -FILE_NAME_0=481;None;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fdebian%2Fchangelog;0;4 -FILE_NAME_1=7410;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FCommon%2FMain.vala;0;4 -FILE_NAME_2=1442;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FCommon%2FDownloadManager.vala;0;4 -FILE_NAME_3=7036;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FCommon%2FLinuxKernel.vala;0;4 -FILE_NAME_4=4098;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FCommon%2FPackage.vala;0;4 -FILE_NAME_5=837;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FConsole%2FAppConsole.vala;0;4 -FILE_NAME_6=4165;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FGtk%2FAppGtk.vala;0;4 -FILE_NAME_7=17215;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FGtk%2FMainWindow.vala;0;4 -FILE_NAME_8=4984;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FGtk%2FProgressWindow.vala;0;4 -FILE_NAME_9=6653;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FGtk%2FSettingsDialog.vala;0;4 -FILE_NAME_10=5806;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FGtk%2FTerminalWindow.vala;0;4 -FILE_NAME_11=4555;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FGtk%2FUpdateNotificationWindow.vala;0;4 -FILE_NAME_12=2255;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FUtility%2FAppLock.vala;0;4 -FILE_NAME_13=7083;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FUtility%2FAsyncTask.vala;0;4 -FILE_NAME_14=2171;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FUtility%2FOSDNotify.vala;0;4 -FILE_NAME_15=20451;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FUtility%2FTeeJee.FileSystem.vala;0;4 -FILE_NAME_16=33;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FUtility%2FTeeJee.Json.vala;0;4 -FILE_NAME_17=30;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FUtility%2FTeeJee.Logging.vala;0;4 -FILE_NAME_18=8075;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FUtility%2FTeeJee.Misc.vala;0;4 -FILE_NAME_19=2336;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FUtility%2FTeeJee.Process.vala;0;4 -FILE_NAME_20=5849;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FUtility%2FTeeJee.System.vala;0;4 -FILE_NAME_21=23;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FUtility%2FVersion.vala;0;4 -FILE_NAME_22=8259;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FUtility%2FGtk%2FAboutWindow.vala;0;4 -FILE_NAME_23=34;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FUtility%2FGtk%2FCustomMessageDialog.vala;0;4 -FILE_NAME_24=6668;Vala;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FUtility%2FGtk%2FGtkHelper.vala;0;4 -FILE_NAME_25=727;XML;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2Fshare%2Fpolkit-1%2Factions%2Fukuu.policy.src;0;4 -FILE_NAME_26=58;Conf;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2Fukuu.desktop;0;4 -FILE_NAME_27=2087;Markdown;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2FREADME.md;0;4 -FILE_NAME_28=55;None;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2FAUTHORS;0;4 -FILE_NAME_29=697;Conf;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fdebian%2Fcontrol;0;4 -FILE_NAME_30=94;None;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fdebian%2Fcopyright;0;4 -FILE_NAME_31=11111;Po;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fukuu.pot;0;4 -FILE_NAME_32=35096;None;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2FCOPYING;0;4 -FILE_NAME_33=292;Markdown;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2FLICENSE.md;0;4 -FILE_NAME_34=129;Sh;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fbuild.sh;0;4 -FILE_NAME_35=441;Make;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fdebian%2Frules;0;4 -FILE_NAME_36=395;Conf;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fdebian%2Fcontrol.src;0;4 -FILE_NAME_37=0;Conf;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fdebian%2Fcopyright.src;0;4 -FILE_NAME_38=0;Conf;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2Fukuu.desktop.src;0;4 -FILE_NAME_39=77;Make;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2Fmiscs.mak;0;4 -FILE_NAME_40=1781;XML;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2Fshare%2Fukuu%2Fimages%2Fgeneral.svg;0;4 -FILE_NAME_41=962;Make;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2Fsrc%2FMakefile;0;4 -FILE_NAME_42=541;Make;0;EUTF-8;1;1;1;%2Fhome%2Fbkw%2Fsrc%2Fukuu%2FBRANDING.mak;0;4 - -[VTE] -last_dir=/home/bkw - -[build-menu] -filetypes=Vala;Make; -EX_00_LB=_Execute (debug) -EX_00_CM=src/ukuu-gtk --debug -EX_00_WD=%p -EX_01_LB=Execute -EX_01_CM=src/ukuu-gtk -EX_01_WD=%p -NF_01_LB= -NF_01_CM= -NF_01_WD= -NF_02_LB= -NF_02_CM= -NF_02_WD= -MakeFT_00_LB=Make All -MakeFT_00_CM=make all -MakeFT_00_WD=/home/bkw/src/ukuu -MakeFT_01_LB=Make Install -MakeFT_01_CM=make install -MakeFT_01_WD=/home/bkw/src/ukuu -MakeFT_02_LB= -MakeFT_02_CM= -MakeFT_02_WD= -error_regex=error -NF_00_LB=_Make -NF_00_CM=make -NF_00_WD=%p -ValaFT_00_LB=_Compile -ValaFT_00_CM=make -ValaFT_00_WD=%p -ValaFT_01_LB=_Build -ValaFT_01_CM=make -ValaFT_01_WD=%p - -[file_prefs] -final_new_line=true -ensure_convert_new_lines=false -strip_trailing_spaces=false -replace_tabs=false - -[editor] -line_wrapping=true -line_break_column=80 -auto_continue_multiline=true diff --git a/ukuu.pot b/ukuu.pot deleted file mode 100644 index 916ffddf..00000000 --- a/ukuu.pot +++ /dev/null @@ -1,582 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR Brian K. White (bw.aljex@gmail.com) -# This file is distributed under the same license as the ukuu package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: ukuu 18.9.5-bkw\n" -"Report-Msgid-Bugs-To: bw.aljex@gmail.com\n" -"POT-Creation-Date: 2019-03-13 18:37-0400\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=CHARSET\n" -"Content-Transfer-Encoding: 8bit\n" - -#: Gtk/MainWindow.vala:496 -msgid "About" -msgstr "" - -#: Console/AppConsole.vala:116 -msgid "Admin access is required for running this application." -msgstr "" - -#: Utility/AppLock.vala:51 -msgid "Another instance of this application is running" -msgstr "" - -#: Common/LinuxKernel.vala:105 -msgid "Architecture" -msgstr "" - -#: Utility/Gtk/AboutWindow.vala:338 -#, c-format -msgid "Artists" -msgstr "" - -#: Console/AppConsole.vala:103 -msgid "Assume Yes for all prompts (non-interactive mode)" -msgstr "" - -#: Utility/Gtk/AboutWindow.vala:314 -#, c-format -msgid "Authors" -msgstr "" - -#: Common/LinuxKernel.vala:1181 -msgid "Available Kernels" -msgstr "" - -#: Utility/Gtk/AboutWindow.vala:285 -msgid "Back" -msgstr "" - -#: Console/AppConsole.vala:206 Gtk/AppGtk.vala:110 -msgid "Cache" -msgstr "" - -#: Gtk/ProgressWindow.vala:143 Gtk/TerminalWindow.vala:151 -#: Gtk/UpdateNotificationWindow.vala:167 -#: Utility/Gtk/CustomMessageDialog.vala:172 Utility/Gtk/GtkHelper.vala:122 -msgid "Cancel" -msgstr "" - -#: Gtk/MainWindow.vala:464 -msgid "Changes" -msgstr "" - -#: Gtk/SettingsDialog.vala:121 -msgid "Check every" -msgstr "" - -#: Console/AppConsole.vala:87 -msgid "Check for kernel updates" -msgstr "" - -#: Console/AppConsole.vala:88 -msgid "Check for kernel updates and notify current user" -msgstr "" - -#: Gtk/TerminalWindow.vala:161 Utility/Gtk/AboutWindow.vala:295 -msgid "Close" -msgstr "" - -#: Console/AppConsole.vala:343 -msgid "Command not specified" -msgstr "" - -#: Console/AppConsole.vala:85 -msgid "Commands" -msgstr "" - -#: Common/Main.vala:105 -msgid "Commands listed below are not available on this system" -msgstr "" - -#: Common/LinuxKernel.vala:737 -#, c-format -msgid "Continue ?" -msgstr "" - -#: Utility/Gtk/AboutWindow.vala:322 -#, c-format -msgid "Contributions" -msgstr "" - -#: Common/LinuxKernel.vala:721 -msgid "Could not find any kernels to remove" -msgstr "" - -#: Console/AppConsole.vala:311 Gtk/MainWindow.vala:100 -msgid "Could not find requested version" -msgstr "" - -#: Common/LinuxKernel.vala:715 -msgid "Could not find running kernel in list!" -msgstr "" - -#: Utility/TeeJee.FileSystem.vala:349 Utility/TeeJee.FileSystem.vala:352 -#: Utility/TeeJee.FileSystem.vala:378 -msgid "Created directory" -msgstr "" - -#: Utility/Gtk/AboutWindow.vala:272 Utility/Gtk/AboutWindow.vala:289 -msgid "Credits" -msgstr "" - -#: Gtk/SettingsDialog.vala:154 -msgid "Day(s)" -msgstr "" - -#: Utility/TeeJee.FileSystem.vala:375 -msgid "Deleted directory" -msgstr "" - -#: Utility/TeeJee.FileSystem.vala:509 -msgid "Dir not found" -msgstr "" - -#: Gtk/SettingsDialog.vala:161 -msgid "Display" -msgstr "" - -#: Common/LinuxKernel.vala:91 -msgid "Distribution" -msgstr "" - -#: Utility/Gtk/AboutWindow.vala:354 -#, c-format -msgid "Documenters" -msgstr "" - -#: Console/AppConsole.vala:96 -msgid "Download packages for specified kernel" -msgstr "" - -#: Common/LinuxKernel.vala:1227 -#, c-format -msgid "Downloading" -msgstr "" - -#: Utility/TeeJee.Logging.vala:89 -msgid "E" -msgstr "" - -#: Common/LinuxKernel.vala:1255 -#, c-format -msgid "ERROR" -msgstr "" - -#: Utility/Gtk/GtkHelper.vala:18 -msgid "Error" -msgstr "" - -#: Utility/TeeJee.FileSystem.vala:221 -msgid "Failed to copy file" -msgstr "" - -#: Utility/TeeJee.FileSystem.vala:359 -msgid "Failed to create dir" -msgstr "" - -#: Utility/TeeJee.FileSystem.vala:106 -msgid "Failed to delete file" -msgstr "" - -#: Utility/TeeJee.FileSystem.vala:253 -msgid "Failed to move file" -msgstr "" - -#: Utility/TeeJee.FileSystem.vala:162 -msgid "Failed to read file" -msgstr "" - -#: Utility/TeeJee.FileSystem.vala:197 -msgid "Failed to write file" -msgstr "" - -#: Common/LinuxKernel.vala:396 -msgid "Fetching index from kernel.ubuntu.com..." -msgstr "" - -#: Common/LinuxKernel.vala:353 -msgid "Fetching index..." -msgstr "" - -#: Utility/TeeJee.FileSystem.vala:210 Utility/TeeJee.FileSystem.vala:213 -msgid "File copied" -msgstr "" - -#: Utility/TeeJee.FileSystem.vala:97 Utility/TeeJee.FileSystem.vala:100 -msgid "File deleted" -msgstr "" - -#: Utility/TeeJee.FileSystem.vala:662 Utility/TeeJee.FileSystem.vala:711 -msgid "File is missing" -msgstr "" - -#: Utility/TeeJee.FileSystem.vala:245 Utility/TeeJee.FileSystem.vala:248 -msgid "File moved" -msgstr "" - -#: Utility/TeeJee.FileSystem.vala:231 Utility/TeeJee.FileSystem.vala:538 -msgid "File not found" -msgstr "" - -#: Common/Package.vala:133 Common/Package.vala:195 -#, c-format -msgid "File not found: %s" -msgstr "" - -#: Utility/TeeJee.FileSystem.vala:187 Utility/TeeJee.FileSystem.vala:190 -msgid "File saved" -msgstr "" - -#: Gtk/SettingsDialog.vala:180 -msgid "Hide kernels older than 4.0" -msgstr "" - -#: Gtk/SettingsDialog.vala:169 -msgid "Hide unstable and RC releases" -msgstr "" - -#: Gtk/SettingsDialog.vala:152 -msgid "Hour(s)" -msgstr "" - -#: Gtk/UpdateNotificationWindow.vala:168 -msgid "Ignore this update" -msgstr "" - -#: Common/LinuxKernel.vala:259 -msgid "Index is fresh" -msgstr "" - -#: Common/LinuxKernel.vala:256 -msgid "Index is stale" -msgstr "" - -#: Gtk/MainWindow.vala:359 Gtk/UpdateNotificationWindow.vala:147 -msgid "Install" -msgstr "" - -#: Common/LinuxKernel.vala:794 -#, c-format -msgid "Install Linux v%s ? (y/n): " -msgstr "" - -#: Console/AppConsole.vala:91 -msgid "Install latest mainline kernel" -msgstr "" - -#: Console/AppConsole.vala:92 -msgid "Install latest point update for current series" -msgstr "" - -#: Console/AppConsole.vala:93 -msgid "Install specified mainline kernel" -msgstr "" - -#: Gtk/UpdateNotificationWindow.vala:148 -msgid "Install this kernel" -msgstr "" - -#: Common/LinuxKernel.vala:1301 -msgid "Installation completed with errors" -msgstr "" - -#: Common/LinuxKernel.vala:1298 -msgid "Installation completed. A reboot is required to use the new kernel." -msgstr "" - -#: Common/LinuxKernel.vala:1198 Gtk/MainWindow.vala:208 -msgid "Installed" -msgstr "" - -#: Gtk/MainWindow.vala:350 Gtk/MainWindow.vala:547 Gtk/MainWindow.vala:683 -#: Utility/TeeJee.System.vala:281 -msgid "Internet connection is not active" -msgstr "" - -#: Gtk/SettingsDialog.vala:212 -msgid "Internet connection timeout in " -msgstr "" - -#: Gtk/MainWindow.vala:150 -msgid "Kernel" -msgstr "" - -#: Gtk/MainWindow.vala:531 -msgid "Kernel upgrade utility for Ubuntu-based distributions" -msgstr "" - -#: Common/LinuxKernel.vala:776 Console/AppConsole.vala:369 -#, c-format -msgid "Latest point update" -msgstr "" - -#: Common/LinuxKernel.vala:765 Console/AppConsole.vala:362 -#, c-format -msgid "Latest update" -msgstr "" - -#: Console/AppConsole.vala:89 -msgid "List all available mainline kernels" -msgstr "" - -#: Gtk/UpdateNotificationWindow.vala:158 -msgid "List available kernels" -msgstr "" - -#: Console/AppConsole.vala:90 -msgid "List installed kernels" -msgstr "" - -#: Utility/Gtk/GtkHelper.vala:272 -msgid "Missing Icon" -msgstr "" - -#: Gtk/MainWindow.vala:368 -msgid "Multiple Kernels Selected" -msgstr "" - -#: Console/AppConsole.vala:293 -msgid "Multiple kernels selected for installation. Select only one." -msgstr "" - -#: Utility/Gtk/CustomMessageDialog.vala:177 -msgid "No" -msgstr "" - -#: Gtk/MainWindow.vala:350 Gtk/MainWindow.vala:547 Gtk/MainWindow.vala:683 -msgid "No Internet" -msgstr "" - -#: Console/AppConsole.vala:287 Console/AppConsole.vala:324 -msgid "No kernels specified" -msgstr "" - -#: Common/LinuxKernel.vala:784 Console/AppConsole.vala:374 -#: Console/AppConsole.vala:432 Gtk/MainWindow.vala:793 -msgid "No updates found" -msgstr "" - -#: Gtk/MainWindow.vala:371 Gtk/MainWindow.vala:382 -msgid "Not Selected" -msgstr "" - -#: Gtk/SettingsDialog.vala:66 -msgid "Notification" -msgstr "" - -#: Gtk/SettingsDialog.vala:73 -msgid "Notify if a major release is available" -msgstr "" - -#: Gtk/SettingsDialog.vala:84 -msgid "Notify if a point release is available" -msgstr "" - -#: Common/LinuxKernel.vala:1246 Utility/Gtk/CustomMessageDialog.vala:167 -#: Utility/Gtk/CustomMessageDialog.vala:171 Utility/Gtk/GtkHelper.vala:121 -#, c-format -msgid "OK" -msgstr "" - -#: Console/AppConsole.vala:100 Gtk/AppGtk.vala:181 -msgid "Options" -msgstr "" - -#: Gtk/SettingsDialog.vala:191 -msgid "Other" -msgstr "" - -#: Common/LinuxKernel.vala:1060 -#, c-format -msgid "Packages Available" -msgstr "" - -#: Common/LinuxKernel.vala:1068 -#, c-format -msgid "Packages Installed" -msgstr "" - -#: Common/Main.vala:106 -msgid "Please install required packages and try again" -msgstr "" - -#: Common/LinuxKernel.vala:1322 -msgid "Preparing to remove selected kernels" -msgstr "" - -#: Gtk/AppGtk.vala:183 -msgid "Print debug information" -msgstr "" - -#: Gtk/MainWindow.vala:425 -msgid "Purge" -msgstr "" - -#: Gtk/MainWindow.vala:343 -msgid "Refresh" -msgstr "" - -#: Gtk/MainWindow.vala:566 -msgid "Refreshing..." -msgstr "" - -#: Gtk/MainWindow.vala:376 -msgid "Remove" -msgstr "" - -#: Console/AppConsole.vala:97 Console/AppConsole.vala:102 -msgid "Remove files from application cache" -msgstr "" - -#: Console/AppConsole.vala:95 Gtk/MainWindow.vala:426 -msgid "Remove installed kernels older than running kernel" -msgstr "" - -#: Console/AppConsole.vala:94 -msgid "Remove specified kernel" -msgstr "" - -#: Console/AppConsole.vala:201 Console/AppConsole.vala:315 -#: Console/AppConsole.vala:344 -msgid "Run '" -msgstr "" - -#: Console/AppConsole.vala:119 -msgid "Run the application as admin with pkexec or sudo." -msgstr "" - -#: Common/LinuxKernel.vala:1198 Gtk/MainWindow.vala:208 -msgid "Running" -msgstr "" - -#: Gtk/MainWindow.vala:368 -msgid "Select a single kernel to install" -msgstr "" - -#: Gtk/MainWindow.vala:371 -msgid "Select the kernel to install" -msgstr "" - -#: Gtk/MainWindow.vala:382 -msgid "Select the kernels to remove" -msgstr "" - -#: Common/LinuxKernel.vala:1317 -msgid "" -"Selected kernel is currently running and cannot be removed.\n" -" Install another kernel before removing this one." -msgstr "" - -#: Gtk/MainWindow.vala:475 Gtk/SettingsDialog.vala:56 -msgid "Settings" -msgstr "" - -#: Gtk/UpdateNotificationWindow.vala:157 -msgid "Show" -msgstr "" - -#: Gtk/AppGtk.vala:184 -msgid "Show all options" -msgstr "" - -#: Gtk/SettingsDialog.vala:95 -msgid "Show notification bubble on desktop" -msgstr "" - -#: Gtk/SettingsDialog.vala:106 -msgid "Show notification dialog" -msgstr "" - -#: Console/AppConsole.vala:98 -msgid "Show unstable and RC releases" -msgstr "" - -#: Gtk/SettingsDialog.vala:199 -msgid "Skip internet connection check" -msgstr "" - -#: Gtk/MainWindow.vala:196 -msgid "Status" -msgstr "" - -#: Utility/TeeJee.Process.vala:512 -msgid "Stopped" -msgstr "" - -#: Console/AppConsole.vala:83 Gtk/AppGtk.vala:179 -msgid "Syntax" -msgstr "" - -#: Console/AppConsole.vala:207 Gtk/AppGtk.vala:111 -msgid "Temp" -msgstr "" - -#: Common/LinuxKernel.vala:730 -#, c-format -msgid "The following kernels will be removed:" -msgstr "" - -#: Utility/Gtk/AboutWindow.vala:330 -#, c-format -msgid "Third Party Tools" -msgstr "" - -#: Common/LinuxKernel.vala:1269 Gtk/MainWindow.vala:678 -msgid "This kernel is already installed." -msgstr "" - -#: Common/LinuxKernel.vala:1373 -msgid "" -"This kernel is currently running and cannot be removed.\n" -" Install another kernel before removing this one." -msgstr "" - -#: Utility/Gtk/AboutWindow.vala:346 -#, c-format -msgid "Translators" -msgstr "" - -#: Common/LinuxKernel.vala:1357 Common/LinuxKernel.vala:1413 -msgid "Un-install completed" -msgstr "" - -#: Common/LinuxKernel.vala:1360 Common/LinuxKernel.vala:1416 -msgid "Un-install completed with errors" -msgstr "" - -#: Console/AppConsole.vala:199 Gtk/AppGtk.vala:166 -msgid "Unknown option" -msgstr "" - -#: Gtk/MainWindow.vala:179 -msgid "Version" -msgstr "" - -#: Utility/TeeJee.Logging.vala:89 -msgid "W" -msgstr "" - -#: Gtk/SettingsDialog.vala:156 -msgid "Week(s)" -msgstr "" - -#: Utility/Gtk/CustomMessageDialog.vala:176 -msgid "Yes" -msgstr "" - -#: Utility/AppLock.vala:56 -msgid "[Warning] Deleted invalid lock" -msgstr "" - -#: Gtk/SettingsDialog.vala:226 -msgid "seconds" -msgstr "" From 41b08614b2d463c85c976ec1896bf933d6257cf4 Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Sat, 16 Mar 2019 05:37:58 -0400 Subject: [PATCH 023/567] Replace 3 conflicting licenses (LGPL2, GPL2+, GPL3) with one GPL3 --- LICENSE | 674 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 674 insertions(+) create mode 100644 LICENSE diff --git a/LICENSE b/LICENSE new file mode 100644 index 00000000..f288702d --- /dev/null +++ b/LICENSE @@ -0,0 +1,674 @@ + GNU GENERAL PUBLIC LICENSE + Version 3, 29 June 2007 + + Copyright (C) 2007 Free Software Foundation, Inc. + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The GNU General Public License is a free, copyleft license for +software and other kinds of works. + + The licenses for most software and other practical works are designed +to take away your freedom to share and change the works. By contrast, +the GNU General Public License is intended to guarantee your freedom to +share and change all versions of a program--to make sure it remains free +software for all its users. We, the Free Software Foundation, use the +GNU General Public License for most of our software; it applies also to +any other work released this way by its authors. You can apply it to +your programs, too. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +them if you wish), that you receive source code or can get it if you +want it, that you can change the software or use pieces of it in new +free programs, and that you know you can do these things. + + To protect your rights, we need to prevent others from denying you +these rights or asking you to surrender the rights. Therefore, you have +certain responsibilities if you distribute copies of the software, or if +you modify it: responsibilities to respect the freedom of others. + + For example, if you distribute copies of such a program, whether +gratis or for a fee, you must pass on to the recipients the same +freedoms that you received. You must make sure that they, too, receive +or can get the source code. And you must show them these terms so they +know their rights. + + Developers that use the GNU GPL protect your rights with two steps: +(1) assert copyright on the software, and (2) offer you this License +giving you legal permission to copy, distribute and/or modify it. + + For the developers' and authors' protection, the GPL clearly explains +that there is no warranty for this free software. For both users' and +authors' sake, the GPL requires that modified versions be marked as +changed, so that their problems will not be attributed erroneously to +authors of previous versions. + + Some devices are designed to deny users access to install or run +modified versions of the software inside them, although the manufacturer +can do so. This is fundamentally incompatible with the aim of +protecting users' freedom to change the software. The systematic +pattern of such abuse occurs in the area of products for individuals to +use, which is precisely where it is most unacceptable. Therefore, we +have designed this version of the GPL to prohibit the practice for those +products. If such problems arise substantially in other domains, we +stand ready to extend this provision to those domains in future versions +of the GPL, as needed to protect the freedom of users. + + Finally, every program is threatened constantly by software patents. +States should not allow patents to restrict development and use of +software on general-purpose computers, but in those that do, we wish to +avoid the special danger that patents applied to a free program could +make it effectively proprietary. To prevent this, the GPL assures that +patents cannot be used to render the program non-free. + + The precise terms and conditions for copying, distribution and +modification follow. + + TERMS AND CONDITIONS + + 0. Definitions. + + "This License" refers to version 3 of the GNU General Public License. + + "Copyright" also means copyright-like laws that apply to other kinds of +works, such as semiconductor masks. + + "The Program" refers to any copyrightable work licensed under this +License. Each licensee is addressed as "you". "Licensees" and +"recipients" may be individuals or organizations. + + To "modify" a work means to copy from or adapt all or part of the work +in a fashion requiring copyright permission, other than the making of an +exact copy. The resulting work is called a "modified version" of the +earlier work or a work "based on" the earlier work. + + A "covered work" means either the unmodified Program or a work based +on the Program. + + To "propagate" a work means to do anything with it that, without +permission, would make you directly or secondarily liable for +infringement under applicable copyright law, except executing it on a +computer or modifying a private copy. Propagation includes copying, +distribution (with or without modification), making available to the +public, and in some countries other activities as well. + + To "convey" a work means any kind of propagation that enables other +parties to make or receive copies. Mere interaction with a user through +a computer network, with no transfer of a copy, is not conveying. + + An interactive user interface displays "Appropriate Legal Notices" +to the extent that it includes a convenient and prominently visible +feature that (1) displays an appropriate copyright notice, and (2) +tells the user that there is no warranty for the work (except to the +extent that warranties are provided), that licensees may convey the +work under this License, and how to view a copy of this License. If +the interface presents a list of user commands or options, such as a +menu, a prominent item in the list meets this criterion. + + 1. Source Code. + + The "source code" for a work means the preferred form of the work +for making modifications to it. "Object code" means any non-source +form of a work. + + A "Standard Interface" means an interface that either is an official +standard defined by a recognized standards body, or, in the case of +interfaces specified for a particular programming language, one that +is widely used among developers working in that language. + + The "System Libraries" of an executable work include anything, other +than the work as a whole, that (a) is included in the normal form of +packaging a Major Component, but which is not part of that Major +Component, and (b) serves only to enable use of the work with that +Major Component, or to implement a Standard Interface for which an +implementation is available to the public in source code form. A +"Major Component", in this context, means a major essential component +(kernel, window system, and so on) of the specific operating system +(if any) on which the executable work runs, or a compiler used to +produce the work, or an object code interpreter used to run it. + + The "Corresponding Source" for a work in object code form means all +the source code needed to generate, install, and (for an executable +work) run the object code and to modify the work, including scripts to +control those activities. However, it does not include the work's +System Libraries, or general-purpose tools or generally available free +programs which are used unmodified in performing those activities but +which are not part of the work. For example, Corresponding Source +includes interface definition files associated with source files for +the work, and the source code for shared libraries and dynamically +linked subprograms that the work is specifically designed to require, +such as by intimate data communication or control flow between those +subprograms and other parts of the work. + + The Corresponding Source need not include anything that users +can regenerate automatically from other parts of the Corresponding +Source. + + The Corresponding Source for a work in source code form is that +same work. + + 2. Basic Permissions. + + All rights granted under this License are granted for the term of +copyright on the Program, and are irrevocable provided the stated +conditions are met. This License explicitly affirms your unlimited +permission to run the unmodified Program. The output from running a +covered work is covered by this License only if the output, given its +content, constitutes a covered work. This License acknowledges your +rights of fair use or other equivalent, as provided by copyright law. + + You may make, run and propagate covered works that you do not +convey, without conditions so long as your license otherwise remains +in force. You may convey covered works to others for the sole purpose +of having them make modifications exclusively for you, or provide you +with facilities for running those works, provided that you comply with +the terms of this License in conveying all material for which you do +not control copyright. Those thus making or running the covered works +for you must do so exclusively on your behalf, under your direction +and control, on terms that prohibit them from making any copies of +your copyrighted material outside their relationship with you. + + Conveying under any other circumstances is permitted solely under +the conditions stated below. Sublicensing is not allowed; section 10 +makes it unnecessary. + + 3. Protecting Users' Legal Rights From Anti-Circumvention Law. + + No covered work shall be deemed part of an effective technological +measure under any applicable law fulfilling obligations under article +11 of the WIPO copyright treaty adopted on 20 December 1996, or +similar laws prohibiting or restricting circumvention of such +measures. + + When you convey a covered work, you waive any legal power to forbid +circumvention of technological measures to the extent such circumvention +is effected by exercising rights under this License with respect to +the covered work, and you disclaim any intention to limit operation or +modification of the work as a means of enforcing, against the work's +users, your or third parties' legal rights to forbid circumvention of +technological measures. + + 4. Conveying Verbatim Copies. + + You may convey verbatim copies of the Program's source code as you +receive it, in any medium, provided that you conspicuously and +appropriately publish on each copy an appropriate copyright notice; +keep intact all notices stating that this License and any +non-permissive terms added in accord with section 7 apply to the code; +keep intact all notices of the absence of any warranty; and give all +recipients a copy of this License along with the Program. + + You may charge any price or no price for each copy that you convey, +and you may offer support or warranty protection for a fee. + + 5. Conveying Modified Source Versions. + + You may convey a work based on the Program, or the modifications to +produce it from the Program, in the form of source code under the +terms of section 4, provided that you also meet all of these conditions: + + a) The work must carry prominent notices stating that you modified + it, and giving a relevant date. + + b) The work must carry prominent notices stating that it is + released under this License and any conditions added under section + 7. This requirement modifies the requirement in section 4 to + "keep intact all notices". + + c) You must license the entire work, as a whole, under this + License to anyone who comes into possession of a copy. This + License will therefore apply, along with any applicable section 7 + additional terms, to the whole of the work, and all its parts, + regardless of how they are packaged. This License gives no + permission to license the work in any other way, but it does not + invalidate such permission if you have separately received it. + + d) If the work has interactive user interfaces, each must display + Appropriate Legal Notices; however, if the Program has interactive + interfaces that do not display Appropriate Legal Notices, your + work need not make them do so. + + A compilation of a covered work with other separate and independent +works, which are not by their nature extensions of the covered work, +and which are not combined with it such as to form a larger program, +in or on a volume of a storage or distribution medium, is called an +"aggregate" if the compilation and its resulting copyright are not +used to limit the access or legal rights of the compilation's users +beyond what the individual works permit. Inclusion of a covered work +in an aggregate does not cause this License to apply to the other +parts of the aggregate. + + 6. Conveying Non-Source Forms. + + You may convey a covered work in object code form under the terms +of sections 4 and 5, provided that you also convey the +machine-readable Corresponding Source under the terms of this License, +in one of these ways: + + a) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by the + Corresponding Source fixed on a durable physical medium + customarily used for software interchange. + + b) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by a + written offer, valid for at least three years and valid for as + long as you offer spare parts or customer support for that product + model, to give anyone who possesses the object code either (1) a + copy of the Corresponding Source for all the software in the + product that is covered by this License, on a durable physical + medium customarily used for software interchange, for a price no + more than your reasonable cost of physically performing this + conveying of source, or (2) access to copy the + Corresponding Source from a network server at no charge. + + c) Convey individual copies of the object code with a copy of the + written offer to provide the Corresponding Source. This + alternative is allowed only occasionally and noncommercially, and + only if you received the object code with such an offer, in accord + with subsection 6b. + + d) Convey the object code by offering access from a designated + place (gratis or for a charge), and offer equivalent access to the + Corresponding Source in the same way through the same place at no + further charge. You need not require recipients to copy the + Corresponding Source along with the object code. If the place to + copy the object code is a network server, the Corresponding Source + may be on a different server (operated by you or a third party) + that supports equivalent copying facilities, provided you maintain + clear directions next to the object code saying where to find the + Corresponding Source. Regardless of what server hosts the + Corresponding Source, you remain obligated to ensure that it is + available for as long as needed to satisfy these requirements. + + e) Convey the object code using peer-to-peer transmission, provided + you inform other peers where the object code and Corresponding + Source of the work are being offered to the general public at no + charge under subsection 6d. + + A separable portion of the object code, whose source code is excluded +from the Corresponding Source as a System Library, need not be +included in conveying the object code work. + + A "User Product" is either (1) a "consumer product", which means any +tangible personal property which is normally used for personal, family, +or household purposes, or (2) anything designed or sold for incorporation +into a dwelling. In determining whether a product is a consumer product, +doubtful cases shall be resolved in favor of coverage. For a particular +product received by a particular user, "normally used" refers to a +typical or common use of that class of product, regardless of the status +of the particular user or of the way in which the particular user +actually uses, or expects or is expected to use, the product. A product +is a consumer product regardless of whether the product has substantial +commercial, industrial or non-consumer uses, unless such uses represent +the only significant mode of use of the product. + + "Installation Information" for a User Product means any methods, +procedures, authorization keys, or other information required to install +and execute modified versions of a covered work in that User Product from +a modified version of its Corresponding Source. The information must +suffice to ensure that the continued functioning of the modified object +code is in no case prevented or interfered with solely because +modification has been made. + + If you convey an object code work under this section in, or with, or +specifically for use in, a User Product, and the conveying occurs as +part of a transaction in which the right of possession and use of the +User Product is transferred to the recipient in perpetuity or for a +fixed term (regardless of how the transaction is characterized), the +Corresponding Source conveyed under this section must be accompanied +by the Installation Information. But this requirement does not apply +if neither you nor any third party retains the ability to install +modified object code on the User Product (for example, the work has +been installed in ROM). + + The requirement to provide Installation Information does not include a +requirement to continue to provide support service, warranty, or updates +for a work that has been modified or installed by the recipient, or for +the User Product in which it has been modified or installed. Access to a +network may be denied when the modification itself materially and +adversely affects the operation of the network or violates the rules and +protocols for communication across the network. + + Corresponding Source conveyed, and Installation Information provided, +in accord with this section must be in a format that is publicly +documented (and with an implementation available to the public in +source code form), and must require no special password or key for +unpacking, reading or copying. + + 7. Additional Terms. + + "Additional permissions" are terms that supplement the terms of this +License by making exceptions from one or more of its conditions. +Additional permissions that are applicable to the entire Program shall +be treated as though they were included in this License, to the extent +that they are valid under applicable law. If additional permissions +apply only to part of the Program, that part may be used separately +under those permissions, but the entire Program remains governed by +this License without regard to the additional permissions. + + When you convey a copy of a covered work, you may at your option +remove any additional permissions from that copy, or from any part of +it. (Additional permissions may be written to require their own +removal in certain cases when you modify the work.) You may place +additional permissions on material, added by you to a covered work, +for which you have or can give appropriate copyright permission. + + Notwithstanding any other provision of this License, for material you +add to a covered work, you may (if authorized by the copyright holders of +that material) supplement the terms of this License with terms: + + a) Disclaiming warranty or limiting liability differently from the + terms of sections 15 and 16 of this License; or + + b) Requiring preservation of specified reasonable legal notices or + author attributions in that material or in the Appropriate Legal + Notices displayed by works containing it; or + + c) Prohibiting misrepresentation of the origin of that material, or + requiring that modified versions of such material be marked in + reasonable ways as different from the original version; or + + d) Limiting the use for publicity purposes of names of licensors or + authors of the material; or + + e) Declining to grant rights under trademark law for use of some + trade names, trademarks, or service marks; or + + f) Requiring indemnification of licensors and authors of that + material by anyone who conveys the material (or modified versions of + it) with contractual assumptions of liability to the recipient, for + any liability that these contractual assumptions directly impose on + those licensors and authors. + + All other non-permissive additional terms are considered "further +restrictions" within the meaning of section 10. If the Program as you +received it, or any part of it, contains a notice stating that it is +governed by this License along with a term that is a further +restriction, you may remove that term. If a license document contains +a further restriction but permits relicensing or conveying under this +License, you may add to a covered work material governed by the terms +of that license document, provided that the further restriction does +not survive such relicensing or conveying. + + If you add terms to a covered work in accord with this section, you +must place, in the relevant source files, a statement of the +additional terms that apply to those files, or a notice indicating +where to find the applicable terms. + + Additional terms, permissive or non-permissive, may be stated in the +form of a separately written license, or stated as exceptions; +the above requirements apply either way. + + 8. Termination. + + You may not propagate or modify a covered work except as expressly +provided under this License. Any attempt otherwise to propagate or +modify it is void, and will automatically terminate your rights under +this License (including any patent licenses granted under the third +paragraph of section 11). + + However, if you cease all violation of this License, then your +license from a particular copyright holder is reinstated (a) +provisionally, unless and until the copyright holder explicitly and +finally terminates your license, and (b) permanently, if the copyright +holder fails to notify you of the violation by some reasonable means +prior to 60 days after the cessation. + + Moreover, your license from a particular copyright holder is +reinstated permanently if the copyright holder notifies you of the +violation by some reasonable means, this is the first time you have +received notice of violation of this License (for any work) from that +copyright holder, and you cure the violation prior to 30 days after +your receipt of the notice. + + Termination of your rights under this section does not terminate the +licenses of parties who have received copies or rights from you under +this License. If your rights have been terminated and not permanently +reinstated, you do not qualify to receive new licenses for the same +material under section 10. + + 9. Acceptance Not Required for Having Copies. + + You are not required to accept this License in order to receive or +run a copy of the Program. Ancillary propagation of a covered work +occurring solely as a consequence of using peer-to-peer transmission +to receive a copy likewise does not require acceptance. However, +nothing other than this License grants you permission to propagate or +modify any covered work. These actions infringe copyright if you do +not accept this License. Therefore, by modifying or propagating a +covered work, you indicate your acceptance of this License to do so. + + 10. Automatic Licensing of Downstream Recipients. + + Each time you convey a covered work, the recipient automatically +receives a license from the original licensors, to run, modify and +propagate that work, subject to this License. You are not responsible +for enforcing compliance by third parties with this License. + + An "entity transaction" is a transaction transferring control of an +organization, or substantially all assets of one, or subdividing an +organization, or merging organizations. If propagation of a covered +work results from an entity transaction, each party to that +transaction who receives a copy of the work also receives whatever +licenses to the work the party's predecessor in interest had or could +give under the previous paragraph, plus a right to possession of the +Corresponding Source of the work from the predecessor in interest, if +the predecessor has it or can get it with reasonable efforts. + + You may not impose any further restrictions on the exercise of the +rights granted or affirmed under this License. For example, you may +not impose a license fee, royalty, or other charge for exercise of +rights granted under this License, and you may not initiate litigation +(including a cross-claim or counterclaim in a lawsuit) alleging that +any patent claim is infringed by making, using, selling, offering for +sale, or importing the Program or any portion of it. + + 11. Patents. + + A "contributor" is a copyright holder who authorizes use under this +License of the Program or a work on which the Program is based. The +work thus licensed is called the contributor's "contributor version". + + A contributor's "essential patent claims" are all patent claims +owned or controlled by the contributor, whether already acquired or +hereafter acquired, that would be infringed by some manner, permitted +by this License, of making, using, or selling its contributor version, +but do not include claims that would be infringed only as a +consequence of further modification of the contributor version. For +purposes of this definition, "control" includes the right to grant +patent sublicenses in a manner consistent with the requirements of +this License. + + Each contributor grants you a non-exclusive, worldwide, royalty-free +patent license under the contributor's essential patent claims, to +make, use, sell, offer for sale, import and otherwise run, modify and +propagate the contents of its contributor version. + + In the following three paragraphs, a "patent license" is any express +agreement or commitment, however denominated, not to enforce a patent +(such as an express permission to practice a patent or covenant not to +sue for patent infringement). To "grant" such a patent license to a +party means to make such an agreement or commitment not to enforce a +patent against the party. + + If you convey a covered work, knowingly relying on a patent license, +and the Corresponding Source of the work is not available for anyone +to copy, free of charge and under the terms of this License, through a +publicly available network server or other readily accessible means, +then you must either (1) cause the Corresponding Source to be so +available, or (2) arrange to deprive yourself of the benefit of the +patent license for this particular work, or (3) arrange, in a manner +consistent with the requirements of this License, to extend the patent +license to downstream recipients. "Knowingly relying" means you have +actual knowledge that, but for the patent license, your conveying the +covered work in a country, or your recipient's use of the covered work +in a country, would infringe one or more identifiable patents in that +country that you have reason to believe are valid. + + If, pursuant to or in connection with a single transaction or +arrangement, you convey, or propagate by procuring conveyance of, a +covered work, and grant a patent license to some of the parties +receiving the covered work authorizing them to use, propagate, modify +or convey a specific copy of the covered work, then the patent license +you grant is automatically extended to all recipients of the covered +work and works based on it. + + A patent license is "discriminatory" if it does not include within +the scope of its coverage, prohibits the exercise of, or is +conditioned on the non-exercise of one or more of the rights that are +specifically granted under this License. You may not convey a covered +work if you are a party to an arrangement with a third party that is +in the business of distributing software, under which you make payment +to the third party based on the extent of your activity of conveying +the work, and under which the third party grants, to any of the +parties who would receive the covered work from you, a discriminatory +patent license (a) in connection with copies of the covered work +conveyed by you (or copies made from those copies), or (b) primarily +for and in connection with specific products or compilations that +contain the covered work, unless you entered into that arrangement, +or that patent license was granted, prior to 28 March 2007. + + Nothing in this License shall be construed as excluding or limiting +any implied license or other defenses to infringement that may +otherwise be available to you under applicable patent law. + + 12. No Surrender of Others' Freedom. + + If conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot convey a +covered work so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you may +not convey it at all. For example, if you agree to terms that obligate you +to collect a royalty for further conveying from those to whom you convey +the Program, the only way you could satisfy both those terms and this +License would be to refrain entirely from conveying the Program. + + 13. Use with the GNU Affero General Public License. + + Notwithstanding any other provision of this License, you have +permission to link or combine any covered work with a work licensed +under version 3 of the GNU Affero General Public License into a single +combined work, and to convey the resulting work. The terms of this +License will continue to apply to the part which is the covered work, +but the special requirements of the GNU Affero General Public License, +section 13, concerning interaction through a network will apply to the +combination as such. + + 14. Revised Versions of this License. + + The Free Software Foundation may publish revised and/or new versions of +the GNU General Public License from time to time. Such new versions will +be similar in spirit to the present version, but may differ in detail to +address new problems or concerns. + + Each version is given a distinguishing version number. If the +Program specifies that a certain numbered version of the GNU General +Public License "or any later version" applies to it, you have the +option of following the terms and conditions either of that numbered +version or of any later version published by the Free Software +Foundation. If the Program does not specify a version number of the +GNU General Public License, you may choose any version ever published +by the Free Software Foundation. + + If the Program specifies that a proxy can decide which future +versions of the GNU General Public License can be used, that proxy's +public statement of acceptance of a version permanently authorizes you +to choose that version for the Program. + + Later license versions may give you additional or different +permissions. However, no additional obligations are imposed on any +author or copyright holder as a result of your choosing to follow a +later version. + + 15. Disclaimer of Warranty. + + THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY +APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT +HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY +OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, +THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM +IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF +ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + + 16. Limitation of Liability. + + IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS +THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY +GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE +USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF +DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD +PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), +EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF +SUCH DAMAGES. + + 17. Interpretation of Sections 15 and 16. + + If the disclaimer of warranty and limitation of liability provided +above cannot be given local legal effect according to their terms, +reviewing courts shall apply local law that most closely approximates +an absolute waiver of all civil liability in connection with the +Program, unless a warranty or assumption of liability accompanies a +copy of the Program in return for a fee. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Programs + + If you develop a new program, and you want it to be of the greatest +possible use to the public, the best way to achieve this is to make it +free software which everyone can redistribute and change under these terms. + + To do so, attach the following notices to the program. It is safest +to attach them to the start of each source file to most effectively +state the exclusion of warranty; and each file should have at least +the "copyright" line and a pointer to where the full notice is found. + + + Copyright (C) + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see . + +Also add information on how to contact you by electronic and paper mail. + + If the program does terminal interaction, make it output a short +notice like this when it starts in an interactive mode: + + Copyright (C) + This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. + This is free software, and you are welcome to redistribute it + under certain conditions; type `show c' for details. + +The hypothetical commands `show w' and `show c' should show the appropriate +parts of the General Public License. Of course, your program's commands +might be different; for a GUI interface, you would use an "about box". + + You should also get your employer (if you work as a programmer) or school, +if any, to sign a "copyright disclaimer" for the program, if necessary. +For more information on this, and how to apply and follow the GNU GPL, see +. + + The GNU General Public License does not permit incorporating your program +into proprietary programs. If your program is a subroutine library, you +may consider it more useful to permit linking proprietary applications with +the library. If this is what you want to do, use the GNU Lesser General +Public License instead of this License. But first, please read +. From 09715dfe4db1de9f7576f995d9ec1838ebd393c5 Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Sat, 16 Mar 2019 06:24:55 -0400 Subject: [PATCH 024/567] Less spam (don't need my name in every --help). Be nicer in readme. update gitignore --- .gitignore | 4 ++-- README.md | 2 +- README.md.src | 2 +- po/_messages.pot | 18 +++++++++--------- po/es.po | 18 +++++++++--------- po/fr.po | 18 +++++++++--------- po/hr.po | 18 +++++++++--------- po/nl.po | 18 +++++++++--------- po/pl.po | 18 +++++++++--------- po/ru.po | 18 +++++++++--------- po/sv.po | 18 +++++++++--------- po/tr.po | 18 +++++++++--------- src/Console/AppConsole.vala | 2 +- src/Gtk/AppGtk.vala | 2 +- src/Gtk/MainWindow.vala | 3 ++- 15 files changed, 89 insertions(+), 88 deletions(-) diff --git a/.gitignore b/.gitignore index e63c8cb6..f62de875 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,5 @@ -src/mainline -src/mainline-gtk +mainline +mainline-gtk release *.c *.o diff --git a/README.md b/README.md index 357a99a2..20cc4f34 100644 --- a/README.md +++ b/README.md @@ -67,4 +67,4 @@ Determining what is currently install & running fails, but works if you just do ...that is really kind of inexcusable crap could all be a lot better. * More careful temp file / temp working dir management. It does avoidable dumb things like creating dirs/files as one user and then can't remove or use them later as another user. -* Replace the entire thing with a bash script, maybe with zenity for an optional gui. I think this vala/gtk project is actually kind of crap. \ No newline at end of file +* Replace the entire thing with a bash script, maybe with zenity for an optional gui. diff --git a/README.md.src b/README.md.src index 92d2b7a4..d2239675 100644 --- a/README.md.src +++ b/README.md.src @@ -67,4 +67,4 @@ Determining what is currently install & running fails, but works if you just do ...that is really kind of inexcusable crap could all be a lot better. * More careful temp file / temp working dir management. It does avoidable dumb things like creating dirs/files as one user and then can't remove or use them later as another user. -* Replace the entire thing with a bash script, maybe with zenity for an optional gui. I think this vala/gtk project is actually kind of crap. \ No newline at end of file +* Replace the entire thing with a bash script, maybe with zenity for an optional gui. diff --git a/po/_messages.pot b/po/_messages.pot index d6dfdbb9..15680896 100644 --- a/po/_messages.pot +++ b/po/_messages.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline 1.0.0\n" "Report-Msgid-Bugs-To: bw.aljex@gmail.com\n" -"POT-Creation-Date: 2019-03-16 04:27-0400\n" +"POT-Creation-Date: 2019-03-16 06:19-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -304,8 +304,8 @@ msgstr "" msgid "Installed" msgstr "" -#: src/Gtk/MainWindow.vala:350 src/Gtk/MainWindow.vala:547 -#: src/Gtk/MainWindow.vala:683 src/Utility/TeeJee.System.vala:281 +#: src/Gtk/MainWindow.vala:350 src/Gtk/MainWindow.vala:548 +#: src/Gtk/MainWindow.vala:684 src/Utility/TeeJee.System.vala:281 msgid "Internet connection is not active" msgstr "" @@ -317,7 +317,7 @@ msgstr "" msgid "Kernel" msgstr "" -#: src/Gtk/MainWindow.vala:531 +#: src/Gtk/MainWindow.vala:532 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "" @@ -359,8 +359,8 @@ msgstr "" msgid "No" msgstr "" -#: src/Gtk/MainWindow.vala:350 src/Gtk/MainWindow.vala:547 -#: src/Gtk/MainWindow.vala:683 +#: src/Gtk/MainWindow.vala:350 src/Gtk/MainWindow.vala:548 +#: src/Gtk/MainWindow.vala:684 msgid "No Internet" msgstr "" @@ -369,7 +369,7 @@ msgid "No kernels specified" msgstr "" #: src/Common/LinuxKernel.vala:784 src/Console/AppConsole.vala:374 -#: src/Console/AppConsole.vala:432 src/Gtk/MainWindow.vala:793 +#: src/Console/AppConsole.vala:432 src/Gtk/MainWindow.vala:794 msgid "No updates found" msgstr "" @@ -435,7 +435,7 @@ msgstr "" msgid "Refresh" msgstr "" -#: src/Gtk/MainWindow.vala:566 +#: src/Gtk/MainWindow.vala:567 msgid "Refreshing..." msgstr "" @@ -540,7 +540,7 @@ msgstr "" msgid "Third Party Tools" msgstr "" -#: src/Common/LinuxKernel.vala:1269 src/Gtk/MainWindow.vala:678 +#: src/Common/LinuxKernel.vala:1269 src/Gtk/MainWindow.vala:679 msgid "This kernel is already installed." msgstr "" diff --git a/po/es.po b/po/es.po index f679d64d..1834531b 100644 --- a/po/es.po +++ b/po/es.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu\n" "Report-Msgid-Bugs-To: bw.aljex@gmail.com\n" -"POT-Creation-Date: 2019-03-16 04:27-0400\n" +"POT-Creation-Date: 2019-03-16 06:19-0400\n" "PO-Revision-Date: 2018-01-03 02:03-0600\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish\n" @@ -307,8 +307,8 @@ msgstr "" msgid "Installed" msgstr "Instalado" -#: src/Gtk/MainWindow.vala:350 src/Gtk/MainWindow.vala:547 -#: src/Gtk/MainWindow.vala:683 src/Utility/TeeJee.System.vala:281 +#: src/Gtk/MainWindow.vala:350 src/Gtk/MainWindow.vala:548 +#: src/Gtk/MainWindow.vala:684 src/Utility/TeeJee.System.vala:281 msgid "Internet connection is not active" msgstr "La conexión a Internet está inactiva" @@ -321,7 +321,7 @@ msgstr "La conexión a Internet está inactiva" msgid "Kernel" msgstr "Núcleo" -#: src/Gtk/MainWindow.vala:531 +#: src/Gtk/MainWindow.vala:532 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "" "Herramienta de renovación de núcleo para distribuciones basadas en Ubuntu" @@ -364,8 +364,8 @@ msgstr "Se seleccionaron varios núcleos para su instalación. Elija solo uno." msgid "No" msgstr "No" -#: src/Gtk/MainWindow.vala:350 src/Gtk/MainWindow.vala:547 -#: src/Gtk/MainWindow.vala:683 +#: src/Gtk/MainWindow.vala:350 src/Gtk/MainWindow.vala:548 +#: src/Gtk/MainWindow.vala:684 msgid "No Internet" msgstr "No hay Internet" @@ -374,7 +374,7 @@ msgid "No kernels specified" msgstr "" #: src/Common/LinuxKernel.vala:784 src/Console/AppConsole.vala:374 -#: src/Console/AppConsole.vala:432 src/Gtk/MainWindow.vala:793 +#: src/Console/AppConsole.vala:432 src/Gtk/MainWindow.vala:794 msgid "No updates found" msgstr "No se encontró ninguna actualización" @@ -440,7 +440,7 @@ msgstr "" msgid "Refresh" msgstr "Actualizar" -#: src/Gtk/MainWindow.vala:566 +#: src/Gtk/MainWindow.vala:567 msgid "Refreshing..." msgstr "Actualizando…" @@ -547,7 +547,7 @@ msgstr "Los siguientes kernels serán eliminados:" msgid "Third Party Tools" msgstr "Herramientas de terceros" -#: src/Common/LinuxKernel.vala:1269 src/Gtk/MainWindow.vala:678 +#: src/Common/LinuxKernel.vala:1269 src/Gtk/MainWindow.vala:679 msgid "This kernel is already installed." msgstr "Este núcleo ya se instaló." diff --git a/po/fr.po b/po/fr.po index 9b8d1eb8..140afdd2 100644 --- a/po/fr.po +++ b/po/fr.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu\n" "Report-Msgid-Bugs-To: bw.aljex@gmail.com\n" -"POT-Creation-Date: 2019-03-16 04:27-0400\n" +"POT-Creation-Date: 2019-03-16 06:19-0400\n" "PO-Revision-Date: 2018-08-05 15:50+0200\n" "Last-Translator: Yolateng0 \n" "Language-Team: French\n" @@ -312,8 +312,8 @@ msgstr "" msgid "Installed" msgstr "Installé" -#: src/Gtk/MainWindow.vala:350 src/Gtk/MainWindow.vala:547 -#: src/Gtk/MainWindow.vala:683 src/Utility/TeeJee.System.vala:281 +#: src/Gtk/MainWindow.vala:350 src/Gtk/MainWindow.vala:548 +#: src/Gtk/MainWindow.vala:684 src/Utility/TeeJee.System.vala:281 msgid "Internet connection is not active" msgstr "Connexion internet inexistante" @@ -326,7 +326,7 @@ msgstr "Connexion internet inexistante" msgid "Kernel" msgstr "Noyau" -#: src/Gtk/MainWindow.vala:531 +#: src/Gtk/MainWindow.vala:532 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "" "Utilitaire de mise à niveau des noyaux pour les distributions basées pour " @@ -373,8 +373,8 @@ msgstr "" msgid "No" msgstr "Non" -#: src/Gtk/MainWindow.vala:350 src/Gtk/MainWindow.vala:547 -#: src/Gtk/MainWindow.vala:683 +#: src/Gtk/MainWindow.vala:350 src/Gtk/MainWindow.vala:548 +#: src/Gtk/MainWindow.vala:684 msgid "No Internet" msgstr "Pas d'Internet" @@ -383,7 +383,7 @@ msgid "No kernels specified" msgstr "" #: src/Common/LinuxKernel.vala:784 src/Console/AppConsole.vala:374 -#: src/Console/AppConsole.vala:432 src/Gtk/MainWindow.vala:793 +#: src/Console/AppConsole.vala:432 src/Gtk/MainWindow.vala:794 msgid "No updates found" msgstr "Aucune mise à jour disponible" @@ -449,7 +449,7 @@ msgstr "" msgid "Refresh" msgstr "Actualiser" -#: src/Gtk/MainWindow.vala:566 +#: src/Gtk/MainWindow.vala:567 msgid "Refreshing..." msgstr "Actualisation..." @@ -559,7 +559,7 @@ msgstr "" msgid "Third Party Tools" msgstr "Outils tiers" -#: src/Common/LinuxKernel.vala:1269 src/Gtk/MainWindow.vala:678 +#: src/Common/LinuxKernel.vala:1269 src/Gtk/MainWindow.vala:679 msgid "This kernel is already installed." msgstr "Ce noyau est déjà installé." diff --git a/po/hr.po b/po/hr.po index 11acb28a..a2f340db 100644 --- a/po/hr.po +++ b/po/hr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu\n" "Report-Msgid-Bugs-To: bw.aljex@gmail.com\n" -"POT-Creation-Date: 2019-03-16 04:27-0400\n" +"POT-Creation-Date: 2019-03-16 06:19-0400\n" "PO-Revision-Date: 2017-12-24 00:52+0100\n" "Last-Translator: gogo \n" "Language-Team: Croatian \n" @@ -312,8 +312,8 @@ msgstr "" msgid "Installed" msgstr "Instalirano" -#: src/Gtk/MainWindow.vala:350 src/Gtk/MainWindow.vala:547 -#: src/Gtk/MainWindow.vala:683 src/Utility/TeeJee.System.vala:281 +#: src/Gtk/MainWindow.vala:350 src/Gtk/MainWindow.vala:548 +#: src/Gtk/MainWindow.vala:684 src/Utility/TeeJee.System.vala:281 msgid "Internet connection is not active" msgstr "Internet povezivanje nije aktivno" @@ -326,7 +326,7 @@ msgstr "Internet povezivanje nije aktivno" msgid "Kernel" msgstr "Kernel" -#: src/Gtk/MainWindow.vala:531 +#: src/Gtk/MainWindow.vala:532 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Alat za nadogradnju kernela Ubuntu temeljenih distribucija" @@ -369,8 +369,8 @@ msgstr "Više kernela je odabrano za instalaciju. odaberite samo jedan." msgid "No" msgstr "Ne" -#: src/Gtk/MainWindow.vala:350 src/Gtk/MainWindow.vala:547 -#: src/Gtk/MainWindow.vala:683 +#: src/Gtk/MainWindow.vala:350 src/Gtk/MainWindow.vala:548 +#: src/Gtk/MainWindow.vala:684 msgid "No Internet" msgstr "Nema pristupa internetu" @@ -379,7 +379,7 @@ msgid "No kernels specified" msgstr "" #: src/Common/LinuxKernel.vala:784 src/Console/AppConsole.vala:374 -#: src/Console/AppConsole.vala:432 src/Gtk/MainWindow.vala:793 +#: src/Console/AppConsole.vala:432 src/Gtk/MainWindow.vala:794 msgid "No updates found" msgstr "Nema pronađenih nadopuna" @@ -445,7 +445,7 @@ msgstr "" msgid "Refresh" msgstr "Osvježi" -#: src/Gtk/MainWindow.vala:566 +#: src/Gtk/MainWindow.vala:567 msgid "Refreshing..." msgstr "Osvježavanje..." @@ -555,7 +555,7 @@ msgstr "" msgid "Third Party Tools" msgstr "Alati treće strane" -#: src/Common/LinuxKernel.vala:1269 src/Gtk/MainWindow.vala:678 +#: src/Common/LinuxKernel.vala:1269 src/Gtk/MainWindow.vala:679 msgid "This kernel is already installed." msgstr "Ovaj kernel je već instaliran." diff --git a/po/nl.po b/po/nl.po index 013d1dbd..4e63a37d 100644 --- a/po/nl.po +++ b/po/nl.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu 2.2\n" "Report-Msgid-Bugs-To: bw.aljex@gmail.com\n" -"POT-Creation-Date: 2019-03-16 04:27-0400\n" +"POT-Creation-Date: 2019-03-16 06:19-0400\n" "PO-Revision-Date: 2017-04-30 11:50+0200\n" "Last-Translator: Heimen Stoffels \n" "Language-Team: \n" @@ -313,8 +313,8 @@ msgstr "" msgid "Installed" msgstr "Geïnstalleerd" -#: src/Gtk/MainWindow.vala:350 src/Gtk/MainWindow.vala:547 -#: src/Gtk/MainWindow.vala:683 src/Utility/TeeJee.System.vala:281 +#: src/Gtk/MainWindow.vala:350 src/Gtk/MainWindow.vala:548 +#: src/Gtk/MainWindow.vala:684 src/Utility/TeeJee.System.vala:281 msgid "Internet connection is not active" msgstr "U bent niet verbonden met het internet" @@ -327,7 +327,7 @@ msgstr "U bent niet verbonden met het internet" msgid "Kernel" msgstr "Kernel" -#: src/Gtk/MainWindow.vala:531 +#: src/Gtk/MainWindow.vala:532 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Kernel-upgradehulpmiddel voor op Ubuntu-gebaseerde distributies" @@ -373,8 +373,8 @@ msgstr "" msgid "No" msgstr "" -#: src/Gtk/MainWindow.vala:350 src/Gtk/MainWindow.vala:547 -#: src/Gtk/MainWindow.vala:683 +#: src/Gtk/MainWindow.vala:350 src/Gtk/MainWindow.vala:548 +#: src/Gtk/MainWindow.vala:684 msgid "No Internet" msgstr "Geen internetverbinding" @@ -383,7 +383,7 @@ msgid "No kernels specified" msgstr "" #: src/Common/LinuxKernel.vala:784 src/Console/AppConsole.vala:374 -#: src/Console/AppConsole.vala:432 src/Gtk/MainWindow.vala:793 +#: src/Console/AppConsole.vala:432 src/Gtk/MainWindow.vala:794 msgid "No updates found" msgstr "Geen updates gevonden" @@ -449,7 +449,7 @@ msgstr "" msgid "Refresh" msgstr "Verversen" -#: src/Gtk/MainWindow.vala:566 +#: src/Gtk/MainWindow.vala:567 msgid "Refreshing..." msgstr "Bezig met verversen..." @@ -561,7 +561,7 @@ msgstr "" msgid "Third Party Tools" msgstr "Externe hulpmiddelen" -#: src/Common/LinuxKernel.vala:1269 src/Gtk/MainWindow.vala:678 +#: src/Common/LinuxKernel.vala:1269 src/Gtk/MainWindow.vala:679 msgid "This kernel is already installed." msgstr "Deze kernel is al geïnstalleerd." diff --git a/po/pl.po b/po/pl.po index de562044..adbd82fc 100644 --- a/po/pl.po +++ b/po/pl.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu\n" "Report-Msgid-Bugs-To: bw.aljex@gmail.com\n" -"POT-Creation-Date: 2019-03-16 04:27-0400\n" +"POT-Creation-Date: 2019-03-16 06:19-0400\n" "PO-Revision-Date: 2017-08-12 15:26+0200\n" "Last-Translator: \n" "Language-Team: Polish\n" @@ -310,8 +310,8 @@ msgstr "" msgid "Installed" msgstr "Zainstalowany" -#: src/Gtk/MainWindow.vala:350 src/Gtk/MainWindow.vala:547 -#: src/Gtk/MainWindow.vala:683 src/Utility/TeeJee.System.vala:281 +#: src/Gtk/MainWindow.vala:350 src/Gtk/MainWindow.vala:548 +#: src/Gtk/MainWindow.vala:684 src/Utility/TeeJee.System.vala:281 msgid "Internet connection is not active" msgstr "Brak połączenia z internetem" @@ -324,7 +324,7 @@ msgstr "Brak połączenia z internetem" msgid "Kernel" msgstr "Jądro" -#: src/Gtk/MainWindow.vala:531 +#: src/Gtk/MainWindow.vala:532 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Narzędzie uaktualniania jądra dla dystrybucji z rodziny Ubuntu" @@ -368,8 +368,8 @@ msgstr "Wybrano kilka jąder do instalacji. Wybierz tylko jedno." msgid "No" msgstr "" -#: src/Gtk/MainWindow.vala:350 src/Gtk/MainWindow.vala:547 -#: src/Gtk/MainWindow.vala:683 +#: src/Gtk/MainWindow.vala:350 src/Gtk/MainWindow.vala:548 +#: src/Gtk/MainWindow.vala:684 msgid "No Internet" msgstr "Brak internetu" @@ -378,7 +378,7 @@ msgid "No kernels specified" msgstr "" #: src/Common/LinuxKernel.vala:784 src/Console/AppConsole.vala:374 -#: src/Console/AppConsole.vala:432 src/Gtk/MainWindow.vala:793 +#: src/Console/AppConsole.vala:432 src/Gtk/MainWindow.vala:794 msgid "No updates found" msgstr "Nie znaleziono aktualizacji" @@ -444,7 +444,7 @@ msgstr "" msgid "Refresh" msgstr "Odśwież" -#: src/Gtk/MainWindow.vala:566 +#: src/Gtk/MainWindow.vala:567 msgid "Refreshing..." msgstr "Odświeżam..." @@ -555,7 +555,7 @@ msgstr "" msgid "Third Party Tools" msgstr "Narzędzia osób trzecich" -#: src/Common/LinuxKernel.vala:1269 src/Gtk/MainWindow.vala:678 +#: src/Common/LinuxKernel.vala:1269 src/Gtk/MainWindow.vala:679 msgid "This kernel is already installed." msgstr "To jądro jest już zainstalowane." diff --git a/po/ru.po b/po/ru.po index 126c41d1..b15a1666 100644 --- a/po/ru.po +++ b/po/ru.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu\n" "Report-Msgid-Bugs-To: bw.aljex@gmail.com\n" -"POT-Creation-Date: 2019-03-16 04:27-0400\n" +"POT-Creation-Date: 2019-03-16 06:19-0400\n" "PO-Revision-Date: 2016-12-13 16:46+0300\n" "Last-Translator: Faust3000 \n" "Language-Team: Russian \n" @@ -317,8 +317,8 @@ msgstr "" msgid "Installed" msgstr "Установлено" -#: src/Gtk/MainWindow.vala:350 src/Gtk/MainWindow.vala:547 -#: src/Gtk/MainWindow.vala:683 src/Utility/TeeJee.System.vala:281 +#: src/Gtk/MainWindow.vala:350 src/Gtk/MainWindow.vala:548 +#: src/Gtk/MainWindow.vala:684 src/Utility/TeeJee.System.vala:281 msgid "Internet connection is not active" msgstr "Интернет соединение не активно" @@ -331,7 +331,7 @@ msgstr "Интернет соединение не активно" msgid "Kernel" msgstr "Ядро" -#: src/Gtk/MainWindow.vala:531 +#: src/Gtk/MainWindow.vala:532 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Программа обновления ядра для дистрибутивов на базе Ubuntu" @@ -375,8 +375,8 @@ msgstr "" msgid "No" msgstr "" -#: src/Gtk/MainWindow.vala:350 src/Gtk/MainWindow.vala:547 -#: src/Gtk/MainWindow.vala:683 +#: src/Gtk/MainWindow.vala:350 src/Gtk/MainWindow.vala:548 +#: src/Gtk/MainWindow.vala:684 msgid "No Internet" msgstr "" @@ -385,7 +385,7 @@ msgid "No kernels specified" msgstr "" #: src/Common/LinuxKernel.vala:784 src/Console/AppConsole.vala:374 -#: src/Console/AppConsole.vala:432 src/Gtk/MainWindow.vala:793 +#: src/Console/AppConsole.vala:432 src/Gtk/MainWindow.vala:794 msgid "No updates found" msgstr "Обновлений не найдено" @@ -451,7 +451,7 @@ msgstr "Очистить" msgid "Refresh" msgstr "Обновить" -#: src/Gtk/MainWindow.vala:566 +#: src/Gtk/MainWindow.vala:567 msgid "Refreshing..." msgstr "Обновление..." @@ -563,7 +563,7 @@ msgstr "" msgid "Third Party Tools" msgstr "Сторонние инструменты" -#: src/Common/LinuxKernel.vala:1269 src/Gtk/MainWindow.vala:678 +#: src/Common/LinuxKernel.vala:1269 src/Gtk/MainWindow.vala:679 msgid "This kernel is already installed." msgstr "Это ядро уже установлено." diff --git a/po/sv.po b/po/sv.po index dd8b51c7..5ccf1945 100644 --- a/po/sv.po +++ b/po/sv.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu 2.2\n" "Report-Msgid-Bugs-To: bw.aljex@gmail.com\n" -"POT-Creation-Date: 2019-03-16 04:27-0400\n" +"POT-Creation-Date: 2019-03-16 06:19-0400\n" "PO-Revision-Date: 2018-01-13 16:56+0100\n" "Last-Translator: Åke Engelbrektson \n" "Language-Team: Svenska Språkfiler \n" @@ -311,8 +311,8 @@ msgstr "Installation slutförd. Omstart krävs för att tillämpa den nya kärna msgid "Installed" msgstr "Installerad" -#: src/Gtk/MainWindow.vala:350 src/Gtk/MainWindow.vala:547 -#: src/Gtk/MainWindow.vala:683 src/Utility/TeeJee.System.vala:281 +#: src/Gtk/MainWindow.vala:350 src/Gtk/MainWindow.vala:548 +#: src/Gtk/MainWindow.vala:684 src/Utility/TeeJee.System.vala:281 msgid "Internet connection is not active" msgstr "Internetuppkopplingen är inte aktiv" @@ -325,7 +325,7 @@ msgstr "Internetuppkopplingen är inte aktiv" msgid "Kernel" msgstr "Kärna" -#: src/Gtk/MainWindow.vala:531 +#: src/Gtk/MainWindow.vala:532 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Kärnuppgraderingsverktyg för Ubuntu-baserade distributioner" @@ -368,8 +368,8 @@ msgstr "Flera kärnor valda för installation. Välj endast en." msgid "No" msgstr "Nej" -#: src/Gtk/MainWindow.vala:350 src/Gtk/MainWindow.vala:547 -#: src/Gtk/MainWindow.vala:683 +#: src/Gtk/MainWindow.vala:350 src/Gtk/MainWindow.vala:548 +#: src/Gtk/MainWindow.vala:684 msgid "No Internet" msgstr "Inget internet" @@ -378,7 +378,7 @@ msgid "No kernels specified" msgstr "" #: src/Common/LinuxKernel.vala:784 src/Console/AppConsole.vala:374 -#: src/Console/AppConsole.vala:432 src/Gtk/MainWindow.vala:793 +#: src/Console/AppConsole.vala:432 src/Gtk/MainWindow.vala:794 msgid "No updates found" msgstr "Inga uppdateringar hittades" @@ -444,7 +444,7 @@ msgstr "Rensa" msgid "Refresh" msgstr "Uppdatera" -#: src/Gtk/MainWindow.vala:566 +#: src/Gtk/MainWindow.vala:567 msgid "Refreshing..." msgstr "Uppdaterar ..." @@ -554,7 +554,7 @@ msgstr "" msgid "Third Party Tools" msgstr "Tredjepartsverktyg" -#: src/Common/LinuxKernel.vala:1269 src/Gtk/MainWindow.vala:678 +#: src/Common/LinuxKernel.vala:1269 src/Gtk/MainWindow.vala:679 msgid "This kernel is already installed." msgstr "Denna kärna är redan installerad" diff --git a/po/tr.po b/po/tr.po index 52eb99b5..db2a9cfb 100644 --- a/po/tr.po +++ b/po/tr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu\n" "Report-Msgid-Bugs-To: bw.aljex@gmail.com\n" -"POT-Creation-Date: 2019-03-16 04:27-0400\n" +"POT-Creation-Date: 2019-03-16 06:19-0400\n" "PO-Revision-Date: 2019-03-12 19:35+0300\n" "Last-Translator: Gökhan GÖKKAYA \n" "Language-Team: Turkish\n" @@ -306,8 +306,8 @@ msgstr "" msgid "Installed" msgstr "Kurulu" -#: src/Gtk/MainWindow.vala:350 src/Gtk/MainWindow.vala:547 -#: src/Gtk/MainWindow.vala:683 src/Utility/TeeJee.System.vala:281 +#: src/Gtk/MainWindow.vala:350 src/Gtk/MainWindow.vala:548 +#: src/Gtk/MainWindow.vala:684 src/Utility/TeeJee.System.vala:281 msgid "Internet connection is not active" msgstr "İnternet bağlantısı aktif değil" @@ -320,7 +320,7 @@ msgstr "İnternet bağlantısı aktif değil " msgid "Kernel" msgstr "Çekirdek" -#: src/Gtk/MainWindow.vala:531 +#: src/Gtk/MainWindow.vala:532 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Ubuntu tabanlı dağıtımlar için çekirdek güncelleme aracı" @@ -362,8 +362,8 @@ msgstr "Kurulum için çoklu çekirdek seçildi. Sadece bir tane seçiniz." msgid "No" msgstr "Hayır" -#: src/Gtk/MainWindow.vala:350 src/Gtk/MainWindow.vala:547 -#: src/Gtk/MainWindow.vala:683 +#: src/Gtk/MainWindow.vala:350 src/Gtk/MainWindow.vala:548 +#: src/Gtk/MainWindow.vala:684 msgid "No Internet" msgstr "İnternet Yok" @@ -372,7 +372,7 @@ msgid "No kernels specified" msgstr "Belirtilen çekirdek yok" #: src/Common/LinuxKernel.vala:784 src/Console/AppConsole.vala:374 -#: src/Console/AppConsole.vala:432 src/Gtk/MainWindow.vala:793 +#: src/Console/AppConsole.vala:432 src/Gtk/MainWindow.vala:794 msgid "No updates found" msgstr "Güncelleme bulunamadı" @@ -438,7 +438,7 @@ msgstr "Kaldır" msgid "Refresh" msgstr "Yenile" -#: src/Gtk/MainWindow.vala:566 +#: src/Gtk/MainWindow.vala:567 msgid "Refreshing..." msgstr "Yenileniyor..." @@ -545,7 +545,7 @@ msgstr "Aşağıdaki çekirdekler silinecek" msgid "Third Party Tools" msgstr "Üçüncü Parti Araçlar" -#: src/Common/LinuxKernel.vala:1269 src/Gtk/MainWindow.vala:678 +#: src/Common/LinuxKernel.vala:1269 src/Gtk/MainWindow.vala:679 msgid "This kernel is already installed." msgstr "Bu çekirdek zaten kurulu." diff --git a/src/Console/AppConsole.vala b/src/Console/AppConsole.vala index 9fda7f93..c966a5f3 100644 --- a/src/Console/AppConsole.vala +++ b/src/Console/AppConsole.vala @@ -78,7 +78,7 @@ public class AppConsole : GLib.Object { private static string help_message() { - string msg = "\n" + BRANDING_LONGNAME + " v" + BRANDING_VERSION + " by " + BRANDING_AUTHORNAME + " (" + BRANDING_AUTHOREMAIL + ")\n"; + string msg = "\n" + BRANDING_SHORTNAME + " v" + BRANDING_VERSION + " - " + BRANDING_LONGNAME + "\n"; msg += "\n"; msg += _("Syntax") + ": " + BRANDING_SHORTNAME + " [options]\n"; msg += "\n"; diff --git a/src/Gtk/AppGtk.vala b/src/Gtk/AppGtk.vala index df583f98..4ba58ffd 100644 --- a/src/Gtk/AppGtk.vala +++ b/src/Gtk/AppGtk.vala @@ -174,7 +174,7 @@ public class AppGtk : GLib.Object { public static string help_message() { - string msg = "\n" + BRANDING_LONGNAME + " v" + BRANDING_VERSION + " by " + BRANDING_AUTHORNAME + " (" + BRANDING_AUTHOREMAIL + ")\n"; + string msg = "\n" + BRANDING_SHORTNAME + " v" + BRANDING_VERSION + " - " + BRANDING_LONGNAME + "\n"; msg += "\n"; msg += _("Syntax") + ": " + BRANDING_SHORTNAME + "-gtk [options]\n"; msg += "\n"; diff --git a/src/Gtk/MainWindow.vala b/src/Gtk/MainWindow.vala index fed7640f..37ad12f7 100644 --- a/src/Gtk/MainWindow.vala +++ b/src/Gtk/MainWindow.vala @@ -504,6 +504,7 @@ public class MainWindow : Gtk.Window{ var dialog = new AboutWindow(); dialog.set_transient_for (this); + // FIXME - this should come from the AUTHORS file, or from git dialog.authors = { "Tony George:teejeetech@gmail.com", BRANDING_AUTHORNAME+":"+BRANDING_AUTHOREMAIL @@ -529,7 +530,7 @@ public class MainWindow : Gtk.Window{ dialog.program_name = BRANDING_LONGNAME; dialog.comments = _("Kernel upgrade utility for Ubuntu-based distributions"); - dialog.copyright = "Original: © 2012-18 Tony George\nForked: 2019 "+BRANDING_AUTHORNAME+" ("+BRANDING_AUTHOREMAIL+")"; + dialog.copyright = "Original: \"ukuu\" © 2015-18 Tony George\nForked: \""+BRANDING_SHORTNAME+"\"2019 "+BRANDING_AUTHORNAME+" ("+BRANDING_AUTHOREMAIL+")"; dialog.version = BRANDING_VERSION; dialog.logo = get_app_icon(128); From 42cd529b8d5bd473e6488d528ead94b53a62cb85 Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Sat, 16 Mar 2019 06:38:36 -0400 Subject: [PATCH 025/567] update screen shot --- main_window.png | Bin 29419 -> 27423 bytes 1 file changed, 0 insertions(+), 0 deletions(-) diff --git a/main_window.png b/main_window.png index 4e2bcfe2b779fa0bf55c4d27bb7e6f4efde43083..0c86841f26223617d13bb4abb1aa42797f4ae5b8 100644 GIT binary patch literal 27423 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 From 7a6330cabdb0cccd451eb541b62cc72aa62cb1f3 Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Sat, 16 Mar 2019 06:53:32 -0400 Subject: [PATCH 026/567] icon name in desktop file --- mainline.desktop.src | 2 +- src/Gtk/MainWindow.vala | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/mainline.desktop.src b/mainline.desktop.src index f566b33d..c04857b4 100644 --- a/mainline.desktop.src +++ b/mainline.desktop.src @@ -5,7 +5,7 @@ Exec=BRANDING_SHORTNAME-gtk Type=Application GenericName=BRANDING_LONGNAME Terminal=false -Icon=ukuu +Icon=BRANDING_SHORTNAME Comment=BRANDING_LONGNAME X-KDE-StartupNotify=false Categories=System; diff --git a/src/Gtk/MainWindow.vala b/src/Gtk/MainWindow.vala index 37ad12f7..c617e6d1 100644 --- a/src/Gtk/MainWindow.vala +++ b/src/Gtk/MainWindow.vala @@ -530,7 +530,7 @@ public class MainWindow : Gtk.Window{ dialog.program_name = BRANDING_LONGNAME; dialog.comments = _("Kernel upgrade utility for Ubuntu-based distributions"); - dialog.copyright = "Original: \"ukuu\" © 2015-18 Tony George\nForked: \""+BRANDING_SHORTNAME+"\"2019 "+BRANDING_AUTHORNAME+" ("+BRANDING_AUTHOREMAIL+")"; + dialog.copyright = "Original: \"ukuu\" © 2015-18 Tony George\nForked: \""+BRANDING_SHORTNAME+"\" 2019 "+BRANDING_AUTHORNAME+" ("+BRANDING_AUTHOREMAIL+")"; dialog.version = BRANDING_VERSION; dialog.logo = get_app_icon(128); From f1da8a987ae24c1f94ee6f88eb19e50460ba7dd3 Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Sat, 16 Mar 2019 07:11:27 -0400 Subject: [PATCH 027/567] misc_files in Makefile (which fixes desktop file indirectly) --- Makefile | 4 ++-- mainline.desktop | 2 +- po/_messages.pot | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index 58bab30d..ad81520f 100644 --- a/Makefile +++ b/Makefile @@ -33,7 +33,7 @@ misc_files := README.md ${BRANDING_SHORTNAME}.desktop debian/control debian/copy ################################################################################ -all: $(misc_files) app app-gtk translations +all: ${misc_files} app app-gtk translations app-gtk: valac ${branding_symbols} --Xcc="-lm" \ @@ -102,7 +102,7 @@ uninstall: rm -f $(DESTDIR)/home/*/.config/${BRANDING_SHORTNAME}/${BRANDING_SHORTNAME}-notify.sh rm -f $(DESTDIR)/home/*/.config/autostart/${BRANDING_SHORTNAME}.desktop -deb-src: clean ${miscs} +deb-src: clean ${misc_files} dpkg-source --build . mkdir -pv release/deb-src mv -fv ../${BRANDING_SHORTNAME}_$(pkg_version).dsc release/deb-src/ diff --git a/mainline.desktop b/mainline.desktop index beca80dd..a6b4a08f 100644 --- a/mainline.desktop +++ b/mainline.desktop @@ -5,7 +5,7 @@ Exec=mainline-gtk Type=Application GenericName=Ubuntu Mainline Kernel Installer Terminal=false -Icon=ukuu +Icon=mainline Comment=Ubuntu Mainline Kernel Installer X-KDE-StartupNotify=false Categories=System; diff --git a/po/_messages.pot b/po/_messages.pot index 15680896..caf1ffe3 100644 --- a/po/_messages.pot +++ b/po/_messages.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline 1.0.0\n" "Report-Msgid-Bugs-To: bw.aljex@gmail.com\n" -"POT-Creation-Date: 2019-03-16 06:19-0400\n" +"POT-Creation-Date: 2019-03-16 07:08-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" From e6d97267999cb23fa97ccc14f667c765ff8bbf17 Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Sat, 16 Mar 2019 08:33:35 -0400 Subject: [PATCH 028/567] ensure the version number in debian/changelog matches BRANDING.mak before trying to build a deb --- Makefile | 4 ++++ po/_messages.pot | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index ad81520f..8059ef5e 100644 --- a/Makefile +++ b/Makefile @@ -33,6 +33,7 @@ misc_files := README.md ${BRANDING_SHORTNAME}.desktop debian/control debian/copy ################################################################################ + all: ${misc_files} app app-gtk translations app-gtk: @@ -103,6 +104,9 @@ uninstall: rm -f $(DESTDIR)/home/*/.config/autostart/${BRANDING_SHORTNAME}.desktop deb-src: clean ${misc_files} +ifneq (${BRANDING_VERSION},${pkg_version}) + echo "Version numbers in BRANDING.mak (${BRANDING_VERSION}) and debian/changelog (${pkg_version}) do not match." >&2 ; exit 1 +endif dpkg-source --build . mkdir -pv release/deb-src mv -fv ../${BRANDING_SHORTNAME}_$(pkg_version).dsc release/deb-src/ diff --git a/po/_messages.pot b/po/_messages.pot index caf1ffe3..4552201c 100644 --- a/po/_messages.pot +++ b/po/_messages.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline 1.0.0\n" "Report-Msgid-Bugs-To: bw.aljex@gmail.com\n" -"POT-Creation-Date: 2019-03-16 07:08-0400\n" +"POT-Creation-Date: 2019-03-16 07:38-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" From b2849bfe66d54ffb05e47d38d1ef4a26725afe09 Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Sat, 16 Mar 2019 09:01:02 -0400 Subject: [PATCH 029/567] scan for .po files automatically instead of hardcoded list --- Makefile | 14 ++++++-------- po/_messages.pot | 2 +- 2 files changed, 7 insertions(+), 9 deletions(-) diff --git a/Makefile b/Makefile index 8059ef5e..9ea48f56 100644 --- a/Makefile +++ b/Makefile @@ -14,8 +14,6 @@ polkitdir=$(sharedir)/polkit-1/actions mandir=$(sharedir)/man man1dir=$(mandir)/man1 -translations = es fr hr nl pl ru sv tr - vte_version = vte-2.91 glib_version = glib-2.0 gio_version = gio-unix-2.0 @@ -33,7 +31,6 @@ misc_files := README.md ${BRANDING_SHORTNAME}.desktop debian/control debian/copy ################################################################################ - all: ${misc_files} app app-gtk translations app-gtk: @@ -63,8 +60,8 @@ translations: --package-version="${BRANDING_VERSION}" \ --msgid-bugs-address="${BRANDING_AUTHOREMAIL}" \ --escape --sort-output -o po/_messages.pot - for lang in ${translations} ; do \ - msgmerge --update -v po/$$lang.po po/_messages.pot ; \ + for p in po/*.po ; do \ + msgmerge --backup=none --update -v $${p} po/_messages.pot ; \ done clean: @@ -88,9 +85,10 @@ install: #install -m 0644 share/polkit-1/actions/${BRANDING_SHORTNAME}.policy "$(DESTDIR)$(polkitdir)" install -m 0755 ${BRANDING_SHORTNAME}.desktop "$(DESTDIR)$(launcherdir)" install -m 0755 share/pixmaps/${BRANDING_SHORTNAME}.* "$(DESTDIR)$(sharedir)/pixmaps" - for lang in ${translations}; do \ - mkdir -p "$(DESTDIR)$(localedir)/$$lang/LC_MESSAGES"; \ - msgfmt --check --verbose -o "$(DESTDIR)$(localedir)/$$lang/LC_MESSAGES/${BRANDING_SHORTNAME}.mo" po/$$lang.po ; \ + for p in po/*.po; do \ + l=$${p#*/} l=$${l%.*}; \ + mkdir -p "$(DESTDIR)$(localedir)/$${l}/LC_MESSAGES"; \ + msgfmt --check --verbose -o "$(DESTDIR)$(localedir)/$${l}/LC_MESSAGES/${BRANDING_SHORTNAME}.mo" $${p} ; \ done uninstall: diff --git a/po/_messages.pot b/po/_messages.pot index 4552201c..cfc2143c 100644 --- a/po/_messages.pot +++ b/po/_messages.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline 1.0.0\n" "Report-Msgid-Bugs-To: bw.aljex@gmail.com\n" -"POT-Creation-Date: 2019-03-16 07:38-0400\n" +"POT-Creation-Date: 2019-03-16 08:56-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" From decb2df8866eabf0a59b0b756cf665d6b9f80912 Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Mon, 18 Mar 2019 06:23:47 -0400 Subject: [PATCH 030/567] Add missing translators to credits window. Remove unused code. --- po/_messages.pot | 26 +++++++++++++------------- po/es.po | 26 +++++++++++++------------- po/fr.po | 26 +++++++++++++------------- po/hr.po | 26 +++++++++++++------------- po/nl.po | 26 +++++++++++++------------- po/pl.po | 26 +++++++++++++------------- po/ru.po | 26 +++++++++++++------------- po/sv.po | 26 +++++++++++++------------- po/tr.po | 26 +++++++++++++------------- src/Gtk/MainWindow.vala | 6 ++++-- src/Utility/Gtk/GtkHelper.vala | 21 --------------------- src/Utility/TeeJee.Process.vala | 3 ++- 12 files changed, 123 insertions(+), 141 deletions(-) diff --git a/po/_messages.pot b/po/_messages.pot index cfc2143c..d16f6ec6 100644 --- a/po/_messages.pot +++ b/po/_messages.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline 1.0.0\n" "Report-Msgid-Bugs-To: bw.aljex@gmail.com\n" -"POT-Creation-Date: 2019-03-16 08:56-0400\n" +"POT-Creation-Date: 2019-03-18 05:48-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -62,7 +62,7 @@ msgstr "" #: src/Gtk/ProgressWindow.vala:143 src/Gtk/TerminalWindow.vala:151 #: src/Gtk/UpdateNotificationWindow.vala:167 #: src/Utility/Gtk/CustomMessageDialog.vala:172 -#: src/Utility/Gtk/GtkHelper.vala:122 +#: src/Utility/Gtk/GtkHelper.vala:112 msgid "Cancel" msgstr "" @@ -304,8 +304,8 @@ msgstr "" msgid "Installed" msgstr "" -#: src/Gtk/MainWindow.vala:350 src/Gtk/MainWindow.vala:548 -#: src/Gtk/MainWindow.vala:684 src/Utility/TeeJee.System.vala:281 +#: src/Gtk/MainWindow.vala:350 src/Gtk/MainWindow.vala:550 +#: src/Gtk/MainWindow.vala:686 src/Utility/TeeJee.System.vala:281 msgid "Internet connection is not active" msgstr "" @@ -317,7 +317,7 @@ msgstr "" msgid "Kernel" msgstr "" -#: src/Gtk/MainWindow.vala:532 +#: src/Gtk/MainWindow.vala:534 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "" @@ -343,7 +343,7 @@ msgstr "" msgid "List installed kernels" msgstr "" -#: src/Utility/Gtk/GtkHelper.vala:272 +#: src/Utility/Gtk/GtkHelper.vala:262 msgid "Missing Icon" msgstr "" @@ -359,8 +359,8 @@ msgstr "" msgid "No" msgstr "" -#: src/Gtk/MainWindow.vala:350 src/Gtk/MainWindow.vala:548 -#: src/Gtk/MainWindow.vala:684 +#: src/Gtk/MainWindow.vala:350 src/Gtk/MainWindow.vala:550 +#: src/Gtk/MainWindow.vala:686 msgid "No Internet" msgstr "" @@ -369,7 +369,7 @@ msgid "No kernels specified" msgstr "" #: src/Common/LinuxKernel.vala:784 src/Console/AppConsole.vala:374 -#: src/Console/AppConsole.vala:432 src/Gtk/MainWindow.vala:794 +#: src/Console/AppConsole.vala:432 src/Gtk/MainWindow.vala:796 msgid "No updates found" msgstr "" @@ -392,7 +392,7 @@ msgstr "" #: src/Common/LinuxKernel.vala:1246 #: src/Utility/Gtk/CustomMessageDialog.vala:167 #: src/Utility/Gtk/CustomMessageDialog.vala:171 -#: src/Utility/Gtk/GtkHelper.vala:121 +#: src/Utility/Gtk/GtkHelper.vala:111 #, c-format msgid "OK" msgstr "" @@ -435,7 +435,7 @@ msgstr "" msgid "Refresh" msgstr "" -#: src/Gtk/MainWindow.vala:567 +#: src/Gtk/MainWindow.vala:569 msgid "Refreshing..." msgstr "" @@ -518,7 +518,7 @@ msgstr "" msgid "Status" msgstr "" -#: src/Utility/TeeJee.Process.vala:512 +#: src/Utility/TeeJee.Process.vala:513 msgid "Stopped" msgstr "" @@ -540,7 +540,7 @@ msgstr "" msgid "Third Party Tools" msgstr "" -#: src/Common/LinuxKernel.vala:1269 src/Gtk/MainWindow.vala:679 +#: src/Common/LinuxKernel.vala:1269 src/Gtk/MainWindow.vala:681 msgid "This kernel is already installed." msgstr "" diff --git a/po/es.po b/po/es.po index 1834531b..3e6f2d30 100644 --- a/po/es.po +++ b/po/es.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu\n" "Report-Msgid-Bugs-To: bw.aljex@gmail.com\n" -"POT-Creation-Date: 2019-03-16 06:19-0400\n" +"POT-Creation-Date: 2019-03-18 05:35-0400\n" "PO-Revision-Date: 2018-01-03 02:03-0600\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish\n" @@ -63,7 +63,7 @@ msgstr "Cache" #: src/Gtk/ProgressWindow.vala:143 src/Gtk/TerminalWindow.vala:151 #: src/Gtk/UpdateNotificationWindow.vala:167 #: src/Utility/Gtk/CustomMessageDialog.vala:172 -#: src/Utility/Gtk/GtkHelper.vala:122 +#: src/Utility/Gtk/GtkHelper.vala:112 msgid "Cancel" msgstr "Cancelar" @@ -307,8 +307,8 @@ msgstr "" msgid "Installed" msgstr "Instalado" -#: src/Gtk/MainWindow.vala:350 src/Gtk/MainWindow.vala:548 -#: src/Gtk/MainWindow.vala:684 src/Utility/TeeJee.System.vala:281 +#: src/Gtk/MainWindow.vala:350 src/Gtk/MainWindow.vala:550 +#: src/Gtk/MainWindow.vala:686 src/Utility/TeeJee.System.vala:281 msgid "Internet connection is not active" msgstr "La conexión a Internet está inactiva" @@ -321,7 +321,7 @@ msgstr "La conexión a Internet está inactiva" msgid "Kernel" msgstr "Núcleo" -#: src/Gtk/MainWindow.vala:532 +#: src/Gtk/MainWindow.vala:534 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "" "Herramienta de renovación de núcleo para distribuciones basadas en Ubuntu" @@ -348,7 +348,7 @@ msgstr "Mostrar núcleos disponibles" msgid "List installed kernels" msgstr "Mostrar kernels disponibles" -#: src/Utility/Gtk/GtkHelper.vala:272 +#: src/Utility/Gtk/GtkHelper.vala:262 msgid "Missing Icon" msgstr "Falta el icono" @@ -364,8 +364,8 @@ msgstr "Se seleccionaron varios núcleos para su instalación. Elija solo uno." msgid "No" msgstr "No" -#: src/Gtk/MainWindow.vala:350 src/Gtk/MainWindow.vala:548 -#: src/Gtk/MainWindow.vala:684 +#: src/Gtk/MainWindow.vala:350 src/Gtk/MainWindow.vala:550 +#: src/Gtk/MainWindow.vala:686 msgid "No Internet" msgstr "No hay Internet" @@ -374,7 +374,7 @@ msgid "No kernels specified" msgstr "" #: src/Common/LinuxKernel.vala:784 src/Console/AppConsole.vala:374 -#: src/Console/AppConsole.vala:432 src/Gtk/MainWindow.vala:794 +#: src/Console/AppConsole.vala:432 src/Gtk/MainWindow.vala:796 msgid "No updates found" msgstr "No se encontró ninguna actualización" @@ -397,7 +397,7 @@ msgstr "Notificar si hay una versión puntual disponible" #: src/Common/LinuxKernel.vala:1246 #: src/Utility/Gtk/CustomMessageDialog.vala:167 #: src/Utility/Gtk/CustomMessageDialog.vala:171 -#: src/Utility/Gtk/GtkHelper.vala:121 +#: src/Utility/Gtk/GtkHelper.vala:111 #, c-format msgid "OK" msgstr "Aceptar" @@ -440,7 +440,7 @@ msgstr "" msgid "Refresh" msgstr "Actualizar" -#: src/Gtk/MainWindow.vala:567 +#: src/Gtk/MainWindow.vala:569 msgid "Refreshing..." msgstr "Actualizando…" @@ -525,7 +525,7 @@ msgstr "La conexión a Internet está inactiva" msgid "Status" msgstr "Estado" -#: src/Utility/TeeJee.Process.vala:512 +#: src/Utility/TeeJee.Process.vala:513 msgid "Stopped" msgstr "Detenido" @@ -547,7 +547,7 @@ msgstr "Los siguientes kernels serán eliminados:" msgid "Third Party Tools" msgstr "Herramientas de terceros" -#: src/Common/LinuxKernel.vala:1269 src/Gtk/MainWindow.vala:679 +#: src/Common/LinuxKernel.vala:1269 src/Gtk/MainWindow.vala:681 msgid "This kernel is already installed." msgstr "Este núcleo ya se instaló." diff --git a/po/fr.po b/po/fr.po index 140afdd2..5ab5de8f 100644 --- a/po/fr.po +++ b/po/fr.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu\n" "Report-Msgid-Bugs-To: bw.aljex@gmail.com\n" -"POT-Creation-Date: 2019-03-16 06:19-0400\n" +"POT-Creation-Date: 2019-03-18 05:35-0400\n" "PO-Revision-Date: 2018-08-05 15:50+0200\n" "Last-Translator: Yolateng0 \n" "Language-Team: French\n" @@ -63,7 +63,7 @@ msgstr "" #: src/Gtk/ProgressWindow.vala:143 src/Gtk/TerminalWindow.vala:151 #: src/Gtk/UpdateNotificationWindow.vala:167 #: src/Utility/Gtk/CustomMessageDialog.vala:172 -#: src/Utility/Gtk/GtkHelper.vala:122 +#: src/Utility/Gtk/GtkHelper.vala:112 msgid "Cancel" msgstr "Annuler" @@ -312,8 +312,8 @@ msgstr "" msgid "Installed" msgstr "Installé" -#: src/Gtk/MainWindow.vala:350 src/Gtk/MainWindow.vala:548 -#: src/Gtk/MainWindow.vala:684 src/Utility/TeeJee.System.vala:281 +#: src/Gtk/MainWindow.vala:350 src/Gtk/MainWindow.vala:550 +#: src/Gtk/MainWindow.vala:686 src/Utility/TeeJee.System.vala:281 msgid "Internet connection is not active" msgstr "Connexion internet inexistante" @@ -326,7 +326,7 @@ msgstr "Connexion internet inexistante" msgid "Kernel" msgstr "Noyau" -#: src/Gtk/MainWindow.vala:532 +#: src/Gtk/MainWindow.vala:534 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "" "Utilitaire de mise à niveau des noyaux pour les distributions basées pour " @@ -355,7 +355,7 @@ msgstr "Lister les noyaux disponibles" msgid "List installed kernels" msgstr "Lister les noyaux disponibles" -#: src/Utility/Gtk/GtkHelper.vala:272 +#: src/Utility/Gtk/GtkHelper.vala:262 msgid "Missing Icon" msgstr "Icône introuvable" @@ -373,8 +373,8 @@ msgstr "" msgid "No" msgstr "Non" -#: src/Gtk/MainWindow.vala:350 src/Gtk/MainWindow.vala:548 -#: src/Gtk/MainWindow.vala:684 +#: src/Gtk/MainWindow.vala:350 src/Gtk/MainWindow.vala:550 +#: src/Gtk/MainWindow.vala:686 msgid "No Internet" msgstr "Pas d'Internet" @@ -383,7 +383,7 @@ msgid "No kernels specified" msgstr "" #: src/Common/LinuxKernel.vala:784 src/Console/AppConsole.vala:374 -#: src/Console/AppConsole.vala:432 src/Gtk/MainWindow.vala:794 +#: src/Console/AppConsole.vala:432 src/Gtk/MainWindow.vala:796 msgid "No updates found" msgstr "Aucune mise à jour disponible" @@ -406,7 +406,7 @@ msgstr "Notifier si une version stable mineure est disponible" #: src/Common/LinuxKernel.vala:1246 #: src/Utility/Gtk/CustomMessageDialog.vala:167 #: src/Utility/Gtk/CustomMessageDialog.vala:171 -#: src/Utility/Gtk/GtkHelper.vala:121 +#: src/Utility/Gtk/GtkHelper.vala:111 #, c-format msgid "OK" msgstr "OK" @@ -449,7 +449,7 @@ msgstr "" msgid "Refresh" msgstr "Actualiser" -#: src/Gtk/MainWindow.vala:567 +#: src/Gtk/MainWindow.vala:569 msgid "Refreshing..." msgstr "Actualisation..." @@ -537,7 +537,7 @@ msgstr "Connexion internet inexistante" msgid "Status" msgstr "Statut" -#: src/Utility/TeeJee.Process.vala:512 +#: src/Utility/TeeJee.Process.vala:513 msgid "Stopped" msgstr "Arrêté" @@ -559,7 +559,7 @@ msgstr "" msgid "Third Party Tools" msgstr "Outils tiers" -#: src/Common/LinuxKernel.vala:1269 src/Gtk/MainWindow.vala:679 +#: src/Common/LinuxKernel.vala:1269 src/Gtk/MainWindow.vala:681 msgid "This kernel is already installed." msgstr "Ce noyau est déjà installé." diff --git a/po/hr.po b/po/hr.po index a2f340db..20898529 100644 --- a/po/hr.po +++ b/po/hr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu\n" "Report-Msgid-Bugs-To: bw.aljex@gmail.com\n" -"POT-Creation-Date: 2019-03-16 06:19-0400\n" +"POT-Creation-Date: 2019-03-18 05:35-0400\n" "PO-Revision-Date: 2017-12-24 00:52+0100\n" "Last-Translator: gogo \n" "Language-Team: Croatian \n" @@ -64,7 +64,7 @@ msgstr "" #: src/Gtk/ProgressWindow.vala:143 src/Gtk/TerminalWindow.vala:151 #: src/Gtk/UpdateNotificationWindow.vala:167 #: src/Utility/Gtk/CustomMessageDialog.vala:172 -#: src/Utility/Gtk/GtkHelper.vala:122 +#: src/Utility/Gtk/GtkHelper.vala:112 msgid "Cancel" msgstr "Odustani" @@ -312,8 +312,8 @@ msgstr "" msgid "Installed" msgstr "Instalirano" -#: src/Gtk/MainWindow.vala:350 src/Gtk/MainWindow.vala:548 -#: src/Gtk/MainWindow.vala:684 src/Utility/TeeJee.System.vala:281 +#: src/Gtk/MainWindow.vala:350 src/Gtk/MainWindow.vala:550 +#: src/Gtk/MainWindow.vala:686 src/Utility/TeeJee.System.vala:281 msgid "Internet connection is not active" msgstr "Internet povezivanje nije aktivno" @@ -326,7 +326,7 @@ msgstr "Internet povezivanje nije aktivno" msgid "Kernel" msgstr "Kernel" -#: src/Gtk/MainWindow.vala:532 +#: src/Gtk/MainWindow.vala:534 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Alat za nadogradnju kernela Ubuntu temeljenih distribucija" @@ -353,7 +353,7 @@ msgstr "Prikaži sve kernele" msgid "List installed kernels" msgstr "Prikaži sve kernele" -#: src/Utility/Gtk/GtkHelper.vala:272 +#: src/Utility/Gtk/GtkHelper.vala:262 msgid "Missing Icon" msgstr "Ikone koje nedostaju" @@ -369,8 +369,8 @@ msgstr "Više kernela je odabrano za instalaciju. odaberite samo jedan." msgid "No" msgstr "Ne" -#: src/Gtk/MainWindow.vala:350 src/Gtk/MainWindow.vala:548 -#: src/Gtk/MainWindow.vala:684 +#: src/Gtk/MainWindow.vala:350 src/Gtk/MainWindow.vala:550 +#: src/Gtk/MainWindow.vala:686 msgid "No Internet" msgstr "Nema pristupa internetu" @@ -379,7 +379,7 @@ msgid "No kernels specified" msgstr "" #: src/Common/LinuxKernel.vala:784 src/Console/AppConsole.vala:374 -#: src/Console/AppConsole.vala:432 src/Gtk/MainWindow.vala:794 +#: src/Console/AppConsole.vala:432 src/Gtk/MainWindow.vala:796 msgid "No updates found" msgstr "Nema pronađenih nadopuna" @@ -402,7 +402,7 @@ msgstr "Obavijesti kada je pojedino izdanje dostupno" #: src/Common/LinuxKernel.vala:1246 #: src/Utility/Gtk/CustomMessageDialog.vala:167 #: src/Utility/Gtk/CustomMessageDialog.vala:171 -#: src/Utility/Gtk/GtkHelper.vala:121 +#: src/Utility/Gtk/GtkHelper.vala:111 #, c-format msgid "OK" msgstr "U redu" @@ -445,7 +445,7 @@ msgstr "" msgid "Refresh" msgstr "Osvježi" -#: src/Gtk/MainWindow.vala:567 +#: src/Gtk/MainWindow.vala:569 msgid "Refreshing..." msgstr "Osvježavanje..." @@ -533,7 +533,7 @@ msgstr "Internet povezivanje nije aktivno" msgid "Status" msgstr "Stanje" -#: src/Utility/TeeJee.Process.vala:512 +#: src/Utility/TeeJee.Process.vala:513 msgid "Stopped" msgstr "Zaustavljeno" @@ -555,7 +555,7 @@ msgstr "" msgid "Third Party Tools" msgstr "Alati treće strane" -#: src/Common/LinuxKernel.vala:1269 src/Gtk/MainWindow.vala:679 +#: src/Common/LinuxKernel.vala:1269 src/Gtk/MainWindow.vala:681 msgid "This kernel is already installed." msgstr "Ovaj kernel je već instaliran." diff --git a/po/nl.po b/po/nl.po index 4e63a37d..4b5e8c0b 100644 --- a/po/nl.po +++ b/po/nl.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu 2.2\n" "Report-Msgid-Bugs-To: bw.aljex@gmail.com\n" -"POT-Creation-Date: 2019-03-16 06:19-0400\n" +"POT-Creation-Date: 2019-03-18 05:35-0400\n" "PO-Revision-Date: 2017-04-30 11:50+0200\n" "Last-Translator: Heimen Stoffels \n" "Language-Team: \n" @@ -65,7 +65,7 @@ msgstr "" #: src/Gtk/ProgressWindow.vala:143 src/Gtk/TerminalWindow.vala:151 #: src/Gtk/UpdateNotificationWindow.vala:167 #: src/Utility/Gtk/CustomMessageDialog.vala:172 -#: src/Utility/Gtk/GtkHelper.vala:122 +#: src/Utility/Gtk/GtkHelper.vala:112 msgid "Cancel" msgstr "Annuleren" @@ -313,8 +313,8 @@ msgstr "" msgid "Installed" msgstr "Geïnstalleerd" -#: src/Gtk/MainWindow.vala:350 src/Gtk/MainWindow.vala:548 -#: src/Gtk/MainWindow.vala:684 src/Utility/TeeJee.System.vala:281 +#: src/Gtk/MainWindow.vala:350 src/Gtk/MainWindow.vala:550 +#: src/Gtk/MainWindow.vala:686 src/Utility/TeeJee.System.vala:281 msgid "Internet connection is not active" msgstr "U bent niet verbonden met het internet" @@ -327,7 +327,7 @@ msgstr "U bent niet verbonden met het internet" msgid "Kernel" msgstr "Kernel" -#: src/Gtk/MainWindow.vala:532 +#: src/Gtk/MainWindow.vala:534 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Kernel-upgradehulpmiddel voor op Ubuntu-gebaseerde distributies" @@ -355,7 +355,7 @@ msgstr "Alle beschikbare mainline-kernels weergeven" msgid "List installed kernels" msgstr "Alle beschikbare mainline-kernels weergeven" -#: src/Utility/Gtk/GtkHelper.vala:272 +#: src/Utility/Gtk/GtkHelper.vala:262 msgid "Missing Icon" msgstr "Ontbrekend pictogram" @@ -373,8 +373,8 @@ msgstr "" msgid "No" msgstr "" -#: src/Gtk/MainWindow.vala:350 src/Gtk/MainWindow.vala:548 -#: src/Gtk/MainWindow.vala:684 +#: src/Gtk/MainWindow.vala:350 src/Gtk/MainWindow.vala:550 +#: src/Gtk/MainWindow.vala:686 msgid "No Internet" msgstr "Geen internetverbinding" @@ -383,7 +383,7 @@ msgid "No kernels specified" msgstr "" #: src/Common/LinuxKernel.vala:784 src/Console/AppConsole.vala:374 -#: src/Console/AppConsole.vala:432 src/Gtk/MainWindow.vala:794 +#: src/Console/AppConsole.vala:432 src/Gtk/MainWindow.vala:796 msgid "No updates found" msgstr "Geen updates gevonden" @@ -406,7 +406,7 @@ msgstr "Melding weergeven als er een puntupdate beschikbaar is" #: src/Common/LinuxKernel.vala:1246 #: src/Utility/Gtk/CustomMessageDialog.vala:167 #: src/Utility/Gtk/CustomMessageDialog.vala:171 -#: src/Utility/Gtk/GtkHelper.vala:121 +#: src/Utility/Gtk/GtkHelper.vala:111 #, c-format msgid "OK" msgstr "Oké" @@ -449,7 +449,7 @@ msgstr "" msgid "Refresh" msgstr "Verversen" -#: src/Gtk/MainWindow.vala:567 +#: src/Gtk/MainWindow.vala:569 msgid "Refreshing..." msgstr "Bezig met verversen..." @@ -539,7 +539,7 @@ msgstr "U bent niet verbonden met het internet" msgid "Status" msgstr "Status" -#: src/Utility/TeeJee.Process.vala:512 +#: src/Utility/TeeJee.Process.vala:513 msgid "Stopped" msgstr "Gestopt" @@ -561,7 +561,7 @@ msgstr "" msgid "Third Party Tools" msgstr "Externe hulpmiddelen" -#: src/Common/LinuxKernel.vala:1269 src/Gtk/MainWindow.vala:679 +#: src/Common/LinuxKernel.vala:1269 src/Gtk/MainWindow.vala:681 msgid "This kernel is already installed." msgstr "Deze kernel is al geïnstalleerd." diff --git a/po/pl.po b/po/pl.po index adbd82fc..3bd6af58 100644 --- a/po/pl.po +++ b/po/pl.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu\n" "Report-Msgid-Bugs-To: bw.aljex@gmail.com\n" -"POT-Creation-Date: 2019-03-16 06:19-0400\n" +"POT-Creation-Date: 2019-03-18 05:35-0400\n" "PO-Revision-Date: 2017-08-12 15:26+0200\n" "Last-Translator: \n" "Language-Team: Polish\n" @@ -62,7 +62,7 @@ msgstr "" #: src/Gtk/ProgressWindow.vala:143 src/Gtk/TerminalWindow.vala:151 #: src/Gtk/UpdateNotificationWindow.vala:167 #: src/Utility/Gtk/CustomMessageDialog.vala:172 -#: src/Utility/Gtk/GtkHelper.vala:122 +#: src/Utility/Gtk/GtkHelper.vala:112 msgid "Cancel" msgstr "Anuluj" @@ -310,8 +310,8 @@ msgstr "" msgid "Installed" msgstr "Zainstalowany" -#: src/Gtk/MainWindow.vala:350 src/Gtk/MainWindow.vala:548 -#: src/Gtk/MainWindow.vala:684 src/Utility/TeeJee.System.vala:281 +#: src/Gtk/MainWindow.vala:350 src/Gtk/MainWindow.vala:550 +#: src/Gtk/MainWindow.vala:686 src/Utility/TeeJee.System.vala:281 msgid "Internet connection is not active" msgstr "Brak połączenia z internetem" @@ -324,7 +324,7 @@ msgstr "Brak połączenia z internetem" msgid "Kernel" msgstr "Jądro" -#: src/Gtk/MainWindow.vala:532 +#: src/Gtk/MainWindow.vala:534 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Narzędzie uaktualniania jądra dla dystrybucji z rodziny Ubuntu" @@ -352,7 +352,7 @@ msgstr "Pokaż wszystkie dostępne jądra" msgid "List installed kernels" msgstr "Pokaż wszystkie dostępne jądra" -#: src/Utility/Gtk/GtkHelper.vala:272 +#: src/Utility/Gtk/GtkHelper.vala:262 msgid "Missing Icon" msgstr "Brakująca ikona" @@ -368,8 +368,8 @@ msgstr "Wybrano kilka jąder do instalacji. Wybierz tylko jedno." msgid "No" msgstr "" -#: src/Gtk/MainWindow.vala:350 src/Gtk/MainWindow.vala:548 -#: src/Gtk/MainWindow.vala:684 +#: src/Gtk/MainWindow.vala:350 src/Gtk/MainWindow.vala:550 +#: src/Gtk/MainWindow.vala:686 msgid "No Internet" msgstr "Brak internetu" @@ -378,7 +378,7 @@ msgid "No kernels specified" msgstr "" #: src/Common/LinuxKernel.vala:784 src/Console/AppConsole.vala:374 -#: src/Console/AppConsole.vala:432 src/Gtk/MainWindow.vala:794 +#: src/Console/AppConsole.vala:432 src/Gtk/MainWindow.vala:796 msgid "No updates found" msgstr "Nie znaleziono aktualizacji" @@ -401,7 +401,7 @@ msgstr "Powiadom, jeśli pojawi się wersja punktowa" #: src/Common/LinuxKernel.vala:1246 #: src/Utility/Gtk/CustomMessageDialog.vala:167 #: src/Utility/Gtk/CustomMessageDialog.vala:171 -#: src/Utility/Gtk/GtkHelper.vala:121 +#: src/Utility/Gtk/GtkHelper.vala:111 #, c-format msgid "OK" msgstr "OK" @@ -444,7 +444,7 @@ msgstr "" msgid "Refresh" msgstr "Odśwież" -#: src/Gtk/MainWindow.vala:567 +#: src/Gtk/MainWindow.vala:569 msgid "Refreshing..." msgstr "Odświeżam..." @@ -533,7 +533,7 @@ msgstr "Brak połączenia z internetem" msgid "Status" msgstr "Status" -#: src/Utility/TeeJee.Process.vala:512 +#: src/Utility/TeeJee.Process.vala:513 msgid "Stopped" msgstr "Zatrzymany" @@ -555,7 +555,7 @@ msgstr "" msgid "Third Party Tools" msgstr "Narzędzia osób trzecich" -#: src/Common/LinuxKernel.vala:1269 src/Gtk/MainWindow.vala:679 +#: src/Common/LinuxKernel.vala:1269 src/Gtk/MainWindow.vala:681 msgid "This kernel is already installed." msgstr "To jądro jest już zainstalowane." diff --git a/po/ru.po b/po/ru.po index b15a1666..b7ec4234 100644 --- a/po/ru.po +++ b/po/ru.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu\n" "Report-Msgid-Bugs-To: bw.aljex@gmail.com\n" -"POT-Creation-Date: 2019-03-16 06:19-0400\n" +"POT-Creation-Date: 2019-03-18 05:35-0400\n" "PO-Revision-Date: 2016-12-13 16:46+0300\n" "Last-Translator: Faust3000 \n" "Language-Team: Russian \n" @@ -64,7 +64,7 @@ msgstr "" #: src/Gtk/ProgressWindow.vala:143 src/Gtk/TerminalWindow.vala:151 #: src/Gtk/UpdateNotificationWindow.vala:167 #: src/Utility/Gtk/CustomMessageDialog.vala:172 -#: src/Utility/Gtk/GtkHelper.vala:122 +#: src/Utility/Gtk/GtkHelper.vala:112 msgid "Cancel" msgstr "Отмена" @@ -317,8 +317,8 @@ msgstr "" msgid "Installed" msgstr "Установлено" -#: src/Gtk/MainWindow.vala:350 src/Gtk/MainWindow.vala:548 -#: src/Gtk/MainWindow.vala:684 src/Utility/TeeJee.System.vala:281 +#: src/Gtk/MainWindow.vala:350 src/Gtk/MainWindow.vala:550 +#: src/Gtk/MainWindow.vala:686 src/Utility/TeeJee.System.vala:281 msgid "Internet connection is not active" msgstr "Интернет соединение не активно" @@ -331,7 +331,7 @@ msgstr "Интернет соединение не активно" msgid "Kernel" msgstr "Ядро" -#: src/Gtk/MainWindow.vala:532 +#: src/Gtk/MainWindow.vala:534 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Программа обновления ядра для дистрибутивов на базе Ubuntu" @@ -359,7 +359,7 @@ msgstr "Список всех доступных основных ядер" msgid "List installed kernels" msgstr "Список всех доступных основных ядер" -#: src/Utility/Gtk/GtkHelper.vala:272 +#: src/Utility/Gtk/GtkHelper.vala:262 msgid "Missing Icon" msgstr "Значок отсутствует" @@ -375,8 +375,8 @@ msgstr "" msgid "No" msgstr "" -#: src/Gtk/MainWindow.vala:350 src/Gtk/MainWindow.vala:548 -#: src/Gtk/MainWindow.vala:684 +#: src/Gtk/MainWindow.vala:350 src/Gtk/MainWindow.vala:550 +#: src/Gtk/MainWindow.vala:686 msgid "No Internet" msgstr "" @@ -385,7 +385,7 @@ msgid "No kernels specified" msgstr "" #: src/Common/LinuxKernel.vala:784 src/Console/AppConsole.vala:374 -#: src/Console/AppConsole.vala:432 src/Gtk/MainWindow.vala:794 +#: src/Console/AppConsole.vala:432 src/Gtk/MainWindow.vala:796 msgid "No updates found" msgstr "Обновлений не найдено" @@ -408,7 +408,7 @@ msgstr "Уведомлять, если доступно небольшое об #: src/Common/LinuxKernel.vala:1246 #: src/Utility/Gtk/CustomMessageDialog.vala:167 #: src/Utility/Gtk/CustomMessageDialog.vala:171 -#: src/Utility/Gtk/GtkHelper.vala:121 +#: src/Utility/Gtk/GtkHelper.vala:111 #, c-format msgid "OK" msgstr "OK" @@ -451,7 +451,7 @@ msgstr "Очистить" msgid "Refresh" msgstr "Обновить" -#: src/Gtk/MainWindow.vala:567 +#: src/Gtk/MainWindow.vala:569 msgid "Refreshing..." msgstr "Обновление..." @@ -541,7 +541,7 @@ msgstr "Интернет соединение не активно" msgid "Status" msgstr "Состояние" -#: src/Utility/TeeJee.Process.vala:512 +#: src/Utility/TeeJee.Process.vala:513 msgid "Stopped" msgstr "Остановлено" @@ -563,7 +563,7 @@ msgstr "" msgid "Third Party Tools" msgstr "Сторонние инструменты" -#: src/Common/LinuxKernel.vala:1269 src/Gtk/MainWindow.vala:679 +#: src/Common/LinuxKernel.vala:1269 src/Gtk/MainWindow.vala:681 msgid "This kernel is already installed." msgstr "Это ядро уже установлено." diff --git a/po/sv.po b/po/sv.po index 5ccf1945..0665d3ed 100644 --- a/po/sv.po +++ b/po/sv.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu 2.2\n" "Report-Msgid-Bugs-To: bw.aljex@gmail.com\n" -"POT-Creation-Date: 2019-03-16 06:19-0400\n" +"POT-Creation-Date: 2019-03-18 05:35-0400\n" "PO-Revision-Date: 2018-01-13 16:56+0100\n" "Last-Translator: Åke Engelbrektson \n" "Language-Team: Svenska Språkfiler \n" @@ -64,7 +64,7 @@ msgstr "" #: src/Gtk/ProgressWindow.vala:143 src/Gtk/TerminalWindow.vala:151 #: src/Gtk/UpdateNotificationWindow.vala:167 #: src/Utility/Gtk/CustomMessageDialog.vala:172 -#: src/Utility/Gtk/GtkHelper.vala:122 +#: src/Utility/Gtk/GtkHelper.vala:112 msgid "Cancel" msgstr "Avbryt" @@ -311,8 +311,8 @@ msgstr "Installation slutförd. Omstart krävs för att tillämpa den nya kärna msgid "Installed" msgstr "Installerad" -#: src/Gtk/MainWindow.vala:350 src/Gtk/MainWindow.vala:548 -#: src/Gtk/MainWindow.vala:684 src/Utility/TeeJee.System.vala:281 +#: src/Gtk/MainWindow.vala:350 src/Gtk/MainWindow.vala:550 +#: src/Gtk/MainWindow.vala:686 src/Utility/TeeJee.System.vala:281 msgid "Internet connection is not active" msgstr "Internetuppkopplingen är inte aktiv" @@ -325,7 +325,7 @@ msgstr "Internetuppkopplingen är inte aktiv" msgid "Kernel" msgstr "Kärna" -#: src/Gtk/MainWindow.vala:532 +#: src/Gtk/MainWindow.vala:534 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Kärnuppgraderingsverktyg för Ubuntu-baserade distributioner" @@ -352,7 +352,7 @@ msgstr "Lista tillgängliga kärnor" msgid "List installed kernels" msgstr "Lista tillgängliga kärnor" -#: src/Utility/Gtk/GtkHelper.vala:272 +#: src/Utility/Gtk/GtkHelper.vala:262 msgid "Missing Icon" msgstr "Saknad ikon" @@ -368,8 +368,8 @@ msgstr "Flera kärnor valda för installation. Välj endast en." msgid "No" msgstr "Nej" -#: src/Gtk/MainWindow.vala:350 src/Gtk/MainWindow.vala:548 -#: src/Gtk/MainWindow.vala:684 +#: src/Gtk/MainWindow.vala:350 src/Gtk/MainWindow.vala:550 +#: src/Gtk/MainWindow.vala:686 msgid "No Internet" msgstr "Inget internet" @@ -378,7 +378,7 @@ msgid "No kernels specified" msgstr "" #: src/Common/LinuxKernel.vala:784 src/Console/AppConsole.vala:374 -#: src/Console/AppConsole.vala:432 src/Gtk/MainWindow.vala:794 +#: src/Console/AppConsole.vala:432 src/Gtk/MainWindow.vala:796 msgid "No updates found" msgstr "Inga uppdateringar hittades" @@ -401,7 +401,7 @@ msgstr "Meddela om en ny (mindre) uppdatering finns tillgänglig" #: src/Common/LinuxKernel.vala:1246 #: src/Utility/Gtk/CustomMessageDialog.vala:167 #: src/Utility/Gtk/CustomMessageDialog.vala:171 -#: src/Utility/Gtk/GtkHelper.vala:121 +#: src/Utility/Gtk/GtkHelper.vala:111 #, c-format msgid "OK" msgstr "OK" @@ -444,7 +444,7 @@ msgstr "Rensa" msgid "Refresh" msgstr "Uppdatera" -#: src/Gtk/MainWindow.vala:567 +#: src/Gtk/MainWindow.vala:569 msgid "Refreshing..." msgstr "Uppdaterar ..." @@ -532,7 +532,7 @@ msgstr "Internetuppkopplingen är inte aktiv" msgid "Status" msgstr "Status" -#: src/Utility/TeeJee.Process.vala:512 +#: src/Utility/TeeJee.Process.vala:513 msgid "Stopped" msgstr "Stoppad" @@ -554,7 +554,7 @@ msgstr "" msgid "Third Party Tools" msgstr "Tredjepartsverktyg" -#: src/Common/LinuxKernel.vala:1269 src/Gtk/MainWindow.vala:679 +#: src/Common/LinuxKernel.vala:1269 src/Gtk/MainWindow.vala:681 msgid "This kernel is already installed." msgstr "Denna kärna är redan installerad" diff --git a/po/tr.po b/po/tr.po index db2a9cfb..94285cde 100644 --- a/po/tr.po +++ b/po/tr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu\n" "Report-Msgid-Bugs-To: bw.aljex@gmail.com\n" -"POT-Creation-Date: 2019-03-16 06:19-0400\n" +"POT-Creation-Date: 2019-03-18 05:35-0400\n" "PO-Revision-Date: 2019-03-12 19:35+0300\n" "Last-Translator: Gökhan GÖKKAYA \n" "Language-Team: Turkish\n" @@ -63,7 +63,7 @@ msgstr "Önbellek" #: src/Gtk/ProgressWindow.vala:143 src/Gtk/TerminalWindow.vala:151 #: src/Gtk/UpdateNotificationWindow.vala:167 #: src/Utility/Gtk/CustomMessageDialog.vala:172 -#: src/Utility/Gtk/GtkHelper.vala:122 +#: src/Utility/Gtk/GtkHelper.vala:112 msgid "Cancel" msgstr "İptal" @@ -306,8 +306,8 @@ msgstr "" msgid "Installed" msgstr "Kurulu" -#: src/Gtk/MainWindow.vala:350 src/Gtk/MainWindow.vala:548 -#: src/Gtk/MainWindow.vala:684 src/Utility/TeeJee.System.vala:281 +#: src/Gtk/MainWindow.vala:350 src/Gtk/MainWindow.vala:550 +#: src/Gtk/MainWindow.vala:686 src/Utility/TeeJee.System.vala:281 msgid "Internet connection is not active" msgstr "İnternet bağlantısı aktif değil" @@ -320,7 +320,7 @@ msgstr "İnternet bağlantısı aktif değil " msgid "Kernel" msgstr "Çekirdek" -#: src/Gtk/MainWindow.vala:532 +#: src/Gtk/MainWindow.vala:534 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Ubuntu tabanlı dağıtımlar için çekirdek güncelleme aracı" @@ -346,7 +346,7 @@ msgstr "Tüm çekirdekleri listele" msgid "List installed kernels" msgstr "Kurulu çekirdekleri listele" -#: src/Utility/Gtk/GtkHelper.vala:272 +#: src/Utility/Gtk/GtkHelper.vala:262 msgid "Missing Icon" msgstr "Eksik Simge" @@ -362,8 +362,8 @@ msgstr "Kurulum için çoklu çekirdek seçildi. Sadece bir tane seçiniz." msgid "No" msgstr "Hayır" -#: src/Gtk/MainWindow.vala:350 src/Gtk/MainWindow.vala:548 -#: src/Gtk/MainWindow.vala:684 +#: src/Gtk/MainWindow.vala:350 src/Gtk/MainWindow.vala:550 +#: src/Gtk/MainWindow.vala:686 msgid "No Internet" msgstr "İnternet Yok" @@ -372,7 +372,7 @@ msgid "No kernels specified" msgstr "Belirtilen çekirdek yok" #: src/Common/LinuxKernel.vala:784 src/Console/AppConsole.vala:374 -#: src/Console/AppConsole.vala:432 src/Gtk/MainWindow.vala:794 +#: src/Console/AppConsole.vala:432 src/Gtk/MainWindow.vala:796 msgid "No updates found" msgstr "Güncelleme bulunamadı" @@ -395,7 +395,7 @@ msgstr "Ara sürüm mevcutsa bildir" #: src/Common/LinuxKernel.vala:1246 #: src/Utility/Gtk/CustomMessageDialog.vala:167 #: src/Utility/Gtk/CustomMessageDialog.vala:171 -#: src/Utility/Gtk/GtkHelper.vala:121 +#: src/Utility/Gtk/GtkHelper.vala:111 #, c-format msgid "OK" msgstr "TAMAM" @@ -438,7 +438,7 @@ msgstr "Kaldır" msgid "Refresh" msgstr "Yenile" -#: src/Gtk/MainWindow.vala:567 +#: src/Gtk/MainWindow.vala:569 msgid "Refreshing..." msgstr "Yenileniyor..." @@ -523,7 +523,7 @@ msgstr "İnternet bağlantı kontrolünü atla" msgid "Status" msgstr "Durum" -#: src/Utility/TeeJee.Process.vala:512 +#: src/Utility/TeeJee.Process.vala:513 msgid "Stopped" msgstr "Durduruldu" @@ -545,7 +545,7 @@ msgstr "Aşağıdaki çekirdekler silinecek" msgid "Third Party Tools" msgstr "Üçüncü Parti Araçlar" -#: src/Common/LinuxKernel.vala:1269 src/Gtk/MainWindow.vala:679 +#: src/Common/LinuxKernel.vala:1269 src/Gtk/MainWindow.vala:681 msgid "This kernel is already installed." msgstr "Bu çekirdek zaten kurulu." diff --git a/src/Gtk/MainWindow.vala b/src/Gtk/MainWindow.vala index c617e6d1..1bd68e8e 100644 --- a/src/Gtk/MainWindow.vala +++ b/src/Gtk/MainWindow.vala @@ -514,7 +514,7 @@ public class MainWindow : Gtk.Window{ "Elementary project (various icons):github.com/elementary/icons", "Tango project (various icons):tango.freedesktop.org/Tango_Desktop_Project" }; - + // FIXME - generate from files dialog.translators = { "Åke Engelbrektson (Swedish):eson@svenskasprakfiler.se", "Иннусик (Russian):slavusik1988@gmail.com", @@ -522,7 +522,9 @@ public class MainWindow : Gtk.Window{ "gogo (Croatian):trebelnik2@gmail.com", "Adolfo Jayme Barrientos (Spanish):fitojb@ubuntu.com", "yolateng0 (French):github.com/yolateng0", - "Hugo Posnic (French):hugo.posnic@gmail.com" + "Hugo Posnic (French):hugo.posnic@gmail.com", + "Faust3000 (Russian):slavusik1988@gmail.com", + "Gökhan GÖKKAYA (Turkish):gokhanlnx@gmail.com" }; dialog.documenters = null; diff --git a/src/Utility/Gtk/GtkHelper.vala b/src/Utility/Gtk/GtkHelper.vala index f6342843..9af333cf 100644 --- a/src/Utility/Gtk/GtkHelper.vala +++ b/src/Utility/Gtk/GtkHelper.vala @@ -66,16 +66,6 @@ namespace TeeJee.GtkHelper{ type = Gtk.MessageType.INFO; } - /*var dlg = new Gtk.MessageDialog.with_markup(null, Gtk.DialogFlags.MODAL, type, Gtk.ButtonsType.OK, message); - dlg.title = title; - dlg.set_default_size (200, -1); - if (parent_win != null){ - dlg.set_transient_for(parent_win); - dlg.set_modal(true); - } - dlg.run(); - dlg.destroy();*/ - var dlg = new CustomMessageDialog(title,message,type,parent_win, Gtk.ButtonsType.OK); dlg.run(); dlg.destroy(); @@ -434,16 +424,5 @@ namespace TeeJee.GtkHelper{ return false; } - // file chooser ---------------- - - public Gtk.FileFilter create_file_filter(string group_name, string[] patterns) { - var filter = new Gtk.FileFilter (); - filter.set_filter_name(group_name); - foreach(string pattern in patterns) { - filter.add_pattern (pattern); - } - return filter; - } - } diff --git a/src/Utility/TeeJee.Process.vala b/src/Utility/TeeJee.Process.vala index a529d58f..6a62a5e9 100644 --- a/src/Utility/TeeJee.Process.vala +++ b/src/Utility/TeeJee.Process.vala @@ -21,7 +21,8 @@ * * */ - + +// FIXME - Stop creating temp dirs and files for no reason namespace TeeJee.ProcessHelper{ using TeeJee.Logging; using TeeJee.FileSystem; From 6ac5185d6e260dc98376428812021471105e1946 Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Mon, 18 Mar 2019 09:07:31 -0400 Subject: [PATCH 031/567] disable buggy progressbar --- po/_messages.pot | 12 ++++++------ po/es.po | 12 ++++++------ po/fr.po | 12 ++++++------ po/hr.po | 12 ++++++------ po/nl.po | 12 ++++++------ po/pl.po | 12 ++++++------ po/ru.po | 12 ++++++------ po/sv.po | 12 ++++++------ po/tr.po | 12 ++++++------ src/Gtk/MainWindow.vala | 8 +++++--- src/Gtk/ProgressWindow.vala | 23 +++++++++++++---------- src/Utility/TeeJee.Process.vala | 2 +- 12 files changed, 73 insertions(+), 68 deletions(-) diff --git a/po/_messages.pot b/po/_messages.pot index d16f6ec6..ace689a1 100644 --- a/po/_messages.pot +++ b/po/_messages.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline 1.0.0\n" "Report-Msgid-Bugs-To: bw.aljex@gmail.com\n" -"POT-Creation-Date: 2019-03-18 05:48-0400\n" +"POT-Creation-Date: 2019-03-18 09:04-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -59,7 +59,7 @@ msgstr "" msgid "Cache" msgstr "" -#: src/Gtk/ProgressWindow.vala:143 src/Gtk/TerminalWindow.vala:151 +#: src/Gtk/ProgressWindow.vala:145 src/Gtk/TerminalWindow.vala:151 #: src/Gtk/UpdateNotificationWindow.vala:167 #: src/Utility/Gtk/CustomMessageDialog.vala:172 #: src/Utility/Gtk/GtkHelper.vala:112 @@ -305,7 +305,7 @@ msgid "Installed" msgstr "" #: src/Gtk/MainWindow.vala:350 src/Gtk/MainWindow.vala:550 -#: src/Gtk/MainWindow.vala:686 src/Utility/TeeJee.System.vala:281 +#: src/Gtk/MainWindow.vala:688 src/Utility/TeeJee.System.vala:281 msgid "Internet connection is not active" msgstr "" @@ -360,7 +360,7 @@ msgid "No" msgstr "" #: src/Gtk/MainWindow.vala:350 src/Gtk/MainWindow.vala:550 -#: src/Gtk/MainWindow.vala:686 +#: src/Gtk/MainWindow.vala:688 msgid "No Internet" msgstr "" @@ -369,7 +369,7 @@ msgid "No kernels specified" msgstr "" #: src/Common/LinuxKernel.vala:784 src/Console/AppConsole.vala:374 -#: src/Console/AppConsole.vala:432 src/Gtk/MainWindow.vala:796 +#: src/Console/AppConsole.vala:432 src/Gtk/MainWindow.vala:798 msgid "No updates found" msgstr "" @@ -540,7 +540,7 @@ msgstr "" msgid "Third Party Tools" msgstr "" -#: src/Common/LinuxKernel.vala:1269 src/Gtk/MainWindow.vala:681 +#: src/Common/LinuxKernel.vala:1269 src/Gtk/MainWindow.vala:683 msgid "This kernel is already installed." msgstr "" diff --git a/po/es.po b/po/es.po index 3e6f2d30..baa3f302 100644 --- a/po/es.po +++ b/po/es.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu\n" "Report-Msgid-Bugs-To: bw.aljex@gmail.com\n" -"POT-Creation-Date: 2019-03-18 05:35-0400\n" +"POT-Creation-Date: 2019-03-18 09:04-0400\n" "PO-Revision-Date: 2018-01-03 02:03-0600\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish\n" @@ -60,7 +60,7 @@ msgstr "Atrás" msgid "Cache" msgstr "Cache" -#: src/Gtk/ProgressWindow.vala:143 src/Gtk/TerminalWindow.vala:151 +#: src/Gtk/ProgressWindow.vala:145 src/Gtk/TerminalWindow.vala:151 #: src/Gtk/UpdateNotificationWindow.vala:167 #: src/Utility/Gtk/CustomMessageDialog.vala:172 #: src/Utility/Gtk/GtkHelper.vala:112 @@ -308,7 +308,7 @@ msgid "Installed" msgstr "Instalado" #: src/Gtk/MainWindow.vala:350 src/Gtk/MainWindow.vala:550 -#: src/Gtk/MainWindow.vala:686 src/Utility/TeeJee.System.vala:281 +#: src/Gtk/MainWindow.vala:688 src/Utility/TeeJee.System.vala:281 msgid "Internet connection is not active" msgstr "La conexión a Internet está inactiva" @@ -365,7 +365,7 @@ msgid "No" msgstr "No" #: src/Gtk/MainWindow.vala:350 src/Gtk/MainWindow.vala:550 -#: src/Gtk/MainWindow.vala:686 +#: src/Gtk/MainWindow.vala:688 msgid "No Internet" msgstr "No hay Internet" @@ -374,7 +374,7 @@ msgid "No kernels specified" msgstr "" #: src/Common/LinuxKernel.vala:784 src/Console/AppConsole.vala:374 -#: src/Console/AppConsole.vala:432 src/Gtk/MainWindow.vala:796 +#: src/Console/AppConsole.vala:432 src/Gtk/MainWindow.vala:798 msgid "No updates found" msgstr "No se encontró ninguna actualización" @@ -547,7 +547,7 @@ msgstr "Los siguientes kernels serán eliminados:" msgid "Third Party Tools" msgstr "Herramientas de terceros" -#: src/Common/LinuxKernel.vala:1269 src/Gtk/MainWindow.vala:681 +#: src/Common/LinuxKernel.vala:1269 src/Gtk/MainWindow.vala:683 msgid "This kernel is already installed." msgstr "Este núcleo ya se instaló." diff --git a/po/fr.po b/po/fr.po index 5ab5de8f..f5e89249 100644 --- a/po/fr.po +++ b/po/fr.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu\n" "Report-Msgid-Bugs-To: bw.aljex@gmail.com\n" -"POT-Creation-Date: 2019-03-18 05:35-0400\n" +"POT-Creation-Date: 2019-03-18 09:04-0400\n" "PO-Revision-Date: 2018-08-05 15:50+0200\n" "Last-Translator: Yolateng0 \n" "Language-Team: French\n" @@ -60,7 +60,7 @@ msgstr "Retour" msgid "Cache" msgstr "" -#: src/Gtk/ProgressWindow.vala:143 src/Gtk/TerminalWindow.vala:151 +#: src/Gtk/ProgressWindow.vala:145 src/Gtk/TerminalWindow.vala:151 #: src/Gtk/UpdateNotificationWindow.vala:167 #: src/Utility/Gtk/CustomMessageDialog.vala:172 #: src/Utility/Gtk/GtkHelper.vala:112 @@ -313,7 +313,7 @@ msgid "Installed" msgstr "Installé" #: src/Gtk/MainWindow.vala:350 src/Gtk/MainWindow.vala:550 -#: src/Gtk/MainWindow.vala:686 src/Utility/TeeJee.System.vala:281 +#: src/Gtk/MainWindow.vala:688 src/Utility/TeeJee.System.vala:281 msgid "Internet connection is not active" msgstr "Connexion internet inexistante" @@ -374,7 +374,7 @@ msgid "No" msgstr "Non" #: src/Gtk/MainWindow.vala:350 src/Gtk/MainWindow.vala:550 -#: src/Gtk/MainWindow.vala:686 +#: src/Gtk/MainWindow.vala:688 msgid "No Internet" msgstr "Pas d'Internet" @@ -383,7 +383,7 @@ msgid "No kernels specified" msgstr "" #: src/Common/LinuxKernel.vala:784 src/Console/AppConsole.vala:374 -#: src/Console/AppConsole.vala:432 src/Gtk/MainWindow.vala:796 +#: src/Console/AppConsole.vala:432 src/Gtk/MainWindow.vala:798 msgid "No updates found" msgstr "Aucune mise à jour disponible" @@ -559,7 +559,7 @@ msgstr "" msgid "Third Party Tools" msgstr "Outils tiers" -#: src/Common/LinuxKernel.vala:1269 src/Gtk/MainWindow.vala:681 +#: src/Common/LinuxKernel.vala:1269 src/Gtk/MainWindow.vala:683 msgid "This kernel is already installed." msgstr "Ce noyau est déjà installé." diff --git a/po/hr.po b/po/hr.po index 20898529..586fcd60 100644 --- a/po/hr.po +++ b/po/hr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu\n" "Report-Msgid-Bugs-To: bw.aljex@gmail.com\n" -"POT-Creation-Date: 2019-03-18 05:35-0400\n" +"POT-Creation-Date: 2019-03-18 09:04-0400\n" "PO-Revision-Date: 2017-12-24 00:52+0100\n" "Last-Translator: gogo \n" "Language-Team: Croatian \n" @@ -61,7 +61,7 @@ msgstr "Natrag" msgid "Cache" msgstr "" -#: src/Gtk/ProgressWindow.vala:143 src/Gtk/TerminalWindow.vala:151 +#: src/Gtk/ProgressWindow.vala:145 src/Gtk/TerminalWindow.vala:151 #: src/Gtk/UpdateNotificationWindow.vala:167 #: src/Utility/Gtk/CustomMessageDialog.vala:172 #: src/Utility/Gtk/GtkHelper.vala:112 @@ -313,7 +313,7 @@ msgid "Installed" msgstr "Instalirano" #: src/Gtk/MainWindow.vala:350 src/Gtk/MainWindow.vala:550 -#: src/Gtk/MainWindow.vala:686 src/Utility/TeeJee.System.vala:281 +#: src/Gtk/MainWindow.vala:688 src/Utility/TeeJee.System.vala:281 msgid "Internet connection is not active" msgstr "Internet povezivanje nije aktivno" @@ -370,7 +370,7 @@ msgid "No" msgstr "Ne" #: src/Gtk/MainWindow.vala:350 src/Gtk/MainWindow.vala:550 -#: src/Gtk/MainWindow.vala:686 +#: src/Gtk/MainWindow.vala:688 msgid "No Internet" msgstr "Nema pristupa internetu" @@ -379,7 +379,7 @@ msgid "No kernels specified" msgstr "" #: src/Common/LinuxKernel.vala:784 src/Console/AppConsole.vala:374 -#: src/Console/AppConsole.vala:432 src/Gtk/MainWindow.vala:796 +#: src/Console/AppConsole.vala:432 src/Gtk/MainWindow.vala:798 msgid "No updates found" msgstr "Nema pronađenih nadopuna" @@ -555,7 +555,7 @@ msgstr "" msgid "Third Party Tools" msgstr "Alati treće strane" -#: src/Common/LinuxKernel.vala:1269 src/Gtk/MainWindow.vala:681 +#: src/Common/LinuxKernel.vala:1269 src/Gtk/MainWindow.vala:683 msgid "This kernel is already installed." msgstr "Ovaj kernel je već instaliran." diff --git a/po/nl.po b/po/nl.po index 4b5e8c0b..d2511fd8 100644 --- a/po/nl.po +++ b/po/nl.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu 2.2\n" "Report-Msgid-Bugs-To: bw.aljex@gmail.com\n" -"POT-Creation-Date: 2019-03-18 05:35-0400\n" +"POT-Creation-Date: 2019-03-18 09:04-0400\n" "PO-Revision-Date: 2017-04-30 11:50+0200\n" "Last-Translator: Heimen Stoffels \n" "Language-Team: \n" @@ -62,7 +62,7 @@ msgstr "Terug" msgid "Cache" msgstr "" -#: src/Gtk/ProgressWindow.vala:143 src/Gtk/TerminalWindow.vala:151 +#: src/Gtk/ProgressWindow.vala:145 src/Gtk/TerminalWindow.vala:151 #: src/Gtk/UpdateNotificationWindow.vala:167 #: src/Utility/Gtk/CustomMessageDialog.vala:172 #: src/Utility/Gtk/GtkHelper.vala:112 @@ -314,7 +314,7 @@ msgid "Installed" msgstr "Geïnstalleerd" #: src/Gtk/MainWindow.vala:350 src/Gtk/MainWindow.vala:550 -#: src/Gtk/MainWindow.vala:686 src/Utility/TeeJee.System.vala:281 +#: src/Gtk/MainWindow.vala:688 src/Utility/TeeJee.System.vala:281 msgid "Internet connection is not active" msgstr "U bent niet verbonden met het internet" @@ -374,7 +374,7 @@ msgid "No" msgstr "" #: src/Gtk/MainWindow.vala:350 src/Gtk/MainWindow.vala:550 -#: src/Gtk/MainWindow.vala:686 +#: src/Gtk/MainWindow.vala:688 msgid "No Internet" msgstr "Geen internetverbinding" @@ -383,7 +383,7 @@ msgid "No kernels specified" msgstr "" #: src/Common/LinuxKernel.vala:784 src/Console/AppConsole.vala:374 -#: src/Console/AppConsole.vala:432 src/Gtk/MainWindow.vala:796 +#: src/Console/AppConsole.vala:432 src/Gtk/MainWindow.vala:798 msgid "No updates found" msgstr "Geen updates gevonden" @@ -561,7 +561,7 @@ msgstr "" msgid "Third Party Tools" msgstr "Externe hulpmiddelen" -#: src/Common/LinuxKernel.vala:1269 src/Gtk/MainWindow.vala:681 +#: src/Common/LinuxKernel.vala:1269 src/Gtk/MainWindow.vala:683 msgid "This kernel is already installed." msgstr "Deze kernel is al geïnstalleerd." diff --git a/po/pl.po b/po/pl.po index 3bd6af58..6a2082ee 100644 --- a/po/pl.po +++ b/po/pl.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu\n" "Report-Msgid-Bugs-To: bw.aljex@gmail.com\n" -"POT-Creation-Date: 2019-03-18 05:35-0400\n" +"POT-Creation-Date: 2019-03-18 09:04-0400\n" "PO-Revision-Date: 2017-08-12 15:26+0200\n" "Last-Translator: \n" "Language-Team: Polish\n" @@ -59,7 +59,7 @@ msgstr "Wstecz" msgid "Cache" msgstr "" -#: src/Gtk/ProgressWindow.vala:143 src/Gtk/TerminalWindow.vala:151 +#: src/Gtk/ProgressWindow.vala:145 src/Gtk/TerminalWindow.vala:151 #: src/Gtk/UpdateNotificationWindow.vala:167 #: src/Utility/Gtk/CustomMessageDialog.vala:172 #: src/Utility/Gtk/GtkHelper.vala:112 @@ -311,7 +311,7 @@ msgid "Installed" msgstr "Zainstalowany" #: src/Gtk/MainWindow.vala:350 src/Gtk/MainWindow.vala:550 -#: src/Gtk/MainWindow.vala:686 src/Utility/TeeJee.System.vala:281 +#: src/Gtk/MainWindow.vala:688 src/Utility/TeeJee.System.vala:281 msgid "Internet connection is not active" msgstr "Brak połączenia z internetem" @@ -369,7 +369,7 @@ msgid "No" msgstr "" #: src/Gtk/MainWindow.vala:350 src/Gtk/MainWindow.vala:550 -#: src/Gtk/MainWindow.vala:686 +#: src/Gtk/MainWindow.vala:688 msgid "No Internet" msgstr "Brak internetu" @@ -378,7 +378,7 @@ msgid "No kernels specified" msgstr "" #: src/Common/LinuxKernel.vala:784 src/Console/AppConsole.vala:374 -#: src/Console/AppConsole.vala:432 src/Gtk/MainWindow.vala:796 +#: src/Console/AppConsole.vala:432 src/Gtk/MainWindow.vala:798 msgid "No updates found" msgstr "Nie znaleziono aktualizacji" @@ -555,7 +555,7 @@ msgstr "" msgid "Third Party Tools" msgstr "Narzędzia osób trzecich" -#: src/Common/LinuxKernel.vala:1269 src/Gtk/MainWindow.vala:681 +#: src/Common/LinuxKernel.vala:1269 src/Gtk/MainWindow.vala:683 msgid "This kernel is already installed." msgstr "To jądro jest już zainstalowane." diff --git a/po/ru.po b/po/ru.po index b7ec4234..4408b39d 100644 --- a/po/ru.po +++ b/po/ru.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu\n" "Report-Msgid-Bugs-To: bw.aljex@gmail.com\n" -"POT-Creation-Date: 2019-03-18 05:35-0400\n" +"POT-Creation-Date: 2019-03-18 09:04-0400\n" "PO-Revision-Date: 2016-12-13 16:46+0300\n" "Last-Translator: Faust3000 \n" "Language-Team: Russian \n" @@ -61,7 +61,7 @@ msgstr "Назад" msgid "Cache" msgstr "" -#: src/Gtk/ProgressWindow.vala:143 src/Gtk/TerminalWindow.vala:151 +#: src/Gtk/ProgressWindow.vala:145 src/Gtk/TerminalWindow.vala:151 #: src/Gtk/UpdateNotificationWindow.vala:167 #: src/Utility/Gtk/CustomMessageDialog.vala:172 #: src/Utility/Gtk/GtkHelper.vala:112 @@ -318,7 +318,7 @@ msgid "Installed" msgstr "Установлено" #: src/Gtk/MainWindow.vala:350 src/Gtk/MainWindow.vala:550 -#: src/Gtk/MainWindow.vala:686 src/Utility/TeeJee.System.vala:281 +#: src/Gtk/MainWindow.vala:688 src/Utility/TeeJee.System.vala:281 msgid "Internet connection is not active" msgstr "Интернет соединение не активно" @@ -376,7 +376,7 @@ msgid "No" msgstr "" #: src/Gtk/MainWindow.vala:350 src/Gtk/MainWindow.vala:550 -#: src/Gtk/MainWindow.vala:686 +#: src/Gtk/MainWindow.vala:688 msgid "No Internet" msgstr "" @@ -385,7 +385,7 @@ msgid "No kernels specified" msgstr "" #: src/Common/LinuxKernel.vala:784 src/Console/AppConsole.vala:374 -#: src/Console/AppConsole.vala:432 src/Gtk/MainWindow.vala:796 +#: src/Console/AppConsole.vala:432 src/Gtk/MainWindow.vala:798 msgid "No updates found" msgstr "Обновлений не найдено" @@ -563,7 +563,7 @@ msgstr "" msgid "Third Party Tools" msgstr "Сторонние инструменты" -#: src/Common/LinuxKernel.vala:1269 src/Gtk/MainWindow.vala:681 +#: src/Common/LinuxKernel.vala:1269 src/Gtk/MainWindow.vala:683 msgid "This kernel is already installed." msgstr "Это ядро уже установлено." diff --git a/po/sv.po b/po/sv.po index 0665d3ed..14b5927f 100644 --- a/po/sv.po +++ b/po/sv.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu 2.2\n" "Report-Msgid-Bugs-To: bw.aljex@gmail.com\n" -"POT-Creation-Date: 2019-03-18 05:35-0400\n" +"POT-Creation-Date: 2019-03-18 09:04-0400\n" "PO-Revision-Date: 2018-01-13 16:56+0100\n" "Last-Translator: Åke Engelbrektson \n" "Language-Team: Svenska Språkfiler \n" @@ -61,7 +61,7 @@ msgstr "Tillbaka" msgid "Cache" msgstr "" -#: src/Gtk/ProgressWindow.vala:143 src/Gtk/TerminalWindow.vala:151 +#: src/Gtk/ProgressWindow.vala:145 src/Gtk/TerminalWindow.vala:151 #: src/Gtk/UpdateNotificationWindow.vala:167 #: src/Utility/Gtk/CustomMessageDialog.vala:172 #: src/Utility/Gtk/GtkHelper.vala:112 @@ -312,7 +312,7 @@ msgid "Installed" msgstr "Installerad" #: src/Gtk/MainWindow.vala:350 src/Gtk/MainWindow.vala:550 -#: src/Gtk/MainWindow.vala:686 src/Utility/TeeJee.System.vala:281 +#: src/Gtk/MainWindow.vala:688 src/Utility/TeeJee.System.vala:281 msgid "Internet connection is not active" msgstr "Internetuppkopplingen är inte aktiv" @@ -369,7 +369,7 @@ msgid "No" msgstr "Nej" #: src/Gtk/MainWindow.vala:350 src/Gtk/MainWindow.vala:550 -#: src/Gtk/MainWindow.vala:686 +#: src/Gtk/MainWindow.vala:688 msgid "No Internet" msgstr "Inget internet" @@ -378,7 +378,7 @@ msgid "No kernels specified" msgstr "" #: src/Common/LinuxKernel.vala:784 src/Console/AppConsole.vala:374 -#: src/Console/AppConsole.vala:432 src/Gtk/MainWindow.vala:796 +#: src/Console/AppConsole.vala:432 src/Gtk/MainWindow.vala:798 msgid "No updates found" msgstr "Inga uppdateringar hittades" @@ -554,7 +554,7 @@ msgstr "" msgid "Third Party Tools" msgstr "Tredjepartsverktyg" -#: src/Common/LinuxKernel.vala:1269 src/Gtk/MainWindow.vala:681 +#: src/Common/LinuxKernel.vala:1269 src/Gtk/MainWindow.vala:683 msgid "This kernel is already installed." msgstr "Denna kärna är redan installerad" diff --git a/po/tr.po b/po/tr.po index 94285cde..30aad589 100644 --- a/po/tr.po +++ b/po/tr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu\n" "Report-Msgid-Bugs-To: bw.aljex@gmail.com\n" -"POT-Creation-Date: 2019-03-18 05:35-0400\n" +"POT-Creation-Date: 2019-03-18 09:04-0400\n" "PO-Revision-Date: 2019-03-12 19:35+0300\n" "Last-Translator: Gökhan GÖKKAYA \n" "Language-Team: Turkish\n" @@ -60,7 +60,7 @@ msgstr "Geri" msgid "Cache" msgstr "Önbellek" -#: src/Gtk/ProgressWindow.vala:143 src/Gtk/TerminalWindow.vala:151 +#: src/Gtk/ProgressWindow.vala:145 src/Gtk/TerminalWindow.vala:151 #: src/Gtk/UpdateNotificationWindow.vala:167 #: src/Utility/Gtk/CustomMessageDialog.vala:172 #: src/Utility/Gtk/GtkHelper.vala:112 @@ -307,7 +307,7 @@ msgid "Installed" msgstr "Kurulu" #: src/Gtk/MainWindow.vala:350 src/Gtk/MainWindow.vala:550 -#: src/Gtk/MainWindow.vala:686 src/Utility/TeeJee.System.vala:281 +#: src/Gtk/MainWindow.vala:688 src/Utility/TeeJee.System.vala:281 msgid "Internet connection is not active" msgstr "İnternet bağlantısı aktif değil" @@ -363,7 +363,7 @@ msgid "No" msgstr "Hayır" #: src/Gtk/MainWindow.vala:350 src/Gtk/MainWindow.vala:550 -#: src/Gtk/MainWindow.vala:686 +#: src/Gtk/MainWindow.vala:688 msgid "No Internet" msgstr "İnternet Yok" @@ -372,7 +372,7 @@ msgid "No kernels specified" msgstr "Belirtilen çekirdek yok" #: src/Common/LinuxKernel.vala:784 src/Console/AppConsole.vala:374 -#: src/Console/AppConsole.vala:432 src/Gtk/MainWindow.vala:796 +#: src/Console/AppConsole.vala:432 src/Gtk/MainWindow.vala:798 msgid "No updates found" msgstr "Güncelleme bulunamadı" @@ -545,7 +545,7 @@ msgstr "Aşağıdaki çekirdekler silinecek" msgid "Third Party Tools" msgstr "Üçüncü Parti Araçlar" -#: src/Common/LinuxKernel.vala:1269 src/Gtk/MainWindow.vala:681 +#: src/Common/LinuxKernel.vala:1269 src/Gtk/MainWindow.vala:683 msgid "This kernel is already installed." msgstr "Bu çekirdek zaten kurulu." diff --git a/src/Gtk/MainWindow.vala b/src/Gtk/MainWindow.vala index 1bd68e8e..2b0b7857 100644 --- a/src/Gtk/MainWindow.vala +++ b/src/Gtk/MainWindow.vala @@ -609,11 +609,13 @@ public class MainWindow : Gtk.Window{ dlg.update_status_line(); - dlg.update_progressbar(); - - dlg.sleep(200); + // FIXME - GTK error messages, and progressbar is always 100% + //dlg.update_progressbar(); + gtk_do_events(); + dlg.sleep(200); + count++; } diff --git a/src/Gtk/ProgressWindow.vala b/src/Gtk/ProgressWindow.vala index fdbc31d5..bd3d66bd 100644 --- a/src/Gtk/ProgressWindow.vala +++ b/src/Gtk/ProgressWindow.vala @@ -39,7 +39,7 @@ public class ProgressWindow : Gtk.Window { private Gtk.Spinner spinner; private Gtk.Label lbl_msg; private Gtk.Label lbl_status; - private ProgressBar progressbar; + //private ProgressBar progressbar; private Gtk.Button btn_cancel; private uint tmr_init = 0; @@ -121,11 +121,13 @@ public class ProgressWindow : Gtk.Window { vbox_main.add(hbox); //progressbar + /* progressbar = new Gtk.ProgressBar(); progressbar.set_size_request(300, -1); progressbar.hexpand = true; //progressbar.pulse_step = 0.1; hbox.add(progressbar); + */ //lbl_status lbl_status = new Gtk.Label (""); @@ -177,25 +179,26 @@ public class ProgressWindow : Gtk.Window { //title = "Threads: %d".printf(DownloadManager.download_count); //gtk_do_events(); } - + +/* public void update_progressbar(){ - double fraction = App.progress_count / (App.progress_total * 1.0); + double f = App.progress_count / (App.progress_total * 1.0); - if (fraction > 1.0){ - fraction = 1.0; + if (f > 1.0){ + f = 1.0; } - - progressbar.fraction = fraction; - //gtk_do_events(); + + progressbar.fraction = f; + gtk_do_events(); } - +*/ public void finish(string message = "") { btn_cancel.sensitive = false; //pulse_stop(); - progressbar.fraction = 1.0; + //progressbar.fraction = 1.0; lbl_msg.label = message; lbl_status.label = ""; diff --git a/src/Utility/TeeJee.Process.vala b/src/Utility/TeeJee.Process.vala index 6a62a5e9..668d2d61 100644 --- a/src/Utility/TeeJee.Process.vala +++ b/src/Utility/TeeJee.Process.vala @@ -22,7 +22,7 @@ * */ -// FIXME - Stop creating temp dirs and files for no reason +// FIXME - Stop creating temp dirs and files just to execute shell commands. namespace TeeJee.ProcessHelper{ using TeeJee.Logging; using TeeJee.FileSystem; From 4a87d040d17121514c80335294fb660916cfccee Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Mon, 18 Mar 2019 09:14:22 -0400 Subject: [PATCH 032/567] v1.0.1 --- BRANDING.mak | 2 +- debian/changelog | 7 +++++++ 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/BRANDING.mak b/BRANDING.mak index 0923880e..207ba23b 100644 --- a/BRANDING.mak +++ b/BRANDING.mak @@ -8,7 +8,7 @@ BRANDING_SHORTNAME = mainline BRANDING_LONGNAME = Ubuntu Mainline Kernel Installer -BRANDING_VERSION = 1.0.0 +BRANDING_VERSION = 1.0.1 BRANDING_AUTHORNAME = Brian K. White BRANDING_AUTHOREMAIL = bw.aljex@gmail.com BRANDING_WEBSITE = https://github.com/aljex/mainline diff --git a/debian/changelog b/debian/changelog index ce01c43d..47df16e0 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +mainline (1.0.1) disco; urgency=medium + + * Disabled buggy progress bar + * Add missing translators on credits window + + -- Brian K. White Mon, 18 Mar 2019 09:10:23 -0400 + mainline (1.0.0) disco; urgency=medium * Rename project from "ukuu" to "mainline" From eed985d8c249dbec074c8df1ee62fa4b4e3e6770 Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Tue, 19 Mar 2019 17:55:42 -0400 Subject: [PATCH 033/567] makefile remove unused parts --- Makefile | 6 ++---- po/_messages.pot | 4 ++-- 2 files changed, 4 insertions(+), 6 deletions(-) diff --git a/Makefile b/Makefile index 9ea48f56..48dab9bf 100644 --- a/Makefile +++ b/Makefile @@ -10,7 +10,7 @@ bindir=$(prefix)/bin sharedir=$(prefix)/share localedir=$(sharedir)/locale launcherdir=$(sharedir)/applications -polkitdir=$(sharedir)/polkit-1/actions +#polkitdir=$(sharedir)/polkit-1/actions mandir=$(sharedir)/man man1dir=$(mandir)/man1 @@ -71,11 +71,9 @@ clean: install: mkdir -p "$(DESTDIR)$(bindir)" mkdir -p "$(DESTDIR)$(sharedir)" - mkdir -p "$(DESTDIR)$(mandir)" mkdir -p "$(DESTDIR)$(man1dir)" mkdir -p "$(DESTDIR)$(launcherdir)" - mkdir -p "$(DESTDIR)$(polkitdir)" - mkdir -p "$(DESTDIR)$(sharedir)/glib-2.0/schemas/" + #mkdir -p "$(DESTDIR)$(polkitdir)" mkdir -p "$(DESTDIR)$(sharedir)/${BRANDING_SHORTNAME}" mkdir -p "$(DESTDIR)$(sharedir)/pixmaps" install -m 0755 ${BRANDING_SHORTNAME} "$(DESTDIR)$(bindir)" diff --git a/po/_messages.pot b/po/_messages.pot index ace689a1..c55f26ca 100644 --- a/po/_messages.pot +++ b/po/_messages.pot @@ -6,9 +6,9 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: mainline 1.0.0\n" +"Project-Id-Version: mainline 1.0.1\n" "Report-Msgid-Bugs-To: bw.aljex@gmail.com\n" -"POT-Creation-Date: 2019-03-18 09:04-0400\n" +"POT-Creation-Date: 2019-03-19 17:48-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" From 2f83a1d49b303c892e8db9d06717d6c22fabe2e7 Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Wed, 20 Mar 2019 07:23:36 -0400 Subject: [PATCH 034/567] Makefile trivia. Clear some compiler warnings. --- Makefile | 25 ++++++++++++++------- po/_messages.pot | 36 +++++++++++++++--------------- po/es.po | 36 +++++++++++++++--------------- po/fr.po | 36 +++++++++++++++--------------- po/hr.po | 36 +++++++++++++++--------------- po/nl.po | 36 +++++++++++++++--------------- po/pl.po | 36 +++++++++++++++--------------- po/ru.po | 36 +++++++++++++++--------------- po/sv.po | 36 +++++++++++++++--------------- po/tr.po | 36 +++++++++++++++--------------- src/Common/LinuxKernel.vala | 36 ------------------------------ src/Gtk/MainWindow.vala | 4 +--- src/Utility/AsyncTask.vala | 3 --- src/Utility/Gtk/GtkHelper.vala | 2 +- src/Utility/TeeJee.FileSystem.vala | 2 +- src/Utility/TeeJee.Process.vala | 8 +++---- 16 files changed, 186 insertions(+), 218 deletions(-) diff --git a/Makefile b/Makefile index 48dab9bf..6b6f4175 100644 --- a/Makefile +++ b/Makefile @@ -14,12 +14,12 @@ launcherdir=$(sharedir)/applications mandir=$(sharedir)/man man1dir=$(mandir)/man1 -vte_version = vte-2.91 -glib_version = glib-2.0 -gio_version = gio-unix-2.0 -gtk_version = gtk+-3.0 -json-glib_version = json-glib-1.0 -gee_version = gee-0.8 +vte = vte-2.91 +glib = glib-2.0 +gio-unix = gio-unix-2.0 +gtk+ = gtk+-3.0 +json-glib = json-glib-1.0 +gee = gee-0.8 host_dist:=$(shell lsb_release -sc) host_arch:=$(shell dpkg --print-architecture) @@ -32,16 +32,19 @@ misc_files := README.md ${BRANDING_SHORTNAME}.desktop debian/control debian/copy ################################################################################ all: ${misc_files} app app-gtk translations +.PHONY: all app-gtk: valac ${branding_symbols} --Xcc="-lm" \ - --pkg ${glib_version} --pkg ${gio_version} --pkg posix --pkg ${gee_version} --pkg ${json-glib_version} --pkg ${gtk_version} --pkg ${vte_version} \ + --pkg ${glib} --pkg ${gio-unix} --pkg posix --pkg ${gee} --pkg ${json-glib} --pkg ${gtk+} --pkg ${vte} \ src/Common/*.vala src/Gtk/*.vala src/Utility/*.vala src/Utility/Gtk/*.vala -o ${BRANDING_SHORTNAME}-gtk +.PHONY: app-gtk app: valac ${branding_symbols} --Xcc="-lm" \ - --pkg ${glib_version} --pkg ${gio_version} --pkg posix --pkg ${gee_version} --pkg ${json-glib_version} \ + --pkg ${glib} --pkg ${gio-unix} --pkg posix --pkg ${gee} --pkg ${json-glib} \ src/Common/*.vala src/Console/*.vala src/Utility/*.vala -o ${BRANDING_SHORTNAME} +.PHONY: app $(misc_files): %: %.src BRANDING.mak sed -e 's/BRANDING_SHORTNAME/${BRANDING_SHORTNAME}/g' \ @@ -63,10 +66,12 @@ translations: for p in po/*.po ; do \ msgmerge --backup=none --update -v $${p} po/_messages.pot ; \ done +.PHONY: translations clean: rm -rfv release *.c *.o *.po~ rm -fv ${BRANDING_SHORTNAME} ${BRANDING_SHORTNAME}-gtk +.PHONY: clean install: mkdir -p "$(DESTDIR)$(bindir)" @@ -88,6 +93,7 @@ install: mkdir -p "$(DESTDIR)$(localedir)/$${l}/LC_MESSAGES"; \ msgfmt --check --verbose -o "$(DESTDIR)$(localedir)/$${l}/LC_MESSAGES/${BRANDING_SHORTNAME}.mo" $${p} ; \ done +.PHONY: install uninstall: rm -f "$(DESTDIR)$(bindir)/${BRANDING_SHORTNAME}" @@ -98,6 +104,7 @@ uninstall: rm -f $(DESTDIR)$(localedir)/*/LC_MESSAGES/${BRANDING_SHORTNAME}.mo rm -f $(DESTDIR)/home/*/.config/${BRANDING_SHORTNAME}/${BRANDING_SHORTNAME}-notify.sh rm -f $(DESTDIR)/home/*/.config/autostart/${BRANDING_SHORTNAME}.desktop +.PHONY: uninstall deb-src: clean ${misc_files} ifneq (${BRANDING_VERSION},${pkg_version}) @@ -108,11 +115,13 @@ endif mv -fv ../${BRANDING_SHORTNAME}_$(pkg_version).dsc release/deb-src/ mv -fv ../${BRANDING_SHORTNAME}_$(pkg_version).tar.* release/deb-src/ ls -l release/deb-src +.PHONY: deb-src deb: deb-src mkdir -pv release/deb pbuilder-dist ${host_dist} build release/deb-src/${BRANDING_SHORTNAME}_$(pkg_version).dsc --buildresult release/deb ls -lv release/deb +.PHONY: deb install-deb: sudo dpkg -i release/deb/${BRANDING_SHORTNAME}_$(pkg_version)_${host_arch}.deb diff --git a/po/_messages.pot b/po/_messages.pot index c55f26ca..6001e0b4 100644 --- a/po/_messages.pot +++ b/po/_messages.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline 1.0.1\n" "Report-Msgid-Bugs-To: bw.aljex@gmail.com\n" -"POT-Creation-Date: 2019-03-19 17:48-0400\n" +"POT-Creation-Date: 2019-03-20 06:42-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -47,7 +47,7 @@ msgstr "" msgid "Authors" msgstr "" -#: src/Common/LinuxKernel.vala:1181 +#: src/Common/LinuxKernel.vala:1152 msgid "Available Kernels" msgstr "" @@ -159,7 +159,7 @@ msgstr "" msgid "Download packages for specified kernel" msgstr "" -#: src/Common/LinuxKernel.vala:1227 +#: src/Common/LinuxKernel.vala:1198 #, c-format msgid "Downloading" msgstr "" @@ -168,7 +168,7 @@ msgstr "" msgid "E" msgstr "" -#: src/Common/LinuxKernel.vala:1255 +#: src/Common/LinuxKernel.vala:1226 #, c-format msgid "ERROR" msgstr "" @@ -292,20 +292,20 @@ msgstr "" msgid "Install this kernel" msgstr "" -#: src/Common/LinuxKernel.vala:1301 +#: src/Common/LinuxKernel.vala:1272 msgid "Installation completed with errors" msgstr "" -#: src/Common/LinuxKernel.vala:1298 +#: src/Common/LinuxKernel.vala:1269 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" -#: src/Common/LinuxKernel.vala:1198 src/Gtk/MainWindow.vala:208 +#: src/Common/LinuxKernel.vala:1169 src/Gtk/MainWindow.vala:208 msgid "Installed" msgstr "" #: src/Gtk/MainWindow.vala:350 src/Gtk/MainWindow.vala:550 -#: src/Gtk/MainWindow.vala:688 src/Utility/TeeJee.System.vala:281 +#: src/Gtk/MainWindow.vala:690 src/Utility/TeeJee.System.vala:281 msgid "Internet connection is not active" msgstr "" @@ -360,7 +360,7 @@ msgid "No" msgstr "" #: src/Gtk/MainWindow.vala:350 src/Gtk/MainWindow.vala:550 -#: src/Gtk/MainWindow.vala:688 +#: src/Gtk/MainWindow.vala:690 msgid "No Internet" msgstr "" @@ -369,7 +369,7 @@ msgid "No kernels specified" msgstr "" #: src/Common/LinuxKernel.vala:784 src/Console/AppConsole.vala:374 -#: src/Console/AppConsole.vala:432 src/Gtk/MainWindow.vala:798 +#: src/Console/AppConsole.vala:432 src/Gtk/MainWindow.vala:800 msgid "No updates found" msgstr "" @@ -389,7 +389,7 @@ msgstr "" msgid "Notify if a point release is available" msgstr "" -#: src/Common/LinuxKernel.vala:1246 +#: src/Common/LinuxKernel.vala:1217 #: src/Utility/Gtk/CustomMessageDialog.vala:167 #: src/Utility/Gtk/CustomMessageDialog.vala:171 #: src/Utility/Gtk/GtkHelper.vala:111 @@ -419,7 +419,7 @@ msgstr "" msgid "Please install required packages and try again" msgstr "" -#: src/Common/LinuxKernel.vala:1322 +#: src/Common/LinuxKernel.vala:1293 msgid "Preparing to remove selected kernels" msgstr "" @@ -464,7 +464,7 @@ msgstr "" msgid "Run the application as admin with pkexec or sudo." msgstr "" -#: src/Common/LinuxKernel.vala:1198 src/Gtk/MainWindow.vala:208 +#: src/Common/LinuxKernel.vala:1169 src/Gtk/MainWindow.vala:208 msgid "Running" msgstr "" @@ -480,7 +480,7 @@ msgstr "" msgid "Select the kernels to remove" msgstr "" -#: src/Common/LinuxKernel.vala:1317 +#: src/Common/LinuxKernel.vala:1288 msgid "" "Selected kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -540,11 +540,11 @@ msgstr "" msgid "Third Party Tools" msgstr "" -#: src/Common/LinuxKernel.vala:1269 src/Gtk/MainWindow.vala:683 +#: src/Common/LinuxKernel.vala:1240 src/Gtk/MainWindow.vala:685 msgid "This kernel is already installed." msgstr "" -#: src/Common/LinuxKernel.vala:1373 +#: src/Common/LinuxKernel.vala:1341 msgid "" "This kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -555,11 +555,11 @@ msgstr "" msgid "Translators" msgstr "" -#: src/Common/LinuxKernel.vala:1357 src/Common/LinuxKernel.vala:1413 +#: src/Common/LinuxKernel.vala:1325 src/Common/LinuxKernel.vala:1378 msgid "Un-install completed" msgstr "" -#: src/Common/LinuxKernel.vala:1360 src/Common/LinuxKernel.vala:1416 +#: src/Common/LinuxKernel.vala:1328 src/Common/LinuxKernel.vala:1381 msgid "Un-install completed with errors" msgstr "" diff --git a/po/es.po b/po/es.po index baa3f302..2fb14619 100644 --- a/po/es.po +++ b/po/es.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu\n" "Report-Msgid-Bugs-To: bw.aljex@gmail.com\n" -"POT-Creation-Date: 2019-03-18 09:04-0400\n" +"POT-Creation-Date: 2019-03-20 06:33-0400\n" "PO-Revision-Date: 2018-01-03 02:03-0600\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish\n" @@ -48,7 +48,7 @@ msgstr "Asumir Sí para todas las solicitudes (modo no interactivo)" msgid "Authors" msgstr "Autores" -#: src/Common/LinuxKernel.vala:1181 +#: src/Common/LinuxKernel.vala:1152 msgid "Available Kernels" msgstr "Núcleos disponibles" @@ -161,7 +161,7 @@ msgstr "Documentadores" msgid "Download packages for specified kernel" msgstr "Descargar paquetes del núcleo especificado" -#: src/Common/LinuxKernel.vala:1227 +#: src/Common/LinuxKernel.vala:1198 #, c-format msgid "Downloading" msgstr "Descargando" @@ -170,7 +170,7 @@ msgstr "Descargando" msgid "E" msgstr "E" -#: src/Common/LinuxKernel.vala:1255 +#: src/Common/LinuxKernel.vala:1226 #, c-format msgid "ERROR" msgstr "ERROR" @@ -294,21 +294,21 @@ msgstr "Instalar núcleo troncal especificado" msgid "Install this kernel" msgstr "Instalar este kernel" -#: src/Common/LinuxKernel.vala:1301 +#: src/Common/LinuxKernel.vala:1272 msgid "Installation completed with errors" msgstr "Instalación finalizada con errores" -#: src/Common/LinuxKernel.vala:1298 +#: src/Common/LinuxKernel.vala:1269 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "Instalación finalizada. Se necesita reiniciar para utilizar el núcleo nuevo." -#: src/Common/LinuxKernel.vala:1198 src/Gtk/MainWindow.vala:208 +#: src/Common/LinuxKernel.vala:1169 src/Gtk/MainWindow.vala:208 msgid "Installed" msgstr "Instalado" #: src/Gtk/MainWindow.vala:350 src/Gtk/MainWindow.vala:550 -#: src/Gtk/MainWindow.vala:688 src/Utility/TeeJee.System.vala:281 +#: src/Gtk/MainWindow.vala:690 src/Utility/TeeJee.System.vala:281 msgid "Internet connection is not active" msgstr "La conexión a Internet está inactiva" @@ -365,7 +365,7 @@ msgid "No" msgstr "No" #: src/Gtk/MainWindow.vala:350 src/Gtk/MainWindow.vala:550 -#: src/Gtk/MainWindow.vala:688 +#: src/Gtk/MainWindow.vala:690 msgid "No Internet" msgstr "No hay Internet" @@ -374,7 +374,7 @@ msgid "No kernels specified" msgstr "" #: src/Common/LinuxKernel.vala:784 src/Console/AppConsole.vala:374 -#: src/Console/AppConsole.vala:432 src/Gtk/MainWindow.vala:798 +#: src/Console/AppConsole.vala:432 src/Gtk/MainWindow.vala:800 msgid "No updates found" msgstr "No se encontró ninguna actualización" @@ -394,7 +394,7 @@ msgstr "Notificar si hay una versión importante disponible" msgid "Notify if a point release is available" msgstr "Notificar si hay una versión puntual disponible" -#: src/Common/LinuxKernel.vala:1246 +#: src/Common/LinuxKernel.vala:1217 #: src/Utility/Gtk/CustomMessageDialog.vala:167 #: src/Utility/Gtk/CustomMessageDialog.vala:171 #: src/Utility/Gtk/GtkHelper.vala:111 @@ -424,7 +424,7 @@ msgstr "Paquetes instalados" msgid "Please install required packages and try again" msgstr "Instale los paquetes requeridos e inténtelo de nuevo" -#: src/Common/LinuxKernel.vala:1322 +#: src/Common/LinuxKernel.vala:1293 msgid "Preparing to remove selected kernels" msgstr "Preparándose para desinstalar los núcleos seleccionados" @@ -469,7 +469,7 @@ msgstr "" msgid "Run the application as admin with pkexec or sudo." msgstr "Ejecute la aplicación con permisos administrativos con pkexec o sudo." -#: src/Common/LinuxKernel.vala:1198 src/Gtk/MainWindow.vala:208 +#: src/Common/LinuxKernel.vala:1169 src/Gtk/MainWindow.vala:208 msgid "Running" msgstr "En ejecución" @@ -485,7 +485,7 @@ msgstr "Seleccione el núcleo que se instalará" msgid "Select the kernels to remove" msgstr "Seleccione los núcleos que se desinstalarán" -#: src/Common/LinuxKernel.vala:1317 +#: src/Common/LinuxKernel.vala:1288 msgid "" "Selected kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -547,11 +547,11 @@ msgstr "Los siguientes kernels serán eliminados:" msgid "Third Party Tools" msgstr "Herramientas de terceros" -#: src/Common/LinuxKernel.vala:1269 src/Gtk/MainWindow.vala:683 +#: src/Common/LinuxKernel.vala:1240 src/Gtk/MainWindow.vala:685 msgid "This kernel is already installed." msgstr "Este núcleo ya se instaló." -#: src/Common/LinuxKernel.vala:1373 +#: src/Common/LinuxKernel.vala:1341 msgid "" "This kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -564,11 +564,11 @@ msgstr "" msgid "Translators" msgstr "Traductores" -#: src/Common/LinuxKernel.vala:1357 src/Common/LinuxKernel.vala:1413 +#: src/Common/LinuxKernel.vala:1325 src/Common/LinuxKernel.vala:1378 msgid "Un-install completed" msgstr "Desinstalación finalizada" -#: src/Common/LinuxKernel.vala:1360 src/Common/LinuxKernel.vala:1416 +#: src/Common/LinuxKernel.vala:1328 src/Common/LinuxKernel.vala:1381 msgid "Un-install completed with errors" msgstr "Desinstalación finalizada con errores" diff --git a/po/fr.po b/po/fr.po index f5e89249..cb45e2e2 100644 --- a/po/fr.po +++ b/po/fr.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu\n" "Report-Msgid-Bugs-To: bw.aljex@gmail.com\n" -"POT-Creation-Date: 2019-03-18 09:04-0400\n" +"POT-Creation-Date: 2019-03-20 06:33-0400\n" "PO-Revision-Date: 2018-08-05 15:50+0200\n" "Last-Translator: Yolateng0 \n" "Language-Team: French\n" @@ -48,7 +48,7 @@ msgstr "" msgid "Authors" msgstr "Auteurs" -#: src/Common/LinuxKernel.vala:1181 +#: src/Common/LinuxKernel.vala:1152 msgid "Available Kernels" msgstr "Noyaux disponibles" @@ -164,7 +164,7 @@ msgstr "Documentalistes" msgid "Download packages for specified kernel" msgstr "Télécharger les paquets pour des noyaux spécifiques" -#: src/Common/LinuxKernel.vala:1227 +#: src/Common/LinuxKernel.vala:1198 #, c-format msgid "Downloading" msgstr "Téléchargement" @@ -173,7 +173,7 @@ msgstr "Téléchargement" msgid "E" msgstr "E" -#: src/Common/LinuxKernel.vala:1255 +#: src/Common/LinuxKernel.vala:1226 #, c-format msgid "ERROR" msgstr "ERREUR" @@ -298,22 +298,22 @@ msgstr "Installer le noyau principal spécifié" msgid "Install this kernel" msgstr "Installer ce noyau" -#: src/Common/LinuxKernel.vala:1301 +#: src/Common/LinuxKernel.vala:1272 msgid "Installation completed with errors" msgstr "Installation terminée avec des erreurs" -#: src/Common/LinuxKernel.vala:1298 +#: src/Common/LinuxKernel.vala:1269 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "Installation complétée. Un redémarrage est nécessaire pour utiliser le " "nouveau noyau." -#: src/Common/LinuxKernel.vala:1198 src/Gtk/MainWindow.vala:208 +#: src/Common/LinuxKernel.vala:1169 src/Gtk/MainWindow.vala:208 msgid "Installed" msgstr "Installé" #: src/Gtk/MainWindow.vala:350 src/Gtk/MainWindow.vala:550 -#: src/Gtk/MainWindow.vala:688 src/Utility/TeeJee.System.vala:281 +#: src/Gtk/MainWindow.vala:690 src/Utility/TeeJee.System.vala:281 msgid "Internet connection is not active" msgstr "Connexion internet inexistante" @@ -374,7 +374,7 @@ msgid "No" msgstr "Non" #: src/Gtk/MainWindow.vala:350 src/Gtk/MainWindow.vala:550 -#: src/Gtk/MainWindow.vala:688 +#: src/Gtk/MainWindow.vala:690 msgid "No Internet" msgstr "Pas d'Internet" @@ -383,7 +383,7 @@ msgid "No kernels specified" msgstr "" #: src/Common/LinuxKernel.vala:784 src/Console/AppConsole.vala:374 -#: src/Console/AppConsole.vala:432 src/Gtk/MainWindow.vala:798 +#: src/Console/AppConsole.vala:432 src/Gtk/MainWindow.vala:800 msgid "No updates found" msgstr "Aucune mise à jour disponible" @@ -403,7 +403,7 @@ msgstr "Notifier si une version stable majeure est disponible" msgid "Notify if a point release is available" msgstr "Notifier si une version stable mineure est disponible" -#: src/Common/LinuxKernel.vala:1246 +#: src/Common/LinuxKernel.vala:1217 #: src/Utility/Gtk/CustomMessageDialog.vala:167 #: src/Utility/Gtk/CustomMessageDialog.vala:171 #: src/Utility/Gtk/GtkHelper.vala:111 @@ -433,7 +433,7 @@ msgstr "Paquets installés" msgid "Please install required packages and try again" msgstr "Veuillez installer les paquets requis et réessayer" -#: src/Common/LinuxKernel.vala:1322 +#: src/Common/LinuxKernel.vala:1293 msgid "Preparing to remove selected kernels" msgstr "Préparation à la suppression des noyaux sélectionnés" @@ -479,7 +479,7 @@ msgstr "" msgid "Run the application as admin with pkexec or sudo." msgstr "Exécutez l'application en tant qu'admin avec pkexec or sudo." -#: src/Common/LinuxKernel.vala:1198 src/Gtk/MainWindow.vala:208 +#: src/Common/LinuxKernel.vala:1169 src/Gtk/MainWindow.vala:208 msgid "Running" msgstr "En cours" @@ -495,7 +495,7 @@ msgstr "Sélectionnez le noyau à installer" msgid "Select the kernels to remove" msgstr "Sélectionnez les noyaux à supprimer" -#: src/Common/LinuxKernel.vala:1317 +#: src/Common/LinuxKernel.vala:1288 msgid "" "Selected kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -559,11 +559,11 @@ msgstr "" msgid "Third Party Tools" msgstr "Outils tiers" -#: src/Common/LinuxKernel.vala:1269 src/Gtk/MainWindow.vala:683 +#: src/Common/LinuxKernel.vala:1240 src/Gtk/MainWindow.vala:685 msgid "This kernel is already installed." msgstr "Ce noyau est déjà installé." -#: src/Common/LinuxKernel.vala:1373 +#: src/Common/LinuxKernel.vala:1341 msgid "" "This kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -576,11 +576,11 @@ msgstr "" msgid "Translators" msgstr "Traducteurs" -#: src/Common/LinuxKernel.vala:1357 src/Common/LinuxKernel.vala:1413 +#: src/Common/LinuxKernel.vala:1325 src/Common/LinuxKernel.vala:1378 msgid "Un-install completed" msgstr "Désinstallation complète" -#: src/Common/LinuxKernel.vala:1360 src/Common/LinuxKernel.vala:1416 +#: src/Common/LinuxKernel.vala:1328 src/Common/LinuxKernel.vala:1381 msgid "Un-install completed with errors" msgstr "Désinstallation terminée avec des erreurs" diff --git a/po/hr.po b/po/hr.po index 586fcd60..be603bd4 100644 --- a/po/hr.po +++ b/po/hr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu\n" "Report-Msgid-Bugs-To: bw.aljex@gmail.com\n" -"POT-Creation-Date: 2019-03-18 09:04-0400\n" +"POT-Creation-Date: 2019-03-20 06:33-0400\n" "PO-Revision-Date: 2017-12-24 00:52+0100\n" "Last-Translator: gogo \n" "Language-Team: Croatian \n" @@ -49,7 +49,7 @@ msgstr "" msgid "Authors" msgstr "Autori" -#: src/Common/LinuxKernel.vala:1181 +#: src/Common/LinuxKernel.vala:1152 msgid "Available Kernels" msgstr "Dostupni kerneli" @@ -164,7 +164,7 @@ msgstr "Autori dokumentacije" msgid "Download packages for specified kernel" msgstr "Preuzmi pakete za određeni kernel" -#: src/Common/LinuxKernel.vala:1227 +#: src/Common/LinuxKernel.vala:1198 #, c-format msgid "Downloading" msgstr "Preuzimanje" @@ -173,7 +173,7 @@ msgstr "Preuzimanje" msgid "E" msgstr "G" -#: src/Common/LinuxKernel.vala:1255 +#: src/Common/LinuxKernel.vala:1226 #, c-format msgid "ERROR" msgstr "GREŠKA" @@ -298,22 +298,22 @@ msgstr "Instaliraj određeni mainline kernel" msgid "Install this kernel" msgstr "Instaliraj ovaj kernel" -#: src/Common/LinuxKernel.vala:1301 +#: src/Common/LinuxKernel.vala:1272 msgid "Installation completed with errors" msgstr "Instalacija je završena s greškama" -#: src/Common/LinuxKernel.vala:1298 +#: src/Common/LinuxKernel.vala:1269 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "Instalacija je završena. Potrebno je ponovno pokretanje računala kako bi se " "koristio novi kernel." -#: src/Common/LinuxKernel.vala:1198 src/Gtk/MainWindow.vala:208 +#: src/Common/LinuxKernel.vala:1169 src/Gtk/MainWindow.vala:208 msgid "Installed" msgstr "Instalirano" #: src/Gtk/MainWindow.vala:350 src/Gtk/MainWindow.vala:550 -#: src/Gtk/MainWindow.vala:688 src/Utility/TeeJee.System.vala:281 +#: src/Gtk/MainWindow.vala:690 src/Utility/TeeJee.System.vala:281 msgid "Internet connection is not active" msgstr "Internet povezivanje nije aktivno" @@ -370,7 +370,7 @@ msgid "No" msgstr "Ne" #: src/Gtk/MainWindow.vala:350 src/Gtk/MainWindow.vala:550 -#: src/Gtk/MainWindow.vala:688 +#: src/Gtk/MainWindow.vala:690 msgid "No Internet" msgstr "Nema pristupa internetu" @@ -379,7 +379,7 @@ msgid "No kernels specified" msgstr "" #: src/Common/LinuxKernel.vala:784 src/Console/AppConsole.vala:374 -#: src/Console/AppConsole.vala:432 src/Gtk/MainWindow.vala:798 +#: src/Console/AppConsole.vala:432 src/Gtk/MainWindow.vala:800 msgid "No updates found" msgstr "Nema pronađenih nadopuna" @@ -399,7 +399,7 @@ msgstr "Obavijesti kada je glavno izdanje dostupno" msgid "Notify if a point release is available" msgstr "Obavijesti kada je pojedino izdanje dostupno" -#: src/Common/LinuxKernel.vala:1246 +#: src/Common/LinuxKernel.vala:1217 #: src/Utility/Gtk/CustomMessageDialog.vala:167 #: src/Utility/Gtk/CustomMessageDialog.vala:171 #: src/Utility/Gtk/GtkHelper.vala:111 @@ -429,7 +429,7 @@ msgstr "Instalirani paketi" msgid "Please install required packages and try again" msgstr "Instalirajte potrebni paket i pokušajte ponovno" -#: src/Common/LinuxKernel.vala:1322 +#: src/Common/LinuxKernel.vala:1293 msgid "Preparing to remove selected kernels" msgstr "Pripremanje uklanjanja odabranih kernela" @@ -475,7 +475,7 @@ msgstr "" msgid "Run the application as admin with pkexec or sudo." msgstr "Pokreni aplikaciju kao administrator sa pkexec ili sudo." -#: src/Common/LinuxKernel.vala:1198 src/Gtk/MainWindow.vala:208 +#: src/Common/LinuxKernel.vala:1169 src/Gtk/MainWindow.vala:208 msgid "Running" msgstr "Pokrenuto" @@ -491,7 +491,7 @@ msgstr "Odaberi kernel za instalaciju" msgid "Select the kernels to remove" msgstr "Odaberi kernele za uklanjanje" -#: src/Common/LinuxKernel.vala:1317 +#: src/Common/LinuxKernel.vala:1288 msgid "" "Selected kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -555,11 +555,11 @@ msgstr "" msgid "Third Party Tools" msgstr "Alati treće strane" -#: src/Common/LinuxKernel.vala:1269 src/Gtk/MainWindow.vala:683 +#: src/Common/LinuxKernel.vala:1240 src/Gtk/MainWindow.vala:685 msgid "This kernel is already installed." msgstr "Ovaj kernel je već instaliran." -#: src/Common/LinuxKernel.vala:1373 +#: src/Common/LinuxKernel.vala:1341 msgid "" "This kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -572,11 +572,11 @@ msgstr "" msgid "Translators" msgstr "Prevoditelji" -#: src/Common/LinuxKernel.vala:1357 src/Common/LinuxKernel.vala:1413 +#: src/Common/LinuxKernel.vala:1325 src/Common/LinuxKernel.vala:1378 msgid "Un-install completed" msgstr "Deinstalacija završena" -#: src/Common/LinuxKernel.vala:1360 src/Common/LinuxKernel.vala:1416 +#: src/Common/LinuxKernel.vala:1328 src/Common/LinuxKernel.vala:1381 msgid "Un-install completed with errors" msgstr "Deinstalacija završena s greškama" diff --git a/po/nl.po b/po/nl.po index d2511fd8..d89a8bb3 100644 --- a/po/nl.po +++ b/po/nl.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu 2.2\n" "Report-Msgid-Bugs-To: bw.aljex@gmail.com\n" -"POT-Creation-Date: 2019-03-18 09:04-0400\n" +"POT-Creation-Date: 2019-03-20 06:33-0400\n" "PO-Revision-Date: 2017-04-30 11:50+0200\n" "Last-Translator: Heimen Stoffels \n" "Language-Team: \n" @@ -50,7 +50,7 @@ msgstr "" msgid "Authors" msgstr "Auteurs" -#: src/Common/LinuxKernel.vala:1181 +#: src/Common/LinuxKernel.vala:1152 msgid "Available Kernels" msgstr "Beschikbare kernels" @@ -165,7 +165,7 @@ msgstr "Documenteerders" msgid "Download packages for specified kernel" msgstr "Pakketten downloaden voor opgegeven kernel" -#: src/Common/LinuxKernel.vala:1227 +#: src/Common/LinuxKernel.vala:1198 #, c-format msgid "Downloading" msgstr "Bezig met downloaden" @@ -174,7 +174,7 @@ msgstr "Bezig met downloaden" msgid "E" msgstr "E" -#: src/Common/LinuxKernel.vala:1255 +#: src/Common/LinuxKernel.vala:1226 #, c-format msgid "ERROR" msgstr "FOUT" @@ -299,22 +299,22 @@ msgstr "Opgegeven mainline-kernel installeren" msgid "Install this kernel" msgstr "Deze kernel installeren" -#: src/Common/LinuxKernel.vala:1301 +#: src/Common/LinuxKernel.vala:1272 msgid "Installation completed with errors" msgstr "De installatie is foutloos voltooid" -#: src/Common/LinuxKernel.vala:1298 +#: src/Common/LinuxKernel.vala:1269 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "De installatie is voltooid. Herstart de computer om de nieuwe kernel te " "gebruiken." -#: src/Common/LinuxKernel.vala:1198 src/Gtk/MainWindow.vala:208 +#: src/Common/LinuxKernel.vala:1169 src/Gtk/MainWindow.vala:208 msgid "Installed" msgstr "Geïnstalleerd" #: src/Gtk/MainWindow.vala:350 src/Gtk/MainWindow.vala:550 -#: src/Gtk/MainWindow.vala:688 src/Utility/TeeJee.System.vala:281 +#: src/Gtk/MainWindow.vala:690 src/Utility/TeeJee.System.vala:281 msgid "Internet connection is not active" msgstr "U bent niet verbonden met het internet" @@ -374,7 +374,7 @@ msgid "No" msgstr "" #: src/Gtk/MainWindow.vala:350 src/Gtk/MainWindow.vala:550 -#: src/Gtk/MainWindow.vala:688 +#: src/Gtk/MainWindow.vala:690 msgid "No Internet" msgstr "Geen internetverbinding" @@ -383,7 +383,7 @@ msgid "No kernels specified" msgstr "" #: src/Common/LinuxKernel.vala:784 src/Console/AppConsole.vala:374 -#: src/Console/AppConsole.vala:432 src/Gtk/MainWindow.vala:798 +#: src/Console/AppConsole.vala:432 src/Gtk/MainWindow.vala:800 msgid "No updates found" msgstr "Geen updates gevonden" @@ -403,7 +403,7 @@ msgstr "Melding weergeven als er een grote update beschikbaar is" msgid "Notify if a point release is available" msgstr "Melding weergeven als er een puntupdate beschikbaar is" -#: src/Common/LinuxKernel.vala:1246 +#: src/Common/LinuxKernel.vala:1217 #: src/Utility/Gtk/CustomMessageDialog.vala:167 #: src/Utility/Gtk/CustomMessageDialog.vala:171 #: src/Utility/Gtk/GtkHelper.vala:111 @@ -433,7 +433,7 @@ msgstr "Geïnstalleerde pakketten" msgid "Please install required packages and try again" msgstr "Installeer de vereiste pakketten en probeer het opnieuw" -#: src/Common/LinuxKernel.vala:1322 +#: src/Common/LinuxKernel.vala:1293 msgid "Preparing to remove selected kernels" msgstr "Bezig met voorbereiden van verwijderen van geselecteerde kernels" @@ -480,7 +480,7 @@ msgstr "" msgid "Run the application as admin with pkexec or sudo." msgstr "Draai de applicatie als root of m.b.v. gksu/sudo." -#: src/Common/LinuxKernel.vala:1198 src/Gtk/MainWindow.vala:208 +#: src/Common/LinuxKernel.vala:1169 src/Gtk/MainWindow.vala:208 msgid "Running" msgstr "Bezig met draaien" @@ -496,7 +496,7 @@ msgstr "Selecteer de te installeren kernel" msgid "Select the kernels to remove" msgstr "Selecteer de te verwijderen kernels" -#: src/Common/LinuxKernel.vala:1317 +#: src/Common/LinuxKernel.vala:1288 msgid "" "Selected kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -561,11 +561,11 @@ msgstr "" msgid "Third Party Tools" msgstr "Externe hulpmiddelen" -#: src/Common/LinuxKernel.vala:1269 src/Gtk/MainWindow.vala:683 +#: src/Common/LinuxKernel.vala:1240 src/Gtk/MainWindow.vala:685 msgid "This kernel is already installed." msgstr "Deze kernel is al geïnstalleerd." -#: src/Common/LinuxKernel.vala:1373 +#: src/Common/LinuxKernel.vala:1341 msgid "" "This kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -578,11 +578,11 @@ msgstr "" msgid "Translators" msgstr "Vertalers" -#: src/Common/LinuxKernel.vala:1357 src/Common/LinuxKernel.vala:1413 +#: src/Common/LinuxKernel.vala:1325 src/Common/LinuxKernel.vala:1378 msgid "Un-install completed" msgstr "Deïnstalleren voltooid" -#: src/Common/LinuxKernel.vala:1360 src/Common/LinuxKernel.vala:1416 +#: src/Common/LinuxKernel.vala:1328 src/Common/LinuxKernel.vala:1381 msgid "Un-install completed with errors" msgstr "Deïnstalleren voltooid, maar met fouten" diff --git a/po/pl.po b/po/pl.po index 6a2082ee..b5fad6f4 100644 --- a/po/pl.po +++ b/po/pl.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu\n" "Report-Msgid-Bugs-To: bw.aljex@gmail.com\n" -"POT-Creation-Date: 2019-03-18 09:04-0400\n" +"POT-Creation-Date: 2019-03-20 06:33-0400\n" "PO-Revision-Date: 2017-08-12 15:26+0200\n" "Last-Translator: \n" "Language-Team: Polish\n" @@ -47,7 +47,7 @@ msgstr "" msgid "Authors" msgstr "Аutorzy" -#: src/Common/LinuxKernel.vala:1181 +#: src/Common/LinuxKernel.vala:1152 msgid "Available Kernels" msgstr "Dostępne jądra" @@ -162,7 +162,7 @@ msgstr "Dokumentujący" msgid "Download packages for specified kernel" msgstr "Pobierz pakiety dla wybranego jądra" -#: src/Common/LinuxKernel.vala:1227 +#: src/Common/LinuxKernel.vala:1198 #, c-format msgid "Downloading" msgstr "Pobieranie" @@ -171,7 +171,7 @@ msgstr "Pobieranie" msgid "E" msgstr "E" -#: src/Common/LinuxKernel.vala:1255 +#: src/Common/LinuxKernel.vala:1226 #, c-format msgid "ERROR" msgstr "BŁĄD" @@ -296,22 +296,22 @@ msgstr "Zainstaluj wybrane jądro" msgid "Install this kernel" msgstr "Zainstaluj to jądro" -#: src/Common/LinuxKernel.vala:1301 +#: src/Common/LinuxKernel.vala:1272 msgid "Installation completed with errors" msgstr "Instalacja zakończona z błędami" -#: src/Common/LinuxKernel.vala:1298 +#: src/Common/LinuxKernel.vala:1269 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "Instalacja zakończona. Aby korzystać z nowego jądra, konieczne jest ponowne " "uruchomienie." -#: src/Common/LinuxKernel.vala:1198 src/Gtk/MainWindow.vala:208 +#: src/Common/LinuxKernel.vala:1169 src/Gtk/MainWindow.vala:208 msgid "Installed" msgstr "Zainstalowany" #: src/Gtk/MainWindow.vala:350 src/Gtk/MainWindow.vala:550 -#: src/Gtk/MainWindow.vala:688 src/Utility/TeeJee.System.vala:281 +#: src/Gtk/MainWindow.vala:690 src/Utility/TeeJee.System.vala:281 msgid "Internet connection is not active" msgstr "Brak połączenia z internetem" @@ -369,7 +369,7 @@ msgid "No" msgstr "" #: src/Gtk/MainWindow.vala:350 src/Gtk/MainWindow.vala:550 -#: src/Gtk/MainWindow.vala:688 +#: src/Gtk/MainWindow.vala:690 msgid "No Internet" msgstr "Brak internetu" @@ -378,7 +378,7 @@ msgid "No kernels specified" msgstr "" #: src/Common/LinuxKernel.vala:784 src/Console/AppConsole.vala:374 -#: src/Console/AppConsole.vala:432 src/Gtk/MainWindow.vala:798 +#: src/Console/AppConsole.vala:432 src/Gtk/MainWindow.vala:800 msgid "No updates found" msgstr "Nie znaleziono aktualizacji" @@ -398,7 +398,7 @@ msgstr "Powiadom, jeśli pojawi się główna wersja" msgid "Notify if a point release is available" msgstr "Powiadom, jeśli pojawi się wersja punktowa" -#: src/Common/LinuxKernel.vala:1246 +#: src/Common/LinuxKernel.vala:1217 #: src/Utility/Gtk/CustomMessageDialog.vala:167 #: src/Utility/Gtk/CustomMessageDialog.vala:171 #: src/Utility/Gtk/GtkHelper.vala:111 @@ -428,7 +428,7 @@ msgstr "Pakiety zainstalowane" msgid "Please install required packages and try again" msgstr "Zainstaluj wymagane pakiety i spróbuj ponownie" -#: src/Common/LinuxKernel.vala:1322 +#: src/Common/LinuxKernel.vala:1293 msgid "Preparing to remove selected kernels" msgstr "Przygotowanie do usunięcia wybranych jąder" @@ -475,7 +475,7 @@ msgstr "" msgid "Run the application as admin with pkexec or sudo." msgstr "Uruchom aplikację jako root albo użyj gksu/sudo." -#: src/Common/LinuxKernel.vala:1198 src/Gtk/MainWindow.vala:208 +#: src/Common/LinuxKernel.vala:1169 src/Gtk/MainWindow.vala:208 msgid "Running" msgstr "Uruchomiony" @@ -491,7 +491,7 @@ msgstr "Wybierz pojedyncze do instalacji" msgid "Select the kernels to remove" msgstr "Wybierz jądro do usunięcia" -#: src/Common/LinuxKernel.vala:1317 +#: src/Common/LinuxKernel.vala:1288 msgid "" "Selected kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -555,11 +555,11 @@ msgstr "" msgid "Third Party Tools" msgstr "Narzędzia osób trzecich" -#: src/Common/LinuxKernel.vala:1269 src/Gtk/MainWindow.vala:683 +#: src/Common/LinuxKernel.vala:1240 src/Gtk/MainWindow.vala:685 msgid "This kernel is already installed." msgstr "To jądro jest już zainstalowane." -#: src/Common/LinuxKernel.vala:1373 +#: src/Common/LinuxKernel.vala:1341 msgid "" "This kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -572,11 +572,11 @@ msgstr "" msgid "Translators" msgstr "Tłumacze" -#: src/Common/LinuxKernel.vala:1357 src/Common/LinuxKernel.vala:1413 +#: src/Common/LinuxKernel.vala:1325 src/Common/LinuxKernel.vala:1378 msgid "Un-install completed" msgstr "De-instalacja zakończona" -#: src/Common/LinuxKernel.vala:1360 src/Common/LinuxKernel.vala:1416 +#: src/Common/LinuxKernel.vala:1328 src/Common/LinuxKernel.vala:1381 msgid "Un-install completed with errors" msgstr "De-instalacja zakończona z błędami" diff --git a/po/ru.po b/po/ru.po index 4408b39d..fe8cd4fd 100644 --- a/po/ru.po +++ b/po/ru.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu\n" "Report-Msgid-Bugs-To: bw.aljex@gmail.com\n" -"POT-Creation-Date: 2019-03-18 09:04-0400\n" +"POT-Creation-Date: 2019-03-20 06:33-0400\n" "PO-Revision-Date: 2016-12-13 16:46+0300\n" "Last-Translator: Faust3000 \n" "Language-Team: Russian \n" @@ -49,7 +49,7 @@ msgstr "" msgid "Authors" msgstr "Авторы" -#: src/Common/LinuxKernel.vala:1181 +#: src/Common/LinuxKernel.vala:1152 msgid "Available Kernels" msgstr "Доступные ядра" @@ -165,7 +165,7 @@ msgstr "Составители документации" msgid "Download packages for specified kernel" msgstr "Скачать пакеты для указанного ядра" -#: src/Common/LinuxKernel.vala:1227 +#: src/Common/LinuxKernel.vala:1198 #, c-format msgid "Downloading" msgstr "Загрузка" @@ -174,7 +174,7 @@ msgstr "Загрузка" msgid "E" msgstr "E" -#: src/Common/LinuxKernel.vala:1255 +#: src/Common/LinuxKernel.vala:1226 #, c-format msgid "ERROR" msgstr "ОШИБКА" @@ -303,22 +303,22 @@ msgstr "Установить указанную ветку ядра" msgid "Install this kernel" msgstr "Установить это ядро" -#: src/Common/LinuxKernel.vala:1301 +#: src/Common/LinuxKernel.vala:1272 msgid "Installation completed with errors" msgstr "Установка завершена с ошибками" -#: src/Common/LinuxKernel.vala:1298 +#: src/Common/LinuxKernel.vala:1269 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "Установка завершена. Обязательно выполните перезагрузку, чтобы использовать " "новое ядро." -#: src/Common/LinuxKernel.vala:1198 src/Gtk/MainWindow.vala:208 +#: src/Common/LinuxKernel.vala:1169 src/Gtk/MainWindow.vala:208 msgid "Installed" msgstr "Установлено" #: src/Gtk/MainWindow.vala:350 src/Gtk/MainWindow.vala:550 -#: src/Gtk/MainWindow.vala:688 src/Utility/TeeJee.System.vala:281 +#: src/Gtk/MainWindow.vala:690 src/Utility/TeeJee.System.vala:281 msgid "Internet connection is not active" msgstr "Интернет соединение не активно" @@ -376,7 +376,7 @@ msgid "No" msgstr "" #: src/Gtk/MainWindow.vala:350 src/Gtk/MainWindow.vala:550 -#: src/Gtk/MainWindow.vala:688 +#: src/Gtk/MainWindow.vala:690 msgid "No Internet" msgstr "" @@ -385,7 +385,7 @@ msgid "No kernels specified" msgstr "" #: src/Common/LinuxKernel.vala:784 src/Console/AppConsole.vala:374 -#: src/Console/AppConsole.vala:432 src/Gtk/MainWindow.vala:798 +#: src/Console/AppConsole.vala:432 src/Gtk/MainWindow.vala:800 msgid "No updates found" msgstr "Обновлений не найдено" @@ -405,7 +405,7 @@ msgstr "Уведомлять, если доступно крупное обно msgid "Notify if a point release is available" msgstr "Уведомлять, если доступно небольшое обновление" -#: src/Common/LinuxKernel.vala:1246 +#: src/Common/LinuxKernel.vala:1217 #: src/Utility/Gtk/CustomMessageDialog.vala:167 #: src/Utility/Gtk/CustomMessageDialog.vala:171 #: src/Utility/Gtk/GtkHelper.vala:111 @@ -435,7 +435,7 @@ msgstr "Установлено" msgid "Please install required packages and try again" msgstr "Установить необходимые пакеты и попробуйте снова" -#: src/Common/LinuxKernel.vala:1322 +#: src/Common/LinuxKernel.vala:1293 msgid "Preparing to remove selected kernels" msgstr "" @@ -482,7 +482,7 @@ msgstr "" msgid "Run the application as admin with pkexec or sudo." msgstr "Запустите программу с правами Root или используйте gksu/sudo." -#: src/Common/LinuxKernel.vala:1198 src/Gtk/MainWindow.vala:208 +#: src/Common/LinuxKernel.vala:1169 src/Gtk/MainWindow.vala:208 msgid "Running" msgstr "Используется" @@ -498,7 +498,7 @@ msgstr "" msgid "Select the kernels to remove" msgstr "" -#: src/Common/LinuxKernel.vala:1317 +#: src/Common/LinuxKernel.vala:1288 #, fuzzy msgid "" "Selected kernel is currently running and cannot be removed.\n" @@ -563,11 +563,11 @@ msgstr "" msgid "Third Party Tools" msgstr "Сторонние инструменты" -#: src/Common/LinuxKernel.vala:1269 src/Gtk/MainWindow.vala:683 +#: src/Common/LinuxKernel.vala:1240 src/Gtk/MainWindow.vala:685 msgid "This kernel is already installed." msgstr "Это ядро уже установлено." -#: src/Common/LinuxKernel.vala:1373 +#: src/Common/LinuxKernel.vala:1341 msgid "" "This kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -580,11 +580,11 @@ msgstr "" msgid "Translators" msgstr "Переводчики" -#: src/Common/LinuxKernel.vala:1357 src/Common/LinuxKernel.vala:1413 +#: src/Common/LinuxKernel.vala:1325 src/Common/LinuxKernel.vala:1378 msgid "Un-install completed" msgstr "Удаление завершено" -#: src/Common/LinuxKernel.vala:1360 src/Common/LinuxKernel.vala:1416 +#: src/Common/LinuxKernel.vala:1328 src/Common/LinuxKernel.vala:1381 msgid "Un-install completed with errors" msgstr "Удаление завершено с ошибками" diff --git a/po/sv.po b/po/sv.po index 14b5927f..a87ec577 100644 --- a/po/sv.po +++ b/po/sv.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu 2.2\n" "Report-Msgid-Bugs-To: bw.aljex@gmail.com\n" -"POT-Creation-Date: 2019-03-18 09:04-0400\n" +"POT-Creation-Date: 2019-03-20 06:33-0400\n" "PO-Revision-Date: 2018-01-13 16:56+0100\n" "Last-Translator: Åke Engelbrektson \n" "Language-Team: Svenska Språkfiler \n" @@ -49,7 +49,7 @@ msgstr "" msgid "Authors" msgstr "Utvecklare" -#: src/Common/LinuxKernel.vala:1181 +#: src/Common/LinuxKernel.vala:1152 msgid "Available Kernels" msgstr "Tillgängliga kärnor" @@ -164,7 +164,7 @@ msgstr "Dokumentalister" msgid "Download packages for specified kernel" msgstr "Ladda ner paket för specificerad kärna" -#: src/Common/LinuxKernel.vala:1227 +#: src/Common/LinuxKernel.vala:1198 #, c-format msgid "Downloading" msgstr "Laddar ner" @@ -173,7 +173,7 @@ msgstr "Laddar ner" msgid "E" msgstr "F" -#: src/Common/LinuxKernel.vala:1255 +#: src/Common/LinuxKernel.vala:1226 #, c-format msgid "ERROR" msgstr "FEL" @@ -299,20 +299,20 @@ msgstr "Installera specificerad kärna" msgid "Install this kernel" msgstr "Installera denna kärna" -#: src/Common/LinuxKernel.vala:1301 +#: src/Common/LinuxKernel.vala:1272 msgid "Installation completed with errors" msgstr "Installation slutförd med fel" -#: src/Common/LinuxKernel.vala:1298 +#: src/Common/LinuxKernel.vala:1269 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "Installation slutförd. Omstart krävs för att tillämpa den nya kärnan." -#: src/Common/LinuxKernel.vala:1198 src/Gtk/MainWindow.vala:208 +#: src/Common/LinuxKernel.vala:1169 src/Gtk/MainWindow.vala:208 msgid "Installed" msgstr "Installerad" #: src/Gtk/MainWindow.vala:350 src/Gtk/MainWindow.vala:550 -#: src/Gtk/MainWindow.vala:688 src/Utility/TeeJee.System.vala:281 +#: src/Gtk/MainWindow.vala:690 src/Utility/TeeJee.System.vala:281 msgid "Internet connection is not active" msgstr "Internetuppkopplingen är inte aktiv" @@ -369,7 +369,7 @@ msgid "No" msgstr "Nej" #: src/Gtk/MainWindow.vala:350 src/Gtk/MainWindow.vala:550 -#: src/Gtk/MainWindow.vala:688 +#: src/Gtk/MainWindow.vala:690 msgid "No Internet" msgstr "Inget internet" @@ -378,7 +378,7 @@ msgid "No kernels specified" msgstr "" #: src/Common/LinuxKernel.vala:784 src/Console/AppConsole.vala:374 -#: src/Console/AppConsole.vala:432 src/Gtk/MainWindow.vala:798 +#: src/Console/AppConsole.vala:432 src/Gtk/MainWindow.vala:800 msgid "No updates found" msgstr "Inga uppdateringar hittades" @@ -398,7 +398,7 @@ msgstr "Meddela om en ny (stor) uppdatering finns tillgänglig" msgid "Notify if a point release is available" msgstr "Meddela om en ny (mindre) uppdatering finns tillgänglig" -#: src/Common/LinuxKernel.vala:1246 +#: src/Common/LinuxKernel.vala:1217 #: src/Utility/Gtk/CustomMessageDialog.vala:167 #: src/Utility/Gtk/CustomMessageDialog.vala:171 #: src/Utility/Gtk/GtkHelper.vala:111 @@ -428,7 +428,7 @@ msgstr "Installerade paket" msgid "Please install required packages and try again" msgstr "Installera nödvändiga paket och försök igen" -#: src/Common/LinuxKernel.vala:1322 +#: src/Common/LinuxKernel.vala:1293 msgid "Preparing to remove selected kernels" msgstr "Förbereder borttagning av markerade kärnor" @@ -474,7 +474,7 @@ msgstr "" msgid "Run the application as admin with pkexec or sudo." msgstr "Kör programmet som administratör, med pkexec eller sudo." -#: src/Common/LinuxKernel.vala:1198 src/Gtk/MainWindow.vala:208 +#: src/Common/LinuxKernel.vala:1169 src/Gtk/MainWindow.vala:208 msgid "Running" msgstr "Körs" @@ -490,7 +490,7 @@ msgstr "Välj kärna för installation" msgid "Select the kernels to remove" msgstr "Välj kärnor för borttagning" -#: src/Common/LinuxKernel.vala:1317 +#: src/Common/LinuxKernel.vala:1288 msgid "" "Selected kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -554,11 +554,11 @@ msgstr "" msgid "Third Party Tools" msgstr "Tredjepartsverktyg" -#: src/Common/LinuxKernel.vala:1269 src/Gtk/MainWindow.vala:683 +#: src/Common/LinuxKernel.vala:1240 src/Gtk/MainWindow.vala:685 msgid "This kernel is already installed." msgstr "Denna kärna är redan installerad" -#: src/Common/LinuxKernel.vala:1373 +#: src/Common/LinuxKernel.vala:1341 msgid "" "This kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -571,11 +571,11 @@ msgstr "" msgid "Translators" msgstr "Översättare" -#: src/Common/LinuxKernel.vala:1357 src/Common/LinuxKernel.vala:1413 +#: src/Common/LinuxKernel.vala:1325 src/Common/LinuxKernel.vala:1378 msgid "Un-install completed" msgstr "Avinstallation slutförd" -#: src/Common/LinuxKernel.vala:1360 src/Common/LinuxKernel.vala:1416 +#: src/Common/LinuxKernel.vala:1328 src/Common/LinuxKernel.vala:1381 msgid "Un-install completed with errors" msgstr "Avinstallation slutförd med fel" diff --git a/po/tr.po b/po/tr.po index 30aad589..470c10c0 100644 --- a/po/tr.po +++ b/po/tr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu\n" "Report-Msgid-Bugs-To: bw.aljex@gmail.com\n" -"POT-Creation-Date: 2019-03-18 09:04-0400\n" +"POT-Creation-Date: 2019-03-20 06:33-0400\n" "PO-Revision-Date: 2019-03-12 19:35+0300\n" "Last-Translator: Gökhan GÖKKAYA \n" "Language-Team: Turkish\n" @@ -48,7 +48,7 @@ msgstr "Tüm istemler için Evet'i kabul edin (etkileşimsiz kip)" msgid "Authors" msgstr "Yazar" -#: src/Common/LinuxKernel.vala:1181 +#: src/Common/LinuxKernel.vala:1152 msgid "Available Kernels" msgstr "Mevcut Çekirdekler" @@ -160,7 +160,7 @@ msgstr "Belgelendirenler" msgid "Download packages for specified kernel" msgstr "Belirtilen çekirdek için paketleri indir" -#: src/Common/LinuxKernel.vala:1227 +#: src/Common/LinuxKernel.vala:1198 #, c-format msgid "Downloading" msgstr "İndiriliyor" @@ -169,7 +169,7 @@ msgstr "İndiriliyor" msgid "E" msgstr "H" -#: src/Common/LinuxKernel.vala:1255 +#: src/Common/LinuxKernel.vala:1226 #, c-format msgid "ERROR" msgstr "HATA" @@ -293,21 +293,21 @@ msgstr "Belirtilen mainline çekirdeğini kur" msgid "Install this kernel" msgstr "Bu çekirdeği kur" -#: src/Common/LinuxKernel.vala:1301 +#: src/Common/LinuxKernel.vala:1272 msgid "Installation completed with errors" msgstr "Kurulum hatalarla tamamlandı" -#: src/Common/LinuxKernel.vala:1298 +#: src/Common/LinuxKernel.vala:1269 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "Kurulum tamamlandı. Yeni çekirdeği kullanmak için yeniden başlatma gerekiyor." -#: src/Common/LinuxKernel.vala:1198 src/Gtk/MainWindow.vala:208 +#: src/Common/LinuxKernel.vala:1169 src/Gtk/MainWindow.vala:208 msgid "Installed" msgstr "Kurulu" #: src/Gtk/MainWindow.vala:350 src/Gtk/MainWindow.vala:550 -#: src/Gtk/MainWindow.vala:688 src/Utility/TeeJee.System.vala:281 +#: src/Gtk/MainWindow.vala:690 src/Utility/TeeJee.System.vala:281 msgid "Internet connection is not active" msgstr "İnternet bağlantısı aktif değil" @@ -363,7 +363,7 @@ msgid "No" msgstr "Hayır" #: src/Gtk/MainWindow.vala:350 src/Gtk/MainWindow.vala:550 -#: src/Gtk/MainWindow.vala:688 +#: src/Gtk/MainWindow.vala:690 msgid "No Internet" msgstr "İnternet Yok" @@ -372,7 +372,7 @@ msgid "No kernels specified" msgstr "Belirtilen çekirdek yok" #: src/Common/LinuxKernel.vala:784 src/Console/AppConsole.vala:374 -#: src/Console/AppConsole.vala:432 src/Gtk/MainWindow.vala:798 +#: src/Console/AppConsole.vala:432 src/Gtk/MainWindow.vala:800 msgid "No updates found" msgstr "Güncelleme bulunamadı" @@ -392,7 +392,7 @@ msgstr "Ana sürüm mevcutsa bildir" msgid "Notify if a point release is available" msgstr "Ara sürüm mevcutsa bildir" -#: src/Common/LinuxKernel.vala:1246 +#: src/Common/LinuxKernel.vala:1217 #: src/Utility/Gtk/CustomMessageDialog.vala:167 #: src/Utility/Gtk/CustomMessageDialog.vala:171 #: src/Utility/Gtk/GtkHelper.vala:111 @@ -422,7 +422,7 @@ msgstr "Paketler Kuruldu" msgid "Please install required packages and try again" msgstr "Lütfen gerekli paketleri yükleyin ve tekrar deneyin" -#: src/Common/LinuxKernel.vala:1322 +#: src/Common/LinuxKernel.vala:1293 msgid "Preparing to remove selected kernels" msgstr "Seçilen çekirdekleri kaldırmak için hazırlanıyor" @@ -467,7 +467,7 @@ msgstr "Çalıştır '" msgid "Run the application as admin with pkexec or sudo." msgstr "Bu uygulamayı pkexec yada sudo ile yönetici haklarıyla çalıştırın." -#: src/Common/LinuxKernel.vala:1198 src/Gtk/MainWindow.vala:208 +#: src/Common/LinuxKernel.vala:1169 src/Gtk/MainWindow.vala:208 msgid "Running" msgstr "Çalışıyor" @@ -483,7 +483,7 @@ msgstr "Kurulum için çekirdek seçin" msgid "Select the kernels to remove" msgstr "Kaldırma için çekirdek seçin" -#: src/Common/LinuxKernel.vala:1317 +#: src/Common/LinuxKernel.vala:1288 msgid "" "Selected kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -545,11 +545,11 @@ msgstr "Aşağıdaki çekirdekler silinecek" msgid "Third Party Tools" msgstr "Üçüncü Parti Araçlar" -#: src/Common/LinuxKernel.vala:1269 src/Gtk/MainWindow.vala:683 +#: src/Common/LinuxKernel.vala:1240 src/Gtk/MainWindow.vala:685 msgid "This kernel is already installed." msgstr "Bu çekirdek zaten kurulu." -#: src/Common/LinuxKernel.vala:1373 +#: src/Common/LinuxKernel.vala:1341 msgid "" "This kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -562,11 +562,11 @@ msgstr "" msgid "Translators" msgstr "Çevirenler" -#: src/Common/LinuxKernel.vala:1357 src/Common/LinuxKernel.vala:1413 +#: src/Common/LinuxKernel.vala:1325 src/Common/LinuxKernel.vala:1378 msgid "Un-install completed" msgstr "Kaldırma tamamlandı" -#: src/Common/LinuxKernel.vala:1360 src/Common/LinuxKernel.vala:1416 +#: src/Common/LinuxKernel.vala:1328 src/Common/LinuxKernel.vala:1381 msgid "Un-install completed with errors" msgstr "Kaldırma hatalarla tamamlandı" diff --git a/src/Common/LinuxKernel.vala b/src/Common/LinuxKernel.vala index 49ee451f..6f983dd6 100644 --- a/src/Common/LinuxKernel.vala +++ b/src/Common/LinuxKernel.vala @@ -1143,35 +1143,6 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { deb_list = list; } -/* - private void get_package_version(){ - - if (NATIVE_ARCH.length == 0){ - log_error("Native architecture is unknown!"); - exit(1); - } - - //linux_image_pkg_version - Regex rex_image = null; - MatchInfo match; - - try{ - //linux-image-3.4.75-030475-generic_3.4.75-030475.201312201255_amd64.deb - rex_image = new Regex("""linux-image-[0-9.\-_]*generic_([0-9.\-]*)_""" + NATIVE_ARCH + ".deb"); - } - catch (Error e) { - log_error (e.message); - } - - foreach(string file_name in deb_list.keys){ - if (rex_image.match(file_name, 0, out match)) { - - continue; - } - } - } -*/ - // actions public static void print_list(){ @@ -1341,15 +1312,12 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { } } else{ - stdout.printf(""); log_error("Could not find the packages to remove!"); return false; } } - log_msg(""); status = Posix.system(cmd); // execute - log_msg(""); ok = (status == 0); @@ -1394,15 +1362,12 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { } } else{ - stdout.printf(""); log_error("Could not find the packages to remove!"); return false; } if (write_to_terminal){ - log_msg(""); status = Posix.system(cmd); // execute - log_msg(""); } else{ status = exec_script_sync(cmd); // execute @@ -1419,4 +1384,3 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { return ok; } } - diff --git a/src/Gtk/MainWindow.vala b/src/Gtk/MainWindow.vala index 2b0b7857..aa315b03 100644 --- a/src/Gtk/MainWindow.vala +++ b/src/Gtk/MainWindow.vala @@ -602,9 +602,7 @@ public class MainWindow : Gtk.Window{ } if (App.progress_total > 0){ - - dlg.update_message("%s %lld/%lld (%s)".printf( - message, App.progress_count, App.progress_total, msg_remaining)); + dlg.update_message("%s %s/%s (%s)".printf(message, App.progress_count.to_string(), App.progress_total.to_string(), msg_remaining)); } dlg.update_status_line(); diff --git a/src/Utility/AsyncTask.vala b/src/Utility/AsyncTask.vala index 2e199c82..a705e829 100644 --- a/src/Utility/AsyncTask.vala +++ b/src/Utility/AsyncTask.vala @@ -63,8 +63,6 @@ public abstract class AsyncTask : GLib.Object{ public double percent = 0.0; public int64 prg_count = 0; public int64 prg_count_total = 0; - public int64 prg_bytes = 0; - public int64 prg_bytes_total = 0; public string eta = ""; //public bool is_running = false; @@ -92,7 +90,6 @@ public abstract class AsyncTask : GLib.Object{ finish_called = false; prg_count = 0; - prg_bytes = 0; error_msg = ""; string[] spawn_args = new string[1]; diff --git a/src/Utility/Gtk/GtkHelper.vala b/src/Utility/Gtk/GtkHelper.vala index 9af333cf..10254645 100644 --- a/src/Utility/Gtk/GtkHelper.vala +++ b/src/Utility/Gtk/GtkHelper.vala @@ -91,7 +91,7 @@ namespace TeeJee.GtkHelper{ txt_input.set_visibility(!mask_password); //create dialog - var dlg = new Gtk.Dialog.with_buttons(title, parent_win, DialogFlags.MODAL); + var dlg = new Gtk.Dialog.with_buttons(title, parent_win, DialogFlags.MODAL, null); dlg.title = title; dlg.set_default_size (300, -1); if (parent_win != null){ diff --git a/src/Utility/TeeJee.FileSystem.vala b/src/Utility/TeeJee.FileSystem.vala index 32f9f669..2366c3b4 100644 --- a/src/Utility/TeeJee.FileSystem.vala +++ b/src/Utility/TeeJee.FileSystem.vala @@ -770,7 +770,7 @@ namespace TeeJee.FileSystem{ } } else{ - txt += "%'0lld".printf(size); + txt += "%'0lu".printf(size); if (show_units){ txt += " B"; } diff --git a/src/Utility/TeeJee.Process.vala b/src/Utility/TeeJee.Process.vala index 668d2d61..3934b79c 100644 --- a/src/Utility/TeeJee.Process.vala +++ b/src/Utility/TeeJee.Process.vala @@ -449,13 +449,13 @@ namespace TeeJee.ProcessHelper{ * */ int[] child_pids = get_process_children (process_pid); - Posix.kill (process_pid, Posix.SIGTERM); + Posix.kill (process_pid, Posix.Signal.TERM); if (killChildren){ Pid childPid; foreach (long pid in child_pids){ childPid = (Pid) pid; - Posix.kill (childPid, Posix.SIGTERM); + Posix.kill (childPid, Posix.Signal.TERM); } } } @@ -468,13 +468,13 @@ namespace TeeJee.ProcessHelper{ * */ int[] child_pids = get_process_children (process_pid); - Posix.kill (process_pid, Posix.SIGKILL); + Posix.kill (process_pid, Posix.Signal.KILL); if (killChildren){ Pid childPid; foreach (long pid in child_pids){ childPid = (Pid) pid; - Posix.kill (childPid, Posix.SIGKILL); + Posix.kill (childPid, Posix.Signal.KILL); } } } From 9efd43787051009e16ac121ae7e95b6f3ca8ab57 Mon Sep 17 00:00:00 2001 From: Diego Viola Date: Sat, 23 Mar 2019 01:48:50 -0300 Subject: [PATCH 035/567] README: fix typo: Cahnged -> Changed --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 20cc4f34..18dbb84f 100644 --- a/README.md +++ b/README.md @@ -32,7 +32,7 @@ The original author stopped maintaining the original GPL version of ukuu and swi * (from [stevenpowerd](https://github.com/stevenpowered/ukuu)) Options controlling the internet connection check * (from [cloyce](https://github.com/cloyce/ukuu)) Option to include or hide pre-release kernels -* Cahnged name from "ukuu" to "mainline" +* Changed name from "ukuu" to "mainline" * Removed all GRUB options * Removed all donate buttons, links, dialogs * Remove source cruft From 8b46dcf38f9c4ec68909d858e0b8cb7e8f5967d0 Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Mon, 25 Mar 2019 14:08:23 -0400 Subject: [PATCH 036/567] Makefile wankery --- .deb_pkg_version.mak | 3 + .gitignore | 2 + BRANDING.mak | 13 +- INSTALL | 106 ++++++++++++- INSTALL.src | 104 +++++++++++++ Makefile | 237 +++++++++++++++++------------ NOTES | 0 README.md | 31 ++-- README.md.src | 31 ++-- debian/changelog | 27 +++- po/es.po | 74 ++++----- po/fr.po | 74 ++++----- po/hr.po | 74 ++++----- po/{_messages.pot => messages.pot} | 76 ++++----- po/nl.po | 74 ++++----- po/pl.po | 74 ++++----- po/ru.po | 74 ++++----- po/sv.po | 74 ++++----- po/tr.po | 74 ++++----- src/Common/DownloadManager.vala | 38 ++--- src/Console/AppConsole.vala | 2 - src/Gtk/TerminalWindow.vala | 2 - 22 files changed, 757 insertions(+), 507 deletions(-) create mode 100644 .deb_pkg_version.mak create mode 100644 INSTALL.src delete mode 100644 NOTES rename po/{_messages.pot => messages.pot} (89%) diff --git a/.deb_pkg_version.mak b/.deb_pkg_version.mak new file mode 100644 index 00000000..07a9ee91 --- /dev/null +++ b/.deb_pkg_version.mak @@ -0,0 +1,3 @@ +# This file is generated by Makefile +DEB_PKG_VERSION := 1.0.1 +DEB_BUILD_NUMBER := 0008 diff --git a/.gitignore b/.gitignore index f62de875..bacee95f 100644 --- a/.gitignore +++ b/.gitignore @@ -5,3 +5,5 @@ release *.o *~ .git +*.swp +.#* diff --git a/BRANDING.mak b/BRANDING.mak index 207ba23b..f4b899da 100644 --- a/BRANDING.mak +++ b/BRANDING.mak @@ -1,14 +1,11 @@ -# This file is in Makefile format - -# The goal is to define these values in a single place, -# and have as many other places as possible all refer to this. - -# Use Makefile syntax, as this is actually included by other makefiles, -# but keep it simple enough that it can also be parsed easily by anything else. +# Define version numbers and branding strings here +# This is the single place where you edit these values manually +VERSION_MAJOR = 1 +VERSION_MINOR = 0 +VERSION_MICRO = 1 BRANDING_SHORTNAME = mainline BRANDING_LONGNAME = Ubuntu Mainline Kernel Installer -BRANDING_VERSION = 1.0.1 BRANDING_AUTHORNAME = Brian K. White BRANDING_AUTHOREMAIL = bw.aljex@gmail.com BRANDING_WEBSITE = https://github.com/aljex/mainline diff --git a/INSTALL b/INSTALL index 59973ca4..a595e194 100644 --- a/INSTALL +++ b/INSTALL @@ -1,14 +1,104 @@ -# build +Build: -make + make -# install +Install: -sudo make install + sudo make install -# building only some components +Unininstall: -make app # console app -make app-gtk # GTK app -make translations # update POT and PO files from source + sudo make uninstall + + +Other build targets: +-------------------------------------------------------------------------------- + +Generate a .deb package, for release + +Updates .deb_pkg_version.mak +Unconditional full clean & build everytime +deb filename increments with every run, either by build number or by pkg version + + make release_deb + +-------------------------------------------------------------------------------- + +Build just the console app + + make mainline + +-------------------------------------------------------------------------------- + +Build just the GUI app + + make mainline-gtk + +-------------------------------------------------------------------------------- + +Generate a .deb package, for local repeated re-building + +Does not update .deb_pkg_version.mak +Only builds if not yet built or if any source files changed +deb filename does not increment + + make deb + +-------------------------------------------------------------------------------- + +Install the currently built deb +Allows to install built deb without having to know it's long path & filename +Already includes sudo, don't need "sudo make install-deb" + + make install-deb + +-------------------------------------------------------------------------------- + +Uninstall any version of deb package that might be installed +Allows to test "make install" without conflict or ambiguity with installed deb +Already includes sudo, don't need "sudo make uninstall-deb" + + make uninstall-deb + +-------------------------------------------------------------------------------- + +Translation files are maintained automatically, but you can regenerate any of +them manually with "make " +All translation files are in the po/ directory, and named .po +The po template is in the po/ directory, and named messages.pot + +Regenerate messages.pot + make po/messages.pot + +Regenerate the Spanish .po file (same for any po/*.po files) + make po/es.po + +-------------------------------------------------------------------------------- + +The files listed in $(misc_files) are maintained automatically, but you can +regenerate any of them manually with "make ". +Examples: + +Regenerate README.md from README.md.src + make README.md + +Regenerate debian/copyright from debian/copyright.src + make debian/copyright + +-------------------------------------------------------------------------------- + +debian/changelog is maintained automatically (that is, "dch" is called when +needed, you still have to manually edit once dch launches the editor), but you +can also update it manually any time. +This will run "dch" with appropriate commandline options to pre-load the pkg +name, version number, maintainer name, maintainer email etc. + + make changelog + +-------------------------------------------------------------------------------- + +Regenerate just the deb source pkg files (*.dsc, *.tar.gz) +This is usually done automatically. + + make deb-src diff --git a/INSTALL.src b/INSTALL.src new file mode 100644 index 00000000..7b053932 --- /dev/null +++ b/INSTALL.src @@ -0,0 +1,104 @@ +Build: + + make + +Install: + + sudo make install + +Unininstall: + + sudo make uninstall + + +Other build targets: +-------------------------------------------------------------------------------- + +Generate a .deb package, for release + +Updates .deb_pkg_version.mak +Unconditional full clean & build everytime +deb filename increments with every run, either by build number or by pkg version + + make release_deb + +-------------------------------------------------------------------------------- + +Build just the console app + + make BRANDING_SHORTNAME + +-------------------------------------------------------------------------------- + +Build just the GUI app + + make BRANDING_SHORTNAME-gtk + +-------------------------------------------------------------------------------- + +Generate a .deb package, for local repeated re-building + +Does not update .deb_pkg_version.mak +Only builds if not yet built or if any source files changed +deb filename does not increment + + make deb + +-------------------------------------------------------------------------------- + +Install the currently built deb +Allows to install built deb without having to know it's long path & filename +Already includes sudo, don't need "sudo make install-deb" + + make install-deb + +-------------------------------------------------------------------------------- + +Uninstall any version of deb package that might be installed +Allows to test "make install" without conflict or ambiguity with installed deb +Already includes sudo, don't need "sudo make uninstall-deb" + + make uninstall-deb + +-------------------------------------------------------------------------------- + +Translation files are maintained automatically, but you can regenerate any of +them manually with "make " +All translation files are in the po/ directory, and named .po +The po template is in the po/ directory, and named messages.pot + +Regenerate messages.pot + make po/messages.pot + +Regenerate the Spanish .po file (same for any po/*.po files) + make po/es.po + +-------------------------------------------------------------------------------- + +The files listed in $(misc_files) are maintained automatically, but you can +regenerate any of them manually with "make ". +Examples: + +Regenerate README.md from README.md.src + make README.md + +Regenerate debian/copyright from debian/copyright.src + make debian/copyright + +-------------------------------------------------------------------------------- + +debian/changelog is maintained automatically (that is, "dch" is called when +needed, you still have to manually edit once dch launches the editor), but you +can also update it manually any time. +This will run "dch" with appropriate commandline options to pre-load the pkg +name, version number, maintainer name, maintainer email etc. + + make changelog + +-------------------------------------------------------------------------------- + +Regenerate just the deb source pkg files (*.dsc, *.tar.gz) +This is usually done automatically. + + make deb-src + diff --git a/Makefile b/Makefile index 6b6f4175..5c8d5f60 100644 --- a/Makefile +++ b/Makefile @@ -2,131 +2,174 @@ include BRANDING.mak -SHELL=/bin/bash -CFLAGS=--std=c99 - -prefix=/usr -bindir=$(prefix)/bin -sharedir=$(prefix)/share -localedir=$(sharedir)/locale -launcherdir=$(sharedir)/applications -#polkitdir=$(sharedir)/polkit-1/actions -mandir=$(sharedir)/man -man1dir=$(mandir)/man1 - -vte = vte-2.91 -glib = glib-2.0 -gio-unix = gio-unix-2.0 -gtk+ = gtk+-3.0 -json-glib = json-glib-1.0 -gee = gee-0.8 - -host_dist:=$(shell lsb_release -sc) -host_arch:=$(shell dpkg --print-architecture) -pkg_version=$(shell dpkg-parsechangelog -S Version) - -branding_symbols := -X -D'BRANDING_SHORTNAME="${BRANDING_SHORTNAME}"' -X -D'BRANDING_LONGNAME="${BRANDING_LONGNAME}"' -X -D'BRANDING_VERSION="${BRANDING_VERSION}"' -X -D'BRANDING_AUTHORNAME="${BRANDING_AUTHORNAME}"' -X -D'BRANDING_AUTHOREMAIL="${BRANDING_AUTHOREMAIL}"' -X -D'BRANDING_WEBSITE="${BRANDING_WEBSITE}"' -X -D'GETTEXT_PACKAGE="${BRANDING_SHORTNAME}"' -misc_files := README.md ${BRANDING_SHORTNAME}.desktop debian/control debian/copyright -# ... share/polkit-1/actions/${BRANDING_SHORTNAME}.policy +SHELL := /bin/bash +CFLAGS := --std=c99 + +prefix := /usr +bindir := $(prefix)/bin +sharedir := $(prefix)/share +localedir := $(sharedir)/locale +launcherdir := $(sharedir)/applications +#polkitdir := $(sharedir)/polkit-1/actions +mandir := $(sharedir)/man +man1dir := $(mandir)/man1 + +vte := vte-2.91 +glib := glib-2.0 +gio-unix := gio-unix-2.0 +gtk+ := gtk+-3.0 +json-glib := json-glib-1.0 +gee := gee-0.8 + +host_dist := $(shell lsb_release -sc) +host_arch := $(shell dpkg --print-architecture) +pkg_version = $(shell dpkg-parsechangelog -S Version) + +PKG_VERSION := $(VERSION_MAJOR).$(VERSION_MINOR).$(VERSION_MICRO) +BRANDING_VERSION := $(PKG_VERSION) + +branding_symbols := -X -D'BRANDING_SHORTNAME="$(BRANDING_SHORTNAME)"' \ + -X -D'BRANDING_LONGNAME="$(BRANDING_LONGNAME)"' \ + -X -D'BRANDING_VERSION="$(BRANDING_VERSION)"' \ + -X -D'BRANDING_AUTHORNAME="$(BRANDING_AUTHORNAME)"' \ + -X -D'BRANDING_AUTHOREMAIL="$(BRANDING_AUTHOREMAIL)"' \ + -X -D'BRANDING_WEBSITE="$(BRANDING_WEBSITE)"' \ + -X -D'GETTEXT_PACKAGE="$(BRANDING_SHORTNAME)"' + +misc_files := README.md \ + INSTALL \ + $(BRANDING_SHORTNAME).desktop \ + debian/control \ + debian/copyright +# share/polkit-1/actions/$(BRANDING_SHORTNAME).policy + +common_vala_files := src/Common/*.vala src/Utility/*.vala +tui_vala_files := src/Console/*.vala +gui_vala_files := src/Gtk/*.vala src/Utility/Gtk/*.vala + +po_files := po/*.po +pot_file := po/messages.pot + +include .deb_pkg_version.mak +dsc_file = release/deb-src/$(BRANDING_SHORTNAME)_$(pkg_version).dsc +deb_file = release/deb/$(BRANDING_SHORTNAME)_$(pkg_version).$(DEB_BUILD_NUMBER)_$(host_arch).deb ################################################################################ -all: ${misc_files} app app-gtk translations .PHONY: all +all: $(BRANDING_SHORTNAME) $(BRANDING_SHORTNAME)-gtk $(po_files) -app-gtk: - valac ${branding_symbols} --Xcc="-lm" \ - --pkg ${glib} --pkg ${gio-unix} --pkg posix --pkg ${gee} --pkg ${json-glib} --pkg ${gtk+} --pkg ${vte} \ - src/Common/*.vala src/Gtk/*.vala src/Utility/*.vala src/Utility/Gtk/*.vala -o ${BRANDING_SHORTNAME}-gtk -.PHONY: app-gtk +$(BRANDING_SHORTNAME)-gtk: $(misc_files) $(common_vala_files) $(gui_vala_files) + valac $(branding_symbols) --Xcc="-lm" \ + --pkg $(glib) --pkg $(gio-unix) --pkg posix --pkg $(gee) --pkg $(json-glib) --pkg $(gtk+) --pkg $(vte) \ + $(common_vala_files) $(gui_vala_files) -o $(@) -app: - valac ${branding_symbols} --Xcc="-lm" \ - --pkg ${glib} --pkg ${gio-unix} --pkg posix --pkg ${gee} --pkg ${json-glib} \ - src/Common/*.vala src/Console/*.vala src/Utility/*.vala -o ${BRANDING_SHORTNAME} -.PHONY: app +$(BRANDING_SHORTNAME): $(misc_files) $(common_vala_files) $(tui_vala_files) + valac $(branding_symbols) --Xcc="-lm" \ + --pkg $(glib) --pkg $(gio-unix) --pkg posix --pkg $(gee) --pkg $(json-glib) \ + $(common_vala_files) $(tui_vala_files) -o $(@) $(misc_files): %: %.src BRANDING.mak - sed -e 's/BRANDING_SHORTNAME/${BRANDING_SHORTNAME}/g' \ - -e ';s/BRANDING_LONGNAME/${BRANDING_LONGNAME}/g' \ - -e ';s/BRANDING_AUTHORNAME/${BRANDING_AUTHORNAME}/g' \ - -e ';s/BRANDING_AUTHOREMAIL/${BRANDING_AUTHOREMAIL}/g' \ - -e ';s|BRANDING_WEBSITE|${BRANDING_WEBSITE}|g' \ - -e ';s/BRANDING_VERSION/${BRANDING_VERSION}/g' \ - -e ';s|BRANDING_GITREPO|${BRANDING_GITREPO}|g' \ - ${@}.src >${@} - -translations: - find . -iname "*.vala" | xargs xgettext --from-code=UTF-8 --language=C --keyword=_ \ - --copyright-holder="${BRANDING_AUTHORNAME} (${BRANDING_AUTHOREMAIL})" \ - --package-name="${BRANDING_SHORTNAME}" \ - --package-version="${BRANDING_VERSION}" \ - --msgid-bugs-address="${BRANDING_AUTHOREMAIL}" \ - --escape --sort-output -o po/_messages.pot - for p in po/*.po ; do \ - msgmerge --backup=none --update -v $${p} po/_messages.pot ; \ - done -.PHONY: translations + sed -e 's/BRANDING_SHORTNAME/$(BRANDING_SHORTNAME)/g' \ + -e ';s/BRANDING_LONGNAME/$(BRANDING_LONGNAME)/g' \ + -e ';s/BRANDING_AUTHORNAME/$(BRANDING_AUTHORNAME)/g' \ + -e ';s/BRANDING_AUTHOREMAIL/$(BRANDING_AUTHOREMAIL)/g' \ + -e ';s|BRANDING_WEBSITE|$(BRANDING_WEBSITE)|g' \ + -e ';s/BRANDING_VERSION/$(BRANDING_VERSION)/g' \ + -e ';s|BRANDING_GITREPO|$(BRANDING_GITREPO)|g' \ + $(@).src >$(@) + +$(pot_file): $(misc_files) $(common_vala_files) $(tui_vala_files) $(gui_vala_files) + find . -iname "*.vala" -print0 | xargs -0 xgettext --from-code=UTF-8 --language=C --keyword=_ \ + --copyright-holder="$(BRANDING_AUTHORNAME) ($(BRANDING_AUTHOREMAIL))" \ + --package-name="$(BRANDING_SHORTNAME)" \ + --package-version="$(BRANDING_VERSION)" \ + --msgid-bugs-address="$(BRANDING_AUTHOREMAIL)" \ + --escape --sort-output -o $(@) + +$(po_files): %: $(pot_file) + msgmerge --backup=none --update -v $(@) $(pot_file) + touch $(@) -clean: - rm -rfv release *.c *.o *.po~ - rm -fv ${BRANDING_SHORTNAME} ${BRANDING_SHORTNAME}-gtk .PHONY: clean +clean: + rm -rfv release *.c *.o + rm -fv $(BRANDING_SHORTNAME) $(BRANDING_SHORTNAME)-gtk -install: +.PHONY: install +install: all mkdir -p "$(DESTDIR)$(bindir)" mkdir -p "$(DESTDIR)$(sharedir)" mkdir -p "$(DESTDIR)$(man1dir)" mkdir -p "$(DESTDIR)$(launcherdir)" - #mkdir -p "$(DESTDIR)$(polkitdir)" - mkdir -p "$(DESTDIR)$(sharedir)/${BRANDING_SHORTNAME}" +# mkdir -p "$(DESTDIR)$(polkitdir)" + mkdir -p "$(DESTDIR)$(sharedir)/$(BRANDING_SHORTNAME)" mkdir -p "$(DESTDIR)$(sharedir)/pixmaps" - install -m 0755 ${BRANDING_SHORTNAME} "$(DESTDIR)$(bindir)" - install -m 0755 ${BRANDING_SHORTNAME}-gtk "$(DESTDIR)$(bindir)" - cp -dpr --no-preserve=ownership -t "$(DESTDIR)$(sharedir)/${BRANDING_SHORTNAME}" share/${BRANDING_SHORTNAME}/* - chmod --recursive 0755 $(DESTDIR)$(sharedir)/${BRANDING_SHORTNAME}/* - #install -m 0644 share/polkit-1/actions/${BRANDING_SHORTNAME}.policy "$(DESTDIR)$(polkitdir)" - install -m 0755 ${BRANDING_SHORTNAME}.desktop "$(DESTDIR)$(launcherdir)" - install -m 0755 share/pixmaps/${BRANDING_SHORTNAME}.* "$(DESTDIR)$(sharedir)/pixmaps" - for p in po/*.po; do \ - l=$${p#*/} l=$${l%.*}; \ + install -m 0755 $(BRANDING_SHORTNAME) "$(DESTDIR)$(bindir)" + install -m 0755 $(BRANDING_SHORTNAME)-gtk "$(DESTDIR)$(bindir)" + cp -dpr --no-preserve=ownership -t "$(DESTDIR)$(sharedir)/$(BRANDING_SHORTNAME)" share/$(BRANDING_SHORTNAME)/* + chmod --recursive 0755 $(DESTDIR)$(sharedir)/$(BRANDING_SHORTNAME)/* +# install -m 0644 share/polkit-1/actions/$(BRANDING_SHORTNAME).policy "$(DESTDIR)$(polkitdir)" + install -m 0755 $(BRANDING_SHORTNAME).desktop "$(DESTDIR)$(launcherdir)" + install -m 0755 share/pixmaps/$(BRANDING_SHORTNAME).* "$(DESTDIR)$(sharedir)/pixmaps" + for p in $(po_files) ; do \ + l=$${p##*/} l=$${l%.*}; \ mkdir -p "$(DESTDIR)$(localedir)/$${l}/LC_MESSAGES"; \ - msgfmt --check --verbose -o "$(DESTDIR)$(localedir)/$${l}/LC_MESSAGES/${BRANDING_SHORTNAME}.mo" $${p} ; \ + msgfmt --check --verbose -o "$(DESTDIR)$(localedir)/$${l}/LC_MESSAGES/$(BRANDING_SHORTNAME).mo" $${p} ; \ done -.PHONY: install -uninstall: - rm -f "$(DESTDIR)$(bindir)/${BRANDING_SHORTNAME}" - rm -rf "$(DESTDIR)$(sharedir)/${BRANDING_SHORTNAME}" - #rm -f "$(DESTDIR)$(polkitdir)/${BRANDING_SHORTNAME}.policy" - rm -f "$(DESTDIR)$(launcherdir)/${BRANDING_SHORTNAME}.desktop" - rm -f "$(DESTDIR)$(sharedir)/pixmaps/${BRANDING_SHORTNAME}.*" - rm -f $(DESTDIR)$(localedir)/*/LC_MESSAGES/${BRANDING_SHORTNAME}.mo - rm -f $(DESTDIR)/home/*/.config/${BRANDING_SHORTNAME}/${BRANDING_SHORTNAME}-notify.sh - rm -f $(DESTDIR)/home/*/.config/autostart/${BRANDING_SHORTNAME}.desktop .PHONY: uninstall +uninstall: + rm -f "$(DESTDIR)$(bindir)/$(BRANDING_SHORTNAME)" + rm -rf "$(DESTDIR)$(sharedir)/$(BRANDING_SHORTNAME)" +# rm -f "$(DESTDIR)$(polkitdir)/$(BRANDING_SHORTNAME).policy" + rm -f "$(DESTDIR)$(launcherdir)/$(BRANDING_SHORTNAME).desktop" + rm -f "$(DESTDIR)$(sharedir)/pixmaps/$(BRANDING_SHORTNAME).*" + rm -f $(DESTDIR)$(localedir)/*/LC_MESSAGES/$(BRANDING_SHORTNAME).mo + rm -f $(DESTDIR)/home/*/.config/$(BRANDING_SHORTNAME)/$(BRANDING_SHORTNAME)-notify.sh + rm -f $(DESTDIR)/home/*/.config/autostart/$(BRANDING_SHORTNAME).desktop -deb-src: clean ${misc_files} -ifneq (${BRANDING_VERSION},${pkg_version}) - echo "Version numbers in BRANDING.mak (${BRANDING_VERSION}) and debian/changelog (${pkg_version}) do not match." >&2 ; exit 1 -endif +.PHONY: deb-src +deb-src: $(dsc_file) + +$(dsc_file): debian/changelog $(misc_files) $(po_files) + @[[ "$(PKG_VERSION)" == "$(pkg_version)" ]] || { echo -e "Version number in debian/changelog ($(pkg_version)) does not match BRANDING.mak ($(PKG_VERSION)).\n(Run \"dch\")" >&2 ; exit 1 ; } + $(MAKE) clean dpkg-source --build . mkdir -pv release/deb-src - mv -fv ../${BRANDING_SHORTNAME}_$(pkg_version).dsc release/deb-src/ - mv -fv ../${BRANDING_SHORTNAME}_$(pkg_version).tar.* release/deb-src/ + mv -fv ../$(BRANDING_SHORTNAME)_$(pkg_version).dsc release/deb-src/ + mv -fv ../$(BRANDING_SHORTNAME)_$(pkg_version).tar.* release/deb-src/ ls -l release/deb-src -.PHONY: deb-src -deb: deb-src +.PHONY: deb +deb: $(deb_file) + +$(deb_file): $(dsc_file) mkdir -pv release/deb - pbuilder-dist ${host_dist} build release/deb-src/${BRANDING_SHORTNAME}_$(pkg_version).dsc --buildresult release/deb + pbuilder-dist $(host_dist) build $(dsc_file) --buildresult release/deb + mv -fv release/deb/$(BRANDING_SHORTNAME)_$(pkg_version)_$(host_arch).deb $(@) ls -lv release/deb -.PHONY: deb -install-deb: - sudo dpkg -i release/deb/${BRANDING_SHORTNAME}_$(pkg_version)_${host_arch}.deb .PHONY: install-deb +install-deb: $(deb_file) + sudo dpkg -i $(deb_file) -uninstall-deb: - sudo dpkg -r ${BRANDING_SHORTNAME} .PHONY: uninstall-deb +uninstall-deb: + sudo dpkg -r $(BRANDING_SHORTNAME) + +.PHONY: changelog +changelog: debian/changelog + +debian/changelog: $(misc_files) + dch --controlmaint --no-auto-nmu --package $(BRANDING_SHORTNAME) --newversion $(PKG_VERSION) + +.PHONY: deb_pkg_version +deb_pkg_version: debian/changelog + { n="0000" ; \ + [[ "_$(DEB_PKG_VERSION)" == "_$(pkg_version)" ]] && printf -v n "%04u" $$((10#$(DEB_BUILD_NUMBER)+1)) ; \ + echo -e "# This file is generated by Makefile\nDEB_PKG_VERSION := $(pkg_version)\nDEB_BUILD_NUMBER := $${n}" > .deb_pkg_version.mak ; } + +.PHONY: release_deb +release_deb: deb_pkg_version clean + $(MAKE) deb diff --git a/NOTES b/NOTES deleted file mode 100644 index e69de29b..00000000 diff --git a/README.md b/README.md index 20cc4f34..ee53085a 100644 --- a/README.md +++ b/README.md @@ -32,39 +32,42 @@ The original author stopped maintaining the original GPL version of ukuu and swi * (from [stevenpowerd](https://github.com/stevenpowered/ukuu)) Options controlling the internet connection check * (from [cloyce](https://github.com/cloyce/ukuu)) Option to include or hide pre-release kernels -* Cahnged name from "ukuu" to "mainline" +* Renamed from "ukuu" to "mainline" * Removed all GRUB options * Removed all donate buttons, links, dialogs * Remove source cruft ### Development Plans / TODO -* Stop consuming over 5GB in ```~/.cache/ukuu``` with kernel package files -Until then: As a work-around, "ukuu --clean-cache" deletes the cache +* More efficient downloading & caching of info about available kernels +Stop consuming over 5GB with kernel packages in ```~/.cache/``` +Until then, as a work-around, ```mainline --clean-cache``` deletes the cache * Better (more automatic) initial sizes for the window and the columns in the kernel list display so you don't have to manually expand them ...or at least, remember the sizes the user last set. -* More efficient download & caching of info about available kernels, without the kernel packages * Clean up build warnings * Clean up run-time GTK warnings -* Make http client configurable (curl/wget/other) +* Make http client configurable (curl/wget/other) +Currently uses aria2c. +Maybe just by moving the aria2c actions into an external script in ~/.config, where the user could do anything they want, rsync, bittorrent, dummy/fake. * Reduce dependencies, - stop using aptitude just to query installed packages when you can get the info from apt or even dpkg, - (done) use the same download client for everything instead of using both curl and aria2c +Do we really need aptitude? +libsoup or other library instead of shell commands for downloads? * Customizable appearance, at least colors * Option to specify kernel variant (generic, lowlatency, snapdragon, etc...) * Configurable lowest version threshhold instead of the current hard-coded 4.0 -...or, automatically use current highest release version minus 1 +...or, automatically subtract 1 from whatever the current highest release version is * Improve the annoying pkexec behavior. - It would be nicer to run lxqt-sudo or gksudo or pkexec etc one time for the whole session, and only have to enter a password once, instead of once per user action. - But currently, if you do that, it creates files in the users home directory that are owned by root, so don't do that. -I think this might be addressed by getting the policy kit file working. +It would be nicer to run pkexec (or lxqt-sudo, etc) one time for the whole session, and only have to enter a password once, instead of once per action. +But currently, if you actually do that, it creates files in the users home directory that are owned by root, so don't do that. +This might be addressed by getting the policy kit file working. * Write a man page * Make all the terminal & child processes more robust. It's always really been pretty 9/10ths-baked. Kernel downloads fail, but work if you just do it again. dpkg installs fail, but work if you just do it again. Populating the main window fails, but works if you just do it again. -Determining what is currently install & running fails, but works if you just do it again -...that is really kind of inexcusable crap could all be a lot better. +Determining what is currently installed & running fails, but works if you just do it again +...that is really kind of inexcusable crap and could all be a lot better. * More careful temp file / temp working dir management. It does avoidable dumb things like creating dirs/files as one user and then can't remove or use them later as another user. -* Replace the entire thing with a bash script, maybe with zenity for an optional gui. +* Maybe replace the entire thing with a bash script, maybe with zenity for an optional gui? +https://github.com/pimlie/ubuntu-mainline-kernel.sh diff --git a/README.md.src b/README.md.src index d2239675..a95af665 100644 --- a/README.md.src +++ b/README.md.src @@ -32,39 +32,42 @@ The original author stopped maintaining the original GPL version of ukuu and swi * (from [stevenpowerd](https://github.com/stevenpowered/ukuu)) Options controlling the internet connection check * (from [cloyce](https://github.com/cloyce/ukuu)) Option to include or hide pre-release kernels -* Cahnged name from "ukuu" to "BRANDING_SHORTNAME" +* Renamed from "ukuu" to "BRANDING_SHORTNAME" * Removed all GRUB options * Removed all donate buttons, links, dialogs * Remove source cruft ### Development Plans / TODO -* Stop consuming over 5GB in ```~/.cache/ukuu``` with kernel package files -Until then: As a work-around, "ukuu --clean-cache" deletes the cache +* More efficient downloading & caching of info about available kernels +Stop consuming over 5GB with kernel packages in ```~/.cache/``` +Until then, as a work-around, ```BRANDING_SHORTNAME --clean-cache``` deletes the cache * Better (more automatic) initial sizes for the window and the columns in the kernel list display so you don't have to manually expand them ...or at least, remember the sizes the user last set. -* More efficient download & caching of info about available kernels, without the kernel packages * Clean up build warnings * Clean up run-time GTK warnings -* Make http client configurable (curl/wget/other) +* Make http client configurable (curl/wget/other) +Currently uses aria2c. +Maybe just by moving the aria2c actions into an external script in ~/.config, where the user could do anything they want, rsync, bittorrent, dummy/fake. * Reduce dependencies, - stop using aptitude just to query installed packages when you can get the info from apt or even dpkg, - (done) use the same download client for everything instead of using both curl and aria2c +Do we really need aptitude? +libsoup or other library instead of shell commands for downloads? * Customizable appearance, at least colors * Option to specify kernel variant (generic, lowlatency, snapdragon, etc...) * Configurable lowest version threshhold instead of the current hard-coded 4.0 -...or, automatically use current highest release version minus 1 +...or, automatically subtract 1 from whatever the current highest release version is * Improve the annoying pkexec behavior. - It would be nicer to run lxqt-sudo or gksudo or pkexec etc one time for the whole session, and only have to enter a password once, instead of once per user action. - But currently, if you do that, it creates files in the users home directory that are owned by root, so don't do that. -I think this might be addressed by getting the policy kit file working. +It would be nicer to run pkexec (or lxqt-sudo, etc) one time for the whole session, and only have to enter a password once, instead of once per action. +But currently, if you actually do that, it creates files in the users home directory that are owned by root, so don't do that. +This might be addressed by getting the policy kit file working. * Write a man page * Make all the terminal & child processes more robust. It's always really been pretty 9/10ths-baked. Kernel downloads fail, but work if you just do it again. dpkg installs fail, but work if you just do it again. Populating the main window fails, but works if you just do it again. -Determining what is currently install & running fails, but works if you just do it again -...that is really kind of inexcusable crap could all be a lot better. +Determining what is currently installed & running fails, but works if you just do it again +...that is really kind of inexcusable crap and could all be a lot better. * More careful temp file / temp working dir management. It does avoidable dumb things like creating dirs/files as one user and then can't remove or use them later as another user. -* Replace the entire thing with a bash script, maybe with zenity for an optional gui. +* Maybe replace the entire thing with a bash script, maybe with zenity for an optional gui? +https://github.com/pimlie/ubuntu-mainline-kernel.sh diff --git a/debian/changelog b/debian/changelog index 47df16e0..9e8aecfd 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,9 +1,24 @@ -mainline (1.0.1) disco; urgency=medium +mainline (1.0.1) UNRELEASED; urgency=medium * Disabled buggy progress bar * Add missing translators on credits window - - -- Brian K. White Mon, 18 Mar 2019 09:10:23 -0400 + * Makefile: + - Use one variable style everywhere + - Only regenerate .pot file if any source files changed + - Only regenerate .po files if .pot file changed + - Only rebuild .deb if any files changed + - Automatically run dch to edit debian/changelog when needed + - New $(BUILD_NUMBER) for deb filename + - New target "release_deb" + o automatic increment build number + o automatic reset build number when pkg_version changes + o unconditional full "make clean deb" every time + Allows to generate updated deb files with icrementing filenames without having to update pkg version + - Get most targets other than "release_deb" to properly do nothing unless something actually changed. + Example, run "make deb" twice in a row with no changes, the 2nd one will say "nothing to do" + Makefile is now officially more feature rich and more robust than the application itself ¯\_(ツ)_/¯ + + -- Brian K. White Mon, 25 Mar 2019 13:56:26 -0400 mainline (1.0.0) disco; urgency=medium @@ -220,15 +235,15 @@ ukuu (16.12) trusty; urgency=medium * Remove startup scripts when application is uninstalled -- Tony George Wed, 7 Dec 2016 10:00:00 +0530 - - + + ukuu (16.11.1) trusty; urgency=medium * Fixed build for xenial: Added dependency for 'valac' -- Tony George Sun, 27 Nov 2016 10:00:00 +0530 - + ukuu (16.11) trusty; urgency=medium * Changed main window layout diff --git a/po/es.po b/po/es.po index 2fb14619..b0e061f6 100644 --- a/po/es.po +++ b/po/es.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu\n" "Report-Msgid-Bugs-To: bw.aljex@gmail.com\n" -"POT-Creation-Date: 2019-03-20 06:33-0400\n" +"POT-Creation-Date: 2019-03-25 06:02-0400\n" "PO-Revision-Date: 2018-01-03 02:03-0600\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish\n" @@ -21,7 +21,7 @@ msgstr "" msgid "About" msgstr "Acerca de" -#: src/Console/AppConsole.vala:116 +#: src/Console/AppConsole.vala:114 msgid "Admin access is required for running this application." msgstr "" "Se necesitan privilegios administrativos para ejecutar esta aplicación." @@ -39,7 +39,7 @@ msgstr "Arquitectura del sistema" msgid "Artists" msgstr "Artistas" -#: src/Console/AppConsole.vala:103 +#: src/Console/AppConsole.vala:101 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "Asumir Sí para todas las solicitudes (modo no interactivo)" @@ -56,11 +56,11 @@ msgstr "Núcleos disponibles" msgid "Back" msgstr "Atrás" -#: src/Console/AppConsole.vala:206 src/Gtk/AppGtk.vala:110 +#: src/Console/AppConsole.vala:204 src/Gtk/AppGtk.vala:110 msgid "Cache" msgstr "Cache" -#: src/Gtk/ProgressWindow.vala:145 src/Gtk/TerminalWindow.vala:151 +#: src/Gtk/ProgressWindow.vala:145 src/Gtk/TerminalWindow.vala:149 #: src/Gtk/UpdateNotificationWindow.vala:167 #: src/Utility/Gtk/CustomMessageDialog.vala:172 #: src/Utility/Gtk/GtkHelper.vala:112 @@ -75,23 +75,23 @@ msgstr "Cambios" msgid "Check every" msgstr "Comprobar cada" -#: src/Console/AppConsole.vala:87 +#: src/Console/AppConsole.vala:85 msgid "Check for kernel updates" msgstr "Buscar actualizaciones del núcleo" -#: src/Console/AppConsole.vala:88 +#: src/Console/AppConsole.vala:86 msgid "Check for kernel updates and notify current user" msgstr "Compruebe las actualizaciones del kernel y notifique al usuario actual" -#: src/Gtk/TerminalWindow.vala:161 src/Utility/Gtk/AboutWindow.vala:295 +#: src/Gtk/TerminalWindow.vala:159 src/Utility/Gtk/AboutWindow.vala:295 msgid "Close" msgstr "Cerrar" -#: src/Console/AppConsole.vala:343 +#: src/Console/AppConsole.vala:341 msgid "Command not specified" msgstr "Coomand no especificado" -#: src/Console/AppConsole.vala:85 +#: src/Console/AppConsole.vala:83 msgid "Commands" msgstr "Comandos" @@ -114,7 +114,7 @@ msgstr "Contribuciones" msgid "Could not find any kernels to remove" msgstr "Seleccione los núcleos que se desinstalarán" -#: src/Console/AppConsole.vala:311 src/Gtk/MainWindow.vala:100 +#: src/Console/AppConsole.vala:309 src/Gtk/MainWindow.vala:100 msgid "Could not find requested version" msgstr "No se pudo encontrar la versión solicitada" @@ -157,7 +157,7 @@ msgstr "Distribución" msgid "Documenters" msgstr "Documentadores" -#: src/Console/AppConsole.vala:96 +#: src/Console/AppConsole.vala:94 msgid "Download packages for specified kernel" msgstr "Descargar paquetes del núcleo especificado" @@ -278,15 +278,15 @@ msgstr "Instalar" msgid "Install Linux v%s ? (y/n): " msgstr "" -#: src/Console/AppConsole.vala:91 +#: src/Console/AppConsole.vala:89 msgid "Install latest mainline kernel" msgstr "Instalar kernel troncal especificado" -#: src/Console/AppConsole.vala:92 +#: src/Console/AppConsole.vala:90 msgid "Install latest point update for current series" msgstr "" -#: src/Console/AppConsole.vala:93 +#: src/Console/AppConsole.vala:91 msgid "Install specified mainline kernel" msgstr "Instalar núcleo troncal especificado" @@ -308,7 +308,7 @@ msgid "Installed" msgstr "Instalado" #: src/Gtk/MainWindow.vala:350 src/Gtk/MainWindow.vala:550 -#: src/Gtk/MainWindow.vala:690 src/Utility/TeeJee.System.vala:281 +#: src/Gtk/MainWindow.vala:686 src/Utility/TeeJee.System.vala:281 msgid "Internet connection is not active" msgstr "La conexión a Internet está inactiva" @@ -326,17 +326,17 @@ msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "" "Herramienta de renovación de núcleo para distribuciones basadas en Ubuntu" -#: src/Common/LinuxKernel.vala:776 src/Console/AppConsole.vala:369 +#: src/Common/LinuxKernel.vala:776 src/Console/AppConsole.vala:367 #, c-format msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:765 src/Console/AppConsole.vala:362 +#: src/Common/LinuxKernel.vala:765 src/Console/AppConsole.vala:360 #, c-format msgid "Latest update" msgstr "" -#: src/Console/AppConsole.vala:89 +#: src/Console/AppConsole.vala:87 msgid "List all available mainline kernels" msgstr "Mostrar todos los núcleos troncales disponibles" @@ -344,7 +344,7 @@ msgstr "Mostrar todos los núcleos troncales disponibles" msgid "List available kernels" msgstr "Mostrar núcleos disponibles" -#: src/Console/AppConsole.vala:90 +#: src/Console/AppConsole.vala:88 msgid "List installed kernels" msgstr "Mostrar kernels disponibles" @@ -356,7 +356,7 @@ msgstr "Falta el icono" msgid "Multiple Kernels Selected" msgstr "Se seleccionaron varios kernels" -#: src/Console/AppConsole.vala:293 +#: src/Console/AppConsole.vala:291 msgid "Multiple kernels selected for installation. Select only one." msgstr "Se seleccionaron varios núcleos para su instalación. Elija solo uno." @@ -365,16 +365,16 @@ msgid "No" msgstr "No" #: src/Gtk/MainWindow.vala:350 src/Gtk/MainWindow.vala:550 -#: src/Gtk/MainWindow.vala:690 +#: src/Gtk/MainWindow.vala:686 msgid "No Internet" msgstr "No hay Internet" -#: src/Console/AppConsole.vala:287 src/Console/AppConsole.vala:324 +#: src/Console/AppConsole.vala:285 src/Console/AppConsole.vala:322 msgid "No kernels specified" msgstr "" -#: src/Common/LinuxKernel.vala:784 src/Console/AppConsole.vala:374 -#: src/Console/AppConsole.vala:432 src/Gtk/MainWindow.vala:800 +#: src/Common/LinuxKernel.vala:784 src/Console/AppConsole.vala:372 +#: src/Console/AppConsole.vala:430 src/Gtk/MainWindow.vala:796 msgid "No updates found" msgstr "No se encontró ninguna actualización" @@ -402,7 +402,7 @@ msgstr "Notificar si hay una versión puntual disponible" msgid "OK" msgstr "Aceptar" -#: src/Console/AppConsole.vala:100 src/Gtk/AppGtk.vala:181 +#: src/Console/AppConsole.vala:98 src/Gtk/AppGtk.vala:181 msgid "Options" msgstr "Opciones" @@ -448,24 +448,24 @@ msgstr "Actualizando…" msgid "Remove" msgstr "Quitar" -#: src/Console/AppConsole.vala:97 src/Console/AppConsole.vala:102 +#: src/Console/AppConsole.vala:95 src/Console/AppConsole.vala:100 msgid "Remove files from application cache" msgstr "Quitar archivos de la antememoria de la aplicación" -#: src/Console/AppConsole.vala:95 src/Gtk/MainWindow.vala:426 +#: src/Console/AppConsole.vala:93 src/Gtk/MainWindow.vala:426 msgid "Remove installed kernels older than running kernel" msgstr "" -#: src/Console/AppConsole.vala:94 +#: src/Console/AppConsole.vala:92 msgid "Remove specified kernel" msgstr "Quitar el núcleo troncal especificado" -#: src/Console/AppConsole.vala:201 src/Console/AppConsole.vala:315 -#: src/Console/AppConsole.vala:344 +#: src/Console/AppConsole.vala:199 src/Console/AppConsole.vala:313 +#: src/Console/AppConsole.vala:342 msgid "Run '" msgstr "" -#: src/Console/AppConsole.vala:119 +#: src/Console/AppConsole.vala:117 msgid "Run the application as admin with pkexec or sudo." msgstr "Ejecute la aplicación con permisos administrativos con pkexec o sudo." @@ -513,7 +513,7 @@ msgstr "Mostrar globo de notificación en el escritorio" msgid "Show notification dialog" msgstr "Mostrar cuadro de diálogo de notificación" -#: src/Console/AppConsole.vala:98 +#: src/Console/AppConsole.vala:96 msgid "Show unstable and RC releases" msgstr "Ocultar versiones inestables y RC" @@ -529,11 +529,11 @@ msgstr "Estado" msgid "Stopped" msgstr "Detenido" -#: src/Console/AppConsole.vala:83 src/Gtk/AppGtk.vala:179 +#: src/Console/AppConsole.vala:81 src/Gtk/AppGtk.vala:179 msgid "Syntax" msgstr "Sintaxis" -#: src/Console/AppConsole.vala:207 src/Gtk/AppGtk.vala:111 +#: src/Console/AppConsole.vala:205 src/Gtk/AppGtk.vala:111 msgid "Temp" msgstr "" @@ -547,7 +547,7 @@ msgstr "Los siguientes kernels serán eliminados:" msgid "Third Party Tools" msgstr "Herramientas de terceros" -#: src/Common/LinuxKernel.vala:1240 src/Gtk/MainWindow.vala:685 +#: src/Common/LinuxKernel.vala:1240 src/Gtk/MainWindow.vala:681 msgid "This kernel is already installed." msgstr "Este núcleo ya se instaló." @@ -572,7 +572,7 @@ msgstr "Desinstalación finalizada" msgid "Un-install completed with errors" msgstr "Desinstalación finalizada con errores" -#: src/Console/AppConsole.vala:199 src/Gtk/AppGtk.vala:166 +#: src/Console/AppConsole.vala:197 src/Gtk/AppGtk.vala:166 msgid "Unknown option" msgstr "Opción desconocida" diff --git a/po/fr.po b/po/fr.po index cb45e2e2..85a1f494 100644 --- a/po/fr.po +++ b/po/fr.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu\n" "Report-Msgid-Bugs-To: bw.aljex@gmail.com\n" -"POT-Creation-Date: 2019-03-20 06:33-0400\n" +"POT-Creation-Date: 2019-03-25 06:02-0400\n" "PO-Revision-Date: 2018-08-05 15:50+0200\n" "Last-Translator: Yolateng0 \n" "Language-Team: French\n" @@ -21,7 +21,7 @@ msgstr "" msgid "About" msgstr "À propos" -#: src/Console/AppConsole.vala:116 +#: src/Console/AppConsole.vala:114 msgid "Admin access is required for running this application." msgstr "Accès administrateur requis pour lancer cette application." @@ -39,7 +39,7 @@ msgstr "Architecture du système" msgid "Artists" msgstr "Artistes" -#: src/Console/AppConsole.vala:103 +#: src/Console/AppConsole.vala:101 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "" @@ -56,11 +56,11 @@ msgstr "Noyaux disponibles" msgid "Back" msgstr "Retour" -#: src/Console/AppConsole.vala:206 src/Gtk/AppGtk.vala:110 +#: src/Console/AppConsole.vala:204 src/Gtk/AppGtk.vala:110 msgid "Cache" msgstr "" -#: src/Gtk/ProgressWindow.vala:145 src/Gtk/TerminalWindow.vala:151 +#: src/Gtk/ProgressWindow.vala:145 src/Gtk/TerminalWindow.vala:149 #: src/Gtk/UpdateNotificationWindow.vala:167 #: src/Utility/Gtk/CustomMessageDialog.vala:172 #: src/Utility/Gtk/GtkHelper.vala:112 @@ -75,25 +75,25 @@ msgstr "Changements" msgid "Check every" msgstr "Vérifier toutes les" -#: src/Console/AppConsole.vala:87 +#: src/Console/AppConsole.vala:85 msgid "Check for kernel updates" msgstr "Vérifier les mises à jour des noyaux" -#: src/Console/AppConsole.vala:88 +#: src/Console/AppConsole.vala:86 #, fuzzy msgid "Check for kernel updates and notify current user" msgstr "Vérifier les mises à jour des noyaux" -#: src/Gtk/TerminalWindow.vala:161 src/Utility/Gtk/AboutWindow.vala:295 +#: src/Gtk/TerminalWindow.vala:159 src/Utility/Gtk/AboutWindow.vala:295 msgid "Close" msgstr "Fermer" -#: src/Console/AppConsole.vala:343 +#: src/Console/AppConsole.vala:341 #, fuzzy msgid "Command not specified" msgstr "Impossible de trouver le fichier" -#: src/Console/AppConsole.vala:85 +#: src/Console/AppConsole.vala:83 msgid "Commands" msgstr "" @@ -116,7 +116,7 @@ msgstr "Contributions" msgid "Could not find any kernels to remove" msgstr "Sélectionnez les noyaux à supprimer" -#: src/Console/AppConsole.vala:311 src/Gtk/MainWindow.vala:100 +#: src/Console/AppConsole.vala:309 src/Gtk/MainWindow.vala:100 msgid "Could not find requested version" msgstr "Impossible de trouver la version demandée" @@ -160,7 +160,7 @@ msgstr "Distribution" msgid "Documenters" msgstr "Documentalistes" -#: src/Console/AppConsole.vala:96 +#: src/Console/AppConsole.vala:94 msgid "Download packages for specified kernel" msgstr "Télécharger les paquets pour des noyaux spécifiques" @@ -281,16 +281,16 @@ msgstr "Installer" msgid "Install Linux v%s ? (y/n): " msgstr "" -#: src/Console/AppConsole.vala:91 +#: src/Console/AppConsole.vala:89 #, fuzzy msgid "Install latest mainline kernel" msgstr "Installer le noyau principal spécifié" -#: src/Console/AppConsole.vala:92 +#: src/Console/AppConsole.vala:90 msgid "Install latest point update for current series" msgstr "" -#: src/Console/AppConsole.vala:93 +#: src/Console/AppConsole.vala:91 msgid "Install specified mainline kernel" msgstr "Installer le noyau principal spécifié" @@ -313,7 +313,7 @@ msgid "Installed" msgstr "Installé" #: src/Gtk/MainWindow.vala:350 src/Gtk/MainWindow.vala:550 -#: src/Gtk/MainWindow.vala:690 src/Utility/TeeJee.System.vala:281 +#: src/Gtk/MainWindow.vala:686 src/Utility/TeeJee.System.vala:281 msgid "Internet connection is not active" msgstr "Connexion internet inexistante" @@ -332,17 +332,17 @@ msgstr "" "Utilitaire de mise à niveau des noyaux pour les distributions basées pour " "Ubuntu" -#: src/Common/LinuxKernel.vala:776 src/Console/AppConsole.vala:369 +#: src/Common/LinuxKernel.vala:776 src/Console/AppConsole.vala:367 #, c-format msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:765 src/Console/AppConsole.vala:362 +#: src/Common/LinuxKernel.vala:765 src/Console/AppConsole.vala:360 #, c-format msgid "Latest update" msgstr "" -#: src/Console/AppConsole.vala:89 +#: src/Console/AppConsole.vala:87 msgid "List all available mainline kernels" msgstr "Lister tous les noyaux mainline disponibles" @@ -350,7 +350,7 @@ msgstr "Lister tous les noyaux mainline disponibles" msgid "List available kernels" msgstr "Lister les noyaux disponibles" -#: src/Console/AppConsole.vala:90 +#: src/Console/AppConsole.vala:88 #, fuzzy msgid "List installed kernels" msgstr "Lister les noyaux disponibles" @@ -363,7 +363,7 @@ msgstr "Icône introuvable" msgid "Multiple Kernels Selected" msgstr "Plusieurs noyaux sélectionnés" -#: src/Console/AppConsole.vala:293 +#: src/Console/AppConsole.vala:291 msgid "Multiple kernels selected for installation. Select only one." msgstr "" "Plusieurs noyaux sélectionnés pour être installés. Sélectionnez en seulement " @@ -374,16 +374,16 @@ msgid "No" msgstr "Non" #: src/Gtk/MainWindow.vala:350 src/Gtk/MainWindow.vala:550 -#: src/Gtk/MainWindow.vala:690 +#: src/Gtk/MainWindow.vala:686 msgid "No Internet" msgstr "Pas d'Internet" -#: src/Console/AppConsole.vala:287 src/Console/AppConsole.vala:324 +#: src/Console/AppConsole.vala:285 src/Console/AppConsole.vala:322 msgid "No kernels specified" msgstr "" -#: src/Common/LinuxKernel.vala:784 src/Console/AppConsole.vala:374 -#: src/Console/AppConsole.vala:432 src/Gtk/MainWindow.vala:800 +#: src/Common/LinuxKernel.vala:784 src/Console/AppConsole.vala:372 +#: src/Console/AppConsole.vala:430 src/Gtk/MainWindow.vala:796 msgid "No updates found" msgstr "Aucune mise à jour disponible" @@ -411,7 +411,7 @@ msgstr "Notifier si une version stable mineure est disponible" msgid "OK" msgstr "OK" -#: src/Console/AppConsole.vala:100 src/Gtk/AppGtk.vala:181 +#: src/Console/AppConsole.vala:98 src/Gtk/AppGtk.vala:181 msgid "Options" msgstr "Options" @@ -457,25 +457,25 @@ msgstr "Actualisation..." msgid "Remove" msgstr "Supprimer" -#: src/Console/AppConsole.vala:97 src/Console/AppConsole.vala:102 +#: src/Console/AppConsole.vala:95 src/Console/AppConsole.vala:100 msgid "Remove files from application cache" msgstr "Supprimer les fichiers du cache de l'application" -#: src/Console/AppConsole.vala:95 src/Gtk/MainWindow.vala:426 +#: src/Console/AppConsole.vala:93 src/Gtk/MainWindow.vala:426 msgid "Remove installed kernels older than running kernel" msgstr "" -#: src/Console/AppConsole.vala:94 +#: src/Console/AppConsole.vala:92 #, fuzzy msgid "Remove specified kernel" msgstr "Supprimer le noyau mainline sélectionné" -#: src/Console/AppConsole.vala:201 src/Console/AppConsole.vala:315 -#: src/Console/AppConsole.vala:344 +#: src/Console/AppConsole.vala:199 src/Console/AppConsole.vala:313 +#: src/Console/AppConsole.vala:342 msgid "Run '" msgstr "" -#: src/Console/AppConsole.vala:119 +#: src/Console/AppConsole.vala:117 msgid "Run the application as admin with pkexec or sudo." msgstr "Exécutez l'application en tant qu'admin avec pkexec or sudo." @@ -523,7 +523,7 @@ msgstr "Afficher la bulle de notification sur le bureau" msgid "Show notification dialog" msgstr "Afficher les notifications" -#: src/Console/AppConsole.vala:98 +#: src/Console/AppConsole.vala:96 #, fuzzy msgid "Show unstable and RC releases" msgstr "Cacher les versions instables et RC" @@ -541,11 +541,11 @@ msgstr "Statut" msgid "Stopped" msgstr "Arrêté" -#: src/Console/AppConsole.vala:83 src/Gtk/AppGtk.vala:179 +#: src/Console/AppConsole.vala:81 src/Gtk/AppGtk.vala:179 msgid "Syntax" msgstr "Syntaxe" -#: src/Console/AppConsole.vala:207 src/Gtk/AppGtk.vala:111 +#: src/Console/AppConsole.vala:205 src/Gtk/AppGtk.vala:111 msgid "Temp" msgstr "" @@ -559,7 +559,7 @@ msgstr "" msgid "Third Party Tools" msgstr "Outils tiers" -#: src/Common/LinuxKernel.vala:1240 src/Gtk/MainWindow.vala:685 +#: src/Common/LinuxKernel.vala:1240 src/Gtk/MainWindow.vala:681 msgid "This kernel is already installed." msgstr "Ce noyau est déjà installé." @@ -584,7 +584,7 @@ msgstr "Désinstallation complète" msgid "Un-install completed with errors" msgstr "Désinstallation terminée avec des erreurs" -#: src/Console/AppConsole.vala:199 src/Gtk/AppGtk.vala:166 +#: src/Console/AppConsole.vala:197 src/Gtk/AppGtk.vala:166 msgid "Unknown option" msgstr "Option inconnue" diff --git a/po/hr.po b/po/hr.po index be603bd4..a7997fc2 100644 --- a/po/hr.po +++ b/po/hr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu\n" "Report-Msgid-Bugs-To: bw.aljex@gmail.com\n" -"POT-Creation-Date: 2019-03-20 06:33-0400\n" +"POT-Creation-Date: 2019-03-25 06:02-0400\n" "PO-Revision-Date: 2017-12-24 00:52+0100\n" "Last-Translator: gogo \n" "Language-Team: Croatian \n" @@ -22,7 +22,7 @@ msgstr "" msgid "About" msgstr "O programu" -#: src/Console/AppConsole.vala:116 +#: src/Console/AppConsole.vala:114 msgid "Admin access is required for running this application." msgstr "Administratorske ovlasti su potrebne za pokretanje ove aplikacije." @@ -40,7 +40,7 @@ msgstr "Arhitektura sustava" msgid "Artists" msgstr "Dizajneri" -#: src/Console/AppConsole.vala:103 +#: src/Console/AppConsole.vala:101 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "" @@ -57,11 +57,11 @@ msgstr "Dostupni kerneli" msgid "Back" msgstr "Natrag" -#: src/Console/AppConsole.vala:206 src/Gtk/AppGtk.vala:110 +#: src/Console/AppConsole.vala:204 src/Gtk/AppGtk.vala:110 msgid "Cache" msgstr "" -#: src/Gtk/ProgressWindow.vala:145 src/Gtk/TerminalWindow.vala:151 +#: src/Gtk/ProgressWindow.vala:145 src/Gtk/TerminalWindow.vala:149 #: src/Gtk/UpdateNotificationWindow.vala:167 #: src/Utility/Gtk/CustomMessageDialog.vala:172 #: src/Utility/Gtk/GtkHelper.vala:112 @@ -76,24 +76,24 @@ msgstr "Promjene" msgid "Check every" msgstr "Provjeri svaka" -#: src/Console/AppConsole.vala:87 +#: src/Console/AppConsole.vala:85 msgid "Check for kernel updates" msgstr "Provjeri nadopune kernela" -#: src/Console/AppConsole.vala:88 +#: src/Console/AppConsole.vala:86 #, fuzzy msgid "Check for kernel updates and notify current user" msgstr "Provjeri nadopune kernela" -#: src/Gtk/TerminalWindow.vala:161 src/Utility/Gtk/AboutWindow.vala:295 +#: src/Gtk/TerminalWindow.vala:159 src/Utility/Gtk/AboutWindow.vala:295 msgid "Close" msgstr "Zatvori" -#: src/Console/AppConsole.vala:343 +#: src/Console/AppConsole.vala:341 msgid "Command not specified" msgstr "" -#: src/Console/AppConsole.vala:85 +#: src/Console/AppConsole.vala:83 msgid "Commands" msgstr "" @@ -116,7 +116,7 @@ msgstr "Prilozi" msgid "Could not find any kernels to remove" msgstr "Odaberi kernele za uklanjanje" -#: src/Console/AppConsole.vala:311 src/Gtk/MainWindow.vala:100 +#: src/Console/AppConsole.vala:309 src/Gtk/MainWindow.vala:100 msgid "Could not find requested version" msgstr "Nemoguće je pronaći zatraženu inačicu" @@ -160,7 +160,7 @@ msgstr "Distribucija" msgid "Documenters" msgstr "Autori dokumentacije" -#: src/Console/AppConsole.vala:96 +#: src/Console/AppConsole.vala:94 msgid "Download packages for specified kernel" msgstr "Preuzmi pakete za određeni kernel" @@ -281,16 +281,16 @@ msgstr "Instaliraj" msgid "Install Linux v%s ? (y/n): " msgstr "" -#: src/Console/AppConsole.vala:91 +#: src/Console/AppConsole.vala:89 #, fuzzy msgid "Install latest mainline kernel" msgstr "Instaliraj određeni mainline kernel" -#: src/Console/AppConsole.vala:92 +#: src/Console/AppConsole.vala:90 msgid "Install latest point update for current series" msgstr "" -#: src/Console/AppConsole.vala:93 +#: src/Console/AppConsole.vala:91 msgid "Install specified mainline kernel" msgstr "Instaliraj određeni mainline kernel" @@ -313,7 +313,7 @@ msgid "Installed" msgstr "Instalirano" #: src/Gtk/MainWindow.vala:350 src/Gtk/MainWindow.vala:550 -#: src/Gtk/MainWindow.vala:690 src/Utility/TeeJee.System.vala:281 +#: src/Gtk/MainWindow.vala:686 src/Utility/TeeJee.System.vala:281 msgid "Internet connection is not active" msgstr "Internet povezivanje nije aktivno" @@ -330,17 +330,17 @@ msgstr "Kernel" msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Alat za nadogradnju kernela Ubuntu temeljenih distribucija" -#: src/Common/LinuxKernel.vala:776 src/Console/AppConsole.vala:369 +#: src/Common/LinuxKernel.vala:776 src/Console/AppConsole.vala:367 #, c-format msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:765 src/Console/AppConsole.vala:362 +#: src/Common/LinuxKernel.vala:765 src/Console/AppConsole.vala:360 #, c-format msgid "Latest update" msgstr "" -#: src/Console/AppConsole.vala:89 +#: src/Console/AppConsole.vala:87 msgid "List all available mainline kernels" msgstr "Prikaži sve mainline kernele" @@ -348,7 +348,7 @@ msgstr "Prikaži sve mainline kernele" msgid "List available kernels" msgstr "Prikaži sve kernele" -#: src/Console/AppConsole.vala:90 +#: src/Console/AppConsole.vala:88 #, fuzzy msgid "List installed kernels" msgstr "Prikaži sve kernele" @@ -361,7 +361,7 @@ msgstr "Ikone koje nedostaju" msgid "Multiple Kernels Selected" msgstr "Više kernela je odabrano" -#: src/Console/AppConsole.vala:293 +#: src/Console/AppConsole.vala:291 msgid "Multiple kernels selected for installation. Select only one." msgstr "Više kernela je odabrano za instalaciju. odaberite samo jedan." @@ -370,16 +370,16 @@ msgid "No" msgstr "Ne" #: src/Gtk/MainWindow.vala:350 src/Gtk/MainWindow.vala:550 -#: src/Gtk/MainWindow.vala:690 +#: src/Gtk/MainWindow.vala:686 msgid "No Internet" msgstr "Nema pristupa internetu" -#: src/Console/AppConsole.vala:287 src/Console/AppConsole.vala:324 +#: src/Console/AppConsole.vala:285 src/Console/AppConsole.vala:322 msgid "No kernels specified" msgstr "" -#: src/Common/LinuxKernel.vala:784 src/Console/AppConsole.vala:374 -#: src/Console/AppConsole.vala:432 src/Gtk/MainWindow.vala:800 +#: src/Common/LinuxKernel.vala:784 src/Console/AppConsole.vala:372 +#: src/Console/AppConsole.vala:430 src/Gtk/MainWindow.vala:796 msgid "No updates found" msgstr "Nema pronađenih nadopuna" @@ -407,7 +407,7 @@ msgstr "Obavijesti kada je pojedino izdanje dostupno" msgid "OK" msgstr "U redu" -#: src/Console/AppConsole.vala:100 src/Gtk/AppGtk.vala:181 +#: src/Console/AppConsole.vala:98 src/Gtk/AppGtk.vala:181 msgid "Options" msgstr "Mogućnosti" @@ -453,25 +453,25 @@ msgstr "Osvježavanje..." msgid "Remove" msgstr "Ukloni" -#: src/Console/AppConsole.vala:97 src/Console/AppConsole.vala:102 +#: src/Console/AppConsole.vala:95 src/Console/AppConsole.vala:100 msgid "Remove files from application cache" msgstr "Ukloni datoteke iz predmemorije aplikacije" -#: src/Console/AppConsole.vala:95 src/Gtk/MainWindow.vala:426 +#: src/Console/AppConsole.vala:93 src/Gtk/MainWindow.vala:426 msgid "Remove installed kernels older than running kernel" msgstr "" -#: src/Console/AppConsole.vala:94 +#: src/Console/AppConsole.vala:92 #, fuzzy msgid "Remove specified kernel" msgstr "Ukloni određeni mainline kernel" -#: src/Console/AppConsole.vala:201 src/Console/AppConsole.vala:315 -#: src/Console/AppConsole.vala:344 +#: src/Console/AppConsole.vala:199 src/Console/AppConsole.vala:313 +#: src/Console/AppConsole.vala:342 msgid "Run '" msgstr "" -#: src/Console/AppConsole.vala:119 +#: src/Console/AppConsole.vala:117 msgid "Run the application as admin with pkexec or sudo." msgstr "Pokreni aplikaciju kao administrator sa pkexec ili sudo." @@ -519,7 +519,7 @@ msgstr "Prikaži mjehurić obavijesti radne površine" msgid "Show notification dialog" msgstr "Prikaži dijalog obavijesti" -#: src/Console/AppConsole.vala:98 +#: src/Console/AppConsole.vala:96 #, fuzzy msgid "Show unstable and RC releases" msgstr "Sakrij nestabilne kernele i predizdanja" @@ -537,11 +537,11 @@ msgstr "Stanje" msgid "Stopped" msgstr "Zaustavljeno" -#: src/Console/AppConsole.vala:83 src/Gtk/AppGtk.vala:179 +#: src/Console/AppConsole.vala:81 src/Gtk/AppGtk.vala:179 msgid "Syntax" msgstr "Sintaksa" -#: src/Console/AppConsole.vala:207 src/Gtk/AppGtk.vala:111 +#: src/Console/AppConsole.vala:205 src/Gtk/AppGtk.vala:111 msgid "Temp" msgstr "" @@ -555,7 +555,7 @@ msgstr "" msgid "Third Party Tools" msgstr "Alati treće strane" -#: src/Common/LinuxKernel.vala:1240 src/Gtk/MainWindow.vala:685 +#: src/Common/LinuxKernel.vala:1240 src/Gtk/MainWindow.vala:681 msgid "This kernel is already installed." msgstr "Ovaj kernel je već instaliran." @@ -580,7 +580,7 @@ msgstr "Deinstalacija završena" msgid "Un-install completed with errors" msgstr "Deinstalacija završena s greškama" -#: src/Console/AppConsole.vala:199 src/Gtk/AppGtk.vala:166 +#: src/Console/AppConsole.vala:197 src/Gtk/AppGtk.vala:166 msgid "Unknown option" msgstr "Nepoznata mogućnost" diff --git a/po/_messages.pot b/po/messages.pot similarity index 89% rename from po/_messages.pot rename to po/messages.pot index 6001e0b4..5c1a4635 100644 --- a/po/_messages.pot +++ b/po/messages.pot @@ -6,9 +6,9 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: mainline 1.0.1\n" +"Project-Id-Version: mainline 1.0.1.\n" "Report-Msgid-Bugs-To: bw.aljex@gmail.com\n" -"POT-Creation-Date: 2019-03-20 06:42-0400\n" +"POT-Creation-Date: 2019-03-25 13:56-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -21,7 +21,7 @@ msgstr "" msgid "About" msgstr "" -#: src/Console/AppConsole.vala:116 +#: src/Console/AppConsole.vala:114 msgid "Admin access is required for running this application." msgstr "" @@ -38,7 +38,7 @@ msgstr "" msgid "Artists" msgstr "" -#: src/Console/AppConsole.vala:103 +#: src/Console/AppConsole.vala:101 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "" @@ -55,11 +55,11 @@ msgstr "" msgid "Back" msgstr "" -#: src/Console/AppConsole.vala:206 src/Gtk/AppGtk.vala:110 +#: src/Console/AppConsole.vala:204 src/Gtk/AppGtk.vala:110 msgid "Cache" msgstr "" -#: src/Gtk/ProgressWindow.vala:145 src/Gtk/TerminalWindow.vala:151 +#: src/Gtk/ProgressWindow.vala:145 src/Gtk/TerminalWindow.vala:149 #: src/Gtk/UpdateNotificationWindow.vala:167 #: src/Utility/Gtk/CustomMessageDialog.vala:172 #: src/Utility/Gtk/GtkHelper.vala:112 @@ -74,23 +74,23 @@ msgstr "" msgid "Check every" msgstr "" -#: src/Console/AppConsole.vala:87 +#: src/Console/AppConsole.vala:85 msgid "Check for kernel updates" msgstr "" -#: src/Console/AppConsole.vala:88 +#: src/Console/AppConsole.vala:86 msgid "Check for kernel updates and notify current user" msgstr "" -#: src/Gtk/TerminalWindow.vala:161 src/Utility/Gtk/AboutWindow.vala:295 +#: src/Gtk/TerminalWindow.vala:159 src/Utility/Gtk/AboutWindow.vala:295 msgid "Close" msgstr "" -#: src/Console/AppConsole.vala:343 +#: src/Console/AppConsole.vala:341 msgid "Command not specified" msgstr "" -#: src/Console/AppConsole.vala:85 +#: src/Console/AppConsole.vala:83 msgid "Commands" msgstr "" @@ -112,7 +112,7 @@ msgstr "" msgid "Could not find any kernels to remove" msgstr "" -#: src/Console/AppConsole.vala:311 src/Gtk/MainWindow.vala:100 +#: src/Console/AppConsole.vala:309 src/Gtk/MainWindow.vala:100 msgid "Could not find requested version" msgstr "" @@ -155,7 +155,7 @@ msgstr "" msgid "Documenters" msgstr "" -#: src/Console/AppConsole.vala:96 +#: src/Console/AppConsole.vala:94 msgid "Download packages for specified kernel" msgstr "" @@ -276,15 +276,15 @@ msgstr "" msgid "Install Linux v%s ? (y/n): " msgstr "" -#: src/Console/AppConsole.vala:91 +#: src/Console/AppConsole.vala:89 msgid "Install latest mainline kernel" msgstr "" -#: src/Console/AppConsole.vala:92 +#: src/Console/AppConsole.vala:90 msgid "Install latest point update for current series" msgstr "" -#: src/Console/AppConsole.vala:93 +#: src/Console/AppConsole.vala:91 msgid "Install specified mainline kernel" msgstr "" @@ -305,7 +305,7 @@ msgid "Installed" msgstr "" #: src/Gtk/MainWindow.vala:350 src/Gtk/MainWindow.vala:550 -#: src/Gtk/MainWindow.vala:690 src/Utility/TeeJee.System.vala:281 +#: src/Gtk/MainWindow.vala:686 src/Utility/TeeJee.System.vala:281 msgid "Internet connection is not active" msgstr "" @@ -321,17 +321,17 @@ msgstr "" msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "" -#: src/Common/LinuxKernel.vala:776 src/Console/AppConsole.vala:369 +#: src/Common/LinuxKernel.vala:776 src/Console/AppConsole.vala:367 #, c-format msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:765 src/Console/AppConsole.vala:362 +#: src/Common/LinuxKernel.vala:765 src/Console/AppConsole.vala:360 #, c-format msgid "Latest update" msgstr "" -#: src/Console/AppConsole.vala:89 +#: src/Console/AppConsole.vala:87 msgid "List all available mainline kernels" msgstr "" @@ -339,7 +339,7 @@ msgstr "" msgid "List available kernels" msgstr "" -#: src/Console/AppConsole.vala:90 +#: src/Console/AppConsole.vala:88 msgid "List installed kernels" msgstr "" @@ -351,7 +351,7 @@ msgstr "" msgid "Multiple Kernels Selected" msgstr "" -#: src/Console/AppConsole.vala:293 +#: src/Console/AppConsole.vala:291 msgid "Multiple kernels selected for installation. Select only one." msgstr "" @@ -360,16 +360,16 @@ msgid "No" msgstr "" #: src/Gtk/MainWindow.vala:350 src/Gtk/MainWindow.vala:550 -#: src/Gtk/MainWindow.vala:690 +#: src/Gtk/MainWindow.vala:686 msgid "No Internet" msgstr "" -#: src/Console/AppConsole.vala:287 src/Console/AppConsole.vala:324 +#: src/Console/AppConsole.vala:285 src/Console/AppConsole.vala:322 msgid "No kernels specified" msgstr "" -#: src/Common/LinuxKernel.vala:784 src/Console/AppConsole.vala:374 -#: src/Console/AppConsole.vala:432 src/Gtk/MainWindow.vala:800 +#: src/Common/LinuxKernel.vala:784 src/Console/AppConsole.vala:372 +#: src/Console/AppConsole.vala:430 src/Gtk/MainWindow.vala:796 msgid "No updates found" msgstr "" @@ -397,7 +397,7 @@ msgstr "" msgid "OK" msgstr "" -#: src/Console/AppConsole.vala:100 src/Gtk/AppGtk.vala:181 +#: src/Console/AppConsole.vala:98 src/Gtk/AppGtk.vala:181 msgid "Options" msgstr "" @@ -443,24 +443,24 @@ msgstr "" msgid "Remove" msgstr "" -#: src/Console/AppConsole.vala:97 src/Console/AppConsole.vala:102 +#: src/Console/AppConsole.vala:95 src/Console/AppConsole.vala:100 msgid "Remove files from application cache" msgstr "" -#: src/Console/AppConsole.vala:95 src/Gtk/MainWindow.vala:426 +#: src/Console/AppConsole.vala:93 src/Gtk/MainWindow.vala:426 msgid "Remove installed kernels older than running kernel" msgstr "" -#: src/Console/AppConsole.vala:94 +#: src/Console/AppConsole.vala:92 msgid "Remove specified kernel" msgstr "" -#: src/Console/AppConsole.vala:201 src/Console/AppConsole.vala:315 -#: src/Console/AppConsole.vala:344 +#: src/Console/AppConsole.vala:199 src/Console/AppConsole.vala:313 +#: src/Console/AppConsole.vala:342 msgid "Run '" msgstr "" -#: src/Console/AppConsole.vala:119 +#: src/Console/AppConsole.vala:117 msgid "Run the application as admin with pkexec or sudo." msgstr "" @@ -506,7 +506,7 @@ msgstr "" msgid "Show notification dialog" msgstr "" -#: src/Console/AppConsole.vala:98 +#: src/Console/AppConsole.vala:96 msgid "Show unstable and RC releases" msgstr "" @@ -522,11 +522,11 @@ msgstr "" msgid "Stopped" msgstr "" -#: src/Console/AppConsole.vala:83 src/Gtk/AppGtk.vala:179 +#: src/Console/AppConsole.vala:81 src/Gtk/AppGtk.vala:179 msgid "Syntax" msgstr "" -#: src/Console/AppConsole.vala:207 src/Gtk/AppGtk.vala:111 +#: src/Console/AppConsole.vala:205 src/Gtk/AppGtk.vala:111 msgid "Temp" msgstr "" @@ -540,7 +540,7 @@ msgstr "" msgid "Third Party Tools" msgstr "" -#: src/Common/LinuxKernel.vala:1240 src/Gtk/MainWindow.vala:685 +#: src/Common/LinuxKernel.vala:1240 src/Gtk/MainWindow.vala:681 msgid "This kernel is already installed." msgstr "" @@ -563,7 +563,7 @@ msgstr "" msgid "Un-install completed with errors" msgstr "" -#: src/Console/AppConsole.vala:199 src/Gtk/AppGtk.vala:166 +#: src/Console/AppConsole.vala:197 src/Gtk/AppGtk.vala:166 msgid "Unknown option" msgstr "" diff --git a/po/nl.po b/po/nl.po index d89a8bb3..f3f2b7ea 100644 --- a/po/nl.po +++ b/po/nl.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu 2.2\n" "Report-Msgid-Bugs-To: bw.aljex@gmail.com\n" -"POT-Creation-Date: 2019-03-20 06:33-0400\n" +"POT-Creation-Date: 2019-03-25 06:02-0400\n" "PO-Revision-Date: 2017-04-30 11:50+0200\n" "Last-Translator: Heimen Stoffels \n" "Language-Team: \n" @@ -22,7 +22,7 @@ msgstr "" msgid "About" msgstr "Over" -#: src/Console/AppConsole.vala:116 +#: src/Console/AppConsole.vala:114 msgid "Admin access is required for running this application." msgstr "" "U heeft administrator-rechten nodig om deze applicatie te kunnen draaien." @@ -41,7 +41,7 @@ msgstr "Systeemarchitectuur" msgid "Artists" msgstr "Artiesten" -#: src/Console/AppConsole.vala:103 +#: src/Console/AppConsole.vala:101 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "" @@ -58,11 +58,11 @@ msgstr "Beschikbare kernels" msgid "Back" msgstr "Terug" -#: src/Console/AppConsole.vala:206 src/Gtk/AppGtk.vala:110 +#: src/Console/AppConsole.vala:204 src/Gtk/AppGtk.vala:110 msgid "Cache" msgstr "" -#: src/Gtk/ProgressWindow.vala:145 src/Gtk/TerminalWindow.vala:151 +#: src/Gtk/ProgressWindow.vala:145 src/Gtk/TerminalWindow.vala:149 #: src/Gtk/UpdateNotificationWindow.vala:167 #: src/Utility/Gtk/CustomMessageDialog.vala:172 #: src/Utility/Gtk/GtkHelper.vala:112 @@ -77,24 +77,24 @@ msgstr "Wijzigingen" msgid "Check every" msgstr "Controleer elke" -#: src/Console/AppConsole.vala:87 +#: src/Console/AppConsole.vala:85 msgid "Check for kernel updates" msgstr "Controleren op kernel-updates" -#: src/Console/AppConsole.vala:88 +#: src/Console/AppConsole.vala:86 #, fuzzy msgid "Check for kernel updates and notify current user" msgstr "Controleren op kernel-updates" -#: src/Gtk/TerminalWindow.vala:161 src/Utility/Gtk/AboutWindow.vala:295 +#: src/Gtk/TerminalWindow.vala:159 src/Utility/Gtk/AboutWindow.vala:295 msgid "Close" msgstr "Sluiten" -#: src/Console/AppConsole.vala:343 +#: src/Console/AppConsole.vala:341 msgid "Command not specified" msgstr "" -#: src/Console/AppConsole.vala:85 +#: src/Console/AppConsole.vala:83 msgid "Commands" msgstr "" @@ -117,7 +117,7 @@ msgstr "Bijdragen" msgid "Could not find any kernels to remove" msgstr "Selecteer de te verwijderen kernels" -#: src/Console/AppConsole.vala:311 src/Gtk/MainWindow.vala:100 +#: src/Console/AppConsole.vala:309 src/Gtk/MainWindow.vala:100 msgid "Could not find requested version" msgstr "De vereiste versie kan niet worden gevonden" @@ -161,7 +161,7 @@ msgstr "Distributie" msgid "Documenters" msgstr "Documenteerders" -#: src/Console/AppConsole.vala:96 +#: src/Console/AppConsole.vala:94 msgid "Download packages for specified kernel" msgstr "Pakketten downloaden voor opgegeven kernel" @@ -282,16 +282,16 @@ msgstr "Installeren" msgid "Install Linux v%s ? (y/n): " msgstr "" -#: src/Console/AppConsole.vala:91 +#: src/Console/AppConsole.vala:89 #, fuzzy msgid "Install latest mainline kernel" msgstr "Opgegeven mainline-kernel installeren" -#: src/Console/AppConsole.vala:92 +#: src/Console/AppConsole.vala:90 msgid "Install latest point update for current series" msgstr "" -#: src/Console/AppConsole.vala:93 +#: src/Console/AppConsole.vala:91 msgid "Install specified mainline kernel" msgstr "Opgegeven mainline-kernel installeren" @@ -314,7 +314,7 @@ msgid "Installed" msgstr "Geïnstalleerd" #: src/Gtk/MainWindow.vala:350 src/Gtk/MainWindow.vala:550 -#: src/Gtk/MainWindow.vala:690 src/Utility/TeeJee.System.vala:281 +#: src/Gtk/MainWindow.vala:686 src/Utility/TeeJee.System.vala:281 msgid "Internet connection is not active" msgstr "U bent niet verbonden met het internet" @@ -331,17 +331,17 @@ msgstr "Kernel" msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Kernel-upgradehulpmiddel voor op Ubuntu-gebaseerde distributies" -#: src/Common/LinuxKernel.vala:776 src/Console/AppConsole.vala:369 +#: src/Common/LinuxKernel.vala:776 src/Console/AppConsole.vala:367 #, c-format msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:765 src/Console/AppConsole.vala:362 +#: src/Common/LinuxKernel.vala:765 src/Console/AppConsole.vala:360 #, c-format msgid "Latest update" msgstr "" -#: src/Console/AppConsole.vala:89 +#: src/Console/AppConsole.vala:87 msgid "List all available mainline kernels" msgstr "Alle beschikbare mainline-kernels weergeven" @@ -350,7 +350,7 @@ msgstr "Alle beschikbare mainline-kernels weergeven" msgid "List available kernels" msgstr "Alle beschikbare mainline-kernels weergeven" -#: src/Console/AppConsole.vala:90 +#: src/Console/AppConsole.vala:88 #, fuzzy msgid "List installed kernels" msgstr "Alle beschikbare mainline-kernels weergeven" @@ -363,7 +363,7 @@ msgstr "Ontbrekend pictogram" msgid "Multiple Kernels Selected" msgstr "Meerdere kernels geselecteerd" -#: src/Console/AppConsole.vala:293 +#: src/Console/AppConsole.vala:291 msgid "Multiple kernels selected for installation. Select only one." msgstr "" "Er zijn meerdere te installeren kernels geselecteerd. Selecteer er slechts " @@ -374,16 +374,16 @@ msgid "No" msgstr "" #: src/Gtk/MainWindow.vala:350 src/Gtk/MainWindow.vala:550 -#: src/Gtk/MainWindow.vala:690 +#: src/Gtk/MainWindow.vala:686 msgid "No Internet" msgstr "Geen internetverbinding" -#: src/Console/AppConsole.vala:287 src/Console/AppConsole.vala:324 +#: src/Console/AppConsole.vala:285 src/Console/AppConsole.vala:322 msgid "No kernels specified" msgstr "" -#: src/Common/LinuxKernel.vala:784 src/Console/AppConsole.vala:374 -#: src/Console/AppConsole.vala:432 src/Gtk/MainWindow.vala:800 +#: src/Common/LinuxKernel.vala:784 src/Console/AppConsole.vala:372 +#: src/Console/AppConsole.vala:430 src/Gtk/MainWindow.vala:796 msgid "No updates found" msgstr "Geen updates gevonden" @@ -411,7 +411,7 @@ msgstr "Melding weergeven als er een puntupdate beschikbaar is" msgid "OK" msgstr "Oké" -#: src/Console/AppConsole.vala:100 src/Gtk/AppGtk.vala:181 +#: src/Console/AppConsole.vala:98 src/Gtk/AppGtk.vala:181 msgid "Options" msgstr "Opties" @@ -457,25 +457,25 @@ msgstr "Bezig met verversen..." msgid "Remove" msgstr "Verwijderen" -#: src/Console/AppConsole.vala:97 src/Console/AppConsole.vala:102 +#: src/Console/AppConsole.vala:95 src/Console/AppConsole.vala:100 msgid "Remove files from application cache" msgstr "Bestanden verwijderen uit applicatie-cache" -#: src/Console/AppConsole.vala:95 src/Gtk/MainWindow.vala:426 +#: src/Console/AppConsole.vala:93 src/Gtk/MainWindow.vala:426 msgid "Remove installed kernels older than running kernel" msgstr "" -#: src/Console/AppConsole.vala:94 +#: src/Console/AppConsole.vala:92 #, fuzzy msgid "Remove specified kernel" msgstr "Opgegeven mainline-kernel verwijderen" -#: src/Console/AppConsole.vala:201 src/Console/AppConsole.vala:315 -#: src/Console/AppConsole.vala:344 +#: src/Console/AppConsole.vala:199 src/Console/AppConsole.vala:313 +#: src/Console/AppConsole.vala:342 msgid "Run '" msgstr "" -#: src/Console/AppConsole.vala:119 +#: src/Console/AppConsole.vala:117 #, fuzzy msgid "Run the application as admin with pkexec or sudo." msgstr "Draai de applicatie als root of m.b.v. gksu/sudo." @@ -525,7 +525,7 @@ msgstr "Bureaubladmelding weergeven" msgid "Show notification dialog" msgstr "Meldingsvenster weergeven" -#: src/Console/AppConsole.vala:98 +#: src/Console/AppConsole.vala:96 #, fuzzy msgid "Show unstable and RC releases" msgstr "Instabiele en RC-uitgaven verbergen" @@ -543,11 +543,11 @@ msgstr "Status" msgid "Stopped" msgstr "Gestopt" -#: src/Console/AppConsole.vala:83 src/Gtk/AppGtk.vala:179 +#: src/Console/AppConsole.vala:81 src/Gtk/AppGtk.vala:179 msgid "Syntax" msgstr "Syntax" -#: src/Console/AppConsole.vala:207 src/Gtk/AppGtk.vala:111 +#: src/Console/AppConsole.vala:205 src/Gtk/AppGtk.vala:111 msgid "Temp" msgstr "" @@ -561,7 +561,7 @@ msgstr "" msgid "Third Party Tools" msgstr "Externe hulpmiddelen" -#: src/Common/LinuxKernel.vala:1240 src/Gtk/MainWindow.vala:685 +#: src/Common/LinuxKernel.vala:1240 src/Gtk/MainWindow.vala:681 msgid "This kernel is already installed." msgstr "Deze kernel is al geïnstalleerd." @@ -586,7 +586,7 @@ msgstr "Deïnstalleren voltooid" msgid "Un-install completed with errors" msgstr "Deïnstalleren voltooid, maar met fouten" -#: src/Console/AppConsole.vala:199 src/Gtk/AppGtk.vala:166 +#: src/Console/AppConsole.vala:197 src/Gtk/AppGtk.vala:166 msgid "Unknown option" msgstr "Onbekende optie" diff --git a/po/pl.po b/po/pl.po index b5fad6f4..d44f83d3 100644 --- a/po/pl.po +++ b/po/pl.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu\n" "Report-Msgid-Bugs-To: bw.aljex@gmail.com\n" -"POT-Creation-Date: 2019-03-20 06:33-0400\n" +"POT-Creation-Date: 2019-03-25 06:02-0400\n" "PO-Revision-Date: 2017-08-12 15:26+0200\n" "Last-Translator: \n" "Language-Team: Polish\n" @@ -20,7 +20,7 @@ msgstr "" msgid "About" msgstr "O programie" -#: src/Console/AppConsole.vala:116 +#: src/Console/AppConsole.vala:114 msgid "Admin access is required for running this application." msgstr "Aby uruchomić tę aplikację niezbędne są prawa administratora." @@ -38,7 +38,7 @@ msgstr "Architektura systemu" msgid "Artists" msgstr "Artyści" -#: src/Console/AppConsole.vala:103 +#: src/Console/AppConsole.vala:101 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "" @@ -55,11 +55,11 @@ msgstr "Dostępne jądra" msgid "Back" msgstr "Wstecz" -#: src/Console/AppConsole.vala:206 src/Gtk/AppGtk.vala:110 +#: src/Console/AppConsole.vala:204 src/Gtk/AppGtk.vala:110 msgid "Cache" msgstr "" -#: src/Gtk/ProgressWindow.vala:145 src/Gtk/TerminalWindow.vala:151 +#: src/Gtk/ProgressWindow.vala:145 src/Gtk/TerminalWindow.vala:149 #: src/Gtk/UpdateNotificationWindow.vala:167 #: src/Utility/Gtk/CustomMessageDialog.vala:172 #: src/Utility/Gtk/GtkHelper.vala:112 @@ -74,24 +74,24 @@ msgstr "Zmiany" msgid "Check every" msgstr "Sprawdzaj co" -#: src/Console/AppConsole.vala:87 +#: src/Console/AppConsole.vala:85 msgid "Check for kernel updates" msgstr "Sprawdź nowe wersje jądra" -#: src/Console/AppConsole.vala:88 +#: src/Console/AppConsole.vala:86 #, fuzzy msgid "Check for kernel updates and notify current user" msgstr "Sprawdź nowe wersje jądra" -#: src/Gtk/TerminalWindow.vala:161 src/Utility/Gtk/AboutWindow.vala:295 +#: src/Gtk/TerminalWindow.vala:159 src/Utility/Gtk/AboutWindow.vala:295 msgid "Close" msgstr "Zamknij" -#: src/Console/AppConsole.vala:343 +#: src/Console/AppConsole.vala:341 msgid "Command not specified" msgstr "" -#: src/Console/AppConsole.vala:85 +#: src/Console/AppConsole.vala:83 msgid "Commands" msgstr "" @@ -114,7 +114,7 @@ msgstr "Wkład" msgid "Could not find any kernels to remove" msgstr "Wybierz jądro do usunięcia" -#: src/Console/AppConsole.vala:311 src/Gtk/MainWindow.vala:100 +#: src/Console/AppConsole.vala:309 src/Gtk/MainWindow.vala:100 msgid "Could not find requested version" msgstr "Nie można odnaleźć żądanej wersji" @@ -158,7 +158,7 @@ msgstr "Dystrybucja" msgid "Documenters" msgstr "Dokumentujący" -#: src/Console/AppConsole.vala:96 +#: src/Console/AppConsole.vala:94 msgid "Download packages for specified kernel" msgstr "Pobierz pakiety dla wybranego jądra" @@ -279,16 +279,16 @@ msgstr "Zainstaluj" msgid "Install Linux v%s ? (y/n): " msgstr "" -#: src/Console/AppConsole.vala:91 +#: src/Console/AppConsole.vala:89 #, fuzzy msgid "Install latest mainline kernel" msgstr "Zainstaluj wybrane jądro" -#: src/Console/AppConsole.vala:92 +#: src/Console/AppConsole.vala:90 msgid "Install latest point update for current series" msgstr "" -#: src/Console/AppConsole.vala:93 +#: src/Console/AppConsole.vala:91 msgid "Install specified mainline kernel" msgstr "Zainstaluj wybrane jądro" @@ -311,7 +311,7 @@ msgid "Installed" msgstr "Zainstalowany" #: src/Gtk/MainWindow.vala:350 src/Gtk/MainWindow.vala:550 -#: src/Gtk/MainWindow.vala:690 src/Utility/TeeJee.System.vala:281 +#: src/Gtk/MainWindow.vala:686 src/Utility/TeeJee.System.vala:281 msgid "Internet connection is not active" msgstr "Brak połączenia z internetem" @@ -328,17 +328,17 @@ msgstr "Jądro" msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Narzędzie uaktualniania jądra dla dystrybucji z rodziny Ubuntu" -#: src/Common/LinuxKernel.vala:776 src/Console/AppConsole.vala:369 +#: src/Common/LinuxKernel.vala:776 src/Console/AppConsole.vala:367 #, c-format msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:765 src/Console/AppConsole.vala:362 +#: src/Common/LinuxKernel.vala:765 src/Console/AppConsole.vala:360 #, c-format msgid "Latest update" msgstr "" -#: src/Console/AppConsole.vala:89 +#: src/Console/AppConsole.vala:87 msgid "List all available mainline kernels" msgstr "Pokaż wszystkie dostępne jądra" @@ -347,7 +347,7 @@ msgstr "Pokaż wszystkie dostępne jądra" msgid "List available kernels" msgstr "Pokaż wszystkie dostępne jądra" -#: src/Console/AppConsole.vala:90 +#: src/Console/AppConsole.vala:88 #, fuzzy msgid "List installed kernels" msgstr "Pokaż wszystkie dostępne jądra" @@ -360,7 +360,7 @@ msgstr "Brakująca ikona" msgid "Multiple Kernels Selected" msgstr "Wybrano kilka jąder" -#: src/Console/AppConsole.vala:293 +#: src/Console/AppConsole.vala:291 msgid "Multiple kernels selected for installation. Select only one." msgstr "Wybrano kilka jąder do instalacji. Wybierz tylko jedno." @@ -369,16 +369,16 @@ msgid "No" msgstr "" #: src/Gtk/MainWindow.vala:350 src/Gtk/MainWindow.vala:550 -#: src/Gtk/MainWindow.vala:690 +#: src/Gtk/MainWindow.vala:686 msgid "No Internet" msgstr "Brak internetu" -#: src/Console/AppConsole.vala:287 src/Console/AppConsole.vala:324 +#: src/Console/AppConsole.vala:285 src/Console/AppConsole.vala:322 msgid "No kernels specified" msgstr "" -#: src/Common/LinuxKernel.vala:784 src/Console/AppConsole.vala:374 -#: src/Console/AppConsole.vala:432 src/Gtk/MainWindow.vala:800 +#: src/Common/LinuxKernel.vala:784 src/Console/AppConsole.vala:372 +#: src/Console/AppConsole.vala:430 src/Gtk/MainWindow.vala:796 msgid "No updates found" msgstr "Nie znaleziono aktualizacji" @@ -406,7 +406,7 @@ msgstr "Powiadom, jeśli pojawi się wersja punktowa" msgid "OK" msgstr "OK" -#: src/Console/AppConsole.vala:100 src/Gtk/AppGtk.vala:181 +#: src/Console/AppConsole.vala:98 src/Gtk/AppGtk.vala:181 msgid "Options" msgstr "Opcje" @@ -452,25 +452,25 @@ msgstr "Odświeżam..." msgid "Remove" msgstr "Usuń" -#: src/Console/AppConsole.vala:97 src/Console/AppConsole.vala:102 +#: src/Console/AppConsole.vala:95 src/Console/AppConsole.vala:100 msgid "Remove files from application cache" msgstr "Usuń pliki z pamięci podręcznej aplikacji" -#: src/Console/AppConsole.vala:95 src/Gtk/MainWindow.vala:426 +#: src/Console/AppConsole.vala:93 src/Gtk/MainWindow.vala:426 msgid "Remove installed kernels older than running kernel" msgstr "" -#: src/Console/AppConsole.vala:94 +#: src/Console/AppConsole.vala:92 #, fuzzy msgid "Remove specified kernel" msgstr "Usuń wybrane jądro" -#: src/Console/AppConsole.vala:201 src/Console/AppConsole.vala:315 -#: src/Console/AppConsole.vala:344 +#: src/Console/AppConsole.vala:199 src/Console/AppConsole.vala:313 +#: src/Console/AppConsole.vala:342 msgid "Run '" msgstr "" -#: src/Console/AppConsole.vala:119 +#: src/Console/AppConsole.vala:117 #, fuzzy msgid "Run the application as admin with pkexec or sudo." msgstr "Uruchom aplikację jako root albo użyj gksu/sudo." @@ -519,7 +519,7 @@ msgstr "Pokaż powiadomienia na pulpicie" msgid "Show notification dialog" msgstr "Pokaż okno powiadomień" -#: src/Console/AppConsole.vala:98 +#: src/Console/AppConsole.vala:96 #, fuzzy msgid "Show unstable and RC releases" msgstr "Ukryj wydania niestabilne i RC" @@ -537,11 +537,11 @@ msgstr "Status" msgid "Stopped" msgstr "Zatrzymany" -#: src/Console/AppConsole.vala:83 src/Gtk/AppGtk.vala:179 +#: src/Console/AppConsole.vala:81 src/Gtk/AppGtk.vala:179 msgid "Syntax" msgstr "Składnia" -#: src/Console/AppConsole.vala:207 src/Gtk/AppGtk.vala:111 +#: src/Console/AppConsole.vala:205 src/Gtk/AppGtk.vala:111 msgid "Temp" msgstr "" @@ -555,7 +555,7 @@ msgstr "" msgid "Third Party Tools" msgstr "Narzędzia osób trzecich" -#: src/Common/LinuxKernel.vala:1240 src/Gtk/MainWindow.vala:685 +#: src/Common/LinuxKernel.vala:1240 src/Gtk/MainWindow.vala:681 msgid "This kernel is already installed." msgstr "To jądro jest już zainstalowane." @@ -580,7 +580,7 @@ msgstr "De-instalacja zakończona" msgid "Un-install completed with errors" msgstr "De-instalacja zakończona z błędami" -#: src/Console/AppConsole.vala:199 src/Gtk/AppGtk.vala:166 +#: src/Console/AppConsole.vala:197 src/Gtk/AppGtk.vala:166 msgid "Unknown option" msgstr "Nieznana opcja" diff --git a/po/ru.po b/po/ru.po index fe8cd4fd..fabc25ec 100644 --- a/po/ru.po +++ b/po/ru.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu\n" "Report-Msgid-Bugs-To: bw.aljex@gmail.com\n" -"POT-Creation-Date: 2019-03-20 06:33-0400\n" +"POT-Creation-Date: 2019-03-25 06:02-0400\n" "PO-Revision-Date: 2016-12-13 16:46+0300\n" "Last-Translator: Faust3000 \n" "Language-Team: Russian \n" @@ -22,7 +22,7 @@ msgstr "" msgid "About" msgstr "О программе" -#: src/Console/AppConsole.vala:116 +#: src/Console/AppConsole.vala:114 msgid "Admin access is required for running this application." msgstr "Для запуска программы требуются права администратора." @@ -40,7 +40,7 @@ msgstr "Системная архитектура" msgid "Artists" msgstr "Художники" -#: src/Console/AppConsole.vala:103 +#: src/Console/AppConsole.vala:101 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "" @@ -57,11 +57,11 @@ msgstr "Доступные ядра" msgid "Back" msgstr "Назад" -#: src/Console/AppConsole.vala:206 src/Gtk/AppGtk.vala:110 +#: src/Console/AppConsole.vala:204 src/Gtk/AppGtk.vala:110 msgid "Cache" msgstr "" -#: src/Gtk/ProgressWindow.vala:145 src/Gtk/TerminalWindow.vala:151 +#: src/Gtk/ProgressWindow.vala:145 src/Gtk/TerminalWindow.vala:149 #: src/Gtk/UpdateNotificationWindow.vala:167 #: src/Utility/Gtk/CustomMessageDialog.vala:172 #: src/Utility/Gtk/GtkHelper.vala:112 @@ -76,24 +76,24 @@ msgstr "Изменения" msgid "Check every" msgstr "Проверять каждые" -#: src/Console/AppConsole.vala:87 +#: src/Console/AppConsole.vala:85 msgid "Check for kernel updates" msgstr "Проверить обновления ядра" -#: src/Console/AppConsole.vala:88 +#: src/Console/AppConsole.vala:86 #, fuzzy msgid "Check for kernel updates and notify current user" msgstr "Проверить обновления ядра" -#: src/Gtk/TerminalWindow.vala:161 src/Utility/Gtk/AboutWindow.vala:295 +#: src/Gtk/TerminalWindow.vala:159 src/Utility/Gtk/AboutWindow.vala:295 msgid "Close" msgstr "Закрыть" -#: src/Console/AppConsole.vala:343 +#: src/Console/AppConsole.vala:341 msgid "Command not specified" msgstr "" -#: src/Console/AppConsole.vala:85 +#: src/Console/AppConsole.vala:83 msgid "Commands" msgstr "" @@ -116,7 +116,7 @@ msgstr "Взносы" msgid "Could not find any kernels to remove" msgstr "Не удалось найти запрошенную версию" -#: src/Console/AppConsole.vala:311 src/Gtk/MainWindow.vala:100 +#: src/Console/AppConsole.vala:309 src/Gtk/MainWindow.vala:100 msgid "Could not find requested version" msgstr "Не удалось найти запрошенную версию" @@ -161,7 +161,7 @@ msgstr "Дистрибутив" msgid "Documenters" msgstr "Составители документации" -#: src/Console/AppConsole.vala:96 +#: src/Console/AppConsole.vala:94 msgid "Download packages for specified kernel" msgstr "Скачать пакеты для указанного ядра" @@ -286,16 +286,16 @@ msgstr "Установить" msgid "Install Linux v%s ? (y/n): " msgstr "" -#: src/Console/AppConsole.vala:91 +#: src/Console/AppConsole.vala:89 #, fuzzy msgid "Install latest mainline kernel" msgstr "Установить указанную ветку ядра" -#: src/Console/AppConsole.vala:92 +#: src/Console/AppConsole.vala:90 msgid "Install latest point update for current series" msgstr "" -#: src/Console/AppConsole.vala:93 +#: src/Console/AppConsole.vala:91 msgid "Install specified mainline kernel" msgstr "Установить указанную ветку ядра" @@ -318,7 +318,7 @@ msgid "Installed" msgstr "Установлено" #: src/Gtk/MainWindow.vala:350 src/Gtk/MainWindow.vala:550 -#: src/Gtk/MainWindow.vala:690 src/Utility/TeeJee.System.vala:281 +#: src/Gtk/MainWindow.vala:686 src/Utility/TeeJee.System.vala:281 msgid "Internet connection is not active" msgstr "Интернет соединение не активно" @@ -335,17 +335,17 @@ msgstr "Ядро" msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Программа обновления ядра для дистрибутивов на базе Ubuntu" -#: src/Common/LinuxKernel.vala:776 src/Console/AppConsole.vala:369 +#: src/Common/LinuxKernel.vala:776 src/Console/AppConsole.vala:367 #, c-format msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:765 src/Console/AppConsole.vala:362 +#: src/Common/LinuxKernel.vala:765 src/Console/AppConsole.vala:360 #, c-format msgid "Latest update" msgstr "" -#: src/Console/AppConsole.vala:89 +#: src/Console/AppConsole.vala:87 msgid "List all available mainline kernels" msgstr "Список всех доступных основных ядер" @@ -354,7 +354,7 @@ msgstr "Список всех доступных основных ядер" msgid "List available kernels" msgstr "Список всех доступных основных ядер" -#: src/Console/AppConsole.vala:90 +#: src/Console/AppConsole.vala:88 #, fuzzy msgid "List installed kernels" msgstr "Список всех доступных основных ядер" @@ -367,7 +367,7 @@ msgstr "Значок отсутствует" msgid "Multiple Kernels Selected" msgstr "" -#: src/Console/AppConsole.vala:293 +#: src/Console/AppConsole.vala:291 msgid "Multiple kernels selected for installation. Select only one." msgstr "" @@ -376,16 +376,16 @@ msgid "No" msgstr "" #: src/Gtk/MainWindow.vala:350 src/Gtk/MainWindow.vala:550 -#: src/Gtk/MainWindow.vala:690 +#: src/Gtk/MainWindow.vala:686 msgid "No Internet" msgstr "" -#: src/Console/AppConsole.vala:287 src/Console/AppConsole.vala:324 +#: src/Console/AppConsole.vala:285 src/Console/AppConsole.vala:322 msgid "No kernels specified" msgstr "" -#: src/Common/LinuxKernel.vala:784 src/Console/AppConsole.vala:374 -#: src/Console/AppConsole.vala:432 src/Gtk/MainWindow.vala:800 +#: src/Common/LinuxKernel.vala:784 src/Console/AppConsole.vala:372 +#: src/Console/AppConsole.vala:430 src/Gtk/MainWindow.vala:796 msgid "No updates found" msgstr "Обновлений не найдено" @@ -413,7 +413,7 @@ msgstr "Уведомлять, если доступно небольшое об msgid "OK" msgstr "OK" -#: src/Console/AppConsole.vala:100 src/Gtk/AppGtk.vala:181 +#: src/Console/AppConsole.vala:98 src/Gtk/AppGtk.vala:181 msgid "Options" msgstr "Параметры" @@ -459,25 +459,25 @@ msgstr "Обновление..." msgid "Remove" msgstr "Удалить" -#: src/Console/AppConsole.vala:97 src/Console/AppConsole.vala:102 +#: src/Console/AppConsole.vala:95 src/Console/AppConsole.vala:100 msgid "Remove files from application cache" msgstr "Удалить файлы из кэша программы" -#: src/Console/AppConsole.vala:95 src/Gtk/MainWindow.vala:426 +#: src/Console/AppConsole.vala:93 src/Gtk/MainWindow.vala:426 msgid "Remove installed kernels older than running kernel" msgstr "Удалить более старшие установленные ядра, чем используемое" -#: src/Console/AppConsole.vala:94 +#: src/Console/AppConsole.vala:92 #, fuzzy msgid "Remove specified kernel" msgstr "Удалить указанную ветку ядра" -#: src/Console/AppConsole.vala:201 src/Console/AppConsole.vala:315 -#: src/Console/AppConsole.vala:344 +#: src/Console/AppConsole.vala:199 src/Console/AppConsole.vala:313 +#: src/Console/AppConsole.vala:342 msgid "Run '" msgstr "" -#: src/Console/AppConsole.vala:119 +#: src/Console/AppConsole.vala:117 #, fuzzy msgid "Run the application as admin with pkexec or sudo." msgstr "Запустите программу с правами Root или используйте gksu/sudo." @@ -527,7 +527,7 @@ msgstr "Показывать окно оповещений на рабочем msgid "Show notification dialog" msgstr "Показывать окно оповещений" -#: src/Console/AppConsole.vala:98 +#: src/Console/AppConsole.vala:96 #, fuzzy msgid "Show unstable and RC releases" msgstr "Скрыть нестабильные и релиз-кандидат версии" @@ -545,11 +545,11 @@ msgstr "Состояние" msgid "Stopped" msgstr "Остановлено" -#: src/Console/AppConsole.vala:83 src/Gtk/AppGtk.vala:179 +#: src/Console/AppConsole.vala:81 src/Gtk/AppGtk.vala:179 msgid "Syntax" msgstr "Синтаксис" -#: src/Console/AppConsole.vala:207 src/Gtk/AppGtk.vala:111 +#: src/Console/AppConsole.vala:205 src/Gtk/AppGtk.vala:111 msgid "Temp" msgstr "" @@ -563,7 +563,7 @@ msgstr "" msgid "Third Party Tools" msgstr "Сторонние инструменты" -#: src/Common/LinuxKernel.vala:1240 src/Gtk/MainWindow.vala:685 +#: src/Common/LinuxKernel.vala:1240 src/Gtk/MainWindow.vala:681 msgid "This kernel is already installed." msgstr "Это ядро уже установлено." @@ -588,7 +588,7 @@ msgstr "Удаление завершено" msgid "Un-install completed with errors" msgstr "Удаление завершено с ошибками" -#: src/Console/AppConsole.vala:199 src/Gtk/AppGtk.vala:166 +#: src/Console/AppConsole.vala:197 src/Gtk/AppGtk.vala:166 msgid "Unknown option" msgstr "Неизвестный параметр" diff --git a/po/sv.po b/po/sv.po index a87ec577..b34dde5b 100644 --- a/po/sv.po +++ b/po/sv.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu 2.2\n" "Report-Msgid-Bugs-To: bw.aljex@gmail.com\n" -"POT-Creation-Date: 2019-03-20 06:33-0400\n" +"POT-Creation-Date: 2019-03-25 06:02-0400\n" "PO-Revision-Date: 2018-01-13 16:56+0100\n" "Last-Translator: Åke Engelbrektson \n" "Language-Team: Svenska Språkfiler \n" @@ -22,7 +22,7 @@ msgstr "" msgid "About" msgstr "Om" -#: src/Console/AppConsole.vala:116 +#: src/Console/AppConsole.vala:114 msgid "Admin access is required for running this application." msgstr "Root-åtkomst krävs för att köra detta program." @@ -40,7 +40,7 @@ msgstr "Systemarkitektur" msgid "Artists" msgstr "Artister" -#: src/Console/AppConsole.vala:103 +#: src/Console/AppConsole.vala:101 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "" @@ -57,11 +57,11 @@ msgstr "Tillgängliga kärnor" msgid "Back" msgstr "Tillbaka" -#: src/Console/AppConsole.vala:206 src/Gtk/AppGtk.vala:110 +#: src/Console/AppConsole.vala:204 src/Gtk/AppGtk.vala:110 msgid "Cache" msgstr "" -#: src/Gtk/ProgressWindow.vala:145 src/Gtk/TerminalWindow.vala:151 +#: src/Gtk/ProgressWindow.vala:145 src/Gtk/TerminalWindow.vala:149 #: src/Gtk/UpdateNotificationWindow.vala:167 #: src/Utility/Gtk/CustomMessageDialog.vala:172 #: src/Utility/Gtk/GtkHelper.vala:112 @@ -76,24 +76,24 @@ msgstr "Ändringar" msgid "Check every" msgstr "Kontrollera varje" -#: src/Console/AppConsole.vala:87 +#: src/Console/AppConsole.vala:85 msgid "Check for kernel updates" msgstr "Sök efter kärnuppdateringar" -#: src/Console/AppConsole.vala:88 +#: src/Console/AppConsole.vala:86 #, fuzzy msgid "Check for kernel updates and notify current user" msgstr "Sök efter kärnuppdateringar" -#: src/Gtk/TerminalWindow.vala:161 src/Utility/Gtk/AboutWindow.vala:295 +#: src/Gtk/TerminalWindow.vala:159 src/Utility/Gtk/AboutWindow.vala:295 msgid "Close" msgstr "Stäng" -#: src/Console/AppConsole.vala:343 +#: src/Console/AppConsole.vala:341 msgid "Command not specified" msgstr "" -#: src/Console/AppConsole.vala:85 +#: src/Console/AppConsole.vala:83 msgid "Commands" msgstr "" @@ -116,7 +116,7 @@ msgstr "Bidrag" msgid "Could not find any kernels to remove" msgstr "Välj kärnor för borttagning" -#: src/Console/AppConsole.vala:311 src/Gtk/MainWindow.vala:100 +#: src/Console/AppConsole.vala:309 src/Gtk/MainWindow.vala:100 msgid "Could not find requested version" msgstr "Kunde inte hitta efterfrågad version" @@ -160,7 +160,7 @@ msgstr "Distribution" msgid "Documenters" msgstr "Dokumentalister" -#: src/Console/AppConsole.vala:96 +#: src/Console/AppConsole.vala:94 msgid "Download packages for specified kernel" msgstr "Ladda ner paket för specificerad kärna" @@ -282,16 +282,16 @@ msgstr "Installera" msgid "Install Linux v%s ? (y/n): " msgstr "" -#: src/Console/AppConsole.vala:91 +#: src/Console/AppConsole.vala:89 #, fuzzy msgid "Install latest mainline kernel" msgstr "Installera specificerad kärna" -#: src/Console/AppConsole.vala:92 +#: src/Console/AppConsole.vala:90 msgid "Install latest point update for current series" msgstr "" -#: src/Console/AppConsole.vala:93 +#: src/Console/AppConsole.vala:91 msgid "Install specified mainline kernel" msgstr "Installera specificerad kärna" @@ -312,7 +312,7 @@ msgid "Installed" msgstr "Installerad" #: src/Gtk/MainWindow.vala:350 src/Gtk/MainWindow.vala:550 -#: src/Gtk/MainWindow.vala:690 src/Utility/TeeJee.System.vala:281 +#: src/Gtk/MainWindow.vala:686 src/Utility/TeeJee.System.vala:281 msgid "Internet connection is not active" msgstr "Internetuppkopplingen är inte aktiv" @@ -329,17 +329,17 @@ msgstr "Kärna" msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Kärnuppgraderingsverktyg för Ubuntu-baserade distributioner" -#: src/Common/LinuxKernel.vala:776 src/Console/AppConsole.vala:369 +#: src/Common/LinuxKernel.vala:776 src/Console/AppConsole.vala:367 #, c-format msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:765 src/Console/AppConsole.vala:362 +#: src/Common/LinuxKernel.vala:765 src/Console/AppConsole.vala:360 #, c-format msgid "Latest update" msgstr "" -#: src/Console/AppConsole.vala:89 +#: src/Console/AppConsole.vala:87 msgid "List all available mainline kernels" msgstr "Lista alla tillgängliga kärnor" @@ -347,7 +347,7 @@ msgstr "Lista alla tillgängliga kärnor" msgid "List available kernels" msgstr "Lista tillgängliga kärnor" -#: src/Console/AppConsole.vala:90 +#: src/Console/AppConsole.vala:88 #, fuzzy msgid "List installed kernels" msgstr "Lista tillgängliga kärnor" @@ -360,7 +360,7 @@ msgstr "Saknad ikon" msgid "Multiple Kernels Selected" msgstr "Flera kärnor markerade" -#: src/Console/AppConsole.vala:293 +#: src/Console/AppConsole.vala:291 msgid "Multiple kernels selected for installation. Select only one." msgstr "Flera kärnor valda för installation. Välj endast en." @@ -369,16 +369,16 @@ msgid "No" msgstr "Nej" #: src/Gtk/MainWindow.vala:350 src/Gtk/MainWindow.vala:550 -#: src/Gtk/MainWindow.vala:690 +#: src/Gtk/MainWindow.vala:686 msgid "No Internet" msgstr "Inget internet" -#: src/Console/AppConsole.vala:287 src/Console/AppConsole.vala:324 +#: src/Console/AppConsole.vala:285 src/Console/AppConsole.vala:322 msgid "No kernels specified" msgstr "" -#: src/Common/LinuxKernel.vala:784 src/Console/AppConsole.vala:374 -#: src/Console/AppConsole.vala:432 src/Gtk/MainWindow.vala:800 +#: src/Common/LinuxKernel.vala:784 src/Console/AppConsole.vala:372 +#: src/Console/AppConsole.vala:430 src/Gtk/MainWindow.vala:796 msgid "No updates found" msgstr "Inga uppdateringar hittades" @@ -406,7 +406,7 @@ msgstr "Meddela om en ny (mindre) uppdatering finns tillgänglig" msgid "OK" msgstr "OK" -#: src/Console/AppConsole.vala:100 src/Gtk/AppGtk.vala:181 +#: src/Console/AppConsole.vala:98 src/Gtk/AppGtk.vala:181 msgid "Options" msgstr "Alternativ" @@ -452,25 +452,25 @@ msgstr "Uppdaterar ..." msgid "Remove" msgstr "Ta bort" -#: src/Console/AppConsole.vala:97 src/Console/AppConsole.vala:102 +#: src/Console/AppConsole.vala:95 src/Console/AppConsole.vala:100 msgid "Remove files from application cache" msgstr "Ta bort filer från program-cachen" -#: src/Console/AppConsole.vala:95 src/Gtk/MainWindow.vala:426 +#: src/Console/AppConsole.vala:93 src/Gtk/MainWindow.vala:426 msgid "Remove installed kernels older than running kernel" msgstr "Ta bort installerade kärnor äldre än den som körs" -#: src/Console/AppConsole.vala:94 +#: src/Console/AppConsole.vala:92 #, fuzzy msgid "Remove specified kernel" msgstr "Ta bort specificerad kärna" -#: src/Console/AppConsole.vala:201 src/Console/AppConsole.vala:315 -#: src/Console/AppConsole.vala:344 +#: src/Console/AppConsole.vala:199 src/Console/AppConsole.vala:313 +#: src/Console/AppConsole.vala:342 msgid "Run '" msgstr "" -#: src/Console/AppConsole.vala:119 +#: src/Console/AppConsole.vala:117 msgid "Run the application as admin with pkexec or sudo." msgstr "Kör programmet som administratör, med pkexec eller sudo." @@ -518,7 +518,7 @@ msgstr "Visa aviseringsruta på skrivbordet" msgid "Show notification dialog" msgstr "Visa aviseringsdialog" -#: src/Console/AppConsole.vala:98 +#: src/Console/AppConsole.vala:96 #, fuzzy msgid "Show unstable and RC releases" msgstr "Dölj instabila- och RC-publiceringar" @@ -536,11 +536,11 @@ msgstr "Status" msgid "Stopped" msgstr "Stoppad" -#: src/Console/AppConsole.vala:83 src/Gtk/AppGtk.vala:179 +#: src/Console/AppConsole.vala:81 src/Gtk/AppGtk.vala:179 msgid "Syntax" msgstr "Syntax" -#: src/Console/AppConsole.vala:207 src/Gtk/AppGtk.vala:111 +#: src/Console/AppConsole.vala:205 src/Gtk/AppGtk.vala:111 msgid "Temp" msgstr "" @@ -554,7 +554,7 @@ msgstr "" msgid "Third Party Tools" msgstr "Tredjepartsverktyg" -#: src/Common/LinuxKernel.vala:1240 src/Gtk/MainWindow.vala:685 +#: src/Common/LinuxKernel.vala:1240 src/Gtk/MainWindow.vala:681 msgid "This kernel is already installed." msgstr "Denna kärna är redan installerad" @@ -579,7 +579,7 @@ msgstr "Avinstallation slutförd" msgid "Un-install completed with errors" msgstr "Avinstallation slutförd med fel" -#: src/Console/AppConsole.vala:199 src/Gtk/AppGtk.vala:166 +#: src/Console/AppConsole.vala:197 src/Gtk/AppGtk.vala:166 msgid "Unknown option" msgstr "Okänt alternativ" diff --git a/po/tr.po b/po/tr.po index 470c10c0..f4b56351 100644 --- a/po/tr.po +++ b/po/tr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu\n" "Report-Msgid-Bugs-To: bw.aljex@gmail.com\n" -"POT-Creation-Date: 2019-03-20 06:33-0400\n" +"POT-Creation-Date: 2019-03-25 06:02-0400\n" "PO-Revision-Date: 2019-03-12 19:35+0300\n" "Last-Translator: Gökhan GÖKKAYA \n" "Language-Team: Turkish\n" @@ -22,7 +22,7 @@ msgstr "" msgid "About" msgstr "Hakkında" -#: src/Console/AppConsole.vala:116 +#: src/Console/AppConsole.vala:114 msgid "Admin access is required for running this application." msgstr "Bu uygulamayı çalıştırmak için yönetici izni gerekiyor." @@ -39,7 +39,7 @@ msgstr "Sistem mimarisi" msgid "Artists" msgstr "Sanatçılar" -#: src/Console/AppConsole.vala:103 +#: src/Console/AppConsole.vala:101 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "Tüm istemler için Evet'i kabul edin (etkileşimsiz kip)" @@ -56,11 +56,11 @@ msgstr "Mevcut Çekirdekler" msgid "Back" msgstr "Geri" -#: src/Console/AppConsole.vala:206 src/Gtk/AppGtk.vala:110 +#: src/Console/AppConsole.vala:204 src/Gtk/AppGtk.vala:110 msgid "Cache" msgstr "Önbellek" -#: src/Gtk/ProgressWindow.vala:145 src/Gtk/TerminalWindow.vala:151 +#: src/Gtk/ProgressWindow.vala:145 src/Gtk/TerminalWindow.vala:149 #: src/Gtk/UpdateNotificationWindow.vala:167 #: src/Utility/Gtk/CustomMessageDialog.vala:172 #: src/Utility/Gtk/GtkHelper.vala:112 @@ -75,23 +75,23 @@ msgstr "Değişiklikler" msgid "Check every" msgstr "Kontrol aralığı" -#: src/Console/AppConsole.vala:87 +#: src/Console/AppConsole.vala:85 msgid "Check for kernel updates" msgstr "Çekirdek güncellemelerini kontrol et" -#: src/Console/AppConsole.vala:88 +#: src/Console/AppConsole.vala:86 msgid "Check for kernel updates and notify current user" msgstr "Çekirdek güncellemelerini kontrol et ve mevcut kullanıcıyı uyar" -#: src/Gtk/TerminalWindow.vala:161 src/Utility/Gtk/AboutWindow.vala:295 +#: src/Gtk/TerminalWindow.vala:159 src/Utility/Gtk/AboutWindow.vala:295 msgid "Close" msgstr "Kapat" -#: src/Console/AppConsole.vala:343 +#: src/Console/AppConsole.vala:341 msgid "Command not specified" msgstr "Komut belirtilmedi" -#: src/Console/AppConsole.vala:85 +#: src/Console/AppConsole.vala:83 msgid "Commands" msgstr "Komutlar" @@ -113,7 +113,7 @@ msgstr "Destek verenler" msgid "Could not find any kernels to remove" msgstr "Kaldırılacak çekirdek bulunamadı" -#: src/Console/AppConsole.vala:311 src/Gtk/MainWindow.vala:100 +#: src/Console/AppConsole.vala:309 src/Gtk/MainWindow.vala:100 msgid "Could not find requested version" msgstr "İstenen sürüm bulunamadı" @@ -156,7 +156,7 @@ msgstr "Dağıtım" msgid "Documenters" msgstr "Belgelendirenler" -#: src/Console/AppConsole.vala:96 +#: src/Console/AppConsole.vala:94 msgid "Download packages for specified kernel" msgstr "Belirtilen çekirdek için paketleri indir" @@ -277,15 +277,15 @@ msgstr "Kur" msgid "Install Linux v%s ? (y/n): " msgstr "Linux v%s Kur ? (e/h): " -#: src/Console/AppConsole.vala:91 +#: src/Console/AppConsole.vala:89 msgid "Install latest mainline kernel" msgstr "En son mainline çekirdeğini kur" -#: src/Console/AppConsole.vala:92 +#: src/Console/AppConsole.vala:90 msgid "Install latest point update for current series" msgstr "Mevcut çekirdek serisi için en güncelleme noktasını kur" -#: src/Console/AppConsole.vala:93 +#: src/Console/AppConsole.vala:91 msgid "Install specified mainline kernel" msgstr "Belirtilen mainline çekirdeğini kur" @@ -307,7 +307,7 @@ msgid "Installed" msgstr "Kurulu" #: src/Gtk/MainWindow.vala:350 src/Gtk/MainWindow.vala:550 -#: src/Gtk/MainWindow.vala:690 src/Utility/TeeJee.System.vala:281 +#: src/Gtk/MainWindow.vala:686 src/Utility/TeeJee.System.vala:281 msgid "Internet connection is not active" msgstr "İnternet bağlantısı aktif değil" @@ -324,17 +324,17 @@ msgstr "Çekirdek" msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Ubuntu tabanlı dağıtımlar için çekirdek güncelleme aracı" -#: src/Common/LinuxKernel.vala:776 src/Console/AppConsole.vala:369 +#: src/Common/LinuxKernel.vala:776 src/Console/AppConsole.vala:367 #, c-format msgid "Latest point update" msgstr "Son güncelleme noktası" -#: src/Common/LinuxKernel.vala:765 src/Console/AppConsole.vala:362 +#: src/Common/LinuxKernel.vala:765 src/Console/AppConsole.vala:360 #, c-format msgid "Latest update" msgstr "Son güncelleme" -#: src/Console/AppConsole.vala:89 +#: src/Console/AppConsole.vala:87 msgid "List all available mainline kernels" msgstr "Tüm mainline çekirdeklerini listele" @@ -342,7 +342,7 @@ msgstr "Tüm mainline çekirdeklerini listele" msgid "List available kernels" msgstr "Tüm çekirdekleri listele" -#: src/Console/AppConsole.vala:90 +#: src/Console/AppConsole.vala:88 msgid "List installed kernels" msgstr "Kurulu çekirdekleri listele" @@ -354,7 +354,7 @@ msgstr "Eksik Simge" msgid "Multiple Kernels Selected" msgstr "Çoklu Çekirdek Seçildi" -#: src/Console/AppConsole.vala:293 +#: src/Console/AppConsole.vala:291 msgid "Multiple kernels selected for installation. Select only one." msgstr "Kurulum için çoklu çekirdek seçildi. Sadece bir tane seçiniz." @@ -363,16 +363,16 @@ msgid "No" msgstr "Hayır" #: src/Gtk/MainWindow.vala:350 src/Gtk/MainWindow.vala:550 -#: src/Gtk/MainWindow.vala:690 +#: src/Gtk/MainWindow.vala:686 msgid "No Internet" msgstr "İnternet Yok" -#: src/Console/AppConsole.vala:287 src/Console/AppConsole.vala:324 +#: src/Console/AppConsole.vala:285 src/Console/AppConsole.vala:322 msgid "No kernels specified" msgstr "Belirtilen çekirdek yok" -#: src/Common/LinuxKernel.vala:784 src/Console/AppConsole.vala:374 -#: src/Console/AppConsole.vala:432 src/Gtk/MainWindow.vala:800 +#: src/Common/LinuxKernel.vala:784 src/Console/AppConsole.vala:372 +#: src/Console/AppConsole.vala:430 src/Gtk/MainWindow.vala:796 msgid "No updates found" msgstr "Güncelleme bulunamadı" @@ -400,7 +400,7 @@ msgstr "Ara sürüm mevcutsa bildir" msgid "OK" msgstr "TAMAM" -#: src/Console/AppConsole.vala:100 src/Gtk/AppGtk.vala:181 +#: src/Console/AppConsole.vala:98 src/Gtk/AppGtk.vala:181 msgid "Options" msgstr "Seçenekler" @@ -446,24 +446,24 @@ msgstr "Yenileniyor..." msgid "Remove" msgstr "Kaldır" -#: src/Console/AppConsole.vala:97 src/Console/AppConsole.vala:102 +#: src/Console/AppConsole.vala:95 src/Console/AppConsole.vala:100 msgid "Remove files from application cache" msgstr "Dosyaları uygulama önbelleğinden sil" -#: src/Console/AppConsole.vala:95 src/Gtk/MainWindow.vala:426 +#: src/Console/AppConsole.vala:93 src/Gtk/MainWindow.vala:426 msgid "Remove installed kernels older than running kernel" msgstr "Çalışan çekirdekten eski olan kurulu çekirdekleri kaldır" -#: src/Console/AppConsole.vala:94 +#: src/Console/AppConsole.vala:92 msgid "Remove specified kernel" msgstr "Belirtilen çekirdeği kaldır" -#: src/Console/AppConsole.vala:201 src/Console/AppConsole.vala:315 -#: src/Console/AppConsole.vala:344 +#: src/Console/AppConsole.vala:199 src/Console/AppConsole.vala:313 +#: src/Console/AppConsole.vala:342 msgid "Run '" msgstr "Çalıştır '" -#: src/Console/AppConsole.vala:119 +#: src/Console/AppConsole.vala:117 msgid "Run the application as admin with pkexec or sudo." msgstr "Bu uygulamayı pkexec yada sudo ile yönetici haklarıyla çalıştırın." @@ -511,7 +511,7 @@ msgstr "Masaüstünde bildirim baloncuğu göster" msgid "Show notification dialog" msgstr "Bildirim iletişimini göster" -#: src/Console/AppConsole.vala:98 +#: src/Console/AppConsole.vala:96 msgid "Show unstable and RC releases" msgstr "Kararsız ve RC sürümleri göster" @@ -527,11 +527,11 @@ msgstr "Durum" msgid "Stopped" msgstr "Durduruldu" -#: src/Console/AppConsole.vala:83 src/Gtk/AppGtk.vala:179 +#: src/Console/AppConsole.vala:81 src/Gtk/AppGtk.vala:179 msgid "Syntax" msgstr "Sözdizimi" -#: src/Console/AppConsole.vala:207 src/Gtk/AppGtk.vala:111 +#: src/Console/AppConsole.vala:205 src/Gtk/AppGtk.vala:111 msgid "Temp" msgstr "Geçici" @@ -545,7 +545,7 @@ msgstr "Aşağıdaki çekirdekler silinecek" msgid "Third Party Tools" msgstr "Üçüncü Parti Araçlar" -#: src/Common/LinuxKernel.vala:1240 src/Gtk/MainWindow.vala:685 +#: src/Common/LinuxKernel.vala:1240 src/Gtk/MainWindow.vala:681 msgid "This kernel is already installed." msgstr "Bu çekirdek zaten kurulu." @@ -570,7 +570,7 @@ msgstr "Kaldırma tamamlandı" msgid "Un-install completed with errors" msgstr "Kaldırma hatalarla tamamlandı" -#: src/Console/AppConsole.vala:199 src/Gtk/AppGtk.vala:166 +#: src/Console/AppConsole.vala:197 src/Gtk/AppGtk.vala:166 msgid "Unknown option" msgstr "Bilinmeyen seçenek" diff --git a/src/Common/DownloadManager.vala b/src/Common/DownloadManager.vala index 2646b887..2e71fb80 100644 --- a/src/Common/DownloadManager.vala +++ b/src/Common/DownloadManager.vala @@ -6,7 +6,7 @@ using TeeJee.Misc; public class DownloadTask : AsyncTask{ - + // settings public bool status_in_kb = false; public int connect_timeout_secs = 60; @@ -44,7 +44,7 @@ public class DownloadTask : AsyncTask{ log_error (e.message); } } - + // execution ---------------------------- public void add_to_queue(DownloadItem item){ @@ -67,7 +67,7 @@ public class DownloadTask : AsyncTask{ downloads.clear(); map.clear(); } - + public void execute() { prepare(); @@ -75,8 +75,6 @@ public class DownloadTask : AsyncTask{ begin(); if (status == AppStatus.RUNNING){ - - } } @@ -112,10 +110,6 @@ public class DownloadTask : AsyncTask{ cmd += " --max-concurrent-downloads=%d".printf(concurrent_downloads); cmd += " --max-file-not-found=3"; cmd += " --retry-wait=2"; - //cmd += " --optimize-concurrent-downloads=true"; // not supported by all versions - //cmd += " -l download.log"; - //cmd += " --direct-file-mapping=false"; - //cmd += " --dry-run"; log_debug(cmd); @@ -126,15 +120,15 @@ public class DownloadTask : AsyncTask{ if (is_terminated) { return; } - + update_progress_parse_console_output(out_line); } - + public override void parse_stderr_line(string err_line){ if (is_terminated) { return; } - + update_progress_parse_console_output(err_line); } @@ -146,7 +140,7 @@ public class DownloadTask : AsyncTask{ //log_debug(line); MatchInfo match; - + if (regex["file-complete"].match(line, 0, out match)) { //log_debug("match: file-complete: " + line); prg_count++; @@ -156,10 +150,10 @@ public class DownloadTask : AsyncTask{ //8ae3a3|OK | 16KiB/s|/home/teejee/.cache/ukuu/v4.0.7-wily/index.html //log_debug("match: file-status: " + line); - + // always display //log_debug(line); - + string gid_key = match.fetch(1).strip(); string status = match.fetch(2).strip(); int64 rate = int64.parse(match.fetch(3).strip()); @@ -201,12 +195,12 @@ public class DownloadTask : AsyncTask{ else { //log_debug("unmatched: '%s'".printf(line)); } - + return true; } protected override void finish_task(){ - + verify(); dir_delete(working_dir); @@ -215,7 +209,7 @@ public class DownloadTask : AsyncTask{ private void verify() { log_debug("verify()"); - + foreach(var item in downloads){ if (!file_exists(item.file_path_partial)){ @@ -224,7 +218,7 @@ public class DownloadTask : AsyncTask{ } //log_msg("status=%s".printf(item.status)); - + if (item.status == "OK"){ file_move(item.file_path_partial, item.file_path); } @@ -252,7 +246,7 @@ public class DownloadItem : GLib.Object * after successful completion. File will always be saved with * the specified name 'file_name' instead of the source file name. * */ - + public string file_name = ""; public string download_dir = ""; public string partial_dir = ""; @@ -266,7 +260,7 @@ public class DownloadItem : GLib.Object public string status = ""; public DownloadTask task = null; - + public string file_path{ owned get{ return path_combine(download_dir, file_name); @@ -294,7 +288,7 @@ public class DownloadItem : GLib.Object } public string status_line(){ - + if (task.status_in_kb){ return "%s / %s, %s/s (%s)".printf( format_file_size(bytes_received, false, "", true, 1), diff --git a/src/Console/AppConsole.vala b/src/Console/AppConsole.vala index c966a5f3..bb0cd9a1 100644 --- a/src/Console/AppConsole.vala +++ b/src/Console/AppConsole.vala @@ -17,8 +17,6 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, * MA 02110-1301, USA. - * - * */ using GLib; diff --git a/src/Gtk/TerminalWindow.vala b/src/Gtk/TerminalWindow.vala index 561be0b7..ea95bc59 100644 --- a/src/Gtk/TerminalWindow.vala +++ b/src/Gtk/TerminalWindow.vala @@ -17,8 +17,6 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, * MA 02110-1301, USA. - * - * */ From ba4d09d594cc2e7266328f9e17deab17506e9335 Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Tue, 26 Mar 2019 00:03:01 -0400 Subject: [PATCH 037/567] more Makefile stuff --- .deb_pkg_version.mak => .deb_build_number.mak | 2 +- Makefile | 34 ++++++++----------- README.md.src | 2 +- debian/changelog | 2 +- debian/control | 2 +- debian/control.src | 2 +- po/messages.pot | 4 +-- 7 files changed, 22 insertions(+), 26 deletions(-) rename .deb_pkg_version.mak => .deb_build_number.mak (71%) diff --git a/.deb_pkg_version.mak b/.deb_build_number.mak similarity index 71% rename from .deb_pkg_version.mak rename to .deb_build_number.mak index 07a9ee91..132b5674 100644 --- a/.deb_pkg_version.mak +++ b/.deb_build_number.mak @@ -1,3 +1,3 @@ # This file is generated by Makefile DEB_PKG_VERSION := 1.0.1 -DEB_BUILD_NUMBER := 0008 +DEB_BUILD_NUMBER := 0013 diff --git a/Makefile b/Makefile index 5c8d5f60..1e7976dc 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,4 @@ -# Makefile for github.com/aljex fork of ukuu - -include BRANDING.mak +# Makefile for "mainline" SHELL := /bin/bash CFLAGS := --std=c99 @@ -21,13 +19,8 @@ gtk+ := gtk+-3.0 json-glib := json-glib-1.0 gee := gee-0.8 -host_dist := $(shell lsb_release -sc) -host_arch := $(shell dpkg --print-architecture) -pkg_version = $(shell dpkg-parsechangelog -S Version) - -PKG_VERSION := $(VERSION_MAJOR).$(VERSION_MINOR).$(VERSION_MICRO) -BRANDING_VERSION := $(PKG_VERSION) - +include BRANDING.mak +BRANDING_VERSION := $(VERSION_MAJOR).$(VERSION_MINOR).$(VERSION_MICRO) branding_symbols := -X -D'BRANDING_SHORTNAME="$(BRANDING_SHORTNAME)"' \ -X -D'BRANDING_LONGNAME="$(BRANDING_LONGNAME)"' \ -X -D'BRANDING_VERSION="$(BRANDING_VERSION)"' \ @@ -50,7 +43,10 @@ gui_vala_files := src/Gtk/*.vala src/Utility/Gtk/*.vala po_files := po/*.po pot_file := po/messages.pot -include .deb_pkg_version.mak +include .deb_build_number.mak +host_dist := $(shell lsb_release -sc) +host_arch := $(shell dpkg --print-architecture) +pkg_version = $(shell dpkg-parsechangelog -S Version) dsc_file = release/deb-src/$(BRANDING_SHORTNAME)_$(pkg_version).dsc deb_file = release/deb/$(BRANDING_SHORTNAME)_$(pkg_version).$(DEB_BUILD_NUMBER)_$(host_arch).deb @@ -133,7 +129,7 @@ uninstall: deb-src: $(dsc_file) $(dsc_file): debian/changelog $(misc_files) $(po_files) - @[[ "$(PKG_VERSION)" == "$(pkg_version)" ]] || { echo -e "Version number in debian/changelog ($(pkg_version)) does not match BRANDING.mak ($(PKG_VERSION)).\n(Run \"dch\")" >&2 ; exit 1 ; } + @[[ "$(pkg_version)" == "$(BRANDING_VERSION)" ]] || { echo -e "Version number in debian/changelog ($(pkg_version)) does not match BRANDING.mak ($(BRANDING_VERSION)).\n(Maybe need to run \"dch\"?)" >&2 ; exit 1 ; } $(MAKE) clean dpkg-source --build . mkdir -pv release/deb-src @@ -162,14 +158,14 @@ uninstall-deb: changelog: debian/changelog debian/changelog: $(misc_files) - dch --controlmaint --no-auto-nmu --package $(BRANDING_SHORTNAME) --newversion $(PKG_VERSION) + dch --controlmaint --no-auto-nmu --package $(BRANDING_SHORTNAME) --newversion $(BRANDING_VERSION) -.PHONY: deb_pkg_version -deb_pkg_version: debian/changelog - { n="0000" ; \ - [[ "_$(DEB_PKG_VERSION)" == "_$(pkg_version)" ]] && printf -v n "%04u" $$((10#$(DEB_BUILD_NUMBER)+1)) ; \ - echo -e "# This file is generated by Makefile\nDEB_PKG_VERSION := $(pkg_version)\nDEB_BUILD_NUMBER := $${n}" > .deb_pkg_version.mak ; } +.PHONY: deb_build_number +deb_build_number: debian/changelog + { printf -v n "%04u" $$((10#$(DEB_BUILD_NUMBER)+1)) ; \ + [[ "_$(DEB_PKG_VERSION)" == "_$(pkg_version)" ]] || n="0000" ; \ + echo -e "# This file is generated by Makefile\nDEB_PKG_VERSION := $(pkg_version)\nDEB_BUILD_NUMBER := $${n}" > .$(@).mak ; } .PHONY: release_deb -release_deb: deb_pkg_version clean +release_deb: deb_build_number clean $(MAKE) deb diff --git a/README.md.src b/README.md.src index a95af665..78d1f5cb 100644 --- a/README.md.src +++ b/README.md.src @@ -32,7 +32,7 @@ The original author stopped maintaining the original GPL version of ukuu and swi * (from [stevenpowerd](https://github.com/stevenpowered/ukuu)) Options controlling the internet connection check * (from [cloyce](https://github.com/cloyce/ukuu)) Option to include or hide pre-release kernels -* Renamed from "ukuu" to "BRANDING_SHORTNAME" +* Changed name from "ukuu" to "BRANDING_SHORTNAME" * Removed all GRUB options * Removed all donate buttons, links, dialogs * Remove source cruft diff --git a/debian/changelog b/debian/changelog index 9e8aecfd..383d52be 100644 --- a/debian/changelog +++ b/debian/changelog @@ -18,7 +18,7 @@ mainline (1.0.1) UNRELEASED; urgency=medium Example, run "make deb" twice in a row with no changes, the 2nd one will say "nothing to do" Makefile is now officially more feature rich and more robust than the application itself ¯\_(ツ)_/¯ - -- Brian K. White Mon, 25 Mar 2019 13:56:26 -0400 + -- Brian K. White Mon, 25 Mar 2019 22:40:40 -0400 mainline (1.0.0) disco; urgency=medium diff --git a/debian/control b/debian/control index f98df001..8b80ae51 100644 --- a/debian/control +++ b/debian/control @@ -2,7 +2,7 @@ Source: mainline Section: utils Priority: extra Maintainer: Brian K. White -Build-Depends: debhelper, valac, libgtk-3-dev, libgee-0.8-dev, libjson-glib-dev, libvte-2.91-dev +Build-Depends: debhelper, valac, libgtk-3-dev, libgee-0.8-dev, libjson-glib-dev, libvte-2.91-dev, bash Standards-Version: 4.3.0 Homepage: https://github.com/aljex/mainline diff --git a/debian/control.src b/debian/control.src index ef663dcb..af1f8c8f 100644 --- a/debian/control.src +++ b/debian/control.src @@ -2,7 +2,7 @@ Source: BRANDING_SHORTNAME Section: utils Priority: extra Maintainer: BRANDING_AUTHORNAME -Build-Depends: debhelper, valac, libgtk-3-dev, libgee-0.8-dev, libjson-glib-dev, libvte-2.91-dev +Build-Depends: debhelper, valac, libgtk-3-dev, libgee-0.8-dev, libjson-glib-dev, libvte-2.91-dev, bash Standards-Version: 4.3.0 Homepage: BRANDING_WEBSITE diff --git a/po/messages.pot b/po/messages.pot index 5c1a4635..17303a74 100644 --- a/po/messages.pot +++ b/po/messages.pot @@ -6,9 +6,9 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: mainline 1.0.1.\n" +"Project-Id-Version: mainline 1.0.1\n" "Report-Msgid-Bugs-To: bw.aljex@gmail.com\n" -"POT-Creation-Date: 2019-03-25 13:56-0400\n" +"POT-Creation-Date: 2019-03-25 22:40-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" From d3ae1ee1632744c88754d3cb2dd552a4e65166da Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Thu, 28 Mar 2019 18:27:40 -0400 Subject: [PATCH 038/567] wmclass in desktop file --- .deb_build_number.mak | 2 +- debian/changelog | 5 +++-- mainline.desktop | 1 + mainline.desktop.src | 1 + po/messages.pot | 2 +- src/Gtk/MainWindow.vala | 8 ++++---- 6 files changed, 11 insertions(+), 8 deletions(-) diff --git a/.deb_build_number.mak b/.deb_build_number.mak index 132b5674..eddb7ac9 100644 --- a/.deb_build_number.mak +++ b/.deb_build_number.mak @@ -1,3 +1,3 @@ # This file is generated by Makefile DEB_PKG_VERSION := 1.0.1 -DEB_BUILD_NUMBER := 0013 +DEB_BUILD_NUMBER := 0014 diff --git a/debian/changelog b/debian/changelog index 383d52be..2a706eb9 100644 --- a/debian/changelog +++ b/debian/changelog @@ -16,9 +16,10 @@ mainline (1.0.1) UNRELEASED; urgency=medium Allows to generate updated deb files with icrementing filenames without having to update pkg version - Get most targets other than "release_deb" to properly do nothing unless something actually changed. Example, run "make deb" twice in a row with no changes, the 2nd one will say "nothing to do" - Makefile is now officially more feature rich and more robust than the application itself ¯\_(ツ)_/¯ + The Makefile is now officially more feature rich and robust than the application itself ¯\_(ツ)_/¯ + * Desktop icon fix for Wayland from Hugo Posnic - -- Brian K. White Mon, 25 Mar 2019 22:40:40 -0400 + -- Brian K. White Thu, 28 Mar 2019 18:17:47 -0400 mainline (1.0.0) disco; urgency=medium diff --git a/mainline.desktop b/mainline.desktop index a6b4a08f..09232f72 100644 --- a/mainline.desktop +++ b/mainline.desktop @@ -9,3 +9,4 @@ Icon=mainline Comment=Ubuntu Mainline Kernel Installer X-KDE-StartupNotify=false Categories=System; +StartupWMClass=mainline-gtk diff --git a/mainline.desktop.src b/mainline.desktop.src index c04857b4..17e073f2 100644 --- a/mainline.desktop.src +++ b/mainline.desktop.src @@ -9,3 +9,4 @@ Icon=BRANDING_SHORTNAME Comment=BRANDING_LONGNAME X-KDE-StartupNotify=false Categories=System; +StartupWMClass=BRANDING_SHORTNAME-gtk diff --git a/po/messages.pot b/po/messages.pot index 17303a74..26bbbb83 100644 --- a/po/messages.pot +++ b/po/messages.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline 1.0.1\n" "Report-Msgid-Bugs-To: bw.aljex@gmail.com\n" -"POT-Creation-Date: 2019-03-25 22:40-0400\n" +"POT-Creation-Date: 2019-03-28 18:18-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/src/Gtk/MainWindow.vala b/src/Gtk/MainWindow.vala index aa315b03..dad8f0fa 100644 --- a/src/Gtk/MainWindow.vala +++ b/src/Gtk/MainWindow.vala @@ -521,10 +521,10 @@ public class MainWindow : Gtk.Window{ "Waldemar Konik (Polish):valdi74@github", "gogo (Croatian):trebelnik2@gmail.com", "Adolfo Jayme Barrientos (Spanish):fitojb@ubuntu.com", - "yolateng0 (French):github.com/yolateng0", - "Hugo Posnic (French):hugo.posnic@gmail.com", - "Faust3000 (Russian):slavusik1988@gmail.com", - "Gökhan GÖKKAYA (Turkish):gokhanlnx@gmail.com" + "yolateng0 (French):github.com/yolateng0", + "Hugo Posnic (French):hugo.posnic@gmail.com", + "Faust3000 (Russian):slavusik1988@gmail.com", + "Gökhan GÖKKAYA (Turkish):gokhanlnx@gmail.com" }; dialog.documenters = null; From 8fd0da247d1f0f370aaae7b4413c47f74563364e Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Mon, 1 Apr 2019 11:27:35 -0400 Subject: [PATCH 039/567] remove more unused code --- po/es.po | 20 +- po/fr.po | 20 +- po/hr.po | 20 +- po/messages.pot | 20 +- po/nl.po | 20 +- po/pl.po | 20 +- po/ru.po | 20 +- po/sv.po | 20 +- po/tr.po | 20 +- src/Common/Package.vala | 9 +- src/Gtk/MainWindow.vala | 170 ++++++------ src/Gtk/ProgressWindow.vala | 63 ++--- src/Gtk/SettingsDialog.vala | 18 +- src/Gtk/UpdateNotificationWindow.vala | 6 +- src/Utility/Gtk/AboutWindow.vala | 8 +- src/Utility/Gtk/CustomMessageDialog.vala | 47 +--- src/Utility/Gtk/GtkHelper.vala | 328 +---------------------- src/Utility/TeeJee.FileSystem.vala | 18 -- src/Utility/TeeJee.Misc.vala | 63 ----- 19 files changed, 235 insertions(+), 675 deletions(-) diff --git a/po/es.po b/po/es.po index b0e061f6..4c2eaab9 100644 --- a/po/es.po +++ b/po/es.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu\n" "Report-Msgid-Bugs-To: bw.aljex@gmail.com\n" -"POT-Creation-Date: 2019-03-25 06:02-0400\n" +"POT-Creation-Date: 2019-04-01 11:08-0400\n" "PO-Revision-Date: 2018-01-03 02:03-0600\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish\n" @@ -62,8 +62,7 @@ msgstr "Cache" #: src/Gtk/ProgressWindow.vala:145 src/Gtk/TerminalWindow.vala:149 #: src/Gtk/UpdateNotificationWindow.vala:167 -#: src/Utility/Gtk/CustomMessageDialog.vala:172 -#: src/Utility/Gtk/GtkHelper.vala:112 +#: src/Utility/Gtk/CustomMessageDialog.vala:155 msgid "Cancel" msgstr "Cancelar" @@ -175,7 +174,7 @@ msgstr "E" msgid "ERROR" msgstr "ERROR" -#: src/Utility/Gtk/GtkHelper.vala:18 +#: src/Utility/Gtk/GtkHelper.vala:17 msgid "Error" msgstr "Error" @@ -235,7 +234,7 @@ msgstr "Se trasladó el archivo" msgid "File not found" msgstr "No se encontró el archivo" -#: src/Common/Package.vala:133 src/Common/Package.vala:195 +#: src/Common/Package.vala:126 src/Common/Package.vala:188 #, c-format msgid "File not found: %s" msgstr "No se encontró el archivo: %s" @@ -348,7 +347,7 @@ msgstr "Mostrar núcleos disponibles" msgid "List installed kernels" msgstr "Mostrar kernels disponibles" -#: src/Utility/Gtk/GtkHelper.vala:262 +#: src/Utility/Gtk/GtkHelper.vala:93 msgid "Missing Icon" msgstr "Falta el icono" @@ -360,7 +359,7 @@ msgstr "Se seleccionaron varios kernels" msgid "Multiple kernels selected for installation. Select only one." msgstr "Se seleccionaron varios núcleos para su instalación. Elija solo uno." -#: src/Utility/Gtk/CustomMessageDialog.vala:177 +#: src/Utility/Gtk/CustomMessageDialog.vala:160 msgid "No" msgstr "No" @@ -395,9 +394,8 @@ msgid "Notify if a point release is available" msgstr "Notificar si hay una versión puntual disponible" #: src/Common/LinuxKernel.vala:1217 -#: src/Utility/Gtk/CustomMessageDialog.vala:167 -#: src/Utility/Gtk/CustomMessageDialog.vala:171 -#: src/Utility/Gtk/GtkHelper.vala:111 +#: src/Utility/Gtk/CustomMessageDialog.vala:150 +#: src/Utility/Gtk/CustomMessageDialog.vala:154 #, c-format msgid "OK" msgstr "Aceptar" @@ -588,7 +586,7 @@ msgstr "W" msgid "Week(s)" msgstr "Semanas" -#: src/Utility/Gtk/CustomMessageDialog.vala:176 +#: src/Utility/Gtk/CustomMessageDialog.vala:159 msgid "Yes" msgstr "Sí" diff --git a/po/fr.po b/po/fr.po index 85a1f494..3e58b8c6 100644 --- a/po/fr.po +++ b/po/fr.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu\n" "Report-Msgid-Bugs-To: bw.aljex@gmail.com\n" -"POT-Creation-Date: 2019-03-25 06:02-0400\n" +"POT-Creation-Date: 2019-04-01 11:08-0400\n" "PO-Revision-Date: 2018-08-05 15:50+0200\n" "Last-Translator: Yolateng0 \n" "Language-Team: French\n" @@ -62,8 +62,7 @@ msgstr "" #: src/Gtk/ProgressWindow.vala:145 src/Gtk/TerminalWindow.vala:149 #: src/Gtk/UpdateNotificationWindow.vala:167 -#: src/Utility/Gtk/CustomMessageDialog.vala:172 -#: src/Utility/Gtk/GtkHelper.vala:112 +#: src/Utility/Gtk/CustomMessageDialog.vala:155 msgid "Cancel" msgstr "Annuler" @@ -178,7 +177,7 @@ msgstr "E" msgid "ERROR" msgstr "ERREUR" -#: src/Utility/Gtk/GtkHelper.vala:18 +#: src/Utility/Gtk/GtkHelper.vala:17 msgid "Error" msgstr "Erreur" @@ -238,7 +237,7 @@ msgstr "Fichier déplacé" msgid "File not found" msgstr "Fichier non trouvé" -#: src/Common/Package.vala:133 src/Common/Package.vala:195 +#: src/Common/Package.vala:126 src/Common/Package.vala:188 #, c-format msgid "File not found: %s" msgstr "Fichier non trouvé: %s" @@ -355,7 +354,7 @@ msgstr "Lister les noyaux disponibles" msgid "List installed kernels" msgstr "Lister les noyaux disponibles" -#: src/Utility/Gtk/GtkHelper.vala:262 +#: src/Utility/Gtk/GtkHelper.vala:93 msgid "Missing Icon" msgstr "Icône introuvable" @@ -369,7 +368,7 @@ msgstr "" "Plusieurs noyaux sélectionnés pour être installés. Sélectionnez en seulement " "un." -#: src/Utility/Gtk/CustomMessageDialog.vala:177 +#: src/Utility/Gtk/CustomMessageDialog.vala:160 msgid "No" msgstr "Non" @@ -404,9 +403,8 @@ msgid "Notify if a point release is available" msgstr "Notifier si une version stable mineure est disponible" #: src/Common/LinuxKernel.vala:1217 -#: src/Utility/Gtk/CustomMessageDialog.vala:167 -#: src/Utility/Gtk/CustomMessageDialog.vala:171 -#: src/Utility/Gtk/GtkHelper.vala:111 +#: src/Utility/Gtk/CustomMessageDialog.vala:150 +#: src/Utility/Gtk/CustomMessageDialog.vala:154 #, c-format msgid "OK" msgstr "OK" @@ -600,7 +598,7 @@ msgstr "W" msgid "Week(s)" msgstr "Semaine(s)" -#: src/Utility/Gtk/CustomMessageDialog.vala:176 +#: src/Utility/Gtk/CustomMessageDialog.vala:159 msgid "Yes" msgstr "Oui" diff --git a/po/hr.po b/po/hr.po index a7997fc2..1436a5f4 100644 --- a/po/hr.po +++ b/po/hr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu\n" "Report-Msgid-Bugs-To: bw.aljex@gmail.com\n" -"POT-Creation-Date: 2019-03-25 06:02-0400\n" +"POT-Creation-Date: 2019-04-01 11:08-0400\n" "PO-Revision-Date: 2017-12-24 00:52+0100\n" "Last-Translator: gogo \n" "Language-Team: Croatian \n" @@ -63,8 +63,7 @@ msgstr "" #: src/Gtk/ProgressWindow.vala:145 src/Gtk/TerminalWindow.vala:149 #: src/Gtk/UpdateNotificationWindow.vala:167 -#: src/Utility/Gtk/CustomMessageDialog.vala:172 -#: src/Utility/Gtk/GtkHelper.vala:112 +#: src/Utility/Gtk/CustomMessageDialog.vala:155 msgid "Cancel" msgstr "Odustani" @@ -178,7 +177,7 @@ msgstr "G" msgid "ERROR" msgstr "GREŠKA" -#: src/Utility/Gtk/GtkHelper.vala:18 +#: src/Utility/Gtk/GtkHelper.vala:17 msgid "Error" msgstr "Greška" @@ -238,7 +237,7 @@ msgstr "Datoteka je premještena" msgid "File not found" msgstr "Datoteka nije pronađena" -#: src/Common/Package.vala:133 src/Common/Package.vala:195 +#: src/Common/Package.vala:126 src/Common/Package.vala:188 #, c-format msgid "File not found: %s" msgstr "Datoteka nije pronađena: %s" @@ -353,7 +352,7 @@ msgstr "Prikaži sve kernele" msgid "List installed kernels" msgstr "Prikaži sve kernele" -#: src/Utility/Gtk/GtkHelper.vala:262 +#: src/Utility/Gtk/GtkHelper.vala:93 msgid "Missing Icon" msgstr "Ikone koje nedostaju" @@ -365,7 +364,7 @@ msgstr "Više kernela je odabrano" msgid "Multiple kernels selected for installation. Select only one." msgstr "Više kernela je odabrano za instalaciju. odaberite samo jedan." -#: src/Utility/Gtk/CustomMessageDialog.vala:177 +#: src/Utility/Gtk/CustomMessageDialog.vala:160 msgid "No" msgstr "Ne" @@ -400,9 +399,8 @@ msgid "Notify if a point release is available" msgstr "Obavijesti kada je pojedino izdanje dostupno" #: src/Common/LinuxKernel.vala:1217 -#: src/Utility/Gtk/CustomMessageDialog.vala:167 -#: src/Utility/Gtk/CustomMessageDialog.vala:171 -#: src/Utility/Gtk/GtkHelper.vala:111 +#: src/Utility/Gtk/CustomMessageDialog.vala:150 +#: src/Utility/Gtk/CustomMessageDialog.vala:154 #, c-format msgid "OK" msgstr "U redu" @@ -596,7 +594,7 @@ msgstr "Z" msgid "Week(s)" msgstr "Tjedan(a)" -#: src/Utility/Gtk/CustomMessageDialog.vala:176 +#: src/Utility/Gtk/CustomMessageDialog.vala:159 msgid "Yes" msgstr "Da" diff --git a/po/messages.pot b/po/messages.pot index 26bbbb83..965e9186 100644 --- a/po/messages.pot +++ b/po/messages.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline 1.0.1\n" "Report-Msgid-Bugs-To: bw.aljex@gmail.com\n" -"POT-Creation-Date: 2019-03-28 18:18-0400\n" +"POT-Creation-Date: 2019-04-01 11:22-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -61,8 +61,7 @@ msgstr "" #: src/Gtk/ProgressWindow.vala:145 src/Gtk/TerminalWindow.vala:149 #: src/Gtk/UpdateNotificationWindow.vala:167 -#: src/Utility/Gtk/CustomMessageDialog.vala:172 -#: src/Utility/Gtk/GtkHelper.vala:112 +#: src/Utility/Gtk/CustomMessageDialog.vala:155 msgid "Cancel" msgstr "" @@ -173,7 +172,7 @@ msgstr "" msgid "ERROR" msgstr "" -#: src/Utility/Gtk/GtkHelper.vala:18 +#: src/Utility/Gtk/GtkHelper.vala:17 msgid "Error" msgstr "" @@ -233,7 +232,7 @@ msgstr "" msgid "File not found" msgstr "" -#: src/Common/Package.vala:133 src/Common/Package.vala:195 +#: src/Common/Package.vala:126 src/Common/Package.vala:188 #, c-format msgid "File not found: %s" msgstr "" @@ -343,7 +342,7 @@ msgstr "" msgid "List installed kernels" msgstr "" -#: src/Utility/Gtk/GtkHelper.vala:262 +#: src/Utility/Gtk/GtkHelper.vala:93 msgid "Missing Icon" msgstr "" @@ -355,7 +354,7 @@ msgstr "" msgid "Multiple kernels selected for installation. Select only one." msgstr "" -#: src/Utility/Gtk/CustomMessageDialog.vala:177 +#: src/Utility/Gtk/CustomMessageDialog.vala:160 msgid "No" msgstr "" @@ -390,9 +389,8 @@ msgid "Notify if a point release is available" msgstr "" #: src/Common/LinuxKernel.vala:1217 -#: src/Utility/Gtk/CustomMessageDialog.vala:167 -#: src/Utility/Gtk/CustomMessageDialog.vala:171 -#: src/Utility/Gtk/GtkHelper.vala:111 +#: src/Utility/Gtk/CustomMessageDialog.vala:150 +#: src/Utility/Gtk/CustomMessageDialog.vala:154 #, c-format msgid "OK" msgstr "" @@ -579,7 +577,7 @@ msgstr "" msgid "Week(s)" msgstr "" -#: src/Utility/Gtk/CustomMessageDialog.vala:176 +#: src/Utility/Gtk/CustomMessageDialog.vala:159 msgid "Yes" msgstr "" diff --git a/po/nl.po b/po/nl.po index f3f2b7ea..be17805b 100644 --- a/po/nl.po +++ b/po/nl.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu 2.2\n" "Report-Msgid-Bugs-To: bw.aljex@gmail.com\n" -"POT-Creation-Date: 2019-03-25 06:02-0400\n" +"POT-Creation-Date: 2019-04-01 11:08-0400\n" "PO-Revision-Date: 2017-04-30 11:50+0200\n" "Last-Translator: Heimen Stoffels \n" "Language-Team: \n" @@ -64,8 +64,7 @@ msgstr "" #: src/Gtk/ProgressWindow.vala:145 src/Gtk/TerminalWindow.vala:149 #: src/Gtk/UpdateNotificationWindow.vala:167 -#: src/Utility/Gtk/CustomMessageDialog.vala:172 -#: src/Utility/Gtk/GtkHelper.vala:112 +#: src/Utility/Gtk/CustomMessageDialog.vala:155 msgid "Cancel" msgstr "Annuleren" @@ -179,7 +178,7 @@ msgstr "E" msgid "ERROR" msgstr "FOUT" -#: src/Utility/Gtk/GtkHelper.vala:18 +#: src/Utility/Gtk/GtkHelper.vala:17 msgid "Error" msgstr "Fout" @@ -239,7 +238,7 @@ msgstr "Bestand verplaatst" msgid "File not found" msgstr "Bestand niet gevonden" -#: src/Common/Package.vala:133 src/Common/Package.vala:195 +#: src/Common/Package.vala:126 src/Common/Package.vala:188 #, c-format msgid "File not found: %s" msgstr "Bestand niet gevonden: %s" @@ -355,7 +354,7 @@ msgstr "Alle beschikbare mainline-kernels weergeven" msgid "List installed kernels" msgstr "Alle beschikbare mainline-kernels weergeven" -#: src/Utility/Gtk/GtkHelper.vala:262 +#: src/Utility/Gtk/GtkHelper.vala:93 msgid "Missing Icon" msgstr "Ontbrekend pictogram" @@ -369,7 +368,7 @@ msgstr "" "Er zijn meerdere te installeren kernels geselecteerd. Selecteer er slechts " "één." -#: src/Utility/Gtk/CustomMessageDialog.vala:177 +#: src/Utility/Gtk/CustomMessageDialog.vala:160 msgid "No" msgstr "" @@ -404,9 +403,8 @@ msgid "Notify if a point release is available" msgstr "Melding weergeven als er een puntupdate beschikbaar is" #: src/Common/LinuxKernel.vala:1217 -#: src/Utility/Gtk/CustomMessageDialog.vala:167 -#: src/Utility/Gtk/CustomMessageDialog.vala:171 -#: src/Utility/Gtk/GtkHelper.vala:111 +#: src/Utility/Gtk/CustomMessageDialog.vala:150 +#: src/Utility/Gtk/CustomMessageDialog.vala:154 #, c-format msgid "OK" msgstr "Oké" @@ -602,7 +600,7 @@ msgstr "W" msgid "Week(s)" msgstr "we(e)k(en)" -#: src/Utility/Gtk/CustomMessageDialog.vala:176 +#: src/Utility/Gtk/CustomMessageDialog.vala:159 msgid "Yes" msgstr "" diff --git a/po/pl.po b/po/pl.po index d44f83d3..412d32a1 100644 --- a/po/pl.po +++ b/po/pl.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu\n" "Report-Msgid-Bugs-To: bw.aljex@gmail.com\n" -"POT-Creation-Date: 2019-03-25 06:02-0400\n" +"POT-Creation-Date: 2019-04-01 11:08-0400\n" "PO-Revision-Date: 2017-08-12 15:26+0200\n" "Last-Translator: \n" "Language-Team: Polish\n" @@ -61,8 +61,7 @@ msgstr "" #: src/Gtk/ProgressWindow.vala:145 src/Gtk/TerminalWindow.vala:149 #: src/Gtk/UpdateNotificationWindow.vala:167 -#: src/Utility/Gtk/CustomMessageDialog.vala:172 -#: src/Utility/Gtk/GtkHelper.vala:112 +#: src/Utility/Gtk/CustomMessageDialog.vala:155 msgid "Cancel" msgstr "Anuluj" @@ -176,7 +175,7 @@ msgstr "E" msgid "ERROR" msgstr "BŁĄD" -#: src/Utility/Gtk/GtkHelper.vala:18 +#: src/Utility/Gtk/GtkHelper.vala:17 msgid "Error" msgstr "Błąd" @@ -236,7 +235,7 @@ msgstr "Plik przeniesiony" msgid "File not found" msgstr "Nie odnaleziono pliku" -#: src/Common/Package.vala:133 src/Common/Package.vala:195 +#: src/Common/Package.vala:126 src/Common/Package.vala:188 #, c-format msgid "File not found: %s" msgstr "Nie odnaleziono pliku: %s" @@ -352,7 +351,7 @@ msgstr "Pokaż wszystkie dostępne jądra" msgid "List installed kernels" msgstr "Pokaż wszystkie dostępne jądra" -#: src/Utility/Gtk/GtkHelper.vala:262 +#: src/Utility/Gtk/GtkHelper.vala:93 msgid "Missing Icon" msgstr "Brakująca ikona" @@ -364,7 +363,7 @@ msgstr "Wybrano kilka jąder" msgid "Multiple kernels selected for installation. Select only one." msgstr "Wybrano kilka jąder do instalacji. Wybierz tylko jedno." -#: src/Utility/Gtk/CustomMessageDialog.vala:177 +#: src/Utility/Gtk/CustomMessageDialog.vala:160 msgid "No" msgstr "" @@ -399,9 +398,8 @@ msgid "Notify if a point release is available" msgstr "Powiadom, jeśli pojawi się wersja punktowa" #: src/Common/LinuxKernel.vala:1217 -#: src/Utility/Gtk/CustomMessageDialog.vala:167 -#: src/Utility/Gtk/CustomMessageDialog.vala:171 -#: src/Utility/Gtk/GtkHelper.vala:111 +#: src/Utility/Gtk/CustomMessageDialog.vala:150 +#: src/Utility/Gtk/CustomMessageDialog.vala:154 #, c-format msgid "OK" msgstr "OK" @@ -596,7 +594,7 @@ msgstr "W" msgid "Week(s)" msgstr "Tygodni" -#: src/Utility/Gtk/CustomMessageDialog.vala:176 +#: src/Utility/Gtk/CustomMessageDialog.vala:159 msgid "Yes" msgstr "" diff --git a/po/ru.po b/po/ru.po index fabc25ec..d583b240 100644 --- a/po/ru.po +++ b/po/ru.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu\n" "Report-Msgid-Bugs-To: bw.aljex@gmail.com\n" -"POT-Creation-Date: 2019-03-25 06:02-0400\n" +"POT-Creation-Date: 2019-04-01 11:08-0400\n" "PO-Revision-Date: 2016-12-13 16:46+0300\n" "Last-Translator: Faust3000 \n" "Language-Team: Russian \n" @@ -63,8 +63,7 @@ msgstr "" #: src/Gtk/ProgressWindow.vala:145 src/Gtk/TerminalWindow.vala:149 #: src/Gtk/UpdateNotificationWindow.vala:167 -#: src/Utility/Gtk/CustomMessageDialog.vala:172 -#: src/Utility/Gtk/GtkHelper.vala:112 +#: src/Utility/Gtk/CustomMessageDialog.vala:155 msgid "Cancel" msgstr "Отмена" @@ -179,7 +178,7 @@ msgstr "E" msgid "ERROR" msgstr "ОШИБКА" -#: src/Utility/Gtk/GtkHelper.vala:18 +#: src/Utility/Gtk/GtkHelper.vala:17 msgid "Error" msgstr "Ошибка" @@ -242,7 +241,7 @@ msgstr "Удалить" msgid "File not found" msgstr "Файл не найден" -#: src/Common/Package.vala:133 src/Common/Package.vala:195 +#: src/Common/Package.vala:126 src/Common/Package.vala:188 #, c-format msgid "File not found: %s" msgstr "Файл не найден: %s" @@ -359,7 +358,7 @@ msgstr "Список всех доступных основных ядер" msgid "List installed kernels" msgstr "Список всех доступных основных ядер" -#: src/Utility/Gtk/GtkHelper.vala:262 +#: src/Utility/Gtk/GtkHelper.vala:93 msgid "Missing Icon" msgstr "Значок отсутствует" @@ -371,7 +370,7 @@ msgstr "" msgid "Multiple kernels selected for installation. Select only one." msgstr "" -#: src/Utility/Gtk/CustomMessageDialog.vala:177 +#: src/Utility/Gtk/CustomMessageDialog.vala:160 msgid "No" msgstr "" @@ -406,9 +405,8 @@ msgid "Notify if a point release is available" msgstr "Уведомлять, если доступно небольшое обновление" #: src/Common/LinuxKernel.vala:1217 -#: src/Utility/Gtk/CustomMessageDialog.vala:167 -#: src/Utility/Gtk/CustomMessageDialog.vala:171 -#: src/Utility/Gtk/GtkHelper.vala:111 +#: src/Utility/Gtk/CustomMessageDialog.vala:150 +#: src/Utility/Gtk/CustomMessageDialog.vala:154 #, c-format msgid "OK" msgstr "OK" @@ -604,7 +602,7 @@ msgstr "W" msgid "Week(s)" msgstr "Неделю(ли)" -#: src/Utility/Gtk/CustomMessageDialog.vala:176 +#: src/Utility/Gtk/CustomMessageDialog.vala:159 msgid "Yes" msgstr "" diff --git a/po/sv.po b/po/sv.po index b34dde5b..af4a6eaf 100644 --- a/po/sv.po +++ b/po/sv.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu 2.2\n" "Report-Msgid-Bugs-To: bw.aljex@gmail.com\n" -"POT-Creation-Date: 2019-03-25 06:02-0400\n" +"POT-Creation-Date: 2019-04-01 11:08-0400\n" "PO-Revision-Date: 2018-01-13 16:56+0100\n" "Last-Translator: Åke Engelbrektson \n" "Language-Team: Svenska Språkfiler \n" @@ -63,8 +63,7 @@ msgstr "" #: src/Gtk/ProgressWindow.vala:145 src/Gtk/TerminalWindow.vala:149 #: src/Gtk/UpdateNotificationWindow.vala:167 -#: src/Utility/Gtk/CustomMessageDialog.vala:172 -#: src/Utility/Gtk/GtkHelper.vala:112 +#: src/Utility/Gtk/CustomMessageDialog.vala:155 msgid "Cancel" msgstr "Avbryt" @@ -178,7 +177,7 @@ msgstr "F" msgid "ERROR" msgstr "FEL" -#: src/Utility/Gtk/GtkHelper.vala:18 +#: src/Utility/Gtk/GtkHelper.vala:17 msgid "Error" msgstr "Fel" @@ -239,7 +238,7 @@ msgstr "Fil flyttad" msgid "File not found" msgstr "Filen kan inte hittas" -#: src/Common/Package.vala:133 src/Common/Package.vala:195 +#: src/Common/Package.vala:126 src/Common/Package.vala:188 #, c-format msgid "File not found: %s" msgstr "Filen kunde inte hittas: %s" @@ -352,7 +351,7 @@ msgstr "Lista tillgängliga kärnor" msgid "List installed kernels" msgstr "Lista tillgängliga kärnor" -#: src/Utility/Gtk/GtkHelper.vala:262 +#: src/Utility/Gtk/GtkHelper.vala:93 msgid "Missing Icon" msgstr "Saknad ikon" @@ -364,7 +363,7 @@ msgstr "Flera kärnor markerade" msgid "Multiple kernels selected for installation. Select only one." msgstr "Flera kärnor valda för installation. Välj endast en." -#: src/Utility/Gtk/CustomMessageDialog.vala:177 +#: src/Utility/Gtk/CustomMessageDialog.vala:160 msgid "No" msgstr "Nej" @@ -399,9 +398,8 @@ msgid "Notify if a point release is available" msgstr "Meddela om en ny (mindre) uppdatering finns tillgänglig" #: src/Common/LinuxKernel.vala:1217 -#: src/Utility/Gtk/CustomMessageDialog.vala:167 -#: src/Utility/Gtk/CustomMessageDialog.vala:171 -#: src/Utility/Gtk/GtkHelper.vala:111 +#: src/Utility/Gtk/CustomMessageDialog.vala:150 +#: src/Utility/Gtk/CustomMessageDialog.vala:154 #, c-format msgid "OK" msgstr "OK" @@ -595,7 +593,7 @@ msgstr "V" msgid "Week(s)" msgstr "Veckor" -#: src/Utility/Gtk/CustomMessageDialog.vala:176 +#: src/Utility/Gtk/CustomMessageDialog.vala:159 msgid "Yes" msgstr "Ja" diff --git a/po/tr.po b/po/tr.po index f4b56351..61accb3d 100644 --- a/po/tr.po +++ b/po/tr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu\n" "Report-Msgid-Bugs-To: bw.aljex@gmail.com\n" -"POT-Creation-Date: 2019-03-25 06:02-0400\n" +"POT-Creation-Date: 2019-04-01 11:08-0400\n" "PO-Revision-Date: 2019-03-12 19:35+0300\n" "Last-Translator: Gökhan GÖKKAYA \n" "Language-Team: Turkish\n" @@ -62,8 +62,7 @@ msgstr "Önbellek" #: src/Gtk/ProgressWindow.vala:145 src/Gtk/TerminalWindow.vala:149 #: src/Gtk/UpdateNotificationWindow.vala:167 -#: src/Utility/Gtk/CustomMessageDialog.vala:172 -#: src/Utility/Gtk/GtkHelper.vala:112 +#: src/Utility/Gtk/CustomMessageDialog.vala:155 msgid "Cancel" msgstr "İptal" @@ -174,7 +173,7 @@ msgstr "H" msgid "ERROR" msgstr "HATA" -#: src/Utility/Gtk/GtkHelper.vala:18 +#: src/Utility/Gtk/GtkHelper.vala:17 msgid "Error" msgstr "Hata" @@ -234,7 +233,7 @@ msgstr "Dosya taşındı" msgid "File not found" msgstr "Dosya bulunamadı" -#: src/Common/Package.vala:133 src/Common/Package.vala:195 +#: src/Common/Package.vala:126 src/Common/Package.vala:188 #, c-format msgid "File not found: %s" msgstr "Şu dosya bulunamadı: %s" @@ -346,7 +345,7 @@ msgstr "Tüm çekirdekleri listele" msgid "List installed kernels" msgstr "Kurulu çekirdekleri listele" -#: src/Utility/Gtk/GtkHelper.vala:262 +#: src/Utility/Gtk/GtkHelper.vala:93 msgid "Missing Icon" msgstr "Eksik Simge" @@ -358,7 +357,7 @@ msgstr "Çoklu Çekirdek Seçildi" msgid "Multiple kernels selected for installation. Select only one." msgstr "Kurulum için çoklu çekirdek seçildi. Sadece bir tane seçiniz." -#: src/Utility/Gtk/CustomMessageDialog.vala:177 +#: src/Utility/Gtk/CustomMessageDialog.vala:160 msgid "No" msgstr "Hayır" @@ -393,9 +392,8 @@ msgid "Notify if a point release is available" msgstr "Ara sürüm mevcutsa bildir" #: src/Common/LinuxKernel.vala:1217 -#: src/Utility/Gtk/CustomMessageDialog.vala:167 -#: src/Utility/Gtk/CustomMessageDialog.vala:171 -#: src/Utility/Gtk/GtkHelper.vala:111 +#: src/Utility/Gtk/CustomMessageDialog.vala:150 +#: src/Utility/Gtk/CustomMessageDialog.vala:154 #, c-format msgid "OK" msgstr "TAMAM" @@ -586,7 +584,7 @@ msgstr "U" msgid "Week(s)" msgstr "Hafta" -#: src/Utility/Gtk/CustomMessageDialog.vala:176 +#: src/Utility/Gtk/CustomMessageDialog.vala:159 msgid "Yes" msgstr "Evet" diff --git a/src/Common/Package.vala b/src/Common/Package.vala index 9d58b8a9..3c9c755c 100644 --- a/src/Common/Package.vala +++ b/src/Common/Package.vala @@ -1,9 +1,6 @@ using TeeJee.Logging; using TeeJee.FileSystem; -//using TeeJee.JsonHelper; using TeeJee.ProcessHelper; -//using TeeJee.Multimedia; -//using TeeJee.System; using TeeJee.Misc; public class Package : GLib.Object { @@ -14,7 +11,6 @@ public class Package : GLib.Object { public string repo = ""; public string repo_section = ""; public string arch = ""; - public string status = ""; public string section = ""; public string version = ""; public string version_installed = ""; @@ -42,10 +38,7 @@ public class Package : GLib.Object { public static void initialize(){ string std_out, std_err; - int status = exec_sync("dpkg --print-architecture", out std_out, out std_err); - if ((status == 0) && (std_out != null)){ - NATIVE_ARCH = std_out.strip(); - } + exec_sync("dpkg --print-architecture", out std_out, out std_err); } public Package(string _name){ diff --git a/src/Gtk/MainWindow.vala b/src/Gtk/MainWindow.vala index dad8f0fa..3bbf6b67 100644 --- a/src/Gtk/MainWindow.vala +++ b/src/Gtk/MainWindow.vala @@ -33,10 +33,10 @@ using TeeJee.System; using TeeJee.Misc; public class MainWindow : Gtk.Window{ - + private Gtk.Box vbox_main; private Gtk.Box hbox_list; - + private Gtk.TreeView tv; private Gtk.Button btn_refresh; private Gtk.Button btn_install; @@ -44,7 +44,7 @@ public class MainWindow : Gtk.Window{ private Gtk.Button btn_purge; private Gtk.Button btn_changes; private Gtk.Label lbl_info; - + // helper members private int window_width = 800; @@ -52,30 +52,30 @@ public class MainWindow : Gtk.Window{ private uint tmr_init = -1; private Gee.ArrayList selected_kernels; - + public MainWindow() { - + title = BRANDING_LONGNAME; - window_position = WindowPosition.CENTER; - icon = get_app_icon(16,".svg"); + window_position = WindowPosition.CENTER; + icon = get_app_icon(16,".svg"); - // vbox_main - vbox_main = new Gtk.Box(Orientation.VERTICAL, 6); - vbox_main.margin = 6; - vbox_main.set_size_request(window_width, window_height); - add (vbox_main); + // vbox_main + vbox_main = new Gtk.Box(Orientation.VERTICAL, 6); + vbox_main.margin = 6; + vbox_main.set_size_request(window_width, window_height); + add (vbox_main); selected_kernels = new Gee.ArrayList(); - - init_ui(); + + init_ui(); tmr_init = Timeout.add(100, init_delayed); } private bool init_delayed() { - + /* any actions that need to run after window has been displayed */ - + if (tmr_init > 0) { Source.remove(tmr_init); tmr_init = 0; @@ -87,7 +87,7 @@ public class MainWindow : Gtk.Window{ switch (App.command){ case "install": - + LinuxKernel kern_requested = null; foreach(var kern in LinuxKernel.kernel_list){ if (kern.name == App.requested_version){ @@ -105,9 +105,9 @@ public class MainWindow : Gtk.Window{ else{ install(kern_requested); } - + break; - + case "notify": notify_user(); @@ -122,14 +122,14 @@ public class MainWindow : Gtk.Window{ init_actions(); init_infobar(); } - + private void init_treeview(){ // hbox hbox_list = new Gtk.Box(Orientation.HORIZONTAL, 6); //hbox.margin = 6; vbox_main.add(hbox_list); - + //add treeview tv = new TreeView(); tv.get_selection().mode = SelectionMode.MULTIPLE; @@ -139,19 +139,19 @@ public class MainWindow : Gtk.Window{ tv.row_activated.connect(tv_row_activated); tv.get_selection().changed.connect(tv_selection_changed); - + var scrollwin = new ScrolledWindow(tv.get_hadjustment(), tv.get_vadjustment()); scrollwin.set_shadow_type (ShadowType.ETCHED_IN); scrollwin.add (tv); hbox_list.add(scrollwin); - + //column var col = new TreeViewColumn(); col.title = _("Kernel"); col.resizable = true; col.min_width = 150; tv.append_column(col); - + // cell icon var cell_pix = new Gtk.CellRendererPixbuf (); cell_pix.xpad = 4; @@ -163,7 +163,7 @@ public class MainWindow : Gtk.Window{ (cell as Gtk.CellRendererPixbuf).pixbuf = pix; //(cell as Gtk.CellRendererPixbuf).visible = !(App.hide_unstable); }); - + //cell text var cellText = new CellRendererText(); cellText.ellipsize = Pango.EllipsizeMode.END; @@ -190,7 +190,7 @@ public class MainWindow : Gtk.Window{ model.get (iter, 0, out kern, -1); (cell as Gtk.CellRendererText).text = kern.name; }); - + //column col = new TreeViewColumn(); col.title = _("Status"); @@ -207,7 +207,7 @@ public class MainWindow : Gtk.Window{ model.get (iter, 0, out kern, -1); (cell as Gtk.CellRendererText).text = kern.is_running ? _("Running") : (kern.is_installed ? _("Installed") : ""); }); - + //column col = new TreeViewColumn(); col.title = ""; @@ -251,7 +251,7 @@ public class MainWindow : Gtk.Window{ selected_kernels.add(kern); //log_msg("size=%d".printf(selected_kernels.size)); } - + set_button_state(); } @@ -261,7 +261,7 @@ public class MainWindow : Gtk.Window{ Gdk.Pixbuf pix_ubuntu = null; Gdk.Pixbuf pix_mainline = null; Gdk.Pixbuf pix_mainline_rc = null; - + try { pix_ubuntu = new Gdk.Pixbuf.from_file ("/usr/share/" + BRANDING_SHORTNAME + "/images/ubuntu-logo.png"); @@ -274,7 +274,7 @@ public class MainWindow : Gtk.Window{ } var kern_4 = new LinuxKernel.from_version("4.0"); - + TreeIter iter; bool odd_row = false; foreach(var kern in LinuxKernel.kernel_list) { @@ -289,7 +289,7 @@ public class MainWindow : Gtk.Window{ } odd_row = !odd_row; - + //add row model.append(out iter); model.set (iter, 0, kern); @@ -343,23 +343,23 @@ public class MainWindow : Gtk.Window{ var button = new Gtk.Button.with_label (_("Refresh")); hbox.pack_start (button, true, true, 0); btn_refresh = button; - + button.clicked.connect(() => { if (!check_internet_connectivity()){ gtk_messagebox(_("No Internet"), _("Internet connection is not active"), this, true); return; } - + refresh_cache(); tv_refresh(); }); - + // install button = new Gtk.Button.with_label (_("Install")); hbox.pack_start (button, true, true, 0); btn_install = button; - + button.clicked.connect(() => { if (selected_kernels.size == 1){ install(selected_kernels[0]); @@ -376,7 +376,7 @@ public class MainWindow : Gtk.Window{ button = new Gtk.Button.with_label (_("Remove")); hbox.pack_start (button, true, true, 0); btn_remove = button; - + button.clicked.connect(() => { if (selected_kernels.size == 0){ gtk_messagebox(_("Not Selected"),_("Select the kernels to remove"), this, true); @@ -384,11 +384,11 @@ public class MainWindow : Gtk.Window{ else if (selected_kernels.size > 0){ var term = new TerminalWindow.with_parent(this, false, true); - + term.script_complete.connect(()=>{ term.allow_window_close(); }); - + term.destroy.connect(()=>{ this.present(); refresh_cache(); @@ -411,12 +411,12 @@ public class MainWindow : Gtk.Window{ } sh += " --remove %s\n".printf(names); - + sh += "echo ''\n"; sh += "echo 'Close window to exit...'\n"; this.hide(); - + term.execute_script(save_bash_script_temp(sh)); } }); @@ -426,15 +426,15 @@ public class MainWindow : Gtk.Window{ button.set_tooltip_text(_("Remove installed kernels older than running kernel")); hbox.pack_start (button, true, true, 0); btn_purge = button; - + button.clicked.connect(() => { var term = new TerminalWindow.with_parent(this, false, true); - + term.script_complete.connect(()=>{ term.allow_window_close(); }); - + term.destroy.connect(()=>{ this.present(); refresh_cache(); @@ -451,12 +451,12 @@ public class MainWindow : Gtk.Window{ sh += " --purge-old-kernels\n"; log_debug(sh); - + sh += "echo ''\n"; sh += "echo 'Close window to exit...'\n"; this.hide(); - + term.execute_script(save_bash_script_temp(sh)); }); @@ -464,7 +464,7 @@ public class MainWindow : Gtk.Window{ button = new Gtk.Button.with_label (_("Changes")); hbox.pack_start (button, true, true, 0); btn_changes = button; - + button.clicked.connect(() => { if ((selected_kernels.size == 1) && file_exists(selected_kernels[0].changes_file)){ xdg_open(selected_kernels[0].changes_file); @@ -479,7 +479,7 @@ public class MainWindow : Gtk.Window{ bool prev_hide_older = LinuxKernel.hide_older; bool prev_hide_unstable = LinuxKernel.hide_unstable; - + var dlg = new SettingsDialog.with_parent(this); dlg.run(); dlg.destroy(); @@ -488,7 +488,7 @@ public class MainWindow : Gtk.Window{ || ((prev_hide_unstable == true) && (LinuxKernel.hide_unstable == false))){ refresh_cache(); } - + tv_refresh(); }); @@ -500,7 +500,7 @@ public class MainWindow : Gtk.Window{ } private void btn_about_clicked () { - + var dialog = new AboutWindow(); dialog.set_transient_for (this); @@ -552,27 +552,27 @@ public class MainWindow : Gtk.Window{ } if (App.command != "list"){ - + // refresh without GUI and return ----------------- - + LinuxKernel.query(false); while (LinuxKernel.task_is_running) { - + sleep(200); gtk_do_events(); } - + return; } - + string message = _("Refreshing..."); var dlg = new ProgressWindow.with_parent(this, message, true); dlg.show_all(); gtk_do_events(); // TODO: Check if kernel.ubuntu.com is down - + LinuxKernel.query(false); var timer = timer_start(); @@ -582,13 +582,13 @@ public class MainWindow : Gtk.Window{ string msg_remaining = ""; long count = 0; - + while (LinuxKernel.task_is_running) { if (App.cancelled){ App.exit_app(1); } - + App.status_line = LinuxKernel.status_line; App.progress_total = LinuxKernel.progress_total; App.progress_count = LinuxKernel.progress_count; @@ -604,9 +604,9 @@ public class MainWindow : Gtk.Window{ if (App.progress_total > 0){ dlg.update_message("%s %s/%s (%s)".printf(message, App.progress_count.to_string(), App.progress_total.to_string(), msg_remaining)); } - + dlg.update_status_line(); - + // FIXME - GTK error messages, and progressbar is always 100% //dlg.update_progressbar(); @@ -625,7 +625,7 @@ public class MainWindow : Gtk.Window{ private void init_infobar(){ - + // scrolled var scrolled = new ScrolledWindow(null, null); scrolled.set_shadow_type (ShadowType.ETCHED_IN); @@ -643,7 +643,7 @@ public class MainWindow : Gtk.Window{ var img_status = new Gtk.Image(); img_status.pixbuf = get_shared_icon_pixbuf("", "tux.svg", 64); img_status.margin = 6; - hbox.add(img_status); + hbox.add(img_status); lbl_info = new Gtk.Label(""); lbl_info.margin = 6; @@ -652,9 +652,9 @@ public class MainWindow : Gtk.Window{ } private void set_infobar(){ - + if (LinuxKernel.kernel_active != null){ - + lbl_info.label = "Running Linux %s".printf(LinuxKernel.kernel_active.version_main); if (LinuxKernel.kernel_active.is_mainline){ @@ -663,7 +663,7 @@ public class MainWindow : Gtk.Window{ else{ lbl_info.label += " (ubuntu)"; } - + if (LinuxKernel.kernel_latest_stable.compare_to(LinuxKernel.kernel_active) > 0){ lbl_info.label += " ~ " + "Linux %s available".printf( LinuxKernel.kernel_latest_stable.version_main); @@ -686,15 +686,15 @@ public class MainWindow : Gtk.Window{ gtk_messagebox(_("No Internet"), _("Internet connection is not active"), this, true); return; } - + this.hide(); - + var term = new TerminalWindow.with_parent(this, false, true); - + term.script_complete.connect(()=>{ term.allow_window_close(); }); - + term.destroy.connect(()=>{ if (App.command == "list"){ @@ -716,7 +716,7 @@ public class MainWindow : Gtk.Window{ sh += " --debug"; } sh += " --install %s\n".printf(kern.name); - + sh += "echo ''\n"; sh += "echo 'Close window to exit...'\n"; @@ -728,66 +728,66 @@ public class MainWindow : Gtk.Window{ LinuxKernel.check_updates(); var kern = LinuxKernel.kernel_update_major; - + if ((kern != null) && App.notify_major){ - + var title = "Linux v%s Available".printf(kern.version_main); var message = "Major update available for installation"; if (App.notify_bubble){ - + OSDNotify.notify_send(title,message,3000,"normal","info"); } - + if (App.notify_dialog){ - + var win = new UpdateNotificationWindow( BRANDING_LONGNAME, "%s\n\n%s".printf(title, message), null, kern); - + win.destroy.connect(()=>{ log_debug("UpdateNotificationWindow destroyed"); Gtk.main_quit(); }); - + Gtk.main(); // start event loop } - + log_msg(title); log_msg(message); return; } kern = LinuxKernel.kernel_update_minor; - + if ((kern != null) && App.notify_minor){ - + var title = "Linux v%s Available".printf(kern.version_main); var message = "Minor update available for installation"; if (App.notify_bubble){ - + OSDNotify.notify_send(title,message,3000,"normal","info"); } - + if (App.notify_dialog){ - + var win = new UpdateNotificationWindow( BRANDING_LONGNAME, "%s\n\n%s".printf(title, message), this, kern); - + win.destroy.connect(()=>{ log_debug("UpdateNotificationWindow destroyed"); Gtk.main_quit(); }); - + Gtk.main(); // start event loop } - + log_msg(title); log_msg(message); return; diff --git a/src/Gtk/ProgressWindow.vala b/src/Gtk/ProgressWindow.vala index bd3d66bd..84336bc6 100644 --- a/src/Gtk/ProgressWindow.vala +++ b/src/Gtk/ProgressWindow.vala @@ -34,14 +34,14 @@ using TeeJee.System; using TeeJee.Misc; public class ProgressWindow : Gtk.Window { - + private Gtk.Box vbox_main; private Gtk.Spinner spinner; private Gtk.Label lbl_msg; private Gtk.Label lbl_status; //private ProgressBar progressbar; private Gtk.Button btn_cancel; - + private uint tmr_init = 0; private uint tmr_close = 0; private int def_width = 400; @@ -50,11 +50,11 @@ public class ProgressWindow : Gtk.Window { private string status_message; private bool allow_cancel = false; private bool allow_close = false; - + // init - + public ProgressWindow.with_parent(Window parent, string message, bool allow_cancel = false) { - + set_transient_for(parent); set_modal(true); set_skip_taskbar_hint(true); @@ -65,21 +65,21 @@ public class ProgressWindow : Gtk.Window { set_default_size(def_width, def_height); icon = get_app_icon(16,".svg"); - + App.status_line = ""; App.progress_count = 0; App.progress_total = 0; - + this.status_message = message; this.allow_cancel = allow_cancel; App.cancelled = false; - + this.delete_event.connect(close_window); - + init_window(); } - + private bool close_window(){ if (allow_close){ // allow window to close @@ -90,14 +90,14 @@ public class ProgressWindow : Gtk.Window { return true; } } - + public void init_window () { - + title = ""; icon = get_app_icon(16); resizable = false; set_deletable(false); - + //vbox_main vbox_main = new Gtk.Box(Orientation.VERTICAL, 6); vbox_main.margin = 12; @@ -105,11 +105,11 @@ public class ProgressWindow : Gtk.Window { var hbox_status = new Gtk.Box(Orientation.HORIZONTAL, 6); vbox_main.add (hbox_status); - + spinner = new Gtk.Spinner(); spinner.active = true; hbox_status.add(spinner); - + //lbl_msg lbl_msg = new Gtk.Label (status_message); lbl_msg.halign = Align.START; @@ -119,7 +119,7 @@ public class ProgressWindow : Gtk.Window { var hbox = new Gtk.Box(Orientation.HORIZONTAL, 6); vbox_main.add(hbox); - + //progressbar /* progressbar = new Gtk.ProgressBar(); @@ -161,14 +161,14 @@ public class ProgressWindow : Gtk.Window { // common public void update_message(string msg){ - + if (msg.length > 0){ lbl_msg.label = msg; } } public void update_status_line(bool clear = false){ - + if (clear){ lbl_status.label = ""; } @@ -180,11 +180,11 @@ public class ProgressWindow : Gtk.Window { //gtk_do_events(); } -/* +/* public void update_progressbar(){ - + double f = App.progress_count / (App.progress_total * 1.0); - + if (f > 1.0){ f = 1.0; } @@ -192,39 +192,40 @@ public class ProgressWindow : Gtk.Window { progressbar.fraction = f; gtk_do_events(); } -*/ +*/ + public void finish(string message = "") { - + btn_cancel.sensitive = false; - + //pulse_stop(); //progressbar.fraction = 1.0; - + lbl_msg.label = message; lbl_status.label = ""; - + spinner.visible = false; - + gtk_do_events(); auto_close_window(); } private void auto_close_window() { - + tmr_close = Timeout.add(2000, ()=>{ if (tmr_init > 0) { Source.remove(tmr_init); tmr_init = 0; } - + allow_close = true; this.close(); return false; }); } - + public void sleep(int ms){ - + Thread.usleep ((ulong) ms * 1000); gtk_do_events(); } diff --git a/src/Gtk/SettingsDialog.vala b/src/Gtk/SettingsDialog.vala index 6beada61..4d4f99c7 100644 --- a/src/Gtk/SettingsDialog.vala +++ b/src/Gtk/SettingsDialog.vala @@ -72,7 +72,7 @@ public class SettingsDialog : Gtk.Dialog { // chk_notify_major var chk = new Gtk.CheckButton.with_label(_("Notify if a major release is available")); chk.active = App.notify_major; - chk.margin_left = 6; + chk.margin_start = 6; vbox_main.add(chk); chk_notify_major = chk; @@ -83,7 +83,7 @@ public class SettingsDialog : Gtk.Dialog { // chk_notify_minor chk = new Gtk.CheckButton.with_label(_("Notify if a point release is available")); chk.active = App.notify_minor; - chk.margin_left = 6; + chk.margin_start = 6; vbox_main.add(chk); chk_notify_minor = chk; @@ -94,7 +94,7 @@ public class SettingsDialog : Gtk.Dialog { // show bubble chk = new Gtk.CheckButton.with_label(_("Show notification bubble on desktop")); chk.active = App.notify_bubble; - chk.margin_left = 6; + chk.margin_start = 6; vbox_main.add(chk); chk_notify_bubble = chk; @@ -105,7 +105,7 @@ public class SettingsDialog : Gtk.Dialog { // show window chk = new Gtk.CheckButton.with_label(_("Show notification dialog")); chk.active = App.notify_dialog; - chk.margin_left = 6; + chk.margin_start = 6; chk.margin_bottom = 6; vbox_main.add(chk); chk_notify_dialog = chk; @@ -120,7 +120,7 @@ public class SettingsDialog : Gtk.Dialog { label = new Label(_("Check every")); label.xalign = (float) 0.0; - label.margin_left = 6; + label.margin_start = 6; hbox.add (label); var adjustment = new Gtk.Adjustment(App.notify_interval_value, 1, 52, 1, 1, 0); @@ -168,7 +168,7 @@ public class SettingsDialog : Gtk.Dialog { // chk_hide_unstable chk = new CheckButton.with_label(_("Hide unstable and RC releases")); chk.active = LinuxKernel.hide_unstable; - chk.margin_left = 6; + chk.margin_start = 6; vbox_main.add(chk); chk_hide_unstable = chk; @@ -179,7 +179,7 @@ public class SettingsDialog : Gtk.Dialog { // chk_hide_older chk = new CheckButton.with_label(_("Hide kernels older than 4.0")); chk.active = LinuxKernel.hide_older; - chk.margin_left = 6; + chk.margin_start = 6; vbox_main.add(chk); chk_hide_older = chk; @@ -198,7 +198,7 @@ public class SettingsDialog : Gtk.Dialog { // skip internet connection check chk = new CheckButton.with_label(_("Skip internet connection check")); chk.active = App.skip_connection_check; - chk.margin_left = 6; + chk.margin_start = 6; vbox_main.add(chk); chk.toggled.connect(()=>{ @@ -211,7 +211,7 @@ public class SettingsDialog : Gtk.Dialog { label = new Label(_("Internet connection timeout in ")); label.xalign = (float) 0.0; - label.margin_left = 6; + label.margin_start = 6; hbox.add (label); adjustment = new Gtk.Adjustment(App.connection_timeout_seconds, 1, 20, 1, 1, 0); diff --git a/src/Gtk/UpdateNotificationWindow.vala b/src/Gtk/UpdateNotificationWindow.vala index e0a2a80a..288e37ef 100644 --- a/src/Gtk/UpdateNotificationWindow.vala +++ b/src/Gtk/UpdateNotificationWindow.vala @@ -66,7 +66,7 @@ public class UpdateNotificationWindow : Gtk.Window { if (lbl_msg.get_allocated_height() > 400){ sw_msg.vscrollbar_policy = PolicyType.AUTOMATIC; sw_msg.set_size_request(-1,400); - lbl_msg.margin_right = 25; + lbl_msg.margin_end = 25; } else{ sw_msg.vscrollbar_policy = PolicyType.NEVER; @@ -112,12 +112,12 @@ public class UpdateNotificationWindow : Gtk.Window { // img var img = new Image.from_icon_name(icon_name, Gtk.IconSize.DIALOG); - img.margin_right = 12; + img.margin_end = 12; hbox_contents.add(img); // vbox_msg var vbox_msg = new Gtk.Box(Orientation.VERTICAL, 24); - vbox_msg.margin_right = 6; + vbox_msg.margin_end = 6; hbox_contents.add(vbox_msg); // lbl_msg diff --git a/src/Utility/Gtk/AboutWindow.vala b/src/Utility/Gtk/AboutWindow.vala index 93889c51..70e2b323 100644 --- a/src/Utility/Gtk/AboutWindow.vala +++ b/src/Utility/Gtk/AboutWindow.vala @@ -270,7 +270,7 @@ public class AboutWindow : Dialog { //btn_credits btn_credits = new Button.with_label(" " + _("Credits")); - btn_credits.set_image (new Image.from_stock ("gtk-about", IconSize.MENU)); + btn_credits.set_image (new Image.from_icon_name ("gtk-about", IconSize.MENU)); hbox_action.add(btn_credits); btn_credits.clicked.connect(()=>{ @@ -283,17 +283,17 @@ public class AboutWindow : Dialog { if (vbox_credits.visible){ btn_credits.label = " " + _("Back"); - btn_credits.set_image (new Image.from_stock ("gtk-go-back", IconSize.MENU)); + btn_credits.set_image (new Image.from_icon_name ("gtk-go-back", IconSize.MENU)); } else{ btn_credits.label = " " + _("Credits"); - btn_credits.set_image (new Image.from_stock ("gtk-about", IconSize.MENU)); + btn_credits.set_image (new Image.from_icon_name ("gtk-about", IconSize.MENU)); } }); //btn_close btn_close = new Button.with_label(" " + _("Close")); - btn_close.set_image (new Image.from_stock ("gtk-close", IconSize.MENU)); + btn_close.set_image (new Image.from_icon_name ("gtk-close", IconSize.MENU)); hbox_action.add(btn_close); btn_close.clicked.connect(()=>{ this.destroy(); }); diff --git a/src/Utility/Gtk/CustomMessageDialog.vala b/src/Utility/Gtk/CustomMessageDialog.vala index 58c59743..21c9c4cd 100644 --- a/src/Utility/Gtk/CustomMessageDialog.vala +++ b/src/Utility/Gtk/CustomMessageDialog.vala @@ -34,7 +34,7 @@ using TeeJee.System; using TeeJee.Misc; public class CustomMessageDialog : Gtk.Dialog { - + private Gtk.Box vbox_main; private Gtk.Label lbl_msg; private Gtk.ScrolledWindow sw_msg; @@ -47,11 +47,11 @@ public class CustomMessageDialog : Gtk.Dialog { private string msg_body; private Gtk.MessageType msg_type; private Gtk.ButtonsType buttons_type; - + public CustomMessageDialog( string _msg_title, string _msg_body, Gtk.MessageType _msg_type, Window? parent, Gtk.ButtonsType _buttons_type) { - + set_transient_for(parent); set_modal(true); @@ -59,41 +59,26 @@ public class CustomMessageDialog : Gtk.Dialog { msg_body = _msg_body; msg_type = _msg_type; buttons_type = _buttons_type; - + init_window(); - //lbl_msg.label += string.nfill(4000, 'n'); - lbl_msg.expand = true; sw_msg.expand = true; sw_msg.vscrollbar_policy = PolicyType.NEVER; - - //log_debug("0: label=%dx%d".printf(lbl_msg.get_allocated_width(), lbl_msg.get_allocated_height())); - //log_debug("0: scroll=%dx%d".printf(sw_msg.get_allocated_width(), sw_msg.get_allocated_height())); sw_msg.set_size_request(500, 150); // sets minimum size - //log_debug("0: label=%dx%d".printf(lbl_msg.get_allocated_width(), lbl_msg.get_allocated_height())); - //log_debug("0: scroll=%dx%d".printf(sw_msg.get_allocated_width(), sw_msg.get_allocated_height())); - show_all(); - //log_debug("1: label=%dx%d".printf(lbl_msg.get_allocated_width(), lbl_msg.get_allocated_height())); - //log_debug("1: scroll=%dx%d".printf(sw_msg.get_allocated_width(), sw_msg.get_allocated_height())); - if (lbl_msg.get_allocated_height() > 400){ sw_msg.vscrollbar_policy = PolicyType.AUTOMATIC; sw_msg.set_size_request(500, 400); - //gtk_do_events(); - //this.set_position(WindowPosition.CENTER); } - //log_debug("1: label=%dx%d".printf(lbl_msg.get_allocated_width(), lbl_msg.get_allocated_height())); - //log_debug("1: scroll=%dx%d".printf(sw_msg.get_allocated_width(), sw_msg.get_allocated_height())); } public void init_window () { - + this.title = ""; this.window_position = WindowPosition.CENTER_ON_PARENT; this.icon = get_app_icon(16); @@ -101,7 +86,7 @@ public class CustomMessageDialog : Gtk.Dialog { this.deletable = false; this.skip_taskbar_hint = true; this.skip_pager_hint = true; - + //vbox_main vbox_main = get_content_area () as Gtk.Box; vbox_main.margin = 6; @@ -112,7 +97,7 @@ public class CustomMessageDialog : Gtk.Dialog { vbox_main.add (hbox_contents); string icon_name = "dialog-info"; - + switch(msg_type){ case Gtk.MessageType.INFO: icon_name = "dialog-info"; @@ -129,11 +114,11 @@ public class CustomMessageDialog : Gtk.Dialog { } // image ---------------- - + var img = new Image.from_icon_name(icon_name, Gtk.IconSize.DIALOG); - img.margin_right = 12; + img.margin_end = 120; hbox_contents.add(img); - + // label ------------------- var text = "%s\n\n%s".printf( @@ -146,19 +131,17 @@ public class CustomMessageDialog : Gtk.Dialog { lbl_msg.wrap = true; lbl_msg.wrap_mode = Pango.WrapMode.WORD_CHAR; lbl_msg.use_markup = true; - lbl_msg.margin_right = 25; - + lbl_msg.margin_end = 250; + //sw_msg sw_msg = new Gtk.ScrolledWindow(null, null); - //sw_msg.set_shadow_type (ShadowType.ETCHED_IN); sw_msg.add (lbl_msg); sw_msg.hscrollbar_policy = PolicyType.NEVER; sw_msg.vscrollbar_policy = PolicyType.NEVER; - //sw_msg.set_size_request(500, 400); hbox_contents.add(sw_msg); // actions ------------------------- - + var action_area = get_action_area () as Gtk.Box; action_area.margin_top = 12; @@ -177,9 +160,7 @@ public class CustomMessageDialog : Gtk.Dialog { btn_no = (Gtk.Button) add_button (_("No"), Gtk.ResponseType.NO); btn_yes.grab_focus(); break; - + } } } - - diff --git a/src/Utility/Gtk/GtkHelper.vala b/src/Utility/Gtk/GtkHelper.vala index 10254645..83768145 100644 --- a/src/Utility/Gtk/GtkHelper.vala +++ b/src/Utility/Gtk/GtkHelper.vala @@ -1,5 +1,4 @@ - using TeeJee.Logging; using TeeJee.FileSystem; using TeeJee.JsonHelper; @@ -12,7 +11,7 @@ namespace TeeJee.GtkHelper{ using Gtk; // messages ---------------------------------------- - + public void show_err_log(Gtk.Window parent, bool disable_log = true){ if ((err_log != null) && (err_log.length > 0)){ gtk_messagebox(_("Error"), err_log, parent, true); @@ -22,7 +21,7 @@ namespace TeeJee.GtkHelper{ err_log_disable(); } } - + public void gtk_do_events (){ /* Do pending events */ @@ -31,28 +30,6 @@ namespace TeeJee.GtkHelper{ Gtk.main_iteration (); } - public void gtk_set_busy (bool busy, Gtk.Window win) { - - /* Show or hide busy cursor on window */ - - Gdk.Cursor? cursor = null; - - if (busy){ - cursor = new Gdk.Cursor(Gdk.CursorType.WATCH); - } - else{ - cursor = new Gdk.Cursor(Gdk.CursorType.ARROW); - } - - var window = win.get_window (); - - if (window != null) { - window.set_cursor (cursor); - } - - gtk_do_events (); - } - public void gtk_messagebox( string title, string message, Gtk.Window? parent_win, bool is_error = false){ @@ -71,154 +48,8 @@ namespace TeeJee.GtkHelper{ dlg.destroy(); } - public string? gtk_inputbox( - string title, string message, Gtk.Window? parent_win, bool mask_password = false){ - - /* Shows a simple input prompt */ - - //vbox_main - Gtk.Box vbox_main = new Box (Orientation.VERTICAL, 0); - vbox_main.margin = 0; - - //lbl_input - Gtk.Label lbl_input = new Gtk.Label(title); - lbl_input.xalign = (float) 0.0; - lbl_input.label = message; - - //txt_input - Gtk.Entry txt_input = new Gtk.Entry(); - txt_input.margin_top = 3; - txt_input.set_visibility(!mask_password); - - //create dialog - var dlg = new Gtk.Dialog.with_buttons(title, parent_win, DialogFlags.MODAL, null); - dlg.title = title; - dlg.set_default_size (300, -1); - if (parent_win != null){ - dlg.set_transient_for(parent_win); - dlg.set_modal(true); - } - - //add widgets - var content = (Box) dlg.get_content_area (); - vbox_main.pack_start (lbl_input, false, true, 0); - vbox_main.pack_start (txt_input, false, true, 0); - content.add(vbox_main); - content.margin = 6; - - //add buttons - var actions = (Box) dlg.get_action_area (); - dlg.add_button(_("OK"),Gtk.ResponseType.OK); - dlg.add_button(_("Cancel"),Gtk.ResponseType.CANCEL); - //actions.margin = 6; - actions.margin_top = 12; - - //keyboard shortcuts - txt_input.key_press_event.connect ((w, event) => { - if (event.keyval == 65293) { - dlg.response(Gtk.ResponseType.OK); - return true; - } - return false; - }); - - dlg.show_all(); - int response = dlg.run(); - string input_text = txt_input.text; - dlg.destroy(); - - if (response == Gtk.ResponseType.CANCEL){ - return null; - } - else{ - return input_text; - } - } - - public void wait_and_close_window(int milliseconds, Gtk.Window window){ - gtk_do_events(); - int millis = 0; - while(millis < milliseconds){ - sleep(200); - millis += 200; - gtk_do_events(); - } - window.destroy(); - } - - // combo ------------------------------------ - - public bool gtk_combobox_set_value (ComboBox combo, int index, string val){ - - /* Conveniance function to set combobox value */ - - TreeIter iter; - string comboVal; - TreeModel model = (TreeModel) combo.model; - - bool iterExists = model.get_iter_first (out iter); - while (iterExists){ - model.get(iter, 1, out comboVal); - if (comboVal == val){ - combo.set_active_iter(iter); - return true; - } - iterExists = model.iter_next (ref iter); - } - - return false; - } - - public string gtk_combobox_get_value (ComboBox combo, int index, string default_value){ - - /* Conveniance function to get combobox value */ - - if ((combo.model == null) || (combo.active < 0)) { return default_value; } - - TreeIter iter; - string val = ""; - combo.get_active_iter (out iter); - TreeModel model = (TreeModel) combo.model; - model.get(iter, index, out val); - - return val; - } - - public GLib.Object gtk_combobox_get_selected_object ( - ComboBox combo, - int index, - GLib.Object default_value){ - - /* Conveniance function to get combobox value */ - - if ((combo.model == null) || (combo.active < 0)) { return default_value; } - - TreeIter iter; - GLib.Object val = null; - combo.get_active_iter (out iter); - TreeModel model = (TreeModel) combo.model; - model.get(iter, index, out val); - - return val; - } - - public int gtk_combobox_get_value_enum (ComboBox combo, int index, int default_value){ - - /* Conveniance function to get combobox value */ - - if ((combo.model == null) || (combo.active < 0)) { return default_value; } - - TreeIter iter; - int val; - combo.get_active_iter (out iter); - TreeModel model = (TreeModel) combo.model; - model.get(iter, index, out val); - - return val; - } - // icon ---------------------------------------------- - + public Gdk.Pixbuf? get_app_icon(int icon_size, string format = ".png"){ var img_icon = get_shared_icon(BRANDING_SHORTNAME, BRANDING_SHORTNAME + format,icon_size,"pixmaps"); if (img_icon != null){ @@ -234,13 +65,13 @@ namespace TeeJee.GtkHelper{ string fallback_icon_file_name, int icon_size, string icon_directory = ICON_DIR + "/images"){ - + Gdk.Pixbuf pix_icon = null; Gtk.Image img_icon = null; try { Gtk.IconTheme icon_theme = Gtk.IconTheme.get_default(); - + pix_icon = icon_theme.load_icon_for_scale ( icon_name, Gtk.IconSize.MENU, icon_size, Gtk.IconLookupFlags.FORCE_SIZE); @@ -272,157 +103,10 @@ namespace TeeJee.GtkHelper{ string fallback_file_name, int icon_size, string icon_directory = ICON_DIR + "/images"){ - + var img = get_shared_icon(icon_name, fallback_file_name, icon_size, icon_directory); var pixbuf = (img == null) ? null : img.pixbuf; return pixbuf; } - // styles ---------------- - - public static int CSS_AUTO_CLASS_INDEX = 0; - public static void gtk_apply_css(Gtk.Widget[] widgets, string css_style){ - var css_provider = new Gtk.CssProvider(); - var css = ".style_%d { %s }".printf(++CSS_AUTO_CLASS_INDEX, css_style); - try { - css_provider.load_from_data(css,-1); - } catch (GLib.Error e) { - warning(e.message); - } - - foreach(var widget in widgets){ - - widget.get_style_context().add_provider( - css_provider, Gtk.STYLE_PROVIDER_PRIORITY_APPLICATION); - - widget.get_style_context().add_class("style_%d".printf(CSS_AUTO_CLASS_INDEX)); - } - } - - // treeview ----------------- - - public int gtk_treeview_model_count(TreeModel model){ - int count = 0; - TreeIter iter; - if (model.get_iter_first(out iter)){ - count++; - while(model.iter_next(ref iter)){ - count++; - } - } - return count; - } - - public void gtk_stripe_row( - Gtk.CellRenderer cell, - bool odd_row, - string odd_color = "#F4F6F7", - string even_color = "#FFFFFF"){ - - if (cell is Gtk.CellRendererText){ - (cell as Gtk.CellRendererText).background = odd_row ? odd_color : even_color; - } - else if (cell is Gtk.CellRendererPixbuf){ - (cell as Gtk.CellRendererPixbuf).cell_background = odd_row ? odd_color : even_color; - } - } - - public void gtk_treeview_redraw(Gtk.TreeView treeview){ - var model = treeview.model; - treeview.model = null; - treeview.model = model; - } - - // menu - - public void gtk_menu_add_separator(Gtk.Menu menu){ - Gdk.RGBA gray = Gdk.RGBA(); - gray.parse ("rgba(200,200,200,1)"); - - // separator - var menu_item = new Gtk.SeparatorMenuItem(); - menu_item.override_color (StateFlags.NORMAL, gray); - menu.append(menu_item); - } - - public Gtk.MenuItem gtk_menu_add_item( - Gtk.Menu menu, - string label, - string tooltip, - Gtk.Image? icon_image, - Gtk.SizeGroup? sg_icon = null, - Gtk.SizeGroup? sg_label = null){ - - var menu_item = new Gtk.MenuItem(); - menu.append(menu_item); - - var box = new Gtk.Box(Orientation.HORIZONTAL, 3); - menu_item.add(box); - - // add icon - - if (icon_image == null){ - var dummy = new Gtk.Label(""); - box.add(dummy); - - if (sg_icon != null){ - sg_icon.add_widget(dummy); - } - } - else{ - box.add(icon_image); - - if (sg_icon != null){ - sg_icon.add_widget(icon_image); - } - } - - // add label - - var lbl = new Gtk.Label(label); - lbl.xalign = (float) 0.0; - lbl.margin_right = 6; - box.add(lbl); - - if (sg_label != null){ - sg_label.add_widget(lbl); - } - - box.set_tooltip_text(tooltip); - - return menu_item; - } - - // build ui - - public Gtk.Label gtk_box_add_header(Gtk.Box box, string text){ - var label = new Gtk.Label("" + text + ""); - label.set_use_markup(true); - label.xalign = (float) 0.0; - label.margin_bottom = 6; - box.add(label); - - return label; - } - - public int get_display_width(){ - return Gdk.Screen.get_default().get_width(); - } - - public int get_display_height(){ - return Gdk.Screen.get_default().get_height(); - } - - // misc - - public bool gtk_container_has_child(Gtk.Container container, Gtk.Widget widget){ - foreach(var child in container.get_children()){ - if (child == widget){ - return true; - } - } - return false; - } - } - diff --git a/src/Utility/TeeJee.FileSystem.vala b/src/Utility/TeeJee.FileSystem.vala index 2366c3b4..40ad990a 100644 --- a/src/Utility/TeeJee.FileSystem.vala +++ b/src/Utility/TeeJee.FileSystem.vala @@ -714,24 +714,6 @@ namespace TeeJee.FileSystem{ return false; } -/* - // hashing ----------- - private string hash_md5(string path){ - Checksum checksum = new Checksum (ChecksumType.MD5); - FileStream stream = FileStream.open (path, "rb"); - - uint8 fbuf[100]; - size_t size; - while ((size = stream.read (fbuf)) > 0){ - checksum.update (fbuf, size); - } - - unowned string digest = checksum.get_string(); - - return digest; - } -*/ - // misc -------------------- public string format_file_size ( diff --git a/src/Utility/TeeJee.Misc.vala b/src/Utility/TeeJee.Misc.vala index e84e8a12..3416805e 100644 --- a/src/Utility/TeeJee.Misc.vala +++ b/src/Utility/TeeJee.Misc.vala @@ -254,49 +254,6 @@ namespace TeeJee.Misc { return random; } -/* - private string pad_numbers_in_string( - string input, int max_length = 3, char pad_char = '0'){ - - string sequence = ""; - string output = ""; - bool seq_started = false; - - unichar c; - string character; - for (int i = 0; input.get_next_char(ref i, out c);) { - character = c.to_string(); - - if (c.isdigit()){ - sequence += character; - seq_started = true; - } - else{ - if (seq_started){ - if ((max_length - sequence.length) > 0){ - sequence = string.nfill(max_length - sequence.length, pad_char) + sequence; - } - output += sequence; - sequence = ""; - seq_started = false; - } - - output += character; - } - } - - //append remaining characters in sequence - if (sequence.length > 0){ - if ((max_length - sequence.length) > 0){ - sequence = string.nfill(max_length - sequence.length, pad_char) + sequence; - } - output += sequence; - sequence = ""; - } - - return output; - } -*/ public bool is_numeric(string text){ for (int i = 0; i < text.length; i++){ if (!text[i].isdigit()){ @@ -342,23 +299,6 @@ namespace TeeJee.Misc { double length_remaining = length - length_complete; - double length_partial = length - length_remaining - Math.floor(length_complete); - - //double length_char = 1.0 / length; - - //var partial_chars = new string[] { " ", "▏","▎","▍","▌","▋","▊","▉","█" }; - - int partial_index = (int) (length_partial * 8.0); - - if (partial_index < 0){ - partial_index = 0; - } - else if (partial_index > 8){ - partial_index = 8; - } - - //var char_partial = partial_chars[partial_index]; - if (length_complete > 0){ for(int i = 0; i < length_complete; i++){ txt += "▓"; @@ -375,9 +315,6 @@ namespace TeeJee.Misc { stdout.printf("\r%s".printf(txt)); - //stdout.printf("com: %f, rem: %f, part: %f, char_partial='%s', index=%d".printf( - //length_complete, length_remaining, length_partial, char_partial, partial_index)); - stdout.flush(); } From 633ecc7d58d689f378e3ab12e4832a278ec6115b Mon Sep 17 00:00:00 2001 From: Carlos Cesar Caballero Diaz Date: Tue, 2 Jul 2019 23:02:52 -0400 Subject: [PATCH 040/567] allow usage behind proxy --- src/Gtk/MainWindow.vala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Gtk/MainWindow.vala b/src/Gtk/MainWindow.vala index 3bbf6b67..9d5f8290 100644 --- a/src/Gtk/MainWindow.vala +++ b/src/Gtk/MainWindow.vala @@ -442,7 +442,7 @@ public class MainWindow : Gtk.Window{ }); string sh = ""; - sh += "pkexec env DISPLAY=$DISPLAY XAUTHORITY=$XAUTHORITY "; + sh += "pkexec env DISPLAY=$DISPLAY XAUTHORITY=$XAUTHORITY http_proxy=$http_proxy https_proxy=$https_proxy HTTP_PROXY=$HTTP_PROXY HTTPS_PROXY=$HTTPS_PROXY "; sh += BRANDING_SHORTNAME+" --user "+App.user_login; if (LOG_DEBUG){ sh += " --debug"; From dbb06a61d8f71c4283a0effcd521c8fed67b0b64 Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Fri, 9 Aug 2019 18:46:51 -0400 Subject: [PATCH 041/567] ukraine po --- po/uk.po | 698 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 698 insertions(+) create mode 100644 po/uk.po diff --git a/po/uk.po b/po/uk.po new file mode 100644 index 00000000..53fb7d8c --- /dev/null +++ b/po/uk.po @@ -0,0 +1,698 @@ +# Russian translation for ukuu +# Copyright (c) 2016 Rosetta Contributors and Canonical Ltd 2016 +# This file is distributed under the same license as the ukuu package. +# FIRST AUTHOR , 2016. +# +msgid "" +msgstr "" +"Project-Id-Version: ukuu\n" +"Report-Msgid-Bugs-To: bw.aljex@gmail.com\n" +"POT-Creation-Date: 2019-07-25 02:06+0300\n" +"PO-Revision-Date: 2019-07-25 11:00+0300\n" +"Last-Translator: Serhii Golovko \n" +"Language-Team: Ukranian \n" +"Language: uk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2016-12-13 11:48+0000\n" +"X-Generator: Poedit 2.2.1\n" + +#: src/Gtk/MainWindow.vala:496 +msgid "About" +msgstr "Про программу" + +#: src/Console/AppConsole.vala:114 +msgid "Admin access is required for running this application." +msgstr "Для запуску програми потрібно мати права адміністратора." + +#: src/Utility/AppLock.vala:51 +msgid "Another instance of this application is running" +msgstr "Запущено інший екземпляр програми" + +#: src/Common/LinuxKernel.vala:105 +msgid "Architecture" +msgstr "Системна архитектура" + +#: src/Utility/Gtk/AboutWindow.vala:338 +#, c-format +msgid "Artists" +msgstr "Художники" + +#: src/Console/AppConsole.vala:101 +msgid "Assume Yes for all prompts (non-interactive mode)" +msgstr "Припустимо, так для всіх підказок (неінтерактивний режим)" + +#: src/Utility/Gtk/AboutWindow.vala:314 +#, c-format +msgid "Authors" +msgstr "Автори" + +#: src/Common/LinuxKernel.vala:1152 +msgid "Available Kernels" +msgstr "Доступні ядра" + +#: src/Utility/Gtk/AboutWindow.vala:285 +msgid "Back" +msgstr "Назад" + +#: src/Console/AppConsole.vala:204 src/Gtk/AppGtk.vala:110 +msgid "Cache" +msgstr "Кеш" + +#: src/Utility/Gtk/CustomMessageDialog.vala:155 src/Gtk/ProgressWindow.vala:145 +#: src/Gtk/UpdateNotificationWindow.vala:167 src/Gtk/TerminalWindow.vala:149 +msgid "Cancel" +msgstr "Відміна" + +#: src/Gtk/MainWindow.vala:464 +msgid "Changes" +msgstr "Зміни" + +#: src/Gtk/SettingsDialog.vala:121 +msgid "Check every" +msgstr "Перевіряти кожні" + +#: src/Console/AppConsole.vala:85 +msgid "Check for kernel updates" +msgstr "Перевірити оновлення ядра" + +#: src/Console/AppConsole.vala:86 +msgid "Check for kernel updates and notify current user" +msgstr "Перевірте наявність оновлень ядра та повідомте поточного користувача" + +#: src/Utility/Gtk/AboutWindow.vala:295 src/Gtk/TerminalWindow.vala:159 +msgid "Close" +msgstr "Закрити" + +#: src/Console/AppConsole.vala:341 +msgid "Command not specified" +msgstr "Команда не вказана" + +#: src/Console/AppConsole.vala:83 +msgid "Commands" +msgstr "Команди" + +#: src/Common/Main.vala:105 +msgid "Commands listed below are not available on this system" +msgstr "Команди перераховані нижче недоступні на цій системі" + +#: src/Common/LinuxKernel.vala:737 +#, c-format +msgid "Continue ?" +msgstr "Продовжувати ?" + +#: src/Utility/Gtk/AboutWindow.vala:322 +#, c-format +msgid "Contributions" +msgstr "Внески" + +#: src/Common/LinuxKernel.vala:721 +msgid "Could not find any kernels to remove" +msgstr "Не вдалося знайти жодне ядро ​​для видалення" + +#: src/Console/AppConsole.vala:309 src/Gtk/MainWindow.vala:100 +msgid "Could not find requested version" +msgstr "Не вдалося знайти запитувану версію" + +#: src/Common/LinuxKernel.vala:715 +msgid "Could not find running kernel in list!" +msgstr "Не вдалося знайти запущене ядро ​​у списку!" + +#: src/Utility/TeeJee.FileSystem.vala:349 +#: src/Utility/TeeJee.FileSystem.vala:352 +#: src/Utility/TeeJee.FileSystem.vala:378 +msgid "Created directory" +msgstr "Використовувана кеш-папка" + +#: src/Utility/Gtk/AboutWindow.vala:272 src/Utility/Gtk/AboutWindow.vala:289 +msgid "Credits" +msgstr "Творці" + +#: src/Gtk/SettingsDialog.vala:154 +msgid "Day(s)" +msgstr "День(днів)" + +#: src/Utility/TeeJee.FileSystem.vala:375 +msgid "Deleted directory" +msgstr "Видалений каталог" + +#: src/Utility/TeeJee.FileSystem.vala:509 +msgid "Dir not found" +msgstr "Тека не знайдена" + +#: src/Gtk/SettingsDialog.vala:161 +msgid "Display" +msgstr "Вид" + +#: src/Common/LinuxKernel.vala:91 +msgid "Distribution" +msgstr "Дистрибутив" + +#: src/Utility/Gtk/AboutWindow.vala:354 +#, c-format +msgid "Documenters" +msgstr "Укладачі документації" + +#: src/Console/AppConsole.vala:94 +msgid "Download packages for specified kernel" +msgstr "Завантажити пакети для зазначеного ядра" + +#: src/Common/LinuxKernel.vala:1198 +#, c-format +msgid "Downloading" +msgstr "Завантаження" + +#: src/Utility/TeeJee.Logging.vala:89 +msgid "E" +msgstr "E" + +#: src/Common/LinuxKernel.vala:1226 +#, c-format +msgid "ERROR" +msgstr "ПОМИЛКА" + +#: src/Utility/Gtk/GtkHelper.vala:17 +msgid "Error" +msgstr "Помилка" + +#: src/Utility/TeeJee.FileSystem.vala:221 +msgid "Failed to copy file" +msgstr "Не вдалося скопіювати файл" + +#: src/Utility/TeeJee.FileSystem.vala:359 +msgid "Failed to create dir" +msgstr "Не вдалося створити теку" + +#: src/Utility/TeeJee.FileSystem.vala:106 +msgid "Failed to delete file" +msgstr "Не вдалося видалити файл" + +#: src/Utility/TeeJee.FileSystem.vala:253 +msgid "Failed to move file" +msgstr "Не вдалося перемістити файл" + +#: src/Utility/TeeJee.FileSystem.vala:162 +msgid "Failed to read file" +msgstr "Не вдалося прочитати файл" + +#: src/Utility/TeeJee.FileSystem.vala:197 +msgid "Failed to write file" +msgstr "Не вдалося записати файл" + +#: src/Common/LinuxKernel.vala:396 +msgid "Fetching index from kernel.ubuntu.com..." +msgstr "Отримання відомостей з kernel.ubuntu.com..." + +#: src/Common/LinuxKernel.vala:353 +msgid "Fetching index..." +msgstr "Отримання індекса ..." + +#: src/Utility/TeeJee.FileSystem.vala:210 +#: src/Utility/TeeJee.FileSystem.vala:213 +msgid "File copied" +msgstr "Не вдалося скопіювати файл" + +#: src/Utility/TeeJee.FileSystem.vala:97 src/Utility/TeeJee.FileSystem.vala:100 +msgid "File deleted" +msgstr "Не вдалося видалити файл" + +#: src/Utility/TeeJee.FileSystem.vala:662 +#: src/Utility/TeeJee.FileSystem.vala:711 +msgid "File is missing" +msgstr "Файл відсутній" + +#: src/Utility/TeeJee.FileSystem.vala:245 +#: src/Utility/TeeJee.FileSystem.vala:248 +msgid "File moved" +msgstr "Видалити" + +#: src/Utility/TeeJee.FileSystem.vala:231 +#: src/Utility/TeeJee.FileSystem.vala:538 +msgid "File not found" +msgstr "Файл не знайдено" + +#: src/Common/Package.vala:126 src/Common/Package.vala:188 +#, c-format +msgid "File not found: %s" +msgstr "Файл не знайдено: %s" + +#: src/Utility/TeeJee.FileSystem.vala:187 +#: src/Utility/TeeJee.FileSystem.vala:190 +msgid "File saved" +msgstr "Файл збережено" + +#: src/Gtk/SettingsDialog.vala:180 +msgid "Hide kernels older than 4.0" +msgstr "Приховати ядра старіши версії 4.0" + +#: src/Gtk/SettingsDialog.vala:169 +msgid "Hide unstable and RC releases" +msgstr "Приховати нестабільні і реліз-кандидат версії" + +#: src/Gtk/SettingsDialog.vala:152 +msgid "Hour(s)" +msgstr "Година(дин)" + +#: src/Gtk/UpdateNotificationWindow.vala:168 +msgid "Ignore this update" +msgstr "Ігнорувати це оновлення" + +#: src/Common/LinuxKernel.vala:259 +msgid "Index is fresh" +msgstr "Відомості актуальні" + +#: src/Common/LinuxKernel.vala:256 +msgid "Index is stale" +msgstr "Відомості застаріли" + +#: src/Gtk/MainWindow.vala:359 src/Gtk/UpdateNotificationWindow.vala:147 +msgid "Install" +msgstr "Встановити" + +#: src/Common/LinuxKernel.vala:794 +#, c-format +msgid "Install Linux v%s ? (y/n): " +msgstr "Встановити Linux v% s? (так/ні): " + +#: src/Console/AppConsole.vala:89 +msgid "Install latest mainline kernel" +msgstr "Встановити зазначену гілку ядра" + +#: src/Console/AppConsole.vala:90 +msgid "Install latest point update for current series" +msgstr "Встановіть останню точку оновлення для поточної серії" + +#: src/Console/AppConsole.vala:91 +msgid "Install specified mainline kernel" +msgstr "Встановити зазначену гілку ядра" + +#: src/Gtk/UpdateNotificationWindow.vala:148 +msgid "Install this kernel" +msgstr "Встановити це ядро" + +#: src/Common/LinuxKernel.vala:1272 +msgid "Installation completed with errors" +msgstr "Установка завершена з помилками" + +#: src/Common/LinuxKernel.vala:1269 +msgid "Installation completed. A reboot is required to use the new kernel." +msgstr "" +"Установка завершена. Обов'язково виконайте перезавантаження, щоб " +"використовувати нове ядро." + +#: src/Common/LinuxKernel.vala:1169 src/Gtk/MainWindow.vala:208 +msgid "Installed" +msgstr "Встановлено" + +#: src/Utility/TeeJee.System.vala:281 src/Gtk/MainWindow.vala:350 +#: src/Gtk/MainWindow.vala:550 src/Gtk/MainWindow.vala:686 +msgid "Internet connection is not active" +msgstr "Інтернет з'єднання не активно" + +#: src/Gtk/SettingsDialog.vala:212 +msgid "Internet connection timeout in " +msgstr "Час очікування підключення до Інтернету в " + +#: src/Gtk/MainWindow.vala:150 +msgid "Kernel" +msgstr "Ядро" + +#: src/Gtk/MainWindow.vala:534 +msgid "Kernel upgrade utility for Ubuntu-based distributions" +msgstr "Програма оновлення ядра для дистрибутивів на базі Ubuntu" + +#: src/Console/AppConsole.vala:367 src/Common/LinuxKernel.vala:776 +#, c-format +msgid "Latest point update" +msgstr "Остання точка оновлення" + +#: src/Console/AppConsole.vala:360 src/Common/LinuxKernel.vala:765 +#, c-format +msgid "Latest update" +msgstr "Останнє оновлення" + +#: src/Console/AppConsole.vala:87 +msgid "List all available mainline kernels" +msgstr "Список всіх доступних основних ядер" + +#: src/Gtk/UpdateNotificationWindow.vala:158 +msgid "List available kernels" +msgstr "Список всіх доступних основних ядер" + +#: src/Console/AppConsole.vala:88 +msgid "List installed kernels" +msgstr "Список всіх доступних основних ядер" + +#: src/Utility/Gtk/GtkHelper.vala:93 +msgid "Missing Icon" +msgstr "Нема значка" + +#: src/Gtk/MainWindow.vala:368 +msgid "Multiple Kernels Selected" +msgstr "Вибрано кілька ядер" + +#: src/Console/AppConsole.vala:291 +msgid "Multiple kernels selected for installation. Select only one." +msgstr "Для встановлення вибрано кілька ядер. Виберіть лише одну." + +#: src/Utility/Gtk/CustomMessageDialog.vala:160 +msgid "No" +msgstr "Ні" + +#: src/Gtk/MainWindow.vala:350 src/Gtk/MainWindow.vala:550 +#: src/Gtk/MainWindow.vala:686 +msgid "No Internet" +msgstr "Інтернету немає" + +#: src/Console/AppConsole.vala:285 src/Console/AppConsole.vala:322 +msgid "No kernels specified" +msgstr "Ядра не вказані" + +#: src/Console/AppConsole.vala:372 src/Console/AppConsole.vala:430 +#: src/Common/LinuxKernel.vala:784 src/Gtk/MainWindow.vala:796 +msgid "No updates found" +msgstr "Оновлень не знайдено" + +#: src/Gtk/MainWindow.vala:371 src/Gtk/MainWindow.vala:382 +msgid "Not Selected" +msgstr "Не вибрано" + +#: src/Gtk/SettingsDialog.vala:66 +msgid "Notification" +msgstr "Повідомлення" + +#: src/Gtk/SettingsDialog.vala:73 +msgid "Notify if a major release is available" +msgstr "Повідомити, чи доступний великий випуск" + +#: src/Gtk/SettingsDialog.vala:84 +msgid "Notify if a point release is available" +msgstr "Повідомити, чи доступний невеликий випуск" + +#: src/Utility/Gtk/CustomMessageDialog.vala:150 +#: src/Utility/Gtk/CustomMessageDialog.vala:154 +#: src/Common/LinuxKernel.vala:1217 +#, c-format +msgid "OK" +msgstr "OK" + +#: src/Console/AppConsole.vala:98 src/Gtk/AppGtk.vala:181 +msgid "Options" +msgstr "Параметри" + +#: src/Gtk/SettingsDialog.vala:191 +msgid "Other" +msgstr "Інший" + +#: src/Common/LinuxKernel.vala:1060 +#, c-format +msgid "Packages Available" +msgstr "Доступні пакети" + +#: src/Common/LinuxKernel.vala:1068 +#, c-format +msgid "Packages Installed" +msgstr "Встановлені пакети" + +#: src/Common/Main.vala:106 +msgid "Please install required packages and try again" +msgstr "Встановити необхідні пакети і спробуйте знову" + +#: src/Common/LinuxKernel.vala:1293 +msgid "Preparing to remove selected kernels" +msgstr "Підготовка до видалення вибраних ядер" + +#: src/Gtk/AppGtk.vala:183 +msgid "Print debug information" +msgstr "Роздрукувати зневадження" + +#: src/Gtk/MainWindow.vala:425 +msgid "Purge" +msgstr "Чистити" + +#: src/Gtk/MainWindow.vala:343 +msgid "Refresh" +msgstr "Оновити" + +#: src/Gtk/MainWindow.vala:569 +msgid "Refreshing..." +msgstr "Оновлення..." + +#: src/Gtk/MainWindow.vala:376 +msgid "Remove" +msgstr "Видалити" + +#: src/Console/AppConsole.vala:95 src/Console/AppConsole.vala:100 +msgid "Remove files from application cache" +msgstr "Видалити файли з кешу програми" + +#: src/Console/AppConsole.vala:93 src/Gtk/MainWindow.vala:426 +msgid "Remove installed kernels older than running kernel" +msgstr "Видаліть встановлені ядра, старші за запущене" + +#: src/Console/AppConsole.vala:92 +msgid "Remove specified kernel" +msgstr "Видаліть вказане ядро" + +#: src/Console/AppConsole.vala:199 src/Console/AppConsole.vala:313 +#: src/Console/AppConsole.vala:342 +msgid "Run '" +msgstr "Запуск" + +#: src/Console/AppConsole.vala:117 +msgid "Run the application as admin with pkexec or sudo." +msgstr "Запустіть додаток як адміністратор за допомогою pkexec або sudo." + +#: src/Common/LinuxKernel.vala:1169 src/Gtk/MainWindow.vala:208 +msgid "Running" +msgstr "Використовується" + +#: src/Gtk/MainWindow.vala:368 +msgid "Select a single kernel to install" +msgstr "Виберіть одне ядро ​​для встановлення" + +#: src/Gtk/MainWindow.vala:371 +msgid "Select the kernel to install" +msgstr "Виберіть ядро ​​для встановлення" + +#: src/Gtk/MainWindow.vala:382 +msgid "Select the kernels to remove" +msgstr "Виберіть ядра для видалення" + +#: src/Common/LinuxKernel.vala:1288 +msgid "" +"Selected kernel is currently running and cannot be removed.\n" +" Install another kernel before removing this one." +msgstr "" +"Це ядро ​​зараз працює і не може бути видалено. \n" +"Встановіть інше ядро, перш ніж видаляти його." + +#: src/Gtk/MainWindow.vala:475 src/Gtk/SettingsDialog.vala:56 +msgid "Settings" +msgstr "Налаштування" + +#: src/Gtk/UpdateNotificationWindow.vala:157 +msgid "Show" +msgstr "Показати" + +#: src/Gtk/AppGtk.vala:184 +msgid "Show all options" +msgstr "Показати усі параметри" + +#: src/Gtk/SettingsDialog.vala:95 +msgid "Show notification bubble on desktop" +msgstr "Показувати вікно сповіщень на робочому столі" + +#: src/Gtk/SettingsDialog.vala:106 +msgid "Show notification dialog" +msgstr "Показувати вікно сповіщень" + +#: src/Console/AppConsole.vala:96 +msgid "Show unstable and RC releases" +msgstr "Приховати нестабільні і реліз-кандидат версії" + +#: src/Gtk/SettingsDialog.vala:199 +msgid "Skip internet connection check" +msgstr "Пропустити перевірку підключення до Інтернету" + +#: src/Gtk/MainWindow.vala:196 +msgid "Status" +msgstr "Стан" + +#: src/Utility/TeeJee.Process.vala:513 +msgid "Stopped" +msgstr "Зупинено" + +#: src/Console/AppConsole.vala:81 src/Gtk/AppGtk.vala:179 +msgid "Syntax" +msgstr "Синтаксис" + +#: src/Console/AppConsole.vala:205 src/Gtk/AppGtk.vala:111 +msgid "Temp" +msgstr "Темп" + +#: src/Common/LinuxKernel.vala:730 +#, c-format +msgid "The following kernels will be removed:" +msgstr "Наступні ядра будуть видалені:" + +#: src/Utility/Gtk/AboutWindow.vala:330 +#, c-format +msgid "Third Party Tools" +msgstr "Сторонние инструменты" + +#: src/Common/LinuxKernel.vala:1240 src/Gtk/MainWindow.vala:681 +msgid "This kernel is already installed." +msgstr "Это ядро уже установлено." + +#: src/Common/LinuxKernel.vala:1341 +msgid "" +"This kernel is currently running and cannot be removed.\n" +" Install another kernel before removing this one." +msgstr "" +"Это ядро в настоящий момент работает и не может быть удалено.\n" +" Установите другое ядро, прежде чем удалять его." + +#: src/Utility/Gtk/AboutWindow.vala:346 +#, c-format +msgid "Translators" +msgstr "Перекладачи" + +#: src/Common/LinuxKernel.vala:1325 src/Common/LinuxKernel.vala:1378 +msgid "Un-install completed" +msgstr "Удаление завершено" + +#: src/Common/LinuxKernel.vala:1328 src/Common/LinuxKernel.vala:1381 +msgid "Un-install completed with errors" +msgstr "Удаление завершено с ошибками" + +#: src/Console/AppConsole.vala:197 src/Gtk/AppGtk.vala:166 +msgid "Unknown option" +msgstr "Невідомий параметр" + +#: src/Gtk/MainWindow.vala:179 +msgid "Version" +msgstr "Версія" + +#: src/Utility/TeeJee.Logging.vala:89 +msgid "W" +msgstr "W" + +#: src/Gtk/SettingsDialog.vala:156 +msgid "Week(s)" +msgstr "Тиждень (ні)" + +#: src/Utility/Gtk/CustomMessageDialog.vala:159 +msgid "Yes" +msgstr "Так" + +#: src/Utility/AppLock.vala:56 +msgid "[Warning] Deleted invalid lock" +msgstr "[Увага] Вилучено неправильне блокування" + +#: src/Gtk/SettingsDialog.vala:226 +msgid "seconds" +msgstr "секунди" + +#~ msgid "GRUB Options" +#~ msgstr "Настройки GRUB" + +#~ msgid "" +#~ "Time (in seconds) to display the GRUB menu\n" +#~ "\n" +#~ "0 = Do not show menu\n" +#~ "-1 = Show indefinitely till user selects" +#~ msgstr "" +#~ "Время отображения меню GRUB (в секундах)\n" +#~ "\n" +#~ "0 = Не отображать меню\n" +#~ "-1 = Отображать до выбора пользователя" + +#~ msgid "" +#~ "Updates the GRUB menu after installing or removing kernels, so that the " +#~ "menu is displayed for 2 seconds at boot time. This will help you recover " +#~ "from a bad kernel update by selecting another kernel to boot. During " +#~ "boot, use the 'Advanced options for Ubuntu' menu entry to select another " +#~ "kernel.\n" +#~ "\n" +#~ "0 = Do not show menu\n" +#~ "-1 = Show indefinitely till user selects" +#~ msgstr "" +#~ "Обновляет меню GRUB после установки или удаления ядер, после чего оно " +#~ "отображается на 2 секунды после загрузки. Это даст возможность выбрать " +#~ "другое ядро после неудачного обновления. Во время загрузки выберите пункт " +#~ "меню 'Advanced options for Ubuntu' для запуска другого ядра.\n" +#~ "\n" +#~ "0 = Не отображать меню\n" +#~ "-1 = Отображать до выбора пользователя" + +#~ msgid "Updating GRUB menu" +#~ msgstr "Обновление меню GRUB" + +#~ msgid "Run 'ukuu --list' and use the version string listed in first column" +#~ msgstr "Выполните 'ukuu --list' и используйте версию из первого столбца" + +#~ msgid "" +#~ "Did you find this software useful?\n" +#~ "\n" +#~ "You can buy me a coffee or make a donation via PayPal to show your " +#~ "support. Or just drop me an email and say Hi. This application is " +#~ "completely free and will continue to remain that way. Your contributions " +#~ "will help in keeping this project alive and improving it further.\n" +#~ "\n" +#~ "Feel free to send me an email if you find any issues in this application " +#~ "or if you need any changes. Suggestions and feedback are always welcome.\n" +#~ "\n" +#~ "Thanks,\n" +#~ "Tony George\n" +#~ "(teejeetech@gmail.com)" +#~ msgstr "" +#~ "Считаете эту программу полезной?\n" +#~ "\n" +#~ "Вы можете купить мне кофе или сделать пожертвование с помощью PayPal, " +#~ "чтобы оказать поддержку. Или просто напишите мне письмо и скажите \"Привет" +#~ "\". Эта программа полностью бесплатна и будет оставаться таковой. Ваши " +#~ "пожертвования помогут поддержке и развитию проекта.\n" +#~ "\n" +#~ "Не стесняйтесь прислать мне письмо, если Вы найдете какие-то ошибки в " +#~ "программе, или если у Вас будут идеи по улучшению функциональности. " +#~ "Отзывы и предложения всегда приветствуются.\n" +#~ "\n" +#~ "Спасибо, ваш\n" +#~ "Tony George\n" +#~ "(teejeetech@gmail.com)" + +#~ msgid "Display GRUB menu during boot" +#~ msgstr "Отображать меню GRUB во время загрузки" + +#~ msgid "Donate" +#~ msgstr "Пожертвования" + +#~ msgid "Donate with Google Wallet" +#~ msgstr "Пожертвовать через Google Wallet" + +#~ msgid "Donate with PayPal" +#~ msgstr "Пожертвовать через PayPal" + +#~ msgid "Donations" +#~ msgstr "Спонсоры" + +#, fuzzy +#~ msgid "File read" +#~ msgstr "Не удалось прочитать файл" + +#~ msgid "Notify if kernel update is available" +#~ msgstr "Уведомлять, если доступно обновление ядра" + +#~ msgid "Send Email" +#~ msgstr "Отправить email" + +#~ msgid "Use specified user's cache directory" +#~ msgstr "Использовать указанную пользователем папку для кэша" + +#~ msgid "Using cache directory" +#~ msgstr "Используемая кэш-папка" + +#~ msgid "Visit Website" +#~ msgstr "Посетить сайт" From 99ff9268208d75f8089b65005fcc152a40146a73 Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Fri, 9 Aug 2019 18:51:39 -0400 Subject: [PATCH 042/567] ukraine po file from github:cappelikan --- po/es.po | 11 +++++------ po/fr.po | 11 +++++------ po/hr.po | 11 +++++------ po/messages.pot | 11 +++++------ po/nl.po | 11 +++++------ po/pl.po | 11 +++++------ po/ru.po | 11 +++++------ po/sv.po | 11 +++++------ po/tr.po | 11 +++++------ po/uk.po | 26 +++++++++++++------------- 10 files changed, 58 insertions(+), 67 deletions(-) diff --git a/po/es.po b/po/es.po index 4c2eaab9..116e8089 100644 --- a/po/es.po +++ b/po/es.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu\n" "Report-Msgid-Bugs-To: bw.aljex@gmail.com\n" -"POT-Creation-Date: 2019-04-01 11:08-0400\n" +"POT-Creation-Date: 2019-08-09 18:47-0400\n" "PO-Revision-Date: 2018-01-03 02:03-0600\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish\n" @@ -60,9 +60,8 @@ msgstr "Atrás" msgid "Cache" msgstr "Cache" -#: src/Gtk/ProgressWindow.vala:145 src/Gtk/TerminalWindow.vala:149 -#: src/Gtk/UpdateNotificationWindow.vala:167 -#: src/Utility/Gtk/CustomMessageDialog.vala:155 +#: src/Gtk/ProgressWindow.vala:145 src/Gtk/UpdateNotificationWindow.vala:167 +#: src/Gtk/TerminalWindow.vala:149 src/Utility/Gtk/CustomMessageDialog.vala:155 msgid "Cancel" msgstr "Cancelar" @@ -268,7 +267,7 @@ msgstr "El índice está al día" msgid "Index is stale" msgstr "El índice es obsoleto" -#: src/Gtk/MainWindow.vala:359 src/Gtk/UpdateNotificationWindow.vala:147 +#: src/Gtk/UpdateNotificationWindow.vala:147 src/Gtk/MainWindow.vala:359 msgid "Install" msgstr "Instalar" @@ -491,7 +490,7 @@ msgstr "" "El núcleo seleccionado está en ejecución y no puede desinstalarse.\n" "Instale otro núcleo antes de desinstalar este." -#: src/Gtk/MainWindow.vala:475 src/Gtk/SettingsDialog.vala:56 +#: src/Gtk/SettingsDialog.vala:56 src/Gtk/MainWindow.vala:475 msgid "Settings" msgstr "Configuración" diff --git a/po/fr.po b/po/fr.po index 3e58b8c6..36886143 100644 --- a/po/fr.po +++ b/po/fr.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu\n" "Report-Msgid-Bugs-To: bw.aljex@gmail.com\n" -"POT-Creation-Date: 2019-04-01 11:08-0400\n" +"POT-Creation-Date: 2019-08-09 18:47-0400\n" "PO-Revision-Date: 2018-08-05 15:50+0200\n" "Last-Translator: Yolateng0 \n" "Language-Team: French\n" @@ -60,9 +60,8 @@ msgstr "Retour" msgid "Cache" msgstr "" -#: src/Gtk/ProgressWindow.vala:145 src/Gtk/TerminalWindow.vala:149 -#: src/Gtk/UpdateNotificationWindow.vala:167 -#: src/Utility/Gtk/CustomMessageDialog.vala:155 +#: src/Gtk/ProgressWindow.vala:145 src/Gtk/UpdateNotificationWindow.vala:167 +#: src/Gtk/TerminalWindow.vala:149 src/Utility/Gtk/CustomMessageDialog.vala:155 msgid "Cancel" msgstr "Annuler" @@ -271,7 +270,7 @@ msgstr "L'index est à jour" msgid "Index is stale" msgstr "L'index est obsolète" -#: src/Gtk/MainWindow.vala:359 src/Gtk/UpdateNotificationWindow.vala:147 +#: src/Gtk/UpdateNotificationWindow.vala:147 src/Gtk/MainWindow.vala:359 msgid "Install" msgstr "Installer" @@ -501,7 +500,7 @@ msgstr "" "Ce noyau est en cours d'exécution et ne peut pas être supprimé.\n" " Installez un autre noyau avant de retirer celui-ci." -#: src/Gtk/MainWindow.vala:475 src/Gtk/SettingsDialog.vala:56 +#: src/Gtk/SettingsDialog.vala:56 src/Gtk/MainWindow.vala:475 msgid "Settings" msgstr "Paramètres" diff --git a/po/hr.po b/po/hr.po index 1436a5f4..59d08d53 100644 --- a/po/hr.po +++ b/po/hr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu\n" "Report-Msgid-Bugs-To: bw.aljex@gmail.com\n" -"POT-Creation-Date: 2019-04-01 11:08-0400\n" +"POT-Creation-Date: 2019-08-09 18:47-0400\n" "PO-Revision-Date: 2017-12-24 00:52+0100\n" "Last-Translator: gogo \n" "Language-Team: Croatian \n" @@ -61,9 +61,8 @@ msgstr "Natrag" msgid "Cache" msgstr "" -#: src/Gtk/ProgressWindow.vala:145 src/Gtk/TerminalWindow.vala:149 -#: src/Gtk/UpdateNotificationWindow.vala:167 -#: src/Utility/Gtk/CustomMessageDialog.vala:155 +#: src/Gtk/ProgressWindow.vala:145 src/Gtk/UpdateNotificationWindow.vala:167 +#: src/Gtk/TerminalWindow.vala:149 src/Utility/Gtk/CustomMessageDialog.vala:155 msgid "Cancel" msgstr "Odustani" @@ -271,7 +270,7 @@ msgstr "Sadržaj je osvježen" msgid "Index is stale" msgstr "Sadržaj je zastario" -#: src/Gtk/MainWindow.vala:359 src/Gtk/UpdateNotificationWindow.vala:147 +#: src/Gtk/UpdateNotificationWindow.vala:147 src/Gtk/MainWindow.vala:359 msgid "Install" msgstr "Instaliraj" @@ -497,7 +496,7 @@ msgstr "" "Odabrani kernel je trenutno pokernut i ne može se ukloniti.\n" " Instalirajte drugi kernel prije uklanjanja trenutnog kernela." -#: src/Gtk/MainWindow.vala:475 src/Gtk/SettingsDialog.vala:56 +#: src/Gtk/SettingsDialog.vala:56 src/Gtk/MainWindow.vala:475 msgid "Settings" msgstr "Postavke" diff --git a/po/messages.pot b/po/messages.pot index 965e9186..cee6208c 100644 --- a/po/messages.pot +++ b/po/messages.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline 1.0.1\n" "Report-Msgid-Bugs-To: bw.aljex@gmail.com\n" -"POT-Creation-Date: 2019-04-01 11:22-0400\n" +"POT-Creation-Date: 2019-08-09 18:47-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -59,9 +59,8 @@ msgstr "" msgid "Cache" msgstr "" -#: src/Gtk/ProgressWindow.vala:145 src/Gtk/TerminalWindow.vala:149 -#: src/Gtk/UpdateNotificationWindow.vala:167 -#: src/Utility/Gtk/CustomMessageDialog.vala:155 +#: src/Gtk/ProgressWindow.vala:145 src/Gtk/UpdateNotificationWindow.vala:167 +#: src/Gtk/TerminalWindow.vala:149 src/Utility/Gtk/CustomMessageDialog.vala:155 msgid "Cancel" msgstr "" @@ -266,7 +265,7 @@ msgstr "" msgid "Index is stale" msgstr "" -#: src/Gtk/MainWindow.vala:359 src/Gtk/UpdateNotificationWindow.vala:147 +#: src/Gtk/UpdateNotificationWindow.vala:147 src/Gtk/MainWindow.vala:359 msgid "Install" msgstr "" @@ -484,7 +483,7 @@ msgid "" " Install another kernel before removing this one." msgstr "" -#: src/Gtk/MainWindow.vala:475 src/Gtk/SettingsDialog.vala:56 +#: src/Gtk/SettingsDialog.vala:56 src/Gtk/MainWindow.vala:475 msgid "Settings" msgstr "" diff --git a/po/nl.po b/po/nl.po index be17805b..257b84f5 100644 --- a/po/nl.po +++ b/po/nl.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu 2.2\n" "Report-Msgid-Bugs-To: bw.aljex@gmail.com\n" -"POT-Creation-Date: 2019-04-01 11:08-0400\n" +"POT-Creation-Date: 2019-08-09 18:47-0400\n" "PO-Revision-Date: 2017-04-30 11:50+0200\n" "Last-Translator: Heimen Stoffels \n" "Language-Team: \n" @@ -62,9 +62,8 @@ msgstr "Terug" msgid "Cache" msgstr "" -#: src/Gtk/ProgressWindow.vala:145 src/Gtk/TerminalWindow.vala:149 -#: src/Gtk/UpdateNotificationWindow.vala:167 -#: src/Utility/Gtk/CustomMessageDialog.vala:155 +#: src/Gtk/ProgressWindow.vala:145 src/Gtk/UpdateNotificationWindow.vala:167 +#: src/Gtk/TerminalWindow.vala:149 src/Utility/Gtk/CustomMessageDialog.vala:155 msgid "Cancel" msgstr "Annuleren" @@ -272,7 +271,7 @@ msgstr "De index is up-to-date" msgid "Index is stale" msgstr "De index is verouderd" -#: src/Gtk/MainWindow.vala:359 src/Gtk/UpdateNotificationWindow.vala:147 +#: src/Gtk/UpdateNotificationWindow.vala:147 src/Gtk/MainWindow.vala:359 msgid "Install" msgstr "Installeren" @@ -503,7 +502,7 @@ msgstr "" "verwijderd.\n" " Installeer een andere kernel voordat u deze verwijdert." -#: src/Gtk/MainWindow.vala:475 src/Gtk/SettingsDialog.vala:56 +#: src/Gtk/SettingsDialog.vala:56 src/Gtk/MainWindow.vala:475 msgid "Settings" msgstr "Instellingen" diff --git a/po/pl.po b/po/pl.po index 412d32a1..4a43fc72 100644 --- a/po/pl.po +++ b/po/pl.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu\n" "Report-Msgid-Bugs-To: bw.aljex@gmail.com\n" -"POT-Creation-Date: 2019-04-01 11:08-0400\n" +"POT-Creation-Date: 2019-08-09 18:47-0400\n" "PO-Revision-Date: 2017-08-12 15:26+0200\n" "Last-Translator: \n" "Language-Team: Polish\n" @@ -59,9 +59,8 @@ msgstr "Wstecz" msgid "Cache" msgstr "" -#: src/Gtk/ProgressWindow.vala:145 src/Gtk/TerminalWindow.vala:149 -#: src/Gtk/UpdateNotificationWindow.vala:167 -#: src/Utility/Gtk/CustomMessageDialog.vala:155 +#: src/Gtk/ProgressWindow.vala:145 src/Gtk/UpdateNotificationWindow.vala:167 +#: src/Gtk/TerminalWindow.vala:149 src/Utility/Gtk/CustomMessageDialog.vala:155 msgid "Cancel" msgstr "Anuluj" @@ -269,7 +268,7 @@ msgstr "Indeks jest aktualny" msgid "Index is stale" msgstr "Indeks jest nieaktualny" -#: src/Gtk/MainWindow.vala:359 src/Gtk/UpdateNotificationWindow.vala:147 +#: src/Gtk/UpdateNotificationWindow.vala:147 src/Gtk/MainWindow.vala:359 msgid "Install" msgstr "Zainstaluj" @@ -497,7 +496,7 @@ msgstr "" "Wybrane jądro aktualnie działa i nie może zostać usunięte.\n" " Zainstaluj inne jądro przed usunięciem tego." -#: src/Gtk/MainWindow.vala:475 src/Gtk/SettingsDialog.vala:56 +#: src/Gtk/SettingsDialog.vala:56 src/Gtk/MainWindow.vala:475 msgid "Settings" msgstr "Ustawienia" diff --git a/po/ru.po b/po/ru.po index d583b240..085fc713 100644 --- a/po/ru.po +++ b/po/ru.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu\n" "Report-Msgid-Bugs-To: bw.aljex@gmail.com\n" -"POT-Creation-Date: 2019-04-01 11:08-0400\n" +"POT-Creation-Date: 2019-08-09 18:47-0400\n" "PO-Revision-Date: 2016-12-13 16:46+0300\n" "Last-Translator: Faust3000 \n" "Language-Team: Russian \n" @@ -61,9 +61,8 @@ msgstr "Назад" msgid "Cache" msgstr "" -#: src/Gtk/ProgressWindow.vala:145 src/Gtk/TerminalWindow.vala:149 -#: src/Gtk/UpdateNotificationWindow.vala:167 -#: src/Utility/Gtk/CustomMessageDialog.vala:155 +#: src/Gtk/ProgressWindow.vala:145 src/Gtk/UpdateNotificationWindow.vala:167 +#: src/Gtk/TerminalWindow.vala:149 src/Utility/Gtk/CustomMessageDialog.vala:155 msgid "Cancel" msgstr "Отмена" @@ -276,7 +275,7 @@ msgstr "Сведения актуальны" msgid "Index is stale" msgstr "Сведения устарели" -#: src/Gtk/MainWindow.vala:359 src/Gtk/UpdateNotificationWindow.vala:147 +#: src/Gtk/UpdateNotificationWindow.vala:147 src/Gtk/MainWindow.vala:359 msgid "Install" msgstr "Установить" @@ -505,7 +504,7 @@ msgstr "" "Это ядро в настоящий момент работает и не может быть удалено.\n" " Установите другое ядро, прежде чем удалять его." -#: src/Gtk/MainWindow.vala:475 src/Gtk/SettingsDialog.vala:56 +#: src/Gtk/SettingsDialog.vala:56 src/Gtk/MainWindow.vala:475 msgid "Settings" msgstr "Настройки" diff --git a/po/sv.po b/po/sv.po index af4a6eaf..530ba022 100644 --- a/po/sv.po +++ b/po/sv.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu 2.2\n" "Report-Msgid-Bugs-To: bw.aljex@gmail.com\n" -"POT-Creation-Date: 2019-04-01 11:08-0400\n" +"POT-Creation-Date: 2019-08-09 18:47-0400\n" "PO-Revision-Date: 2018-01-13 16:56+0100\n" "Last-Translator: Åke Engelbrektson \n" "Language-Team: Svenska Språkfiler \n" @@ -61,9 +61,8 @@ msgstr "Tillbaka" msgid "Cache" msgstr "" -#: src/Gtk/ProgressWindow.vala:145 src/Gtk/TerminalWindow.vala:149 -#: src/Gtk/UpdateNotificationWindow.vala:167 -#: src/Utility/Gtk/CustomMessageDialog.vala:155 +#: src/Gtk/ProgressWindow.vala:145 src/Gtk/UpdateNotificationWindow.vala:167 +#: src/Gtk/TerminalWindow.vala:149 src/Utility/Gtk/CustomMessageDialog.vala:155 msgid "Cancel" msgstr "Avbryt" @@ -272,7 +271,7 @@ msgstr "Index är uppdaterat" msgid "Index is stale" msgstr "Index är inaktuellt" -#: src/Gtk/MainWindow.vala:359 src/Gtk/UpdateNotificationWindow.vala:147 +#: src/Gtk/UpdateNotificationWindow.vala:147 src/Gtk/MainWindow.vala:359 msgid "Install" msgstr "Installera" @@ -496,7 +495,7 @@ msgstr "" "Denna kärna används för tillfället och kan inte tas bort.\n" "Installera en annan kärna innan du tar bort den här." -#: src/Gtk/MainWindow.vala:475 src/Gtk/SettingsDialog.vala:56 +#: src/Gtk/SettingsDialog.vala:56 src/Gtk/MainWindow.vala:475 msgid "Settings" msgstr "Inställningar" diff --git a/po/tr.po b/po/tr.po index 61accb3d..ca88a13d 100644 --- a/po/tr.po +++ b/po/tr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu\n" "Report-Msgid-Bugs-To: bw.aljex@gmail.com\n" -"POT-Creation-Date: 2019-04-01 11:08-0400\n" +"POT-Creation-Date: 2019-08-09 18:47-0400\n" "PO-Revision-Date: 2019-03-12 19:35+0300\n" "Last-Translator: Gökhan GÖKKAYA \n" "Language-Team: Turkish\n" @@ -60,9 +60,8 @@ msgstr "Geri" msgid "Cache" msgstr "Önbellek" -#: src/Gtk/ProgressWindow.vala:145 src/Gtk/TerminalWindow.vala:149 -#: src/Gtk/UpdateNotificationWindow.vala:167 -#: src/Utility/Gtk/CustomMessageDialog.vala:155 +#: src/Gtk/ProgressWindow.vala:145 src/Gtk/UpdateNotificationWindow.vala:167 +#: src/Gtk/TerminalWindow.vala:149 src/Utility/Gtk/CustomMessageDialog.vala:155 msgid "Cancel" msgstr "İptal" @@ -267,7 +266,7 @@ msgstr "İçerik listesi güncel" msgid "Index is stale" msgstr "İçerik listesi eski" -#: src/Gtk/MainWindow.vala:359 src/Gtk/UpdateNotificationWindow.vala:147 +#: src/Gtk/UpdateNotificationWindow.vala:147 src/Gtk/MainWindow.vala:359 msgid "Install" msgstr "Kur" @@ -489,7 +488,7 @@ msgstr "" "Seçilen çekirdek şu anda çalışıyor ve kaldırılamıyor.\n" " Bunu kaldırmadan önce başka bir çekirdek yükleyin." -#: src/Gtk/MainWindow.vala:475 src/Gtk/SettingsDialog.vala:56 +#: src/Gtk/SettingsDialog.vala:56 src/Gtk/MainWindow.vala:475 msgid "Settings" msgstr "Ayarlar" diff --git a/po/uk.po b/po/uk.po index 53fb7d8c..5373ad03 100644 --- a/po/uk.po +++ b/po/uk.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu\n" "Report-Msgid-Bugs-To: bw.aljex@gmail.com\n" -"POT-Creation-Date: 2019-07-25 02:06+0300\n" +"POT-Creation-Date: 2019-08-09 18:47-0400\n" "PO-Revision-Date: 2019-07-25 11:00+0300\n" "Last-Translator: Serhii Golovko \n" "Language-Team: Ukranian \n" @@ -60,8 +60,8 @@ msgstr "Назад" msgid "Cache" msgstr "Кеш" -#: src/Utility/Gtk/CustomMessageDialog.vala:155 src/Gtk/ProgressWindow.vala:145 -#: src/Gtk/UpdateNotificationWindow.vala:167 src/Gtk/TerminalWindow.vala:149 +#: src/Gtk/ProgressWindow.vala:145 src/Gtk/UpdateNotificationWindow.vala:167 +#: src/Gtk/TerminalWindow.vala:149 src/Utility/Gtk/CustomMessageDialog.vala:155 msgid "Cancel" msgstr "Відміна" @@ -81,7 +81,7 @@ msgstr "Перевірити оновлення ядра" msgid "Check for kernel updates and notify current user" msgstr "Перевірте наявність оновлень ядра та повідомте поточного користувача" -#: src/Utility/Gtk/AboutWindow.vala:295 src/Gtk/TerminalWindow.vala:159 +#: src/Gtk/TerminalWindow.vala:159 src/Utility/Gtk/AboutWindow.vala:295 msgid "Close" msgstr "Закрити" @@ -266,7 +266,7 @@ msgstr "Відомості актуальні" msgid "Index is stale" msgstr "Відомості застаріли" -#: src/Gtk/MainWindow.vala:359 src/Gtk/UpdateNotificationWindow.vala:147 +#: src/Gtk/UpdateNotificationWindow.vala:147 src/Gtk/MainWindow.vala:359 msgid "Install" msgstr "Встановити" @@ -305,8 +305,8 @@ msgstr "" msgid "Installed" msgstr "Встановлено" -#: src/Utility/TeeJee.System.vala:281 src/Gtk/MainWindow.vala:350 -#: src/Gtk/MainWindow.vala:550 src/Gtk/MainWindow.vala:686 +#: src/Gtk/MainWindow.vala:350 src/Gtk/MainWindow.vala:550 +#: src/Gtk/MainWindow.vala:686 src/Utility/TeeJee.System.vala:281 msgid "Internet connection is not active" msgstr "Інтернет з'єднання не активно" @@ -322,12 +322,12 @@ msgstr "Ядро" msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Програма оновлення ядра для дистрибутивів на базі Ubuntu" -#: src/Console/AppConsole.vala:367 src/Common/LinuxKernel.vala:776 +#: src/Common/LinuxKernel.vala:776 src/Console/AppConsole.vala:367 #, c-format msgid "Latest point update" msgstr "Остання точка оновлення" -#: src/Console/AppConsole.vala:360 src/Common/LinuxKernel.vala:765 +#: src/Common/LinuxKernel.vala:765 src/Console/AppConsole.vala:360 #, c-format msgid "Latest update" msgstr "Останнє оновлення" @@ -369,8 +369,8 @@ msgstr "Інтернету немає" msgid "No kernels specified" msgstr "Ядра не вказані" -#: src/Console/AppConsole.vala:372 src/Console/AppConsole.vala:430 -#: src/Common/LinuxKernel.vala:784 src/Gtk/MainWindow.vala:796 +#: src/Common/LinuxKernel.vala:784 src/Console/AppConsole.vala:372 +#: src/Console/AppConsole.vala:430 src/Gtk/MainWindow.vala:796 msgid "No updates found" msgstr "Оновлень не знайдено" @@ -390,9 +390,9 @@ msgstr "Повідомити, чи доступний великий випус msgid "Notify if a point release is available" msgstr "Повідомити, чи доступний невеликий випуск" +#: src/Common/LinuxKernel.vala:1217 #: src/Utility/Gtk/CustomMessageDialog.vala:150 #: src/Utility/Gtk/CustomMessageDialog.vala:154 -#: src/Common/LinuxKernel.vala:1217 #, c-format msgid "OK" msgstr "OK" @@ -488,7 +488,7 @@ msgstr "" "Це ядро ​​зараз працює і не може бути видалено. \n" "Встановіть інше ядро, перш ніж видаляти його." -#: src/Gtk/MainWindow.vala:475 src/Gtk/SettingsDialog.vala:56 +#: src/Gtk/SettingsDialog.vala:56 src/Gtk/MainWindow.vala:475 msgid "Settings" msgstr "Налаштування" From 44d6cd7943ce083a42630c6e31bb1d703c8284b9 Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Sat, 10 Aug 2019 17:14:02 -0400 Subject: [PATCH 043/567] Remove grub & donate stuff from Ukranian translation. Remove bash from build requires to satisfy lintain rule. --- debian/changelog | 3 +- debian/control | 2 +- debian/control.src | 2 +- po/messages.pot | 2 +- po/uk.po | 109 +-------------------------------------------- 5 files changed, 6 insertions(+), 112 deletions(-) diff --git a/debian/changelog b/debian/changelog index 2a706eb9..d0693c41 100644 --- a/debian/changelog +++ b/debian/changelog @@ -18,8 +18,9 @@ mainline (1.0.1) UNRELEASED; urgency=medium Example, run "make deb" twice in a row with no changes, the 2nd one will say "nothing to do" The Makefile is now officially more feature rich and robust than the application itself ¯\_(ツ)_/¯ * Desktop icon fix for Wayland from Hugo Posnic + * Ukranian translation - github:cappelikan - -- Brian K. White Thu, 28 Mar 2019 18:17:47 -0400 + -- Brian K. White Fri, 09 Aug 2019 19:15:18 -0400 mainline (1.0.0) disco; urgency=medium diff --git a/debian/control b/debian/control index 8b80ae51..f98df001 100644 --- a/debian/control +++ b/debian/control @@ -2,7 +2,7 @@ Source: mainline Section: utils Priority: extra Maintainer: Brian K. White -Build-Depends: debhelper, valac, libgtk-3-dev, libgee-0.8-dev, libjson-glib-dev, libvte-2.91-dev, bash +Build-Depends: debhelper, valac, libgtk-3-dev, libgee-0.8-dev, libjson-glib-dev, libvte-2.91-dev Standards-Version: 4.3.0 Homepage: https://github.com/aljex/mainline diff --git a/debian/control.src b/debian/control.src index af1f8c8f..ef663dcb 100644 --- a/debian/control.src +++ b/debian/control.src @@ -2,7 +2,7 @@ Source: BRANDING_SHORTNAME Section: utils Priority: extra Maintainer: BRANDING_AUTHORNAME -Build-Depends: debhelper, valac, libgtk-3-dev, libgee-0.8-dev, libjson-glib-dev, libvte-2.91-dev, bash +Build-Depends: debhelper, valac, libgtk-3-dev, libgee-0.8-dev, libjson-glib-dev, libvte-2.91-dev Standards-Version: 4.3.0 Homepage: BRANDING_WEBSITE diff --git a/po/messages.pot b/po/messages.pot index cee6208c..1146501c 100644 --- a/po/messages.pot +++ b/po/messages.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline 1.0.1\n" "Report-Msgid-Bugs-To: bw.aljex@gmail.com\n" -"POT-Creation-Date: 2019-08-09 18:47-0400\n" +"POT-Creation-Date: 2019-08-09 19:07-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/po/uk.po b/po/uk.po index 5373ad03..c6822122 100644 --- a/po/uk.po +++ b/po/uk.po @@ -1,13 +1,8 @@ -# Russian translation for ukuu -# Copyright (c) 2016 Rosetta Contributors and Canonical Ltd 2016 -# This file is distributed under the same license as the ukuu package. -# FIRST AUTHOR , 2016. -# msgid "" msgstr "" "Project-Id-Version: ukuu\n" "Report-Msgid-Bugs-To: bw.aljex@gmail.com\n" -"POT-Creation-Date: 2019-08-09 18:47-0400\n" +"POT-Creation-Date: 2019-08-09 19:07-0400\n" "PO-Revision-Date: 2019-07-25 11:00+0300\n" "Last-Translator: Serhii Golovko \n" "Language-Team: Ukranian \n" @@ -594,105 +589,3 @@ msgstr "[Увага] Вилучено неправильне блокуванн #: src/Gtk/SettingsDialog.vala:226 msgid "seconds" msgstr "секунди" - -#~ msgid "GRUB Options" -#~ msgstr "Настройки GRUB" - -#~ msgid "" -#~ "Time (in seconds) to display the GRUB menu\n" -#~ "\n" -#~ "0 = Do not show menu\n" -#~ "-1 = Show indefinitely till user selects" -#~ msgstr "" -#~ "Время отображения меню GRUB (в секундах)\n" -#~ "\n" -#~ "0 = Не отображать меню\n" -#~ "-1 = Отображать до выбора пользователя" - -#~ msgid "" -#~ "Updates the GRUB menu after installing or removing kernels, so that the " -#~ "menu is displayed for 2 seconds at boot time. This will help you recover " -#~ "from a bad kernel update by selecting another kernel to boot. During " -#~ "boot, use the 'Advanced options for Ubuntu' menu entry to select another " -#~ "kernel.\n" -#~ "\n" -#~ "0 = Do not show menu\n" -#~ "-1 = Show indefinitely till user selects" -#~ msgstr "" -#~ "Обновляет меню GRUB после установки или удаления ядер, после чего оно " -#~ "отображается на 2 секунды после загрузки. Это даст возможность выбрать " -#~ "другое ядро после неудачного обновления. Во время загрузки выберите пункт " -#~ "меню 'Advanced options for Ubuntu' для запуска другого ядра.\n" -#~ "\n" -#~ "0 = Не отображать меню\n" -#~ "-1 = Отображать до выбора пользователя" - -#~ msgid "Updating GRUB menu" -#~ msgstr "Обновление меню GRUB" - -#~ msgid "Run 'ukuu --list' and use the version string listed in first column" -#~ msgstr "Выполните 'ukuu --list' и используйте версию из первого столбца" - -#~ msgid "" -#~ "Did you find this software useful?\n" -#~ "\n" -#~ "You can buy me a coffee or make a donation via PayPal to show your " -#~ "support. Or just drop me an email and say Hi. This application is " -#~ "completely free and will continue to remain that way. Your contributions " -#~ "will help in keeping this project alive and improving it further.\n" -#~ "\n" -#~ "Feel free to send me an email if you find any issues in this application " -#~ "or if you need any changes. Suggestions and feedback are always welcome.\n" -#~ "\n" -#~ "Thanks,\n" -#~ "Tony George\n" -#~ "(teejeetech@gmail.com)" -#~ msgstr "" -#~ "Считаете эту программу полезной?\n" -#~ "\n" -#~ "Вы можете купить мне кофе или сделать пожертвование с помощью PayPal, " -#~ "чтобы оказать поддержку. Или просто напишите мне письмо и скажите \"Привет" -#~ "\". Эта программа полностью бесплатна и будет оставаться таковой. Ваши " -#~ "пожертвования помогут поддержке и развитию проекта.\n" -#~ "\n" -#~ "Не стесняйтесь прислать мне письмо, если Вы найдете какие-то ошибки в " -#~ "программе, или если у Вас будут идеи по улучшению функциональности. " -#~ "Отзывы и предложения всегда приветствуются.\n" -#~ "\n" -#~ "Спасибо, ваш\n" -#~ "Tony George\n" -#~ "(teejeetech@gmail.com)" - -#~ msgid "Display GRUB menu during boot" -#~ msgstr "Отображать меню GRUB во время загрузки" - -#~ msgid "Donate" -#~ msgstr "Пожертвования" - -#~ msgid "Donate with Google Wallet" -#~ msgstr "Пожертвовать через Google Wallet" - -#~ msgid "Donate with PayPal" -#~ msgstr "Пожертвовать через PayPal" - -#~ msgid "Donations" -#~ msgstr "Спонсоры" - -#, fuzzy -#~ msgid "File read" -#~ msgstr "Не удалось прочитать файл" - -#~ msgid "Notify if kernel update is available" -#~ msgstr "Уведомлять, если доступно обновление ядра" - -#~ msgid "Send Email" -#~ msgstr "Отправить email" - -#~ msgid "Use specified user's cache directory" -#~ msgstr "Использовать указанную пользователем папку для кэша" - -#~ msgid "Using cache directory" -#~ msgstr "Используемая кэш-папка" - -#~ msgid "Visit Website" -#~ msgstr "Посетить сайт" From 4881495efc8617e24b92a89567a11483c5c2452f Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Sat, 10 Aug 2019 17:35:42 -0400 Subject: [PATCH 044/567] Paste GPL-3 into debian/copyright to satisfy lintain rule. --- debian/copyright | 676 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 676 insertions(+) diff --git a/debian/copyright b/debian/copyright index 365410b2..6f947e54 100644 --- a/debian/copyright +++ b/debian/copyright @@ -6,3 +6,679 @@ Files: * Copyright: 2016-2018 Tony George 2019 Brian K. White License: GPL-3 + +License: GPL-3 + GNU GENERAL PUBLIC LICENSE + Version 3, 29 June 2007 + + Copyright (C) 2007 Free Software Foundation, Inc. + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The GNU General Public License is a free, copyleft license for +software and other kinds of works. + + The licenses for most software and other practical works are designed +to take away your freedom to share and change the works. By contrast, +the GNU General Public License is intended to guarantee your freedom to +share and change all versions of a program--to make sure it remains free +software for all its users. We, the Free Software Foundation, use the +GNU General Public License for most of our software; it applies also to +any other work released this way by its authors. You can apply it to +your programs, too. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +them if you wish), that you receive source code or can get it if you +want it, that you can change the software or use pieces of it in new +free programs, and that you know you can do these things. + + To protect your rights, we need to prevent others from denying you +these rights or asking you to surrender the rights. Therefore, you have +certain responsibilities if you distribute copies of the software, or if +you modify it: responsibilities to respect the freedom of others. + + For example, if you distribute copies of such a program, whether +gratis or for a fee, you must pass on to the recipients the same +freedoms that you received. You must make sure that they, too, receive +or can get the source code. And you must show them these terms so they +know their rights. + + Developers that use the GNU GPL protect your rights with two steps: +(1) assert copyright on the software, and (2) offer you this License +giving you legal permission to copy, distribute and/or modify it. + + For the developers' and authors' protection, the GPL clearly explains +that there is no warranty for this free software. For both users' and +authors' sake, the GPL requires that modified versions be marked as +changed, so that their problems will not be attributed erroneously to +authors of previous versions. + + Some devices are designed to deny users access to install or run +modified versions of the software inside them, although the manufacturer +can do so. This is fundamentally incompatible with the aim of +protecting users' freedom to change the software. The systematic +pattern of such abuse occurs in the area of products for individuals to +use, which is precisely where it is most unacceptable. Therefore, we +have designed this version of the GPL to prohibit the practice for those +products. If such problems arise substantially in other domains, we +stand ready to extend this provision to those domains in future versions +of the GPL, as needed to protect the freedom of users. + + Finally, every program is threatened constantly by software patents. +States should not allow patents to restrict development and use of +software on general-purpose computers, but in those that do, we wish to +avoid the special danger that patents applied to a free program could +make it effectively proprietary. To prevent this, the GPL assures that +patents cannot be used to render the program non-free. + + The precise terms and conditions for copying, distribution and +modification follow. + + TERMS AND CONDITIONS + + 0. Definitions. + + "This License" refers to version 3 of the GNU General Public License. + + "Copyright" also means copyright-like laws that apply to other kinds of +works, such as semiconductor masks. + + "The Program" refers to any copyrightable work licensed under this +License. Each licensee is addressed as "you". "Licensees" and +"recipients" may be individuals or organizations. + + To "modify" a work means to copy from or adapt all or part of the work +in a fashion requiring copyright permission, other than the making of an +exact copy. The resulting work is called a "modified version" of the +earlier work or a work "based on" the earlier work. + + A "covered work" means either the unmodified Program or a work based +on the Program. + + To "propagate" a work means to do anything with it that, without +permission, would make you directly or secondarily liable for +infringement under applicable copyright law, except executing it on a +computer or modifying a private copy. Propagation includes copying, +distribution (with or without modification), making available to the +public, and in some countries other activities as well. + + To "convey" a work means any kind of propagation that enables other +parties to make or receive copies. Mere interaction with a user through +a computer network, with no transfer of a copy, is not conveying. + + An interactive user interface displays "Appropriate Legal Notices" +to the extent that it includes a convenient and prominently visible +feature that (1) displays an appropriate copyright notice, and (2) +tells the user that there is no warranty for the work (except to the +extent that warranties are provided), that licensees may convey the +work under this License, and how to view a copy of this License. If +the interface presents a list of user commands or options, such as a +menu, a prominent item in the list meets this criterion. + + 1. Source Code. + + The "source code" for a work means the preferred form of the work +for making modifications to it. "Object code" means any non-source +form of a work. + + A "Standard Interface" means an interface that either is an official +standard defined by a recognized standards body, or, in the case of +interfaces specified for a particular programming language, one that +is widely used among developers working in that language. + + The "System Libraries" of an executable work include anything, other +than the work as a whole, that (a) is included in the normal form of +packaging a Major Component, but which is not part of that Major +Component, and (b) serves only to enable use of the work with that +Major Component, or to implement a Standard Interface for which an +implementation is available to the public in source code form. A +"Major Component", in this context, means a major essential component +(kernel, window system, and so on) of the specific operating system +(if any) on which the executable work runs, or a compiler used to +produce the work, or an object code interpreter used to run it. + + The "Corresponding Source" for a work in object code form means all +the source code needed to generate, install, and (for an executable +work) run the object code and to modify the work, including scripts to +control those activities. However, it does not include the work's +System Libraries, or general-purpose tools or generally available free +programs which are used unmodified in performing those activities but +which are not part of the work. For example, Corresponding Source +includes interface definition files associated with source files for +the work, and the source code for shared libraries and dynamically +linked subprograms that the work is specifically designed to require, +such as by intimate data communication or control flow between those +subprograms and other parts of the work. + + The Corresponding Source need not include anything that users +can regenerate automatically from other parts of the Corresponding +Source. + + The Corresponding Source for a work in source code form is that +same work. + + 2. Basic Permissions. + + All rights granted under this License are granted for the term of +copyright on the Program, and are irrevocable provided the stated +conditions are met. This License explicitly affirms your unlimited +permission to run the unmodified Program. The output from running a +covered work is covered by this License only if the output, given its +content, constitutes a covered work. This License acknowledges your +rights of fair use or other equivalent, as provided by copyright law. + + You may make, run and propagate covered works that you do not +convey, without conditions so long as your license otherwise remains +in force. You may convey covered works to others for the sole purpose +of having them make modifications exclusively for you, or provide you +with facilities for running those works, provided that you comply with +the terms of this License in conveying all material for which you do +not control copyright. Those thus making or running the covered works +for you must do so exclusively on your behalf, under your direction +and control, on terms that prohibit them from making any copies of +your copyrighted material outside their relationship with you. + + Conveying under any other circumstances is permitted solely under +the conditions stated below. Sublicensing is not allowed; section 10 +makes it unnecessary. + + 3. Protecting Users' Legal Rights From Anti-Circumvention Law. + + No covered work shall be deemed part of an effective technological +measure under any applicable law fulfilling obligations under article +11 of the WIPO copyright treaty adopted on 20 December 1996, or +similar laws prohibiting or restricting circumvention of such +measures. + + When you convey a covered work, you waive any legal power to forbid +circumvention of technological measures to the extent such circumvention +is effected by exercising rights under this License with respect to +the covered work, and you disclaim any intention to limit operation or +modification of the work as a means of enforcing, against the work's +users, your or third parties' legal rights to forbid circumvention of +technological measures. + + 4. Conveying Verbatim Copies. + + You may convey verbatim copies of the Program's source code as you +receive it, in any medium, provided that you conspicuously and +appropriately publish on each copy an appropriate copyright notice; +keep intact all notices stating that this License and any +non-permissive terms added in accord with section 7 apply to the code; +keep intact all notices of the absence of any warranty; and give all +recipients a copy of this License along with the Program. + + You may charge any price or no price for each copy that you convey, +and you may offer support or warranty protection for a fee. + + 5. Conveying Modified Source Versions. + + You may convey a work based on the Program, or the modifications to +produce it from the Program, in the form of source code under the +terms of section 4, provided that you also meet all of these conditions: + + a) The work must carry prominent notices stating that you modified + it, and giving a relevant date. + + b) The work must carry prominent notices stating that it is + released under this License and any conditions added under section + 7. This requirement modifies the requirement in section 4 to + "keep intact all notices". + + c) You must license the entire work, as a whole, under this + License to anyone who comes into possession of a copy. This + License will therefore apply, along with any applicable section 7 + additional terms, to the whole of the work, and all its parts, + regardless of how they are packaged. This License gives no + permission to license the work in any other way, but it does not + invalidate such permission if you have separately received it. + + d) If the work has interactive user interfaces, each must display + Appropriate Legal Notices; however, if the Program has interactive + interfaces that do not display Appropriate Legal Notices, your + work need not make them do so. + + A compilation of a covered work with other separate and independent +works, which are not by their nature extensions of the covered work, +and which are not combined with it such as to form a larger program, +in or on a volume of a storage or distribution medium, is called an +"aggregate" if the compilation and its resulting copyright are not +used to limit the access or legal rights of the compilation's users +beyond what the individual works permit. Inclusion of a covered work +in an aggregate does not cause this License to apply to the other +parts of the aggregate. + + 6. Conveying Non-Source Forms. + + You may convey a covered work in object code form under the terms +of sections 4 and 5, provided that you also convey the +machine-readable Corresponding Source under the terms of this License, +in one of these ways: + + a) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by the + Corresponding Source fixed on a durable physical medium + customarily used for software interchange. + + b) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by a + written offer, valid for at least three years and valid for as + long as you offer spare parts or customer support for that product + model, to give anyone who possesses the object code either (1) a + copy of the Corresponding Source for all the software in the + product that is covered by this License, on a durable physical + medium customarily used for software interchange, for a price no + more than your reasonable cost of physically performing this + conveying of source, or (2) access to copy the + Corresponding Source from a network server at no charge. + + c) Convey individual copies of the object code with a copy of the + written offer to provide the Corresponding Source. This + alternative is allowed only occasionally and noncommercially, and + only if you received the object code with such an offer, in accord + with subsection 6b. + + d) Convey the object code by offering access from a designated + place (gratis or for a charge), and offer equivalent access to the + Corresponding Source in the same way through the same place at no + further charge. You need not require recipients to copy the + Corresponding Source along with the object code. If the place to + copy the object code is a network server, the Corresponding Source + may be on a different server (operated by you or a third party) + that supports equivalent copying facilities, provided you maintain + clear directions next to the object code saying where to find the + Corresponding Source. Regardless of what server hosts the + Corresponding Source, you remain obligated to ensure that it is + available for as long as needed to satisfy these requirements. + + e) Convey the object code using peer-to-peer transmission, provided + you inform other peers where the object code and Corresponding + Source of the work are being offered to the general public at no + charge under subsection 6d. + + A separable portion of the object code, whose source code is excluded +from the Corresponding Source as a System Library, need not be +included in conveying the object code work. + + A "User Product" is either (1) a "consumer product", which means any +tangible personal property which is normally used for personal, family, +or household purposes, or (2) anything designed or sold for incorporation +into a dwelling. In determining whether a product is a consumer product, +doubtful cases shall be resolved in favor of coverage. For a particular +product received by a particular user, "normally used" refers to a +typical or common use of that class of product, regardless of the status +of the particular user or of the way in which the particular user +actually uses, or expects or is expected to use, the product. A product +is a consumer product regardless of whether the product has substantial +commercial, industrial or non-consumer uses, unless such uses represent +the only significant mode of use of the product. + + "Installation Information" for a User Product means any methods, +procedures, authorization keys, or other information required to install +and execute modified versions of a covered work in that User Product from +a modified version of its Corresponding Source. The information must +suffice to ensure that the continued functioning of the modified object +code is in no case prevented or interfered with solely because +modification has been made. + + If you convey an object code work under this section in, or with, or +specifically for use in, a User Product, and the conveying occurs as +part of a transaction in which the right of possession and use of the +User Product is transferred to the recipient in perpetuity or for a +fixed term (regardless of how the transaction is characterized), the +Corresponding Source conveyed under this section must be accompanied +by the Installation Information. But this requirement does not apply +if neither you nor any third party retains the ability to install +modified object code on the User Product (for example, the work has +been installed in ROM). + + The requirement to provide Installation Information does not include a +requirement to continue to provide support service, warranty, or updates +for a work that has been modified or installed by the recipient, or for +the User Product in which it has been modified or installed. Access to a +network may be denied when the modification itself materially and +adversely affects the operation of the network or violates the rules and +protocols for communication across the network. + + Corresponding Source conveyed, and Installation Information provided, +in accord with this section must be in a format that is publicly +documented (and with an implementation available to the public in +source code form), and must require no special password or key for +unpacking, reading or copying. + + 7. Additional Terms. + + "Additional permissions" are terms that supplement the terms of this +License by making exceptions from one or more of its conditions. +Additional permissions that are applicable to the entire Program shall +be treated as though they were included in this License, to the extent +that they are valid under applicable law. If additional permissions +apply only to part of the Program, that part may be used separately +under those permissions, but the entire Program remains governed by +this License without regard to the additional permissions. + + When you convey a copy of a covered work, you may at your option +remove any additional permissions from that copy, or from any part of +it. (Additional permissions may be written to require their own +removal in certain cases when you modify the work.) You may place +additional permissions on material, added by you to a covered work, +for which you have or can give appropriate copyright permission. + + Notwithstanding any other provision of this License, for material you +add to a covered work, you may (if authorized by the copyright holders of +that material) supplement the terms of this License with terms: + + a) Disclaiming warranty or limiting liability differently from the + terms of sections 15 and 16 of this License; or + + b) Requiring preservation of specified reasonable legal notices or + author attributions in that material or in the Appropriate Legal + Notices displayed by works containing it; or + + c) Prohibiting misrepresentation of the origin of that material, or + requiring that modified versions of such material be marked in + reasonable ways as different from the original version; or + + d) Limiting the use for publicity purposes of names of licensors or + authors of the material; or + + e) Declining to grant rights under trademark law for use of some + trade names, trademarks, or service marks; or + + f) Requiring indemnification of licensors and authors of that + material by anyone who conveys the material (or modified versions of + it) with contractual assumptions of liability to the recipient, for + any liability that these contractual assumptions directly impose on + those licensors and authors. + + All other non-permissive additional terms are considered "further +restrictions" within the meaning of section 10. If the Program as you +received it, or any part of it, contains a notice stating that it is +governed by this License along with a term that is a further +restriction, you may remove that term. If a license document contains +a further restriction but permits relicensing or conveying under this +License, you may add to a covered work material governed by the terms +of that license document, provided that the further restriction does +not survive such relicensing or conveying. + + If you add terms to a covered work in accord with this section, you +must place, in the relevant source files, a statement of the +additional terms that apply to those files, or a notice indicating +where to find the applicable terms. + + Additional terms, permissive or non-permissive, may be stated in the +form of a separately written license, or stated as exceptions; +the above requirements apply either way. + + 8. Termination. + + You may not propagate or modify a covered work except as expressly +provided under this License. Any attempt otherwise to propagate or +modify it is void, and will automatically terminate your rights under +this License (including any patent licenses granted under the third +paragraph of section 11). + + However, if you cease all violation of this License, then your +license from a particular copyright holder is reinstated (a) +provisionally, unless and until the copyright holder explicitly and +finally terminates your license, and (b) permanently, if the copyright +holder fails to notify you of the violation by some reasonable means +prior to 60 days after the cessation. + + Moreover, your license from a particular copyright holder is +reinstated permanently if the copyright holder notifies you of the +violation by some reasonable means, this is the first time you have +received notice of violation of this License (for any work) from that +copyright holder, and you cure the violation prior to 30 days after +your receipt of the notice. + + Termination of your rights under this section does not terminate the +licenses of parties who have received copies or rights from you under +this License. If your rights have been terminated and not permanently +reinstated, you do not qualify to receive new licenses for the same +material under section 10. + + 9. Acceptance Not Required for Having Copies. + + You are not required to accept this License in order to receive or +run a copy of the Program. Ancillary propagation of a covered work +occurring solely as a consequence of using peer-to-peer transmission +to receive a copy likewise does not require acceptance. However, +nothing other than this License grants you permission to propagate or +modify any covered work. These actions infringe copyright if you do +not accept this License. Therefore, by modifying or propagating a +covered work, you indicate your acceptance of this License to do so. + + 10. Automatic Licensing of Downstream Recipients. + + Each time you convey a covered work, the recipient automatically +receives a license from the original licensors, to run, modify and +propagate that work, subject to this License. You are not responsible +for enforcing compliance by third parties with this License. + + An "entity transaction" is a transaction transferring control of an +organization, or substantially all assets of one, or subdividing an +organization, or merging organizations. If propagation of a covered +work results from an entity transaction, each party to that +transaction who receives a copy of the work also receives whatever +licenses to the work the party's predecessor in interest had or could +give under the previous paragraph, plus a right to possession of the +Corresponding Source of the work from the predecessor in interest, if +the predecessor has it or can get it with reasonable efforts. + + You may not impose any further restrictions on the exercise of the +rights granted or affirmed under this License. For example, you may +not impose a license fee, royalty, or other charge for exercise of +rights granted under this License, and you may not initiate litigation +(including a cross-claim or counterclaim in a lawsuit) alleging that +any patent claim is infringed by making, using, selling, offering for +sale, or importing the Program or any portion of it. + + 11. Patents. + + A "contributor" is a copyright holder who authorizes use under this +License of the Program or a work on which the Program is based. The +work thus licensed is called the contributor's "contributor version". + + A contributor's "essential patent claims" are all patent claims +owned or controlled by the contributor, whether already acquired or +hereafter acquired, that would be infringed by some manner, permitted +by this License, of making, using, or selling its contributor version, +but do not include claims that would be infringed only as a +consequence of further modification of the contributor version. For +purposes of this definition, "control" includes the right to grant +patent sublicenses in a manner consistent with the requirements of +this License. + + Each contributor grants you a non-exclusive, worldwide, royalty-free +patent license under the contributor's essential patent claims, to +make, use, sell, offer for sale, import and otherwise run, modify and +propagate the contents of its contributor version. + + In the following three paragraphs, a "patent license" is any express +agreement or commitment, however denominated, not to enforce a patent +(such as an express permission to practice a patent or covenant not to +sue for patent infringement). To "grant" such a patent license to a +party means to make such an agreement or commitment not to enforce a +patent against the party. + + If you convey a covered work, knowingly relying on a patent license, +and the Corresponding Source of the work is not available for anyone +to copy, free of charge and under the terms of this License, through a +publicly available network server or other readily accessible means, +then you must either (1) cause the Corresponding Source to be so +available, or (2) arrange to deprive yourself of the benefit of the +patent license for this particular work, or (3) arrange, in a manner +consistent with the requirements of this License, to extend the patent +license to downstream recipients. "Knowingly relying" means you have +actual knowledge that, but for the patent license, your conveying the +covered work in a country, or your recipient's use of the covered work +in a country, would infringe one or more identifiable patents in that +country that you have reason to believe are valid. + + If, pursuant to or in connection with a single transaction or +arrangement, you convey, or propagate by procuring conveyance of, a +covered work, and grant a patent license to some of the parties +receiving the covered work authorizing them to use, propagate, modify +or convey a specific copy of the covered work, then the patent license +you grant is automatically extended to all recipients of the covered +work and works based on it. + + A patent license is "discriminatory" if it does not include within +the scope of its coverage, prohibits the exercise of, or is +conditioned on the non-exercise of one or more of the rights that are +specifically granted under this License. You may not convey a covered +work if you are a party to an arrangement with a third party that is +in the business of distributing software, under which you make payment +to the third party based on the extent of your activity of conveying +the work, and under which the third party grants, to any of the +parties who would receive the covered work from you, a discriminatory +patent license (a) in connection with copies of the covered work +conveyed by you (or copies made from those copies), or (b) primarily +for and in connection with specific products or compilations that +contain the covered work, unless you entered into that arrangement, +or that patent license was granted, prior to 28 March 2007. + + Nothing in this License shall be construed as excluding or limiting +any implied license or other defenses to infringement that may +otherwise be available to you under applicable patent law. + + 12. No Surrender of Others' Freedom. + + If conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot convey a +covered work so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you may +not convey it at all. For example, if you agree to terms that obligate you +to collect a royalty for further conveying from those to whom you convey +the Program, the only way you could satisfy both those terms and this +License would be to refrain entirely from conveying the Program. + + 13. Use with the GNU Affero General Public License. + + Notwithstanding any other provision of this License, you have +permission to link or combine any covered work with a work licensed +under version 3 of the GNU Affero General Public License into a single +combined work, and to convey the resulting work. The terms of this +License will continue to apply to the part which is the covered work, +but the special requirements of the GNU Affero General Public License, +section 13, concerning interaction through a network will apply to the +combination as such. + + 14. Revised Versions of this License. + + The Free Software Foundation may publish revised and/or new versions of +the GNU General Public License from time to time. Such new versions will +be similar in spirit to the present version, but may differ in detail to +address new problems or concerns. + + Each version is given a distinguishing version number. If the +Program specifies that a certain numbered version of the GNU General +Public License "or any later version" applies to it, you have the +option of following the terms and conditions either of that numbered +version or of any later version published by the Free Software +Foundation. If the Program does not specify a version number of the +GNU General Public License, you may choose any version ever published +by the Free Software Foundation. + + If the Program specifies that a proxy can decide which future +versions of the GNU General Public License can be used, that proxy's +public statement of acceptance of a version permanently authorizes you +to choose that version for the Program. + + Later license versions may give you additional or different +permissions. However, no additional obligations are imposed on any +author or copyright holder as a result of your choosing to follow a +later version. + + 15. Disclaimer of Warranty. + + THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY +APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT +HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY +OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, +THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM +IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF +ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + + 16. Limitation of Liability. + + IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS +THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY +GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE +USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF +DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD +PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), +EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF +SUCH DAMAGES. + + 17. Interpretation of Sections 15 and 16. + + If the disclaimer of warranty and limitation of liability provided +above cannot be given local legal effect according to their terms, +reviewing courts shall apply local law that most closely approximates +an absolute waiver of all civil liability in connection with the +Program, unless a warranty or assumption of liability accompanies a +copy of the Program in return for a fee. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Programs + + If you develop a new program, and you want it to be of the greatest +possible use to the public, the best way to achieve this is to make it +free software which everyone can redistribute and change under these terms. + + To do so, attach the following notices to the program. It is safest +to attach them to the start of each source file to most effectively +state the exclusion of warranty; and each file should have at least +the "copyright" line and a pointer to where the full notice is found. + + + Copyright (C) + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see . + +Also add information on how to contact you by electronic and paper mail. + + If the program does terminal interaction, make it output a short +notice like this when it starts in an interactive mode: + + Copyright (C) + This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. + This is free software, and you are welcome to redistribute it + under certain conditions; type `show c' for details. + +The hypothetical commands `show w' and `show c' should show the appropriate +parts of the General Public License. Of course, your program's commands +might be different; for a GUI interface, you would use an "about box". + + You should also get your employer (if you work as a programmer) or school, +if any, to sign a "copyright disclaimer" for the program, if necessary. +For more information on this, and how to apply and follow the GNU GPL, see +. + + The GNU General Public License does not permit incorporating your program +into proprietary programs. If your program is a subroutine library, you +may consider it more useful to permit linking proprietary applications with +the library. If this is what you want to do, use the GNU Lesser General +Public License instead of this License. But first, please read +. From 3b6b0bcdbf15ee98d8d612fdfddaac1996610808 Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Sat, 10 Aug 2019 18:20:28 -0400 Subject: [PATCH 045/567] erroneous use of /var/cache --- .deb_build_number.mak | 2 +- Makefile | 1 + debian/changelog | 2 +- po/messages.pot | 2 +- src/Common/LinuxKernel.vala | 2 +- 5 files changed, 5 insertions(+), 4 deletions(-) diff --git a/.deb_build_number.mak b/.deb_build_number.mak index eddb7ac9..7139262a 100644 --- a/.deb_build_number.mak +++ b/.deb_build_number.mak @@ -1,3 +1,3 @@ # This file is generated by Makefile DEB_PKG_VERSION := 1.0.1 -DEB_BUILD_NUMBER := 0014 +DEB_BUILD_NUMBER := 0017 diff --git a/Makefile b/Makefile index 1e7976dc..b81a6733 100644 --- a/Makefile +++ b/Makefile @@ -116,6 +116,7 @@ install: all .PHONY: uninstall uninstall: +# $(BRANDING_SHORTNAME) --clean-cache rm -f "$(DESTDIR)$(bindir)/$(BRANDING_SHORTNAME)" rm -rf "$(DESTDIR)$(sharedir)/$(BRANDING_SHORTNAME)" # rm -f "$(DESTDIR)$(polkitdir)/$(BRANDING_SHORTNAME).policy" diff --git a/debian/changelog b/debian/changelog index d0693c41..3b237d43 100644 --- a/debian/changelog +++ b/debian/changelog @@ -20,7 +20,7 @@ mainline (1.0.1) UNRELEASED; urgency=medium * Desktop icon fix for Wayland from Hugo Posnic * Ukranian translation - github:cappelikan - -- Brian K. White Fri, 09 Aug 2019 19:15:18 -0400 + -- Brian K. White Sat, 10 Aug 2019 17:36:26 -0400 mainline (1.0.0) disco; urgency=medium diff --git a/po/messages.pot b/po/messages.pot index 1146501c..d517360c 100644 --- a/po/messages.pot +++ b/po/messages.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline 1.0.1\n" "Report-Msgid-Bugs-To: bw.aljex@gmail.com\n" -"POT-Creation-Date: 2019-08-09 19:07-0400\n" +"POT-Creation-Date: 2019-08-10 18:05-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/src/Common/LinuxKernel.vala b/src/Common/LinuxKernel.vala index 6f983dd6..7aca3567 100644 --- a/src/Common/LinuxKernel.vala +++ b/src/Common/LinuxKernel.vala @@ -38,7 +38,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { // static public static string URI_KERNEL_UBUNTU_MAINLINE = "http://kernel.ubuntu.com/~kernel-ppa/mainline/"; - public static string CACHE_DIR = "/var/cache/" + BRANDING_SHORTNAME; + public static string CACHE_DIR; public static string NATIVE_ARCH; public static string LINUX_DISTRO; public static string RUNNING_KERNEL; From c01c7e1c59f61883a40086a009d8d3ed92827d53 Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Sat, 10 Aug 2019 18:40:04 -0400 Subject: [PATCH 046/567] pbuilder removed the gpl-3 text by itself, so I guess ignore that lintian warning... --- .deb_build_number.mak | 2 +- debian/changelog | 2 +- debian/copyright | 676 ------------------------------------------ po/messages.pot | 2 +- 4 files changed, 3 insertions(+), 679 deletions(-) diff --git a/.deb_build_number.mak b/.deb_build_number.mak index 7139262a..08abc63e 100644 --- a/.deb_build_number.mak +++ b/.deb_build_number.mak @@ -1,3 +1,3 @@ # This file is generated by Makefile DEB_PKG_VERSION := 1.0.1 -DEB_BUILD_NUMBER := 0017 +DEB_BUILD_NUMBER := 0020 diff --git a/debian/changelog b/debian/changelog index 3b237d43..dba7c01f 100644 --- a/debian/changelog +++ b/debian/changelog @@ -20,7 +20,7 @@ mainline (1.0.1) UNRELEASED; urgency=medium * Desktop icon fix for Wayland from Hugo Posnic * Ukranian translation - github:cappelikan - -- Brian K. White Sat, 10 Aug 2019 17:36:26 -0400 + -- Brian K. White Sat, 10 Aug 2019 18:32:56 -0400 mainline (1.0.0) disco; urgency=medium diff --git a/debian/copyright b/debian/copyright index 6f947e54..365410b2 100644 --- a/debian/copyright +++ b/debian/copyright @@ -6,679 +6,3 @@ Files: * Copyright: 2016-2018 Tony George 2019 Brian K. White License: GPL-3 - -License: GPL-3 - GNU GENERAL PUBLIC LICENSE - Version 3, 29 June 2007 - - Copyright (C) 2007 Free Software Foundation, Inc. - Everyone is permitted to copy and distribute verbatim copies - of this license document, but changing it is not allowed. - - Preamble - - The GNU General Public License is a free, copyleft license for -software and other kinds of works. - - The licenses for most software and other practical works are designed -to take away your freedom to share and change the works. By contrast, -the GNU General Public License is intended to guarantee your freedom to -share and change all versions of a program--to make sure it remains free -software for all its users. We, the Free Software Foundation, use the -GNU General Public License for most of our software; it applies also to -any other work released this way by its authors. You can apply it to -your programs, too. - - When we speak of free software, we are referring to freedom, not -price. Our General Public Licenses are designed to make sure that you -have the freedom to distribute copies of free software (and charge for -them if you wish), that you receive source code or can get it if you -want it, that you can change the software or use pieces of it in new -free programs, and that you know you can do these things. - - To protect your rights, we need to prevent others from denying you -these rights or asking you to surrender the rights. Therefore, you have -certain responsibilities if you distribute copies of the software, or if -you modify it: responsibilities to respect the freedom of others. - - For example, if you distribute copies of such a program, whether -gratis or for a fee, you must pass on to the recipients the same -freedoms that you received. You must make sure that they, too, receive -or can get the source code. And you must show them these terms so they -know their rights. - - Developers that use the GNU GPL protect your rights with two steps: -(1) assert copyright on the software, and (2) offer you this License -giving you legal permission to copy, distribute and/or modify it. - - For the developers' and authors' protection, the GPL clearly explains -that there is no warranty for this free software. For both users' and -authors' sake, the GPL requires that modified versions be marked as -changed, so that their problems will not be attributed erroneously to -authors of previous versions. - - Some devices are designed to deny users access to install or run -modified versions of the software inside them, although the manufacturer -can do so. This is fundamentally incompatible with the aim of -protecting users' freedom to change the software. The systematic -pattern of such abuse occurs in the area of products for individuals to -use, which is precisely where it is most unacceptable. Therefore, we -have designed this version of the GPL to prohibit the practice for those -products. If such problems arise substantially in other domains, we -stand ready to extend this provision to those domains in future versions -of the GPL, as needed to protect the freedom of users. - - Finally, every program is threatened constantly by software patents. -States should not allow patents to restrict development and use of -software on general-purpose computers, but in those that do, we wish to -avoid the special danger that patents applied to a free program could -make it effectively proprietary. To prevent this, the GPL assures that -patents cannot be used to render the program non-free. - - The precise terms and conditions for copying, distribution and -modification follow. - - TERMS AND CONDITIONS - - 0. Definitions. - - "This License" refers to version 3 of the GNU General Public License. - - "Copyright" also means copyright-like laws that apply to other kinds of -works, such as semiconductor masks. - - "The Program" refers to any copyrightable work licensed under this -License. Each licensee is addressed as "you". "Licensees" and -"recipients" may be individuals or organizations. - - To "modify" a work means to copy from or adapt all or part of the work -in a fashion requiring copyright permission, other than the making of an -exact copy. The resulting work is called a "modified version" of the -earlier work or a work "based on" the earlier work. - - A "covered work" means either the unmodified Program or a work based -on the Program. - - To "propagate" a work means to do anything with it that, without -permission, would make you directly or secondarily liable for -infringement under applicable copyright law, except executing it on a -computer or modifying a private copy. Propagation includes copying, -distribution (with or without modification), making available to the -public, and in some countries other activities as well. - - To "convey" a work means any kind of propagation that enables other -parties to make or receive copies. Mere interaction with a user through -a computer network, with no transfer of a copy, is not conveying. - - An interactive user interface displays "Appropriate Legal Notices" -to the extent that it includes a convenient and prominently visible -feature that (1) displays an appropriate copyright notice, and (2) -tells the user that there is no warranty for the work (except to the -extent that warranties are provided), that licensees may convey the -work under this License, and how to view a copy of this License. If -the interface presents a list of user commands or options, such as a -menu, a prominent item in the list meets this criterion. - - 1. Source Code. - - The "source code" for a work means the preferred form of the work -for making modifications to it. "Object code" means any non-source -form of a work. - - A "Standard Interface" means an interface that either is an official -standard defined by a recognized standards body, or, in the case of -interfaces specified for a particular programming language, one that -is widely used among developers working in that language. - - The "System Libraries" of an executable work include anything, other -than the work as a whole, that (a) is included in the normal form of -packaging a Major Component, but which is not part of that Major -Component, and (b) serves only to enable use of the work with that -Major Component, or to implement a Standard Interface for which an -implementation is available to the public in source code form. A -"Major Component", in this context, means a major essential component -(kernel, window system, and so on) of the specific operating system -(if any) on which the executable work runs, or a compiler used to -produce the work, or an object code interpreter used to run it. - - The "Corresponding Source" for a work in object code form means all -the source code needed to generate, install, and (for an executable -work) run the object code and to modify the work, including scripts to -control those activities. However, it does not include the work's -System Libraries, or general-purpose tools or generally available free -programs which are used unmodified in performing those activities but -which are not part of the work. For example, Corresponding Source -includes interface definition files associated with source files for -the work, and the source code for shared libraries and dynamically -linked subprograms that the work is specifically designed to require, -such as by intimate data communication or control flow between those -subprograms and other parts of the work. - - The Corresponding Source need not include anything that users -can regenerate automatically from other parts of the Corresponding -Source. - - The Corresponding Source for a work in source code form is that -same work. - - 2. Basic Permissions. - - All rights granted under this License are granted for the term of -copyright on the Program, and are irrevocable provided the stated -conditions are met. This License explicitly affirms your unlimited -permission to run the unmodified Program. The output from running a -covered work is covered by this License only if the output, given its -content, constitutes a covered work. This License acknowledges your -rights of fair use or other equivalent, as provided by copyright law. - - You may make, run and propagate covered works that you do not -convey, without conditions so long as your license otherwise remains -in force. You may convey covered works to others for the sole purpose -of having them make modifications exclusively for you, or provide you -with facilities for running those works, provided that you comply with -the terms of this License in conveying all material for which you do -not control copyright. Those thus making or running the covered works -for you must do so exclusively on your behalf, under your direction -and control, on terms that prohibit them from making any copies of -your copyrighted material outside their relationship with you. - - Conveying under any other circumstances is permitted solely under -the conditions stated below. Sublicensing is not allowed; section 10 -makes it unnecessary. - - 3. Protecting Users' Legal Rights From Anti-Circumvention Law. - - No covered work shall be deemed part of an effective technological -measure under any applicable law fulfilling obligations under article -11 of the WIPO copyright treaty adopted on 20 December 1996, or -similar laws prohibiting or restricting circumvention of such -measures. - - When you convey a covered work, you waive any legal power to forbid -circumvention of technological measures to the extent such circumvention -is effected by exercising rights under this License with respect to -the covered work, and you disclaim any intention to limit operation or -modification of the work as a means of enforcing, against the work's -users, your or third parties' legal rights to forbid circumvention of -technological measures. - - 4. Conveying Verbatim Copies. - - You may convey verbatim copies of the Program's source code as you -receive it, in any medium, provided that you conspicuously and -appropriately publish on each copy an appropriate copyright notice; -keep intact all notices stating that this License and any -non-permissive terms added in accord with section 7 apply to the code; -keep intact all notices of the absence of any warranty; and give all -recipients a copy of this License along with the Program. - - You may charge any price or no price for each copy that you convey, -and you may offer support or warranty protection for a fee. - - 5. Conveying Modified Source Versions. - - You may convey a work based on the Program, or the modifications to -produce it from the Program, in the form of source code under the -terms of section 4, provided that you also meet all of these conditions: - - a) The work must carry prominent notices stating that you modified - it, and giving a relevant date. - - b) The work must carry prominent notices stating that it is - released under this License and any conditions added under section - 7. This requirement modifies the requirement in section 4 to - "keep intact all notices". - - c) You must license the entire work, as a whole, under this - License to anyone who comes into possession of a copy. This - License will therefore apply, along with any applicable section 7 - additional terms, to the whole of the work, and all its parts, - regardless of how they are packaged. This License gives no - permission to license the work in any other way, but it does not - invalidate such permission if you have separately received it. - - d) If the work has interactive user interfaces, each must display - Appropriate Legal Notices; however, if the Program has interactive - interfaces that do not display Appropriate Legal Notices, your - work need not make them do so. - - A compilation of a covered work with other separate and independent -works, which are not by their nature extensions of the covered work, -and which are not combined with it such as to form a larger program, -in or on a volume of a storage or distribution medium, is called an -"aggregate" if the compilation and its resulting copyright are not -used to limit the access or legal rights of the compilation's users -beyond what the individual works permit. Inclusion of a covered work -in an aggregate does not cause this License to apply to the other -parts of the aggregate. - - 6. Conveying Non-Source Forms. - - You may convey a covered work in object code form under the terms -of sections 4 and 5, provided that you also convey the -machine-readable Corresponding Source under the terms of this License, -in one of these ways: - - a) Convey the object code in, or embodied in, a physical product - (including a physical distribution medium), accompanied by the - Corresponding Source fixed on a durable physical medium - customarily used for software interchange. - - b) Convey the object code in, or embodied in, a physical product - (including a physical distribution medium), accompanied by a - written offer, valid for at least three years and valid for as - long as you offer spare parts or customer support for that product - model, to give anyone who possesses the object code either (1) a - copy of the Corresponding Source for all the software in the - product that is covered by this License, on a durable physical - medium customarily used for software interchange, for a price no - more than your reasonable cost of physically performing this - conveying of source, or (2) access to copy the - Corresponding Source from a network server at no charge. - - c) Convey individual copies of the object code with a copy of the - written offer to provide the Corresponding Source. This - alternative is allowed only occasionally and noncommercially, and - only if you received the object code with such an offer, in accord - with subsection 6b. - - d) Convey the object code by offering access from a designated - place (gratis or for a charge), and offer equivalent access to the - Corresponding Source in the same way through the same place at no - further charge. You need not require recipients to copy the - Corresponding Source along with the object code. If the place to - copy the object code is a network server, the Corresponding Source - may be on a different server (operated by you or a third party) - that supports equivalent copying facilities, provided you maintain - clear directions next to the object code saying where to find the - Corresponding Source. Regardless of what server hosts the - Corresponding Source, you remain obligated to ensure that it is - available for as long as needed to satisfy these requirements. - - e) Convey the object code using peer-to-peer transmission, provided - you inform other peers where the object code and Corresponding - Source of the work are being offered to the general public at no - charge under subsection 6d. - - A separable portion of the object code, whose source code is excluded -from the Corresponding Source as a System Library, need not be -included in conveying the object code work. - - A "User Product" is either (1) a "consumer product", which means any -tangible personal property which is normally used for personal, family, -or household purposes, or (2) anything designed or sold for incorporation -into a dwelling. In determining whether a product is a consumer product, -doubtful cases shall be resolved in favor of coverage. For a particular -product received by a particular user, "normally used" refers to a -typical or common use of that class of product, regardless of the status -of the particular user or of the way in which the particular user -actually uses, or expects or is expected to use, the product. A product -is a consumer product regardless of whether the product has substantial -commercial, industrial or non-consumer uses, unless such uses represent -the only significant mode of use of the product. - - "Installation Information" for a User Product means any methods, -procedures, authorization keys, or other information required to install -and execute modified versions of a covered work in that User Product from -a modified version of its Corresponding Source. The information must -suffice to ensure that the continued functioning of the modified object -code is in no case prevented or interfered with solely because -modification has been made. - - If you convey an object code work under this section in, or with, or -specifically for use in, a User Product, and the conveying occurs as -part of a transaction in which the right of possession and use of the -User Product is transferred to the recipient in perpetuity or for a -fixed term (regardless of how the transaction is characterized), the -Corresponding Source conveyed under this section must be accompanied -by the Installation Information. But this requirement does not apply -if neither you nor any third party retains the ability to install -modified object code on the User Product (for example, the work has -been installed in ROM). - - The requirement to provide Installation Information does not include a -requirement to continue to provide support service, warranty, or updates -for a work that has been modified or installed by the recipient, or for -the User Product in which it has been modified or installed. Access to a -network may be denied when the modification itself materially and -adversely affects the operation of the network or violates the rules and -protocols for communication across the network. - - Corresponding Source conveyed, and Installation Information provided, -in accord with this section must be in a format that is publicly -documented (and with an implementation available to the public in -source code form), and must require no special password or key for -unpacking, reading or copying. - - 7. Additional Terms. - - "Additional permissions" are terms that supplement the terms of this -License by making exceptions from one or more of its conditions. -Additional permissions that are applicable to the entire Program shall -be treated as though they were included in this License, to the extent -that they are valid under applicable law. If additional permissions -apply only to part of the Program, that part may be used separately -under those permissions, but the entire Program remains governed by -this License without regard to the additional permissions. - - When you convey a copy of a covered work, you may at your option -remove any additional permissions from that copy, or from any part of -it. (Additional permissions may be written to require their own -removal in certain cases when you modify the work.) You may place -additional permissions on material, added by you to a covered work, -for which you have or can give appropriate copyright permission. - - Notwithstanding any other provision of this License, for material you -add to a covered work, you may (if authorized by the copyright holders of -that material) supplement the terms of this License with terms: - - a) Disclaiming warranty or limiting liability differently from the - terms of sections 15 and 16 of this License; or - - b) Requiring preservation of specified reasonable legal notices or - author attributions in that material or in the Appropriate Legal - Notices displayed by works containing it; or - - c) Prohibiting misrepresentation of the origin of that material, or - requiring that modified versions of such material be marked in - reasonable ways as different from the original version; or - - d) Limiting the use for publicity purposes of names of licensors or - authors of the material; or - - e) Declining to grant rights under trademark law for use of some - trade names, trademarks, or service marks; or - - f) Requiring indemnification of licensors and authors of that - material by anyone who conveys the material (or modified versions of - it) with contractual assumptions of liability to the recipient, for - any liability that these contractual assumptions directly impose on - those licensors and authors. - - All other non-permissive additional terms are considered "further -restrictions" within the meaning of section 10. If the Program as you -received it, or any part of it, contains a notice stating that it is -governed by this License along with a term that is a further -restriction, you may remove that term. If a license document contains -a further restriction but permits relicensing or conveying under this -License, you may add to a covered work material governed by the terms -of that license document, provided that the further restriction does -not survive such relicensing or conveying. - - If you add terms to a covered work in accord with this section, you -must place, in the relevant source files, a statement of the -additional terms that apply to those files, or a notice indicating -where to find the applicable terms. - - Additional terms, permissive or non-permissive, may be stated in the -form of a separately written license, or stated as exceptions; -the above requirements apply either way. - - 8. Termination. - - You may not propagate or modify a covered work except as expressly -provided under this License. Any attempt otherwise to propagate or -modify it is void, and will automatically terminate your rights under -this License (including any patent licenses granted under the third -paragraph of section 11). - - However, if you cease all violation of this License, then your -license from a particular copyright holder is reinstated (a) -provisionally, unless and until the copyright holder explicitly and -finally terminates your license, and (b) permanently, if the copyright -holder fails to notify you of the violation by some reasonable means -prior to 60 days after the cessation. - - Moreover, your license from a particular copyright holder is -reinstated permanently if the copyright holder notifies you of the -violation by some reasonable means, this is the first time you have -received notice of violation of this License (for any work) from that -copyright holder, and you cure the violation prior to 30 days after -your receipt of the notice. - - Termination of your rights under this section does not terminate the -licenses of parties who have received copies or rights from you under -this License. If your rights have been terminated and not permanently -reinstated, you do not qualify to receive new licenses for the same -material under section 10. - - 9. Acceptance Not Required for Having Copies. - - You are not required to accept this License in order to receive or -run a copy of the Program. Ancillary propagation of a covered work -occurring solely as a consequence of using peer-to-peer transmission -to receive a copy likewise does not require acceptance. However, -nothing other than this License grants you permission to propagate or -modify any covered work. These actions infringe copyright if you do -not accept this License. Therefore, by modifying or propagating a -covered work, you indicate your acceptance of this License to do so. - - 10. Automatic Licensing of Downstream Recipients. - - Each time you convey a covered work, the recipient automatically -receives a license from the original licensors, to run, modify and -propagate that work, subject to this License. You are not responsible -for enforcing compliance by third parties with this License. - - An "entity transaction" is a transaction transferring control of an -organization, or substantially all assets of one, or subdividing an -organization, or merging organizations. If propagation of a covered -work results from an entity transaction, each party to that -transaction who receives a copy of the work also receives whatever -licenses to the work the party's predecessor in interest had or could -give under the previous paragraph, plus a right to possession of the -Corresponding Source of the work from the predecessor in interest, if -the predecessor has it or can get it with reasonable efforts. - - You may not impose any further restrictions on the exercise of the -rights granted or affirmed under this License. For example, you may -not impose a license fee, royalty, or other charge for exercise of -rights granted under this License, and you may not initiate litigation -(including a cross-claim or counterclaim in a lawsuit) alleging that -any patent claim is infringed by making, using, selling, offering for -sale, or importing the Program or any portion of it. - - 11. Patents. - - A "contributor" is a copyright holder who authorizes use under this -License of the Program or a work on which the Program is based. The -work thus licensed is called the contributor's "contributor version". - - A contributor's "essential patent claims" are all patent claims -owned or controlled by the contributor, whether already acquired or -hereafter acquired, that would be infringed by some manner, permitted -by this License, of making, using, or selling its contributor version, -but do not include claims that would be infringed only as a -consequence of further modification of the contributor version. For -purposes of this definition, "control" includes the right to grant -patent sublicenses in a manner consistent with the requirements of -this License. - - Each contributor grants you a non-exclusive, worldwide, royalty-free -patent license under the contributor's essential patent claims, to -make, use, sell, offer for sale, import and otherwise run, modify and -propagate the contents of its contributor version. - - In the following three paragraphs, a "patent license" is any express -agreement or commitment, however denominated, not to enforce a patent -(such as an express permission to practice a patent or covenant not to -sue for patent infringement). To "grant" such a patent license to a -party means to make such an agreement or commitment not to enforce a -patent against the party. - - If you convey a covered work, knowingly relying on a patent license, -and the Corresponding Source of the work is not available for anyone -to copy, free of charge and under the terms of this License, through a -publicly available network server or other readily accessible means, -then you must either (1) cause the Corresponding Source to be so -available, or (2) arrange to deprive yourself of the benefit of the -patent license for this particular work, or (3) arrange, in a manner -consistent with the requirements of this License, to extend the patent -license to downstream recipients. "Knowingly relying" means you have -actual knowledge that, but for the patent license, your conveying the -covered work in a country, or your recipient's use of the covered work -in a country, would infringe one or more identifiable patents in that -country that you have reason to believe are valid. - - If, pursuant to or in connection with a single transaction or -arrangement, you convey, or propagate by procuring conveyance of, a -covered work, and grant a patent license to some of the parties -receiving the covered work authorizing them to use, propagate, modify -or convey a specific copy of the covered work, then the patent license -you grant is automatically extended to all recipients of the covered -work and works based on it. - - A patent license is "discriminatory" if it does not include within -the scope of its coverage, prohibits the exercise of, or is -conditioned on the non-exercise of one or more of the rights that are -specifically granted under this License. You may not convey a covered -work if you are a party to an arrangement with a third party that is -in the business of distributing software, under which you make payment -to the third party based on the extent of your activity of conveying -the work, and under which the third party grants, to any of the -parties who would receive the covered work from you, a discriminatory -patent license (a) in connection with copies of the covered work -conveyed by you (or copies made from those copies), or (b) primarily -for and in connection with specific products or compilations that -contain the covered work, unless you entered into that arrangement, -or that patent license was granted, prior to 28 March 2007. - - Nothing in this License shall be construed as excluding or limiting -any implied license or other defenses to infringement that may -otherwise be available to you under applicable patent law. - - 12. No Surrender of Others' Freedom. - - If conditions are imposed on you (whether by court order, agreement or -otherwise) that contradict the conditions of this License, they do not -excuse you from the conditions of this License. If you cannot convey a -covered work so as to satisfy simultaneously your obligations under this -License and any other pertinent obligations, then as a consequence you may -not convey it at all. For example, if you agree to terms that obligate you -to collect a royalty for further conveying from those to whom you convey -the Program, the only way you could satisfy both those terms and this -License would be to refrain entirely from conveying the Program. - - 13. Use with the GNU Affero General Public License. - - Notwithstanding any other provision of this License, you have -permission to link or combine any covered work with a work licensed -under version 3 of the GNU Affero General Public License into a single -combined work, and to convey the resulting work. The terms of this -License will continue to apply to the part which is the covered work, -but the special requirements of the GNU Affero General Public License, -section 13, concerning interaction through a network will apply to the -combination as such. - - 14. Revised Versions of this License. - - The Free Software Foundation may publish revised and/or new versions of -the GNU General Public License from time to time. Such new versions will -be similar in spirit to the present version, but may differ in detail to -address new problems or concerns. - - Each version is given a distinguishing version number. If the -Program specifies that a certain numbered version of the GNU General -Public License "or any later version" applies to it, you have the -option of following the terms and conditions either of that numbered -version or of any later version published by the Free Software -Foundation. If the Program does not specify a version number of the -GNU General Public License, you may choose any version ever published -by the Free Software Foundation. - - If the Program specifies that a proxy can decide which future -versions of the GNU General Public License can be used, that proxy's -public statement of acceptance of a version permanently authorizes you -to choose that version for the Program. - - Later license versions may give you additional or different -permissions. However, no additional obligations are imposed on any -author or copyright holder as a result of your choosing to follow a -later version. - - 15. Disclaimer of Warranty. - - THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY -APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT -HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY -OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, -THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM -IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF -ALL NECESSARY SERVICING, REPAIR OR CORRECTION. - - 16. Limitation of Liability. - - IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING -WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS -THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY -GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE -USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF -DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD -PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), -EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF -SUCH DAMAGES. - - 17. Interpretation of Sections 15 and 16. - - If the disclaimer of warranty and limitation of liability provided -above cannot be given local legal effect according to their terms, -reviewing courts shall apply local law that most closely approximates -an absolute waiver of all civil liability in connection with the -Program, unless a warranty or assumption of liability accompanies a -copy of the Program in return for a fee. - - END OF TERMS AND CONDITIONS - - How to Apply These Terms to Your New Programs - - If you develop a new program, and you want it to be of the greatest -possible use to the public, the best way to achieve this is to make it -free software which everyone can redistribute and change under these terms. - - To do so, attach the following notices to the program. It is safest -to attach them to the start of each source file to most effectively -state the exclusion of warranty; and each file should have at least -the "copyright" line and a pointer to where the full notice is found. - - - Copyright (C) - - This program is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. - - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with this program. If not, see . - -Also add information on how to contact you by electronic and paper mail. - - If the program does terminal interaction, make it output a short -notice like this when it starts in an interactive mode: - - Copyright (C) - This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. - This is free software, and you are welcome to redistribute it - under certain conditions; type `show c' for details. - -The hypothetical commands `show w' and `show c' should show the appropriate -parts of the General Public License. Of course, your program's commands -might be different; for a GUI interface, you would use an "about box". - - You should also get your employer (if you work as a programmer) or school, -if any, to sign a "copyright disclaimer" for the program, if necessary. -For more information on this, and how to apply and follow the GNU GPL, see -. - - The GNU General Public License does not permit incorporating your program -into proprietary programs. If your program is a subroutine library, you -may consider it more useful to permit linking proprietary applications with -the library. If this is what you want to do, use the GNU Lesser General -Public License instead of this License. But first, please read -. diff --git a/po/messages.pot b/po/messages.pot index d517360c..4e1e917e 100644 --- a/po/messages.pot +++ b/po/messages.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline 1.0.1\n" "Report-Msgid-Bugs-To: bw.aljex@gmail.com\n" -"POT-Creation-Date: 2019-08-10 18:05-0400\n" +"POT-Creation-Date: 2019-08-10 18:33-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" From 1c082b4484070fe33b4c1b92cbde81cfce44fe0a Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Wed, 28 Aug 2019 00:00:31 -0400 Subject: [PATCH 047/567] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index e3ef6794..3d0a3ceb 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ This is a tool for installing the latest mainline Linux kernel on Ubuntu-based d * For each kernel, the related packages (headers & modules) are installed or removed at the same time ### Downloads & Source Code -mainline is written using Vala and GTK3. Source code and binaries are available from the [GitHub project page](https://github.com/aljex/mainline). +mainline is written using Vala (0.40+) and GTK3. Source code and binaries are available from the [GitHub project page](https://github.com/aljex/mainline). ### Build sudo apt install libgee-0.8-dev libjson-glib-dev libvte-2.91-dev valac From 9749aca0e10d06f32b056ed1a841ce473e9ddae3 Mon Sep 17 00:00:00 2001 From: Butterfly Date: Sat, 31 Aug 2019 18:38:04 +0300 Subject: [PATCH 048/567] Update tr.po Update tr.po --- po/tr.po | 61 ++++++++++++++++---------------------------------------- 1 file changed, 17 insertions(+), 44 deletions(-) diff --git a/po/tr.po b/po/tr.po index ca88a13d..21787823 100644 --- a/po/tr.po +++ b/po/tr.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: ukuu\n" "Report-Msgid-Bugs-To: bw.aljex@gmail.com\n" "POT-Creation-Date: 2019-08-09 18:47-0400\n" -"PO-Revision-Date: 2019-03-12 19:35+0300\n" +"PO-Revision-Date: 2019-08-31 18:33+0300\n" "Last-Translator: Gökhan GÖKKAYA \n" "Language-Team: Turkish\n" "Language: tr\n" @@ -297,8 +297,7 @@ msgstr "Kurulum hatalarla tamamlandı" #: src/Common/LinuxKernel.vala:1269 msgid "Installation completed. A reboot is required to use the new kernel." -msgstr "" -"Kurulum tamamlandı. Yeni çekirdeği kullanmak için yeniden başlatma gerekiyor." +msgstr "Kurulum tamamlandı. Yeni çekirdeği kullanmak için yeniden başlatma gerekiyor." #: src/Common/LinuxKernel.vala:1169 src/Gtk/MainWindow.vala:208 msgid "Installed" @@ -310,9 +309,8 @@ msgid "Internet connection is not active" msgstr "İnternet bağlantısı aktif değil" #: src/Gtk/SettingsDialog.vala:212 -#, fuzzy msgid "Internet connection timeout in " -msgstr "İnternet bağlantısı aktif değil " +msgstr "İnternet bağlantısı zaman aşımı " #: src/Gtk/MainWindow.vala:150 msgid "Kernel" @@ -429,7 +427,7 @@ msgstr "Hata ayıklama bilgisini yazdır" #: src/Gtk/MainWindow.vala:425 msgid "Purge" -msgstr "Kaldır" +msgstr "Temizle" #: src/Gtk/MainWindow.vala:343 msgid "Refresh" @@ -441,7 +439,7 @@ msgstr "Yenileniyor..." #: src/Gtk/MainWindow.vala:376 msgid "Remove" -msgstr "Kaldır" +msgstr "Sil" #: src/Console/AppConsole.vala:95 src/Console/AppConsole.vala:100 msgid "Remove files from application cache" @@ -533,9 +531,9 @@ msgid "Temp" msgstr "Geçici" #: src/Common/LinuxKernel.vala:730 -#, fuzzy, c-format +#, c-format msgid "The following kernels will be removed:" -msgstr "Aşağıdaki çekirdekler silinecek" +msgstr "Aşağıdaki çekirdekler silinecek:" #: src/Utility/Gtk/AboutWindow.vala:330 #, c-format @@ -603,8 +601,7 @@ msgstr "saniye" #, fuzzy #~ msgid "" -#~ "Mainline kernels can sometimes cause problems if there are proprietary " -#~ "drivers installed on your system. These issues include:\n" +#~ "Mainline kernels can sometimes cause problems if there are proprietary drivers installed on your system. These issues include:\n" #~ "\n" #~ "▰ WiFi not working\n" #~ "▰ Black screen on startup\n" @@ -618,9 +615,7 @@ msgstr "saniye" #~ "▰ Your system will boot using the selected kernel\n" #~ "▰ You can now uninstall the kernel that is causing issues\n" #~ msgstr "" -#~ "Eğer sisteminizde sahipli/tescilli sürücüler kurulu ise, mainline " -#~ "çekirdekleri bazen sorunlara neden olabilir. Bunlar arasında aşağıdakiler " -#~ "olabilir:\n" +#~ "Eğer sisteminizde sahipli/tescilli sürücüler kurulu ise, mainline çekirdekleri bazen sorunlara neden olabilir. Bunlar arasında aşağıdakiler olabilir:\n" #~ "\n" #~ "\\342\\226\\260 Kablosuz ağ aygıtının çalışmaması\n" #~ "\\342\\226\\260 Sistem açılışının siyah ekranda kalması\n" @@ -629,8 +624,7 @@ msgstr "saniye" #~ "Bu sorunlardan herhangi biriyle karşılaşırsanız paniğe kapılmayın.\n" #~ "\n" #~ "\\342\\226\\260 Sisteminizi yeniden başlatın\n" -#~ "\\342\\226\\260 GRUB açılış menüsünden 'Gelişmiş Açılış Seçenekleri'ni " -#~ "seçin\n" +#~ "\\342\\226\\260 GRUB açılış menüsünden 'Gelişmiş Açılış Seçenekleri'ni seçin\n" #~ "\\342\\226\\260 Bu ekranda listelenenlerden önceki bir çekirdeği seçin\n" #~ "\\342\\226\\260 Sisteminiz seçilen çekirdek kullanılarak başlatılacaktır\n" #~ "\\342\\226\\260 Şimdi sorun oluşturan çekirdeği kaldırabilirsiniz\n" @@ -647,21 +641,12 @@ msgstr "saniye" #~ "-1 = Kullanıcı seçimine kadar süresiz göster" #~ msgid "" -#~ "Updates the GRUB menu after installing or removing kernels, so that the " -#~ "menu is displayed for 2 seconds at boot time. This will help you recover " -#~ "from a bad kernel update by selecting another kernel to boot. During " -#~ "boot, use the 'Advanced options for Ubuntu' menu entry to select another " -#~ "kernel.\n" +#~ "Updates the GRUB menu after installing or removing kernels, so that the menu is displayed for 2 seconds at boot time. This will help you recover from a bad kernel update by selecting another kernel to boot. During boot, use the 'Advanced options for Ubuntu' menu entry to select another kernel.\n" #~ "\n" #~ "0 = Do not show menu\n" #~ "-1 = Show indefinitely till user selects" #~ msgstr "" -#~ "Çekirdekleri kurduktan ya da kaldırdıktan sonra GRUB menüsünü günceller, " -#~ "böylece önyükleme zamanında menü belirlenen saniye görüntülenir. Böylece " -#~ "önyükleme için başka bir çekirdek seçerek, hatalı bir çekirdek " -#~ "güncellemesinden kurtarmanıza yardımcı olur. Önyükleme sırasında " -#~ "\"Gelişmiş seçenekler...\" menü girdisinden başka bir çekirdeği " -#~ "seçebilirsiniz.\n" +#~ "Çekirdekleri kurduktan ya da kaldırdıktan sonra GRUB menüsünü günceller, böylece önyükleme zamanında menü belirlenen saniye görüntülenir. Böylece önyükleme için başka bir çekirdek seçerek, hatalı bir çekirdek güncellemesinden kurtarmanıza yardımcı olur. Önyükleme sırasında \"Gelişmiş seçenekler...\" menü girdisinden başka bir çekirdeği seçebilirsiniz.\n" #~ "\n" #~ "0 = Menüyü gösterme\n" #~ "-1 = Kullanıcı seçimine kadar süresiz göster" @@ -670,20 +655,14 @@ msgstr "saniye" #~ msgstr "GRUB menüsü güncelleniyor" #~ msgid "Run 'ukuu --list' and use the version string listed in first column" -#~ msgstr "" -#~ "'ukuu --list' komutunu çalıştırın ve ilk sütunda listelenen sürüm " -#~ "dizesini kullanın" +#~ msgstr "'ukuu --list' komutunu çalıştırın ve ilk sütunda listelenen sürüm dizesini kullanın" #~ msgid "" #~ "Did you find this software useful?\n" #~ "\n" -#~ "You can buy me a coffee or make a donation via PayPal to show your " -#~ "support. Or just drop me an email and say Hi. This application is " -#~ "completely free and will continue to remain that way. Your contributions " -#~ "will help in keeping this project alive and improving it further.\n" +#~ "You can buy me a coffee or make a donation via PayPal to show your support. Or just drop me an email and say Hi. This application is completely free and will continue to remain that way. Your contributions will help in keeping this project alive and improving it further.\n" #~ "\n" -#~ "Feel free to send me an email if you find any issues in this application " -#~ "or if you need any changes. Suggestions and feedback are always welcome.\n" +#~ "Feel free to send me an email if you find any issues in this application or if you need any changes. Suggestions and feedback are always welcome.\n" #~ "\n" #~ "Thanks,\n" #~ "Tony George\n" @@ -691,15 +670,9 @@ msgstr "saniye" #~ msgstr "" #~ "Bu yazılımı faydalı buldunuz mu?\n" #~ "\n" -#~ "Bana bir kahve ısmarlayabilir ya da PayPal ile bağışta bulunarak " -#~ "desteğinizi gösterebilirsiniz. Ya da bana bir e posta bırakıp Merhaba " -#~ "(Hi) diyebilirsiniz. Bu yazılım tamamen özgürdür ve öyle kalmaya devam " -#~ "edecktir. Katkılarınız bu projeyi canlı tutmak ve daha da geliştirmek " -#~ "için yardımcı olacaktır.\n" +#~ "Bana bir kahve ısmarlayabilir ya da PayPal ile bağışta bulunarak desteğinizi gösterebilirsiniz. Ya da bana bir e posta bırakıp Merhaba (Hi) diyebilirsiniz. Bu yazılım tamamen özgürdür ve öyle kalmaya devam edecktir. Katkılarınız bu projeyi canlı tutmak ve daha da geliştirmek için yardımcı olacaktır.\n" #~ "\n" -#~ "Eğer bir sorun bulursanız veya bir değişikliğe ihtiyaç duyuyorsanız bana " -#~ "bir e-posta göndermekten çekinmeyin. Öneri ve geribildirim her zaman " -#~ "açığız.\n" +#~ "Eğer bir sorun bulursanız veya bir değişikliğe ihtiyaç duyuyorsanız bana bir e-posta göndermekten çekinmeyin. Öneri ve geribildirim her zaman açığız.\n" #~ "\n" #~ "Teşekkürler,\n" #~ "Tony George\n" From 442e2656ab9a43cd5893bbf083b8187a33332e90 Mon Sep 17 00:00:00 2001 From: Butterfly Date: Sun, 1 Sep 2019 00:56:25 +0300 Subject: [PATCH 049/567] Update tr.po-2 Update tr.po-remove grub and donation related stuff --- po/tr.po | 118 ------------------------------------------------------- 1 file changed, 118 deletions(-) diff --git a/po/tr.po b/po/tr.po index 21787823..87d184fb 100644 --- a/po/tr.po +++ b/po/tr.po @@ -592,121 +592,3 @@ msgstr "[Uyarı] Geçersiz kilit silindi" #: src/Gtk/SettingsDialog.vala:226 msgid "seconds" msgstr "saniye" - -#~ msgid "Booting previous kernels" -#~ msgstr "Önceki çekirdeklerin önyüklenmesi" - -#~ msgid "GRUB Options" -#~ msgstr "GRUB seçenekleri" - -#, fuzzy -#~ msgid "" -#~ "Mainline kernels can sometimes cause problems if there are proprietary drivers installed on your system. These issues include:\n" -#~ "\n" -#~ "▰ WiFi not working\n" -#~ "▰ Black screen on startup\n" -#~ "▰ Random system freeze\n" -#~ "\n" -#~ "If you face any of these issues there is no need to panic.\n" -#~ "\n" -#~ "▰ Reboot your system\n" -#~ "▰ Select 'Advanced Boot Options' from the GRUB boot menu\n" -#~ "▰ Select an older kernel from the list displayed on this screen\n" -#~ "▰ Your system will boot using the selected kernel\n" -#~ "▰ You can now uninstall the kernel that is causing issues\n" -#~ msgstr "" -#~ "Eğer sisteminizde sahipli/tescilli sürücüler kurulu ise, mainline çekirdekleri bazen sorunlara neden olabilir. Bunlar arasında aşağıdakiler olabilir:\n" -#~ "\n" -#~ "\\342\\226\\260 Kablosuz ağ aygıtının çalışmaması\n" -#~ "\\342\\226\\260 Sistem açılışının siyah ekranda kalması\n" -#~ "\\342\\226\\260 Rsstgele sistem donmaları\n" -#~ "\n" -#~ "Bu sorunlardan herhangi biriyle karşılaşırsanız paniğe kapılmayın.\n" -#~ "\n" -#~ "\\342\\226\\260 Sisteminizi yeniden başlatın\n" -#~ "\\342\\226\\260 GRUB açılış menüsünden 'Gelişmiş Açılış Seçenekleri'ni seçin\n" -#~ "\\342\\226\\260 Bu ekranda listelenenlerden önceki bir çekirdeği seçin\n" -#~ "\\342\\226\\260 Sisteminiz seçilen çekirdek kullanılarak başlatılacaktır\n" -#~ "\\342\\226\\260 Şimdi sorun oluşturan çekirdeği kaldırabilirsiniz\n" - -#~ msgid "" -#~ "Time (in seconds) to display the GRUB menu\n" -#~ "\n" -#~ "0 = Do not show menu\n" -#~ "-1 = Show indefinitely till user selects" -#~ msgstr "" -#~ "GRUB menüsünün görüntüleneceği süre (saniye cinsinden)\n" -#~ "\n" -#~ "0 = Menüyü gösterme\n" -#~ "-1 = Kullanıcı seçimine kadar süresiz göster" - -#~ msgid "" -#~ "Updates the GRUB menu after installing or removing kernels, so that the menu is displayed for 2 seconds at boot time. This will help you recover from a bad kernel update by selecting another kernel to boot. During boot, use the 'Advanced options for Ubuntu' menu entry to select another kernel.\n" -#~ "\n" -#~ "0 = Do not show menu\n" -#~ "-1 = Show indefinitely till user selects" -#~ msgstr "" -#~ "Çekirdekleri kurduktan ya da kaldırdıktan sonra GRUB menüsünü günceller, böylece önyükleme zamanında menü belirlenen saniye görüntülenir. Böylece önyükleme için başka bir çekirdek seçerek, hatalı bir çekirdek güncellemesinden kurtarmanıza yardımcı olur. Önyükleme sırasında \"Gelişmiş seçenekler...\" menü girdisinden başka bir çekirdeği seçebilirsiniz.\n" -#~ "\n" -#~ "0 = Menüyü gösterme\n" -#~ "-1 = Kullanıcı seçimine kadar süresiz göster" - -#~ msgid "Updating GRUB menu" -#~ msgstr "GRUB menüsü güncelleniyor" - -#~ msgid "Run 'ukuu --list' and use the version string listed in first column" -#~ msgstr "'ukuu --list' komutunu çalıştırın ve ilk sütunda listelenen sürüm dizesini kullanın" - -#~ msgid "" -#~ "Did you find this software useful?\n" -#~ "\n" -#~ "You can buy me a coffee or make a donation via PayPal to show your support. Or just drop me an email and say Hi. This application is completely free and will continue to remain that way. Your contributions will help in keeping this project alive and improving it further.\n" -#~ "\n" -#~ "Feel free to send me an email if you find any issues in this application or if you need any changes. Suggestions and feedback are always welcome.\n" -#~ "\n" -#~ "Thanks,\n" -#~ "Tony George\n" -#~ "(teejeetech@gmail.com)" -#~ msgstr "" -#~ "Bu yazılımı faydalı buldunuz mu?\n" -#~ "\n" -#~ "Bana bir kahve ısmarlayabilir ya da PayPal ile bağışta bulunarak desteğinizi gösterebilirsiniz. Ya da bana bir e posta bırakıp Merhaba (Hi) diyebilirsiniz. Bu yazılım tamamen özgürdür ve öyle kalmaya devam edecktir. Katkılarınız bu projeyi canlı tutmak ve daha da geliştirmek için yardımcı olacaktır.\n" -#~ "\n" -#~ "Eğer bir sorun bulursanız veya bir değişikliğe ihtiyaç duyuyorsanız bana bir e-posta göndermekten çekinmeyin. Öneri ve geribildirim her zaman açığız.\n" -#~ "\n" -#~ "Teşekkürler,\n" -#~ "Tony George\n" -#~ "(teejeetech@gmail.com)" - -#~ msgid "Display GRUB menu during boot" -#~ msgstr "Açılış sırasında GRUB menüsü gösterimi" - -#~ msgid "Donate" -#~ msgstr "Bağış" - -#~ msgid "Donate with Google Wallet" -#~ msgstr "Google Wallet ile bağış" - -#~ msgid "Donate with PayPal" -#~ msgstr "Paypal ile bağış" - -#~ msgid "Donations" -#~ msgstr "Bağışlar" - -#~ msgid "File read" -#~ msgstr "Dosya okundu" - -#~ msgid "Notify if kernel update is available" -#~ msgstr "Çekirdek güncellemesi mevcutsa bildir" - -#~ msgid "Send Email" -#~ msgstr "E Posta Gönder" - -#~ msgid "Use specified user's cache directory" -#~ msgstr "Kullanıcının belirlediği önbellek dizinini kullan" - -#~ msgid "Using cache directory" -#~ msgstr "Önbellek dizini kullanımı" - -#~ msgid "Visit Website" -#~ msgstr "Websitesini Ziyaret Et" From 43c0741da0a9f377c898bb7a5519dc059da5517b Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Mon, 2 Sep 2019 19:57:01 -0400 Subject: [PATCH 050/567] update uk.po from cappelikan --- po/uk.po | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/po/uk.po b/po/uk.po index c6822122..1db60c63 100644 --- a/po/uk.po +++ b/po/uk.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu\n" "Report-Msgid-Bugs-To: bw.aljex@gmail.com\n" -"POT-Creation-Date: 2019-08-09 19:07-0400\n" +"POT-Creation-Date: 2019-08-07 03:26+0300\n" "PO-Revision-Date: 2019-07-25 11:00+0300\n" "Last-Translator: Serhii Golovko \n" "Language-Team: Ukranian \n" @@ -55,8 +55,8 @@ msgstr "Назад" msgid "Cache" msgstr "Кеш" -#: src/Gtk/ProgressWindow.vala:145 src/Gtk/UpdateNotificationWindow.vala:167 -#: src/Gtk/TerminalWindow.vala:149 src/Utility/Gtk/CustomMessageDialog.vala:155 +#: src/Utility/Gtk/CustomMessageDialog.vala:155 src/Gtk/ProgressWindow.vala:145 +#: src/Gtk/UpdateNotificationWindow.vala:167 src/Gtk/TerminalWindow.vala:149 msgid "Cancel" msgstr "Відміна" @@ -76,7 +76,7 @@ msgstr "Перевірити оновлення ядра" msgid "Check for kernel updates and notify current user" msgstr "Перевірте наявність оновлень ядра та повідомте поточного користувача" -#: src/Gtk/TerminalWindow.vala:159 src/Utility/Gtk/AboutWindow.vala:295 +#: src/Utility/Gtk/AboutWindow.vala:295 src/Gtk/TerminalWindow.vala:159 msgid "Close" msgstr "Закрити" @@ -261,7 +261,7 @@ msgstr "Відомості актуальні" msgid "Index is stale" msgstr "Відомості застаріли" -#: src/Gtk/UpdateNotificationWindow.vala:147 src/Gtk/MainWindow.vala:359 +#: src/Gtk/MainWindow.vala:359 src/Gtk/UpdateNotificationWindow.vala:147 msgid "Install" msgstr "Встановити" @@ -300,8 +300,8 @@ msgstr "" msgid "Installed" msgstr "Встановлено" -#: src/Gtk/MainWindow.vala:350 src/Gtk/MainWindow.vala:550 -#: src/Gtk/MainWindow.vala:686 src/Utility/TeeJee.System.vala:281 +#: src/Utility/TeeJee.System.vala:281 src/Gtk/MainWindow.vala:350 +#: src/Gtk/MainWindow.vala:550 src/Gtk/MainWindow.vala:686 msgid "Internet connection is not active" msgstr "Інтернет з'єднання не активно" @@ -317,12 +317,12 @@ msgstr "Ядро" msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Програма оновлення ядра для дистрибутивів на базі Ubuntu" -#: src/Common/LinuxKernel.vala:776 src/Console/AppConsole.vala:367 +#: src/Console/AppConsole.vala:367 src/Common/LinuxKernel.vala:776 #, c-format msgid "Latest point update" msgstr "Остання точка оновлення" -#: src/Common/LinuxKernel.vala:765 src/Console/AppConsole.vala:360 +#: src/Console/AppConsole.vala:360 src/Common/LinuxKernel.vala:765 #, c-format msgid "Latest update" msgstr "Останнє оновлення" @@ -364,8 +364,8 @@ msgstr "Інтернету немає" msgid "No kernels specified" msgstr "Ядра не вказані" -#: src/Common/LinuxKernel.vala:784 src/Console/AppConsole.vala:372 -#: src/Console/AppConsole.vala:430 src/Gtk/MainWindow.vala:796 +#: src/Console/AppConsole.vala:372 src/Console/AppConsole.vala:430 +#: src/Common/LinuxKernel.vala:784 src/Gtk/MainWindow.vala:796 msgid "No updates found" msgstr "Оновлень не знайдено" @@ -385,9 +385,9 @@ msgstr "Повідомити, чи доступний великий випус msgid "Notify if a point release is available" msgstr "Повідомити, чи доступний невеликий випуск" -#: src/Common/LinuxKernel.vala:1217 #: src/Utility/Gtk/CustomMessageDialog.vala:150 #: src/Utility/Gtk/CustomMessageDialog.vala:154 +#: src/Common/LinuxKernel.vala:1217 #, c-format msgid "OK" msgstr "OK" @@ -483,7 +483,7 @@ msgstr "" "Це ядро ​​зараз працює і не може бути видалено. \n" "Встановіть інше ядро, перш ніж видаляти його." -#: src/Gtk/SettingsDialog.vala:56 src/Gtk/MainWindow.vala:475 +#: src/Gtk/MainWindow.vala:475 src/Gtk/SettingsDialog.vala:56 msgid "Settings" msgstr "Налаштування" From 807f171f55614598c0ea2ae8a27493286060fb0f Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Mon, 2 Sep 2019 20:21:29 -0400 Subject: [PATCH 051/567] add PPA to readme --- README.md | 8 +++++++- README.md.src | 6 ++++++ po/messages.pot | 2 +- po/uk.po | 26 +++++++++++++------------- 4 files changed, 27 insertions(+), 15 deletions(-) diff --git a/README.md b/README.md index 3d0a3ceb..d05b8ff6 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,13 @@ This is a tool for installing the latest mainline Linux kernel on Ubuntu-based d * For each kernel, the related packages (headers & modules) are installed or removed at the same time ### Downloads & Source Code -mainline is written using Vala (0.40+) and GTK3. Source code and binaries are available from the [GitHub project page](https://github.com/aljex/mainline). +mainline is written using Vala and GTK3. Source code and binaries are available from the [GitHub project page](https://github.com/aljex/mainline). + +[cappelikan](https://github.com/cappelikan) maintains a PPA at: + + sudo add-apt-repository ppa:cappelikan/ppa + sudo apt update + sudo apt install mainline ### Build sudo apt install libgee-0.8-dev libjson-glib-dev libvte-2.91-dev valac diff --git a/README.md.src b/README.md.src index 78d1f5cb..61f871d5 100644 --- a/README.md.src +++ b/README.md.src @@ -16,6 +16,12 @@ This is a tool for installing the latest mainline Linux kernel on Ubuntu-based d ### Downloads & Source Code BRANDING_SHORTNAME is written using Vala and GTK3. Source code and binaries are available from the [GitHub project page](BRANDING_WEBSITE). +[cappelikan](https://github.com/cappelikan) maintains a PPA at: + + sudo add-apt-repository ppa:cappelikan/ppa + sudo apt update + sudo apt install mainline + ### Build sudo apt install libgee-0.8-dev libjson-glib-dev libvte-2.91-dev valac git clone BRANDING_GITREPO diff --git a/po/messages.pot b/po/messages.pot index 4e1e917e..de31b281 100644 --- a/po/messages.pot +++ b/po/messages.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline 1.0.1\n" "Report-Msgid-Bugs-To: bw.aljex@gmail.com\n" -"POT-Creation-Date: 2019-08-10 18:33-0400\n" +"POT-Creation-Date: 2019-09-02 20:11-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/po/uk.po b/po/uk.po index 1db60c63..5547a93d 100644 --- a/po/uk.po +++ b/po/uk.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu\n" "Report-Msgid-Bugs-To: bw.aljex@gmail.com\n" -"POT-Creation-Date: 2019-08-07 03:26+0300\n" +"POT-Creation-Date: 2019-09-02 20:03-0400\n" "PO-Revision-Date: 2019-07-25 11:00+0300\n" "Last-Translator: Serhii Golovko \n" "Language-Team: Ukranian \n" @@ -55,8 +55,8 @@ msgstr "Назад" msgid "Cache" msgstr "Кеш" -#: src/Utility/Gtk/CustomMessageDialog.vala:155 src/Gtk/ProgressWindow.vala:145 -#: src/Gtk/UpdateNotificationWindow.vala:167 src/Gtk/TerminalWindow.vala:149 +#: src/Gtk/ProgressWindow.vala:145 src/Gtk/UpdateNotificationWindow.vala:167 +#: src/Gtk/TerminalWindow.vala:149 src/Utility/Gtk/CustomMessageDialog.vala:155 msgid "Cancel" msgstr "Відміна" @@ -76,7 +76,7 @@ msgstr "Перевірити оновлення ядра" msgid "Check for kernel updates and notify current user" msgstr "Перевірте наявність оновлень ядра та повідомте поточного користувача" -#: src/Utility/Gtk/AboutWindow.vala:295 src/Gtk/TerminalWindow.vala:159 +#: src/Gtk/TerminalWindow.vala:159 src/Utility/Gtk/AboutWindow.vala:295 msgid "Close" msgstr "Закрити" @@ -261,7 +261,7 @@ msgstr "Відомості актуальні" msgid "Index is stale" msgstr "Відомості застаріли" -#: src/Gtk/MainWindow.vala:359 src/Gtk/UpdateNotificationWindow.vala:147 +#: src/Gtk/UpdateNotificationWindow.vala:147 src/Gtk/MainWindow.vala:359 msgid "Install" msgstr "Встановити" @@ -300,8 +300,8 @@ msgstr "" msgid "Installed" msgstr "Встановлено" -#: src/Utility/TeeJee.System.vala:281 src/Gtk/MainWindow.vala:350 -#: src/Gtk/MainWindow.vala:550 src/Gtk/MainWindow.vala:686 +#: src/Gtk/MainWindow.vala:350 src/Gtk/MainWindow.vala:550 +#: src/Gtk/MainWindow.vala:686 src/Utility/TeeJee.System.vala:281 msgid "Internet connection is not active" msgstr "Інтернет з'єднання не активно" @@ -317,12 +317,12 @@ msgstr "Ядро" msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Програма оновлення ядра для дистрибутивів на базі Ubuntu" -#: src/Console/AppConsole.vala:367 src/Common/LinuxKernel.vala:776 +#: src/Common/LinuxKernel.vala:776 src/Console/AppConsole.vala:367 #, c-format msgid "Latest point update" msgstr "Остання точка оновлення" -#: src/Console/AppConsole.vala:360 src/Common/LinuxKernel.vala:765 +#: src/Common/LinuxKernel.vala:765 src/Console/AppConsole.vala:360 #, c-format msgid "Latest update" msgstr "Останнє оновлення" @@ -364,8 +364,8 @@ msgstr "Інтернету немає" msgid "No kernels specified" msgstr "Ядра не вказані" -#: src/Console/AppConsole.vala:372 src/Console/AppConsole.vala:430 -#: src/Common/LinuxKernel.vala:784 src/Gtk/MainWindow.vala:796 +#: src/Common/LinuxKernel.vala:784 src/Console/AppConsole.vala:372 +#: src/Console/AppConsole.vala:430 src/Gtk/MainWindow.vala:796 msgid "No updates found" msgstr "Оновлень не знайдено" @@ -385,9 +385,9 @@ msgstr "Повідомити, чи доступний великий випус msgid "Notify if a point release is available" msgstr "Повідомити, чи доступний невеликий випуск" +#: src/Common/LinuxKernel.vala:1217 #: src/Utility/Gtk/CustomMessageDialog.vala:150 #: src/Utility/Gtk/CustomMessageDialog.vala:154 -#: src/Common/LinuxKernel.vala:1217 #, c-format msgid "OK" msgstr "OK" @@ -483,7 +483,7 @@ msgstr "" "Це ядро ​​зараз працює і не може бути видалено. \n" "Встановіть інше ядро, перш ніж видаляти його." -#: src/Gtk/MainWindow.vala:475 src/Gtk/SettingsDialog.vala:56 +#: src/Gtk/SettingsDialog.vala:56 src/Gtk/MainWindow.vala:475 msgid "Settings" msgstr "Налаштування" From 81ab91938d95ef929d68b9840b3098400711ab4c Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Mon, 2 Sep 2019 20:23:46 -0400 Subject: [PATCH 052/567] more specific valac requirement --- README.md.src | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md.src b/README.md.src index 61f871d5..4f448f48 100644 --- a/README.md.src +++ b/README.md.src @@ -14,7 +14,7 @@ This is a tool for installing the latest mainline Linux kernel on Ubuntu-based d * For each kernel, the related packages (headers & modules) are installed or removed at the same time ### Downloads & Source Code -BRANDING_SHORTNAME is written using Vala and GTK3. Source code and binaries are available from the [GitHub project page](BRANDING_WEBSITE). +BRANDING_SHORTNAME is written using Vala (0.40+) and GTK3. Source code and binaries are available from the [GitHub project page](BRANDING_WEBSITE). [cappelikan](https://github.com/cappelikan) maintains a PPA at: From 1d0c2c1757bf35168b30bf5748d1d7863e6474d9 Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Wed, 11 Sep 2019 13:47:13 -0400 Subject: [PATCH 053/567] specify valac >= 0.40 --- README.md | 2 +- debian/control | 2 +- debian/control.src | 2 +- po/messages.pot | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index d05b8ff6..d9ef9bc4 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ This is a tool for installing the latest mainline Linux kernel on Ubuntu-based d * For each kernel, the related packages (headers & modules) are installed or removed at the same time ### Downloads & Source Code -mainline is written using Vala and GTK3. Source code and binaries are available from the [GitHub project page](https://github.com/aljex/mainline). +mainline is written using Vala (0.40+) and GTK3. Source code and binaries are available from the [GitHub project page](https://github.com/aljex/mainline). [cappelikan](https://github.com/cappelikan) maintains a PPA at: diff --git a/debian/control b/debian/control index f98df001..f0852c28 100644 --- a/debian/control +++ b/debian/control @@ -2,7 +2,7 @@ Source: mainline Section: utils Priority: extra Maintainer: Brian K. White -Build-Depends: debhelper, valac, libgtk-3-dev, libgee-0.8-dev, libjson-glib-dev, libvte-2.91-dev +Build-Depends: debhelper, valac (>= 0.40), libgtk-3-dev, libgee-0.8-dev, libjson-glib-dev, libvte-2.91-dev Standards-Version: 4.3.0 Homepage: https://github.com/aljex/mainline diff --git a/debian/control.src b/debian/control.src index ef663dcb..736706ef 100644 --- a/debian/control.src +++ b/debian/control.src @@ -2,7 +2,7 @@ Source: BRANDING_SHORTNAME Section: utils Priority: extra Maintainer: BRANDING_AUTHORNAME -Build-Depends: debhelper, valac, libgtk-3-dev, libgee-0.8-dev, libjson-glib-dev, libvte-2.91-dev +Build-Depends: debhelper, valac (>= 0.40), libgtk-3-dev, libgee-0.8-dev, libjson-glib-dev, libvte-2.91-dev Standards-Version: 4.3.0 Homepage: BRANDING_WEBSITE diff --git a/po/messages.pot b/po/messages.pot index de31b281..c3d9cd63 100644 --- a/po/messages.pot +++ b/po/messages.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline 1.0.1\n" "Report-Msgid-Bugs-To: bw.aljex@gmail.com\n" -"POT-Creation-Date: 2019-09-02 20:11-0400\n" +"POT-Creation-Date: 2019-09-11 13:41-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" From f933ee522d12f0160c92ebc34ca081471f0386ab Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Wed, 11 Sep 2019 15:57:05 -0400 Subject: [PATCH 054/567] update build depends in debian/control --- Makefile | 4 ++-- debian/changelog | 2 +- debian/control | 2 +- debian/control.src | 2 +- po/messages.pot | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Makefile b/Makefile index b81a6733..488069d8 100644 --- a/Makefile +++ b/Makefile @@ -56,12 +56,12 @@ deb_file = release/deb/$(BRANDING_SHORTNAME)_$(pkg_version).$(DEB_BUILD_NUMBER)_ all: $(BRANDING_SHORTNAME) $(BRANDING_SHORTNAME)-gtk $(po_files) $(BRANDING_SHORTNAME)-gtk: $(misc_files) $(common_vala_files) $(gui_vala_files) - valac $(branding_symbols) --Xcc="-lm" \ + valac -X -w $(branding_symbols) --Xcc="-lm" \ --pkg $(glib) --pkg $(gio-unix) --pkg posix --pkg $(gee) --pkg $(json-glib) --pkg $(gtk+) --pkg $(vte) \ $(common_vala_files) $(gui_vala_files) -o $(@) $(BRANDING_SHORTNAME): $(misc_files) $(common_vala_files) $(tui_vala_files) - valac $(branding_symbols) --Xcc="-lm" \ + valac -X -w $(branding_symbols) --Xcc="-lm" \ --pkg $(glib) --pkg $(gio-unix) --pkg posix --pkg $(gee) --pkg $(json-glib) \ $(common_vala_files) $(tui_vala_files) -o $(@) diff --git a/debian/changelog b/debian/changelog index dba7c01f..925ebe66 100644 --- a/debian/changelog +++ b/debian/changelog @@ -20,7 +20,7 @@ mainline (1.0.1) UNRELEASED; urgency=medium * Desktop icon fix for Wayland from Hugo Posnic * Ukranian translation - github:cappelikan - -- Brian K. White Sat, 10 Aug 2019 18:32:56 -0400 + -- Brian K. White Wed, 11 Sep 2019 15:54:11 -0400 mainline (1.0.0) disco; urgency=medium diff --git a/debian/control b/debian/control index f0852c28..9b2848ab 100644 --- a/debian/control +++ b/debian/control @@ -2,7 +2,7 @@ Source: mainline Section: utils Priority: extra Maintainer: Brian K. White -Build-Depends: debhelper, valac (>= 0.40), libgtk-3-dev, libgee-0.8-dev, libjson-glib-dev, libvte-2.91-dev +Build-Depends: debhelper, valac (>= 0.40), libgtk-3-dev, libgee-0.8-dev, libjson-glib-dev, libvte-2.91-dev, libglib2.0-dev (>= 2.58) Standards-Version: 4.3.0 Homepage: https://github.com/aljex/mainline diff --git a/debian/control.src b/debian/control.src index 736706ef..608c1256 100644 --- a/debian/control.src +++ b/debian/control.src @@ -2,7 +2,7 @@ Source: BRANDING_SHORTNAME Section: utils Priority: extra Maintainer: BRANDING_AUTHORNAME -Build-Depends: debhelper, valac (>= 0.40), libgtk-3-dev, libgee-0.8-dev, libjson-glib-dev, libvte-2.91-dev +Build-Depends: debhelper, valac (>= 0.40), libgtk-3-dev, libgee-0.8-dev, libjson-glib-dev, libvte-2.91-dev, libglib2.0-dev (>= 2.58) Standards-Version: 4.3.0 Homepage: BRANDING_WEBSITE diff --git a/po/messages.pot b/po/messages.pot index c3d9cd63..205acccc 100644 --- a/po/messages.pot +++ b/po/messages.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline 1.0.1\n" "Report-Msgid-Bugs-To: bw.aljex@gmail.com\n" -"POT-Creation-Date: 2019-09-11 13:41-0400\n" +"POT-Creation-Date: 2019-09-11 15:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" From 91b8ede5693d1c4b70a0d67b1f2cec96e289550d Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Wed, 11 Sep 2019 18:30:06 -0400 Subject: [PATCH 055/567] support glib2.0 older than 2.58 (older than cosmic) --- Makefile | 6 ++++-- README.md | 2 +- README.md.src | 2 +- debian/changelog | 2 +- debian/control | 2 +- debian/control.src | 2 +- po/es.po | 6 +++--- po/fr.po | 6 +++--- po/hr.po | 6 +++--- po/messages.pot | 6 +++--- po/nl.po | 6 +++--- po/pl.po | 6 +++--- po/ru.po | 6 +++--- po/sv.po | 6 +++--- po/tr.po | 9 +++++---- po/uk.po | 6 +++--- src/Gtk/TerminalWindow.vala | 12 ++++-------- 17 files changed, 45 insertions(+), 46 deletions(-) diff --git a/Makefile b/Makefile index 488069d8..5673f7ac 100644 --- a/Makefile +++ b/Makefile @@ -19,6 +19,8 @@ gtk+ := gtk+-3.0 json-glib := json-glib-1.0 gee := gee-0.8 +GLIB_LT_2_58 := $(shell pkg-config glib-2.0 --atleast-version=2.58.0 || echo '-D GLIB_LT_2_58') + include BRANDING.mak BRANDING_VERSION := $(VERSION_MAJOR).$(VERSION_MINOR).$(VERSION_MICRO) branding_symbols := -X -D'BRANDING_SHORTNAME="$(BRANDING_SHORTNAME)"' \ @@ -56,12 +58,12 @@ deb_file = release/deb/$(BRANDING_SHORTNAME)_$(pkg_version).$(DEB_BUILD_NUMBER)_ all: $(BRANDING_SHORTNAME) $(BRANDING_SHORTNAME)-gtk $(po_files) $(BRANDING_SHORTNAME)-gtk: $(misc_files) $(common_vala_files) $(gui_vala_files) - valac -X -w $(branding_symbols) --Xcc="-lm" \ + valac -X -w $(branding_symbols) $(GLIB_LT_2_58) --Xcc="-lm" \ --pkg $(glib) --pkg $(gio-unix) --pkg posix --pkg $(gee) --pkg $(json-glib) --pkg $(gtk+) --pkg $(vte) \ $(common_vala_files) $(gui_vala_files) -o $(@) $(BRANDING_SHORTNAME): $(misc_files) $(common_vala_files) $(tui_vala_files) - valac -X -w $(branding_symbols) --Xcc="-lm" \ + valac -X -w $(branding_symbols) $(GLIB_LT_2_58) --Xcc="-lm" \ --pkg $(glib) --pkg $(gio-unix) --pkg posix --pkg $(gee) --pkg $(json-glib) \ $(common_vala_files) $(tui_vala_files) -o $(@) diff --git a/README.md b/README.md index d9ef9bc4..d05b8ff6 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ This is a tool for installing the latest mainline Linux kernel on Ubuntu-based d * For each kernel, the related packages (headers & modules) are installed or removed at the same time ### Downloads & Source Code -mainline is written using Vala (0.40+) and GTK3. Source code and binaries are available from the [GitHub project page](https://github.com/aljex/mainline). +mainline is written using Vala and GTK3. Source code and binaries are available from the [GitHub project page](https://github.com/aljex/mainline). [cappelikan](https://github.com/cappelikan) maintains a PPA at: diff --git a/README.md.src b/README.md.src index 4f448f48..61f871d5 100644 --- a/README.md.src +++ b/README.md.src @@ -14,7 +14,7 @@ This is a tool for installing the latest mainline Linux kernel on Ubuntu-based d * For each kernel, the related packages (headers & modules) are installed or removed at the same time ### Downloads & Source Code -BRANDING_SHORTNAME is written using Vala (0.40+) and GTK3. Source code and binaries are available from the [GitHub project page](BRANDING_WEBSITE). +BRANDING_SHORTNAME is written using Vala and GTK3. Source code and binaries are available from the [GitHub project page](BRANDING_WEBSITE). [cappelikan](https://github.com/cappelikan) maintains a PPA at: diff --git a/debian/changelog b/debian/changelog index 925ebe66..e5ee2168 100644 --- a/debian/changelog +++ b/debian/changelog @@ -20,7 +20,7 @@ mainline (1.0.1) UNRELEASED; urgency=medium * Desktop icon fix for Wayland from Hugo Posnic * Ukranian translation - github:cappelikan - -- Brian K. White Wed, 11 Sep 2019 15:54:11 -0400 + -- Brian K. White Wed, 11 Sep 2019 16:21:50 -0400 mainline (1.0.0) disco; urgency=medium diff --git a/debian/control b/debian/control index 9b2848ab..f0852c28 100644 --- a/debian/control +++ b/debian/control @@ -2,7 +2,7 @@ Source: mainline Section: utils Priority: extra Maintainer: Brian K. White -Build-Depends: debhelper, valac (>= 0.40), libgtk-3-dev, libgee-0.8-dev, libjson-glib-dev, libvte-2.91-dev, libglib2.0-dev (>= 2.58) +Build-Depends: debhelper, valac (>= 0.40), libgtk-3-dev, libgee-0.8-dev, libjson-glib-dev, libvte-2.91-dev Standards-Version: 4.3.0 Homepage: https://github.com/aljex/mainline diff --git a/debian/control.src b/debian/control.src index 608c1256..736706ef 100644 --- a/debian/control.src +++ b/debian/control.src @@ -2,7 +2,7 @@ Source: BRANDING_SHORTNAME Section: utils Priority: extra Maintainer: BRANDING_AUTHORNAME -Build-Depends: debhelper, valac (>= 0.40), libgtk-3-dev, libgee-0.8-dev, libjson-glib-dev, libvte-2.91-dev, libglib2.0-dev (>= 2.58) +Build-Depends: debhelper, valac (>= 0.40), libgtk-3-dev, libgee-0.8-dev, libjson-glib-dev, libvte-2.91-dev Standards-Version: 4.3.0 Homepage: BRANDING_WEBSITE diff --git a/po/es.po b/po/es.po index 116e8089..458c82a4 100644 --- a/po/es.po +++ b/po/es.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu\n" "Report-Msgid-Bugs-To: bw.aljex@gmail.com\n" -"POT-Creation-Date: 2019-08-09 18:47-0400\n" +"POT-Creation-Date: 2019-09-11 18:04-0400\n" "PO-Revision-Date: 2018-01-03 02:03-0600\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish\n" @@ -61,7 +61,7 @@ msgid "Cache" msgstr "Cache" #: src/Gtk/ProgressWindow.vala:145 src/Gtk/UpdateNotificationWindow.vala:167 -#: src/Gtk/TerminalWindow.vala:149 src/Utility/Gtk/CustomMessageDialog.vala:155 +#: src/Gtk/TerminalWindow.vala:148 src/Utility/Gtk/CustomMessageDialog.vala:155 msgid "Cancel" msgstr "Cancelar" @@ -81,7 +81,7 @@ msgstr "Buscar actualizaciones del núcleo" msgid "Check for kernel updates and notify current user" msgstr "Compruebe las actualizaciones del kernel y notifique al usuario actual" -#: src/Gtk/TerminalWindow.vala:159 src/Utility/Gtk/AboutWindow.vala:295 +#: src/Gtk/TerminalWindow.vala:158 src/Utility/Gtk/AboutWindow.vala:295 msgid "Close" msgstr "Cerrar" diff --git a/po/fr.po b/po/fr.po index 36886143..36d34d4a 100644 --- a/po/fr.po +++ b/po/fr.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu\n" "Report-Msgid-Bugs-To: bw.aljex@gmail.com\n" -"POT-Creation-Date: 2019-08-09 18:47-0400\n" +"POT-Creation-Date: 2019-09-11 18:04-0400\n" "PO-Revision-Date: 2018-08-05 15:50+0200\n" "Last-Translator: Yolateng0 \n" "Language-Team: French\n" @@ -61,7 +61,7 @@ msgid "Cache" msgstr "" #: src/Gtk/ProgressWindow.vala:145 src/Gtk/UpdateNotificationWindow.vala:167 -#: src/Gtk/TerminalWindow.vala:149 src/Utility/Gtk/CustomMessageDialog.vala:155 +#: src/Gtk/TerminalWindow.vala:148 src/Utility/Gtk/CustomMessageDialog.vala:155 msgid "Cancel" msgstr "Annuler" @@ -82,7 +82,7 @@ msgstr "Vérifier les mises à jour des noyaux" msgid "Check for kernel updates and notify current user" msgstr "Vérifier les mises à jour des noyaux" -#: src/Gtk/TerminalWindow.vala:159 src/Utility/Gtk/AboutWindow.vala:295 +#: src/Gtk/TerminalWindow.vala:158 src/Utility/Gtk/AboutWindow.vala:295 msgid "Close" msgstr "Fermer" diff --git a/po/hr.po b/po/hr.po index 59d08d53..ae1c6842 100644 --- a/po/hr.po +++ b/po/hr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu\n" "Report-Msgid-Bugs-To: bw.aljex@gmail.com\n" -"POT-Creation-Date: 2019-08-09 18:47-0400\n" +"POT-Creation-Date: 2019-09-11 18:04-0400\n" "PO-Revision-Date: 2017-12-24 00:52+0100\n" "Last-Translator: gogo \n" "Language-Team: Croatian \n" @@ -62,7 +62,7 @@ msgid "Cache" msgstr "" #: src/Gtk/ProgressWindow.vala:145 src/Gtk/UpdateNotificationWindow.vala:167 -#: src/Gtk/TerminalWindow.vala:149 src/Utility/Gtk/CustomMessageDialog.vala:155 +#: src/Gtk/TerminalWindow.vala:148 src/Utility/Gtk/CustomMessageDialog.vala:155 msgid "Cancel" msgstr "Odustani" @@ -83,7 +83,7 @@ msgstr "Provjeri nadopune kernela" msgid "Check for kernel updates and notify current user" msgstr "Provjeri nadopune kernela" -#: src/Gtk/TerminalWindow.vala:159 src/Utility/Gtk/AboutWindow.vala:295 +#: src/Gtk/TerminalWindow.vala:158 src/Utility/Gtk/AboutWindow.vala:295 msgid "Close" msgstr "Zatvori" diff --git a/po/messages.pot b/po/messages.pot index 205acccc..84a4f92f 100644 --- a/po/messages.pot +++ b/po/messages.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline 1.0.1\n" "Report-Msgid-Bugs-To: bw.aljex@gmail.com\n" -"POT-Creation-Date: 2019-09-11 15:54-0400\n" +"POT-Creation-Date: 2019-09-11 18:24-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -60,7 +60,7 @@ msgid "Cache" msgstr "" #: src/Gtk/ProgressWindow.vala:145 src/Gtk/UpdateNotificationWindow.vala:167 -#: src/Gtk/TerminalWindow.vala:149 src/Utility/Gtk/CustomMessageDialog.vala:155 +#: src/Gtk/TerminalWindow.vala:148 src/Utility/Gtk/CustomMessageDialog.vala:155 msgid "Cancel" msgstr "" @@ -80,7 +80,7 @@ msgstr "" msgid "Check for kernel updates and notify current user" msgstr "" -#: src/Gtk/TerminalWindow.vala:159 src/Utility/Gtk/AboutWindow.vala:295 +#: src/Gtk/TerminalWindow.vala:158 src/Utility/Gtk/AboutWindow.vala:295 msgid "Close" msgstr "" diff --git a/po/nl.po b/po/nl.po index 257b84f5..becef207 100644 --- a/po/nl.po +++ b/po/nl.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu 2.2\n" "Report-Msgid-Bugs-To: bw.aljex@gmail.com\n" -"POT-Creation-Date: 2019-08-09 18:47-0400\n" +"POT-Creation-Date: 2019-09-11 18:04-0400\n" "PO-Revision-Date: 2017-04-30 11:50+0200\n" "Last-Translator: Heimen Stoffels \n" "Language-Team: \n" @@ -63,7 +63,7 @@ msgid "Cache" msgstr "" #: src/Gtk/ProgressWindow.vala:145 src/Gtk/UpdateNotificationWindow.vala:167 -#: src/Gtk/TerminalWindow.vala:149 src/Utility/Gtk/CustomMessageDialog.vala:155 +#: src/Gtk/TerminalWindow.vala:148 src/Utility/Gtk/CustomMessageDialog.vala:155 msgid "Cancel" msgstr "Annuleren" @@ -84,7 +84,7 @@ msgstr "Controleren op kernel-updates" msgid "Check for kernel updates and notify current user" msgstr "Controleren op kernel-updates" -#: src/Gtk/TerminalWindow.vala:159 src/Utility/Gtk/AboutWindow.vala:295 +#: src/Gtk/TerminalWindow.vala:158 src/Utility/Gtk/AboutWindow.vala:295 msgid "Close" msgstr "Sluiten" diff --git a/po/pl.po b/po/pl.po index 4a43fc72..61e62989 100644 --- a/po/pl.po +++ b/po/pl.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu\n" "Report-Msgid-Bugs-To: bw.aljex@gmail.com\n" -"POT-Creation-Date: 2019-08-09 18:47-0400\n" +"POT-Creation-Date: 2019-09-11 18:04-0400\n" "PO-Revision-Date: 2017-08-12 15:26+0200\n" "Last-Translator: \n" "Language-Team: Polish\n" @@ -60,7 +60,7 @@ msgid "Cache" msgstr "" #: src/Gtk/ProgressWindow.vala:145 src/Gtk/UpdateNotificationWindow.vala:167 -#: src/Gtk/TerminalWindow.vala:149 src/Utility/Gtk/CustomMessageDialog.vala:155 +#: src/Gtk/TerminalWindow.vala:148 src/Utility/Gtk/CustomMessageDialog.vala:155 msgid "Cancel" msgstr "Anuluj" @@ -81,7 +81,7 @@ msgstr "Sprawdź nowe wersje jądra" msgid "Check for kernel updates and notify current user" msgstr "Sprawdź nowe wersje jądra" -#: src/Gtk/TerminalWindow.vala:159 src/Utility/Gtk/AboutWindow.vala:295 +#: src/Gtk/TerminalWindow.vala:158 src/Utility/Gtk/AboutWindow.vala:295 msgid "Close" msgstr "Zamknij" diff --git a/po/ru.po b/po/ru.po index 085fc713..0c07b010 100644 --- a/po/ru.po +++ b/po/ru.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu\n" "Report-Msgid-Bugs-To: bw.aljex@gmail.com\n" -"POT-Creation-Date: 2019-08-09 18:47-0400\n" +"POT-Creation-Date: 2019-09-11 18:04-0400\n" "PO-Revision-Date: 2016-12-13 16:46+0300\n" "Last-Translator: Faust3000 \n" "Language-Team: Russian \n" @@ -62,7 +62,7 @@ msgid "Cache" msgstr "" #: src/Gtk/ProgressWindow.vala:145 src/Gtk/UpdateNotificationWindow.vala:167 -#: src/Gtk/TerminalWindow.vala:149 src/Utility/Gtk/CustomMessageDialog.vala:155 +#: src/Gtk/TerminalWindow.vala:148 src/Utility/Gtk/CustomMessageDialog.vala:155 msgid "Cancel" msgstr "Отмена" @@ -83,7 +83,7 @@ msgstr "Проверить обновления ядра" msgid "Check for kernel updates and notify current user" msgstr "Проверить обновления ядра" -#: src/Gtk/TerminalWindow.vala:159 src/Utility/Gtk/AboutWindow.vala:295 +#: src/Gtk/TerminalWindow.vala:158 src/Utility/Gtk/AboutWindow.vala:295 msgid "Close" msgstr "Закрыть" diff --git a/po/sv.po b/po/sv.po index 530ba022..5177e83f 100644 --- a/po/sv.po +++ b/po/sv.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu 2.2\n" "Report-Msgid-Bugs-To: bw.aljex@gmail.com\n" -"POT-Creation-Date: 2019-08-09 18:47-0400\n" +"POT-Creation-Date: 2019-09-11 18:04-0400\n" "PO-Revision-Date: 2018-01-13 16:56+0100\n" "Last-Translator: Åke Engelbrektson \n" "Language-Team: Svenska Språkfiler \n" @@ -62,7 +62,7 @@ msgid "Cache" msgstr "" #: src/Gtk/ProgressWindow.vala:145 src/Gtk/UpdateNotificationWindow.vala:167 -#: src/Gtk/TerminalWindow.vala:149 src/Utility/Gtk/CustomMessageDialog.vala:155 +#: src/Gtk/TerminalWindow.vala:148 src/Utility/Gtk/CustomMessageDialog.vala:155 msgid "Cancel" msgstr "Avbryt" @@ -83,7 +83,7 @@ msgstr "Sök efter kärnuppdateringar" msgid "Check for kernel updates and notify current user" msgstr "Sök efter kärnuppdateringar" -#: src/Gtk/TerminalWindow.vala:159 src/Utility/Gtk/AboutWindow.vala:295 +#: src/Gtk/TerminalWindow.vala:158 src/Utility/Gtk/AboutWindow.vala:295 msgid "Close" msgstr "Stäng" diff --git a/po/tr.po b/po/tr.po index 87d184fb..2a0d0ae9 100644 --- a/po/tr.po +++ b/po/tr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu\n" "Report-Msgid-Bugs-To: bw.aljex@gmail.com\n" -"POT-Creation-Date: 2019-08-09 18:47-0400\n" +"POT-Creation-Date: 2019-09-11 18:04-0400\n" "PO-Revision-Date: 2019-08-31 18:33+0300\n" "Last-Translator: Gökhan GÖKKAYA \n" "Language-Team: Turkish\n" @@ -61,7 +61,7 @@ msgid "Cache" msgstr "Önbellek" #: src/Gtk/ProgressWindow.vala:145 src/Gtk/UpdateNotificationWindow.vala:167 -#: src/Gtk/TerminalWindow.vala:149 src/Utility/Gtk/CustomMessageDialog.vala:155 +#: src/Gtk/TerminalWindow.vala:148 src/Utility/Gtk/CustomMessageDialog.vala:155 msgid "Cancel" msgstr "İptal" @@ -81,7 +81,7 @@ msgstr "Çekirdek güncellemelerini kontrol et" msgid "Check for kernel updates and notify current user" msgstr "Çekirdek güncellemelerini kontrol et ve mevcut kullanıcıyı uyar" -#: src/Gtk/TerminalWindow.vala:159 src/Utility/Gtk/AboutWindow.vala:295 +#: src/Gtk/TerminalWindow.vala:158 src/Utility/Gtk/AboutWindow.vala:295 msgid "Close" msgstr "Kapat" @@ -297,7 +297,8 @@ msgstr "Kurulum hatalarla tamamlandı" #: src/Common/LinuxKernel.vala:1269 msgid "Installation completed. A reboot is required to use the new kernel." -msgstr "Kurulum tamamlandı. Yeni çekirdeği kullanmak için yeniden başlatma gerekiyor." +msgstr "" +"Kurulum tamamlandı. Yeni çekirdeği kullanmak için yeniden başlatma gerekiyor." #: src/Common/LinuxKernel.vala:1169 src/Gtk/MainWindow.vala:208 msgid "Installed" diff --git a/po/uk.po b/po/uk.po index 5547a93d..b658db3b 100644 --- a/po/uk.po +++ b/po/uk.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu\n" "Report-Msgid-Bugs-To: bw.aljex@gmail.com\n" -"POT-Creation-Date: 2019-09-02 20:03-0400\n" +"POT-Creation-Date: 2019-09-11 18:04-0400\n" "PO-Revision-Date: 2019-07-25 11:00+0300\n" "Last-Translator: Serhii Golovko \n" "Language-Team: Ukranian \n" @@ -56,7 +56,7 @@ msgid "Cache" msgstr "Кеш" #: src/Gtk/ProgressWindow.vala:145 src/Gtk/UpdateNotificationWindow.vala:167 -#: src/Gtk/TerminalWindow.vala:149 src/Utility/Gtk/CustomMessageDialog.vala:155 +#: src/Gtk/TerminalWindow.vala:148 src/Utility/Gtk/CustomMessageDialog.vala:155 msgid "Cancel" msgstr "Відміна" @@ -76,7 +76,7 @@ msgstr "Перевірити оновлення ядра" msgid "Check for kernel updates and notify current user" msgstr "Перевірте наявність оновлень ядра та повідомте поточного користувача" -#: src/Gtk/TerminalWindow.vala:159 src/Utility/Gtk/AboutWindow.vala:295 +#: src/Gtk/TerminalWindow.vala:158 src/Utility/Gtk/AboutWindow.vala:295 msgid "Close" msgstr "Закрити" diff --git a/src/Gtk/TerminalWindow.vala b/src/Gtk/TerminalWindow.vala index ea95bc59..38c457c4 100644 --- a/src/Gtk/TerminalWindow.vala +++ b/src/Gtk/TerminalWindow.vala @@ -19,7 +19,6 @@ * MA 02110-1301, USA. */ - using Gtk; using Gee; @@ -203,16 +202,13 @@ public class TerminalWindow : Gtk.Window { process_quit(child_pid); } -/* builds in cosmic and disco - * xenial fails with: -Gtk/TerminalWindow.vala:242.19-242.29: error: Argument 1: Cannot convert from `char[]' to `string' - term.feed_child(c.to_utf8()); - ^^^^^^^^^^^ - */ - public void execute_command(string command){ +#if GLIB_LT_2_58 + term.feed_child("%s\n".printf(command), -1); +#else string c = command.concat("\n"); term.feed_child(c.to_utf8()); +#endif } public void execute_script(string script_path, bool wait = false){ From a8383c7077f15b89fc2f7c2874dbff5263bc7c58 Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Wed, 2 Oct 2019 01:54:34 +0100 Subject: [PATCH 056/567] transfer from github user 'aljex' (work acct) to github user 'bkw77' (personal acct) --- BRANDING.mak | 6 +++--- debian/changelog | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/BRANDING.mak b/BRANDING.mak index f4b899da..add197b6 100644 --- a/BRANDING.mak +++ b/BRANDING.mak @@ -7,6 +7,6 @@ VERSION_MICRO = 1 BRANDING_SHORTNAME = mainline BRANDING_LONGNAME = Ubuntu Mainline Kernel Installer BRANDING_AUTHORNAME = Brian K. White -BRANDING_AUTHOREMAIL = bw.aljex@gmail.com -BRANDING_WEBSITE = https://github.com/aljex/mainline -BRANDING_GITREPO = https://github.com/aljex/mainline.git +BRANDING_AUTHOREMAIL = b.kenyon.w@gmail.com +BRANDING_WEBSITE = https://github.com/bkw777/mainline +BRANDING_GITREPO = https://github.com/bkw777/mainline.git diff --git a/debian/changelog b/debian/changelog index e5ee2168..e7efa24e 100644 --- a/debian/changelog +++ b/debian/changelog @@ -20,7 +20,7 @@ mainline (1.0.1) UNRELEASED; urgency=medium * Desktop icon fix for Wayland from Hugo Posnic * Ukranian translation - github:cappelikan - -- Brian K. White Wed, 11 Sep 2019 16:21:50 -0400 + -- Brian K. White Wed, 11 Sep 2019 16:21:50 -0400 mainline (1.0.0) disco; urgency=medium From 0f4e3c82a998626ca37b47ebad147eaa3106cc56 Mon Sep 17 00:00:00 2001 From: Hanif Ariffin Date: Wed, 30 Oct 2019 14:26:57 -0400 Subject: [PATCH 057/567] Ubuntu 18.04 does not come with these 2 packages The current instruction will result in an error that says you have to install the following 2 packages. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index d05b8ff6..090578f6 100644 --- a/README.md +++ b/README.md @@ -23,7 +23,7 @@ mainline is written using Vala and GTK3. Source code and binaries are available sudo apt install mainline ### Build - sudo apt install libgee-0.8-dev libjson-glib-dev libvte-2.91-dev valac + sudo apt install libgee-0.8-dev libjson-glib-dev libvte-2.91-dev valac aptitude aria2 git clone https://github.com/aljex/mainline.git cd mainline make From 585739b6bb678ccd57f35c7fb4627571be48e052 Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Fri, 3 Jan 2020 19:21:53 -0500 Subject: [PATCH 058/567] 1.0.2 --- .deb_build_number.mak | 4 +- BRANDING.mak | 2 +- Makefile | 5 +- README.md | 4 +- debian/changelog | 5 +- debian/control | 4 +- debian/copyright | 4 +- po/es.po | 114 ++++++++++++++++++----------------- po/fr.po | 114 ++++++++++++++++++----------------- po/hr.po | 114 ++++++++++++++++++----------------- po/messages.pot | 117 ++++++++++++++++++------------------ po/nl.po | 114 ++++++++++++++++++----------------- po/pl.po | 114 ++++++++++++++++++----------------- po/ru.po | 114 ++++++++++++++++++----------------- po/sv.po | 114 ++++++++++++++++++----------------- po/tr.po | 114 ++++++++++++++++++----------------- po/uk.po | 114 ++++++++++++++++++----------------- src/Common/LinuxKernel.vala | 16 ++--- src/Common/Main.vala | 6 +- src/Console/AppConsole.vala | 1 + src/Gtk/AppGtk.vala | 2 + src/Gtk/MainWindow.vala | 10 +-- src/Gtk/SettingsDialog.vala | 28 +++++---- 23 files changed, 633 insertions(+), 601 deletions(-) diff --git a/.deb_build_number.mak b/.deb_build_number.mak index 08abc63e..4428bfcb 100644 --- a/.deb_build_number.mak +++ b/.deb_build_number.mak @@ -1,3 +1,3 @@ # This file is generated by Makefile -DEB_PKG_VERSION := 1.0.1 -DEB_BUILD_NUMBER := 0020 +DEB_PKG_VERSION := 1.0.2 +DEB_BUILD_NUMBER := 0000 diff --git a/BRANDING.mak b/BRANDING.mak index add197b6..45ee37cd 100644 --- a/BRANDING.mak +++ b/BRANDING.mak @@ -3,7 +3,7 @@ VERSION_MAJOR = 1 VERSION_MINOR = 0 -VERSION_MICRO = 1 +VERSION_MICRO = 2 BRANDING_SHORTNAME = mainline BRANDING_LONGNAME = Ubuntu Mainline Kernel Installer BRANDING_AUTHORNAME = Brian K. White diff --git a/Makefile b/Makefile index 5673f7ac..16f3a9b8 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,7 @@ # Makefile for "mainline" +DEFAULT_KERNEL_VERSION_THRESHOLD = 5 + SHELL := /bin/bash CFLAGS := --std=c99 @@ -29,7 +31,8 @@ branding_symbols := -X -D'BRANDING_SHORTNAME="$(BRANDING_SHORTNAME)"' \ -X -D'BRANDING_AUTHORNAME="$(BRANDING_AUTHORNAME)"' \ -X -D'BRANDING_AUTHOREMAIL="$(BRANDING_AUTHOREMAIL)"' \ -X -D'BRANDING_WEBSITE="$(BRANDING_WEBSITE)"' \ - -X -D'GETTEXT_PACKAGE="$(BRANDING_SHORTNAME)"' + -X -D'GETTEXT_PACKAGE="$(BRANDING_SHORTNAME)"' \ + -X -D'DEFAULT_KERNEL_VERSION_THRESHOLD="$(DEFAULT_KERNEL_VERSION_THRESHOLD)"' misc_files := README.md \ INSTALL \ diff --git a/README.md b/README.md index d05b8ff6..129f4b7f 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ This is a tool for installing the latest mainline Linux kernel on Ubuntu-based d * For each kernel, the related packages (headers & modules) are installed or removed at the same time ### Downloads & Source Code -mainline is written using Vala and GTK3. Source code and binaries are available from the [GitHub project page](https://github.com/aljex/mainline). +mainline is written using Vala and GTK3. Source code and binaries are available from the [GitHub project page](https://github.com/bkw777/mainline). [cappelikan](https://github.com/cappelikan) maintains a PPA at: @@ -24,7 +24,7 @@ mainline is written using Vala and GTK3. Source code and binaries are available ### Build sudo apt install libgee-0.8-dev libjson-glib-dev libvte-2.91-dev valac - git clone https://github.com/aljex/mainline.git + git clone https://github.com/bkw777/mainline.git cd mainline make sudo make install diff --git a/debian/changelog b/debian/changelog index e7efa24e..7b65b790 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,4 +1,4 @@ -mainline (1.0.1) UNRELEASED; urgency=medium +mainline (1.0.2) UNRELEASED; urgency=medium * Disabled buggy progress bar * Add missing translators on credits window @@ -19,8 +19,9 @@ mainline (1.0.1) UNRELEASED; urgency=medium The Makefile is now officially more feature rich and robust than the application itself ¯\_(ツ)_/¯ * Desktop icon fix for Wayland from Hugo Posnic * Ukranian translation - github:cappelikan + * Change bool hide_older to int kernel_version_threshold - -- Brian K. White Wed, 11 Sep 2019 16:21:50 -0400 + -- Brian K. White Fri, 03 Jan 2020 18:01:59 -0500 mainline (1.0.0) disco; urgency=medium diff --git a/debian/control b/debian/control index f0852c28..9e829690 100644 --- a/debian/control +++ b/debian/control @@ -1,10 +1,10 @@ Source: mainline Section: utils Priority: extra -Maintainer: Brian K. White +Maintainer: Brian K. White Build-Depends: debhelper, valac (>= 0.40), libgtk-3-dev, libgee-0.8-dev, libjson-glib-dev, libvte-2.91-dev Standards-Version: 4.3.0 -Homepage: https://github.com/aljex/mainline +Homepage: https://github.com/bkw777/mainline Package: mainline Architecture: any diff --git a/debian/copyright b/debian/copyright index 365410b2..1c1bc685 100644 --- a/debian/copyright +++ b/debian/copyright @@ -1,8 +1,8 @@ Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: mainline -Source: +Source: Files: * Copyright: 2016-2018 Tony George - 2019 Brian K. White + 2019 Brian K. White License: GPL-3 diff --git a/po/es.po b/po/es.po index 458c82a4..9f7b0251 100644 --- a/po/es.po +++ b/po/es.po @@ -5,8 +5,8 @@ msgid "" msgstr "" "Project-Id-Version: ukuu\n" -"Report-Msgid-Bugs-To: bw.aljex@gmail.com\n" -"POT-Creation-Date: 2019-09-11 18:04-0400\n" +"Report-Msgid-Bugs-To: b.kenyon.w@gmail.com\n" +"POT-Creation-Date: 2020-01-03 18:52-0500\n" "PO-Revision-Date: 2018-01-03 02:03-0600\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish\n" @@ -21,7 +21,7 @@ msgstr "" msgid "About" msgstr "Acerca de" -#: src/Console/AppConsole.vala:114 +#: src/Console/AppConsole.vala:115 msgid "Admin access is required for running this application." msgstr "" "Se necesitan privilegios administrativos para ejecutar esta aplicación." @@ -39,7 +39,7 @@ msgstr "Arquitectura del sistema" msgid "Artists" msgstr "Artistas" -#: src/Console/AppConsole.vala:101 +#: src/Console/AppConsole.vala:102 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "Asumir Sí para todas las solicitudes (modo no interactivo)" @@ -56,12 +56,13 @@ msgstr "Núcleos disponibles" msgid "Back" msgstr "Atrás" -#: src/Console/AppConsole.vala:204 src/Gtk/AppGtk.vala:110 +#: src/Console/AppConsole.vala:205 src/Gtk/AppGtk.vala:112 msgid "Cache" msgstr "Cache" -#: src/Gtk/ProgressWindow.vala:145 src/Gtk/UpdateNotificationWindow.vala:167 -#: src/Gtk/TerminalWindow.vala:148 src/Utility/Gtk/CustomMessageDialog.vala:155 +#: src/Gtk/ProgressWindow.vala:145 src/Gtk/TerminalWindow.vala:148 +#: src/Gtk/UpdateNotificationWindow.vala:167 +#: src/Utility/Gtk/CustomMessageDialog.vala:155 msgid "Cancel" msgstr "Cancelar" @@ -69,15 +70,15 @@ msgstr "Cancelar" msgid "Changes" msgstr "Cambios" -#: src/Gtk/SettingsDialog.vala:121 +#: src/Gtk/SettingsDialog.vala:120 msgid "Check every" msgstr "Comprobar cada" -#: src/Console/AppConsole.vala:85 +#: src/Console/AppConsole.vala:86 msgid "Check for kernel updates" msgstr "Buscar actualizaciones del núcleo" -#: src/Console/AppConsole.vala:86 +#: src/Console/AppConsole.vala:87 msgid "Check for kernel updates and notify current user" msgstr "Compruebe las actualizaciones del kernel y notifique al usuario actual" @@ -85,11 +86,11 @@ msgstr "Compruebe las actualizaciones del kernel y notifique al usuario actual" msgid "Close" msgstr "Cerrar" -#: src/Console/AppConsole.vala:341 +#: src/Console/AppConsole.vala:342 msgid "Command not specified" msgstr "Coomand no especificado" -#: src/Console/AppConsole.vala:83 +#: src/Console/AppConsole.vala:84 msgid "Commands" msgstr "Comandos" @@ -112,7 +113,7 @@ msgstr "Contribuciones" msgid "Could not find any kernels to remove" msgstr "Seleccione los núcleos que se desinstalarán" -#: src/Console/AppConsole.vala:309 src/Gtk/MainWindow.vala:100 +#: src/Console/AppConsole.vala:310 src/Gtk/MainWindow.vala:100 msgid "Could not find requested version" msgstr "No se pudo encontrar la versión solicitada" @@ -130,7 +131,7 @@ msgstr "Se creó el directorio" msgid "Credits" msgstr "Créditos" -#: src/Gtk/SettingsDialog.vala:154 +#: src/Gtk/SettingsDialog.vala:153 msgid "Day(s)" msgstr "Días" @@ -142,7 +143,7 @@ msgstr "Se eliminó el directorio" msgid "Dir not found" msgstr "No se encontró el directorio" -#: src/Gtk/SettingsDialog.vala:161 +#: src/Gtk/SettingsDialog.vala:160 msgid "Display" msgstr "Mostrar" @@ -155,7 +156,7 @@ msgstr "Distribución" msgid "Documenters" msgstr "Documentadores" -#: src/Console/AppConsole.vala:94 +#: src/Console/AppConsole.vala:95 msgid "Download packages for specified kernel" msgstr "Descargar paquetes del núcleo especificado" @@ -243,15 +244,16 @@ msgstr "No se encontró el archivo: %s" msgid "File saved" msgstr "Se guardó el archivo" -#: src/Gtk/SettingsDialog.vala:180 -msgid "Hide kernels older than 4.0" +#: src/Gtk/SettingsDialog.vala:182 +#, fuzzy +msgid "Hide kernels older than " msgstr "Ocultar núcleos anteriores a 4.0" -#: src/Gtk/SettingsDialog.vala:169 +#: src/Gtk/SettingsDialog.vala:168 msgid "Hide unstable and RC releases" msgstr "Ocultar versiones inestables y RC" -#: src/Gtk/SettingsDialog.vala:152 +#: src/Gtk/SettingsDialog.vala:151 msgid "Hour(s)" msgstr "Horas" @@ -267,7 +269,7 @@ msgstr "El índice está al día" msgid "Index is stale" msgstr "El índice es obsoleto" -#: src/Gtk/UpdateNotificationWindow.vala:147 src/Gtk/MainWindow.vala:359 +#: src/Gtk/MainWindow.vala:359 src/Gtk/UpdateNotificationWindow.vala:147 msgid "Install" msgstr "Instalar" @@ -276,15 +278,15 @@ msgstr "Instalar" msgid "Install Linux v%s ? (y/n): " msgstr "" -#: src/Console/AppConsole.vala:89 +#: src/Console/AppConsole.vala:90 msgid "Install latest mainline kernel" msgstr "Instalar kernel troncal especificado" -#: src/Console/AppConsole.vala:90 +#: src/Console/AppConsole.vala:91 msgid "Install latest point update for current series" msgstr "" -#: src/Console/AppConsole.vala:91 +#: src/Console/AppConsole.vala:92 msgid "Install specified mainline kernel" msgstr "Instalar núcleo troncal especificado" @@ -310,7 +312,7 @@ msgstr "Instalado" msgid "Internet connection is not active" msgstr "La conexión a Internet está inactiva" -#: src/Gtk/SettingsDialog.vala:212 +#: src/Gtk/SettingsDialog.vala:218 #, fuzzy msgid "Internet connection timeout in " msgstr "La conexión a Internet está inactiva" @@ -324,17 +326,17 @@ msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "" "Herramienta de renovación de núcleo para distribuciones basadas en Ubuntu" -#: src/Common/LinuxKernel.vala:776 src/Console/AppConsole.vala:367 +#: src/Common/LinuxKernel.vala:776 src/Console/AppConsole.vala:368 #, c-format msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:765 src/Console/AppConsole.vala:360 +#: src/Common/LinuxKernel.vala:765 src/Console/AppConsole.vala:361 #, c-format msgid "Latest update" msgstr "" -#: src/Console/AppConsole.vala:87 +#: src/Console/AppConsole.vala:88 msgid "List all available mainline kernels" msgstr "Mostrar todos los núcleos troncales disponibles" @@ -342,7 +344,7 @@ msgstr "Mostrar todos los núcleos troncales disponibles" msgid "List available kernels" msgstr "Mostrar núcleos disponibles" -#: src/Console/AppConsole.vala:88 +#: src/Console/AppConsole.vala:89 msgid "List installed kernels" msgstr "Mostrar kernels disponibles" @@ -354,7 +356,7 @@ msgstr "Falta el icono" msgid "Multiple Kernels Selected" msgstr "Se seleccionaron varios kernels" -#: src/Console/AppConsole.vala:291 +#: src/Console/AppConsole.vala:292 msgid "Multiple kernels selected for installation. Select only one." msgstr "Se seleccionaron varios núcleos para su instalación. Elija solo uno." @@ -367,12 +369,12 @@ msgstr "No" msgid "No Internet" msgstr "No hay Internet" -#: src/Console/AppConsole.vala:285 src/Console/AppConsole.vala:322 +#: src/Console/AppConsole.vala:286 src/Console/AppConsole.vala:323 msgid "No kernels specified" msgstr "" -#: src/Common/LinuxKernel.vala:784 src/Console/AppConsole.vala:372 -#: src/Console/AppConsole.vala:430 src/Gtk/MainWindow.vala:796 +#: src/Common/LinuxKernel.vala:784 src/Console/AppConsole.vala:373 +#: src/Console/AppConsole.vala:431 src/Gtk/MainWindow.vala:796 msgid "No updates found" msgstr "No se encontró ninguna actualización" @@ -380,15 +382,15 @@ msgstr "No se encontró ninguna actualización" msgid "Not Selected" msgstr "No seleccionado" -#: src/Gtk/SettingsDialog.vala:66 +#: src/Gtk/SettingsDialog.vala:65 msgid "Notification" msgstr "Notificación" -#: src/Gtk/SettingsDialog.vala:73 +#: src/Gtk/SettingsDialog.vala:72 msgid "Notify if a major release is available" msgstr "Notificar si hay una versión importante disponible" -#: src/Gtk/SettingsDialog.vala:84 +#: src/Gtk/SettingsDialog.vala:83 msgid "Notify if a point release is available" msgstr "Notificar si hay una versión puntual disponible" @@ -399,11 +401,11 @@ msgstr "Notificar si hay una versión puntual disponible" msgid "OK" msgstr "Aceptar" -#: src/Console/AppConsole.vala:98 src/Gtk/AppGtk.vala:181 +#: src/Console/AppConsole.vala:99 src/Gtk/AppGtk.vala:183 msgid "Options" msgstr "Opciones" -#: src/Gtk/SettingsDialog.vala:191 +#: src/Gtk/SettingsDialog.vala:197 msgid "Other" msgstr "" @@ -425,7 +427,7 @@ msgstr "Instale los paquetes requeridos e inténtelo de nuevo" msgid "Preparing to remove selected kernels" msgstr "Preparándose para desinstalar los núcleos seleccionados" -#: src/Gtk/AppGtk.vala:183 +#: src/Gtk/AppGtk.vala:185 msgid "Print debug information" msgstr "Mostrar información de depuración" @@ -445,24 +447,24 @@ msgstr "Actualizando…" msgid "Remove" msgstr "Quitar" -#: src/Console/AppConsole.vala:95 src/Console/AppConsole.vala:100 +#: src/Console/AppConsole.vala:96 src/Console/AppConsole.vala:101 msgid "Remove files from application cache" msgstr "Quitar archivos de la antememoria de la aplicación" -#: src/Console/AppConsole.vala:93 src/Gtk/MainWindow.vala:426 +#: src/Console/AppConsole.vala:94 src/Gtk/MainWindow.vala:426 msgid "Remove installed kernels older than running kernel" msgstr "" -#: src/Console/AppConsole.vala:92 +#: src/Console/AppConsole.vala:93 msgid "Remove specified kernel" msgstr "Quitar el núcleo troncal especificado" -#: src/Console/AppConsole.vala:199 src/Console/AppConsole.vala:313 -#: src/Console/AppConsole.vala:342 +#: src/Console/AppConsole.vala:200 src/Console/AppConsole.vala:314 +#: src/Console/AppConsole.vala:343 msgid "Run '" msgstr "" -#: src/Console/AppConsole.vala:117 +#: src/Console/AppConsole.vala:118 msgid "Run the application as admin with pkexec or sudo." msgstr "Ejecute la aplicación con permisos administrativos con pkexec o sudo." @@ -490,7 +492,7 @@ msgstr "" "El núcleo seleccionado está en ejecución y no puede desinstalarse.\n" "Instale otro núcleo antes de desinstalar este." -#: src/Gtk/SettingsDialog.vala:56 src/Gtk/MainWindow.vala:475 +#: src/Gtk/MainWindow.vala:475 src/Gtk/SettingsDialog.vala:55 msgid "Settings" msgstr "Configuración" @@ -498,23 +500,23 @@ msgstr "Configuración" msgid "Show" msgstr "Mostrar" -#: src/Gtk/AppGtk.vala:184 +#: src/Gtk/AppGtk.vala:186 msgid "Show all options" msgstr "Mostrar todas las opciones" -#: src/Gtk/SettingsDialog.vala:95 +#: src/Gtk/SettingsDialog.vala:94 msgid "Show notification bubble on desktop" msgstr "Mostrar globo de notificación en el escritorio" -#: src/Gtk/SettingsDialog.vala:106 +#: src/Gtk/SettingsDialog.vala:105 msgid "Show notification dialog" msgstr "Mostrar cuadro de diálogo de notificación" -#: src/Console/AppConsole.vala:96 +#: src/Console/AppConsole.vala:97 msgid "Show unstable and RC releases" msgstr "Ocultar versiones inestables y RC" -#: src/Gtk/SettingsDialog.vala:199 +#: src/Gtk/SettingsDialog.vala:205 msgid "Skip internet connection check" msgstr "La conexión a Internet está inactiva" @@ -526,11 +528,11 @@ msgstr "Estado" msgid "Stopped" msgstr "Detenido" -#: src/Console/AppConsole.vala:81 src/Gtk/AppGtk.vala:179 +#: src/Console/AppConsole.vala:82 src/Gtk/AppGtk.vala:181 msgid "Syntax" msgstr "Sintaxis" -#: src/Console/AppConsole.vala:205 src/Gtk/AppGtk.vala:111 +#: src/Console/AppConsole.vala:206 src/Gtk/AppGtk.vala:113 msgid "Temp" msgstr "" @@ -569,7 +571,7 @@ msgstr "Desinstalación finalizada" msgid "Un-install completed with errors" msgstr "Desinstalación finalizada con errores" -#: src/Console/AppConsole.vala:197 src/Gtk/AppGtk.vala:166 +#: src/Console/AppConsole.vala:198 src/Gtk/AppGtk.vala:168 msgid "Unknown option" msgstr "Opción desconocida" @@ -581,7 +583,7 @@ msgstr "Versión" msgid "W" msgstr "W" -#: src/Gtk/SettingsDialog.vala:156 +#: src/Gtk/SettingsDialog.vala:155 msgid "Week(s)" msgstr "Semanas" @@ -593,6 +595,6 @@ msgstr "Sí" msgid "[Warning] Deleted invalid lock" msgstr "[Atención] Se eliminó un bloqueo no válido" -#: src/Gtk/SettingsDialog.vala:226 +#: src/Gtk/SettingsDialog.vala:232 msgid "seconds" msgstr "" diff --git a/po/fr.po b/po/fr.po index 36d34d4a..83fd3980 100644 --- a/po/fr.po +++ b/po/fr.po @@ -5,8 +5,8 @@ msgid "" msgstr "" "Project-Id-Version: ukuu\n" -"Report-Msgid-Bugs-To: bw.aljex@gmail.com\n" -"POT-Creation-Date: 2019-09-11 18:04-0400\n" +"Report-Msgid-Bugs-To: b.kenyon.w@gmail.com\n" +"POT-Creation-Date: 2020-01-03 18:52-0500\n" "PO-Revision-Date: 2018-08-05 15:50+0200\n" "Last-Translator: Yolateng0 \n" "Language-Team: French\n" @@ -21,7 +21,7 @@ msgstr "" msgid "About" msgstr "À propos" -#: src/Console/AppConsole.vala:114 +#: src/Console/AppConsole.vala:115 msgid "Admin access is required for running this application." msgstr "Accès administrateur requis pour lancer cette application." @@ -39,7 +39,7 @@ msgstr "Architecture du système" msgid "Artists" msgstr "Artistes" -#: src/Console/AppConsole.vala:101 +#: src/Console/AppConsole.vala:102 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "" @@ -56,12 +56,13 @@ msgstr "Noyaux disponibles" msgid "Back" msgstr "Retour" -#: src/Console/AppConsole.vala:204 src/Gtk/AppGtk.vala:110 +#: src/Console/AppConsole.vala:205 src/Gtk/AppGtk.vala:112 msgid "Cache" msgstr "" -#: src/Gtk/ProgressWindow.vala:145 src/Gtk/UpdateNotificationWindow.vala:167 -#: src/Gtk/TerminalWindow.vala:148 src/Utility/Gtk/CustomMessageDialog.vala:155 +#: src/Gtk/ProgressWindow.vala:145 src/Gtk/TerminalWindow.vala:148 +#: src/Gtk/UpdateNotificationWindow.vala:167 +#: src/Utility/Gtk/CustomMessageDialog.vala:155 msgid "Cancel" msgstr "Annuler" @@ -69,15 +70,15 @@ msgstr "Annuler" msgid "Changes" msgstr "Changements" -#: src/Gtk/SettingsDialog.vala:121 +#: src/Gtk/SettingsDialog.vala:120 msgid "Check every" msgstr "Vérifier toutes les" -#: src/Console/AppConsole.vala:85 +#: src/Console/AppConsole.vala:86 msgid "Check for kernel updates" msgstr "Vérifier les mises à jour des noyaux" -#: src/Console/AppConsole.vala:86 +#: src/Console/AppConsole.vala:87 #, fuzzy msgid "Check for kernel updates and notify current user" msgstr "Vérifier les mises à jour des noyaux" @@ -86,12 +87,12 @@ msgstr "Vérifier les mises à jour des noyaux" msgid "Close" msgstr "Fermer" -#: src/Console/AppConsole.vala:341 +#: src/Console/AppConsole.vala:342 #, fuzzy msgid "Command not specified" msgstr "Impossible de trouver le fichier" -#: src/Console/AppConsole.vala:83 +#: src/Console/AppConsole.vala:84 msgid "Commands" msgstr "" @@ -114,7 +115,7 @@ msgstr "Contributions" msgid "Could not find any kernels to remove" msgstr "Sélectionnez les noyaux à supprimer" -#: src/Console/AppConsole.vala:309 src/Gtk/MainWindow.vala:100 +#: src/Console/AppConsole.vala:310 src/Gtk/MainWindow.vala:100 msgid "Could not find requested version" msgstr "Impossible de trouver la version demandée" @@ -133,7 +134,7 @@ msgstr "Dossier créé" msgid "Credits" msgstr "Crédits" -#: src/Gtk/SettingsDialog.vala:154 +#: src/Gtk/SettingsDialog.vala:153 msgid "Day(s)" msgstr "Jour(s)" @@ -145,7 +146,7 @@ msgstr "Dossier éffacé" msgid "Dir not found" msgstr "Dossier non trouvé" -#: src/Gtk/SettingsDialog.vala:161 +#: src/Gtk/SettingsDialog.vala:160 msgid "Display" msgstr "Afficher" @@ -158,7 +159,7 @@ msgstr "Distribution" msgid "Documenters" msgstr "Documentalistes" -#: src/Console/AppConsole.vala:94 +#: src/Console/AppConsole.vala:95 msgid "Download packages for specified kernel" msgstr "Télécharger les paquets pour des noyaux spécifiques" @@ -246,15 +247,16 @@ msgstr "Fichier non trouvé: %s" msgid "File saved" msgstr "Fichier sauvegardé" -#: src/Gtk/SettingsDialog.vala:180 -msgid "Hide kernels older than 4.0" +#: src/Gtk/SettingsDialog.vala:182 +#, fuzzy +msgid "Hide kernels older than " msgstr "Masquer les noyaux antérieurs à la version 4.0" -#: src/Gtk/SettingsDialog.vala:169 +#: src/Gtk/SettingsDialog.vala:168 msgid "Hide unstable and RC releases" msgstr "Cacher les versions instables et RC" -#: src/Gtk/SettingsDialog.vala:152 +#: src/Gtk/SettingsDialog.vala:151 msgid "Hour(s)" msgstr "Heure(s)" @@ -270,7 +272,7 @@ msgstr "L'index est à jour" msgid "Index is stale" msgstr "L'index est obsolète" -#: src/Gtk/UpdateNotificationWindow.vala:147 src/Gtk/MainWindow.vala:359 +#: src/Gtk/MainWindow.vala:359 src/Gtk/UpdateNotificationWindow.vala:147 msgid "Install" msgstr "Installer" @@ -279,16 +281,16 @@ msgstr "Installer" msgid "Install Linux v%s ? (y/n): " msgstr "" -#: src/Console/AppConsole.vala:89 +#: src/Console/AppConsole.vala:90 #, fuzzy msgid "Install latest mainline kernel" msgstr "Installer le noyau principal spécifié" -#: src/Console/AppConsole.vala:90 +#: src/Console/AppConsole.vala:91 msgid "Install latest point update for current series" msgstr "" -#: src/Console/AppConsole.vala:91 +#: src/Console/AppConsole.vala:92 msgid "Install specified mainline kernel" msgstr "Installer le noyau principal spécifié" @@ -315,7 +317,7 @@ msgstr "Installé" msgid "Internet connection is not active" msgstr "Connexion internet inexistante" -#: src/Gtk/SettingsDialog.vala:212 +#: src/Gtk/SettingsDialog.vala:218 #, fuzzy msgid "Internet connection timeout in " msgstr "Connexion internet inexistante" @@ -330,17 +332,17 @@ msgstr "" "Utilitaire de mise à niveau des noyaux pour les distributions basées pour " "Ubuntu" -#: src/Common/LinuxKernel.vala:776 src/Console/AppConsole.vala:367 +#: src/Common/LinuxKernel.vala:776 src/Console/AppConsole.vala:368 #, c-format msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:765 src/Console/AppConsole.vala:360 +#: src/Common/LinuxKernel.vala:765 src/Console/AppConsole.vala:361 #, c-format msgid "Latest update" msgstr "" -#: src/Console/AppConsole.vala:87 +#: src/Console/AppConsole.vala:88 msgid "List all available mainline kernels" msgstr "Lister tous les noyaux mainline disponibles" @@ -348,7 +350,7 @@ msgstr "Lister tous les noyaux mainline disponibles" msgid "List available kernels" msgstr "Lister les noyaux disponibles" -#: src/Console/AppConsole.vala:88 +#: src/Console/AppConsole.vala:89 #, fuzzy msgid "List installed kernels" msgstr "Lister les noyaux disponibles" @@ -361,7 +363,7 @@ msgstr "Icône introuvable" msgid "Multiple Kernels Selected" msgstr "Plusieurs noyaux sélectionnés" -#: src/Console/AppConsole.vala:291 +#: src/Console/AppConsole.vala:292 msgid "Multiple kernels selected for installation. Select only one." msgstr "" "Plusieurs noyaux sélectionnés pour être installés. Sélectionnez en seulement " @@ -376,12 +378,12 @@ msgstr "Non" msgid "No Internet" msgstr "Pas d'Internet" -#: src/Console/AppConsole.vala:285 src/Console/AppConsole.vala:322 +#: src/Console/AppConsole.vala:286 src/Console/AppConsole.vala:323 msgid "No kernels specified" msgstr "" -#: src/Common/LinuxKernel.vala:784 src/Console/AppConsole.vala:372 -#: src/Console/AppConsole.vala:430 src/Gtk/MainWindow.vala:796 +#: src/Common/LinuxKernel.vala:784 src/Console/AppConsole.vala:373 +#: src/Console/AppConsole.vala:431 src/Gtk/MainWindow.vala:796 msgid "No updates found" msgstr "Aucune mise à jour disponible" @@ -389,15 +391,15 @@ msgstr "Aucune mise à jour disponible" msgid "Not Selected" msgstr "Non selectionné" -#: src/Gtk/SettingsDialog.vala:66 +#: src/Gtk/SettingsDialog.vala:65 msgid "Notification" msgstr "Notification" -#: src/Gtk/SettingsDialog.vala:73 +#: src/Gtk/SettingsDialog.vala:72 msgid "Notify if a major release is available" msgstr "Notifier si une version stable majeure est disponible" -#: src/Gtk/SettingsDialog.vala:84 +#: src/Gtk/SettingsDialog.vala:83 msgid "Notify if a point release is available" msgstr "Notifier si une version stable mineure est disponible" @@ -408,11 +410,11 @@ msgstr "Notifier si une version stable mineure est disponible" msgid "OK" msgstr "OK" -#: src/Console/AppConsole.vala:98 src/Gtk/AppGtk.vala:181 +#: src/Console/AppConsole.vala:99 src/Gtk/AppGtk.vala:183 msgid "Options" msgstr "Options" -#: src/Gtk/SettingsDialog.vala:191 +#: src/Gtk/SettingsDialog.vala:197 msgid "Other" msgstr "" @@ -434,7 +436,7 @@ msgstr "Veuillez installer les paquets requis et réessayer" msgid "Preparing to remove selected kernels" msgstr "Préparation à la suppression des noyaux sélectionnés" -#: src/Gtk/AppGtk.vala:183 +#: src/Gtk/AppGtk.vala:185 msgid "Print debug information" msgstr "Afficher les informations de débogage" @@ -454,25 +456,25 @@ msgstr "Actualisation..." msgid "Remove" msgstr "Supprimer" -#: src/Console/AppConsole.vala:95 src/Console/AppConsole.vala:100 +#: src/Console/AppConsole.vala:96 src/Console/AppConsole.vala:101 msgid "Remove files from application cache" msgstr "Supprimer les fichiers du cache de l'application" -#: src/Console/AppConsole.vala:93 src/Gtk/MainWindow.vala:426 +#: src/Console/AppConsole.vala:94 src/Gtk/MainWindow.vala:426 msgid "Remove installed kernels older than running kernel" msgstr "" -#: src/Console/AppConsole.vala:92 +#: src/Console/AppConsole.vala:93 #, fuzzy msgid "Remove specified kernel" msgstr "Supprimer le noyau mainline sélectionné" -#: src/Console/AppConsole.vala:199 src/Console/AppConsole.vala:313 -#: src/Console/AppConsole.vala:342 +#: src/Console/AppConsole.vala:200 src/Console/AppConsole.vala:314 +#: src/Console/AppConsole.vala:343 msgid "Run '" msgstr "" -#: src/Console/AppConsole.vala:117 +#: src/Console/AppConsole.vala:118 msgid "Run the application as admin with pkexec or sudo." msgstr "Exécutez l'application en tant qu'admin avec pkexec or sudo." @@ -500,7 +502,7 @@ msgstr "" "Ce noyau est en cours d'exécution et ne peut pas être supprimé.\n" " Installez un autre noyau avant de retirer celui-ci." -#: src/Gtk/SettingsDialog.vala:56 src/Gtk/MainWindow.vala:475 +#: src/Gtk/MainWindow.vala:475 src/Gtk/SettingsDialog.vala:55 msgid "Settings" msgstr "Paramètres" @@ -508,24 +510,24 @@ msgstr "Paramètres" msgid "Show" msgstr "Afficher" -#: src/Gtk/AppGtk.vala:184 +#: src/Gtk/AppGtk.vala:186 msgid "Show all options" msgstr "Afficher toutes les options" -#: src/Gtk/SettingsDialog.vala:95 +#: src/Gtk/SettingsDialog.vala:94 msgid "Show notification bubble on desktop" msgstr "Afficher la bulle de notification sur le bureau" -#: src/Gtk/SettingsDialog.vala:106 +#: src/Gtk/SettingsDialog.vala:105 msgid "Show notification dialog" msgstr "Afficher les notifications" -#: src/Console/AppConsole.vala:96 +#: src/Console/AppConsole.vala:97 #, fuzzy msgid "Show unstable and RC releases" msgstr "Cacher les versions instables et RC" -#: src/Gtk/SettingsDialog.vala:199 +#: src/Gtk/SettingsDialog.vala:205 #, fuzzy msgid "Skip internet connection check" msgstr "Connexion internet inexistante" @@ -538,11 +540,11 @@ msgstr "Statut" msgid "Stopped" msgstr "Arrêté" -#: src/Console/AppConsole.vala:81 src/Gtk/AppGtk.vala:179 +#: src/Console/AppConsole.vala:82 src/Gtk/AppGtk.vala:181 msgid "Syntax" msgstr "Syntaxe" -#: src/Console/AppConsole.vala:205 src/Gtk/AppGtk.vala:111 +#: src/Console/AppConsole.vala:206 src/Gtk/AppGtk.vala:113 msgid "Temp" msgstr "" @@ -581,7 +583,7 @@ msgstr "Désinstallation complète" msgid "Un-install completed with errors" msgstr "Désinstallation terminée avec des erreurs" -#: src/Console/AppConsole.vala:197 src/Gtk/AppGtk.vala:166 +#: src/Console/AppConsole.vala:198 src/Gtk/AppGtk.vala:168 msgid "Unknown option" msgstr "Option inconnue" @@ -593,7 +595,7 @@ msgstr "Version" msgid "W" msgstr "W" -#: src/Gtk/SettingsDialog.vala:156 +#: src/Gtk/SettingsDialog.vala:155 msgid "Week(s)" msgstr "Semaine(s)" @@ -605,7 +607,7 @@ msgstr "Oui" msgid "[Warning] Deleted invalid lock" msgstr "[Attention] Verrou invalide supprimé" -#: src/Gtk/SettingsDialog.vala:226 +#: src/Gtk/SettingsDialog.vala:232 msgid "seconds" msgstr "" diff --git a/po/hr.po b/po/hr.po index ae1c6842..da3072bb 100644 --- a/po/hr.po +++ b/po/hr.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: ukuu\n" -"Report-Msgid-Bugs-To: bw.aljex@gmail.com\n" -"POT-Creation-Date: 2019-09-11 18:04-0400\n" +"Report-Msgid-Bugs-To: b.kenyon.w@gmail.com\n" +"POT-Creation-Date: 2020-01-03 18:52-0500\n" "PO-Revision-Date: 2017-12-24 00:52+0100\n" "Last-Translator: gogo \n" "Language-Team: Croatian \n" @@ -22,7 +22,7 @@ msgstr "" msgid "About" msgstr "O programu" -#: src/Console/AppConsole.vala:114 +#: src/Console/AppConsole.vala:115 msgid "Admin access is required for running this application." msgstr "Administratorske ovlasti su potrebne za pokretanje ove aplikacije." @@ -40,7 +40,7 @@ msgstr "Arhitektura sustava" msgid "Artists" msgstr "Dizajneri" -#: src/Console/AppConsole.vala:101 +#: src/Console/AppConsole.vala:102 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "" @@ -57,12 +57,13 @@ msgstr "Dostupni kerneli" msgid "Back" msgstr "Natrag" -#: src/Console/AppConsole.vala:204 src/Gtk/AppGtk.vala:110 +#: src/Console/AppConsole.vala:205 src/Gtk/AppGtk.vala:112 msgid "Cache" msgstr "" -#: src/Gtk/ProgressWindow.vala:145 src/Gtk/UpdateNotificationWindow.vala:167 -#: src/Gtk/TerminalWindow.vala:148 src/Utility/Gtk/CustomMessageDialog.vala:155 +#: src/Gtk/ProgressWindow.vala:145 src/Gtk/TerminalWindow.vala:148 +#: src/Gtk/UpdateNotificationWindow.vala:167 +#: src/Utility/Gtk/CustomMessageDialog.vala:155 msgid "Cancel" msgstr "Odustani" @@ -70,15 +71,15 @@ msgstr "Odustani" msgid "Changes" msgstr "Promjene" -#: src/Gtk/SettingsDialog.vala:121 +#: src/Gtk/SettingsDialog.vala:120 msgid "Check every" msgstr "Provjeri svaka" -#: src/Console/AppConsole.vala:85 +#: src/Console/AppConsole.vala:86 msgid "Check for kernel updates" msgstr "Provjeri nadopune kernela" -#: src/Console/AppConsole.vala:86 +#: src/Console/AppConsole.vala:87 #, fuzzy msgid "Check for kernel updates and notify current user" msgstr "Provjeri nadopune kernela" @@ -87,11 +88,11 @@ msgstr "Provjeri nadopune kernela" msgid "Close" msgstr "Zatvori" -#: src/Console/AppConsole.vala:341 +#: src/Console/AppConsole.vala:342 msgid "Command not specified" msgstr "" -#: src/Console/AppConsole.vala:83 +#: src/Console/AppConsole.vala:84 msgid "Commands" msgstr "" @@ -114,7 +115,7 @@ msgstr "Prilozi" msgid "Could not find any kernels to remove" msgstr "Odaberi kernele za uklanjanje" -#: src/Console/AppConsole.vala:309 src/Gtk/MainWindow.vala:100 +#: src/Console/AppConsole.vala:310 src/Gtk/MainWindow.vala:100 msgid "Could not find requested version" msgstr "Nemoguće je pronaći zatraženu inačicu" @@ -133,7 +134,7 @@ msgstr "Stvoren direktorij" msgid "Credits" msgstr "Zasluge" -#: src/Gtk/SettingsDialog.vala:154 +#: src/Gtk/SettingsDialog.vala:153 msgid "Day(s)" msgstr "Dan(a)" @@ -145,7 +146,7 @@ msgstr "Obrisan direktorij" msgid "Dir not found" msgstr "Direktorij nije pronađen" -#: src/Gtk/SettingsDialog.vala:161 +#: src/Gtk/SettingsDialog.vala:160 msgid "Display" msgstr "Prikaz" @@ -158,7 +159,7 @@ msgstr "Distribucija" msgid "Documenters" msgstr "Autori dokumentacije" -#: src/Console/AppConsole.vala:94 +#: src/Console/AppConsole.vala:95 msgid "Download packages for specified kernel" msgstr "Preuzmi pakete za određeni kernel" @@ -246,15 +247,16 @@ msgstr "Datoteka nije pronađena: %s" msgid "File saved" msgstr "Datoteka je spremljenja" -#: src/Gtk/SettingsDialog.vala:180 -msgid "Hide kernels older than 4.0" +#: src/Gtk/SettingsDialog.vala:182 +#, fuzzy +msgid "Hide kernels older than " msgstr "Sakrij kernele starije od inačice 4.0" -#: src/Gtk/SettingsDialog.vala:169 +#: src/Gtk/SettingsDialog.vala:168 msgid "Hide unstable and RC releases" msgstr "Sakrij nestabilne kernele i predizdanja" -#: src/Gtk/SettingsDialog.vala:152 +#: src/Gtk/SettingsDialog.vala:151 msgid "Hour(s)" msgstr "Sat(a)" @@ -270,7 +272,7 @@ msgstr "Sadržaj je osvježen" msgid "Index is stale" msgstr "Sadržaj je zastario" -#: src/Gtk/UpdateNotificationWindow.vala:147 src/Gtk/MainWindow.vala:359 +#: src/Gtk/MainWindow.vala:359 src/Gtk/UpdateNotificationWindow.vala:147 msgid "Install" msgstr "Instaliraj" @@ -279,16 +281,16 @@ msgstr "Instaliraj" msgid "Install Linux v%s ? (y/n): " msgstr "" -#: src/Console/AppConsole.vala:89 +#: src/Console/AppConsole.vala:90 #, fuzzy msgid "Install latest mainline kernel" msgstr "Instaliraj određeni mainline kernel" -#: src/Console/AppConsole.vala:90 +#: src/Console/AppConsole.vala:91 msgid "Install latest point update for current series" msgstr "" -#: src/Console/AppConsole.vala:91 +#: src/Console/AppConsole.vala:92 msgid "Install specified mainline kernel" msgstr "Instaliraj određeni mainline kernel" @@ -315,7 +317,7 @@ msgstr "Instalirano" msgid "Internet connection is not active" msgstr "Internet povezivanje nije aktivno" -#: src/Gtk/SettingsDialog.vala:212 +#: src/Gtk/SettingsDialog.vala:218 #, fuzzy msgid "Internet connection timeout in " msgstr "Internet povezivanje nije aktivno" @@ -328,17 +330,17 @@ msgstr "Kernel" msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Alat za nadogradnju kernela Ubuntu temeljenih distribucija" -#: src/Common/LinuxKernel.vala:776 src/Console/AppConsole.vala:367 +#: src/Common/LinuxKernel.vala:776 src/Console/AppConsole.vala:368 #, c-format msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:765 src/Console/AppConsole.vala:360 +#: src/Common/LinuxKernel.vala:765 src/Console/AppConsole.vala:361 #, c-format msgid "Latest update" msgstr "" -#: src/Console/AppConsole.vala:87 +#: src/Console/AppConsole.vala:88 msgid "List all available mainline kernels" msgstr "Prikaži sve mainline kernele" @@ -346,7 +348,7 @@ msgstr "Prikaži sve mainline kernele" msgid "List available kernels" msgstr "Prikaži sve kernele" -#: src/Console/AppConsole.vala:88 +#: src/Console/AppConsole.vala:89 #, fuzzy msgid "List installed kernels" msgstr "Prikaži sve kernele" @@ -359,7 +361,7 @@ msgstr "Ikone koje nedostaju" msgid "Multiple Kernels Selected" msgstr "Više kernela je odabrano" -#: src/Console/AppConsole.vala:291 +#: src/Console/AppConsole.vala:292 msgid "Multiple kernels selected for installation. Select only one." msgstr "Više kernela je odabrano za instalaciju. odaberite samo jedan." @@ -372,12 +374,12 @@ msgstr "Ne" msgid "No Internet" msgstr "Nema pristupa internetu" -#: src/Console/AppConsole.vala:285 src/Console/AppConsole.vala:322 +#: src/Console/AppConsole.vala:286 src/Console/AppConsole.vala:323 msgid "No kernels specified" msgstr "" -#: src/Common/LinuxKernel.vala:784 src/Console/AppConsole.vala:372 -#: src/Console/AppConsole.vala:430 src/Gtk/MainWindow.vala:796 +#: src/Common/LinuxKernel.vala:784 src/Console/AppConsole.vala:373 +#: src/Console/AppConsole.vala:431 src/Gtk/MainWindow.vala:796 msgid "No updates found" msgstr "Nema pronađenih nadopuna" @@ -385,15 +387,15 @@ msgstr "Nema pronađenih nadopuna" msgid "Not Selected" msgstr "Nije odabrano" -#: src/Gtk/SettingsDialog.vala:66 +#: src/Gtk/SettingsDialog.vala:65 msgid "Notification" msgstr "Obavijesti" -#: src/Gtk/SettingsDialog.vala:73 +#: src/Gtk/SettingsDialog.vala:72 msgid "Notify if a major release is available" msgstr "Obavijesti kada je glavno izdanje dostupno" -#: src/Gtk/SettingsDialog.vala:84 +#: src/Gtk/SettingsDialog.vala:83 msgid "Notify if a point release is available" msgstr "Obavijesti kada je pojedino izdanje dostupno" @@ -404,11 +406,11 @@ msgstr "Obavijesti kada je pojedino izdanje dostupno" msgid "OK" msgstr "U redu" -#: src/Console/AppConsole.vala:98 src/Gtk/AppGtk.vala:181 +#: src/Console/AppConsole.vala:99 src/Gtk/AppGtk.vala:183 msgid "Options" msgstr "Mogućnosti" -#: src/Gtk/SettingsDialog.vala:191 +#: src/Gtk/SettingsDialog.vala:197 msgid "Other" msgstr "" @@ -430,7 +432,7 @@ msgstr "Instalirajte potrebni paket i pokušajte ponovno" msgid "Preparing to remove selected kernels" msgstr "Pripremanje uklanjanja odabranih kernela" -#: src/Gtk/AppGtk.vala:183 +#: src/Gtk/AppGtk.vala:185 msgid "Print debug information" msgstr "Ispiši informacije otklanjanja grešaka" @@ -450,25 +452,25 @@ msgstr "Osvježavanje..." msgid "Remove" msgstr "Ukloni" -#: src/Console/AppConsole.vala:95 src/Console/AppConsole.vala:100 +#: src/Console/AppConsole.vala:96 src/Console/AppConsole.vala:101 msgid "Remove files from application cache" msgstr "Ukloni datoteke iz predmemorije aplikacije" -#: src/Console/AppConsole.vala:93 src/Gtk/MainWindow.vala:426 +#: src/Console/AppConsole.vala:94 src/Gtk/MainWindow.vala:426 msgid "Remove installed kernels older than running kernel" msgstr "" -#: src/Console/AppConsole.vala:92 +#: src/Console/AppConsole.vala:93 #, fuzzy msgid "Remove specified kernel" msgstr "Ukloni određeni mainline kernel" -#: src/Console/AppConsole.vala:199 src/Console/AppConsole.vala:313 -#: src/Console/AppConsole.vala:342 +#: src/Console/AppConsole.vala:200 src/Console/AppConsole.vala:314 +#: src/Console/AppConsole.vala:343 msgid "Run '" msgstr "" -#: src/Console/AppConsole.vala:117 +#: src/Console/AppConsole.vala:118 msgid "Run the application as admin with pkexec or sudo." msgstr "Pokreni aplikaciju kao administrator sa pkexec ili sudo." @@ -496,7 +498,7 @@ msgstr "" "Odabrani kernel je trenutno pokernut i ne može se ukloniti.\n" " Instalirajte drugi kernel prije uklanjanja trenutnog kernela." -#: src/Gtk/SettingsDialog.vala:56 src/Gtk/MainWindow.vala:475 +#: src/Gtk/MainWindow.vala:475 src/Gtk/SettingsDialog.vala:55 msgid "Settings" msgstr "Postavke" @@ -504,24 +506,24 @@ msgstr "Postavke" msgid "Show" msgstr "Prikaži" -#: src/Gtk/AppGtk.vala:184 +#: src/Gtk/AppGtk.vala:186 msgid "Show all options" msgstr "Prikaži sve mogućnosti" -#: src/Gtk/SettingsDialog.vala:95 +#: src/Gtk/SettingsDialog.vala:94 msgid "Show notification bubble on desktop" msgstr "Prikaži mjehurić obavijesti radne površine" -#: src/Gtk/SettingsDialog.vala:106 +#: src/Gtk/SettingsDialog.vala:105 msgid "Show notification dialog" msgstr "Prikaži dijalog obavijesti" -#: src/Console/AppConsole.vala:96 +#: src/Console/AppConsole.vala:97 #, fuzzy msgid "Show unstable and RC releases" msgstr "Sakrij nestabilne kernele i predizdanja" -#: src/Gtk/SettingsDialog.vala:199 +#: src/Gtk/SettingsDialog.vala:205 #, fuzzy msgid "Skip internet connection check" msgstr "Internet povezivanje nije aktivno" @@ -534,11 +536,11 @@ msgstr "Stanje" msgid "Stopped" msgstr "Zaustavljeno" -#: src/Console/AppConsole.vala:81 src/Gtk/AppGtk.vala:179 +#: src/Console/AppConsole.vala:82 src/Gtk/AppGtk.vala:181 msgid "Syntax" msgstr "Sintaksa" -#: src/Console/AppConsole.vala:205 src/Gtk/AppGtk.vala:111 +#: src/Console/AppConsole.vala:206 src/Gtk/AppGtk.vala:113 msgid "Temp" msgstr "" @@ -577,7 +579,7 @@ msgstr "Deinstalacija završena" msgid "Un-install completed with errors" msgstr "Deinstalacija završena s greškama" -#: src/Console/AppConsole.vala:197 src/Gtk/AppGtk.vala:166 +#: src/Console/AppConsole.vala:198 src/Gtk/AppGtk.vala:168 msgid "Unknown option" msgstr "Nepoznata mogućnost" @@ -589,7 +591,7 @@ msgstr "Inačica" msgid "W" msgstr "Z" -#: src/Gtk/SettingsDialog.vala:156 +#: src/Gtk/SettingsDialog.vala:155 msgid "Week(s)" msgstr "Tjedan(a)" @@ -601,7 +603,7 @@ msgstr "Da" msgid "[Warning] Deleted invalid lock" msgstr "[Upozorenje] Obrisano je neispravno zaključavanje" -#: src/Gtk/SettingsDialog.vala:226 +#: src/Gtk/SettingsDialog.vala:232 msgid "seconds" msgstr "" diff --git a/po/messages.pot b/po/messages.pot index 84a4f92f..563a2956 100644 --- a/po/messages.pot +++ b/po/messages.pot @@ -1,14 +1,14 @@ # SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR Brian K. White (bw.aljex@gmail.com) +# Copyright (C) YEAR Brian K. White (b.kenyon.w@gmail.com) # This file is distributed under the same license as the mainline package. # FIRST AUTHOR , YEAR. # #, fuzzy msgid "" msgstr "" -"Project-Id-Version: mainline 1.0.1\n" -"Report-Msgid-Bugs-To: bw.aljex@gmail.com\n" -"POT-Creation-Date: 2019-09-11 18:24-0400\n" +"Project-Id-Version: mainline 1.0.2\n" +"Report-Msgid-Bugs-To: b.kenyon.w@gmail.com\n" +"POT-Creation-Date: 2020-01-03 19:02-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -21,7 +21,7 @@ msgstr "" msgid "About" msgstr "" -#: src/Console/AppConsole.vala:114 +#: src/Console/AppConsole.vala:115 msgid "Admin access is required for running this application." msgstr "" @@ -38,7 +38,7 @@ msgstr "" msgid "Artists" msgstr "" -#: src/Console/AppConsole.vala:101 +#: src/Console/AppConsole.vala:102 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "" @@ -55,12 +55,13 @@ msgstr "" msgid "Back" msgstr "" -#: src/Console/AppConsole.vala:204 src/Gtk/AppGtk.vala:110 +#: src/Console/AppConsole.vala:205 src/Gtk/AppGtk.vala:112 msgid "Cache" msgstr "" -#: src/Gtk/ProgressWindow.vala:145 src/Gtk/UpdateNotificationWindow.vala:167 -#: src/Gtk/TerminalWindow.vala:148 src/Utility/Gtk/CustomMessageDialog.vala:155 +#: src/Gtk/ProgressWindow.vala:145 src/Gtk/TerminalWindow.vala:148 +#: src/Gtk/UpdateNotificationWindow.vala:167 +#: src/Utility/Gtk/CustomMessageDialog.vala:155 msgid "Cancel" msgstr "" @@ -68,15 +69,15 @@ msgstr "" msgid "Changes" msgstr "" -#: src/Gtk/SettingsDialog.vala:121 +#: src/Gtk/SettingsDialog.vala:120 msgid "Check every" msgstr "" -#: src/Console/AppConsole.vala:85 +#: src/Console/AppConsole.vala:86 msgid "Check for kernel updates" msgstr "" -#: src/Console/AppConsole.vala:86 +#: src/Console/AppConsole.vala:87 msgid "Check for kernel updates and notify current user" msgstr "" @@ -84,11 +85,11 @@ msgstr "" msgid "Close" msgstr "" -#: src/Console/AppConsole.vala:341 +#: src/Console/AppConsole.vala:342 msgid "Command not specified" msgstr "" -#: src/Console/AppConsole.vala:83 +#: src/Console/AppConsole.vala:84 msgid "Commands" msgstr "" @@ -110,7 +111,7 @@ msgstr "" msgid "Could not find any kernels to remove" msgstr "" -#: src/Console/AppConsole.vala:309 src/Gtk/MainWindow.vala:100 +#: src/Console/AppConsole.vala:310 src/Gtk/MainWindow.vala:100 msgid "Could not find requested version" msgstr "" @@ -128,7 +129,7 @@ msgstr "" msgid "Credits" msgstr "" -#: src/Gtk/SettingsDialog.vala:154 +#: src/Gtk/SettingsDialog.vala:153 msgid "Day(s)" msgstr "" @@ -140,7 +141,7 @@ msgstr "" msgid "Dir not found" msgstr "" -#: src/Gtk/SettingsDialog.vala:161 +#: src/Gtk/SettingsDialog.vala:160 msgid "Display" msgstr "" @@ -153,7 +154,7 @@ msgstr "" msgid "Documenters" msgstr "" -#: src/Console/AppConsole.vala:94 +#: src/Console/AppConsole.vala:95 msgid "Download packages for specified kernel" msgstr "" @@ -241,15 +242,15 @@ msgstr "" msgid "File saved" msgstr "" -#: src/Gtk/SettingsDialog.vala:180 -msgid "Hide kernels older than 4.0" +#: src/Gtk/SettingsDialog.vala:182 +msgid "Hide kernels older than " msgstr "" -#: src/Gtk/SettingsDialog.vala:169 +#: src/Gtk/SettingsDialog.vala:168 msgid "Hide unstable and RC releases" msgstr "" -#: src/Gtk/SettingsDialog.vala:152 +#: src/Gtk/SettingsDialog.vala:151 msgid "Hour(s)" msgstr "" @@ -265,7 +266,7 @@ msgstr "" msgid "Index is stale" msgstr "" -#: src/Gtk/UpdateNotificationWindow.vala:147 src/Gtk/MainWindow.vala:359 +#: src/Gtk/MainWindow.vala:359 src/Gtk/UpdateNotificationWindow.vala:147 msgid "Install" msgstr "" @@ -274,15 +275,15 @@ msgstr "" msgid "Install Linux v%s ? (y/n): " msgstr "" -#: src/Console/AppConsole.vala:89 +#: src/Console/AppConsole.vala:90 msgid "Install latest mainline kernel" msgstr "" -#: src/Console/AppConsole.vala:90 +#: src/Console/AppConsole.vala:91 msgid "Install latest point update for current series" msgstr "" -#: src/Console/AppConsole.vala:91 +#: src/Console/AppConsole.vala:92 msgid "Install specified mainline kernel" msgstr "" @@ -307,7 +308,7 @@ msgstr "" msgid "Internet connection is not active" msgstr "" -#: src/Gtk/SettingsDialog.vala:212 +#: src/Gtk/SettingsDialog.vala:218 msgid "Internet connection timeout in " msgstr "" @@ -319,17 +320,17 @@ msgstr "" msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "" -#: src/Common/LinuxKernel.vala:776 src/Console/AppConsole.vala:367 +#: src/Common/LinuxKernel.vala:776 src/Console/AppConsole.vala:368 #, c-format msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:765 src/Console/AppConsole.vala:360 +#: src/Common/LinuxKernel.vala:765 src/Console/AppConsole.vala:361 #, c-format msgid "Latest update" msgstr "" -#: src/Console/AppConsole.vala:87 +#: src/Console/AppConsole.vala:88 msgid "List all available mainline kernels" msgstr "" @@ -337,7 +338,7 @@ msgstr "" msgid "List available kernels" msgstr "" -#: src/Console/AppConsole.vala:88 +#: src/Console/AppConsole.vala:89 msgid "List installed kernels" msgstr "" @@ -349,7 +350,7 @@ msgstr "" msgid "Multiple Kernels Selected" msgstr "" -#: src/Console/AppConsole.vala:291 +#: src/Console/AppConsole.vala:292 msgid "Multiple kernels selected for installation. Select only one." msgstr "" @@ -362,12 +363,12 @@ msgstr "" msgid "No Internet" msgstr "" -#: src/Console/AppConsole.vala:285 src/Console/AppConsole.vala:322 +#: src/Console/AppConsole.vala:286 src/Console/AppConsole.vala:323 msgid "No kernels specified" msgstr "" -#: src/Common/LinuxKernel.vala:784 src/Console/AppConsole.vala:372 -#: src/Console/AppConsole.vala:430 src/Gtk/MainWindow.vala:796 +#: src/Common/LinuxKernel.vala:784 src/Console/AppConsole.vala:373 +#: src/Console/AppConsole.vala:431 src/Gtk/MainWindow.vala:796 msgid "No updates found" msgstr "" @@ -375,15 +376,15 @@ msgstr "" msgid "Not Selected" msgstr "" -#: src/Gtk/SettingsDialog.vala:66 +#: src/Gtk/SettingsDialog.vala:65 msgid "Notification" msgstr "" -#: src/Gtk/SettingsDialog.vala:73 +#: src/Gtk/SettingsDialog.vala:72 msgid "Notify if a major release is available" msgstr "" -#: src/Gtk/SettingsDialog.vala:84 +#: src/Gtk/SettingsDialog.vala:83 msgid "Notify if a point release is available" msgstr "" @@ -394,11 +395,11 @@ msgstr "" msgid "OK" msgstr "" -#: src/Console/AppConsole.vala:98 src/Gtk/AppGtk.vala:181 +#: src/Console/AppConsole.vala:99 src/Gtk/AppGtk.vala:183 msgid "Options" msgstr "" -#: src/Gtk/SettingsDialog.vala:191 +#: src/Gtk/SettingsDialog.vala:197 msgid "Other" msgstr "" @@ -420,7 +421,7 @@ msgstr "" msgid "Preparing to remove selected kernels" msgstr "" -#: src/Gtk/AppGtk.vala:183 +#: src/Gtk/AppGtk.vala:185 msgid "Print debug information" msgstr "" @@ -440,24 +441,24 @@ msgstr "" msgid "Remove" msgstr "" -#: src/Console/AppConsole.vala:95 src/Console/AppConsole.vala:100 +#: src/Console/AppConsole.vala:96 src/Console/AppConsole.vala:101 msgid "Remove files from application cache" msgstr "" -#: src/Console/AppConsole.vala:93 src/Gtk/MainWindow.vala:426 +#: src/Console/AppConsole.vala:94 src/Gtk/MainWindow.vala:426 msgid "Remove installed kernels older than running kernel" msgstr "" -#: src/Console/AppConsole.vala:92 +#: src/Console/AppConsole.vala:93 msgid "Remove specified kernel" msgstr "" -#: src/Console/AppConsole.vala:199 src/Console/AppConsole.vala:313 -#: src/Console/AppConsole.vala:342 +#: src/Console/AppConsole.vala:200 src/Console/AppConsole.vala:314 +#: src/Console/AppConsole.vala:343 msgid "Run '" msgstr "" -#: src/Console/AppConsole.vala:117 +#: src/Console/AppConsole.vala:118 msgid "Run the application as admin with pkexec or sudo." msgstr "" @@ -483,7 +484,7 @@ msgid "" " Install another kernel before removing this one." msgstr "" -#: src/Gtk/SettingsDialog.vala:56 src/Gtk/MainWindow.vala:475 +#: src/Gtk/MainWindow.vala:475 src/Gtk/SettingsDialog.vala:55 msgid "Settings" msgstr "" @@ -491,23 +492,23 @@ msgstr "" msgid "Show" msgstr "" -#: src/Gtk/AppGtk.vala:184 +#: src/Gtk/AppGtk.vala:186 msgid "Show all options" msgstr "" -#: src/Gtk/SettingsDialog.vala:95 +#: src/Gtk/SettingsDialog.vala:94 msgid "Show notification bubble on desktop" msgstr "" -#: src/Gtk/SettingsDialog.vala:106 +#: src/Gtk/SettingsDialog.vala:105 msgid "Show notification dialog" msgstr "" -#: src/Console/AppConsole.vala:96 +#: src/Console/AppConsole.vala:97 msgid "Show unstable and RC releases" msgstr "" -#: src/Gtk/SettingsDialog.vala:199 +#: src/Gtk/SettingsDialog.vala:205 msgid "Skip internet connection check" msgstr "" @@ -519,11 +520,11 @@ msgstr "" msgid "Stopped" msgstr "" -#: src/Console/AppConsole.vala:81 src/Gtk/AppGtk.vala:179 +#: src/Console/AppConsole.vala:82 src/Gtk/AppGtk.vala:181 msgid "Syntax" msgstr "" -#: src/Console/AppConsole.vala:205 src/Gtk/AppGtk.vala:111 +#: src/Console/AppConsole.vala:206 src/Gtk/AppGtk.vala:113 msgid "Temp" msgstr "" @@ -560,7 +561,7 @@ msgstr "" msgid "Un-install completed with errors" msgstr "" -#: src/Console/AppConsole.vala:197 src/Gtk/AppGtk.vala:166 +#: src/Console/AppConsole.vala:198 src/Gtk/AppGtk.vala:168 msgid "Unknown option" msgstr "" @@ -572,7 +573,7 @@ msgstr "" msgid "W" msgstr "" -#: src/Gtk/SettingsDialog.vala:156 +#: src/Gtk/SettingsDialog.vala:155 msgid "Week(s)" msgstr "" @@ -584,6 +585,6 @@ msgstr "" msgid "[Warning] Deleted invalid lock" msgstr "" -#: src/Gtk/SettingsDialog.vala:226 +#: src/Gtk/SettingsDialog.vala:232 msgid "seconds" msgstr "" diff --git a/po/nl.po b/po/nl.po index becef207..1e86dc20 100644 --- a/po/nl.po +++ b/po/nl.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: ukuu 2.2\n" -"Report-Msgid-Bugs-To: bw.aljex@gmail.com\n" -"POT-Creation-Date: 2019-09-11 18:04-0400\n" +"Report-Msgid-Bugs-To: b.kenyon.w@gmail.com\n" +"POT-Creation-Date: 2020-01-03 18:52-0500\n" "PO-Revision-Date: 2017-04-30 11:50+0200\n" "Last-Translator: Heimen Stoffels \n" "Language-Team: \n" @@ -22,7 +22,7 @@ msgstr "" msgid "About" msgstr "Over" -#: src/Console/AppConsole.vala:114 +#: src/Console/AppConsole.vala:115 msgid "Admin access is required for running this application." msgstr "" "U heeft administrator-rechten nodig om deze applicatie te kunnen draaien." @@ -41,7 +41,7 @@ msgstr "Systeemarchitectuur" msgid "Artists" msgstr "Artiesten" -#: src/Console/AppConsole.vala:101 +#: src/Console/AppConsole.vala:102 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "" @@ -58,12 +58,13 @@ msgstr "Beschikbare kernels" msgid "Back" msgstr "Terug" -#: src/Console/AppConsole.vala:204 src/Gtk/AppGtk.vala:110 +#: src/Console/AppConsole.vala:205 src/Gtk/AppGtk.vala:112 msgid "Cache" msgstr "" -#: src/Gtk/ProgressWindow.vala:145 src/Gtk/UpdateNotificationWindow.vala:167 -#: src/Gtk/TerminalWindow.vala:148 src/Utility/Gtk/CustomMessageDialog.vala:155 +#: src/Gtk/ProgressWindow.vala:145 src/Gtk/TerminalWindow.vala:148 +#: src/Gtk/UpdateNotificationWindow.vala:167 +#: src/Utility/Gtk/CustomMessageDialog.vala:155 msgid "Cancel" msgstr "Annuleren" @@ -71,15 +72,15 @@ msgstr "Annuleren" msgid "Changes" msgstr "Wijzigingen" -#: src/Gtk/SettingsDialog.vala:121 +#: src/Gtk/SettingsDialog.vala:120 msgid "Check every" msgstr "Controleer elke" -#: src/Console/AppConsole.vala:85 +#: src/Console/AppConsole.vala:86 msgid "Check for kernel updates" msgstr "Controleren op kernel-updates" -#: src/Console/AppConsole.vala:86 +#: src/Console/AppConsole.vala:87 #, fuzzy msgid "Check for kernel updates and notify current user" msgstr "Controleren op kernel-updates" @@ -88,11 +89,11 @@ msgstr "Controleren op kernel-updates" msgid "Close" msgstr "Sluiten" -#: src/Console/AppConsole.vala:341 +#: src/Console/AppConsole.vala:342 msgid "Command not specified" msgstr "" -#: src/Console/AppConsole.vala:83 +#: src/Console/AppConsole.vala:84 msgid "Commands" msgstr "" @@ -115,7 +116,7 @@ msgstr "Bijdragen" msgid "Could not find any kernels to remove" msgstr "Selecteer de te verwijderen kernels" -#: src/Console/AppConsole.vala:309 src/Gtk/MainWindow.vala:100 +#: src/Console/AppConsole.vala:310 src/Gtk/MainWindow.vala:100 msgid "Could not find requested version" msgstr "De vereiste versie kan niet worden gevonden" @@ -134,7 +135,7 @@ msgstr "Map gecreëerd" msgid "Credits" msgstr "Met dank aan" -#: src/Gtk/SettingsDialog.vala:154 +#: src/Gtk/SettingsDialog.vala:153 msgid "Day(s)" msgstr "dag(en)" @@ -146,7 +147,7 @@ msgstr "Map verwijderd" msgid "Dir not found" msgstr "Map niet gevonden" -#: src/Gtk/SettingsDialog.vala:161 +#: src/Gtk/SettingsDialog.vala:160 msgid "Display" msgstr "Weergave" @@ -159,7 +160,7 @@ msgstr "Distributie" msgid "Documenters" msgstr "Documenteerders" -#: src/Console/AppConsole.vala:94 +#: src/Console/AppConsole.vala:95 msgid "Download packages for specified kernel" msgstr "Pakketten downloaden voor opgegeven kernel" @@ -247,15 +248,16 @@ msgstr "Bestand niet gevonden: %s" msgid "File saved" msgstr "Bestand opgeslagen" -#: src/Gtk/SettingsDialog.vala:180 -msgid "Hide kernels older than 4.0" +#: src/Gtk/SettingsDialog.vala:182 +#, fuzzy +msgid "Hide kernels older than " msgstr "Kernels ouder dan 4.0 verbergen" -#: src/Gtk/SettingsDialog.vala:169 +#: src/Gtk/SettingsDialog.vala:168 msgid "Hide unstable and RC releases" msgstr "Instabiele en RC-uitgaven verbergen" -#: src/Gtk/SettingsDialog.vala:152 +#: src/Gtk/SettingsDialog.vala:151 msgid "Hour(s)" msgstr "uur" @@ -271,7 +273,7 @@ msgstr "De index is up-to-date" msgid "Index is stale" msgstr "De index is verouderd" -#: src/Gtk/UpdateNotificationWindow.vala:147 src/Gtk/MainWindow.vala:359 +#: src/Gtk/MainWindow.vala:359 src/Gtk/UpdateNotificationWindow.vala:147 msgid "Install" msgstr "Installeren" @@ -280,16 +282,16 @@ msgstr "Installeren" msgid "Install Linux v%s ? (y/n): " msgstr "" -#: src/Console/AppConsole.vala:89 +#: src/Console/AppConsole.vala:90 #, fuzzy msgid "Install latest mainline kernel" msgstr "Opgegeven mainline-kernel installeren" -#: src/Console/AppConsole.vala:90 +#: src/Console/AppConsole.vala:91 msgid "Install latest point update for current series" msgstr "" -#: src/Console/AppConsole.vala:91 +#: src/Console/AppConsole.vala:92 msgid "Install specified mainline kernel" msgstr "Opgegeven mainline-kernel installeren" @@ -316,7 +318,7 @@ msgstr "Geïnstalleerd" msgid "Internet connection is not active" msgstr "U bent niet verbonden met het internet" -#: src/Gtk/SettingsDialog.vala:212 +#: src/Gtk/SettingsDialog.vala:218 #, fuzzy msgid "Internet connection timeout in " msgstr "U bent niet verbonden met het internet" @@ -329,17 +331,17 @@ msgstr "Kernel" msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Kernel-upgradehulpmiddel voor op Ubuntu-gebaseerde distributies" -#: src/Common/LinuxKernel.vala:776 src/Console/AppConsole.vala:367 +#: src/Common/LinuxKernel.vala:776 src/Console/AppConsole.vala:368 #, c-format msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:765 src/Console/AppConsole.vala:360 +#: src/Common/LinuxKernel.vala:765 src/Console/AppConsole.vala:361 #, c-format msgid "Latest update" msgstr "" -#: src/Console/AppConsole.vala:87 +#: src/Console/AppConsole.vala:88 msgid "List all available mainline kernels" msgstr "Alle beschikbare mainline-kernels weergeven" @@ -348,7 +350,7 @@ msgstr "Alle beschikbare mainline-kernels weergeven" msgid "List available kernels" msgstr "Alle beschikbare mainline-kernels weergeven" -#: src/Console/AppConsole.vala:88 +#: src/Console/AppConsole.vala:89 #, fuzzy msgid "List installed kernels" msgstr "Alle beschikbare mainline-kernels weergeven" @@ -361,7 +363,7 @@ msgstr "Ontbrekend pictogram" msgid "Multiple Kernels Selected" msgstr "Meerdere kernels geselecteerd" -#: src/Console/AppConsole.vala:291 +#: src/Console/AppConsole.vala:292 msgid "Multiple kernels selected for installation. Select only one." msgstr "" "Er zijn meerdere te installeren kernels geselecteerd. Selecteer er slechts " @@ -376,12 +378,12 @@ msgstr "" msgid "No Internet" msgstr "Geen internetverbinding" -#: src/Console/AppConsole.vala:285 src/Console/AppConsole.vala:322 +#: src/Console/AppConsole.vala:286 src/Console/AppConsole.vala:323 msgid "No kernels specified" msgstr "" -#: src/Common/LinuxKernel.vala:784 src/Console/AppConsole.vala:372 -#: src/Console/AppConsole.vala:430 src/Gtk/MainWindow.vala:796 +#: src/Common/LinuxKernel.vala:784 src/Console/AppConsole.vala:373 +#: src/Console/AppConsole.vala:431 src/Gtk/MainWindow.vala:796 msgid "No updates found" msgstr "Geen updates gevonden" @@ -389,15 +391,15 @@ msgstr "Geen updates gevonden" msgid "Not Selected" msgstr "Niet geselecteerd" -#: src/Gtk/SettingsDialog.vala:66 +#: src/Gtk/SettingsDialog.vala:65 msgid "Notification" msgstr "Melding" -#: src/Gtk/SettingsDialog.vala:73 +#: src/Gtk/SettingsDialog.vala:72 msgid "Notify if a major release is available" msgstr "Melding weergeven als er een grote update beschikbaar is" -#: src/Gtk/SettingsDialog.vala:84 +#: src/Gtk/SettingsDialog.vala:83 msgid "Notify if a point release is available" msgstr "Melding weergeven als er een puntupdate beschikbaar is" @@ -408,11 +410,11 @@ msgstr "Melding weergeven als er een puntupdate beschikbaar is" msgid "OK" msgstr "Oké" -#: src/Console/AppConsole.vala:98 src/Gtk/AppGtk.vala:181 +#: src/Console/AppConsole.vala:99 src/Gtk/AppGtk.vala:183 msgid "Options" msgstr "Opties" -#: src/Gtk/SettingsDialog.vala:191 +#: src/Gtk/SettingsDialog.vala:197 msgid "Other" msgstr "" @@ -434,7 +436,7 @@ msgstr "Installeer de vereiste pakketten en probeer het opnieuw" msgid "Preparing to remove selected kernels" msgstr "Bezig met voorbereiden van verwijderen van geselecteerde kernels" -#: src/Gtk/AppGtk.vala:183 +#: src/Gtk/AppGtk.vala:185 msgid "Print debug information" msgstr "Foutopsporingsinformatie printen" @@ -454,25 +456,25 @@ msgstr "Bezig met verversen..." msgid "Remove" msgstr "Verwijderen" -#: src/Console/AppConsole.vala:95 src/Console/AppConsole.vala:100 +#: src/Console/AppConsole.vala:96 src/Console/AppConsole.vala:101 msgid "Remove files from application cache" msgstr "Bestanden verwijderen uit applicatie-cache" -#: src/Console/AppConsole.vala:93 src/Gtk/MainWindow.vala:426 +#: src/Console/AppConsole.vala:94 src/Gtk/MainWindow.vala:426 msgid "Remove installed kernels older than running kernel" msgstr "" -#: src/Console/AppConsole.vala:92 +#: src/Console/AppConsole.vala:93 #, fuzzy msgid "Remove specified kernel" msgstr "Opgegeven mainline-kernel verwijderen" -#: src/Console/AppConsole.vala:199 src/Console/AppConsole.vala:313 -#: src/Console/AppConsole.vala:342 +#: src/Console/AppConsole.vala:200 src/Console/AppConsole.vala:314 +#: src/Console/AppConsole.vala:343 msgid "Run '" msgstr "" -#: src/Console/AppConsole.vala:117 +#: src/Console/AppConsole.vala:118 #, fuzzy msgid "Run the application as admin with pkexec or sudo." msgstr "Draai de applicatie als root of m.b.v. gksu/sudo." @@ -502,7 +504,7 @@ msgstr "" "verwijderd.\n" " Installeer een andere kernel voordat u deze verwijdert." -#: src/Gtk/SettingsDialog.vala:56 src/Gtk/MainWindow.vala:475 +#: src/Gtk/MainWindow.vala:475 src/Gtk/SettingsDialog.vala:55 msgid "Settings" msgstr "Instellingen" @@ -510,24 +512,24 @@ msgstr "Instellingen" msgid "Show" msgstr "" -#: src/Gtk/AppGtk.vala:184 +#: src/Gtk/AppGtk.vala:186 msgid "Show all options" msgstr "Alle opties weergeven" -#: src/Gtk/SettingsDialog.vala:95 +#: src/Gtk/SettingsDialog.vala:94 msgid "Show notification bubble on desktop" msgstr "Bureaubladmelding weergeven" -#: src/Gtk/SettingsDialog.vala:106 +#: src/Gtk/SettingsDialog.vala:105 msgid "Show notification dialog" msgstr "Meldingsvenster weergeven" -#: src/Console/AppConsole.vala:96 +#: src/Console/AppConsole.vala:97 #, fuzzy msgid "Show unstable and RC releases" msgstr "Instabiele en RC-uitgaven verbergen" -#: src/Gtk/SettingsDialog.vala:199 +#: src/Gtk/SettingsDialog.vala:205 #, fuzzy msgid "Skip internet connection check" msgstr "U bent niet verbonden met het internet" @@ -540,11 +542,11 @@ msgstr "Status" msgid "Stopped" msgstr "Gestopt" -#: src/Console/AppConsole.vala:81 src/Gtk/AppGtk.vala:179 +#: src/Console/AppConsole.vala:82 src/Gtk/AppGtk.vala:181 msgid "Syntax" msgstr "Syntax" -#: src/Console/AppConsole.vala:205 src/Gtk/AppGtk.vala:111 +#: src/Console/AppConsole.vala:206 src/Gtk/AppGtk.vala:113 msgid "Temp" msgstr "" @@ -583,7 +585,7 @@ msgstr "Deïnstalleren voltooid" msgid "Un-install completed with errors" msgstr "Deïnstalleren voltooid, maar met fouten" -#: src/Console/AppConsole.vala:197 src/Gtk/AppGtk.vala:166 +#: src/Console/AppConsole.vala:198 src/Gtk/AppGtk.vala:168 msgid "Unknown option" msgstr "Onbekende optie" @@ -595,7 +597,7 @@ msgstr "Versie" msgid "W" msgstr "W" -#: src/Gtk/SettingsDialog.vala:156 +#: src/Gtk/SettingsDialog.vala:155 msgid "Week(s)" msgstr "we(e)k(en)" @@ -607,7 +609,7 @@ msgstr "" msgid "[Warning] Deleted invalid lock" msgstr "[Waarschuwing] Ongeldige lock verwijderd" -#: src/Gtk/SettingsDialog.vala:226 +#: src/Gtk/SettingsDialog.vala:232 msgid "seconds" msgstr "" diff --git a/po/pl.po b/po/pl.po index 61e62989..4b72c9f2 100644 --- a/po/pl.po +++ b/po/pl.po @@ -5,8 +5,8 @@ msgid "" msgstr "" "Project-Id-Version: ukuu\n" -"Report-Msgid-Bugs-To: bw.aljex@gmail.com\n" -"POT-Creation-Date: 2019-09-11 18:04-0400\n" +"Report-Msgid-Bugs-To: b.kenyon.w@gmail.com\n" +"POT-Creation-Date: 2020-01-03 18:52-0500\n" "PO-Revision-Date: 2017-08-12 15:26+0200\n" "Last-Translator: \n" "Language-Team: Polish\n" @@ -20,7 +20,7 @@ msgstr "" msgid "About" msgstr "O programie" -#: src/Console/AppConsole.vala:114 +#: src/Console/AppConsole.vala:115 msgid "Admin access is required for running this application." msgstr "Aby uruchomić tę aplikację niezbędne są prawa administratora." @@ -38,7 +38,7 @@ msgstr "Architektura systemu" msgid "Artists" msgstr "Artyści" -#: src/Console/AppConsole.vala:101 +#: src/Console/AppConsole.vala:102 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "" @@ -55,12 +55,13 @@ msgstr "Dostępne jądra" msgid "Back" msgstr "Wstecz" -#: src/Console/AppConsole.vala:204 src/Gtk/AppGtk.vala:110 +#: src/Console/AppConsole.vala:205 src/Gtk/AppGtk.vala:112 msgid "Cache" msgstr "" -#: src/Gtk/ProgressWindow.vala:145 src/Gtk/UpdateNotificationWindow.vala:167 -#: src/Gtk/TerminalWindow.vala:148 src/Utility/Gtk/CustomMessageDialog.vala:155 +#: src/Gtk/ProgressWindow.vala:145 src/Gtk/TerminalWindow.vala:148 +#: src/Gtk/UpdateNotificationWindow.vala:167 +#: src/Utility/Gtk/CustomMessageDialog.vala:155 msgid "Cancel" msgstr "Anuluj" @@ -68,15 +69,15 @@ msgstr "Anuluj" msgid "Changes" msgstr "Zmiany" -#: src/Gtk/SettingsDialog.vala:121 +#: src/Gtk/SettingsDialog.vala:120 msgid "Check every" msgstr "Sprawdzaj co" -#: src/Console/AppConsole.vala:85 +#: src/Console/AppConsole.vala:86 msgid "Check for kernel updates" msgstr "Sprawdź nowe wersje jądra" -#: src/Console/AppConsole.vala:86 +#: src/Console/AppConsole.vala:87 #, fuzzy msgid "Check for kernel updates and notify current user" msgstr "Sprawdź nowe wersje jądra" @@ -85,11 +86,11 @@ msgstr "Sprawdź nowe wersje jądra" msgid "Close" msgstr "Zamknij" -#: src/Console/AppConsole.vala:341 +#: src/Console/AppConsole.vala:342 msgid "Command not specified" msgstr "" -#: src/Console/AppConsole.vala:83 +#: src/Console/AppConsole.vala:84 msgid "Commands" msgstr "" @@ -112,7 +113,7 @@ msgstr "Wkład" msgid "Could not find any kernels to remove" msgstr "Wybierz jądro do usunięcia" -#: src/Console/AppConsole.vala:309 src/Gtk/MainWindow.vala:100 +#: src/Console/AppConsole.vala:310 src/Gtk/MainWindow.vala:100 msgid "Could not find requested version" msgstr "Nie można odnaleźć żądanej wersji" @@ -131,7 +132,7 @@ msgstr "Utworzono katalog" msgid "Credits" msgstr "Zasługi" -#: src/Gtk/SettingsDialog.vala:154 +#: src/Gtk/SettingsDialog.vala:153 msgid "Day(s)" msgstr "Dni" @@ -143,7 +144,7 @@ msgstr "Usunięto katalog" msgid "Dir not found" msgstr "Katalog nie odnaleziony" -#: src/Gtk/SettingsDialog.vala:161 +#: src/Gtk/SettingsDialog.vala:160 msgid "Display" msgstr "Pokaż" @@ -156,7 +157,7 @@ msgstr "Dystrybucja" msgid "Documenters" msgstr "Dokumentujący" -#: src/Console/AppConsole.vala:94 +#: src/Console/AppConsole.vala:95 msgid "Download packages for specified kernel" msgstr "Pobierz pakiety dla wybranego jądra" @@ -244,15 +245,16 @@ msgstr "Nie odnaleziono pliku: %s" msgid "File saved" msgstr "Plik zapisany" -#: src/Gtk/SettingsDialog.vala:180 -msgid "Hide kernels older than 4.0" +#: src/Gtk/SettingsDialog.vala:182 +#, fuzzy +msgid "Hide kernels older than " msgstr "Ukryj jądra starsze niż 4.0" -#: src/Gtk/SettingsDialog.vala:169 +#: src/Gtk/SettingsDialog.vala:168 msgid "Hide unstable and RC releases" msgstr "Ukryj wydania niestabilne i RC" -#: src/Gtk/SettingsDialog.vala:152 +#: src/Gtk/SettingsDialog.vala:151 msgid "Hour(s)" msgstr "Godzin(y)" @@ -268,7 +270,7 @@ msgstr "Indeks jest aktualny" msgid "Index is stale" msgstr "Indeks jest nieaktualny" -#: src/Gtk/UpdateNotificationWindow.vala:147 src/Gtk/MainWindow.vala:359 +#: src/Gtk/MainWindow.vala:359 src/Gtk/UpdateNotificationWindow.vala:147 msgid "Install" msgstr "Zainstaluj" @@ -277,16 +279,16 @@ msgstr "Zainstaluj" msgid "Install Linux v%s ? (y/n): " msgstr "" -#: src/Console/AppConsole.vala:89 +#: src/Console/AppConsole.vala:90 #, fuzzy msgid "Install latest mainline kernel" msgstr "Zainstaluj wybrane jądro" -#: src/Console/AppConsole.vala:90 +#: src/Console/AppConsole.vala:91 msgid "Install latest point update for current series" msgstr "" -#: src/Console/AppConsole.vala:91 +#: src/Console/AppConsole.vala:92 msgid "Install specified mainline kernel" msgstr "Zainstaluj wybrane jądro" @@ -313,7 +315,7 @@ msgstr "Zainstalowany" msgid "Internet connection is not active" msgstr "Brak połączenia z internetem" -#: src/Gtk/SettingsDialog.vala:212 +#: src/Gtk/SettingsDialog.vala:218 #, fuzzy msgid "Internet connection timeout in " msgstr "Brak połączenia z internetem" @@ -326,17 +328,17 @@ msgstr "Jądro" msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Narzędzie uaktualniania jądra dla dystrybucji z rodziny Ubuntu" -#: src/Common/LinuxKernel.vala:776 src/Console/AppConsole.vala:367 +#: src/Common/LinuxKernel.vala:776 src/Console/AppConsole.vala:368 #, c-format msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:765 src/Console/AppConsole.vala:360 +#: src/Common/LinuxKernel.vala:765 src/Console/AppConsole.vala:361 #, c-format msgid "Latest update" msgstr "" -#: src/Console/AppConsole.vala:87 +#: src/Console/AppConsole.vala:88 msgid "List all available mainline kernels" msgstr "Pokaż wszystkie dostępne jądra" @@ -345,7 +347,7 @@ msgstr "Pokaż wszystkie dostępne jądra" msgid "List available kernels" msgstr "Pokaż wszystkie dostępne jądra" -#: src/Console/AppConsole.vala:88 +#: src/Console/AppConsole.vala:89 #, fuzzy msgid "List installed kernels" msgstr "Pokaż wszystkie dostępne jądra" @@ -358,7 +360,7 @@ msgstr "Brakująca ikona" msgid "Multiple Kernels Selected" msgstr "Wybrano kilka jąder" -#: src/Console/AppConsole.vala:291 +#: src/Console/AppConsole.vala:292 msgid "Multiple kernels selected for installation. Select only one." msgstr "Wybrano kilka jąder do instalacji. Wybierz tylko jedno." @@ -371,12 +373,12 @@ msgstr "" msgid "No Internet" msgstr "Brak internetu" -#: src/Console/AppConsole.vala:285 src/Console/AppConsole.vala:322 +#: src/Console/AppConsole.vala:286 src/Console/AppConsole.vala:323 msgid "No kernels specified" msgstr "" -#: src/Common/LinuxKernel.vala:784 src/Console/AppConsole.vala:372 -#: src/Console/AppConsole.vala:430 src/Gtk/MainWindow.vala:796 +#: src/Common/LinuxKernel.vala:784 src/Console/AppConsole.vala:373 +#: src/Console/AppConsole.vala:431 src/Gtk/MainWindow.vala:796 msgid "No updates found" msgstr "Nie znaleziono aktualizacji" @@ -384,15 +386,15 @@ msgstr "Nie znaleziono aktualizacji" msgid "Not Selected" msgstr "Nie wybrany" -#: src/Gtk/SettingsDialog.vala:66 +#: src/Gtk/SettingsDialog.vala:65 msgid "Notification" msgstr "Powiadomienia" -#: src/Gtk/SettingsDialog.vala:73 +#: src/Gtk/SettingsDialog.vala:72 msgid "Notify if a major release is available" msgstr "Powiadom, jeśli pojawi się główna wersja" -#: src/Gtk/SettingsDialog.vala:84 +#: src/Gtk/SettingsDialog.vala:83 msgid "Notify if a point release is available" msgstr "Powiadom, jeśli pojawi się wersja punktowa" @@ -403,11 +405,11 @@ msgstr "Powiadom, jeśli pojawi się wersja punktowa" msgid "OK" msgstr "OK" -#: src/Console/AppConsole.vala:98 src/Gtk/AppGtk.vala:181 +#: src/Console/AppConsole.vala:99 src/Gtk/AppGtk.vala:183 msgid "Options" msgstr "Opcje" -#: src/Gtk/SettingsDialog.vala:191 +#: src/Gtk/SettingsDialog.vala:197 msgid "Other" msgstr "" @@ -429,7 +431,7 @@ msgstr "Zainstaluj wymagane pakiety i spróbuj ponownie" msgid "Preparing to remove selected kernels" msgstr "Przygotowanie do usunięcia wybranych jąder" -#: src/Gtk/AppGtk.vala:183 +#: src/Gtk/AppGtk.vala:185 msgid "Print debug information" msgstr "Wypisz informacje debugujące" @@ -449,25 +451,25 @@ msgstr "Odświeżam..." msgid "Remove" msgstr "Usuń" -#: src/Console/AppConsole.vala:95 src/Console/AppConsole.vala:100 +#: src/Console/AppConsole.vala:96 src/Console/AppConsole.vala:101 msgid "Remove files from application cache" msgstr "Usuń pliki z pamięci podręcznej aplikacji" -#: src/Console/AppConsole.vala:93 src/Gtk/MainWindow.vala:426 +#: src/Console/AppConsole.vala:94 src/Gtk/MainWindow.vala:426 msgid "Remove installed kernels older than running kernel" msgstr "" -#: src/Console/AppConsole.vala:92 +#: src/Console/AppConsole.vala:93 #, fuzzy msgid "Remove specified kernel" msgstr "Usuń wybrane jądro" -#: src/Console/AppConsole.vala:199 src/Console/AppConsole.vala:313 -#: src/Console/AppConsole.vala:342 +#: src/Console/AppConsole.vala:200 src/Console/AppConsole.vala:314 +#: src/Console/AppConsole.vala:343 msgid "Run '" msgstr "" -#: src/Console/AppConsole.vala:117 +#: src/Console/AppConsole.vala:118 #, fuzzy msgid "Run the application as admin with pkexec or sudo." msgstr "Uruchom aplikację jako root albo użyj gksu/sudo." @@ -496,7 +498,7 @@ msgstr "" "Wybrane jądro aktualnie działa i nie może zostać usunięte.\n" " Zainstaluj inne jądro przed usunięciem tego." -#: src/Gtk/SettingsDialog.vala:56 src/Gtk/MainWindow.vala:475 +#: src/Gtk/MainWindow.vala:475 src/Gtk/SettingsDialog.vala:55 msgid "Settings" msgstr "Ustawienia" @@ -504,24 +506,24 @@ msgstr "Ustawienia" msgid "Show" msgstr "" -#: src/Gtk/AppGtk.vala:184 +#: src/Gtk/AppGtk.vala:186 msgid "Show all options" msgstr "Pokaż wszystkie opcje" -#: src/Gtk/SettingsDialog.vala:95 +#: src/Gtk/SettingsDialog.vala:94 msgid "Show notification bubble on desktop" msgstr "Pokaż powiadomienia na pulpicie" -#: src/Gtk/SettingsDialog.vala:106 +#: src/Gtk/SettingsDialog.vala:105 msgid "Show notification dialog" msgstr "Pokaż okno powiadomień" -#: src/Console/AppConsole.vala:96 +#: src/Console/AppConsole.vala:97 #, fuzzy msgid "Show unstable and RC releases" msgstr "Ukryj wydania niestabilne i RC" -#: src/Gtk/SettingsDialog.vala:199 +#: src/Gtk/SettingsDialog.vala:205 #, fuzzy msgid "Skip internet connection check" msgstr "Brak połączenia z internetem" @@ -534,11 +536,11 @@ msgstr "Status" msgid "Stopped" msgstr "Zatrzymany" -#: src/Console/AppConsole.vala:81 src/Gtk/AppGtk.vala:179 +#: src/Console/AppConsole.vala:82 src/Gtk/AppGtk.vala:181 msgid "Syntax" msgstr "Składnia" -#: src/Console/AppConsole.vala:205 src/Gtk/AppGtk.vala:111 +#: src/Console/AppConsole.vala:206 src/Gtk/AppGtk.vala:113 msgid "Temp" msgstr "" @@ -577,7 +579,7 @@ msgstr "De-instalacja zakończona" msgid "Un-install completed with errors" msgstr "De-instalacja zakończona z błędami" -#: src/Console/AppConsole.vala:197 src/Gtk/AppGtk.vala:166 +#: src/Console/AppConsole.vala:198 src/Gtk/AppGtk.vala:168 msgid "Unknown option" msgstr "Nieznana opcja" @@ -589,7 +591,7 @@ msgstr "Wersja" msgid "W" msgstr "W" -#: src/Gtk/SettingsDialog.vala:156 +#: src/Gtk/SettingsDialog.vala:155 msgid "Week(s)" msgstr "Tygodni" @@ -601,7 +603,7 @@ msgstr "" msgid "[Warning] Deleted invalid lock" msgstr "[Ostrzeżenie] Usunięto nieprawidłową blokadę" -#: src/Gtk/SettingsDialog.vala:226 +#: src/Gtk/SettingsDialog.vala:232 msgid "seconds" msgstr "" diff --git a/po/ru.po b/po/ru.po index 0c07b010..c3ec0b09 100644 --- a/po/ru.po +++ b/po/ru.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: ukuu\n" -"Report-Msgid-Bugs-To: bw.aljex@gmail.com\n" -"POT-Creation-Date: 2019-09-11 18:04-0400\n" +"Report-Msgid-Bugs-To: b.kenyon.w@gmail.com\n" +"POT-Creation-Date: 2020-01-03 18:52-0500\n" "PO-Revision-Date: 2016-12-13 16:46+0300\n" "Last-Translator: Faust3000 \n" "Language-Team: Russian \n" @@ -22,7 +22,7 @@ msgstr "" msgid "About" msgstr "О программе" -#: src/Console/AppConsole.vala:114 +#: src/Console/AppConsole.vala:115 msgid "Admin access is required for running this application." msgstr "Для запуска программы требуются права администратора." @@ -40,7 +40,7 @@ msgstr "Системная архитектура" msgid "Artists" msgstr "Художники" -#: src/Console/AppConsole.vala:101 +#: src/Console/AppConsole.vala:102 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "" @@ -57,12 +57,13 @@ msgstr "Доступные ядра" msgid "Back" msgstr "Назад" -#: src/Console/AppConsole.vala:204 src/Gtk/AppGtk.vala:110 +#: src/Console/AppConsole.vala:205 src/Gtk/AppGtk.vala:112 msgid "Cache" msgstr "" -#: src/Gtk/ProgressWindow.vala:145 src/Gtk/UpdateNotificationWindow.vala:167 -#: src/Gtk/TerminalWindow.vala:148 src/Utility/Gtk/CustomMessageDialog.vala:155 +#: src/Gtk/ProgressWindow.vala:145 src/Gtk/TerminalWindow.vala:148 +#: src/Gtk/UpdateNotificationWindow.vala:167 +#: src/Utility/Gtk/CustomMessageDialog.vala:155 msgid "Cancel" msgstr "Отмена" @@ -70,15 +71,15 @@ msgstr "Отмена" msgid "Changes" msgstr "Изменения" -#: src/Gtk/SettingsDialog.vala:121 +#: src/Gtk/SettingsDialog.vala:120 msgid "Check every" msgstr "Проверять каждые" -#: src/Console/AppConsole.vala:85 +#: src/Console/AppConsole.vala:86 msgid "Check for kernel updates" msgstr "Проверить обновления ядра" -#: src/Console/AppConsole.vala:86 +#: src/Console/AppConsole.vala:87 #, fuzzy msgid "Check for kernel updates and notify current user" msgstr "Проверить обновления ядра" @@ -87,11 +88,11 @@ msgstr "Проверить обновления ядра" msgid "Close" msgstr "Закрыть" -#: src/Console/AppConsole.vala:341 +#: src/Console/AppConsole.vala:342 msgid "Command not specified" msgstr "" -#: src/Console/AppConsole.vala:83 +#: src/Console/AppConsole.vala:84 msgid "Commands" msgstr "" @@ -114,7 +115,7 @@ msgstr "Взносы" msgid "Could not find any kernels to remove" msgstr "Не удалось найти запрошенную версию" -#: src/Console/AppConsole.vala:309 src/Gtk/MainWindow.vala:100 +#: src/Console/AppConsole.vala:310 src/Gtk/MainWindow.vala:100 msgid "Could not find requested version" msgstr "Не удалось найти запрошенную версию" @@ -134,7 +135,7 @@ msgstr "Используемая кэш-папка" msgid "Credits" msgstr "Создатели" -#: src/Gtk/SettingsDialog.vala:154 +#: src/Gtk/SettingsDialog.vala:153 msgid "Day(s)" msgstr "День(дней)" @@ -146,7 +147,7 @@ msgstr "" msgid "Dir not found" msgstr "Папка не найдена" -#: src/Gtk/SettingsDialog.vala:161 +#: src/Gtk/SettingsDialog.vala:160 msgid "Display" msgstr "Вид" @@ -159,7 +160,7 @@ msgstr "Дистрибутив" msgid "Documenters" msgstr "Составители документации" -#: src/Console/AppConsole.vala:94 +#: src/Console/AppConsole.vala:95 msgid "Download packages for specified kernel" msgstr "Скачать пакеты для указанного ядра" @@ -251,15 +252,16 @@ msgstr "Файл не найден: %s" msgid "File saved" msgstr "Файловая система" -#: src/Gtk/SettingsDialog.vala:180 -msgid "Hide kernels older than 4.0" +#: src/Gtk/SettingsDialog.vala:182 +#, fuzzy +msgid "Hide kernels older than " msgstr "Скрыть ядра старше версии 4.0" -#: src/Gtk/SettingsDialog.vala:169 +#: src/Gtk/SettingsDialog.vala:168 msgid "Hide unstable and RC releases" msgstr "Скрыть нестабильные и релиз-кандидат версии" -#: src/Gtk/SettingsDialog.vala:152 +#: src/Gtk/SettingsDialog.vala:151 msgid "Hour(s)" msgstr "Час(ов)" @@ -275,7 +277,7 @@ msgstr "Сведения актуальны" msgid "Index is stale" msgstr "Сведения устарели" -#: src/Gtk/UpdateNotificationWindow.vala:147 src/Gtk/MainWindow.vala:359 +#: src/Gtk/MainWindow.vala:359 src/Gtk/UpdateNotificationWindow.vala:147 msgid "Install" msgstr "Установить" @@ -284,16 +286,16 @@ msgstr "Установить" msgid "Install Linux v%s ? (y/n): " msgstr "" -#: src/Console/AppConsole.vala:89 +#: src/Console/AppConsole.vala:90 #, fuzzy msgid "Install latest mainline kernel" msgstr "Установить указанную ветку ядра" -#: src/Console/AppConsole.vala:90 +#: src/Console/AppConsole.vala:91 msgid "Install latest point update for current series" msgstr "" -#: src/Console/AppConsole.vala:91 +#: src/Console/AppConsole.vala:92 msgid "Install specified mainline kernel" msgstr "Установить указанную ветку ядра" @@ -320,7 +322,7 @@ msgstr "Установлено" msgid "Internet connection is not active" msgstr "Интернет соединение не активно" -#: src/Gtk/SettingsDialog.vala:212 +#: src/Gtk/SettingsDialog.vala:218 #, fuzzy msgid "Internet connection timeout in " msgstr "Интернет соединение не активно" @@ -333,17 +335,17 @@ msgstr "Ядро" msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Программа обновления ядра для дистрибутивов на базе Ubuntu" -#: src/Common/LinuxKernel.vala:776 src/Console/AppConsole.vala:367 +#: src/Common/LinuxKernel.vala:776 src/Console/AppConsole.vala:368 #, c-format msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:765 src/Console/AppConsole.vala:360 +#: src/Common/LinuxKernel.vala:765 src/Console/AppConsole.vala:361 #, c-format msgid "Latest update" msgstr "" -#: src/Console/AppConsole.vala:87 +#: src/Console/AppConsole.vala:88 msgid "List all available mainline kernels" msgstr "Список всех доступных основных ядер" @@ -352,7 +354,7 @@ msgstr "Список всех доступных основных ядер" msgid "List available kernels" msgstr "Список всех доступных основных ядер" -#: src/Console/AppConsole.vala:88 +#: src/Console/AppConsole.vala:89 #, fuzzy msgid "List installed kernels" msgstr "Список всех доступных основных ядер" @@ -365,7 +367,7 @@ msgstr "Значок отсутствует" msgid "Multiple Kernels Selected" msgstr "" -#: src/Console/AppConsole.vala:291 +#: src/Console/AppConsole.vala:292 msgid "Multiple kernels selected for installation. Select only one." msgstr "" @@ -378,12 +380,12 @@ msgstr "" msgid "No Internet" msgstr "" -#: src/Console/AppConsole.vala:285 src/Console/AppConsole.vala:322 +#: src/Console/AppConsole.vala:286 src/Console/AppConsole.vala:323 msgid "No kernels specified" msgstr "" -#: src/Common/LinuxKernel.vala:784 src/Console/AppConsole.vala:372 -#: src/Console/AppConsole.vala:430 src/Gtk/MainWindow.vala:796 +#: src/Common/LinuxKernel.vala:784 src/Console/AppConsole.vala:373 +#: src/Console/AppConsole.vala:431 src/Gtk/MainWindow.vala:796 msgid "No updates found" msgstr "Обновлений не найдено" @@ -391,15 +393,15 @@ msgstr "Обновлений не найдено" msgid "Not Selected" msgstr "" -#: src/Gtk/SettingsDialog.vala:66 +#: src/Gtk/SettingsDialog.vala:65 msgid "Notification" msgstr "Уведомления" -#: src/Gtk/SettingsDialog.vala:73 +#: src/Gtk/SettingsDialog.vala:72 msgid "Notify if a major release is available" msgstr "Уведомлять, если доступно крупное обновление" -#: src/Gtk/SettingsDialog.vala:84 +#: src/Gtk/SettingsDialog.vala:83 msgid "Notify if a point release is available" msgstr "Уведомлять, если доступно небольшое обновление" @@ -410,11 +412,11 @@ msgstr "Уведомлять, если доступно небольшое об msgid "OK" msgstr "OK" -#: src/Console/AppConsole.vala:98 src/Gtk/AppGtk.vala:181 +#: src/Console/AppConsole.vala:99 src/Gtk/AppGtk.vala:183 msgid "Options" msgstr "Параметры" -#: src/Gtk/SettingsDialog.vala:191 +#: src/Gtk/SettingsDialog.vala:197 msgid "Other" msgstr "" @@ -436,7 +438,7 @@ msgstr "Установить необходимые пакеты и попроб msgid "Preparing to remove selected kernels" msgstr "" -#: src/Gtk/AppGtk.vala:183 +#: src/Gtk/AppGtk.vala:185 msgid "Print debug information" msgstr "Распечатать отладочную информацию" @@ -456,25 +458,25 @@ msgstr "Обновление..." msgid "Remove" msgstr "Удалить" -#: src/Console/AppConsole.vala:95 src/Console/AppConsole.vala:100 +#: src/Console/AppConsole.vala:96 src/Console/AppConsole.vala:101 msgid "Remove files from application cache" msgstr "Удалить файлы из кэша программы" -#: src/Console/AppConsole.vala:93 src/Gtk/MainWindow.vala:426 +#: src/Console/AppConsole.vala:94 src/Gtk/MainWindow.vala:426 msgid "Remove installed kernels older than running kernel" msgstr "Удалить более старшие установленные ядра, чем используемое" -#: src/Console/AppConsole.vala:92 +#: src/Console/AppConsole.vala:93 #, fuzzy msgid "Remove specified kernel" msgstr "Удалить указанную ветку ядра" -#: src/Console/AppConsole.vala:199 src/Console/AppConsole.vala:313 -#: src/Console/AppConsole.vala:342 +#: src/Console/AppConsole.vala:200 src/Console/AppConsole.vala:314 +#: src/Console/AppConsole.vala:343 msgid "Run '" msgstr "" -#: src/Console/AppConsole.vala:117 +#: src/Console/AppConsole.vala:118 #, fuzzy msgid "Run the application as admin with pkexec or sudo." msgstr "Запустите программу с правами Root или используйте gksu/sudo." @@ -504,7 +506,7 @@ msgstr "" "Это ядро в настоящий момент работает и не может быть удалено.\n" " Установите другое ядро, прежде чем удалять его." -#: src/Gtk/SettingsDialog.vala:56 src/Gtk/MainWindow.vala:475 +#: src/Gtk/MainWindow.vala:475 src/Gtk/SettingsDialog.vala:55 msgid "Settings" msgstr "Настройки" @@ -512,24 +514,24 @@ msgstr "Настройки" msgid "Show" msgstr "" -#: src/Gtk/AppGtk.vala:184 +#: src/Gtk/AppGtk.vala:186 msgid "Show all options" msgstr "Показать все параметры" -#: src/Gtk/SettingsDialog.vala:95 +#: src/Gtk/SettingsDialog.vala:94 msgid "Show notification bubble on desktop" msgstr "Показывать окно оповещений на рабочем столе" -#: src/Gtk/SettingsDialog.vala:106 +#: src/Gtk/SettingsDialog.vala:105 msgid "Show notification dialog" msgstr "Показывать окно оповещений" -#: src/Console/AppConsole.vala:96 +#: src/Console/AppConsole.vala:97 #, fuzzy msgid "Show unstable and RC releases" msgstr "Скрыть нестабильные и релиз-кандидат версии" -#: src/Gtk/SettingsDialog.vala:199 +#: src/Gtk/SettingsDialog.vala:205 #, fuzzy msgid "Skip internet connection check" msgstr "Интернет соединение не активно" @@ -542,11 +544,11 @@ msgstr "Состояние" msgid "Stopped" msgstr "Остановлено" -#: src/Console/AppConsole.vala:81 src/Gtk/AppGtk.vala:179 +#: src/Console/AppConsole.vala:82 src/Gtk/AppGtk.vala:181 msgid "Syntax" msgstr "Синтаксис" -#: src/Console/AppConsole.vala:205 src/Gtk/AppGtk.vala:111 +#: src/Console/AppConsole.vala:206 src/Gtk/AppGtk.vala:113 msgid "Temp" msgstr "" @@ -585,7 +587,7 @@ msgstr "Удаление завершено" msgid "Un-install completed with errors" msgstr "Удаление завершено с ошибками" -#: src/Console/AppConsole.vala:197 src/Gtk/AppGtk.vala:166 +#: src/Console/AppConsole.vala:198 src/Gtk/AppGtk.vala:168 msgid "Unknown option" msgstr "Неизвестный параметр" @@ -597,7 +599,7 @@ msgstr "Версия" msgid "W" msgstr "W" -#: src/Gtk/SettingsDialog.vala:156 +#: src/Gtk/SettingsDialog.vala:155 msgid "Week(s)" msgstr "Неделю(ли)" @@ -609,7 +611,7 @@ msgstr "" msgid "[Warning] Deleted invalid lock" msgstr "[Внимание] Удалена неправильная блокировка" -#: src/Gtk/SettingsDialog.vala:226 +#: src/Gtk/SettingsDialog.vala:232 msgid "seconds" msgstr "" diff --git a/po/sv.po b/po/sv.po index 5177e83f..71e5af70 100644 --- a/po/sv.po +++ b/po/sv.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: ukuu 2.2\n" -"Report-Msgid-Bugs-To: bw.aljex@gmail.com\n" -"POT-Creation-Date: 2019-09-11 18:04-0400\n" +"Report-Msgid-Bugs-To: b.kenyon.w@gmail.com\n" +"POT-Creation-Date: 2020-01-03 18:52-0500\n" "PO-Revision-Date: 2018-01-13 16:56+0100\n" "Last-Translator: Åke Engelbrektson \n" "Language-Team: Svenska Språkfiler \n" @@ -22,7 +22,7 @@ msgstr "" msgid "About" msgstr "Om" -#: src/Console/AppConsole.vala:114 +#: src/Console/AppConsole.vala:115 msgid "Admin access is required for running this application." msgstr "Root-åtkomst krävs för att köra detta program." @@ -40,7 +40,7 @@ msgstr "Systemarkitektur" msgid "Artists" msgstr "Artister" -#: src/Console/AppConsole.vala:101 +#: src/Console/AppConsole.vala:102 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "" @@ -57,12 +57,13 @@ msgstr "Tillgängliga kärnor" msgid "Back" msgstr "Tillbaka" -#: src/Console/AppConsole.vala:204 src/Gtk/AppGtk.vala:110 +#: src/Console/AppConsole.vala:205 src/Gtk/AppGtk.vala:112 msgid "Cache" msgstr "" -#: src/Gtk/ProgressWindow.vala:145 src/Gtk/UpdateNotificationWindow.vala:167 -#: src/Gtk/TerminalWindow.vala:148 src/Utility/Gtk/CustomMessageDialog.vala:155 +#: src/Gtk/ProgressWindow.vala:145 src/Gtk/TerminalWindow.vala:148 +#: src/Gtk/UpdateNotificationWindow.vala:167 +#: src/Utility/Gtk/CustomMessageDialog.vala:155 msgid "Cancel" msgstr "Avbryt" @@ -70,15 +71,15 @@ msgstr "Avbryt" msgid "Changes" msgstr "Ändringar" -#: src/Gtk/SettingsDialog.vala:121 +#: src/Gtk/SettingsDialog.vala:120 msgid "Check every" msgstr "Kontrollera varje" -#: src/Console/AppConsole.vala:85 +#: src/Console/AppConsole.vala:86 msgid "Check for kernel updates" msgstr "Sök efter kärnuppdateringar" -#: src/Console/AppConsole.vala:86 +#: src/Console/AppConsole.vala:87 #, fuzzy msgid "Check for kernel updates and notify current user" msgstr "Sök efter kärnuppdateringar" @@ -87,11 +88,11 @@ msgstr "Sök efter kärnuppdateringar" msgid "Close" msgstr "Stäng" -#: src/Console/AppConsole.vala:341 +#: src/Console/AppConsole.vala:342 msgid "Command not specified" msgstr "" -#: src/Console/AppConsole.vala:83 +#: src/Console/AppConsole.vala:84 msgid "Commands" msgstr "" @@ -114,7 +115,7 @@ msgstr "Bidrag" msgid "Could not find any kernels to remove" msgstr "Välj kärnor för borttagning" -#: src/Console/AppConsole.vala:309 src/Gtk/MainWindow.vala:100 +#: src/Console/AppConsole.vala:310 src/Gtk/MainWindow.vala:100 msgid "Could not find requested version" msgstr "Kunde inte hitta efterfrågad version" @@ -133,7 +134,7 @@ msgstr "Skapade mapp" msgid "Credits" msgstr "Tack" -#: src/Gtk/SettingsDialog.vala:154 +#: src/Gtk/SettingsDialog.vala:153 msgid "Day(s)" msgstr "Dag(ar)" @@ -145,7 +146,7 @@ msgstr "Tog bort mapp" msgid "Dir not found" msgstr "Mappen kan inte hittas" -#: src/Gtk/SettingsDialog.vala:161 +#: src/Gtk/SettingsDialog.vala:160 msgid "Display" msgstr "Visa" @@ -158,7 +159,7 @@ msgstr "Distribution" msgid "Documenters" msgstr "Dokumentalister" -#: src/Console/AppConsole.vala:94 +#: src/Console/AppConsole.vala:95 msgid "Download packages for specified kernel" msgstr "Ladda ner paket för specificerad kärna" @@ -247,15 +248,16 @@ msgstr "Filen kunde inte hittas: %s" msgid "File saved" msgstr "Fil sparad" -#: src/Gtk/SettingsDialog.vala:180 -msgid "Hide kernels older than 4.0" +#: src/Gtk/SettingsDialog.vala:182 +#, fuzzy +msgid "Hide kernels older than " msgstr "Dölj kärnor, äldre än 4.0" -#: src/Gtk/SettingsDialog.vala:169 +#: src/Gtk/SettingsDialog.vala:168 msgid "Hide unstable and RC releases" msgstr "Dölj instabila- och RC-publiceringar" -#: src/Gtk/SettingsDialog.vala:152 +#: src/Gtk/SettingsDialog.vala:151 msgid "Hour(s)" msgstr "Timma(r)" @@ -271,7 +273,7 @@ msgstr "Index är uppdaterat" msgid "Index is stale" msgstr "Index är inaktuellt" -#: src/Gtk/UpdateNotificationWindow.vala:147 src/Gtk/MainWindow.vala:359 +#: src/Gtk/MainWindow.vala:359 src/Gtk/UpdateNotificationWindow.vala:147 msgid "Install" msgstr "Installera" @@ -280,16 +282,16 @@ msgstr "Installera" msgid "Install Linux v%s ? (y/n): " msgstr "" -#: src/Console/AppConsole.vala:89 +#: src/Console/AppConsole.vala:90 #, fuzzy msgid "Install latest mainline kernel" msgstr "Installera specificerad kärna" -#: src/Console/AppConsole.vala:90 +#: src/Console/AppConsole.vala:91 msgid "Install latest point update for current series" msgstr "" -#: src/Console/AppConsole.vala:91 +#: src/Console/AppConsole.vala:92 msgid "Install specified mainline kernel" msgstr "Installera specificerad kärna" @@ -314,7 +316,7 @@ msgstr "Installerad" msgid "Internet connection is not active" msgstr "Internetuppkopplingen är inte aktiv" -#: src/Gtk/SettingsDialog.vala:212 +#: src/Gtk/SettingsDialog.vala:218 #, fuzzy msgid "Internet connection timeout in " msgstr "Internetuppkopplingen är inte aktiv" @@ -327,17 +329,17 @@ msgstr "Kärna" msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Kärnuppgraderingsverktyg för Ubuntu-baserade distributioner" -#: src/Common/LinuxKernel.vala:776 src/Console/AppConsole.vala:367 +#: src/Common/LinuxKernel.vala:776 src/Console/AppConsole.vala:368 #, c-format msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:765 src/Console/AppConsole.vala:360 +#: src/Common/LinuxKernel.vala:765 src/Console/AppConsole.vala:361 #, c-format msgid "Latest update" msgstr "" -#: src/Console/AppConsole.vala:87 +#: src/Console/AppConsole.vala:88 msgid "List all available mainline kernels" msgstr "Lista alla tillgängliga kärnor" @@ -345,7 +347,7 @@ msgstr "Lista alla tillgängliga kärnor" msgid "List available kernels" msgstr "Lista tillgängliga kärnor" -#: src/Console/AppConsole.vala:88 +#: src/Console/AppConsole.vala:89 #, fuzzy msgid "List installed kernels" msgstr "Lista tillgängliga kärnor" @@ -358,7 +360,7 @@ msgstr "Saknad ikon" msgid "Multiple Kernels Selected" msgstr "Flera kärnor markerade" -#: src/Console/AppConsole.vala:291 +#: src/Console/AppConsole.vala:292 msgid "Multiple kernels selected for installation. Select only one." msgstr "Flera kärnor valda för installation. Välj endast en." @@ -371,12 +373,12 @@ msgstr "Nej" msgid "No Internet" msgstr "Inget internet" -#: src/Console/AppConsole.vala:285 src/Console/AppConsole.vala:322 +#: src/Console/AppConsole.vala:286 src/Console/AppConsole.vala:323 msgid "No kernels specified" msgstr "" -#: src/Common/LinuxKernel.vala:784 src/Console/AppConsole.vala:372 -#: src/Console/AppConsole.vala:430 src/Gtk/MainWindow.vala:796 +#: src/Common/LinuxKernel.vala:784 src/Console/AppConsole.vala:373 +#: src/Console/AppConsole.vala:431 src/Gtk/MainWindow.vala:796 msgid "No updates found" msgstr "Inga uppdateringar hittades" @@ -384,15 +386,15 @@ msgstr "Inga uppdateringar hittades" msgid "Not Selected" msgstr "Inte vald" -#: src/Gtk/SettingsDialog.vala:66 +#: src/Gtk/SettingsDialog.vala:65 msgid "Notification" msgstr "Avisering" -#: src/Gtk/SettingsDialog.vala:73 +#: src/Gtk/SettingsDialog.vala:72 msgid "Notify if a major release is available" msgstr "Meddela om en ny (stor) uppdatering finns tillgänglig" -#: src/Gtk/SettingsDialog.vala:84 +#: src/Gtk/SettingsDialog.vala:83 msgid "Notify if a point release is available" msgstr "Meddela om en ny (mindre) uppdatering finns tillgänglig" @@ -403,11 +405,11 @@ msgstr "Meddela om en ny (mindre) uppdatering finns tillgänglig" msgid "OK" msgstr "OK" -#: src/Console/AppConsole.vala:98 src/Gtk/AppGtk.vala:181 +#: src/Console/AppConsole.vala:99 src/Gtk/AppGtk.vala:183 msgid "Options" msgstr "Alternativ" -#: src/Gtk/SettingsDialog.vala:191 +#: src/Gtk/SettingsDialog.vala:197 msgid "Other" msgstr "" @@ -429,7 +431,7 @@ msgstr "Installera nödvändiga paket och försök igen" msgid "Preparing to remove selected kernels" msgstr "Förbereder borttagning av markerade kärnor" -#: src/Gtk/AppGtk.vala:183 +#: src/Gtk/AppGtk.vala:185 msgid "Print debug information" msgstr "Skriv ut felsökningsinformation" @@ -449,25 +451,25 @@ msgstr "Uppdaterar ..." msgid "Remove" msgstr "Ta bort" -#: src/Console/AppConsole.vala:95 src/Console/AppConsole.vala:100 +#: src/Console/AppConsole.vala:96 src/Console/AppConsole.vala:101 msgid "Remove files from application cache" msgstr "Ta bort filer från program-cachen" -#: src/Console/AppConsole.vala:93 src/Gtk/MainWindow.vala:426 +#: src/Console/AppConsole.vala:94 src/Gtk/MainWindow.vala:426 msgid "Remove installed kernels older than running kernel" msgstr "Ta bort installerade kärnor äldre än den som körs" -#: src/Console/AppConsole.vala:92 +#: src/Console/AppConsole.vala:93 #, fuzzy msgid "Remove specified kernel" msgstr "Ta bort specificerad kärna" -#: src/Console/AppConsole.vala:199 src/Console/AppConsole.vala:313 -#: src/Console/AppConsole.vala:342 +#: src/Console/AppConsole.vala:200 src/Console/AppConsole.vala:314 +#: src/Console/AppConsole.vala:343 msgid "Run '" msgstr "" -#: src/Console/AppConsole.vala:117 +#: src/Console/AppConsole.vala:118 msgid "Run the application as admin with pkexec or sudo." msgstr "Kör programmet som administratör, med pkexec eller sudo." @@ -495,7 +497,7 @@ msgstr "" "Denna kärna används för tillfället och kan inte tas bort.\n" "Installera en annan kärna innan du tar bort den här." -#: src/Gtk/SettingsDialog.vala:56 src/Gtk/MainWindow.vala:475 +#: src/Gtk/MainWindow.vala:475 src/Gtk/SettingsDialog.vala:55 msgid "Settings" msgstr "Inställningar" @@ -503,24 +505,24 @@ msgstr "Inställningar" msgid "Show" msgstr "Visa" -#: src/Gtk/AppGtk.vala:184 +#: src/Gtk/AppGtk.vala:186 msgid "Show all options" msgstr "Visa alla alternativ" -#: src/Gtk/SettingsDialog.vala:95 +#: src/Gtk/SettingsDialog.vala:94 msgid "Show notification bubble on desktop" msgstr "Visa aviseringsruta på skrivbordet" -#: src/Gtk/SettingsDialog.vala:106 +#: src/Gtk/SettingsDialog.vala:105 msgid "Show notification dialog" msgstr "Visa aviseringsdialog" -#: src/Console/AppConsole.vala:96 +#: src/Console/AppConsole.vala:97 #, fuzzy msgid "Show unstable and RC releases" msgstr "Dölj instabila- och RC-publiceringar" -#: src/Gtk/SettingsDialog.vala:199 +#: src/Gtk/SettingsDialog.vala:205 #, fuzzy msgid "Skip internet connection check" msgstr "Internetuppkopplingen är inte aktiv" @@ -533,11 +535,11 @@ msgstr "Status" msgid "Stopped" msgstr "Stoppad" -#: src/Console/AppConsole.vala:81 src/Gtk/AppGtk.vala:179 +#: src/Console/AppConsole.vala:82 src/Gtk/AppGtk.vala:181 msgid "Syntax" msgstr "Syntax" -#: src/Console/AppConsole.vala:205 src/Gtk/AppGtk.vala:111 +#: src/Console/AppConsole.vala:206 src/Gtk/AppGtk.vala:113 msgid "Temp" msgstr "" @@ -576,7 +578,7 @@ msgstr "Avinstallation slutförd" msgid "Un-install completed with errors" msgstr "Avinstallation slutförd med fel" -#: src/Console/AppConsole.vala:197 src/Gtk/AppGtk.vala:166 +#: src/Console/AppConsole.vala:198 src/Gtk/AppGtk.vala:168 msgid "Unknown option" msgstr "Okänt alternativ" @@ -588,7 +590,7 @@ msgstr "Version" msgid "W" msgstr "V" -#: src/Gtk/SettingsDialog.vala:156 +#: src/Gtk/SettingsDialog.vala:155 msgid "Week(s)" msgstr "Veckor" @@ -600,7 +602,7 @@ msgstr "Ja" msgid "[Warning] Deleted invalid lock" msgstr "[Varning] Tog bort ogiltigt lås" -#: src/Gtk/SettingsDialog.vala:226 +#: src/Gtk/SettingsDialog.vala:232 msgid "seconds" msgstr "" diff --git a/po/tr.po b/po/tr.po index 2a0d0ae9..1da48387 100644 --- a/po/tr.po +++ b/po/tr.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: ukuu\n" -"Report-Msgid-Bugs-To: bw.aljex@gmail.com\n" -"POT-Creation-Date: 2019-09-11 18:04-0400\n" +"Report-Msgid-Bugs-To: b.kenyon.w@gmail.com\n" +"POT-Creation-Date: 2020-01-03 18:52-0500\n" "PO-Revision-Date: 2019-08-31 18:33+0300\n" "Last-Translator: Gökhan GÖKKAYA \n" "Language-Team: Turkish\n" @@ -22,7 +22,7 @@ msgstr "" msgid "About" msgstr "Hakkında" -#: src/Console/AppConsole.vala:114 +#: src/Console/AppConsole.vala:115 msgid "Admin access is required for running this application." msgstr "Bu uygulamayı çalıştırmak için yönetici izni gerekiyor." @@ -39,7 +39,7 @@ msgstr "Sistem mimarisi" msgid "Artists" msgstr "Sanatçılar" -#: src/Console/AppConsole.vala:101 +#: src/Console/AppConsole.vala:102 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "Tüm istemler için Evet'i kabul edin (etkileşimsiz kip)" @@ -56,12 +56,13 @@ msgstr "Mevcut Çekirdekler" msgid "Back" msgstr "Geri" -#: src/Console/AppConsole.vala:204 src/Gtk/AppGtk.vala:110 +#: src/Console/AppConsole.vala:205 src/Gtk/AppGtk.vala:112 msgid "Cache" msgstr "Önbellek" -#: src/Gtk/ProgressWindow.vala:145 src/Gtk/UpdateNotificationWindow.vala:167 -#: src/Gtk/TerminalWindow.vala:148 src/Utility/Gtk/CustomMessageDialog.vala:155 +#: src/Gtk/ProgressWindow.vala:145 src/Gtk/TerminalWindow.vala:148 +#: src/Gtk/UpdateNotificationWindow.vala:167 +#: src/Utility/Gtk/CustomMessageDialog.vala:155 msgid "Cancel" msgstr "İptal" @@ -69,15 +70,15 @@ msgstr "İptal" msgid "Changes" msgstr "Değişiklikler" -#: src/Gtk/SettingsDialog.vala:121 +#: src/Gtk/SettingsDialog.vala:120 msgid "Check every" msgstr "Kontrol aralığı" -#: src/Console/AppConsole.vala:85 +#: src/Console/AppConsole.vala:86 msgid "Check for kernel updates" msgstr "Çekirdek güncellemelerini kontrol et" -#: src/Console/AppConsole.vala:86 +#: src/Console/AppConsole.vala:87 msgid "Check for kernel updates and notify current user" msgstr "Çekirdek güncellemelerini kontrol et ve mevcut kullanıcıyı uyar" @@ -85,11 +86,11 @@ msgstr "Çekirdek güncellemelerini kontrol et ve mevcut kullanıcıyı uyar" msgid "Close" msgstr "Kapat" -#: src/Console/AppConsole.vala:341 +#: src/Console/AppConsole.vala:342 msgid "Command not specified" msgstr "Komut belirtilmedi" -#: src/Console/AppConsole.vala:83 +#: src/Console/AppConsole.vala:84 msgid "Commands" msgstr "Komutlar" @@ -111,7 +112,7 @@ msgstr "Destek verenler" msgid "Could not find any kernels to remove" msgstr "Kaldırılacak çekirdek bulunamadı" -#: src/Console/AppConsole.vala:309 src/Gtk/MainWindow.vala:100 +#: src/Console/AppConsole.vala:310 src/Gtk/MainWindow.vala:100 msgid "Could not find requested version" msgstr "İstenen sürüm bulunamadı" @@ -129,7 +130,7 @@ msgstr "Dizin oluşturuldu" msgid "Credits" msgstr "Katkı sağlayanlar" -#: src/Gtk/SettingsDialog.vala:154 +#: src/Gtk/SettingsDialog.vala:153 msgid "Day(s)" msgstr "Gün" @@ -141,7 +142,7 @@ msgstr "Silinen dizin" msgid "Dir not found" msgstr "Dizin bulunamadı" -#: src/Gtk/SettingsDialog.vala:161 +#: src/Gtk/SettingsDialog.vala:160 msgid "Display" msgstr "Gösterim" @@ -154,7 +155,7 @@ msgstr "Dağıtım" msgid "Documenters" msgstr "Belgelendirenler" -#: src/Console/AppConsole.vala:94 +#: src/Console/AppConsole.vala:95 msgid "Download packages for specified kernel" msgstr "Belirtilen çekirdek için paketleri indir" @@ -242,15 +243,16 @@ msgstr "Şu dosya bulunamadı: %s" msgid "File saved" msgstr "Dosya kaydedildi" -#: src/Gtk/SettingsDialog.vala:180 -msgid "Hide kernels older than 4.0" +#: src/Gtk/SettingsDialog.vala:182 +#, fuzzy +msgid "Hide kernels older than " msgstr "4.0 sürümden düşük çekirdekleri gizle" -#: src/Gtk/SettingsDialog.vala:169 +#: src/Gtk/SettingsDialog.vala:168 msgid "Hide unstable and RC releases" msgstr "Kararsız ve RC sürümleri gizle" -#: src/Gtk/SettingsDialog.vala:152 +#: src/Gtk/SettingsDialog.vala:151 msgid "Hour(s)" msgstr "Saat" @@ -266,7 +268,7 @@ msgstr "İçerik listesi güncel" msgid "Index is stale" msgstr "İçerik listesi eski" -#: src/Gtk/UpdateNotificationWindow.vala:147 src/Gtk/MainWindow.vala:359 +#: src/Gtk/MainWindow.vala:359 src/Gtk/UpdateNotificationWindow.vala:147 msgid "Install" msgstr "Kur" @@ -275,15 +277,15 @@ msgstr "Kur" msgid "Install Linux v%s ? (y/n): " msgstr "Linux v%s Kur ? (e/h): " -#: src/Console/AppConsole.vala:89 +#: src/Console/AppConsole.vala:90 msgid "Install latest mainline kernel" msgstr "En son mainline çekirdeğini kur" -#: src/Console/AppConsole.vala:90 +#: src/Console/AppConsole.vala:91 msgid "Install latest point update for current series" msgstr "Mevcut çekirdek serisi için en güncelleme noktasını kur" -#: src/Console/AppConsole.vala:91 +#: src/Console/AppConsole.vala:92 msgid "Install specified mainline kernel" msgstr "Belirtilen mainline çekirdeğini kur" @@ -309,7 +311,7 @@ msgstr "Kurulu" msgid "Internet connection is not active" msgstr "İnternet bağlantısı aktif değil" -#: src/Gtk/SettingsDialog.vala:212 +#: src/Gtk/SettingsDialog.vala:218 msgid "Internet connection timeout in " msgstr "İnternet bağlantısı zaman aşımı " @@ -321,17 +323,17 @@ msgstr "Çekirdek" msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Ubuntu tabanlı dağıtımlar için çekirdek güncelleme aracı" -#: src/Common/LinuxKernel.vala:776 src/Console/AppConsole.vala:367 +#: src/Common/LinuxKernel.vala:776 src/Console/AppConsole.vala:368 #, c-format msgid "Latest point update" msgstr "Son güncelleme noktası" -#: src/Common/LinuxKernel.vala:765 src/Console/AppConsole.vala:360 +#: src/Common/LinuxKernel.vala:765 src/Console/AppConsole.vala:361 #, c-format msgid "Latest update" msgstr "Son güncelleme" -#: src/Console/AppConsole.vala:87 +#: src/Console/AppConsole.vala:88 msgid "List all available mainline kernels" msgstr "Tüm mainline çekirdeklerini listele" @@ -339,7 +341,7 @@ msgstr "Tüm mainline çekirdeklerini listele" msgid "List available kernels" msgstr "Tüm çekirdekleri listele" -#: src/Console/AppConsole.vala:88 +#: src/Console/AppConsole.vala:89 msgid "List installed kernels" msgstr "Kurulu çekirdekleri listele" @@ -351,7 +353,7 @@ msgstr "Eksik Simge" msgid "Multiple Kernels Selected" msgstr "Çoklu Çekirdek Seçildi" -#: src/Console/AppConsole.vala:291 +#: src/Console/AppConsole.vala:292 msgid "Multiple kernels selected for installation. Select only one." msgstr "Kurulum için çoklu çekirdek seçildi. Sadece bir tane seçiniz." @@ -364,12 +366,12 @@ msgstr "Hayır" msgid "No Internet" msgstr "İnternet Yok" -#: src/Console/AppConsole.vala:285 src/Console/AppConsole.vala:322 +#: src/Console/AppConsole.vala:286 src/Console/AppConsole.vala:323 msgid "No kernels specified" msgstr "Belirtilen çekirdek yok" -#: src/Common/LinuxKernel.vala:784 src/Console/AppConsole.vala:372 -#: src/Console/AppConsole.vala:430 src/Gtk/MainWindow.vala:796 +#: src/Common/LinuxKernel.vala:784 src/Console/AppConsole.vala:373 +#: src/Console/AppConsole.vala:431 src/Gtk/MainWindow.vala:796 msgid "No updates found" msgstr "Güncelleme bulunamadı" @@ -377,15 +379,15 @@ msgstr "Güncelleme bulunamadı" msgid "Not Selected" msgstr "Seçilen Yok" -#: src/Gtk/SettingsDialog.vala:66 +#: src/Gtk/SettingsDialog.vala:65 msgid "Notification" msgstr "Bildirim" -#: src/Gtk/SettingsDialog.vala:73 +#: src/Gtk/SettingsDialog.vala:72 msgid "Notify if a major release is available" msgstr "Ana sürüm mevcutsa bildir" -#: src/Gtk/SettingsDialog.vala:84 +#: src/Gtk/SettingsDialog.vala:83 msgid "Notify if a point release is available" msgstr "Ara sürüm mevcutsa bildir" @@ -396,11 +398,11 @@ msgstr "Ara sürüm mevcutsa bildir" msgid "OK" msgstr "TAMAM" -#: src/Console/AppConsole.vala:98 src/Gtk/AppGtk.vala:181 +#: src/Console/AppConsole.vala:99 src/Gtk/AppGtk.vala:183 msgid "Options" msgstr "Seçenekler" -#: src/Gtk/SettingsDialog.vala:191 +#: src/Gtk/SettingsDialog.vala:197 msgid "Other" msgstr "Diğer" @@ -422,7 +424,7 @@ msgstr "Lütfen gerekli paketleri yükleyin ve tekrar deneyin" msgid "Preparing to remove selected kernels" msgstr "Seçilen çekirdekleri kaldırmak için hazırlanıyor" -#: src/Gtk/AppGtk.vala:183 +#: src/Gtk/AppGtk.vala:185 msgid "Print debug information" msgstr "Hata ayıklama bilgisini yazdır" @@ -442,24 +444,24 @@ msgstr "Yenileniyor..." msgid "Remove" msgstr "Sil" -#: src/Console/AppConsole.vala:95 src/Console/AppConsole.vala:100 +#: src/Console/AppConsole.vala:96 src/Console/AppConsole.vala:101 msgid "Remove files from application cache" msgstr "Dosyaları uygulama önbelleğinden sil" -#: src/Console/AppConsole.vala:93 src/Gtk/MainWindow.vala:426 +#: src/Console/AppConsole.vala:94 src/Gtk/MainWindow.vala:426 msgid "Remove installed kernels older than running kernel" msgstr "Çalışan çekirdekten eski olan kurulu çekirdekleri kaldır" -#: src/Console/AppConsole.vala:92 +#: src/Console/AppConsole.vala:93 msgid "Remove specified kernel" msgstr "Belirtilen çekirdeği kaldır" -#: src/Console/AppConsole.vala:199 src/Console/AppConsole.vala:313 -#: src/Console/AppConsole.vala:342 +#: src/Console/AppConsole.vala:200 src/Console/AppConsole.vala:314 +#: src/Console/AppConsole.vala:343 msgid "Run '" msgstr "Çalıştır '" -#: src/Console/AppConsole.vala:117 +#: src/Console/AppConsole.vala:118 msgid "Run the application as admin with pkexec or sudo." msgstr "Bu uygulamayı pkexec yada sudo ile yönetici haklarıyla çalıştırın." @@ -487,7 +489,7 @@ msgstr "" "Seçilen çekirdek şu anda çalışıyor ve kaldırılamıyor.\n" " Bunu kaldırmadan önce başka bir çekirdek yükleyin." -#: src/Gtk/SettingsDialog.vala:56 src/Gtk/MainWindow.vala:475 +#: src/Gtk/MainWindow.vala:475 src/Gtk/SettingsDialog.vala:55 msgid "Settings" msgstr "Ayarlar" @@ -495,23 +497,23 @@ msgstr "Ayarlar" msgid "Show" msgstr "Göster" -#: src/Gtk/AppGtk.vala:184 +#: src/Gtk/AppGtk.vala:186 msgid "Show all options" msgstr "Tüm seçenekleri göster" -#: src/Gtk/SettingsDialog.vala:95 +#: src/Gtk/SettingsDialog.vala:94 msgid "Show notification bubble on desktop" msgstr "Masaüstünde bildirim baloncuğu göster" -#: src/Gtk/SettingsDialog.vala:106 +#: src/Gtk/SettingsDialog.vala:105 msgid "Show notification dialog" msgstr "Bildirim iletişimini göster" -#: src/Console/AppConsole.vala:96 +#: src/Console/AppConsole.vala:97 msgid "Show unstable and RC releases" msgstr "Kararsız ve RC sürümleri göster" -#: src/Gtk/SettingsDialog.vala:199 +#: src/Gtk/SettingsDialog.vala:205 msgid "Skip internet connection check" msgstr "İnternet bağlantı kontrolünü atla" @@ -523,11 +525,11 @@ msgstr "Durum" msgid "Stopped" msgstr "Durduruldu" -#: src/Console/AppConsole.vala:81 src/Gtk/AppGtk.vala:179 +#: src/Console/AppConsole.vala:82 src/Gtk/AppGtk.vala:181 msgid "Syntax" msgstr "Sözdizimi" -#: src/Console/AppConsole.vala:205 src/Gtk/AppGtk.vala:111 +#: src/Console/AppConsole.vala:206 src/Gtk/AppGtk.vala:113 msgid "Temp" msgstr "Geçici" @@ -566,7 +568,7 @@ msgstr "Kaldırma tamamlandı" msgid "Un-install completed with errors" msgstr "Kaldırma hatalarla tamamlandı" -#: src/Console/AppConsole.vala:197 src/Gtk/AppGtk.vala:166 +#: src/Console/AppConsole.vala:198 src/Gtk/AppGtk.vala:168 msgid "Unknown option" msgstr "Bilinmeyen seçenek" @@ -578,7 +580,7 @@ msgstr "Sürüm" msgid "W" msgstr "U" -#: src/Gtk/SettingsDialog.vala:156 +#: src/Gtk/SettingsDialog.vala:155 msgid "Week(s)" msgstr "Hafta" @@ -590,6 +592,6 @@ msgstr "Evet" msgid "[Warning] Deleted invalid lock" msgstr "[Uyarı] Geçersiz kilit silindi" -#: src/Gtk/SettingsDialog.vala:226 +#: src/Gtk/SettingsDialog.vala:232 msgid "seconds" msgstr "saniye" diff --git a/po/uk.po b/po/uk.po index b658db3b..a0397d77 100644 --- a/po/uk.po +++ b/po/uk.po @@ -1,8 +1,8 @@ msgid "" msgstr "" "Project-Id-Version: ukuu\n" -"Report-Msgid-Bugs-To: bw.aljex@gmail.com\n" -"POT-Creation-Date: 2019-09-11 18:04-0400\n" +"Report-Msgid-Bugs-To: b.kenyon.w@gmail.com\n" +"POT-Creation-Date: 2020-01-03 18:52-0500\n" "PO-Revision-Date: 2019-07-25 11:00+0300\n" "Last-Translator: Serhii Golovko \n" "Language-Team: Ukranian \n" @@ -17,7 +17,7 @@ msgstr "" msgid "About" msgstr "Про программу" -#: src/Console/AppConsole.vala:114 +#: src/Console/AppConsole.vala:115 msgid "Admin access is required for running this application." msgstr "Для запуску програми потрібно мати права адміністратора." @@ -34,7 +34,7 @@ msgstr "Системна архитектура" msgid "Artists" msgstr "Художники" -#: src/Console/AppConsole.vala:101 +#: src/Console/AppConsole.vala:102 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "Припустимо, так для всіх підказок (неінтерактивний режим)" @@ -51,12 +51,13 @@ msgstr "Доступні ядра" msgid "Back" msgstr "Назад" -#: src/Console/AppConsole.vala:204 src/Gtk/AppGtk.vala:110 +#: src/Console/AppConsole.vala:205 src/Gtk/AppGtk.vala:112 msgid "Cache" msgstr "Кеш" -#: src/Gtk/ProgressWindow.vala:145 src/Gtk/UpdateNotificationWindow.vala:167 -#: src/Gtk/TerminalWindow.vala:148 src/Utility/Gtk/CustomMessageDialog.vala:155 +#: src/Gtk/ProgressWindow.vala:145 src/Gtk/TerminalWindow.vala:148 +#: src/Gtk/UpdateNotificationWindow.vala:167 +#: src/Utility/Gtk/CustomMessageDialog.vala:155 msgid "Cancel" msgstr "Відміна" @@ -64,15 +65,15 @@ msgstr "Відміна" msgid "Changes" msgstr "Зміни" -#: src/Gtk/SettingsDialog.vala:121 +#: src/Gtk/SettingsDialog.vala:120 msgid "Check every" msgstr "Перевіряти кожні" -#: src/Console/AppConsole.vala:85 +#: src/Console/AppConsole.vala:86 msgid "Check for kernel updates" msgstr "Перевірити оновлення ядра" -#: src/Console/AppConsole.vala:86 +#: src/Console/AppConsole.vala:87 msgid "Check for kernel updates and notify current user" msgstr "Перевірте наявність оновлень ядра та повідомте поточного користувача" @@ -80,11 +81,11 @@ msgstr "Перевірте наявність оновлень ядра та п msgid "Close" msgstr "Закрити" -#: src/Console/AppConsole.vala:341 +#: src/Console/AppConsole.vala:342 msgid "Command not specified" msgstr "Команда не вказана" -#: src/Console/AppConsole.vala:83 +#: src/Console/AppConsole.vala:84 msgid "Commands" msgstr "Команди" @@ -106,7 +107,7 @@ msgstr "Внески" msgid "Could not find any kernels to remove" msgstr "Не вдалося знайти жодне ядро ​​для видалення" -#: src/Console/AppConsole.vala:309 src/Gtk/MainWindow.vala:100 +#: src/Console/AppConsole.vala:310 src/Gtk/MainWindow.vala:100 msgid "Could not find requested version" msgstr "Не вдалося знайти запитувану версію" @@ -124,7 +125,7 @@ msgstr "Використовувана кеш-папка" msgid "Credits" msgstr "Творці" -#: src/Gtk/SettingsDialog.vala:154 +#: src/Gtk/SettingsDialog.vala:153 msgid "Day(s)" msgstr "День(днів)" @@ -136,7 +137,7 @@ msgstr "Видалений каталог" msgid "Dir not found" msgstr "Тека не знайдена" -#: src/Gtk/SettingsDialog.vala:161 +#: src/Gtk/SettingsDialog.vala:160 msgid "Display" msgstr "Вид" @@ -149,7 +150,7 @@ msgstr "Дистрибутив" msgid "Documenters" msgstr "Укладачі документації" -#: src/Console/AppConsole.vala:94 +#: src/Console/AppConsole.vala:95 msgid "Download packages for specified kernel" msgstr "Завантажити пакети для зазначеного ядра" @@ -237,15 +238,16 @@ msgstr "Файл не знайдено: %s" msgid "File saved" msgstr "Файл збережено" -#: src/Gtk/SettingsDialog.vala:180 -msgid "Hide kernels older than 4.0" +#: src/Gtk/SettingsDialog.vala:182 +#, fuzzy +msgid "Hide kernels older than " msgstr "Приховати ядра старіши версії 4.0" -#: src/Gtk/SettingsDialog.vala:169 +#: src/Gtk/SettingsDialog.vala:168 msgid "Hide unstable and RC releases" msgstr "Приховати нестабільні і реліз-кандидат версії" -#: src/Gtk/SettingsDialog.vala:152 +#: src/Gtk/SettingsDialog.vala:151 msgid "Hour(s)" msgstr "Година(дин)" @@ -261,7 +263,7 @@ msgstr "Відомості актуальні" msgid "Index is stale" msgstr "Відомості застаріли" -#: src/Gtk/UpdateNotificationWindow.vala:147 src/Gtk/MainWindow.vala:359 +#: src/Gtk/MainWindow.vala:359 src/Gtk/UpdateNotificationWindow.vala:147 msgid "Install" msgstr "Встановити" @@ -270,15 +272,15 @@ msgstr "Встановити" msgid "Install Linux v%s ? (y/n): " msgstr "Встановити Linux v% s? (так/ні): " -#: src/Console/AppConsole.vala:89 +#: src/Console/AppConsole.vala:90 msgid "Install latest mainline kernel" msgstr "Встановити зазначену гілку ядра" -#: src/Console/AppConsole.vala:90 +#: src/Console/AppConsole.vala:91 msgid "Install latest point update for current series" msgstr "Встановіть останню точку оновлення для поточної серії" -#: src/Console/AppConsole.vala:91 +#: src/Console/AppConsole.vala:92 msgid "Install specified mainline kernel" msgstr "Встановити зазначену гілку ядра" @@ -305,7 +307,7 @@ msgstr "Встановлено" msgid "Internet connection is not active" msgstr "Інтернет з'єднання не активно" -#: src/Gtk/SettingsDialog.vala:212 +#: src/Gtk/SettingsDialog.vala:218 msgid "Internet connection timeout in " msgstr "Час очікування підключення до Інтернету в " @@ -317,17 +319,17 @@ msgstr "Ядро" msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Програма оновлення ядра для дистрибутивів на базі Ubuntu" -#: src/Common/LinuxKernel.vala:776 src/Console/AppConsole.vala:367 +#: src/Common/LinuxKernel.vala:776 src/Console/AppConsole.vala:368 #, c-format msgid "Latest point update" msgstr "Остання точка оновлення" -#: src/Common/LinuxKernel.vala:765 src/Console/AppConsole.vala:360 +#: src/Common/LinuxKernel.vala:765 src/Console/AppConsole.vala:361 #, c-format msgid "Latest update" msgstr "Останнє оновлення" -#: src/Console/AppConsole.vala:87 +#: src/Console/AppConsole.vala:88 msgid "List all available mainline kernels" msgstr "Список всіх доступних основних ядер" @@ -335,7 +337,7 @@ msgstr "Список всіх доступних основних ядер" msgid "List available kernels" msgstr "Список всіх доступних основних ядер" -#: src/Console/AppConsole.vala:88 +#: src/Console/AppConsole.vala:89 msgid "List installed kernels" msgstr "Список всіх доступних основних ядер" @@ -347,7 +349,7 @@ msgstr "Нема значка" msgid "Multiple Kernels Selected" msgstr "Вибрано кілька ядер" -#: src/Console/AppConsole.vala:291 +#: src/Console/AppConsole.vala:292 msgid "Multiple kernels selected for installation. Select only one." msgstr "Для встановлення вибрано кілька ядер. Виберіть лише одну." @@ -360,12 +362,12 @@ msgstr "Ні" msgid "No Internet" msgstr "Інтернету немає" -#: src/Console/AppConsole.vala:285 src/Console/AppConsole.vala:322 +#: src/Console/AppConsole.vala:286 src/Console/AppConsole.vala:323 msgid "No kernels specified" msgstr "Ядра не вказані" -#: src/Common/LinuxKernel.vala:784 src/Console/AppConsole.vala:372 -#: src/Console/AppConsole.vala:430 src/Gtk/MainWindow.vala:796 +#: src/Common/LinuxKernel.vala:784 src/Console/AppConsole.vala:373 +#: src/Console/AppConsole.vala:431 src/Gtk/MainWindow.vala:796 msgid "No updates found" msgstr "Оновлень не знайдено" @@ -373,15 +375,15 @@ msgstr "Оновлень не знайдено" msgid "Not Selected" msgstr "Не вибрано" -#: src/Gtk/SettingsDialog.vala:66 +#: src/Gtk/SettingsDialog.vala:65 msgid "Notification" msgstr "Повідомлення" -#: src/Gtk/SettingsDialog.vala:73 +#: src/Gtk/SettingsDialog.vala:72 msgid "Notify if a major release is available" msgstr "Повідомити, чи доступний великий випуск" -#: src/Gtk/SettingsDialog.vala:84 +#: src/Gtk/SettingsDialog.vala:83 msgid "Notify if a point release is available" msgstr "Повідомити, чи доступний невеликий випуск" @@ -392,11 +394,11 @@ msgstr "Повідомити, чи доступний невеликий вип msgid "OK" msgstr "OK" -#: src/Console/AppConsole.vala:98 src/Gtk/AppGtk.vala:181 +#: src/Console/AppConsole.vala:99 src/Gtk/AppGtk.vala:183 msgid "Options" msgstr "Параметри" -#: src/Gtk/SettingsDialog.vala:191 +#: src/Gtk/SettingsDialog.vala:197 msgid "Other" msgstr "Інший" @@ -418,7 +420,7 @@ msgstr "Встановити необхідні пакети і спробуйт msgid "Preparing to remove selected kernels" msgstr "Підготовка до видалення вибраних ядер" -#: src/Gtk/AppGtk.vala:183 +#: src/Gtk/AppGtk.vala:185 msgid "Print debug information" msgstr "Роздрукувати зневадження" @@ -438,24 +440,24 @@ msgstr "Оновлення..." msgid "Remove" msgstr "Видалити" -#: src/Console/AppConsole.vala:95 src/Console/AppConsole.vala:100 +#: src/Console/AppConsole.vala:96 src/Console/AppConsole.vala:101 msgid "Remove files from application cache" msgstr "Видалити файли з кешу програми" -#: src/Console/AppConsole.vala:93 src/Gtk/MainWindow.vala:426 +#: src/Console/AppConsole.vala:94 src/Gtk/MainWindow.vala:426 msgid "Remove installed kernels older than running kernel" msgstr "Видаліть встановлені ядра, старші за запущене" -#: src/Console/AppConsole.vala:92 +#: src/Console/AppConsole.vala:93 msgid "Remove specified kernel" msgstr "Видаліть вказане ядро" -#: src/Console/AppConsole.vala:199 src/Console/AppConsole.vala:313 -#: src/Console/AppConsole.vala:342 +#: src/Console/AppConsole.vala:200 src/Console/AppConsole.vala:314 +#: src/Console/AppConsole.vala:343 msgid "Run '" msgstr "Запуск" -#: src/Console/AppConsole.vala:117 +#: src/Console/AppConsole.vala:118 msgid "Run the application as admin with pkexec or sudo." msgstr "Запустіть додаток як адміністратор за допомогою pkexec або sudo." @@ -483,7 +485,7 @@ msgstr "" "Це ядро ​​зараз працює і не може бути видалено. \n" "Встановіть інше ядро, перш ніж видаляти його." -#: src/Gtk/SettingsDialog.vala:56 src/Gtk/MainWindow.vala:475 +#: src/Gtk/MainWindow.vala:475 src/Gtk/SettingsDialog.vala:55 msgid "Settings" msgstr "Налаштування" @@ -491,23 +493,23 @@ msgstr "Налаштування" msgid "Show" msgstr "Показати" -#: src/Gtk/AppGtk.vala:184 +#: src/Gtk/AppGtk.vala:186 msgid "Show all options" msgstr "Показати усі параметри" -#: src/Gtk/SettingsDialog.vala:95 +#: src/Gtk/SettingsDialog.vala:94 msgid "Show notification bubble on desktop" msgstr "Показувати вікно сповіщень на робочому столі" -#: src/Gtk/SettingsDialog.vala:106 +#: src/Gtk/SettingsDialog.vala:105 msgid "Show notification dialog" msgstr "Показувати вікно сповіщень" -#: src/Console/AppConsole.vala:96 +#: src/Console/AppConsole.vala:97 msgid "Show unstable and RC releases" msgstr "Приховати нестабільні і реліз-кандидат версії" -#: src/Gtk/SettingsDialog.vala:199 +#: src/Gtk/SettingsDialog.vala:205 msgid "Skip internet connection check" msgstr "Пропустити перевірку підключення до Інтернету" @@ -519,11 +521,11 @@ msgstr "Стан" msgid "Stopped" msgstr "Зупинено" -#: src/Console/AppConsole.vala:81 src/Gtk/AppGtk.vala:179 +#: src/Console/AppConsole.vala:82 src/Gtk/AppGtk.vala:181 msgid "Syntax" msgstr "Синтаксис" -#: src/Console/AppConsole.vala:205 src/Gtk/AppGtk.vala:111 +#: src/Console/AppConsole.vala:206 src/Gtk/AppGtk.vala:113 msgid "Temp" msgstr "Темп" @@ -562,7 +564,7 @@ msgstr "Удаление завершено" msgid "Un-install completed with errors" msgstr "Удаление завершено с ошибками" -#: src/Console/AppConsole.vala:197 src/Gtk/AppGtk.vala:166 +#: src/Console/AppConsole.vala:198 src/Gtk/AppGtk.vala:168 msgid "Unknown option" msgstr "Невідомий параметр" @@ -574,7 +576,7 @@ msgstr "Версія" msgid "W" msgstr "W" -#: src/Gtk/SettingsDialog.vala:156 +#: src/Gtk/SettingsDialog.vala:155 msgid "Week(s)" msgstr "Тиждень (ні)" @@ -586,6 +588,6 @@ msgstr "Так" msgid "[Warning] Deleted invalid lock" msgstr "[Увага] Вилучено неправильне блокування" -#: src/Gtk/SettingsDialog.vala:226 +#: src/Gtk/SettingsDialog.vala:232 msgid "seconds" msgstr "секунди" diff --git a/src/Common/LinuxKernel.vala b/src/Common/LinuxKernel.vala index 7aca3567..aec09574 100644 --- a/src/Common/LinuxKernel.vala +++ b/src/Common/LinuxKernel.vala @@ -45,7 +45,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { public static string CURRENT_USER; public static string CURRENT_USER_HOME; - public static bool hide_older; + public static int kernel_version_threshold; public static bool hide_unstable; public static LinuxKernel kernel_active; @@ -244,7 +244,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { private static void query_thread() { - log_debug("query: hide_older: %s".printf(hide_older.to_string())); + log_debug("query: kernel_version_threshold: %s".printf(kernel_version_threshold.to_string())); log_debug("query: hide_unstable: %s".printf(hide_unstable.to_string())); //DownloadManager.reset_counter(); @@ -269,13 +269,13 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { // TODO: Implement locking for multiple download threads - var kern_4 = new LinuxKernel.from_version("4.0"); + var kvt = new LinuxKernel.from_version(kernel_version_threshold.to_string()); status_line = ""; progress_total = 0; progress_count = 0; foreach(var kern in kernel_list){ - if (hide_older && (kern.compare_to(kern_4) < 0)){ + if (kern.compare_to(kvt) < 0){ continue; } @@ -308,8 +308,8 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { continue; } - if (hide_older && (kern.compare_to(kern_4) < 0)){ - //log_debug("older than 4.0: %s".printf(kern.version_main)); + if (kern.compare_to(kvt) < 0){ + //log_debug("older than %s: %s".printf(kvt).printf(kern.version_main)); continue; } @@ -1152,7 +1152,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { log_msg(_("Available Kernels")); log_draw_line(); - var kern_4 = new LinuxKernel.from_version("4.0"); + var kvt = new LinuxKernel.from_version(kernel_version_threshold.to_string()); foreach(var kern in kernel_list){ if (!kern.is_valid){ continue; @@ -1160,7 +1160,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { if (hide_unstable && kern.is_unstable){ continue; } - if (hide_older && (kern.compare_to(kern_4) < 0)){ + if (kern.compare_to(kvt) < 0){ continue; } diff --git a/src/Common/Main.vala b/src/Common/Main.vala index a9197bf7..5fda0747 100644 --- a/src/Common/Main.vala +++ b/src/Common/Main.vala @@ -141,7 +141,7 @@ public class Main : GLib.Object{ config.set_string_member("notify_bubble", notify_bubble.to_string()); config.set_string_member("notify_dialog", notify_dialog.to_string()); config.set_string_member("hide_unstable", LinuxKernel.hide_unstable.to_string()); - config.set_string_member("hide_older", LinuxKernel.hide_older.to_string()); + config.set_string_member("kernel_version_threshold", LinuxKernel.kernel_version_threshold.to_string()); config.set_string_member("notify_interval_unit", notify_interval_unit.to_string()); config.set_string_member("notify_interval_value", notify_interval_value.to_string()); config.set_string_member("connection_timeout_seconds", connection_timeout_seconds.to_string()); @@ -180,7 +180,7 @@ public class Main : GLib.Object{ if (!f.query_exists()) { // initialize static LinuxKernel.hide_unstable = true; - LinuxKernel.hide_older = true; + LinuxKernel.kernel_version_threshold = int.parse(DEFAULT_KERNEL_VERSION_THRESHOLD); return; } @@ -205,7 +205,7 @@ public class Main : GLib.Object{ skip_connection_check = json_get_bool(config, "skip_connection_check", false); LinuxKernel.hide_unstable = json_get_bool(config, "hide_unstable", true); - LinuxKernel.hide_older = json_get_bool(config, "hide_older", true); + LinuxKernel.kernel_version_threshold = json_get_int(config, "kernel_version_threshold", int.parse(DEFAULT_KERNEL_VERSION_THRESHOLD)); log_debug("Load config file: %s".printf(APP_CONFIG_FILE)); } diff --git a/src/Console/AppConsole.vala b/src/Console/AppConsole.vala index bb0cd9a1..82fab113 100644 --- a/src/Console/AppConsole.vala +++ b/src/Console/AppConsole.vala @@ -36,6 +36,7 @@ public Main App; [CCode(cname="BRANDING_VERSION")] extern const string BRANDING_VERSION; [CCode(cname="BRANDING_AUTHORNAME")] extern const string BRANDING_AUTHORNAME; [CCode(cname="BRANDING_AUTHOREMAIL")] extern const string BRANDING_AUTHOREMAIL; +[CCode(cname="DEFAULT_KERNEL_VERSION_THRESHOLD")] extern const string DEFAULT_KERNEL_VERSION_THRESHOLD; const string LOCALE_DIR = "/usr/share/locale"; diff --git a/src/Gtk/AppGtk.vala b/src/Gtk/AppGtk.vala index 4ba58ffd..aec8025d 100644 --- a/src/Gtk/AppGtk.vala +++ b/src/Gtk/AppGtk.vala @@ -40,6 +40,8 @@ public Main App; [CCode(cname="BRANDING_AUTHORNAME")] extern const string BRANDING_AUTHORNAME; [CCode(cname="BRANDING_AUTHOREMAIL")] extern const string BRANDING_AUTHOREMAIL; [CCode(cname="BRANDING_WEBSITE")] extern const string BRANDING_WEBSITE; +[CCode(cname="DEFAULT_KERNEL_VERSION_THRESHOLD")] extern const string DEFAULT_KERNEL_VERSION_THRESHOLD; + public const string ICON_DIR = BRANDING_SHORTNAME; const string LOCALE_DIR = "/usr/share/locale"; diff --git a/src/Gtk/MainWindow.vala b/src/Gtk/MainWindow.vala index 9d5f8290..9b1f9049 100644 --- a/src/Gtk/MainWindow.vala +++ b/src/Gtk/MainWindow.vala @@ -273,7 +273,7 @@ public class MainWindow : Gtk.Window{ log_error (e.message); } - var kern_4 = new LinuxKernel.from_version("4.0"); + var kvt = new LinuxKernel.from_version(LinuxKernel.kernel_version_threshold.to_string()); TreeIter iter; bool odd_row = false; @@ -284,7 +284,7 @@ public class MainWindow : Gtk.Window{ if (LinuxKernel.hide_unstable && kern.is_unstable){ continue; } - if (LinuxKernel.hide_older && (kern.compare_to(kern_4) < 0)){ + if (kern.compare_to(kvt) < 0){ continue; } @@ -477,15 +477,15 @@ public class MainWindow : Gtk.Window{ button.clicked.connect(() => { - bool prev_hide_older = LinuxKernel.hide_older; + int prev_kvt = LinuxKernel.kernel_version_threshold; bool prev_hide_unstable = LinuxKernel.hide_unstable; var dlg = new SettingsDialog.with_parent(this); dlg.run(); dlg.destroy(); - if (((prev_hide_older == true) && (LinuxKernel.hide_older == false)) - || ((prev_hide_unstable == true) && (LinuxKernel.hide_unstable == false))){ + if ((prev_kvt != LinuxKernel.kernel_version_threshold) + || (prev_hide_unstable != LinuxKernel.hide_unstable)){ refresh_cache(); } diff --git a/src/Gtk/SettingsDialog.vala b/src/Gtk/SettingsDialog.vala index 4d4f99c7..bf1b7ff2 100644 --- a/src/Gtk/SettingsDialog.vala +++ b/src/Gtk/SettingsDialog.vala @@ -40,8 +40,7 @@ public class SettingsDialog : Gtk.Dialog { private Gtk.CheckButton chk_notify_bubble; private Gtk.CheckButton chk_notify_dialog; private Gtk.CheckButton chk_hide_unstable; - private Gtk.CheckButton chk_hide_older; - + public SettingsDialog.with_parent(Window parent) { set_transient_for(parent); set_modal(true); @@ -176,15 +175,22 @@ public class SettingsDialog : Gtk.Dialog { LinuxKernel.hide_unstable = chk_hide_unstable.active; }); - // chk_hide_older - chk = new CheckButton.with_label(_("Hide kernels older than 4.0")); - chk.active = LinuxKernel.hide_older; - chk.margin_start = 6; - vbox_main.add(chk); - chk_hide_older = chk; - - chk.toggled.connect(()=>{ - LinuxKernel.hide_older = chk_hide_older.active; + // kernel version threshold + hbox = new Gtk.Box(Orientation.HORIZONTAL, 6); + vbox_main.add (hbox); + + label = new Label(_("Hide kernels older than ")); + label.xalign = (float) 0.0; + label.margin_start = 6; + hbox.add (label); + + var kvt_adj = new Gtk.Adjustment(LinuxKernel.kernel_version_threshold, 0, 99, 1, 1, 0); + var kvt_spin = new Gtk.SpinButton (kvt_adj, 1, 0); + kvt_spin.xalign = (float) 0.5; + hbox.add(kvt_spin); + + kvt_spin.changed.connect(()=>{ + LinuxKernel.kernel_version_threshold = (int) kvt_spin.get_value(); }); // other From 65b067ca0bae80958ae30ac393bc87b5637d1d6a Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Fri, 3 Jan 2020 19:34:01 -0500 Subject: [PATCH 059/567] finish merge? --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 090578f6..129f4b7f 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ This is a tool for installing the latest mainline Linux kernel on Ubuntu-based d * For each kernel, the related packages (headers & modules) are installed or removed at the same time ### Downloads & Source Code -mainline is written using Vala and GTK3. Source code and binaries are available from the [GitHub project page](https://github.com/aljex/mainline). +mainline is written using Vala and GTK3. Source code and binaries are available from the [GitHub project page](https://github.com/bkw777/mainline). [cappelikan](https://github.com/cappelikan) maintains a PPA at: @@ -23,8 +23,8 @@ mainline is written using Vala and GTK3. Source code and binaries are available sudo apt install mainline ### Build - sudo apt install libgee-0.8-dev libjson-glib-dev libvte-2.91-dev valac aptitude aria2 - git clone https://github.com/aljex/mainline.git + sudo apt install libgee-0.8-dev libjson-glib-dev libvte-2.91-dev valac + git clone https://github.com/bkw777/mainline.git cd mainline make sudo make install From 326b2c0f0e9bd57aa12712c7d9491ef0db476b4b Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Fri, 3 Jan 2020 20:16:28 -0500 Subject: [PATCH 060/567] readme --- .deb_build_number.mak | 2 +- README.md | 3 ++- README.md.src | 3 ++- debian/changelog | 2 +- po/es.po | 4 ++-- po/fr.po | 4 ++-- po/hr.po | 4 ++-- po/messages.pot | 4 ++-- po/nl.po | 4 ++-- po/pl.po | 4 ++-- po/ru.po | 4 ++-- po/sv.po | 4 ++-- po/tr.po | 4 ++-- po/uk.po | 4 ++-- 14 files changed, 26 insertions(+), 24 deletions(-) diff --git a/.deb_build_number.mak b/.deb_build_number.mak index 4428bfcb..e53c2e2e 100644 --- a/.deb_build_number.mak +++ b/.deb_build_number.mak @@ -1,3 +1,3 @@ # This file is generated by Makefile DEB_PKG_VERSION := 1.0.2 -DEB_BUILD_NUMBER := 0000 +DEB_BUILD_NUMBER := 0002 diff --git a/README.md b/README.md index 129f4b7f..c95c52b3 100644 --- a/README.md +++ b/README.md @@ -60,7 +60,8 @@ libsoup or other library instead of shell commands for downloads? * Customizable appearance, at least colors * Option to specify kernel variant (generic, lowlatency, snapdragon, etc...) * Configurable lowest version threshhold instead of the current hard-coded 4.0 -...or, automatically subtract 1 from whatever the current highest release version is +...or, automatically subtract 1 from whatever the current highest release version is.. +(first part done: as of v1.0.2 setting is a number instead of a true/false) * Improve the annoying pkexec behavior. It would be nicer to run pkexec (or lxqt-sudo, etc) one time for the whole session, and only have to enter a password once, instead of once per action. But currently, if you actually do that, it creates files in the users home directory that are owned by root, so don't do that. diff --git a/README.md.src b/README.md.src index 61f871d5..770f3008 100644 --- a/README.md.src +++ b/README.md.src @@ -60,7 +60,8 @@ libsoup or other library instead of shell commands for downloads? * Customizable appearance, at least colors * Option to specify kernel variant (generic, lowlatency, snapdragon, etc...) * Configurable lowest version threshhold instead of the current hard-coded 4.0 -...or, automatically subtract 1 from whatever the current highest release version is +...or, automatically subtract 1 from whatever the current highest release version is.. +(first part done: as of v1.0.2 setting is a number instead of a true/false) * Improve the annoying pkexec behavior. It would be nicer to run pkexec (or lxqt-sudo, etc) one time for the whole session, and only have to enter a password once, instead of once per action. But currently, if you actually do that, it creates files in the users home directory that are owned by root, so don't do that. diff --git a/debian/changelog b/debian/changelog index 7b65b790..c6870089 100644 --- a/debian/changelog +++ b/debian/changelog @@ -21,7 +21,7 @@ mainline (1.0.2) UNRELEASED; urgency=medium * Ukranian translation - github:cappelikan * Change bool hide_older to int kernel_version_threshold - -- Brian K. White Fri, 03 Jan 2020 18:01:59 -0500 + -- Brian K. White Fri, 03 Jan 2020 20:12:59 -0500 mainline (1.0.0) disco; urgency=medium diff --git a/po/es.po b/po/es.po index 9f7b0251..c0363f6b 100644 --- a/po/es.po +++ b/po/es.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu\n" "Report-Msgid-Bugs-To: b.kenyon.w@gmail.com\n" -"POT-Creation-Date: 2020-01-03 18:52-0500\n" +"POT-Creation-Date: 2020-01-03 19:34-0500\n" "PO-Revision-Date: 2018-01-03 02:03-0600\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish\n" @@ -269,7 +269,7 @@ msgstr "El índice está al día" msgid "Index is stale" msgstr "El índice es obsoleto" -#: src/Gtk/MainWindow.vala:359 src/Gtk/UpdateNotificationWindow.vala:147 +#: src/Gtk/UpdateNotificationWindow.vala:147 src/Gtk/MainWindow.vala:359 msgid "Install" msgstr "Instalar" diff --git a/po/fr.po b/po/fr.po index 83fd3980..eb5de75a 100644 --- a/po/fr.po +++ b/po/fr.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu\n" "Report-Msgid-Bugs-To: b.kenyon.w@gmail.com\n" -"POT-Creation-Date: 2020-01-03 18:52-0500\n" +"POT-Creation-Date: 2020-01-03 19:34-0500\n" "PO-Revision-Date: 2018-08-05 15:50+0200\n" "Last-Translator: Yolateng0 \n" "Language-Team: French\n" @@ -272,7 +272,7 @@ msgstr "L'index est à jour" msgid "Index is stale" msgstr "L'index est obsolète" -#: src/Gtk/MainWindow.vala:359 src/Gtk/UpdateNotificationWindow.vala:147 +#: src/Gtk/UpdateNotificationWindow.vala:147 src/Gtk/MainWindow.vala:359 msgid "Install" msgstr "Installer" diff --git a/po/hr.po b/po/hr.po index da3072bb..b7b2a8eb 100644 --- a/po/hr.po +++ b/po/hr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu\n" "Report-Msgid-Bugs-To: b.kenyon.w@gmail.com\n" -"POT-Creation-Date: 2020-01-03 18:52-0500\n" +"POT-Creation-Date: 2020-01-03 19:34-0500\n" "PO-Revision-Date: 2017-12-24 00:52+0100\n" "Last-Translator: gogo \n" "Language-Team: Croatian \n" @@ -272,7 +272,7 @@ msgstr "Sadržaj je osvježen" msgid "Index is stale" msgstr "Sadržaj je zastario" -#: src/Gtk/MainWindow.vala:359 src/Gtk/UpdateNotificationWindow.vala:147 +#: src/Gtk/UpdateNotificationWindow.vala:147 src/Gtk/MainWindow.vala:359 msgid "Install" msgstr "Instaliraj" diff --git a/po/messages.pot b/po/messages.pot index 563a2956..1bff3a3e 100644 --- a/po/messages.pot +++ b/po/messages.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline 1.0.2\n" "Report-Msgid-Bugs-To: b.kenyon.w@gmail.com\n" -"POT-Creation-Date: 2020-01-03 19:02-0500\n" +"POT-Creation-Date: 2020-01-03 20:13-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -266,7 +266,7 @@ msgstr "" msgid "Index is stale" msgstr "" -#: src/Gtk/MainWindow.vala:359 src/Gtk/UpdateNotificationWindow.vala:147 +#: src/Gtk/UpdateNotificationWindow.vala:147 src/Gtk/MainWindow.vala:359 msgid "Install" msgstr "" diff --git a/po/nl.po b/po/nl.po index 1e86dc20..bb820d23 100644 --- a/po/nl.po +++ b/po/nl.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu 2.2\n" "Report-Msgid-Bugs-To: b.kenyon.w@gmail.com\n" -"POT-Creation-Date: 2020-01-03 18:52-0500\n" +"POT-Creation-Date: 2020-01-03 19:34-0500\n" "PO-Revision-Date: 2017-04-30 11:50+0200\n" "Last-Translator: Heimen Stoffels \n" "Language-Team: \n" @@ -273,7 +273,7 @@ msgstr "De index is up-to-date" msgid "Index is stale" msgstr "De index is verouderd" -#: src/Gtk/MainWindow.vala:359 src/Gtk/UpdateNotificationWindow.vala:147 +#: src/Gtk/UpdateNotificationWindow.vala:147 src/Gtk/MainWindow.vala:359 msgid "Install" msgstr "Installeren" diff --git a/po/pl.po b/po/pl.po index 4b72c9f2..b3604370 100644 --- a/po/pl.po +++ b/po/pl.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu\n" "Report-Msgid-Bugs-To: b.kenyon.w@gmail.com\n" -"POT-Creation-Date: 2020-01-03 18:52-0500\n" +"POT-Creation-Date: 2020-01-03 19:34-0500\n" "PO-Revision-Date: 2017-08-12 15:26+0200\n" "Last-Translator: \n" "Language-Team: Polish\n" @@ -270,7 +270,7 @@ msgstr "Indeks jest aktualny" msgid "Index is stale" msgstr "Indeks jest nieaktualny" -#: src/Gtk/MainWindow.vala:359 src/Gtk/UpdateNotificationWindow.vala:147 +#: src/Gtk/UpdateNotificationWindow.vala:147 src/Gtk/MainWindow.vala:359 msgid "Install" msgstr "Zainstaluj" diff --git a/po/ru.po b/po/ru.po index c3ec0b09..70fd0a5d 100644 --- a/po/ru.po +++ b/po/ru.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu\n" "Report-Msgid-Bugs-To: b.kenyon.w@gmail.com\n" -"POT-Creation-Date: 2020-01-03 18:52-0500\n" +"POT-Creation-Date: 2020-01-03 19:34-0500\n" "PO-Revision-Date: 2016-12-13 16:46+0300\n" "Last-Translator: Faust3000 \n" "Language-Team: Russian \n" @@ -277,7 +277,7 @@ msgstr "Сведения актуальны" msgid "Index is stale" msgstr "Сведения устарели" -#: src/Gtk/MainWindow.vala:359 src/Gtk/UpdateNotificationWindow.vala:147 +#: src/Gtk/UpdateNotificationWindow.vala:147 src/Gtk/MainWindow.vala:359 msgid "Install" msgstr "Установить" diff --git a/po/sv.po b/po/sv.po index 71e5af70..07855382 100644 --- a/po/sv.po +++ b/po/sv.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu 2.2\n" "Report-Msgid-Bugs-To: b.kenyon.w@gmail.com\n" -"POT-Creation-Date: 2020-01-03 18:52-0500\n" +"POT-Creation-Date: 2020-01-03 19:34-0500\n" "PO-Revision-Date: 2018-01-13 16:56+0100\n" "Last-Translator: Åke Engelbrektson \n" "Language-Team: Svenska Språkfiler \n" @@ -273,7 +273,7 @@ msgstr "Index är uppdaterat" msgid "Index is stale" msgstr "Index är inaktuellt" -#: src/Gtk/MainWindow.vala:359 src/Gtk/UpdateNotificationWindow.vala:147 +#: src/Gtk/UpdateNotificationWindow.vala:147 src/Gtk/MainWindow.vala:359 msgid "Install" msgstr "Installera" diff --git a/po/tr.po b/po/tr.po index 1da48387..719b7526 100644 --- a/po/tr.po +++ b/po/tr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu\n" "Report-Msgid-Bugs-To: b.kenyon.w@gmail.com\n" -"POT-Creation-Date: 2020-01-03 18:52-0500\n" +"POT-Creation-Date: 2020-01-03 19:34-0500\n" "PO-Revision-Date: 2019-08-31 18:33+0300\n" "Last-Translator: Gökhan GÖKKAYA \n" "Language-Team: Turkish\n" @@ -268,7 +268,7 @@ msgstr "İçerik listesi güncel" msgid "Index is stale" msgstr "İçerik listesi eski" -#: src/Gtk/MainWindow.vala:359 src/Gtk/UpdateNotificationWindow.vala:147 +#: src/Gtk/UpdateNotificationWindow.vala:147 src/Gtk/MainWindow.vala:359 msgid "Install" msgstr "Kur" diff --git a/po/uk.po b/po/uk.po index a0397d77..ab4f08d6 100644 --- a/po/uk.po +++ b/po/uk.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu\n" "Report-Msgid-Bugs-To: b.kenyon.w@gmail.com\n" -"POT-Creation-Date: 2020-01-03 18:52-0500\n" +"POT-Creation-Date: 2020-01-03 19:34-0500\n" "PO-Revision-Date: 2019-07-25 11:00+0300\n" "Last-Translator: Serhii Golovko \n" "Language-Team: Ukranian \n" @@ -263,7 +263,7 @@ msgstr "Відомості актуальні" msgid "Index is stale" msgstr "Відомості застаріли" -#: src/Gtk/MainWindow.vala:359 src/Gtk/UpdateNotificationWindow.vala:147 +#: src/Gtk/UpdateNotificationWindow.vala:147 src/Gtk/MainWindow.vala:359 msgid "Install" msgstr "Встановити" From 1f3b513b10c066a664a72cf7c6753745936c9b1d Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Fri, 3 Jan 2020 20:57:25 -0500 Subject: [PATCH 061/567] readme --- .deb_build_number.mak | 2 +- README.md | 2 +- README.md.src | 2 +- debian/changelog | 2 +- po/messages.pot | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.deb_build_number.mak b/.deb_build_number.mak index e53c2e2e..5558ca1a 100644 --- a/.deb_build_number.mak +++ b/.deb_build_number.mak @@ -1,3 +1,3 @@ # This file is generated by Makefile DEB_PKG_VERSION := 1.0.2 -DEB_BUILD_NUMBER := 0002 +DEB_BUILD_NUMBER := 0004 diff --git a/README.md b/README.md index c95c52b3..42e18ac2 100644 --- a/README.md +++ b/README.md @@ -60,7 +60,7 @@ libsoup or other library instead of shell commands for downloads? * Customizable appearance, at least colors * Option to specify kernel variant (generic, lowlatency, snapdragon, etc...) * Configurable lowest version threshhold instead of the current hard-coded 4.0 -...or, automatically subtract 1 from whatever the current highest release version is.. +...or, automatically subtract 1 from whatever the current highest release version is (first part done: as of v1.0.2 setting is a number instead of a true/false) * Improve the annoying pkexec behavior. It would be nicer to run pkexec (or lxqt-sudo, etc) one time for the whole session, and only have to enter a password once, instead of once per action. diff --git a/README.md.src b/README.md.src index 770f3008..f1e4617a 100644 --- a/README.md.src +++ b/README.md.src @@ -60,7 +60,7 @@ libsoup or other library instead of shell commands for downloads? * Customizable appearance, at least colors * Option to specify kernel variant (generic, lowlatency, snapdragon, etc...) * Configurable lowest version threshhold instead of the current hard-coded 4.0 -...or, automatically subtract 1 from whatever the current highest release version is.. +...or, automatically subtract 1 from whatever the current highest release version is (first part done: as of v1.0.2 setting is a number instead of a true/false) * Improve the annoying pkexec behavior. It would be nicer to run pkexec (or lxqt-sudo, etc) one time for the whole session, and only have to enter a password once, instead of once per action. diff --git a/debian/changelog b/debian/changelog index c6870089..ce7e791d 100644 --- a/debian/changelog +++ b/debian/changelog @@ -21,7 +21,7 @@ mainline (1.0.2) UNRELEASED; urgency=medium * Ukranian translation - github:cappelikan * Change bool hide_older to int kernel_version_threshold - -- Brian K. White Fri, 03 Jan 2020 20:12:59 -0500 + -- Brian K. White Fri, 03 Jan 2020 20:19:03 -0500 mainline (1.0.0) disco; urgency=medium diff --git a/po/messages.pot b/po/messages.pot index 1bff3a3e..5559cec3 100644 --- a/po/messages.pot +++ b/po/messages.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline 1.0.2\n" "Report-Msgid-Bugs-To: b.kenyon.w@gmail.com\n" -"POT-Creation-Date: 2020-01-03 20:13-0500\n" +"POT-Creation-Date: 2020-01-03 20:19-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" From 5cc15d66ff5098cef76c51054fcf905248dd3664 Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Sat, 4 Jan 2020 01:36:01 -0500 Subject: [PATCH 062/567] track dynamic current_highest_major-N instead of track static major version N and higher --- .deb_build_number.mak | 4 +- BRANDING.mak | 2 +- Makefile | 5 +- README.md | 3 - README.md.src | 3 - debian/changelog | 23 ++++-- po/es.po | 147 +++++++++++++++++++----------------- po/fr.po | 147 +++++++++++++++++++----------------- po/hr.po | 147 +++++++++++++++++++----------------- po/messages.pot | 144 ++++++++++++++++++----------------- po/nl.po | 147 +++++++++++++++++++----------------- po/pl.po | 147 +++++++++++++++++++----------------- po/ru.po | 147 +++++++++++++++++++----------------- po/sv.po | 147 +++++++++++++++++++----------------- po/tr.po | 147 +++++++++++++++++++----------------- po/uk.po | 147 +++++++++++++++++++----------------- src/Common/LinuxKernel.vala | 30 +++++--- src/Common/Main.vala | 6 +- src/Console/AppConsole.vala | 4 +- src/Gtk/AppGtk.vala | 4 +- src/Gtk/MainWindow.vala | 8 +- src/Gtk/SettingsDialog.vala | 14 ++-- 22 files changed, 850 insertions(+), 723 deletions(-) diff --git a/.deb_build_number.mak b/.deb_build_number.mak index 5558ca1a..0c01d166 100644 --- a/.deb_build_number.mak +++ b/.deb_build_number.mak @@ -1,3 +1,3 @@ # This file is generated by Makefile -DEB_PKG_VERSION := 1.0.2 -DEB_BUILD_NUMBER := 0004 +DEB_PKG_VERSION := 1.0.3 +DEB_BUILD_NUMBER := 0001 diff --git a/BRANDING.mak b/BRANDING.mak index 45ee37cd..88367198 100644 --- a/BRANDING.mak +++ b/BRANDING.mak @@ -3,7 +3,7 @@ VERSION_MAJOR = 1 VERSION_MINOR = 0 -VERSION_MICRO = 2 +VERSION_MICRO = 3 BRANDING_SHORTNAME = mainline BRANDING_LONGNAME = Ubuntu Mainline Kernel Installer BRANDING_AUTHORNAME = Brian K. White diff --git a/Makefile b/Makefile index 16f3a9b8..1950b410 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,7 @@ # Makefile for "mainline" -DEFAULT_KERNEL_VERSION_THRESHOLD = 5 +# number of major kernel version numbers to show, older than current highest major available. +DEFAULT_SHOW_PREV_MAJORS = 0 SHELL := /bin/bash CFLAGS := --std=c99 @@ -32,7 +33,7 @@ branding_symbols := -X -D'BRANDING_SHORTNAME="$(BRANDING_SHORTNAME)"' \ -X -D'BRANDING_AUTHOREMAIL="$(BRANDING_AUTHOREMAIL)"' \ -X -D'BRANDING_WEBSITE="$(BRANDING_WEBSITE)"' \ -X -D'GETTEXT_PACKAGE="$(BRANDING_SHORTNAME)"' \ - -X -D'DEFAULT_KERNEL_VERSION_THRESHOLD="$(DEFAULT_KERNEL_VERSION_THRESHOLD)"' + -X -D'DEFAULT_SHOW_PREV_MAJORS="$(DEFAULT_SHOW_PREV_MAJORS)"' misc_files := README.md \ INSTALL \ diff --git a/README.md b/README.md index 42e18ac2..0feaa2d6 100644 --- a/README.md +++ b/README.md @@ -59,9 +59,6 @@ Do we really need aptitude? libsoup or other library instead of shell commands for downloads? * Customizable appearance, at least colors * Option to specify kernel variant (generic, lowlatency, snapdragon, etc...) -* Configurable lowest version threshhold instead of the current hard-coded 4.0 -...or, automatically subtract 1 from whatever the current highest release version is -(first part done: as of v1.0.2 setting is a number instead of a true/false) * Improve the annoying pkexec behavior. It would be nicer to run pkexec (or lxqt-sudo, etc) one time for the whole session, and only have to enter a password once, instead of once per action. But currently, if you actually do that, it creates files in the users home directory that are owned by root, so don't do that. diff --git a/README.md.src b/README.md.src index f1e4617a..d8b691a6 100644 --- a/README.md.src +++ b/README.md.src @@ -59,9 +59,6 @@ Do we really need aptitude? libsoup or other library instead of shell commands for downloads? * Customizable appearance, at least colors * Option to specify kernel variant (generic, lowlatency, snapdragon, etc...) -* Configurable lowest version threshhold instead of the current hard-coded 4.0 -...or, automatically subtract 1 from whatever the current highest release version is -(first part done: as of v1.0.2 setting is a number instead of a true/false) * Improve the annoying pkexec behavior. It would be nicer to run pkexec (or lxqt-sudo, etc) one time for the whole session, and only have to enter a password once, instead of once per action. But currently, if you actually do that, it creates files in the users home directory that are owned by root, so don't do that. diff --git a/debian/changelog b/debian/changelog index ce7e791d..d320a2e8 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,7 +1,12 @@ -mainline (1.0.2) UNRELEASED; urgency=medium +mainline (1.0.3) UNRELEASED; urgency=medium + * Change setting kernel_version_threshold to show_prev_majors + Instead of saying hide kernels older than major version N, where the user has to periodically increase N manually, + Now the setting says, hide kernels older than major version (CURRENT_HIGHEST minus N), where CURRENT_HIGHEST is determined on the fly every time, and N can stay the same 0 or 1 etc forever. + All of the current highest major version is always shown. The setting says how many previous major versions to add to that. - * Disabled buggy progress bar - * Add missing translators on credits window + -- Brian K. White Sat, 04 Jan 2020 01:13:54 -0500 + +mainline (1.0.2) UNRELEASED; urgency=medium * Makefile: - Use one variable style everywhere - Only regenerate .pot file if any source files changed @@ -19,9 +24,17 @@ mainline (1.0.2) UNRELEASED; urgency=medium The Makefile is now officially more feature rich and robust than the application itself ¯\_(ツ)_/¯ * Desktop icon fix for Wayland from Hugo Posnic * Ukranian translation - github:cappelikan - * Change bool hide_older to int kernel_version_threshold + * Change setting: bool hide_older to int kernel_version_threshold + hide_older was a toggel on/off to hide kernel major versions older than a hardcoded value of 4 + kernel_version_threshold is an integer, hide kernel major versions older than this value + + -- Brian K. White Fri, 03 Jan 2020 18:01:59 -0500 + +mainline (1.0.1) UNRELEASED; urgency=medium + * Disabled buggy progress bar + * Add missing translators on credits window - -- Brian K. White Fri, 03 Jan 2020 20:19:03 -0500 + -- Brian K. White Mon, 18 Mar 2019 09:10:23 -0400 mainline (1.0.0) disco; urgency=medium diff --git a/po/es.po b/po/es.po index c0363f6b..965559a0 100644 --- a/po/es.po +++ b/po/es.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu\n" "Report-Msgid-Bugs-To: b.kenyon.w@gmail.com\n" -"POT-Creation-Date: 2020-01-03 19:34-0500\n" +"POT-Creation-Date: 2020-01-04 00:31-0500\n" "PO-Revision-Date: 2018-01-03 02:03-0600\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish\n" @@ -17,11 +17,11 @@ msgstr "" "X-Launchpad-Export-Date: 2017-04-13 11:48+0000\n" "X-Generator: Poedit 2.0.5\n" -#: src/Gtk/MainWindow.vala:496 +#: src/Gtk/MainWindow.vala:494 msgid "About" msgstr "Acerca de" -#: src/Console/AppConsole.vala:115 +#: src/Console/AppConsole.vala:117 msgid "Admin access is required for running this application." msgstr "" "Se necesitan privilegios administrativos para ejecutar esta aplicación." @@ -30,7 +30,7 @@ msgstr "" msgid "Another instance of this application is running" msgstr "Se está ejecutando otra instancia de esta aplicación" -#: src/Common/LinuxKernel.vala:105 +#: src/Common/LinuxKernel.vala:106 msgid "Architecture" msgstr "Arquitectura del sistema" @@ -39,7 +39,7 @@ msgstr "Arquitectura del sistema" msgid "Artists" msgstr "Artistas" -#: src/Console/AppConsole.vala:102 +#: src/Console/AppConsole.vala:103 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "Asumir Sí para todas las solicitudes (modo no interactivo)" @@ -48,7 +48,7 @@ msgstr "Asumir Sí para todas las solicitudes (modo no interactivo)" msgid "Authors" msgstr "Autores" -#: src/Common/LinuxKernel.vala:1152 +#: src/Common/LinuxKernel.vala:1164 msgid "Available Kernels" msgstr "Núcleos disponibles" @@ -56,7 +56,7 @@ msgstr "Núcleos disponibles" msgid "Back" msgstr "Atrás" -#: src/Console/AppConsole.vala:205 src/Gtk/AppGtk.vala:112 +#: src/Console/AppConsole.vala:207 src/Gtk/AppGtk.vala:112 msgid "Cache" msgstr "Cache" @@ -66,7 +66,7 @@ msgstr "Cache" msgid "Cancel" msgstr "Cancelar" -#: src/Gtk/MainWindow.vala:464 +#: src/Gtk/MainWindow.vala:462 msgid "Changes" msgstr "Cambios" @@ -86,7 +86,7 @@ msgstr "Compruebe las actualizaciones del kernel y notifique al usuario actual" msgid "Close" msgstr "Cerrar" -#: src/Console/AppConsole.vala:342 +#: src/Console/AppConsole.vala:344 msgid "Command not specified" msgstr "Coomand no especificado" @@ -99,7 +99,7 @@ msgid "Commands listed below are not available on this system" msgstr "" "Las órdenes enumeradas a continuación no están disponibles en este sistema" -#: src/Common/LinuxKernel.vala:737 +#: src/Common/LinuxKernel.vala:749 #, c-format msgid "Continue ?" msgstr "¿Continuar?" @@ -109,15 +109,15 @@ msgstr "¿Continuar?" msgid "Contributions" msgstr "Contribuciones" -#: src/Common/LinuxKernel.vala:721 +#: src/Common/LinuxKernel.vala:733 msgid "Could not find any kernels to remove" msgstr "Seleccione los núcleos que se desinstalarán" -#: src/Console/AppConsole.vala:310 src/Gtk/MainWindow.vala:100 +#: src/Console/AppConsole.vala:312 src/Gtk/MainWindow.vala:100 msgid "Could not find requested version" msgstr "No se pudo encontrar la versión solicitada" -#: src/Common/LinuxKernel.vala:715 +#: src/Common/LinuxKernel.vala:727 msgid "Could not find running kernel in list!" msgstr "¡No se pudo encontrar el núcleo en ejecución en la lista!" @@ -147,7 +147,7 @@ msgstr "No se encontró el directorio" msgid "Display" msgstr "Mostrar" -#: src/Common/LinuxKernel.vala:91 +#: src/Common/LinuxKernel.vala:92 msgid "Distribution" msgstr "Distribución" @@ -160,7 +160,7 @@ msgstr "Documentadores" msgid "Download packages for specified kernel" msgstr "Descargar paquetes del núcleo especificado" -#: src/Common/LinuxKernel.vala:1198 +#: src/Common/LinuxKernel.vala:1210 #, c-format msgid "Downloading" msgstr "Descargando" @@ -169,11 +169,15 @@ msgstr "Descargando" msgid "E" msgstr "E" -#: src/Common/LinuxKernel.vala:1226 +#: src/Common/LinuxKernel.vala:1238 #, c-format msgid "ERROR" msgstr "ERROR" +#: src/Console/AppConsole.vala:102 +msgid "Enable verbose debugging output" +msgstr "" + #: src/Utility/Gtk/GtkHelper.vala:17 msgid "Error" msgstr "Error" @@ -202,11 +206,11 @@ msgstr "Falló la lectura del archivo" msgid "Failed to write file" msgstr "Falló la escritura del archivo" -#: src/Common/LinuxKernel.vala:396 +#: src/Common/LinuxKernel.vala:408 msgid "Fetching index from kernel.ubuntu.com..." msgstr "Recuperando índice de kernel.ubuntu.com…" -#: src/Common/LinuxKernel.vala:353 +#: src/Common/LinuxKernel.vala:365 msgid "Fetching index..." msgstr "Recuperando índice..." @@ -244,11 +248,6 @@ msgstr "No se encontró el archivo: %s" msgid "File saved" msgstr "Se guardó el archivo" -#: src/Gtk/SettingsDialog.vala:182 -#, fuzzy -msgid "Hide kernels older than " -msgstr "Ocultar núcleos anteriores a 4.0" - #: src/Gtk/SettingsDialog.vala:168 msgid "Hide unstable and RC releases" msgstr "Ocultar versiones inestables y RC" @@ -261,19 +260,19 @@ msgstr "Horas" msgid "Ignore this update" msgstr "Ignorar esta actualización" -#: src/Common/LinuxKernel.vala:259 +#: src/Common/LinuxKernel.vala:260 msgid "Index is fresh" msgstr "El índice está al día" -#: src/Common/LinuxKernel.vala:256 +#: src/Common/LinuxKernel.vala:257 msgid "Index is stale" msgstr "El índice es obsoleto" -#: src/Gtk/UpdateNotificationWindow.vala:147 src/Gtk/MainWindow.vala:359 +#: src/Gtk/UpdateNotificationWindow.vala:147 src/Gtk/MainWindow.vala:357 msgid "Install" msgstr "Instalar" -#: src/Common/LinuxKernel.vala:794 +#: src/Common/LinuxKernel.vala:806 #, c-format msgid "Install Linux v%s ? (y/n): " msgstr "" @@ -294,21 +293,21 @@ msgstr "Instalar núcleo troncal especificado" msgid "Install this kernel" msgstr "Instalar este kernel" -#: src/Common/LinuxKernel.vala:1272 +#: src/Common/LinuxKernel.vala:1284 msgid "Installation completed with errors" msgstr "Instalación finalizada con errores" -#: src/Common/LinuxKernel.vala:1269 +#: src/Common/LinuxKernel.vala:1281 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "Instalación finalizada. Se necesita reiniciar para utilizar el núcleo nuevo." -#: src/Common/LinuxKernel.vala:1169 src/Gtk/MainWindow.vala:208 +#: src/Common/LinuxKernel.vala:1181 src/Gtk/MainWindow.vala:208 msgid "Installed" msgstr "Instalado" -#: src/Gtk/MainWindow.vala:350 src/Gtk/MainWindow.vala:550 -#: src/Gtk/MainWindow.vala:686 src/Utility/TeeJee.System.vala:281 +#: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:548 +#: src/Gtk/MainWindow.vala:684 src/Utility/TeeJee.System.vala:281 msgid "Internet connection is not active" msgstr "La conexión a Internet está inactiva" @@ -321,17 +320,17 @@ msgstr "La conexión a Internet está inactiva" msgid "Kernel" msgstr "Núcleo" -#: src/Gtk/MainWindow.vala:534 +#: src/Gtk/MainWindow.vala:532 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "" "Herramienta de renovación de núcleo para distribuciones basadas en Ubuntu" -#: src/Common/LinuxKernel.vala:776 src/Console/AppConsole.vala:368 +#: src/Common/LinuxKernel.vala:788 src/Console/AppConsole.vala:370 #, c-format msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:765 src/Console/AppConsole.vala:361 +#: src/Common/LinuxKernel.vala:777 src/Console/AppConsole.vala:363 #, c-format msgid "Latest update" msgstr "" @@ -352,11 +351,11 @@ msgstr "Mostrar kernels disponibles" msgid "Missing Icon" msgstr "Falta el icono" -#: src/Gtk/MainWindow.vala:368 +#: src/Gtk/MainWindow.vala:366 msgid "Multiple Kernels Selected" msgstr "Se seleccionaron varios kernels" -#: src/Console/AppConsole.vala:292 +#: src/Console/AppConsole.vala:294 msgid "Multiple kernels selected for installation. Select only one." msgstr "Se seleccionaron varios núcleos para su instalación. Elija solo uno." @@ -364,21 +363,21 @@ msgstr "Se seleccionaron varios núcleos para su instalación. Elija solo uno." msgid "No" msgstr "No" -#: src/Gtk/MainWindow.vala:350 src/Gtk/MainWindow.vala:550 -#: src/Gtk/MainWindow.vala:686 +#: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:548 +#: src/Gtk/MainWindow.vala:684 msgid "No Internet" msgstr "No hay Internet" -#: src/Console/AppConsole.vala:286 src/Console/AppConsole.vala:323 +#: src/Console/AppConsole.vala:288 src/Console/AppConsole.vala:325 msgid "No kernels specified" msgstr "" -#: src/Common/LinuxKernel.vala:784 src/Console/AppConsole.vala:373 -#: src/Console/AppConsole.vala:431 src/Gtk/MainWindow.vala:796 +#: src/Common/LinuxKernel.vala:796 src/Console/AppConsole.vala:375 +#: src/Console/AppConsole.vala:433 src/Gtk/MainWindow.vala:794 msgid "No updates found" msgstr "No se encontró ninguna actualización" -#: src/Gtk/MainWindow.vala:371 src/Gtk/MainWindow.vala:382 +#: src/Gtk/MainWindow.vala:369 src/Gtk/MainWindow.vala:380 msgid "Not Selected" msgstr "No seleccionado" @@ -394,7 +393,7 @@ msgstr "Notificar si hay una versión importante disponible" msgid "Notify if a point release is available" msgstr "Notificar si hay una versión puntual disponible" -#: src/Common/LinuxKernel.vala:1217 +#: src/Common/LinuxKernel.vala:1229 #: src/Utility/Gtk/CustomMessageDialog.vala:150 #: src/Utility/Gtk/CustomMessageDialog.vala:154 #, c-format @@ -409,12 +408,16 @@ msgstr "Opciones" msgid "Other" msgstr "" -#: src/Common/LinuxKernel.vala:1060 +#: src/Console/AppConsole.vala:104 +msgid "Override user" +msgstr "" + +#: src/Common/LinuxKernel.vala:1072 #, c-format msgid "Packages Available" msgstr "Paquetes disponibles" -#: src/Common/LinuxKernel.vala:1068 +#: src/Common/LinuxKernel.vala:1080 #, c-format msgid "Packages Installed" msgstr "Paquetes instalados" @@ -423,7 +426,7 @@ msgstr "Paquetes instalados" msgid "Please install required packages and try again" msgstr "Instale los paquetes requeridos e inténtelo de nuevo" -#: src/Common/LinuxKernel.vala:1293 +#: src/Common/LinuxKernel.vala:1305 msgid "Preparing to remove selected kernels" msgstr "Preparándose para desinstalar los núcleos seleccionados" @@ -431,19 +434,19 @@ msgstr "Preparándose para desinstalar los núcleos seleccionados" msgid "Print debug information" msgstr "Mostrar información de depuración" -#: src/Gtk/MainWindow.vala:425 +#: src/Gtk/MainWindow.vala:423 msgid "Purge" msgstr "" -#: src/Gtk/MainWindow.vala:343 +#: src/Gtk/MainWindow.vala:341 msgid "Refresh" msgstr "Actualizar" -#: src/Gtk/MainWindow.vala:569 +#: src/Gtk/MainWindow.vala:567 msgid "Refreshing..." msgstr "Actualizando…" -#: src/Gtk/MainWindow.vala:376 +#: src/Gtk/MainWindow.vala:374 msgid "Remove" msgstr "Quitar" @@ -451,7 +454,7 @@ msgstr "Quitar" msgid "Remove files from application cache" msgstr "Quitar archivos de la antememoria de la aplicación" -#: src/Console/AppConsole.vala:94 src/Gtk/MainWindow.vala:426 +#: src/Console/AppConsole.vala:94 src/Gtk/MainWindow.vala:424 msgid "Remove installed kernels older than running kernel" msgstr "" @@ -459,32 +462,32 @@ msgstr "" msgid "Remove specified kernel" msgstr "Quitar el núcleo troncal especificado" -#: src/Console/AppConsole.vala:200 src/Console/AppConsole.vala:314 -#: src/Console/AppConsole.vala:343 +#: src/Console/AppConsole.vala:202 src/Console/AppConsole.vala:316 +#: src/Console/AppConsole.vala:345 msgid "Run '" msgstr "" -#: src/Console/AppConsole.vala:118 +#: src/Console/AppConsole.vala:120 msgid "Run the application as admin with pkexec or sudo." msgstr "Ejecute la aplicación con permisos administrativos con pkexec o sudo." -#: src/Common/LinuxKernel.vala:1169 src/Gtk/MainWindow.vala:208 +#: src/Common/LinuxKernel.vala:1181 src/Gtk/MainWindow.vala:208 msgid "Running" msgstr "En ejecución" -#: src/Gtk/MainWindow.vala:368 +#: src/Gtk/MainWindow.vala:366 msgid "Select a single kernel to install" msgstr "Seleccione un solo núcleo para instalarlo" -#: src/Gtk/MainWindow.vala:371 +#: src/Gtk/MainWindow.vala:369 msgid "Select the kernel to install" msgstr "Seleccione el núcleo que se instalará" -#: src/Gtk/MainWindow.vala:382 +#: src/Gtk/MainWindow.vala:380 msgid "Select the kernels to remove" msgstr "Seleccione los núcleos que se desinstalarán" -#: src/Common/LinuxKernel.vala:1288 +#: src/Common/LinuxKernel.vala:1300 msgid "" "Selected kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -492,7 +495,7 @@ msgstr "" "El núcleo seleccionado está en ejecución y no puede desinstalarse.\n" "Instale otro núcleo antes de desinstalar este." -#: src/Gtk/MainWindow.vala:475 src/Gtk/SettingsDialog.vala:55 +#: src/Gtk/MainWindow.vala:473 src/Gtk/SettingsDialog.vala:55 msgid "Settings" msgstr "Configuración" @@ -500,6 +503,10 @@ msgstr "Configuración" msgid "Show" msgstr "Mostrar" +#: src/Gtk/SettingsDialog.vala:182 +msgid "Show N previous major versions " +msgstr "" + #: src/Gtk/AppGtk.vala:186 msgid "Show all options" msgstr "Mostrar todas las opciones" @@ -532,11 +539,11 @@ msgstr "Detenido" msgid "Syntax" msgstr "Sintaxis" -#: src/Console/AppConsole.vala:206 src/Gtk/AppGtk.vala:113 +#: src/Console/AppConsole.vala:208 src/Gtk/AppGtk.vala:113 msgid "Temp" msgstr "" -#: src/Common/LinuxKernel.vala:730 +#: src/Common/LinuxKernel.vala:742 #, c-format msgid "The following kernels will be removed:" msgstr "Los siguientes kernels serán eliminados:" @@ -546,11 +553,11 @@ msgstr "Los siguientes kernels serán eliminados:" msgid "Third Party Tools" msgstr "Herramientas de terceros" -#: src/Common/LinuxKernel.vala:1240 src/Gtk/MainWindow.vala:681 +#: src/Common/LinuxKernel.vala:1252 src/Gtk/MainWindow.vala:679 msgid "This kernel is already installed." msgstr "Este núcleo ya se instaló." -#: src/Common/LinuxKernel.vala:1341 +#: src/Common/LinuxKernel.vala:1353 msgid "" "This kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -563,15 +570,15 @@ msgstr "" msgid "Translators" msgstr "Traductores" -#: src/Common/LinuxKernel.vala:1325 src/Common/LinuxKernel.vala:1378 +#: src/Common/LinuxKernel.vala:1337 src/Common/LinuxKernel.vala:1390 msgid "Un-install completed" msgstr "Desinstalación finalizada" -#: src/Common/LinuxKernel.vala:1328 src/Common/LinuxKernel.vala:1381 +#: src/Common/LinuxKernel.vala:1340 src/Common/LinuxKernel.vala:1393 msgid "Un-install completed with errors" msgstr "Desinstalación finalizada con errores" -#: src/Console/AppConsole.vala:198 src/Gtk/AppGtk.vala:168 +#: src/Console/AppConsole.vala:200 src/Gtk/AppGtk.vala:168 msgid "Unknown option" msgstr "Opción desconocida" @@ -598,3 +605,7 @@ msgstr "[Atención] Se eliminó un bloqueo no válido" #: src/Gtk/SettingsDialog.vala:232 msgid "seconds" msgstr "" + +#, fuzzy +#~ msgid "Hide kernels older than " +#~ msgstr "Ocultar núcleos anteriores a 4.0" diff --git a/po/fr.po b/po/fr.po index eb5de75a..b2d002e8 100644 --- a/po/fr.po +++ b/po/fr.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu\n" "Report-Msgid-Bugs-To: b.kenyon.w@gmail.com\n" -"POT-Creation-Date: 2020-01-03 19:34-0500\n" +"POT-Creation-Date: 2020-01-04 00:31-0500\n" "PO-Revision-Date: 2018-08-05 15:50+0200\n" "Last-Translator: Yolateng0 \n" "Language-Team: French\n" @@ -17,11 +17,11 @@ msgstr "" "X-Launchpad-Export-Date: 2017-04-13 11:48+0000\n" "X-Generator: Poedit 2.0.6\n" -#: src/Gtk/MainWindow.vala:496 +#: src/Gtk/MainWindow.vala:494 msgid "About" msgstr "À propos" -#: src/Console/AppConsole.vala:115 +#: src/Console/AppConsole.vala:117 msgid "Admin access is required for running this application." msgstr "Accès administrateur requis pour lancer cette application." @@ -29,7 +29,7 @@ msgstr "Accès administrateur requis pour lancer cette application." msgid "Another instance of this application is running" msgstr "Une autre instance de l'application est en cours d'exécution" -#: src/Common/LinuxKernel.vala:105 +#: src/Common/LinuxKernel.vala:106 #, fuzzy msgid "Architecture" msgstr "Architecture du système" @@ -39,7 +39,7 @@ msgstr "Architecture du système" msgid "Artists" msgstr "Artistes" -#: src/Console/AppConsole.vala:102 +#: src/Console/AppConsole.vala:103 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "" @@ -48,7 +48,7 @@ msgstr "" msgid "Authors" msgstr "Auteurs" -#: src/Common/LinuxKernel.vala:1152 +#: src/Common/LinuxKernel.vala:1164 msgid "Available Kernels" msgstr "Noyaux disponibles" @@ -56,7 +56,7 @@ msgstr "Noyaux disponibles" msgid "Back" msgstr "Retour" -#: src/Console/AppConsole.vala:205 src/Gtk/AppGtk.vala:112 +#: src/Console/AppConsole.vala:207 src/Gtk/AppGtk.vala:112 msgid "Cache" msgstr "" @@ -66,7 +66,7 @@ msgstr "" msgid "Cancel" msgstr "Annuler" -#: src/Gtk/MainWindow.vala:464 +#: src/Gtk/MainWindow.vala:462 msgid "Changes" msgstr "Changements" @@ -87,7 +87,7 @@ msgstr "Vérifier les mises à jour des noyaux" msgid "Close" msgstr "Fermer" -#: src/Console/AppConsole.vala:342 +#: src/Console/AppConsole.vala:344 #, fuzzy msgid "Command not specified" msgstr "Impossible de trouver le fichier" @@ -100,7 +100,7 @@ msgstr "" msgid "Commands listed below are not available on this system" msgstr "Les commandes listées ne sont pas valables pour ce système" -#: src/Common/LinuxKernel.vala:737 +#: src/Common/LinuxKernel.vala:749 #, c-format msgid "Continue ?" msgstr "" @@ -110,16 +110,16 @@ msgstr "" msgid "Contributions" msgstr "Contributions" -#: src/Common/LinuxKernel.vala:721 +#: src/Common/LinuxKernel.vala:733 #, fuzzy msgid "Could not find any kernels to remove" msgstr "Sélectionnez les noyaux à supprimer" -#: src/Console/AppConsole.vala:310 src/Gtk/MainWindow.vala:100 +#: src/Console/AppConsole.vala:312 src/Gtk/MainWindow.vala:100 msgid "Could not find requested version" msgstr "Impossible de trouver la version demandée" -#: src/Common/LinuxKernel.vala:715 +#: src/Common/LinuxKernel.vala:727 #, fuzzy msgid "Could not find running kernel in list!" msgstr "Impossible de trouver la version demandée" @@ -150,7 +150,7 @@ msgstr "Dossier non trouvé" msgid "Display" msgstr "Afficher" -#: src/Common/LinuxKernel.vala:91 +#: src/Common/LinuxKernel.vala:92 msgid "Distribution" msgstr "Distribution" @@ -163,7 +163,7 @@ msgstr "Documentalistes" msgid "Download packages for specified kernel" msgstr "Télécharger les paquets pour des noyaux spécifiques" -#: src/Common/LinuxKernel.vala:1198 +#: src/Common/LinuxKernel.vala:1210 #, c-format msgid "Downloading" msgstr "Téléchargement" @@ -172,11 +172,15 @@ msgstr "Téléchargement" msgid "E" msgstr "E" -#: src/Common/LinuxKernel.vala:1226 +#: src/Common/LinuxKernel.vala:1238 #, c-format msgid "ERROR" msgstr "ERREUR" +#: src/Console/AppConsole.vala:102 +msgid "Enable verbose debugging output" +msgstr "" + #: src/Utility/Gtk/GtkHelper.vala:17 msgid "Error" msgstr "Erreur" @@ -205,11 +209,11 @@ msgstr "Impossible de lire le fichier" msgid "Failed to write file" msgstr "Impossible d'écrire le fichier" -#: src/Common/LinuxKernel.vala:396 +#: src/Common/LinuxKernel.vala:408 msgid "Fetching index from kernel.ubuntu.com..." msgstr "Récupération de l'index depuis kernel.ubuntu.com..." -#: src/Common/LinuxKernel.vala:353 +#: src/Common/LinuxKernel.vala:365 msgid "Fetching index..." msgstr "" @@ -247,11 +251,6 @@ msgstr "Fichier non trouvé: %s" msgid "File saved" msgstr "Fichier sauvegardé" -#: src/Gtk/SettingsDialog.vala:182 -#, fuzzy -msgid "Hide kernels older than " -msgstr "Masquer les noyaux antérieurs à la version 4.0" - #: src/Gtk/SettingsDialog.vala:168 msgid "Hide unstable and RC releases" msgstr "Cacher les versions instables et RC" @@ -264,19 +263,19 @@ msgstr "Heure(s)" msgid "Ignore this update" msgstr "Ignorer cette mise à jour" -#: src/Common/LinuxKernel.vala:259 +#: src/Common/LinuxKernel.vala:260 msgid "Index is fresh" msgstr "L'index est à jour" -#: src/Common/LinuxKernel.vala:256 +#: src/Common/LinuxKernel.vala:257 msgid "Index is stale" msgstr "L'index est obsolète" -#: src/Gtk/UpdateNotificationWindow.vala:147 src/Gtk/MainWindow.vala:359 +#: src/Gtk/UpdateNotificationWindow.vala:147 src/Gtk/MainWindow.vala:357 msgid "Install" msgstr "Installer" -#: src/Common/LinuxKernel.vala:794 +#: src/Common/LinuxKernel.vala:806 #, c-format msgid "Install Linux v%s ? (y/n): " msgstr "" @@ -298,22 +297,22 @@ msgstr "Installer le noyau principal spécifié" msgid "Install this kernel" msgstr "Installer ce noyau" -#: src/Common/LinuxKernel.vala:1272 +#: src/Common/LinuxKernel.vala:1284 msgid "Installation completed with errors" msgstr "Installation terminée avec des erreurs" -#: src/Common/LinuxKernel.vala:1269 +#: src/Common/LinuxKernel.vala:1281 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "Installation complétée. Un redémarrage est nécessaire pour utiliser le " "nouveau noyau." -#: src/Common/LinuxKernel.vala:1169 src/Gtk/MainWindow.vala:208 +#: src/Common/LinuxKernel.vala:1181 src/Gtk/MainWindow.vala:208 msgid "Installed" msgstr "Installé" -#: src/Gtk/MainWindow.vala:350 src/Gtk/MainWindow.vala:550 -#: src/Gtk/MainWindow.vala:686 src/Utility/TeeJee.System.vala:281 +#: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:548 +#: src/Gtk/MainWindow.vala:684 src/Utility/TeeJee.System.vala:281 msgid "Internet connection is not active" msgstr "Connexion internet inexistante" @@ -326,18 +325,18 @@ msgstr "Connexion internet inexistante" msgid "Kernel" msgstr "Noyau" -#: src/Gtk/MainWindow.vala:534 +#: src/Gtk/MainWindow.vala:532 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "" "Utilitaire de mise à niveau des noyaux pour les distributions basées pour " "Ubuntu" -#: src/Common/LinuxKernel.vala:776 src/Console/AppConsole.vala:368 +#: src/Common/LinuxKernel.vala:788 src/Console/AppConsole.vala:370 #, c-format msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:765 src/Console/AppConsole.vala:361 +#: src/Common/LinuxKernel.vala:777 src/Console/AppConsole.vala:363 #, c-format msgid "Latest update" msgstr "" @@ -359,11 +358,11 @@ msgstr "Lister les noyaux disponibles" msgid "Missing Icon" msgstr "Icône introuvable" -#: src/Gtk/MainWindow.vala:368 +#: src/Gtk/MainWindow.vala:366 msgid "Multiple Kernels Selected" msgstr "Plusieurs noyaux sélectionnés" -#: src/Console/AppConsole.vala:292 +#: src/Console/AppConsole.vala:294 msgid "Multiple kernels selected for installation. Select only one." msgstr "" "Plusieurs noyaux sélectionnés pour être installés. Sélectionnez en seulement " @@ -373,21 +372,21 @@ msgstr "" msgid "No" msgstr "Non" -#: src/Gtk/MainWindow.vala:350 src/Gtk/MainWindow.vala:550 -#: src/Gtk/MainWindow.vala:686 +#: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:548 +#: src/Gtk/MainWindow.vala:684 msgid "No Internet" msgstr "Pas d'Internet" -#: src/Console/AppConsole.vala:286 src/Console/AppConsole.vala:323 +#: src/Console/AppConsole.vala:288 src/Console/AppConsole.vala:325 msgid "No kernels specified" msgstr "" -#: src/Common/LinuxKernel.vala:784 src/Console/AppConsole.vala:373 -#: src/Console/AppConsole.vala:431 src/Gtk/MainWindow.vala:796 +#: src/Common/LinuxKernel.vala:796 src/Console/AppConsole.vala:375 +#: src/Console/AppConsole.vala:433 src/Gtk/MainWindow.vala:794 msgid "No updates found" msgstr "Aucune mise à jour disponible" -#: src/Gtk/MainWindow.vala:371 src/Gtk/MainWindow.vala:382 +#: src/Gtk/MainWindow.vala:369 src/Gtk/MainWindow.vala:380 msgid "Not Selected" msgstr "Non selectionné" @@ -403,7 +402,7 @@ msgstr "Notifier si une version stable majeure est disponible" msgid "Notify if a point release is available" msgstr "Notifier si une version stable mineure est disponible" -#: src/Common/LinuxKernel.vala:1217 +#: src/Common/LinuxKernel.vala:1229 #: src/Utility/Gtk/CustomMessageDialog.vala:150 #: src/Utility/Gtk/CustomMessageDialog.vala:154 #, c-format @@ -418,12 +417,16 @@ msgstr "Options" msgid "Other" msgstr "" -#: src/Common/LinuxKernel.vala:1060 +#: src/Console/AppConsole.vala:104 +msgid "Override user" +msgstr "" + +#: src/Common/LinuxKernel.vala:1072 #, c-format msgid "Packages Available" msgstr "Paquets disponibles" -#: src/Common/LinuxKernel.vala:1068 +#: src/Common/LinuxKernel.vala:1080 #, c-format msgid "Packages Installed" msgstr "Paquets installés" @@ -432,7 +435,7 @@ msgstr "Paquets installés" msgid "Please install required packages and try again" msgstr "Veuillez installer les paquets requis et réessayer" -#: src/Common/LinuxKernel.vala:1293 +#: src/Common/LinuxKernel.vala:1305 msgid "Preparing to remove selected kernels" msgstr "Préparation à la suppression des noyaux sélectionnés" @@ -440,19 +443,19 @@ msgstr "Préparation à la suppression des noyaux sélectionnés" msgid "Print debug information" msgstr "Afficher les informations de débogage" -#: src/Gtk/MainWindow.vala:425 +#: src/Gtk/MainWindow.vala:423 msgid "Purge" msgstr "" -#: src/Gtk/MainWindow.vala:343 +#: src/Gtk/MainWindow.vala:341 msgid "Refresh" msgstr "Actualiser" -#: src/Gtk/MainWindow.vala:569 +#: src/Gtk/MainWindow.vala:567 msgid "Refreshing..." msgstr "Actualisation..." -#: src/Gtk/MainWindow.vala:376 +#: src/Gtk/MainWindow.vala:374 msgid "Remove" msgstr "Supprimer" @@ -460,7 +463,7 @@ msgstr "Supprimer" msgid "Remove files from application cache" msgstr "Supprimer les fichiers du cache de l'application" -#: src/Console/AppConsole.vala:94 src/Gtk/MainWindow.vala:426 +#: src/Console/AppConsole.vala:94 src/Gtk/MainWindow.vala:424 msgid "Remove installed kernels older than running kernel" msgstr "" @@ -469,32 +472,32 @@ msgstr "" msgid "Remove specified kernel" msgstr "Supprimer le noyau mainline sélectionné" -#: src/Console/AppConsole.vala:200 src/Console/AppConsole.vala:314 -#: src/Console/AppConsole.vala:343 +#: src/Console/AppConsole.vala:202 src/Console/AppConsole.vala:316 +#: src/Console/AppConsole.vala:345 msgid "Run '" msgstr "" -#: src/Console/AppConsole.vala:118 +#: src/Console/AppConsole.vala:120 msgid "Run the application as admin with pkexec or sudo." msgstr "Exécutez l'application en tant qu'admin avec pkexec or sudo." -#: src/Common/LinuxKernel.vala:1169 src/Gtk/MainWindow.vala:208 +#: src/Common/LinuxKernel.vala:1181 src/Gtk/MainWindow.vala:208 msgid "Running" msgstr "En cours" -#: src/Gtk/MainWindow.vala:368 +#: src/Gtk/MainWindow.vala:366 msgid "Select a single kernel to install" msgstr "Sélectionnez un seul noyau à installer" -#: src/Gtk/MainWindow.vala:371 +#: src/Gtk/MainWindow.vala:369 msgid "Select the kernel to install" msgstr "Sélectionnez le noyau à installer" -#: src/Gtk/MainWindow.vala:382 +#: src/Gtk/MainWindow.vala:380 msgid "Select the kernels to remove" msgstr "Sélectionnez les noyaux à supprimer" -#: src/Common/LinuxKernel.vala:1288 +#: src/Common/LinuxKernel.vala:1300 msgid "" "Selected kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -502,7 +505,7 @@ msgstr "" "Ce noyau est en cours d'exécution et ne peut pas être supprimé.\n" " Installez un autre noyau avant de retirer celui-ci." -#: src/Gtk/MainWindow.vala:475 src/Gtk/SettingsDialog.vala:55 +#: src/Gtk/MainWindow.vala:473 src/Gtk/SettingsDialog.vala:55 msgid "Settings" msgstr "Paramètres" @@ -510,6 +513,10 @@ msgstr "Paramètres" msgid "Show" msgstr "Afficher" +#: src/Gtk/SettingsDialog.vala:182 +msgid "Show N previous major versions " +msgstr "" + #: src/Gtk/AppGtk.vala:186 msgid "Show all options" msgstr "Afficher toutes les options" @@ -544,11 +551,11 @@ msgstr "Arrêté" msgid "Syntax" msgstr "Syntaxe" -#: src/Console/AppConsole.vala:206 src/Gtk/AppGtk.vala:113 +#: src/Console/AppConsole.vala:208 src/Gtk/AppGtk.vala:113 msgid "Temp" msgstr "" -#: src/Common/LinuxKernel.vala:730 +#: src/Common/LinuxKernel.vala:742 #, c-format msgid "The following kernels will be removed:" msgstr "" @@ -558,11 +565,11 @@ msgstr "" msgid "Third Party Tools" msgstr "Outils tiers" -#: src/Common/LinuxKernel.vala:1240 src/Gtk/MainWindow.vala:681 +#: src/Common/LinuxKernel.vala:1252 src/Gtk/MainWindow.vala:679 msgid "This kernel is already installed." msgstr "Ce noyau est déjà installé." -#: src/Common/LinuxKernel.vala:1341 +#: src/Common/LinuxKernel.vala:1353 msgid "" "This kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -575,15 +582,15 @@ msgstr "" msgid "Translators" msgstr "Traducteurs" -#: src/Common/LinuxKernel.vala:1325 src/Common/LinuxKernel.vala:1378 +#: src/Common/LinuxKernel.vala:1337 src/Common/LinuxKernel.vala:1390 msgid "Un-install completed" msgstr "Désinstallation complète" -#: src/Common/LinuxKernel.vala:1328 src/Common/LinuxKernel.vala:1381 +#: src/Common/LinuxKernel.vala:1340 src/Common/LinuxKernel.vala:1393 msgid "Un-install completed with errors" msgstr "Désinstallation terminée avec des erreurs" -#: src/Console/AppConsole.vala:198 src/Gtk/AppGtk.vala:168 +#: src/Console/AppConsole.vala:200 src/Gtk/AppGtk.vala:168 msgid "Unknown option" msgstr "Option inconnue" @@ -611,6 +618,10 @@ msgstr "[Attention] Verrou invalide supprimé" msgid "seconds" msgstr "" +#, fuzzy +#~ msgid "Hide kernels older than " +#~ msgstr "Masquer les noyaux antérieurs à la version 4.0" + #~ msgid "Booting previous kernels" #~ msgstr "Démarrer sur un noyau précédent" diff --git a/po/hr.po b/po/hr.po index b7b2a8eb..ad1f41e8 100644 --- a/po/hr.po +++ b/po/hr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu\n" "Report-Msgid-Bugs-To: b.kenyon.w@gmail.com\n" -"POT-Creation-Date: 2020-01-03 19:34-0500\n" +"POT-Creation-Date: 2020-01-04 00:31-0500\n" "PO-Revision-Date: 2017-12-24 00:52+0100\n" "Last-Translator: gogo \n" "Language-Team: Croatian \n" @@ -18,11 +18,11 @@ msgstr "" "X-Launchpad-Export-Date: 2017-12-23 23:36+0000\n" "X-Generator: Poedit 1.8.7.1\n" -#: src/Gtk/MainWindow.vala:496 +#: src/Gtk/MainWindow.vala:494 msgid "About" msgstr "O programu" -#: src/Console/AppConsole.vala:115 +#: src/Console/AppConsole.vala:117 msgid "Admin access is required for running this application." msgstr "Administratorske ovlasti su potrebne za pokretanje ove aplikacije." @@ -30,7 +30,7 @@ msgstr "Administratorske ovlasti su potrebne za pokretanje ove aplikacije." msgid "Another instance of this application is running" msgstr "Drugi primjerak ove aplikacije je pokrenut" -#: src/Common/LinuxKernel.vala:105 +#: src/Common/LinuxKernel.vala:106 #, fuzzy msgid "Architecture" msgstr "Arhitektura sustava" @@ -40,7 +40,7 @@ msgstr "Arhitektura sustava" msgid "Artists" msgstr "Dizajneri" -#: src/Console/AppConsole.vala:102 +#: src/Console/AppConsole.vala:103 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "" @@ -49,7 +49,7 @@ msgstr "" msgid "Authors" msgstr "Autori" -#: src/Common/LinuxKernel.vala:1152 +#: src/Common/LinuxKernel.vala:1164 msgid "Available Kernels" msgstr "Dostupni kerneli" @@ -57,7 +57,7 @@ msgstr "Dostupni kerneli" msgid "Back" msgstr "Natrag" -#: src/Console/AppConsole.vala:205 src/Gtk/AppGtk.vala:112 +#: src/Console/AppConsole.vala:207 src/Gtk/AppGtk.vala:112 msgid "Cache" msgstr "" @@ -67,7 +67,7 @@ msgstr "" msgid "Cancel" msgstr "Odustani" -#: src/Gtk/MainWindow.vala:464 +#: src/Gtk/MainWindow.vala:462 msgid "Changes" msgstr "Promjene" @@ -88,7 +88,7 @@ msgstr "Provjeri nadopune kernela" msgid "Close" msgstr "Zatvori" -#: src/Console/AppConsole.vala:342 +#: src/Console/AppConsole.vala:344 msgid "Command not specified" msgstr "" @@ -100,7 +100,7 @@ msgstr "" msgid "Commands listed below are not available on this system" msgstr "Naredbe navedene ispod nisu dostupne na ovom sustavu" -#: src/Common/LinuxKernel.vala:737 +#: src/Common/LinuxKernel.vala:749 #, c-format msgid "Continue ?" msgstr "" @@ -110,16 +110,16 @@ msgstr "" msgid "Contributions" msgstr "Prilozi" -#: src/Common/LinuxKernel.vala:721 +#: src/Common/LinuxKernel.vala:733 #, fuzzy msgid "Could not find any kernels to remove" msgstr "Odaberi kernele za uklanjanje" -#: src/Console/AppConsole.vala:310 src/Gtk/MainWindow.vala:100 +#: src/Console/AppConsole.vala:312 src/Gtk/MainWindow.vala:100 msgid "Could not find requested version" msgstr "Nemoguće je pronaći zatraženu inačicu" -#: src/Common/LinuxKernel.vala:715 +#: src/Common/LinuxKernel.vala:727 #, fuzzy msgid "Could not find running kernel in list!" msgstr "Nemoguće je pronaći zatraženu inačicu" @@ -150,7 +150,7 @@ msgstr "Direktorij nije pronađen" msgid "Display" msgstr "Prikaz" -#: src/Common/LinuxKernel.vala:91 +#: src/Common/LinuxKernel.vala:92 msgid "Distribution" msgstr "Distribucija" @@ -163,7 +163,7 @@ msgstr "Autori dokumentacije" msgid "Download packages for specified kernel" msgstr "Preuzmi pakete za određeni kernel" -#: src/Common/LinuxKernel.vala:1198 +#: src/Common/LinuxKernel.vala:1210 #, c-format msgid "Downloading" msgstr "Preuzimanje" @@ -172,11 +172,15 @@ msgstr "Preuzimanje" msgid "E" msgstr "G" -#: src/Common/LinuxKernel.vala:1226 +#: src/Common/LinuxKernel.vala:1238 #, c-format msgid "ERROR" msgstr "GREŠKA" +#: src/Console/AppConsole.vala:102 +msgid "Enable verbose debugging output" +msgstr "" + #: src/Utility/Gtk/GtkHelper.vala:17 msgid "Error" msgstr "Greška" @@ -205,11 +209,11 @@ msgstr "Neuspjelo čitanje datoteke" msgid "Failed to write file" msgstr "Neuspjelo zapisivanje datoteke" -#: src/Common/LinuxKernel.vala:396 +#: src/Common/LinuxKernel.vala:408 msgid "Fetching index from kernel.ubuntu.com..." msgstr "Preuzimanje sadržaja sa kernel.ubuntu.com..." -#: src/Common/LinuxKernel.vala:353 +#: src/Common/LinuxKernel.vala:365 msgid "Fetching index..." msgstr "" @@ -247,11 +251,6 @@ msgstr "Datoteka nije pronađena: %s" msgid "File saved" msgstr "Datoteka je spremljenja" -#: src/Gtk/SettingsDialog.vala:182 -#, fuzzy -msgid "Hide kernels older than " -msgstr "Sakrij kernele starije od inačice 4.0" - #: src/Gtk/SettingsDialog.vala:168 msgid "Hide unstable and RC releases" msgstr "Sakrij nestabilne kernele i predizdanja" @@ -264,19 +263,19 @@ msgstr "Sat(a)" msgid "Ignore this update" msgstr "Zanemari ovu nadopunu" -#: src/Common/LinuxKernel.vala:259 +#: src/Common/LinuxKernel.vala:260 msgid "Index is fresh" msgstr "Sadržaj je osvježen" -#: src/Common/LinuxKernel.vala:256 +#: src/Common/LinuxKernel.vala:257 msgid "Index is stale" msgstr "Sadržaj je zastario" -#: src/Gtk/UpdateNotificationWindow.vala:147 src/Gtk/MainWindow.vala:359 +#: src/Gtk/UpdateNotificationWindow.vala:147 src/Gtk/MainWindow.vala:357 msgid "Install" msgstr "Instaliraj" -#: src/Common/LinuxKernel.vala:794 +#: src/Common/LinuxKernel.vala:806 #, c-format msgid "Install Linux v%s ? (y/n): " msgstr "" @@ -298,22 +297,22 @@ msgstr "Instaliraj određeni mainline kernel" msgid "Install this kernel" msgstr "Instaliraj ovaj kernel" -#: src/Common/LinuxKernel.vala:1272 +#: src/Common/LinuxKernel.vala:1284 msgid "Installation completed with errors" msgstr "Instalacija je završena s greškama" -#: src/Common/LinuxKernel.vala:1269 +#: src/Common/LinuxKernel.vala:1281 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "Instalacija je završena. Potrebno je ponovno pokretanje računala kako bi se " "koristio novi kernel." -#: src/Common/LinuxKernel.vala:1169 src/Gtk/MainWindow.vala:208 +#: src/Common/LinuxKernel.vala:1181 src/Gtk/MainWindow.vala:208 msgid "Installed" msgstr "Instalirano" -#: src/Gtk/MainWindow.vala:350 src/Gtk/MainWindow.vala:550 -#: src/Gtk/MainWindow.vala:686 src/Utility/TeeJee.System.vala:281 +#: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:548 +#: src/Gtk/MainWindow.vala:684 src/Utility/TeeJee.System.vala:281 msgid "Internet connection is not active" msgstr "Internet povezivanje nije aktivno" @@ -326,16 +325,16 @@ msgstr "Internet povezivanje nije aktivno" msgid "Kernel" msgstr "Kernel" -#: src/Gtk/MainWindow.vala:534 +#: src/Gtk/MainWindow.vala:532 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Alat za nadogradnju kernela Ubuntu temeljenih distribucija" -#: src/Common/LinuxKernel.vala:776 src/Console/AppConsole.vala:368 +#: src/Common/LinuxKernel.vala:788 src/Console/AppConsole.vala:370 #, c-format msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:765 src/Console/AppConsole.vala:361 +#: src/Common/LinuxKernel.vala:777 src/Console/AppConsole.vala:363 #, c-format msgid "Latest update" msgstr "" @@ -357,11 +356,11 @@ msgstr "Prikaži sve kernele" msgid "Missing Icon" msgstr "Ikone koje nedostaju" -#: src/Gtk/MainWindow.vala:368 +#: src/Gtk/MainWindow.vala:366 msgid "Multiple Kernels Selected" msgstr "Više kernela je odabrano" -#: src/Console/AppConsole.vala:292 +#: src/Console/AppConsole.vala:294 msgid "Multiple kernels selected for installation. Select only one." msgstr "Više kernela je odabrano za instalaciju. odaberite samo jedan." @@ -369,21 +368,21 @@ msgstr "Više kernela je odabrano za instalaciju. odaberite samo jedan." msgid "No" msgstr "Ne" -#: src/Gtk/MainWindow.vala:350 src/Gtk/MainWindow.vala:550 -#: src/Gtk/MainWindow.vala:686 +#: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:548 +#: src/Gtk/MainWindow.vala:684 msgid "No Internet" msgstr "Nema pristupa internetu" -#: src/Console/AppConsole.vala:286 src/Console/AppConsole.vala:323 +#: src/Console/AppConsole.vala:288 src/Console/AppConsole.vala:325 msgid "No kernels specified" msgstr "" -#: src/Common/LinuxKernel.vala:784 src/Console/AppConsole.vala:373 -#: src/Console/AppConsole.vala:431 src/Gtk/MainWindow.vala:796 +#: src/Common/LinuxKernel.vala:796 src/Console/AppConsole.vala:375 +#: src/Console/AppConsole.vala:433 src/Gtk/MainWindow.vala:794 msgid "No updates found" msgstr "Nema pronađenih nadopuna" -#: src/Gtk/MainWindow.vala:371 src/Gtk/MainWindow.vala:382 +#: src/Gtk/MainWindow.vala:369 src/Gtk/MainWindow.vala:380 msgid "Not Selected" msgstr "Nije odabrano" @@ -399,7 +398,7 @@ msgstr "Obavijesti kada je glavno izdanje dostupno" msgid "Notify if a point release is available" msgstr "Obavijesti kada je pojedino izdanje dostupno" -#: src/Common/LinuxKernel.vala:1217 +#: src/Common/LinuxKernel.vala:1229 #: src/Utility/Gtk/CustomMessageDialog.vala:150 #: src/Utility/Gtk/CustomMessageDialog.vala:154 #, c-format @@ -414,12 +413,16 @@ msgstr "Mogućnosti" msgid "Other" msgstr "" -#: src/Common/LinuxKernel.vala:1060 +#: src/Console/AppConsole.vala:104 +msgid "Override user" +msgstr "" + +#: src/Common/LinuxKernel.vala:1072 #, c-format msgid "Packages Available" msgstr "Dostupni paketi" -#: src/Common/LinuxKernel.vala:1068 +#: src/Common/LinuxKernel.vala:1080 #, c-format msgid "Packages Installed" msgstr "Instalirani paketi" @@ -428,7 +431,7 @@ msgstr "Instalirani paketi" msgid "Please install required packages and try again" msgstr "Instalirajte potrebni paket i pokušajte ponovno" -#: src/Common/LinuxKernel.vala:1293 +#: src/Common/LinuxKernel.vala:1305 msgid "Preparing to remove selected kernels" msgstr "Pripremanje uklanjanja odabranih kernela" @@ -436,19 +439,19 @@ msgstr "Pripremanje uklanjanja odabranih kernela" msgid "Print debug information" msgstr "Ispiši informacije otklanjanja grešaka" -#: src/Gtk/MainWindow.vala:425 +#: src/Gtk/MainWindow.vala:423 msgid "Purge" msgstr "" -#: src/Gtk/MainWindow.vala:343 +#: src/Gtk/MainWindow.vala:341 msgid "Refresh" msgstr "Osvježi" -#: src/Gtk/MainWindow.vala:569 +#: src/Gtk/MainWindow.vala:567 msgid "Refreshing..." msgstr "Osvježavanje..." -#: src/Gtk/MainWindow.vala:376 +#: src/Gtk/MainWindow.vala:374 msgid "Remove" msgstr "Ukloni" @@ -456,7 +459,7 @@ msgstr "Ukloni" msgid "Remove files from application cache" msgstr "Ukloni datoteke iz predmemorije aplikacije" -#: src/Console/AppConsole.vala:94 src/Gtk/MainWindow.vala:426 +#: src/Console/AppConsole.vala:94 src/Gtk/MainWindow.vala:424 msgid "Remove installed kernels older than running kernel" msgstr "" @@ -465,32 +468,32 @@ msgstr "" msgid "Remove specified kernel" msgstr "Ukloni određeni mainline kernel" -#: src/Console/AppConsole.vala:200 src/Console/AppConsole.vala:314 -#: src/Console/AppConsole.vala:343 +#: src/Console/AppConsole.vala:202 src/Console/AppConsole.vala:316 +#: src/Console/AppConsole.vala:345 msgid "Run '" msgstr "" -#: src/Console/AppConsole.vala:118 +#: src/Console/AppConsole.vala:120 msgid "Run the application as admin with pkexec or sudo." msgstr "Pokreni aplikaciju kao administrator sa pkexec ili sudo." -#: src/Common/LinuxKernel.vala:1169 src/Gtk/MainWindow.vala:208 +#: src/Common/LinuxKernel.vala:1181 src/Gtk/MainWindow.vala:208 msgid "Running" msgstr "Pokrenuto" -#: src/Gtk/MainWindow.vala:368 +#: src/Gtk/MainWindow.vala:366 msgid "Select a single kernel to install" msgstr "Odaberi pojedni kernel za instalaciju" -#: src/Gtk/MainWindow.vala:371 +#: src/Gtk/MainWindow.vala:369 msgid "Select the kernel to install" msgstr "Odaberi kernel za instalaciju" -#: src/Gtk/MainWindow.vala:382 +#: src/Gtk/MainWindow.vala:380 msgid "Select the kernels to remove" msgstr "Odaberi kernele za uklanjanje" -#: src/Common/LinuxKernel.vala:1288 +#: src/Common/LinuxKernel.vala:1300 msgid "" "Selected kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -498,7 +501,7 @@ msgstr "" "Odabrani kernel je trenutno pokernut i ne može se ukloniti.\n" " Instalirajte drugi kernel prije uklanjanja trenutnog kernela." -#: src/Gtk/MainWindow.vala:475 src/Gtk/SettingsDialog.vala:55 +#: src/Gtk/MainWindow.vala:473 src/Gtk/SettingsDialog.vala:55 msgid "Settings" msgstr "Postavke" @@ -506,6 +509,10 @@ msgstr "Postavke" msgid "Show" msgstr "Prikaži" +#: src/Gtk/SettingsDialog.vala:182 +msgid "Show N previous major versions " +msgstr "" + #: src/Gtk/AppGtk.vala:186 msgid "Show all options" msgstr "Prikaži sve mogućnosti" @@ -540,11 +547,11 @@ msgstr "Zaustavljeno" msgid "Syntax" msgstr "Sintaksa" -#: src/Console/AppConsole.vala:206 src/Gtk/AppGtk.vala:113 +#: src/Console/AppConsole.vala:208 src/Gtk/AppGtk.vala:113 msgid "Temp" msgstr "" -#: src/Common/LinuxKernel.vala:730 +#: src/Common/LinuxKernel.vala:742 #, c-format msgid "The following kernels will be removed:" msgstr "" @@ -554,11 +561,11 @@ msgstr "" msgid "Third Party Tools" msgstr "Alati treće strane" -#: src/Common/LinuxKernel.vala:1240 src/Gtk/MainWindow.vala:681 +#: src/Common/LinuxKernel.vala:1252 src/Gtk/MainWindow.vala:679 msgid "This kernel is already installed." msgstr "Ovaj kernel je već instaliran." -#: src/Common/LinuxKernel.vala:1341 +#: src/Common/LinuxKernel.vala:1353 msgid "" "This kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -571,15 +578,15 @@ msgstr "" msgid "Translators" msgstr "Prevoditelji" -#: src/Common/LinuxKernel.vala:1325 src/Common/LinuxKernel.vala:1378 +#: src/Common/LinuxKernel.vala:1337 src/Common/LinuxKernel.vala:1390 msgid "Un-install completed" msgstr "Deinstalacija završena" -#: src/Common/LinuxKernel.vala:1328 src/Common/LinuxKernel.vala:1381 +#: src/Common/LinuxKernel.vala:1340 src/Common/LinuxKernel.vala:1393 msgid "Un-install completed with errors" msgstr "Deinstalacija završena s greškama" -#: src/Console/AppConsole.vala:198 src/Gtk/AppGtk.vala:168 +#: src/Console/AppConsole.vala:200 src/Gtk/AppGtk.vala:168 msgid "Unknown option" msgstr "Nepoznata mogućnost" @@ -607,6 +614,10 @@ msgstr "[Upozorenje] Obrisano je neispravno zaključavanje" msgid "seconds" msgstr "" +#, fuzzy +#~ msgid "Hide kernels older than " +#~ msgstr "Sakrij kernele starije od inačice 4.0" + #~ msgid "Booting previous kernels" #~ msgstr "Pokretanje prijašnjeg kernela" diff --git a/po/messages.pot b/po/messages.pot index 5559cec3..df2109c5 100644 --- a/po/messages.pot +++ b/po/messages.pot @@ -6,9 +6,9 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: mainline 1.0.2\n" +"Project-Id-Version: mainline 1.0.3\n" "Report-Msgid-Bugs-To: b.kenyon.w@gmail.com\n" -"POT-Creation-Date: 2020-01-03 20:19-0500\n" +"POT-Creation-Date: 2020-01-04 01:14-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,11 +17,11 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" -#: src/Gtk/MainWindow.vala:496 +#: src/Gtk/MainWindow.vala:494 msgid "About" msgstr "" -#: src/Console/AppConsole.vala:115 +#: src/Console/AppConsole.vala:117 msgid "Admin access is required for running this application." msgstr "" @@ -29,7 +29,7 @@ msgstr "" msgid "Another instance of this application is running" msgstr "" -#: src/Common/LinuxKernel.vala:105 +#: src/Common/LinuxKernel.vala:106 msgid "Architecture" msgstr "" @@ -38,7 +38,7 @@ msgstr "" msgid "Artists" msgstr "" -#: src/Console/AppConsole.vala:102 +#: src/Console/AppConsole.vala:103 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "" @@ -47,7 +47,7 @@ msgstr "" msgid "Authors" msgstr "" -#: src/Common/LinuxKernel.vala:1152 +#: src/Common/LinuxKernel.vala:1164 msgid "Available Kernels" msgstr "" @@ -55,7 +55,7 @@ msgstr "" msgid "Back" msgstr "" -#: src/Console/AppConsole.vala:205 src/Gtk/AppGtk.vala:112 +#: src/Console/AppConsole.vala:207 src/Gtk/AppGtk.vala:112 msgid "Cache" msgstr "" @@ -65,7 +65,7 @@ msgstr "" msgid "Cancel" msgstr "" -#: src/Gtk/MainWindow.vala:464 +#: src/Gtk/MainWindow.vala:462 msgid "Changes" msgstr "" @@ -85,7 +85,7 @@ msgstr "" msgid "Close" msgstr "" -#: src/Console/AppConsole.vala:342 +#: src/Console/AppConsole.vala:344 msgid "Command not specified" msgstr "" @@ -97,7 +97,7 @@ msgstr "" msgid "Commands listed below are not available on this system" msgstr "" -#: src/Common/LinuxKernel.vala:737 +#: src/Common/LinuxKernel.vala:749 #, c-format msgid "Continue ?" msgstr "" @@ -107,15 +107,15 @@ msgstr "" msgid "Contributions" msgstr "" -#: src/Common/LinuxKernel.vala:721 +#: src/Common/LinuxKernel.vala:733 msgid "Could not find any kernels to remove" msgstr "" -#: src/Console/AppConsole.vala:310 src/Gtk/MainWindow.vala:100 +#: src/Console/AppConsole.vala:312 src/Gtk/MainWindow.vala:100 msgid "Could not find requested version" msgstr "" -#: src/Common/LinuxKernel.vala:715 +#: src/Common/LinuxKernel.vala:727 msgid "Could not find running kernel in list!" msgstr "" @@ -145,7 +145,7 @@ msgstr "" msgid "Display" msgstr "" -#: src/Common/LinuxKernel.vala:91 +#: src/Common/LinuxKernel.vala:92 msgid "Distribution" msgstr "" @@ -158,7 +158,7 @@ msgstr "" msgid "Download packages for specified kernel" msgstr "" -#: src/Common/LinuxKernel.vala:1198 +#: src/Common/LinuxKernel.vala:1210 #, c-format msgid "Downloading" msgstr "" @@ -167,11 +167,15 @@ msgstr "" msgid "E" msgstr "" -#: src/Common/LinuxKernel.vala:1226 +#: src/Common/LinuxKernel.vala:1238 #, c-format msgid "ERROR" msgstr "" +#: src/Console/AppConsole.vala:102 +msgid "Enable verbose debugging output" +msgstr "" + #: src/Utility/Gtk/GtkHelper.vala:17 msgid "Error" msgstr "" @@ -200,11 +204,11 @@ msgstr "" msgid "Failed to write file" msgstr "" -#: src/Common/LinuxKernel.vala:396 +#: src/Common/LinuxKernel.vala:408 msgid "Fetching index from kernel.ubuntu.com..." msgstr "" -#: src/Common/LinuxKernel.vala:353 +#: src/Common/LinuxKernel.vala:365 msgid "Fetching index..." msgstr "" @@ -242,10 +246,6 @@ msgstr "" msgid "File saved" msgstr "" -#: src/Gtk/SettingsDialog.vala:182 -msgid "Hide kernels older than " -msgstr "" - #: src/Gtk/SettingsDialog.vala:168 msgid "Hide unstable and RC releases" msgstr "" @@ -258,19 +258,19 @@ msgstr "" msgid "Ignore this update" msgstr "" -#: src/Common/LinuxKernel.vala:259 +#: src/Common/LinuxKernel.vala:260 msgid "Index is fresh" msgstr "" -#: src/Common/LinuxKernel.vala:256 +#: src/Common/LinuxKernel.vala:257 msgid "Index is stale" msgstr "" -#: src/Gtk/UpdateNotificationWindow.vala:147 src/Gtk/MainWindow.vala:359 +#: src/Gtk/UpdateNotificationWindow.vala:147 src/Gtk/MainWindow.vala:357 msgid "Install" msgstr "" -#: src/Common/LinuxKernel.vala:794 +#: src/Common/LinuxKernel.vala:806 #, c-format msgid "Install Linux v%s ? (y/n): " msgstr "" @@ -291,20 +291,20 @@ msgstr "" msgid "Install this kernel" msgstr "" -#: src/Common/LinuxKernel.vala:1272 +#: src/Common/LinuxKernel.vala:1284 msgid "Installation completed with errors" msgstr "" -#: src/Common/LinuxKernel.vala:1269 +#: src/Common/LinuxKernel.vala:1281 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" -#: src/Common/LinuxKernel.vala:1169 src/Gtk/MainWindow.vala:208 +#: src/Common/LinuxKernel.vala:1181 src/Gtk/MainWindow.vala:208 msgid "Installed" msgstr "" -#: src/Gtk/MainWindow.vala:350 src/Gtk/MainWindow.vala:550 -#: src/Gtk/MainWindow.vala:686 src/Utility/TeeJee.System.vala:281 +#: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:548 +#: src/Gtk/MainWindow.vala:684 src/Utility/TeeJee.System.vala:281 msgid "Internet connection is not active" msgstr "" @@ -316,16 +316,16 @@ msgstr "" msgid "Kernel" msgstr "" -#: src/Gtk/MainWindow.vala:534 +#: src/Gtk/MainWindow.vala:532 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "" -#: src/Common/LinuxKernel.vala:776 src/Console/AppConsole.vala:368 +#: src/Common/LinuxKernel.vala:788 src/Console/AppConsole.vala:370 #, c-format msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:765 src/Console/AppConsole.vala:361 +#: src/Common/LinuxKernel.vala:777 src/Console/AppConsole.vala:363 #, c-format msgid "Latest update" msgstr "" @@ -346,11 +346,11 @@ msgstr "" msgid "Missing Icon" msgstr "" -#: src/Gtk/MainWindow.vala:368 +#: src/Gtk/MainWindow.vala:366 msgid "Multiple Kernels Selected" msgstr "" -#: src/Console/AppConsole.vala:292 +#: src/Console/AppConsole.vala:294 msgid "Multiple kernels selected for installation. Select only one." msgstr "" @@ -358,21 +358,21 @@ msgstr "" msgid "No" msgstr "" -#: src/Gtk/MainWindow.vala:350 src/Gtk/MainWindow.vala:550 -#: src/Gtk/MainWindow.vala:686 +#: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:548 +#: src/Gtk/MainWindow.vala:684 msgid "No Internet" msgstr "" -#: src/Console/AppConsole.vala:286 src/Console/AppConsole.vala:323 +#: src/Console/AppConsole.vala:288 src/Console/AppConsole.vala:325 msgid "No kernels specified" msgstr "" -#: src/Common/LinuxKernel.vala:784 src/Console/AppConsole.vala:373 -#: src/Console/AppConsole.vala:431 src/Gtk/MainWindow.vala:796 +#: src/Common/LinuxKernel.vala:796 src/Console/AppConsole.vala:375 +#: src/Console/AppConsole.vala:433 src/Gtk/MainWindow.vala:794 msgid "No updates found" msgstr "" -#: src/Gtk/MainWindow.vala:371 src/Gtk/MainWindow.vala:382 +#: src/Gtk/MainWindow.vala:369 src/Gtk/MainWindow.vala:380 msgid "Not Selected" msgstr "" @@ -388,7 +388,7 @@ msgstr "" msgid "Notify if a point release is available" msgstr "" -#: src/Common/LinuxKernel.vala:1217 +#: src/Common/LinuxKernel.vala:1229 #: src/Utility/Gtk/CustomMessageDialog.vala:150 #: src/Utility/Gtk/CustomMessageDialog.vala:154 #, c-format @@ -403,12 +403,16 @@ msgstr "" msgid "Other" msgstr "" -#: src/Common/LinuxKernel.vala:1060 +#: src/Console/AppConsole.vala:104 +msgid "Override user" +msgstr "" + +#: src/Common/LinuxKernel.vala:1072 #, c-format msgid "Packages Available" msgstr "" -#: src/Common/LinuxKernel.vala:1068 +#: src/Common/LinuxKernel.vala:1080 #, c-format msgid "Packages Installed" msgstr "" @@ -417,7 +421,7 @@ msgstr "" msgid "Please install required packages and try again" msgstr "" -#: src/Common/LinuxKernel.vala:1293 +#: src/Common/LinuxKernel.vala:1305 msgid "Preparing to remove selected kernels" msgstr "" @@ -425,19 +429,19 @@ msgstr "" msgid "Print debug information" msgstr "" -#: src/Gtk/MainWindow.vala:425 +#: src/Gtk/MainWindow.vala:423 msgid "Purge" msgstr "" -#: src/Gtk/MainWindow.vala:343 +#: src/Gtk/MainWindow.vala:341 msgid "Refresh" msgstr "" -#: src/Gtk/MainWindow.vala:569 +#: src/Gtk/MainWindow.vala:567 msgid "Refreshing..." msgstr "" -#: src/Gtk/MainWindow.vala:376 +#: src/Gtk/MainWindow.vala:374 msgid "Remove" msgstr "" @@ -445,7 +449,7 @@ msgstr "" msgid "Remove files from application cache" msgstr "" -#: src/Console/AppConsole.vala:94 src/Gtk/MainWindow.vala:426 +#: src/Console/AppConsole.vala:94 src/Gtk/MainWindow.vala:424 msgid "Remove installed kernels older than running kernel" msgstr "" @@ -453,38 +457,38 @@ msgstr "" msgid "Remove specified kernel" msgstr "" -#: src/Console/AppConsole.vala:200 src/Console/AppConsole.vala:314 -#: src/Console/AppConsole.vala:343 +#: src/Console/AppConsole.vala:202 src/Console/AppConsole.vala:316 +#: src/Console/AppConsole.vala:345 msgid "Run '" msgstr "" -#: src/Console/AppConsole.vala:118 +#: src/Console/AppConsole.vala:120 msgid "Run the application as admin with pkexec or sudo." msgstr "" -#: src/Common/LinuxKernel.vala:1169 src/Gtk/MainWindow.vala:208 +#: src/Common/LinuxKernel.vala:1181 src/Gtk/MainWindow.vala:208 msgid "Running" msgstr "" -#: src/Gtk/MainWindow.vala:368 +#: src/Gtk/MainWindow.vala:366 msgid "Select a single kernel to install" msgstr "" -#: src/Gtk/MainWindow.vala:371 +#: src/Gtk/MainWindow.vala:369 msgid "Select the kernel to install" msgstr "" -#: src/Gtk/MainWindow.vala:382 +#: src/Gtk/MainWindow.vala:380 msgid "Select the kernels to remove" msgstr "" -#: src/Common/LinuxKernel.vala:1288 +#: src/Common/LinuxKernel.vala:1300 msgid "" "Selected kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." msgstr "" -#: src/Gtk/MainWindow.vala:475 src/Gtk/SettingsDialog.vala:55 +#: src/Gtk/MainWindow.vala:473 src/Gtk/SettingsDialog.vala:55 msgid "Settings" msgstr "" @@ -492,6 +496,10 @@ msgstr "" msgid "Show" msgstr "" +#: src/Gtk/SettingsDialog.vala:182 +msgid "Show N previous major versions " +msgstr "" + #: src/Gtk/AppGtk.vala:186 msgid "Show all options" msgstr "" @@ -524,11 +532,11 @@ msgstr "" msgid "Syntax" msgstr "" -#: src/Console/AppConsole.vala:206 src/Gtk/AppGtk.vala:113 +#: src/Console/AppConsole.vala:208 src/Gtk/AppGtk.vala:113 msgid "Temp" msgstr "" -#: src/Common/LinuxKernel.vala:730 +#: src/Common/LinuxKernel.vala:742 #, c-format msgid "The following kernels will be removed:" msgstr "" @@ -538,11 +546,11 @@ msgstr "" msgid "Third Party Tools" msgstr "" -#: src/Common/LinuxKernel.vala:1240 src/Gtk/MainWindow.vala:681 +#: src/Common/LinuxKernel.vala:1252 src/Gtk/MainWindow.vala:679 msgid "This kernel is already installed." msgstr "" -#: src/Common/LinuxKernel.vala:1341 +#: src/Common/LinuxKernel.vala:1353 msgid "" "This kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -553,15 +561,15 @@ msgstr "" msgid "Translators" msgstr "" -#: src/Common/LinuxKernel.vala:1325 src/Common/LinuxKernel.vala:1378 +#: src/Common/LinuxKernel.vala:1337 src/Common/LinuxKernel.vala:1390 msgid "Un-install completed" msgstr "" -#: src/Common/LinuxKernel.vala:1328 src/Common/LinuxKernel.vala:1381 +#: src/Common/LinuxKernel.vala:1340 src/Common/LinuxKernel.vala:1393 msgid "Un-install completed with errors" msgstr "" -#: src/Console/AppConsole.vala:198 src/Gtk/AppGtk.vala:168 +#: src/Console/AppConsole.vala:200 src/Gtk/AppGtk.vala:168 msgid "Unknown option" msgstr "" diff --git a/po/nl.po b/po/nl.po index bb820d23..9487c7bd 100644 --- a/po/nl.po +++ b/po/nl.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu 2.2\n" "Report-Msgid-Bugs-To: b.kenyon.w@gmail.com\n" -"POT-Creation-Date: 2020-01-03 19:34-0500\n" +"POT-Creation-Date: 2020-01-04 00:31-0500\n" "PO-Revision-Date: 2017-04-30 11:50+0200\n" "Last-Translator: Heimen Stoffels \n" "Language-Team: \n" @@ -18,11 +18,11 @@ msgstr "" "X-Generator: Poedit 2.0.1\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: src/Gtk/MainWindow.vala:496 +#: src/Gtk/MainWindow.vala:494 msgid "About" msgstr "Over" -#: src/Console/AppConsole.vala:115 +#: src/Console/AppConsole.vala:117 msgid "Admin access is required for running this application." msgstr "" "U heeft administrator-rechten nodig om deze applicatie te kunnen draaien." @@ -31,7 +31,7 @@ msgstr "" msgid "Another instance of this application is running" msgstr "Er is al een venster geopend van deze applicatie" -#: src/Common/LinuxKernel.vala:105 +#: src/Common/LinuxKernel.vala:106 #, fuzzy msgid "Architecture" msgstr "Systeemarchitectuur" @@ -41,7 +41,7 @@ msgstr "Systeemarchitectuur" msgid "Artists" msgstr "Artiesten" -#: src/Console/AppConsole.vala:102 +#: src/Console/AppConsole.vala:103 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "" @@ -50,7 +50,7 @@ msgstr "" msgid "Authors" msgstr "Auteurs" -#: src/Common/LinuxKernel.vala:1152 +#: src/Common/LinuxKernel.vala:1164 msgid "Available Kernels" msgstr "Beschikbare kernels" @@ -58,7 +58,7 @@ msgstr "Beschikbare kernels" msgid "Back" msgstr "Terug" -#: src/Console/AppConsole.vala:205 src/Gtk/AppGtk.vala:112 +#: src/Console/AppConsole.vala:207 src/Gtk/AppGtk.vala:112 msgid "Cache" msgstr "" @@ -68,7 +68,7 @@ msgstr "" msgid "Cancel" msgstr "Annuleren" -#: src/Gtk/MainWindow.vala:464 +#: src/Gtk/MainWindow.vala:462 msgid "Changes" msgstr "Wijzigingen" @@ -89,7 +89,7 @@ msgstr "Controleren op kernel-updates" msgid "Close" msgstr "Sluiten" -#: src/Console/AppConsole.vala:342 +#: src/Console/AppConsole.vala:344 msgid "Command not specified" msgstr "" @@ -101,7 +101,7 @@ msgstr "" msgid "Commands listed below are not available on this system" msgstr "De onderstaande opdrachten zijn niet beschikbaar op dit systeem" -#: src/Common/LinuxKernel.vala:737 +#: src/Common/LinuxKernel.vala:749 #, c-format msgid "Continue ?" msgstr "" @@ -111,16 +111,16 @@ msgstr "" msgid "Contributions" msgstr "Bijdragen" -#: src/Common/LinuxKernel.vala:721 +#: src/Common/LinuxKernel.vala:733 #, fuzzy msgid "Could not find any kernels to remove" msgstr "Selecteer de te verwijderen kernels" -#: src/Console/AppConsole.vala:310 src/Gtk/MainWindow.vala:100 +#: src/Console/AppConsole.vala:312 src/Gtk/MainWindow.vala:100 msgid "Could not find requested version" msgstr "De vereiste versie kan niet worden gevonden" -#: src/Common/LinuxKernel.vala:715 +#: src/Common/LinuxKernel.vala:727 #, fuzzy msgid "Could not find running kernel in list!" msgstr "De vereiste versie kan niet worden gevonden" @@ -151,7 +151,7 @@ msgstr "Map niet gevonden" msgid "Display" msgstr "Weergave" -#: src/Common/LinuxKernel.vala:91 +#: src/Common/LinuxKernel.vala:92 msgid "Distribution" msgstr "Distributie" @@ -164,7 +164,7 @@ msgstr "Documenteerders" msgid "Download packages for specified kernel" msgstr "Pakketten downloaden voor opgegeven kernel" -#: src/Common/LinuxKernel.vala:1198 +#: src/Common/LinuxKernel.vala:1210 #, c-format msgid "Downloading" msgstr "Bezig met downloaden" @@ -173,11 +173,15 @@ msgstr "Bezig met downloaden" msgid "E" msgstr "E" -#: src/Common/LinuxKernel.vala:1226 +#: src/Common/LinuxKernel.vala:1238 #, c-format msgid "ERROR" msgstr "FOUT" +#: src/Console/AppConsole.vala:102 +msgid "Enable verbose debugging output" +msgstr "" + #: src/Utility/Gtk/GtkHelper.vala:17 msgid "Error" msgstr "Fout" @@ -206,11 +210,11 @@ msgstr "Lezen van bestand is mislukt" msgid "Failed to write file" msgstr "Schrijven naar bestand is mislukt" -#: src/Common/LinuxKernel.vala:396 +#: src/Common/LinuxKernel.vala:408 msgid "Fetching index from kernel.ubuntu.com..." msgstr "Bezig met ophalen van index van kernel.ubuntu.com..." -#: src/Common/LinuxKernel.vala:353 +#: src/Common/LinuxKernel.vala:365 msgid "Fetching index..." msgstr "" @@ -248,11 +252,6 @@ msgstr "Bestand niet gevonden: %s" msgid "File saved" msgstr "Bestand opgeslagen" -#: src/Gtk/SettingsDialog.vala:182 -#, fuzzy -msgid "Hide kernels older than " -msgstr "Kernels ouder dan 4.0 verbergen" - #: src/Gtk/SettingsDialog.vala:168 msgid "Hide unstable and RC releases" msgstr "Instabiele en RC-uitgaven verbergen" @@ -265,19 +264,19 @@ msgstr "uur" msgid "Ignore this update" msgstr "Deze update negeren" -#: src/Common/LinuxKernel.vala:259 +#: src/Common/LinuxKernel.vala:260 msgid "Index is fresh" msgstr "De index is up-to-date" -#: src/Common/LinuxKernel.vala:256 +#: src/Common/LinuxKernel.vala:257 msgid "Index is stale" msgstr "De index is verouderd" -#: src/Gtk/UpdateNotificationWindow.vala:147 src/Gtk/MainWindow.vala:359 +#: src/Gtk/UpdateNotificationWindow.vala:147 src/Gtk/MainWindow.vala:357 msgid "Install" msgstr "Installeren" -#: src/Common/LinuxKernel.vala:794 +#: src/Common/LinuxKernel.vala:806 #, c-format msgid "Install Linux v%s ? (y/n): " msgstr "" @@ -299,22 +298,22 @@ msgstr "Opgegeven mainline-kernel installeren" msgid "Install this kernel" msgstr "Deze kernel installeren" -#: src/Common/LinuxKernel.vala:1272 +#: src/Common/LinuxKernel.vala:1284 msgid "Installation completed with errors" msgstr "De installatie is foutloos voltooid" -#: src/Common/LinuxKernel.vala:1269 +#: src/Common/LinuxKernel.vala:1281 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "De installatie is voltooid. Herstart de computer om de nieuwe kernel te " "gebruiken." -#: src/Common/LinuxKernel.vala:1169 src/Gtk/MainWindow.vala:208 +#: src/Common/LinuxKernel.vala:1181 src/Gtk/MainWindow.vala:208 msgid "Installed" msgstr "Geïnstalleerd" -#: src/Gtk/MainWindow.vala:350 src/Gtk/MainWindow.vala:550 -#: src/Gtk/MainWindow.vala:686 src/Utility/TeeJee.System.vala:281 +#: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:548 +#: src/Gtk/MainWindow.vala:684 src/Utility/TeeJee.System.vala:281 msgid "Internet connection is not active" msgstr "U bent niet verbonden met het internet" @@ -327,16 +326,16 @@ msgstr "U bent niet verbonden met het internet" msgid "Kernel" msgstr "Kernel" -#: src/Gtk/MainWindow.vala:534 +#: src/Gtk/MainWindow.vala:532 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Kernel-upgradehulpmiddel voor op Ubuntu-gebaseerde distributies" -#: src/Common/LinuxKernel.vala:776 src/Console/AppConsole.vala:368 +#: src/Common/LinuxKernel.vala:788 src/Console/AppConsole.vala:370 #, c-format msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:765 src/Console/AppConsole.vala:361 +#: src/Common/LinuxKernel.vala:777 src/Console/AppConsole.vala:363 #, c-format msgid "Latest update" msgstr "" @@ -359,11 +358,11 @@ msgstr "Alle beschikbare mainline-kernels weergeven" msgid "Missing Icon" msgstr "Ontbrekend pictogram" -#: src/Gtk/MainWindow.vala:368 +#: src/Gtk/MainWindow.vala:366 msgid "Multiple Kernels Selected" msgstr "Meerdere kernels geselecteerd" -#: src/Console/AppConsole.vala:292 +#: src/Console/AppConsole.vala:294 msgid "Multiple kernels selected for installation. Select only one." msgstr "" "Er zijn meerdere te installeren kernels geselecteerd. Selecteer er slechts " @@ -373,21 +372,21 @@ msgstr "" msgid "No" msgstr "" -#: src/Gtk/MainWindow.vala:350 src/Gtk/MainWindow.vala:550 -#: src/Gtk/MainWindow.vala:686 +#: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:548 +#: src/Gtk/MainWindow.vala:684 msgid "No Internet" msgstr "Geen internetverbinding" -#: src/Console/AppConsole.vala:286 src/Console/AppConsole.vala:323 +#: src/Console/AppConsole.vala:288 src/Console/AppConsole.vala:325 msgid "No kernels specified" msgstr "" -#: src/Common/LinuxKernel.vala:784 src/Console/AppConsole.vala:373 -#: src/Console/AppConsole.vala:431 src/Gtk/MainWindow.vala:796 +#: src/Common/LinuxKernel.vala:796 src/Console/AppConsole.vala:375 +#: src/Console/AppConsole.vala:433 src/Gtk/MainWindow.vala:794 msgid "No updates found" msgstr "Geen updates gevonden" -#: src/Gtk/MainWindow.vala:371 src/Gtk/MainWindow.vala:382 +#: src/Gtk/MainWindow.vala:369 src/Gtk/MainWindow.vala:380 msgid "Not Selected" msgstr "Niet geselecteerd" @@ -403,7 +402,7 @@ msgstr "Melding weergeven als er een grote update beschikbaar is" msgid "Notify if a point release is available" msgstr "Melding weergeven als er een puntupdate beschikbaar is" -#: src/Common/LinuxKernel.vala:1217 +#: src/Common/LinuxKernel.vala:1229 #: src/Utility/Gtk/CustomMessageDialog.vala:150 #: src/Utility/Gtk/CustomMessageDialog.vala:154 #, c-format @@ -418,12 +417,16 @@ msgstr "Opties" msgid "Other" msgstr "" -#: src/Common/LinuxKernel.vala:1060 +#: src/Console/AppConsole.vala:104 +msgid "Override user" +msgstr "" + +#: src/Common/LinuxKernel.vala:1072 #, c-format msgid "Packages Available" msgstr "Beschikbare pakketten" -#: src/Common/LinuxKernel.vala:1068 +#: src/Common/LinuxKernel.vala:1080 #, c-format msgid "Packages Installed" msgstr "Geïnstalleerde pakketten" @@ -432,7 +435,7 @@ msgstr "Geïnstalleerde pakketten" msgid "Please install required packages and try again" msgstr "Installeer de vereiste pakketten en probeer het opnieuw" -#: src/Common/LinuxKernel.vala:1293 +#: src/Common/LinuxKernel.vala:1305 msgid "Preparing to remove selected kernels" msgstr "Bezig met voorbereiden van verwijderen van geselecteerde kernels" @@ -440,19 +443,19 @@ msgstr "Bezig met voorbereiden van verwijderen van geselecteerde kernels" msgid "Print debug information" msgstr "Foutopsporingsinformatie printen" -#: src/Gtk/MainWindow.vala:425 +#: src/Gtk/MainWindow.vala:423 msgid "Purge" msgstr "" -#: src/Gtk/MainWindow.vala:343 +#: src/Gtk/MainWindow.vala:341 msgid "Refresh" msgstr "Verversen" -#: src/Gtk/MainWindow.vala:569 +#: src/Gtk/MainWindow.vala:567 msgid "Refreshing..." msgstr "Bezig met verversen..." -#: src/Gtk/MainWindow.vala:376 +#: src/Gtk/MainWindow.vala:374 msgid "Remove" msgstr "Verwijderen" @@ -460,7 +463,7 @@ msgstr "Verwijderen" msgid "Remove files from application cache" msgstr "Bestanden verwijderen uit applicatie-cache" -#: src/Console/AppConsole.vala:94 src/Gtk/MainWindow.vala:426 +#: src/Console/AppConsole.vala:94 src/Gtk/MainWindow.vala:424 msgid "Remove installed kernels older than running kernel" msgstr "" @@ -469,33 +472,33 @@ msgstr "" msgid "Remove specified kernel" msgstr "Opgegeven mainline-kernel verwijderen" -#: src/Console/AppConsole.vala:200 src/Console/AppConsole.vala:314 -#: src/Console/AppConsole.vala:343 +#: src/Console/AppConsole.vala:202 src/Console/AppConsole.vala:316 +#: src/Console/AppConsole.vala:345 msgid "Run '" msgstr "" -#: src/Console/AppConsole.vala:118 +#: src/Console/AppConsole.vala:120 #, fuzzy msgid "Run the application as admin with pkexec or sudo." msgstr "Draai de applicatie als root of m.b.v. gksu/sudo." -#: src/Common/LinuxKernel.vala:1169 src/Gtk/MainWindow.vala:208 +#: src/Common/LinuxKernel.vala:1181 src/Gtk/MainWindow.vala:208 msgid "Running" msgstr "Bezig met draaien" -#: src/Gtk/MainWindow.vala:368 +#: src/Gtk/MainWindow.vala:366 msgid "Select a single kernel to install" msgstr "Selecteer een enkele te installeren kernel" -#: src/Gtk/MainWindow.vala:371 +#: src/Gtk/MainWindow.vala:369 msgid "Select the kernel to install" msgstr "Selecteer de te installeren kernel" -#: src/Gtk/MainWindow.vala:382 +#: src/Gtk/MainWindow.vala:380 msgid "Select the kernels to remove" msgstr "Selecteer de te verwijderen kernels" -#: src/Common/LinuxKernel.vala:1288 +#: src/Common/LinuxKernel.vala:1300 msgid "" "Selected kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -504,7 +507,7 @@ msgstr "" "verwijderd.\n" " Installeer een andere kernel voordat u deze verwijdert." -#: src/Gtk/MainWindow.vala:475 src/Gtk/SettingsDialog.vala:55 +#: src/Gtk/MainWindow.vala:473 src/Gtk/SettingsDialog.vala:55 msgid "Settings" msgstr "Instellingen" @@ -512,6 +515,10 @@ msgstr "Instellingen" msgid "Show" msgstr "" +#: src/Gtk/SettingsDialog.vala:182 +msgid "Show N previous major versions " +msgstr "" + #: src/Gtk/AppGtk.vala:186 msgid "Show all options" msgstr "Alle opties weergeven" @@ -546,11 +553,11 @@ msgstr "Gestopt" msgid "Syntax" msgstr "Syntax" -#: src/Console/AppConsole.vala:206 src/Gtk/AppGtk.vala:113 +#: src/Console/AppConsole.vala:208 src/Gtk/AppGtk.vala:113 msgid "Temp" msgstr "" -#: src/Common/LinuxKernel.vala:730 +#: src/Common/LinuxKernel.vala:742 #, c-format msgid "The following kernels will be removed:" msgstr "" @@ -560,11 +567,11 @@ msgstr "" msgid "Third Party Tools" msgstr "Externe hulpmiddelen" -#: src/Common/LinuxKernel.vala:1240 src/Gtk/MainWindow.vala:681 +#: src/Common/LinuxKernel.vala:1252 src/Gtk/MainWindow.vala:679 msgid "This kernel is already installed." msgstr "Deze kernel is al geïnstalleerd." -#: src/Common/LinuxKernel.vala:1341 +#: src/Common/LinuxKernel.vala:1353 msgid "" "This kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -577,15 +584,15 @@ msgstr "" msgid "Translators" msgstr "Vertalers" -#: src/Common/LinuxKernel.vala:1325 src/Common/LinuxKernel.vala:1378 +#: src/Common/LinuxKernel.vala:1337 src/Common/LinuxKernel.vala:1390 msgid "Un-install completed" msgstr "Deïnstalleren voltooid" -#: src/Common/LinuxKernel.vala:1328 src/Common/LinuxKernel.vala:1381 +#: src/Common/LinuxKernel.vala:1340 src/Common/LinuxKernel.vala:1393 msgid "Un-install completed with errors" msgstr "Deïnstalleren voltooid, maar met fouten" -#: src/Console/AppConsole.vala:198 src/Gtk/AppGtk.vala:168 +#: src/Console/AppConsole.vala:200 src/Gtk/AppGtk.vala:168 msgid "Unknown option" msgstr "Onbekende optie" @@ -613,6 +620,10 @@ msgstr "[Waarschuwing] Ongeldige lock verwijderd" msgid "seconds" msgstr "" +#, fuzzy +#~ msgid "Hide kernels older than " +#~ msgstr "Kernels ouder dan 4.0 verbergen" + #~ msgid "Booting previous kernels" #~ msgstr "Opstarten van vorige kernels" diff --git a/po/pl.po b/po/pl.po index b3604370..91b8e591 100644 --- a/po/pl.po +++ b/po/pl.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu\n" "Report-Msgid-Bugs-To: b.kenyon.w@gmail.com\n" -"POT-Creation-Date: 2020-01-03 19:34-0500\n" +"POT-Creation-Date: 2020-01-04 00:31-0500\n" "PO-Revision-Date: 2017-08-12 15:26+0200\n" "Last-Translator: \n" "Language-Team: Polish\n" @@ -16,11 +16,11 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Poedit 1.8.7.1\n" -#: src/Gtk/MainWindow.vala:496 +#: src/Gtk/MainWindow.vala:494 msgid "About" msgstr "O programie" -#: src/Console/AppConsole.vala:115 +#: src/Console/AppConsole.vala:117 msgid "Admin access is required for running this application." msgstr "Aby uruchomić tę aplikację niezbędne są prawa administratora." @@ -28,7 +28,7 @@ msgstr "Aby uruchomić tę aplikację niezbędne są prawa administratora." msgid "Another instance of this application is running" msgstr "Inna instancja tej aplikacji jest uruchomiona" -#: src/Common/LinuxKernel.vala:105 +#: src/Common/LinuxKernel.vala:106 #, fuzzy msgid "Architecture" msgstr "Architektura systemu" @@ -38,7 +38,7 @@ msgstr "Architektura systemu" msgid "Artists" msgstr "Artyści" -#: src/Console/AppConsole.vala:102 +#: src/Console/AppConsole.vala:103 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "" @@ -47,7 +47,7 @@ msgstr "" msgid "Authors" msgstr "Аutorzy" -#: src/Common/LinuxKernel.vala:1152 +#: src/Common/LinuxKernel.vala:1164 msgid "Available Kernels" msgstr "Dostępne jądra" @@ -55,7 +55,7 @@ msgstr "Dostępne jądra" msgid "Back" msgstr "Wstecz" -#: src/Console/AppConsole.vala:205 src/Gtk/AppGtk.vala:112 +#: src/Console/AppConsole.vala:207 src/Gtk/AppGtk.vala:112 msgid "Cache" msgstr "" @@ -65,7 +65,7 @@ msgstr "" msgid "Cancel" msgstr "Anuluj" -#: src/Gtk/MainWindow.vala:464 +#: src/Gtk/MainWindow.vala:462 msgid "Changes" msgstr "Zmiany" @@ -86,7 +86,7 @@ msgstr "Sprawdź nowe wersje jądra" msgid "Close" msgstr "Zamknij" -#: src/Console/AppConsole.vala:342 +#: src/Console/AppConsole.vala:344 msgid "Command not specified" msgstr "" @@ -98,7 +98,7 @@ msgstr "" msgid "Commands listed below are not available on this system" msgstr "Poniższe polecenia nie są dostępne na tym systemie" -#: src/Common/LinuxKernel.vala:737 +#: src/Common/LinuxKernel.vala:749 #, c-format msgid "Continue ?" msgstr "" @@ -108,16 +108,16 @@ msgstr "" msgid "Contributions" msgstr "Wkład" -#: src/Common/LinuxKernel.vala:721 +#: src/Common/LinuxKernel.vala:733 #, fuzzy msgid "Could not find any kernels to remove" msgstr "Wybierz jądro do usunięcia" -#: src/Console/AppConsole.vala:310 src/Gtk/MainWindow.vala:100 +#: src/Console/AppConsole.vala:312 src/Gtk/MainWindow.vala:100 msgid "Could not find requested version" msgstr "Nie można odnaleźć żądanej wersji" -#: src/Common/LinuxKernel.vala:715 +#: src/Common/LinuxKernel.vala:727 #, fuzzy msgid "Could not find running kernel in list!" msgstr "Nie można odnaleźć żądanej wersji" @@ -148,7 +148,7 @@ msgstr "Katalog nie odnaleziony" msgid "Display" msgstr "Pokaż" -#: src/Common/LinuxKernel.vala:91 +#: src/Common/LinuxKernel.vala:92 msgid "Distribution" msgstr "Dystrybucja" @@ -161,7 +161,7 @@ msgstr "Dokumentujący" msgid "Download packages for specified kernel" msgstr "Pobierz pakiety dla wybranego jądra" -#: src/Common/LinuxKernel.vala:1198 +#: src/Common/LinuxKernel.vala:1210 #, c-format msgid "Downloading" msgstr "Pobieranie" @@ -170,11 +170,15 @@ msgstr "Pobieranie" msgid "E" msgstr "E" -#: src/Common/LinuxKernel.vala:1226 +#: src/Common/LinuxKernel.vala:1238 #, c-format msgid "ERROR" msgstr "BŁĄD" +#: src/Console/AppConsole.vala:102 +msgid "Enable verbose debugging output" +msgstr "" + #: src/Utility/Gtk/GtkHelper.vala:17 msgid "Error" msgstr "Błąd" @@ -203,11 +207,11 @@ msgstr "Nie udało się odczytać pliku" msgid "Failed to write file" msgstr "Nie udało się zapisać pliku" -#: src/Common/LinuxKernel.vala:396 +#: src/Common/LinuxKernel.vala:408 msgid "Fetching index from kernel.ubuntu.com..." msgstr "Pobieranie indeksu z kernel.ubuntu.com..." -#: src/Common/LinuxKernel.vala:353 +#: src/Common/LinuxKernel.vala:365 msgid "Fetching index..." msgstr "" @@ -245,11 +249,6 @@ msgstr "Nie odnaleziono pliku: %s" msgid "File saved" msgstr "Plik zapisany" -#: src/Gtk/SettingsDialog.vala:182 -#, fuzzy -msgid "Hide kernels older than " -msgstr "Ukryj jądra starsze niż 4.0" - #: src/Gtk/SettingsDialog.vala:168 msgid "Hide unstable and RC releases" msgstr "Ukryj wydania niestabilne i RC" @@ -262,19 +261,19 @@ msgstr "Godzin(y)" msgid "Ignore this update" msgstr "Zignoruj tę aktualizację" -#: src/Common/LinuxKernel.vala:259 +#: src/Common/LinuxKernel.vala:260 msgid "Index is fresh" msgstr "Indeks jest aktualny" -#: src/Common/LinuxKernel.vala:256 +#: src/Common/LinuxKernel.vala:257 msgid "Index is stale" msgstr "Indeks jest nieaktualny" -#: src/Gtk/UpdateNotificationWindow.vala:147 src/Gtk/MainWindow.vala:359 +#: src/Gtk/UpdateNotificationWindow.vala:147 src/Gtk/MainWindow.vala:357 msgid "Install" msgstr "Zainstaluj" -#: src/Common/LinuxKernel.vala:794 +#: src/Common/LinuxKernel.vala:806 #, c-format msgid "Install Linux v%s ? (y/n): " msgstr "" @@ -296,22 +295,22 @@ msgstr "Zainstaluj wybrane jądro" msgid "Install this kernel" msgstr "Zainstaluj to jądro" -#: src/Common/LinuxKernel.vala:1272 +#: src/Common/LinuxKernel.vala:1284 msgid "Installation completed with errors" msgstr "Instalacja zakończona z błędami" -#: src/Common/LinuxKernel.vala:1269 +#: src/Common/LinuxKernel.vala:1281 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "Instalacja zakończona. Aby korzystać z nowego jądra, konieczne jest ponowne " "uruchomienie." -#: src/Common/LinuxKernel.vala:1169 src/Gtk/MainWindow.vala:208 +#: src/Common/LinuxKernel.vala:1181 src/Gtk/MainWindow.vala:208 msgid "Installed" msgstr "Zainstalowany" -#: src/Gtk/MainWindow.vala:350 src/Gtk/MainWindow.vala:550 -#: src/Gtk/MainWindow.vala:686 src/Utility/TeeJee.System.vala:281 +#: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:548 +#: src/Gtk/MainWindow.vala:684 src/Utility/TeeJee.System.vala:281 msgid "Internet connection is not active" msgstr "Brak połączenia z internetem" @@ -324,16 +323,16 @@ msgstr "Brak połączenia z internetem" msgid "Kernel" msgstr "Jądro" -#: src/Gtk/MainWindow.vala:534 +#: src/Gtk/MainWindow.vala:532 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Narzędzie uaktualniania jądra dla dystrybucji z rodziny Ubuntu" -#: src/Common/LinuxKernel.vala:776 src/Console/AppConsole.vala:368 +#: src/Common/LinuxKernel.vala:788 src/Console/AppConsole.vala:370 #, c-format msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:765 src/Console/AppConsole.vala:361 +#: src/Common/LinuxKernel.vala:777 src/Console/AppConsole.vala:363 #, c-format msgid "Latest update" msgstr "" @@ -356,11 +355,11 @@ msgstr "Pokaż wszystkie dostępne jądra" msgid "Missing Icon" msgstr "Brakująca ikona" -#: src/Gtk/MainWindow.vala:368 +#: src/Gtk/MainWindow.vala:366 msgid "Multiple Kernels Selected" msgstr "Wybrano kilka jąder" -#: src/Console/AppConsole.vala:292 +#: src/Console/AppConsole.vala:294 msgid "Multiple kernels selected for installation. Select only one." msgstr "Wybrano kilka jąder do instalacji. Wybierz tylko jedno." @@ -368,21 +367,21 @@ msgstr "Wybrano kilka jąder do instalacji. Wybierz tylko jedno." msgid "No" msgstr "" -#: src/Gtk/MainWindow.vala:350 src/Gtk/MainWindow.vala:550 -#: src/Gtk/MainWindow.vala:686 +#: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:548 +#: src/Gtk/MainWindow.vala:684 msgid "No Internet" msgstr "Brak internetu" -#: src/Console/AppConsole.vala:286 src/Console/AppConsole.vala:323 +#: src/Console/AppConsole.vala:288 src/Console/AppConsole.vala:325 msgid "No kernels specified" msgstr "" -#: src/Common/LinuxKernel.vala:784 src/Console/AppConsole.vala:373 -#: src/Console/AppConsole.vala:431 src/Gtk/MainWindow.vala:796 +#: src/Common/LinuxKernel.vala:796 src/Console/AppConsole.vala:375 +#: src/Console/AppConsole.vala:433 src/Gtk/MainWindow.vala:794 msgid "No updates found" msgstr "Nie znaleziono aktualizacji" -#: src/Gtk/MainWindow.vala:371 src/Gtk/MainWindow.vala:382 +#: src/Gtk/MainWindow.vala:369 src/Gtk/MainWindow.vala:380 msgid "Not Selected" msgstr "Nie wybrany" @@ -398,7 +397,7 @@ msgstr "Powiadom, jeśli pojawi się główna wersja" msgid "Notify if a point release is available" msgstr "Powiadom, jeśli pojawi się wersja punktowa" -#: src/Common/LinuxKernel.vala:1217 +#: src/Common/LinuxKernel.vala:1229 #: src/Utility/Gtk/CustomMessageDialog.vala:150 #: src/Utility/Gtk/CustomMessageDialog.vala:154 #, c-format @@ -413,12 +412,16 @@ msgstr "Opcje" msgid "Other" msgstr "" -#: src/Common/LinuxKernel.vala:1060 +#: src/Console/AppConsole.vala:104 +msgid "Override user" +msgstr "" + +#: src/Common/LinuxKernel.vala:1072 #, c-format msgid "Packages Available" msgstr "Dostępne pakiety" -#: src/Common/LinuxKernel.vala:1068 +#: src/Common/LinuxKernel.vala:1080 #, c-format msgid "Packages Installed" msgstr "Pakiety zainstalowane" @@ -427,7 +430,7 @@ msgstr "Pakiety zainstalowane" msgid "Please install required packages and try again" msgstr "Zainstaluj wymagane pakiety i spróbuj ponownie" -#: src/Common/LinuxKernel.vala:1293 +#: src/Common/LinuxKernel.vala:1305 msgid "Preparing to remove selected kernels" msgstr "Przygotowanie do usunięcia wybranych jąder" @@ -435,19 +438,19 @@ msgstr "Przygotowanie do usunięcia wybranych jąder" msgid "Print debug information" msgstr "Wypisz informacje debugujące" -#: src/Gtk/MainWindow.vala:425 +#: src/Gtk/MainWindow.vala:423 msgid "Purge" msgstr "" -#: src/Gtk/MainWindow.vala:343 +#: src/Gtk/MainWindow.vala:341 msgid "Refresh" msgstr "Odśwież" -#: src/Gtk/MainWindow.vala:569 +#: src/Gtk/MainWindow.vala:567 msgid "Refreshing..." msgstr "Odświeżam..." -#: src/Gtk/MainWindow.vala:376 +#: src/Gtk/MainWindow.vala:374 msgid "Remove" msgstr "Usuń" @@ -455,7 +458,7 @@ msgstr "Usuń" msgid "Remove files from application cache" msgstr "Usuń pliki z pamięci podręcznej aplikacji" -#: src/Console/AppConsole.vala:94 src/Gtk/MainWindow.vala:426 +#: src/Console/AppConsole.vala:94 src/Gtk/MainWindow.vala:424 msgid "Remove installed kernels older than running kernel" msgstr "" @@ -464,33 +467,33 @@ msgstr "" msgid "Remove specified kernel" msgstr "Usuń wybrane jądro" -#: src/Console/AppConsole.vala:200 src/Console/AppConsole.vala:314 -#: src/Console/AppConsole.vala:343 +#: src/Console/AppConsole.vala:202 src/Console/AppConsole.vala:316 +#: src/Console/AppConsole.vala:345 msgid "Run '" msgstr "" -#: src/Console/AppConsole.vala:118 +#: src/Console/AppConsole.vala:120 #, fuzzy msgid "Run the application as admin with pkexec or sudo." msgstr "Uruchom aplikację jako root albo użyj gksu/sudo." -#: src/Common/LinuxKernel.vala:1169 src/Gtk/MainWindow.vala:208 +#: src/Common/LinuxKernel.vala:1181 src/Gtk/MainWindow.vala:208 msgid "Running" msgstr "Uruchomiony" -#: src/Gtk/MainWindow.vala:368 +#: src/Gtk/MainWindow.vala:366 msgid "Select a single kernel to install" msgstr "Wybierz pojedyncze jądro do instalacji" -#: src/Gtk/MainWindow.vala:371 +#: src/Gtk/MainWindow.vala:369 msgid "Select the kernel to install" msgstr "Wybierz pojedyncze do instalacji" -#: src/Gtk/MainWindow.vala:382 +#: src/Gtk/MainWindow.vala:380 msgid "Select the kernels to remove" msgstr "Wybierz jądro do usunięcia" -#: src/Common/LinuxKernel.vala:1288 +#: src/Common/LinuxKernel.vala:1300 msgid "" "Selected kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -498,7 +501,7 @@ msgstr "" "Wybrane jądro aktualnie działa i nie może zostać usunięte.\n" " Zainstaluj inne jądro przed usunięciem tego." -#: src/Gtk/MainWindow.vala:475 src/Gtk/SettingsDialog.vala:55 +#: src/Gtk/MainWindow.vala:473 src/Gtk/SettingsDialog.vala:55 msgid "Settings" msgstr "Ustawienia" @@ -506,6 +509,10 @@ msgstr "Ustawienia" msgid "Show" msgstr "" +#: src/Gtk/SettingsDialog.vala:182 +msgid "Show N previous major versions " +msgstr "" + #: src/Gtk/AppGtk.vala:186 msgid "Show all options" msgstr "Pokaż wszystkie opcje" @@ -540,11 +547,11 @@ msgstr "Zatrzymany" msgid "Syntax" msgstr "Składnia" -#: src/Console/AppConsole.vala:206 src/Gtk/AppGtk.vala:113 +#: src/Console/AppConsole.vala:208 src/Gtk/AppGtk.vala:113 msgid "Temp" msgstr "" -#: src/Common/LinuxKernel.vala:730 +#: src/Common/LinuxKernel.vala:742 #, c-format msgid "The following kernels will be removed:" msgstr "" @@ -554,11 +561,11 @@ msgstr "" msgid "Third Party Tools" msgstr "Narzędzia osób trzecich" -#: src/Common/LinuxKernel.vala:1240 src/Gtk/MainWindow.vala:681 +#: src/Common/LinuxKernel.vala:1252 src/Gtk/MainWindow.vala:679 msgid "This kernel is already installed." msgstr "To jądro jest już zainstalowane." -#: src/Common/LinuxKernel.vala:1341 +#: src/Common/LinuxKernel.vala:1353 msgid "" "This kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -571,15 +578,15 @@ msgstr "" msgid "Translators" msgstr "Tłumacze" -#: src/Common/LinuxKernel.vala:1325 src/Common/LinuxKernel.vala:1378 +#: src/Common/LinuxKernel.vala:1337 src/Common/LinuxKernel.vala:1390 msgid "Un-install completed" msgstr "De-instalacja zakończona" -#: src/Common/LinuxKernel.vala:1328 src/Common/LinuxKernel.vala:1381 +#: src/Common/LinuxKernel.vala:1340 src/Common/LinuxKernel.vala:1393 msgid "Un-install completed with errors" msgstr "De-instalacja zakończona z błędami" -#: src/Console/AppConsole.vala:198 src/Gtk/AppGtk.vala:168 +#: src/Console/AppConsole.vala:200 src/Gtk/AppGtk.vala:168 msgid "Unknown option" msgstr "Nieznana opcja" @@ -607,6 +614,10 @@ msgstr "[Ostrzeżenie] Usunięto nieprawidłową blokadę" msgid "seconds" msgstr "" +#, fuzzy +#~ msgid "Hide kernels older than " +#~ msgstr "Ukryj jądra starsze niż 4.0" + #~ msgid "Booting previous kernels" #~ msgstr "Uruchamianie poprzednich jąder" diff --git a/po/ru.po b/po/ru.po index 70fd0a5d..f564cdcc 100644 --- a/po/ru.po +++ b/po/ru.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu\n" "Report-Msgid-Bugs-To: b.kenyon.w@gmail.com\n" -"POT-Creation-Date: 2020-01-03 19:34-0500\n" +"POT-Creation-Date: 2020-01-04 00:31-0500\n" "PO-Revision-Date: 2016-12-13 16:46+0300\n" "Last-Translator: Faust3000 \n" "Language-Team: Russian \n" @@ -18,11 +18,11 @@ msgstr "" "X-Launchpad-Export-Date: 2016-12-13 11:48+0000\n" "X-Generator: Poedit 1.8.7.1\n" -#: src/Gtk/MainWindow.vala:496 +#: src/Gtk/MainWindow.vala:494 msgid "About" msgstr "О программе" -#: src/Console/AppConsole.vala:115 +#: src/Console/AppConsole.vala:117 msgid "Admin access is required for running this application." msgstr "Для запуска программы требуются права администратора." @@ -30,7 +30,7 @@ msgstr "Для запуска программы требуются права msgid "Another instance of this application is running" msgstr "Запущен другой экземпляр программы" -#: src/Common/LinuxKernel.vala:105 +#: src/Common/LinuxKernel.vala:106 #, fuzzy msgid "Architecture" msgstr "Системная архитектура" @@ -40,7 +40,7 @@ msgstr "Системная архитектура" msgid "Artists" msgstr "Художники" -#: src/Console/AppConsole.vala:102 +#: src/Console/AppConsole.vala:103 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "" @@ -49,7 +49,7 @@ msgstr "" msgid "Authors" msgstr "Авторы" -#: src/Common/LinuxKernel.vala:1152 +#: src/Common/LinuxKernel.vala:1164 msgid "Available Kernels" msgstr "Доступные ядра" @@ -57,7 +57,7 @@ msgstr "Доступные ядра" msgid "Back" msgstr "Назад" -#: src/Console/AppConsole.vala:205 src/Gtk/AppGtk.vala:112 +#: src/Console/AppConsole.vala:207 src/Gtk/AppGtk.vala:112 msgid "Cache" msgstr "" @@ -67,7 +67,7 @@ msgstr "" msgid "Cancel" msgstr "Отмена" -#: src/Gtk/MainWindow.vala:464 +#: src/Gtk/MainWindow.vala:462 msgid "Changes" msgstr "Изменения" @@ -88,7 +88,7 @@ msgstr "Проверить обновления ядра" msgid "Close" msgstr "Закрыть" -#: src/Console/AppConsole.vala:342 +#: src/Console/AppConsole.vala:344 msgid "Command not specified" msgstr "" @@ -100,7 +100,7 @@ msgstr "" msgid "Commands listed below are not available on this system" msgstr "Команды перечисленные ниже недоступны на этой системе" -#: src/Common/LinuxKernel.vala:737 +#: src/Common/LinuxKernel.vala:749 #, c-format msgid "Continue ?" msgstr "" @@ -110,16 +110,16 @@ msgstr "" msgid "Contributions" msgstr "Взносы" -#: src/Common/LinuxKernel.vala:721 +#: src/Common/LinuxKernel.vala:733 #, fuzzy msgid "Could not find any kernels to remove" msgstr "Не удалось найти запрошенную версию" -#: src/Console/AppConsole.vala:310 src/Gtk/MainWindow.vala:100 +#: src/Console/AppConsole.vala:312 src/Gtk/MainWindow.vala:100 msgid "Could not find requested version" msgstr "Не удалось найти запрошенную версию" -#: src/Common/LinuxKernel.vala:715 +#: src/Common/LinuxKernel.vala:727 #, fuzzy msgid "Could not find running kernel in list!" msgstr "Не удалось найти запрошенную версию" @@ -151,7 +151,7 @@ msgstr "Папка не найдена" msgid "Display" msgstr "Вид" -#: src/Common/LinuxKernel.vala:91 +#: src/Common/LinuxKernel.vala:92 msgid "Distribution" msgstr "Дистрибутив" @@ -164,7 +164,7 @@ msgstr "Составители документации" msgid "Download packages for specified kernel" msgstr "Скачать пакеты для указанного ядра" -#: src/Common/LinuxKernel.vala:1198 +#: src/Common/LinuxKernel.vala:1210 #, c-format msgid "Downloading" msgstr "Загрузка" @@ -173,11 +173,15 @@ msgstr "Загрузка" msgid "E" msgstr "E" -#: src/Common/LinuxKernel.vala:1226 +#: src/Common/LinuxKernel.vala:1238 #, c-format msgid "ERROR" msgstr "ОШИБКА" +#: src/Console/AppConsole.vala:102 +msgid "Enable verbose debugging output" +msgstr "" + #: src/Utility/Gtk/GtkHelper.vala:17 msgid "Error" msgstr "Ошибка" @@ -206,11 +210,11 @@ msgstr "Не удалось прочитать файл" msgid "Failed to write file" msgstr "Не удалось записать файл" -#: src/Common/LinuxKernel.vala:396 +#: src/Common/LinuxKernel.vala:408 msgid "Fetching index from kernel.ubuntu.com..." msgstr "Получение сведений с kernel.ubuntu.com..." -#: src/Common/LinuxKernel.vala:353 +#: src/Common/LinuxKernel.vala:365 msgid "Fetching index..." msgstr "" @@ -252,11 +256,6 @@ msgstr "Файл не найден: %s" msgid "File saved" msgstr "Файловая система" -#: src/Gtk/SettingsDialog.vala:182 -#, fuzzy -msgid "Hide kernels older than " -msgstr "Скрыть ядра старше версии 4.0" - #: src/Gtk/SettingsDialog.vala:168 msgid "Hide unstable and RC releases" msgstr "Скрыть нестабильные и релиз-кандидат версии" @@ -269,19 +268,19 @@ msgstr "Час(ов)" msgid "Ignore this update" msgstr "Игнорировать это обновление" -#: src/Common/LinuxKernel.vala:259 +#: src/Common/LinuxKernel.vala:260 msgid "Index is fresh" msgstr "Сведения актуальны" -#: src/Common/LinuxKernel.vala:256 +#: src/Common/LinuxKernel.vala:257 msgid "Index is stale" msgstr "Сведения устарели" -#: src/Gtk/UpdateNotificationWindow.vala:147 src/Gtk/MainWindow.vala:359 +#: src/Gtk/UpdateNotificationWindow.vala:147 src/Gtk/MainWindow.vala:357 msgid "Install" msgstr "Установить" -#: src/Common/LinuxKernel.vala:794 +#: src/Common/LinuxKernel.vala:806 #, c-format msgid "Install Linux v%s ? (y/n): " msgstr "" @@ -303,22 +302,22 @@ msgstr "Установить указанную ветку ядра" msgid "Install this kernel" msgstr "Установить это ядро" -#: src/Common/LinuxKernel.vala:1272 +#: src/Common/LinuxKernel.vala:1284 msgid "Installation completed with errors" msgstr "Установка завершена с ошибками" -#: src/Common/LinuxKernel.vala:1269 +#: src/Common/LinuxKernel.vala:1281 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "Установка завершена. Обязательно выполните перезагрузку, чтобы использовать " "новое ядро." -#: src/Common/LinuxKernel.vala:1169 src/Gtk/MainWindow.vala:208 +#: src/Common/LinuxKernel.vala:1181 src/Gtk/MainWindow.vala:208 msgid "Installed" msgstr "Установлено" -#: src/Gtk/MainWindow.vala:350 src/Gtk/MainWindow.vala:550 -#: src/Gtk/MainWindow.vala:686 src/Utility/TeeJee.System.vala:281 +#: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:548 +#: src/Gtk/MainWindow.vala:684 src/Utility/TeeJee.System.vala:281 msgid "Internet connection is not active" msgstr "Интернет соединение не активно" @@ -331,16 +330,16 @@ msgstr "Интернет соединение не активно" msgid "Kernel" msgstr "Ядро" -#: src/Gtk/MainWindow.vala:534 +#: src/Gtk/MainWindow.vala:532 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Программа обновления ядра для дистрибутивов на базе Ubuntu" -#: src/Common/LinuxKernel.vala:776 src/Console/AppConsole.vala:368 +#: src/Common/LinuxKernel.vala:788 src/Console/AppConsole.vala:370 #, c-format msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:765 src/Console/AppConsole.vala:361 +#: src/Common/LinuxKernel.vala:777 src/Console/AppConsole.vala:363 #, c-format msgid "Latest update" msgstr "" @@ -363,11 +362,11 @@ msgstr "Список всех доступных основных ядер" msgid "Missing Icon" msgstr "Значок отсутствует" -#: src/Gtk/MainWindow.vala:368 +#: src/Gtk/MainWindow.vala:366 msgid "Multiple Kernels Selected" msgstr "" -#: src/Console/AppConsole.vala:292 +#: src/Console/AppConsole.vala:294 msgid "Multiple kernels selected for installation. Select only one." msgstr "" @@ -375,21 +374,21 @@ msgstr "" msgid "No" msgstr "" -#: src/Gtk/MainWindow.vala:350 src/Gtk/MainWindow.vala:550 -#: src/Gtk/MainWindow.vala:686 +#: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:548 +#: src/Gtk/MainWindow.vala:684 msgid "No Internet" msgstr "" -#: src/Console/AppConsole.vala:286 src/Console/AppConsole.vala:323 +#: src/Console/AppConsole.vala:288 src/Console/AppConsole.vala:325 msgid "No kernels specified" msgstr "" -#: src/Common/LinuxKernel.vala:784 src/Console/AppConsole.vala:373 -#: src/Console/AppConsole.vala:431 src/Gtk/MainWindow.vala:796 +#: src/Common/LinuxKernel.vala:796 src/Console/AppConsole.vala:375 +#: src/Console/AppConsole.vala:433 src/Gtk/MainWindow.vala:794 msgid "No updates found" msgstr "Обновлений не найдено" -#: src/Gtk/MainWindow.vala:371 src/Gtk/MainWindow.vala:382 +#: src/Gtk/MainWindow.vala:369 src/Gtk/MainWindow.vala:380 msgid "Not Selected" msgstr "" @@ -405,7 +404,7 @@ msgstr "Уведомлять, если доступно крупное обно msgid "Notify if a point release is available" msgstr "Уведомлять, если доступно небольшое обновление" -#: src/Common/LinuxKernel.vala:1217 +#: src/Common/LinuxKernel.vala:1229 #: src/Utility/Gtk/CustomMessageDialog.vala:150 #: src/Utility/Gtk/CustomMessageDialog.vala:154 #, c-format @@ -420,12 +419,16 @@ msgstr "Параметры" msgid "Other" msgstr "" -#: src/Common/LinuxKernel.vala:1060 +#: src/Console/AppConsole.vala:104 +msgid "Override user" +msgstr "" + +#: src/Common/LinuxKernel.vala:1072 #, fuzzy, c-format msgid "Packages Available" msgstr "Установлено" -#: src/Common/LinuxKernel.vala:1068 +#: src/Common/LinuxKernel.vala:1080 #, fuzzy, c-format msgid "Packages Installed" msgstr "Установлено" @@ -434,7 +437,7 @@ msgstr "Установлено" msgid "Please install required packages and try again" msgstr "Установить необходимые пакеты и попробуйте снова" -#: src/Common/LinuxKernel.vala:1293 +#: src/Common/LinuxKernel.vala:1305 msgid "Preparing to remove selected kernels" msgstr "" @@ -442,19 +445,19 @@ msgstr "" msgid "Print debug information" msgstr "Распечатать отладочную информацию" -#: src/Gtk/MainWindow.vala:425 +#: src/Gtk/MainWindow.vala:423 msgid "Purge" msgstr "Очистить" -#: src/Gtk/MainWindow.vala:343 +#: src/Gtk/MainWindow.vala:341 msgid "Refresh" msgstr "Обновить" -#: src/Gtk/MainWindow.vala:569 +#: src/Gtk/MainWindow.vala:567 msgid "Refreshing..." msgstr "Обновление..." -#: src/Gtk/MainWindow.vala:376 +#: src/Gtk/MainWindow.vala:374 msgid "Remove" msgstr "Удалить" @@ -462,7 +465,7 @@ msgstr "Удалить" msgid "Remove files from application cache" msgstr "Удалить файлы из кэша программы" -#: src/Console/AppConsole.vala:94 src/Gtk/MainWindow.vala:426 +#: src/Console/AppConsole.vala:94 src/Gtk/MainWindow.vala:424 msgid "Remove installed kernels older than running kernel" msgstr "Удалить более старшие установленные ядра, чем используемое" @@ -471,33 +474,33 @@ msgstr "Удалить более старшие установленные яд msgid "Remove specified kernel" msgstr "Удалить указанную ветку ядра" -#: src/Console/AppConsole.vala:200 src/Console/AppConsole.vala:314 -#: src/Console/AppConsole.vala:343 +#: src/Console/AppConsole.vala:202 src/Console/AppConsole.vala:316 +#: src/Console/AppConsole.vala:345 msgid "Run '" msgstr "" -#: src/Console/AppConsole.vala:118 +#: src/Console/AppConsole.vala:120 #, fuzzy msgid "Run the application as admin with pkexec or sudo." msgstr "Запустите программу с правами Root или используйте gksu/sudo." -#: src/Common/LinuxKernel.vala:1169 src/Gtk/MainWindow.vala:208 +#: src/Common/LinuxKernel.vala:1181 src/Gtk/MainWindow.vala:208 msgid "Running" msgstr "Используется" -#: src/Gtk/MainWindow.vala:368 +#: src/Gtk/MainWindow.vala:366 msgid "Select a single kernel to install" msgstr "" -#: src/Gtk/MainWindow.vala:371 +#: src/Gtk/MainWindow.vala:369 msgid "Select the kernel to install" msgstr "" -#: src/Gtk/MainWindow.vala:382 +#: src/Gtk/MainWindow.vala:380 msgid "Select the kernels to remove" msgstr "" -#: src/Common/LinuxKernel.vala:1288 +#: src/Common/LinuxKernel.vala:1300 #, fuzzy msgid "" "Selected kernel is currently running and cannot be removed.\n" @@ -506,7 +509,7 @@ msgstr "" "Это ядро в настоящий момент работает и не может быть удалено.\n" " Установите другое ядро, прежде чем удалять его." -#: src/Gtk/MainWindow.vala:475 src/Gtk/SettingsDialog.vala:55 +#: src/Gtk/MainWindow.vala:473 src/Gtk/SettingsDialog.vala:55 msgid "Settings" msgstr "Настройки" @@ -514,6 +517,10 @@ msgstr "Настройки" msgid "Show" msgstr "" +#: src/Gtk/SettingsDialog.vala:182 +msgid "Show N previous major versions " +msgstr "" + #: src/Gtk/AppGtk.vala:186 msgid "Show all options" msgstr "Показать все параметры" @@ -548,11 +555,11 @@ msgstr "Остановлено" msgid "Syntax" msgstr "Синтаксис" -#: src/Console/AppConsole.vala:206 src/Gtk/AppGtk.vala:113 +#: src/Console/AppConsole.vala:208 src/Gtk/AppGtk.vala:113 msgid "Temp" msgstr "" -#: src/Common/LinuxKernel.vala:730 +#: src/Common/LinuxKernel.vala:742 #, c-format msgid "The following kernels will be removed:" msgstr "" @@ -562,11 +569,11 @@ msgstr "" msgid "Third Party Tools" msgstr "Сторонние инструменты" -#: src/Common/LinuxKernel.vala:1240 src/Gtk/MainWindow.vala:681 +#: src/Common/LinuxKernel.vala:1252 src/Gtk/MainWindow.vala:679 msgid "This kernel is already installed." msgstr "Это ядро уже установлено." -#: src/Common/LinuxKernel.vala:1341 +#: src/Common/LinuxKernel.vala:1353 msgid "" "This kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -579,15 +586,15 @@ msgstr "" msgid "Translators" msgstr "Переводчики" -#: src/Common/LinuxKernel.vala:1325 src/Common/LinuxKernel.vala:1378 +#: src/Common/LinuxKernel.vala:1337 src/Common/LinuxKernel.vala:1390 msgid "Un-install completed" msgstr "Удаление завершено" -#: src/Common/LinuxKernel.vala:1328 src/Common/LinuxKernel.vala:1381 +#: src/Common/LinuxKernel.vala:1340 src/Common/LinuxKernel.vala:1393 msgid "Un-install completed with errors" msgstr "Удаление завершено с ошибками" -#: src/Console/AppConsole.vala:198 src/Gtk/AppGtk.vala:168 +#: src/Console/AppConsole.vala:200 src/Gtk/AppGtk.vala:168 msgid "Unknown option" msgstr "Неизвестный параметр" @@ -615,6 +622,10 @@ msgstr "[Внимание] Удалена неправильная блокир msgid "seconds" msgstr "" +#, fuzzy +#~ msgid "Hide kernels older than " +#~ msgstr "Скрыть ядра старше версии 4.0" + #~ msgid "GRUB Options" #~ msgstr "Настройки GRUB" diff --git a/po/sv.po b/po/sv.po index 07855382..10e39bfa 100644 --- a/po/sv.po +++ b/po/sv.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu 2.2\n" "Report-Msgid-Bugs-To: b.kenyon.w@gmail.com\n" -"POT-Creation-Date: 2020-01-03 19:34-0500\n" +"POT-Creation-Date: 2020-01-04 00:31-0500\n" "PO-Revision-Date: 2018-01-13 16:56+0100\n" "Last-Translator: Åke Engelbrektson \n" "Language-Team: Svenska Språkfiler \n" @@ -18,11 +18,11 @@ msgstr "" "X-Generator: Poedit 1.8.7.1\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: src/Gtk/MainWindow.vala:496 +#: src/Gtk/MainWindow.vala:494 msgid "About" msgstr "Om" -#: src/Console/AppConsole.vala:115 +#: src/Console/AppConsole.vala:117 msgid "Admin access is required for running this application." msgstr "Root-åtkomst krävs för att köra detta program." @@ -30,7 +30,7 @@ msgstr "Root-åtkomst krävs för att köra detta program." msgid "Another instance of this application is running" msgstr "En annan instans av programmet körs redan" -#: src/Common/LinuxKernel.vala:105 +#: src/Common/LinuxKernel.vala:106 #, fuzzy msgid "Architecture" msgstr "Systemarkitektur" @@ -40,7 +40,7 @@ msgstr "Systemarkitektur" msgid "Artists" msgstr "Artister" -#: src/Console/AppConsole.vala:102 +#: src/Console/AppConsole.vala:103 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "" @@ -49,7 +49,7 @@ msgstr "" msgid "Authors" msgstr "Utvecklare" -#: src/Common/LinuxKernel.vala:1152 +#: src/Common/LinuxKernel.vala:1164 msgid "Available Kernels" msgstr "Tillgängliga kärnor" @@ -57,7 +57,7 @@ msgstr "Tillgängliga kärnor" msgid "Back" msgstr "Tillbaka" -#: src/Console/AppConsole.vala:205 src/Gtk/AppGtk.vala:112 +#: src/Console/AppConsole.vala:207 src/Gtk/AppGtk.vala:112 msgid "Cache" msgstr "" @@ -67,7 +67,7 @@ msgstr "" msgid "Cancel" msgstr "Avbryt" -#: src/Gtk/MainWindow.vala:464 +#: src/Gtk/MainWindow.vala:462 msgid "Changes" msgstr "Ändringar" @@ -88,7 +88,7 @@ msgstr "Sök efter kärnuppdateringar" msgid "Close" msgstr "Stäng" -#: src/Console/AppConsole.vala:342 +#: src/Console/AppConsole.vala:344 msgid "Command not specified" msgstr "" @@ -100,7 +100,7 @@ msgstr "" msgid "Commands listed below are not available on this system" msgstr "Kommandon listade nedan, finns inte tillgängliga i detta system." -#: src/Common/LinuxKernel.vala:737 +#: src/Common/LinuxKernel.vala:749 #, c-format msgid "Continue ?" msgstr "" @@ -110,16 +110,16 @@ msgstr "" msgid "Contributions" msgstr "Bidrag" -#: src/Common/LinuxKernel.vala:721 +#: src/Common/LinuxKernel.vala:733 #, fuzzy msgid "Could not find any kernels to remove" msgstr "Välj kärnor för borttagning" -#: src/Console/AppConsole.vala:310 src/Gtk/MainWindow.vala:100 +#: src/Console/AppConsole.vala:312 src/Gtk/MainWindow.vala:100 msgid "Could not find requested version" msgstr "Kunde inte hitta efterfrågad version" -#: src/Common/LinuxKernel.vala:715 +#: src/Common/LinuxKernel.vala:727 #, fuzzy msgid "Could not find running kernel in list!" msgstr "Kunde inte hitta efterfrågad version" @@ -150,7 +150,7 @@ msgstr "Mappen kan inte hittas" msgid "Display" msgstr "Visa" -#: src/Common/LinuxKernel.vala:91 +#: src/Common/LinuxKernel.vala:92 msgid "Distribution" msgstr "Distribution" @@ -163,7 +163,7 @@ msgstr "Dokumentalister" msgid "Download packages for specified kernel" msgstr "Ladda ner paket för specificerad kärna" -#: src/Common/LinuxKernel.vala:1198 +#: src/Common/LinuxKernel.vala:1210 #, c-format msgid "Downloading" msgstr "Laddar ner" @@ -172,11 +172,15 @@ msgstr "Laddar ner" msgid "E" msgstr "F" -#: src/Common/LinuxKernel.vala:1226 +#: src/Common/LinuxKernel.vala:1238 #, c-format msgid "ERROR" msgstr "FEL" +#: src/Console/AppConsole.vala:102 +msgid "Enable verbose debugging output" +msgstr "" + #: src/Utility/Gtk/GtkHelper.vala:17 msgid "Error" msgstr "Fel" @@ -205,11 +209,11 @@ msgstr "Kunde inte läsa filen" msgid "Failed to write file" msgstr "Kunde inte skriva filen" -#: src/Common/LinuxKernel.vala:396 +#: src/Common/LinuxKernel.vala:408 msgid "Fetching index from kernel.ubuntu.com..." msgstr "Hämtar index från kernel.ubuntu.com ..." -#: src/Common/LinuxKernel.vala:353 +#: src/Common/LinuxKernel.vala:365 #, fuzzy msgid "Fetching index..." msgstr "Hämtar index för" @@ -248,11 +252,6 @@ msgstr "Filen kunde inte hittas: %s" msgid "File saved" msgstr "Fil sparad" -#: src/Gtk/SettingsDialog.vala:182 -#, fuzzy -msgid "Hide kernels older than " -msgstr "Dölj kärnor, äldre än 4.0" - #: src/Gtk/SettingsDialog.vala:168 msgid "Hide unstable and RC releases" msgstr "Dölj instabila- och RC-publiceringar" @@ -265,19 +264,19 @@ msgstr "Timma(r)" msgid "Ignore this update" msgstr "Undanta denna uppdatering" -#: src/Common/LinuxKernel.vala:259 +#: src/Common/LinuxKernel.vala:260 msgid "Index is fresh" msgstr "Index är uppdaterat" -#: src/Common/LinuxKernel.vala:256 +#: src/Common/LinuxKernel.vala:257 msgid "Index is stale" msgstr "Index är inaktuellt" -#: src/Gtk/UpdateNotificationWindow.vala:147 src/Gtk/MainWindow.vala:359 +#: src/Gtk/UpdateNotificationWindow.vala:147 src/Gtk/MainWindow.vala:357 msgid "Install" msgstr "Installera" -#: src/Common/LinuxKernel.vala:794 +#: src/Common/LinuxKernel.vala:806 #, c-format msgid "Install Linux v%s ? (y/n): " msgstr "" @@ -299,20 +298,20 @@ msgstr "Installera specificerad kärna" msgid "Install this kernel" msgstr "Installera denna kärna" -#: src/Common/LinuxKernel.vala:1272 +#: src/Common/LinuxKernel.vala:1284 msgid "Installation completed with errors" msgstr "Installation slutförd med fel" -#: src/Common/LinuxKernel.vala:1269 +#: src/Common/LinuxKernel.vala:1281 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "Installation slutförd. Omstart krävs för att tillämpa den nya kärnan." -#: src/Common/LinuxKernel.vala:1169 src/Gtk/MainWindow.vala:208 +#: src/Common/LinuxKernel.vala:1181 src/Gtk/MainWindow.vala:208 msgid "Installed" msgstr "Installerad" -#: src/Gtk/MainWindow.vala:350 src/Gtk/MainWindow.vala:550 -#: src/Gtk/MainWindow.vala:686 src/Utility/TeeJee.System.vala:281 +#: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:548 +#: src/Gtk/MainWindow.vala:684 src/Utility/TeeJee.System.vala:281 msgid "Internet connection is not active" msgstr "Internetuppkopplingen är inte aktiv" @@ -325,16 +324,16 @@ msgstr "Internetuppkopplingen är inte aktiv" msgid "Kernel" msgstr "Kärna" -#: src/Gtk/MainWindow.vala:534 +#: src/Gtk/MainWindow.vala:532 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Kärnuppgraderingsverktyg för Ubuntu-baserade distributioner" -#: src/Common/LinuxKernel.vala:776 src/Console/AppConsole.vala:368 +#: src/Common/LinuxKernel.vala:788 src/Console/AppConsole.vala:370 #, c-format msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:765 src/Console/AppConsole.vala:361 +#: src/Common/LinuxKernel.vala:777 src/Console/AppConsole.vala:363 #, c-format msgid "Latest update" msgstr "" @@ -356,11 +355,11 @@ msgstr "Lista tillgängliga kärnor" msgid "Missing Icon" msgstr "Saknad ikon" -#: src/Gtk/MainWindow.vala:368 +#: src/Gtk/MainWindow.vala:366 msgid "Multiple Kernels Selected" msgstr "Flera kärnor markerade" -#: src/Console/AppConsole.vala:292 +#: src/Console/AppConsole.vala:294 msgid "Multiple kernels selected for installation. Select only one." msgstr "Flera kärnor valda för installation. Välj endast en." @@ -368,21 +367,21 @@ msgstr "Flera kärnor valda för installation. Välj endast en." msgid "No" msgstr "Nej" -#: src/Gtk/MainWindow.vala:350 src/Gtk/MainWindow.vala:550 -#: src/Gtk/MainWindow.vala:686 +#: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:548 +#: src/Gtk/MainWindow.vala:684 msgid "No Internet" msgstr "Inget internet" -#: src/Console/AppConsole.vala:286 src/Console/AppConsole.vala:323 +#: src/Console/AppConsole.vala:288 src/Console/AppConsole.vala:325 msgid "No kernels specified" msgstr "" -#: src/Common/LinuxKernel.vala:784 src/Console/AppConsole.vala:373 -#: src/Console/AppConsole.vala:431 src/Gtk/MainWindow.vala:796 +#: src/Common/LinuxKernel.vala:796 src/Console/AppConsole.vala:375 +#: src/Console/AppConsole.vala:433 src/Gtk/MainWindow.vala:794 msgid "No updates found" msgstr "Inga uppdateringar hittades" -#: src/Gtk/MainWindow.vala:371 src/Gtk/MainWindow.vala:382 +#: src/Gtk/MainWindow.vala:369 src/Gtk/MainWindow.vala:380 msgid "Not Selected" msgstr "Inte vald" @@ -398,7 +397,7 @@ msgstr "Meddela om en ny (stor) uppdatering finns tillgänglig" msgid "Notify if a point release is available" msgstr "Meddela om en ny (mindre) uppdatering finns tillgänglig" -#: src/Common/LinuxKernel.vala:1217 +#: src/Common/LinuxKernel.vala:1229 #: src/Utility/Gtk/CustomMessageDialog.vala:150 #: src/Utility/Gtk/CustomMessageDialog.vala:154 #, c-format @@ -413,12 +412,16 @@ msgstr "Alternativ" msgid "Other" msgstr "" -#: src/Common/LinuxKernel.vala:1060 +#: src/Console/AppConsole.vala:104 +msgid "Override user" +msgstr "" + +#: src/Common/LinuxKernel.vala:1072 #, c-format msgid "Packages Available" msgstr "Tillgängliga paket" -#: src/Common/LinuxKernel.vala:1068 +#: src/Common/LinuxKernel.vala:1080 #, c-format msgid "Packages Installed" msgstr "Installerade paket" @@ -427,7 +430,7 @@ msgstr "Installerade paket" msgid "Please install required packages and try again" msgstr "Installera nödvändiga paket och försök igen" -#: src/Common/LinuxKernel.vala:1293 +#: src/Common/LinuxKernel.vala:1305 msgid "Preparing to remove selected kernels" msgstr "Förbereder borttagning av markerade kärnor" @@ -435,19 +438,19 @@ msgstr "Förbereder borttagning av markerade kärnor" msgid "Print debug information" msgstr "Skriv ut felsökningsinformation" -#: src/Gtk/MainWindow.vala:425 +#: src/Gtk/MainWindow.vala:423 msgid "Purge" msgstr "Rensa" -#: src/Gtk/MainWindow.vala:343 +#: src/Gtk/MainWindow.vala:341 msgid "Refresh" msgstr "Uppdatera" -#: src/Gtk/MainWindow.vala:569 +#: src/Gtk/MainWindow.vala:567 msgid "Refreshing..." msgstr "Uppdaterar ..." -#: src/Gtk/MainWindow.vala:376 +#: src/Gtk/MainWindow.vala:374 msgid "Remove" msgstr "Ta bort" @@ -455,7 +458,7 @@ msgstr "Ta bort" msgid "Remove files from application cache" msgstr "Ta bort filer från program-cachen" -#: src/Console/AppConsole.vala:94 src/Gtk/MainWindow.vala:426 +#: src/Console/AppConsole.vala:94 src/Gtk/MainWindow.vala:424 msgid "Remove installed kernels older than running kernel" msgstr "Ta bort installerade kärnor äldre än den som körs" @@ -464,32 +467,32 @@ msgstr "Ta bort installerade kärnor äldre än den som körs" msgid "Remove specified kernel" msgstr "Ta bort specificerad kärna" -#: src/Console/AppConsole.vala:200 src/Console/AppConsole.vala:314 -#: src/Console/AppConsole.vala:343 +#: src/Console/AppConsole.vala:202 src/Console/AppConsole.vala:316 +#: src/Console/AppConsole.vala:345 msgid "Run '" msgstr "" -#: src/Console/AppConsole.vala:118 +#: src/Console/AppConsole.vala:120 msgid "Run the application as admin with pkexec or sudo." msgstr "Kör programmet som administratör, med pkexec eller sudo." -#: src/Common/LinuxKernel.vala:1169 src/Gtk/MainWindow.vala:208 +#: src/Common/LinuxKernel.vala:1181 src/Gtk/MainWindow.vala:208 msgid "Running" msgstr "Körs" -#: src/Gtk/MainWindow.vala:368 +#: src/Gtk/MainWindow.vala:366 msgid "Select a single kernel to install" msgstr "Välj en enstaka kärna att installera" -#: src/Gtk/MainWindow.vala:371 +#: src/Gtk/MainWindow.vala:369 msgid "Select the kernel to install" msgstr "Välj kärna för installation" -#: src/Gtk/MainWindow.vala:382 +#: src/Gtk/MainWindow.vala:380 msgid "Select the kernels to remove" msgstr "Välj kärnor för borttagning" -#: src/Common/LinuxKernel.vala:1288 +#: src/Common/LinuxKernel.vala:1300 msgid "" "Selected kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -497,7 +500,7 @@ msgstr "" "Denna kärna används för tillfället och kan inte tas bort.\n" "Installera en annan kärna innan du tar bort den här." -#: src/Gtk/MainWindow.vala:475 src/Gtk/SettingsDialog.vala:55 +#: src/Gtk/MainWindow.vala:473 src/Gtk/SettingsDialog.vala:55 msgid "Settings" msgstr "Inställningar" @@ -505,6 +508,10 @@ msgstr "Inställningar" msgid "Show" msgstr "Visa" +#: src/Gtk/SettingsDialog.vala:182 +msgid "Show N previous major versions " +msgstr "" + #: src/Gtk/AppGtk.vala:186 msgid "Show all options" msgstr "Visa alla alternativ" @@ -539,11 +546,11 @@ msgstr "Stoppad" msgid "Syntax" msgstr "Syntax" -#: src/Console/AppConsole.vala:206 src/Gtk/AppGtk.vala:113 +#: src/Console/AppConsole.vala:208 src/Gtk/AppGtk.vala:113 msgid "Temp" msgstr "" -#: src/Common/LinuxKernel.vala:730 +#: src/Common/LinuxKernel.vala:742 #, c-format msgid "The following kernels will be removed:" msgstr "" @@ -553,11 +560,11 @@ msgstr "" msgid "Third Party Tools" msgstr "Tredjepartsverktyg" -#: src/Common/LinuxKernel.vala:1240 src/Gtk/MainWindow.vala:681 +#: src/Common/LinuxKernel.vala:1252 src/Gtk/MainWindow.vala:679 msgid "This kernel is already installed." msgstr "Denna kärna är redan installerad" -#: src/Common/LinuxKernel.vala:1341 +#: src/Common/LinuxKernel.vala:1353 msgid "" "This kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -570,15 +577,15 @@ msgstr "" msgid "Translators" msgstr "Översättare" -#: src/Common/LinuxKernel.vala:1325 src/Common/LinuxKernel.vala:1378 +#: src/Common/LinuxKernel.vala:1337 src/Common/LinuxKernel.vala:1390 msgid "Un-install completed" msgstr "Avinstallation slutförd" -#: src/Common/LinuxKernel.vala:1328 src/Common/LinuxKernel.vala:1381 +#: src/Common/LinuxKernel.vala:1340 src/Common/LinuxKernel.vala:1393 msgid "Un-install completed with errors" msgstr "Avinstallation slutförd med fel" -#: src/Console/AppConsole.vala:198 src/Gtk/AppGtk.vala:168 +#: src/Console/AppConsole.vala:200 src/Gtk/AppGtk.vala:168 msgid "Unknown option" msgstr "Okänt alternativ" @@ -606,6 +613,10 @@ msgstr "[Varning] Tog bort ogiltigt lås" msgid "seconds" msgstr "" +#, fuzzy +#~ msgid "Hide kernels older than " +#~ msgstr "Dölj kärnor, äldre än 4.0" + #~ msgid "Booting previous kernels" #~ msgstr "Startar föregående kärnor" diff --git a/po/tr.po b/po/tr.po index 719b7526..62f3cd1f 100644 --- a/po/tr.po +++ b/po/tr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu\n" "Report-Msgid-Bugs-To: b.kenyon.w@gmail.com\n" -"POT-Creation-Date: 2020-01-03 19:34-0500\n" +"POT-Creation-Date: 2020-01-04 00:31-0500\n" "PO-Revision-Date: 2019-08-31 18:33+0300\n" "Last-Translator: Gökhan GÖKKAYA \n" "Language-Team: Turkish\n" @@ -18,11 +18,11 @@ msgstr "" "X-Generator: Poedit 2.0.6\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: src/Gtk/MainWindow.vala:496 +#: src/Gtk/MainWindow.vala:494 msgid "About" msgstr "Hakkında" -#: src/Console/AppConsole.vala:115 +#: src/Console/AppConsole.vala:117 msgid "Admin access is required for running this application." msgstr "Bu uygulamayı çalıştırmak için yönetici izni gerekiyor." @@ -30,7 +30,7 @@ msgstr "Bu uygulamayı çalıştırmak için yönetici izni gerekiyor." msgid "Another instance of this application is running" msgstr "Bu uygulamanın başka bir örneği çalışıyor" -#: src/Common/LinuxKernel.vala:105 +#: src/Common/LinuxKernel.vala:106 msgid "Architecture" msgstr "Sistem mimarisi" @@ -39,7 +39,7 @@ msgstr "Sistem mimarisi" msgid "Artists" msgstr "Sanatçılar" -#: src/Console/AppConsole.vala:102 +#: src/Console/AppConsole.vala:103 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "Tüm istemler için Evet'i kabul edin (etkileşimsiz kip)" @@ -48,7 +48,7 @@ msgstr "Tüm istemler için Evet'i kabul edin (etkileşimsiz kip)" msgid "Authors" msgstr "Yazar" -#: src/Common/LinuxKernel.vala:1152 +#: src/Common/LinuxKernel.vala:1164 msgid "Available Kernels" msgstr "Mevcut Çekirdekler" @@ -56,7 +56,7 @@ msgstr "Mevcut Çekirdekler" msgid "Back" msgstr "Geri" -#: src/Console/AppConsole.vala:205 src/Gtk/AppGtk.vala:112 +#: src/Console/AppConsole.vala:207 src/Gtk/AppGtk.vala:112 msgid "Cache" msgstr "Önbellek" @@ -66,7 +66,7 @@ msgstr "Önbellek" msgid "Cancel" msgstr "İptal" -#: src/Gtk/MainWindow.vala:464 +#: src/Gtk/MainWindow.vala:462 msgid "Changes" msgstr "Değişiklikler" @@ -86,7 +86,7 @@ msgstr "Çekirdek güncellemelerini kontrol et ve mevcut kullanıcıyı uyar" msgid "Close" msgstr "Kapat" -#: src/Console/AppConsole.vala:342 +#: src/Console/AppConsole.vala:344 msgid "Command not specified" msgstr "Komut belirtilmedi" @@ -98,7 +98,7 @@ msgstr "Komutlar" msgid "Commands listed below are not available on this system" msgstr "Aşağıda listelenen komutlar bu sistemde mevcut değil" -#: src/Common/LinuxKernel.vala:737 +#: src/Common/LinuxKernel.vala:749 #, c-format msgid "Continue ?" msgstr "Devam et ?" @@ -108,15 +108,15 @@ msgstr "Devam et ?" msgid "Contributions" msgstr "Destek verenler" -#: src/Common/LinuxKernel.vala:721 +#: src/Common/LinuxKernel.vala:733 msgid "Could not find any kernels to remove" msgstr "Kaldırılacak çekirdek bulunamadı" -#: src/Console/AppConsole.vala:310 src/Gtk/MainWindow.vala:100 +#: src/Console/AppConsole.vala:312 src/Gtk/MainWindow.vala:100 msgid "Could not find requested version" msgstr "İstenen sürüm bulunamadı" -#: src/Common/LinuxKernel.vala:715 +#: src/Common/LinuxKernel.vala:727 msgid "Could not find running kernel in list!" msgstr "İstenen sürüm bulunamadı!" @@ -146,7 +146,7 @@ msgstr "Dizin bulunamadı" msgid "Display" msgstr "Gösterim" -#: src/Common/LinuxKernel.vala:91 +#: src/Common/LinuxKernel.vala:92 msgid "Distribution" msgstr "Dağıtım" @@ -159,7 +159,7 @@ msgstr "Belgelendirenler" msgid "Download packages for specified kernel" msgstr "Belirtilen çekirdek için paketleri indir" -#: src/Common/LinuxKernel.vala:1198 +#: src/Common/LinuxKernel.vala:1210 #, c-format msgid "Downloading" msgstr "İndiriliyor" @@ -168,11 +168,15 @@ msgstr "İndiriliyor" msgid "E" msgstr "H" -#: src/Common/LinuxKernel.vala:1226 +#: src/Common/LinuxKernel.vala:1238 #, c-format msgid "ERROR" msgstr "HATA" +#: src/Console/AppConsole.vala:102 +msgid "Enable verbose debugging output" +msgstr "" + #: src/Utility/Gtk/GtkHelper.vala:17 msgid "Error" msgstr "Hata" @@ -201,11 +205,11 @@ msgstr "Dosya okuma başarısız" msgid "Failed to write file" msgstr "Dosya yazma başarısız" -#: src/Common/LinuxKernel.vala:396 +#: src/Common/LinuxKernel.vala:408 msgid "Fetching index from kernel.ubuntu.com..." msgstr "İçerik listesi kernel.ubuntu.com alanından alınıyor..." -#: src/Common/LinuxKernel.vala:353 +#: src/Common/LinuxKernel.vala:365 msgid "Fetching index..." msgstr "İçerik dizini alınıyor..." @@ -243,11 +247,6 @@ msgstr "Şu dosya bulunamadı: %s" msgid "File saved" msgstr "Dosya kaydedildi" -#: src/Gtk/SettingsDialog.vala:182 -#, fuzzy -msgid "Hide kernels older than " -msgstr "4.0 sürümden düşük çekirdekleri gizle" - #: src/Gtk/SettingsDialog.vala:168 msgid "Hide unstable and RC releases" msgstr "Kararsız ve RC sürümleri gizle" @@ -260,19 +259,19 @@ msgstr "Saat" msgid "Ignore this update" msgstr "Bu güncellemeyi yoksay" -#: src/Common/LinuxKernel.vala:259 +#: src/Common/LinuxKernel.vala:260 msgid "Index is fresh" msgstr "İçerik listesi güncel" -#: src/Common/LinuxKernel.vala:256 +#: src/Common/LinuxKernel.vala:257 msgid "Index is stale" msgstr "İçerik listesi eski" -#: src/Gtk/UpdateNotificationWindow.vala:147 src/Gtk/MainWindow.vala:359 +#: src/Gtk/UpdateNotificationWindow.vala:147 src/Gtk/MainWindow.vala:357 msgid "Install" msgstr "Kur" -#: src/Common/LinuxKernel.vala:794 +#: src/Common/LinuxKernel.vala:806 #, c-format msgid "Install Linux v%s ? (y/n): " msgstr "Linux v%s Kur ? (e/h): " @@ -293,21 +292,21 @@ msgstr "Belirtilen mainline çekirdeğini kur" msgid "Install this kernel" msgstr "Bu çekirdeği kur" -#: src/Common/LinuxKernel.vala:1272 +#: src/Common/LinuxKernel.vala:1284 msgid "Installation completed with errors" msgstr "Kurulum hatalarla tamamlandı" -#: src/Common/LinuxKernel.vala:1269 +#: src/Common/LinuxKernel.vala:1281 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "Kurulum tamamlandı. Yeni çekirdeği kullanmak için yeniden başlatma gerekiyor." -#: src/Common/LinuxKernel.vala:1169 src/Gtk/MainWindow.vala:208 +#: src/Common/LinuxKernel.vala:1181 src/Gtk/MainWindow.vala:208 msgid "Installed" msgstr "Kurulu" -#: src/Gtk/MainWindow.vala:350 src/Gtk/MainWindow.vala:550 -#: src/Gtk/MainWindow.vala:686 src/Utility/TeeJee.System.vala:281 +#: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:548 +#: src/Gtk/MainWindow.vala:684 src/Utility/TeeJee.System.vala:281 msgid "Internet connection is not active" msgstr "İnternet bağlantısı aktif değil" @@ -319,16 +318,16 @@ msgstr "İnternet bağlantısı zaman aşımı " msgid "Kernel" msgstr "Çekirdek" -#: src/Gtk/MainWindow.vala:534 +#: src/Gtk/MainWindow.vala:532 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Ubuntu tabanlı dağıtımlar için çekirdek güncelleme aracı" -#: src/Common/LinuxKernel.vala:776 src/Console/AppConsole.vala:368 +#: src/Common/LinuxKernel.vala:788 src/Console/AppConsole.vala:370 #, c-format msgid "Latest point update" msgstr "Son güncelleme noktası" -#: src/Common/LinuxKernel.vala:765 src/Console/AppConsole.vala:361 +#: src/Common/LinuxKernel.vala:777 src/Console/AppConsole.vala:363 #, c-format msgid "Latest update" msgstr "Son güncelleme" @@ -349,11 +348,11 @@ msgstr "Kurulu çekirdekleri listele" msgid "Missing Icon" msgstr "Eksik Simge" -#: src/Gtk/MainWindow.vala:368 +#: src/Gtk/MainWindow.vala:366 msgid "Multiple Kernels Selected" msgstr "Çoklu Çekirdek Seçildi" -#: src/Console/AppConsole.vala:292 +#: src/Console/AppConsole.vala:294 msgid "Multiple kernels selected for installation. Select only one." msgstr "Kurulum için çoklu çekirdek seçildi. Sadece bir tane seçiniz." @@ -361,21 +360,21 @@ msgstr "Kurulum için çoklu çekirdek seçildi. Sadece bir tane seçiniz." msgid "No" msgstr "Hayır" -#: src/Gtk/MainWindow.vala:350 src/Gtk/MainWindow.vala:550 -#: src/Gtk/MainWindow.vala:686 +#: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:548 +#: src/Gtk/MainWindow.vala:684 msgid "No Internet" msgstr "İnternet Yok" -#: src/Console/AppConsole.vala:286 src/Console/AppConsole.vala:323 +#: src/Console/AppConsole.vala:288 src/Console/AppConsole.vala:325 msgid "No kernels specified" msgstr "Belirtilen çekirdek yok" -#: src/Common/LinuxKernel.vala:784 src/Console/AppConsole.vala:373 -#: src/Console/AppConsole.vala:431 src/Gtk/MainWindow.vala:796 +#: src/Common/LinuxKernel.vala:796 src/Console/AppConsole.vala:375 +#: src/Console/AppConsole.vala:433 src/Gtk/MainWindow.vala:794 msgid "No updates found" msgstr "Güncelleme bulunamadı" -#: src/Gtk/MainWindow.vala:371 src/Gtk/MainWindow.vala:382 +#: src/Gtk/MainWindow.vala:369 src/Gtk/MainWindow.vala:380 msgid "Not Selected" msgstr "Seçilen Yok" @@ -391,7 +390,7 @@ msgstr "Ana sürüm mevcutsa bildir" msgid "Notify if a point release is available" msgstr "Ara sürüm mevcutsa bildir" -#: src/Common/LinuxKernel.vala:1217 +#: src/Common/LinuxKernel.vala:1229 #: src/Utility/Gtk/CustomMessageDialog.vala:150 #: src/Utility/Gtk/CustomMessageDialog.vala:154 #, c-format @@ -406,12 +405,16 @@ msgstr "Seçenekler" msgid "Other" msgstr "Diğer" -#: src/Common/LinuxKernel.vala:1060 +#: src/Console/AppConsole.vala:104 +msgid "Override user" +msgstr "" + +#: src/Common/LinuxKernel.vala:1072 #, c-format msgid "Packages Available" msgstr "Mevcut Paketler" -#: src/Common/LinuxKernel.vala:1068 +#: src/Common/LinuxKernel.vala:1080 #, c-format msgid "Packages Installed" msgstr "Paketler Kuruldu" @@ -420,7 +423,7 @@ msgstr "Paketler Kuruldu" msgid "Please install required packages and try again" msgstr "Lütfen gerekli paketleri yükleyin ve tekrar deneyin" -#: src/Common/LinuxKernel.vala:1293 +#: src/Common/LinuxKernel.vala:1305 msgid "Preparing to remove selected kernels" msgstr "Seçilen çekirdekleri kaldırmak için hazırlanıyor" @@ -428,19 +431,19 @@ msgstr "Seçilen çekirdekleri kaldırmak için hazırlanıyor" msgid "Print debug information" msgstr "Hata ayıklama bilgisini yazdır" -#: src/Gtk/MainWindow.vala:425 +#: src/Gtk/MainWindow.vala:423 msgid "Purge" msgstr "Temizle" -#: src/Gtk/MainWindow.vala:343 +#: src/Gtk/MainWindow.vala:341 msgid "Refresh" msgstr "Yenile" -#: src/Gtk/MainWindow.vala:569 +#: src/Gtk/MainWindow.vala:567 msgid "Refreshing..." msgstr "Yenileniyor..." -#: src/Gtk/MainWindow.vala:376 +#: src/Gtk/MainWindow.vala:374 msgid "Remove" msgstr "Sil" @@ -448,7 +451,7 @@ msgstr "Sil" msgid "Remove files from application cache" msgstr "Dosyaları uygulama önbelleğinden sil" -#: src/Console/AppConsole.vala:94 src/Gtk/MainWindow.vala:426 +#: src/Console/AppConsole.vala:94 src/Gtk/MainWindow.vala:424 msgid "Remove installed kernels older than running kernel" msgstr "Çalışan çekirdekten eski olan kurulu çekirdekleri kaldır" @@ -456,32 +459,32 @@ msgstr "Çalışan çekirdekten eski olan kurulu çekirdekleri kaldır" msgid "Remove specified kernel" msgstr "Belirtilen çekirdeği kaldır" -#: src/Console/AppConsole.vala:200 src/Console/AppConsole.vala:314 -#: src/Console/AppConsole.vala:343 +#: src/Console/AppConsole.vala:202 src/Console/AppConsole.vala:316 +#: src/Console/AppConsole.vala:345 msgid "Run '" msgstr "Çalıştır '" -#: src/Console/AppConsole.vala:118 +#: src/Console/AppConsole.vala:120 msgid "Run the application as admin with pkexec or sudo." msgstr "Bu uygulamayı pkexec yada sudo ile yönetici haklarıyla çalıştırın." -#: src/Common/LinuxKernel.vala:1169 src/Gtk/MainWindow.vala:208 +#: src/Common/LinuxKernel.vala:1181 src/Gtk/MainWindow.vala:208 msgid "Running" msgstr "Çalışıyor" -#: src/Gtk/MainWindow.vala:368 +#: src/Gtk/MainWindow.vala:366 msgid "Select a single kernel to install" msgstr "Kurulum için tek çekirdek seçin" -#: src/Gtk/MainWindow.vala:371 +#: src/Gtk/MainWindow.vala:369 msgid "Select the kernel to install" msgstr "Kurulum için çekirdek seçin" -#: src/Gtk/MainWindow.vala:382 +#: src/Gtk/MainWindow.vala:380 msgid "Select the kernels to remove" msgstr "Kaldırma için çekirdek seçin" -#: src/Common/LinuxKernel.vala:1288 +#: src/Common/LinuxKernel.vala:1300 msgid "" "Selected kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -489,7 +492,7 @@ msgstr "" "Seçilen çekirdek şu anda çalışıyor ve kaldırılamıyor.\n" " Bunu kaldırmadan önce başka bir çekirdek yükleyin." -#: src/Gtk/MainWindow.vala:475 src/Gtk/SettingsDialog.vala:55 +#: src/Gtk/MainWindow.vala:473 src/Gtk/SettingsDialog.vala:55 msgid "Settings" msgstr "Ayarlar" @@ -497,6 +500,10 @@ msgstr "Ayarlar" msgid "Show" msgstr "Göster" +#: src/Gtk/SettingsDialog.vala:182 +msgid "Show N previous major versions " +msgstr "" + #: src/Gtk/AppGtk.vala:186 msgid "Show all options" msgstr "Tüm seçenekleri göster" @@ -529,11 +536,11 @@ msgstr "Durduruldu" msgid "Syntax" msgstr "Sözdizimi" -#: src/Console/AppConsole.vala:206 src/Gtk/AppGtk.vala:113 +#: src/Console/AppConsole.vala:208 src/Gtk/AppGtk.vala:113 msgid "Temp" msgstr "Geçici" -#: src/Common/LinuxKernel.vala:730 +#: src/Common/LinuxKernel.vala:742 #, c-format msgid "The following kernels will be removed:" msgstr "Aşağıdaki çekirdekler silinecek:" @@ -543,11 +550,11 @@ msgstr "Aşağıdaki çekirdekler silinecek:" msgid "Third Party Tools" msgstr "Üçüncü Parti Araçlar" -#: src/Common/LinuxKernel.vala:1240 src/Gtk/MainWindow.vala:681 +#: src/Common/LinuxKernel.vala:1252 src/Gtk/MainWindow.vala:679 msgid "This kernel is already installed." msgstr "Bu çekirdek zaten kurulu." -#: src/Common/LinuxKernel.vala:1341 +#: src/Common/LinuxKernel.vala:1353 msgid "" "This kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -560,15 +567,15 @@ msgstr "" msgid "Translators" msgstr "Çevirenler" -#: src/Common/LinuxKernel.vala:1325 src/Common/LinuxKernel.vala:1378 +#: src/Common/LinuxKernel.vala:1337 src/Common/LinuxKernel.vala:1390 msgid "Un-install completed" msgstr "Kaldırma tamamlandı" -#: src/Common/LinuxKernel.vala:1328 src/Common/LinuxKernel.vala:1381 +#: src/Common/LinuxKernel.vala:1340 src/Common/LinuxKernel.vala:1393 msgid "Un-install completed with errors" msgstr "Kaldırma hatalarla tamamlandı" -#: src/Console/AppConsole.vala:198 src/Gtk/AppGtk.vala:168 +#: src/Console/AppConsole.vala:200 src/Gtk/AppGtk.vala:168 msgid "Unknown option" msgstr "Bilinmeyen seçenek" @@ -595,3 +602,7 @@ msgstr "[Uyarı] Geçersiz kilit silindi" #: src/Gtk/SettingsDialog.vala:232 msgid "seconds" msgstr "saniye" + +#, fuzzy +#~ msgid "Hide kernels older than " +#~ msgstr "4.0 sürümden düşük çekirdekleri gizle" diff --git a/po/uk.po b/po/uk.po index ab4f08d6..3abc13e3 100644 --- a/po/uk.po +++ b/po/uk.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu\n" "Report-Msgid-Bugs-To: b.kenyon.w@gmail.com\n" -"POT-Creation-Date: 2020-01-03 19:34-0500\n" +"POT-Creation-Date: 2020-01-04 00:31-0500\n" "PO-Revision-Date: 2019-07-25 11:00+0300\n" "Last-Translator: Serhii Golovko \n" "Language-Team: Ukranian \n" @@ -13,11 +13,11 @@ msgstr "" "X-Launchpad-Export-Date: 2016-12-13 11:48+0000\n" "X-Generator: Poedit 2.2.1\n" -#: src/Gtk/MainWindow.vala:496 +#: src/Gtk/MainWindow.vala:494 msgid "About" msgstr "Про программу" -#: src/Console/AppConsole.vala:115 +#: src/Console/AppConsole.vala:117 msgid "Admin access is required for running this application." msgstr "Для запуску програми потрібно мати права адміністратора." @@ -25,7 +25,7 @@ msgstr "Для запуску програми потрібно мати пра msgid "Another instance of this application is running" msgstr "Запущено інший екземпляр програми" -#: src/Common/LinuxKernel.vala:105 +#: src/Common/LinuxKernel.vala:106 msgid "Architecture" msgstr "Системна архитектура" @@ -34,7 +34,7 @@ msgstr "Системна архитектура" msgid "Artists" msgstr "Художники" -#: src/Console/AppConsole.vala:102 +#: src/Console/AppConsole.vala:103 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "Припустимо, так для всіх підказок (неінтерактивний режим)" @@ -43,7 +43,7 @@ msgstr "Припустимо, так для всіх підказок (неін msgid "Authors" msgstr "Автори" -#: src/Common/LinuxKernel.vala:1152 +#: src/Common/LinuxKernel.vala:1164 msgid "Available Kernels" msgstr "Доступні ядра" @@ -51,7 +51,7 @@ msgstr "Доступні ядра" msgid "Back" msgstr "Назад" -#: src/Console/AppConsole.vala:205 src/Gtk/AppGtk.vala:112 +#: src/Console/AppConsole.vala:207 src/Gtk/AppGtk.vala:112 msgid "Cache" msgstr "Кеш" @@ -61,7 +61,7 @@ msgstr "Кеш" msgid "Cancel" msgstr "Відміна" -#: src/Gtk/MainWindow.vala:464 +#: src/Gtk/MainWindow.vala:462 msgid "Changes" msgstr "Зміни" @@ -81,7 +81,7 @@ msgstr "Перевірте наявність оновлень ядра та п msgid "Close" msgstr "Закрити" -#: src/Console/AppConsole.vala:342 +#: src/Console/AppConsole.vala:344 msgid "Command not specified" msgstr "Команда не вказана" @@ -93,7 +93,7 @@ msgstr "Команди" msgid "Commands listed below are not available on this system" msgstr "Команди перераховані нижче недоступні на цій системі" -#: src/Common/LinuxKernel.vala:737 +#: src/Common/LinuxKernel.vala:749 #, c-format msgid "Continue ?" msgstr "Продовжувати ?" @@ -103,15 +103,15 @@ msgstr "Продовжувати ?" msgid "Contributions" msgstr "Внески" -#: src/Common/LinuxKernel.vala:721 +#: src/Common/LinuxKernel.vala:733 msgid "Could not find any kernels to remove" msgstr "Не вдалося знайти жодне ядро ​​для видалення" -#: src/Console/AppConsole.vala:310 src/Gtk/MainWindow.vala:100 +#: src/Console/AppConsole.vala:312 src/Gtk/MainWindow.vala:100 msgid "Could not find requested version" msgstr "Не вдалося знайти запитувану версію" -#: src/Common/LinuxKernel.vala:715 +#: src/Common/LinuxKernel.vala:727 msgid "Could not find running kernel in list!" msgstr "Не вдалося знайти запущене ядро ​​у списку!" @@ -141,7 +141,7 @@ msgstr "Тека не знайдена" msgid "Display" msgstr "Вид" -#: src/Common/LinuxKernel.vala:91 +#: src/Common/LinuxKernel.vala:92 msgid "Distribution" msgstr "Дистрибутив" @@ -154,7 +154,7 @@ msgstr "Укладачі документації" msgid "Download packages for specified kernel" msgstr "Завантажити пакети для зазначеного ядра" -#: src/Common/LinuxKernel.vala:1198 +#: src/Common/LinuxKernel.vala:1210 #, c-format msgid "Downloading" msgstr "Завантаження" @@ -163,11 +163,15 @@ msgstr "Завантаження" msgid "E" msgstr "E" -#: src/Common/LinuxKernel.vala:1226 +#: src/Common/LinuxKernel.vala:1238 #, c-format msgid "ERROR" msgstr "ПОМИЛКА" +#: src/Console/AppConsole.vala:102 +msgid "Enable verbose debugging output" +msgstr "" + #: src/Utility/Gtk/GtkHelper.vala:17 msgid "Error" msgstr "Помилка" @@ -196,11 +200,11 @@ msgstr "Не вдалося прочитати файл" msgid "Failed to write file" msgstr "Не вдалося записати файл" -#: src/Common/LinuxKernel.vala:396 +#: src/Common/LinuxKernel.vala:408 msgid "Fetching index from kernel.ubuntu.com..." msgstr "Отримання відомостей з kernel.ubuntu.com..." -#: src/Common/LinuxKernel.vala:353 +#: src/Common/LinuxKernel.vala:365 msgid "Fetching index..." msgstr "Отримання індекса ..." @@ -238,11 +242,6 @@ msgstr "Файл не знайдено: %s" msgid "File saved" msgstr "Файл збережено" -#: src/Gtk/SettingsDialog.vala:182 -#, fuzzy -msgid "Hide kernels older than " -msgstr "Приховати ядра старіши версії 4.0" - #: src/Gtk/SettingsDialog.vala:168 msgid "Hide unstable and RC releases" msgstr "Приховати нестабільні і реліз-кандидат версії" @@ -255,19 +254,19 @@ msgstr "Година(дин)" msgid "Ignore this update" msgstr "Ігнорувати це оновлення" -#: src/Common/LinuxKernel.vala:259 +#: src/Common/LinuxKernel.vala:260 msgid "Index is fresh" msgstr "Відомості актуальні" -#: src/Common/LinuxKernel.vala:256 +#: src/Common/LinuxKernel.vala:257 msgid "Index is stale" msgstr "Відомості застаріли" -#: src/Gtk/UpdateNotificationWindow.vala:147 src/Gtk/MainWindow.vala:359 +#: src/Gtk/UpdateNotificationWindow.vala:147 src/Gtk/MainWindow.vala:357 msgid "Install" msgstr "Встановити" -#: src/Common/LinuxKernel.vala:794 +#: src/Common/LinuxKernel.vala:806 #, c-format msgid "Install Linux v%s ? (y/n): " msgstr "Встановити Linux v% s? (так/ні): " @@ -288,22 +287,22 @@ msgstr "Встановити зазначену гілку ядра" msgid "Install this kernel" msgstr "Встановити це ядро" -#: src/Common/LinuxKernel.vala:1272 +#: src/Common/LinuxKernel.vala:1284 msgid "Installation completed with errors" msgstr "Установка завершена з помилками" -#: src/Common/LinuxKernel.vala:1269 +#: src/Common/LinuxKernel.vala:1281 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "Установка завершена. Обов'язково виконайте перезавантаження, щоб " "використовувати нове ядро." -#: src/Common/LinuxKernel.vala:1169 src/Gtk/MainWindow.vala:208 +#: src/Common/LinuxKernel.vala:1181 src/Gtk/MainWindow.vala:208 msgid "Installed" msgstr "Встановлено" -#: src/Gtk/MainWindow.vala:350 src/Gtk/MainWindow.vala:550 -#: src/Gtk/MainWindow.vala:686 src/Utility/TeeJee.System.vala:281 +#: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:548 +#: src/Gtk/MainWindow.vala:684 src/Utility/TeeJee.System.vala:281 msgid "Internet connection is not active" msgstr "Інтернет з'єднання не активно" @@ -315,16 +314,16 @@ msgstr "Час очікування підключення до Інтернет msgid "Kernel" msgstr "Ядро" -#: src/Gtk/MainWindow.vala:534 +#: src/Gtk/MainWindow.vala:532 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Програма оновлення ядра для дистрибутивів на базі Ubuntu" -#: src/Common/LinuxKernel.vala:776 src/Console/AppConsole.vala:368 +#: src/Common/LinuxKernel.vala:788 src/Console/AppConsole.vala:370 #, c-format msgid "Latest point update" msgstr "Остання точка оновлення" -#: src/Common/LinuxKernel.vala:765 src/Console/AppConsole.vala:361 +#: src/Common/LinuxKernel.vala:777 src/Console/AppConsole.vala:363 #, c-format msgid "Latest update" msgstr "Останнє оновлення" @@ -345,11 +344,11 @@ msgstr "Список всіх доступних основних ядер" msgid "Missing Icon" msgstr "Нема значка" -#: src/Gtk/MainWindow.vala:368 +#: src/Gtk/MainWindow.vala:366 msgid "Multiple Kernels Selected" msgstr "Вибрано кілька ядер" -#: src/Console/AppConsole.vala:292 +#: src/Console/AppConsole.vala:294 msgid "Multiple kernels selected for installation. Select only one." msgstr "Для встановлення вибрано кілька ядер. Виберіть лише одну." @@ -357,21 +356,21 @@ msgstr "Для встановлення вибрано кілька ядер. В msgid "No" msgstr "Ні" -#: src/Gtk/MainWindow.vala:350 src/Gtk/MainWindow.vala:550 -#: src/Gtk/MainWindow.vala:686 +#: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:548 +#: src/Gtk/MainWindow.vala:684 msgid "No Internet" msgstr "Інтернету немає" -#: src/Console/AppConsole.vala:286 src/Console/AppConsole.vala:323 +#: src/Console/AppConsole.vala:288 src/Console/AppConsole.vala:325 msgid "No kernels specified" msgstr "Ядра не вказані" -#: src/Common/LinuxKernel.vala:784 src/Console/AppConsole.vala:373 -#: src/Console/AppConsole.vala:431 src/Gtk/MainWindow.vala:796 +#: src/Common/LinuxKernel.vala:796 src/Console/AppConsole.vala:375 +#: src/Console/AppConsole.vala:433 src/Gtk/MainWindow.vala:794 msgid "No updates found" msgstr "Оновлень не знайдено" -#: src/Gtk/MainWindow.vala:371 src/Gtk/MainWindow.vala:382 +#: src/Gtk/MainWindow.vala:369 src/Gtk/MainWindow.vala:380 msgid "Not Selected" msgstr "Не вибрано" @@ -387,7 +386,7 @@ msgstr "Повідомити, чи доступний великий випус msgid "Notify if a point release is available" msgstr "Повідомити, чи доступний невеликий випуск" -#: src/Common/LinuxKernel.vala:1217 +#: src/Common/LinuxKernel.vala:1229 #: src/Utility/Gtk/CustomMessageDialog.vala:150 #: src/Utility/Gtk/CustomMessageDialog.vala:154 #, c-format @@ -402,12 +401,16 @@ msgstr "Параметри" msgid "Other" msgstr "Інший" -#: src/Common/LinuxKernel.vala:1060 +#: src/Console/AppConsole.vala:104 +msgid "Override user" +msgstr "" + +#: src/Common/LinuxKernel.vala:1072 #, c-format msgid "Packages Available" msgstr "Доступні пакети" -#: src/Common/LinuxKernel.vala:1068 +#: src/Common/LinuxKernel.vala:1080 #, c-format msgid "Packages Installed" msgstr "Встановлені пакети" @@ -416,7 +419,7 @@ msgstr "Встановлені пакети" msgid "Please install required packages and try again" msgstr "Встановити необхідні пакети і спробуйте знову" -#: src/Common/LinuxKernel.vala:1293 +#: src/Common/LinuxKernel.vala:1305 msgid "Preparing to remove selected kernels" msgstr "Підготовка до видалення вибраних ядер" @@ -424,19 +427,19 @@ msgstr "Підготовка до видалення вибраних ядер" msgid "Print debug information" msgstr "Роздрукувати зневадження" -#: src/Gtk/MainWindow.vala:425 +#: src/Gtk/MainWindow.vala:423 msgid "Purge" msgstr "Чистити" -#: src/Gtk/MainWindow.vala:343 +#: src/Gtk/MainWindow.vala:341 msgid "Refresh" msgstr "Оновити" -#: src/Gtk/MainWindow.vala:569 +#: src/Gtk/MainWindow.vala:567 msgid "Refreshing..." msgstr "Оновлення..." -#: src/Gtk/MainWindow.vala:376 +#: src/Gtk/MainWindow.vala:374 msgid "Remove" msgstr "Видалити" @@ -444,7 +447,7 @@ msgstr "Видалити" msgid "Remove files from application cache" msgstr "Видалити файли з кешу програми" -#: src/Console/AppConsole.vala:94 src/Gtk/MainWindow.vala:426 +#: src/Console/AppConsole.vala:94 src/Gtk/MainWindow.vala:424 msgid "Remove installed kernels older than running kernel" msgstr "Видаліть встановлені ядра, старші за запущене" @@ -452,32 +455,32 @@ msgstr "Видаліть встановлені ядра, старші за за msgid "Remove specified kernel" msgstr "Видаліть вказане ядро" -#: src/Console/AppConsole.vala:200 src/Console/AppConsole.vala:314 -#: src/Console/AppConsole.vala:343 +#: src/Console/AppConsole.vala:202 src/Console/AppConsole.vala:316 +#: src/Console/AppConsole.vala:345 msgid "Run '" msgstr "Запуск" -#: src/Console/AppConsole.vala:118 +#: src/Console/AppConsole.vala:120 msgid "Run the application as admin with pkexec or sudo." msgstr "Запустіть додаток як адміністратор за допомогою pkexec або sudo." -#: src/Common/LinuxKernel.vala:1169 src/Gtk/MainWindow.vala:208 +#: src/Common/LinuxKernel.vala:1181 src/Gtk/MainWindow.vala:208 msgid "Running" msgstr "Використовується" -#: src/Gtk/MainWindow.vala:368 +#: src/Gtk/MainWindow.vala:366 msgid "Select a single kernel to install" msgstr "Виберіть одне ядро ​​для встановлення" -#: src/Gtk/MainWindow.vala:371 +#: src/Gtk/MainWindow.vala:369 msgid "Select the kernel to install" msgstr "Виберіть ядро ​​для встановлення" -#: src/Gtk/MainWindow.vala:382 +#: src/Gtk/MainWindow.vala:380 msgid "Select the kernels to remove" msgstr "Виберіть ядра для видалення" -#: src/Common/LinuxKernel.vala:1288 +#: src/Common/LinuxKernel.vala:1300 msgid "" "Selected kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -485,7 +488,7 @@ msgstr "" "Це ядро ​​зараз працює і не може бути видалено. \n" "Встановіть інше ядро, перш ніж видаляти його." -#: src/Gtk/MainWindow.vala:475 src/Gtk/SettingsDialog.vala:55 +#: src/Gtk/MainWindow.vala:473 src/Gtk/SettingsDialog.vala:55 msgid "Settings" msgstr "Налаштування" @@ -493,6 +496,10 @@ msgstr "Налаштування" msgid "Show" msgstr "Показати" +#: src/Gtk/SettingsDialog.vala:182 +msgid "Show N previous major versions " +msgstr "" + #: src/Gtk/AppGtk.vala:186 msgid "Show all options" msgstr "Показати усі параметри" @@ -525,11 +532,11 @@ msgstr "Зупинено" msgid "Syntax" msgstr "Синтаксис" -#: src/Console/AppConsole.vala:206 src/Gtk/AppGtk.vala:113 +#: src/Console/AppConsole.vala:208 src/Gtk/AppGtk.vala:113 msgid "Temp" msgstr "Темп" -#: src/Common/LinuxKernel.vala:730 +#: src/Common/LinuxKernel.vala:742 #, c-format msgid "The following kernels will be removed:" msgstr "Наступні ядра будуть видалені:" @@ -539,11 +546,11 @@ msgstr "Наступні ядра будуть видалені:" msgid "Third Party Tools" msgstr "Сторонние инструменты" -#: src/Common/LinuxKernel.vala:1240 src/Gtk/MainWindow.vala:681 +#: src/Common/LinuxKernel.vala:1252 src/Gtk/MainWindow.vala:679 msgid "This kernel is already installed." msgstr "Это ядро уже установлено." -#: src/Common/LinuxKernel.vala:1341 +#: src/Common/LinuxKernel.vala:1353 msgid "" "This kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -556,15 +563,15 @@ msgstr "" msgid "Translators" msgstr "Перекладачи" -#: src/Common/LinuxKernel.vala:1325 src/Common/LinuxKernel.vala:1378 +#: src/Common/LinuxKernel.vala:1337 src/Common/LinuxKernel.vala:1390 msgid "Un-install completed" msgstr "Удаление завершено" -#: src/Common/LinuxKernel.vala:1328 src/Common/LinuxKernel.vala:1381 +#: src/Common/LinuxKernel.vala:1340 src/Common/LinuxKernel.vala:1393 msgid "Un-install completed with errors" msgstr "Удаление завершено с ошибками" -#: src/Console/AppConsole.vala:198 src/Gtk/AppGtk.vala:168 +#: src/Console/AppConsole.vala:200 src/Gtk/AppGtk.vala:168 msgid "Unknown option" msgstr "Невідомий параметр" @@ -591,3 +598,7 @@ msgstr "[Увага] Вилучено неправильне блокуванн #: src/Gtk/SettingsDialog.vala:232 msgid "seconds" msgstr "секунди" + +#, fuzzy +#~ msgid "Hide kernels older than " +#~ msgstr "Приховати ядра старіши версії 4.0" diff --git a/src/Common/LinuxKernel.vala b/src/Common/LinuxKernel.vala index aec09574..dbb50f06 100644 --- a/src/Common/LinuxKernel.vala +++ b/src/Common/LinuxKernel.vala @@ -45,7 +45,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { public static string CURRENT_USER; public static string CURRENT_USER_HOME; - public static int kernel_version_threshold; + public static int show_prev_majors; public static bool hide_unstable; public static LinuxKernel kernel_active; @@ -68,6 +68,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { public static bool cancelled; public static bool task_is_running; public static bool _temp_refresh; + public static int highest_maj; // class initialize @@ -244,7 +245,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { private static void query_thread() { - log_debug("query: kernel_version_threshold: %s".printf(kernel_version_threshold.to_string())); + log_debug("query: show_prev_majors: %s".printf(show_prev_majors.to_string())); log_debug("query: hide_unstable: %s".printf(hide_unstable.to_string())); //DownloadManager.reset_counter(); @@ -269,13 +270,23 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { // TODO: Implement locking for multiple download threads - var kvt = new LinuxKernel.from_version(kernel_version_threshold.to_string()); - + // find highest major + highest_maj = 0; + foreach(var kern in kernel_list){ + + //log_debug("kern.version_maj = %d".printf(kern.version_maj)); + if (kern.version_maj > highest_maj){ + highest_maj = kern.version_maj; + log_debug("highest_maj = %d".printf(highest_maj)); + } + } + status_line = ""; progress_total = 0; progress_count = 0; foreach(var kern in kernel_list){ - if (kern.compare_to(kvt) < 0){ + + if (kern.version_maj < highest_maj-show_prev_majors){ continue; } @@ -308,8 +319,9 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { continue; } - if (kern.compare_to(kvt) < 0){ - //log_debug("older than %s: %s".printf(kvt).printf(kern.version_main)); + if (kern.version_maj < highest_maj-show_prev_majors){ + //log_debug("major version: %s".printf(kern.version_maj)); + //log_debug("older than: %s".printf(highest_maj-show_prev_majors)); continue; } @@ -1152,7 +1164,6 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { log_msg(_("Available Kernels")); log_draw_line(); - var kvt = new LinuxKernel.from_version(kernel_version_threshold.to_string()); foreach(var kern in kernel_list){ if (!kern.is_valid){ continue; @@ -1160,7 +1171,8 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { if (hide_unstable && kern.is_unstable){ continue; } - if (kern.compare_to(kvt) < 0){ + + if (kern.version_maj < highest_maj-show_prev_majors){ continue; } diff --git a/src/Common/Main.vala b/src/Common/Main.vala index 5fda0747..c9dc84a2 100644 --- a/src/Common/Main.vala +++ b/src/Common/Main.vala @@ -141,7 +141,7 @@ public class Main : GLib.Object{ config.set_string_member("notify_bubble", notify_bubble.to_string()); config.set_string_member("notify_dialog", notify_dialog.to_string()); config.set_string_member("hide_unstable", LinuxKernel.hide_unstable.to_string()); - config.set_string_member("kernel_version_threshold", LinuxKernel.kernel_version_threshold.to_string()); + config.set_string_member("show_prev_majors", LinuxKernel.show_prev_majors.to_string()); config.set_string_member("notify_interval_unit", notify_interval_unit.to_string()); config.set_string_member("notify_interval_value", notify_interval_value.to_string()); config.set_string_member("connection_timeout_seconds", connection_timeout_seconds.to_string()); @@ -180,7 +180,7 @@ public class Main : GLib.Object{ if (!f.query_exists()) { // initialize static LinuxKernel.hide_unstable = true; - LinuxKernel.kernel_version_threshold = int.parse(DEFAULT_KERNEL_VERSION_THRESHOLD); + LinuxKernel.show_prev_majors = int.parse(DEFAULT_SHOW_PREV_MAJORS); return; } @@ -205,7 +205,7 @@ public class Main : GLib.Object{ skip_connection_check = json_get_bool(config, "skip_connection_check", false); LinuxKernel.hide_unstable = json_get_bool(config, "hide_unstable", true); - LinuxKernel.kernel_version_threshold = json_get_int(config, "kernel_version_threshold", int.parse(DEFAULT_KERNEL_VERSION_THRESHOLD)); + LinuxKernel.show_prev_majors = json_get_int(config, "show_prev_majors", int.parse(DEFAULT_SHOW_PREV_MAJORS)); log_debug("Load config file: %s".printf(APP_CONFIG_FILE)); } diff --git a/src/Console/AppConsole.vala b/src/Console/AppConsole.vala index 82fab113..125fd94f 100644 --- a/src/Console/AppConsole.vala +++ b/src/Console/AppConsole.vala @@ -36,7 +36,7 @@ public Main App; [CCode(cname="BRANDING_VERSION")] extern const string BRANDING_VERSION; [CCode(cname="BRANDING_AUTHORNAME")] extern const string BRANDING_AUTHORNAME; [CCode(cname="BRANDING_AUTHOREMAIL")] extern const string BRANDING_AUTHOREMAIL; -[CCode(cname="DEFAULT_KERNEL_VERSION_THRESHOLD")] extern const string DEFAULT_KERNEL_VERSION_THRESHOLD; +[CCode(cname="DEFAULT_SHOW_PREV_MAJORS")] extern const string DEFAULT_SHOW_PREV_MAJORS; const string LOCALE_DIR = "/usr/share/locale"; @@ -99,7 +99,9 @@ public class AppConsole : GLib.Object { msg += _("Options") + ":\n"; msg += "\n"; msg += " --clean-cache " + _("Remove files from application cache") + "\n"; + msg += " --debug " + _("Enable verbose debugging output") + "\n"; msg += " --yes " + _("Assume Yes for all prompts (non-interactive mode)") + "\n"; + msg += " --user " + _("Override user") + "\n"; msg += "\n"; msg += "Notes:\n"; msg += "1. Comma separated list of version strings can be specified for --remove and --download\n"; diff --git a/src/Gtk/AppGtk.vala b/src/Gtk/AppGtk.vala index aec8025d..4be6cff0 100644 --- a/src/Gtk/AppGtk.vala +++ b/src/Gtk/AppGtk.vala @@ -40,7 +40,7 @@ public Main App; [CCode(cname="BRANDING_AUTHORNAME")] extern const string BRANDING_AUTHORNAME; [CCode(cname="BRANDING_AUTHOREMAIL")] extern const string BRANDING_AUTHOREMAIL; [CCode(cname="BRANDING_WEBSITE")] extern const string BRANDING_WEBSITE; -[CCode(cname="DEFAULT_KERNEL_VERSION_THRESHOLD")] extern const string DEFAULT_KERNEL_VERSION_THRESHOLD; +[CCode(cname="DEFAULT_SHOW_PREV_MAJORS")] extern const string DEFAULT_SHOW_PREV_MAJORS; public const string ICON_DIR = BRANDING_SHORTNAME; @@ -183,7 +183,7 @@ public class AppGtk : GLib.Object { msg += _("Options") + ":\n"; msg += "\n"; msg += " --debug " + _("Print debug information") + "\n"; - msg += " --h[elp] " + _("Show all options") + "\n"; + msg += " --help " + _("Show all options") + "\n"; msg += "\n"; return msg; } diff --git a/src/Gtk/MainWindow.vala b/src/Gtk/MainWindow.vala index 9b1f9049..484485ee 100644 --- a/src/Gtk/MainWindow.vala +++ b/src/Gtk/MainWindow.vala @@ -273,8 +273,6 @@ public class MainWindow : Gtk.Window{ log_error (e.message); } - var kvt = new LinuxKernel.from_version(LinuxKernel.kernel_version_threshold.to_string()); - TreeIter iter; bool odd_row = false; foreach(var kern in LinuxKernel.kernel_list) { @@ -284,7 +282,7 @@ public class MainWindow : Gtk.Window{ if (LinuxKernel.hide_unstable && kern.is_unstable){ continue; } - if (kern.compare_to(kvt) < 0){ + if (kern.version_maj < LinuxKernel.highest_maj-LinuxKernel.show_prev_majors){ continue; } @@ -477,14 +475,14 @@ public class MainWindow : Gtk.Window{ button.clicked.connect(() => { - int prev_kvt = LinuxKernel.kernel_version_threshold; + int prev_spm = LinuxKernel.show_prev_majors; bool prev_hide_unstable = LinuxKernel.hide_unstable; var dlg = new SettingsDialog.with_parent(this); dlg.run(); dlg.destroy(); - if ((prev_kvt != LinuxKernel.kernel_version_threshold) + if ((prev_spm != LinuxKernel.show_prev_majors) || (prev_hide_unstable != LinuxKernel.hide_unstable)){ refresh_cache(); } diff --git a/src/Gtk/SettingsDialog.vala b/src/Gtk/SettingsDialog.vala index bf1b7ff2..d1d8587d 100644 --- a/src/Gtk/SettingsDialog.vala +++ b/src/Gtk/SettingsDialog.vala @@ -179,18 +179,18 @@ public class SettingsDialog : Gtk.Dialog { hbox = new Gtk.Box(Orientation.HORIZONTAL, 6); vbox_main.add (hbox); - label = new Label(_("Hide kernels older than ")); + label = new Label(_("Show N previous major versions ")); label.xalign = (float) 0.0; label.margin_start = 6; hbox.add (label); - var kvt_adj = new Gtk.Adjustment(LinuxKernel.kernel_version_threshold, 0, 99, 1, 1, 0); - var kvt_spin = new Gtk.SpinButton (kvt_adj, 1, 0); - kvt_spin.xalign = (float) 0.5; - hbox.add(kvt_spin); + var spm_adj = new Gtk.Adjustment(LinuxKernel.show_prev_majors, 0, 99, 1, 1, 0); + var spm_spin = new Gtk.SpinButton (spm_adj, 1, 0); + spm_spin.xalign = (float) 0.5; + hbox.add(spm_spin); - kvt_spin.changed.connect(()=>{ - LinuxKernel.kernel_version_threshold = (int) kvt_spin.get_value(); + spm_spin.changed.connect(()=>{ + LinuxKernel.show_prev_majors = (int) spm_spin.get_value(); }); // other From 6f9d40147eeadec9f50df2dd4bdf0d65f5cb3bf4 Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Sat, 4 Jan 2020 03:40:55 -0500 Subject: [PATCH 063/567] dependencies --- .deb_build_number.mak | 2 +- README.md | 2 +- README.md.src | 2 +- debian/changelog | 3 ++- debian/control | 4 ++-- debian/control.src | 4 ++-- po/messages.pot | 2 +- 7 files changed, 10 insertions(+), 9 deletions(-) diff --git a/.deb_build_number.mak b/.deb_build_number.mak index 0c01d166..9ffc103e 100644 --- a/.deb_build_number.mak +++ b/.deb_build_number.mak @@ -1,3 +1,3 @@ # This file is generated by Makefile DEB_PKG_VERSION := 1.0.3 -DEB_BUILD_NUMBER := 0001 +DEB_BUILD_NUMBER := 0004 diff --git a/README.md b/README.md index 0feaa2d6..e24e962a 100644 --- a/README.md +++ b/README.md @@ -23,7 +23,7 @@ mainline is written using Vala and GTK3. Source code and binaries are available sudo apt install mainline ### Build - sudo apt install libgee-0.8-dev libjson-glib-dev libvte-2.91-dev valac + sudo apt install libgee-0.8-dev libjson-glib-dev libvte-2.91-dev valac aria2 lsb-release aptitude git clone https://github.com/bkw777/mainline.git cd mainline make diff --git a/README.md.src b/README.md.src index d8b691a6..f36b36c2 100644 --- a/README.md.src +++ b/README.md.src @@ -23,7 +23,7 @@ BRANDING_SHORTNAME is written using Vala and GTK3. Source code and binaries are sudo apt install mainline ### Build - sudo apt install libgee-0.8-dev libjson-glib-dev libvte-2.91-dev valac + sudo apt install libgee-0.8-dev libjson-glib-dev libvte-2.91-dev valac aria2 lsb-release aptitude git clone BRANDING_GITREPO cd BRANDING_SHORTNAME make diff --git a/debian/changelog b/debian/changelog index d320a2e8..93733baa 100644 --- a/debian/changelog +++ b/debian/changelog @@ -3,8 +3,9 @@ mainline (1.0.3) UNRELEASED; urgency=medium Instead of saying hide kernels older than major version N, where the user has to periodically increase N manually, Now the setting says, hide kernels older than major version (CURRENT_HIGHEST minus N), where CURRENT_HIGHEST is determined on the fly every time, and N can stay the same 0 or 1 etc forever. All of the current highest major version is always shown. The setting says how many previous major versions to add to that. + * Fill in a few missing dependencies (README.md.src, debian/control.src) - -- Brian K. White Sat, 04 Jan 2020 01:13:54 -0500 + -- Brian K. White Sat, 04 Jan 2020 03:35:56 -0500 mainline (1.0.2) UNRELEASED; urgency=medium * Makefile: diff --git a/debian/control b/debian/control index 9e829690..8dff0d8a 100644 --- a/debian/control +++ b/debian/control @@ -2,13 +2,13 @@ Source: mainline Section: utils Priority: extra Maintainer: Brian K. White -Build-Depends: debhelper, valac (>= 0.40), libgtk-3-dev, libgee-0.8-dev, libjson-glib-dev, libvte-2.91-dev +Build-Depends: debhelper, valac (>= 0.40), libgtk-3-dev, libgee-0.8-dev, libjson-glib-dev, libvte-2.91-dev, lsb-release Standards-Version: 4.3.0 Homepage: https://github.com/bkw777/mainline Package: mainline Architecture: any -Depends: ${shlibs:Depends}, ${misc:Depends}, aptitude, aria2 +Depends: ${shlibs:Depends}, ${misc:Depends}, aptitude, aria2, lsb-release Recommends: Description: Kernel Update Utility for Ubuntu-based distributions Utility for installing mainline Linux kernels on Ubuntu-based distributions. diff --git a/debian/control.src b/debian/control.src index 736706ef..d1a3369d 100644 --- a/debian/control.src +++ b/debian/control.src @@ -2,13 +2,13 @@ Source: BRANDING_SHORTNAME Section: utils Priority: extra Maintainer: BRANDING_AUTHORNAME -Build-Depends: debhelper, valac (>= 0.40), libgtk-3-dev, libgee-0.8-dev, libjson-glib-dev, libvte-2.91-dev +Build-Depends: debhelper, valac (>= 0.40), libgtk-3-dev, libgee-0.8-dev, libjson-glib-dev, libvte-2.91-dev, lsb-release Standards-Version: 4.3.0 Homepage: BRANDING_WEBSITE Package: BRANDING_SHORTNAME Architecture: any -Depends: ${shlibs:Depends}, ${misc:Depends}, aptitude, aria2 +Depends: ${shlibs:Depends}, ${misc:Depends}, aptitude, aria2, lsb-release Recommends: Description: Kernel Update Utility for Ubuntu-based distributions Utility for installing mainline Linux kernels on Ubuntu-based distributions. diff --git a/po/messages.pot b/po/messages.pot index df2109c5..e54957b5 100644 --- a/po/messages.pot +++ b/po/messages.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline 1.0.3\n" "Report-Msgid-Bugs-To: b.kenyon.w@gmail.com\n" -"POT-Creation-Date: 2020-01-04 01:14-0500\n" +"POT-Creation-Date: 2020-01-04 03:35-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" From 73c60bcd2562294931bf8234ebee25fe92cb751a Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Sat, 4 Jan 2020 04:08:53 -0500 Subject: [PATCH 064/567] support vala 0.46 / ubuntu 20.04, fix debian/changelog, maybe --- .deb_build_number.mak | 4 ++-- BRANDING.mak | 2 +- debian/changelog | 16 +++++++++++----- po/messages.pot | 4 ++-- src/Utility/AsyncTask.vala | 2 +- 5 files changed, 17 insertions(+), 11 deletions(-) diff --git a/.deb_build_number.mak b/.deb_build_number.mak index 9ffc103e..e89a77bc 100644 --- a/.deb_build_number.mak +++ b/.deb_build_number.mak @@ -1,3 +1,3 @@ # This file is generated by Makefile -DEB_PKG_VERSION := 1.0.3 -DEB_BUILD_NUMBER := 0004 +DEB_PKG_VERSION := 1.0.4 +DEB_BUILD_NUMBER := 0000 diff --git a/BRANDING.mak b/BRANDING.mak index 88367198..d0ce4a8e 100644 --- a/BRANDING.mak +++ b/BRANDING.mak @@ -3,7 +3,7 @@ VERSION_MAJOR = 1 VERSION_MINOR = 0 -VERSION_MICRO = 3 +VERSION_MICRO = 4 BRANDING_SHORTNAME = mainline BRANDING_LONGNAME = Ubuntu Mainline Kernel Installer BRANDING_AUTHORNAME = Brian K. White diff --git a/debian/changelog b/debian/changelog index 93733baa..862fa458 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,13 +1,19 @@ -mainline (1.0.3) UNRELEASED; urgency=medium +mainline (1.0.4) unstable; urgency=medium + * Support vala 0.46 / Uubuntu 20.04 + copy fix from https://gitlab.manjaro.org/applications/pamac/issues/649 + Fill in a few missing dependencies (README.md.src, debian/control.src) + + -- Brian K. White Sat, 04 Jan 2020 03:58:01 -0500 + +mainline (1.0.3) unstable; urgency=medium * Change setting kernel_version_threshold to show_prev_majors Instead of saying hide kernels older than major version N, where the user has to periodically increase N manually, Now the setting says, hide kernels older than major version (CURRENT_HIGHEST minus N), where CURRENT_HIGHEST is determined on the fly every time, and N can stay the same 0 or 1 etc forever. All of the current highest major version is always shown. The setting says how many previous major versions to add to that. - * Fill in a few missing dependencies (README.md.src, debian/control.src) - -- Brian K. White Sat, 04 Jan 2020 03:35:56 -0500 + -- Brian K. White Sat, 04 Jan 2020 01:13:54 -0500 -mainline (1.0.2) UNRELEASED; urgency=medium +mainline (1.0.2) unstable; urgency=medium * Makefile: - Use one variable style everywhere - Only regenerate .pot file if any source files changed @@ -31,7 +37,7 @@ mainline (1.0.2) UNRELEASED; urgency=medium -- Brian K. White Fri, 03 Jan 2020 18:01:59 -0500 -mainline (1.0.1) UNRELEASED; urgency=medium +mainline (1.0.1) unstable; urgency=medium * Disabled buggy progress bar * Add missing translators on credits window diff --git a/po/messages.pot b/po/messages.pot index e54957b5..1043febe 100644 --- a/po/messages.pot +++ b/po/messages.pot @@ -6,9 +6,9 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: mainline 1.0.3\n" +"Project-Id-Version: mainline 1.0.4\n" "Report-Msgid-Bugs-To: b.kenyon.w@gmail.com\n" -"POT-Creation-Date: 2020-01-04 03:35-0500\n" +"POT-Creation-Date: 2020-01-04 04:04-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/src/Utility/AsyncTask.vala b/src/Utility/AsyncTask.vala index a705e829..24183566 100644 --- a/src/Utility/AsyncTask.vala +++ b/src/Utility/AsyncTask.vala @@ -71,7 +71,7 @@ public abstract class AsyncTask : GLib.Object{ public signal void stderr_line_read(string line); public signal void task_complete(); - public AsyncTask(){ + protected AsyncTask(){ working_dir = TEMP_DIR + "/" + timestamp_for_path(); script_file = path_combine(working_dir, "script.sh"); log_file = path_combine(working_dir, "task.log"); From e88e46ed8b2b1365e434e4cbabb854b8f32e9854 Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Tue, 14 Jan 2020 14:09:14 -0500 Subject: [PATCH 065/567] remove more unused code --- BRANDING.mak | 2 +- Makefile | 3 +- README.md | 4 +- README.md.src | 4 +- mainline.desktop | 2 +- mainline.desktop.src | 2 +- po/es.po | 76 ++++++++++----------- po/fr.po | 76 ++++++++++----------- po/hr.po | 76 ++++++++++----------- po/messages.pot | 78 +++++++++++----------- po/nl.po | 76 ++++++++++----------- po/pl.po | 76 ++++++++++----------- po/ru.po | 76 ++++++++++----------- po/sv.po | 76 ++++++++++----------- po/tr.po | 76 ++++++++++----------- po/uk.po | 76 ++++++++++----------- share/polkit-1/actions/mainline.policy.src | 9 ++- src/Common/Main.vala | 12 ++-- src/Console/AppConsole.vala | 8 +-- src/Gtk/AppGtk.vala | 2 - src/Gtk/ProgressWindow.vala | 2 +- src/Gtk/TerminalWindow.vala | 2 + src/Utility/AsyncTask.vala | 49 -------------- src/Utility/TeeJee.Process.vala | 30 --------- 24 files changed, 408 insertions(+), 485 deletions(-) diff --git a/BRANDING.mak b/BRANDING.mak index d0ce4a8e..001fac33 100644 --- a/BRANDING.mak +++ b/BRANDING.mak @@ -3,7 +3,7 @@ VERSION_MAJOR = 1 VERSION_MINOR = 0 -VERSION_MICRO = 4 +VERSION_MICRO = 5 BRANDING_SHORTNAME = mainline BRANDING_LONGNAME = Ubuntu Mainline Kernel Installer BRANDING_AUTHORNAME = Brian K. White diff --git a/Makefile b/Makefile index 1950b410..42bb4593 100644 --- a/Makefile +++ b/Makefile @@ -39,7 +39,7 @@ misc_files := README.md \ INSTALL \ $(BRANDING_SHORTNAME).desktop \ debian/control \ - debian/copyright + debian/copyright \ # share/polkit-1/actions/$(BRANDING_SHORTNAME).policy common_vala_files := src/Common/*.vala src/Utility/*.vala @@ -80,6 +80,7 @@ $(misc_files): %: %.src BRANDING.mak -e ';s/BRANDING_VERSION/$(BRANDING_VERSION)/g' \ -e ';s|BRANDING_GITREPO|$(BRANDING_GITREPO)|g' \ $(@).src >$(@) +# -e ';s|DEST_BIN_DIR|$(DESTDIR)$(bindir)|g' $(pot_file): $(misc_files) $(common_vala_files) $(tui_vala_files) $(gui_vala_files) find . -iname "*.vala" -print0 | xargs -0 xgettext --from-code=UTF-8 --language=C --keyword=_ \ diff --git a/README.md b/README.md index e24e962a..99d068a0 100644 --- a/README.md +++ b/README.md @@ -72,6 +72,8 @@ Populating the main window fails, but works if you just do it again. Determining what is currently installed & running fails, but works if you just do it again ...that is really kind of inexcusable crap and could all be a lot better. * More careful temp file / temp working dir management. -It does avoidable dumb things like creating dirs/files as one user and then can't remove or use them later as another user. +It does avoidable dumb things like creating dirs/files as one user and then can't remove or use them later as another user. +Maybe do clean_cache() after every action? +https://github.com/joshuadowding/ukuu/commit/ca03723a7a542cd591246a0f6d6a62bad4fac57c * Maybe replace the entire thing with a bash script, maybe with zenity for an optional gui? https://github.com/pimlie/ubuntu-mainline-kernel.sh diff --git a/README.md.src b/README.md.src index f36b36c2..f802ae34 100644 --- a/README.md.src +++ b/README.md.src @@ -72,6 +72,8 @@ Populating the main window fails, but works if you just do it again. Determining what is currently installed & running fails, but works if you just do it again ...that is really kind of inexcusable crap and could all be a lot better. * More careful temp file / temp working dir management. -It does avoidable dumb things like creating dirs/files as one user and then can't remove or use them later as another user. +It does avoidable dumb things like creating dirs/files as one user and then can't remove or use them later as another user. +Maybe do clean_cache() after every action? +https://github.com/joshuadowding/ukuu/commit/ca03723a7a542cd591246a0f6d6a62bad4fac57c * Maybe replace the entire thing with a bash script, maybe with zenity for an optional gui? https://github.com/pimlie/ubuntu-mainline-kernel.sh diff --git a/mainline.desktop b/mainline.desktop index 09232f72..4fe45e47 100644 --- a/mainline.desktop +++ b/mainline.desktop @@ -7,6 +7,6 @@ GenericName=Ubuntu Mainline Kernel Installer Terminal=false Icon=mainline Comment=Ubuntu Mainline Kernel Installer -X-KDE-StartupNotify=false +StartupNotify=true; Categories=System; StartupWMClass=mainline-gtk diff --git a/mainline.desktop.src b/mainline.desktop.src index 17e073f2..7c20c14d 100644 --- a/mainline.desktop.src +++ b/mainline.desktop.src @@ -7,6 +7,6 @@ GenericName=BRANDING_LONGNAME Terminal=false Icon=BRANDING_SHORTNAME Comment=BRANDING_LONGNAME -X-KDE-StartupNotify=false +StartupNotify=true; Categories=System; StartupWMClass=BRANDING_SHORTNAME-gtk diff --git a/po/es.po b/po/es.po index 965559a0..cdce9f26 100644 --- a/po/es.po +++ b/po/es.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu\n" "Report-Msgid-Bugs-To: b.kenyon.w@gmail.com\n" -"POT-Creation-Date: 2020-01-04 00:31-0500\n" +"POT-Creation-Date: 2020-01-14 12:48-0500\n" "PO-Revision-Date: 2018-01-03 02:03-0600\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish\n" @@ -21,7 +21,7 @@ msgstr "" msgid "About" msgstr "Acerca de" -#: src/Console/AppConsole.vala:117 +#: src/Console/AppConsole.vala:113 msgid "Admin access is required for running this application." msgstr "" "Se necesitan privilegios administrativos para ejecutar esta aplicación." @@ -39,7 +39,7 @@ msgstr "Arquitectura del sistema" msgid "Artists" msgstr "Artistas" -#: src/Console/AppConsole.vala:103 +#: src/Console/AppConsole.vala:99 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "Asumir Sí para todas las solicitudes (modo no interactivo)" @@ -56,7 +56,7 @@ msgstr "Núcleos disponibles" msgid "Back" msgstr "Atrás" -#: src/Console/AppConsole.vala:207 src/Gtk/AppGtk.vala:112 +#: src/Console/AppConsole.vala:203 src/Gtk/AppGtk.vala:110 msgid "Cache" msgstr "Cache" @@ -74,11 +74,11 @@ msgstr "Cambios" msgid "Check every" msgstr "Comprobar cada" -#: src/Console/AppConsole.vala:86 +#: src/Console/AppConsole.vala:82 msgid "Check for kernel updates" msgstr "Buscar actualizaciones del núcleo" -#: src/Console/AppConsole.vala:87 +#: src/Console/AppConsole.vala:83 msgid "Check for kernel updates and notify current user" msgstr "Compruebe las actualizaciones del kernel y notifique al usuario actual" @@ -86,15 +86,15 @@ msgstr "Compruebe las actualizaciones del kernel y notifique al usuario actual" msgid "Close" msgstr "Cerrar" -#: src/Console/AppConsole.vala:344 +#: src/Console/AppConsole.vala:340 msgid "Command not specified" msgstr "Coomand no especificado" -#: src/Console/AppConsole.vala:84 +#: src/Console/AppConsole.vala:80 msgid "Commands" msgstr "Comandos" -#: src/Common/Main.vala:105 +#: src/Common/Main.vala:107 msgid "Commands listed below are not available on this system" msgstr "" "Las órdenes enumeradas a continuación no están disponibles en este sistema" @@ -113,7 +113,7 @@ msgstr "Contribuciones" msgid "Could not find any kernels to remove" msgstr "Seleccione los núcleos que se desinstalarán" -#: src/Console/AppConsole.vala:312 src/Gtk/MainWindow.vala:100 +#: src/Console/AppConsole.vala:308 src/Gtk/MainWindow.vala:100 msgid "Could not find requested version" msgstr "No se pudo encontrar la versión solicitada" @@ -156,7 +156,7 @@ msgstr "Distribución" msgid "Documenters" msgstr "Documentadores" -#: src/Console/AppConsole.vala:95 +#: src/Console/AppConsole.vala:91 msgid "Download packages for specified kernel" msgstr "Descargar paquetes del núcleo especificado" @@ -174,7 +174,7 @@ msgstr "E" msgid "ERROR" msgstr "ERROR" -#: src/Console/AppConsole.vala:102 +#: src/Console/AppConsole.vala:98 msgid "Enable verbose debugging output" msgstr "" @@ -277,15 +277,15 @@ msgstr "Instalar" msgid "Install Linux v%s ? (y/n): " msgstr "" -#: src/Console/AppConsole.vala:90 +#: src/Console/AppConsole.vala:86 msgid "Install latest mainline kernel" msgstr "Instalar kernel troncal especificado" -#: src/Console/AppConsole.vala:91 +#: src/Console/AppConsole.vala:87 msgid "Install latest point update for current series" msgstr "" -#: src/Console/AppConsole.vala:92 +#: src/Console/AppConsole.vala:88 msgid "Install specified mainline kernel" msgstr "Instalar núcleo troncal especificado" @@ -325,17 +325,17 @@ msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "" "Herramienta de renovación de núcleo para distribuciones basadas en Ubuntu" -#: src/Common/LinuxKernel.vala:788 src/Console/AppConsole.vala:370 +#: src/Common/LinuxKernel.vala:788 src/Console/AppConsole.vala:366 #, c-format msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:777 src/Console/AppConsole.vala:363 +#: src/Common/LinuxKernel.vala:777 src/Console/AppConsole.vala:359 #, c-format msgid "Latest update" msgstr "" -#: src/Console/AppConsole.vala:88 +#: src/Console/AppConsole.vala:84 msgid "List all available mainline kernels" msgstr "Mostrar todos los núcleos troncales disponibles" @@ -343,7 +343,7 @@ msgstr "Mostrar todos los núcleos troncales disponibles" msgid "List available kernels" msgstr "Mostrar núcleos disponibles" -#: src/Console/AppConsole.vala:89 +#: src/Console/AppConsole.vala:85 msgid "List installed kernels" msgstr "Mostrar kernels disponibles" @@ -355,7 +355,7 @@ msgstr "Falta el icono" msgid "Multiple Kernels Selected" msgstr "Se seleccionaron varios kernels" -#: src/Console/AppConsole.vala:294 +#: src/Console/AppConsole.vala:290 msgid "Multiple kernels selected for installation. Select only one." msgstr "Se seleccionaron varios núcleos para su instalación. Elija solo uno." @@ -368,12 +368,12 @@ msgstr "No" msgid "No Internet" msgstr "No hay Internet" -#: src/Console/AppConsole.vala:288 src/Console/AppConsole.vala:325 +#: src/Console/AppConsole.vala:284 src/Console/AppConsole.vala:321 msgid "No kernels specified" msgstr "" -#: src/Common/LinuxKernel.vala:796 src/Console/AppConsole.vala:375 -#: src/Console/AppConsole.vala:433 src/Gtk/MainWindow.vala:794 +#: src/Common/LinuxKernel.vala:796 src/Console/AppConsole.vala:371 +#: src/Console/AppConsole.vala:429 src/Gtk/MainWindow.vala:794 msgid "No updates found" msgstr "No se encontró ninguna actualización" @@ -400,7 +400,7 @@ msgstr "Notificar si hay una versión puntual disponible" msgid "OK" msgstr "Aceptar" -#: src/Console/AppConsole.vala:99 src/Gtk/AppGtk.vala:183 +#: src/Console/AppConsole.vala:95 src/Gtk/AppGtk.vala:181 msgid "Options" msgstr "Opciones" @@ -408,7 +408,7 @@ msgstr "Opciones" msgid "Other" msgstr "" -#: src/Console/AppConsole.vala:104 +#: src/Console/AppConsole.vala:100 msgid "Override user" msgstr "" @@ -422,7 +422,7 @@ msgstr "Paquetes disponibles" msgid "Packages Installed" msgstr "Paquetes instalados" -#: src/Common/Main.vala:106 +#: src/Common/Main.vala:108 msgid "Please install required packages and try again" msgstr "Instale los paquetes requeridos e inténtelo de nuevo" @@ -430,7 +430,7 @@ msgstr "Instale los paquetes requeridos e inténtelo de nuevo" msgid "Preparing to remove selected kernels" msgstr "Preparándose para desinstalar los núcleos seleccionados" -#: src/Gtk/AppGtk.vala:185 +#: src/Gtk/AppGtk.vala:183 msgid "Print debug information" msgstr "Mostrar información de depuración" @@ -450,24 +450,24 @@ msgstr "Actualizando…" msgid "Remove" msgstr "Quitar" -#: src/Console/AppConsole.vala:96 src/Console/AppConsole.vala:101 +#: src/Console/AppConsole.vala:92 src/Console/AppConsole.vala:97 msgid "Remove files from application cache" msgstr "Quitar archivos de la antememoria de la aplicación" -#: src/Console/AppConsole.vala:94 src/Gtk/MainWindow.vala:424 +#: src/Console/AppConsole.vala:90 src/Gtk/MainWindow.vala:424 msgid "Remove installed kernels older than running kernel" msgstr "" -#: src/Console/AppConsole.vala:93 +#: src/Console/AppConsole.vala:89 msgid "Remove specified kernel" msgstr "Quitar el núcleo troncal especificado" -#: src/Console/AppConsole.vala:202 src/Console/AppConsole.vala:316 -#: src/Console/AppConsole.vala:345 +#: src/Console/AppConsole.vala:198 src/Console/AppConsole.vala:312 +#: src/Console/AppConsole.vala:341 msgid "Run '" msgstr "" -#: src/Console/AppConsole.vala:120 +#: src/Console/AppConsole.vala:116 msgid "Run the application as admin with pkexec or sudo." msgstr "Ejecute la aplicación con permisos administrativos con pkexec o sudo." @@ -507,7 +507,7 @@ msgstr "Mostrar" msgid "Show N previous major versions " msgstr "" -#: src/Gtk/AppGtk.vala:186 +#: src/Gtk/AppGtk.vala:184 msgid "Show all options" msgstr "Mostrar todas las opciones" @@ -519,7 +519,7 @@ msgstr "Mostrar globo de notificación en el escritorio" msgid "Show notification dialog" msgstr "Mostrar cuadro de diálogo de notificación" -#: src/Console/AppConsole.vala:97 +#: src/Console/AppConsole.vala:93 msgid "Show unstable and RC releases" msgstr "Ocultar versiones inestables y RC" @@ -535,11 +535,11 @@ msgstr "Estado" msgid "Stopped" msgstr "Detenido" -#: src/Console/AppConsole.vala:82 src/Gtk/AppGtk.vala:181 +#: src/Console/AppConsole.vala:78 src/Gtk/AppGtk.vala:179 msgid "Syntax" msgstr "Sintaxis" -#: src/Console/AppConsole.vala:208 src/Gtk/AppGtk.vala:113 +#: src/Console/AppConsole.vala:204 src/Gtk/AppGtk.vala:111 msgid "Temp" msgstr "" @@ -578,7 +578,7 @@ msgstr "Desinstalación finalizada" msgid "Un-install completed with errors" msgstr "Desinstalación finalizada con errores" -#: src/Console/AppConsole.vala:200 src/Gtk/AppGtk.vala:168 +#: src/Console/AppConsole.vala:196 src/Gtk/AppGtk.vala:166 msgid "Unknown option" msgstr "Opción desconocida" diff --git a/po/fr.po b/po/fr.po index b2d002e8..f8360f57 100644 --- a/po/fr.po +++ b/po/fr.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu\n" "Report-Msgid-Bugs-To: b.kenyon.w@gmail.com\n" -"POT-Creation-Date: 2020-01-04 00:31-0500\n" +"POT-Creation-Date: 2020-01-14 12:48-0500\n" "PO-Revision-Date: 2018-08-05 15:50+0200\n" "Last-Translator: Yolateng0 \n" "Language-Team: French\n" @@ -21,7 +21,7 @@ msgstr "" msgid "About" msgstr "À propos" -#: src/Console/AppConsole.vala:117 +#: src/Console/AppConsole.vala:113 msgid "Admin access is required for running this application." msgstr "Accès administrateur requis pour lancer cette application." @@ -39,7 +39,7 @@ msgstr "Architecture du système" msgid "Artists" msgstr "Artistes" -#: src/Console/AppConsole.vala:103 +#: src/Console/AppConsole.vala:99 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "" @@ -56,7 +56,7 @@ msgstr "Noyaux disponibles" msgid "Back" msgstr "Retour" -#: src/Console/AppConsole.vala:207 src/Gtk/AppGtk.vala:112 +#: src/Console/AppConsole.vala:203 src/Gtk/AppGtk.vala:110 msgid "Cache" msgstr "" @@ -74,11 +74,11 @@ msgstr "Changements" msgid "Check every" msgstr "Vérifier toutes les" -#: src/Console/AppConsole.vala:86 +#: src/Console/AppConsole.vala:82 msgid "Check for kernel updates" msgstr "Vérifier les mises à jour des noyaux" -#: src/Console/AppConsole.vala:87 +#: src/Console/AppConsole.vala:83 #, fuzzy msgid "Check for kernel updates and notify current user" msgstr "Vérifier les mises à jour des noyaux" @@ -87,16 +87,16 @@ msgstr "Vérifier les mises à jour des noyaux" msgid "Close" msgstr "Fermer" -#: src/Console/AppConsole.vala:344 +#: src/Console/AppConsole.vala:340 #, fuzzy msgid "Command not specified" msgstr "Impossible de trouver le fichier" -#: src/Console/AppConsole.vala:84 +#: src/Console/AppConsole.vala:80 msgid "Commands" msgstr "" -#: src/Common/Main.vala:105 +#: src/Common/Main.vala:107 msgid "Commands listed below are not available on this system" msgstr "Les commandes listées ne sont pas valables pour ce système" @@ -115,7 +115,7 @@ msgstr "Contributions" msgid "Could not find any kernels to remove" msgstr "Sélectionnez les noyaux à supprimer" -#: src/Console/AppConsole.vala:312 src/Gtk/MainWindow.vala:100 +#: src/Console/AppConsole.vala:308 src/Gtk/MainWindow.vala:100 msgid "Could not find requested version" msgstr "Impossible de trouver la version demandée" @@ -159,7 +159,7 @@ msgstr "Distribution" msgid "Documenters" msgstr "Documentalistes" -#: src/Console/AppConsole.vala:95 +#: src/Console/AppConsole.vala:91 msgid "Download packages for specified kernel" msgstr "Télécharger les paquets pour des noyaux spécifiques" @@ -177,7 +177,7 @@ msgstr "E" msgid "ERROR" msgstr "ERREUR" -#: src/Console/AppConsole.vala:102 +#: src/Console/AppConsole.vala:98 msgid "Enable verbose debugging output" msgstr "" @@ -280,16 +280,16 @@ msgstr "Installer" msgid "Install Linux v%s ? (y/n): " msgstr "" -#: src/Console/AppConsole.vala:90 +#: src/Console/AppConsole.vala:86 #, fuzzy msgid "Install latest mainline kernel" msgstr "Installer le noyau principal spécifié" -#: src/Console/AppConsole.vala:91 +#: src/Console/AppConsole.vala:87 msgid "Install latest point update for current series" msgstr "" -#: src/Console/AppConsole.vala:92 +#: src/Console/AppConsole.vala:88 msgid "Install specified mainline kernel" msgstr "Installer le noyau principal spécifié" @@ -331,17 +331,17 @@ msgstr "" "Utilitaire de mise à niveau des noyaux pour les distributions basées pour " "Ubuntu" -#: src/Common/LinuxKernel.vala:788 src/Console/AppConsole.vala:370 +#: src/Common/LinuxKernel.vala:788 src/Console/AppConsole.vala:366 #, c-format msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:777 src/Console/AppConsole.vala:363 +#: src/Common/LinuxKernel.vala:777 src/Console/AppConsole.vala:359 #, c-format msgid "Latest update" msgstr "" -#: src/Console/AppConsole.vala:88 +#: src/Console/AppConsole.vala:84 msgid "List all available mainline kernels" msgstr "Lister tous les noyaux mainline disponibles" @@ -349,7 +349,7 @@ msgstr "Lister tous les noyaux mainline disponibles" msgid "List available kernels" msgstr "Lister les noyaux disponibles" -#: src/Console/AppConsole.vala:89 +#: src/Console/AppConsole.vala:85 #, fuzzy msgid "List installed kernels" msgstr "Lister les noyaux disponibles" @@ -362,7 +362,7 @@ msgstr "Icône introuvable" msgid "Multiple Kernels Selected" msgstr "Plusieurs noyaux sélectionnés" -#: src/Console/AppConsole.vala:294 +#: src/Console/AppConsole.vala:290 msgid "Multiple kernels selected for installation. Select only one." msgstr "" "Plusieurs noyaux sélectionnés pour être installés. Sélectionnez en seulement " @@ -377,12 +377,12 @@ msgstr "Non" msgid "No Internet" msgstr "Pas d'Internet" -#: src/Console/AppConsole.vala:288 src/Console/AppConsole.vala:325 +#: src/Console/AppConsole.vala:284 src/Console/AppConsole.vala:321 msgid "No kernels specified" msgstr "" -#: src/Common/LinuxKernel.vala:796 src/Console/AppConsole.vala:375 -#: src/Console/AppConsole.vala:433 src/Gtk/MainWindow.vala:794 +#: src/Common/LinuxKernel.vala:796 src/Console/AppConsole.vala:371 +#: src/Console/AppConsole.vala:429 src/Gtk/MainWindow.vala:794 msgid "No updates found" msgstr "Aucune mise à jour disponible" @@ -409,7 +409,7 @@ msgstr "Notifier si une version stable mineure est disponible" msgid "OK" msgstr "OK" -#: src/Console/AppConsole.vala:99 src/Gtk/AppGtk.vala:183 +#: src/Console/AppConsole.vala:95 src/Gtk/AppGtk.vala:181 msgid "Options" msgstr "Options" @@ -417,7 +417,7 @@ msgstr "Options" msgid "Other" msgstr "" -#: src/Console/AppConsole.vala:104 +#: src/Console/AppConsole.vala:100 msgid "Override user" msgstr "" @@ -431,7 +431,7 @@ msgstr "Paquets disponibles" msgid "Packages Installed" msgstr "Paquets installés" -#: src/Common/Main.vala:106 +#: src/Common/Main.vala:108 msgid "Please install required packages and try again" msgstr "Veuillez installer les paquets requis et réessayer" @@ -439,7 +439,7 @@ msgstr "Veuillez installer les paquets requis et réessayer" msgid "Preparing to remove selected kernels" msgstr "Préparation à la suppression des noyaux sélectionnés" -#: src/Gtk/AppGtk.vala:185 +#: src/Gtk/AppGtk.vala:183 msgid "Print debug information" msgstr "Afficher les informations de débogage" @@ -459,25 +459,25 @@ msgstr "Actualisation..." msgid "Remove" msgstr "Supprimer" -#: src/Console/AppConsole.vala:96 src/Console/AppConsole.vala:101 +#: src/Console/AppConsole.vala:92 src/Console/AppConsole.vala:97 msgid "Remove files from application cache" msgstr "Supprimer les fichiers du cache de l'application" -#: src/Console/AppConsole.vala:94 src/Gtk/MainWindow.vala:424 +#: src/Console/AppConsole.vala:90 src/Gtk/MainWindow.vala:424 msgid "Remove installed kernels older than running kernel" msgstr "" -#: src/Console/AppConsole.vala:93 +#: src/Console/AppConsole.vala:89 #, fuzzy msgid "Remove specified kernel" msgstr "Supprimer le noyau mainline sélectionné" -#: src/Console/AppConsole.vala:202 src/Console/AppConsole.vala:316 -#: src/Console/AppConsole.vala:345 +#: src/Console/AppConsole.vala:198 src/Console/AppConsole.vala:312 +#: src/Console/AppConsole.vala:341 msgid "Run '" msgstr "" -#: src/Console/AppConsole.vala:120 +#: src/Console/AppConsole.vala:116 msgid "Run the application as admin with pkexec or sudo." msgstr "Exécutez l'application en tant qu'admin avec pkexec or sudo." @@ -517,7 +517,7 @@ msgstr "Afficher" msgid "Show N previous major versions " msgstr "" -#: src/Gtk/AppGtk.vala:186 +#: src/Gtk/AppGtk.vala:184 msgid "Show all options" msgstr "Afficher toutes les options" @@ -529,7 +529,7 @@ msgstr "Afficher la bulle de notification sur le bureau" msgid "Show notification dialog" msgstr "Afficher les notifications" -#: src/Console/AppConsole.vala:97 +#: src/Console/AppConsole.vala:93 #, fuzzy msgid "Show unstable and RC releases" msgstr "Cacher les versions instables et RC" @@ -547,11 +547,11 @@ msgstr "Statut" msgid "Stopped" msgstr "Arrêté" -#: src/Console/AppConsole.vala:82 src/Gtk/AppGtk.vala:181 +#: src/Console/AppConsole.vala:78 src/Gtk/AppGtk.vala:179 msgid "Syntax" msgstr "Syntaxe" -#: src/Console/AppConsole.vala:208 src/Gtk/AppGtk.vala:113 +#: src/Console/AppConsole.vala:204 src/Gtk/AppGtk.vala:111 msgid "Temp" msgstr "" @@ -590,7 +590,7 @@ msgstr "Désinstallation complète" msgid "Un-install completed with errors" msgstr "Désinstallation terminée avec des erreurs" -#: src/Console/AppConsole.vala:200 src/Gtk/AppGtk.vala:168 +#: src/Console/AppConsole.vala:196 src/Gtk/AppGtk.vala:166 msgid "Unknown option" msgstr "Option inconnue" diff --git a/po/hr.po b/po/hr.po index ad1f41e8..e2b5860a 100644 --- a/po/hr.po +++ b/po/hr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu\n" "Report-Msgid-Bugs-To: b.kenyon.w@gmail.com\n" -"POT-Creation-Date: 2020-01-04 00:31-0500\n" +"POT-Creation-Date: 2020-01-14 12:48-0500\n" "PO-Revision-Date: 2017-12-24 00:52+0100\n" "Last-Translator: gogo \n" "Language-Team: Croatian \n" @@ -22,7 +22,7 @@ msgstr "" msgid "About" msgstr "O programu" -#: src/Console/AppConsole.vala:117 +#: src/Console/AppConsole.vala:113 msgid "Admin access is required for running this application." msgstr "Administratorske ovlasti su potrebne za pokretanje ove aplikacije." @@ -40,7 +40,7 @@ msgstr "Arhitektura sustava" msgid "Artists" msgstr "Dizajneri" -#: src/Console/AppConsole.vala:103 +#: src/Console/AppConsole.vala:99 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "" @@ -57,7 +57,7 @@ msgstr "Dostupni kerneli" msgid "Back" msgstr "Natrag" -#: src/Console/AppConsole.vala:207 src/Gtk/AppGtk.vala:112 +#: src/Console/AppConsole.vala:203 src/Gtk/AppGtk.vala:110 msgid "Cache" msgstr "" @@ -75,11 +75,11 @@ msgstr "Promjene" msgid "Check every" msgstr "Provjeri svaka" -#: src/Console/AppConsole.vala:86 +#: src/Console/AppConsole.vala:82 msgid "Check for kernel updates" msgstr "Provjeri nadopune kernela" -#: src/Console/AppConsole.vala:87 +#: src/Console/AppConsole.vala:83 #, fuzzy msgid "Check for kernel updates and notify current user" msgstr "Provjeri nadopune kernela" @@ -88,15 +88,15 @@ msgstr "Provjeri nadopune kernela" msgid "Close" msgstr "Zatvori" -#: src/Console/AppConsole.vala:344 +#: src/Console/AppConsole.vala:340 msgid "Command not specified" msgstr "" -#: src/Console/AppConsole.vala:84 +#: src/Console/AppConsole.vala:80 msgid "Commands" msgstr "" -#: src/Common/Main.vala:105 +#: src/Common/Main.vala:107 msgid "Commands listed below are not available on this system" msgstr "Naredbe navedene ispod nisu dostupne na ovom sustavu" @@ -115,7 +115,7 @@ msgstr "Prilozi" msgid "Could not find any kernels to remove" msgstr "Odaberi kernele za uklanjanje" -#: src/Console/AppConsole.vala:312 src/Gtk/MainWindow.vala:100 +#: src/Console/AppConsole.vala:308 src/Gtk/MainWindow.vala:100 msgid "Could not find requested version" msgstr "Nemoguće je pronaći zatraženu inačicu" @@ -159,7 +159,7 @@ msgstr "Distribucija" msgid "Documenters" msgstr "Autori dokumentacije" -#: src/Console/AppConsole.vala:95 +#: src/Console/AppConsole.vala:91 msgid "Download packages for specified kernel" msgstr "Preuzmi pakete za određeni kernel" @@ -177,7 +177,7 @@ msgstr "G" msgid "ERROR" msgstr "GREŠKA" -#: src/Console/AppConsole.vala:102 +#: src/Console/AppConsole.vala:98 msgid "Enable verbose debugging output" msgstr "" @@ -280,16 +280,16 @@ msgstr "Instaliraj" msgid "Install Linux v%s ? (y/n): " msgstr "" -#: src/Console/AppConsole.vala:90 +#: src/Console/AppConsole.vala:86 #, fuzzy msgid "Install latest mainline kernel" msgstr "Instaliraj određeni mainline kernel" -#: src/Console/AppConsole.vala:91 +#: src/Console/AppConsole.vala:87 msgid "Install latest point update for current series" msgstr "" -#: src/Console/AppConsole.vala:92 +#: src/Console/AppConsole.vala:88 msgid "Install specified mainline kernel" msgstr "Instaliraj određeni mainline kernel" @@ -329,17 +329,17 @@ msgstr "Kernel" msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Alat za nadogradnju kernela Ubuntu temeljenih distribucija" -#: src/Common/LinuxKernel.vala:788 src/Console/AppConsole.vala:370 +#: src/Common/LinuxKernel.vala:788 src/Console/AppConsole.vala:366 #, c-format msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:777 src/Console/AppConsole.vala:363 +#: src/Common/LinuxKernel.vala:777 src/Console/AppConsole.vala:359 #, c-format msgid "Latest update" msgstr "" -#: src/Console/AppConsole.vala:88 +#: src/Console/AppConsole.vala:84 msgid "List all available mainline kernels" msgstr "Prikaži sve mainline kernele" @@ -347,7 +347,7 @@ msgstr "Prikaži sve mainline kernele" msgid "List available kernels" msgstr "Prikaži sve kernele" -#: src/Console/AppConsole.vala:89 +#: src/Console/AppConsole.vala:85 #, fuzzy msgid "List installed kernels" msgstr "Prikaži sve kernele" @@ -360,7 +360,7 @@ msgstr "Ikone koje nedostaju" msgid "Multiple Kernels Selected" msgstr "Više kernela je odabrano" -#: src/Console/AppConsole.vala:294 +#: src/Console/AppConsole.vala:290 msgid "Multiple kernels selected for installation. Select only one." msgstr "Više kernela je odabrano za instalaciju. odaberite samo jedan." @@ -373,12 +373,12 @@ msgstr "Ne" msgid "No Internet" msgstr "Nema pristupa internetu" -#: src/Console/AppConsole.vala:288 src/Console/AppConsole.vala:325 +#: src/Console/AppConsole.vala:284 src/Console/AppConsole.vala:321 msgid "No kernels specified" msgstr "" -#: src/Common/LinuxKernel.vala:796 src/Console/AppConsole.vala:375 -#: src/Console/AppConsole.vala:433 src/Gtk/MainWindow.vala:794 +#: src/Common/LinuxKernel.vala:796 src/Console/AppConsole.vala:371 +#: src/Console/AppConsole.vala:429 src/Gtk/MainWindow.vala:794 msgid "No updates found" msgstr "Nema pronađenih nadopuna" @@ -405,7 +405,7 @@ msgstr "Obavijesti kada je pojedino izdanje dostupno" msgid "OK" msgstr "U redu" -#: src/Console/AppConsole.vala:99 src/Gtk/AppGtk.vala:183 +#: src/Console/AppConsole.vala:95 src/Gtk/AppGtk.vala:181 msgid "Options" msgstr "Mogućnosti" @@ -413,7 +413,7 @@ msgstr "Mogućnosti" msgid "Other" msgstr "" -#: src/Console/AppConsole.vala:104 +#: src/Console/AppConsole.vala:100 msgid "Override user" msgstr "" @@ -427,7 +427,7 @@ msgstr "Dostupni paketi" msgid "Packages Installed" msgstr "Instalirani paketi" -#: src/Common/Main.vala:106 +#: src/Common/Main.vala:108 msgid "Please install required packages and try again" msgstr "Instalirajte potrebni paket i pokušajte ponovno" @@ -435,7 +435,7 @@ msgstr "Instalirajte potrebni paket i pokušajte ponovno" msgid "Preparing to remove selected kernels" msgstr "Pripremanje uklanjanja odabranih kernela" -#: src/Gtk/AppGtk.vala:185 +#: src/Gtk/AppGtk.vala:183 msgid "Print debug information" msgstr "Ispiši informacije otklanjanja grešaka" @@ -455,25 +455,25 @@ msgstr "Osvježavanje..." msgid "Remove" msgstr "Ukloni" -#: src/Console/AppConsole.vala:96 src/Console/AppConsole.vala:101 +#: src/Console/AppConsole.vala:92 src/Console/AppConsole.vala:97 msgid "Remove files from application cache" msgstr "Ukloni datoteke iz predmemorije aplikacije" -#: src/Console/AppConsole.vala:94 src/Gtk/MainWindow.vala:424 +#: src/Console/AppConsole.vala:90 src/Gtk/MainWindow.vala:424 msgid "Remove installed kernels older than running kernel" msgstr "" -#: src/Console/AppConsole.vala:93 +#: src/Console/AppConsole.vala:89 #, fuzzy msgid "Remove specified kernel" msgstr "Ukloni određeni mainline kernel" -#: src/Console/AppConsole.vala:202 src/Console/AppConsole.vala:316 -#: src/Console/AppConsole.vala:345 +#: src/Console/AppConsole.vala:198 src/Console/AppConsole.vala:312 +#: src/Console/AppConsole.vala:341 msgid "Run '" msgstr "" -#: src/Console/AppConsole.vala:120 +#: src/Console/AppConsole.vala:116 msgid "Run the application as admin with pkexec or sudo." msgstr "Pokreni aplikaciju kao administrator sa pkexec ili sudo." @@ -513,7 +513,7 @@ msgstr "Prikaži" msgid "Show N previous major versions " msgstr "" -#: src/Gtk/AppGtk.vala:186 +#: src/Gtk/AppGtk.vala:184 msgid "Show all options" msgstr "Prikaži sve mogućnosti" @@ -525,7 +525,7 @@ msgstr "Prikaži mjehurić obavijesti radne površine" msgid "Show notification dialog" msgstr "Prikaži dijalog obavijesti" -#: src/Console/AppConsole.vala:97 +#: src/Console/AppConsole.vala:93 #, fuzzy msgid "Show unstable and RC releases" msgstr "Sakrij nestabilne kernele i predizdanja" @@ -543,11 +543,11 @@ msgstr "Stanje" msgid "Stopped" msgstr "Zaustavljeno" -#: src/Console/AppConsole.vala:82 src/Gtk/AppGtk.vala:181 +#: src/Console/AppConsole.vala:78 src/Gtk/AppGtk.vala:179 msgid "Syntax" msgstr "Sintaksa" -#: src/Console/AppConsole.vala:208 src/Gtk/AppGtk.vala:113 +#: src/Console/AppConsole.vala:204 src/Gtk/AppGtk.vala:111 msgid "Temp" msgstr "" @@ -586,7 +586,7 @@ msgstr "Deinstalacija završena" msgid "Un-install completed with errors" msgstr "Deinstalacija završena s greškama" -#: src/Console/AppConsole.vala:200 src/Gtk/AppGtk.vala:168 +#: src/Console/AppConsole.vala:196 src/Gtk/AppGtk.vala:166 msgid "Unknown option" msgstr "Nepoznata mogućnost" diff --git a/po/messages.pot b/po/messages.pot index 1043febe..18cfcedd 100644 --- a/po/messages.pot +++ b/po/messages.pot @@ -6,9 +6,9 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: mainline 1.0.4\n" +"Project-Id-Version: mainline 1.0.5\n" "Report-Msgid-Bugs-To: b.kenyon.w@gmail.com\n" -"POT-Creation-Date: 2020-01-04 04:04-0500\n" +"POT-Creation-Date: 2020-01-14 14:00-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -21,7 +21,7 @@ msgstr "" msgid "About" msgstr "" -#: src/Console/AppConsole.vala:117 +#: src/Console/AppConsole.vala:113 msgid "Admin access is required for running this application." msgstr "" @@ -38,7 +38,7 @@ msgstr "" msgid "Artists" msgstr "" -#: src/Console/AppConsole.vala:103 +#: src/Console/AppConsole.vala:99 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "" @@ -55,7 +55,7 @@ msgstr "" msgid "Back" msgstr "" -#: src/Console/AppConsole.vala:207 src/Gtk/AppGtk.vala:112 +#: src/Console/AppConsole.vala:203 src/Gtk/AppGtk.vala:110 msgid "Cache" msgstr "" @@ -73,11 +73,11 @@ msgstr "" msgid "Check every" msgstr "" -#: src/Console/AppConsole.vala:86 +#: src/Console/AppConsole.vala:82 msgid "Check for kernel updates" msgstr "" -#: src/Console/AppConsole.vala:87 +#: src/Console/AppConsole.vala:83 msgid "Check for kernel updates and notify current user" msgstr "" @@ -85,15 +85,15 @@ msgstr "" msgid "Close" msgstr "" -#: src/Console/AppConsole.vala:344 +#: src/Console/AppConsole.vala:340 msgid "Command not specified" msgstr "" -#: src/Console/AppConsole.vala:84 +#: src/Console/AppConsole.vala:80 msgid "Commands" msgstr "" -#: src/Common/Main.vala:105 +#: src/Common/Main.vala:107 msgid "Commands listed below are not available on this system" msgstr "" @@ -111,7 +111,7 @@ msgstr "" msgid "Could not find any kernels to remove" msgstr "" -#: src/Console/AppConsole.vala:312 src/Gtk/MainWindow.vala:100 +#: src/Console/AppConsole.vala:308 src/Gtk/MainWindow.vala:100 msgid "Could not find requested version" msgstr "" @@ -154,7 +154,7 @@ msgstr "" msgid "Documenters" msgstr "" -#: src/Console/AppConsole.vala:95 +#: src/Console/AppConsole.vala:91 msgid "Download packages for specified kernel" msgstr "" @@ -172,7 +172,7 @@ msgstr "" msgid "ERROR" msgstr "" -#: src/Console/AppConsole.vala:102 +#: src/Console/AppConsole.vala:98 msgid "Enable verbose debugging output" msgstr "" @@ -275,15 +275,15 @@ msgstr "" msgid "Install Linux v%s ? (y/n): " msgstr "" -#: src/Console/AppConsole.vala:90 +#: src/Console/AppConsole.vala:86 msgid "Install latest mainline kernel" msgstr "" -#: src/Console/AppConsole.vala:91 +#: src/Console/AppConsole.vala:87 msgid "Install latest point update for current series" msgstr "" -#: src/Console/AppConsole.vala:92 +#: src/Console/AppConsole.vala:88 msgid "Install specified mainline kernel" msgstr "" @@ -320,17 +320,17 @@ msgstr "" msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "" -#: src/Common/LinuxKernel.vala:788 src/Console/AppConsole.vala:370 +#: src/Common/LinuxKernel.vala:788 src/Console/AppConsole.vala:366 #, c-format msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:777 src/Console/AppConsole.vala:363 +#: src/Common/LinuxKernel.vala:777 src/Console/AppConsole.vala:359 #, c-format msgid "Latest update" msgstr "" -#: src/Console/AppConsole.vala:88 +#: src/Console/AppConsole.vala:84 msgid "List all available mainline kernels" msgstr "" @@ -338,7 +338,7 @@ msgstr "" msgid "List available kernels" msgstr "" -#: src/Console/AppConsole.vala:89 +#: src/Console/AppConsole.vala:85 msgid "List installed kernels" msgstr "" @@ -350,7 +350,7 @@ msgstr "" msgid "Multiple Kernels Selected" msgstr "" -#: src/Console/AppConsole.vala:294 +#: src/Console/AppConsole.vala:290 msgid "Multiple kernels selected for installation. Select only one." msgstr "" @@ -363,12 +363,12 @@ msgstr "" msgid "No Internet" msgstr "" -#: src/Console/AppConsole.vala:288 src/Console/AppConsole.vala:325 +#: src/Console/AppConsole.vala:284 src/Console/AppConsole.vala:321 msgid "No kernels specified" msgstr "" -#: src/Common/LinuxKernel.vala:796 src/Console/AppConsole.vala:375 -#: src/Console/AppConsole.vala:433 src/Gtk/MainWindow.vala:794 +#: src/Common/LinuxKernel.vala:796 src/Console/AppConsole.vala:371 +#: src/Console/AppConsole.vala:429 src/Gtk/MainWindow.vala:794 msgid "No updates found" msgstr "" @@ -395,7 +395,7 @@ msgstr "" msgid "OK" msgstr "" -#: src/Console/AppConsole.vala:99 src/Gtk/AppGtk.vala:183 +#: src/Console/AppConsole.vala:95 src/Gtk/AppGtk.vala:181 msgid "Options" msgstr "" @@ -403,7 +403,7 @@ msgstr "" msgid "Other" msgstr "" -#: src/Console/AppConsole.vala:104 +#: src/Console/AppConsole.vala:100 msgid "Override user" msgstr "" @@ -417,7 +417,7 @@ msgstr "" msgid "Packages Installed" msgstr "" -#: src/Common/Main.vala:106 +#: src/Common/Main.vala:108 msgid "Please install required packages and try again" msgstr "" @@ -425,7 +425,7 @@ msgstr "" msgid "Preparing to remove selected kernels" msgstr "" -#: src/Gtk/AppGtk.vala:185 +#: src/Gtk/AppGtk.vala:183 msgid "Print debug information" msgstr "" @@ -445,24 +445,24 @@ msgstr "" msgid "Remove" msgstr "" -#: src/Console/AppConsole.vala:96 src/Console/AppConsole.vala:101 +#: src/Console/AppConsole.vala:92 src/Console/AppConsole.vala:97 msgid "Remove files from application cache" msgstr "" -#: src/Console/AppConsole.vala:94 src/Gtk/MainWindow.vala:424 +#: src/Console/AppConsole.vala:90 src/Gtk/MainWindow.vala:424 msgid "Remove installed kernels older than running kernel" msgstr "" -#: src/Console/AppConsole.vala:93 +#: src/Console/AppConsole.vala:89 msgid "Remove specified kernel" msgstr "" -#: src/Console/AppConsole.vala:202 src/Console/AppConsole.vala:316 -#: src/Console/AppConsole.vala:345 +#: src/Console/AppConsole.vala:198 src/Console/AppConsole.vala:312 +#: src/Console/AppConsole.vala:341 msgid "Run '" msgstr "" -#: src/Console/AppConsole.vala:120 +#: src/Console/AppConsole.vala:116 msgid "Run the application as admin with pkexec or sudo." msgstr "" @@ -500,7 +500,7 @@ msgstr "" msgid "Show N previous major versions " msgstr "" -#: src/Gtk/AppGtk.vala:186 +#: src/Gtk/AppGtk.vala:184 msgid "Show all options" msgstr "" @@ -512,7 +512,7 @@ msgstr "" msgid "Show notification dialog" msgstr "" -#: src/Console/AppConsole.vala:97 +#: src/Console/AppConsole.vala:93 msgid "Show unstable and RC releases" msgstr "" @@ -528,11 +528,11 @@ msgstr "" msgid "Stopped" msgstr "" -#: src/Console/AppConsole.vala:82 src/Gtk/AppGtk.vala:181 +#: src/Console/AppConsole.vala:78 src/Gtk/AppGtk.vala:179 msgid "Syntax" msgstr "" -#: src/Console/AppConsole.vala:208 src/Gtk/AppGtk.vala:113 +#: src/Console/AppConsole.vala:204 src/Gtk/AppGtk.vala:111 msgid "Temp" msgstr "" @@ -569,7 +569,7 @@ msgstr "" msgid "Un-install completed with errors" msgstr "" -#: src/Console/AppConsole.vala:200 src/Gtk/AppGtk.vala:168 +#: src/Console/AppConsole.vala:196 src/Gtk/AppGtk.vala:166 msgid "Unknown option" msgstr "" diff --git a/po/nl.po b/po/nl.po index 9487c7bd..8e8cc619 100644 --- a/po/nl.po +++ b/po/nl.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu 2.2\n" "Report-Msgid-Bugs-To: b.kenyon.w@gmail.com\n" -"POT-Creation-Date: 2020-01-04 00:31-0500\n" +"POT-Creation-Date: 2020-01-14 12:48-0500\n" "PO-Revision-Date: 2017-04-30 11:50+0200\n" "Last-Translator: Heimen Stoffels \n" "Language-Team: \n" @@ -22,7 +22,7 @@ msgstr "" msgid "About" msgstr "Over" -#: src/Console/AppConsole.vala:117 +#: src/Console/AppConsole.vala:113 msgid "Admin access is required for running this application." msgstr "" "U heeft administrator-rechten nodig om deze applicatie te kunnen draaien." @@ -41,7 +41,7 @@ msgstr "Systeemarchitectuur" msgid "Artists" msgstr "Artiesten" -#: src/Console/AppConsole.vala:103 +#: src/Console/AppConsole.vala:99 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "" @@ -58,7 +58,7 @@ msgstr "Beschikbare kernels" msgid "Back" msgstr "Terug" -#: src/Console/AppConsole.vala:207 src/Gtk/AppGtk.vala:112 +#: src/Console/AppConsole.vala:203 src/Gtk/AppGtk.vala:110 msgid "Cache" msgstr "" @@ -76,11 +76,11 @@ msgstr "Wijzigingen" msgid "Check every" msgstr "Controleer elke" -#: src/Console/AppConsole.vala:86 +#: src/Console/AppConsole.vala:82 msgid "Check for kernel updates" msgstr "Controleren op kernel-updates" -#: src/Console/AppConsole.vala:87 +#: src/Console/AppConsole.vala:83 #, fuzzy msgid "Check for kernel updates and notify current user" msgstr "Controleren op kernel-updates" @@ -89,15 +89,15 @@ msgstr "Controleren op kernel-updates" msgid "Close" msgstr "Sluiten" -#: src/Console/AppConsole.vala:344 +#: src/Console/AppConsole.vala:340 msgid "Command not specified" msgstr "" -#: src/Console/AppConsole.vala:84 +#: src/Console/AppConsole.vala:80 msgid "Commands" msgstr "" -#: src/Common/Main.vala:105 +#: src/Common/Main.vala:107 msgid "Commands listed below are not available on this system" msgstr "De onderstaande opdrachten zijn niet beschikbaar op dit systeem" @@ -116,7 +116,7 @@ msgstr "Bijdragen" msgid "Could not find any kernels to remove" msgstr "Selecteer de te verwijderen kernels" -#: src/Console/AppConsole.vala:312 src/Gtk/MainWindow.vala:100 +#: src/Console/AppConsole.vala:308 src/Gtk/MainWindow.vala:100 msgid "Could not find requested version" msgstr "De vereiste versie kan niet worden gevonden" @@ -160,7 +160,7 @@ msgstr "Distributie" msgid "Documenters" msgstr "Documenteerders" -#: src/Console/AppConsole.vala:95 +#: src/Console/AppConsole.vala:91 msgid "Download packages for specified kernel" msgstr "Pakketten downloaden voor opgegeven kernel" @@ -178,7 +178,7 @@ msgstr "E" msgid "ERROR" msgstr "FOUT" -#: src/Console/AppConsole.vala:102 +#: src/Console/AppConsole.vala:98 msgid "Enable verbose debugging output" msgstr "" @@ -281,16 +281,16 @@ msgstr "Installeren" msgid "Install Linux v%s ? (y/n): " msgstr "" -#: src/Console/AppConsole.vala:90 +#: src/Console/AppConsole.vala:86 #, fuzzy msgid "Install latest mainline kernel" msgstr "Opgegeven mainline-kernel installeren" -#: src/Console/AppConsole.vala:91 +#: src/Console/AppConsole.vala:87 msgid "Install latest point update for current series" msgstr "" -#: src/Console/AppConsole.vala:92 +#: src/Console/AppConsole.vala:88 msgid "Install specified mainline kernel" msgstr "Opgegeven mainline-kernel installeren" @@ -330,17 +330,17 @@ msgstr "Kernel" msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Kernel-upgradehulpmiddel voor op Ubuntu-gebaseerde distributies" -#: src/Common/LinuxKernel.vala:788 src/Console/AppConsole.vala:370 +#: src/Common/LinuxKernel.vala:788 src/Console/AppConsole.vala:366 #, c-format msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:777 src/Console/AppConsole.vala:363 +#: src/Common/LinuxKernel.vala:777 src/Console/AppConsole.vala:359 #, c-format msgid "Latest update" msgstr "" -#: src/Console/AppConsole.vala:88 +#: src/Console/AppConsole.vala:84 msgid "List all available mainline kernels" msgstr "Alle beschikbare mainline-kernels weergeven" @@ -349,7 +349,7 @@ msgstr "Alle beschikbare mainline-kernels weergeven" msgid "List available kernels" msgstr "Alle beschikbare mainline-kernels weergeven" -#: src/Console/AppConsole.vala:89 +#: src/Console/AppConsole.vala:85 #, fuzzy msgid "List installed kernels" msgstr "Alle beschikbare mainline-kernels weergeven" @@ -362,7 +362,7 @@ msgstr "Ontbrekend pictogram" msgid "Multiple Kernels Selected" msgstr "Meerdere kernels geselecteerd" -#: src/Console/AppConsole.vala:294 +#: src/Console/AppConsole.vala:290 msgid "Multiple kernels selected for installation. Select only one." msgstr "" "Er zijn meerdere te installeren kernels geselecteerd. Selecteer er slechts " @@ -377,12 +377,12 @@ msgstr "" msgid "No Internet" msgstr "Geen internetverbinding" -#: src/Console/AppConsole.vala:288 src/Console/AppConsole.vala:325 +#: src/Console/AppConsole.vala:284 src/Console/AppConsole.vala:321 msgid "No kernels specified" msgstr "" -#: src/Common/LinuxKernel.vala:796 src/Console/AppConsole.vala:375 -#: src/Console/AppConsole.vala:433 src/Gtk/MainWindow.vala:794 +#: src/Common/LinuxKernel.vala:796 src/Console/AppConsole.vala:371 +#: src/Console/AppConsole.vala:429 src/Gtk/MainWindow.vala:794 msgid "No updates found" msgstr "Geen updates gevonden" @@ -409,7 +409,7 @@ msgstr "Melding weergeven als er een puntupdate beschikbaar is" msgid "OK" msgstr "Oké" -#: src/Console/AppConsole.vala:99 src/Gtk/AppGtk.vala:183 +#: src/Console/AppConsole.vala:95 src/Gtk/AppGtk.vala:181 msgid "Options" msgstr "Opties" @@ -417,7 +417,7 @@ msgstr "Opties" msgid "Other" msgstr "" -#: src/Console/AppConsole.vala:104 +#: src/Console/AppConsole.vala:100 msgid "Override user" msgstr "" @@ -431,7 +431,7 @@ msgstr "Beschikbare pakketten" msgid "Packages Installed" msgstr "Geïnstalleerde pakketten" -#: src/Common/Main.vala:106 +#: src/Common/Main.vala:108 msgid "Please install required packages and try again" msgstr "Installeer de vereiste pakketten en probeer het opnieuw" @@ -439,7 +439,7 @@ msgstr "Installeer de vereiste pakketten en probeer het opnieuw" msgid "Preparing to remove selected kernels" msgstr "Bezig met voorbereiden van verwijderen van geselecteerde kernels" -#: src/Gtk/AppGtk.vala:185 +#: src/Gtk/AppGtk.vala:183 msgid "Print debug information" msgstr "Foutopsporingsinformatie printen" @@ -459,25 +459,25 @@ msgstr "Bezig met verversen..." msgid "Remove" msgstr "Verwijderen" -#: src/Console/AppConsole.vala:96 src/Console/AppConsole.vala:101 +#: src/Console/AppConsole.vala:92 src/Console/AppConsole.vala:97 msgid "Remove files from application cache" msgstr "Bestanden verwijderen uit applicatie-cache" -#: src/Console/AppConsole.vala:94 src/Gtk/MainWindow.vala:424 +#: src/Console/AppConsole.vala:90 src/Gtk/MainWindow.vala:424 msgid "Remove installed kernels older than running kernel" msgstr "" -#: src/Console/AppConsole.vala:93 +#: src/Console/AppConsole.vala:89 #, fuzzy msgid "Remove specified kernel" msgstr "Opgegeven mainline-kernel verwijderen" -#: src/Console/AppConsole.vala:202 src/Console/AppConsole.vala:316 -#: src/Console/AppConsole.vala:345 +#: src/Console/AppConsole.vala:198 src/Console/AppConsole.vala:312 +#: src/Console/AppConsole.vala:341 msgid "Run '" msgstr "" -#: src/Console/AppConsole.vala:120 +#: src/Console/AppConsole.vala:116 #, fuzzy msgid "Run the application as admin with pkexec or sudo." msgstr "Draai de applicatie als root of m.b.v. gksu/sudo." @@ -519,7 +519,7 @@ msgstr "" msgid "Show N previous major versions " msgstr "" -#: src/Gtk/AppGtk.vala:186 +#: src/Gtk/AppGtk.vala:184 msgid "Show all options" msgstr "Alle opties weergeven" @@ -531,7 +531,7 @@ msgstr "Bureaubladmelding weergeven" msgid "Show notification dialog" msgstr "Meldingsvenster weergeven" -#: src/Console/AppConsole.vala:97 +#: src/Console/AppConsole.vala:93 #, fuzzy msgid "Show unstable and RC releases" msgstr "Instabiele en RC-uitgaven verbergen" @@ -549,11 +549,11 @@ msgstr "Status" msgid "Stopped" msgstr "Gestopt" -#: src/Console/AppConsole.vala:82 src/Gtk/AppGtk.vala:181 +#: src/Console/AppConsole.vala:78 src/Gtk/AppGtk.vala:179 msgid "Syntax" msgstr "Syntax" -#: src/Console/AppConsole.vala:208 src/Gtk/AppGtk.vala:113 +#: src/Console/AppConsole.vala:204 src/Gtk/AppGtk.vala:111 msgid "Temp" msgstr "" @@ -592,7 +592,7 @@ msgstr "Deïnstalleren voltooid" msgid "Un-install completed with errors" msgstr "Deïnstalleren voltooid, maar met fouten" -#: src/Console/AppConsole.vala:200 src/Gtk/AppGtk.vala:168 +#: src/Console/AppConsole.vala:196 src/Gtk/AppGtk.vala:166 msgid "Unknown option" msgstr "Onbekende optie" diff --git a/po/pl.po b/po/pl.po index 91b8e591..2ccfe1a2 100644 --- a/po/pl.po +++ b/po/pl.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu\n" "Report-Msgid-Bugs-To: b.kenyon.w@gmail.com\n" -"POT-Creation-Date: 2020-01-04 00:31-0500\n" +"POT-Creation-Date: 2020-01-14 12:48-0500\n" "PO-Revision-Date: 2017-08-12 15:26+0200\n" "Last-Translator: \n" "Language-Team: Polish\n" @@ -20,7 +20,7 @@ msgstr "" msgid "About" msgstr "O programie" -#: src/Console/AppConsole.vala:117 +#: src/Console/AppConsole.vala:113 msgid "Admin access is required for running this application." msgstr "Aby uruchomić tę aplikację niezbędne są prawa administratora." @@ -38,7 +38,7 @@ msgstr "Architektura systemu" msgid "Artists" msgstr "Artyści" -#: src/Console/AppConsole.vala:103 +#: src/Console/AppConsole.vala:99 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "" @@ -55,7 +55,7 @@ msgstr "Dostępne jądra" msgid "Back" msgstr "Wstecz" -#: src/Console/AppConsole.vala:207 src/Gtk/AppGtk.vala:112 +#: src/Console/AppConsole.vala:203 src/Gtk/AppGtk.vala:110 msgid "Cache" msgstr "" @@ -73,11 +73,11 @@ msgstr "Zmiany" msgid "Check every" msgstr "Sprawdzaj co" -#: src/Console/AppConsole.vala:86 +#: src/Console/AppConsole.vala:82 msgid "Check for kernel updates" msgstr "Sprawdź nowe wersje jądra" -#: src/Console/AppConsole.vala:87 +#: src/Console/AppConsole.vala:83 #, fuzzy msgid "Check for kernel updates and notify current user" msgstr "Sprawdź nowe wersje jądra" @@ -86,15 +86,15 @@ msgstr "Sprawdź nowe wersje jądra" msgid "Close" msgstr "Zamknij" -#: src/Console/AppConsole.vala:344 +#: src/Console/AppConsole.vala:340 msgid "Command not specified" msgstr "" -#: src/Console/AppConsole.vala:84 +#: src/Console/AppConsole.vala:80 msgid "Commands" msgstr "" -#: src/Common/Main.vala:105 +#: src/Common/Main.vala:107 msgid "Commands listed below are not available on this system" msgstr "Poniższe polecenia nie są dostępne na tym systemie" @@ -113,7 +113,7 @@ msgstr "Wkład" msgid "Could not find any kernels to remove" msgstr "Wybierz jądro do usunięcia" -#: src/Console/AppConsole.vala:312 src/Gtk/MainWindow.vala:100 +#: src/Console/AppConsole.vala:308 src/Gtk/MainWindow.vala:100 msgid "Could not find requested version" msgstr "Nie można odnaleźć żądanej wersji" @@ -157,7 +157,7 @@ msgstr "Dystrybucja" msgid "Documenters" msgstr "Dokumentujący" -#: src/Console/AppConsole.vala:95 +#: src/Console/AppConsole.vala:91 msgid "Download packages for specified kernel" msgstr "Pobierz pakiety dla wybranego jądra" @@ -175,7 +175,7 @@ msgstr "E" msgid "ERROR" msgstr "BŁĄD" -#: src/Console/AppConsole.vala:102 +#: src/Console/AppConsole.vala:98 msgid "Enable verbose debugging output" msgstr "" @@ -278,16 +278,16 @@ msgstr "Zainstaluj" msgid "Install Linux v%s ? (y/n): " msgstr "" -#: src/Console/AppConsole.vala:90 +#: src/Console/AppConsole.vala:86 #, fuzzy msgid "Install latest mainline kernel" msgstr "Zainstaluj wybrane jądro" -#: src/Console/AppConsole.vala:91 +#: src/Console/AppConsole.vala:87 msgid "Install latest point update for current series" msgstr "" -#: src/Console/AppConsole.vala:92 +#: src/Console/AppConsole.vala:88 msgid "Install specified mainline kernel" msgstr "Zainstaluj wybrane jądro" @@ -327,17 +327,17 @@ msgstr "Jądro" msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Narzędzie uaktualniania jądra dla dystrybucji z rodziny Ubuntu" -#: src/Common/LinuxKernel.vala:788 src/Console/AppConsole.vala:370 +#: src/Common/LinuxKernel.vala:788 src/Console/AppConsole.vala:366 #, c-format msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:777 src/Console/AppConsole.vala:363 +#: src/Common/LinuxKernel.vala:777 src/Console/AppConsole.vala:359 #, c-format msgid "Latest update" msgstr "" -#: src/Console/AppConsole.vala:88 +#: src/Console/AppConsole.vala:84 msgid "List all available mainline kernels" msgstr "Pokaż wszystkie dostępne jądra" @@ -346,7 +346,7 @@ msgstr "Pokaż wszystkie dostępne jądra" msgid "List available kernels" msgstr "Pokaż wszystkie dostępne jądra" -#: src/Console/AppConsole.vala:89 +#: src/Console/AppConsole.vala:85 #, fuzzy msgid "List installed kernels" msgstr "Pokaż wszystkie dostępne jądra" @@ -359,7 +359,7 @@ msgstr "Brakująca ikona" msgid "Multiple Kernels Selected" msgstr "Wybrano kilka jąder" -#: src/Console/AppConsole.vala:294 +#: src/Console/AppConsole.vala:290 msgid "Multiple kernels selected for installation. Select only one." msgstr "Wybrano kilka jąder do instalacji. Wybierz tylko jedno." @@ -372,12 +372,12 @@ msgstr "" msgid "No Internet" msgstr "Brak internetu" -#: src/Console/AppConsole.vala:288 src/Console/AppConsole.vala:325 +#: src/Console/AppConsole.vala:284 src/Console/AppConsole.vala:321 msgid "No kernels specified" msgstr "" -#: src/Common/LinuxKernel.vala:796 src/Console/AppConsole.vala:375 -#: src/Console/AppConsole.vala:433 src/Gtk/MainWindow.vala:794 +#: src/Common/LinuxKernel.vala:796 src/Console/AppConsole.vala:371 +#: src/Console/AppConsole.vala:429 src/Gtk/MainWindow.vala:794 msgid "No updates found" msgstr "Nie znaleziono aktualizacji" @@ -404,7 +404,7 @@ msgstr "Powiadom, jeśli pojawi się wersja punktowa" msgid "OK" msgstr "OK" -#: src/Console/AppConsole.vala:99 src/Gtk/AppGtk.vala:183 +#: src/Console/AppConsole.vala:95 src/Gtk/AppGtk.vala:181 msgid "Options" msgstr "Opcje" @@ -412,7 +412,7 @@ msgstr "Opcje" msgid "Other" msgstr "" -#: src/Console/AppConsole.vala:104 +#: src/Console/AppConsole.vala:100 msgid "Override user" msgstr "" @@ -426,7 +426,7 @@ msgstr "Dostępne pakiety" msgid "Packages Installed" msgstr "Pakiety zainstalowane" -#: src/Common/Main.vala:106 +#: src/Common/Main.vala:108 msgid "Please install required packages and try again" msgstr "Zainstaluj wymagane pakiety i spróbuj ponownie" @@ -434,7 +434,7 @@ msgstr "Zainstaluj wymagane pakiety i spróbuj ponownie" msgid "Preparing to remove selected kernels" msgstr "Przygotowanie do usunięcia wybranych jąder" -#: src/Gtk/AppGtk.vala:185 +#: src/Gtk/AppGtk.vala:183 msgid "Print debug information" msgstr "Wypisz informacje debugujące" @@ -454,25 +454,25 @@ msgstr "Odświeżam..." msgid "Remove" msgstr "Usuń" -#: src/Console/AppConsole.vala:96 src/Console/AppConsole.vala:101 +#: src/Console/AppConsole.vala:92 src/Console/AppConsole.vala:97 msgid "Remove files from application cache" msgstr "Usuń pliki z pamięci podręcznej aplikacji" -#: src/Console/AppConsole.vala:94 src/Gtk/MainWindow.vala:424 +#: src/Console/AppConsole.vala:90 src/Gtk/MainWindow.vala:424 msgid "Remove installed kernels older than running kernel" msgstr "" -#: src/Console/AppConsole.vala:93 +#: src/Console/AppConsole.vala:89 #, fuzzy msgid "Remove specified kernel" msgstr "Usuń wybrane jądro" -#: src/Console/AppConsole.vala:202 src/Console/AppConsole.vala:316 -#: src/Console/AppConsole.vala:345 +#: src/Console/AppConsole.vala:198 src/Console/AppConsole.vala:312 +#: src/Console/AppConsole.vala:341 msgid "Run '" msgstr "" -#: src/Console/AppConsole.vala:120 +#: src/Console/AppConsole.vala:116 #, fuzzy msgid "Run the application as admin with pkexec or sudo." msgstr "Uruchom aplikację jako root albo użyj gksu/sudo." @@ -513,7 +513,7 @@ msgstr "" msgid "Show N previous major versions " msgstr "" -#: src/Gtk/AppGtk.vala:186 +#: src/Gtk/AppGtk.vala:184 msgid "Show all options" msgstr "Pokaż wszystkie opcje" @@ -525,7 +525,7 @@ msgstr "Pokaż powiadomienia na pulpicie" msgid "Show notification dialog" msgstr "Pokaż okno powiadomień" -#: src/Console/AppConsole.vala:97 +#: src/Console/AppConsole.vala:93 #, fuzzy msgid "Show unstable and RC releases" msgstr "Ukryj wydania niestabilne i RC" @@ -543,11 +543,11 @@ msgstr "Status" msgid "Stopped" msgstr "Zatrzymany" -#: src/Console/AppConsole.vala:82 src/Gtk/AppGtk.vala:181 +#: src/Console/AppConsole.vala:78 src/Gtk/AppGtk.vala:179 msgid "Syntax" msgstr "Składnia" -#: src/Console/AppConsole.vala:208 src/Gtk/AppGtk.vala:113 +#: src/Console/AppConsole.vala:204 src/Gtk/AppGtk.vala:111 msgid "Temp" msgstr "" @@ -586,7 +586,7 @@ msgstr "De-instalacja zakończona" msgid "Un-install completed with errors" msgstr "De-instalacja zakończona z błędami" -#: src/Console/AppConsole.vala:200 src/Gtk/AppGtk.vala:168 +#: src/Console/AppConsole.vala:196 src/Gtk/AppGtk.vala:166 msgid "Unknown option" msgstr "Nieznana opcja" diff --git a/po/ru.po b/po/ru.po index f564cdcc..23db3780 100644 --- a/po/ru.po +++ b/po/ru.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu\n" "Report-Msgid-Bugs-To: b.kenyon.w@gmail.com\n" -"POT-Creation-Date: 2020-01-04 00:31-0500\n" +"POT-Creation-Date: 2020-01-14 12:48-0500\n" "PO-Revision-Date: 2016-12-13 16:46+0300\n" "Last-Translator: Faust3000 \n" "Language-Team: Russian \n" @@ -22,7 +22,7 @@ msgstr "" msgid "About" msgstr "О программе" -#: src/Console/AppConsole.vala:117 +#: src/Console/AppConsole.vala:113 msgid "Admin access is required for running this application." msgstr "Для запуска программы требуются права администратора." @@ -40,7 +40,7 @@ msgstr "Системная архитектура" msgid "Artists" msgstr "Художники" -#: src/Console/AppConsole.vala:103 +#: src/Console/AppConsole.vala:99 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "" @@ -57,7 +57,7 @@ msgstr "Доступные ядра" msgid "Back" msgstr "Назад" -#: src/Console/AppConsole.vala:207 src/Gtk/AppGtk.vala:112 +#: src/Console/AppConsole.vala:203 src/Gtk/AppGtk.vala:110 msgid "Cache" msgstr "" @@ -75,11 +75,11 @@ msgstr "Изменения" msgid "Check every" msgstr "Проверять каждые" -#: src/Console/AppConsole.vala:86 +#: src/Console/AppConsole.vala:82 msgid "Check for kernel updates" msgstr "Проверить обновления ядра" -#: src/Console/AppConsole.vala:87 +#: src/Console/AppConsole.vala:83 #, fuzzy msgid "Check for kernel updates and notify current user" msgstr "Проверить обновления ядра" @@ -88,15 +88,15 @@ msgstr "Проверить обновления ядра" msgid "Close" msgstr "Закрыть" -#: src/Console/AppConsole.vala:344 +#: src/Console/AppConsole.vala:340 msgid "Command not specified" msgstr "" -#: src/Console/AppConsole.vala:84 +#: src/Console/AppConsole.vala:80 msgid "Commands" msgstr "" -#: src/Common/Main.vala:105 +#: src/Common/Main.vala:107 msgid "Commands listed below are not available on this system" msgstr "Команды перечисленные ниже недоступны на этой системе" @@ -115,7 +115,7 @@ msgstr "Взносы" msgid "Could not find any kernels to remove" msgstr "Не удалось найти запрошенную версию" -#: src/Console/AppConsole.vala:312 src/Gtk/MainWindow.vala:100 +#: src/Console/AppConsole.vala:308 src/Gtk/MainWindow.vala:100 msgid "Could not find requested version" msgstr "Не удалось найти запрошенную версию" @@ -160,7 +160,7 @@ msgstr "Дистрибутив" msgid "Documenters" msgstr "Составители документации" -#: src/Console/AppConsole.vala:95 +#: src/Console/AppConsole.vala:91 msgid "Download packages for specified kernel" msgstr "Скачать пакеты для указанного ядра" @@ -178,7 +178,7 @@ msgstr "E" msgid "ERROR" msgstr "ОШИБКА" -#: src/Console/AppConsole.vala:102 +#: src/Console/AppConsole.vala:98 msgid "Enable verbose debugging output" msgstr "" @@ -285,16 +285,16 @@ msgstr "Установить" msgid "Install Linux v%s ? (y/n): " msgstr "" -#: src/Console/AppConsole.vala:90 +#: src/Console/AppConsole.vala:86 #, fuzzy msgid "Install latest mainline kernel" msgstr "Установить указанную ветку ядра" -#: src/Console/AppConsole.vala:91 +#: src/Console/AppConsole.vala:87 msgid "Install latest point update for current series" msgstr "" -#: src/Console/AppConsole.vala:92 +#: src/Console/AppConsole.vala:88 msgid "Install specified mainline kernel" msgstr "Установить указанную ветку ядра" @@ -334,17 +334,17 @@ msgstr "Ядро" msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Программа обновления ядра для дистрибутивов на базе Ubuntu" -#: src/Common/LinuxKernel.vala:788 src/Console/AppConsole.vala:370 +#: src/Common/LinuxKernel.vala:788 src/Console/AppConsole.vala:366 #, c-format msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:777 src/Console/AppConsole.vala:363 +#: src/Common/LinuxKernel.vala:777 src/Console/AppConsole.vala:359 #, c-format msgid "Latest update" msgstr "" -#: src/Console/AppConsole.vala:88 +#: src/Console/AppConsole.vala:84 msgid "List all available mainline kernels" msgstr "Список всех доступных основных ядер" @@ -353,7 +353,7 @@ msgstr "Список всех доступных основных ядер" msgid "List available kernels" msgstr "Список всех доступных основных ядер" -#: src/Console/AppConsole.vala:89 +#: src/Console/AppConsole.vala:85 #, fuzzy msgid "List installed kernels" msgstr "Список всех доступных основных ядер" @@ -366,7 +366,7 @@ msgstr "Значок отсутствует" msgid "Multiple Kernels Selected" msgstr "" -#: src/Console/AppConsole.vala:294 +#: src/Console/AppConsole.vala:290 msgid "Multiple kernels selected for installation. Select only one." msgstr "" @@ -379,12 +379,12 @@ msgstr "" msgid "No Internet" msgstr "" -#: src/Console/AppConsole.vala:288 src/Console/AppConsole.vala:325 +#: src/Console/AppConsole.vala:284 src/Console/AppConsole.vala:321 msgid "No kernels specified" msgstr "" -#: src/Common/LinuxKernel.vala:796 src/Console/AppConsole.vala:375 -#: src/Console/AppConsole.vala:433 src/Gtk/MainWindow.vala:794 +#: src/Common/LinuxKernel.vala:796 src/Console/AppConsole.vala:371 +#: src/Console/AppConsole.vala:429 src/Gtk/MainWindow.vala:794 msgid "No updates found" msgstr "Обновлений не найдено" @@ -411,7 +411,7 @@ msgstr "Уведомлять, если доступно небольшое об msgid "OK" msgstr "OK" -#: src/Console/AppConsole.vala:99 src/Gtk/AppGtk.vala:183 +#: src/Console/AppConsole.vala:95 src/Gtk/AppGtk.vala:181 msgid "Options" msgstr "Параметры" @@ -419,7 +419,7 @@ msgstr "Параметры" msgid "Other" msgstr "" -#: src/Console/AppConsole.vala:104 +#: src/Console/AppConsole.vala:100 msgid "Override user" msgstr "" @@ -433,7 +433,7 @@ msgstr "Установлено" msgid "Packages Installed" msgstr "Установлено" -#: src/Common/Main.vala:106 +#: src/Common/Main.vala:108 msgid "Please install required packages and try again" msgstr "Установить необходимые пакеты и попробуйте снова" @@ -441,7 +441,7 @@ msgstr "Установить необходимые пакеты и попроб msgid "Preparing to remove selected kernels" msgstr "" -#: src/Gtk/AppGtk.vala:185 +#: src/Gtk/AppGtk.vala:183 msgid "Print debug information" msgstr "Распечатать отладочную информацию" @@ -461,25 +461,25 @@ msgstr "Обновление..." msgid "Remove" msgstr "Удалить" -#: src/Console/AppConsole.vala:96 src/Console/AppConsole.vala:101 +#: src/Console/AppConsole.vala:92 src/Console/AppConsole.vala:97 msgid "Remove files from application cache" msgstr "Удалить файлы из кэша программы" -#: src/Console/AppConsole.vala:94 src/Gtk/MainWindow.vala:424 +#: src/Console/AppConsole.vala:90 src/Gtk/MainWindow.vala:424 msgid "Remove installed kernels older than running kernel" msgstr "Удалить более старшие установленные ядра, чем используемое" -#: src/Console/AppConsole.vala:93 +#: src/Console/AppConsole.vala:89 #, fuzzy msgid "Remove specified kernel" msgstr "Удалить указанную ветку ядра" -#: src/Console/AppConsole.vala:202 src/Console/AppConsole.vala:316 -#: src/Console/AppConsole.vala:345 +#: src/Console/AppConsole.vala:198 src/Console/AppConsole.vala:312 +#: src/Console/AppConsole.vala:341 msgid "Run '" msgstr "" -#: src/Console/AppConsole.vala:120 +#: src/Console/AppConsole.vala:116 #, fuzzy msgid "Run the application as admin with pkexec or sudo." msgstr "Запустите программу с правами Root или используйте gksu/sudo." @@ -521,7 +521,7 @@ msgstr "" msgid "Show N previous major versions " msgstr "" -#: src/Gtk/AppGtk.vala:186 +#: src/Gtk/AppGtk.vala:184 msgid "Show all options" msgstr "Показать все параметры" @@ -533,7 +533,7 @@ msgstr "Показывать окно оповещений на рабочем msgid "Show notification dialog" msgstr "Показывать окно оповещений" -#: src/Console/AppConsole.vala:97 +#: src/Console/AppConsole.vala:93 #, fuzzy msgid "Show unstable and RC releases" msgstr "Скрыть нестабильные и релиз-кандидат версии" @@ -551,11 +551,11 @@ msgstr "Состояние" msgid "Stopped" msgstr "Остановлено" -#: src/Console/AppConsole.vala:82 src/Gtk/AppGtk.vala:181 +#: src/Console/AppConsole.vala:78 src/Gtk/AppGtk.vala:179 msgid "Syntax" msgstr "Синтаксис" -#: src/Console/AppConsole.vala:208 src/Gtk/AppGtk.vala:113 +#: src/Console/AppConsole.vala:204 src/Gtk/AppGtk.vala:111 msgid "Temp" msgstr "" @@ -594,7 +594,7 @@ msgstr "Удаление завершено" msgid "Un-install completed with errors" msgstr "Удаление завершено с ошибками" -#: src/Console/AppConsole.vala:200 src/Gtk/AppGtk.vala:168 +#: src/Console/AppConsole.vala:196 src/Gtk/AppGtk.vala:166 msgid "Unknown option" msgstr "Неизвестный параметр" diff --git a/po/sv.po b/po/sv.po index 10e39bfa..c3ad2517 100644 --- a/po/sv.po +++ b/po/sv.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu 2.2\n" "Report-Msgid-Bugs-To: b.kenyon.w@gmail.com\n" -"POT-Creation-Date: 2020-01-04 00:31-0500\n" +"POT-Creation-Date: 2020-01-14 12:48-0500\n" "PO-Revision-Date: 2018-01-13 16:56+0100\n" "Last-Translator: Åke Engelbrektson \n" "Language-Team: Svenska Språkfiler \n" @@ -22,7 +22,7 @@ msgstr "" msgid "About" msgstr "Om" -#: src/Console/AppConsole.vala:117 +#: src/Console/AppConsole.vala:113 msgid "Admin access is required for running this application." msgstr "Root-åtkomst krävs för att köra detta program." @@ -40,7 +40,7 @@ msgstr "Systemarkitektur" msgid "Artists" msgstr "Artister" -#: src/Console/AppConsole.vala:103 +#: src/Console/AppConsole.vala:99 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "" @@ -57,7 +57,7 @@ msgstr "Tillgängliga kärnor" msgid "Back" msgstr "Tillbaka" -#: src/Console/AppConsole.vala:207 src/Gtk/AppGtk.vala:112 +#: src/Console/AppConsole.vala:203 src/Gtk/AppGtk.vala:110 msgid "Cache" msgstr "" @@ -75,11 +75,11 @@ msgstr "Ändringar" msgid "Check every" msgstr "Kontrollera varje" -#: src/Console/AppConsole.vala:86 +#: src/Console/AppConsole.vala:82 msgid "Check for kernel updates" msgstr "Sök efter kärnuppdateringar" -#: src/Console/AppConsole.vala:87 +#: src/Console/AppConsole.vala:83 #, fuzzy msgid "Check for kernel updates and notify current user" msgstr "Sök efter kärnuppdateringar" @@ -88,15 +88,15 @@ msgstr "Sök efter kärnuppdateringar" msgid "Close" msgstr "Stäng" -#: src/Console/AppConsole.vala:344 +#: src/Console/AppConsole.vala:340 msgid "Command not specified" msgstr "" -#: src/Console/AppConsole.vala:84 +#: src/Console/AppConsole.vala:80 msgid "Commands" msgstr "" -#: src/Common/Main.vala:105 +#: src/Common/Main.vala:107 msgid "Commands listed below are not available on this system" msgstr "Kommandon listade nedan, finns inte tillgängliga i detta system." @@ -115,7 +115,7 @@ msgstr "Bidrag" msgid "Could not find any kernels to remove" msgstr "Välj kärnor för borttagning" -#: src/Console/AppConsole.vala:312 src/Gtk/MainWindow.vala:100 +#: src/Console/AppConsole.vala:308 src/Gtk/MainWindow.vala:100 msgid "Could not find requested version" msgstr "Kunde inte hitta efterfrågad version" @@ -159,7 +159,7 @@ msgstr "Distribution" msgid "Documenters" msgstr "Dokumentalister" -#: src/Console/AppConsole.vala:95 +#: src/Console/AppConsole.vala:91 msgid "Download packages for specified kernel" msgstr "Ladda ner paket för specificerad kärna" @@ -177,7 +177,7 @@ msgstr "F" msgid "ERROR" msgstr "FEL" -#: src/Console/AppConsole.vala:102 +#: src/Console/AppConsole.vala:98 msgid "Enable verbose debugging output" msgstr "" @@ -281,16 +281,16 @@ msgstr "Installera" msgid "Install Linux v%s ? (y/n): " msgstr "" -#: src/Console/AppConsole.vala:90 +#: src/Console/AppConsole.vala:86 #, fuzzy msgid "Install latest mainline kernel" msgstr "Installera specificerad kärna" -#: src/Console/AppConsole.vala:91 +#: src/Console/AppConsole.vala:87 msgid "Install latest point update for current series" msgstr "" -#: src/Console/AppConsole.vala:92 +#: src/Console/AppConsole.vala:88 msgid "Install specified mainline kernel" msgstr "Installera specificerad kärna" @@ -328,17 +328,17 @@ msgstr "Kärna" msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Kärnuppgraderingsverktyg för Ubuntu-baserade distributioner" -#: src/Common/LinuxKernel.vala:788 src/Console/AppConsole.vala:370 +#: src/Common/LinuxKernel.vala:788 src/Console/AppConsole.vala:366 #, c-format msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:777 src/Console/AppConsole.vala:363 +#: src/Common/LinuxKernel.vala:777 src/Console/AppConsole.vala:359 #, c-format msgid "Latest update" msgstr "" -#: src/Console/AppConsole.vala:88 +#: src/Console/AppConsole.vala:84 msgid "List all available mainline kernels" msgstr "Lista alla tillgängliga kärnor" @@ -346,7 +346,7 @@ msgstr "Lista alla tillgängliga kärnor" msgid "List available kernels" msgstr "Lista tillgängliga kärnor" -#: src/Console/AppConsole.vala:89 +#: src/Console/AppConsole.vala:85 #, fuzzy msgid "List installed kernels" msgstr "Lista tillgängliga kärnor" @@ -359,7 +359,7 @@ msgstr "Saknad ikon" msgid "Multiple Kernels Selected" msgstr "Flera kärnor markerade" -#: src/Console/AppConsole.vala:294 +#: src/Console/AppConsole.vala:290 msgid "Multiple kernels selected for installation. Select only one." msgstr "Flera kärnor valda för installation. Välj endast en." @@ -372,12 +372,12 @@ msgstr "Nej" msgid "No Internet" msgstr "Inget internet" -#: src/Console/AppConsole.vala:288 src/Console/AppConsole.vala:325 +#: src/Console/AppConsole.vala:284 src/Console/AppConsole.vala:321 msgid "No kernels specified" msgstr "" -#: src/Common/LinuxKernel.vala:796 src/Console/AppConsole.vala:375 -#: src/Console/AppConsole.vala:433 src/Gtk/MainWindow.vala:794 +#: src/Common/LinuxKernel.vala:796 src/Console/AppConsole.vala:371 +#: src/Console/AppConsole.vala:429 src/Gtk/MainWindow.vala:794 msgid "No updates found" msgstr "Inga uppdateringar hittades" @@ -404,7 +404,7 @@ msgstr "Meddela om en ny (mindre) uppdatering finns tillgänglig" msgid "OK" msgstr "OK" -#: src/Console/AppConsole.vala:99 src/Gtk/AppGtk.vala:183 +#: src/Console/AppConsole.vala:95 src/Gtk/AppGtk.vala:181 msgid "Options" msgstr "Alternativ" @@ -412,7 +412,7 @@ msgstr "Alternativ" msgid "Other" msgstr "" -#: src/Console/AppConsole.vala:104 +#: src/Console/AppConsole.vala:100 msgid "Override user" msgstr "" @@ -426,7 +426,7 @@ msgstr "Tillgängliga paket" msgid "Packages Installed" msgstr "Installerade paket" -#: src/Common/Main.vala:106 +#: src/Common/Main.vala:108 msgid "Please install required packages and try again" msgstr "Installera nödvändiga paket och försök igen" @@ -434,7 +434,7 @@ msgstr "Installera nödvändiga paket och försök igen" msgid "Preparing to remove selected kernels" msgstr "Förbereder borttagning av markerade kärnor" -#: src/Gtk/AppGtk.vala:185 +#: src/Gtk/AppGtk.vala:183 msgid "Print debug information" msgstr "Skriv ut felsökningsinformation" @@ -454,25 +454,25 @@ msgstr "Uppdaterar ..." msgid "Remove" msgstr "Ta bort" -#: src/Console/AppConsole.vala:96 src/Console/AppConsole.vala:101 +#: src/Console/AppConsole.vala:92 src/Console/AppConsole.vala:97 msgid "Remove files from application cache" msgstr "Ta bort filer från program-cachen" -#: src/Console/AppConsole.vala:94 src/Gtk/MainWindow.vala:424 +#: src/Console/AppConsole.vala:90 src/Gtk/MainWindow.vala:424 msgid "Remove installed kernels older than running kernel" msgstr "Ta bort installerade kärnor äldre än den som körs" -#: src/Console/AppConsole.vala:93 +#: src/Console/AppConsole.vala:89 #, fuzzy msgid "Remove specified kernel" msgstr "Ta bort specificerad kärna" -#: src/Console/AppConsole.vala:202 src/Console/AppConsole.vala:316 -#: src/Console/AppConsole.vala:345 +#: src/Console/AppConsole.vala:198 src/Console/AppConsole.vala:312 +#: src/Console/AppConsole.vala:341 msgid "Run '" msgstr "" -#: src/Console/AppConsole.vala:120 +#: src/Console/AppConsole.vala:116 msgid "Run the application as admin with pkexec or sudo." msgstr "Kör programmet som administratör, med pkexec eller sudo." @@ -512,7 +512,7 @@ msgstr "Visa" msgid "Show N previous major versions " msgstr "" -#: src/Gtk/AppGtk.vala:186 +#: src/Gtk/AppGtk.vala:184 msgid "Show all options" msgstr "Visa alla alternativ" @@ -524,7 +524,7 @@ msgstr "Visa aviseringsruta på skrivbordet" msgid "Show notification dialog" msgstr "Visa aviseringsdialog" -#: src/Console/AppConsole.vala:97 +#: src/Console/AppConsole.vala:93 #, fuzzy msgid "Show unstable and RC releases" msgstr "Dölj instabila- och RC-publiceringar" @@ -542,11 +542,11 @@ msgstr "Status" msgid "Stopped" msgstr "Stoppad" -#: src/Console/AppConsole.vala:82 src/Gtk/AppGtk.vala:181 +#: src/Console/AppConsole.vala:78 src/Gtk/AppGtk.vala:179 msgid "Syntax" msgstr "Syntax" -#: src/Console/AppConsole.vala:208 src/Gtk/AppGtk.vala:113 +#: src/Console/AppConsole.vala:204 src/Gtk/AppGtk.vala:111 msgid "Temp" msgstr "" @@ -585,7 +585,7 @@ msgstr "Avinstallation slutförd" msgid "Un-install completed with errors" msgstr "Avinstallation slutförd med fel" -#: src/Console/AppConsole.vala:200 src/Gtk/AppGtk.vala:168 +#: src/Console/AppConsole.vala:196 src/Gtk/AppGtk.vala:166 msgid "Unknown option" msgstr "Okänt alternativ" diff --git a/po/tr.po b/po/tr.po index 62f3cd1f..6032fd3c 100644 --- a/po/tr.po +++ b/po/tr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu\n" "Report-Msgid-Bugs-To: b.kenyon.w@gmail.com\n" -"POT-Creation-Date: 2020-01-04 00:31-0500\n" +"POT-Creation-Date: 2020-01-14 12:48-0500\n" "PO-Revision-Date: 2019-08-31 18:33+0300\n" "Last-Translator: Gökhan GÖKKAYA \n" "Language-Team: Turkish\n" @@ -22,7 +22,7 @@ msgstr "" msgid "About" msgstr "Hakkında" -#: src/Console/AppConsole.vala:117 +#: src/Console/AppConsole.vala:113 msgid "Admin access is required for running this application." msgstr "Bu uygulamayı çalıştırmak için yönetici izni gerekiyor." @@ -39,7 +39,7 @@ msgstr "Sistem mimarisi" msgid "Artists" msgstr "Sanatçılar" -#: src/Console/AppConsole.vala:103 +#: src/Console/AppConsole.vala:99 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "Tüm istemler için Evet'i kabul edin (etkileşimsiz kip)" @@ -56,7 +56,7 @@ msgstr "Mevcut Çekirdekler" msgid "Back" msgstr "Geri" -#: src/Console/AppConsole.vala:207 src/Gtk/AppGtk.vala:112 +#: src/Console/AppConsole.vala:203 src/Gtk/AppGtk.vala:110 msgid "Cache" msgstr "Önbellek" @@ -74,11 +74,11 @@ msgstr "Değişiklikler" msgid "Check every" msgstr "Kontrol aralığı" -#: src/Console/AppConsole.vala:86 +#: src/Console/AppConsole.vala:82 msgid "Check for kernel updates" msgstr "Çekirdek güncellemelerini kontrol et" -#: src/Console/AppConsole.vala:87 +#: src/Console/AppConsole.vala:83 msgid "Check for kernel updates and notify current user" msgstr "Çekirdek güncellemelerini kontrol et ve mevcut kullanıcıyı uyar" @@ -86,15 +86,15 @@ msgstr "Çekirdek güncellemelerini kontrol et ve mevcut kullanıcıyı uyar" msgid "Close" msgstr "Kapat" -#: src/Console/AppConsole.vala:344 +#: src/Console/AppConsole.vala:340 msgid "Command not specified" msgstr "Komut belirtilmedi" -#: src/Console/AppConsole.vala:84 +#: src/Console/AppConsole.vala:80 msgid "Commands" msgstr "Komutlar" -#: src/Common/Main.vala:105 +#: src/Common/Main.vala:107 msgid "Commands listed below are not available on this system" msgstr "Aşağıda listelenen komutlar bu sistemde mevcut değil" @@ -112,7 +112,7 @@ msgstr "Destek verenler" msgid "Could not find any kernels to remove" msgstr "Kaldırılacak çekirdek bulunamadı" -#: src/Console/AppConsole.vala:312 src/Gtk/MainWindow.vala:100 +#: src/Console/AppConsole.vala:308 src/Gtk/MainWindow.vala:100 msgid "Could not find requested version" msgstr "İstenen sürüm bulunamadı" @@ -155,7 +155,7 @@ msgstr "Dağıtım" msgid "Documenters" msgstr "Belgelendirenler" -#: src/Console/AppConsole.vala:95 +#: src/Console/AppConsole.vala:91 msgid "Download packages for specified kernel" msgstr "Belirtilen çekirdek için paketleri indir" @@ -173,7 +173,7 @@ msgstr "H" msgid "ERROR" msgstr "HATA" -#: src/Console/AppConsole.vala:102 +#: src/Console/AppConsole.vala:98 msgid "Enable verbose debugging output" msgstr "" @@ -276,15 +276,15 @@ msgstr "Kur" msgid "Install Linux v%s ? (y/n): " msgstr "Linux v%s Kur ? (e/h): " -#: src/Console/AppConsole.vala:90 +#: src/Console/AppConsole.vala:86 msgid "Install latest mainline kernel" msgstr "En son mainline çekirdeğini kur" -#: src/Console/AppConsole.vala:91 +#: src/Console/AppConsole.vala:87 msgid "Install latest point update for current series" msgstr "Mevcut çekirdek serisi için en güncelleme noktasını kur" -#: src/Console/AppConsole.vala:92 +#: src/Console/AppConsole.vala:88 msgid "Install specified mainline kernel" msgstr "Belirtilen mainline çekirdeğini kur" @@ -322,17 +322,17 @@ msgstr "Çekirdek" msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Ubuntu tabanlı dağıtımlar için çekirdek güncelleme aracı" -#: src/Common/LinuxKernel.vala:788 src/Console/AppConsole.vala:370 +#: src/Common/LinuxKernel.vala:788 src/Console/AppConsole.vala:366 #, c-format msgid "Latest point update" msgstr "Son güncelleme noktası" -#: src/Common/LinuxKernel.vala:777 src/Console/AppConsole.vala:363 +#: src/Common/LinuxKernel.vala:777 src/Console/AppConsole.vala:359 #, c-format msgid "Latest update" msgstr "Son güncelleme" -#: src/Console/AppConsole.vala:88 +#: src/Console/AppConsole.vala:84 msgid "List all available mainline kernels" msgstr "Tüm mainline çekirdeklerini listele" @@ -340,7 +340,7 @@ msgstr "Tüm mainline çekirdeklerini listele" msgid "List available kernels" msgstr "Tüm çekirdekleri listele" -#: src/Console/AppConsole.vala:89 +#: src/Console/AppConsole.vala:85 msgid "List installed kernels" msgstr "Kurulu çekirdekleri listele" @@ -352,7 +352,7 @@ msgstr "Eksik Simge" msgid "Multiple Kernels Selected" msgstr "Çoklu Çekirdek Seçildi" -#: src/Console/AppConsole.vala:294 +#: src/Console/AppConsole.vala:290 msgid "Multiple kernels selected for installation. Select only one." msgstr "Kurulum için çoklu çekirdek seçildi. Sadece bir tane seçiniz." @@ -365,12 +365,12 @@ msgstr "Hayır" msgid "No Internet" msgstr "İnternet Yok" -#: src/Console/AppConsole.vala:288 src/Console/AppConsole.vala:325 +#: src/Console/AppConsole.vala:284 src/Console/AppConsole.vala:321 msgid "No kernels specified" msgstr "Belirtilen çekirdek yok" -#: src/Common/LinuxKernel.vala:796 src/Console/AppConsole.vala:375 -#: src/Console/AppConsole.vala:433 src/Gtk/MainWindow.vala:794 +#: src/Common/LinuxKernel.vala:796 src/Console/AppConsole.vala:371 +#: src/Console/AppConsole.vala:429 src/Gtk/MainWindow.vala:794 msgid "No updates found" msgstr "Güncelleme bulunamadı" @@ -397,7 +397,7 @@ msgstr "Ara sürüm mevcutsa bildir" msgid "OK" msgstr "TAMAM" -#: src/Console/AppConsole.vala:99 src/Gtk/AppGtk.vala:183 +#: src/Console/AppConsole.vala:95 src/Gtk/AppGtk.vala:181 msgid "Options" msgstr "Seçenekler" @@ -405,7 +405,7 @@ msgstr "Seçenekler" msgid "Other" msgstr "Diğer" -#: src/Console/AppConsole.vala:104 +#: src/Console/AppConsole.vala:100 msgid "Override user" msgstr "" @@ -419,7 +419,7 @@ msgstr "Mevcut Paketler" msgid "Packages Installed" msgstr "Paketler Kuruldu" -#: src/Common/Main.vala:106 +#: src/Common/Main.vala:108 msgid "Please install required packages and try again" msgstr "Lütfen gerekli paketleri yükleyin ve tekrar deneyin" @@ -427,7 +427,7 @@ msgstr "Lütfen gerekli paketleri yükleyin ve tekrar deneyin" msgid "Preparing to remove selected kernels" msgstr "Seçilen çekirdekleri kaldırmak için hazırlanıyor" -#: src/Gtk/AppGtk.vala:185 +#: src/Gtk/AppGtk.vala:183 msgid "Print debug information" msgstr "Hata ayıklama bilgisini yazdır" @@ -447,24 +447,24 @@ msgstr "Yenileniyor..." msgid "Remove" msgstr "Sil" -#: src/Console/AppConsole.vala:96 src/Console/AppConsole.vala:101 +#: src/Console/AppConsole.vala:92 src/Console/AppConsole.vala:97 msgid "Remove files from application cache" msgstr "Dosyaları uygulama önbelleğinden sil" -#: src/Console/AppConsole.vala:94 src/Gtk/MainWindow.vala:424 +#: src/Console/AppConsole.vala:90 src/Gtk/MainWindow.vala:424 msgid "Remove installed kernels older than running kernel" msgstr "Çalışan çekirdekten eski olan kurulu çekirdekleri kaldır" -#: src/Console/AppConsole.vala:93 +#: src/Console/AppConsole.vala:89 msgid "Remove specified kernel" msgstr "Belirtilen çekirdeği kaldır" -#: src/Console/AppConsole.vala:202 src/Console/AppConsole.vala:316 -#: src/Console/AppConsole.vala:345 +#: src/Console/AppConsole.vala:198 src/Console/AppConsole.vala:312 +#: src/Console/AppConsole.vala:341 msgid "Run '" msgstr "Çalıştır '" -#: src/Console/AppConsole.vala:120 +#: src/Console/AppConsole.vala:116 msgid "Run the application as admin with pkexec or sudo." msgstr "Bu uygulamayı pkexec yada sudo ile yönetici haklarıyla çalıştırın." @@ -504,7 +504,7 @@ msgstr "Göster" msgid "Show N previous major versions " msgstr "" -#: src/Gtk/AppGtk.vala:186 +#: src/Gtk/AppGtk.vala:184 msgid "Show all options" msgstr "Tüm seçenekleri göster" @@ -516,7 +516,7 @@ msgstr "Masaüstünde bildirim baloncuğu göster" msgid "Show notification dialog" msgstr "Bildirim iletişimini göster" -#: src/Console/AppConsole.vala:97 +#: src/Console/AppConsole.vala:93 msgid "Show unstable and RC releases" msgstr "Kararsız ve RC sürümleri göster" @@ -532,11 +532,11 @@ msgstr "Durum" msgid "Stopped" msgstr "Durduruldu" -#: src/Console/AppConsole.vala:82 src/Gtk/AppGtk.vala:181 +#: src/Console/AppConsole.vala:78 src/Gtk/AppGtk.vala:179 msgid "Syntax" msgstr "Sözdizimi" -#: src/Console/AppConsole.vala:208 src/Gtk/AppGtk.vala:113 +#: src/Console/AppConsole.vala:204 src/Gtk/AppGtk.vala:111 msgid "Temp" msgstr "Geçici" @@ -575,7 +575,7 @@ msgstr "Kaldırma tamamlandı" msgid "Un-install completed with errors" msgstr "Kaldırma hatalarla tamamlandı" -#: src/Console/AppConsole.vala:200 src/Gtk/AppGtk.vala:168 +#: src/Console/AppConsole.vala:196 src/Gtk/AppGtk.vala:166 msgid "Unknown option" msgstr "Bilinmeyen seçenek" diff --git a/po/uk.po b/po/uk.po index 3abc13e3..21d03d01 100644 --- a/po/uk.po +++ b/po/uk.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu\n" "Report-Msgid-Bugs-To: b.kenyon.w@gmail.com\n" -"POT-Creation-Date: 2020-01-04 00:31-0500\n" +"POT-Creation-Date: 2020-01-14 12:48-0500\n" "PO-Revision-Date: 2019-07-25 11:00+0300\n" "Last-Translator: Serhii Golovko \n" "Language-Team: Ukranian \n" @@ -17,7 +17,7 @@ msgstr "" msgid "About" msgstr "Про программу" -#: src/Console/AppConsole.vala:117 +#: src/Console/AppConsole.vala:113 msgid "Admin access is required for running this application." msgstr "Для запуску програми потрібно мати права адміністратора." @@ -34,7 +34,7 @@ msgstr "Системна архитектура" msgid "Artists" msgstr "Художники" -#: src/Console/AppConsole.vala:103 +#: src/Console/AppConsole.vala:99 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "Припустимо, так для всіх підказок (неінтерактивний режим)" @@ -51,7 +51,7 @@ msgstr "Доступні ядра" msgid "Back" msgstr "Назад" -#: src/Console/AppConsole.vala:207 src/Gtk/AppGtk.vala:112 +#: src/Console/AppConsole.vala:203 src/Gtk/AppGtk.vala:110 msgid "Cache" msgstr "Кеш" @@ -69,11 +69,11 @@ msgstr "Зміни" msgid "Check every" msgstr "Перевіряти кожні" -#: src/Console/AppConsole.vala:86 +#: src/Console/AppConsole.vala:82 msgid "Check for kernel updates" msgstr "Перевірити оновлення ядра" -#: src/Console/AppConsole.vala:87 +#: src/Console/AppConsole.vala:83 msgid "Check for kernel updates and notify current user" msgstr "Перевірте наявність оновлень ядра та повідомте поточного користувача" @@ -81,15 +81,15 @@ msgstr "Перевірте наявність оновлень ядра та п msgid "Close" msgstr "Закрити" -#: src/Console/AppConsole.vala:344 +#: src/Console/AppConsole.vala:340 msgid "Command not specified" msgstr "Команда не вказана" -#: src/Console/AppConsole.vala:84 +#: src/Console/AppConsole.vala:80 msgid "Commands" msgstr "Команди" -#: src/Common/Main.vala:105 +#: src/Common/Main.vala:107 msgid "Commands listed below are not available on this system" msgstr "Команди перераховані нижче недоступні на цій системі" @@ -107,7 +107,7 @@ msgstr "Внески" msgid "Could not find any kernels to remove" msgstr "Не вдалося знайти жодне ядро ​​для видалення" -#: src/Console/AppConsole.vala:312 src/Gtk/MainWindow.vala:100 +#: src/Console/AppConsole.vala:308 src/Gtk/MainWindow.vala:100 msgid "Could not find requested version" msgstr "Не вдалося знайти запитувану версію" @@ -150,7 +150,7 @@ msgstr "Дистрибутив" msgid "Documenters" msgstr "Укладачі документації" -#: src/Console/AppConsole.vala:95 +#: src/Console/AppConsole.vala:91 msgid "Download packages for specified kernel" msgstr "Завантажити пакети для зазначеного ядра" @@ -168,7 +168,7 @@ msgstr "E" msgid "ERROR" msgstr "ПОМИЛКА" -#: src/Console/AppConsole.vala:102 +#: src/Console/AppConsole.vala:98 msgid "Enable verbose debugging output" msgstr "" @@ -271,15 +271,15 @@ msgstr "Встановити" msgid "Install Linux v%s ? (y/n): " msgstr "Встановити Linux v% s? (так/ні): " -#: src/Console/AppConsole.vala:90 +#: src/Console/AppConsole.vala:86 msgid "Install latest mainline kernel" msgstr "Встановити зазначену гілку ядра" -#: src/Console/AppConsole.vala:91 +#: src/Console/AppConsole.vala:87 msgid "Install latest point update for current series" msgstr "Встановіть останню точку оновлення для поточної серії" -#: src/Console/AppConsole.vala:92 +#: src/Console/AppConsole.vala:88 msgid "Install specified mainline kernel" msgstr "Встановити зазначену гілку ядра" @@ -318,17 +318,17 @@ msgstr "Ядро" msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Програма оновлення ядра для дистрибутивів на базі Ubuntu" -#: src/Common/LinuxKernel.vala:788 src/Console/AppConsole.vala:370 +#: src/Common/LinuxKernel.vala:788 src/Console/AppConsole.vala:366 #, c-format msgid "Latest point update" msgstr "Остання точка оновлення" -#: src/Common/LinuxKernel.vala:777 src/Console/AppConsole.vala:363 +#: src/Common/LinuxKernel.vala:777 src/Console/AppConsole.vala:359 #, c-format msgid "Latest update" msgstr "Останнє оновлення" -#: src/Console/AppConsole.vala:88 +#: src/Console/AppConsole.vala:84 msgid "List all available mainline kernels" msgstr "Список всіх доступних основних ядер" @@ -336,7 +336,7 @@ msgstr "Список всіх доступних основних ядер" msgid "List available kernels" msgstr "Список всіх доступних основних ядер" -#: src/Console/AppConsole.vala:89 +#: src/Console/AppConsole.vala:85 msgid "List installed kernels" msgstr "Список всіх доступних основних ядер" @@ -348,7 +348,7 @@ msgstr "Нема значка" msgid "Multiple Kernels Selected" msgstr "Вибрано кілька ядер" -#: src/Console/AppConsole.vala:294 +#: src/Console/AppConsole.vala:290 msgid "Multiple kernels selected for installation. Select only one." msgstr "Для встановлення вибрано кілька ядер. Виберіть лише одну." @@ -361,12 +361,12 @@ msgstr "Ні" msgid "No Internet" msgstr "Інтернету немає" -#: src/Console/AppConsole.vala:288 src/Console/AppConsole.vala:325 +#: src/Console/AppConsole.vala:284 src/Console/AppConsole.vala:321 msgid "No kernels specified" msgstr "Ядра не вказані" -#: src/Common/LinuxKernel.vala:796 src/Console/AppConsole.vala:375 -#: src/Console/AppConsole.vala:433 src/Gtk/MainWindow.vala:794 +#: src/Common/LinuxKernel.vala:796 src/Console/AppConsole.vala:371 +#: src/Console/AppConsole.vala:429 src/Gtk/MainWindow.vala:794 msgid "No updates found" msgstr "Оновлень не знайдено" @@ -393,7 +393,7 @@ msgstr "Повідомити, чи доступний невеликий вип msgid "OK" msgstr "OK" -#: src/Console/AppConsole.vala:99 src/Gtk/AppGtk.vala:183 +#: src/Console/AppConsole.vala:95 src/Gtk/AppGtk.vala:181 msgid "Options" msgstr "Параметри" @@ -401,7 +401,7 @@ msgstr "Параметри" msgid "Other" msgstr "Інший" -#: src/Console/AppConsole.vala:104 +#: src/Console/AppConsole.vala:100 msgid "Override user" msgstr "" @@ -415,7 +415,7 @@ msgstr "Доступні пакети" msgid "Packages Installed" msgstr "Встановлені пакети" -#: src/Common/Main.vala:106 +#: src/Common/Main.vala:108 msgid "Please install required packages and try again" msgstr "Встановити необхідні пакети і спробуйте знову" @@ -423,7 +423,7 @@ msgstr "Встановити необхідні пакети і спробуйт msgid "Preparing to remove selected kernels" msgstr "Підготовка до видалення вибраних ядер" -#: src/Gtk/AppGtk.vala:185 +#: src/Gtk/AppGtk.vala:183 msgid "Print debug information" msgstr "Роздрукувати зневадження" @@ -443,24 +443,24 @@ msgstr "Оновлення..." msgid "Remove" msgstr "Видалити" -#: src/Console/AppConsole.vala:96 src/Console/AppConsole.vala:101 +#: src/Console/AppConsole.vala:92 src/Console/AppConsole.vala:97 msgid "Remove files from application cache" msgstr "Видалити файли з кешу програми" -#: src/Console/AppConsole.vala:94 src/Gtk/MainWindow.vala:424 +#: src/Console/AppConsole.vala:90 src/Gtk/MainWindow.vala:424 msgid "Remove installed kernels older than running kernel" msgstr "Видаліть встановлені ядра, старші за запущене" -#: src/Console/AppConsole.vala:93 +#: src/Console/AppConsole.vala:89 msgid "Remove specified kernel" msgstr "Видаліть вказане ядро" -#: src/Console/AppConsole.vala:202 src/Console/AppConsole.vala:316 -#: src/Console/AppConsole.vala:345 +#: src/Console/AppConsole.vala:198 src/Console/AppConsole.vala:312 +#: src/Console/AppConsole.vala:341 msgid "Run '" msgstr "Запуск" -#: src/Console/AppConsole.vala:120 +#: src/Console/AppConsole.vala:116 msgid "Run the application as admin with pkexec or sudo." msgstr "Запустіть додаток як адміністратор за допомогою pkexec або sudo." @@ -500,7 +500,7 @@ msgstr "Показати" msgid "Show N previous major versions " msgstr "" -#: src/Gtk/AppGtk.vala:186 +#: src/Gtk/AppGtk.vala:184 msgid "Show all options" msgstr "Показати усі параметри" @@ -512,7 +512,7 @@ msgstr "Показувати вікно сповіщень на робочому msgid "Show notification dialog" msgstr "Показувати вікно сповіщень" -#: src/Console/AppConsole.vala:97 +#: src/Console/AppConsole.vala:93 msgid "Show unstable and RC releases" msgstr "Приховати нестабільні і реліз-кандидат версії" @@ -528,11 +528,11 @@ msgstr "Стан" msgid "Stopped" msgstr "Зупинено" -#: src/Console/AppConsole.vala:82 src/Gtk/AppGtk.vala:181 +#: src/Console/AppConsole.vala:78 src/Gtk/AppGtk.vala:179 msgid "Syntax" msgstr "Синтаксис" -#: src/Console/AppConsole.vala:208 src/Gtk/AppGtk.vala:113 +#: src/Console/AppConsole.vala:204 src/Gtk/AppGtk.vala:111 msgid "Temp" msgstr "Темп" @@ -571,7 +571,7 @@ msgstr "Удаление завершено" msgid "Un-install completed with errors" msgstr "Удаление завершено с ошибками" -#: src/Console/AppConsole.vala:200 src/Gtk/AppGtk.vala:168 +#: src/Console/AppConsole.vala:196 src/Gtk/AppGtk.vala:166 msgid "Unknown option" msgstr "Невідомий параметр" diff --git a/share/polkit-1/actions/mainline.policy.src b/share/polkit-1/actions/mainline.policy.src index 7c9efcf5..3d452626 100644 --- a/share/polkit-1/actions/mainline.policy.src +++ b/share/polkit-1/actions/mainline.policy.src @@ -1,9 +1,8 @@ - + - + + Run BRANDING_SHORTNAME Authentication is required to manage kernel packages BRANDING_SHORTNAME @@ -11,7 +10,7 @@ auth_admin_keep auth_admin_keep - /usr/bin/BRANDING_SHORTNAME + DEST_BIN_DIR/BRANDING_SHORTNAME true diff --git a/src/Common/Main.vala b/src/Common/Main.vala index c9dc84a2..15a1f6be 100644 --- a/src/Common/Main.vala +++ b/src/Common/Main.vala @@ -37,7 +37,8 @@ extern void exit(int exit_code); public class Main : GLib.Object{ // constants ---------- - + [CCode(cname="DEFAULT_SHOW_PREV_MAJORS")] extern const string DEFAULT_SHOW_PREV_MAJORS; + public string APP_CONFIG_FILE = ""; public string STARTUP_SCRIPT_FILE = ""; public string STARTUP_DESKTOP_FILE = ""; @@ -89,7 +90,8 @@ public class Main : GLib.Object{ public static bool check_dependencies(out string msg) { - string[] dependencies = { "aptitude", "aria2c", "dpkg", "uname", "lsb_release" }; + string[] dependencies = { "apt-get", "aptitude", "aria2c", "dpkg", "gpg", "lsb_release", "pgrep", "pkexec", "uname" }; + // bash cat chmod chown cd cp du echo env find gzip gunzip id kill ln mv notify-user pidof ps read realpath rm setsid sh stat tar wc which while xdg-open msg = ""; @@ -243,7 +245,7 @@ public class Main : GLib.Object{ // UGLY - this should be a cron job string txt = "# Notifications are disabled\nexit 0\n"; if (notify_minor || notify_major){ - txt = "while sleep %d%s".printf(count, suffix)+" ;do "+BRANDING_SHORTNAME+" --notify ;done\n"; + txt = "while sleep %d%s".printf(count, suffix)+" ;do " + BRANDING_SHORTNAME + " --notify ;done\n"; } file_write(STARTUP_SCRIPT_FILE,txt); @@ -260,8 +262,8 @@ public class Main : GLib.Object{ + "Hidden=false\n" + "NoDisplay=false\n" + "X-GNOME-Autostart-enabled=true\n" - + "Name="+BRANDING_SHORTNAME+" notification\n" - + "Comment="+BRANDING_SHORTNAME+" notification\n"; + + "Name=" + BRANDING_SHORTNAME + " notification\n" + + "Comment=" + BRANDING_SHORTNAME + " notification\n"; file_write(STARTUP_DESKTOP_FILE, txt); diff --git a/src/Console/AppConsole.vala b/src/Console/AppConsole.vala index 125fd94f..01363500 100644 --- a/src/Console/AppConsole.vala +++ b/src/Console/AppConsole.vala @@ -34,9 +34,6 @@ public Main App; [CCode(cname="BRANDING_SHORTNAME")] extern const string BRANDING_SHORTNAME; [CCode(cname="BRANDING_LONGNAME")] extern const string BRANDING_LONGNAME; [CCode(cname="BRANDING_VERSION")] extern const string BRANDING_VERSION; -[CCode(cname="BRANDING_AUTHORNAME")] extern const string BRANDING_AUTHORNAME; -[CCode(cname="BRANDING_AUTHOREMAIL")] extern const string BRANDING_AUTHOREMAIL; -[CCode(cname="DEFAULT_SHOW_PREV_MAJORS")] extern const string DEFAULT_SHOW_PREV_MAJORS; const string LOCALE_DIR = "/usr/share/locale"; @@ -49,15 +46,14 @@ public class AppConsole : GLib.Object { log_msg("%s v%s".printf(BRANDING_SHORTNAME, BRANDING_VERSION)); init_tmp(BRANDING_SHORTNAME); - - //check_if_admin(); LOG_TIMESTAMP = false; //check dependencies string message; if (!Main.check_dependencies(out message)) { - exit(1); + log_error(message); + return(0); } App = new Main(args, false); diff --git a/src/Gtk/AppGtk.vala b/src/Gtk/AppGtk.vala index 4be6cff0..fac027cd 100644 --- a/src/Gtk/AppGtk.vala +++ b/src/Gtk/AppGtk.vala @@ -33,14 +33,12 @@ using TeeJee.System; using TeeJee.Misc; public Main App; - [CCode(cname="BRANDING_SHORTNAME")] extern const string BRANDING_SHORTNAME; [CCode(cname="BRANDING_LONGNAME")] extern const string BRANDING_LONGNAME; [CCode(cname="BRANDING_VERSION")] extern const string BRANDING_VERSION; [CCode(cname="BRANDING_AUTHORNAME")] extern const string BRANDING_AUTHORNAME; [CCode(cname="BRANDING_AUTHOREMAIL")] extern const string BRANDING_AUTHOREMAIL; [CCode(cname="BRANDING_WEBSITE")] extern const string BRANDING_WEBSITE; -[CCode(cname="DEFAULT_SHOW_PREV_MAJORS")] extern const string DEFAULT_SHOW_PREV_MAJORS; public const string ICON_DIR = BRANDING_SHORTNAME; diff --git a/src/Gtk/ProgressWindow.vala b/src/Gtk/ProgressWindow.vala index 84336bc6..db197be3 100644 --- a/src/Gtk/ProgressWindow.vala +++ b/src/Gtk/ProgressWindow.vala @@ -59,7 +59,7 @@ public class ProgressWindow : Gtk.Window { set_modal(true); set_skip_taskbar_hint(true); set_skip_pager_hint(true); - //set_type_hint(Gdk.WindowTypeHint.DIALOG); + set_type_hint(Gdk.WindowTypeHint.DIALOG); window_position = WindowPosition.CENTER; set_default_size(def_width, def_height); diff --git a/src/Gtk/TerminalWindow.vala b/src/Gtk/TerminalWindow.vala index 38c457c4..1c368b71 100644 --- a/src/Gtk/TerminalWindow.vala +++ b/src/Gtk/TerminalWindow.vala @@ -203,6 +203,8 @@ public class TerminalWindow : Gtk.Window { } public void execute_command(string command){ + // better way or not? + // https://github.com/joshuadowding/ukuu/commit/106170603fd1b554e50a61d70c87aeba77eb78a6 #if GLIB_LT_2_58 term.feed_child("%s\n".printf(command), -1); #else diff --git a/src/Utility/AsyncTask.vala b/src/Utility/AsyncTask.vala index 24183566..942b8e73 100644 --- a/src/Utility/AsyncTask.vala +++ b/src/Utility/AsyncTask.vala @@ -114,8 +114,6 @@ public abstract class AsyncTask : GLib.Object{ out output_fd, out error_fd); - set_priority(); - log_debug("AsyncTask: child_pid: %d".printf(child_pid)); // create stream readers @@ -360,53 +358,6 @@ public abstract class AsyncTask : GLib.Object{ log_debug("process_quit: %d".printf(child_pid)); } - public void set_priority() { - if (background_mode){ - set_priority_value(5); - } - else{ - set_priority_value(0); - } - } - - public void set_priority_value(int prio) { - Pid app_pid = Posix.getpid(); - process_set_priority (app_pid, prio); - - if (status == AppStatus.RUNNING) { - process_set_priority (child_pid, prio); - - Pid sub_child_pid; - foreach (long pid in get_process_children (child_pid)) { - sub_child_pid = (Pid) pid; - process_set_priority (sub_child_pid, prio); - } - } - } - - public string stat_time_elapsed{ - owned get{ - long elapsed = (long) timer_elapsed(timer); - return format_duration(elapsed); - } - } - - public string stat_time_remaining{ - owned get{ - if (progress > 0){ - long elapsed = (long) timer_elapsed(timer); - long remaining = (long)((elapsed / progress) * (1.0 - progress)); - if (remaining < 0){ - remaining = 0; - } - return format_duration(remaining); - } - else{ - return "???"; - } - } - } - public void print_app_status(){ switch(status){ case AppStatus.NOT_STARTED: diff --git a/src/Utility/TeeJee.Process.vala b/src/Utility/TeeJee.Process.vala index 3934b79c..57bd01e3 100644 --- a/src/Utility/TeeJee.Process.vala +++ b/src/Utility/TeeJee.Process.vala @@ -515,34 +515,4 @@ namespace TeeJee.ProcessHelper{ } } - // process priority --------------------------------------- - - public void process_set_priority (Pid procID, int prio){ - - /* Set process priority */ - - if (Posix.getpriority (Posix.PRIO_PROCESS, procID) != prio) - Posix.setpriority (Posix.PRIO_PROCESS, procID, prio); - } - - public int process_get_priority (Pid procID){ - - /* Get process priority */ - - return Posix.getpriority (Posix.PRIO_PROCESS, procID); - } - - public void process_set_priority_normal (Pid procID){ - - /* Set normal priority for process */ - - process_set_priority (procID, 0); - } - - public void process_set_priority_low (Pid procID){ - - /* Set low priority for process */ - - process_set_priority (procID, 5); - } } From 565852af263fe37c68d166ee30c1438d79196edf Mon Sep 17 00:00:00 2001 From: Butterfly Date: Tue, 10 Mar 2020 16:02:50 +0300 Subject: [PATCH 066/567] Update tr.po Update tr.po --- po/tr.po | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/po/tr.po b/po/tr.po index 6032fd3c..b8bd9679 100644 --- a/po/tr.po +++ b/po/tr.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: ukuu\n" "Report-Msgid-Bugs-To: b.kenyon.w@gmail.com\n" "POT-Creation-Date: 2020-01-14 12:48-0500\n" -"PO-Revision-Date: 2019-08-31 18:33+0300\n" +"PO-Revision-Date: 2020-03-10 15:59+0300\n" "Last-Translator: Gökhan GÖKKAYA \n" "Language-Team: Turkish\n" "Language: tr\n" @@ -175,7 +175,7 @@ msgstr "HATA" #: src/Console/AppConsole.vala:98 msgid "Enable verbose debugging output" -msgstr "" +msgstr "Ayrıntılı hata ayıklama çıktısını etkinleştir" #: src/Utility/Gtk/GtkHelper.vala:17 msgid "Error" @@ -298,8 +298,7 @@ msgstr "Kurulum hatalarla tamamlandı" #: src/Common/LinuxKernel.vala:1281 msgid "Installation completed. A reboot is required to use the new kernel." -msgstr "" -"Kurulum tamamlandı. Yeni çekirdeği kullanmak için yeniden başlatma gerekiyor." +msgstr "Kurulum tamamlandı. Yeni çekirdeği kullanmak için yeniden başlatma gerekiyor." #: src/Common/LinuxKernel.vala:1181 src/Gtk/MainWindow.vala:208 msgid "Installed" @@ -407,7 +406,7 @@ msgstr "Diğer" #: src/Console/AppConsole.vala:100 msgid "Override user" -msgstr "" +msgstr "Kullanıcıyı geçersiz kıl" #: src/Common/LinuxKernel.vala:1072 #, c-format @@ -417,7 +416,7 @@ msgstr "Mevcut Paketler" #: src/Common/LinuxKernel.vala:1080 #, c-format msgid "Packages Installed" -msgstr "Paketler Kuruldu" +msgstr "Kurulu Paketler" #: src/Common/Main.vala:108 msgid "Please install required packages and try again" @@ -502,7 +501,7 @@ msgstr "Göster" #: src/Gtk/SettingsDialog.vala:182 msgid "Show N previous major versions " -msgstr "" +msgstr "Önceki ana sürümleri gösterme sayısı " #: src/Gtk/AppGtk.vala:184 msgid "Show all options" From 7c9681af73e5fa02439503f5089b2e9abd73198d Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Mon, 20 Apr 2020 19:33:20 -0400 Subject: [PATCH 067/567] remove unused code, which also fixes a new build error on ubuntu 20.04 --- .deb_build_number.mak | 4 ++-- Makefile | 6 +++--- debian/changelog | 6 ++++++ po/messages.pot | 2 +- share/polkit-1/actions/mainline.policy.src | 4 ++-- src/Gtk/TerminalWindow.vala | 11 ----------- 6 files changed, 14 insertions(+), 19 deletions(-) diff --git a/.deb_build_number.mak b/.deb_build_number.mak index e89a77bc..ceac4885 100644 --- a/.deb_build_number.mak +++ b/.deb_build_number.mak @@ -1,3 +1,3 @@ # This file is generated by Makefile -DEB_PKG_VERSION := 1.0.4 -DEB_BUILD_NUMBER := 0000 +DEB_PKG_VERSION := 1.0.5 +DEB_BUILD_NUMBER := 0001 diff --git a/Makefile b/Makefile index 42bb4593..703d0257 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ # Makefile for "mainline" -# number of major kernel version numbers to show, older than current highest major available. +# number of previous major kernel version numbers to show by default DEFAULT_SHOW_PREV_MAJORS = 0 SHELL := /bin/bash @@ -22,8 +22,6 @@ gtk+ := gtk+-3.0 json-glib := json-glib-1.0 gee := gee-0.8 -GLIB_LT_2_58 := $(shell pkg-config glib-2.0 --atleast-version=2.58.0 || echo '-D GLIB_LT_2_58') - include BRANDING.mak BRANDING_VERSION := $(VERSION_MAJOR).$(VERSION_MINOR).$(VERSION_MICRO) branding_symbols := -X -D'BRANDING_SHORTNAME="$(BRANDING_SHORTNAME)"' \ @@ -168,12 +166,14 @@ changelog: debian/changelog debian/changelog: $(misc_files) dch --controlmaint --no-auto-nmu --package $(BRANDING_SHORTNAME) --newversion $(BRANDING_VERSION) +# PHONY to force it to always run .PHONY: deb_build_number deb_build_number: debian/changelog { printf -v n "%04u" $$((10#$(DEB_BUILD_NUMBER)+1)) ; \ [[ "_$(DEB_PKG_VERSION)" == "_$(pkg_version)" ]] || n="0000" ; \ echo -e "# This file is generated by Makefile\nDEB_PKG_VERSION := $(pkg_version)\nDEB_BUILD_NUMBER := $${n}" > .$(@).mak ; } +# child make to re-load .deb_build_number.mak after updating it .PHONY: release_deb release_deb: deb_build_number clean $(MAKE) deb diff --git a/debian/changelog b/debian/changelog index 862fa458..a29d2b03 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +mainline (1.0.5) UNRELEASED; urgency=medium + + * remove a little more unused code + + -- Brian K. White Tue, 14 Jan 2020 14:09:47 -0500 + mainline (1.0.4) unstable; urgency=medium * Support vala 0.46 / Uubuntu 20.04 copy fix from https://gitlab.manjaro.org/applications/pamac/issues/649 diff --git a/po/messages.pot b/po/messages.pot index 18cfcedd..b1a896c9 100644 --- a/po/messages.pot +++ b/po/messages.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline 1.0.5\n" "Report-Msgid-Bugs-To: b.kenyon.w@gmail.com\n" -"POT-Creation-Date: 2020-01-14 14:00-0500\n" +"POT-Creation-Date: 2020-04-20 19:06-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/share/polkit-1/actions/mainline.policy.src b/share/polkit-1/actions/mainline.policy.src index 3d452626..3f656a78 100644 --- a/share/polkit-1/actions/mainline.policy.src +++ b/share/polkit-1/actions/mainline.policy.src @@ -1,8 +1,8 @@ - - Run BRANDING_SHORTNAME + + Run BRANDING_SHORTNAME as root Authentication is required to manage kernel packages BRANDING_SHORTNAME diff --git a/src/Gtk/TerminalWindow.vala b/src/Gtk/TerminalWindow.vala index 1c368b71..3b2583d7 100644 --- a/src/Gtk/TerminalWindow.vala +++ b/src/Gtk/TerminalWindow.vala @@ -202,17 +202,6 @@ public class TerminalWindow : Gtk.Window { process_quit(child_pid); } - public void execute_command(string command){ - // better way or not? - // https://github.com/joshuadowding/ukuu/commit/106170603fd1b554e50a61d70c87aeba77eb78a6 -#if GLIB_LT_2_58 - term.feed_child("%s\n".printf(command), -1); -#else - string c = command.concat("\n"); - term.feed_child(c.to_utf8()); -#endif - } - public void execute_script(string script_path, bool wait = false){ string[] argv = new string[1]; argv[0] = script_path; From 3670a6b7ac793d6b4ac20b1e2b30a244e2731f64 Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Fri, 1 May 2020 13:39:37 -0400 Subject: [PATCH 068/567] generate translator credits from *.po files --- .deb_build_number.mak | 4 ++-- BRANDING.mak | 2 +- Makefile | 24 ++++++++++++++-------- TRANSLATORS | 9 +++++++++ debian/changelog | 8 +++++++- po/es.po | 18 ++++++++--------- po/fr.po | 18 ++++++++--------- po/hr.po | 18 ++++++++--------- po/messages.pot | 20 +++++++++---------- po/nl.po | 18 ++++++++--------- po/pl.po | 20 +++++++++---------- po/ru.po | 18 ++++++++--------- po/sv.po | 18 ++++++++--------- po/tr.po | 21 ++++++++++---------- po/uk.po | 18 ++++++++--------- src/Gtk/MainWindow.vala | 34 +++++++++++++++++++++----------- src/Utility/Gtk/AboutWindow.vala | 6 +++--- 17 files changed, 154 insertions(+), 120 deletions(-) create mode 100644 TRANSLATORS diff --git a/.deb_build_number.mak b/.deb_build_number.mak index ceac4885..ceafa75c 100644 --- a/.deb_build_number.mak +++ b/.deb_build_number.mak @@ -1,3 +1,3 @@ # This file is generated by Makefile -DEB_PKG_VERSION := 1.0.5 -DEB_BUILD_NUMBER := 0001 +DEB_PKG_VERSION := 1.0.6 +DEB_BUILD_NUMBER := 0002 diff --git a/BRANDING.mak b/BRANDING.mak index 001fac33..2ff818a4 100644 --- a/BRANDING.mak +++ b/BRANDING.mak @@ -3,7 +3,7 @@ VERSION_MAJOR = 1 VERSION_MINOR = 0 -VERSION_MICRO = 5 +VERSION_MICRO = 6 BRANDING_SHORTNAME = mainline BRANDING_LONGNAME = Ubuntu Mainline Kernel Installer BRANDING_AUTHORNAME = Brian K. White diff --git a/Makefile b/Makefile index 703d0257..11000b4d 100644 --- a/Makefile +++ b/Makefile @@ -57,15 +57,15 @@ deb_file = release/deb/$(BRANDING_SHORTNAME)_$(pkg_version).$(DEB_BUILD_NUMBER)_ ################################################################################ .PHONY: all -all: $(BRANDING_SHORTNAME) $(BRANDING_SHORTNAME)-gtk $(po_files) +all: $(BRANDING_SHORTNAME) $(BRANDING_SHORTNAME)-gtk -$(BRANDING_SHORTNAME)-gtk: $(misc_files) $(common_vala_files) $(gui_vala_files) - valac -X -w $(branding_symbols) $(GLIB_LT_2_58) --Xcc="-lm" \ +$(BRANDING_SHORTNAME)-gtk: $(misc_files) $(common_vala_files) $(gui_vala_files) $(po_files) + valac -X -w $(branding_symbols) --Xcc="-lm" \ --pkg $(glib) --pkg $(gio-unix) --pkg posix --pkg $(gee) --pkg $(json-glib) --pkg $(gtk+) --pkg $(vte) \ $(common_vala_files) $(gui_vala_files) -o $(@) -$(BRANDING_SHORTNAME): $(misc_files) $(common_vala_files) $(tui_vala_files) - valac -X -w $(branding_symbols) $(GLIB_LT_2_58) --Xcc="-lm" \ +$(BRANDING_SHORTNAME): $(misc_files) $(common_vala_files) $(tui_vala_files) $(po_files) + valac -X -w $(branding_symbols) --Xcc="-lm" \ --pkg $(glib) --pkg $(gio-unix) --pkg posix --pkg $(gee) --pkg $(json-glib) \ $(common_vala_files) $(tui_vala_files) -o $(@) @@ -80,7 +80,7 @@ $(misc_files): %: %.src BRANDING.mak $(@).src >$(@) # -e ';s|DEST_BIN_DIR|$(DESTDIR)$(bindir)|g' -$(pot_file): $(misc_files) $(common_vala_files) $(tui_vala_files) $(gui_vala_files) +$(pot_file): $(common_vala_files) $(tui_vala_files) $(gui_vala_files) find . -iname "*.vala" -print0 | xargs -0 xgettext --from-code=UTF-8 --language=C --keyword=_ \ --copyright-holder="$(BRANDING_AUTHORNAME) ($(BRANDING_AUTHOREMAIL))" \ --package-name="$(BRANDING_SHORTNAME)" \ @@ -90,7 +90,10 @@ $(pot_file): $(misc_files) $(common_vala_files) $(tui_vala_files) $(gui_vala_fil $(po_files): %: $(pot_file) msgmerge --backup=none --update -v $(@) $(pot_file) - touch $(@) + @touch $(@) + +TRANSLATORS: $(po_files) + grep '^"Last-Translator: ' $(po_files) |while IFS='/.:' read x l x x n ;do echo "$${l}:$${n%\n*}" ;done >$(@) .PHONY: clean clean: @@ -146,6 +149,11 @@ $(dsc_file): debian/changelog $(misc_files) $(po_files) .PHONY: deb deb: $(deb_file) +# To create the deb build env +#sudo apt intsall pbuilder-dist +#pbuilder-dist `lsb_release -sc` create +# To update the deb build env +#pbuilder-dist `lsb_release -sc` update $(deb_file): $(dsc_file) mkdir -pv release/deb pbuilder-dist $(host_dist) build $(dsc_file) --buildresult release/deb @@ -173,7 +181,7 @@ deb_build_number: debian/changelog [[ "_$(DEB_PKG_VERSION)" == "_$(pkg_version)" ]] || n="0000" ; \ echo -e "# This file is generated by Makefile\nDEB_PKG_VERSION := $(pkg_version)\nDEB_BUILD_NUMBER := $${n}" > .$(@).mak ; } -# child make to re-load .deb_build_number.mak after updating it +# child process to re-load .deb_build_number.mak after updating it .PHONY: release_deb release_deb: deb_build_number clean $(MAKE) deb diff --git a/TRANSLATORS b/TRANSLATORS new file mode 100644 index 00000000..2a68793d --- /dev/null +++ b/TRANSLATORS @@ -0,0 +1,9 @@ +es: Adolfo Jayme Barrientos +fr: Yolateng0 +hr: gogo +nl: Heimen Stoffels +pl: Waldemar Konik +ru: Faust3000 +sv: Åke Engelbrektson +tr: Gökhan GÖKKAYA +uk: Serhii Golovko diff --git a/debian/changelog b/debian/changelog index a29d2b03..3ea7a359 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,4 +1,10 @@ -mainline (1.0.5) UNRELEASED; urgency=medium +mainline (1.0.6) unstable; urgency=medium + + * generate translator credits from .po files + + -- Brian K. White Tue, 21 Apr 2020 15:26:27 -0400 + +mainline (1.0.5) unstable; urgency=medium * remove a little more unused code diff --git a/po/es.po b/po/es.po index cdce9f26..81173235 100644 --- a/po/es.po +++ b/po/es.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu\n" "Report-Msgid-Bugs-To: b.kenyon.w@gmail.com\n" -"POT-Creation-Date: 2020-01-14 12:48-0500\n" +"POT-Creation-Date: 2020-05-01 13:31-0400\n" "PO-Revision-Date: 2018-01-03 02:03-0600\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish\n" @@ -306,8 +306,8 @@ msgstr "" msgid "Installed" msgstr "Instalado" -#: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:548 -#: src/Gtk/MainWindow.vala:684 src/Utility/TeeJee.System.vala:281 +#: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:558 +#: src/Gtk/MainWindow.vala:694 src/Utility/TeeJee.System.vala:281 msgid "Internet connection is not active" msgstr "La conexión a Internet está inactiva" @@ -320,7 +320,7 @@ msgstr "La conexión a Internet está inactiva" msgid "Kernel" msgstr "Núcleo" -#: src/Gtk/MainWindow.vala:532 +#: src/Gtk/MainWindow.vala:542 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "" "Herramienta de renovación de núcleo para distribuciones basadas en Ubuntu" @@ -363,8 +363,8 @@ msgstr "Se seleccionaron varios núcleos para su instalación. Elija solo uno." msgid "No" msgstr "No" -#: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:548 -#: src/Gtk/MainWindow.vala:684 +#: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:558 +#: src/Gtk/MainWindow.vala:694 msgid "No Internet" msgstr "No hay Internet" @@ -373,7 +373,7 @@ msgid "No kernels specified" msgstr "" #: src/Common/LinuxKernel.vala:796 src/Console/AppConsole.vala:371 -#: src/Console/AppConsole.vala:429 src/Gtk/MainWindow.vala:794 +#: src/Console/AppConsole.vala:429 src/Gtk/MainWindow.vala:804 msgid "No updates found" msgstr "No se encontró ninguna actualización" @@ -442,7 +442,7 @@ msgstr "" msgid "Refresh" msgstr "Actualizar" -#: src/Gtk/MainWindow.vala:567 +#: src/Gtk/MainWindow.vala:577 msgid "Refreshing..." msgstr "Actualizando…" @@ -553,7 +553,7 @@ msgstr "Los siguientes kernels serán eliminados:" msgid "Third Party Tools" msgstr "Herramientas de terceros" -#: src/Common/LinuxKernel.vala:1252 src/Gtk/MainWindow.vala:679 +#: src/Common/LinuxKernel.vala:1252 src/Gtk/MainWindow.vala:689 msgid "This kernel is already installed." msgstr "Este núcleo ya se instaló." diff --git a/po/fr.po b/po/fr.po index f8360f57..020a5397 100644 --- a/po/fr.po +++ b/po/fr.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu\n" "Report-Msgid-Bugs-To: b.kenyon.w@gmail.com\n" -"POT-Creation-Date: 2020-01-14 12:48-0500\n" +"POT-Creation-Date: 2020-05-01 13:31-0400\n" "PO-Revision-Date: 2018-08-05 15:50+0200\n" "Last-Translator: Yolateng0 \n" "Language-Team: French\n" @@ -311,8 +311,8 @@ msgstr "" msgid "Installed" msgstr "Installé" -#: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:548 -#: src/Gtk/MainWindow.vala:684 src/Utility/TeeJee.System.vala:281 +#: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:558 +#: src/Gtk/MainWindow.vala:694 src/Utility/TeeJee.System.vala:281 msgid "Internet connection is not active" msgstr "Connexion internet inexistante" @@ -325,7 +325,7 @@ msgstr "Connexion internet inexistante" msgid "Kernel" msgstr "Noyau" -#: src/Gtk/MainWindow.vala:532 +#: src/Gtk/MainWindow.vala:542 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "" "Utilitaire de mise à niveau des noyaux pour les distributions basées pour " @@ -372,8 +372,8 @@ msgstr "" msgid "No" msgstr "Non" -#: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:548 -#: src/Gtk/MainWindow.vala:684 +#: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:558 +#: src/Gtk/MainWindow.vala:694 msgid "No Internet" msgstr "Pas d'Internet" @@ -382,7 +382,7 @@ msgid "No kernels specified" msgstr "" #: src/Common/LinuxKernel.vala:796 src/Console/AppConsole.vala:371 -#: src/Console/AppConsole.vala:429 src/Gtk/MainWindow.vala:794 +#: src/Console/AppConsole.vala:429 src/Gtk/MainWindow.vala:804 msgid "No updates found" msgstr "Aucune mise à jour disponible" @@ -451,7 +451,7 @@ msgstr "" msgid "Refresh" msgstr "Actualiser" -#: src/Gtk/MainWindow.vala:567 +#: src/Gtk/MainWindow.vala:577 msgid "Refreshing..." msgstr "Actualisation..." @@ -565,7 +565,7 @@ msgstr "" msgid "Third Party Tools" msgstr "Outils tiers" -#: src/Common/LinuxKernel.vala:1252 src/Gtk/MainWindow.vala:679 +#: src/Common/LinuxKernel.vala:1252 src/Gtk/MainWindow.vala:689 msgid "This kernel is already installed." msgstr "Ce noyau est déjà installé." diff --git a/po/hr.po b/po/hr.po index e2b5860a..25260d86 100644 --- a/po/hr.po +++ b/po/hr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu\n" "Report-Msgid-Bugs-To: b.kenyon.w@gmail.com\n" -"POT-Creation-Date: 2020-01-14 12:48-0500\n" +"POT-Creation-Date: 2020-05-01 13:31-0400\n" "PO-Revision-Date: 2017-12-24 00:52+0100\n" "Last-Translator: gogo \n" "Language-Team: Croatian \n" @@ -311,8 +311,8 @@ msgstr "" msgid "Installed" msgstr "Instalirano" -#: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:548 -#: src/Gtk/MainWindow.vala:684 src/Utility/TeeJee.System.vala:281 +#: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:558 +#: src/Gtk/MainWindow.vala:694 src/Utility/TeeJee.System.vala:281 msgid "Internet connection is not active" msgstr "Internet povezivanje nije aktivno" @@ -325,7 +325,7 @@ msgstr "Internet povezivanje nije aktivno" msgid "Kernel" msgstr "Kernel" -#: src/Gtk/MainWindow.vala:532 +#: src/Gtk/MainWindow.vala:542 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Alat za nadogradnju kernela Ubuntu temeljenih distribucija" @@ -368,8 +368,8 @@ msgstr "Više kernela je odabrano za instalaciju. odaberite samo jedan." msgid "No" msgstr "Ne" -#: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:548 -#: src/Gtk/MainWindow.vala:684 +#: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:558 +#: src/Gtk/MainWindow.vala:694 msgid "No Internet" msgstr "Nema pristupa internetu" @@ -378,7 +378,7 @@ msgid "No kernels specified" msgstr "" #: src/Common/LinuxKernel.vala:796 src/Console/AppConsole.vala:371 -#: src/Console/AppConsole.vala:429 src/Gtk/MainWindow.vala:794 +#: src/Console/AppConsole.vala:429 src/Gtk/MainWindow.vala:804 msgid "No updates found" msgstr "Nema pronađenih nadopuna" @@ -447,7 +447,7 @@ msgstr "" msgid "Refresh" msgstr "Osvježi" -#: src/Gtk/MainWindow.vala:567 +#: src/Gtk/MainWindow.vala:577 msgid "Refreshing..." msgstr "Osvježavanje..." @@ -561,7 +561,7 @@ msgstr "" msgid "Third Party Tools" msgstr "Alati treće strane" -#: src/Common/LinuxKernel.vala:1252 src/Gtk/MainWindow.vala:679 +#: src/Common/LinuxKernel.vala:1252 src/Gtk/MainWindow.vala:689 msgid "This kernel is already installed." msgstr "Ovaj kernel je već instaliran." diff --git a/po/messages.pot b/po/messages.pot index b1a896c9..fee20f13 100644 --- a/po/messages.pot +++ b/po/messages.pot @@ -6,9 +6,9 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: mainline 1.0.5\n" +"Project-Id-Version: mainline 1.0.6\n" "Report-Msgid-Bugs-To: b.kenyon.w@gmail.com\n" -"POT-Creation-Date: 2020-04-20 19:06-0400\n" +"POT-Creation-Date: 2020-05-01 13:31-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -303,8 +303,8 @@ msgstr "" msgid "Installed" msgstr "" -#: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:548 -#: src/Gtk/MainWindow.vala:684 src/Utility/TeeJee.System.vala:281 +#: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:558 +#: src/Gtk/MainWindow.vala:694 src/Utility/TeeJee.System.vala:281 msgid "Internet connection is not active" msgstr "" @@ -316,7 +316,7 @@ msgstr "" msgid "Kernel" msgstr "" -#: src/Gtk/MainWindow.vala:532 +#: src/Gtk/MainWindow.vala:542 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "" @@ -358,8 +358,8 @@ msgstr "" msgid "No" msgstr "" -#: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:548 -#: src/Gtk/MainWindow.vala:684 +#: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:558 +#: src/Gtk/MainWindow.vala:694 msgid "No Internet" msgstr "" @@ -368,7 +368,7 @@ msgid "No kernels specified" msgstr "" #: src/Common/LinuxKernel.vala:796 src/Console/AppConsole.vala:371 -#: src/Console/AppConsole.vala:429 src/Gtk/MainWindow.vala:794 +#: src/Console/AppConsole.vala:429 src/Gtk/MainWindow.vala:804 msgid "No updates found" msgstr "" @@ -437,7 +437,7 @@ msgstr "" msgid "Refresh" msgstr "" -#: src/Gtk/MainWindow.vala:567 +#: src/Gtk/MainWindow.vala:577 msgid "Refreshing..." msgstr "" @@ -546,7 +546,7 @@ msgstr "" msgid "Third Party Tools" msgstr "" -#: src/Common/LinuxKernel.vala:1252 src/Gtk/MainWindow.vala:679 +#: src/Common/LinuxKernel.vala:1252 src/Gtk/MainWindow.vala:689 msgid "This kernel is already installed." msgstr "" diff --git a/po/nl.po b/po/nl.po index 8e8cc619..b4a1fafb 100644 --- a/po/nl.po +++ b/po/nl.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu 2.2\n" "Report-Msgid-Bugs-To: b.kenyon.w@gmail.com\n" -"POT-Creation-Date: 2020-01-14 12:48-0500\n" +"POT-Creation-Date: 2020-05-01 13:31-0400\n" "PO-Revision-Date: 2017-04-30 11:50+0200\n" "Last-Translator: Heimen Stoffels \n" "Language-Team: \n" @@ -312,8 +312,8 @@ msgstr "" msgid "Installed" msgstr "Geïnstalleerd" -#: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:548 -#: src/Gtk/MainWindow.vala:684 src/Utility/TeeJee.System.vala:281 +#: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:558 +#: src/Gtk/MainWindow.vala:694 src/Utility/TeeJee.System.vala:281 msgid "Internet connection is not active" msgstr "U bent niet verbonden met het internet" @@ -326,7 +326,7 @@ msgstr "U bent niet verbonden met het internet" msgid "Kernel" msgstr "Kernel" -#: src/Gtk/MainWindow.vala:532 +#: src/Gtk/MainWindow.vala:542 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Kernel-upgradehulpmiddel voor op Ubuntu-gebaseerde distributies" @@ -372,8 +372,8 @@ msgstr "" msgid "No" msgstr "" -#: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:548 -#: src/Gtk/MainWindow.vala:684 +#: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:558 +#: src/Gtk/MainWindow.vala:694 msgid "No Internet" msgstr "Geen internetverbinding" @@ -382,7 +382,7 @@ msgid "No kernels specified" msgstr "" #: src/Common/LinuxKernel.vala:796 src/Console/AppConsole.vala:371 -#: src/Console/AppConsole.vala:429 src/Gtk/MainWindow.vala:794 +#: src/Console/AppConsole.vala:429 src/Gtk/MainWindow.vala:804 msgid "No updates found" msgstr "Geen updates gevonden" @@ -451,7 +451,7 @@ msgstr "" msgid "Refresh" msgstr "Verversen" -#: src/Gtk/MainWindow.vala:567 +#: src/Gtk/MainWindow.vala:577 msgid "Refreshing..." msgstr "Bezig met verversen..." @@ -567,7 +567,7 @@ msgstr "" msgid "Third Party Tools" msgstr "Externe hulpmiddelen" -#: src/Common/LinuxKernel.vala:1252 src/Gtk/MainWindow.vala:679 +#: src/Common/LinuxKernel.vala:1252 src/Gtk/MainWindow.vala:689 msgid "This kernel is already installed." msgstr "Deze kernel is al geïnstalleerd." diff --git a/po/pl.po b/po/pl.po index 2ccfe1a2..9d954bc1 100644 --- a/po/pl.po +++ b/po/pl.po @@ -6,9 +6,9 @@ msgid "" msgstr "" "Project-Id-Version: ukuu\n" "Report-Msgid-Bugs-To: b.kenyon.w@gmail.com\n" -"POT-Creation-Date: 2020-01-14 12:48-0500\n" +"POT-Creation-Date: 2020-05-01 13:31-0400\n" "PO-Revision-Date: 2017-08-12 15:26+0200\n" -"Last-Translator: \n" +"Last-Translator: Waldemar Konik \n" "Language-Team: Polish\n" "Language: pl\n" "MIME-Version: 1.0\n" @@ -309,8 +309,8 @@ msgstr "" msgid "Installed" msgstr "Zainstalowany" -#: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:548 -#: src/Gtk/MainWindow.vala:684 src/Utility/TeeJee.System.vala:281 +#: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:558 +#: src/Gtk/MainWindow.vala:694 src/Utility/TeeJee.System.vala:281 msgid "Internet connection is not active" msgstr "Brak połączenia z internetem" @@ -323,7 +323,7 @@ msgstr "Brak połączenia z internetem" msgid "Kernel" msgstr "Jądro" -#: src/Gtk/MainWindow.vala:532 +#: src/Gtk/MainWindow.vala:542 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Narzędzie uaktualniania jądra dla dystrybucji z rodziny Ubuntu" @@ -367,8 +367,8 @@ msgstr "Wybrano kilka jąder do instalacji. Wybierz tylko jedno." msgid "No" msgstr "" -#: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:548 -#: src/Gtk/MainWindow.vala:684 +#: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:558 +#: src/Gtk/MainWindow.vala:694 msgid "No Internet" msgstr "Brak internetu" @@ -377,7 +377,7 @@ msgid "No kernels specified" msgstr "" #: src/Common/LinuxKernel.vala:796 src/Console/AppConsole.vala:371 -#: src/Console/AppConsole.vala:429 src/Gtk/MainWindow.vala:794 +#: src/Console/AppConsole.vala:429 src/Gtk/MainWindow.vala:804 msgid "No updates found" msgstr "Nie znaleziono aktualizacji" @@ -446,7 +446,7 @@ msgstr "" msgid "Refresh" msgstr "Odśwież" -#: src/Gtk/MainWindow.vala:567 +#: src/Gtk/MainWindow.vala:577 msgid "Refreshing..." msgstr "Odświeżam..." @@ -561,7 +561,7 @@ msgstr "" msgid "Third Party Tools" msgstr "Narzędzia osób trzecich" -#: src/Common/LinuxKernel.vala:1252 src/Gtk/MainWindow.vala:679 +#: src/Common/LinuxKernel.vala:1252 src/Gtk/MainWindow.vala:689 msgid "This kernel is already installed." msgstr "To jądro jest już zainstalowane." diff --git a/po/ru.po b/po/ru.po index 23db3780..c680ce46 100644 --- a/po/ru.po +++ b/po/ru.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu\n" "Report-Msgid-Bugs-To: b.kenyon.w@gmail.com\n" -"POT-Creation-Date: 2020-01-14 12:48-0500\n" +"POT-Creation-Date: 2020-05-01 13:31-0400\n" "PO-Revision-Date: 2016-12-13 16:46+0300\n" "Last-Translator: Faust3000 \n" "Language-Team: Russian \n" @@ -316,8 +316,8 @@ msgstr "" msgid "Installed" msgstr "Установлено" -#: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:548 -#: src/Gtk/MainWindow.vala:684 src/Utility/TeeJee.System.vala:281 +#: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:558 +#: src/Gtk/MainWindow.vala:694 src/Utility/TeeJee.System.vala:281 msgid "Internet connection is not active" msgstr "Интернет соединение не активно" @@ -330,7 +330,7 @@ msgstr "Интернет соединение не активно" msgid "Kernel" msgstr "Ядро" -#: src/Gtk/MainWindow.vala:532 +#: src/Gtk/MainWindow.vala:542 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Программа обновления ядра для дистрибутивов на базе Ubuntu" @@ -374,8 +374,8 @@ msgstr "" msgid "No" msgstr "" -#: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:548 -#: src/Gtk/MainWindow.vala:684 +#: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:558 +#: src/Gtk/MainWindow.vala:694 msgid "No Internet" msgstr "" @@ -384,7 +384,7 @@ msgid "No kernels specified" msgstr "" #: src/Common/LinuxKernel.vala:796 src/Console/AppConsole.vala:371 -#: src/Console/AppConsole.vala:429 src/Gtk/MainWindow.vala:794 +#: src/Console/AppConsole.vala:429 src/Gtk/MainWindow.vala:804 msgid "No updates found" msgstr "Обновлений не найдено" @@ -453,7 +453,7 @@ msgstr "Очистить" msgid "Refresh" msgstr "Обновить" -#: src/Gtk/MainWindow.vala:567 +#: src/Gtk/MainWindow.vala:577 msgid "Refreshing..." msgstr "Обновление..." @@ -569,7 +569,7 @@ msgstr "" msgid "Third Party Tools" msgstr "Сторонние инструменты" -#: src/Common/LinuxKernel.vala:1252 src/Gtk/MainWindow.vala:679 +#: src/Common/LinuxKernel.vala:1252 src/Gtk/MainWindow.vala:689 msgid "This kernel is already installed." msgstr "Это ядро уже установлено." diff --git a/po/sv.po b/po/sv.po index c3ad2517..367b9bc0 100644 --- a/po/sv.po +++ b/po/sv.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu 2.2\n" "Report-Msgid-Bugs-To: b.kenyon.w@gmail.com\n" -"POT-Creation-Date: 2020-01-14 12:48-0500\n" +"POT-Creation-Date: 2020-05-01 13:31-0400\n" "PO-Revision-Date: 2018-01-13 16:56+0100\n" "Last-Translator: Åke Engelbrektson \n" "Language-Team: Svenska Språkfiler \n" @@ -310,8 +310,8 @@ msgstr "Installation slutförd. Omstart krävs för att tillämpa den nya kärna msgid "Installed" msgstr "Installerad" -#: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:548 -#: src/Gtk/MainWindow.vala:684 src/Utility/TeeJee.System.vala:281 +#: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:558 +#: src/Gtk/MainWindow.vala:694 src/Utility/TeeJee.System.vala:281 msgid "Internet connection is not active" msgstr "Internetuppkopplingen är inte aktiv" @@ -324,7 +324,7 @@ msgstr "Internetuppkopplingen är inte aktiv" msgid "Kernel" msgstr "Kärna" -#: src/Gtk/MainWindow.vala:532 +#: src/Gtk/MainWindow.vala:542 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Kärnuppgraderingsverktyg för Ubuntu-baserade distributioner" @@ -367,8 +367,8 @@ msgstr "Flera kärnor valda för installation. Välj endast en." msgid "No" msgstr "Nej" -#: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:548 -#: src/Gtk/MainWindow.vala:684 +#: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:558 +#: src/Gtk/MainWindow.vala:694 msgid "No Internet" msgstr "Inget internet" @@ -377,7 +377,7 @@ msgid "No kernels specified" msgstr "" #: src/Common/LinuxKernel.vala:796 src/Console/AppConsole.vala:371 -#: src/Console/AppConsole.vala:429 src/Gtk/MainWindow.vala:794 +#: src/Console/AppConsole.vala:429 src/Gtk/MainWindow.vala:804 msgid "No updates found" msgstr "Inga uppdateringar hittades" @@ -446,7 +446,7 @@ msgstr "Rensa" msgid "Refresh" msgstr "Uppdatera" -#: src/Gtk/MainWindow.vala:567 +#: src/Gtk/MainWindow.vala:577 msgid "Refreshing..." msgstr "Uppdaterar ..." @@ -560,7 +560,7 @@ msgstr "" msgid "Third Party Tools" msgstr "Tredjepartsverktyg" -#: src/Common/LinuxKernel.vala:1252 src/Gtk/MainWindow.vala:679 +#: src/Common/LinuxKernel.vala:1252 src/Gtk/MainWindow.vala:689 msgid "This kernel is already installed." msgstr "Denna kärna är redan installerad" diff --git a/po/tr.po b/po/tr.po index b8bd9679..2f1f3a03 100644 --- a/po/tr.po +++ b/po/tr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu\n" "Report-Msgid-Bugs-To: b.kenyon.w@gmail.com\n" -"POT-Creation-Date: 2020-01-14 12:48-0500\n" +"POT-Creation-Date: 2020-05-01 13:31-0400\n" "PO-Revision-Date: 2020-03-10 15:59+0300\n" "Last-Translator: Gökhan GÖKKAYA \n" "Language-Team: Turkish\n" @@ -298,14 +298,15 @@ msgstr "Kurulum hatalarla tamamlandı" #: src/Common/LinuxKernel.vala:1281 msgid "Installation completed. A reboot is required to use the new kernel." -msgstr "Kurulum tamamlandı. Yeni çekirdeği kullanmak için yeniden başlatma gerekiyor." +msgstr "" +"Kurulum tamamlandı. Yeni çekirdeği kullanmak için yeniden başlatma gerekiyor." #: src/Common/LinuxKernel.vala:1181 src/Gtk/MainWindow.vala:208 msgid "Installed" msgstr "Kurulu" -#: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:548 -#: src/Gtk/MainWindow.vala:684 src/Utility/TeeJee.System.vala:281 +#: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:558 +#: src/Gtk/MainWindow.vala:694 src/Utility/TeeJee.System.vala:281 msgid "Internet connection is not active" msgstr "İnternet bağlantısı aktif değil" @@ -317,7 +318,7 @@ msgstr "İnternet bağlantısı zaman aşımı " msgid "Kernel" msgstr "Çekirdek" -#: src/Gtk/MainWindow.vala:532 +#: src/Gtk/MainWindow.vala:542 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Ubuntu tabanlı dağıtımlar için çekirdek güncelleme aracı" @@ -359,8 +360,8 @@ msgstr "Kurulum için çoklu çekirdek seçildi. Sadece bir tane seçiniz." msgid "No" msgstr "Hayır" -#: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:548 -#: src/Gtk/MainWindow.vala:684 +#: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:558 +#: src/Gtk/MainWindow.vala:694 msgid "No Internet" msgstr "İnternet Yok" @@ -369,7 +370,7 @@ msgid "No kernels specified" msgstr "Belirtilen çekirdek yok" #: src/Common/LinuxKernel.vala:796 src/Console/AppConsole.vala:371 -#: src/Console/AppConsole.vala:429 src/Gtk/MainWindow.vala:794 +#: src/Console/AppConsole.vala:429 src/Gtk/MainWindow.vala:804 msgid "No updates found" msgstr "Güncelleme bulunamadı" @@ -438,7 +439,7 @@ msgstr "Temizle" msgid "Refresh" msgstr "Yenile" -#: src/Gtk/MainWindow.vala:567 +#: src/Gtk/MainWindow.vala:577 msgid "Refreshing..." msgstr "Yenileniyor..." @@ -549,7 +550,7 @@ msgstr "Aşağıdaki çekirdekler silinecek:" msgid "Third Party Tools" msgstr "Üçüncü Parti Araçlar" -#: src/Common/LinuxKernel.vala:1252 src/Gtk/MainWindow.vala:679 +#: src/Common/LinuxKernel.vala:1252 src/Gtk/MainWindow.vala:689 msgid "This kernel is already installed." msgstr "Bu çekirdek zaten kurulu." diff --git a/po/uk.po b/po/uk.po index 21d03d01..b1256725 100644 --- a/po/uk.po +++ b/po/uk.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu\n" "Report-Msgid-Bugs-To: b.kenyon.w@gmail.com\n" -"POT-Creation-Date: 2020-01-14 12:48-0500\n" +"POT-Creation-Date: 2020-05-01 13:31-0400\n" "PO-Revision-Date: 2019-07-25 11:00+0300\n" "Last-Translator: Serhii Golovko \n" "Language-Team: Ukranian \n" @@ -301,8 +301,8 @@ msgstr "" msgid "Installed" msgstr "Встановлено" -#: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:548 -#: src/Gtk/MainWindow.vala:684 src/Utility/TeeJee.System.vala:281 +#: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:558 +#: src/Gtk/MainWindow.vala:694 src/Utility/TeeJee.System.vala:281 msgid "Internet connection is not active" msgstr "Інтернет з'єднання не активно" @@ -314,7 +314,7 @@ msgstr "Час очікування підключення до Інтернет msgid "Kernel" msgstr "Ядро" -#: src/Gtk/MainWindow.vala:532 +#: src/Gtk/MainWindow.vala:542 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Програма оновлення ядра для дистрибутивів на базі Ubuntu" @@ -356,8 +356,8 @@ msgstr "Для встановлення вибрано кілька ядер. В msgid "No" msgstr "Ні" -#: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:548 -#: src/Gtk/MainWindow.vala:684 +#: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:558 +#: src/Gtk/MainWindow.vala:694 msgid "No Internet" msgstr "Інтернету немає" @@ -366,7 +366,7 @@ msgid "No kernels specified" msgstr "Ядра не вказані" #: src/Common/LinuxKernel.vala:796 src/Console/AppConsole.vala:371 -#: src/Console/AppConsole.vala:429 src/Gtk/MainWindow.vala:794 +#: src/Console/AppConsole.vala:429 src/Gtk/MainWindow.vala:804 msgid "No updates found" msgstr "Оновлень не знайдено" @@ -435,7 +435,7 @@ msgstr "Чистити" msgid "Refresh" msgstr "Оновити" -#: src/Gtk/MainWindow.vala:567 +#: src/Gtk/MainWindow.vala:577 msgid "Refreshing..." msgstr "Оновлення..." @@ -546,7 +546,7 @@ msgstr "Наступні ядра будуть видалені:" msgid "Third Party Tools" msgstr "Сторонние инструменты" -#: src/Common/LinuxKernel.vala:1252 src/Gtk/MainWindow.vala:679 +#: src/Common/LinuxKernel.vala:1252 src/Gtk/MainWindow.vala:689 msgid "This kernel is already installed." msgstr "Это ядро уже установлено." diff --git a/src/Gtk/MainWindow.vala b/src/Gtk/MainWindow.vala index 484485ee..937009ab 100644 --- a/src/Gtk/MainWindow.vala +++ b/src/Gtk/MainWindow.vala @@ -504,25 +504,35 @@ public class MainWindow : Gtk.Window{ // FIXME - this should come from the AUTHORS file, or from git dialog.authors = { - "Tony George:teejeetech@gmail.com", - BRANDING_AUTHORNAME+":"+BRANDING_AUTHOREMAIL + "Tony George ", + BRANDING_AUTHORNAME+" <"+BRANDING_AUTHOREMAIL+">" }; dialog.third_party = { "Elementary project (various icons):github.com/elementary/icons", "Tango project (various icons):tango.freedesktop.org/Tango_Desktop_Project" }; - // FIXME - generate from files + // FIXME - generate this list from the .po files + /* dialog.translators = { - "Åke Engelbrektson (Swedish):eson@svenskasprakfiler.se", - "Иннусик (Russian):slavusik1988@gmail.com", - "Waldemar Konik (Polish):valdi74@github", - "gogo (Croatian):trebelnik2@gmail.com", - "Adolfo Jayme Barrientos (Spanish):fitojb@ubuntu.com", - "yolateng0 (French):github.com/yolateng0", - "Hugo Posnic (French):hugo.posnic@gmail.com", - "Faust3000 (Russian):slavusik1988@gmail.com", - "Gökhan GÖKKAYA (Turkish):gokhanlnx@gmail.com" + "name", + "name", + "name" + }; + */ + // For now, run "make TRANSLATORS" + // then cut & paste from generated TRANSLATORS file + // and add the quotes & commas + dialog.translators = { + "es: Adolfo Jayme Barrientos ", + "fr: Yolateng0 ", + "hr: gogo ", + "nl: Heimen Stoffels ", + "pl: Waldemar Konik ", + "ru: Faust3000 ", + "sv: Åke Engelbrektson ", + "tr: Gökhan GÖKKAYA ", + "uk: Serhii Golovko " }; dialog.documenters = null; diff --git a/src/Utility/Gtk/AboutWindow.vala b/src/Utility/Gtk/AboutWindow.vala index 70e2b323..7f0e07c5 100644 --- a/src/Utility/Gtk/AboutWindow.vala +++ b/src/Utility/Gtk/AboutWindow.vala @@ -345,7 +345,7 @@ public class AboutWindow : Dialog { if (translators.length > 0){ add_header("%s\n".printf(_("Translators"))); foreach(string name in translators){ - add_line("%s\n".printf(name)); + add_line("%s\n".printf(name),true,false); } add_line("\n"); } @@ -363,9 +363,9 @@ public class AboutWindow : Dialog { } } - public void add_line(string text, bool escape_html_chars = true){ + public void add_line(string text, bool escape_html_chars = true, bool parse = true){ - if (text.split(":").length >= 2){ + if (text.split(":").length >= 2 && parse == true){ var link = new LinkButton(escape_html(text.split(":")[0])); vbox_lines.add(link); From 154e889e640ab76c7fbc9a440c1cf2bbc01031ba Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Sat, 2 May 2020 15:44:35 -0400 Subject: [PATCH 069/567] remove un-used AppLock.vala --- src/Utility/AppLock.vala | 90 ---------------------------------------- 1 file changed, 90 deletions(-) delete mode 100644 src/Utility/AppLock.vala diff --git a/src/Utility/AppLock.vala b/src/Utility/AppLock.vala deleted file mode 100644 index af4a1f31..00000000 --- a/src/Utility/AppLock.vala +++ /dev/null @@ -1,90 +0,0 @@ - -/* - * AppLock.vala - * - * Copyright 2016 Tony George - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, - * MA 02110-1301, USA. - * - * - */ - -using TeeJee.Logging; -using TeeJee.FileSystem; -using TeeJee.ProcessHelper; -using TeeJee.Misc; - -public class AppLock : GLib.Object { - - public string lock_file = ""; - public string lock_message = ""; - - public bool create(string lck_name, string message){ - - var lock_dir = "/var/run/lock/%s".printf(lck_name); - dir_create(lock_dir); - lock_file = path_combine(lock_dir, "lock"); - - try{ - var file = File.new_for_path(lock_file); - if (file.query_exists()) { - - string txt = file_read(lock_file); - string process_id = txt.split(";")[0].strip(); - lock_message = txt.split(";")[1].strip(); - long pid = long.parse(process_id); - - if (process_is_running(pid)){ - log_msg(_("Another instance of this application is running") - + " (PID=%ld)".printf(pid)); - return false; - } - else{ - log_msg(_("[Warning] Deleted invalid lock")); - file.delete(); - write_lock_file(message); - return true; - } - } - else{ - write_lock_file(message); - return true; - } - } - catch (Error e) { - log_error (e.message); - return false; - } - } - - private void write_lock_file(string message){ - string current_pid = ((long) Posix.getpid()).to_string(); - file_write(lock_file, "%s;%s".printf(current_pid, message)); - } - - public void remove(){ - try{ - var file = File.new_for_path (lock_file); - if (file.query_exists()) { - file.delete(); - } - } - catch (Error e) { - log_error (e.message); - } - } - -} From 4532568b8f047737daa7414ca3c949aeca89434e Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Sat, 2 May 2020 16:53:38 -0400 Subject: [PATCH 070/567] improve auto-generation & maintenence of messages.pot and *.po --- .deb_build_number.mak | 2 +- Makefile | 9 +- po/es.po | 859 ++++++++++++++++---------------- po/fr.po | 1099 +++++++++++++++-------------------------- po/hr.po | 1047 ++++++++++++++++----------------------- po/messages.pot | 587 +++++++++++----------- po/nl.po | 988 +++++++++++++++--------------------- po/pl.po | 979 +++++++++++++++--------------------- po/ru.po | 923 +++++++++++++++------------------- po/sv.po | 1041 ++++++++++++++++---------------------- po/tr.po | 859 ++++++++++++++++---------------- po/uk.po | 861 ++++++++++++++++---------------- 12 files changed, 3974 insertions(+), 5280 deletions(-) diff --git a/.deb_build_number.mak b/.deb_build_number.mak index ceafa75c..0d913823 100644 --- a/.deb_build_number.mak +++ b/.deb_build_number.mak @@ -1,3 +1,3 @@ # This file is generated by Makefile DEB_PKG_VERSION := 1.0.6 -DEB_BUILD_NUMBER := 0002 +DEB_BUILD_NUMBER := 0003 diff --git a/Makefile b/Makefile index 11000b4d..505450e8 100644 --- a/Makefile +++ b/Makefile @@ -81,15 +81,18 @@ $(misc_files): %: %.src BRANDING.mak # -e ';s|DEST_BIN_DIR|$(DESTDIR)$(bindir)|g' $(pot_file): $(common_vala_files) $(tui_vala_files) $(gui_vala_files) - find . -iname "*.vala" -print0 | xargs -0 xgettext --from-code=UTF-8 --language=C --keyword=_ \ + xgettext \ + --sort-by-file \ --copyright-holder="$(BRANDING_AUTHORNAME) ($(BRANDING_AUTHOREMAIL))" \ --package-name="$(BRANDING_SHORTNAME)" \ --package-version="$(BRANDING_VERSION)" \ - --msgid-bugs-address="$(BRANDING_AUTHOREMAIL)" \ - --escape --sort-output -o $(@) + --language=Vala \ + --output=$(@) \ + $(common_vala_files) $(tui_vala_files) $(gui_vala_files) $(po_files): %: $(pot_file) msgmerge --backup=none --update -v $(@) $(pot_file) + msgattrib --output-file=$(@) --no-obsolete $(@) @touch $(@) TRANSLATORS: $(po_files) diff --git a/po/es.po b/po/es.po index 81173235..3afd8305 100644 --- a/po/es.po +++ b/po/es.po @@ -5,8 +5,8 @@ msgid "" msgstr "" "Project-Id-Version: ukuu\n" -"Report-Msgid-Bugs-To: b.kenyon.w@gmail.com\n" -"POT-Creation-Date: 2020-05-01 13:31-0400\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-05-02 16:29-0400\n" "PO-Revision-Date: 2018-01-03 02:03-0600\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish\n" @@ -17,595 +17,568 @@ msgstr "" "X-Launchpad-Export-Date: 2017-04-13 11:48+0000\n" "X-Generator: Poedit 2.0.5\n" -#: src/Gtk/MainWindow.vala:494 -msgid "About" -msgstr "Acerca de" - -#: src/Console/AppConsole.vala:113 -msgid "Admin access is required for running this application." -msgstr "" -"Se necesitan privilegios administrativos para ejecutar esta aplicación." - -#: src/Utility/AppLock.vala:51 -msgid "Another instance of this application is running" -msgstr "Se está ejecutando otra instancia de esta aplicación" +#: src/Common/LinuxKernel.vala:92 +msgid "Distribution" +msgstr "Distribución" #: src/Common/LinuxKernel.vala:106 msgid "Architecture" msgstr "Arquitectura del sistema" -#: src/Utility/Gtk/AboutWindow.vala:338 -#, c-format -msgid "Artists" -msgstr "Artistas" +#: src/Common/LinuxKernel.vala:257 +msgid "Index is stale" +msgstr "El índice es obsoleto" -#: src/Console/AppConsole.vala:99 -msgid "Assume Yes for all prompts (non-interactive mode)" -msgstr "Asumir Sí para todas las solicitudes (modo no interactivo)" +#: src/Common/LinuxKernel.vala:260 +msgid "Index is fresh" +msgstr "El índice está al día" -#: src/Utility/Gtk/AboutWindow.vala:314 +#: src/Common/LinuxKernel.vala:365 +msgid "Fetching index..." +msgstr "Recuperando índice..." + +#: src/Common/LinuxKernel.vala:408 +msgid "Fetching index from kernel.ubuntu.com..." +msgstr "Recuperando índice de kernel.ubuntu.com…" + +#: src/Common/LinuxKernel.vala:727 +msgid "Could not find running kernel in list!" +msgstr "¡No se pudo encontrar el núcleo en ejecución en la lista!" + +#: src/Common/LinuxKernel.vala:733 +msgid "Could not find any kernels to remove" +msgstr "Seleccione los núcleos que se desinstalarán" + +#: src/Common/LinuxKernel.vala:742 +msgid "The following kernels will be removed:" +msgstr "Los siguientes kernels serán eliminados:" + +#: src/Common/LinuxKernel.vala:749 +msgid "Continue ?" +msgstr "¿Continuar?" + +#: src/Common/LinuxKernel.vala:777 src/Console/AppConsole.vala:359 +msgid "Latest update" +msgstr "" + +#: src/Common/LinuxKernel.vala:788 src/Console/AppConsole.vala:366 +msgid "Latest point update" +msgstr "" + +#: src/Common/LinuxKernel.vala:796 src/Console/AppConsole.vala:371 +#: src/Console/AppConsole.vala:429 src/Gtk/MainWindow.vala:804 +msgid "No updates found" +msgstr "No se encontró ninguna actualización" + +#: src/Common/LinuxKernel.vala:806 #, c-format -msgid "Authors" -msgstr "Autores" +msgid "Install Linux v%s ? (y/n): " +msgstr "" + +#: src/Common/LinuxKernel.vala:1072 +msgid "Packages Available" +msgstr "Paquetes disponibles" + +#: src/Common/LinuxKernel.vala:1080 +msgid "Packages Installed" +msgstr "Paquetes instalados" #: src/Common/LinuxKernel.vala:1164 msgid "Available Kernels" msgstr "Núcleos disponibles" -#: src/Utility/Gtk/AboutWindow.vala:285 -msgid "Back" -msgstr "Atrás" +#: src/Common/LinuxKernel.vala:1181 src/Gtk/MainWindow.vala:208 +msgid "Installed" +msgstr "Instalado" -#: src/Console/AppConsole.vala:203 src/Gtk/AppGtk.vala:110 -msgid "Cache" -msgstr "Cache" +#: src/Common/LinuxKernel.vala:1181 src/Gtk/MainWindow.vala:208 +msgid "Running" +msgstr "En ejecución" -#: src/Gtk/ProgressWindow.vala:145 src/Gtk/TerminalWindow.vala:148 -#: src/Gtk/UpdateNotificationWindow.vala:167 -#: src/Utility/Gtk/CustomMessageDialog.vala:155 -msgid "Cancel" -msgstr "Cancelar" +#: src/Common/LinuxKernel.vala:1210 +msgid "Downloading" +msgstr "Descargando" -#: src/Gtk/MainWindow.vala:462 -msgid "Changes" -msgstr "Cambios" +#: src/Common/LinuxKernel.vala:1229 +#: src/Utility/Gtk/CustomMessageDialog.vala:150 +#: src/Utility/Gtk/CustomMessageDialog.vala:154 +msgid "OK" +msgstr "Aceptar" -#: src/Gtk/SettingsDialog.vala:120 -msgid "Check every" -msgstr "Comprobar cada" +#: src/Common/LinuxKernel.vala:1238 +msgid "ERROR" +msgstr "ERROR" -#: src/Console/AppConsole.vala:82 -msgid "Check for kernel updates" -msgstr "Buscar actualizaciones del núcleo" +#: src/Common/LinuxKernel.vala:1252 src/Gtk/MainWindow.vala:689 +msgid "This kernel is already installed." +msgstr "Este núcleo ya se instaló." -#: src/Console/AppConsole.vala:83 -msgid "Check for kernel updates and notify current user" -msgstr "Compruebe las actualizaciones del kernel y notifique al usuario actual" +#: src/Common/LinuxKernel.vala:1281 +msgid "Installation completed. A reboot is required to use the new kernel." +msgstr "" +"Instalación finalizada. Se necesita reiniciar para utilizar el núcleo nuevo." -#: src/Gtk/TerminalWindow.vala:158 src/Utility/Gtk/AboutWindow.vala:295 -msgid "Close" -msgstr "Cerrar" +#: src/Common/LinuxKernel.vala:1284 +msgid "Installation completed with errors" +msgstr "Instalación finalizada con errores" -#: src/Console/AppConsole.vala:340 -msgid "Command not specified" -msgstr "Coomand no especificado" +#: src/Common/LinuxKernel.vala:1300 +msgid "" +"Selected kernel is currently running and cannot be removed.\n" +" Install another kernel before removing this one." +msgstr "" +"El núcleo seleccionado está en ejecución y no puede desinstalarse.\n" +"Instale otro núcleo antes de desinstalar este." -#: src/Console/AppConsole.vala:80 -msgid "Commands" -msgstr "Comandos" +#: src/Common/LinuxKernel.vala:1305 +msgid "Preparing to remove selected kernels" +msgstr "Preparándose para desinstalar los núcleos seleccionados" + +#: src/Common/LinuxKernel.vala:1337 src/Common/LinuxKernel.vala:1390 +msgid "Un-install completed" +msgstr "Desinstalación finalizada" + +#: src/Common/LinuxKernel.vala:1340 src/Common/LinuxKernel.vala:1393 +msgid "Un-install completed with errors" +msgstr "Desinstalación finalizada con errores" + +#: src/Common/LinuxKernel.vala:1353 +msgid "" +"This kernel is currently running and cannot be removed.\n" +" Install another kernel before removing this one." +msgstr "" +"Este núcleo está en ejecución y no se puede desinstalar.\n" +"Instale otro núcleo antes de desinstalar este." #: src/Common/Main.vala:107 msgid "Commands listed below are not available on this system" msgstr "" "Las órdenes enumeradas a continuación no están disponibles en este sistema" -#: src/Common/LinuxKernel.vala:749 -#, c-format -msgid "Continue ?" -msgstr "¿Continuar?" +#: src/Common/Main.vala:108 +msgid "Please install required packages and try again" +msgstr "Instale los paquetes requeridos e inténtelo de nuevo" -#: src/Utility/Gtk/AboutWindow.vala:322 +#: src/Common/Package.vala:126 src/Common/Package.vala:188 #, c-format -msgid "Contributions" -msgstr "Contribuciones" +msgid "File not found: %s" +msgstr "No se encontró el archivo: %s" -#: src/Common/LinuxKernel.vala:733 -msgid "Could not find any kernels to remove" -msgstr "Seleccione los núcleos que se desinstalarán" +#: src/Console/AppConsole.vala:78 src/Gtk/AppGtk.vala:179 +msgid "Syntax" +msgstr "Sintaxis" -#: src/Console/AppConsole.vala:308 src/Gtk/MainWindow.vala:100 -msgid "Could not find requested version" -msgstr "No se pudo encontrar la versión solicitada" +#: src/Console/AppConsole.vala:80 +msgid "Commands" +msgstr "Comandos" -#: src/Common/LinuxKernel.vala:727 -msgid "Could not find running kernel in list!" -msgstr "¡No se pudo encontrar el núcleo en ejecución en la lista!" +#: src/Console/AppConsole.vala:82 +msgid "Check for kernel updates" +msgstr "Buscar actualizaciones del núcleo" -#: src/Utility/TeeJee.FileSystem.vala:349 -#: src/Utility/TeeJee.FileSystem.vala:352 -#: src/Utility/TeeJee.FileSystem.vala:378 -msgid "Created directory" -msgstr "Se creó el directorio" +#: src/Console/AppConsole.vala:83 +msgid "Check for kernel updates and notify current user" +msgstr "Compruebe las actualizaciones del kernel y notifique al usuario actual" -#: src/Utility/Gtk/AboutWindow.vala:272 src/Utility/Gtk/AboutWindow.vala:289 -msgid "Credits" -msgstr "Créditos" +#: src/Console/AppConsole.vala:84 +msgid "List all available mainline kernels" +msgstr "Mostrar todos los núcleos troncales disponibles" -#: src/Gtk/SettingsDialog.vala:153 -msgid "Day(s)" -msgstr "Días" +#: src/Console/AppConsole.vala:85 +msgid "List installed kernels" +msgstr "Mostrar kernels disponibles" -#: src/Utility/TeeJee.FileSystem.vala:375 -msgid "Deleted directory" -msgstr "Se eliminó el directorio" +#: src/Console/AppConsole.vala:86 +msgid "Install latest mainline kernel" +msgstr "Instalar kernel troncal especificado" -#: src/Utility/TeeJee.FileSystem.vala:509 -msgid "Dir not found" -msgstr "No se encontró el directorio" +#: src/Console/AppConsole.vala:87 +msgid "Install latest point update for current series" +msgstr "" -#: src/Gtk/SettingsDialog.vala:160 -msgid "Display" -msgstr "Mostrar" +#: src/Console/AppConsole.vala:88 +msgid "Install specified mainline kernel" +msgstr "Instalar núcleo troncal especificado" -#: src/Common/LinuxKernel.vala:92 -msgid "Distribution" -msgstr "Distribución" +#: src/Console/AppConsole.vala:89 +msgid "Remove specified kernel" +msgstr "Quitar el núcleo troncal especificado" -#: src/Utility/Gtk/AboutWindow.vala:354 -#, c-format -msgid "Documenters" -msgstr "Documentadores" +#: src/Console/AppConsole.vala:90 src/Gtk/MainWindow.vala:424 +msgid "Remove installed kernels older than running kernel" +msgstr "" #: src/Console/AppConsole.vala:91 msgid "Download packages for specified kernel" msgstr "Descargar paquetes del núcleo especificado" -#: src/Common/LinuxKernel.vala:1210 -#, c-format -msgid "Downloading" -msgstr "Descargando" +#: src/Console/AppConsole.vala:92 src/Console/AppConsole.vala:97 +msgid "Remove files from application cache" +msgstr "Quitar archivos de la antememoria de la aplicación" -#: src/Utility/TeeJee.Logging.vala:89 -msgid "E" -msgstr "E" +#: src/Console/AppConsole.vala:93 +msgid "Show unstable and RC releases" +msgstr "Ocultar versiones inestables y RC" -#: src/Common/LinuxKernel.vala:1238 -#, c-format -msgid "ERROR" -msgstr "ERROR" +#: src/Console/AppConsole.vala:95 src/Gtk/AppGtk.vala:181 +msgid "Options" +msgstr "Opciones" #: src/Console/AppConsole.vala:98 msgid "Enable verbose debugging output" msgstr "" -#: src/Utility/Gtk/GtkHelper.vala:17 -msgid "Error" -msgstr "Error" - -#: src/Utility/TeeJee.FileSystem.vala:221 -msgid "Failed to copy file" -msgstr "Falló la copia del archivo" +#: src/Console/AppConsole.vala:99 +msgid "Assume Yes for all prompts (non-interactive mode)" +msgstr "Asumir Sí para todas las solicitudes (modo no interactivo)" -#: src/Utility/TeeJee.FileSystem.vala:359 -msgid "Failed to create dir" -msgstr "Falló la creación del directorio" +#: src/Console/AppConsole.vala:100 +msgid "Override user" +msgstr "" -#: src/Utility/TeeJee.FileSystem.vala:106 -msgid "Failed to delete file" -msgstr "Falló la eliminación del archivo" +#: src/Console/AppConsole.vala:113 +msgid "Admin access is required for running this application." +msgstr "" +"Se necesitan privilegios administrativos para ejecutar esta aplicación." -#: src/Utility/TeeJee.FileSystem.vala:253 -msgid "Failed to move file" -msgstr "Falló el traslado del archivo" +#: src/Console/AppConsole.vala:116 +msgid "Run the application as admin with pkexec or sudo." +msgstr "Ejecute la aplicación con permisos administrativos con pkexec o sudo." -#: src/Utility/TeeJee.FileSystem.vala:162 -msgid "Failed to read file" -msgstr "Falló la lectura del archivo" +#: src/Console/AppConsole.vala:196 src/Gtk/AppGtk.vala:166 +msgid "Unknown option" +msgstr "Opción desconocida" -#: src/Utility/TeeJee.FileSystem.vala:197 -msgid "Failed to write file" -msgstr "Falló la escritura del archivo" +#: src/Console/AppConsole.vala:198 src/Console/AppConsole.vala:312 +#: src/Console/AppConsole.vala:341 +msgid "Run '" +msgstr "" -#: src/Common/LinuxKernel.vala:408 -msgid "Fetching index from kernel.ubuntu.com..." -msgstr "Recuperando índice de kernel.ubuntu.com…" +#: src/Console/AppConsole.vala:203 src/Gtk/AppGtk.vala:110 +msgid "Cache" +msgstr "Cache" -#: src/Common/LinuxKernel.vala:365 -msgid "Fetching index..." -msgstr "Recuperando índice..." +#: src/Console/AppConsole.vala:204 src/Gtk/AppGtk.vala:111 +msgid "Temp" +msgstr "" -#: src/Utility/TeeJee.FileSystem.vala:210 -#: src/Utility/TeeJee.FileSystem.vala:213 -msgid "File copied" -msgstr "Se copió el archivo" +#: src/Console/AppConsole.vala:284 src/Console/AppConsole.vala:321 +msgid "No kernels specified" +msgstr "" -#: src/Utility/TeeJee.FileSystem.vala:97 src/Utility/TeeJee.FileSystem.vala:100 -msgid "File deleted" -msgstr "Se eliminó el archivo" +#: src/Console/AppConsole.vala:290 +msgid "Multiple kernels selected for installation. Select only one." +msgstr "Se seleccionaron varios núcleos para su instalación. Elija solo uno." -#: src/Utility/TeeJee.FileSystem.vala:662 -#: src/Utility/TeeJee.FileSystem.vala:711 -msgid "File is missing" -msgstr "Falta el archivo" +#: src/Console/AppConsole.vala:308 src/Gtk/MainWindow.vala:100 +msgid "Could not find requested version" +msgstr "No se pudo encontrar la versión solicitada" -#: src/Utility/TeeJee.FileSystem.vala:245 -#: src/Utility/TeeJee.FileSystem.vala:248 -msgid "File moved" -msgstr "Se trasladó el archivo" +#: src/Console/AppConsole.vala:340 +msgid "Command not specified" +msgstr "Coomand no especificado" -#: src/Utility/TeeJee.FileSystem.vala:231 -#: src/Utility/TeeJee.FileSystem.vala:538 -msgid "File not found" -msgstr "No se encontró el archivo" +#: src/Gtk/AppGtk.vala:183 +msgid "Print debug information" +msgstr "Mostrar información de depuración" -#: src/Common/Package.vala:126 src/Common/Package.vala:188 -#, c-format -msgid "File not found: %s" -msgstr "No se encontró el archivo: %s" +#: src/Gtk/AppGtk.vala:184 +msgid "Show all options" +msgstr "Mostrar todas las opciones" -#: src/Utility/TeeJee.FileSystem.vala:187 -#: src/Utility/TeeJee.FileSystem.vala:190 -msgid "File saved" -msgstr "Se guardó el archivo" +#: src/Gtk/MainWindow.vala:150 +msgid "Kernel" +msgstr "Núcleo" -#: src/Gtk/SettingsDialog.vala:168 -msgid "Hide unstable and RC releases" -msgstr "Ocultar versiones inestables y RC" +#: src/Gtk/MainWindow.vala:179 +msgid "Version" +msgstr "Versión" -#: src/Gtk/SettingsDialog.vala:151 -msgid "Hour(s)" -msgstr "Horas" +#: src/Gtk/MainWindow.vala:196 +msgid "Status" +msgstr "Estado" -#: src/Gtk/UpdateNotificationWindow.vala:168 -msgid "Ignore this update" -msgstr "Ignorar esta actualización" +#: src/Gtk/MainWindow.vala:341 +msgid "Refresh" +msgstr "Actualizar" -#: src/Common/LinuxKernel.vala:260 -msgid "Index is fresh" -msgstr "El índice está al día" +#: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:558 +#: src/Gtk/MainWindow.vala:694 src/Utility/TeeJee.System.vala:281 +msgid "Internet connection is not active" +msgstr "La conexión a Internet está inactiva" -#: src/Common/LinuxKernel.vala:257 -msgid "Index is stale" -msgstr "El índice es obsoleto" +#: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:558 +#: src/Gtk/MainWindow.vala:694 +msgid "No Internet" +msgstr "No hay Internet" -#: src/Gtk/UpdateNotificationWindow.vala:147 src/Gtk/MainWindow.vala:357 +#: src/Gtk/MainWindow.vala:357 src/Gtk/UpdateNotificationWindow.vala:147 msgid "Install" msgstr "Instalar" -#: src/Common/LinuxKernel.vala:806 -#, c-format -msgid "Install Linux v%s ? (y/n): " -msgstr "" +#: src/Gtk/MainWindow.vala:366 +msgid "Multiple Kernels Selected" +msgstr "Se seleccionaron varios kernels" -#: src/Console/AppConsole.vala:86 -msgid "Install latest mainline kernel" -msgstr "Instalar kernel troncal especificado" +#: src/Gtk/MainWindow.vala:366 +msgid "Select a single kernel to install" +msgstr "Seleccione un solo núcleo para instalarlo" -#: src/Console/AppConsole.vala:87 -msgid "Install latest point update for current series" -msgstr "" +#: src/Gtk/MainWindow.vala:369 src/Gtk/MainWindow.vala:380 +msgid "Not Selected" +msgstr "No seleccionado" -#: src/Console/AppConsole.vala:88 -msgid "Install specified mainline kernel" -msgstr "Instalar núcleo troncal especificado" +#: src/Gtk/MainWindow.vala:369 +msgid "Select the kernel to install" +msgstr "Seleccione el núcleo que se instalará" -#: src/Gtk/UpdateNotificationWindow.vala:148 -msgid "Install this kernel" -msgstr "Instalar este kernel" +#: src/Gtk/MainWindow.vala:374 +msgid "Remove" +msgstr "Quitar" -#: src/Common/LinuxKernel.vala:1284 -msgid "Installation completed with errors" -msgstr "Instalación finalizada con errores" +#: src/Gtk/MainWindow.vala:380 +msgid "Select the kernels to remove" +msgstr "Seleccione los núcleos que se desinstalarán" -#: src/Common/LinuxKernel.vala:1281 -msgid "Installation completed. A reboot is required to use the new kernel." +#: src/Gtk/MainWindow.vala:423 +msgid "Purge" msgstr "" -"Instalación finalizada. Se necesita reiniciar para utilizar el núcleo nuevo." - -#: src/Common/LinuxKernel.vala:1181 src/Gtk/MainWindow.vala:208 -msgid "Installed" -msgstr "Instalado" -#: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:558 -#: src/Gtk/MainWindow.vala:694 src/Utility/TeeJee.System.vala:281 -msgid "Internet connection is not active" -msgstr "La conexión a Internet está inactiva" +#: src/Gtk/MainWindow.vala:462 +msgid "Changes" +msgstr "Cambios" -#: src/Gtk/SettingsDialog.vala:218 -#, fuzzy -msgid "Internet connection timeout in " -msgstr "La conexión a Internet está inactiva" +#: src/Gtk/MainWindow.vala:473 src/Gtk/SettingsDialog.vala:55 +msgid "Settings" +msgstr "Configuración" -#: src/Gtk/MainWindow.vala:150 -msgid "Kernel" -msgstr "Núcleo" +#: src/Gtk/MainWindow.vala:494 +msgid "About" +msgstr "Acerca de" #: src/Gtk/MainWindow.vala:542 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "" "Herramienta de renovación de núcleo para distribuciones basadas en Ubuntu" -#: src/Common/LinuxKernel.vala:788 src/Console/AppConsole.vala:366 -#, c-format -msgid "Latest point update" -msgstr "" +#: src/Gtk/MainWindow.vala:577 +msgid "Refreshing..." +msgstr "Actualizando…" -#: src/Common/LinuxKernel.vala:777 src/Console/AppConsole.vala:359 -#, c-format -msgid "Latest update" -msgstr "" +#: src/Gtk/ProgressWindow.vala:145 src/Gtk/TerminalWindow.vala:148 +#: src/Gtk/UpdateNotificationWindow.vala:167 +#: src/Utility/Gtk/CustomMessageDialog.vala:155 +msgid "Cancel" +msgstr "Cancelar" -#: src/Console/AppConsole.vala:84 -msgid "List all available mainline kernels" -msgstr "Mostrar todos los núcleos troncales disponibles" +#: src/Gtk/SettingsDialog.vala:65 +msgid "Notification" +msgstr "Notificación" -#: src/Gtk/UpdateNotificationWindow.vala:158 -msgid "List available kernels" -msgstr "Mostrar núcleos disponibles" +#: src/Gtk/SettingsDialog.vala:72 +msgid "Notify if a major release is available" +msgstr "Notificar si hay una versión importante disponible" -#: src/Console/AppConsole.vala:85 -msgid "List installed kernels" -msgstr "Mostrar kernels disponibles" +#: src/Gtk/SettingsDialog.vala:83 +msgid "Notify if a point release is available" +msgstr "Notificar si hay una versión puntual disponible" -#: src/Utility/Gtk/GtkHelper.vala:93 -msgid "Missing Icon" -msgstr "Falta el icono" +#: src/Gtk/SettingsDialog.vala:94 +msgid "Show notification bubble on desktop" +msgstr "Mostrar globo de notificación en el escritorio" -#: src/Gtk/MainWindow.vala:366 -msgid "Multiple Kernels Selected" -msgstr "Se seleccionaron varios kernels" +#: src/Gtk/SettingsDialog.vala:105 +msgid "Show notification dialog" +msgstr "Mostrar cuadro de diálogo de notificación" -#: src/Console/AppConsole.vala:290 -msgid "Multiple kernels selected for installation. Select only one." -msgstr "Se seleccionaron varios núcleos para su instalación. Elija solo uno." - -#: src/Utility/Gtk/CustomMessageDialog.vala:160 -msgid "No" -msgstr "No" - -#: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:558 -#: src/Gtk/MainWindow.vala:694 -msgid "No Internet" -msgstr "No hay Internet" - -#: src/Console/AppConsole.vala:284 src/Console/AppConsole.vala:321 -msgid "No kernels specified" -msgstr "" - -#: src/Common/LinuxKernel.vala:796 src/Console/AppConsole.vala:371 -#: src/Console/AppConsole.vala:429 src/Gtk/MainWindow.vala:804 -msgid "No updates found" -msgstr "No se encontró ninguna actualización" +#: src/Gtk/SettingsDialog.vala:120 +msgid "Check every" +msgstr "Comprobar cada" -#: src/Gtk/MainWindow.vala:369 src/Gtk/MainWindow.vala:380 -msgid "Not Selected" -msgstr "No seleccionado" +#: src/Gtk/SettingsDialog.vala:151 +msgid "Hour(s)" +msgstr "Horas" -#: src/Gtk/SettingsDialog.vala:65 -msgid "Notification" -msgstr "Notificación" +#: src/Gtk/SettingsDialog.vala:153 +msgid "Day(s)" +msgstr "Días" -#: src/Gtk/SettingsDialog.vala:72 -msgid "Notify if a major release is available" -msgstr "Notificar si hay una versión importante disponible" +#: src/Gtk/SettingsDialog.vala:155 +msgid "Week(s)" +msgstr "Semanas" -#: src/Gtk/SettingsDialog.vala:83 -msgid "Notify if a point release is available" -msgstr "Notificar si hay una versión puntual disponible" +#: src/Gtk/SettingsDialog.vala:160 +msgid "Display" +msgstr "Mostrar" -#: src/Common/LinuxKernel.vala:1229 -#: src/Utility/Gtk/CustomMessageDialog.vala:150 -#: src/Utility/Gtk/CustomMessageDialog.vala:154 -#, c-format -msgid "OK" -msgstr "Aceptar" +#: src/Gtk/SettingsDialog.vala:168 +msgid "Hide unstable and RC releases" +msgstr "Ocultar versiones inestables y RC" -#: src/Console/AppConsole.vala:95 src/Gtk/AppGtk.vala:181 -msgid "Options" -msgstr "Opciones" +#: src/Gtk/SettingsDialog.vala:182 +msgid "Show N previous major versions " +msgstr "" #: src/Gtk/SettingsDialog.vala:197 msgid "Other" msgstr "" -#: src/Console/AppConsole.vala:100 -msgid "Override user" -msgstr "" - -#: src/Common/LinuxKernel.vala:1072 -#, c-format -msgid "Packages Available" -msgstr "Paquetes disponibles" - -#: src/Common/LinuxKernel.vala:1080 -#, c-format -msgid "Packages Installed" -msgstr "Paquetes instalados" - -#: src/Common/Main.vala:108 -msgid "Please install required packages and try again" -msgstr "Instale los paquetes requeridos e inténtelo de nuevo" - -#: src/Common/LinuxKernel.vala:1305 -msgid "Preparing to remove selected kernels" -msgstr "Preparándose para desinstalar los núcleos seleccionados" +#: src/Gtk/SettingsDialog.vala:205 +msgid "Skip internet connection check" +msgstr "La conexión a Internet está inactiva" -#: src/Gtk/AppGtk.vala:183 -msgid "Print debug information" -msgstr "Mostrar información de depuración" +#: src/Gtk/SettingsDialog.vala:218 +#, fuzzy +msgid "Internet connection timeout in " +msgstr "La conexión a Internet está inactiva" -#: src/Gtk/MainWindow.vala:423 -msgid "Purge" +#: src/Gtk/SettingsDialog.vala:232 +msgid "seconds" msgstr "" -#: src/Gtk/MainWindow.vala:341 -msgid "Refresh" -msgstr "Actualizar" - -#: src/Gtk/MainWindow.vala:577 -msgid "Refreshing..." -msgstr "Actualizando…" +#: src/Gtk/TerminalWindow.vala:158 src/Utility/Gtk/AboutWindow.vala:295 +msgid "Close" +msgstr "Cerrar" -#: src/Gtk/MainWindow.vala:374 -msgid "Remove" -msgstr "Quitar" +#: src/Gtk/UpdateNotificationWindow.vala:148 +msgid "Install this kernel" +msgstr "Instalar este kernel" -#: src/Console/AppConsole.vala:92 src/Console/AppConsole.vala:97 -msgid "Remove files from application cache" -msgstr "Quitar archivos de la antememoria de la aplicación" +#: src/Gtk/UpdateNotificationWindow.vala:157 +msgid "Show" +msgstr "Mostrar" -#: src/Console/AppConsole.vala:90 src/Gtk/MainWindow.vala:424 -msgid "Remove installed kernels older than running kernel" -msgstr "" +#: src/Gtk/UpdateNotificationWindow.vala:158 +msgid "List available kernels" +msgstr "Mostrar núcleos disponibles" -#: src/Console/AppConsole.vala:89 -msgid "Remove specified kernel" -msgstr "Quitar el núcleo troncal especificado" +#: src/Gtk/UpdateNotificationWindow.vala:168 +msgid "Ignore this update" +msgstr "Ignorar esta actualización" -#: src/Console/AppConsole.vala:198 src/Console/AppConsole.vala:312 -#: src/Console/AppConsole.vala:341 -msgid "Run '" -msgstr "" +#: src/Utility/Gtk/AboutWindow.vala:272 src/Utility/Gtk/AboutWindow.vala:289 +msgid "Credits" +msgstr "Créditos" -#: src/Console/AppConsole.vala:116 -msgid "Run the application as admin with pkexec or sudo." -msgstr "Ejecute la aplicación con permisos administrativos con pkexec o sudo." +#: src/Utility/Gtk/AboutWindow.vala:285 +msgid "Back" +msgstr "Atrás" -#: src/Common/LinuxKernel.vala:1181 src/Gtk/MainWindow.vala:208 -msgid "Running" -msgstr "En ejecución" +#: src/Utility/Gtk/AboutWindow.vala:314 +msgid "Authors" +msgstr "Autores" -#: src/Gtk/MainWindow.vala:366 -msgid "Select a single kernel to install" -msgstr "Seleccione un solo núcleo para instalarlo" +#: src/Utility/Gtk/AboutWindow.vala:322 +msgid "Contributions" +msgstr "Contribuciones" -#: src/Gtk/MainWindow.vala:369 -msgid "Select the kernel to install" -msgstr "Seleccione el núcleo que se instalará" +#: src/Utility/Gtk/AboutWindow.vala:330 +msgid "Third Party Tools" +msgstr "Herramientas de terceros" -#: src/Gtk/MainWindow.vala:380 -msgid "Select the kernels to remove" -msgstr "Seleccione los núcleos que se desinstalarán" +#: src/Utility/Gtk/AboutWindow.vala:338 +msgid "Artists" +msgstr "Artistas" -#: src/Common/LinuxKernel.vala:1300 -msgid "" -"Selected kernel is currently running and cannot be removed.\n" -" Install another kernel before removing this one." -msgstr "" -"El núcleo seleccionado está en ejecución y no puede desinstalarse.\n" -"Instale otro núcleo antes de desinstalar este." +#: src/Utility/Gtk/AboutWindow.vala:346 +msgid "Translators" +msgstr "Traductores" -#: src/Gtk/MainWindow.vala:473 src/Gtk/SettingsDialog.vala:55 -msgid "Settings" -msgstr "Configuración" +#: src/Utility/Gtk/AboutWindow.vala:354 +msgid "Documenters" +msgstr "Documentadores" -#: src/Gtk/UpdateNotificationWindow.vala:157 -msgid "Show" -msgstr "Mostrar" +#: src/Utility/Gtk/CustomMessageDialog.vala:159 +msgid "Yes" +msgstr "Sí" -#: src/Gtk/SettingsDialog.vala:182 -msgid "Show N previous major versions " -msgstr "" +#: src/Utility/Gtk/CustomMessageDialog.vala:160 +msgid "No" +msgstr "No" -#: src/Gtk/AppGtk.vala:184 -msgid "Show all options" -msgstr "Mostrar todas las opciones" +#: src/Utility/Gtk/GtkHelper.vala:17 +msgid "Error" +msgstr "Error" -#: src/Gtk/SettingsDialog.vala:94 -msgid "Show notification bubble on desktop" -msgstr "Mostrar globo de notificación en el escritorio" +#: src/Utility/Gtk/GtkHelper.vala:93 +msgid "Missing Icon" +msgstr "Falta el icono" -#: src/Gtk/SettingsDialog.vala:105 -msgid "Show notification dialog" -msgstr "Mostrar cuadro de diálogo de notificación" +#: src/Utility/TeeJee.FileSystem.vala:97 src/Utility/TeeJee.FileSystem.vala:100 +msgid "File deleted" +msgstr "Se eliminó el archivo" -#: src/Console/AppConsole.vala:93 -msgid "Show unstable and RC releases" -msgstr "Ocultar versiones inestables y RC" +#: src/Utility/TeeJee.FileSystem.vala:106 +msgid "Failed to delete file" +msgstr "Falló la eliminación del archivo" -#: src/Gtk/SettingsDialog.vala:205 -msgid "Skip internet connection check" -msgstr "La conexión a Internet está inactiva" +#: src/Utility/TeeJee.FileSystem.vala:162 +msgid "Failed to read file" +msgstr "Falló la lectura del archivo" -#: src/Gtk/MainWindow.vala:196 -msgid "Status" -msgstr "Estado" +#: src/Utility/TeeJee.FileSystem.vala:187 +#: src/Utility/TeeJee.FileSystem.vala:190 +msgid "File saved" +msgstr "Se guardó el archivo" -#: src/Utility/TeeJee.Process.vala:513 -msgid "Stopped" -msgstr "Detenido" +#: src/Utility/TeeJee.FileSystem.vala:197 +msgid "Failed to write file" +msgstr "Falló la escritura del archivo" -#: src/Console/AppConsole.vala:78 src/Gtk/AppGtk.vala:179 -msgid "Syntax" -msgstr "Sintaxis" +#: src/Utility/TeeJee.FileSystem.vala:210 +#: src/Utility/TeeJee.FileSystem.vala:213 +msgid "File copied" +msgstr "Se copió el archivo" -#: src/Console/AppConsole.vala:204 src/Gtk/AppGtk.vala:111 -msgid "Temp" -msgstr "" +#: src/Utility/TeeJee.FileSystem.vala:221 +msgid "Failed to copy file" +msgstr "Falló la copia del archivo" -#: src/Common/LinuxKernel.vala:742 -#, c-format -msgid "The following kernels will be removed:" -msgstr "Los siguientes kernels serán eliminados:" +#: src/Utility/TeeJee.FileSystem.vala:231 +#: src/Utility/TeeJee.FileSystem.vala:538 +msgid "File not found" +msgstr "No se encontró el archivo" -#: src/Utility/Gtk/AboutWindow.vala:330 -#, c-format -msgid "Third Party Tools" -msgstr "Herramientas de terceros" +#: src/Utility/TeeJee.FileSystem.vala:245 +#: src/Utility/TeeJee.FileSystem.vala:248 +msgid "File moved" +msgstr "Se trasladó el archivo" -#: src/Common/LinuxKernel.vala:1252 src/Gtk/MainWindow.vala:689 -msgid "This kernel is already installed." -msgstr "Este núcleo ya se instaló." +#: src/Utility/TeeJee.FileSystem.vala:253 +msgid "Failed to move file" +msgstr "Falló el traslado del archivo" -#: src/Common/LinuxKernel.vala:1353 -msgid "" -"This kernel is currently running and cannot be removed.\n" -" Install another kernel before removing this one." -msgstr "" -"Este núcleo está en ejecución y no se puede desinstalar.\n" -"Instale otro núcleo antes de desinstalar este." +#: src/Utility/TeeJee.FileSystem.vala:349 +#: src/Utility/TeeJee.FileSystem.vala:352 +#: src/Utility/TeeJee.FileSystem.vala:378 +msgid "Created directory" +msgstr "Se creó el directorio" -#: src/Utility/Gtk/AboutWindow.vala:346 -#, c-format -msgid "Translators" -msgstr "Traductores" +#: src/Utility/TeeJee.FileSystem.vala:359 +msgid "Failed to create dir" +msgstr "Falló la creación del directorio" -#: src/Common/LinuxKernel.vala:1337 src/Common/LinuxKernel.vala:1390 -msgid "Un-install completed" -msgstr "Desinstalación finalizada" +#: src/Utility/TeeJee.FileSystem.vala:375 +msgid "Deleted directory" +msgstr "Se eliminó el directorio" -#: src/Common/LinuxKernel.vala:1340 src/Common/LinuxKernel.vala:1393 -msgid "Un-install completed with errors" -msgstr "Desinstalación finalizada con errores" +#: src/Utility/TeeJee.FileSystem.vala:509 +msgid "Dir not found" +msgstr "No se encontró el directorio" -#: src/Console/AppConsole.vala:196 src/Gtk/AppGtk.vala:166 -msgid "Unknown option" -msgstr "Opción desconocida" +#: src/Utility/TeeJee.FileSystem.vala:662 +#: src/Utility/TeeJee.FileSystem.vala:711 +msgid "File is missing" +msgstr "Falta el archivo" -#: src/Gtk/MainWindow.vala:179 -msgid "Version" -msgstr "Versión" +#: src/Utility/TeeJee.Logging.vala:89 +msgid "E" +msgstr "E" #: src/Utility/TeeJee.Logging.vala:89 msgid "W" msgstr "W" -#: src/Gtk/SettingsDialog.vala:155 -msgid "Week(s)" -msgstr "Semanas" - -#: src/Utility/Gtk/CustomMessageDialog.vala:159 -msgid "Yes" -msgstr "Sí" - -#: src/Utility/AppLock.vala:56 -msgid "[Warning] Deleted invalid lock" -msgstr "[Atención] Se eliminó un bloqueo no válido" - -#: src/Gtk/SettingsDialog.vala:232 -msgid "seconds" -msgstr "" - -#, fuzzy -#~ msgid "Hide kernels older than " -#~ msgstr "Ocultar núcleos anteriores a 4.0" +#: src/Utility/TeeJee.Process.vala:513 +msgid "Stopped" +msgstr "Detenido" diff --git a/po/fr.po b/po/fr.po index 020a5397..d50622f0 100644 --- a/po/fr.po +++ b/po/fr.po @@ -5,8 +5,8 @@ msgid "" msgstr "" "Project-Id-Version: ukuu\n" -"Report-Msgid-Bugs-To: b.kenyon.w@gmail.com\n" -"POT-Creation-Date: 2020-05-01 13:31-0400\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-05-02 16:29-0400\n" "PO-Revision-Date: 2018-08-05 15:50+0200\n" "Last-Translator: Yolateng0 \n" "Language-Team: French\n" @@ -17,875 +17,580 @@ msgstr "" "X-Launchpad-Export-Date: 2017-04-13 11:48+0000\n" "X-Generator: Poedit 2.0.6\n" -#: src/Gtk/MainWindow.vala:494 -msgid "About" -msgstr "À propos" - -#: src/Console/AppConsole.vala:113 -msgid "Admin access is required for running this application." -msgstr "Accès administrateur requis pour lancer cette application." - -#: src/Utility/AppLock.vala:51 -msgid "Another instance of this application is running" -msgstr "Une autre instance de l'application est en cours d'exécution" +#: src/Common/LinuxKernel.vala:92 +msgid "Distribution" +msgstr "Distribution" #: src/Common/LinuxKernel.vala:106 #, fuzzy msgid "Architecture" msgstr "Architecture du système" -#: src/Utility/Gtk/AboutWindow.vala:338 -#, c-format -msgid "Artists" -msgstr "Artistes" - -#: src/Console/AppConsole.vala:99 -msgid "Assume Yes for all prompts (non-interactive mode)" -msgstr "" - -#: src/Utility/Gtk/AboutWindow.vala:314 -#, c-format -msgid "Authors" -msgstr "Auteurs" - -#: src/Common/LinuxKernel.vala:1164 -msgid "Available Kernels" -msgstr "Noyaux disponibles" +#: src/Common/LinuxKernel.vala:257 +msgid "Index is stale" +msgstr "L'index est obsolète" -#: src/Utility/Gtk/AboutWindow.vala:285 -msgid "Back" -msgstr "Retour" +#: src/Common/LinuxKernel.vala:260 +msgid "Index is fresh" +msgstr "L'index est à jour" -#: src/Console/AppConsole.vala:203 src/Gtk/AppGtk.vala:110 -msgid "Cache" +#: src/Common/LinuxKernel.vala:365 +msgid "Fetching index..." msgstr "" -#: src/Gtk/ProgressWindow.vala:145 src/Gtk/TerminalWindow.vala:148 -#: src/Gtk/UpdateNotificationWindow.vala:167 -#: src/Utility/Gtk/CustomMessageDialog.vala:155 -msgid "Cancel" -msgstr "Annuler" - -#: src/Gtk/MainWindow.vala:462 -msgid "Changes" -msgstr "Changements" - -#: src/Gtk/SettingsDialog.vala:120 -msgid "Check every" -msgstr "Vérifier toutes les" - -#: src/Console/AppConsole.vala:82 -msgid "Check for kernel updates" -msgstr "Vérifier les mises à jour des noyaux" +#: src/Common/LinuxKernel.vala:408 +msgid "Fetching index from kernel.ubuntu.com..." +msgstr "Récupération de l'index depuis kernel.ubuntu.com..." -#: src/Console/AppConsole.vala:83 +#: src/Common/LinuxKernel.vala:727 #, fuzzy -msgid "Check for kernel updates and notify current user" -msgstr "Vérifier les mises à jour des noyaux" - -#: src/Gtk/TerminalWindow.vala:158 src/Utility/Gtk/AboutWindow.vala:295 -msgid "Close" -msgstr "Fermer" +msgid "Could not find running kernel in list!" +msgstr "Impossible de trouver la version demandée" -#: src/Console/AppConsole.vala:340 +#: src/Common/LinuxKernel.vala:733 #, fuzzy -msgid "Command not specified" -msgstr "Impossible de trouver le fichier" +msgid "Could not find any kernels to remove" +msgstr "Sélectionnez les noyaux à supprimer" -#: src/Console/AppConsole.vala:80 -msgid "Commands" +#: src/Common/LinuxKernel.vala:742 +msgid "The following kernels will be removed:" msgstr "" -#: src/Common/Main.vala:107 -msgid "Commands listed below are not available on this system" -msgstr "Les commandes listées ne sont pas valables pour ce système" - #: src/Common/LinuxKernel.vala:749 -#, c-format msgid "Continue ?" msgstr "" -#: src/Utility/Gtk/AboutWindow.vala:322 -#, c-format -msgid "Contributions" -msgstr "Contributions" - -#: src/Common/LinuxKernel.vala:733 -#, fuzzy -msgid "Could not find any kernels to remove" -msgstr "Sélectionnez les noyaux à supprimer" - -#: src/Console/AppConsole.vala:308 src/Gtk/MainWindow.vala:100 -msgid "Could not find requested version" -msgstr "Impossible de trouver la version demandée" - -#: src/Common/LinuxKernel.vala:727 -#, fuzzy -msgid "Could not find running kernel in list!" -msgstr "Impossible de trouver la version demandée" - -#: src/Utility/TeeJee.FileSystem.vala:349 -#: src/Utility/TeeJee.FileSystem.vala:352 -#: src/Utility/TeeJee.FileSystem.vala:378 -msgid "Created directory" -msgstr "Dossier créé" +#: src/Common/LinuxKernel.vala:777 src/Console/AppConsole.vala:359 +msgid "Latest update" +msgstr "" -#: src/Utility/Gtk/AboutWindow.vala:272 src/Utility/Gtk/AboutWindow.vala:289 -msgid "Credits" -msgstr "Crédits" +#: src/Common/LinuxKernel.vala:788 src/Console/AppConsole.vala:366 +msgid "Latest point update" +msgstr "" -#: src/Gtk/SettingsDialog.vala:153 -msgid "Day(s)" -msgstr "Jour(s)" +#: src/Common/LinuxKernel.vala:796 src/Console/AppConsole.vala:371 +#: src/Console/AppConsole.vala:429 src/Gtk/MainWindow.vala:804 +msgid "No updates found" +msgstr "Aucune mise à jour disponible" -#: src/Utility/TeeJee.FileSystem.vala:375 -msgid "Deleted directory" -msgstr "Dossier éffacé" +#: src/Common/LinuxKernel.vala:806 +#, c-format +msgid "Install Linux v%s ? (y/n): " +msgstr "" -#: src/Utility/TeeJee.FileSystem.vala:509 -msgid "Dir not found" -msgstr "Dossier non trouvé" +#: src/Common/LinuxKernel.vala:1072 +msgid "Packages Available" +msgstr "Paquets disponibles" -#: src/Gtk/SettingsDialog.vala:160 -msgid "Display" -msgstr "Afficher" +#: src/Common/LinuxKernel.vala:1080 +msgid "Packages Installed" +msgstr "Paquets installés" -#: src/Common/LinuxKernel.vala:92 -msgid "Distribution" -msgstr "Distribution" +#: src/Common/LinuxKernel.vala:1164 +msgid "Available Kernels" +msgstr "Noyaux disponibles" -#: src/Utility/Gtk/AboutWindow.vala:354 -#, c-format -msgid "Documenters" -msgstr "Documentalistes" +#: src/Common/LinuxKernel.vala:1181 src/Gtk/MainWindow.vala:208 +msgid "Installed" +msgstr "Installé" -#: src/Console/AppConsole.vala:91 -msgid "Download packages for specified kernel" -msgstr "Télécharger les paquets pour des noyaux spécifiques" +#: src/Common/LinuxKernel.vala:1181 src/Gtk/MainWindow.vala:208 +msgid "Running" +msgstr "En cours" #: src/Common/LinuxKernel.vala:1210 -#, c-format msgid "Downloading" msgstr "Téléchargement" -#: src/Utility/TeeJee.Logging.vala:89 -msgid "E" -msgstr "E" +#: src/Common/LinuxKernel.vala:1229 +#: src/Utility/Gtk/CustomMessageDialog.vala:150 +#: src/Utility/Gtk/CustomMessageDialog.vala:154 +msgid "OK" +msgstr "OK" #: src/Common/LinuxKernel.vala:1238 -#, c-format msgid "ERROR" msgstr "ERREUR" -#: src/Console/AppConsole.vala:98 -msgid "Enable verbose debugging output" -msgstr "" - -#: src/Utility/Gtk/GtkHelper.vala:17 -msgid "Error" -msgstr "Erreur" - -#: src/Utility/TeeJee.FileSystem.vala:221 -msgid "Failed to copy file" -msgstr "Impossible de copier le fichier" +#: src/Common/LinuxKernel.vala:1252 src/Gtk/MainWindow.vala:689 +msgid "This kernel is already installed." +msgstr "Ce noyau est déjà installé." -#: src/Utility/TeeJee.FileSystem.vala:359 -msgid "Failed to create dir" -msgstr "Impossible de créer le nouveau dossier" +#: src/Common/LinuxKernel.vala:1281 +msgid "Installation completed. A reboot is required to use the new kernel." +msgstr "" +"Installation complétée. Un redémarrage est nécessaire pour utiliser le " +"nouveau noyau." -#: src/Utility/TeeJee.FileSystem.vala:106 -msgid "Failed to delete file" -msgstr "Impossible d'effacer le fichier" +#: src/Common/LinuxKernel.vala:1284 +msgid "Installation completed with errors" +msgstr "Installation terminée avec des erreurs" -#: src/Utility/TeeJee.FileSystem.vala:253 -msgid "Failed to move file" -msgstr "Impossible de déplacer le fichier" +#: src/Common/LinuxKernel.vala:1300 +msgid "" +"Selected kernel is currently running and cannot be removed.\n" +" Install another kernel before removing this one." +msgstr "" +"Ce noyau est en cours d'exécution et ne peut pas être supprimé.\n" +" Installez un autre noyau avant de retirer celui-ci." -#: src/Utility/TeeJee.FileSystem.vala:162 -msgid "Failed to read file" -msgstr "Impossible de lire le fichier" +#: src/Common/LinuxKernel.vala:1305 +msgid "Preparing to remove selected kernels" +msgstr "Préparation à la suppression des noyaux sélectionnés" -#: src/Utility/TeeJee.FileSystem.vala:197 -msgid "Failed to write file" -msgstr "Impossible d'écrire le fichier" +#: src/Common/LinuxKernel.vala:1337 src/Common/LinuxKernel.vala:1390 +msgid "Un-install completed" +msgstr "Désinstallation complète" -#: src/Common/LinuxKernel.vala:408 -msgid "Fetching index from kernel.ubuntu.com..." -msgstr "Récupération de l'index depuis kernel.ubuntu.com..." +#: src/Common/LinuxKernel.vala:1340 src/Common/LinuxKernel.vala:1393 +msgid "Un-install completed with errors" +msgstr "Désinstallation terminée avec des erreurs" -#: src/Common/LinuxKernel.vala:365 -msgid "Fetching index..." +#: src/Common/LinuxKernel.vala:1353 +msgid "" +"This kernel is currently running and cannot be removed.\n" +" Install another kernel before removing this one." msgstr "" +"Ce noyau est en cours d'exécution et ne peut pas être supprimé.\n" +" Installez un autre noyau avant de retirer celui-ci." -#: src/Utility/TeeJee.FileSystem.vala:210 -#: src/Utility/TeeJee.FileSystem.vala:213 -msgid "File copied" -msgstr "Fichier copié" - -#: src/Utility/TeeJee.FileSystem.vala:97 src/Utility/TeeJee.FileSystem.vala:100 -msgid "File deleted" -msgstr "Fichier effacé" - -#: src/Utility/TeeJee.FileSystem.vala:662 -#: src/Utility/TeeJee.FileSystem.vala:711 -msgid "File is missing" -msgstr "Fichier disparu" - -#: src/Utility/TeeJee.FileSystem.vala:245 -#: src/Utility/TeeJee.FileSystem.vala:248 -msgid "File moved" -msgstr "Fichier déplacé" +#: src/Common/Main.vala:107 +msgid "Commands listed below are not available on this system" +msgstr "Les commandes listées ne sont pas valables pour ce système" -#: src/Utility/TeeJee.FileSystem.vala:231 -#: src/Utility/TeeJee.FileSystem.vala:538 -msgid "File not found" -msgstr "Fichier non trouvé" +#: src/Common/Main.vala:108 +msgid "Please install required packages and try again" +msgstr "Veuillez installer les paquets requis et réessayer" #: src/Common/Package.vala:126 src/Common/Package.vala:188 #, c-format msgid "File not found: %s" msgstr "Fichier non trouvé: %s" -#: src/Utility/TeeJee.FileSystem.vala:187 -#: src/Utility/TeeJee.FileSystem.vala:190 -msgid "File saved" -msgstr "Fichier sauvegardé" - -#: src/Gtk/SettingsDialog.vala:168 -msgid "Hide unstable and RC releases" -msgstr "Cacher les versions instables et RC" - -#: src/Gtk/SettingsDialog.vala:151 -msgid "Hour(s)" -msgstr "Heure(s)" - -#: src/Gtk/UpdateNotificationWindow.vala:168 -msgid "Ignore this update" -msgstr "Ignorer cette mise à jour" - -#: src/Common/LinuxKernel.vala:260 -msgid "Index is fresh" -msgstr "L'index est à jour" - -#: src/Common/LinuxKernel.vala:257 -msgid "Index is stale" -msgstr "L'index est obsolète" - -#: src/Gtk/UpdateNotificationWindow.vala:147 src/Gtk/MainWindow.vala:357 -msgid "Install" -msgstr "Installer" - -#: src/Common/LinuxKernel.vala:806 -#, c-format -msgid "Install Linux v%s ? (y/n): " -msgstr "" - -#: src/Console/AppConsole.vala:86 -#, fuzzy -msgid "Install latest mainline kernel" -msgstr "Installer le noyau principal spécifié" - -#: src/Console/AppConsole.vala:87 -msgid "Install latest point update for current series" -msgstr "" - -#: src/Console/AppConsole.vala:88 -msgid "Install specified mainline kernel" -msgstr "Installer le noyau principal spécifié" - -#: src/Gtk/UpdateNotificationWindow.vala:148 -msgid "Install this kernel" -msgstr "Installer ce noyau" - -#: src/Common/LinuxKernel.vala:1284 -msgid "Installation completed with errors" -msgstr "Installation terminée avec des erreurs" - -#: src/Common/LinuxKernel.vala:1281 -msgid "Installation completed. A reboot is required to use the new kernel." -msgstr "" -"Installation complétée. Un redémarrage est nécessaire pour utiliser le " -"nouveau noyau." - -#: src/Common/LinuxKernel.vala:1181 src/Gtk/MainWindow.vala:208 -msgid "Installed" -msgstr "Installé" - -#: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:558 -#: src/Gtk/MainWindow.vala:694 src/Utility/TeeJee.System.vala:281 -msgid "Internet connection is not active" -msgstr "Connexion internet inexistante" - -#: src/Gtk/SettingsDialog.vala:218 -#, fuzzy -msgid "Internet connection timeout in " -msgstr "Connexion internet inexistante" - -#: src/Gtk/MainWindow.vala:150 -msgid "Kernel" -msgstr "Noyau" - -#: src/Gtk/MainWindow.vala:542 -msgid "Kernel upgrade utility for Ubuntu-based distributions" -msgstr "" -"Utilitaire de mise à niveau des noyaux pour les distributions basées pour " -"Ubuntu" +#: src/Console/AppConsole.vala:78 src/Gtk/AppGtk.vala:179 +msgid "Syntax" +msgstr "Syntaxe" -#: src/Common/LinuxKernel.vala:788 src/Console/AppConsole.vala:366 -#, c-format -msgid "Latest point update" +#: src/Console/AppConsole.vala:80 +msgid "Commands" msgstr "" -#: src/Common/LinuxKernel.vala:777 src/Console/AppConsole.vala:359 -#, c-format -msgid "Latest update" -msgstr "" +#: src/Console/AppConsole.vala:82 +msgid "Check for kernel updates" +msgstr "Vérifier les mises à jour des noyaux" + +#: src/Console/AppConsole.vala:83 +#, fuzzy +msgid "Check for kernel updates and notify current user" +msgstr "Vérifier les mises à jour des noyaux" #: src/Console/AppConsole.vala:84 msgid "List all available mainline kernels" msgstr "Lister tous les noyaux mainline disponibles" -#: src/Gtk/UpdateNotificationWindow.vala:158 -msgid "List available kernels" -msgstr "Lister les noyaux disponibles" - #: src/Console/AppConsole.vala:85 #, fuzzy msgid "List installed kernels" msgstr "Lister les noyaux disponibles" -#: src/Utility/Gtk/GtkHelper.vala:93 -msgid "Missing Icon" -msgstr "Icône introuvable" - -#: src/Gtk/MainWindow.vala:366 -msgid "Multiple Kernels Selected" -msgstr "Plusieurs noyaux sélectionnés" +#: src/Console/AppConsole.vala:86 +#, fuzzy +msgid "Install latest mainline kernel" +msgstr "Installer le noyau principal spécifié" -#: src/Console/AppConsole.vala:290 -msgid "Multiple kernels selected for installation. Select only one." +#: src/Console/AppConsole.vala:87 +msgid "Install latest point update for current series" msgstr "" -"Plusieurs noyaux sélectionnés pour être installés. Sélectionnez en seulement " -"un." -#: src/Utility/Gtk/CustomMessageDialog.vala:160 -msgid "No" -msgstr "Non" +#: src/Console/AppConsole.vala:88 +msgid "Install specified mainline kernel" +msgstr "Installer le noyau principal spécifié" -#: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:558 -#: src/Gtk/MainWindow.vala:694 -msgid "No Internet" -msgstr "Pas d'Internet" +#: src/Console/AppConsole.vala:89 +#, fuzzy +msgid "Remove specified kernel" +msgstr "Supprimer le noyau mainline sélectionné" -#: src/Console/AppConsole.vala:284 src/Console/AppConsole.vala:321 -msgid "No kernels specified" +#: src/Console/AppConsole.vala:90 src/Gtk/MainWindow.vala:424 +msgid "Remove installed kernels older than running kernel" msgstr "" -#: src/Common/LinuxKernel.vala:796 src/Console/AppConsole.vala:371 -#: src/Console/AppConsole.vala:429 src/Gtk/MainWindow.vala:804 -msgid "No updates found" -msgstr "Aucune mise à jour disponible" - -#: src/Gtk/MainWindow.vala:369 src/Gtk/MainWindow.vala:380 -msgid "Not Selected" -msgstr "Non selectionné" - -#: src/Gtk/SettingsDialog.vala:65 -msgid "Notification" -msgstr "Notification" - -#: src/Gtk/SettingsDialog.vala:72 -msgid "Notify if a major release is available" -msgstr "Notifier si une version stable majeure est disponible" +#: src/Console/AppConsole.vala:91 +msgid "Download packages for specified kernel" +msgstr "Télécharger les paquets pour des noyaux spécifiques" -#: src/Gtk/SettingsDialog.vala:83 -msgid "Notify if a point release is available" -msgstr "Notifier si une version stable mineure est disponible" +#: src/Console/AppConsole.vala:92 src/Console/AppConsole.vala:97 +msgid "Remove files from application cache" +msgstr "Supprimer les fichiers du cache de l'application" -#: src/Common/LinuxKernel.vala:1229 -#: src/Utility/Gtk/CustomMessageDialog.vala:150 -#: src/Utility/Gtk/CustomMessageDialog.vala:154 -#, c-format -msgid "OK" -msgstr "OK" +#: src/Console/AppConsole.vala:93 +#, fuzzy +msgid "Show unstable and RC releases" +msgstr "Cacher les versions instables et RC" #: src/Console/AppConsole.vala:95 src/Gtk/AppGtk.vala:181 msgid "Options" msgstr "Options" -#: src/Gtk/SettingsDialog.vala:197 -msgid "Other" +#: src/Console/AppConsole.vala:98 +msgid "Enable verbose debugging output" +msgstr "" + +#: src/Console/AppConsole.vala:99 +msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "" #: src/Console/AppConsole.vala:100 msgid "Override user" msgstr "" -#: src/Common/LinuxKernel.vala:1072 -#, c-format -msgid "Packages Available" -msgstr "Paquets disponibles" - -#: src/Common/LinuxKernel.vala:1080 -#, c-format -msgid "Packages Installed" -msgstr "Paquets installés" - -#: src/Common/Main.vala:108 -msgid "Please install required packages and try again" -msgstr "Veuillez installer les paquets requis et réessayer" +#: src/Console/AppConsole.vala:113 +msgid "Admin access is required for running this application." +msgstr "Accès administrateur requis pour lancer cette application." -#: src/Common/LinuxKernel.vala:1305 -msgid "Preparing to remove selected kernels" -msgstr "Préparation à la suppression des noyaux sélectionnés" +#: src/Console/AppConsole.vala:116 +msgid "Run the application as admin with pkexec or sudo." +msgstr "Exécutez l'application en tant qu'admin avec pkexec or sudo." -#: src/Gtk/AppGtk.vala:183 -msgid "Print debug information" -msgstr "Afficher les informations de débogage" +#: src/Console/AppConsole.vala:196 src/Gtk/AppGtk.vala:166 +msgid "Unknown option" +msgstr "Option inconnue" -#: src/Gtk/MainWindow.vala:423 -msgid "Purge" +#: src/Console/AppConsole.vala:198 src/Console/AppConsole.vala:312 +#: src/Console/AppConsole.vala:341 +msgid "Run '" msgstr "" -#: src/Gtk/MainWindow.vala:341 -msgid "Refresh" -msgstr "Actualiser" - -#: src/Gtk/MainWindow.vala:577 -msgid "Refreshing..." -msgstr "Actualisation..." +#: src/Console/AppConsole.vala:203 src/Gtk/AppGtk.vala:110 +msgid "Cache" +msgstr "" -#: src/Gtk/MainWindow.vala:374 -msgid "Remove" -msgstr "Supprimer" +#: src/Console/AppConsole.vala:204 src/Gtk/AppGtk.vala:111 +msgid "Temp" +msgstr "" -#: src/Console/AppConsole.vala:92 src/Console/AppConsole.vala:97 -msgid "Remove files from application cache" -msgstr "Supprimer les fichiers du cache de l'application" +#: src/Console/AppConsole.vala:284 src/Console/AppConsole.vala:321 +msgid "No kernels specified" +msgstr "" -#: src/Console/AppConsole.vala:90 src/Gtk/MainWindow.vala:424 -msgid "Remove installed kernels older than running kernel" +#: src/Console/AppConsole.vala:290 +msgid "Multiple kernels selected for installation. Select only one." msgstr "" +"Plusieurs noyaux sélectionnés pour être installés. Sélectionnez en seulement " +"un." -#: src/Console/AppConsole.vala:89 +#: src/Console/AppConsole.vala:308 src/Gtk/MainWindow.vala:100 +msgid "Could not find requested version" +msgstr "Impossible de trouver la version demandée" + +#: src/Console/AppConsole.vala:340 #, fuzzy -msgid "Remove specified kernel" -msgstr "Supprimer le noyau mainline sélectionné" +msgid "Command not specified" +msgstr "Impossible de trouver le fichier" -#: src/Console/AppConsole.vala:198 src/Console/AppConsole.vala:312 -#: src/Console/AppConsole.vala:341 -msgid "Run '" -msgstr "" +#: src/Gtk/AppGtk.vala:183 +msgid "Print debug information" +msgstr "Afficher les informations de débogage" -#: src/Console/AppConsole.vala:116 -msgid "Run the application as admin with pkexec or sudo." -msgstr "Exécutez l'application en tant qu'admin avec pkexec or sudo." +#: src/Gtk/AppGtk.vala:184 +msgid "Show all options" +msgstr "Afficher toutes les options" -#: src/Common/LinuxKernel.vala:1181 src/Gtk/MainWindow.vala:208 -msgid "Running" -msgstr "En cours" +#: src/Gtk/MainWindow.vala:150 +msgid "Kernel" +msgstr "Noyau" -#: src/Gtk/MainWindow.vala:366 -msgid "Select a single kernel to install" -msgstr "Sélectionnez un seul noyau à installer" +#: src/Gtk/MainWindow.vala:179 +msgid "Version" +msgstr "Version" -#: src/Gtk/MainWindow.vala:369 -msgid "Select the kernel to install" -msgstr "Sélectionnez le noyau à installer" +#: src/Gtk/MainWindow.vala:196 +msgid "Status" +msgstr "Statut" -#: src/Gtk/MainWindow.vala:380 -msgid "Select the kernels to remove" -msgstr "Sélectionnez les noyaux à supprimer" +#: src/Gtk/MainWindow.vala:341 +msgid "Refresh" +msgstr "Actualiser" -#: src/Common/LinuxKernel.vala:1300 -msgid "" -"Selected kernel is currently running and cannot be removed.\n" -" Install another kernel before removing this one." -msgstr "" -"Ce noyau est en cours d'exécution et ne peut pas être supprimé.\n" -" Installez un autre noyau avant de retirer celui-ci." +#: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:558 +#: src/Gtk/MainWindow.vala:694 src/Utility/TeeJee.System.vala:281 +msgid "Internet connection is not active" +msgstr "Connexion internet inexistante" -#: src/Gtk/MainWindow.vala:473 src/Gtk/SettingsDialog.vala:55 -msgid "Settings" -msgstr "Paramètres" +#: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:558 +#: src/Gtk/MainWindow.vala:694 +msgid "No Internet" +msgstr "Pas d'Internet" -#: src/Gtk/UpdateNotificationWindow.vala:157 -msgid "Show" -msgstr "Afficher" +#: src/Gtk/MainWindow.vala:357 src/Gtk/UpdateNotificationWindow.vala:147 +msgid "Install" +msgstr "Installer" -#: src/Gtk/SettingsDialog.vala:182 -msgid "Show N previous major versions " -msgstr "" +#: src/Gtk/MainWindow.vala:366 +msgid "Multiple Kernels Selected" +msgstr "Plusieurs noyaux sélectionnés" -#: src/Gtk/AppGtk.vala:184 -msgid "Show all options" -msgstr "Afficher toutes les options" +#: src/Gtk/MainWindow.vala:366 +msgid "Select a single kernel to install" +msgstr "Sélectionnez un seul noyau à installer" -#: src/Gtk/SettingsDialog.vala:94 -msgid "Show notification bubble on desktop" -msgstr "Afficher la bulle de notification sur le bureau" +#: src/Gtk/MainWindow.vala:369 src/Gtk/MainWindow.vala:380 +msgid "Not Selected" +msgstr "Non selectionné" -#: src/Gtk/SettingsDialog.vala:105 -msgid "Show notification dialog" -msgstr "Afficher les notifications" +#: src/Gtk/MainWindow.vala:369 +msgid "Select the kernel to install" +msgstr "Sélectionnez le noyau à installer" -#: src/Console/AppConsole.vala:93 -#, fuzzy -msgid "Show unstable and RC releases" -msgstr "Cacher les versions instables et RC" +#: src/Gtk/MainWindow.vala:374 +msgid "Remove" +msgstr "Supprimer" -#: src/Gtk/SettingsDialog.vala:205 -#, fuzzy -msgid "Skip internet connection check" -msgstr "Connexion internet inexistante" +#: src/Gtk/MainWindow.vala:380 +msgid "Select the kernels to remove" +msgstr "Sélectionnez les noyaux à supprimer" -#: src/Gtk/MainWindow.vala:196 -msgid "Status" -msgstr "Statut" +#: src/Gtk/MainWindow.vala:423 +msgid "Purge" +msgstr "" -#: src/Utility/TeeJee.Process.vala:513 -msgid "Stopped" -msgstr "Arrêté" +#: src/Gtk/MainWindow.vala:462 +msgid "Changes" +msgstr "Changements" -#: src/Console/AppConsole.vala:78 src/Gtk/AppGtk.vala:179 -msgid "Syntax" -msgstr "Syntaxe" +#: src/Gtk/MainWindow.vala:473 src/Gtk/SettingsDialog.vala:55 +msgid "Settings" +msgstr "Paramètres" -#: src/Console/AppConsole.vala:204 src/Gtk/AppGtk.vala:111 -msgid "Temp" -msgstr "" +#: src/Gtk/MainWindow.vala:494 +msgid "About" +msgstr "À propos" -#: src/Common/LinuxKernel.vala:742 -#, c-format -msgid "The following kernels will be removed:" +#: src/Gtk/MainWindow.vala:542 +msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "" +"Utilitaire de mise à niveau des noyaux pour les distributions basées pour " +"Ubuntu" -#: src/Utility/Gtk/AboutWindow.vala:330 -#, c-format -msgid "Third Party Tools" -msgstr "Outils tiers" +#: src/Gtk/MainWindow.vala:577 +msgid "Refreshing..." +msgstr "Actualisation..." -#: src/Common/LinuxKernel.vala:1252 src/Gtk/MainWindow.vala:689 -msgid "This kernel is already installed." -msgstr "Ce noyau est déjà installé." +#: src/Gtk/ProgressWindow.vala:145 src/Gtk/TerminalWindow.vala:148 +#: src/Gtk/UpdateNotificationWindow.vala:167 +#: src/Utility/Gtk/CustomMessageDialog.vala:155 +msgid "Cancel" +msgstr "Annuler" -#: src/Common/LinuxKernel.vala:1353 -msgid "" -"This kernel is currently running and cannot be removed.\n" -" Install another kernel before removing this one." -msgstr "" -"Ce noyau est en cours d'exécution et ne peut pas être supprimé.\n" -" Installez un autre noyau avant de retirer celui-ci." +#: src/Gtk/SettingsDialog.vala:65 +msgid "Notification" +msgstr "Notification" -#: src/Utility/Gtk/AboutWindow.vala:346 -#, c-format -msgid "Translators" -msgstr "Traducteurs" +#: src/Gtk/SettingsDialog.vala:72 +msgid "Notify if a major release is available" +msgstr "Notifier si une version stable majeure est disponible" -#: src/Common/LinuxKernel.vala:1337 src/Common/LinuxKernel.vala:1390 -msgid "Un-install completed" -msgstr "Désinstallation complète" +#: src/Gtk/SettingsDialog.vala:83 +msgid "Notify if a point release is available" +msgstr "Notifier si une version stable mineure est disponible" -#: src/Common/LinuxKernel.vala:1340 src/Common/LinuxKernel.vala:1393 -msgid "Un-install completed with errors" -msgstr "Désinstallation terminée avec des erreurs" +#: src/Gtk/SettingsDialog.vala:94 +msgid "Show notification bubble on desktop" +msgstr "Afficher la bulle de notification sur le bureau" -#: src/Console/AppConsole.vala:196 src/Gtk/AppGtk.vala:166 -msgid "Unknown option" -msgstr "Option inconnue" +#: src/Gtk/SettingsDialog.vala:105 +msgid "Show notification dialog" +msgstr "Afficher les notifications" -#: src/Gtk/MainWindow.vala:179 -msgid "Version" -msgstr "Version" +#: src/Gtk/SettingsDialog.vala:120 +msgid "Check every" +msgstr "Vérifier toutes les" -#: src/Utility/TeeJee.Logging.vala:89 -msgid "W" -msgstr "W" +#: src/Gtk/SettingsDialog.vala:151 +msgid "Hour(s)" +msgstr "Heure(s)" + +#: src/Gtk/SettingsDialog.vala:153 +msgid "Day(s)" +msgstr "Jour(s)" #: src/Gtk/SettingsDialog.vala:155 msgid "Week(s)" msgstr "Semaine(s)" -#: src/Utility/Gtk/CustomMessageDialog.vala:159 -msgid "Yes" -msgstr "Oui" +#: src/Gtk/SettingsDialog.vala:160 +msgid "Display" +msgstr "Afficher" -#: src/Utility/AppLock.vala:56 -msgid "[Warning] Deleted invalid lock" -msgstr "[Attention] Verrou invalide supprimé" +#: src/Gtk/SettingsDialog.vala:168 +msgid "Hide unstable and RC releases" +msgstr "Cacher les versions instables et RC" -#: src/Gtk/SettingsDialog.vala:232 -msgid "seconds" +#: src/Gtk/SettingsDialog.vala:182 +msgid "Show N previous major versions " msgstr "" -#, fuzzy -#~ msgid "Hide kernels older than " -#~ msgstr "Masquer les noyaux antérieurs à la version 4.0" - -#~ msgid "Booting previous kernels" -#~ msgstr "Démarrer sur un noyau précédent" - -#~ msgid "GRUB Options" -#~ msgstr "Options GRUB" +#: src/Gtk/SettingsDialog.vala:197 +msgid "Other" +msgstr "" +#: src/Gtk/SettingsDialog.vala:205 #, fuzzy -#~ msgid "" -#~ "Mainline kernels can sometimes cause problems if there are proprietary " -#~ "drivers installed on your system. These issues include:\n" -#~ "\n" -#~ "▰ WiFi not working\n" -#~ "▰ Black screen on startup\n" -#~ "▰ Random system freeze\n" -#~ "\n" -#~ "If you face any of these issues there is no need to panic.\n" -#~ "\n" -#~ "▰ Reboot your system\n" -#~ "▰ Select 'Advanced Boot Options' from the GRUB boot menu\n" -#~ "▰ Select an older kernel from the list displayed on this screen\n" -#~ "▰ Your system will boot using the selected kernel\n" -#~ "▰ You can now uninstall the kernel that is causing issues\n" -#~ msgstr "" -#~ "Certains noyaux peuvent poser problème à cause de l'absence de drivers " -#~ "propriétaires installés sur votre système. Cela se présente par :\n" -#~ "\n" -#~ "\\342\\226\\260 Le WiFi qui ne fonctionne pas\n" -#~ "\\342\\226\\260 Un écran noir au démarrage\n" -#~ "\\342\\226\\260 Le système qui se fige et se bloque\n" -#~ "\n" -#~ "Si vous êtes face à ces problèmes, pas de panique.\n" -#~ "\n" -#~ "\\342\\226\\260 Redémarrer votre système\n" -#~ "\\342\\226\\260 Sélectionnez 'Advanced Boot Options' dans le menu GRUB " -#~ "boot\n" -#~ "\\342\\226\\260 Sélectionnez un ancien noyau qui fonctionne\n" -#~ "\\342\\226\\260 Votre système va redémarrer avec le noyau sélectionné\n" -#~ "\\342\\226\\260 Vous pouvez supprimer le noyau responsable de cette " -#~ "erreur\n" - -#~ msgid "" -#~ "Time (in seconds) to display the GRUB menu\n" -#~ "\n" -#~ "0 = Do not show menu\n" -#~ "-1 = Show indefinitely till user selects" -#~ msgstr "" -#~ "Temps (en secondes) pour afficher le menu GRUB\n" -#~ "\n" -#~ "0 = Ne pas afficher de menu\n" -#~ "-1 = Afficher indéfiniment le menu jusqu'au choix de l'utilisateur" - -#~ msgid "" -#~ "Updates the GRUB menu after installing or removing kernels, so that the " -#~ "menu is displayed for 2 seconds at boot time. This will help you recover " -#~ "from a bad kernel update by selecting another kernel to boot. During " -#~ "boot, use the 'Advanced options for Ubuntu' menu entry to select another " -#~ "kernel.\n" -#~ "\n" -#~ "0 = Do not show menu\n" -#~ "-1 = Show indefinitely till user selects" -#~ msgstr "" -#~ "Mise à jour du menu GRUB après installation ou suppression. Vous aurez 2 " -#~ "secondes au lancement pour changer de noyau au démarrage et choisir un " -#~ "noyau fonctionnel. Durant le démarrage, sélectionnez 'Option avancées " -#~ "Ubuntu' et sélectionnez un autre noyau.\n" -#~ "\n" -#~ "0 = Ne pas afficher de menu\n" -#~ "-1 = Afficher jusqu'au choix de l'utilisateur" - -#~ msgid "Updating GRUB menu" -#~ msgstr "Mise à jour du menu GRUB" - -#~ msgid "Run 'ukuu --list' and use the version string listed in first column" -#~ msgstr "" -#~ "Exécutez 'ukuu --list' et utilisez la chaîne de la version indiquée dans " -#~ "la première colonne" - -#~ msgid "" -#~ "Did you find this software useful?\n" -#~ "\n" -#~ "You can buy me a coffee or make a donation via PayPal to show your " -#~ "support. Or just drop me an email and say Hi. This application is " -#~ "completely free and will continue to remain that way. Your contributions " -#~ "will help in keeping this project alive and improving it further.\n" -#~ "\n" -#~ "Feel free to send me an email if you find any issues in this application " -#~ "or if you need any changes. Suggestions and feedback are always welcome.\n" -#~ "\n" -#~ "Thanks,\n" -#~ "Tony George\n" -#~ "(teejeetech@gmail.com)" -#~ msgstr "" -#~ "Vous trouvez ce logiciel super utile?\n" -#~ "\n" -#~ "Vous pouvez m'acheter un café ou faire un don via PayPal pour montrer " -#~ "votre soutien. Ou envoyez-moi simplement un courriel et dites moi " -#~ "bonjour. Cette application est entièrement gratuite et continuera de " -#~ "rester de cette façon. Vos contributions contribueront à maintenir ce " -#~ "projet vivant et l'améliorer encore.\n" -#~ "\n" -#~ "N'hésitez pas à m'envoyer un courriel si vous trouvez des problèmes dans " -#~ "cette application ou si vous avez besoin de modifications. Les " -#~ "suggestions et les commentaires sont toujours les bienvenus.\n" -#~ "\n" -#~ "Merci beaucoup \n" -#~ "Tony George\n" -#~ "(teejeetech@gmail.com)" - -#~ msgid "Display GRUB menu during boot" -#~ msgstr "Afficher le menu GRUB durant le démarrage" - -#~ msgid "Donate" -#~ msgstr "Dons" - -#~ msgid "Donate with Google Wallet" -#~ msgstr "Dons par Google Wallet" - -#~ msgid "Donate with PayPal" -#~ msgstr "Dons avec PayPal" - -#~ msgid "Donations" -#~ msgstr "Donations" - -#~ msgid "File read" -#~ msgstr "Fichier lu" - -#~ msgid "Notify if kernel update is available" -#~ msgstr "Notifier si une mise à jour du noyau est disponible" - -#~ msgid "Send Email" -#~ msgstr "Envoyer courriel" - -#~ msgid "Use specified user's cache directory" -#~ msgstr "Utiliser le répertoire de cache de l'utilisateur sélectionné" - -#~ msgid "Using cache directory" -#~ msgstr "Utiliser le dossier cache" - -#~ msgid "Visit Website" -#~ msgstr "Visiter mon site" - -#~ msgid "Open Ukuu" -#~ msgstr "Lancer Ukuu" - -#~ msgid "Cron job added" -#~ msgstr "Cron ajouter" - -#~ msgid "Cron job removed" -#~ msgstr "Activités " - -#~ msgid "Device" -#~ msgstr "Matériel" - -#~ msgid "Device is unlocked" -#~ msgstr "Le matériel est vérouillé" +msgid "Skip internet connection check" +msgstr "Connexion internet inexistante" -#~ msgid "Device name is empty!" -#~ msgstr "Le nom du matériel est absent ou vide!" +#: src/Gtk/SettingsDialog.vala:218 +#, fuzzy +msgid "Internet connection timeout in " +msgstr "Connexion internet inexistante" -#~ msgid "Encrypted Device" -#~ msgstr "Matériel chiffré" +#: src/Gtk/SettingsDialog.vala:232 +msgid "seconds" +msgstr "" -#~ msgid "Enter passphrase to unlock '%s'" -#~ msgstr "Entrer votre passphrase '%s'" +#: src/Gtk/TerminalWindow.vala:158 src/Utility/Gtk/AboutWindow.vala:295 +msgid "Close" +msgstr "Fermer" -#~ msgid "Enter path or browse for directory" -#~ msgstr "Spécifier l emplacement ou naviger dans vos dossiers" +#: src/Gtk/UpdateNotificationWindow.vala:148 +msgid "Install this kernel" +msgstr "Installer ce noyau" -#~ msgid "Failed to add cron job" -#~ msgstr "Impossible d'ajouter une nouvelle planification de travail " +#: src/Gtk/UpdateNotificationWindow.vala:157 +msgid "Show" +msgstr "Afficher" -#~ msgid "Failed to export crontab file" -#~ msgstr "Impossible d exporter le fichier de planification CronTab" +#: src/Gtk/UpdateNotificationWindow.vala:158 +msgid "List available kernels" +msgstr "Lister les noyaux disponibles" -#~ msgid "Failed to get partition list" -#~ msgstr "Impossible de relever la liste des partitions" +#: src/Gtk/UpdateNotificationWindow.vala:168 +msgid "Ignore this update" +msgstr "Ignorer cette mise à jour" -#~ msgid "Failed to install crontab file" -#~ msgstr "Impossible d installer le fichier de planification CronTab " +#: src/Utility/Gtk/AboutWindow.vala:272 src/Utility/Gtk/AboutWindow.vala:289 +msgid "Credits" +msgstr "Crédits" -#~ msgid "Failed to read cron tab" -#~ msgstr "Impossible de lire le fichier de planification Cron" +#: src/Utility/Gtk/AboutWindow.vala:285 +msgid "Back" +msgstr "Retour" -#~ msgid "Failed to remove cron job" -#~ msgstr "Impossible de supprimer le fichier de plannification Cron" +#: src/Utility/Gtk/AboutWindow.vala:314 +msgid "Authors" +msgstr "Auteurs" -#~ msgid "Failed to unlock device" -#~ msgstr "Impossible de débloquer ce matériel" +#: src/Utility/Gtk/AboutWindow.vala:322 +msgid "Contributions" +msgstr "Contributions" -#~ msgid "Failed to démonter le matériel" -#~ msgstr "Impossibilité de " +#: src/Utility/Gtk/AboutWindow.vala:330 +msgid "Third Party Tools" +msgstr "Outils tiers" -#~ msgid "Label" -#~ msgstr "Étiquette" +#: src/Utility/Gtk/AboutWindow.vala:338 +msgid "Artists" +msgstr "Artistes" -#~ msgid "Model" -#~ msgstr "Modèle" +#: src/Utility/Gtk/AboutWindow.vala:346 +msgid "Translators" +msgstr "Traducteurs" -#~ msgid "Mounted" -#~ msgstr "Monté" +#: src/Utility/Gtk/AboutWindow.vala:354 +msgid "Documenters" +msgstr "Documentalistes" -#~ msgid "Open" -#~ msgstr "Ouvert" +#: src/Utility/Gtk/CustomMessageDialog.vala:159 +msgid "Yes" +msgstr "Oui" -#~ msgid "Parent Device" -#~ msgstr "Matériel identique" +#: src/Utility/Gtk/CustomMessageDialog.vala:160 +msgid "No" +msgstr "Non" -#~ msgid "Revision" -#~ msgstr "Revision" +#: src/Utility/Gtk/GtkHelper.vala:17 +msgid "Error" +msgstr "Erreur" -#~ msgid "Root Access Required" -#~ msgstr "Accès administrateur requis" +#: src/Utility/Gtk/GtkHelper.vala:93 +msgid "Missing Icon" +msgstr "Icône introuvable" -#~ msgid "Root access is required for running this application." -#~ msgstr "" -#~ "L'accès administrateur est requis pour l'exécution de cette application." +#: src/Utility/TeeJee.FileSystem.vala:97 src/Utility/TeeJee.FileSystem.vala:100 +msgid "File deleted" +msgstr "Fichier effacé" -#~ msgid "Select Path" -#~ msgstr "Выберите путь" +#: src/Utility/TeeJee.FileSystem.vala:106 +msgid "Failed to delete file" +msgstr "Impossible d'effacer le fichier" -#~ msgid "Serial" -#~ msgstr "Série" +#: src/Utility/TeeJee.FileSystem.vala:162 +msgid "Failed to read file" +msgstr "Impossible de lire le fichier" -#~ msgid "Size" -#~ msgstr "Taille" +#: src/Utility/TeeJee.FileSystem.vala:187 +#: src/Utility/TeeJee.FileSystem.vala:190 +msgid "File saved" +msgstr "Fichier sauvegardé" -#~ msgid "System" -#~ msgstr "Système" +#: src/Utility/TeeJee.FileSystem.vala:197 +msgid "Failed to write file" +msgstr "Impossible d'écrire le fichier" -#~ msgid "This device is not encrypted" -#~ msgstr "Cet appareil n'est pas chiffré" +#: src/Utility/TeeJee.FileSystem.vala:210 +#: src/Utility/TeeJee.FileSystem.vala:213 +msgid "File copied" +msgstr "Fichier copié" -#~ msgid "Type" -#~ msgstr "Type" +#: src/Utility/TeeJee.FileSystem.vala:221 +msgid "Failed to copy file" +msgstr "Impossible de copier le fichier" -#~ msgid "UUID" -#~ msgstr "UUID" +#: src/Utility/TeeJee.FileSystem.vala:231 +#: src/Utility/TeeJee.FileSystem.vala:538 +msgid "File not found" +msgstr "Fichier non trouvé" -#~ msgid "Unlocked device is mapped to '%s'" -#~ msgstr "Dispositif de déverrouillage est mis en correspondance '%s'" +#: src/Utility/TeeJee.FileSystem.vala:245 +#: src/Utility/TeeJee.FileSystem.vala:248 +msgid "File moved" +msgstr "Fichier déplacé" -#~ msgid "Unlocked successfully" -#~ msgstr "Débloqué avec succès" +#: src/Utility/TeeJee.FileSystem.vala:253 +msgid "Failed to move file" +msgstr "Impossible de déplacer le fichier" -#~ msgid "Unmounting from" -#~ msgstr "Non monté pour" +#: src/Utility/TeeJee.FileSystem.vala:349 +#: src/Utility/TeeJee.FileSystem.vala:352 +#: src/Utility/TeeJee.FileSystem.vala:378 +msgid "Created directory" +msgstr "Dossier créé" -#~ msgid "Used" -#~ msgstr "Utilisé" +#: src/Utility/TeeJee.FileSystem.vala:359 +msgid "Failed to create dir" +msgstr "Impossible de créer le nouveau dossier" -#~ msgid "User cancelled the password prompt" -#~ msgstr "L'utilisateur a annulé l'invite de mot de pass" +#: src/Utility/TeeJee.FileSystem.vala:375 +msgid "Deleted directory" +msgstr "Dossier éffacé" -#~ msgid "Vendor" -#~ msgstr "Fabricant" +#: src/Utility/TeeJee.FileSystem.vala:509 +msgid "Dir not found" +msgstr "Dossier non trouvé" -#~ msgid "Wrong password" -#~ msgstr "Mauvais mot de pass" +#: src/Utility/TeeJee.FileSystem.vala:662 +#: src/Utility/TeeJee.FileSystem.vala:711 +msgid "File is missing" +msgstr "Fichier disparu" -#~ msgid "crontab file exported" -#~ msgstr "Le fichier CronTab est exporté" +#: src/Utility/TeeJee.Logging.vala:89 +msgid "E" +msgstr "E" -#~ msgid "crontab file installed" -#~ msgstr "Le fichier de planification Crontab est installé" +#: src/Utility/TeeJee.Logging.vala:89 +msgid "W" +msgstr "W" -#~ msgid "device" -#~ msgstr "matériel" +#: src/Utility/TeeJee.Process.vala:513 +msgid "Stopped" +msgstr "Arrêté" diff --git a/po/hr.po b/po/hr.po index 25260d86..840e6bfb 100644 --- a/po/hr.po +++ b/po/hr.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: ukuu\n" -"Report-Msgid-Bugs-To: b.kenyon.w@gmail.com\n" -"POT-Creation-Date: 2020-05-01 13:31-0400\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-05-02 16:29-0400\n" "PO-Revision-Date: 2017-12-24 00:52+0100\n" "Last-Translator: gogo \n" "Language-Team: Croatian \n" @@ -18,267 +18,181 @@ msgstr "" "X-Launchpad-Export-Date: 2017-12-23 23:36+0000\n" "X-Generator: Poedit 1.8.7.1\n" -#: src/Gtk/MainWindow.vala:494 -msgid "About" -msgstr "O programu" - -#: src/Console/AppConsole.vala:113 -msgid "Admin access is required for running this application." -msgstr "Administratorske ovlasti su potrebne za pokretanje ove aplikacije." - -#: src/Utility/AppLock.vala:51 -msgid "Another instance of this application is running" -msgstr "Drugi primjerak ove aplikacije je pokrenut" +#: src/Common/LinuxKernel.vala:92 +msgid "Distribution" +msgstr "Distribucija" #: src/Common/LinuxKernel.vala:106 #, fuzzy msgid "Architecture" msgstr "Arhitektura sustava" -#: src/Utility/Gtk/AboutWindow.vala:338 -#, c-format -msgid "Artists" -msgstr "Dizajneri" - -#: src/Console/AppConsole.vala:99 -msgid "Assume Yes for all prompts (non-interactive mode)" -msgstr "" - -#: src/Utility/Gtk/AboutWindow.vala:314 -#, c-format -msgid "Authors" -msgstr "Autori" - -#: src/Common/LinuxKernel.vala:1164 -msgid "Available Kernels" -msgstr "Dostupni kerneli" +#: src/Common/LinuxKernel.vala:257 +msgid "Index is stale" +msgstr "Sadržaj je zastario" -#: src/Utility/Gtk/AboutWindow.vala:285 -msgid "Back" -msgstr "Natrag" +#: src/Common/LinuxKernel.vala:260 +msgid "Index is fresh" +msgstr "Sadržaj je osvježen" -#: src/Console/AppConsole.vala:203 src/Gtk/AppGtk.vala:110 -msgid "Cache" +#: src/Common/LinuxKernel.vala:365 +msgid "Fetching index..." msgstr "" -#: src/Gtk/ProgressWindow.vala:145 src/Gtk/TerminalWindow.vala:148 -#: src/Gtk/UpdateNotificationWindow.vala:167 -#: src/Utility/Gtk/CustomMessageDialog.vala:155 -msgid "Cancel" -msgstr "Odustani" - -#: src/Gtk/MainWindow.vala:462 -msgid "Changes" -msgstr "Promjene" - -#: src/Gtk/SettingsDialog.vala:120 -msgid "Check every" -msgstr "Provjeri svaka" - -#: src/Console/AppConsole.vala:82 -msgid "Check for kernel updates" -msgstr "Provjeri nadopune kernela" +#: src/Common/LinuxKernel.vala:408 +msgid "Fetching index from kernel.ubuntu.com..." +msgstr "Preuzimanje sadržaja sa kernel.ubuntu.com..." -#: src/Console/AppConsole.vala:83 +#: src/Common/LinuxKernel.vala:727 #, fuzzy -msgid "Check for kernel updates and notify current user" -msgstr "Provjeri nadopune kernela" - -#: src/Gtk/TerminalWindow.vala:158 src/Utility/Gtk/AboutWindow.vala:295 -msgid "Close" -msgstr "Zatvori" - -#: src/Console/AppConsole.vala:340 -msgid "Command not specified" -msgstr "" - -#: src/Console/AppConsole.vala:80 -msgid "Commands" -msgstr "" - -#: src/Common/Main.vala:107 -msgid "Commands listed below are not available on this system" -msgstr "Naredbe navedene ispod nisu dostupne na ovom sustavu" - -#: src/Common/LinuxKernel.vala:749 -#, c-format -msgid "Continue ?" -msgstr "" - -#: src/Utility/Gtk/AboutWindow.vala:322 -#, c-format -msgid "Contributions" -msgstr "Prilozi" +msgid "Could not find running kernel in list!" +msgstr "Nemoguće je pronaći zatraženu inačicu" #: src/Common/LinuxKernel.vala:733 #, fuzzy msgid "Could not find any kernels to remove" msgstr "Odaberi kernele za uklanjanje" -#: src/Console/AppConsole.vala:308 src/Gtk/MainWindow.vala:100 -msgid "Could not find requested version" -msgstr "Nemoguće je pronaći zatraženu inačicu" +#: src/Common/LinuxKernel.vala:742 +msgid "The following kernels will be removed:" +msgstr "" -#: src/Common/LinuxKernel.vala:727 -#, fuzzy -msgid "Could not find running kernel in list!" -msgstr "Nemoguće je pronaći zatraženu inačicu" +#: src/Common/LinuxKernel.vala:749 +msgid "Continue ?" +msgstr "" -#: src/Utility/TeeJee.FileSystem.vala:349 -#: src/Utility/TeeJee.FileSystem.vala:352 -#: src/Utility/TeeJee.FileSystem.vala:378 -msgid "Created directory" -msgstr "Stvoren direktorij" +#: src/Common/LinuxKernel.vala:777 src/Console/AppConsole.vala:359 +msgid "Latest update" +msgstr "" -#: src/Utility/Gtk/AboutWindow.vala:272 src/Utility/Gtk/AboutWindow.vala:289 -msgid "Credits" -msgstr "Zasluge" +#: src/Common/LinuxKernel.vala:788 src/Console/AppConsole.vala:366 +msgid "Latest point update" +msgstr "" -#: src/Gtk/SettingsDialog.vala:153 -msgid "Day(s)" -msgstr "Dan(a)" +#: src/Common/LinuxKernel.vala:796 src/Console/AppConsole.vala:371 +#: src/Console/AppConsole.vala:429 src/Gtk/MainWindow.vala:804 +msgid "No updates found" +msgstr "Nema pronađenih nadopuna" -#: src/Utility/TeeJee.FileSystem.vala:375 -msgid "Deleted directory" -msgstr "Obrisan direktorij" +#: src/Common/LinuxKernel.vala:806 +#, c-format +msgid "Install Linux v%s ? (y/n): " +msgstr "" -#: src/Utility/TeeJee.FileSystem.vala:509 -msgid "Dir not found" -msgstr "Direktorij nije pronađen" +#: src/Common/LinuxKernel.vala:1072 +msgid "Packages Available" +msgstr "Dostupni paketi" -#: src/Gtk/SettingsDialog.vala:160 -msgid "Display" -msgstr "Prikaz" +#: src/Common/LinuxKernel.vala:1080 +msgid "Packages Installed" +msgstr "Instalirani paketi" -#: src/Common/LinuxKernel.vala:92 -msgid "Distribution" -msgstr "Distribucija" +#: src/Common/LinuxKernel.vala:1164 +msgid "Available Kernels" +msgstr "Dostupni kerneli" -#: src/Utility/Gtk/AboutWindow.vala:354 -#, c-format -msgid "Documenters" -msgstr "Autori dokumentacije" +#: src/Common/LinuxKernel.vala:1181 src/Gtk/MainWindow.vala:208 +msgid "Installed" +msgstr "Instalirano" -#: src/Console/AppConsole.vala:91 -msgid "Download packages for specified kernel" -msgstr "Preuzmi pakete za određeni kernel" +#: src/Common/LinuxKernel.vala:1181 src/Gtk/MainWindow.vala:208 +msgid "Running" +msgstr "Pokrenuto" #: src/Common/LinuxKernel.vala:1210 -#, c-format msgid "Downloading" msgstr "Preuzimanje" -#: src/Utility/TeeJee.Logging.vala:89 -msgid "E" -msgstr "G" +#: src/Common/LinuxKernel.vala:1229 +#: src/Utility/Gtk/CustomMessageDialog.vala:150 +#: src/Utility/Gtk/CustomMessageDialog.vala:154 +msgid "OK" +msgstr "U redu" #: src/Common/LinuxKernel.vala:1238 -#, c-format msgid "ERROR" msgstr "GREŠKA" -#: src/Console/AppConsole.vala:98 -msgid "Enable verbose debugging output" +#: src/Common/LinuxKernel.vala:1252 src/Gtk/MainWindow.vala:689 +msgid "This kernel is already installed." +msgstr "Ovaj kernel je već instaliran." + +#: src/Common/LinuxKernel.vala:1281 +msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" +"Instalacija je završena. Potrebno je ponovno pokretanje računala kako bi se " +"koristio novi kernel." -#: src/Utility/Gtk/GtkHelper.vala:17 -msgid "Error" -msgstr "Greška" +#: src/Common/LinuxKernel.vala:1284 +msgid "Installation completed with errors" +msgstr "Instalacija je završena s greškama" -#: src/Utility/TeeJee.FileSystem.vala:221 -msgid "Failed to copy file" -msgstr "Neuspjelo kopiranje datoteke" +#: src/Common/LinuxKernel.vala:1300 +msgid "" +"Selected kernel is currently running and cannot be removed.\n" +" Install another kernel before removing this one." +msgstr "" +"Odabrani kernel je trenutno pokernut i ne može se ukloniti.\n" +" Instalirajte drugi kernel prije uklanjanja trenutnog kernela." -#: src/Utility/TeeJee.FileSystem.vala:359 -msgid "Failed to create dir" -msgstr "Neuspjelo stvarnje direktorija" +#: src/Common/LinuxKernel.vala:1305 +msgid "Preparing to remove selected kernels" +msgstr "Pripremanje uklanjanja odabranih kernela" -#: src/Utility/TeeJee.FileSystem.vala:106 -msgid "Failed to delete file" -msgstr "Neuspjelo brisanje datoteke" +#: src/Common/LinuxKernel.vala:1337 src/Common/LinuxKernel.vala:1390 +msgid "Un-install completed" +msgstr "Deinstalacija završena" -#: src/Utility/TeeJee.FileSystem.vala:253 -msgid "Failed to move file" -msgstr "Neuspjelo premještanje datoteke" +#: src/Common/LinuxKernel.vala:1340 src/Common/LinuxKernel.vala:1393 +msgid "Un-install completed with errors" +msgstr "Deinstalacija završena s greškama" -#: src/Utility/TeeJee.FileSystem.vala:162 -msgid "Failed to read file" -msgstr "Neuspjelo čitanje datoteke" +#: src/Common/LinuxKernel.vala:1353 +msgid "" +"This kernel is currently running and cannot be removed.\n" +" Install another kernel before removing this one." +msgstr "" +"Ovaj kernel je trenutno pokrenut i ne može se ukloniti.\n" +" Instalirajte drugi kernel prije uklanjanja trenutnog kernela." -#: src/Utility/TeeJee.FileSystem.vala:197 -msgid "Failed to write file" -msgstr "Neuspjelo zapisivanje datoteke" +#: src/Common/Main.vala:107 +msgid "Commands listed below are not available on this system" +msgstr "Naredbe navedene ispod nisu dostupne na ovom sustavu" -#: src/Common/LinuxKernel.vala:408 -msgid "Fetching index from kernel.ubuntu.com..." -msgstr "Preuzimanje sadržaja sa kernel.ubuntu.com..." +#: src/Common/Main.vala:108 +msgid "Please install required packages and try again" +msgstr "Instalirajte potrebni paket i pokušajte ponovno" -#: src/Common/LinuxKernel.vala:365 -msgid "Fetching index..." -msgstr "" +#: src/Common/Package.vala:126 src/Common/Package.vala:188 +#, c-format +msgid "File not found: %s" +msgstr "Datoteka nije pronađena: %s" -#: src/Utility/TeeJee.FileSystem.vala:210 -#: src/Utility/TeeJee.FileSystem.vala:213 -msgid "File copied" -msgstr "Datoteka kopirana" +#: src/Console/AppConsole.vala:78 src/Gtk/AppGtk.vala:179 +msgid "Syntax" +msgstr "Sintaksa" -#: src/Utility/TeeJee.FileSystem.vala:97 src/Utility/TeeJee.FileSystem.vala:100 -msgid "File deleted" -msgstr "Datoteka obrisana" - -#: src/Utility/TeeJee.FileSystem.vala:662 -#: src/Utility/TeeJee.FileSystem.vala:711 -msgid "File is missing" -msgstr "Datoteka nedostaje" - -#: src/Utility/TeeJee.FileSystem.vala:245 -#: src/Utility/TeeJee.FileSystem.vala:248 -msgid "File moved" -msgstr "Datoteka je premještena" - -#: src/Utility/TeeJee.FileSystem.vala:231 -#: src/Utility/TeeJee.FileSystem.vala:538 -msgid "File not found" -msgstr "Datoteka nije pronađena" - -#: src/Common/Package.vala:126 src/Common/Package.vala:188 -#, c-format -msgid "File not found: %s" -msgstr "Datoteka nije pronađena: %s" - -#: src/Utility/TeeJee.FileSystem.vala:187 -#: src/Utility/TeeJee.FileSystem.vala:190 -msgid "File saved" -msgstr "Datoteka je spremljenja" - -#: src/Gtk/SettingsDialog.vala:168 -msgid "Hide unstable and RC releases" -msgstr "Sakrij nestabilne kernele i predizdanja" - -#: src/Gtk/SettingsDialog.vala:151 -msgid "Hour(s)" -msgstr "Sat(a)" - -#: src/Gtk/UpdateNotificationWindow.vala:168 -msgid "Ignore this update" -msgstr "Zanemari ovu nadopunu" +#: src/Console/AppConsole.vala:80 +msgid "Commands" +msgstr "" -#: src/Common/LinuxKernel.vala:260 -msgid "Index is fresh" -msgstr "Sadržaj je osvježen" +#: src/Console/AppConsole.vala:82 +msgid "Check for kernel updates" +msgstr "Provjeri nadopune kernela" -#: src/Common/LinuxKernel.vala:257 -msgid "Index is stale" -msgstr "Sadržaj je zastario" +#: src/Console/AppConsole.vala:83 +#, fuzzy +msgid "Check for kernel updates and notify current user" +msgstr "Provjeri nadopune kernela" -#: src/Gtk/UpdateNotificationWindow.vala:147 src/Gtk/MainWindow.vala:357 -msgid "Install" -msgstr "Instaliraj" +#: src/Console/AppConsole.vala:84 +msgid "List all available mainline kernels" +msgstr "Prikaži sve mainline kernele" -#: src/Common/LinuxKernel.vala:806 -#, c-format -msgid "Install Linux v%s ? (y/n): " -msgstr "" +#: src/Console/AppConsole.vala:85 +#, fuzzy +msgid "List installed kernels" +msgstr "Prikaži sve kernele" #: src/Console/AppConsole.vala:86 #, fuzzy @@ -293,519 +207,386 @@ msgstr "" msgid "Install specified mainline kernel" msgstr "Instaliraj određeni mainline kernel" -#: src/Gtk/UpdateNotificationWindow.vala:148 -msgid "Install this kernel" -msgstr "Instaliraj ovaj kernel" - -#: src/Common/LinuxKernel.vala:1284 -msgid "Installation completed with errors" -msgstr "Instalacija je završena s greškama" +#: src/Console/AppConsole.vala:89 +#, fuzzy +msgid "Remove specified kernel" +msgstr "Ukloni određeni mainline kernel" -#: src/Common/LinuxKernel.vala:1281 -msgid "Installation completed. A reboot is required to use the new kernel." +#: src/Console/AppConsole.vala:90 src/Gtk/MainWindow.vala:424 +msgid "Remove installed kernels older than running kernel" msgstr "" -"Instalacija je završena. Potrebno je ponovno pokretanje računala kako bi se " -"koristio novi kernel." -#: src/Common/LinuxKernel.vala:1181 src/Gtk/MainWindow.vala:208 -msgid "Installed" -msgstr "Instalirano" +#: src/Console/AppConsole.vala:91 +msgid "Download packages for specified kernel" +msgstr "Preuzmi pakete za određeni kernel" -#: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:558 -#: src/Gtk/MainWindow.vala:694 src/Utility/TeeJee.System.vala:281 -msgid "Internet connection is not active" -msgstr "Internet povezivanje nije aktivno" +#: src/Console/AppConsole.vala:92 src/Console/AppConsole.vala:97 +msgid "Remove files from application cache" +msgstr "Ukloni datoteke iz predmemorije aplikacije" -#: src/Gtk/SettingsDialog.vala:218 +#: src/Console/AppConsole.vala:93 #, fuzzy -msgid "Internet connection timeout in " -msgstr "Internet povezivanje nije aktivno" +msgid "Show unstable and RC releases" +msgstr "Sakrij nestabilne kernele i predizdanja" -#: src/Gtk/MainWindow.vala:150 -msgid "Kernel" -msgstr "Kernel" +#: src/Console/AppConsole.vala:95 src/Gtk/AppGtk.vala:181 +msgid "Options" +msgstr "Mogućnosti" -#: src/Gtk/MainWindow.vala:542 -msgid "Kernel upgrade utility for Ubuntu-based distributions" -msgstr "Alat za nadogradnju kernela Ubuntu temeljenih distribucija" +#: src/Console/AppConsole.vala:98 +msgid "Enable verbose debugging output" +msgstr "" -#: src/Common/LinuxKernel.vala:788 src/Console/AppConsole.vala:366 -#, c-format -msgid "Latest point update" +#: src/Console/AppConsole.vala:99 +msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "" -#: src/Common/LinuxKernel.vala:777 src/Console/AppConsole.vala:359 -#, c-format -msgid "Latest update" +#: src/Console/AppConsole.vala:100 +msgid "Override user" msgstr "" -#: src/Console/AppConsole.vala:84 -msgid "List all available mainline kernels" -msgstr "Prikaži sve mainline kernele" +#: src/Console/AppConsole.vala:113 +msgid "Admin access is required for running this application." +msgstr "Administratorske ovlasti su potrebne za pokretanje ove aplikacije." -#: src/Gtk/UpdateNotificationWindow.vala:158 -msgid "List available kernels" -msgstr "Prikaži sve kernele" +#: src/Console/AppConsole.vala:116 +msgid "Run the application as admin with pkexec or sudo." +msgstr "Pokreni aplikaciju kao administrator sa pkexec ili sudo." -#: src/Console/AppConsole.vala:85 -#, fuzzy -msgid "List installed kernels" -msgstr "Prikaži sve kernele" +#: src/Console/AppConsole.vala:196 src/Gtk/AppGtk.vala:166 +msgid "Unknown option" +msgstr "Nepoznata mogućnost" -#: src/Utility/Gtk/GtkHelper.vala:93 -msgid "Missing Icon" -msgstr "Ikone koje nedostaju" +#: src/Console/AppConsole.vala:198 src/Console/AppConsole.vala:312 +#: src/Console/AppConsole.vala:341 +msgid "Run '" +msgstr "" -#: src/Gtk/MainWindow.vala:366 -msgid "Multiple Kernels Selected" -msgstr "Više kernela je odabrano" +#: src/Console/AppConsole.vala:203 src/Gtk/AppGtk.vala:110 +msgid "Cache" +msgstr "" + +#: src/Console/AppConsole.vala:204 src/Gtk/AppGtk.vala:111 +msgid "Temp" +msgstr "" + +#: src/Console/AppConsole.vala:284 src/Console/AppConsole.vala:321 +msgid "No kernels specified" +msgstr "" #: src/Console/AppConsole.vala:290 msgid "Multiple kernels selected for installation. Select only one." msgstr "Više kernela je odabrano za instalaciju. odaberite samo jedan." -#: src/Utility/Gtk/CustomMessageDialog.vala:160 -msgid "No" -msgstr "Ne" +#: src/Console/AppConsole.vala:308 src/Gtk/MainWindow.vala:100 +msgid "Could not find requested version" +msgstr "Nemoguće je pronaći zatraženu inačicu" + +#: src/Console/AppConsole.vala:340 +msgid "Command not specified" +msgstr "" + +#: src/Gtk/AppGtk.vala:183 +msgid "Print debug information" +msgstr "Ispiši informacije otklanjanja grešaka" + +#: src/Gtk/AppGtk.vala:184 +msgid "Show all options" +msgstr "Prikaži sve mogućnosti" + +#: src/Gtk/MainWindow.vala:150 +msgid "Kernel" +msgstr "Kernel" + +#: src/Gtk/MainWindow.vala:179 +msgid "Version" +msgstr "Inačica" + +#: src/Gtk/MainWindow.vala:196 +msgid "Status" +msgstr "Stanje" + +#: src/Gtk/MainWindow.vala:341 +msgid "Refresh" +msgstr "Osvježi" + +#: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:558 +#: src/Gtk/MainWindow.vala:694 src/Utility/TeeJee.System.vala:281 +msgid "Internet connection is not active" +msgstr "Internet povezivanje nije aktivno" #: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:558 #: src/Gtk/MainWindow.vala:694 msgid "No Internet" msgstr "Nema pristupa internetu" -#: src/Console/AppConsole.vala:284 src/Console/AppConsole.vala:321 -msgid "No kernels specified" -msgstr "" +#: src/Gtk/MainWindow.vala:357 src/Gtk/UpdateNotificationWindow.vala:147 +msgid "Install" +msgstr "Instaliraj" -#: src/Common/LinuxKernel.vala:796 src/Console/AppConsole.vala:371 -#: src/Console/AppConsole.vala:429 src/Gtk/MainWindow.vala:804 -msgid "No updates found" -msgstr "Nema pronađenih nadopuna" +#: src/Gtk/MainWindow.vala:366 +msgid "Multiple Kernels Selected" +msgstr "Više kernela je odabrano" + +#: src/Gtk/MainWindow.vala:366 +msgid "Select a single kernel to install" +msgstr "Odaberi pojedni kernel za instalaciju" #: src/Gtk/MainWindow.vala:369 src/Gtk/MainWindow.vala:380 msgid "Not Selected" msgstr "Nije odabrano" -#: src/Gtk/SettingsDialog.vala:65 -msgid "Notification" -msgstr "Obavijesti" - -#: src/Gtk/SettingsDialog.vala:72 -msgid "Notify if a major release is available" -msgstr "Obavijesti kada je glavno izdanje dostupno" - -#: src/Gtk/SettingsDialog.vala:83 -msgid "Notify if a point release is available" -msgstr "Obavijesti kada je pojedino izdanje dostupno" +#: src/Gtk/MainWindow.vala:369 +msgid "Select the kernel to install" +msgstr "Odaberi kernel za instalaciju" -#: src/Common/LinuxKernel.vala:1229 -#: src/Utility/Gtk/CustomMessageDialog.vala:150 -#: src/Utility/Gtk/CustomMessageDialog.vala:154 -#, c-format -msgid "OK" -msgstr "U redu" +#: src/Gtk/MainWindow.vala:374 +msgid "Remove" +msgstr "Ukloni" -#: src/Console/AppConsole.vala:95 src/Gtk/AppGtk.vala:181 -msgid "Options" -msgstr "Mogućnosti" +#: src/Gtk/MainWindow.vala:380 +msgid "Select the kernels to remove" +msgstr "Odaberi kernele za uklanjanje" -#: src/Gtk/SettingsDialog.vala:197 -msgid "Other" +#: src/Gtk/MainWindow.vala:423 +msgid "Purge" msgstr "" -#: src/Console/AppConsole.vala:100 -msgid "Override user" -msgstr "" - -#: src/Common/LinuxKernel.vala:1072 -#, c-format -msgid "Packages Available" -msgstr "Dostupni paketi" - -#: src/Common/LinuxKernel.vala:1080 -#, c-format -msgid "Packages Installed" -msgstr "Instalirani paketi" - -#: src/Common/Main.vala:108 -msgid "Please install required packages and try again" -msgstr "Instalirajte potrebni paket i pokušajte ponovno" - -#: src/Common/LinuxKernel.vala:1305 -msgid "Preparing to remove selected kernels" -msgstr "Pripremanje uklanjanja odabranih kernela" +#: src/Gtk/MainWindow.vala:462 +msgid "Changes" +msgstr "Promjene" -#: src/Gtk/AppGtk.vala:183 -msgid "Print debug information" -msgstr "Ispiši informacije otklanjanja grešaka" +#: src/Gtk/MainWindow.vala:473 src/Gtk/SettingsDialog.vala:55 +msgid "Settings" +msgstr "Postavke" -#: src/Gtk/MainWindow.vala:423 -msgid "Purge" -msgstr "" +#: src/Gtk/MainWindow.vala:494 +msgid "About" +msgstr "O programu" -#: src/Gtk/MainWindow.vala:341 -msgid "Refresh" -msgstr "Osvježi" +#: src/Gtk/MainWindow.vala:542 +msgid "Kernel upgrade utility for Ubuntu-based distributions" +msgstr "Alat za nadogradnju kernela Ubuntu temeljenih distribucija" #: src/Gtk/MainWindow.vala:577 msgid "Refreshing..." msgstr "Osvježavanje..." -#: src/Gtk/MainWindow.vala:374 -msgid "Remove" -msgstr "Ukloni" - -#: src/Console/AppConsole.vala:92 src/Console/AppConsole.vala:97 -msgid "Remove files from application cache" -msgstr "Ukloni datoteke iz predmemorije aplikacije" +#: src/Gtk/ProgressWindow.vala:145 src/Gtk/TerminalWindow.vala:148 +#: src/Gtk/UpdateNotificationWindow.vala:167 +#: src/Utility/Gtk/CustomMessageDialog.vala:155 +msgid "Cancel" +msgstr "Odustani" -#: src/Console/AppConsole.vala:90 src/Gtk/MainWindow.vala:424 -msgid "Remove installed kernels older than running kernel" -msgstr "" +#: src/Gtk/SettingsDialog.vala:65 +msgid "Notification" +msgstr "Obavijesti" -#: src/Console/AppConsole.vala:89 -#, fuzzy -msgid "Remove specified kernel" -msgstr "Ukloni određeni mainline kernel" +#: src/Gtk/SettingsDialog.vala:72 +msgid "Notify if a major release is available" +msgstr "Obavijesti kada je glavno izdanje dostupno" -#: src/Console/AppConsole.vala:198 src/Console/AppConsole.vala:312 -#: src/Console/AppConsole.vala:341 -msgid "Run '" -msgstr "" +#: src/Gtk/SettingsDialog.vala:83 +msgid "Notify if a point release is available" +msgstr "Obavijesti kada je pojedino izdanje dostupno" -#: src/Console/AppConsole.vala:116 -msgid "Run the application as admin with pkexec or sudo." -msgstr "Pokreni aplikaciju kao administrator sa pkexec ili sudo." +#: src/Gtk/SettingsDialog.vala:94 +msgid "Show notification bubble on desktop" +msgstr "Prikaži mjehurić obavijesti radne površine" -#: src/Common/LinuxKernel.vala:1181 src/Gtk/MainWindow.vala:208 -msgid "Running" -msgstr "Pokrenuto" +#: src/Gtk/SettingsDialog.vala:105 +msgid "Show notification dialog" +msgstr "Prikaži dijalog obavijesti" -#: src/Gtk/MainWindow.vala:366 -msgid "Select a single kernel to install" -msgstr "Odaberi pojedni kernel za instalaciju" +#: src/Gtk/SettingsDialog.vala:120 +msgid "Check every" +msgstr "Provjeri svaka" -#: src/Gtk/MainWindow.vala:369 -msgid "Select the kernel to install" -msgstr "Odaberi kernel za instalaciju" +#: src/Gtk/SettingsDialog.vala:151 +msgid "Hour(s)" +msgstr "Sat(a)" -#: src/Gtk/MainWindow.vala:380 -msgid "Select the kernels to remove" -msgstr "Odaberi kernele za uklanjanje" +#: src/Gtk/SettingsDialog.vala:153 +msgid "Day(s)" +msgstr "Dan(a)" -#: src/Common/LinuxKernel.vala:1300 -msgid "" -"Selected kernel is currently running and cannot be removed.\n" -" Install another kernel before removing this one." -msgstr "" -"Odabrani kernel je trenutno pokernut i ne može se ukloniti.\n" -" Instalirajte drugi kernel prije uklanjanja trenutnog kernela." +#: src/Gtk/SettingsDialog.vala:155 +msgid "Week(s)" +msgstr "Tjedan(a)" -#: src/Gtk/MainWindow.vala:473 src/Gtk/SettingsDialog.vala:55 -msgid "Settings" -msgstr "Postavke" +#: src/Gtk/SettingsDialog.vala:160 +msgid "Display" +msgstr "Prikaz" -#: src/Gtk/UpdateNotificationWindow.vala:157 -msgid "Show" -msgstr "Prikaži" +#: src/Gtk/SettingsDialog.vala:168 +msgid "Hide unstable and RC releases" +msgstr "Sakrij nestabilne kernele i predizdanja" #: src/Gtk/SettingsDialog.vala:182 msgid "Show N previous major versions " msgstr "" -#: src/Gtk/AppGtk.vala:184 -msgid "Show all options" -msgstr "Prikaži sve mogućnosti" - -#: src/Gtk/SettingsDialog.vala:94 -msgid "Show notification bubble on desktop" -msgstr "Prikaži mjehurić obavijesti radne površine" - -#: src/Gtk/SettingsDialog.vala:105 -msgid "Show notification dialog" -msgstr "Prikaži dijalog obavijesti" - -#: src/Console/AppConsole.vala:93 -#, fuzzy -msgid "Show unstable and RC releases" -msgstr "Sakrij nestabilne kernele i predizdanja" +#: src/Gtk/SettingsDialog.vala:197 +msgid "Other" +msgstr "" #: src/Gtk/SettingsDialog.vala:205 #, fuzzy msgid "Skip internet connection check" msgstr "Internet povezivanje nije aktivno" -#: src/Gtk/MainWindow.vala:196 -msgid "Status" -msgstr "Stanje" +#: src/Gtk/SettingsDialog.vala:218 +#, fuzzy +msgid "Internet connection timeout in " +msgstr "Internet povezivanje nije aktivno" -#: src/Utility/TeeJee.Process.vala:513 -msgid "Stopped" -msgstr "Zaustavljeno" +#: src/Gtk/SettingsDialog.vala:232 +msgid "seconds" +msgstr "" -#: src/Console/AppConsole.vala:78 src/Gtk/AppGtk.vala:179 -msgid "Syntax" -msgstr "Sintaksa" +#: src/Gtk/TerminalWindow.vala:158 src/Utility/Gtk/AboutWindow.vala:295 +msgid "Close" +msgstr "Zatvori" -#: src/Console/AppConsole.vala:204 src/Gtk/AppGtk.vala:111 -msgid "Temp" -msgstr "" +#: src/Gtk/UpdateNotificationWindow.vala:148 +msgid "Install this kernel" +msgstr "Instaliraj ovaj kernel" -#: src/Common/LinuxKernel.vala:742 -#, c-format -msgid "The following kernels will be removed:" -msgstr "" +#: src/Gtk/UpdateNotificationWindow.vala:157 +msgid "Show" +msgstr "Prikaži" + +#: src/Gtk/UpdateNotificationWindow.vala:158 +msgid "List available kernels" +msgstr "Prikaži sve kernele" + +#: src/Gtk/UpdateNotificationWindow.vala:168 +msgid "Ignore this update" +msgstr "Zanemari ovu nadopunu" + +#: src/Utility/Gtk/AboutWindow.vala:272 src/Utility/Gtk/AboutWindow.vala:289 +msgid "Credits" +msgstr "Zasluge" + +#: src/Utility/Gtk/AboutWindow.vala:285 +msgid "Back" +msgstr "Natrag" + +#: src/Utility/Gtk/AboutWindow.vala:314 +msgid "Authors" +msgstr "Autori" + +#: src/Utility/Gtk/AboutWindow.vala:322 +msgid "Contributions" +msgstr "Prilozi" #: src/Utility/Gtk/AboutWindow.vala:330 -#, c-format msgid "Third Party Tools" msgstr "Alati treće strane" -#: src/Common/LinuxKernel.vala:1252 src/Gtk/MainWindow.vala:689 -msgid "This kernel is already installed." -msgstr "Ovaj kernel je već instaliran." - -#: src/Common/LinuxKernel.vala:1353 -msgid "" -"This kernel is currently running and cannot be removed.\n" -" Install another kernel before removing this one." -msgstr "" -"Ovaj kernel je trenutno pokrenut i ne može se ukloniti.\n" -" Instalirajte drugi kernel prije uklanjanja trenutnog kernela." +#: src/Utility/Gtk/AboutWindow.vala:338 +msgid "Artists" +msgstr "Dizajneri" #: src/Utility/Gtk/AboutWindow.vala:346 -#, c-format msgid "Translators" msgstr "Prevoditelji" -#: src/Common/LinuxKernel.vala:1337 src/Common/LinuxKernel.vala:1390 -msgid "Un-install completed" -msgstr "Deinstalacija završena" +#: src/Utility/Gtk/AboutWindow.vala:354 +msgid "Documenters" +msgstr "Autori dokumentacije" -#: src/Common/LinuxKernel.vala:1340 src/Common/LinuxKernel.vala:1393 -msgid "Un-install completed with errors" -msgstr "Deinstalacija završena s greškama" +#: src/Utility/Gtk/CustomMessageDialog.vala:159 +msgid "Yes" +msgstr "Da" -#: src/Console/AppConsole.vala:196 src/Gtk/AppGtk.vala:166 -msgid "Unknown option" -msgstr "Nepoznata mogućnost" +#: src/Utility/Gtk/CustomMessageDialog.vala:160 +msgid "No" +msgstr "Ne" -#: src/Gtk/MainWindow.vala:179 -msgid "Version" -msgstr "Inačica" +#: src/Utility/Gtk/GtkHelper.vala:17 +msgid "Error" +msgstr "Greška" -#: src/Utility/TeeJee.Logging.vala:89 -msgid "W" -msgstr "Z" +#: src/Utility/Gtk/GtkHelper.vala:93 +msgid "Missing Icon" +msgstr "Ikone koje nedostaju" -#: src/Gtk/SettingsDialog.vala:155 -msgid "Week(s)" -msgstr "Tjedan(a)" +#: src/Utility/TeeJee.FileSystem.vala:97 src/Utility/TeeJee.FileSystem.vala:100 +msgid "File deleted" +msgstr "Datoteka obrisana" -#: src/Utility/Gtk/CustomMessageDialog.vala:159 -msgid "Yes" -msgstr "Da" +#: src/Utility/TeeJee.FileSystem.vala:106 +msgid "Failed to delete file" +msgstr "Neuspjelo brisanje datoteke" -#: src/Utility/AppLock.vala:56 -msgid "[Warning] Deleted invalid lock" -msgstr "[Upozorenje] Obrisano je neispravno zaključavanje" +#: src/Utility/TeeJee.FileSystem.vala:162 +msgid "Failed to read file" +msgstr "Neuspjelo čitanje datoteke" -#: src/Gtk/SettingsDialog.vala:232 -msgid "seconds" -msgstr "" +#: src/Utility/TeeJee.FileSystem.vala:187 +#: src/Utility/TeeJee.FileSystem.vala:190 +msgid "File saved" +msgstr "Datoteka je spremljenja" -#, fuzzy -#~ msgid "Hide kernels older than " -#~ msgstr "Sakrij kernele starije od inačice 4.0" - -#~ msgid "Booting previous kernels" -#~ msgstr "Pokretanje prijašnjeg kernela" - -#~ msgid "GRUB Options" -#~ msgstr "GRUB mogućnosti" - -#~ msgid "" -#~ "Mainline kernels can sometimes cause problems if there are proprietary " -#~ "drivers installed on your system. These issues include:\n" -#~ "\n" -#~ "▰ WiFi not working\n" -#~ "▰ Black screen on startup\n" -#~ "▰ Random system freeze\n" -#~ "\n" -#~ "If you face any of these issues there is no need to panic.\n" -#~ "\n" -#~ "▰ Reboot your system\n" -#~ "▰ Select 'Advanced Boot Options' from the GRUB boot menu\n" -#~ "▰ Select an older kernel from the list displayed on this screen\n" -#~ "▰ Your system will boot using the selected kernel\n" -#~ "▰ You can now uninstall the kernel that is causing issues\n" -#~ msgstr "" -#~ "Mainline kerneli ponekada mogu prouzrokovati probleme ako su instalirani " -#~ "vlasnički upravljački programi na vašem sustavu. Ti problemi uključuju:\n" -#~ "\n" -#~ "▰ Bežična mreža ne radi\n" -#~ "▰ Crni zaslon pri pokretanju\n" -#~ "▰ Slučajna smrzavanja sustava\n" -#~ "\n" -#~ "Ako se suočite s bilo kojim od ovih problema nemojte paničariti.\n" -#~ "\n" -#~ "▰ Ponovno pokrenite svoj sustav\n" -#~ "▰ Odaberite 'Napredne mogućnosti pokretanja' s GRUB izbornika pokretanja\n" -#~ "▰ Odaberite stariji kernel s popisa prikazanog na zaslonu\n" -#~ "▰ Vaš sustav će se pokrenuti pomoću odabranog kernela\n" -#~ "▰ Sada možete ukloniti kernel koji uzrokuje probleme\n" - -#~ msgid "" -#~ "Time (in seconds) to display the GRUB menu\n" -#~ "\n" -#~ "0 = Do not show menu\n" -#~ "-1 = Show indefinitely till user selects" -#~ msgstr "" -#~ "Vrijeme (u sekundama) prikaza GRUB izbornika\n" -#~ "\n" -#~ "0 = Ne prikazuj izbornik\n" -#~ "-1 = Prikaži izbornik sve do korisnikovog odabira" - -#~ msgid "" -#~ "Updates the GRUB menu after installing or removing kernels, so that the " -#~ "menu is displayed for 2 seconds at boot time. This will help you recover " -#~ "from a bad kernel update by selecting another kernel to boot. During " -#~ "boot, use the 'Advanced options for Ubuntu' menu entry to select another " -#~ "kernel.\n" -#~ "\n" -#~ "0 = Do not show menu\n" -#~ "-1 = Show indefinitely till user selects" -#~ msgstr "" -#~ "Nadopunjuje GRUB izbornik nakon instalacije ili uklanjanja kernela, tako " -#~ "da je izbornik prikazan 2 sekunde pri pokretanju računala. Ovo će vam " -#~ "pomoći u slučaju nepotpune nadopune kernela odabirom drugog kernela za " -#~ "pokretanje. Tijekom pokretanja, koristite stavku izbornika 'Napredne " -#~ "mogućnosti za Ubuntu' kako bi odabrali drugi kernel.\n" -#~ "\n" -#~ "0 = Ne prikazuj izbornik\n" -#~ "-1 = Prikaži izbornik sve do korisnikovog odabira" - -#~ msgid "Updating GRUB menu" -#~ msgstr "Nadopuna GRUB izbornika" - -#~ msgid "Run 'ukuu --list' and use the version string listed in first column" -#~ msgstr "Pokrenite 'ukuu --list' i koristite izraz inačice u prvom stupcu" - -#~ msgid "" -#~ "Did you find this software useful?\n" -#~ "\n" -#~ "You can buy me a coffee or make a donation via PayPal to show your " -#~ "support. Or just drop me an email and say Hi. This application is " -#~ "completely free and will continue to remain that way. Your contributions " -#~ "will help in keeping this project alive and improving it further.\n" -#~ "\n" -#~ "Feel free to send me an email if you find any issues in this application " -#~ "or if you need any changes. Suggestions and feedback are always welcome.\n" -#~ "\n" -#~ "Thanks,\n" -#~ "Tony George\n" -#~ "(teejeetech@gmail.com)" -#~ msgstr "" -#~ "Je li vam ovaj softver bio koristan?\n" -#~ "\n" -#~ "Možete mi kupiti kavu ili donirati putem PayPala kako bi me podržali. Ili " -#~ "mi jednostavno pošaljite e-poštu i recite mi Bok. Ova aplikacija je u " -#~ "potpunosti besplatna i takva će i ostati. Vaš doprinos će pomoći održati " -#~ "ovaj projekt živim i poboljšanim u budućnosti.\n" -#~ "\n" -#~ "Slobodno mi pošaljite e-poštu ako imate bilo kakav problem s ovom " -#~ "aplikacijom ili želite neku promjenu. Prijedlozi i povratne informacije " -#~ "su uvijek dobrodošle.\n" -#~ "\n" -#~ "Hvala Vam,\n" -#~ "Tony George\n" -#~ "(teejeetech@gmail.com)" - -#~ msgid "Display GRUB menu during boot" -#~ msgstr "Prikaži GRUB izbornik tijekom pokretanja sustava" - -#~ msgid "Donate" -#~ msgstr "Donirajte" - -#~ msgid "Donate with Google Wallet" -#~ msgstr "Donirajte putem Google Walleta" - -#~ msgid "Donate with PayPal" -#~ msgstr "Donirajte putem PayPala" - -#~ msgid "Donations" -#~ msgstr "Donacije" - -#~ msgid "File read" -#~ msgstr "Datoteka je pročitana" - -#~ msgid "" -#~ "Mainline kernels can sometimes cause problems if there are proprietary " -#~ "drivers installed on your system. These issues include:\n" -#~ "\n" -#~ "\\342\\226\\260 WiFi not working\n" -#~ "\\342\\226\\260 Black screen on startup\n" -#~ "\\342\\226\\260 Random system freeze\n" -#~ "\n" -#~ "If you face any of these issues there is no need to panic.\n" -#~ "\n" -#~ "\\342\\226\\260 Reboot your system\n" -#~ "\\342\\226\\260 Select 'Advanced Boot Options' from the GRUB boot menu\n" -#~ "\\342\\226\\260 Select an older kernel from the list displayed on this " -#~ "screen\n" -#~ "\\342\\226\\260 Your system will boot using the selected kernel\n" -#~ "\\342\\226\\260 You can now uninstall the kernel that is causing issues\n" -#~ msgstr "" -#~ "Mainline kerneli ponekad mogu prouzrokovati probleme ako su vlasnički " -#~ "upravljački programi instalirani na vašem sustavu. Ti problemi " -#~ "obuhvaćaju:\n" -#~ "\n" -#~ "\\342\\226\\260 Bežična mreža ne radi\n" -#~ "\\342\\226\\260 Crni zaslon pri pokretanju\n" -#~ "\\342\\226\\260 Naizmjenično smrzavanje sustava\n" -#~ "\n" -#~ "Ako se suočite sa nekim od ovih problema ne paničarite.\n" -#~ "\n" -#~ "\\342\\226\\260 Ponovno pokrenite vaš sustav\n" -#~ "\\342\\226\\260 Odaberite 'Napredne mogućnosti' iz GRUB izbornika\n" -#~ "\\342\\226\\260 Odaberite stariji kernel s popisa prikazanih na ovom " -#~ "zaslonu\n" -#~ "\\342\\226\\260 Vaš sustav će se pokrenuti koristeći odabrani kernel\n" -#~ "\\342\\226\\260 Sada možete ukloniti kernel koji uzrokuje probleme\n" - -#~ msgid "Notify if kernel update is available" -#~ msgstr "Obavijesti kada je nadopuna kernela dostupna" - -#~ msgid "Send Email" -#~ msgstr "Pošalji e-poštu" - -#~ msgid "Use specified user's cache directory" -#~ msgstr "Koristi korisnikom određeni direktorij predmemorije" - -#~ msgid "Using cache directory" -#~ msgstr "Direktorij predmemorije u upotrebi" - -#~ msgid "Visit Website" -#~ msgstr "Posjetite web stranicu" - -#~ msgid "Enter path or browse for directory" -#~ msgstr "Upišite putanju ili odabrite direktorij" - -#~ msgid "Open" -#~ msgstr "Otvori" - -#~ msgid "Open Ukuu" -#~ msgstr "Otvori Ukuu" - -#~ msgid "Root Access Required" -#~ msgstr "Potreban je korijenski pristup" - -#~ msgid "Root access is required for running this application." -#~ msgstr "Potreban je korijenski pristup" - -#~ msgid "Run the application as root or using gksu/sudo." -#~ msgstr "" -#~ "Pokrenite aplikaciju kao korijenski korisnik upotrebom naredbe gksu/sudo." - -#~ msgid "Select Path" -#~ msgstr "Odaberi putanju" +#: src/Utility/TeeJee.FileSystem.vala:197 +msgid "Failed to write file" +msgstr "Neuspjelo zapisivanje datoteke" + +#: src/Utility/TeeJee.FileSystem.vala:210 +#: src/Utility/TeeJee.FileSystem.vala:213 +msgid "File copied" +msgstr "Datoteka kopirana" + +#: src/Utility/TeeJee.FileSystem.vala:221 +msgid "Failed to copy file" +msgstr "Neuspjelo kopiranje datoteke" + +#: src/Utility/TeeJee.FileSystem.vala:231 +#: src/Utility/TeeJee.FileSystem.vala:538 +msgid "File not found" +msgstr "Datoteka nije pronađena" + +#: src/Utility/TeeJee.FileSystem.vala:245 +#: src/Utility/TeeJee.FileSystem.vala:248 +msgid "File moved" +msgstr "Datoteka je premještena" + +#: src/Utility/TeeJee.FileSystem.vala:253 +msgid "Failed to move file" +msgstr "Neuspjelo premještanje datoteke" + +#: src/Utility/TeeJee.FileSystem.vala:349 +#: src/Utility/TeeJee.FileSystem.vala:352 +#: src/Utility/TeeJee.FileSystem.vala:378 +msgid "Created directory" +msgstr "Stvoren direktorij" + +#: src/Utility/TeeJee.FileSystem.vala:359 +msgid "Failed to create dir" +msgstr "Neuspjelo stvarnje direktorija" + +#: src/Utility/TeeJee.FileSystem.vala:375 +msgid "Deleted directory" +msgstr "Obrisan direktorij" + +#: src/Utility/TeeJee.FileSystem.vala:509 +msgid "Dir not found" +msgstr "Direktorij nije pronađen" + +#: src/Utility/TeeJee.FileSystem.vala:662 +#: src/Utility/TeeJee.FileSystem.vala:711 +msgid "File is missing" +msgstr "Datoteka nedostaje" + +#: src/Utility/TeeJee.Logging.vala:89 +msgid "E" +msgstr "G" + +#: src/Utility/TeeJee.Logging.vala:89 +msgid "W" +msgstr "Z" + +#: src/Utility/TeeJee.Process.vala:513 +msgid "Stopped" +msgstr "Zaustavljeno" diff --git a/po/messages.pot b/po/messages.pot index fee20f13..bbd29ebe 100644 --- a/po/messages.pot +++ b/po/messages.pot @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: mainline 1.0.6\n" -"Report-Msgid-Bugs-To: b.kenyon.w@gmail.com\n" -"POT-Creation-Date: 2020-05-01 13:31-0400\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-05-02 16:41-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,290 +17,282 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" -#: src/Gtk/MainWindow.vala:494 -msgid "About" +#: src/Common/LinuxKernel.vala:92 +msgid "Distribution" msgstr "" -#: src/Console/AppConsole.vala:113 -msgid "Admin access is required for running this application." +#: src/Common/LinuxKernel.vala:106 +msgid "Architecture" msgstr "" -#: src/Utility/AppLock.vala:51 -msgid "Another instance of this application is running" +#: src/Common/LinuxKernel.vala:257 +msgid "Index is stale" msgstr "" -#: src/Common/LinuxKernel.vala:106 -msgid "Architecture" +#: src/Common/LinuxKernel.vala:260 +msgid "Index is fresh" msgstr "" -#: src/Utility/Gtk/AboutWindow.vala:338 -#, c-format -msgid "Artists" +#: src/Common/LinuxKernel.vala:365 +msgid "Fetching index..." msgstr "" -#: src/Console/AppConsole.vala:99 -msgid "Assume Yes for all prompts (non-interactive mode)" +#: src/Common/LinuxKernel.vala:408 +msgid "Fetching index from kernel.ubuntu.com..." msgstr "" -#: src/Utility/Gtk/AboutWindow.vala:314 -#, c-format -msgid "Authors" +#: src/Common/LinuxKernel.vala:727 +msgid "Could not find running kernel in list!" msgstr "" -#: src/Common/LinuxKernel.vala:1164 -msgid "Available Kernels" +#: src/Common/LinuxKernel.vala:733 +msgid "Could not find any kernels to remove" msgstr "" -#: src/Utility/Gtk/AboutWindow.vala:285 -msgid "Back" +#: src/Common/LinuxKernel.vala:742 +msgid "The following kernels will be removed:" msgstr "" -#: src/Console/AppConsole.vala:203 src/Gtk/AppGtk.vala:110 -msgid "Cache" +#: src/Common/LinuxKernel.vala:749 +msgid "Continue ?" msgstr "" -#: src/Gtk/ProgressWindow.vala:145 src/Gtk/TerminalWindow.vala:148 -#: src/Gtk/UpdateNotificationWindow.vala:167 -#: src/Utility/Gtk/CustomMessageDialog.vala:155 -msgid "Cancel" +#: src/Common/LinuxKernel.vala:777 src/Console/AppConsole.vala:359 +msgid "Latest update" msgstr "" -#: src/Gtk/MainWindow.vala:462 -msgid "Changes" +#: src/Common/LinuxKernel.vala:788 src/Console/AppConsole.vala:366 +msgid "Latest point update" msgstr "" -#: src/Gtk/SettingsDialog.vala:120 -msgid "Check every" +#: src/Common/LinuxKernel.vala:796 src/Console/AppConsole.vala:371 +#: src/Console/AppConsole.vala:429 src/Gtk/MainWindow.vala:804 +msgid "No updates found" msgstr "" -#: src/Console/AppConsole.vala:82 -msgid "Check for kernel updates" +#: src/Common/LinuxKernel.vala:806 +#, c-format +msgid "Install Linux v%s ? (y/n): " msgstr "" -#: src/Console/AppConsole.vala:83 -msgid "Check for kernel updates and notify current user" +#: src/Common/LinuxKernel.vala:1072 +msgid "Packages Available" msgstr "" -#: src/Gtk/TerminalWindow.vala:158 src/Utility/Gtk/AboutWindow.vala:295 -msgid "Close" +#: src/Common/LinuxKernel.vala:1080 +msgid "Packages Installed" msgstr "" -#: src/Console/AppConsole.vala:340 -msgid "Command not specified" +#: src/Common/LinuxKernel.vala:1164 +msgid "Available Kernels" msgstr "" -#: src/Console/AppConsole.vala:80 -msgid "Commands" +#: src/Common/LinuxKernel.vala:1181 src/Gtk/MainWindow.vala:208 +msgid "Installed" msgstr "" -#: src/Common/Main.vala:107 -msgid "Commands listed below are not available on this system" +#: src/Common/LinuxKernel.vala:1181 src/Gtk/MainWindow.vala:208 +msgid "Running" msgstr "" -#: src/Common/LinuxKernel.vala:749 -#, c-format -msgid "Continue ?" +#: src/Common/LinuxKernel.vala:1210 +msgid "Downloading" msgstr "" -#: src/Utility/Gtk/AboutWindow.vala:322 -#, c-format -msgid "Contributions" +#: src/Common/LinuxKernel.vala:1229 +#: src/Utility/Gtk/CustomMessageDialog.vala:150 +#: src/Utility/Gtk/CustomMessageDialog.vala:154 +msgid "OK" msgstr "" -#: src/Common/LinuxKernel.vala:733 -msgid "Could not find any kernels to remove" +#: src/Common/LinuxKernel.vala:1238 +msgid "ERROR" msgstr "" -#: src/Console/AppConsole.vala:308 src/Gtk/MainWindow.vala:100 -msgid "Could not find requested version" +#: src/Common/LinuxKernel.vala:1252 src/Gtk/MainWindow.vala:689 +msgid "This kernel is already installed." msgstr "" -#: src/Common/LinuxKernel.vala:727 -msgid "Could not find running kernel in list!" +#: src/Common/LinuxKernel.vala:1281 +msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" -#: src/Utility/TeeJee.FileSystem.vala:349 -#: src/Utility/TeeJee.FileSystem.vala:352 -#: src/Utility/TeeJee.FileSystem.vala:378 -msgid "Created directory" +#: src/Common/LinuxKernel.vala:1284 +msgid "Installation completed with errors" msgstr "" -#: src/Utility/Gtk/AboutWindow.vala:272 src/Utility/Gtk/AboutWindow.vala:289 -msgid "Credits" +#: src/Common/LinuxKernel.vala:1300 +msgid "" +"Selected kernel is currently running and cannot be removed.\n" +" Install another kernel before removing this one." msgstr "" -#: src/Gtk/SettingsDialog.vala:153 -msgid "Day(s)" +#: src/Common/LinuxKernel.vala:1305 +msgid "Preparing to remove selected kernels" msgstr "" -#: src/Utility/TeeJee.FileSystem.vala:375 -msgid "Deleted directory" +#: src/Common/LinuxKernel.vala:1337 src/Common/LinuxKernel.vala:1390 +msgid "Un-install completed" msgstr "" -#: src/Utility/TeeJee.FileSystem.vala:509 -msgid "Dir not found" +#: src/Common/LinuxKernel.vala:1340 src/Common/LinuxKernel.vala:1393 +msgid "Un-install completed with errors" msgstr "" -#: src/Gtk/SettingsDialog.vala:160 -msgid "Display" +#: src/Common/LinuxKernel.vala:1353 +msgid "" +"This kernel is currently running and cannot be removed.\n" +" Install another kernel before removing this one." msgstr "" -#: src/Common/LinuxKernel.vala:92 -msgid "Distribution" +#: src/Common/Main.vala:107 +msgid "Commands listed below are not available on this system" msgstr "" -#: src/Utility/Gtk/AboutWindow.vala:354 -#, c-format -msgid "Documenters" +#: src/Common/Main.vala:108 +msgid "Please install required packages and try again" msgstr "" -#: src/Console/AppConsole.vala:91 -msgid "Download packages for specified kernel" +#: src/Common/Package.vala:126 src/Common/Package.vala:188 +#, c-format +msgid "File not found: %s" msgstr "" -#: src/Common/LinuxKernel.vala:1210 -#, c-format -msgid "Downloading" +#: src/Console/AppConsole.vala:78 src/Gtk/AppGtk.vala:179 +msgid "Syntax" msgstr "" -#: src/Utility/TeeJee.Logging.vala:89 -msgid "E" +#: src/Console/AppConsole.vala:80 +msgid "Commands" msgstr "" -#: src/Common/LinuxKernel.vala:1238 -#, c-format -msgid "ERROR" +#: src/Console/AppConsole.vala:82 +msgid "Check for kernel updates" msgstr "" -#: src/Console/AppConsole.vala:98 -msgid "Enable verbose debugging output" +#: src/Console/AppConsole.vala:83 +msgid "Check for kernel updates and notify current user" msgstr "" -#: src/Utility/Gtk/GtkHelper.vala:17 -msgid "Error" +#: src/Console/AppConsole.vala:84 +msgid "List all available mainline kernels" msgstr "" -#: src/Utility/TeeJee.FileSystem.vala:221 -msgid "Failed to copy file" +#: src/Console/AppConsole.vala:85 +msgid "List installed kernels" msgstr "" -#: src/Utility/TeeJee.FileSystem.vala:359 -msgid "Failed to create dir" +#: src/Console/AppConsole.vala:86 +msgid "Install latest mainline kernel" msgstr "" -#: src/Utility/TeeJee.FileSystem.vala:106 -msgid "Failed to delete file" +#: src/Console/AppConsole.vala:87 +msgid "Install latest point update for current series" msgstr "" -#: src/Utility/TeeJee.FileSystem.vala:253 -msgid "Failed to move file" +#: src/Console/AppConsole.vala:88 +msgid "Install specified mainline kernel" msgstr "" -#: src/Utility/TeeJee.FileSystem.vala:162 -msgid "Failed to read file" +#: src/Console/AppConsole.vala:89 +msgid "Remove specified kernel" msgstr "" -#: src/Utility/TeeJee.FileSystem.vala:197 -msgid "Failed to write file" +#: src/Console/AppConsole.vala:90 src/Gtk/MainWindow.vala:424 +msgid "Remove installed kernels older than running kernel" msgstr "" -#: src/Common/LinuxKernel.vala:408 -msgid "Fetching index from kernel.ubuntu.com..." +#: src/Console/AppConsole.vala:91 +msgid "Download packages for specified kernel" msgstr "" -#: src/Common/LinuxKernel.vala:365 -msgid "Fetching index..." +#: src/Console/AppConsole.vala:92 src/Console/AppConsole.vala:97 +msgid "Remove files from application cache" msgstr "" -#: src/Utility/TeeJee.FileSystem.vala:210 -#: src/Utility/TeeJee.FileSystem.vala:213 -msgid "File copied" +#: src/Console/AppConsole.vala:93 +msgid "Show unstable and RC releases" msgstr "" -#: src/Utility/TeeJee.FileSystem.vala:97 src/Utility/TeeJee.FileSystem.vala:100 -msgid "File deleted" +#: src/Console/AppConsole.vala:95 src/Gtk/AppGtk.vala:181 +msgid "Options" msgstr "" -#: src/Utility/TeeJee.FileSystem.vala:662 -#: src/Utility/TeeJee.FileSystem.vala:711 -msgid "File is missing" +#: src/Console/AppConsole.vala:98 +msgid "Enable verbose debugging output" msgstr "" -#: src/Utility/TeeJee.FileSystem.vala:245 -#: src/Utility/TeeJee.FileSystem.vala:248 -msgid "File moved" +#: src/Console/AppConsole.vala:99 +msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "" -#: src/Utility/TeeJee.FileSystem.vala:231 -#: src/Utility/TeeJee.FileSystem.vala:538 -msgid "File not found" +#: src/Console/AppConsole.vala:100 +msgid "Override user" msgstr "" -#: src/Common/Package.vala:126 src/Common/Package.vala:188 -#, c-format -msgid "File not found: %s" +#: src/Console/AppConsole.vala:113 +msgid "Admin access is required for running this application." msgstr "" -#: src/Utility/TeeJee.FileSystem.vala:187 -#: src/Utility/TeeJee.FileSystem.vala:190 -msgid "File saved" +#: src/Console/AppConsole.vala:116 +msgid "Run the application as admin with pkexec or sudo." msgstr "" -#: src/Gtk/SettingsDialog.vala:168 -msgid "Hide unstable and RC releases" +#: src/Console/AppConsole.vala:196 src/Gtk/AppGtk.vala:166 +msgid "Unknown option" msgstr "" -#: src/Gtk/SettingsDialog.vala:151 -msgid "Hour(s)" +#: src/Console/AppConsole.vala:198 src/Console/AppConsole.vala:312 +#: src/Console/AppConsole.vala:341 +msgid "Run '" msgstr "" -#: src/Gtk/UpdateNotificationWindow.vala:168 -msgid "Ignore this update" +#: src/Console/AppConsole.vala:203 src/Gtk/AppGtk.vala:110 +msgid "Cache" msgstr "" -#: src/Common/LinuxKernel.vala:260 -msgid "Index is fresh" +#: src/Console/AppConsole.vala:204 src/Gtk/AppGtk.vala:111 +msgid "Temp" msgstr "" -#: src/Common/LinuxKernel.vala:257 -msgid "Index is stale" +#: src/Console/AppConsole.vala:284 src/Console/AppConsole.vala:321 +msgid "No kernels specified" msgstr "" -#: src/Gtk/UpdateNotificationWindow.vala:147 src/Gtk/MainWindow.vala:357 -msgid "Install" +#: src/Console/AppConsole.vala:290 +msgid "Multiple kernels selected for installation. Select only one." msgstr "" -#: src/Common/LinuxKernel.vala:806 -#, c-format -msgid "Install Linux v%s ? (y/n): " +#: src/Console/AppConsole.vala:308 src/Gtk/MainWindow.vala:100 +msgid "Could not find requested version" msgstr "" -#: src/Console/AppConsole.vala:86 -msgid "Install latest mainline kernel" +#: src/Console/AppConsole.vala:340 +msgid "Command not specified" msgstr "" -#: src/Console/AppConsole.vala:87 -msgid "Install latest point update for current series" +#: src/Gtk/AppGtk.vala:183 +msgid "Print debug information" msgstr "" -#: src/Console/AppConsole.vala:88 -msgid "Install specified mainline kernel" +#: src/Gtk/AppGtk.vala:184 +msgid "Show all options" msgstr "" -#: src/Gtk/UpdateNotificationWindow.vala:148 -msgid "Install this kernel" +#: src/Gtk/MainWindow.vala:150 +msgid "Kernel" msgstr "" -#: src/Common/LinuxKernel.vala:1284 -msgid "Installation completed with errors" +#: src/Gtk/MainWindow.vala:179 +msgid "Version" msgstr "" -#: src/Common/LinuxKernel.vala:1281 -msgid "Installation completed. A reboot is required to use the new kernel." +#: src/Gtk/MainWindow.vala:196 +msgid "Status" msgstr "" -#: src/Common/LinuxKernel.vala:1181 src/Gtk/MainWindow.vala:208 -msgid "Installed" +#: src/Gtk/MainWindow.vala:341 +msgid "Refresh" msgstr "" #: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:558 @@ -308,72 +300,67 @@ msgstr "" msgid "Internet connection is not active" msgstr "" -#: src/Gtk/SettingsDialog.vala:218 -msgid "Internet connection timeout in " -msgstr "" - -#: src/Gtk/MainWindow.vala:150 -msgid "Kernel" +#: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:558 +#: src/Gtk/MainWindow.vala:694 +msgid "No Internet" msgstr "" -#: src/Gtk/MainWindow.vala:542 -msgid "Kernel upgrade utility for Ubuntu-based distributions" +#: src/Gtk/MainWindow.vala:357 src/Gtk/UpdateNotificationWindow.vala:147 +msgid "Install" msgstr "" -#: src/Common/LinuxKernel.vala:788 src/Console/AppConsole.vala:366 -#, c-format -msgid "Latest point update" +#: src/Gtk/MainWindow.vala:366 +msgid "Multiple Kernels Selected" msgstr "" -#: src/Common/LinuxKernel.vala:777 src/Console/AppConsole.vala:359 -#, c-format -msgid "Latest update" +#: src/Gtk/MainWindow.vala:366 +msgid "Select a single kernel to install" msgstr "" -#: src/Console/AppConsole.vala:84 -msgid "List all available mainline kernels" +#: src/Gtk/MainWindow.vala:369 src/Gtk/MainWindow.vala:380 +msgid "Not Selected" msgstr "" -#: src/Gtk/UpdateNotificationWindow.vala:158 -msgid "List available kernels" +#: src/Gtk/MainWindow.vala:369 +msgid "Select the kernel to install" msgstr "" -#: src/Console/AppConsole.vala:85 -msgid "List installed kernels" +#: src/Gtk/MainWindow.vala:374 +msgid "Remove" msgstr "" -#: src/Utility/Gtk/GtkHelper.vala:93 -msgid "Missing Icon" +#: src/Gtk/MainWindow.vala:380 +msgid "Select the kernels to remove" msgstr "" -#: src/Gtk/MainWindow.vala:366 -msgid "Multiple Kernels Selected" +#: src/Gtk/MainWindow.vala:423 +msgid "Purge" msgstr "" -#: src/Console/AppConsole.vala:290 -msgid "Multiple kernels selected for installation. Select only one." +#: src/Gtk/MainWindow.vala:462 +msgid "Changes" msgstr "" -#: src/Utility/Gtk/CustomMessageDialog.vala:160 -msgid "No" +#: src/Gtk/MainWindow.vala:473 src/Gtk/SettingsDialog.vala:55 +msgid "Settings" msgstr "" -#: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:558 -#: src/Gtk/MainWindow.vala:694 -msgid "No Internet" +#: src/Gtk/MainWindow.vala:494 +msgid "About" msgstr "" -#: src/Console/AppConsole.vala:284 src/Console/AppConsole.vala:321 -msgid "No kernels specified" +#: src/Gtk/MainWindow.vala:542 +msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "" -#: src/Common/LinuxKernel.vala:796 src/Console/AppConsole.vala:371 -#: src/Console/AppConsole.vala:429 src/Gtk/MainWindow.vala:804 -msgid "No updates found" +#: src/Gtk/MainWindow.vala:577 +msgid "Refreshing..." msgstr "" -#: src/Gtk/MainWindow.vala:369 src/Gtk/MainWindow.vala:380 -msgid "Not Selected" +#: src/Gtk/ProgressWindow.vala:145 src/Gtk/TerminalWindow.vala:148 +#: src/Gtk/UpdateNotificationWindow.vala:167 +#: src/Utility/Gtk/CustomMessageDialog.vala:155 +msgid "Cancel" msgstr "" #: src/Gtk/SettingsDialog.vala:65 @@ -388,211 +375,201 @@ msgstr "" msgid "Notify if a point release is available" msgstr "" -#: src/Common/LinuxKernel.vala:1229 -#: src/Utility/Gtk/CustomMessageDialog.vala:150 -#: src/Utility/Gtk/CustomMessageDialog.vala:154 -#, c-format -msgid "OK" -msgstr "" - -#: src/Console/AppConsole.vala:95 src/Gtk/AppGtk.vala:181 -msgid "Options" +#: src/Gtk/SettingsDialog.vala:94 +msgid "Show notification bubble on desktop" msgstr "" -#: src/Gtk/SettingsDialog.vala:197 -msgid "Other" +#: src/Gtk/SettingsDialog.vala:105 +msgid "Show notification dialog" msgstr "" -#: src/Console/AppConsole.vala:100 -msgid "Override user" +#: src/Gtk/SettingsDialog.vala:120 +msgid "Check every" msgstr "" -#: src/Common/LinuxKernel.vala:1072 -#, c-format -msgid "Packages Available" +#: src/Gtk/SettingsDialog.vala:151 +msgid "Hour(s)" msgstr "" -#: src/Common/LinuxKernel.vala:1080 -#, c-format -msgid "Packages Installed" +#: src/Gtk/SettingsDialog.vala:153 +msgid "Day(s)" msgstr "" -#: src/Common/Main.vala:108 -msgid "Please install required packages and try again" +#: src/Gtk/SettingsDialog.vala:155 +msgid "Week(s)" msgstr "" -#: src/Common/LinuxKernel.vala:1305 -msgid "Preparing to remove selected kernels" +#: src/Gtk/SettingsDialog.vala:160 +msgid "Display" msgstr "" -#: src/Gtk/AppGtk.vala:183 -msgid "Print debug information" +#: src/Gtk/SettingsDialog.vala:168 +msgid "Hide unstable and RC releases" msgstr "" -#: src/Gtk/MainWindow.vala:423 -msgid "Purge" +#: src/Gtk/SettingsDialog.vala:182 +msgid "Show N previous major versions " msgstr "" -#: src/Gtk/MainWindow.vala:341 -msgid "Refresh" +#: src/Gtk/SettingsDialog.vala:197 +msgid "Other" msgstr "" -#: src/Gtk/MainWindow.vala:577 -msgid "Refreshing..." +#: src/Gtk/SettingsDialog.vala:205 +msgid "Skip internet connection check" msgstr "" -#: src/Gtk/MainWindow.vala:374 -msgid "Remove" +#: src/Gtk/SettingsDialog.vala:218 +msgid "Internet connection timeout in " msgstr "" -#: src/Console/AppConsole.vala:92 src/Console/AppConsole.vala:97 -msgid "Remove files from application cache" +#: src/Gtk/SettingsDialog.vala:232 +msgid "seconds" msgstr "" -#: src/Console/AppConsole.vala:90 src/Gtk/MainWindow.vala:424 -msgid "Remove installed kernels older than running kernel" +#: src/Gtk/TerminalWindow.vala:158 src/Utility/Gtk/AboutWindow.vala:295 +msgid "Close" msgstr "" -#: src/Console/AppConsole.vala:89 -msgid "Remove specified kernel" +#: src/Gtk/UpdateNotificationWindow.vala:148 +msgid "Install this kernel" msgstr "" -#: src/Console/AppConsole.vala:198 src/Console/AppConsole.vala:312 -#: src/Console/AppConsole.vala:341 -msgid "Run '" +#: src/Gtk/UpdateNotificationWindow.vala:157 +msgid "Show" msgstr "" -#: src/Console/AppConsole.vala:116 -msgid "Run the application as admin with pkexec or sudo." +#: src/Gtk/UpdateNotificationWindow.vala:158 +msgid "List available kernels" msgstr "" -#: src/Common/LinuxKernel.vala:1181 src/Gtk/MainWindow.vala:208 -msgid "Running" +#: src/Gtk/UpdateNotificationWindow.vala:168 +msgid "Ignore this update" msgstr "" -#: src/Gtk/MainWindow.vala:366 -msgid "Select a single kernel to install" +#: src/Utility/Gtk/AboutWindow.vala:272 src/Utility/Gtk/AboutWindow.vala:289 +msgid "Credits" msgstr "" -#: src/Gtk/MainWindow.vala:369 -msgid "Select the kernel to install" +#: src/Utility/Gtk/AboutWindow.vala:285 +msgid "Back" msgstr "" -#: src/Gtk/MainWindow.vala:380 -msgid "Select the kernels to remove" +#: src/Utility/Gtk/AboutWindow.vala:314 +msgid "Authors" msgstr "" -#: src/Common/LinuxKernel.vala:1300 -msgid "" -"Selected kernel is currently running and cannot be removed.\n" -" Install another kernel before removing this one." +#: src/Utility/Gtk/AboutWindow.vala:322 +msgid "Contributions" msgstr "" -#: src/Gtk/MainWindow.vala:473 src/Gtk/SettingsDialog.vala:55 -msgid "Settings" +#: src/Utility/Gtk/AboutWindow.vala:330 +msgid "Third Party Tools" msgstr "" -#: src/Gtk/UpdateNotificationWindow.vala:157 -msgid "Show" +#: src/Utility/Gtk/AboutWindow.vala:338 +msgid "Artists" msgstr "" -#: src/Gtk/SettingsDialog.vala:182 -msgid "Show N previous major versions " +#: src/Utility/Gtk/AboutWindow.vala:346 +msgid "Translators" msgstr "" -#: src/Gtk/AppGtk.vala:184 -msgid "Show all options" +#: src/Utility/Gtk/AboutWindow.vala:354 +msgid "Documenters" msgstr "" -#: src/Gtk/SettingsDialog.vala:94 -msgid "Show notification bubble on desktop" +#: src/Utility/Gtk/CustomMessageDialog.vala:159 +msgid "Yes" msgstr "" -#: src/Gtk/SettingsDialog.vala:105 -msgid "Show notification dialog" +#: src/Utility/Gtk/CustomMessageDialog.vala:160 +msgid "No" msgstr "" -#: src/Console/AppConsole.vala:93 -msgid "Show unstable and RC releases" +#: src/Utility/Gtk/GtkHelper.vala:17 +msgid "Error" msgstr "" -#: src/Gtk/SettingsDialog.vala:205 -msgid "Skip internet connection check" +#: src/Utility/Gtk/GtkHelper.vala:93 +msgid "Missing Icon" msgstr "" -#: src/Gtk/MainWindow.vala:196 -msgid "Status" +#: src/Utility/TeeJee.FileSystem.vala:97 src/Utility/TeeJee.FileSystem.vala:100 +msgid "File deleted" msgstr "" -#: src/Utility/TeeJee.Process.vala:513 -msgid "Stopped" +#: src/Utility/TeeJee.FileSystem.vala:106 +msgid "Failed to delete file" msgstr "" -#: src/Console/AppConsole.vala:78 src/Gtk/AppGtk.vala:179 -msgid "Syntax" +#: src/Utility/TeeJee.FileSystem.vala:162 +msgid "Failed to read file" msgstr "" -#: src/Console/AppConsole.vala:204 src/Gtk/AppGtk.vala:111 -msgid "Temp" +#: src/Utility/TeeJee.FileSystem.vala:187 +#: src/Utility/TeeJee.FileSystem.vala:190 +msgid "File saved" msgstr "" -#: src/Common/LinuxKernel.vala:742 -#, c-format -msgid "The following kernels will be removed:" +#: src/Utility/TeeJee.FileSystem.vala:197 +msgid "Failed to write file" msgstr "" -#: src/Utility/Gtk/AboutWindow.vala:330 -#, c-format -msgid "Third Party Tools" +#: src/Utility/TeeJee.FileSystem.vala:210 +#: src/Utility/TeeJee.FileSystem.vala:213 +msgid "File copied" msgstr "" -#: src/Common/LinuxKernel.vala:1252 src/Gtk/MainWindow.vala:689 -msgid "This kernel is already installed." +#: src/Utility/TeeJee.FileSystem.vala:221 +msgid "Failed to copy file" msgstr "" -#: src/Common/LinuxKernel.vala:1353 -msgid "" -"This kernel is currently running and cannot be removed.\n" -" Install another kernel before removing this one." +#: src/Utility/TeeJee.FileSystem.vala:231 +#: src/Utility/TeeJee.FileSystem.vala:538 +msgid "File not found" msgstr "" -#: src/Utility/Gtk/AboutWindow.vala:346 -#, c-format -msgid "Translators" +#: src/Utility/TeeJee.FileSystem.vala:245 +#: src/Utility/TeeJee.FileSystem.vala:248 +msgid "File moved" msgstr "" -#: src/Common/LinuxKernel.vala:1337 src/Common/LinuxKernel.vala:1390 -msgid "Un-install completed" +#: src/Utility/TeeJee.FileSystem.vala:253 +msgid "Failed to move file" msgstr "" -#: src/Common/LinuxKernel.vala:1340 src/Common/LinuxKernel.vala:1393 -msgid "Un-install completed with errors" +#: src/Utility/TeeJee.FileSystem.vala:349 +#: src/Utility/TeeJee.FileSystem.vala:352 +#: src/Utility/TeeJee.FileSystem.vala:378 +msgid "Created directory" msgstr "" -#: src/Console/AppConsole.vala:196 src/Gtk/AppGtk.vala:166 -msgid "Unknown option" +#: src/Utility/TeeJee.FileSystem.vala:359 +msgid "Failed to create dir" msgstr "" -#: src/Gtk/MainWindow.vala:179 -msgid "Version" +#: src/Utility/TeeJee.FileSystem.vala:375 +msgid "Deleted directory" msgstr "" -#: src/Utility/TeeJee.Logging.vala:89 -msgid "W" +#: src/Utility/TeeJee.FileSystem.vala:509 +msgid "Dir not found" msgstr "" -#: src/Gtk/SettingsDialog.vala:155 -msgid "Week(s)" +#: src/Utility/TeeJee.FileSystem.vala:662 +#: src/Utility/TeeJee.FileSystem.vala:711 +msgid "File is missing" msgstr "" -#: src/Utility/Gtk/CustomMessageDialog.vala:159 -msgid "Yes" +#: src/Utility/TeeJee.Logging.vala:89 +msgid "E" msgstr "" -#: src/Utility/AppLock.vala:56 -msgid "[Warning] Deleted invalid lock" +#: src/Utility/TeeJee.Logging.vala:89 +msgid "W" msgstr "" -#: src/Gtk/SettingsDialog.vala:232 -msgid "seconds" +#: src/Utility/TeeJee.Process.vala:513 +msgid "Stopped" msgstr "" diff --git a/po/nl.po b/po/nl.po index b4a1fafb..6a9d47e2 100644 --- a/po/nl.po +++ b/po/nl.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: ukuu 2.2\n" -"Report-Msgid-Bugs-To: b.kenyon.w@gmail.com\n" -"POT-Creation-Date: 2020-05-01 13:31-0400\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-05-02 16:29-0400\n" "PO-Revision-Date: 2017-04-30 11:50+0200\n" "Last-Translator: Heimen Stoffels \n" "Language-Team: \n" @@ -18,268 +18,182 @@ msgstr "" "X-Generator: Poedit 2.0.1\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: src/Gtk/MainWindow.vala:494 -msgid "About" -msgstr "Over" - -#: src/Console/AppConsole.vala:113 -msgid "Admin access is required for running this application." -msgstr "" -"U heeft administrator-rechten nodig om deze applicatie te kunnen draaien." - -#: src/Utility/AppLock.vala:51 -msgid "Another instance of this application is running" -msgstr "Er is al een venster geopend van deze applicatie" +#: src/Common/LinuxKernel.vala:92 +msgid "Distribution" +msgstr "Distributie" #: src/Common/LinuxKernel.vala:106 #, fuzzy msgid "Architecture" msgstr "Systeemarchitectuur" -#: src/Utility/Gtk/AboutWindow.vala:338 -#, c-format -msgid "Artists" -msgstr "Artiesten" - -#: src/Console/AppConsole.vala:99 -msgid "Assume Yes for all prompts (non-interactive mode)" -msgstr "" - -#: src/Utility/Gtk/AboutWindow.vala:314 -#, c-format -msgid "Authors" -msgstr "Auteurs" - -#: src/Common/LinuxKernel.vala:1164 -msgid "Available Kernels" -msgstr "Beschikbare kernels" +#: src/Common/LinuxKernel.vala:257 +msgid "Index is stale" +msgstr "De index is verouderd" -#: src/Utility/Gtk/AboutWindow.vala:285 -msgid "Back" -msgstr "Terug" +#: src/Common/LinuxKernel.vala:260 +msgid "Index is fresh" +msgstr "De index is up-to-date" -#: src/Console/AppConsole.vala:203 src/Gtk/AppGtk.vala:110 -msgid "Cache" +#: src/Common/LinuxKernel.vala:365 +msgid "Fetching index..." msgstr "" -#: src/Gtk/ProgressWindow.vala:145 src/Gtk/TerminalWindow.vala:148 -#: src/Gtk/UpdateNotificationWindow.vala:167 -#: src/Utility/Gtk/CustomMessageDialog.vala:155 -msgid "Cancel" -msgstr "Annuleren" - -#: src/Gtk/MainWindow.vala:462 -msgid "Changes" -msgstr "Wijzigingen" - -#: src/Gtk/SettingsDialog.vala:120 -msgid "Check every" -msgstr "Controleer elke" - -#: src/Console/AppConsole.vala:82 -msgid "Check for kernel updates" -msgstr "Controleren op kernel-updates" +#: src/Common/LinuxKernel.vala:408 +msgid "Fetching index from kernel.ubuntu.com..." +msgstr "Bezig met ophalen van index van kernel.ubuntu.com..." -#: src/Console/AppConsole.vala:83 +#: src/Common/LinuxKernel.vala:727 #, fuzzy -msgid "Check for kernel updates and notify current user" -msgstr "Controleren op kernel-updates" - -#: src/Gtk/TerminalWindow.vala:158 src/Utility/Gtk/AboutWindow.vala:295 -msgid "Close" -msgstr "Sluiten" - -#: src/Console/AppConsole.vala:340 -msgid "Command not specified" -msgstr "" - -#: src/Console/AppConsole.vala:80 -msgid "Commands" -msgstr "" - -#: src/Common/Main.vala:107 -msgid "Commands listed below are not available on this system" -msgstr "De onderstaande opdrachten zijn niet beschikbaar op dit systeem" - -#: src/Common/LinuxKernel.vala:749 -#, c-format -msgid "Continue ?" -msgstr "" - -#: src/Utility/Gtk/AboutWindow.vala:322 -#, c-format -msgid "Contributions" -msgstr "Bijdragen" +msgid "Could not find running kernel in list!" +msgstr "De vereiste versie kan niet worden gevonden" #: src/Common/LinuxKernel.vala:733 #, fuzzy msgid "Could not find any kernels to remove" msgstr "Selecteer de te verwijderen kernels" -#: src/Console/AppConsole.vala:308 src/Gtk/MainWindow.vala:100 -msgid "Could not find requested version" -msgstr "De vereiste versie kan niet worden gevonden" +#: src/Common/LinuxKernel.vala:742 +msgid "The following kernels will be removed:" +msgstr "" -#: src/Common/LinuxKernel.vala:727 -#, fuzzy -msgid "Could not find running kernel in list!" -msgstr "De vereiste versie kan niet worden gevonden" +#: src/Common/LinuxKernel.vala:749 +msgid "Continue ?" +msgstr "" -#: src/Utility/TeeJee.FileSystem.vala:349 -#: src/Utility/TeeJee.FileSystem.vala:352 -#: src/Utility/TeeJee.FileSystem.vala:378 -msgid "Created directory" -msgstr "Map gecreëerd" +#: src/Common/LinuxKernel.vala:777 src/Console/AppConsole.vala:359 +msgid "Latest update" +msgstr "" -#: src/Utility/Gtk/AboutWindow.vala:272 src/Utility/Gtk/AboutWindow.vala:289 -msgid "Credits" -msgstr "Met dank aan" +#: src/Common/LinuxKernel.vala:788 src/Console/AppConsole.vala:366 +msgid "Latest point update" +msgstr "" -#: src/Gtk/SettingsDialog.vala:153 -msgid "Day(s)" -msgstr "dag(en)" +#: src/Common/LinuxKernel.vala:796 src/Console/AppConsole.vala:371 +#: src/Console/AppConsole.vala:429 src/Gtk/MainWindow.vala:804 +msgid "No updates found" +msgstr "Geen updates gevonden" -#: src/Utility/TeeJee.FileSystem.vala:375 -msgid "Deleted directory" -msgstr "Map verwijderd" +#: src/Common/LinuxKernel.vala:806 +#, c-format +msgid "Install Linux v%s ? (y/n): " +msgstr "" -#: src/Utility/TeeJee.FileSystem.vala:509 -msgid "Dir not found" -msgstr "Map niet gevonden" +#: src/Common/LinuxKernel.vala:1072 +msgid "Packages Available" +msgstr "Beschikbare pakketten" -#: src/Gtk/SettingsDialog.vala:160 -msgid "Display" -msgstr "Weergave" +#: src/Common/LinuxKernel.vala:1080 +msgid "Packages Installed" +msgstr "Geïnstalleerde pakketten" -#: src/Common/LinuxKernel.vala:92 -msgid "Distribution" -msgstr "Distributie" +#: src/Common/LinuxKernel.vala:1164 +msgid "Available Kernels" +msgstr "Beschikbare kernels" -#: src/Utility/Gtk/AboutWindow.vala:354 -#, c-format -msgid "Documenters" -msgstr "Documenteerders" +#: src/Common/LinuxKernel.vala:1181 src/Gtk/MainWindow.vala:208 +msgid "Installed" +msgstr "Geïnstalleerd" -#: src/Console/AppConsole.vala:91 -msgid "Download packages for specified kernel" -msgstr "Pakketten downloaden voor opgegeven kernel" +#: src/Common/LinuxKernel.vala:1181 src/Gtk/MainWindow.vala:208 +msgid "Running" +msgstr "Bezig met draaien" #: src/Common/LinuxKernel.vala:1210 -#, c-format msgid "Downloading" msgstr "Bezig met downloaden" -#: src/Utility/TeeJee.Logging.vala:89 -msgid "E" -msgstr "E" +#: src/Common/LinuxKernel.vala:1229 +#: src/Utility/Gtk/CustomMessageDialog.vala:150 +#: src/Utility/Gtk/CustomMessageDialog.vala:154 +msgid "OK" +msgstr "Oké" #: src/Common/LinuxKernel.vala:1238 -#, c-format msgid "ERROR" msgstr "FOUT" -#: src/Console/AppConsole.vala:98 -msgid "Enable verbose debugging output" -msgstr "" - -#: src/Utility/Gtk/GtkHelper.vala:17 -msgid "Error" -msgstr "Fout" - -#: src/Utility/TeeJee.FileSystem.vala:221 -msgid "Failed to copy file" -msgstr "Kopiëren van bestand is mislukt" +#: src/Common/LinuxKernel.vala:1252 src/Gtk/MainWindow.vala:689 +msgid "This kernel is already installed." +msgstr "Deze kernel is al geïnstalleerd." -#: src/Utility/TeeJee.FileSystem.vala:359 -msgid "Failed to create dir" -msgstr "Creëren van map is mislukt" +#: src/Common/LinuxKernel.vala:1281 +msgid "Installation completed. A reboot is required to use the new kernel." +msgstr "" +"De installatie is voltooid. Herstart de computer om de nieuwe kernel te " +"gebruiken." -#: src/Utility/TeeJee.FileSystem.vala:106 -msgid "Failed to delete file" -msgstr "Verwijderen van map is mislukt" +#: src/Common/LinuxKernel.vala:1284 +msgid "Installation completed with errors" +msgstr "De installatie is foutloos voltooid" -#: src/Utility/TeeJee.FileSystem.vala:253 -msgid "Failed to move file" -msgstr "Verplaatsen van bestand is mislukt" +#: src/Common/LinuxKernel.vala:1300 +msgid "" +"Selected kernel is currently running and cannot be removed.\n" +" Install another kernel before removing this one." +msgstr "" +"De geselecteerde kernel is momenteel in gebruik en kan daarom niet worden " +"verwijderd.\n" +" Installeer een andere kernel voordat u deze verwijdert." -#: src/Utility/TeeJee.FileSystem.vala:162 -msgid "Failed to read file" -msgstr "Lezen van bestand is mislukt" +#: src/Common/LinuxKernel.vala:1305 +msgid "Preparing to remove selected kernels" +msgstr "Bezig met voorbereiden van verwijderen van geselecteerde kernels" -#: src/Utility/TeeJee.FileSystem.vala:197 -msgid "Failed to write file" -msgstr "Schrijven naar bestand is mislukt" +#: src/Common/LinuxKernel.vala:1337 src/Common/LinuxKernel.vala:1390 +msgid "Un-install completed" +msgstr "Deïnstalleren voltooid" -#: src/Common/LinuxKernel.vala:408 -msgid "Fetching index from kernel.ubuntu.com..." -msgstr "Bezig met ophalen van index van kernel.ubuntu.com..." +#: src/Common/LinuxKernel.vala:1340 src/Common/LinuxKernel.vala:1393 +msgid "Un-install completed with errors" +msgstr "Deïnstalleren voltooid, maar met fouten" -#: src/Common/LinuxKernel.vala:365 -msgid "Fetching index..." +#: src/Common/LinuxKernel.vala:1353 +msgid "" +"This kernel is currently running and cannot be removed.\n" +" Install another kernel before removing this one." msgstr "" +"Deze kernel is momenteel in gebruik en kan daarom niet worden verwijderd.\n" +" Installeer een andere kernel voordat u deze verwijdert." -#: src/Utility/TeeJee.FileSystem.vala:210 -#: src/Utility/TeeJee.FileSystem.vala:213 -msgid "File copied" -msgstr "Bestand gekopieerd" - -#: src/Utility/TeeJee.FileSystem.vala:97 src/Utility/TeeJee.FileSystem.vala:100 -msgid "File deleted" -msgstr "Bestand verwijderd" - -#: src/Utility/TeeJee.FileSystem.vala:662 -#: src/Utility/TeeJee.FileSystem.vala:711 -msgid "File is missing" -msgstr "Bestand ontbreekt" - -#: src/Utility/TeeJee.FileSystem.vala:245 -#: src/Utility/TeeJee.FileSystem.vala:248 -msgid "File moved" -msgstr "Bestand verplaatst" +#: src/Common/Main.vala:107 +msgid "Commands listed below are not available on this system" +msgstr "De onderstaande opdrachten zijn niet beschikbaar op dit systeem" -#: src/Utility/TeeJee.FileSystem.vala:231 -#: src/Utility/TeeJee.FileSystem.vala:538 -msgid "File not found" -msgstr "Bestand niet gevonden" +#: src/Common/Main.vala:108 +msgid "Please install required packages and try again" +msgstr "Installeer de vereiste pakketten en probeer het opnieuw" #: src/Common/Package.vala:126 src/Common/Package.vala:188 #, c-format msgid "File not found: %s" msgstr "Bestand niet gevonden: %s" -#: src/Utility/TeeJee.FileSystem.vala:187 -#: src/Utility/TeeJee.FileSystem.vala:190 -msgid "File saved" -msgstr "Bestand opgeslagen" - -#: src/Gtk/SettingsDialog.vala:168 -msgid "Hide unstable and RC releases" -msgstr "Instabiele en RC-uitgaven verbergen" - -#: src/Gtk/SettingsDialog.vala:151 -msgid "Hour(s)" -msgstr "uur" +#: src/Console/AppConsole.vala:78 src/Gtk/AppGtk.vala:179 +msgid "Syntax" +msgstr "Syntax" -#: src/Gtk/UpdateNotificationWindow.vala:168 -msgid "Ignore this update" -msgstr "Deze update negeren" +#: src/Console/AppConsole.vala:80 +msgid "Commands" +msgstr "" -#: src/Common/LinuxKernel.vala:260 -msgid "Index is fresh" -msgstr "De index is up-to-date" +#: src/Console/AppConsole.vala:82 +msgid "Check for kernel updates" +msgstr "Controleren op kernel-updates" -#: src/Common/LinuxKernel.vala:257 -msgid "Index is stale" -msgstr "De index is verouderd" +#: src/Console/AppConsole.vala:83 +#, fuzzy +msgid "Check for kernel updates and notify current user" +msgstr "Controleren op kernel-updates" -#: src/Gtk/UpdateNotificationWindow.vala:147 src/Gtk/MainWindow.vala:357 -msgid "Install" -msgstr "Installeren" +#: src/Console/AppConsole.vala:84 +msgid "List all available mainline kernels" +msgstr "Alle beschikbare mainline-kernels weergeven" -#: src/Common/LinuxKernel.vala:806 -#, c-format -msgid "Install Linux v%s ? (y/n): " -msgstr "" +#: src/Console/AppConsole.vala:85 +#, fuzzy +msgid "List installed kernels" +msgstr "Alle beschikbare mainline-kernels weergeven" #: src/Console/AppConsole.vala:86 #, fuzzy @@ -294,234 +208,192 @@ msgstr "" msgid "Install specified mainline kernel" msgstr "Opgegeven mainline-kernel installeren" -#: src/Gtk/UpdateNotificationWindow.vala:148 -msgid "Install this kernel" -msgstr "Deze kernel installeren" - -#: src/Common/LinuxKernel.vala:1284 -msgid "Installation completed with errors" -msgstr "De installatie is foutloos voltooid" +#: src/Console/AppConsole.vala:89 +#, fuzzy +msgid "Remove specified kernel" +msgstr "Opgegeven mainline-kernel verwijderen" -#: src/Common/LinuxKernel.vala:1281 -msgid "Installation completed. A reboot is required to use the new kernel." +#: src/Console/AppConsole.vala:90 src/Gtk/MainWindow.vala:424 +msgid "Remove installed kernels older than running kernel" msgstr "" -"De installatie is voltooid. Herstart de computer om de nieuwe kernel te " -"gebruiken." -#: src/Common/LinuxKernel.vala:1181 src/Gtk/MainWindow.vala:208 -msgid "Installed" -msgstr "Geïnstalleerd" +#: src/Console/AppConsole.vala:91 +msgid "Download packages for specified kernel" +msgstr "Pakketten downloaden voor opgegeven kernel" -#: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:558 -#: src/Gtk/MainWindow.vala:694 src/Utility/TeeJee.System.vala:281 -msgid "Internet connection is not active" -msgstr "U bent niet verbonden met het internet" +#: src/Console/AppConsole.vala:92 src/Console/AppConsole.vala:97 +msgid "Remove files from application cache" +msgstr "Bestanden verwijderen uit applicatie-cache" -#: src/Gtk/SettingsDialog.vala:218 +#: src/Console/AppConsole.vala:93 #, fuzzy -msgid "Internet connection timeout in " -msgstr "U bent niet verbonden met het internet" - -#: src/Gtk/MainWindow.vala:150 -msgid "Kernel" -msgstr "Kernel" +msgid "Show unstable and RC releases" +msgstr "Instabiele en RC-uitgaven verbergen" -#: src/Gtk/MainWindow.vala:542 -msgid "Kernel upgrade utility for Ubuntu-based distributions" -msgstr "Kernel-upgradehulpmiddel voor op Ubuntu-gebaseerde distributies" +#: src/Console/AppConsole.vala:95 src/Gtk/AppGtk.vala:181 +msgid "Options" +msgstr "Opties" -#: src/Common/LinuxKernel.vala:788 src/Console/AppConsole.vala:366 -#, c-format -msgid "Latest point update" +#: src/Console/AppConsole.vala:98 +msgid "Enable verbose debugging output" msgstr "" -#: src/Common/LinuxKernel.vala:777 src/Console/AppConsole.vala:359 -#, c-format -msgid "Latest update" +#: src/Console/AppConsole.vala:99 +msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "" -#: src/Console/AppConsole.vala:84 -msgid "List all available mainline kernels" -msgstr "Alle beschikbare mainline-kernels weergeven" +#: src/Console/AppConsole.vala:100 +msgid "Override user" +msgstr "" -#: src/Gtk/UpdateNotificationWindow.vala:158 -#, fuzzy -msgid "List available kernels" -msgstr "Alle beschikbare mainline-kernels weergeven" +#: src/Console/AppConsole.vala:113 +msgid "Admin access is required for running this application." +msgstr "" +"U heeft administrator-rechten nodig om deze applicatie te kunnen draaien." -#: src/Console/AppConsole.vala:85 +#: src/Console/AppConsole.vala:116 #, fuzzy -msgid "List installed kernels" -msgstr "Alle beschikbare mainline-kernels weergeven" - -#: src/Utility/Gtk/GtkHelper.vala:93 -msgid "Missing Icon" -msgstr "Ontbrekend pictogram" +msgid "Run the application as admin with pkexec or sudo." +msgstr "Draai de applicatie als root of m.b.v. gksu/sudo." -#: src/Gtk/MainWindow.vala:366 -msgid "Multiple Kernels Selected" -msgstr "Meerdere kernels geselecteerd" +#: src/Console/AppConsole.vala:196 src/Gtk/AppGtk.vala:166 +msgid "Unknown option" +msgstr "Onbekende optie" -#: src/Console/AppConsole.vala:290 -msgid "Multiple kernels selected for installation. Select only one." +#: src/Console/AppConsole.vala:198 src/Console/AppConsole.vala:312 +#: src/Console/AppConsole.vala:341 +msgid "Run '" msgstr "" -"Er zijn meerdere te installeren kernels geselecteerd. Selecteer er slechts " -"één." -#: src/Utility/Gtk/CustomMessageDialog.vala:160 -msgid "No" +#: src/Console/AppConsole.vala:203 src/Gtk/AppGtk.vala:110 +msgid "Cache" msgstr "" -#: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:558 -#: src/Gtk/MainWindow.vala:694 -msgid "No Internet" -msgstr "Geen internetverbinding" +#: src/Console/AppConsole.vala:204 src/Gtk/AppGtk.vala:111 +msgid "Temp" +msgstr "" #: src/Console/AppConsole.vala:284 src/Console/AppConsole.vala:321 msgid "No kernels specified" msgstr "" -#: src/Common/LinuxKernel.vala:796 src/Console/AppConsole.vala:371 -#: src/Console/AppConsole.vala:429 src/Gtk/MainWindow.vala:804 -msgid "No updates found" -msgstr "Geen updates gevonden" - -#: src/Gtk/MainWindow.vala:369 src/Gtk/MainWindow.vala:380 -msgid "Not Selected" -msgstr "Niet geselecteerd" - -#: src/Gtk/SettingsDialog.vala:65 -msgid "Notification" -msgstr "Melding" - -#: src/Gtk/SettingsDialog.vala:72 -msgid "Notify if a major release is available" -msgstr "Melding weergeven als er een grote update beschikbaar is" - -#: src/Gtk/SettingsDialog.vala:83 -msgid "Notify if a point release is available" -msgstr "Melding weergeven als er een puntupdate beschikbaar is" - -#: src/Common/LinuxKernel.vala:1229 -#: src/Utility/Gtk/CustomMessageDialog.vala:150 -#: src/Utility/Gtk/CustomMessageDialog.vala:154 -#, c-format -msgid "OK" -msgstr "Oké" - -#: src/Console/AppConsole.vala:95 src/Gtk/AppGtk.vala:181 -msgid "Options" -msgstr "Opties" - -#: src/Gtk/SettingsDialog.vala:197 -msgid "Other" -msgstr "" - -#: src/Console/AppConsole.vala:100 -msgid "Override user" +#: src/Console/AppConsole.vala:290 +msgid "Multiple kernels selected for installation. Select only one." msgstr "" +"Er zijn meerdere te installeren kernels geselecteerd. Selecteer er slechts " +"één." -#: src/Common/LinuxKernel.vala:1072 -#, c-format -msgid "Packages Available" -msgstr "Beschikbare pakketten" - -#: src/Common/LinuxKernel.vala:1080 -#, c-format -msgid "Packages Installed" -msgstr "Geïnstalleerde pakketten" - -#: src/Common/Main.vala:108 -msgid "Please install required packages and try again" -msgstr "Installeer de vereiste pakketten en probeer het opnieuw" +#: src/Console/AppConsole.vala:308 src/Gtk/MainWindow.vala:100 +msgid "Could not find requested version" +msgstr "De vereiste versie kan niet worden gevonden" -#: src/Common/LinuxKernel.vala:1305 -msgid "Preparing to remove selected kernels" -msgstr "Bezig met voorbereiden van verwijderen van geselecteerde kernels" +#: src/Console/AppConsole.vala:340 +msgid "Command not specified" +msgstr "" #: src/Gtk/AppGtk.vala:183 msgid "Print debug information" msgstr "Foutopsporingsinformatie printen" -#: src/Gtk/MainWindow.vala:423 -msgid "Purge" -msgstr "" - -#: src/Gtk/MainWindow.vala:341 -msgid "Refresh" -msgstr "Verversen" +#: src/Gtk/AppGtk.vala:184 +msgid "Show all options" +msgstr "Alle opties weergeven" -#: src/Gtk/MainWindow.vala:577 -msgid "Refreshing..." -msgstr "Bezig met verversen..." +#: src/Gtk/MainWindow.vala:150 +msgid "Kernel" +msgstr "Kernel" -#: src/Gtk/MainWindow.vala:374 -msgid "Remove" -msgstr "Verwijderen" +#: src/Gtk/MainWindow.vala:179 +msgid "Version" +msgstr "Versie" -#: src/Console/AppConsole.vala:92 src/Console/AppConsole.vala:97 -msgid "Remove files from application cache" -msgstr "Bestanden verwijderen uit applicatie-cache" +#: src/Gtk/MainWindow.vala:196 +msgid "Status" +msgstr "Status" -#: src/Console/AppConsole.vala:90 src/Gtk/MainWindow.vala:424 -msgid "Remove installed kernels older than running kernel" -msgstr "" +#: src/Gtk/MainWindow.vala:341 +msgid "Refresh" +msgstr "Verversen" -#: src/Console/AppConsole.vala:89 -#, fuzzy -msgid "Remove specified kernel" -msgstr "Opgegeven mainline-kernel verwijderen" +#: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:558 +#: src/Gtk/MainWindow.vala:694 src/Utility/TeeJee.System.vala:281 +msgid "Internet connection is not active" +msgstr "U bent niet verbonden met het internet" -#: src/Console/AppConsole.vala:198 src/Console/AppConsole.vala:312 -#: src/Console/AppConsole.vala:341 -msgid "Run '" -msgstr "" +#: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:558 +#: src/Gtk/MainWindow.vala:694 +msgid "No Internet" +msgstr "Geen internetverbinding" -#: src/Console/AppConsole.vala:116 -#, fuzzy -msgid "Run the application as admin with pkexec or sudo." -msgstr "Draai de applicatie als root of m.b.v. gksu/sudo." +#: src/Gtk/MainWindow.vala:357 src/Gtk/UpdateNotificationWindow.vala:147 +msgid "Install" +msgstr "Installeren" -#: src/Common/LinuxKernel.vala:1181 src/Gtk/MainWindow.vala:208 -msgid "Running" -msgstr "Bezig met draaien" +#: src/Gtk/MainWindow.vala:366 +msgid "Multiple Kernels Selected" +msgstr "Meerdere kernels geselecteerd" #: src/Gtk/MainWindow.vala:366 msgid "Select a single kernel to install" msgstr "Selecteer een enkele te installeren kernel" +#: src/Gtk/MainWindow.vala:369 src/Gtk/MainWindow.vala:380 +msgid "Not Selected" +msgstr "Niet geselecteerd" + #: src/Gtk/MainWindow.vala:369 msgid "Select the kernel to install" msgstr "Selecteer de te installeren kernel" +#: src/Gtk/MainWindow.vala:374 +msgid "Remove" +msgstr "Verwijderen" + #: src/Gtk/MainWindow.vala:380 msgid "Select the kernels to remove" msgstr "Selecteer de te verwijderen kernels" -#: src/Common/LinuxKernel.vala:1300 -msgid "" -"Selected kernel is currently running and cannot be removed.\n" -" Install another kernel before removing this one." +#: src/Gtk/MainWindow.vala:423 +msgid "Purge" msgstr "" -"De geselecteerde kernel is momenteel in gebruik en kan daarom niet worden " -"verwijderd.\n" -" Installeer een andere kernel voordat u deze verwijdert." + +#: src/Gtk/MainWindow.vala:462 +msgid "Changes" +msgstr "Wijzigingen" #: src/Gtk/MainWindow.vala:473 src/Gtk/SettingsDialog.vala:55 msgid "Settings" msgstr "Instellingen" -#: src/Gtk/UpdateNotificationWindow.vala:157 -msgid "Show" -msgstr "" +#: src/Gtk/MainWindow.vala:494 +msgid "About" +msgstr "Over" -#: src/Gtk/SettingsDialog.vala:182 -msgid "Show N previous major versions " -msgstr "" +#: src/Gtk/MainWindow.vala:542 +msgid "Kernel upgrade utility for Ubuntu-based distributions" +msgstr "Kernel-upgradehulpmiddel voor op Ubuntu-gebaseerde distributies" -#: src/Gtk/AppGtk.vala:184 -msgid "Show all options" -msgstr "Alle opties weergeven" +#: src/Gtk/MainWindow.vala:577 +msgid "Refreshing..." +msgstr "Bezig met verversen..." + +#: src/Gtk/ProgressWindow.vala:145 src/Gtk/TerminalWindow.vala:148 +#: src/Gtk/UpdateNotificationWindow.vala:167 +#: src/Utility/Gtk/CustomMessageDialog.vala:155 +msgid "Cancel" +msgstr "Annuleren" + +#: src/Gtk/SettingsDialog.vala:65 +msgid "Notification" +msgstr "Melding" + +#: src/Gtk/SettingsDialog.vala:72 +msgid "Notify if a major release is available" +msgstr "Melding weergeven als er een grote update beschikbaar is" + +#: src/Gtk/SettingsDialog.vala:83 +msgid "Notify if a point release is available" +msgstr "Melding weergeven als er een puntupdate beschikbaar is" #: src/Gtk/SettingsDialog.vala:94 msgid "Show notification bubble on desktop" @@ -531,254 +403,196 @@ msgstr "Bureaubladmelding weergeven" msgid "Show notification dialog" msgstr "Meldingsvenster weergeven" -#: src/Console/AppConsole.vala:93 -#, fuzzy -msgid "Show unstable and RC releases" +#: src/Gtk/SettingsDialog.vala:120 +msgid "Check every" +msgstr "Controleer elke" + +#: src/Gtk/SettingsDialog.vala:151 +msgid "Hour(s)" +msgstr "uur" + +#: src/Gtk/SettingsDialog.vala:153 +msgid "Day(s)" +msgstr "dag(en)" + +#: src/Gtk/SettingsDialog.vala:155 +msgid "Week(s)" +msgstr "we(e)k(en)" + +#: src/Gtk/SettingsDialog.vala:160 +msgid "Display" +msgstr "Weergave" + +#: src/Gtk/SettingsDialog.vala:168 +msgid "Hide unstable and RC releases" msgstr "Instabiele en RC-uitgaven verbergen" +#: src/Gtk/SettingsDialog.vala:182 +msgid "Show N previous major versions " +msgstr "" + +#: src/Gtk/SettingsDialog.vala:197 +msgid "Other" +msgstr "" + #: src/Gtk/SettingsDialog.vala:205 #, fuzzy msgid "Skip internet connection check" msgstr "U bent niet verbonden met het internet" -#: src/Gtk/MainWindow.vala:196 -msgid "Status" -msgstr "Status" +#: src/Gtk/SettingsDialog.vala:218 +#, fuzzy +msgid "Internet connection timeout in " +msgstr "U bent niet verbonden met het internet" -#: src/Utility/TeeJee.Process.vala:513 -msgid "Stopped" -msgstr "Gestopt" +#: src/Gtk/SettingsDialog.vala:232 +msgid "seconds" +msgstr "" -#: src/Console/AppConsole.vala:78 src/Gtk/AppGtk.vala:179 -msgid "Syntax" -msgstr "Syntax" +#: src/Gtk/TerminalWindow.vala:158 src/Utility/Gtk/AboutWindow.vala:295 +msgid "Close" +msgstr "Sluiten" -#: src/Console/AppConsole.vala:204 src/Gtk/AppGtk.vala:111 -msgid "Temp" -msgstr "" +#: src/Gtk/UpdateNotificationWindow.vala:148 +msgid "Install this kernel" +msgstr "Deze kernel installeren" -#: src/Common/LinuxKernel.vala:742 -#, c-format -msgid "The following kernels will be removed:" +#: src/Gtk/UpdateNotificationWindow.vala:157 +msgid "Show" msgstr "" +#: src/Gtk/UpdateNotificationWindow.vala:158 +#, fuzzy +msgid "List available kernels" +msgstr "Alle beschikbare mainline-kernels weergeven" + +#: src/Gtk/UpdateNotificationWindow.vala:168 +msgid "Ignore this update" +msgstr "Deze update negeren" + +#: src/Utility/Gtk/AboutWindow.vala:272 src/Utility/Gtk/AboutWindow.vala:289 +msgid "Credits" +msgstr "Met dank aan" + +#: src/Utility/Gtk/AboutWindow.vala:285 +msgid "Back" +msgstr "Terug" + +#: src/Utility/Gtk/AboutWindow.vala:314 +msgid "Authors" +msgstr "Auteurs" + +#: src/Utility/Gtk/AboutWindow.vala:322 +msgid "Contributions" +msgstr "Bijdragen" + #: src/Utility/Gtk/AboutWindow.vala:330 -#, c-format msgid "Third Party Tools" msgstr "Externe hulpmiddelen" -#: src/Common/LinuxKernel.vala:1252 src/Gtk/MainWindow.vala:689 -msgid "This kernel is already installed." -msgstr "Deze kernel is al geïnstalleerd." - -#: src/Common/LinuxKernel.vala:1353 -msgid "" -"This kernel is currently running and cannot be removed.\n" -" Install another kernel before removing this one." -msgstr "" -"Deze kernel is momenteel in gebruik en kan daarom niet worden verwijderd.\n" -" Installeer een andere kernel voordat u deze verwijdert." +#: src/Utility/Gtk/AboutWindow.vala:338 +msgid "Artists" +msgstr "Artiesten" #: src/Utility/Gtk/AboutWindow.vala:346 -#, c-format msgid "Translators" msgstr "Vertalers" -#: src/Common/LinuxKernel.vala:1337 src/Common/LinuxKernel.vala:1390 -msgid "Un-install completed" -msgstr "Deïnstalleren voltooid" +#: src/Utility/Gtk/AboutWindow.vala:354 +msgid "Documenters" +msgstr "Documenteerders" -#: src/Common/LinuxKernel.vala:1340 src/Common/LinuxKernel.vala:1393 -msgid "Un-install completed with errors" -msgstr "Deïnstalleren voltooid, maar met fouten" +#: src/Utility/Gtk/CustomMessageDialog.vala:159 +msgid "Yes" +msgstr "" -#: src/Console/AppConsole.vala:196 src/Gtk/AppGtk.vala:166 -msgid "Unknown option" -msgstr "Onbekende optie" +#: src/Utility/Gtk/CustomMessageDialog.vala:160 +msgid "No" +msgstr "" -#: src/Gtk/MainWindow.vala:179 -msgid "Version" -msgstr "Versie" +#: src/Utility/Gtk/GtkHelper.vala:17 +msgid "Error" +msgstr "Fout" -#: src/Utility/TeeJee.Logging.vala:89 -msgid "W" -msgstr "W" +#: src/Utility/Gtk/GtkHelper.vala:93 +msgid "Missing Icon" +msgstr "Ontbrekend pictogram" -#: src/Gtk/SettingsDialog.vala:155 -msgid "Week(s)" -msgstr "we(e)k(en)" +#: src/Utility/TeeJee.FileSystem.vala:97 src/Utility/TeeJee.FileSystem.vala:100 +msgid "File deleted" +msgstr "Bestand verwijderd" -#: src/Utility/Gtk/CustomMessageDialog.vala:159 -msgid "Yes" -msgstr "" +#: src/Utility/TeeJee.FileSystem.vala:106 +msgid "Failed to delete file" +msgstr "Verwijderen van map is mislukt" -#: src/Utility/AppLock.vala:56 -msgid "[Warning] Deleted invalid lock" -msgstr "[Waarschuwing] Ongeldige lock verwijderd" +#: src/Utility/TeeJee.FileSystem.vala:162 +msgid "Failed to read file" +msgstr "Lezen van bestand is mislukt" -#: src/Gtk/SettingsDialog.vala:232 -msgid "seconds" -msgstr "" +#: src/Utility/TeeJee.FileSystem.vala:187 +#: src/Utility/TeeJee.FileSystem.vala:190 +msgid "File saved" +msgstr "Bestand opgeslagen" -#, fuzzy -#~ msgid "Hide kernels older than " -#~ msgstr "Kernels ouder dan 4.0 verbergen" +#: src/Utility/TeeJee.FileSystem.vala:197 +msgid "Failed to write file" +msgstr "Schrijven naar bestand is mislukt" -#~ msgid "Booting previous kernels" -#~ msgstr "Opstarten van vorige kernels" +#: src/Utility/TeeJee.FileSystem.vala:210 +#: src/Utility/TeeJee.FileSystem.vala:213 +msgid "File copied" +msgstr "Bestand gekopieerd" -#~ msgid "GRUB Options" -#~ msgstr "GRUB-opties" +#: src/Utility/TeeJee.FileSystem.vala:221 +msgid "Failed to copy file" +msgstr "Kopiëren van bestand is mislukt" -#, fuzzy -#~ msgid "" -#~ "Mainline kernels can sometimes cause problems if there are proprietary " -#~ "drivers installed on your system. These issues include:\n" -#~ "\n" -#~ "▰ WiFi not working\n" -#~ "▰ Black screen on startup\n" -#~ "▰ Random system freeze\n" -#~ "\n" -#~ "If you face any of these issues there is no need to panic.\n" -#~ "\n" -#~ "▰ Reboot your system\n" -#~ "▰ Select 'Advanced Boot Options' from the GRUB boot menu\n" -#~ "▰ Select an older kernel from the list displayed on this screen\n" -#~ "▰ Your system will boot using the selected kernel\n" -#~ "▰ You can now uninstall the kernel that is causing issues\n" -#~ msgstr "" -#~ "Mainline-kernels kunnen soms problemen geven als er gesloten drivers " -#~ "geïnstalleerd zijn op het systeem. Deze problemen zijn o.a.:\n" -#~ "\n" -#~ "\\342\\226\\260 Wi-Fi werkt niet\n" -#~ "\\342\\226\\260 Zwart scherm na opstarten\n" -#~ "\\342\\226\\260 Willekeurige vastlopers\n" -#~ "\n" -#~ "Als u één van deze problemen ervaart, is er geen reden tot paniek.\n" -#~ "\n" -#~ "\\342\\226\\260 Start uw systeem opnieuw op\n" -#~ "\\342\\226\\260 Selecteer 'Geavanceerde opstartinstellingen' in het GRUB-" -#~ "opstartmenu\n" -#~ "\\342\\226\\260 Selecteer een oudere kernel uit de lijst\n" -#~ "\\342\\226\\260 Uw systeem zal de geselecteerde kernel opstarten\n" -#~ "\\342\\226\\260 Daarna kunt u de probleemkernel deïnstalleren\n" - -#~ msgid "" -#~ "Time (in seconds) to display the GRUB menu\n" -#~ "\n" -#~ "0 = Do not show menu\n" -#~ "-1 = Show indefinitely till user selects" -#~ msgstr "" -#~ "Tijdsduur (in seconden) dat het GRUB-menu moet worden weergegeven\n" -#~ "\n" -#~ "0 = Menu niet weergeven\n" -#~ "-1 = Menu weergeven totdat de gebruiker een selectie maakt" - -#~ msgid "" -#~ "Updates the GRUB menu after installing or removing kernels, so that the " -#~ "menu is displayed for 2 seconds at boot time. This will help you recover " -#~ "from a bad kernel update by selecting another kernel to boot. During " -#~ "boot, use the 'Advanced options for Ubuntu' menu entry to select another " -#~ "kernel.\n" -#~ "\n" -#~ "0 = Do not show menu\n" -#~ "-1 = Show indefinitely till user selects" -#~ msgstr "" -#~ "Werkt het GRUB-menu bij na het installeren of verwijderen van kernels, " -#~ "zodat het menu 2 seconden wordt weergegeven bij het opstarten. Hierdoor " -#~ "kunt u, in geval van een probleemkernel(update), een andere op te starten " -#~ "kernel selecteren. Kies tijdens het opstarten voor 'Geavanceerde opties " -#~ "voor Ubuntu' in het menu om een andere kernel te selecteren.\n" -#~ "\n" -#~ "0 = Menu niet weergeven\n" -#~ "-1 = Menu weergeven totdat de gebruiker een selectie maakt" - -#~ msgid "Updating GRUB menu" -#~ msgstr "Bezig met bijwerken van GRUB-menu" - -#~ msgid "Run 'ukuu --list' and use the version string listed in first column" -#~ msgstr "" -#~ "Draai het commando 'ukuu --list' en gebruik de versiestring uit de eerste " -#~ "kolom" - -#~ msgid "" -#~ "Did you find this software useful?\n" -#~ "\n" -#~ "You can buy me a coffee or make a donation via PayPal to show your " -#~ "support. Or just drop me an email and say Hi. This application is " -#~ "completely free and will continue to remain that way. Your contributions " -#~ "will help in keeping this project alive and improving it further.\n" -#~ "\n" -#~ "Feel free to send me an email if you find any issues in this application " -#~ "or if you need any changes. Suggestions and feedback are always welcome.\n" -#~ "\n" -#~ "Thanks,\n" -#~ "Tony George\n" -#~ "(teejeetech@gmail.com)" -#~ msgstr "" -#~ "Vindt u deze software handig?\n" -#~ "\n" -#~ "U kunt een kopje koffie voor me kopen of een donatie doen via PayPal om " -#~ "me te ondersteunen. Of stuur me een e-mail en zeg me gedag. Deze " -#~ "applicatie is volledig gratis en dat zal ook altijd zo blijven. Uw " -#~ "bijdragen helpen me om dit project te blijven ontwikkelen en te " -#~ "verbeteren.\n" -#~ "\n" -#~ "Stuur me een e-mail als u problemen ervaart met deze applicatie of als u " -#~ "dingen anders wilt zien. Suggesties en feedback worden altijd " -#~ "gewaardeerd!\n" -#~ "\n" -#~ "Bedankt,\n" -#~ "Tony George\n" -#~ "(teejeetech@gmail.com)" - -#~ msgid "Display GRUB menu during boot" -#~ msgstr "GRUB-menu weergeven tijdens opstarten" - -#~ msgid "Donate" -#~ msgstr "Doneren" - -#~ msgid "Donate with Google Wallet" -#~ msgstr "Doneren met Google Wallet" - -#~ msgid "Donate with PayPal" -#~ msgstr "Doneren met PayPal" - -#~ msgid "Donations" -#~ msgstr "Donaties" - -#~ msgid "File read" -#~ msgstr "Bestand gelezen" - -#~ msgid "Notify if kernel update is available" -#~ msgstr "Melding weergeven als er een kernelupdate beschikbaar is" - -#~ msgid "Send Email" -#~ msgstr "E-mail versturen" - -#~ msgid "Use specified user's cache directory" -#~ msgstr "Gebruik de opgegeven gebruikerscache-map" - -#~ msgid "Using cache directory" -#~ msgstr "Cachemap" - -#~ msgid "Visit Website" -#~ msgstr "Website bezoeken" - -#~ msgid "Open Ukuu" -#~ msgstr "Ukuu openen" - -#~ msgid "Enter path or browse for directory" -#~ msgstr "Voer een pad in of blader naar een map" - -#~ msgid "Open" -#~ msgstr "Openen" - -#~ msgid "Root Access Required" -#~ msgstr "Root-toegang benodigd" - -#~ msgid "Root access is required for running this application." -#~ msgstr "U heeft root-toegang nodig om deze applicatie te kunnen draaien." - -#~ msgid "Select Path" -#~ msgstr "Selecteer pad" +#: src/Utility/TeeJee.FileSystem.vala:231 +#: src/Utility/TeeJee.FileSystem.vala:538 +msgid "File not found" +msgstr "Bestand niet gevonden" + +#: src/Utility/TeeJee.FileSystem.vala:245 +#: src/Utility/TeeJee.FileSystem.vala:248 +msgid "File moved" +msgstr "Bestand verplaatst" + +#: src/Utility/TeeJee.FileSystem.vala:253 +msgid "Failed to move file" +msgstr "Verplaatsen van bestand is mislukt" + +#: src/Utility/TeeJee.FileSystem.vala:349 +#: src/Utility/TeeJee.FileSystem.vala:352 +#: src/Utility/TeeJee.FileSystem.vala:378 +msgid "Created directory" +msgstr "Map gecreëerd" + +#: src/Utility/TeeJee.FileSystem.vala:359 +msgid "Failed to create dir" +msgstr "Creëren van map is mislukt" + +#: src/Utility/TeeJee.FileSystem.vala:375 +msgid "Deleted directory" +msgstr "Map verwijderd" + +#: src/Utility/TeeJee.FileSystem.vala:509 +msgid "Dir not found" +msgstr "Map niet gevonden" + +#: src/Utility/TeeJee.FileSystem.vala:662 +#: src/Utility/TeeJee.FileSystem.vala:711 +msgid "File is missing" +msgstr "Bestand ontbreekt" + +#: src/Utility/TeeJee.Logging.vala:89 +msgid "E" +msgstr "E" + +#: src/Utility/TeeJee.Logging.vala:89 +msgid "W" +msgstr "W" + +#: src/Utility/TeeJee.Process.vala:513 +msgid "Stopped" +msgstr "Gestopt" diff --git a/po/pl.po b/po/pl.po index 9d954bc1..10f4f57e 100644 --- a/po/pl.po +++ b/po/pl.po @@ -5,8 +5,8 @@ msgid "" msgstr "" "Project-Id-Version: ukuu\n" -"Report-Msgid-Bugs-To: b.kenyon.w@gmail.com\n" -"POT-Creation-Date: 2020-05-01 13:31-0400\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-05-02 16:29-0400\n" "PO-Revision-Date: 2017-08-12 15:26+0200\n" "Last-Translator: Waldemar Konik \n" "Language-Team: Polish\n" @@ -16,267 +16,181 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Poedit 1.8.7.1\n" -#: src/Gtk/MainWindow.vala:494 -msgid "About" -msgstr "O programie" - -#: src/Console/AppConsole.vala:113 -msgid "Admin access is required for running this application." -msgstr "Aby uruchomić tę aplikację niezbędne są prawa administratora." - -#: src/Utility/AppLock.vala:51 -msgid "Another instance of this application is running" -msgstr "Inna instancja tej aplikacji jest uruchomiona" +#: src/Common/LinuxKernel.vala:92 +msgid "Distribution" +msgstr "Dystrybucja" #: src/Common/LinuxKernel.vala:106 #, fuzzy msgid "Architecture" msgstr "Architektura systemu" -#: src/Utility/Gtk/AboutWindow.vala:338 -#, c-format -msgid "Artists" -msgstr "Artyści" - -#: src/Console/AppConsole.vala:99 -msgid "Assume Yes for all prompts (non-interactive mode)" -msgstr "" - -#: src/Utility/Gtk/AboutWindow.vala:314 -#, c-format -msgid "Authors" -msgstr "Аutorzy" - -#: src/Common/LinuxKernel.vala:1164 -msgid "Available Kernels" -msgstr "Dostępne jądra" +#: src/Common/LinuxKernel.vala:257 +msgid "Index is stale" +msgstr "Indeks jest nieaktualny" -#: src/Utility/Gtk/AboutWindow.vala:285 -msgid "Back" -msgstr "Wstecz" +#: src/Common/LinuxKernel.vala:260 +msgid "Index is fresh" +msgstr "Indeks jest aktualny" -#: src/Console/AppConsole.vala:203 src/Gtk/AppGtk.vala:110 -msgid "Cache" +#: src/Common/LinuxKernel.vala:365 +msgid "Fetching index..." msgstr "" -#: src/Gtk/ProgressWindow.vala:145 src/Gtk/TerminalWindow.vala:148 -#: src/Gtk/UpdateNotificationWindow.vala:167 -#: src/Utility/Gtk/CustomMessageDialog.vala:155 -msgid "Cancel" -msgstr "Anuluj" - -#: src/Gtk/MainWindow.vala:462 -msgid "Changes" -msgstr "Zmiany" - -#: src/Gtk/SettingsDialog.vala:120 -msgid "Check every" -msgstr "Sprawdzaj co" - -#: src/Console/AppConsole.vala:82 -msgid "Check for kernel updates" -msgstr "Sprawdź nowe wersje jądra" +#: src/Common/LinuxKernel.vala:408 +msgid "Fetching index from kernel.ubuntu.com..." +msgstr "Pobieranie indeksu z kernel.ubuntu.com..." -#: src/Console/AppConsole.vala:83 +#: src/Common/LinuxKernel.vala:727 #, fuzzy -msgid "Check for kernel updates and notify current user" -msgstr "Sprawdź nowe wersje jądra" - -#: src/Gtk/TerminalWindow.vala:158 src/Utility/Gtk/AboutWindow.vala:295 -msgid "Close" -msgstr "Zamknij" - -#: src/Console/AppConsole.vala:340 -msgid "Command not specified" -msgstr "" - -#: src/Console/AppConsole.vala:80 -msgid "Commands" -msgstr "" - -#: src/Common/Main.vala:107 -msgid "Commands listed below are not available on this system" -msgstr "Poniższe polecenia nie są dostępne na tym systemie" - -#: src/Common/LinuxKernel.vala:749 -#, c-format -msgid "Continue ?" -msgstr "" - -#: src/Utility/Gtk/AboutWindow.vala:322 -#, c-format -msgid "Contributions" -msgstr "Wkład" +msgid "Could not find running kernel in list!" +msgstr "Nie można odnaleźć żądanej wersji" #: src/Common/LinuxKernel.vala:733 #, fuzzy msgid "Could not find any kernels to remove" msgstr "Wybierz jądro do usunięcia" -#: src/Console/AppConsole.vala:308 src/Gtk/MainWindow.vala:100 -msgid "Could not find requested version" -msgstr "Nie można odnaleźć żądanej wersji" +#: src/Common/LinuxKernel.vala:742 +msgid "The following kernels will be removed:" +msgstr "" -#: src/Common/LinuxKernel.vala:727 -#, fuzzy -msgid "Could not find running kernel in list!" -msgstr "Nie można odnaleźć żądanej wersji" +#: src/Common/LinuxKernel.vala:749 +msgid "Continue ?" +msgstr "" -#: src/Utility/TeeJee.FileSystem.vala:349 -#: src/Utility/TeeJee.FileSystem.vala:352 -#: src/Utility/TeeJee.FileSystem.vala:378 -msgid "Created directory" -msgstr "Utworzono katalog" +#: src/Common/LinuxKernel.vala:777 src/Console/AppConsole.vala:359 +msgid "Latest update" +msgstr "" -#: src/Utility/Gtk/AboutWindow.vala:272 src/Utility/Gtk/AboutWindow.vala:289 -msgid "Credits" -msgstr "Zasługi" +#: src/Common/LinuxKernel.vala:788 src/Console/AppConsole.vala:366 +msgid "Latest point update" +msgstr "" -#: src/Gtk/SettingsDialog.vala:153 -msgid "Day(s)" -msgstr "Dni" +#: src/Common/LinuxKernel.vala:796 src/Console/AppConsole.vala:371 +#: src/Console/AppConsole.vala:429 src/Gtk/MainWindow.vala:804 +msgid "No updates found" +msgstr "Nie znaleziono aktualizacji" -#: src/Utility/TeeJee.FileSystem.vala:375 -msgid "Deleted directory" -msgstr "Usunięto katalog" +#: src/Common/LinuxKernel.vala:806 +#, c-format +msgid "Install Linux v%s ? (y/n): " +msgstr "" -#: src/Utility/TeeJee.FileSystem.vala:509 -msgid "Dir not found" -msgstr "Katalog nie odnaleziony" +#: src/Common/LinuxKernel.vala:1072 +msgid "Packages Available" +msgstr "Dostępne pakiety" -#: src/Gtk/SettingsDialog.vala:160 -msgid "Display" -msgstr "Pokaż" +#: src/Common/LinuxKernel.vala:1080 +msgid "Packages Installed" +msgstr "Pakiety zainstalowane" -#: src/Common/LinuxKernel.vala:92 -msgid "Distribution" -msgstr "Dystrybucja" +#: src/Common/LinuxKernel.vala:1164 +msgid "Available Kernels" +msgstr "Dostępne jądra" -#: src/Utility/Gtk/AboutWindow.vala:354 -#, c-format -msgid "Documenters" -msgstr "Dokumentujący" +#: src/Common/LinuxKernel.vala:1181 src/Gtk/MainWindow.vala:208 +msgid "Installed" +msgstr "Zainstalowany" -#: src/Console/AppConsole.vala:91 -msgid "Download packages for specified kernel" -msgstr "Pobierz pakiety dla wybranego jądra" +#: src/Common/LinuxKernel.vala:1181 src/Gtk/MainWindow.vala:208 +msgid "Running" +msgstr "Uruchomiony" #: src/Common/LinuxKernel.vala:1210 -#, c-format msgid "Downloading" msgstr "Pobieranie" -#: src/Utility/TeeJee.Logging.vala:89 -msgid "E" -msgstr "E" +#: src/Common/LinuxKernel.vala:1229 +#: src/Utility/Gtk/CustomMessageDialog.vala:150 +#: src/Utility/Gtk/CustomMessageDialog.vala:154 +msgid "OK" +msgstr "OK" #: src/Common/LinuxKernel.vala:1238 -#, c-format msgid "ERROR" msgstr "BŁĄD" -#: src/Console/AppConsole.vala:98 -msgid "Enable verbose debugging output" -msgstr "" - -#: src/Utility/Gtk/GtkHelper.vala:17 -msgid "Error" -msgstr "Błąd" - -#: src/Utility/TeeJee.FileSystem.vala:221 -msgid "Failed to copy file" -msgstr "Nie udało się skopiować pliku" +#: src/Common/LinuxKernel.vala:1252 src/Gtk/MainWindow.vala:689 +msgid "This kernel is already installed." +msgstr "To jądro jest już zainstalowane." -#: src/Utility/TeeJee.FileSystem.vala:359 -msgid "Failed to create dir" -msgstr "Nie udało się utworzyć katalogu" +#: src/Common/LinuxKernel.vala:1281 +msgid "Installation completed. A reboot is required to use the new kernel." +msgstr "" +"Instalacja zakończona. Aby korzystać z nowego jądra, konieczne jest ponowne " +"uruchomienie." -#: src/Utility/TeeJee.FileSystem.vala:106 -msgid "Failed to delete file" -msgstr "Nie udało się usunąć pliku" +#: src/Common/LinuxKernel.vala:1284 +msgid "Installation completed with errors" +msgstr "Instalacja zakończona z błędami" -#: src/Utility/TeeJee.FileSystem.vala:253 -msgid "Failed to move file" -msgstr "Nie udało się przenieść pliku" +#: src/Common/LinuxKernel.vala:1300 +msgid "" +"Selected kernel is currently running and cannot be removed.\n" +" Install another kernel before removing this one." +msgstr "" +"Wybrane jądro aktualnie działa i nie może zostać usunięte.\n" +" Zainstaluj inne jądro przed usunięciem tego." -#: src/Utility/TeeJee.FileSystem.vala:162 -msgid "Failed to read file" -msgstr "Nie udało się odczytać pliku" +#: src/Common/LinuxKernel.vala:1305 +msgid "Preparing to remove selected kernels" +msgstr "Przygotowanie do usunięcia wybranych jąder" -#: src/Utility/TeeJee.FileSystem.vala:197 -msgid "Failed to write file" -msgstr "Nie udało się zapisać pliku" +#: src/Common/LinuxKernel.vala:1337 src/Common/LinuxKernel.vala:1390 +msgid "Un-install completed" +msgstr "De-instalacja zakończona" -#: src/Common/LinuxKernel.vala:408 -msgid "Fetching index from kernel.ubuntu.com..." -msgstr "Pobieranie indeksu z kernel.ubuntu.com..." +#: src/Common/LinuxKernel.vala:1340 src/Common/LinuxKernel.vala:1393 +msgid "Un-install completed with errors" +msgstr "De-instalacja zakończona z błędami" -#: src/Common/LinuxKernel.vala:365 -msgid "Fetching index..." +#: src/Common/LinuxKernel.vala:1353 +msgid "" +"This kernel is currently running and cannot be removed.\n" +" Install another kernel before removing this one." msgstr "" +"To jądro aktualnie działa i nie może zostać usunięte.\n" +" Zainstaluj inne jądro przed usunięciem tego." -#: src/Utility/TeeJee.FileSystem.vala:210 -#: src/Utility/TeeJee.FileSystem.vala:213 -msgid "File copied" -msgstr "Plik skopiowany" - -#: src/Utility/TeeJee.FileSystem.vala:97 src/Utility/TeeJee.FileSystem.vala:100 -msgid "File deleted" -msgstr "Plik usunięty" - -#: src/Utility/TeeJee.FileSystem.vala:662 -#: src/Utility/TeeJee.FileSystem.vala:711 -msgid "File is missing" -msgstr "Brak pliku" - -#: src/Utility/TeeJee.FileSystem.vala:245 -#: src/Utility/TeeJee.FileSystem.vala:248 -msgid "File moved" -msgstr "Plik przeniesiony" +#: src/Common/Main.vala:107 +msgid "Commands listed below are not available on this system" +msgstr "Poniższe polecenia nie są dostępne na tym systemie" -#: src/Utility/TeeJee.FileSystem.vala:231 -#: src/Utility/TeeJee.FileSystem.vala:538 -msgid "File not found" -msgstr "Nie odnaleziono pliku" +#: src/Common/Main.vala:108 +msgid "Please install required packages and try again" +msgstr "Zainstaluj wymagane pakiety i spróbuj ponownie" #: src/Common/Package.vala:126 src/Common/Package.vala:188 #, c-format msgid "File not found: %s" msgstr "Nie odnaleziono pliku: %s" -#: src/Utility/TeeJee.FileSystem.vala:187 -#: src/Utility/TeeJee.FileSystem.vala:190 -msgid "File saved" -msgstr "Plik zapisany" - -#: src/Gtk/SettingsDialog.vala:168 -msgid "Hide unstable and RC releases" -msgstr "Ukryj wydania niestabilne i RC" - -#: src/Gtk/SettingsDialog.vala:151 -msgid "Hour(s)" -msgstr "Godzin(y)" +#: src/Console/AppConsole.vala:78 src/Gtk/AppGtk.vala:179 +msgid "Syntax" +msgstr "Składnia" -#: src/Gtk/UpdateNotificationWindow.vala:168 -msgid "Ignore this update" -msgstr "Zignoruj tę aktualizację" +#: src/Console/AppConsole.vala:80 +msgid "Commands" +msgstr "" -#: src/Common/LinuxKernel.vala:260 -msgid "Index is fresh" -msgstr "Indeks jest aktualny" +#: src/Console/AppConsole.vala:82 +msgid "Check for kernel updates" +msgstr "Sprawdź nowe wersje jądra" -#: src/Common/LinuxKernel.vala:257 -msgid "Index is stale" -msgstr "Indeks jest nieaktualny" +#: src/Console/AppConsole.vala:83 +#, fuzzy +msgid "Check for kernel updates and notify current user" +msgstr "Sprawdź nowe wersje jądra" -#: src/Gtk/UpdateNotificationWindow.vala:147 src/Gtk/MainWindow.vala:357 -msgid "Install" -msgstr "Zainstaluj" +#: src/Console/AppConsole.vala:84 +msgid "List all available mainline kernels" +msgstr "Pokaż wszystkie dostępne jądra" -#: src/Common/LinuxKernel.vala:806 -#, c-format -msgid "Install Linux v%s ? (y/n): " -msgstr "" +#: src/Console/AppConsole.vala:85 +#, fuzzy +msgid "List installed kernels" +msgstr "Pokaż wszystkie dostępne jądra" #: src/Console/AppConsole.vala:86 #, fuzzy @@ -291,231 +205,189 @@ msgstr "" msgid "Install specified mainline kernel" msgstr "Zainstaluj wybrane jądro" -#: src/Gtk/UpdateNotificationWindow.vala:148 -msgid "Install this kernel" -msgstr "Zainstaluj to jądro" - -#: src/Common/LinuxKernel.vala:1284 -msgid "Installation completed with errors" -msgstr "Instalacja zakończona z błędami" +#: src/Console/AppConsole.vala:89 +#, fuzzy +msgid "Remove specified kernel" +msgstr "Usuń wybrane jądro" -#: src/Common/LinuxKernel.vala:1281 -msgid "Installation completed. A reboot is required to use the new kernel." +#: src/Console/AppConsole.vala:90 src/Gtk/MainWindow.vala:424 +msgid "Remove installed kernels older than running kernel" msgstr "" -"Instalacja zakończona. Aby korzystać z nowego jądra, konieczne jest ponowne " -"uruchomienie." -#: src/Common/LinuxKernel.vala:1181 src/Gtk/MainWindow.vala:208 -msgid "Installed" -msgstr "Zainstalowany" +#: src/Console/AppConsole.vala:91 +msgid "Download packages for specified kernel" +msgstr "Pobierz pakiety dla wybranego jądra" -#: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:558 -#: src/Gtk/MainWindow.vala:694 src/Utility/TeeJee.System.vala:281 -msgid "Internet connection is not active" -msgstr "Brak połączenia z internetem" +#: src/Console/AppConsole.vala:92 src/Console/AppConsole.vala:97 +msgid "Remove files from application cache" +msgstr "Usuń pliki z pamięci podręcznej aplikacji" -#: src/Gtk/SettingsDialog.vala:218 +#: src/Console/AppConsole.vala:93 #, fuzzy -msgid "Internet connection timeout in " -msgstr "Brak połączenia z internetem" - -#: src/Gtk/MainWindow.vala:150 -msgid "Kernel" -msgstr "Jądro" +msgid "Show unstable and RC releases" +msgstr "Ukryj wydania niestabilne i RC" -#: src/Gtk/MainWindow.vala:542 -msgid "Kernel upgrade utility for Ubuntu-based distributions" -msgstr "Narzędzie uaktualniania jądra dla dystrybucji z rodziny Ubuntu" +#: src/Console/AppConsole.vala:95 src/Gtk/AppGtk.vala:181 +msgid "Options" +msgstr "Opcje" -#: src/Common/LinuxKernel.vala:788 src/Console/AppConsole.vala:366 -#, c-format -msgid "Latest point update" +#: src/Console/AppConsole.vala:98 +msgid "Enable verbose debugging output" msgstr "" -#: src/Common/LinuxKernel.vala:777 src/Console/AppConsole.vala:359 -#, c-format -msgid "Latest update" +#: src/Console/AppConsole.vala:99 +msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "" -#: src/Console/AppConsole.vala:84 -msgid "List all available mainline kernels" -msgstr "Pokaż wszystkie dostępne jądra" +#: src/Console/AppConsole.vala:100 +msgid "Override user" +msgstr "" -#: src/Gtk/UpdateNotificationWindow.vala:158 -#, fuzzy -msgid "List available kernels" -msgstr "Pokaż wszystkie dostępne jądra" +#: src/Console/AppConsole.vala:113 +msgid "Admin access is required for running this application." +msgstr "Aby uruchomić tę aplikację niezbędne są prawa administratora." -#: src/Console/AppConsole.vala:85 +#: src/Console/AppConsole.vala:116 #, fuzzy -msgid "List installed kernels" -msgstr "Pokaż wszystkie dostępne jądra" - -#: src/Utility/Gtk/GtkHelper.vala:93 -msgid "Missing Icon" -msgstr "Brakująca ikona" +msgid "Run the application as admin with pkexec or sudo." +msgstr "Uruchom aplikację jako root albo użyj gksu/sudo." -#: src/Gtk/MainWindow.vala:366 -msgid "Multiple Kernels Selected" -msgstr "Wybrano kilka jąder" +#: src/Console/AppConsole.vala:196 src/Gtk/AppGtk.vala:166 +msgid "Unknown option" +msgstr "Nieznana opcja" -#: src/Console/AppConsole.vala:290 -msgid "Multiple kernels selected for installation. Select only one." -msgstr "Wybrano kilka jąder do instalacji. Wybierz tylko jedno." +#: src/Console/AppConsole.vala:198 src/Console/AppConsole.vala:312 +#: src/Console/AppConsole.vala:341 +msgid "Run '" +msgstr "" -#: src/Utility/Gtk/CustomMessageDialog.vala:160 -msgid "No" +#: src/Console/AppConsole.vala:203 src/Gtk/AppGtk.vala:110 +msgid "Cache" msgstr "" -#: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:558 -#: src/Gtk/MainWindow.vala:694 -msgid "No Internet" -msgstr "Brak internetu" +#: src/Console/AppConsole.vala:204 src/Gtk/AppGtk.vala:111 +msgid "Temp" +msgstr "" #: src/Console/AppConsole.vala:284 src/Console/AppConsole.vala:321 msgid "No kernels specified" msgstr "" -#: src/Common/LinuxKernel.vala:796 src/Console/AppConsole.vala:371 -#: src/Console/AppConsole.vala:429 src/Gtk/MainWindow.vala:804 -msgid "No updates found" -msgstr "Nie znaleziono aktualizacji" - -#: src/Gtk/MainWindow.vala:369 src/Gtk/MainWindow.vala:380 -msgid "Not Selected" -msgstr "Nie wybrany" - -#: src/Gtk/SettingsDialog.vala:65 -msgid "Notification" -msgstr "Powiadomienia" - -#: src/Gtk/SettingsDialog.vala:72 -msgid "Notify if a major release is available" -msgstr "Powiadom, jeśli pojawi się główna wersja" - -#: src/Gtk/SettingsDialog.vala:83 -msgid "Notify if a point release is available" -msgstr "Powiadom, jeśli pojawi się wersja punktowa" - -#: src/Common/LinuxKernel.vala:1229 -#: src/Utility/Gtk/CustomMessageDialog.vala:150 -#: src/Utility/Gtk/CustomMessageDialog.vala:154 -#, c-format -msgid "OK" -msgstr "OK" - -#: src/Console/AppConsole.vala:95 src/Gtk/AppGtk.vala:181 -msgid "Options" -msgstr "Opcje" +#: src/Console/AppConsole.vala:290 +msgid "Multiple kernels selected for installation. Select only one." +msgstr "Wybrano kilka jąder do instalacji. Wybierz tylko jedno." -#: src/Gtk/SettingsDialog.vala:197 -msgid "Other" -msgstr "" +#: src/Console/AppConsole.vala:308 src/Gtk/MainWindow.vala:100 +msgid "Could not find requested version" +msgstr "Nie można odnaleźć żądanej wersji" -#: src/Console/AppConsole.vala:100 -msgid "Override user" +#: src/Console/AppConsole.vala:340 +msgid "Command not specified" msgstr "" -#: src/Common/LinuxKernel.vala:1072 -#, c-format -msgid "Packages Available" -msgstr "Dostępne pakiety" - -#: src/Common/LinuxKernel.vala:1080 -#, c-format -msgid "Packages Installed" -msgstr "Pakiety zainstalowane" - -#: src/Common/Main.vala:108 -msgid "Please install required packages and try again" -msgstr "Zainstaluj wymagane pakiety i spróbuj ponownie" - -#: src/Common/LinuxKernel.vala:1305 -msgid "Preparing to remove selected kernels" -msgstr "Przygotowanie do usunięcia wybranych jąder" - #: src/Gtk/AppGtk.vala:183 msgid "Print debug information" msgstr "Wypisz informacje debugujące" -#: src/Gtk/MainWindow.vala:423 -msgid "Purge" -msgstr "" - -#: src/Gtk/MainWindow.vala:341 -msgid "Refresh" -msgstr "Odśwież" +#: src/Gtk/AppGtk.vala:184 +msgid "Show all options" +msgstr "Pokaż wszystkie opcje" -#: src/Gtk/MainWindow.vala:577 -msgid "Refreshing..." -msgstr "Odświeżam..." +#: src/Gtk/MainWindow.vala:150 +msgid "Kernel" +msgstr "Jądro" -#: src/Gtk/MainWindow.vala:374 -msgid "Remove" -msgstr "Usuń" +#: src/Gtk/MainWindow.vala:179 +msgid "Version" +msgstr "Wersja" -#: src/Console/AppConsole.vala:92 src/Console/AppConsole.vala:97 -msgid "Remove files from application cache" -msgstr "Usuń pliki z pamięci podręcznej aplikacji" +#: src/Gtk/MainWindow.vala:196 +msgid "Status" +msgstr "Status" -#: src/Console/AppConsole.vala:90 src/Gtk/MainWindow.vala:424 -msgid "Remove installed kernels older than running kernel" -msgstr "" +#: src/Gtk/MainWindow.vala:341 +msgid "Refresh" +msgstr "Odśwież" -#: src/Console/AppConsole.vala:89 -#, fuzzy -msgid "Remove specified kernel" -msgstr "Usuń wybrane jądro" +#: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:558 +#: src/Gtk/MainWindow.vala:694 src/Utility/TeeJee.System.vala:281 +msgid "Internet connection is not active" +msgstr "Brak połączenia z internetem" -#: src/Console/AppConsole.vala:198 src/Console/AppConsole.vala:312 -#: src/Console/AppConsole.vala:341 -msgid "Run '" -msgstr "" +#: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:558 +#: src/Gtk/MainWindow.vala:694 +msgid "No Internet" +msgstr "Brak internetu" -#: src/Console/AppConsole.vala:116 -#, fuzzy -msgid "Run the application as admin with pkexec or sudo." -msgstr "Uruchom aplikację jako root albo użyj gksu/sudo." +#: src/Gtk/MainWindow.vala:357 src/Gtk/UpdateNotificationWindow.vala:147 +msgid "Install" +msgstr "Zainstaluj" -#: src/Common/LinuxKernel.vala:1181 src/Gtk/MainWindow.vala:208 -msgid "Running" -msgstr "Uruchomiony" +#: src/Gtk/MainWindow.vala:366 +msgid "Multiple Kernels Selected" +msgstr "Wybrano kilka jąder" #: src/Gtk/MainWindow.vala:366 msgid "Select a single kernel to install" msgstr "Wybierz pojedyncze jądro do instalacji" +#: src/Gtk/MainWindow.vala:369 src/Gtk/MainWindow.vala:380 +msgid "Not Selected" +msgstr "Nie wybrany" + #: src/Gtk/MainWindow.vala:369 msgid "Select the kernel to install" msgstr "Wybierz pojedyncze do instalacji" +#: src/Gtk/MainWindow.vala:374 +msgid "Remove" +msgstr "Usuń" + #: src/Gtk/MainWindow.vala:380 msgid "Select the kernels to remove" msgstr "Wybierz jądro do usunięcia" -#: src/Common/LinuxKernel.vala:1300 -msgid "" -"Selected kernel is currently running and cannot be removed.\n" -" Install another kernel before removing this one." +#: src/Gtk/MainWindow.vala:423 +msgid "Purge" msgstr "" -"Wybrane jądro aktualnie działa i nie może zostać usunięte.\n" -" Zainstaluj inne jądro przed usunięciem tego." + +#: src/Gtk/MainWindow.vala:462 +msgid "Changes" +msgstr "Zmiany" #: src/Gtk/MainWindow.vala:473 src/Gtk/SettingsDialog.vala:55 msgid "Settings" msgstr "Ustawienia" -#: src/Gtk/UpdateNotificationWindow.vala:157 -msgid "Show" -msgstr "" +#: src/Gtk/MainWindow.vala:494 +msgid "About" +msgstr "O programie" -#: src/Gtk/SettingsDialog.vala:182 -msgid "Show N previous major versions " -msgstr "" +#: src/Gtk/MainWindow.vala:542 +msgid "Kernel upgrade utility for Ubuntu-based distributions" +msgstr "Narzędzie uaktualniania jądra dla dystrybucji z rodziny Ubuntu" -#: src/Gtk/AppGtk.vala:184 -msgid "Show all options" -msgstr "Pokaż wszystkie opcje" +#: src/Gtk/MainWindow.vala:577 +msgid "Refreshing..." +msgstr "Odświeżam..." + +#: src/Gtk/ProgressWindow.vala:145 src/Gtk/TerminalWindow.vala:148 +#: src/Gtk/UpdateNotificationWindow.vala:167 +#: src/Utility/Gtk/CustomMessageDialog.vala:155 +msgid "Cancel" +msgstr "Anuluj" + +#: src/Gtk/SettingsDialog.vala:65 +msgid "Notification" +msgstr "Powiadomienia" + +#: src/Gtk/SettingsDialog.vala:72 +msgid "Notify if a major release is available" +msgstr "Powiadom, jeśli pojawi się główna wersja" + +#: src/Gtk/SettingsDialog.vala:83 +msgid "Notify if a point release is available" +msgstr "Powiadom, jeśli pojawi się wersja punktowa" #: src/Gtk/SettingsDialog.vala:94 msgid "Show notification bubble on desktop" @@ -525,251 +397,196 @@ msgstr "Pokaż powiadomienia na pulpicie" msgid "Show notification dialog" msgstr "Pokaż okno powiadomień" -#: src/Console/AppConsole.vala:93 -#, fuzzy -msgid "Show unstable and RC releases" +#: src/Gtk/SettingsDialog.vala:120 +msgid "Check every" +msgstr "Sprawdzaj co" + +#: src/Gtk/SettingsDialog.vala:151 +msgid "Hour(s)" +msgstr "Godzin(y)" + +#: src/Gtk/SettingsDialog.vala:153 +msgid "Day(s)" +msgstr "Dni" + +#: src/Gtk/SettingsDialog.vala:155 +msgid "Week(s)" +msgstr "Tygodni" + +#: src/Gtk/SettingsDialog.vala:160 +msgid "Display" +msgstr "Pokaż" + +#: src/Gtk/SettingsDialog.vala:168 +msgid "Hide unstable and RC releases" msgstr "Ukryj wydania niestabilne i RC" +#: src/Gtk/SettingsDialog.vala:182 +msgid "Show N previous major versions " +msgstr "" + +#: src/Gtk/SettingsDialog.vala:197 +msgid "Other" +msgstr "" + #: src/Gtk/SettingsDialog.vala:205 #, fuzzy msgid "Skip internet connection check" msgstr "Brak połączenia z internetem" -#: src/Gtk/MainWindow.vala:196 -msgid "Status" -msgstr "Status" +#: src/Gtk/SettingsDialog.vala:218 +#, fuzzy +msgid "Internet connection timeout in " +msgstr "Brak połączenia z internetem" -#: src/Utility/TeeJee.Process.vala:513 -msgid "Stopped" -msgstr "Zatrzymany" +#: src/Gtk/SettingsDialog.vala:232 +msgid "seconds" +msgstr "" -#: src/Console/AppConsole.vala:78 src/Gtk/AppGtk.vala:179 -msgid "Syntax" -msgstr "Składnia" +#: src/Gtk/TerminalWindow.vala:158 src/Utility/Gtk/AboutWindow.vala:295 +msgid "Close" +msgstr "Zamknij" -#: src/Console/AppConsole.vala:204 src/Gtk/AppGtk.vala:111 -msgid "Temp" -msgstr "" +#: src/Gtk/UpdateNotificationWindow.vala:148 +msgid "Install this kernel" +msgstr "Zainstaluj to jądro" -#: src/Common/LinuxKernel.vala:742 -#, c-format -msgid "The following kernels will be removed:" +#: src/Gtk/UpdateNotificationWindow.vala:157 +msgid "Show" msgstr "" +#: src/Gtk/UpdateNotificationWindow.vala:158 +#, fuzzy +msgid "List available kernels" +msgstr "Pokaż wszystkie dostępne jądra" + +#: src/Gtk/UpdateNotificationWindow.vala:168 +msgid "Ignore this update" +msgstr "Zignoruj tę aktualizację" + +#: src/Utility/Gtk/AboutWindow.vala:272 src/Utility/Gtk/AboutWindow.vala:289 +msgid "Credits" +msgstr "Zasługi" + +#: src/Utility/Gtk/AboutWindow.vala:285 +msgid "Back" +msgstr "Wstecz" + +#: src/Utility/Gtk/AboutWindow.vala:314 +msgid "Authors" +msgstr "Аutorzy" + +#: src/Utility/Gtk/AboutWindow.vala:322 +msgid "Contributions" +msgstr "Wkład" + #: src/Utility/Gtk/AboutWindow.vala:330 -#, c-format msgid "Third Party Tools" msgstr "Narzędzia osób trzecich" -#: src/Common/LinuxKernel.vala:1252 src/Gtk/MainWindow.vala:689 -msgid "This kernel is already installed." -msgstr "To jądro jest już zainstalowane." - -#: src/Common/LinuxKernel.vala:1353 -msgid "" -"This kernel is currently running and cannot be removed.\n" -" Install another kernel before removing this one." -msgstr "" -"To jądro aktualnie działa i nie może zostać usunięte.\n" -" Zainstaluj inne jądro przed usunięciem tego." +#: src/Utility/Gtk/AboutWindow.vala:338 +msgid "Artists" +msgstr "Artyści" #: src/Utility/Gtk/AboutWindow.vala:346 -#, c-format msgid "Translators" msgstr "Tłumacze" -#: src/Common/LinuxKernel.vala:1337 src/Common/LinuxKernel.vala:1390 -msgid "Un-install completed" -msgstr "De-instalacja zakończona" +#: src/Utility/Gtk/AboutWindow.vala:354 +msgid "Documenters" +msgstr "Dokumentujący" -#: src/Common/LinuxKernel.vala:1340 src/Common/LinuxKernel.vala:1393 -msgid "Un-install completed with errors" -msgstr "De-instalacja zakończona z błędami" +#: src/Utility/Gtk/CustomMessageDialog.vala:159 +msgid "Yes" +msgstr "" -#: src/Console/AppConsole.vala:196 src/Gtk/AppGtk.vala:166 -msgid "Unknown option" -msgstr "Nieznana opcja" +#: src/Utility/Gtk/CustomMessageDialog.vala:160 +msgid "No" +msgstr "" -#: src/Gtk/MainWindow.vala:179 -msgid "Version" -msgstr "Wersja" +#: src/Utility/Gtk/GtkHelper.vala:17 +msgid "Error" +msgstr "Błąd" -#: src/Utility/TeeJee.Logging.vala:89 -msgid "W" -msgstr "W" +#: src/Utility/Gtk/GtkHelper.vala:93 +msgid "Missing Icon" +msgstr "Brakująca ikona" -#: src/Gtk/SettingsDialog.vala:155 -msgid "Week(s)" -msgstr "Tygodni" +#: src/Utility/TeeJee.FileSystem.vala:97 src/Utility/TeeJee.FileSystem.vala:100 +msgid "File deleted" +msgstr "Plik usunięty" -#: src/Utility/Gtk/CustomMessageDialog.vala:159 -msgid "Yes" -msgstr "" +#: src/Utility/TeeJee.FileSystem.vala:106 +msgid "Failed to delete file" +msgstr "Nie udało się usunąć pliku" -#: src/Utility/AppLock.vala:56 -msgid "[Warning] Deleted invalid lock" -msgstr "[Ostrzeżenie] Usunięto nieprawidłową blokadę" +#: src/Utility/TeeJee.FileSystem.vala:162 +msgid "Failed to read file" +msgstr "Nie udało się odczytać pliku" -#: src/Gtk/SettingsDialog.vala:232 -msgid "seconds" -msgstr "" +#: src/Utility/TeeJee.FileSystem.vala:187 +#: src/Utility/TeeJee.FileSystem.vala:190 +msgid "File saved" +msgstr "Plik zapisany" -#, fuzzy -#~ msgid "Hide kernels older than " -#~ msgstr "Ukryj jądra starsze niż 4.0" +#: src/Utility/TeeJee.FileSystem.vala:197 +msgid "Failed to write file" +msgstr "Nie udało się zapisać pliku" -#~ msgid "Booting previous kernels" -#~ msgstr "Uruchamianie poprzednich jąder" +#: src/Utility/TeeJee.FileSystem.vala:210 +#: src/Utility/TeeJee.FileSystem.vala:213 +msgid "File copied" +msgstr "Plik skopiowany" -#~ msgid "GRUB Options" -#~ msgstr "Opcje GRUB" +#: src/Utility/TeeJee.FileSystem.vala:221 +msgid "Failed to copy file" +msgstr "Nie udało się skopiować pliku" -#, fuzzy -#~ msgid "" -#~ "Mainline kernels can sometimes cause problems if there are proprietary " -#~ "drivers installed on your system. These issues include:\n" -#~ "\n" -#~ "▰ WiFi not working\n" -#~ "▰ Black screen on startup\n" -#~ "▰ Random system freeze\n" -#~ "\n" -#~ "If you face any of these issues there is no need to panic.\n" -#~ "\n" -#~ "▰ Reboot your system\n" -#~ "▰ Select 'Advanced Boot Options' from the GRUB boot menu\n" -#~ "▰ Select an older kernel from the list displayed on this screen\n" -#~ "▰ Your system will boot using the selected kernel\n" -#~ "▰ You can now uninstall the kernel that is causing issues\n" -#~ msgstr "" -#~ "Jądra mogą być przyczyną problemów jeśli w systemie są zainstalowane " -#~ "sterowniki własnościowe. Możliwe problemy:\n" -#~ "\n" -#~ "\\342\\226\\260 Nie działa WiFi\n" -#~ "\\342\\226\\260 Czarny ekran przy uruchamianiu\n" -#~ "\\342\\226\\260 Losowe zawieszanie systemu\n" -#~ "\n" -#~ "Jeśli napotkasz jakiekolwiek problemy, nie należy panikować.\n" -#~ "\n" -#~ "\\342\\226\\260 Zrestartuj system\n" -#~ "\\342\\226\\260 Z menu GRUB wybierz opcję 'Advanced Boot Options'\n" -#~ "\\342\\226\\260 Wybierz starsze jądro z listy wyświetlanej na tym " -#~ "ekranie\n" -#~ "\\342\\226\\260 Twój system uruchomi się za pomocą wybranego jądra\n" -#~ "\\342\\226\\260 Możesz teraz odinstalować jądro powodujące problemy\n" - -#~ msgid "" -#~ "Time (in seconds) to display the GRUB menu\n" -#~ "\n" -#~ "0 = Do not show menu\n" -#~ "-1 = Show indefinitely till user selects" -#~ msgstr "" -#~ "Czas (w sekundach) wyświetlania menu GRUB\n" -#~ "\n" -#~ "0 = Nie pokazuj\n" -#~ "-1 = Wyświetlaj do momentu wybrania przez użytkownika" - -#~ msgid "" -#~ "Updates the GRUB menu after installing or removing kernels, so that the " -#~ "menu is displayed for 2 seconds at boot time. This will help you recover " -#~ "from a bad kernel update by selecting another kernel to boot. During " -#~ "boot, use the 'Advanced options for Ubuntu' menu entry to select another " -#~ "kernel.\n" -#~ "\n" -#~ "0 = Do not show menu\n" -#~ "-1 = Show indefinitely till user selects" -#~ msgstr "" -#~ "Aktualizuje menu GRUB po zainstalowaniu lub usunięciu jądra, dzięki czemu " -#~ "menu jest wyświetlane przez 2 sekundy w czasie rozruchu. Pomoże to " -#~ "odzyskać kontrolę z powodu złej aktualizacji jądra, przez wybranie innego " -#~ "jądra do uruchomienia. Podczas uruchamiania wybierz opcję \"Advanced " -#~ "options for Ubuntu\" w celu wybrania innego jądra.\n" -#~ "\n" -#~ "0 = Nie pokazuj\n" -#~ "-1 = Wyświetlaj do momentu wybrania przez użytkownika" - -#~ msgid "Updating GRUB menu" -#~ msgstr "Aktualizacja menu GRUB" - -#~ msgid "Run 'ukuu --list' and use the version string listed in first column" -#~ msgstr "" -#~ "Uruchom 'ukuu --list' i użyj wersji wyświetlonej w pierwszej kolumnie" - -#~ msgid "" -#~ "Did you find this software useful?\n" -#~ "\n" -#~ "You can buy me a coffee or make a donation via PayPal to show your " -#~ "support. Or just drop me an email and say Hi. This application is " -#~ "completely free and will continue to remain that way. Your contributions " -#~ "will help in keeping this project alive and improving it further.\n" -#~ "\n" -#~ "Feel free to send me an email if you find any issues in this application " -#~ "or if you need any changes. Suggestions and feedback are always welcome.\n" -#~ "\n" -#~ "Thanks,\n" -#~ "Tony George\n" -#~ "(teejeetech@gmail.com)" -#~ msgstr "" -#~ "Czy to oprogramowanie jest dla Ciebie przydatne?\n" -#~ "\n" -#~ "Możesz kupić mi kawę lub złożyć darowiznę za pośrednictwem PayPal, aby " -#~ "okazać swoje wsparcie. Lub po prostu wyślij e-maila i powiedz Cześć. Ta " -#~ "aplikacja jest zupełnie bezpłatna i taka pozostanie. Twój wkład pomoże w " -#~ "utrzymaniu projektu przy życiu i ulepszaniu go w przyszłości.\n" -#~ "\n" -#~ "Jeśli znajdziesz jakieś błędy lub potrzebujesz zmian w tej aplikacji, " -#~ "napisz do mnie e-mail. Sugestie i opinie są zawsze mile widziane.\n" -#~ "\n" -#~ "Dziękuję,\n" -#~ "Tony George\n" -#~ "(teejeetech@gmail.com)" - -#~ msgid "Display GRUB menu during boot" -#~ msgstr "Pokaż menu GRUB przy starcie" - -#~ msgid "Donate" -#~ msgstr "Wesprzyj" - -#~ msgid "Donate with Google Wallet" -#~ msgstr "Wesprzyj poprzez Google Wallet" - -#~ msgid "Donate with PayPal" -#~ msgstr "Wesprzyj poprzez PayPal" - -#~ msgid "Donations" -#~ msgstr "Wsparcie" - -#~ msgid "File read" -#~ msgstr "Plik odczytany" - -#~ msgid "Notify if kernel update is available" -#~ msgstr "Powiadom, jeśli pojawi się aktualizacja jądra" - -#~ msgid "Send Email" -#~ msgstr "Wyślij e-mail" - -#~ msgid "Use specified user's cache directory" -#~ msgstr "Użyj katalogu podręcznego wybranego użytkownika" - -#~ msgid "Using cache directory" -#~ msgstr "Użycie katalogu pamięci podręcznej" - -#~ msgid "Visit Website" -#~ msgstr "Odwiedź stronę WWW" - -#~ msgid "Open Ukuu" -#~ msgstr "Otwórz Ukuu" - -#~ msgid "Enter path or browse for directory" -#~ msgstr "Wprowadź ścieżkę lub wyszukaj katalog" - -#~ msgid "Open" -#~ msgstr "Otwórz" - -#~ msgid "Root Access Required" -#~ msgstr "Niezbędne są uprawnienia root" - -#~ msgid "Root access is required for running this application." -#~ msgstr "Aby uruchomić tę aplikację niezbędne są uprawnienia root." - -#~ msgid "Select Path" -#~ msgstr "Wybierz ścieżkę" +#: src/Utility/TeeJee.FileSystem.vala:231 +#: src/Utility/TeeJee.FileSystem.vala:538 +msgid "File not found" +msgstr "Nie odnaleziono pliku" + +#: src/Utility/TeeJee.FileSystem.vala:245 +#: src/Utility/TeeJee.FileSystem.vala:248 +msgid "File moved" +msgstr "Plik przeniesiony" + +#: src/Utility/TeeJee.FileSystem.vala:253 +msgid "Failed to move file" +msgstr "Nie udało się przenieść pliku" + +#: src/Utility/TeeJee.FileSystem.vala:349 +#: src/Utility/TeeJee.FileSystem.vala:352 +#: src/Utility/TeeJee.FileSystem.vala:378 +msgid "Created directory" +msgstr "Utworzono katalog" + +#: src/Utility/TeeJee.FileSystem.vala:359 +msgid "Failed to create dir" +msgstr "Nie udało się utworzyć katalogu" + +#: src/Utility/TeeJee.FileSystem.vala:375 +msgid "Deleted directory" +msgstr "Usunięto katalog" + +#: src/Utility/TeeJee.FileSystem.vala:509 +msgid "Dir not found" +msgstr "Katalog nie odnaleziony" + +#: src/Utility/TeeJee.FileSystem.vala:662 +#: src/Utility/TeeJee.FileSystem.vala:711 +msgid "File is missing" +msgstr "Brak pliku" + +#: src/Utility/TeeJee.Logging.vala:89 +msgid "E" +msgstr "E" + +#: src/Utility/TeeJee.Logging.vala:89 +msgid "W" +msgstr "W" + +#: src/Utility/TeeJee.Process.vala:513 +msgid "Stopped" +msgstr "Zatrzymany" diff --git a/po/ru.po b/po/ru.po index c680ce46..115bbef9 100644 --- a/po/ru.po +++ b/po/ru.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: ukuu\n" -"Report-Msgid-Bugs-To: b.kenyon.w@gmail.com\n" -"POT-Creation-Date: 2020-05-01 13:31-0400\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-05-02 16:29-0400\n" "PO-Revision-Date: 2016-12-13 16:46+0300\n" "Last-Translator: Faust3000 \n" "Language-Team: Russian \n" @@ -18,272 +18,184 @@ msgstr "" "X-Launchpad-Export-Date: 2016-12-13 11:48+0000\n" "X-Generator: Poedit 1.8.7.1\n" -#: src/Gtk/MainWindow.vala:494 -msgid "About" -msgstr "О программе" - -#: src/Console/AppConsole.vala:113 -msgid "Admin access is required for running this application." -msgstr "Для запуска программы требуются права администратора." - -#: src/Utility/AppLock.vala:51 -msgid "Another instance of this application is running" -msgstr "Запущен другой экземпляр программы" +#: src/Common/LinuxKernel.vala:92 +msgid "Distribution" +msgstr "Дистрибутив" #: src/Common/LinuxKernel.vala:106 #, fuzzy msgid "Architecture" msgstr "Системная архитектура" -#: src/Utility/Gtk/AboutWindow.vala:338 -#, c-format -msgid "Artists" -msgstr "Художники" - -#: src/Console/AppConsole.vala:99 -msgid "Assume Yes for all prompts (non-interactive mode)" -msgstr "" - -#: src/Utility/Gtk/AboutWindow.vala:314 -#, c-format -msgid "Authors" -msgstr "Авторы" - -#: src/Common/LinuxKernel.vala:1164 -msgid "Available Kernels" -msgstr "Доступные ядра" +#: src/Common/LinuxKernel.vala:257 +msgid "Index is stale" +msgstr "Сведения устарели" -#: src/Utility/Gtk/AboutWindow.vala:285 -msgid "Back" -msgstr "Назад" +#: src/Common/LinuxKernel.vala:260 +msgid "Index is fresh" +msgstr "Сведения актуальны" -#: src/Console/AppConsole.vala:203 src/Gtk/AppGtk.vala:110 -msgid "Cache" +#: src/Common/LinuxKernel.vala:365 +msgid "Fetching index..." msgstr "" -#: src/Gtk/ProgressWindow.vala:145 src/Gtk/TerminalWindow.vala:148 -#: src/Gtk/UpdateNotificationWindow.vala:167 -#: src/Utility/Gtk/CustomMessageDialog.vala:155 -msgid "Cancel" -msgstr "Отмена" - -#: src/Gtk/MainWindow.vala:462 -msgid "Changes" -msgstr "Изменения" - -#: src/Gtk/SettingsDialog.vala:120 -msgid "Check every" -msgstr "Проверять каждые" - -#: src/Console/AppConsole.vala:82 -msgid "Check for kernel updates" -msgstr "Проверить обновления ядра" +#: src/Common/LinuxKernel.vala:408 +msgid "Fetching index from kernel.ubuntu.com..." +msgstr "Получение сведений с kernel.ubuntu.com..." -#: src/Console/AppConsole.vala:83 +#: src/Common/LinuxKernel.vala:727 #, fuzzy -msgid "Check for kernel updates and notify current user" -msgstr "Проверить обновления ядра" - -#: src/Gtk/TerminalWindow.vala:158 src/Utility/Gtk/AboutWindow.vala:295 -msgid "Close" -msgstr "Закрыть" - -#: src/Console/AppConsole.vala:340 -msgid "Command not specified" -msgstr "" - -#: src/Console/AppConsole.vala:80 -msgid "Commands" -msgstr "" - -#: src/Common/Main.vala:107 -msgid "Commands listed below are not available on this system" -msgstr "Команды перечисленные ниже недоступны на этой системе" - -#: src/Common/LinuxKernel.vala:749 -#, c-format -msgid "Continue ?" -msgstr "" - -#: src/Utility/Gtk/AboutWindow.vala:322 -#, c-format -msgid "Contributions" -msgstr "Взносы" +msgid "Could not find running kernel in list!" +msgstr "Не удалось найти запрошенную версию" #: src/Common/LinuxKernel.vala:733 #, fuzzy msgid "Could not find any kernels to remove" msgstr "Не удалось найти запрошенную версию" -#: src/Console/AppConsole.vala:308 src/Gtk/MainWindow.vala:100 -msgid "Could not find requested version" -msgstr "Не удалось найти запрошенную версию" +#: src/Common/LinuxKernel.vala:742 +msgid "The following kernels will be removed:" +msgstr "" -#: src/Common/LinuxKernel.vala:727 -#, fuzzy -msgid "Could not find running kernel in list!" -msgstr "Не удалось найти запрошенную версию" +#: src/Common/LinuxKernel.vala:749 +msgid "Continue ?" +msgstr "" -#: src/Utility/TeeJee.FileSystem.vala:349 -#: src/Utility/TeeJee.FileSystem.vala:352 -#: src/Utility/TeeJee.FileSystem.vala:378 -#, fuzzy -msgid "Created directory" -msgstr "Используемая кэш-папка" +#: src/Common/LinuxKernel.vala:777 src/Console/AppConsole.vala:359 +msgid "Latest update" +msgstr "" -#: src/Utility/Gtk/AboutWindow.vala:272 src/Utility/Gtk/AboutWindow.vala:289 -msgid "Credits" -msgstr "Создатели" +#: src/Common/LinuxKernel.vala:788 src/Console/AppConsole.vala:366 +msgid "Latest point update" +msgstr "" -#: src/Gtk/SettingsDialog.vala:153 -msgid "Day(s)" -msgstr "День(дней)" +#: src/Common/LinuxKernel.vala:796 src/Console/AppConsole.vala:371 +#: src/Console/AppConsole.vala:429 src/Gtk/MainWindow.vala:804 +msgid "No updates found" +msgstr "Обновлений не найдено" -#: src/Utility/TeeJee.FileSystem.vala:375 -msgid "Deleted directory" +#: src/Common/LinuxKernel.vala:806 +#, c-format +msgid "Install Linux v%s ? (y/n): " msgstr "" -#: src/Utility/TeeJee.FileSystem.vala:509 -msgid "Dir not found" -msgstr "Папка не найдена" +#: src/Common/LinuxKernel.vala:1072 +#, fuzzy +msgid "Packages Available" +msgstr "Установлено" -#: src/Gtk/SettingsDialog.vala:160 -msgid "Display" -msgstr "Вид" +#: src/Common/LinuxKernel.vala:1080 +#, fuzzy +msgid "Packages Installed" +msgstr "Установлено" -#: src/Common/LinuxKernel.vala:92 -msgid "Distribution" -msgstr "Дистрибутив" +#: src/Common/LinuxKernel.vala:1164 +msgid "Available Kernels" +msgstr "Доступные ядра" -#: src/Utility/Gtk/AboutWindow.vala:354 -#, c-format -msgid "Documenters" -msgstr "Составители документации" +#: src/Common/LinuxKernel.vala:1181 src/Gtk/MainWindow.vala:208 +msgid "Installed" +msgstr "Установлено" -#: src/Console/AppConsole.vala:91 -msgid "Download packages for specified kernel" -msgstr "Скачать пакеты для указанного ядра" +#: src/Common/LinuxKernel.vala:1181 src/Gtk/MainWindow.vala:208 +msgid "Running" +msgstr "Используется" #: src/Common/LinuxKernel.vala:1210 -#, c-format msgid "Downloading" msgstr "Загрузка" -#: src/Utility/TeeJee.Logging.vala:89 -msgid "E" -msgstr "E" +#: src/Common/LinuxKernel.vala:1229 +#: src/Utility/Gtk/CustomMessageDialog.vala:150 +#: src/Utility/Gtk/CustomMessageDialog.vala:154 +msgid "OK" +msgstr "OK" #: src/Common/LinuxKernel.vala:1238 -#, c-format msgid "ERROR" msgstr "ОШИБКА" -#: src/Console/AppConsole.vala:98 -msgid "Enable verbose debugging output" -msgstr "" - -#: src/Utility/Gtk/GtkHelper.vala:17 -msgid "Error" -msgstr "Ошибка" - -#: src/Utility/TeeJee.FileSystem.vala:221 -msgid "Failed to copy file" -msgstr "Не удалось скопировать файл" - -#: src/Utility/TeeJee.FileSystem.vala:359 -msgid "Failed to create dir" -msgstr "Не удалось создать папку" - -#: src/Utility/TeeJee.FileSystem.vala:106 -msgid "Failed to delete file" -msgstr "Не удалось удалить файл" - -#: src/Utility/TeeJee.FileSystem.vala:253 -msgid "Failed to move file" -msgstr "Не удалось переместить файл" +#: src/Common/LinuxKernel.vala:1252 src/Gtk/MainWindow.vala:689 +msgid "This kernel is already installed." +msgstr "Это ядро уже установлено." -#: src/Utility/TeeJee.FileSystem.vala:162 -msgid "Failed to read file" -msgstr "Не удалось прочитать файл" +#: src/Common/LinuxKernel.vala:1281 +msgid "Installation completed. A reboot is required to use the new kernel." +msgstr "" +"Установка завершена. Обязательно выполните перезагрузку, чтобы использовать " +"новое ядро." -#: src/Utility/TeeJee.FileSystem.vala:197 -msgid "Failed to write file" -msgstr "Не удалось записать файл" +#: src/Common/LinuxKernel.vala:1284 +msgid "Installation completed with errors" +msgstr "Установка завершена с ошибками" -#: src/Common/LinuxKernel.vala:408 -msgid "Fetching index from kernel.ubuntu.com..." -msgstr "Получение сведений с kernel.ubuntu.com..." +#: src/Common/LinuxKernel.vala:1300 +#, fuzzy +msgid "" +"Selected kernel is currently running and cannot be removed.\n" +" Install another kernel before removing this one." +msgstr "" +"Это ядро в настоящий момент работает и не может быть удалено.\n" +" Установите другое ядро, прежде чем удалять его." -#: src/Common/LinuxKernel.vala:365 -msgid "Fetching index..." +#: src/Common/LinuxKernel.vala:1305 +msgid "Preparing to remove selected kernels" msgstr "" -#: src/Utility/TeeJee.FileSystem.vala:210 -#: src/Utility/TeeJee.FileSystem.vala:213 -#, fuzzy -msgid "File copied" -msgstr "Не удалось скопировать файл" +#: src/Common/LinuxKernel.vala:1337 src/Common/LinuxKernel.vala:1390 +msgid "Un-install completed" +msgstr "Удаление завершено" -#: src/Utility/TeeJee.FileSystem.vala:97 src/Utility/TeeJee.FileSystem.vala:100 -#, fuzzy -msgid "File deleted" -msgstr "Не удалось удалить файл" +#: src/Common/LinuxKernel.vala:1340 src/Common/LinuxKernel.vala:1393 +msgid "Un-install completed with errors" +msgstr "Удаление завершено с ошибками" -#: src/Utility/TeeJee.FileSystem.vala:662 -#: src/Utility/TeeJee.FileSystem.vala:711 -msgid "File is missing" -msgstr "Файл отсутствует" +#: src/Common/LinuxKernel.vala:1353 +msgid "" +"This kernel is currently running and cannot be removed.\n" +" Install another kernel before removing this one." +msgstr "" +"Это ядро в настоящий момент работает и не может быть удалено.\n" +" Установите другое ядро, прежде чем удалять его." -#: src/Utility/TeeJee.FileSystem.vala:245 -#: src/Utility/TeeJee.FileSystem.vala:248 -#, fuzzy -msgid "File moved" -msgstr "Удалить" +#: src/Common/Main.vala:107 +msgid "Commands listed below are not available on this system" +msgstr "Команды перечисленные ниже недоступны на этой системе" -#: src/Utility/TeeJee.FileSystem.vala:231 -#: src/Utility/TeeJee.FileSystem.vala:538 -msgid "File not found" -msgstr "Файл не найден" +#: src/Common/Main.vala:108 +msgid "Please install required packages and try again" +msgstr "Установить необходимые пакеты и попробуйте снова" #: src/Common/Package.vala:126 src/Common/Package.vala:188 #, c-format msgid "File not found: %s" msgstr "Файл не найден: %s" -#: src/Utility/TeeJee.FileSystem.vala:187 -#: src/Utility/TeeJee.FileSystem.vala:190 -#, fuzzy -msgid "File saved" -msgstr "Файловая система" - -#: src/Gtk/SettingsDialog.vala:168 -msgid "Hide unstable and RC releases" -msgstr "Скрыть нестабильные и релиз-кандидат версии" - -#: src/Gtk/SettingsDialog.vala:151 -msgid "Hour(s)" -msgstr "Час(ов)" +#: src/Console/AppConsole.vala:78 src/Gtk/AppGtk.vala:179 +msgid "Syntax" +msgstr "Синтаксис" -#: src/Gtk/UpdateNotificationWindow.vala:168 -msgid "Ignore this update" -msgstr "Игнорировать это обновление" +#: src/Console/AppConsole.vala:80 +msgid "Commands" +msgstr "" -#: src/Common/LinuxKernel.vala:260 -msgid "Index is fresh" -msgstr "Сведения актуальны" +#: src/Console/AppConsole.vala:82 +msgid "Check for kernel updates" +msgstr "Проверить обновления ядра" -#: src/Common/LinuxKernel.vala:257 -msgid "Index is stale" -msgstr "Сведения устарели" +#: src/Console/AppConsole.vala:83 +#, fuzzy +msgid "Check for kernel updates and notify current user" +msgstr "Проверить обновления ядра" -#: src/Gtk/UpdateNotificationWindow.vala:147 src/Gtk/MainWindow.vala:357 -msgid "Install" -msgstr "Установить" +#: src/Console/AppConsole.vala:84 +msgid "List all available mainline kernels" +msgstr "Список всех доступных основных ядер" -#: src/Common/LinuxKernel.vala:806 -#, c-format -msgid "Install Linux v%s ? (y/n): " -msgstr "" +#: src/Console/AppConsole.vala:85 +#, fuzzy +msgid "List installed kernels" +msgstr "Список всех доступных основных ядер" #: src/Console/AppConsole.vala:86 #, fuzzy @@ -298,232 +210,189 @@ msgstr "" msgid "Install specified mainline kernel" msgstr "Установить указанную ветку ядра" -#: src/Gtk/UpdateNotificationWindow.vala:148 -msgid "Install this kernel" -msgstr "Установить это ядро" - -#: src/Common/LinuxKernel.vala:1284 -msgid "Installation completed with errors" -msgstr "Установка завершена с ошибками" +#: src/Console/AppConsole.vala:89 +#, fuzzy +msgid "Remove specified kernel" +msgstr "Удалить указанную ветку ядра" -#: src/Common/LinuxKernel.vala:1281 -msgid "Installation completed. A reboot is required to use the new kernel." -msgstr "" -"Установка завершена. Обязательно выполните перезагрузку, чтобы использовать " -"новое ядро." +#: src/Console/AppConsole.vala:90 src/Gtk/MainWindow.vala:424 +msgid "Remove installed kernels older than running kernel" +msgstr "Удалить более старшие установленные ядра, чем используемое" -#: src/Common/LinuxKernel.vala:1181 src/Gtk/MainWindow.vala:208 -msgid "Installed" -msgstr "Установлено" +#: src/Console/AppConsole.vala:91 +msgid "Download packages for specified kernel" +msgstr "Скачать пакеты для указанного ядра" -#: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:558 -#: src/Gtk/MainWindow.vala:694 src/Utility/TeeJee.System.vala:281 -msgid "Internet connection is not active" -msgstr "Интернет соединение не активно" +#: src/Console/AppConsole.vala:92 src/Console/AppConsole.vala:97 +msgid "Remove files from application cache" +msgstr "Удалить файлы из кэша программы" -#: src/Gtk/SettingsDialog.vala:218 +#: src/Console/AppConsole.vala:93 #, fuzzy -msgid "Internet connection timeout in " -msgstr "Интернет соединение не активно" - -#: src/Gtk/MainWindow.vala:150 -msgid "Kernel" -msgstr "Ядро" +msgid "Show unstable and RC releases" +msgstr "Скрыть нестабильные и релиз-кандидат версии" -#: src/Gtk/MainWindow.vala:542 -msgid "Kernel upgrade utility for Ubuntu-based distributions" -msgstr "Программа обновления ядра для дистрибутивов на базе Ubuntu" +#: src/Console/AppConsole.vala:95 src/Gtk/AppGtk.vala:181 +msgid "Options" +msgstr "Параметры" -#: src/Common/LinuxKernel.vala:788 src/Console/AppConsole.vala:366 -#, c-format -msgid "Latest point update" +#: src/Console/AppConsole.vala:98 +msgid "Enable verbose debugging output" msgstr "" -#: src/Common/LinuxKernel.vala:777 src/Console/AppConsole.vala:359 -#, c-format -msgid "Latest update" +#: src/Console/AppConsole.vala:99 +msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "" -#: src/Console/AppConsole.vala:84 -msgid "List all available mainline kernels" -msgstr "Список всех доступных основных ядер" +#: src/Console/AppConsole.vala:100 +msgid "Override user" +msgstr "" -#: src/Gtk/UpdateNotificationWindow.vala:158 -#, fuzzy -msgid "List available kernels" -msgstr "Список всех доступных основных ядер" +#: src/Console/AppConsole.vala:113 +msgid "Admin access is required for running this application." +msgstr "Для запуска программы требуются права администратора." -#: src/Console/AppConsole.vala:85 +#: src/Console/AppConsole.vala:116 #, fuzzy -msgid "List installed kernels" -msgstr "Список всех доступных основных ядер" - -#: src/Utility/Gtk/GtkHelper.vala:93 -msgid "Missing Icon" -msgstr "Значок отсутствует" +msgid "Run the application as admin with pkexec or sudo." +msgstr "Запустите программу с правами Root или используйте gksu/sudo." -#: src/Gtk/MainWindow.vala:366 -msgid "Multiple Kernels Selected" -msgstr "" +#: src/Console/AppConsole.vala:196 src/Gtk/AppGtk.vala:166 +msgid "Unknown option" +msgstr "Неизвестный параметр" -#: src/Console/AppConsole.vala:290 -msgid "Multiple kernels selected for installation. Select only one." +#: src/Console/AppConsole.vala:198 src/Console/AppConsole.vala:312 +#: src/Console/AppConsole.vala:341 +msgid "Run '" msgstr "" -#: src/Utility/Gtk/CustomMessageDialog.vala:160 -msgid "No" +#: src/Console/AppConsole.vala:203 src/Gtk/AppGtk.vala:110 +msgid "Cache" msgstr "" -#: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:558 -#: src/Gtk/MainWindow.vala:694 -msgid "No Internet" +#: src/Console/AppConsole.vala:204 src/Gtk/AppGtk.vala:111 +msgid "Temp" msgstr "" #: src/Console/AppConsole.vala:284 src/Console/AppConsole.vala:321 msgid "No kernels specified" msgstr "" -#: src/Common/LinuxKernel.vala:796 src/Console/AppConsole.vala:371 -#: src/Console/AppConsole.vala:429 src/Gtk/MainWindow.vala:804 -msgid "No updates found" -msgstr "Обновлений не найдено" - -#: src/Gtk/MainWindow.vala:369 src/Gtk/MainWindow.vala:380 -msgid "Not Selected" -msgstr "" - -#: src/Gtk/SettingsDialog.vala:65 -msgid "Notification" -msgstr "Уведомления" - -#: src/Gtk/SettingsDialog.vala:72 -msgid "Notify if a major release is available" -msgstr "Уведомлять, если доступно крупное обновление" - -#: src/Gtk/SettingsDialog.vala:83 -msgid "Notify if a point release is available" -msgstr "Уведомлять, если доступно небольшое обновление" - -#: src/Common/LinuxKernel.vala:1229 -#: src/Utility/Gtk/CustomMessageDialog.vala:150 -#: src/Utility/Gtk/CustomMessageDialog.vala:154 -#, c-format -msgid "OK" -msgstr "OK" - -#: src/Console/AppConsole.vala:95 src/Gtk/AppGtk.vala:181 -msgid "Options" -msgstr "Параметры" - -#: src/Gtk/SettingsDialog.vala:197 -msgid "Other" -msgstr "" - -#: src/Console/AppConsole.vala:100 -msgid "Override user" +#: src/Console/AppConsole.vala:290 +msgid "Multiple kernels selected for installation. Select only one." msgstr "" -#: src/Common/LinuxKernel.vala:1072 -#, fuzzy, c-format -msgid "Packages Available" -msgstr "Установлено" - -#: src/Common/LinuxKernel.vala:1080 -#, fuzzy, c-format -msgid "Packages Installed" -msgstr "Установлено" - -#: src/Common/Main.vala:108 -msgid "Please install required packages and try again" -msgstr "Установить необходимые пакеты и попробуйте снова" +#: src/Console/AppConsole.vala:308 src/Gtk/MainWindow.vala:100 +msgid "Could not find requested version" +msgstr "Не удалось найти запрошенную версию" -#: src/Common/LinuxKernel.vala:1305 -msgid "Preparing to remove selected kernels" +#: src/Console/AppConsole.vala:340 +msgid "Command not specified" msgstr "" #: src/Gtk/AppGtk.vala:183 msgid "Print debug information" msgstr "Распечатать отладочную информацию" -#: src/Gtk/MainWindow.vala:423 -msgid "Purge" -msgstr "Очистить" - -#: src/Gtk/MainWindow.vala:341 -msgid "Refresh" -msgstr "Обновить" +#: src/Gtk/AppGtk.vala:184 +msgid "Show all options" +msgstr "Показать все параметры" -#: src/Gtk/MainWindow.vala:577 -msgid "Refreshing..." -msgstr "Обновление..." +#: src/Gtk/MainWindow.vala:150 +msgid "Kernel" +msgstr "Ядро" -#: src/Gtk/MainWindow.vala:374 -msgid "Remove" -msgstr "Удалить" +#: src/Gtk/MainWindow.vala:179 +msgid "Version" +msgstr "Версия" -#: src/Console/AppConsole.vala:92 src/Console/AppConsole.vala:97 -msgid "Remove files from application cache" -msgstr "Удалить файлы из кэша программы" +#: src/Gtk/MainWindow.vala:196 +msgid "Status" +msgstr "Состояние" -#: src/Console/AppConsole.vala:90 src/Gtk/MainWindow.vala:424 -msgid "Remove installed kernels older than running kernel" -msgstr "Удалить более старшие установленные ядра, чем используемое" +#: src/Gtk/MainWindow.vala:341 +msgid "Refresh" +msgstr "Обновить" -#: src/Console/AppConsole.vala:89 -#, fuzzy -msgid "Remove specified kernel" -msgstr "Удалить указанную ветку ядра" +#: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:558 +#: src/Gtk/MainWindow.vala:694 src/Utility/TeeJee.System.vala:281 +msgid "Internet connection is not active" +msgstr "Интернет соединение не активно" -#: src/Console/AppConsole.vala:198 src/Console/AppConsole.vala:312 -#: src/Console/AppConsole.vala:341 -msgid "Run '" +#: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:558 +#: src/Gtk/MainWindow.vala:694 +msgid "No Internet" msgstr "" -#: src/Console/AppConsole.vala:116 -#, fuzzy -msgid "Run the application as admin with pkexec or sudo." -msgstr "Запустите программу с правами Root или используйте gksu/sudo." +#: src/Gtk/MainWindow.vala:357 src/Gtk/UpdateNotificationWindow.vala:147 +msgid "Install" +msgstr "Установить" -#: src/Common/LinuxKernel.vala:1181 src/Gtk/MainWindow.vala:208 -msgid "Running" -msgstr "Используется" +#: src/Gtk/MainWindow.vala:366 +msgid "Multiple Kernels Selected" +msgstr "" #: src/Gtk/MainWindow.vala:366 msgid "Select a single kernel to install" msgstr "" +#: src/Gtk/MainWindow.vala:369 src/Gtk/MainWindow.vala:380 +msgid "Not Selected" +msgstr "" + #: src/Gtk/MainWindow.vala:369 msgid "Select the kernel to install" msgstr "" +#: src/Gtk/MainWindow.vala:374 +msgid "Remove" +msgstr "Удалить" + #: src/Gtk/MainWindow.vala:380 msgid "Select the kernels to remove" msgstr "" -#: src/Common/LinuxKernel.vala:1300 -#, fuzzy -msgid "" -"Selected kernel is currently running and cannot be removed.\n" -" Install another kernel before removing this one." -msgstr "" -"Это ядро в настоящий момент работает и не может быть удалено.\n" -" Установите другое ядро, прежде чем удалять его." +#: src/Gtk/MainWindow.vala:423 +msgid "Purge" +msgstr "Очистить" + +#: src/Gtk/MainWindow.vala:462 +msgid "Changes" +msgstr "Изменения" #: src/Gtk/MainWindow.vala:473 src/Gtk/SettingsDialog.vala:55 msgid "Settings" msgstr "Настройки" -#: src/Gtk/UpdateNotificationWindow.vala:157 -msgid "Show" -msgstr "" +#: src/Gtk/MainWindow.vala:494 +msgid "About" +msgstr "О программе" -#: src/Gtk/SettingsDialog.vala:182 -msgid "Show N previous major versions " -msgstr "" +#: src/Gtk/MainWindow.vala:542 +msgid "Kernel upgrade utility for Ubuntu-based distributions" +msgstr "Программа обновления ядра для дистрибутивов на базе Ubuntu" -#: src/Gtk/AppGtk.vala:184 -msgid "Show all options" -msgstr "Показать все параметры" +#: src/Gtk/MainWindow.vala:577 +msgid "Refreshing..." +msgstr "Обновление..." + +#: src/Gtk/ProgressWindow.vala:145 src/Gtk/TerminalWindow.vala:148 +#: src/Gtk/UpdateNotificationWindow.vala:167 +#: src/Utility/Gtk/CustomMessageDialog.vala:155 +msgid "Cancel" +msgstr "Отмена" + +#: src/Gtk/SettingsDialog.vala:65 +msgid "Notification" +msgstr "Уведомления" + +#: src/Gtk/SettingsDialog.vala:72 +msgid "Notify if a major release is available" +msgstr "Уведомлять, если доступно крупное обновление" + +#: src/Gtk/SettingsDialog.vala:83 +msgid "Notify if a point release is available" +msgstr "Уведомлять, если доступно небольшое обновление" #: src/Gtk/SettingsDialog.vala:94 msgid "Show notification bubble on desktop" @@ -533,197 +402,201 @@ msgstr "Показывать окно оповещений на рабочем msgid "Show notification dialog" msgstr "Показывать окно оповещений" -#: src/Console/AppConsole.vala:93 -#, fuzzy -msgid "Show unstable and RC releases" +#: src/Gtk/SettingsDialog.vala:120 +msgid "Check every" +msgstr "Проверять каждые" + +#: src/Gtk/SettingsDialog.vala:151 +msgid "Hour(s)" +msgstr "Час(ов)" + +#: src/Gtk/SettingsDialog.vala:153 +msgid "Day(s)" +msgstr "День(дней)" + +#: src/Gtk/SettingsDialog.vala:155 +msgid "Week(s)" +msgstr "Неделю(ли)" + +#: src/Gtk/SettingsDialog.vala:160 +msgid "Display" +msgstr "Вид" + +#: src/Gtk/SettingsDialog.vala:168 +msgid "Hide unstable and RC releases" msgstr "Скрыть нестабильные и релиз-кандидат версии" +#: src/Gtk/SettingsDialog.vala:182 +msgid "Show N previous major versions " +msgstr "" + +#: src/Gtk/SettingsDialog.vala:197 +msgid "Other" +msgstr "" + #: src/Gtk/SettingsDialog.vala:205 #, fuzzy msgid "Skip internet connection check" msgstr "Интернет соединение не активно" -#: src/Gtk/MainWindow.vala:196 -msgid "Status" -msgstr "Состояние" +#: src/Gtk/SettingsDialog.vala:218 +#, fuzzy +msgid "Internet connection timeout in " +msgstr "Интернет соединение не активно" -#: src/Utility/TeeJee.Process.vala:513 -msgid "Stopped" -msgstr "Остановлено" +#: src/Gtk/SettingsDialog.vala:232 +msgid "seconds" +msgstr "" -#: src/Console/AppConsole.vala:78 src/Gtk/AppGtk.vala:179 -msgid "Syntax" -msgstr "Синтаксис" +#: src/Gtk/TerminalWindow.vala:158 src/Utility/Gtk/AboutWindow.vala:295 +msgid "Close" +msgstr "Закрыть" -#: src/Console/AppConsole.vala:204 src/Gtk/AppGtk.vala:111 -msgid "Temp" -msgstr "" +#: src/Gtk/UpdateNotificationWindow.vala:148 +msgid "Install this kernel" +msgstr "Установить это ядро" -#: src/Common/LinuxKernel.vala:742 -#, c-format -msgid "The following kernels will be removed:" +#: src/Gtk/UpdateNotificationWindow.vala:157 +msgid "Show" msgstr "" +#: src/Gtk/UpdateNotificationWindow.vala:158 +#, fuzzy +msgid "List available kernels" +msgstr "Список всех доступных основных ядер" + +#: src/Gtk/UpdateNotificationWindow.vala:168 +msgid "Ignore this update" +msgstr "Игнорировать это обновление" + +#: src/Utility/Gtk/AboutWindow.vala:272 src/Utility/Gtk/AboutWindow.vala:289 +msgid "Credits" +msgstr "Создатели" + +#: src/Utility/Gtk/AboutWindow.vala:285 +msgid "Back" +msgstr "Назад" + +#: src/Utility/Gtk/AboutWindow.vala:314 +msgid "Authors" +msgstr "Авторы" + +#: src/Utility/Gtk/AboutWindow.vala:322 +msgid "Contributions" +msgstr "Взносы" + #: src/Utility/Gtk/AboutWindow.vala:330 -#, c-format msgid "Third Party Tools" msgstr "Сторонние инструменты" -#: src/Common/LinuxKernel.vala:1252 src/Gtk/MainWindow.vala:689 -msgid "This kernel is already installed." -msgstr "Это ядро уже установлено." - -#: src/Common/LinuxKernel.vala:1353 -msgid "" -"This kernel is currently running and cannot be removed.\n" -" Install another kernel before removing this one." -msgstr "" -"Это ядро в настоящий момент работает и не может быть удалено.\n" -" Установите другое ядро, прежде чем удалять его." +#: src/Utility/Gtk/AboutWindow.vala:338 +msgid "Artists" +msgstr "Художники" #: src/Utility/Gtk/AboutWindow.vala:346 -#, c-format msgid "Translators" msgstr "Переводчики" -#: src/Common/LinuxKernel.vala:1337 src/Common/LinuxKernel.vala:1390 -msgid "Un-install completed" -msgstr "Удаление завершено" +#: src/Utility/Gtk/AboutWindow.vala:354 +msgid "Documenters" +msgstr "Составители документации" -#: src/Common/LinuxKernel.vala:1340 src/Common/LinuxKernel.vala:1393 -msgid "Un-install completed with errors" -msgstr "Удаление завершено с ошибками" +#: src/Utility/Gtk/CustomMessageDialog.vala:159 +msgid "Yes" +msgstr "" -#: src/Console/AppConsole.vala:196 src/Gtk/AppGtk.vala:166 -msgid "Unknown option" -msgstr "Неизвестный параметр" +#: src/Utility/Gtk/CustomMessageDialog.vala:160 +msgid "No" +msgstr "" -#: src/Gtk/MainWindow.vala:179 -msgid "Version" -msgstr "Версия" +#: src/Utility/Gtk/GtkHelper.vala:17 +msgid "Error" +msgstr "Ошибка" -#: src/Utility/TeeJee.Logging.vala:89 -msgid "W" -msgstr "W" +#: src/Utility/Gtk/GtkHelper.vala:93 +msgid "Missing Icon" +msgstr "Значок отсутствует" -#: src/Gtk/SettingsDialog.vala:155 -msgid "Week(s)" -msgstr "Неделю(ли)" +#: src/Utility/TeeJee.FileSystem.vala:97 src/Utility/TeeJee.FileSystem.vala:100 +#, fuzzy +msgid "File deleted" +msgstr "Не удалось удалить файл" -#: src/Utility/Gtk/CustomMessageDialog.vala:159 -msgid "Yes" -msgstr "" +#: src/Utility/TeeJee.FileSystem.vala:106 +msgid "Failed to delete file" +msgstr "Не удалось удалить файл" + +#: src/Utility/TeeJee.FileSystem.vala:162 +msgid "Failed to read file" +msgstr "Не удалось прочитать файл" -#: src/Utility/AppLock.vala:56 -msgid "[Warning] Deleted invalid lock" -msgstr "[Внимание] Удалена неправильная блокировка" +#: src/Utility/TeeJee.FileSystem.vala:187 +#: src/Utility/TeeJee.FileSystem.vala:190 +#, fuzzy +msgid "File saved" +msgstr "Файловая система" -#: src/Gtk/SettingsDialog.vala:232 -msgid "seconds" -msgstr "" +#: src/Utility/TeeJee.FileSystem.vala:197 +msgid "Failed to write file" +msgstr "Не удалось записать файл" + +#: src/Utility/TeeJee.FileSystem.vala:210 +#: src/Utility/TeeJee.FileSystem.vala:213 +#, fuzzy +msgid "File copied" +msgstr "Не удалось скопировать файл" + +#: src/Utility/TeeJee.FileSystem.vala:221 +msgid "Failed to copy file" +msgstr "Не удалось скопировать файл" + +#: src/Utility/TeeJee.FileSystem.vala:231 +#: src/Utility/TeeJee.FileSystem.vala:538 +msgid "File not found" +msgstr "Файл не найден" +#: src/Utility/TeeJee.FileSystem.vala:245 +#: src/Utility/TeeJee.FileSystem.vala:248 #, fuzzy -#~ msgid "Hide kernels older than " -#~ msgstr "Скрыть ядра старше версии 4.0" - -#~ msgid "GRUB Options" -#~ msgstr "Настройки GRUB" - -#~ msgid "" -#~ "Time (in seconds) to display the GRUB menu\n" -#~ "\n" -#~ "0 = Do not show menu\n" -#~ "-1 = Show indefinitely till user selects" -#~ msgstr "" -#~ "Время отображения меню GRUB (в секундах)\n" -#~ "\n" -#~ "0 = Не отображать меню\n" -#~ "-1 = Отображать до выбора пользователя" - -#~ msgid "" -#~ "Updates the GRUB menu after installing or removing kernels, so that the " -#~ "menu is displayed for 2 seconds at boot time. This will help you recover " -#~ "from a bad kernel update by selecting another kernel to boot. During " -#~ "boot, use the 'Advanced options for Ubuntu' menu entry to select another " -#~ "kernel.\n" -#~ "\n" -#~ "0 = Do not show menu\n" -#~ "-1 = Show indefinitely till user selects" -#~ msgstr "" -#~ "Обновляет меню GRUB после установки или удаления ядер, после чего оно " -#~ "отображается на 2 секунды после загрузки. Это даст возможность выбрать " -#~ "другое ядро после неудачного обновления. Во время загрузки выберите пункт " -#~ "меню 'Advanced options for Ubuntu' для запуска другого ядра.\n" -#~ "\n" -#~ "0 = Не отображать меню\n" -#~ "-1 = Отображать до выбора пользователя" - -#~ msgid "Updating GRUB menu" -#~ msgstr "Обновление меню GRUB" - -#~ msgid "Run 'ukuu --list' and use the version string listed in first column" -#~ msgstr "Выполните 'ukuu --list' и используйте версию из первого столбца" - -#~ msgid "" -#~ "Did you find this software useful?\n" -#~ "\n" -#~ "You can buy me a coffee or make a donation via PayPal to show your " -#~ "support. Or just drop me an email and say Hi. This application is " -#~ "completely free and will continue to remain that way. Your contributions " -#~ "will help in keeping this project alive and improving it further.\n" -#~ "\n" -#~ "Feel free to send me an email if you find any issues in this application " -#~ "or if you need any changes. Suggestions and feedback are always welcome.\n" -#~ "\n" -#~ "Thanks,\n" -#~ "Tony George\n" -#~ "(teejeetech@gmail.com)" -#~ msgstr "" -#~ "Считаете эту программу полезной?\n" -#~ "\n" -#~ "Вы можете купить мне кофе или сделать пожертвование с помощью PayPal, " -#~ "чтобы оказать поддержку. Или просто напишите мне письмо и скажите \"Привет" -#~ "\". Эта программа полностью бесплатна и будет оставаться таковой. Ваши " -#~ "пожертвования помогут поддержке и развитию проекта.\n" -#~ "\n" -#~ "Не стесняйтесь прислать мне письмо, если Вы найдете какие-то ошибки в " -#~ "программе, или если у Вас будут идеи по улучшению функциональности. " -#~ "Отзывы и предложения всегда приветствуются.\n" -#~ "\n" -#~ "Спасибо, ваш\n" -#~ "Tony George\n" -#~ "(teejeetech@gmail.com)" - -#~ msgid "Display GRUB menu during boot" -#~ msgstr "Отображать меню GRUB во время загрузки" - -#~ msgid "Donate" -#~ msgstr "Пожертвования" - -#~ msgid "Donate with Google Wallet" -#~ msgstr "Пожертвовать через Google Wallet" - -#~ msgid "Donate with PayPal" -#~ msgstr "Пожертвовать через PayPal" - -#~ msgid "Donations" -#~ msgstr "Спонсоры" +msgid "File moved" +msgstr "Удалить" + +#: src/Utility/TeeJee.FileSystem.vala:253 +msgid "Failed to move file" +msgstr "Не удалось переместить файл" +#: src/Utility/TeeJee.FileSystem.vala:349 +#: src/Utility/TeeJee.FileSystem.vala:352 +#: src/Utility/TeeJee.FileSystem.vala:378 #, fuzzy -#~ msgid "File read" -#~ msgstr "Не удалось прочитать файл" +msgid "Created directory" +msgstr "Используемая кэш-папка" + +#: src/Utility/TeeJee.FileSystem.vala:359 +msgid "Failed to create dir" +msgstr "Не удалось создать папку" + +#: src/Utility/TeeJee.FileSystem.vala:375 +msgid "Deleted directory" +msgstr "" -#~ msgid "Notify if kernel update is available" -#~ msgstr "Уведомлять, если доступно обновление ядра" +#: src/Utility/TeeJee.FileSystem.vala:509 +msgid "Dir not found" +msgstr "Папка не найдена" -#~ msgid "Send Email" -#~ msgstr "Отправить email" +#: src/Utility/TeeJee.FileSystem.vala:662 +#: src/Utility/TeeJee.FileSystem.vala:711 +msgid "File is missing" +msgstr "Файл отсутствует" -#~ msgid "Use specified user's cache directory" -#~ msgstr "Использовать указанную пользователем папку для кэша" +#: src/Utility/TeeJee.Logging.vala:89 +msgid "E" +msgstr "E" -#~ msgid "Using cache directory" -#~ msgstr "Используемая кэш-папка" +#: src/Utility/TeeJee.Logging.vala:89 +msgid "W" +msgstr "W" -#~ msgid "Visit Website" -#~ msgstr "Посетить сайт" +#: src/Utility/TeeJee.Process.vala:513 +msgid "Stopped" +msgstr "Остановлено" diff --git a/po/sv.po b/po/sv.po index 367b9bc0..1338d593 100644 --- a/po/sv.po +++ b/po/sv.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: ukuu 2.2\n" -"Report-Msgid-Bugs-To: b.kenyon.w@gmail.com\n" -"POT-Creation-Date: 2020-05-01 13:31-0400\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-05-02 16:29-0400\n" "PO-Revision-Date: 2018-01-13 16:56+0100\n" "Last-Translator: Åke Engelbrektson \n" "Language-Team: Svenska Språkfiler \n" @@ -18,769 +18,574 @@ msgstr "" "X-Generator: Poedit 1.8.7.1\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: src/Gtk/MainWindow.vala:494 -msgid "About" -msgstr "Om" - -#: src/Console/AppConsole.vala:113 -msgid "Admin access is required for running this application." -msgstr "Root-åtkomst krävs för att köra detta program." - -#: src/Utility/AppLock.vala:51 -msgid "Another instance of this application is running" -msgstr "En annan instans av programmet körs redan" +#: src/Common/LinuxKernel.vala:92 +msgid "Distribution" +msgstr "Distribution" #: src/Common/LinuxKernel.vala:106 #, fuzzy msgid "Architecture" msgstr "Systemarkitektur" -#: src/Utility/Gtk/AboutWindow.vala:338 -#, c-format -msgid "Artists" -msgstr "Artister" +#: src/Common/LinuxKernel.vala:257 +msgid "Index is stale" +msgstr "Index är inaktuellt" -#: src/Console/AppConsole.vala:99 -msgid "Assume Yes for all prompts (non-interactive mode)" +#: src/Common/LinuxKernel.vala:260 +msgid "Index is fresh" +msgstr "Index är uppdaterat" + +#: src/Common/LinuxKernel.vala:365 +#, fuzzy +msgid "Fetching index..." +msgstr "Hämtar index för" + +#: src/Common/LinuxKernel.vala:408 +msgid "Fetching index from kernel.ubuntu.com..." +msgstr "Hämtar index från kernel.ubuntu.com ..." + +#: src/Common/LinuxKernel.vala:727 +#, fuzzy +msgid "Could not find running kernel in list!" +msgstr "Kunde inte hitta efterfrågad version" + +#: src/Common/LinuxKernel.vala:733 +#, fuzzy +msgid "Could not find any kernels to remove" +msgstr "Välj kärnor för borttagning" + +#: src/Common/LinuxKernel.vala:742 +msgid "The following kernels will be removed:" msgstr "" -#: src/Utility/Gtk/AboutWindow.vala:314 +#: src/Common/LinuxKernel.vala:749 +msgid "Continue ?" +msgstr "" + +#: src/Common/LinuxKernel.vala:777 src/Console/AppConsole.vala:359 +msgid "Latest update" +msgstr "" + +#: src/Common/LinuxKernel.vala:788 src/Console/AppConsole.vala:366 +msgid "Latest point update" +msgstr "" + +#: src/Common/LinuxKernel.vala:796 src/Console/AppConsole.vala:371 +#: src/Console/AppConsole.vala:429 src/Gtk/MainWindow.vala:804 +msgid "No updates found" +msgstr "Inga uppdateringar hittades" + +#: src/Common/LinuxKernel.vala:806 #, c-format -msgid "Authors" -msgstr "Utvecklare" +msgid "Install Linux v%s ? (y/n): " +msgstr "" + +#: src/Common/LinuxKernel.vala:1072 +msgid "Packages Available" +msgstr "Tillgängliga paket" + +#: src/Common/LinuxKernel.vala:1080 +msgid "Packages Installed" +msgstr "Installerade paket" #: src/Common/LinuxKernel.vala:1164 msgid "Available Kernels" msgstr "Tillgängliga kärnor" -#: src/Utility/Gtk/AboutWindow.vala:285 -msgid "Back" -msgstr "Tillbaka" +#: src/Common/LinuxKernel.vala:1181 src/Gtk/MainWindow.vala:208 +msgid "Installed" +msgstr "Installerad" -#: src/Console/AppConsole.vala:203 src/Gtk/AppGtk.vala:110 -msgid "Cache" -msgstr "" +#: src/Common/LinuxKernel.vala:1181 src/Gtk/MainWindow.vala:208 +msgid "Running" +msgstr "Körs" -#: src/Gtk/ProgressWindow.vala:145 src/Gtk/TerminalWindow.vala:148 -#: src/Gtk/UpdateNotificationWindow.vala:167 -#: src/Utility/Gtk/CustomMessageDialog.vala:155 -msgid "Cancel" -msgstr "Avbryt" +#: src/Common/LinuxKernel.vala:1210 +msgid "Downloading" +msgstr "Laddar ner" -#: src/Gtk/MainWindow.vala:462 -msgid "Changes" -msgstr "Ändringar" +#: src/Common/LinuxKernel.vala:1229 +#: src/Utility/Gtk/CustomMessageDialog.vala:150 +#: src/Utility/Gtk/CustomMessageDialog.vala:154 +msgid "OK" +msgstr "OK" -#: src/Gtk/SettingsDialog.vala:120 -msgid "Check every" -msgstr "Kontrollera varje" +#: src/Common/LinuxKernel.vala:1238 +msgid "ERROR" +msgstr "FEL" -#: src/Console/AppConsole.vala:82 -msgid "Check for kernel updates" -msgstr "Sök efter kärnuppdateringar" +#: src/Common/LinuxKernel.vala:1252 src/Gtk/MainWindow.vala:689 +msgid "This kernel is already installed." +msgstr "Denna kärna är redan installerad" -#: src/Console/AppConsole.vala:83 -#, fuzzy -msgid "Check for kernel updates and notify current user" -msgstr "Sök efter kärnuppdateringar" +#: src/Common/LinuxKernel.vala:1281 +msgid "Installation completed. A reboot is required to use the new kernel." +msgstr "Installation slutförd. Omstart krävs för att tillämpa den nya kärnan." -#: src/Gtk/TerminalWindow.vala:158 src/Utility/Gtk/AboutWindow.vala:295 -msgid "Close" -msgstr "Stäng" +#: src/Common/LinuxKernel.vala:1284 +msgid "Installation completed with errors" +msgstr "Installation slutförd med fel" -#: src/Console/AppConsole.vala:340 -msgid "Command not specified" +#: src/Common/LinuxKernel.vala:1300 +msgid "" +"Selected kernel is currently running and cannot be removed.\n" +" Install another kernel before removing this one." msgstr "" +"Denna kärna används för tillfället och kan inte tas bort.\n" +"Installera en annan kärna innan du tar bort den här." -#: src/Console/AppConsole.vala:80 -msgid "Commands" +#: src/Common/LinuxKernel.vala:1305 +msgid "Preparing to remove selected kernels" +msgstr "Förbereder borttagning av markerade kärnor" + +#: src/Common/LinuxKernel.vala:1337 src/Common/LinuxKernel.vala:1390 +msgid "Un-install completed" +msgstr "Avinstallation slutförd" + +#: src/Common/LinuxKernel.vala:1340 src/Common/LinuxKernel.vala:1393 +msgid "Un-install completed with errors" +msgstr "Avinstallation slutförd med fel" + +#: src/Common/LinuxKernel.vala:1353 +msgid "" +"This kernel is currently running and cannot be removed.\n" +" Install another kernel before removing this one." msgstr "" +"Denna kärna används för tillfället och kan inte tas bort.\n" +"Installera en annan kärna innan du tar bort den här." #: src/Common/Main.vala:107 msgid "Commands listed below are not available on this system" msgstr "Kommandon listade nedan, finns inte tillgängliga i detta system." -#: src/Common/LinuxKernel.vala:749 -#, c-format -msgid "Continue ?" -msgstr "" +#: src/Common/Main.vala:108 +msgid "Please install required packages and try again" +msgstr "Installera nödvändiga paket och försök igen" -#: src/Utility/Gtk/AboutWindow.vala:322 +#: src/Common/Package.vala:126 src/Common/Package.vala:188 #, c-format -msgid "Contributions" -msgstr "Bidrag" +msgid "File not found: %s" +msgstr "Filen kunde inte hittas: %s" -#: src/Common/LinuxKernel.vala:733 -#, fuzzy -msgid "Could not find any kernels to remove" -msgstr "Välj kärnor för borttagning" +#: src/Console/AppConsole.vala:78 src/Gtk/AppGtk.vala:179 +msgid "Syntax" +msgstr "Syntax" -#: src/Console/AppConsole.vala:308 src/Gtk/MainWindow.vala:100 -msgid "Could not find requested version" -msgstr "Kunde inte hitta efterfrågad version" +#: src/Console/AppConsole.vala:80 +msgid "Commands" +msgstr "" -#: src/Common/LinuxKernel.vala:727 -#, fuzzy -msgid "Could not find running kernel in list!" -msgstr "Kunde inte hitta efterfrågad version" +#: src/Console/AppConsole.vala:82 +msgid "Check for kernel updates" +msgstr "Sök efter kärnuppdateringar" -#: src/Utility/TeeJee.FileSystem.vala:349 -#: src/Utility/TeeJee.FileSystem.vala:352 -#: src/Utility/TeeJee.FileSystem.vala:378 -msgid "Created directory" -msgstr "Skapade mapp" +#: src/Console/AppConsole.vala:83 +#, fuzzy +msgid "Check for kernel updates and notify current user" +msgstr "Sök efter kärnuppdateringar" -#: src/Utility/Gtk/AboutWindow.vala:272 src/Utility/Gtk/AboutWindow.vala:289 -msgid "Credits" -msgstr "Tack" +#: src/Console/AppConsole.vala:84 +msgid "List all available mainline kernels" +msgstr "Lista alla tillgängliga kärnor" -#: src/Gtk/SettingsDialog.vala:153 -msgid "Day(s)" -msgstr "Dag(ar)" +#: src/Console/AppConsole.vala:85 +#, fuzzy +msgid "List installed kernels" +msgstr "Lista tillgängliga kärnor" -#: src/Utility/TeeJee.FileSystem.vala:375 -msgid "Deleted directory" -msgstr "Tog bort mapp" +#: src/Console/AppConsole.vala:86 +#, fuzzy +msgid "Install latest mainline kernel" +msgstr "Installera specificerad kärna" -#: src/Utility/TeeJee.FileSystem.vala:509 -msgid "Dir not found" -msgstr "Mappen kan inte hittas" +#: src/Console/AppConsole.vala:87 +msgid "Install latest point update for current series" +msgstr "" -#: src/Gtk/SettingsDialog.vala:160 -msgid "Display" -msgstr "Visa" +#: src/Console/AppConsole.vala:88 +msgid "Install specified mainline kernel" +msgstr "Installera specificerad kärna" -#: src/Common/LinuxKernel.vala:92 -msgid "Distribution" -msgstr "Distribution" +#: src/Console/AppConsole.vala:89 +#, fuzzy +msgid "Remove specified kernel" +msgstr "Ta bort specificerad kärna" -#: src/Utility/Gtk/AboutWindow.vala:354 -#, c-format -msgid "Documenters" -msgstr "Dokumentalister" +#: src/Console/AppConsole.vala:90 src/Gtk/MainWindow.vala:424 +msgid "Remove installed kernels older than running kernel" +msgstr "Ta bort installerade kärnor äldre än den som körs" #: src/Console/AppConsole.vala:91 msgid "Download packages for specified kernel" msgstr "Ladda ner paket för specificerad kärna" -#: src/Common/LinuxKernel.vala:1210 -#, c-format -msgid "Downloading" -msgstr "Laddar ner" - -#: src/Utility/TeeJee.Logging.vala:89 -msgid "E" -msgstr "F" +#: src/Console/AppConsole.vala:92 src/Console/AppConsole.vala:97 +msgid "Remove files from application cache" +msgstr "Ta bort filer från program-cachen" -#: src/Common/LinuxKernel.vala:1238 -#, c-format -msgid "ERROR" -msgstr "FEL" +#: src/Console/AppConsole.vala:93 +#, fuzzy +msgid "Show unstable and RC releases" +msgstr "Dölj instabila- och RC-publiceringar" + +#: src/Console/AppConsole.vala:95 src/Gtk/AppGtk.vala:181 +msgid "Options" +msgstr "Alternativ" #: src/Console/AppConsole.vala:98 msgid "Enable verbose debugging output" msgstr "" -#: src/Utility/Gtk/GtkHelper.vala:17 -msgid "Error" -msgstr "Fel" - -#: src/Utility/TeeJee.FileSystem.vala:221 -msgid "Failed to copy file" -msgstr "Kunde inte kopiera filen" +#: src/Console/AppConsole.vala:99 +msgid "Assume Yes for all prompts (non-interactive mode)" +msgstr "" -#: src/Utility/TeeJee.FileSystem.vala:359 -msgid "Failed to create dir" -msgstr "Kunde inte skapa mappen" +#: src/Console/AppConsole.vala:100 +msgid "Override user" +msgstr "" -#: src/Utility/TeeJee.FileSystem.vala:106 -msgid "Failed to delete file" -msgstr "Kunde inte ta bort filen" +#: src/Console/AppConsole.vala:113 +msgid "Admin access is required for running this application." +msgstr "Root-åtkomst krävs för att köra detta program." -#: src/Utility/TeeJee.FileSystem.vala:253 -msgid "Failed to move file" -msgstr "Kunde inte flytta filen" +#: src/Console/AppConsole.vala:116 +msgid "Run the application as admin with pkexec or sudo." +msgstr "Kör programmet som administratör, med pkexec eller sudo." -#: src/Utility/TeeJee.FileSystem.vala:162 -msgid "Failed to read file" -msgstr "Kunde inte läsa filen" +#: src/Console/AppConsole.vala:196 src/Gtk/AppGtk.vala:166 +msgid "Unknown option" +msgstr "Okänt alternativ" -#: src/Utility/TeeJee.FileSystem.vala:197 -msgid "Failed to write file" -msgstr "Kunde inte skriva filen" +#: src/Console/AppConsole.vala:198 src/Console/AppConsole.vala:312 +#: src/Console/AppConsole.vala:341 +msgid "Run '" +msgstr "" -#: src/Common/LinuxKernel.vala:408 -msgid "Fetching index from kernel.ubuntu.com..." -msgstr "Hämtar index från kernel.ubuntu.com ..." +#: src/Console/AppConsole.vala:203 src/Gtk/AppGtk.vala:110 +msgid "Cache" +msgstr "" -#: src/Common/LinuxKernel.vala:365 -#, fuzzy -msgid "Fetching index..." -msgstr "Hämtar index för" +#: src/Console/AppConsole.vala:204 src/Gtk/AppGtk.vala:111 +msgid "Temp" +msgstr "" -#: src/Utility/TeeJee.FileSystem.vala:210 -#: src/Utility/TeeJee.FileSystem.vala:213 -msgid "File copied" -msgstr "Kopierade fil" +#: src/Console/AppConsole.vala:284 src/Console/AppConsole.vala:321 +msgid "No kernels specified" +msgstr "" -#: src/Utility/TeeJee.FileSystem.vala:97 src/Utility/TeeJee.FileSystem.vala:100 -msgid "File deleted" -msgstr "Fil borttagen" +#: src/Console/AppConsole.vala:290 +msgid "Multiple kernels selected for installation. Select only one." +msgstr "Flera kärnor valda för installation. Välj endast en." -#: src/Utility/TeeJee.FileSystem.vala:662 -#: src/Utility/TeeJee.FileSystem.vala:711 -msgid "File is missing" -msgstr "Filen saknas" +#: src/Console/AppConsole.vala:308 src/Gtk/MainWindow.vala:100 +msgid "Could not find requested version" +msgstr "Kunde inte hitta efterfrågad version" -#: src/Utility/TeeJee.FileSystem.vala:245 -#: src/Utility/TeeJee.FileSystem.vala:248 -msgid "File moved" -msgstr "Fil flyttad" +#: src/Console/AppConsole.vala:340 +msgid "Command not specified" +msgstr "" -#: src/Utility/TeeJee.FileSystem.vala:231 -#: src/Utility/TeeJee.FileSystem.vala:538 -msgid "File not found" -msgstr "Filen kan inte hittas" +#: src/Gtk/AppGtk.vala:183 +msgid "Print debug information" +msgstr "Skriv ut felsökningsinformation" -#: src/Common/Package.vala:126 src/Common/Package.vala:188 -#, c-format -msgid "File not found: %s" -msgstr "Filen kunde inte hittas: %s" +#: src/Gtk/AppGtk.vala:184 +msgid "Show all options" +msgstr "Visa alla alternativ" -#: src/Utility/TeeJee.FileSystem.vala:187 -#: src/Utility/TeeJee.FileSystem.vala:190 -msgid "File saved" -msgstr "Fil sparad" +#: src/Gtk/MainWindow.vala:150 +msgid "Kernel" +msgstr "Kärna" -#: src/Gtk/SettingsDialog.vala:168 -msgid "Hide unstable and RC releases" -msgstr "Dölj instabila- och RC-publiceringar" +#: src/Gtk/MainWindow.vala:179 +msgid "Version" +msgstr "Version" -#: src/Gtk/SettingsDialog.vala:151 -msgid "Hour(s)" -msgstr "Timma(r)" +#: src/Gtk/MainWindow.vala:196 +msgid "Status" +msgstr "Status" -#: src/Gtk/UpdateNotificationWindow.vala:168 -msgid "Ignore this update" -msgstr "Undanta denna uppdatering" +#: src/Gtk/MainWindow.vala:341 +msgid "Refresh" +msgstr "Uppdatera" -#: src/Common/LinuxKernel.vala:260 -msgid "Index is fresh" -msgstr "Index är uppdaterat" +#: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:558 +#: src/Gtk/MainWindow.vala:694 src/Utility/TeeJee.System.vala:281 +msgid "Internet connection is not active" +msgstr "Internetuppkopplingen är inte aktiv" -#: src/Common/LinuxKernel.vala:257 -msgid "Index is stale" -msgstr "Index är inaktuellt" +#: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:558 +#: src/Gtk/MainWindow.vala:694 +msgid "No Internet" +msgstr "Inget internet" -#: src/Gtk/UpdateNotificationWindow.vala:147 src/Gtk/MainWindow.vala:357 +#: src/Gtk/MainWindow.vala:357 src/Gtk/UpdateNotificationWindow.vala:147 msgid "Install" msgstr "Installera" -#: src/Common/LinuxKernel.vala:806 -#, c-format -msgid "Install Linux v%s ? (y/n): " -msgstr "" - -#: src/Console/AppConsole.vala:86 -#, fuzzy -msgid "Install latest mainline kernel" -msgstr "Installera specificerad kärna" +#: src/Gtk/MainWindow.vala:366 +msgid "Multiple Kernels Selected" +msgstr "Flera kärnor markerade" -#: src/Console/AppConsole.vala:87 -msgid "Install latest point update for current series" -msgstr "" +#: src/Gtk/MainWindow.vala:366 +msgid "Select a single kernel to install" +msgstr "Välj en enstaka kärna att installera" -#: src/Console/AppConsole.vala:88 -msgid "Install specified mainline kernel" -msgstr "Installera specificerad kärna" +#: src/Gtk/MainWindow.vala:369 src/Gtk/MainWindow.vala:380 +msgid "Not Selected" +msgstr "Inte vald" -#: src/Gtk/UpdateNotificationWindow.vala:148 -msgid "Install this kernel" -msgstr "Installera denna kärna" +#: src/Gtk/MainWindow.vala:369 +msgid "Select the kernel to install" +msgstr "Välj kärna för installation" -#: src/Common/LinuxKernel.vala:1284 -msgid "Installation completed with errors" -msgstr "Installation slutförd med fel" +#: src/Gtk/MainWindow.vala:374 +msgid "Remove" +msgstr "Ta bort" -#: src/Common/LinuxKernel.vala:1281 -msgid "Installation completed. A reboot is required to use the new kernel." -msgstr "Installation slutförd. Omstart krävs för att tillämpa den nya kärnan." +#: src/Gtk/MainWindow.vala:380 +msgid "Select the kernels to remove" +msgstr "Välj kärnor för borttagning" -#: src/Common/LinuxKernel.vala:1181 src/Gtk/MainWindow.vala:208 -msgid "Installed" -msgstr "Installerad" +#: src/Gtk/MainWindow.vala:423 +msgid "Purge" +msgstr "Rensa" -#: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:558 -#: src/Gtk/MainWindow.vala:694 src/Utility/TeeJee.System.vala:281 -msgid "Internet connection is not active" -msgstr "Internetuppkopplingen är inte aktiv" +#: src/Gtk/MainWindow.vala:462 +msgid "Changes" +msgstr "Ändringar" -#: src/Gtk/SettingsDialog.vala:218 -#, fuzzy -msgid "Internet connection timeout in " -msgstr "Internetuppkopplingen är inte aktiv" +#: src/Gtk/MainWindow.vala:473 src/Gtk/SettingsDialog.vala:55 +msgid "Settings" +msgstr "Inställningar" -#: src/Gtk/MainWindow.vala:150 -msgid "Kernel" -msgstr "Kärna" +#: src/Gtk/MainWindow.vala:494 +msgid "About" +msgstr "Om" #: src/Gtk/MainWindow.vala:542 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Kärnuppgraderingsverktyg för Ubuntu-baserade distributioner" -#: src/Common/LinuxKernel.vala:788 src/Console/AppConsole.vala:366 -#, c-format -msgid "Latest point update" -msgstr "" +#: src/Gtk/MainWindow.vala:577 +msgid "Refreshing..." +msgstr "Uppdaterar ..." -#: src/Common/LinuxKernel.vala:777 src/Console/AppConsole.vala:359 -#, c-format -msgid "Latest update" -msgstr "" +#: src/Gtk/ProgressWindow.vala:145 src/Gtk/TerminalWindow.vala:148 +#: src/Gtk/UpdateNotificationWindow.vala:167 +#: src/Utility/Gtk/CustomMessageDialog.vala:155 +msgid "Cancel" +msgstr "Avbryt" -#: src/Console/AppConsole.vala:84 -msgid "List all available mainline kernels" -msgstr "Lista alla tillgängliga kärnor" +#: src/Gtk/SettingsDialog.vala:65 +msgid "Notification" +msgstr "Avisering" -#: src/Gtk/UpdateNotificationWindow.vala:158 -msgid "List available kernels" -msgstr "Lista tillgängliga kärnor" +#: src/Gtk/SettingsDialog.vala:72 +msgid "Notify if a major release is available" +msgstr "Meddela om en ny (stor) uppdatering finns tillgänglig" -#: src/Console/AppConsole.vala:85 -#, fuzzy -msgid "List installed kernels" -msgstr "Lista tillgängliga kärnor" +#: src/Gtk/SettingsDialog.vala:83 +msgid "Notify if a point release is available" +msgstr "Meddela om en ny (mindre) uppdatering finns tillgänglig" -#: src/Utility/Gtk/GtkHelper.vala:93 -msgid "Missing Icon" -msgstr "Saknad ikon" +#: src/Gtk/SettingsDialog.vala:94 +msgid "Show notification bubble on desktop" +msgstr "Visa aviseringsruta på skrivbordet" -#: src/Gtk/MainWindow.vala:366 -msgid "Multiple Kernels Selected" -msgstr "Flera kärnor markerade" - -#: src/Console/AppConsole.vala:290 -msgid "Multiple kernels selected for installation. Select only one." -msgstr "Flera kärnor valda för installation. Välj endast en." - -#: src/Utility/Gtk/CustomMessageDialog.vala:160 -msgid "No" -msgstr "Nej" - -#: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:558 -#: src/Gtk/MainWindow.vala:694 -msgid "No Internet" -msgstr "Inget internet" - -#: src/Console/AppConsole.vala:284 src/Console/AppConsole.vala:321 -msgid "No kernels specified" -msgstr "" +#: src/Gtk/SettingsDialog.vala:105 +msgid "Show notification dialog" +msgstr "Visa aviseringsdialog" -#: src/Common/LinuxKernel.vala:796 src/Console/AppConsole.vala:371 -#: src/Console/AppConsole.vala:429 src/Gtk/MainWindow.vala:804 -msgid "No updates found" -msgstr "Inga uppdateringar hittades" +#: src/Gtk/SettingsDialog.vala:120 +msgid "Check every" +msgstr "Kontrollera varje" -#: src/Gtk/MainWindow.vala:369 src/Gtk/MainWindow.vala:380 -msgid "Not Selected" -msgstr "Inte vald" +#: src/Gtk/SettingsDialog.vala:151 +msgid "Hour(s)" +msgstr "Timma(r)" -#: src/Gtk/SettingsDialog.vala:65 -msgid "Notification" -msgstr "Avisering" +#: src/Gtk/SettingsDialog.vala:153 +msgid "Day(s)" +msgstr "Dag(ar)" -#: src/Gtk/SettingsDialog.vala:72 -msgid "Notify if a major release is available" -msgstr "Meddela om en ny (stor) uppdatering finns tillgänglig" +#: src/Gtk/SettingsDialog.vala:155 +msgid "Week(s)" +msgstr "Veckor" -#: src/Gtk/SettingsDialog.vala:83 -msgid "Notify if a point release is available" -msgstr "Meddela om en ny (mindre) uppdatering finns tillgänglig" +#: src/Gtk/SettingsDialog.vala:160 +msgid "Display" +msgstr "Visa" -#: src/Common/LinuxKernel.vala:1229 -#: src/Utility/Gtk/CustomMessageDialog.vala:150 -#: src/Utility/Gtk/CustomMessageDialog.vala:154 -#, c-format -msgid "OK" -msgstr "OK" +#: src/Gtk/SettingsDialog.vala:168 +msgid "Hide unstable and RC releases" +msgstr "Dölj instabila- och RC-publiceringar" -#: src/Console/AppConsole.vala:95 src/Gtk/AppGtk.vala:181 -msgid "Options" -msgstr "Alternativ" +#: src/Gtk/SettingsDialog.vala:182 +msgid "Show N previous major versions " +msgstr "" #: src/Gtk/SettingsDialog.vala:197 msgid "Other" msgstr "" -#: src/Console/AppConsole.vala:100 -msgid "Override user" -msgstr "" - -#: src/Common/LinuxKernel.vala:1072 -#, c-format -msgid "Packages Available" -msgstr "Tillgängliga paket" - -#: src/Common/LinuxKernel.vala:1080 -#, c-format -msgid "Packages Installed" -msgstr "Installerade paket" - -#: src/Common/Main.vala:108 -msgid "Please install required packages and try again" -msgstr "Installera nödvändiga paket och försök igen" - -#: src/Common/LinuxKernel.vala:1305 -msgid "Preparing to remove selected kernels" -msgstr "Förbereder borttagning av markerade kärnor" - -#: src/Gtk/AppGtk.vala:183 -msgid "Print debug information" -msgstr "Skriv ut felsökningsinformation" +#: src/Gtk/SettingsDialog.vala:205 +#, fuzzy +msgid "Skip internet connection check" +msgstr "Internetuppkopplingen är inte aktiv" -#: src/Gtk/MainWindow.vala:423 -msgid "Purge" -msgstr "Rensa" +#: src/Gtk/SettingsDialog.vala:218 +#, fuzzy +msgid "Internet connection timeout in " +msgstr "Internetuppkopplingen är inte aktiv" -#: src/Gtk/MainWindow.vala:341 -msgid "Refresh" -msgstr "Uppdatera" +#: src/Gtk/SettingsDialog.vala:232 +msgid "seconds" +msgstr "" -#: src/Gtk/MainWindow.vala:577 -msgid "Refreshing..." -msgstr "Uppdaterar ..." +#: src/Gtk/TerminalWindow.vala:158 src/Utility/Gtk/AboutWindow.vala:295 +msgid "Close" +msgstr "Stäng" -#: src/Gtk/MainWindow.vala:374 -msgid "Remove" -msgstr "Ta bort" +#: src/Gtk/UpdateNotificationWindow.vala:148 +msgid "Install this kernel" +msgstr "Installera denna kärna" -#: src/Console/AppConsole.vala:92 src/Console/AppConsole.vala:97 -msgid "Remove files from application cache" -msgstr "Ta bort filer från program-cachen" +#: src/Gtk/UpdateNotificationWindow.vala:157 +msgid "Show" +msgstr "Visa" -#: src/Console/AppConsole.vala:90 src/Gtk/MainWindow.vala:424 -msgid "Remove installed kernels older than running kernel" -msgstr "Ta bort installerade kärnor äldre än den som körs" +#: src/Gtk/UpdateNotificationWindow.vala:158 +msgid "List available kernels" +msgstr "Lista tillgängliga kärnor" -#: src/Console/AppConsole.vala:89 -#, fuzzy -msgid "Remove specified kernel" -msgstr "Ta bort specificerad kärna" +#: src/Gtk/UpdateNotificationWindow.vala:168 +msgid "Ignore this update" +msgstr "Undanta denna uppdatering" -#: src/Console/AppConsole.vala:198 src/Console/AppConsole.vala:312 -#: src/Console/AppConsole.vala:341 -msgid "Run '" -msgstr "" +#: src/Utility/Gtk/AboutWindow.vala:272 src/Utility/Gtk/AboutWindow.vala:289 +msgid "Credits" +msgstr "Tack" -#: src/Console/AppConsole.vala:116 -msgid "Run the application as admin with pkexec or sudo." -msgstr "Kör programmet som administratör, med pkexec eller sudo." +#: src/Utility/Gtk/AboutWindow.vala:285 +msgid "Back" +msgstr "Tillbaka" -#: src/Common/LinuxKernel.vala:1181 src/Gtk/MainWindow.vala:208 -msgid "Running" -msgstr "Körs" +#: src/Utility/Gtk/AboutWindow.vala:314 +msgid "Authors" +msgstr "Utvecklare" -#: src/Gtk/MainWindow.vala:366 -msgid "Select a single kernel to install" -msgstr "Välj en enstaka kärna att installera" +#: src/Utility/Gtk/AboutWindow.vala:322 +msgid "Contributions" +msgstr "Bidrag" -#: src/Gtk/MainWindow.vala:369 -msgid "Select the kernel to install" -msgstr "Välj kärna för installation" +#: src/Utility/Gtk/AboutWindow.vala:330 +msgid "Third Party Tools" +msgstr "Tredjepartsverktyg" -#: src/Gtk/MainWindow.vala:380 -msgid "Select the kernels to remove" -msgstr "Välj kärnor för borttagning" +#: src/Utility/Gtk/AboutWindow.vala:338 +msgid "Artists" +msgstr "Artister" -#: src/Common/LinuxKernel.vala:1300 -msgid "" -"Selected kernel is currently running and cannot be removed.\n" -" Install another kernel before removing this one." -msgstr "" -"Denna kärna används för tillfället och kan inte tas bort.\n" -"Installera en annan kärna innan du tar bort den här." +#: src/Utility/Gtk/AboutWindow.vala:346 +msgid "Translators" +msgstr "Översättare" -#: src/Gtk/MainWindow.vala:473 src/Gtk/SettingsDialog.vala:55 -msgid "Settings" -msgstr "Inställningar" +#: src/Utility/Gtk/AboutWindow.vala:354 +msgid "Documenters" +msgstr "Dokumentalister" -#: src/Gtk/UpdateNotificationWindow.vala:157 -msgid "Show" -msgstr "Visa" +#: src/Utility/Gtk/CustomMessageDialog.vala:159 +msgid "Yes" +msgstr "Ja" -#: src/Gtk/SettingsDialog.vala:182 -msgid "Show N previous major versions " -msgstr "" +#: src/Utility/Gtk/CustomMessageDialog.vala:160 +msgid "No" +msgstr "Nej" -#: src/Gtk/AppGtk.vala:184 -msgid "Show all options" -msgstr "Visa alla alternativ" +#: src/Utility/Gtk/GtkHelper.vala:17 +msgid "Error" +msgstr "Fel" -#: src/Gtk/SettingsDialog.vala:94 -msgid "Show notification bubble on desktop" -msgstr "Visa aviseringsruta på skrivbordet" +#: src/Utility/Gtk/GtkHelper.vala:93 +msgid "Missing Icon" +msgstr "Saknad ikon" -#: src/Gtk/SettingsDialog.vala:105 -msgid "Show notification dialog" -msgstr "Visa aviseringsdialog" +#: src/Utility/TeeJee.FileSystem.vala:97 src/Utility/TeeJee.FileSystem.vala:100 +msgid "File deleted" +msgstr "Fil borttagen" -#: src/Console/AppConsole.vala:93 -#, fuzzy -msgid "Show unstable and RC releases" -msgstr "Dölj instabila- och RC-publiceringar" +#: src/Utility/TeeJee.FileSystem.vala:106 +msgid "Failed to delete file" +msgstr "Kunde inte ta bort filen" -#: src/Gtk/SettingsDialog.vala:205 -#, fuzzy -msgid "Skip internet connection check" -msgstr "Internetuppkopplingen är inte aktiv" +#: src/Utility/TeeJee.FileSystem.vala:162 +msgid "Failed to read file" +msgstr "Kunde inte läsa filen" -#: src/Gtk/MainWindow.vala:196 -msgid "Status" -msgstr "Status" +#: src/Utility/TeeJee.FileSystem.vala:187 +#: src/Utility/TeeJee.FileSystem.vala:190 +msgid "File saved" +msgstr "Fil sparad" -#: src/Utility/TeeJee.Process.vala:513 -msgid "Stopped" -msgstr "Stoppad" +#: src/Utility/TeeJee.FileSystem.vala:197 +msgid "Failed to write file" +msgstr "Kunde inte skriva filen" -#: src/Console/AppConsole.vala:78 src/Gtk/AppGtk.vala:179 -msgid "Syntax" -msgstr "Syntax" +#: src/Utility/TeeJee.FileSystem.vala:210 +#: src/Utility/TeeJee.FileSystem.vala:213 +msgid "File copied" +msgstr "Kopierade fil" -#: src/Console/AppConsole.vala:204 src/Gtk/AppGtk.vala:111 -msgid "Temp" -msgstr "" +#: src/Utility/TeeJee.FileSystem.vala:221 +msgid "Failed to copy file" +msgstr "Kunde inte kopiera filen" -#: src/Common/LinuxKernel.vala:742 -#, c-format -msgid "The following kernels will be removed:" -msgstr "" +#: src/Utility/TeeJee.FileSystem.vala:231 +#: src/Utility/TeeJee.FileSystem.vala:538 +msgid "File not found" +msgstr "Filen kan inte hittas" -#: src/Utility/Gtk/AboutWindow.vala:330 -#, c-format -msgid "Third Party Tools" -msgstr "Tredjepartsverktyg" +#: src/Utility/TeeJee.FileSystem.vala:245 +#: src/Utility/TeeJee.FileSystem.vala:248 +msgid "File moved" +msgstr "Fil flyttad" -#: src/Common/LinuxKernel.vala:1252 src/Gtk/MainWindow.vala:689 -msgid "This kernel is already installed." -msgstr "Denna kärna är redan installerad" +#: src/Utility/TeeJee.FileSystem.vala:253 +msgid "Failed to move file" +msgstr "Kunde inte flytta filen" -#: src/Common/LinuxKernel.vala:1353 -msgid "" -"This kernel is currently running and cannot be removed.\n" -" Install another kernel before removing this one." -msgstr "" -"Denna kärna används för tillfället och kan inte tas bort.\n" -"Installera en annan kärna innan du tar bort den här." +#: src/Utility/TeeJee.FileSystem.vala:349 +#: src/Utility/TeeJee.FileSystem.vala:352 +#: src/Utility/TeeJee.FileSystem.vala:378 +msgid "Created directory" +msgstr "Skapade mapp" -#: src/Utility/Gtk/AboutWindow.vala:346 -#, c-format -msgid "Translators" -msgstr "Översättare" +#: src/Utility/TeeJee.FileSystem.vala:359 +msgid "Failed to create dir" +msgstr "Kunde inte skapa mappen" -#: src/Common/LinuxKernel.vala:1337 src/Common/LinuxKernel.vala:1390 -msgid "Un-install completed" -msgstr "Avinstallation slutförd" +#: src/Utility/TeeJee.FileSystem.vala:375 +msgid "Deleted directory" +msgstr "Tog bort mapp" -#: src/Common/LinuxKernel.vala:1340 src/Common/LinuxKernel.vala:1393 -msgid "Un-install completed with errors" -msgstr "Avinstallation slutförd med fel" +#: src/Utility/TeeJee.FileSystem.vala:509 +msgid "Dir not found" +msgstr "Mappen kan inte hittas" -#: src/Console/AppConsole.vala:196 src/Gtk/AppGtk.vala:166 -msgid "Unknown option" -msgstr "Okänt alternativ" +#: src/Utility/TeeJee.FileSystem.vala:662 +#: src/Utility/TeeJee.FileSystem.vala:711 +msgid "File is missing" +msgstr "Filen saknas" -#: src/Gtk/MainWindow.vala:179 -msgid "Version" -msgstr "Version" +#: src/Utility/TeeJee.Logging.vala:89 +msgid "E" +msgstr "F" #: src/Utility/TeeJee.Logging.vala:89 msgid "W" msgstr "V" -#: src/Gtk/SettingsDialog.vala:155 -msgid "Week(s)" -msgstr "Veckor" - -#: src/Utility/Gtk/CustomMessageDialog.vala:159 -msgid "Yes" -msgstr "Ja" - -#: src/Utility/AppLock.vala:56 -msgid "[Warning] Deleted invalid lock" -msgstr "[Varning] Tog bort ogiltigt lås" - -#: src/Gtk/SettingsDialog.vala:232 -msgid "seconds" -msgstr "" - -#, fuzzy -#~ msgid "Hide kernels older than " -#~ msgstr "Dölj kärnor, äldre än 4.0" - -#~ msgid "Booting previous kernels" -#~ msgstr "Startar föregående kärnor" - -#~ msgid "GRUB Options" -#~ msgstr "GRUB-alternativ" - -#~ msgid "" -#~ "Mainline kernels can sometimes cause problems if there are proprietary " -#~ "drivers installed on your system. These issues include:\n" -#~ "\n" -#~ "▰ WiFi not working\n" -#~ "▰ Black screen on startup\n" -#~ "▰ Random system freeze\n" -#~ "\n" -#~ "If you face any of these issues there is no need to panic.\n" -#~ "\n" -#~ "▰ Reboot your system\n" -#~ "▰ Select 'Advanced Boot Options' from the GRUB boot menu\n" -#~ "▰ Select an older kernel from the list displayed on this screen\n" -#~ "▰ Your system will boot using the selected kernel\n" -#~ "▰ You can now uninstall the kernel that is causing issues\n" -#~ msgstr "" -#~ "Standardkärnor kan ibland orsaka problem, om det finns proprietära " -#~ "drivrutiner installerade i ditt system. Dessa problem kan inkludera:\n" -#~ "\n" -#~ "▰ Trådlöst nätverk som inte fungerar\n" -#~ "▰ Svart skärm vid systemstart\n" -#~ "▰ Slumpartade systemfrysningar\n" -#~ "\n" -#~ "Råkar du ut för något av dessa problem, är det ingen panik\n" -#~ "\n" -#~ "▰ Starta om ditt system\n" -#~ "▰ Välj \"Avancerade startalternativ\" i GRUB-menyn\n" -#~ "▰ Välj en äldre kärna från listan som visas\n" -#~ "▰ Ditt system startar då med med den valda kärnan\n" -#~ "▰ Du kan nu avinstallera den kärna som orsakar problem\n" - -#~ msgid "" -#~ "Time (in seconds) to display the GRUB menu\n" -#~ "\n" -#~ "0 = Do not show menu\n" -#~ "-1 = Show indefinitely till user selects" -#~ msgstr "" -#~ "Tid (i sekunder) att visa GRUB-menyn\n" -#~ "\n" -#~ "0 = Visa ingen meny\n" -#~ "-1 = Visa oavbrutet tills användaren väljer" - -#~ msgid "" -#~ "Updates the GRUB menu after installing or removing kernels, so that the " -#~ "menu is displayed for 2 seconds at boot time. This will help you recover " -#~ "from a bad kernel update by selecting another kernel to boot. During " -#~ "boot, use the 'Advanced options for Ubuntu' menu entry to select another " -#~ "kernel.\n" -#~ "\n" -#~ "0 = Do not show menu\n" -#~ "-1 = Show indefinitely till user selects" -#~ msgstr "" -#~ "Uppdaterar GRUB-menyn efter installation eller borttagning av kärnor, så " -#~ "att menyn visas i 2 sekunder vid systemstart. Detta hjälper dig att " -#~ "återställa från en dålig kärnuppdatering, genom att du kan välja en annan " -#~ "kärna att starta med. Under uppstarten väljer du \"Avancerade " -#~ "alternativ...\" för att välja en annan kärna.\n" -#~ "\n" -#~ "0 = Visa ingen meny\n" -#~ "-1 = Visa menyn oavbrutet tills användaren väljer" - -#~ msgid "Updating GRUB menu" -#~ msgstr "Uppdaterar GRUB-menyn" - -#~ msgid "Run 'ukuu --list' and use the version string listed in first column" -#~ msgstr "" -#~ "Kör \"ukuu --list\" och använd den versionssträng som listas i första " -#~ "kolumnen" - -#~ msgid "" -#~ "Did you find this software useful?\n" -#~ "\n" -#~ "You can buy me a coffee or make a donation via PayPal to show your " -#~ "support. Or just drop me an email and say Hi. This application is " -#~ "completely free and will continue to remain that way. Your contributions " -#~ "will help in keeping this project alive and improving it further.\n" -#~ "\n" -#~ "Feel free to send me an email if you find any issues in this application " -#~ "or if you need any changes. Suggestions and feedback are always welcome.\n" -#~ "\n" -#~ "Thanks,\n" -#~ "Tony George\n" -#~ "(teejeetech@gmail.com)" -#~ msgstr "" -#~ "Tycker du att detta program är användbart?\n" -#~ "\n" -#~ "Du kan bjuda mig på en kopp kaffe eller donera via PayPal för att visa " -#~ "ditt stöd. Eller bara skicka ett e-postmeddelande och säga Hej! " -#~ "Programmet är helt gratis och kommer att fortsätta vara så. Ditt bidrag " -#~ "hjälper mig att hålla projektet levande och att utveckla det vidare.\n" -#~ "\n" -#~ "Skicka gärna ett e-postmeddelande om du stöter på några problem med " -#~ "programmet eller behöver några ändringar. Förslag och återkoppling är " -#~ "alltid välkommet.\n" -#~ "\n" -#~ "Tack!\n" -#~ "Tony George\n" -#~ "(teejeetech@gmail.com)" - -#~ msgid "Display GRUB menu during boot" -#~ msgstr "Visa GRUB-menyn vid systemstart" - -#~ msgid "Donate" -#~ msgstr "Donera" - -#~ msgid "Donate with Google Wallet" -#~ msgstr "Donera med Google Wallet" - -#~ msgid "Donate with PayPal" -#~ msgstr "Donera med PayPal" - -#~ msgid "Donations" -#~ msgstr "Donationer" - -#~ msgid "File read" -#~ msgstr "Fil läst" - -#~ msgid "Notify if kernel update is available" -#~ msgstr "Meddela om en kärnuppdatering finns tillgänglig" - -#~ msgid "Send Email" -#~ msgstr "Skicka e-post" - -#~ msgid "Use specified user's cache directory" -#~ msgstr "Använd specificerad användares cache-mapp" - -#~ msgid "Using cache directory" -#~ msgstr "Använder cache-mapp" - -#~ msgid "Visit Website" -#~ msgstr "Besök hemsidan" - -#~ msgid "Open Ukuu" -#~ msgstr "Öppna Ukuu" - -#~ msgid "Cron job added" -#~ msgstr "Cron-jobb tillagt" - -#~ msgid "Cron job removed" -#~ msgstr "Cron-jobb borttaget" - -#~ msgid "Failed to add cron job" -#~ msgstr "Kunde inte lägga till Cron-jobb" - -#~ msgid "Failed to read cron tab" -#~ msgstr "Kunde inte läsa cron-fliken" - -#~ msgid "Failed to remove cron job" -#~ msgstr "Kunde inte ta bort cron-jobbet" - -#~ msgid "Fetching changelog for" -#~ msgstr "Hämtar ändringslogg för" - -#~ msgid "Open" -#~ msgstr "Öppna" - -#~ msgid "Root Access Required" -#~ msgstr "Root-åtkomst krävs" - -#~ msgid "Root access is required for running this application." -#~ msgstr "Root-åtkomst krävs för att använda det här programmet" +#: src/Utility/TeeJee.Process.vala:513 +msgid "Stopped" +msgstr "Stoppad" diff --git a/po/tr.po b/po/tr.po index 2f1f3a03..c1761b85 100644 --- a/po/tr.po +++ b/po/tr.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: ukuu\n" -"Report-Msgid-Bugs-To: b.kenyon.w@gmail.com\n" -"POT-Creation-Date: 2020-05-01 13:31-0400\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-05-02 16:29-0400\n" "PO-Revision-Date: 2020-03-10 15:59+0300\n" "Last-Translator: Gökhan GÖKKAYA \n" "Language-Team: Turkish\n" @@ -18,591 +18,564 @@ msgstr "" "X-Generator: Poedit 2.0.6\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: src/Gtk/MainWindow.vala:494 -msgid "About" -msgstr "Hakkında" - -#: src/Console/AppConsole.vala:113 -msgid "Admin access is required for running this application." -msgstr "Bu uygulamayı çalıştırmak için yönetici izni gerekiyor." - -#: src/Utility/AppLock.vala:51 -msgid "Another instance of this application is running" -msgstr "Bu uygulamanın başka bir örneği çalışıyor" +#: src/Common/LinuxKernel.vala:92 +msgid "Distribution" +msgstr "Dağıtım" #: src/Common/LinuxKernel.vala:106 msgid "Architecture" msgstr "Sistem mimarisi" -#: src/Utility/Gtk/AboutWindow.vala:338 -#, c-format -msgid "Artists" -msgstr "Sanatçılar" +#: src/Common/LinuxKernel.vala:257 +msgid "Index is stale" +msgstr "İçerik listesi eski" -#: src/Console/AppConsole.vala:99 -msgid "Assume Yes for all prompts (non-interactive mode)" -msgstr "Tüm istemler için Evet'i kabul edin (etkileşimsiz kip)" +#: src/Common/LinuxKernel.vala:260 +msgid "Index is fresh" +msgstr "İçerik listesi güncel" -#: src/Utility/Gtk/AboutWindow.vala:314 +#: src/Common/LinuxKernel.vala:365 +msgid "Fetching index..." +msgstr "İçerik dizini alınıyor..." + +#: src/Common/LinuxKernel.vala:408 +msgid "Fetching index from kernel.ubuntu.com..." +msgstr "İçerik listesi kernel.ubuntu.com alanından alınıyor..." + +#: src/Common/LinuxKernel.vala:727 +msgid "Could not find running kernel in list!" +msgstr "İstenen sürüm bulunamadı!" + +#: src/Common/LinuxKernel.vala:733 +msgid "Could not find any kernels to remove" +msgstr "Kaldırılacak çekirdek bulunamadı" + +#: src/Common/LinuxKernel.vala:742 +msgid "The following kernels will be removed:" +msgstr "Aşağıdaki çekirdekler silinecek:" + +#: src/Common/LinuxKernel.vala:749 +msgid "Continue ?" +msgstr "Devam et ?" + +#: src/Common/LinuxKernel.vala:777 src/Console/AppConsole.vala:359 +msgid "Latest update" +msgstr "Son güncelleme" + +#: src/Common/LinuxKernel.vala:788 src/Console/AppConsole.vala:366 +msgid "Latest point update" +msgstr "Son güncelleme noktası" + +#: src/Common/LinuxKernel.vala:796 src/Console/AppConsole.vala:371 +#: src/Console/AppConsole.vala:429 src/Gtk/MainWindow.vala:804 +msgid "No updates found" +msgstr "Güncelleme bulunamadı" + +#: src/Common/LinuxKernel.vala:806 #, c-format -msgid "Authors" -msgstr "Yazar" +msgid "Install Linux v%s ? (y/n): " +msgstr "Linux v%s Kur ? (e/h): " + +#: src/Common/LinuxKernel.vala:1072 +msgid "Packages Available" +msgstr "Mevcut Paketler" + +#: src/Common/LinuxKernel.vala:1080 +msgid "Packages Installed" +msgstr "Kurulu Paketler" #: src/Common/LinuxKernel.vala:1164 msgid "Available Kernels" msgstr "Mevcut Çekirdekler" -#: src/Utility/Gtk/AboutWindow.vala:285 -msgid "Back" -msgstr "Geri" +#: src/Common/LinuxKernel.vala:1181 src/Gtk/MainWindow.vala:208 +msgid "Installed" +msgstr "Kurulu" -#: src/Console/AppConsole.vala:203 src/Gtk/AppGtk.vala:110 -msgid "Cache" -msgstr "Önbellek" +#: src/Common/LinuxKernel.vala:1181 src/Gtk/MainWindow.vala:208 +msgid "Running" +msgstr "Çalışıyor" -#: src/Gtk/ProgressWindow.vala:145 src/Gtk/TerminalWindow.vala:148 -#: src/Gtk/UpdateNotificationWindow.vala:167 -#: src/Utility/Gtk/CustomMessageDialog.vala:155 -msgid "Cancel" -msgstr "İptal" +#: src/Common/LinuxKernel.vala:1210 +msgid "Downloading" +msgstr "İndiriliyor" -#: src/Gtk/MainWindow.vala:462 -msgid "Changes" -msgstr "Değişiklikler" +#: src/Common/LinuxKernel.vala:1229 +#: src/Utility/Gtk/CustomMessageDialog.vala:150 +#: src/Utility/Gtk/CustomMessageDialog.vala:154 +msgid "OK" +msgstr "TAMAM" -#: src/Gtk/SettingsDialog.vala:120 -msgid "Check every" -msgstr "Kontrol aralığı" +#: src/Common/LinuxKernel.vala:1238 +msgid "ERROR" +msgstr "HATA" -#: src/Console/AppConsole.vala:82 -msgid "Check for kernel updates" -msgstr "Çekirdek güncellemelerini kontrol et" +#: src/Common/LinuxKernel.vala:1252 src/Gtk/MainWindow.vala:689 +msgid "This kernel is already installed." +msgstr "Bu çekirdek zaten kurulu." -#: src/Console/AppConsole.vala:83 -msgid "Check for kernel updates and notify current user" -msgstr "Çekirdek güncellemelerini kontrol et ve mevcut kullanıcıyı uyar" +#: src/Common/LinuxKernel.vala:1281 +msgid "Installation completed. A reboot is required to use the new kernel." +msgstr "" +"Kurulum tamamlandı. Yeni çekirdeği kullanmak için yeniden başlatma gerekiyor." -#: src/Gtk/TerminalWindow.vala:158 src/Utility/Gtk/AboutWindow.vala:295 -msgid "Close" -msgstr "Kapat" +#: src/Common/LinuxKernel.vala:1284 +msgid "Installation completed with errors" +msgstr "Kurulum hatalarla tamamlandı" -#: src/Console/AppConsole.vala:340 -msgid "Command not specified" -msgstr "Komut belirtilmedi" +#: src/Common/LinuxKernel.vala:1300 +msgid "" +"Selected kernel is currently running and cannot be removed.\n" +" Install another kernel before removing this one." +msgstr "" +"Seçilen çekirdek şu anda çalışıyor ve kaldırılamıyor.\n" +" Bunu kaldırmadan önce başka bir çekirdek yükleyin." -#: src/Console/AppConsole.vala:80 -msgid "Commands" -msgstr "Komutlar" +#: src/Common/LinuxKernel.vala:1305 +msgid "Preparing to remove selected kernels" +msgstr "Seçilen çekirdekleri kaldırmak için hazırlanıyor" + +#: src/Common/LinuxKernel.vala:1337 src/Common/LinuxKernel.vala:1390 +msgid "Un-install completed" +msgstr "Kaldırma tamamlandı" + +#: src/Common/LinuxKernel.vala:1340 src/Common/LinuxKernel.vala:1393 +msgid "Un-install completed with errors" +msgstr "Kaldırma hatalarla tamamlandı" + +#: src/Common/LinuxKernel.vala:1353 +msgid "" +"This kernel is currently running and cannot be removed.\n" +" Install another kernel before removing this one." +msgstr "" +"Bu çekirdek şu anda çalışıyor ve bu sebeple kaldırılamaz.\n" +"Bunu kaldırmadan önce başka bir çekirdek yükleyin." #: src/Common/Main.vala:107 msgid "Commands listed below are not available on this system" msgstr "Aşağıda listelenen komutlar bu sistemde mevcut değil" -#: src/Common/LinuxKernel.vala:749 -#, c-format -msgid "Continue ?" -msgstr "Devam et ?" +#: src/Common/Main.vala:108 +msgid "Please install required packages and try again" +msgstr "Lütfen gerekli paketleri yükleyin ve tekrar deneyin" -#: src/Utility/Gtk/AboutWindow.vala:322 +#: src/Common/Package.vala:126 src/Common/Package.vala:188 #, c-format -msgid "Contributions" -msgstr "Destek verenler" +msgid "File not found: %s" +msgstr "Şu dosya bulunamadı: %s" -#: src/Common/LinuxKernel.vala:733 -msgid "Could not find any kernels to remove" -msgstr "Kaldırılacak çekirdek bulunamadı" +#: src/Console/AppConsole.vala:78 src/Gtk/AppGtk.vala:179 +msgid "Syntax" +msgstr "Sözdizimi" -#: src/Console/AppConsole.vala:308 src/Gtk/MainWindow.vala:100 -msgid "Could not find requested version" -msgstr "İstenen sürüm bulunamadı" +#: src/Console/AppConsole.vala:80 +msgid "Commands" +msgstr "Komutlar" -#: src/Common/LinuxKernel.vala:727 -msgid "Could not find running kernel in list!" -msgstr "İstenen sürüm bulunamadı!" +#: src/Console/AppConsole.vala:82 +msgid "Check for kernel updates" +msgstr "Çekirdek güncellemelerini kontrol et" -#: src/Utility/TeeJee.FileSystem.vala:349 -#: src/Utility/TeeJee.FileSystem.vala:352 -#: src/Utility/TeeJee.FileSystem.vala:378 -msgid "Created directory" -msgstr "Dizin oluşturuldu" +#: src/Console/AppConsole.vala:83 +msgid "Check for kernel updates and notify current user" +msgstr "Çekirdek güncellemelerini kontrol et ve mevcut kullanıcıyı uyar" -#: src/Utility/Gtk/AboutWindow.vala:272 src/Utility/Gtk/AboutWindow.vala:289 -msgid "Credits" -msgstr "Katkı sağlayanlar" +#: src/Console/AppConsole.vala:84 +msgid "List all available mainline kernels" +msgstr "Tüm mainline çekirdeklerini listele" -#: src/Gtk/SettingsDialog.vala:153 -msgid "Day(s)" -msgstr "Gün" +#: src/Console/AppConsole.vala:85 +msgid "List installed kernels" +msgstr "Kurulu çekirdekleri listele" -#: src/Utility/TeeJee.FileSystem.vala:375 -msgid "Deleted directory" -msgstr "Silinen dizin" +#: src/Console/AppConsole.vala:86 +msgid "Install latest mainline kernel" +msgstr "En son mainline çekirdeğini kur" -#: src/Utility/TeeJee.FileSystem.vala:509 -msgid "Dir not found" -msgstr "Dizin bulunamadı" +#: src/Console/AppConsole.vala:87 +msgid "Install latest point update for current series" +msgstr "Mevcut çekirdek serisi için en güncelleme noktasını kur" -#: src/Gtk/SettingsDialog.vala:160 -msgid "Display" -msgstr "Gösterim" +#: src/Console/AppConsole.vala:88 +msgid "Install specified mainline kernel" +msgstr "Belirtilen mainline çekirdeğini kur" -#: src/Common/LinuxKernel.vala:92 -msgid "Distribution" -msgstr "Dağıtım" +#: src/Console/AppConsole.vala:89 +msgid "Remove specified kernel" +msgstr "Belirtilen çekirdeği kaldır" -#: src/Utility/Gtk/AboutWindow.vala:354 -#, c-format -msgid "Documenters" -msgstr "Belgelendirenler" +#: src/Console/AppConsole.vala:90 src/Gtk/MainWindow.vala:424 +msgid "Remove installed kernels older than running kernel" +msgstr "Çalışan çekirdekten eski olan kurulu çekirdekleri kaldır" #: src/Console/AppConsole.vala:91 msgid "Download packages for specified kernel" msgstr "Belirtilen çekirdek için paketleri indir" -#: src/Common/LinuxKernel.vala:1210 -#, c-format -msgid "Downloading" -msgstr "İndiriliyor" +#: src/Console/AppConsole.vala:92 src/Console/AppConsole.vala:97 +msgid "Remove files from application cache" +msgstr "Dosyaları uygulama önbelleğinden sil" -#: src/Utility/TeeJee.Logging.vala:89 -msgid "E" -msgstr "H" +#: src/Console/AppConsole.vala:93 +msgid "Show unstable and RC releases" +msgstr "Kararsız ve RC sürümleri göster" -#: src/Common/LinuxKernel.vala:1238 -#, c-format -msgid "ERROR" -msgstr "HATA" +#: src/Console/AppConsole.vala:95 src/Gtk/AppGtk.vala:181 +msgid "Options" +msgstr "Seçenekler" #: src/Console/AppConsole.vala:98 msgid "Enable verbose debugging output" msgstr "Ayrıntılı hata ayıklama çıktısını etkinleştir" -#: src/Utility/Gtk/GtkHelper.vala:17 -msgid "Error" -msgstr "Hata" - -#: src/Utility/TeeJee.FileSystem.vala:221 -msgid "Failed to copy file" -msgstr "Dosya kopyalama başarısız" +#: src/Console/AppConsole.vala:99 +msgid "Assume Yes for all prompts (non-interactive mode)" +msgstr "Tüm istemler için Evet'i kabul edin (etkileşimsiz kip)" -#: src/Utility/TeeJee.FileSystem.vala:359 -msgid "Failed to create dir" -msgstr "Dizin oluşturma başarısız" +#: src/Console/AppConsole.vala:100 +msgid "Override user" +msgstr "Kullanıcıyı geçersiz kıl" -#: src/Utility/TeeJee.FileSystem.vala:106 -msgid "Failed to delete file" -msgstr "Dosya silme başarısız" +#: src/Console/AppConsole.vala:113 +msgid "Admin access is required for running this application." +msgstr "Bu uygulamayı çalıştırmak için yönetici izni gerekiyor." -#: src/Utility/TeeJee.FileSystem.vala:253 -msgid "Failed to move file" -msgstr "Dosya taşıma başarısız" +#: src/Console/AppConsole.vala:116 +msgid "Run the application as admin with pkexec or sudo." +msgstr "Bu uygulamayı pkexec yada sudo ile yönetici haklarıyla çalıştırın." -#: src/Utility/TeeJee.FileSystem.vala:162 -msgid "Failed to read file" -msgstr "Dosya okuma başarısız" +#: src/Console/AppConsole.vala:196 src/Gtk/AppGtk.vala:166 +msgid "Unknown option" +msgstr "Bilinmeyen seçenek" -#: src/Utility/TeeJee.FileSystem.vala:197 -msgid "Failed to write file" -msgstr "Dosya yazma başarısız" +#: src/Console/AppConsole.vala:198 src/Console/AppConsole.vala:312 +#: src/Console/AppConsole.vala:341 +msgid "Run '" +msgstr "Çalıştır '" -#: src/Common/LinuxKernel.vala:408 -msgid "Fetching index from kernel.ubuntu.com..." -msgstr "İçerik listesi kernel.ubuntu.com alanından alınıyor..." +#: src/Console/AppConsole.vala:203 src/Gtk/AppGtk.vala:110 +msgid "Cache" +msgstr "Önbellek" -#: src/Common/LinuxKernel.vala:365 -msgid "Fetching index..." -msgstr "İçerik dizini alınıyor..." +#: src/Console/AppConsole.vala:204 src/Gtk/AppGtk.vala:111 +msgid "Temp" +msgstr "Geçici" -#: src/Utility/TeeJee.FileSystem.vala:210 -#: src/Utility/TeeJee.FileSystem.vala:213 -msgid "File copied" -msgstr "Dosya kopyalandı" +#: src/Console/AppConsole.vala:284 src/Console/AppConsole.vala:321 +msgid "No kernels specified" +msgstr "Belirtilen çekirdek yok" -#: src/Utility/TeeJee.FileSystem.vala:97 src/Utility/TeeJee.FileSystem.vala:100 -msgid "File deleted" -msgstr "Dosya silindi" +#: src/Console/AppConsole.vala:290 +msgid "Multiple kernels selected for installation. Select only one." +msgstr "Kurulum için çoklu çekirdek seçildi. Sadece bir tane seçiniz." -#: src/Utility/TeeJee.FileSystem.vala:662 -#: src/Utility/TeeJee.FileSystem.vala:711 -msgid "File is missing" -msgstr "Dosya eksik" +#: src/Console/AppConsole.vala:308 src/Gtk/MainWindow.vala:100 +msgid "Could not find requested version" +msgstr "İstenen sürüm bulunamadı" -#: src/Utility/TeeJee.FileSystem.vala:245 -#: src/Utility/TeeJee.FileSystem.vala:248 -msgid "File moved" -msgstr "Dosya taşındı" +#: src/Console/AppConsole.vala:340 +msgid "Command not specified" +msgstr "Komut belirtilmedi" -#: src/Utility/TeeJee.FileSystem.vala:231 -#: src/Utility/TeeJee.FileSystem.vala:538 -msgid "File not found" -msgstr "Dosya bulunamadı" +#: src/Gtk/AppGtk.vala:183 +msgid "Print debug information" +msgstr "Hata ayıklama bilgisini yazdır" -#: src/Common/Package.vala:126 src/Common/Package.vala:188 -#, c-format -msgid "File not found: %s" -msgstr "Şu dosya bulunamadı: %s" +#: src/Gtk/AppGtk.vala:184 +msgid "Show all options" +msgstr "Tüm seçenekleri göster" -#: src/Utility/TeeJee.FileSystem.vala:187 -#: src/Utility/TeeJee.FileSystem.vala:190 -msgid "File saved" -msgstr "Dosya kaydedildi" +#: src/Gtk/MainWindow.vala:150 +msgid "Kernel" +msgstr "Çekirdek" -#: src/Gtk/SettingsDialog.vala:168 -msgid "Hide unstable and RC releases" -msgstr "Kararsız ve RC sürümleri gizle" +#: src/Gtk/MainWindow.vala:179 +msgid "Version" +msgstr "Sürüm" -#: src/Gtk/SettingsDialog.vala:151 -msgid "Hour(s)" -msgstr "Saat" +#: src/Gtk/MainWindow.vala:196 +msgid "Status" +msgstr "Durum" -#: src/Gtk/UpdateNotificationWindow.vala:168 -msgid "Ignore this update" -msgstr "Bu güncellemeyi yoksay" +#: src/Gtk/MainWindow.vala:341 +msgid "Refresh" +msgstr "Yenile" -#: src/Common/LinuxKernel.vala:260 -msgid "Index is fresh" -msgstr "İçerik listesi güncel" +#: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:558 +#: src/Gtk/MainWindow.vala:694 src/Utility/TeeJee.System.vala:281 +msgid "Internet connection is not active" +msgstr "İnternet bağlantısı aktif değil" -#: src/Common/LinuxKernel.vala:257 -msgid "Index is stale" -msgstr "İçerik listesi eski" +#: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:558 +#: src/Gtk/MainWindow.vala:694 +msgid "No Internet" +msgstr "İnternet Yok" -#: src/Gtk/UpdateNotificationWindow.vala:147 src/Gtk/MainWindow.vala:357 +#: src/Gtk/MainWindow.vala:357 src/Gtk/UpdateNotificationWindow.vala:147 msgid "Install" msgstr "Kur" -#: src/Common/LinuxKernel.vala:806 -#, c-format -msgid "Install Linux v%s ? (y/n): " -msgstr "Linux v%s Kur ? (e/h): " - -#: src/Console/AppConsole.vala:86 -msgid "Install latest mainline kernel" -msgstr "En son mainline çekirdeğini kur" +#: src/Gtk/MainWindow.vala:366 +msgid "Multiple Kernels Selected" +msgstr "Çoklu Çekirdek Seçildi" -#: src/Console/AppConsole.vala:87 -msgid "Install latest point update for current series" -msgstr "Mevcut çekirdek serisi için en güncelleme noktasını kur" +#: src/Gtk/MainWindow.vala:366 +msgid "Select a single kernel to install" +msgstr "Kurulum için tek çekirdek seçin" -#: src/Console/AppConsole.vala:88 -msgid "Install specified mainline kernel" -msgstr "Belirtilen mainline çekirdeğini kur" +#: src/Gtk/MainWindow.vala:369 src/Gtk/MainWindow.vala:380 +msgid "Not Selected" +msgstr "Seçilen Yok" -#: src/Gtk/UpdateNotificationWindow.vala:148 -msgid "Install this kernel" -msgstr "Bu çekirdeği kur" +#: src/Gtk/MainWindow.vala:369 +msgid "Select the kernel to install" +msgstr "Kurulum için çekirdek seçin" -#: src/Common/LinuxKernel.vala:1284 -msgid "Installation completed with errors" -msgstr "Kurulum hatalarla tamamlandı" +#: src/Gtk/MainWindow.vala:374 +msgid "Remove" +msgstr "Sil" -#: src/Common/LinuxKernel.vala:1281 -msgid "Installation completed. A reboot is required to use the new kernel." -msgstr "" -"Kurulum tamamlandı. Yeni çekirdeği kullanmak için yeniden başlatma gerekiyor." +#: src/Gtk/MainWindow.vala:380 +msgid "Select the kernels to remove" +msgstr "Kaldırma için çekirdek seçin" -#: src/Common/LinuxKernel.vala:1181 src/Gtk/MainWindow.vala:208 -msgid "Installed" -msgstr "Kurulu" +#: src/Gtk/MainWindow.vala:423 +msgid "Purge" +msgstr "Temizle" -#: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:558 -#: src/Gtk/MainWindow.vala:694 src/Utility/TeeJee.System.vala:281 -msgid "Internet connection is not active" -msgstr "İnternet bağlantısı aktif değil" +#: src/Gtk/MainWindow.vala:462 +msgid "Changes" +msgstr "Değişiklikler" -#: src/Gtk/SettingsDialog.vala:218 -msgid "Internet connection timeout in " -msgstr "İnternet bağlantısı zaman aşımı " +#: src/Gtk/MainWindow.vala:473 src/Gtk/SettingsDialog.vala:55 +msgid "Settings" +msgstr "Ayarlar" -#: src/Gtk/MainWindow.vala:150 -msgid "Kernel" -msgstr "Çekirdek" +#: src/Gtk/MainWindow.vala:494 +msgid "About" +msgstr "Hakkında" #: src/Gtk/MainWindow.vala:542 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Ubuntu tabanlı dağıtımlar için çekirdek güncelleme aracı" -#: src/Common/LinuxKernel.vala:788 src/Console/AppConsole.vala:366 -#, c-format -msgid "Latest point update" -msgstr "Son güncelleme noktası" - -#: src/Common/LinuxKernel.vala:777 src/Console/AppConsole.vala:359 -#, c-format -msgid "Latest update" -msgstr "Son güncelleme" +#: src/Gtk/MainWindow.vala:577 +msgid "Refreshing..." +msgstr "Yenileniyor..." -#: src/Console/AppConsole.vala:84 -msgid "List all available mainline kernels" -msgstr "Tüm mainline çekirdeklerini listele" +#: src/Gtk/ProgressWindow.vala:145 src/Gtk/TerminalWindow.vala:148 +#: src/Gtk/UpdateNotificationWindow.vala:167 +#: src/Utility/Gtk/CustomMessageDialog.vala:155 +msgid "Cancel" +msgstr "İptal" -#: src/Gtk/UpdateNotificationWindow.vala:158 -msgid "List available kernels" -msgstr "Tüm çekirdekleri listele" +#: src/Gtk/SettingsDialog.vala:65 +msgid "Notification" +msgstr "Bildirim" -#: src/Console/AppConsole.vala:85 -msgid "List installed kernels" -msgstr "Kurulu çekirdekleri listele" +#: src/Gtk/SettingsDialog.vala:72 +msgid "Notify if a major release is available" +msgstr "Ana sürüm mevcutsa bildir" -#: src/Utility/Gtk/GtkHelper.vala:93 -msgid "Missing Icon" -msgstr "Eksik Simge" +#: src/Gtk/SettingsDialog.vala:83 +msgid "Notify if a point release is available" +msgstr "Ara sürüm mevcutsa bildir" -#: src/Gtk/MainWindow.vala:366 -msgid "Multiple Kernels Selected" -msgstr "Çoklu Çekirdek Seçildi" +#: src/Gtk/SettingsDialog.vala:94 +msgid "Show notification bubble on desktop" +msgstr "Masaüstünde bildirim baloncuğu göster" -#: src/Console/AppConsole.vala:290 -msgid "Multiple kernels selected for installation. Select only one." -msgstr "Kurulum için çoklu çekirdek seçildi. Sadece bir tane seçiniz." +#: src/Gtk/SettingsDialog.vala:105 +msgid "Show notification dialog" +msgstr "Bildirim iletişimini göster" -#: src/Utility/Gtk/CustomMessageDialog.vala:160 -msgid "No" -msgstr "Hayır" - -#: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:558 -#: src/Gtk/MainWindow.vala:694 -msgid "No Internet" -msgstr "İnternet Yok" - -#: src/Console/AppConsole.vala:284 src/Console/AppConsole.vala:321 -msgid "No kernels specified" -msgstr "Belirtilen çekirdek yok" - -#: src/Common/LinuxKernel.vala:796 src/Console/AppConsole.vala:371 -#: src/Console/AppConsole.vala:429 src/Gtk/MainWindow.vala:804 -msgid "No updates found" -msgstr "Güncelleme bulunamadı" +#: src/Gtk/SettingsDialog.vala:120 +msgid "Check every" +msgstr "Kontrol aralığı" -#: src/Gtk/MainWindow.vala:369 src/Gtk/MainWindow.vala:380 -msgid "Not Selected" -msgstr "Seçilen Yok" +#: src/Gtk/SettingsDialog.vala:151 +msgid "Hour(s)" +msgstr "Saat" -#: src/Gtk/SettingsDialog.vala:65 -msgid "Notification" -msgstr "Bildirim" +#: src/Gtk/SettingsDialog.vala:153 +msgid "Day(s)" +msgstr "Gün" -#: src/Gtk/SettingsDialog.vala:72 -msgid "Notify if a major release is available" -msgstr "Ana sürüm mevcutsa bildir" +#: src/Gtk/SettingsDialog.vala:155 +msgid "Week(s)" +msgstr "Hafta" -#: src/Gtk/SettingsDialog.vala:83 -msgid "Notify if a point release is available" -msgstr "Ara sürüm mevcutsa bildir" +#: src/Gtk/SettingsDialog.vala:160 +msgid "Display" +msgstr "Gösterim" -#: src/Common/LinuxKernel.vala:1229 -#: src/Utility/Gtk/CustomMessageDialog.vala:150 -#: src/Utility/Gtk/CustomMessageDialog.vala:154 -#, c-format -msgid "OK" -msgstr "TAMAM" +#: src/Gtk/SettingsDialog.vala:168 +msgid "Hide unstable and RC releases" +msgstr "Kararsız ve RC sürümleri gizle" -#: src/Console/AppConsole.vala:95 src/Gtk/AppGtk.vala:181 -msgid "Options" -msgstr "Seçenekler" +#: src/Gtk/SettingsDialog.vala:182 +msgid "Show N previous major versions " +msgstr "Önceki ana sürümleri gösterme sayısı " #: src/Gtk/SettingsDialog.vala:197 msgid "Other" msgstr "Diğer" -#: src/Console/AppConsole.vala:100 -msgid "Override user" -msgstr "Kullanıcıyı geçersiz kıl" - -#: src/Common/LinuxKernel.vala:1072 -#, c-format -msgid "Packages Available" -msgstr "Mevcut Paketler" - -#: src/Common/LinuxKernel.vala:1080 -#, c-format -msgid "Packages Installed" -msgstr "Kurulu Paketler" - -#: src/Common/Main.vala:108 -msgid "Please install required packages and try again" -msgstr "Lütfen gerekli paketleri yükleyin ve tekrar deneyin" - -#: src/Common/LinuxKernel.vala:1305 -msgid "Preparing to remove selected kernels" -msgstr "Seçilen çekirdekleri kaldırmak için hazırlanıyor" - -#: src/Gtk/AppGtk.vala:183 -msgid "Print debug information" -msgstr "Hata ayıklama bilgisini yazdır" +#: src/Gtk/SettingsDialog.vala:205 +msgid "Skip internet connection check" +msgstr "İnternet bağlantı kontrolünü atla" -#: src/Gtk/MainWindow.vala:423 -msgid "Purge" -msgstr "Temizle" +#: src/Gtk/SettingsDialog.vala:218 +msgid "Internet connection timeout in " +msgstr "İnternet bağlantısı zaman aşımı " -#: src/Gtk/MainWindow.vala:341 -msgid "Refresh" -msgstr "Yenile" +#: src/Gtk/SettingsDialog.vala:232 +msgid "seconds" +msgstr "saniye" -#: src/Gtk/MainWindow.vala:577 -msgid "Refreshing..." -msgstr "Yenileniyor..." +#: src/Gtk/TerminalWindow.vala:158 src/Utility/Gtk/AboutWindow.vala:295 +msgid "Close" +msgstr "Kapat" -#: src/Gtk/MainWindow.vala:374 -msgid "Remove" -msgstr "Sil" +#: src/Gtk/UpdateNotificationWindow.vala:148 +msgid "Install this kernel" +msgstr "Bu çekirdeği kur" -#: src/Console/AppConsole.vala:92 src/Console/AppConsole.vala:97 -msgid "Remove files from application cache" -msgstr "Dosyaları uygulama önbelleğinden sil" +#: src/Gtk/UpdateNotificationWindow.vala:157 +msgid "Show" +msgstr "Göster" -#: src/Console/AppConsole.vala:90 src/Gtk/MainWindow.vala:424 -msgid "Remove installed kernels older than running kernel" -msgstr "Çalışan çekirdekten eski olan kurulu çekirdekleri kaldır" +#: src/Gtk/UpdateNotificationWindow.vala:158 +msgid "List available kernels" +msgstr "Tüm çekirdekleri listele" -#: src/Console/AppConsole.vala:89 -msgid "Remove specified kernel" -msgstr "Belirtilen çekirdeği kaldır" +#: src/Gtk/UpdateNotificationWindow.vala:168 +msgid "Ignore this update" +msgstr "Bu güncellemeyi yoksay" -#: src/Console/AppConsole.vala:198 src/Console/AppConsole.vala:312 -#: src/Console/AppConsole.vala:341 -msgid "Run '" -msgstr "Çalıştır '" +#: src/Utility/Gtk/AboutWindow.vala:272 src/Utility/Gtk/AboutWindow.vala:289 +msgid "Credits" +msgstr "Katkı sağlayanlar" -#: src/Console/AppConsole.vala:116 -msgid "Run the application as admin with pkexec or sudo." -msgstr "Bu uygulamayı pkexec yada sudo ile yönetici haklarıyla çalıştırın." +#: src/Utility/Gtk/AboutWindow.vala:285 +msgid "Back" +msgstr "Geri" -#: src/Common/LinuxKernel.vala:1181 src/Gtk/MainWindow.vala:208 -msgid "Running" -msgstr "Çalışıyor" +#: src/Utility/Gtk/AboutWindow.vala:314 +msgid "Authors" +msgstr "Yazar" -#: src/Gtk/MainWindow.vala:366 -msgid "Select a single kernel to install" -msgstr "Kurulum için tek çekirdek seçin" +#: src/Utility/Gtk/AboutWindow.vala:322 +msgid "Contributions" +msgstr "Destek verenler" -#: src/Gtk/MainWindow.vala:369 -msgid "Select the kernel to install" -msgstr "Kurulum için çekirdek seçin" +#: src/Utility/Gtk/AboutWindow.vala:330 +msgid "Third Party Tools" +msgstr "Üçüncü Parti Araçlar" -#: src/Gtk/MainWindow.vala:380 -msgid "Select the kernels to remove" -msgstr "Kaldırma için çekirdek seçin" +#: src/Utility/Gtk/AboutWindow.vala:338 +msgid "Artists" +msgstr "Sanatçılar" -#: src/Common/LinuxKernel.vala:1300 -msgid "" -"Selected kernel is currently running and cannot be removed.\n" -" Install another kernel before removing this one." -msgstr "" -"Seçilen çekirdek şu anda çalışıyor ve kaldırılamıyor.\n" -" Bunu kaldırmadan önce başka bir çekirdek yükleyin." +#: src/Utility/Gtk/AboutWindow.vala:346 +msgid "Translators" +msgstr "Çevirenler" -#: src/Gtk/MainWindow.vala:473 src/Gtk/SettingsDialog.vala:55 -msgid "Settings" -msgstr "Ayarlar" +#: src/Utility/Gtk/AboutWindow.vala:354 +msgid "Documenters" +msgstr "Belgelendirenler" -#: src/Gtk/UpdateNotificationWindow.vala:157 -msgid "Show" -msgstr "Göster" +#: src/Utility/Gtk/CustomMessageDialog.vala:159 +msgid "Yes" +msgstr "Evet" -#: src/Gtk/SettingsDialog.vala:182 -msgid "Show N previous major versions " -msgstr "Önceki ana sürümleri gösterme sayısı " +#: src/Utility/Gtk/CustomMessageDialog.vala:160 +msgid "No" +msgstr "Hayır" -#: src/Gtk/AppGtk.vala:184 -msgid "Show all options" -msgstr "Tüm seçenekleri göster" +#: src/Utility/Gtk/GtkHelper.vala:17 +msgid "Error" +msgstr "Hata" -#: src/Gtk/SettingsDialog.vala:94 -msgid "Show notification bubble on desktop" -msgstr "Masaüstünde bildirim baloncuğu göster" +#: src/Utility/Gtk/GtkHelper.vala:93 +msgid "Missing Icon" +msgstr "Eksik Simge" -#: src/Gtk/SettingsDialog.vala:105 -msgid "Show notification dialog" -msgstr "Bildirim iletişimini göster" +#: src/Utility/TeeJee.FileSystem.vala:97 src/Utility/TeeJee.FileSystem.vala:100 +msgid "File deleted" +msgstr "Dosya silindi" -#: src/Console/AppConsole.vala:93 -msgid "Show unstable and RC releases" -msgstr "Kararsız ve RC sürümleri göster" +#: src/Utility/TeeJee.FileSystem.vala:106 +msgid "Failed to delete file" +msgstr "Dosya silme başarısız" -#: src/Gtk/SettingsDialog.vala:205 -msgid "Skip internet connection check" -msgstr "İnternet bağlantı kontrolünü atla" +#: src/Utility/TeeJee.FileSystem.vala:162 +msgid "Failed to read file" +msgstr "Dosya okuma başarısız" -#: src/Gtk/MainWindow.vala:196 -msgid "Status" -msgstr "Durum" +#: src/Utility/TeeJee.FileSystem.vala:187 +#: src/Utility/TeeJee.FileSystem.vala:190 +msgid "File saved" +msgstr "Dosya kaydedildi" -#: src/Utility/TeeJee.Process.vala:513 -msgid "Stopped" -msgstr "Durduruldu" +#: src/Utility/TeeJee.FileSystem.vala:197 +msgid "Failed to write file" +msgstr "Dosya yazma başarısız" -#: src/Console/AppConsole.vala:78 src/Gtk/AppGtk.vala:179 -msgid "Syntax" -msgstr "Sözdizimi" +#: src/Utility/TeeJee.FileSystem.vala:210 +#: src/Utility/TeeJee.FileSystem.vala:213 +msgid "File copied" +msgstr "Dosya kopyalandı" -#: src/Console/AppConsole.vala:204 src/Gtk/AppGtk.vala:111 -msgid "Temp" -msgstr "Geçici" +#: src/Utility/TeeJee.FileSystem.vala:221 +msgid "Failed to copy file" +msgstr "Dosya kopyalama başarısız" -#: src/Common/LinuxKernel.vala:742 -#, c-format -msgid "The following kernels will be removed:" -msgstr "Aşağıdaki çekirdekler silinecek:" +#: src/Utility/TeeJee.FileSystem.vala:231 +#: src/Utility/TeeJee.FileSystem.vala:538 +msgid "File not found" +msgstr "Dosya bulunamadı" -#: src/Utility/Gtk/AboutWindow.vala:330 -#, c-format -msgid "Third Party Tools" -msgstr "Üçüncü Parti Araçlar" +#: src/Utility/TeeJee.FileSystem.vala:245 +#: src/Utility/TeeJee.FileSystem.vala:248 +msgid "File moved" +msgstr "Dosya taşındı" -#: src/Common/LinuxKernel.vala:1252 src/Gtk/MainWindow.vala:689 -msgid "This kernel is already installed." -msgstr "Bu çekirdek zaten kurulu." +#: src/Utility/TeeJee.FileSystem.vala:253 +msgid "Failed to move file" +msgstr "Dosya taşıma başarısız" -#: src/Common/LinuxKernel.vala:1353 -msgid "" -"This kernel is currently running and cannot be removed.\n" -" Install another kernel before removing this one." -msgstr "" -"Bu çekirdek şu anda çalışıyor ve bu sebeple kaldırılamaz.\n" -"Bunu kaldırmadan önce başka bir çekirdek yükleyin." +#: src/Utility/TeeJee.FileSystem.vala:349 +#: src/Utility/TeeJee.FileSystem.vala:352 +#: src/Utility/TeeJee.FileSystem.vala:378 +msgid "Created directory" +msgstr "Dizin oluşturuldu" -#: src/Utility/Gtk/AboutWindow.vala:346 -#, c-format -msgid "Translators" -msgstr "Çevirenler" +#: src/Utility/TeeJee.FileSystem.vala:359 +msgid "Failed to create dir" +msgstr "Dizin oluşturma başarısız" -#: src/Common/LinuxKernel.vala:1337 src/Common/LinuxKernel.vala:1390 -msgid "Un-install completed" -msgstr "Kaldırma tamamlandı" +#: src/Utility/TeeJee.FileSystem.vala:375 +msgid "Deleted directory" +msgstr "Silinen dizin" -#: src/Common/LinuxKernel.vala:1340 src/Common/LinuxKernel.vala:1393 -msgid "Un-install completed with errors" -msgstr "Kaldırma hatalarla tamamlandı" +#: src/Utility/TeeJee.FileSystem.vala:509 +msgid "Dir not found" +msgstr "Dizin bulunamadı" -#: src/Console/AppConsole.vala:196 src/Gtk/AppGtk.vala:166 -msgid "Unknown option" -msgstr "Bilinmeyen seçenek" +#: src/Utility/TeeJee.FileSystem.vala:662 +#: src/Utility/TeeJee.FileSystem.vala:711 +msgid "File is missing" +msgstr "Dosya eksik" -#: src/Gtk/MainWindow.vala:179 -msgid "Version" -msgstr "Sürüm" +#: src/Utility/TeeJee.Logging.vala:89 +msgid "E" +msgstr "H" #: src/Utility/TeeJee.Logging.vala:89 msgid "W" msgstr "U" -#: src/Gtk/SettingsDialog.vala:155 -msgid "Week(s)" -msgstr "Hafta" - -#: src/Utility/Gtk/CustomMessageDialog.vala:159 -msgid "Yes" -msgstr "Evet" - -#: src/Utility/AppLock.vala:56 -msgid "[Warning] Deleted invalid lock" -msgstr "[Uyarı] Geçersiz kilit silindi" - -#: src/Gtk/SettingsDialog.vala:232 -msgid "seconds" -msgstr "saniye" - -#, fuzzy -#~ msgid "Hide kernels older than " -#~ msgstr "4.0 sürümden düşük çekirdekleri gizle" +#: src/Utility/TeeJee.Process.vala:513 +msgid "Stopped" +msgstr "Durduruldu" diff --git a/po/uk.po b/po/uk.po index b1256725..b6b67806 100644 --- a/po/uk.po +++ b/po/uk.po @@ -1,8 +1,8 @@ msgid "" msgstr "" "Project-Id-Version: ukuu\n" -"Report-Msgid-Bugs-To: b.kenyon.w@gmail.com\n" -"POT-Creation-Date: 2020-05-01 13:31-0400\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-05-02 16:29-0400\n" "PO-Revision-Date: 2019-07-25 11:00+0300\n" "Last-Translator: Serhii Golovko \n" "Language-Team: Ukranian \n" @@ -13,592 +13,565 @@ msgstr "" "X-Launchpad-Export-Date: 2016-12-13 11:48+0000\n" "X-Generator: Poedit 2.2.1\n" -#: src/Gtk/MainWindow.vala:494 -msgid "About" -msgstr "Про программу" - -#: src/Console/AppConsole.vala:113 -msgid "Admin access is required for running this application." -msgstr "Для запуску програми потрібно мати права адміністратора." - -#: src/Utility/AppLock.vala:51 -msgid "Another instance of this application is running" -msgstr "Запущено інший екземпляр програми" +#: src/Common/LinuxKernel.vala:92 +msgid "Distribution" +msgstr "Дистрибутив" #: src/Common/LinuxKernel.vala:106 msgid "Architecture" msgstr "Системна архитектура" -#: src/Utility/Gtk/AboutWindow.vala:338 -#, c-format -msgid "Artists" -msgstr "Художники" +#: src/Common/LinuxKernel.vala:257 +msgid "Index is stale" +msgstr "Відомості застаріли" -#: src/Console/AppConsole.vala:99 -msgid "Assume Yes for all prompts (non-interactive mode)" -msgstr "Припустимо, так для всіх підказок (неінтерактивний режим)" +#: src/Common/LinuxKernel.vala:260 +msgid "Index is fresh" +msgstr "Відомості актуальні" -#: src/Utility/Gtk/AboutWindow.vala:314 +#: src/Common/LinuxKernel.vala:365 +msgid "Fetching index..." +msgstr "Отримання індекса ..." + +#: src/Common/LinuxKernel.vala:408 +msgid "Fetching index from kernel.ubuntu.com..." +msgstr "Отримання відомостей з kernel.ubuntu.com..." + +#: src/Common/LinuxKernel.vala:727 +msgid "Could not find running kernel in list!" +msgstr "Не вдалося знайти запущене ядро ​​у списку!" + +#: src/Common/LinuxKernel.vala:733 +msgid "Could not find any kernels to remove" +msgstr "Не вдалося знайти жодне ядро ​​для видалення" + +#: src/Common/LinuxKernel.vala:742 +msgid "The following kernels will be removed:" +msgstr "Наступні ядра будуть видалені:" + +#: src/Common/LinuxKernel.vala:749 +msgid "Continue ?" +msgstr "Продовжувати ?" + +#: src/Common/LinuxKernel.vala:777 src/Console/AppConsole.vala:359 +msgid "Latest update" +msgstr "Останнє оновлення" + +#: src/Common/LinuxKernel.vala:788 src/Console/AppConsole.vala:366 +msgid "Latest point update" +msgstr "Остання точка оновлення" + +#: src/Common/LinuxKernel.vala:796 src/Console/AppConsole.vala:371 +#: src/Console/AppConsole.vala:429 src/Gtk/MainWindow.vala:804 +msgid "No updates found" +msgstr "Оновлень не знайдено" + +#: src/Common/LinuxKernel.vala:806 #, c-format -msgid "Authors" -msgstr "Автори" +msgid "Install Linux v%s ? (y/n): " +msgstr "Встановити Linux v% s? (так/ні): " + +#: src/Common/LinuxKernel.vala:1072 +msgid "Packages Available" +msgstr "Доступні пакети" + +#: src/Common/LinuxKernel.vala:1080 +msgid "Packages Installed" +msgstr "Встановлені пакети" #: src/Common/LinuxKernel.vala:1164 msgid "Available Kernels" msgstr "Доступні ядра" -#: src/Utility/Gtk/AboutWindow.vala:285 -msgid "Back" -msgstr "Назад" +#: src/Common/LinuxKernel.vala:1181 src/Gtk/MainWindow.vala:208 +msgid "Installed" +msgstr "Встановлено" -#: src/Console/AppConsole.vala:203 src/Gtk/AppGtk.vala:110 -msgid "Cache" -msgstr "Кеш" +#: src/Common/LinuxKernel.vala:1181 src/Gtk/MainWindow.vala:208 +msgid "Running" +msgstr "Використовується" -#: src/Gtk/ProgressWindow.vala:145 src/Gtk/TerminalWindow.vala:148 -#: src/Gtk/UpdateNotificationWindow.vala:167 -#: src/Utility/Gtk/CustomMessageDialog.vala:155 -msgid "Cancel" -msgstr "Відміна" +#: src/Common/LinuxKernel.vala:1210 +msgid "Downloading" +msgstr "Завантаження" -#: src/Gtk/MainWindow.vala:462 -msgid "Changes" -msgstr "Зміни" +#: src/Common/LinuxKernel.vala:1229 +#: src/Utility/Gtk/CustomMessageDialog.vala:150 +#: src/Utility/Gtk/CustomMessageDialog.vala:154 +msgid "OK" +msgstr "OK" -#: src/Gtk/SettingsDialog.vala:120 -msgid "Check every" -msgstr "Перевіряти кожні" +#: src/Common/LinuxKernel.vala:1238 +msgid "ERROR" +msgstr "ПОМИЛКА" -#: src/Console/AppConsole.vala:82 -msgid "Check for kernel updates" -msgstr "Перевірити оновлення ядра" +#: src/Common/LinuxKernel.vala:1252 src/Gtk/MainWindow.vala:689 +msgid "This kernel is already installed." +msgstr "Это ядро уже установлено." -#: src/Console/AppConsole.vala:83 -msgid "Check for kernel updates and notify current user" -msgstr "Перевірте наявність оновлень ядра та повідомте поточного користувача" +#: src/Common/LinuxKernel.vala:1281 +msgid "Installation completed. A reboot is required to use the new kernel." +msgstr "" +"Установка завершена. Обов'язково виконайте перезавантаження, щоб " +"використовувати нове ядро." -#: src/Gtk/TerminalWindow.vala:158 src/Utility/Gtk/AboutWindow.vala:295 -msgid "Close" -msgstr "Закрити" +#: src/Common/LinuxKernel.vala:1284 +msgid "Installation completed with errors" +msgstr "Установка завершена з помилками" -#: src/Console/AppConsole.vala:340 -msgid "Command not specified" -msgstr "Команда не вказана" +#: src/Common/LinuxKernel.vala:1300 +msgid "" +"Selected kernel is currently running and cannot be removed.\n" +" Install another kernel before removing this one." +msgstr "" +"Це ядро ​​зараз працює і не може бути видалено. \n" +"Встановіть інше ядро, перш ніж видаляти його." -#: src/Console/AppConsole.vala:80 -msgid "Commands" -msgstr "Команди" +#: src/Common/LinuxKernel.vala:1305 +msgid "Preparing to remove selected kernels" +msgstr "Підготовка до видалення вибраних ядер" + +#: src/Common/LinuxKernel.vala:1337 src/Common/LinuxKernel.vala:1390 +msgid "Un-install completed" +msgstr "Удаление завершено" + +#: src/Common/LinuxKernel.vala:1340 src/Common/LinuxKernel.vala:1393 +msgid "Un-install completed with errors" +msgstr "Удаление завершено с ошибками" + +#: src/Common/LinuxKernel.vala:1353 +msgid "" +"This kernel is currently running and cannot be removed.\n" +" Install another kernel before removing this one." +msgstr "" +"Это ядро в настоящий момент работает и не может быть удалено.\n" +" Установите другое ядро, прежде чем удалять его." #: src/Common/Main.vala:107 msgid "Commands listed below are not available on this system" msgstr "Команди перераховані нижче недоступні на цій системі" -#: src/Common/LinuxKernel.vala:749 -#, c-format -msgid "Continue ?" -msgstr "Продовжувати ?" +#: src/Common/Main.vala:108 +msgid "Please install required packages and try again" +msgstr "Встановити необхідні пакети і спробуйте знову" -#: src/Utility/Gtk/AboutWindow.vala:322 +#: src/Common/Package.vala:126 src/Common/Package.vala:188 #, c-format -msgid "Contributions" -msgstr "Внески" +msgid "File not found: %s" +msgstr "Файл не знайдено: %s" -#: src/Common/LinuxKernel.vala:733 -msgid "Could not find any kernels to remove" -msgstr "Не вдалося знайти жодне ядро ​​для видалення" +#: src/Console/AppConsole.vala:78 src/Gtk/AppGtk.vala:179 +msgid "Syntax" +msgstr "Синтаксис" -#: src/Console/AppConsole.vala:308 src/Gtk/MainWindow.vala:100 -msgid "Could not find requested version" -msgstr "Не вдалося знайти запитувану версію" +#: src/Console/AppConsole.vala:80 +msgid "Commands" +msgstr "Команди" -#: src/Common/LinuxKernel.vala:727 -msgid "Could not find running kernel in list!" -msgstr "Не вдалося знайти запущене ядро ​​у списку!" +#: src/Console/AppConsole.vala:82 +msgid "Check for kernel updates" +msgstr "Перевірити оновлення ядра" -#: src/Utility/TeeJee.FileSystem.vala:349 -#: src/Utility/TeeJee.FileSystem.vala:352 -#: src/Utility/TeeJee.FileSystem.vala:378 -msgid "Created directory" -msgstr "Використовувана кеш-папка" +#: src/Console/AppConsole.vala:83 +msgid "Check for kernel updates and notify current user" +msgstr "Перевірте наявність оновлень ядра та повідомте поточного користувача" -#: src/Utility/Gtk/AboutWindow.vala:272 src/Utility/Gtk/AboutWindow.vala:289 -msgid "Credits" -msgstr "Творці" +#: src/Console/AppConsole.vala:84 +msgid "List all available mainline kernels" +msgstr "Список всіх доступних основних ядер" -#: src/Gtk/SettingsDialog.vala:153 -msgid "Day(s)" -msgstr "День(днів)" +#: src/Console/AppConsole.vala:85 +msgid "List installed kernels" +msgstr "Список всіх доступних основних ядер" -#: src/Utility/TeeJee.FileSystem.vala:375 -msgid "Deleted directory" -msgstr "Видалений каталог" +#: src/Console/AppConsole.vala:86 +msgid "Install latest mainline kernel" +msgstr "Встановити зазначену гілку ядра" -#: src/Utility/TeeJee.FileSystem.vala:509 -msgid "Dir not found" -msgstr "Тека не знайдена" +#: src/Console/AppConsole.vala:87 +msgid "Install latest point update for current series" +msgstr "Встановіть останню точку оновлення для поточної серії" -#: src/Gtk/SettingsDialog.vala:160 -msgid "Display" -msgstr "Вид" +#: src/Console/AppConsole.vala:88 +msgid "Install specified mainline kernel" +msgstr "Встановити зазначену гілку ядра" -#: src/Common/LinuxKernel.vala:92 -msgid "Distribution" -msgstr "Дистрибутив" +#: src/Console/AppConsole.vala:89 +msgid "Remove specified kernel" +msgstr "Видаліть вказане ядро" -#: src/Utility/Gtk/AboutWindow.vala:354 -#, c-format -msgid "Documenters" -msgstr "Укладачі документації" +#: src/Console/AppConsole.vala:90 src/Gtk/MainWindow.vala:424 +msgid "Remove installed kernels older than running kernel" +msgstr "Видаліть встановлені ядра, старші за запущене" #: src/Console/AppConsole.vala:91 msgid "Download packages for specified kernel" msgstr "Завантажити пакети для зазначеного ядра" -#: src/Common/LinuxKernel.vala:1210 -#, c-format -msgid "Downloading" -msgstr "Завантаження" +#: src/Console/AppConsole.vala:92 src/Console/AppConsole.vala:97 +msgid "Remove files from application cache" +msgstr "Видалити файли з кешу програми" -#: src/Utility/TeeJee.Logging.vala:89 -msgid "E" -msgstr "E" +#: src/Console/AppConsole.vala:93 +msgid "Show unstable and RC releases" +msgstr "Приховати нестабільні і реліз-кандидат версії" -#: src/Common/LinuxKernel.vala:1238 -#, c-format -msgid "ERROR" -msgstr "ПОМИЛКА" +#: src/Console/AppConsole.vala:95 src/Gtk/AppGtk.vala:181 +msgid "Options" +msgstr "Параметри" #: src/Console/AppConsole.vala:98 msgid "Enable verbose debugging output" msgstr "" -#: src/Utility/Gtk/GtkHelper.vala:17 -msgid "Error" -msgstr "Помилка" - -#: src/Utility/TeeJee.FileSystem.vala:221 -msgid "Failed to copy file" -msgstr "Не вдалося скопіювати файл" +#: src/Console/AppConsole.vala:99 +msgid "Assume Yes for all prompts (non-interactive mode)" +msgstr "Припустимо, так для всіх підказок (неінтерактивний режим)" -#: src/Utility/TeeJee.FileSystem.vala:359 -msgid "Failed to create dir" -msgstr "Не вдалося створити теку" +#: src/Console/AppConsole.vala:100 +msgid "Override user" +msgstr "" -#: src/Utility/TeeJee.FileSystem.vala:106 -msgid "Failed to delete file" -msgstr "Не вдалося видалити файл" +#: src/Console/AppConsole.vala:113 +msgid "Admin access is required for running this application." +msgstr "Для запуску програми потрібно мати права адміністратора." -#: src/Utility/TeeJee.FileSystem.vala:253 -msgid "Failed to move file" -msgstr "Не вдалося перемістити файл" +#: src/Console/AppConsole.vala:116 +msgid "Run the application as admin with pkexec or sudo." +msgstr "Запустіть додаток як адміністратор за допомогою pkexec або sudo." -#: src/Utility/TeeJee.FileSystem.vala:162 -msgid "Failed to read file" -msgstr "Не вдалося прочитати файл" +#: src/Console/AppConsole.vala:196 src/Gtk/AppGtk.vala:166 +msgid "Unknown option" +msgstr "Невідомий параметр" -#: src/Utility/TeeJee.FileSystem.vala:197 -msgid "Failed to write file" -msgstr "Не вдалося записати файл" +#: src/Console/AppConsole.vala:198 src/Console/AppConsole.vala:312 +#: src/Console/AppConsole.vala:341 +msgid "Run '" +msgstr "Запуск" -#: src/Common/LinuxKernel.vala:408 -msgid "Fetching index from kernel.ubuntu.com..." -msgstr "Отримання відомостей з kernel.ubuntu.com..." +#: src/Console/AppConsole.vala:203 src/Gtk/AppGtk.vala:110 +msgid "Cache" +msgstr "Кеш" -#: src/Common/LinuxKernel.vala:365 -msgid "Fetching index..." -msgstr "Отримання індекса ..." +#: src/Console/AppConsole.vala:204 src/Gtk/AppGtk.vala:111 +msgid "Temp" +msgstr "Темп" -#: src/Utility/TeeJee.FileSystem.vala:210 -#: src/Utility/TeeJee.FileSystem.vala:213 -msgid "File copied" -msgstr "Не вдалося скопіювати файл" +#: src/Console/AppConsole.vala:284 src/Console/AppConsole.vala:321 +msgid "No kernels specified" +msgstr "Ядра не вказані" -#: src/Utility/TeeJee.FileSystem.vala:97 src/Utility/TeeJee.FileSystem.vala:100 -msgid "File deleted" -msgstr "Не вдалося видалити файл" +#: src/Console/AppConsole.vala:290 +msgid "Multiple kernels selected for installation. Select only one." +msgstr "Для встановлення вибрано кілька ядер. Виберіть лише одну." -#: src/Utility/TeeJee.FileSystem.vala:662 -#: src/Utility/TeeJee.FileSystem.vala:711 -msgid "File is missing" -msgstr "Файл відсутній" +#: src/Console/AppConsole.vala:308 src/Gtk/MainWindow.vala:100 +msgid "Could not find requested version" +msgstr "Не вдалося знайти запитувану версію" -#: src/Utility/TeeJee.FileSystem.vala:245 -#: src/Utility/TeeJee.FileSystem.vala:248 -msgid "File moved" -msgstr "Видалити" +#: src/Console/AppConsole.vala:340 +msgid "Command not specified" +msgstr "Команда не вказана" -#: src/Utility/TeeJee.FileSystem.vala:231 -#: src/Utility/TeeJee.FileSystem.vala:538 -msgid "File not found" -msgstr "Файл не знайдено" +#: src/Gtk/AppGtk.vala:183 +msgid "Print debug information" +msgstr "Роздрукувати зневадження" -#: src/Common/Package.vala:126 src/Common/Package.vala:188 -#, c-format -msgid "File not found: %s" -msgstr "Файл не знайдено: %s" +#: src/Gtk/AppGtk.vala:184 +msgid "Show all options" +msgstr "Показати усі параметри" -#: src/Utility/TeeJee.FileSystem.vala:187 -#: src/Utility/TeeJee.FileSystem.vala:190 -msgid "File saved" -msgstr "Файл збережено" +#: src/Gtk/MainWindow.vala:150 +msgid "Kernel" +msgstr "Ядро" -#: src/Gtk/SettingsDialog.vala:168 -msgid "Hide unstable and RC releases" -msgstr "Приховати нестабільні і реліз-кандидат версії" +#: src/Gtk/MainWindow.vala:179 +msgid "Version" +msgstr "Версія" -#: src/Gtk/SettingsDialog.vala:151 -msgid "Hour(s)" -msgstr "Година(дин)" +#: src/Gtk/MainWindow.vala:196 +msgid "Status" +msgstr "Стан" -#: src/Gtk/UpdateNotificationWindow.vala:168 -msgid "Ignore this update" -msgstr "Ігнорувати це оновлення" +#: src/Gtk/MainWindow.vala:341 +msgid "Refresh" +msgstr "Оновити" -#: src/Common/LinuxKernel.vala:260 -msgid "Index is fresh" -msgstr "Відомості актуальні" +#: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:558 +#: src/Gtk/MainWindow.vala:694 src/Utility/TeeJee.System.vala:281 +msgid "Internet connection is not active" +msgstr "Інтернет з'єднання не активно" -#: src/Common/LinuxKernel.vala:257 -msgid "Index is stale" -msgstr "Відомості застаріли" +#: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:558 +#: src/Gtk/MainWindow.vala:694 +msgid "No Internet" +msgstr "Інтернету немає" -#: src/Gtk/UpdateNotificationWindow.vala:147 src/Gtk/MainWindow.vala:357 +#: src/Gtk/MainWindow.vala:357 src/Gtk/UpdateNotificationWindow.vala:147 msgid "Install" msgstr "Встановити" -#: src/Common/LinuxKernel.vala:806 -#, c-format -msgid "Install Linux v%s ? (y/n): " -msgstr "Встановити Linux v% s? (так/ні): " - -#: src/Console/AppConsole.vala:86 -msgid "Install latest mainline kernel" -msgstr "Встановити зазначену гілку ядра" +#: src/Gtk/MainWindow.vala:366 +msgid "Multiple Kernels Selected" +msgstr "Вибрано кілька ядер" -#: src/Console/AppConsole.vala:87 -msgid "Install latest point update for current series" -msgstr "Встановіть останню точку оновлення для поточної серії" +#: src/Gtk/MainWindow.vala:366 +msgid "Select a single kernel to install" +msgstr "Виберіть одне ядро ​​для встановлення" -#: src/Console/AppConsole.vala:88 -msgid "Install specified mainline kernel" -msgstr "Встановити зазначену гілку ядра" +#: src/Gtk/MainWindow.vala:369 src/Gtk/MainWindow.vala:380 +msgid "Not Selected" +msgstr "Не вибрано" -#: src/Gtk/UpdateNotificationWindow.vala:148 -msgid "Install this kernel" -msgstr "Встановити це ядро" +#: src/Gtk/MainWindow.vala:369 +msgid "Select the kernel to install" +msgstr "Виберіть ядро ​​для встановлення" -#: src/Common/LinuxKernel.vala:1284 -msgid "Installation completed with errors" -msgstr "Установка завершена з помилками" +#: src/Gtk/MainWindow.vala:374 +msgid "Remove" +msgstr "Видалити" -#: src/Common/LinuxKernel.vala:1281 -msgid "Installation completed. A reboot is required to use the new kernel." -msgstr "" -"Установка завершена. Обов'язково виконайте перезавантаження, щоб " -"використовувати нове ядро." +#: src/Gtk/MainWindow.vala:380 +msgid "Select the kernels to remove" +msgstr "Виберіть ядра для видалення" -#: src/Common/LinuxKernel.vala:1181 src/Gtk/MainWindow.vala:208 -msgid "Installed" -msgstr "Встановлено" +#: src/Gtk/MainWindow.vala:423 +msgid "Purge" +msgstr "Чистити" -#: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:558 -#: src/Gtk/MainWindow.vala:694 src/Utility/TeeJee.System.vala:281 -msgid "Internet connection is not active" -msgstr "Інтернет з'єднання не активно" +#: src/Gtk/MainWindow.vala:462 +msgid "Changes" +msgstr "Зміни" -#: src/Gtk/SettingsDialog.vala:218 -msgid "Internet connection timeout in " -msgstr "Час очікування підключення до Інтернету в " +#: src/Gtk/MainWindow.vala:473 src/Gtk/SettingsDialog.vala:55 +msgid "Settings" +msgstr "Налаштування" -#: src/Gtk/MainWindow.vala:150 -msgid "Kernel" -msgstr "Ядро" +#: src/Gtk/MainWindow.vala:494 +msgid "About" +msgstr "Про программу" #: src/Gtk/MainWindow.vala:542 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Програма оновлення ядра для дистрибутивів на базі Ubuntu" -#: src/Common/LinuxKernel.vala:788 src/Console/AppConsole.vala:366 -#, c-format -msgid "Latest point update" -msgstr "Остання точка оновлення" +#: src/Gtk/MainWindow.vala:577 +msgid "Refreshing..." +msgstr "Оновлення..." -#: src/Common/LinuxKernel.vala:777 src/Console/AppConsole.vala:359 -#, c-format -msgid "Latest update" -msgstr "Останнє оновлення" +#: src/Gtk/ProgressWindow.vala:145 src/Gtk/TerminalWindow.vala:148 +#: src/Gtk/UpdateNotificationWindow.vala:167 +#: src/Utility/Gtk/CustomMessageDialog.vala:155 +msgid "Cancel" +msgstr "Відміна" -#: src/Console/AppConsole.vala:84 -msgid "List all available mainline kernels" -msgstr "Список всіх доступних основних ядер" +#: src/Gtk/SettingsDialog.vala:65 +msgid "Notification" +msgstr "Повідомлення" -#: src/Gtk/UpdateNotificationWindow.vala:158 -msgid "List available kernels" -msgstr "Список всіх доступних основних ядер" +#: src/Gtk/SettingsDialog.vala:72 +msgid "Notify if a major release is available" +msgstr "Повідомити, чи доступний великий випуск" -#: src/Console/AppConsole.vala:85 -msgid "List installed kernels" -msgstr "Список всіх доступних основних ядер" +#: src/Gtk/SettingsDialog.vala:83 +msgid "Notify if a point release is available" +msgstr "Повідомити, чи доступний невеликий випуск" -#: src/Utility/Gtk/GtkHelper.vala:93 -msgid "Missing Icon" -msgstr "Нема значка" +#: src/Gtk/SettingsDialog.vala:94 +msgid "Show notification bubble on desktop" +msgstr "Показувати вікно сповіщень на робочому столі" -#: src/Gtk/MainWindow.vala:366 -msgid "Multiple Kernels Selected" -msgstr "Вибрано кілька ядер" +#: src/Gtk/SettingsDialog.vala:105 +msgid "Show notification dialog" +msgstr "Показувати вікно сповіщень" -#: src/Console/AppConsole.vala:290 -msgid "Multiple kernels selected for installation. Select only one." -msgstr "Для встановлення вибрано кілька ядер. Виберіть лише одну." - -#: src/Utility/Gtk/CustomMessageDialog.vala:160 -msgid "No" -msgstr "Ні" - -#: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:558 -#: src/Gtk/MainWindow.vala:694 -msgid "No Internet" -msgstr "Інтернету немає" - -#: src/Console/AppConsole.vala:284 src/Console/AppConsole.vala:321 -msgid "No kernels specified" -msgstr "Ядра не вказані" - -#: src/Common/LinuxKernel.vala:796 src/Console/AppConsole.vala:371 -#: src/Console/AppConsole.vala:429 src/Gtk/MainWindow.vala:804 -msgid "No updates found" -msgstr "Оновлень не знайдено" +#: src/Gtk/SettingsDialog.vala:120 +msgid "Check every" +msgstr "Перевіряти кожні" -#: src/Gtk/MainWindow.vala:369 src/Gtk/MainWindow.vala:380 -msgid "Not Selected" -msgstr "Не вибрано" +#: src/Gtk/SettingsDialog.vala:151 +msgid "Hour(s)" +msgstr "Година(дин)" -#: src/Gtk/SettingsDialog.vala:65 -msgid "Notification" -msgstr "Повідомлення" +#: src/Gtk/SettingsDialog.vala:153 +msgid "Day(s)" +msgstr "День(днів)" -#: src/Gtk/SettingsDialog.vala:72 -msgid "Notify if a major release is available" -msgstr "Повідомити, чи доступний великий випуск" +#: src/Gtk/SettingsDialog.vala:155 +msgid "Week(s)" +msgstr "Тиждень (ні)" -#: src/Gtk/SettingsDialog.vala:83 -msgid "Notify if a point release is available" -msgstr "Повідомити, чи доступний невеликий випуск" +#: src/Gtk/SettingsDialog.vala:160 +msgid "Display" +msgstr "Вид" -#: src/Common/LinuxKernel.vala:1229 -#: src/Utility/Gtk/CustomMessageDialog.vala:150 -#: src/Utility/Gtk/CustomMessageDialog.vala:154 -#, c-format -msgid "OK" -msgstr "OK" +#: src/Gtk/SettingsDialog.vala:168 +msgid "Hide unstable and RC releases" +msgstr "Приховати нестабільні і реліз-кандидат версії" -#: src/Console/AppConsole.vala:95 src/Gtk/AppGtk.vala:181 -msgid "Options" -msgstr "Параметри" +#: src/Gtk/SettingsDialog.vala:182 +msgid "Show N previous major versions " +msgstr "" #: src/Gtk/SettingsDialog.vala:197 msgid "Other" msgstr "Інший" -#: src/Console/AppConsole.vala:100 -msgid "Override user" -msgstr "" - -#: src/Common/LinuxKernel.vala:1072 -#, c-format -msgid "Packages Available" -msgstr "Доступні пакети" - -#: src/Common/LinuxKernel.vala:1080 -#, c-format -msgid "Packages Installed" -msgstr "Встановлені пакети" - -#: src/Common/Main.vala:108 -msgid "Please install required packages and try again" -msgstr "Встановити необхідні пакети і спробуйте знову" - -#: src/Common/LinuxKernel.vala:1305 -msgid "Preparing to remove selected kernels" -msgstr "Підготовка до видалення вибраних ядер" - -#: src/Gtk/AppGtk.vala:183 -msgid "Print debug information" -msgstr "Роздрукувати зневадження" +#: src/Gtk/SettingsDialog.vala:205 +msgid "Skip internet connection check" +msgstr "Пропустити перевірку підключення до Інтернету" -#: src/Gtk/MainWindow.vala:423 -msgid "Purge" -msgstr "Чистити" +#: src/Gtk/SettingsDialog.vala:218 +msgid "Internet connection timeout in " +msgstr "Час очікування підключення до Інтернету в " -#: src/Gtk/MainWindow.vala:341 -msgid "Refresh" -msgstr "Оновити" +#: src/Gtk/SettingsDialog.vala:232 +msgid "seconds" +msgstr "секунди" -#: src/Gtk/MainWindow.vala:577 -msgid "Refreshing..." -msgstr "Оновлення..." +#: src/Gtk/TerminalWindow.vala:158 src/Utility/Gtk/AboutWindow.vala:295 +msgid "Close" +msgstr "Закрити" -#: src/Gtk/MainWindow.vala:374 -msgid "Remove" -msgstr "Видалити" +#: src/Gtk/UpdateNotificationWindow.vala:148 +msgid "Install this kernel" +msgstr "Встановити це ядро" -#: src/Console/AppConsole.vala:92 src/Console/AppConsole.vala:97 -msgid "Remove files from application cache" -msgstr "Видалити файли з кешу програми" +#: src/Gtk/UpdateNotificationWindow.vala:157 +msgid "Show" +msgstr "Показати" -#: src/Console/AppConsole.vala:90 src/Gtk/MainWindow.vala:424 -msgid "Remove installed kernels older than running kernel" -msgstr "Видаліть встановлені ядра, старші за запущене" +#: src/Gtk/UpdateNotificationWindow.vala:158 +msgid "List available kernels" +msgstr "Список всіх доступних основних ядер" -#: src/Console/AppConsole.vala:89 -msgid "Remove specified kernel" -msgstr "Видаліть вказане ядро" +#: src/Gtk/UpdateNotificationWindow.vala:168 +msgid "Ignore this update" +msgstr "Ігнорувати це оновлення" -#: src/Console/AppConsole.vala:198 src/Console/AppConsole.vala:312 -#: src/Console/AppConsole.vala:341 -msgid "Run '" -msgstr "Запуск" +#: src/Utility/Gtk/AboutWindow.vala:272 src/Utility/Gtk/AboutWindow.vala:289 +msgid "Credits" +msgstr "Творці" -#: src/Console/AppConsole.vala:116 -msgid "Run the application as admin with pkexec or sudo." -msgstr "Запустіть додаток як адміністратор за допомогою pkexec або sudo." +#: src/Utility/Gtk/AboutWindow.vala:285 +msgid "Back" +msgstr "Назад" -#: src/Common/LinuxKernel.vala:1181 src/Gtk/MainWindow.vala:208 -msgid "Running" -msgstr "Використовується" +#: src/Utility/Gtk/AboutWindow.vala:314 +msgid "Authors" +msgstr "Автори" -#: src/Gtk/MainWindow.vala:366 -msgid "Select a single kernel to install" -msgstr "Виберіть одне ядро ​​для встановлення" +#: src/Utility/Gtk/AboutWindow.vala:322 +msgid "Contributions" +msgstr "Внески" -#: src/Gtk/MainWindow.vala:369 -msgid "Select the kernel to install" -msgstr "Виберіть ядро ​​для встановлення" +#: src/Utility/Gtk/AboutWindow.vala:330 +msgid "Third Party Tools" +msgstr "Сторонние инструменты" -#: src/Gtk/MainWindow.vala:380 -msgid "Select the kernels to remove" -msgstr "Виберіть ядра для видалення" +#: src/Utility/Gtk/AboutWindow.vala:338 +msgid "Artists" +msgstr "Художники" -#: src/Common/LinuxKernel.vala:1300 -msgid "" -"Selected kernel is currently running and cannot be removed.\n" -" Install another kernel before removing this one." -msgstr "" -"Це ядро ​​зараз працює і не може бути видалено. \n" -"Встановіть інше ядро, перш ніж видаляти його." +#: src/Utility/Gtk/AboutWindow.vala:346 +msgid "Translators" +msgstr "Перекладачи" -#: src/Gtk/MainWindow.vala:473 src/Gtk/SettingsDialog.vala:55 -msgid "Settings" -msgstr "Налаштування" +#: src/Utility/Gtk/AboutWindow.vala:354 +msgid "Documenters" +msgstr "Укладачі документації" -#: src/Gtk/UpdateNotificationWindow.vala:157 -msgid "Show" -msgstr "Показати" +#: src/Utility/Gtk/CustomMessageDialog.vala:159 +msgid "Yes" +msgstr "Так" -#: src/Gtk/SettingsDialog.vala:182 -msgid "Show N previous major versions " -msgstr "" +#: src/Utility/Gtk/CustomMessageDialog.vala:160 +msgid "No" +msgstr "Ні" -#: src/Gtk/AppGtk.vala:184 -msgid "Show all options" -msgstr "Показати усі параметри" +#: src/Utility/Gtk/GtkHelper.vala:17 +msgid "Error" +msgstr "Помилка" -#: src/Gtk/SettingsDialog.vala:94 -msgid "Show notification bubble on desktop" -msgstr "Показувати вікно сповіщень на робочому столі" +#: src/Utility/Gtk/GtkHelper.vala:93 +msgid "Missing Icon" +msgstr "Нема значка" -#: src/Gtk/SettingsDialog.vala:105 -msgid "Show notification dialog" -msgstr "Показувати вікно сповіщень" +#: src/Utility/TeeJee.FileSystem.vala:97 src/Utility/TeeJee.FileSystem.vala:100 +msgid "File deleted" +msgstr "Не вдалося видалити файл" -#: src/Console/AppConsole.vala:93 -msgid "Show unstable and RC releases" -msgstr "Приховати нестабільні і реліз-кандидат версії" +#: src/Utility/TeeJee.FileSystem.vala:106 +msgid "Failed to delete file" +msgstr "Не вдалося видалити файл" -#: src/Gtk/SettingsDialog.vala:205 -msgid "Skip internet connection check" -msgstr "Пропустити перевірку підключення до Інтернету" +#: src/Utility/TeeJee.FileSystem.vala:162 +msgid "Failed to read file" +msgstr "Не вдалося прочитати файл" -#: src/Gtk/MainWindow.vala:196 -msgid "Status" -msgstr "Стан" +#: src/Utility/TeeJee.FileSystem.vala:187 +#: src/Utility/TeeJee.FileSystem.vala:190 +msgid "File saved" +msgstr "Файл збережено" -#: src/Utility/TeeJee.Process.vala:513 -msgid "Stopped" -msgstr "Зупинено" +#: src/Utility/TeeJee.FileSystem.vala:197 +msgid "Failed to write file" +msgstr "Не вдалося записати файл" -#: src/Console/AppConsole.vala:78 src/Gtk/AppGtk.vala:179 -msgid "Syntax" -msgstr "Синтаксис" +#: src/Utility/TeeJee.FileSystem.vala:210 +#: src/Utility/TeeJee.FileSystem.vala:213 +msgid "File copied" +msgstr "Не вдалося скопіювати файл" -#: src/Console/AppConsole.vala:204 src/Gtk/AppGtk.vala:111 -msgid "Temp" -msgstr "Темп" +#: src/Utility/TeeJee.FileSystem.vala:221 +msgid "Failed to copy file" +msgstr "Не вдалося скопіювати файл" -#: src/Common/LinuxKernel.vala:742 -#, c-format -msgid "The following kernels will be removed:" -msgstr "Наступні ядра будуть видалені:" +#: src/Utility/TeeJee.FileSystem.vala:231 +#: src/Utility/TeeJee.FileSystem.vala:538 +msgid "File not found" +msgstr "Файл не знайдено" -#: src/Utility/Gtk/AboutWindow.vala:330 -#, c-format -msgid "Third Party Tools" -msgstr "Сторонние инструменты" +#: src/Utility/TeeJee.FileSystem.vala:245 +#: src/Utility/TeeJee.FileSystem.vala:248 +msgid "File moved" +msgstr "Видалити" -#: src/Common/LinuxKernel.vala:1252 src/Gtk/MainWindow.vala:689 -msgid "This kernel is already installed." -msgstr "Это ядро уже установлено." +#: src/Utility/TeeJee.FileSystem.vala:253 +msgid "Failed to move file" +msgstr "Не вдалося перемістити файл" -#: src/Common/LinuxKernel.vala:1353 -msgid "" -"This kernel is currently running and cannot be removed.\n" -" Install another kernel before removing this one." -msgstr "" -"Это ядро в настоящий момент работает и не может быть удалено.\n" -" Установите другое ядро, прежде чем удалять его." +#: src/Utility/TeeJee.FileSystem.vala:349 +#: src/Utility/TeeJee.FileSystem.vala:352 +#: src/Utility/TeeJee.FileSystem.vala:378 +msgid "Created directory" +msgstr "Використовувана кеш-папка" -#: src/Utility/Gtk/AboutWindow.vala:346 -#, c-format -msgid "Translators" -msgstr "Перекладачи" +#: src/Utility/TeeJee.FileSystem.vala:359 +msgid "Failed to create dir" +msgstr "Не вдалося створити теку" -#: src/Common/LinuxKernel.vala:1337 src/Common/LinuxKernel.vala:1390 -msgid "Un-install completed" -msgstr "Удаление завершено" +#: src/Utility/TeeJee.FileSystem.vala:375 +msgid "Deleted directory" +msgstr "Видалений каталог" -#: src/Common/LinuxKernel.vala:1340 src/Common/LinuxKernel.vala:1393 -msgid "Un-install completed with errors" -msgstr "Удаление завершено с ошибками" +#: src/Utility/TeeJee.FileSystem.vala:509 +msgid "Dir not found" +msgstr "Тека не знайдена" -#: src/Console/AppConsole.vala:196 src/Gtk/AppGtk.vala:166 -msgid "Unknown option" -msgstr "Невідомий параметр" +#: src/Utility/TeeJee.FileSystem.vala:662 +#: src/Utility/TeeJee.FileSystem.vala:711 +msgid "File is missing" +msgstr "Файл відсутній" -#: src/Gtk/MainWindow.vala:179 -msgid "Version" -msgstr "Версія" +#: src/Utility/TeeJee.Logging.vala:89 +msgid "E" +msgstr "E" #: src/Utility/TeeJee.Logging.vala:89 msgid "W" msgstr "W" -#: src/Gtk/SettingsDialog.vala:155 -msgid "Week(s)" -msgstr "Тиждень (ні)" - -#: src/Utility/Gtk/CustomMessageDialog.vala:159 -msgid "Yes" -msgstr "Так" - -#: src/Utility/AppLock.vala:56 -msgid "[Warning] Deleted invalid lock" -msgstr "[Увага] Вилучено неправильне блокування" - -#: src/Gtk/SettingsDialog.vala:232 -msgid "seconds" -msgstr "секунди" - -#, fuzzy -#~ msgid "Hide kernels older than " -#~ msgstr "Приховати ядра старіши версії 4.0" +#: src/Utility/TeeJee.Process.vala:513 +msgid "Stopped" +msgstr "Зупинено" From 914b8d3b1692db29e2458ff4dab68583362ef574 Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Sat, 2 May 2020 17:09:51 -0400 Subject: [PATCH 071/567] explain .deb_build_number.mak better --- .deb_build_number.mak | 4 ++-- Makefile | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.deb_build_number.mak b/.deb_build_number.mak index 0d913823..06dce58c 100644 --- a/.deb_build_number.mak +++ b/.deb_build_number.mak @@ -1,3 +1,3 @@ -# This file is generated by Makefile +# This file is generated by Makefile "make deb_build_number" DEB_PKG_VERSION := 1.0.6 -DEB_BUILD_NUMBER := 0003 +DEB_BUILD_NUMBER := 0004 diff --git a/Makefile b/Makefile index 505450e8..b27a5865 100644 --- a/Makefile +++ b/Makefile @@ -182,7 +182,7 @@ debian/changelog: $(misc_files) deb_build_number: debian/changelog { printf -v n "%04u" $$((10#$(DEB_BUILD_NUMBER)+1)) ; \ [[ "_$(DEB_PKG_VERSION)" == "_$(pkg_version)" ]] || n="0000" ; \ - echo -e "# This file is generated by Makefile\nDEB_PKG_VERSION := $(pkg_version)\nDEB_BUILD_NUMBER := $${n}" > .$(@).mak ; } + echo -e "# This file is generated by Makefile \"make $(@)\"\nDEB_PKG_VERSION := $(pkg_version)\nDEB_BUILD_NUMBER := $${n}" > .$(@).mak ; } # child process to re-load .deb_build_number.mak after updating it .PHONY: release_deb From 9ed9434fd5638da7eb1d8fe3b1f9bfe6f1c1c477 Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Sat, 2 May 2020 23:15:04 -0400 Subject: [PATCH 072/567] remove pointless self-copyright --- Makefile | 1 - po/messages.pot | 4 ++-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index b27a5865..6adfd90a 100644 --- a/Makefile +++ b/Makefile @@ -83,7 +83,6 @@ $(misc_files): %: %.src BRANDING.mak $(pot_file): $(common_vala_files) $(tui_vala_files) $(gui_vala_files) xgettext \ --sort-by-file \ - --copyright-holder="$(BRANDING_AUTHORNAME) ($(BRANDING_AUTHOREMAIL))" \ --package-name="$(BRANDING_SHORTNAME)" \ --package-version="$(BRANDING_VERSION)" \ --language=Vala \ diff --git a/po/messages.pot b/po/messages.pot index bbd29ebe..4cd1733f 100644 --- a/po/messages.pot +++ b/po/messages.pot @@ -1,5 +1,5 @@ # SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR Brian K. White (b.kenyon.w@gmail.com) +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the mainline package. # FIRST AUTHOR , YEAR. # @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline 1.0.6\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-02 16:41-0400\n" +"POT-Creation-Date: 2020-05-02 22:49-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" From a89399a9f82bff2dc3a89a6558fd2007df63a662 Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Sat, 2 May 2020 23:53:15 -0400 Subject: [PATCH 073/567] delete .deb files after successful install --- po/es.po | 16 ++++++++-------- po/fr.po | 16 ++++++++-------- po/hr.po | 16 ++++++++-------- po/messages.pot | 16 ++++++++-------- po/nl.po | 16 ++++++++-------- po/pl.po | 16 ++++++++-------- po/ru.po | 16 ++++++++-------- po/sv.po | 16 ++++++++-------- po/tr.po | 16 ++++++++-------- po/uk.po | 16 ++++++++-------- src/Common/LinuxKernel.vala | 10 ++++++---- 11 files changed, 86 insertions(+), 84 deletions(-) diff --git a/po/es.po b/po/es.po index 3afd8305..09bc770c 100644 --- a/po/es.po +++ b/po/es.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-02 16:29-0400\n" +"POT-Creation-Date: 2020-05-02 23:39-0400\n" "PO-Revision-Date: 2018-01-03 02:03-0600\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish\n" @@ -113,16 +113,16 @@ msgstr "ERROR" msgid "This kernel is already installed." msgstr "Este núcleo ya se instaló." -#: src/Common/LinuxKernel.vala:1281 +#: src/Common/LinuxKernel.vala:1283 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "Instalación finalizada. Se necesita reiniciar para utilizar el núcleo nuevo." -#: src/Common/LinuxKernel.vala:1284 +#: src/Common/LinuxKernel.vala:1286 msgid "Installation completed with errors" msgstr "Instalación finalizada con errores" -#: src/Common/LinuxKernel.vala:1300 +#: src/Common/LinuxKernel.vala:1302 msgid "" "Selected kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -130,19 +130,19 @@ msgstr "" "El núcleo seleccionado está en ejecución y no puede desinstalarse.\n" "Instale otro núcleo antes de desinstalar este." -#: src/Common/LinuxKernel.vala:1305 +#: src/Common/LinuxKernel.vala:1307 msgid "Preparing to remove selected kernels" msgstr "Preparándose para desinstalar los núcleos seleccionados" -#: src/Common/LinuxKernel.vala:1337 src/Common/LinuxKernel.vala:1390 +#: src/Common/LinuxKernel.vala:1339 src/Common/LinuxKernel.vala:1392 msgid "Un-install completed" msgstr "Desinstalación finalizada" -#: src/Common/LinuxKernel.vala:1340 src/Common/LinuxKernel.vala:1393 +#: src/Common/LinuxKernel.vala:1342 src/Common/LinuxKernel.vala:1395 msgid "Un-install completed with errors" msgstr "Desinstalación finalizada con errores" -#: src/Common/LinuxKernel.vala:1353 +#: src/Common/LinuxKernel.vala:1355 msgid "" "This kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." diff --git a/po/fr.po b/po/fr.po index d50622f0..a02d7e29 100644 --- a/po/fr.po +++ b/po/fr.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-02 16:29-0400\n" +"POT-Creation-Date: 2020-05-02 23:39-0400\n" "PO-Revision-Date: 2018-08-05 15:50+0200\n" "Last-Translator: Yolateng0 \n" "Language-Team: French\n" @@ -116,17 +116,17 @@ msgstr "ERREUR" msgid "This kernel is already installed." msgstr "Ce noyau est déjà installé." -#: src/Common/LinuxKernel.vala:1281 +#: src/Common/LinuxKernel.vala:1283 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "Installation complétée. Un redémarrage est nécessaire pour utiliser le " "nouveau noyau." -#: src/Common/LinuxKernel.vala:1284 +#: src/Common/LinuxKernel.vala:1286 msgid "Installation completed with errors" msgstr "Installation terminée avec des erreurs" -#: src/Common/LinuxKernel.vala:1300 +#: src/Common/LinuxKernel.vala:1302 msgid "" "Selected kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -134,19 +134,19 @@ msgstr "" "Ce noyau est en cours d'exécution et ne peut pas être supprimé.\n" " Installez un autre noyau avant de retirer celui-ci." -#: src/Common/LinuxKernel.vala:1305 +#: src/Common/LinuxKernel.vala:1307 msgid "Preparing to remove selected kernels" msgstr "Préparation à la suppression des noyaux sélectionnés" -#: src/Common/LinuxKernel.vala:1337 src/Common/LinuxKernel.vala:1390 +#: src/Common/LinuxKernel.vala:1339 src/Common/LinuxKernel.vala:1392 msgid "Un-install completed" msgstr "Désinstallation complète" -#: src/Common/LinuxKernel.vala:1340 src/Common/LinuxKernel.vala:1393 +#: src/Common/LinuxKernel.vala:1342 src/Common/LinuxKernel.vala:1395 msgid "Un-install completed with errors" msgstr "Désinstallation terminée avec des erreurs" -#: src/Common/LinuxKernel.vala:1353 +#: src/Common/LinuxKernel.vala:1355 msgid "" "This kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." diff --git a/po/hr.po b/po/hr.po index 840e6bfb..86bde2d5 100644 --- a/po/hr.po +++ b/po/hr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-02 16:29-0400\n" +"POT-Creation-Date: 2020-05-02 23:39-0400\n" "PO-Revision-Date: 2017-12-24 00:52+0100\n" "Last-Translator: gogo \n" "Language-Team: Croatian \n" @@ -117,17 +117,17 @@ msgstr "GREŠKA" msgid "This kernel is already installed." msgstr "Ovaj kernel je već instaliran." -#: src/Common/LinuxKernel.vala:1281 +#: src/Common/LinuxKernel.vala:1283 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "Instalacija je završena. Potrebno je ponovno pokretanje računala kako bi se " "koristio novi kernel." -#: src/Common/LinuxKernel.vala:1284 +#: src/Common/LinuxKernel.vala:1286 msgid "Installation completed with errors" msgstr "Instalacija je završena s greškama" -#: src/Common/LinuxKernel.vala:1300 +#: src/Common/LinuxKernel.vala:1302 msgid "" "Selected kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -135,19 +135,19 @@ msgstr "" "Odabrani kernel je trenutno pokernut i ne može se ukloniti.\n" " Instalirajte drugi kernel prije uklanjanja trenutnog kernela." -#: src/Common/LinuxKernel.vala:1305 +#: src/Common/LinuxKernel.vala:1307 msgid "Preparing to remove selected kernels" msgstr "Pripremanje uklanjanja odabranih kernela" -#: src/Common/LinuxKernel.vala:1337 src/Common/LinuxKernel.vala:1390 +#: src/Common/LinuxKernel.vala:1339 src/Common/LinuxKernel.vala:1392 msgid "Un-install completed" msgstr "Deinstalacija završena" -#: src/Common/LinuxKernel.vala:1340 src/Common/LinuxKernel.vala:1393 +#: src/Common/LinuxKernel.vala:1342 src/Common/LinuxKernel.vala:1395 msgid "Un-install completed with errors" msgstr "Deinstalacija završena s greškama" -#: src/Common/LinuxKernel.vala:1353 +#: src/Common/LinuxKernel.vala:1355 msgid "" "This kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." diff --git a/po/messages.pot b/po/messages.pot index 4cd1733f..4b304fae 100644 --- a/po/messages.pot +++ b/po/messages.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline 1.0.6\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-02 22:49-0400\n" +"POT-Creation-Date: 2020-05-02 23:40-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -113,33 +113,33 @@ msgstr "" msgid "This kernel is already installed." msgstr "" -#: src/Common/LinuxKernel.vala:1281 +#: src/Common/LinuxKernel.vala:1283 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" -#: src/Common/LinuxKernel.vala:1284 +#: src/Common/LinuxKernel.vala:1286 msgid "Installation completed with errors" msgstr "" -#: src/Common/LinuxKernel.vala:1300 +#: src/Common/LinuxKernel.vala:1302 msgid "" "Selected kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." msgstr "" -#: src/Common/LinuxKernel.vala:1305 +#: src/Common/LinuxKernel.vala:1307 msgid "Preparing to remove selected kernels" msgstr "" -#: src/Common/LinuxKernel.vala:1337 src/Common/LinuxKernel.vala:1390 +#: src/Common/LinuxKernel.vala:1339 src/Common/LinuxKernel.vala:1392 msgid "Un-install completed" msgstr "" -#: src/Common/LinuxKernel.vala:1340 src/Common/LinuxKernel.vala:1393 +#: src/Common/LinuxKernel.vala:1342 src/Common/LinuxKernel.vala:1395 msgid "Un-install completed with errors" msgstr "" -#: src/Common/LinuxKernel.vala:1353 +#: src/Common/LinuxKernel.vala:1355 msgid "" "This kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." diff --git a/po/nl.po b/po/nl.po index 6a9d47e2..deccdddf 100644 --- a/po/nl.po +++ b/po/nl.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu 2.2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-02 16:29-0400\n" +"POT-Creation-Date: 2020-05-02 23:39-0400\n" "PO-Revision-Date: 2017-04-30 11:50+0200\n" "Last-Translator: Heimen Stoffels \n" "Language-Team: \n" @@ -117,17 +117,17 @@ msgstr "FOUT" msgid "This kernel is already installed." msgstr "Deze kernel is al geïnstalleerd." -#: src/Common/LinuxKernel.vala:1281 +#: src/Common/LinuxKernel.vala:1283 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "De installatie is voltooid. Herstart de computer om de nieuwe kernel te " "gebruiken." -#: src/Common/LinuxKernel.vala:1284 +#: src/Common/LinuxKernel.vala:1286 msgid "Installation completed with errors" msgstr "De installatie is foutloos voltooid" -#: src/Common/LinuxKernel.vala:1300 +#: src/Common/LinuxKernel.vala:1302 msgid "" "Selected kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -136,19 +136,19 @@ msgstr "" "verwijderd.\n" " Installeer een andere kernel voordat u deze verwijdert." -#: src/Common/LinuxKernel.vala:1305 +#: src/Common/LinuxKernel.vala:1307 msgid "Preparing to remove selected kernels" msgstr "Bezig met voorbereiden van verwijderen van geselecteerde kernels" -#: src/Common/LinuxKernel.vala:1337 src/Common/LinuxKernel.vala:1390 +#: src/Common/LinuxKernel.vala:1339 src/Common/LinuxKernel.vala:1392 msgid "Un-install completed" msgstr "Deïnstalleren voltooid" -#: src/Common/LinuxKernel.vala:1340 src/Common/LinuxKernel.vala:1393 +#: src/Common/LinuxKernel.vala:1342 src/Common/LinuxKernel.vala:1395 msgid "Un-install completed with errors" msgstr "Deïnstalleren voltooid, maar met fouten" -#: src/Common/LinuxKernel.vala:1353 +#: src/Common/LinuxKernel.vala:1355 msgid "" "This kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." diff --git a/po/pl.po b/po/pl.po index 10f4f57e..f812d8c3 100644 --- a/po/pl.po +++ b/po/pl.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-02 16:29-0400\n" +"POT-Creation-Date: 2020-05-02 23:39-0400\n" "PO-Revision-Date: 2017-08-12 15:26+0200\n" "Last-Translator: Waldemar Konik \n" "Language-Team: Polish\n" @@ -115,17 +115,17 @@ msgstr "BŁĄD" msgid "This kernel is already installed." msgstr "To jądro jest już zainstalowane." -#: src/Common/LinuxKernel.vala:1281 +#: src/Common/LinuxKernel.vala:1283 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "Instalacja zakończona. Aby korzystać z nowego jądra, konieczne jest ponowne " "uruchomienie." -#: src/Common/LinuxKernel.vala:1284 +#: src/Common/LinuxKernel.vala:1286 msgid "Installation completed with errors" msgstr "Instalacja zakończona z błędami" -#: src/Common/LinuxKernel.vala:1300 +#: src/Common/LinuxKernel.vala:1302 msgid "" "Selected kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -133,19 +133,19 @@ msgstr "" "Wybrane jądro aktualnie działa i nie może zostać usunięte.\n" " Zainstaluj inne jądro przed usunięciem tego." -#: src/Common/LinuxKernel.vala:1305 +#: src/Common/LinuxKernel.vala:1307 msgid "Preparing to remove selected kernels" msgstr "Przygotowanie do usunięcia wybranych jąder" -#: src/Common/LinuxKernel.vala:1337 src/Common/LinuxKernel.vala:1390 +#: src/Common/LinuxKernel.vala:1339 src/Common/LinuxKernel.vala:1392 msgid "Un-install completed" msgstr "De-instalacja zakończona" -#: src/Common/LinuxKernel.vala:1340 src/Common/LinuxKernel.vala:1393 +#: src/Common/LinuxKernel.vala:1342 src/Common/LinuxKernel.vala:1395 msgid "Un-install completed with errors" msgstr "De-instalacja zakończona z błędami" -#: src/Common/LinuxKernel.vala:1353 +#: src/Common/LinuxKernel.vala:1355 msgid "" "This kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." diff --git a/po/ru.po b/po/ru.po index 115bbef9..fbe0d4a1 100644 --- a/po/ru.po +++ b/po/ru.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-02 16:29-0400\n" +"POT-Creation-Date: 2020-05-02 23:39-0400\n" "PO-Revision-Date: 2016-12-13 16:46+0300\n" "Last-Translator: Faust3000 \n" "Language-Team: Russian \n" @@ -119,17 +119,17 @@ msgstr "ОШИБКА" msgid "This kernel is already installed." msgstr "Это ядро уже установлено." -#: src/Common/LinuxKernel.vala:1281 +#: src/Common/LinuxKernel.vala:1283 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "Установка завершена. Обязательно выполните перезагрузку, чтобы использовать " "новое ядро." -#: src/Common/LinuxKernel.vala:1284 +#: src/Common/LinuxKernel.vala:1286 msgid "Installation completed with errors" msgstr "Установка завершена с ошибками" -#: src/Common/LinuxKernel.vala:1300 +#: src/Common/LinuxKernel.vala:1302 #, fuzzy msgid "" "Selected kernel is currently running and cannot be removed.\n" @@ -138,19 +138,19 @@ msgstr "" "Это ядро в настоящий момент работает и не может быть удалено.\n" " Установите другое ядро, прежде чем удалять его." -#: src/Common/LinuxKernel.vala:1305 +#: src/Common/LinuxKernel.vala:1307 msgid "Preparing to remove selected kernels" msgstr "" -#: src/Common/LinuxKernel.vala:1337 src/Common/LinuxKernel.vala:1390 +#: src/Common/LinuxKernel.vala:1339 src/Common/LinuxKernel.vala:1392 msgid "Un-install completed" msgstr "Удаление завершено" -#: src/Common/LinuxKernel.vala:1340 src/Common/LinuxKernel.vala:1393 +#: src/Common/LinuxKernel.vala:1342 src/Common/LinuxKernel.vala:1395 msgid "Un-install completed with errors" msgstr "Удаление завершено с ошибками" -#: src/Common/LinuxKernel.vala:1353 +#: src/Common/LinuxKernel.vala:1355 msgid "" "This kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." diff --git a/po/sv.po b/po/sv.po index 1338d593..96e8750b 100644 --- a/po/sv.po +++ b/po/sv.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu 2.2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-02 16:29-0400\n" +"POT-Creation-Date: 2020-05-02 23:39-0400\n" "PO-Revision-Date: 2018-01-13 16:56+0100\n" "Last-Translator: Åke Engelbrektson \n" "Language-Team: Svenska Språkfiler \n" @@ -118,15 +118,15 @@ msgstr "FEL" msgid "This kernel is already installed." msgstr "Denna kärna är redan installerad" -#: src/Common/LinuxKernel.vala:1281 +#: src/Common/LinuxKernel.vala:1283 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "Installation slutförd. Omstart krävs för att tillämpa den nya kärnan." -#: src/Common/LinuxKernel.vala:1284 +#: src/Common/LinuxKernel.vala:1286 msgid "Installation completed with errors" msgstr "Installation slutförd med fel" -#: src/Common/LinuxKernel.vala:1300 +#: src/Common/LinuxKernel.vala:1302 msgid "" "Selected kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -134,19 +134,19 @@ msgstr "" "Denna kärna används för tillfället och kan inte tas bort.\n" "Installera en annan kärna innan du tar bort den här." -#: src/Common/LinuxKernel.vala:1305 +#: src/Common/LinuxKernel.vala:1307 msgid "Preparing to remove selected kernels" msgstr "Förbereder borttagning av markerade kärnor" -#: src/Common/LinuxKernel.vala:1337 src/Common/LinuxKernel.vala:1390 +#: src/Common/LinuxKernel.vala:1339 src/Common/LinuxKernel.vala:1392 msgid "Un-install completed" msgstr "Avinstallation slutförd" -#: src/Common/LinuxKernel.vala:1340 src/Common/LinuxKernel.vala:1393 +#: src/Common/LinuxKernel.vala:1342 src/Common/LinuxKernel.vala:1395 msgid "Un-install completed with errors" msgstr "Avinstallation slutförd med fel" -#: src/Common/LinuxKernel.vala:1353 +#: src/Common/LinuxKernel.vala:1355 msgid "" "This kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." diff --git a/po/tr.po b/po/tr.po index c1761b85..b12015b1 100644 --- a/po/tr.po +++ b/po/tr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-02 16:29-0400\n" +"POT-Creation-Date: 2020-05-02 23:39-0400\n" "PO-Revision-Date: 2020-03-10 15:59+0300\n" "Last-Translator: Gökhan GÖKKAYA \n" "Language-Team: Turkish\n" @@ -114,16 +114,16 @@ msgstr "HATA" msgid "This kernel is already installed." msgstr "Bu çekirdek zaten kurulu." -#: src/Common/LinuxKernel.vala:1281 +#: src/Common/LinuxKernel.vala:1283 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "Kurulum tamamlandı. Yeni çekirdeği kullanmak için yeniden başlatma gerekiyor." -#: src/Common/LinuxKernel.vala:1284 +#: src/Common/LinuxKernel.vala:1286 msgid "Installation completed with errors" msgstr "Kurulum hatalarla tamamlandı" -#: src/Common/LinuxKernel.vala:1300 +#: src/Common/LinuxKernel.vala:1302 msgid "" "Selected kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -131,19 +131,19 @@ msgstr "" "Seçilen çekirdek şu anda çalışıyor ve kaldırılamıyor.\n" " Bunu kaldırmadan önce başka bir çekirdek yükleyin." -#: src/Common/LinuxKernel.vala:1305 +#: src/Common/LinuxKernel.vala:1307 msgid "Preparing to remove selected kernels" msgstr "Seçilen çekirdekleri kaldırmak için hazırlanıyor" -#: src/Common/LinuxKernel.vala:1337 src/Common/LinuxKernel.vala:1390 +#: src/Common/LinuxKernel.vala:1339 src/Common/LinuxKernel.vala:1392 msgid "Un-install completed" msgstr "Kaldırma tamamlandı" -#: src/Common/LinuxKernel.vala:1340 src/Common/LinuxKernel.vala:1393 +#: src/Common/LinuxKernel.vala:1342 src/Common/LinuxKernel.vala:1395 msgid "Un-install completed with errors" msgstr "Kaldırma hatalarla tamamlandı" -#: src/Common/LinuxKernel.vala:1353 +#: src/Common/LinuxKernel.vala:1355 msgid "" "This kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." diff --git a/po/uk.po b/po/uk.po index b6b67806..f763ca0f 100644 --- a/po/uk.po +++ b/po/uk.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-02 16:29-0400\n" +"POT-Creation-Date: 2020-05-02 23:39-0400\n" "PO-Revision-Date: 2019-07-25 11:00+0300\n" "Last-Translator: Serhii Golovko \n" "Language-Team: Ukranian \n" @@ -109,17 +109,17 @@ msgstr "ПОМИЛКА" msgid "This kernel is already installed." msgstr "Это ядро уже установлено." -#: src/Common/LinuxKernel.vala:1281 +#: src/Common/LinuxKernel.vala:1283 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "Установка завершена. Обов'язково виконайте перезавантаження, щоб " "використовувати нове ядро." -#: src/Common/LinuxKernel.vala:1284 +#: src/Common/LinuxKernel.vala:1286 msgid "Installation completed with errors" msgstr "Установка завершена з помилками" -#: src/Common/LinuxKernel.vala:1300 +#: src/Common/LinuxKernel.vala:1302 msgid "" "Selected kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -127,19 +127,19 @@ msgstr "" "Це ядро ​​зараз працює і не може бути видалено. \n" "Встановіть інше ядро, перш ніж видаляти його." -#: src/Common/LinuxKernel.vala:1305 +#: src/Common/LinuxKernel.vala:1307 msgid "Preparing to remove selected kernels" msgstr "Підготовка до видалення вибраних ядер" -#: src/Common/LinuxKernel.vala:1337 src/Common/LinuxKernel.vala:1390 +#: src/Common/LinuxKernel.vala:1339 src/Common/LinuxKernel.vala:1392 msgid "Un-install completed" msgstr "Удаление завершено" -#: src/Common/LinuxKernel.vala:1340 src/Common/LinuxKernel.vala:1393 +#: src/Common/LinuxKernel.vala:1342 src/Common/LinuxKernel.vala:1395 msgid "Un-install completed with errors" msgstr "Удаление завершено с ошибками" -#: src/Common/LinuxKernel.vala:1353 +#: src/Common/LinuxKernel.vala:1355 msgid "" "This kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." diff --git a/src/Common/LinuxKernel.vala b/src/Common/LinuxKernel.vala index dbb50f06..a20ffa74 100644 --- a/src/Common/LinuxKernel.vala +++ b/src/Common/LinuxKernel.vala @@ -1259,13 +1259,15 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { if (ok){ log_msg("Preparing to install '%s'".printf(name)); - - var cmd = "cd '%s/%s' && dpkg -i ".printf(cache_subdir, NATIVE_ARCH); + + var flist = ""; foreach(string file_name in deb_list.keys){ - cmd += "'%s' ".printf(file_name); + flist += " '%s'".printf(file_name); } - + + var cmd = "cd %s/%s && dpkg -i %s && rm %s".printf(cache_subdir, NATIVE_ARCH, flist, flist); + if (write_to_terminal){ log_msg(""); status = Posix.system(cmd); // execute From 5bc4105af920007dfc0c3751ae745eaabf24109d Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Sun, 3 May 2020 00:00:48 -0400 Subject: [PATCH 074/567] v1.0.7 --- .deb_build_number.mak | 4 ++-- BRANDING.mak | 2 +- debian/changelog | 6 ++++++ 3 files changed, 9 insertions(+), 3 deletions(-) diff --git a/.deb_build_number.mak b/.deb_build_number.mak index 06dce58c..95cccc97 100644 --- a/.deb_build_number.mak +++ b/.deb_build_number.mak @@ -1,3 +1,3 @@ # This file is generated by Makefile "make deb_build_number" -DEB_PKG_VERSION := 1.0.6 -DEB_BUILD_NUMBER := 0004 +DEB_PKG_VERSION := 1.0.7 +DEB_BUILD_NUMBER := 0000 diff --git a/BRANDING.mak b/BRANDING.mak index 2ff818a4..ea3f65d3 100644 --- a/BRANDING.mak +++ b/BRANDING.mak @@ -3,7 +3,7 @@ VERSION_MAJOR = 1 VERSION_MINOR = 0 -VERSION_MICRO = 6 +VERSION_MICRO = 7 BRANDING_SHORTNAME = mainline BRANDING_LONGNAME = Ubuntu Mainline Kernel Installer BRANDING_AUTHORNAME = Brian K. White diff --git a/debian/changelog b/debian/changelog index 3ea7a359..f49f3705 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +mainline (1.0.7) unstable; urgency=medium + + * Delete .deb files after successful install, so cache/tmp doesn't just grow forever + + -- Brian K. White Sat, 02 May 2020 23:56:09 -0400 + mainline (1.0.6) unstable; urgency=medium * generate translator credits from .po files From c1fa6d0e6aea0eb5b2a883dc18e89a6268c70a94 Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Wed, 6 May 2020 15:20:19 -0400 Subject: [PATCH 075/567] Don't hide the terminal window from the taskbar --- .deb_build_number.mak | 4 +- BRANDING.mak | 2 +- Makefile | 23 +- debian/changelog | 6 + po/es.po | 102 ++++---- po/fr.po | 102 ++++---- po/hr.po | 102 ++++---- po/messages.pot | 104 ++++---- po/nl.po | 102 ++++---- po/pl.po | 102 ++++---- po/ru.po | 102 ++++---- po/sv.po | 102 ++++---- po/tr.po | 102 ++++---- po/uk.po | 102 ++++---- share/mainline/images/general.svg | 211 ---------------- share/mainline/images/help-info.svg | 291 ----------------------- src/Gtk/MainWindow.vala | 10 +- src/Gtk/ProgressWindow.vala | 5 +- src/Gtk/SettingsDialog.vala | 4 +- src/Gtk/TerminalWindow.vala | 3 +- src/Gtk/UpdateNotificationWindow.vala | 2 - src/Utility/Gtk/AboutWindow.vala | 1 - src/Utility/Gtk/CustomMessageDialog.vala | 4 +- src/Utility/Gtk/GtkHelper.vala | 2 +- 24 files changed, 547 insertions(+), 1043 deletions(-) delete mode 100644 share/mainline/images/general.svg delete mode 100644 share/mainline/images/help-info.svg diff --git a/.deb_build_number.mak b/.deb_build_number.mak index 95cccc97..3d3b0343 100644 --- a/.deb_build_number.mak +++ b/.deb_build_number.mak @@ -1,3 +1,3 @@ # This file is generated by Makefile "make deb_build_number" -DEB_PKG_VERSION := 1.0.7 -DEB_BUILD_NUMBER := 0000 +DEB_PKG_VERSION := 1.0.8 +DEB_BUILD_NUMBER := 0002 diff --git a/BRANDING.mak b/BRANDING.mak index ea3f65d3..b4fa967a 100644 --- a/BRANDING.mak +++ b/BRANDING.mak @@ -3,7 +3,7 @@ VERSION_MAJOR = 1 VERSION_MINOR = 0 -VERSION_MICRO = 7 +VERSION_MICRO = 8 BRANDING_SHORTNAME = mainline BRANDING_LONGNAME = Ubuntu Mainline Kernel Installer BRANDING_AUTHORNAME = Brian K. White diff --git a/Makefile b/Makefile index 6adfd90a..4d76a673 100644 --- a/Makefile +++ b/Makefile @@ -127,11 +127,11 @@ install: all .PHONY: uninstall uninstall: # $(BRANDING_SHORTNAME) --clean-cache - rm -f "$(DESTDIR)$(bindir)/$(BRANDING_SHORTNAME)" - rm -rf "$(DESTDIR)$(sharedir)/$(BRANDING_SHORTNAME)" -# rm -f "$(DESTDIR)$(polkitdir)/$(BRANDING_SHORTNAME).policy" - rm -f "$(DESTDIR)$(launcherdir)/$(BRANDING_SHORTNAME).desktop" - rm -f "$(DESTDIR)$(sharedir)/pixmaps/$(BRANDING_SHORTNAME).*" + rm -f $(DESTDIR)$(bindir)/$(BRANDING_SHORTNAME) + rm -rf $(DESTDIR)$(sharedir)/$(BRANDING_SHORTNAME) +# rm -f $(DESTDIR)$(polkitdir)/$(BRANDING_SHORTNAME).policy + rm -f $(DESTDIR)$(launcherdir)/$(BRANDING_SHORTNAME).desktop + rm -f $(DESTDIR)$(sharedir)/pixmaps/$(BRANDING_SHORTNAME).* rm -f $(DESTDIR)$(localedir)/*/LC_MESSAGES/$(BRANDING_SHORTNAME).mo rm -f $(DESTDIR)/home/*/.config/$(BRANDING_SHORTNAME)/$(BRANDING_SHORTNAME)-notify.sh rm -f $(DESTDIR)/home/*/.config/autostart/$(BRANDING_SHORTNAME).desktop @@ -187,3 +187,16 @@ deb_build_number: debian/changelog .PHONY: release_deb release_deb: deb_build_number clean $(MAKE) deb + +# disable some built-in rules +Makefile: + @echo $(@) + +%.mak: + @echo $(@) + +%.src: + @echo $(@) + +%.vala: + @echo $(@) diff --git a/debian/changelog b/debian/changelog index f49f3705..fb962466 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +mainline (1.0.8) unstable; urgency=medium + + * Don't hide the terminal window from the taskbar or pager + + -- Brian K. White Tue, 05 May 2020 22:07:47 -0400 + mainline (1.0.7) unstable; urgency=medium * Delete .deb files after successful install, so cache/tmp doesn't just grow forever diff --git a/po/es.po b/po/es.po index 09bc770c..f6c2c1ed 100644 --- a/po/es.po +++ b/po/es.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-02 23:39-0400\n" +"POT-Creation-Date: 2020-05-06 15:08-0400\n" "PO-Revision-Date: 2018-01-03 02:03-0600\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish\n" @@ -66,7 +66,7 @@ msgid "Latest point update" msgstr "" #: src/Common/LinuxKernel.vala:796 src/Console/AppConsole.vala:371 -#: src/Console/AppConsole.vala:429 src/Gtk/MainWindow.vala:804 +#: src/Console/AppConsole.vala:429 src/Gtk/MainWindow.vala:798 msgid "No updates found" msgstr "No se encontró ninguna actualización" @@ -100,8 +100,8 @@ msgid "Downloading" msgstr "Descargando" #: src/Common/LinuxKernel.vala:1229 -#: src/Utility/Gtk/CustomMessageDialog.vala:150 -#: src/Utility/Gtk/CustomMessageDialog.vala:154 +#: src/Utility/Gtk/CustomMessageDialog.vala:148 +#: src/Utility/Gtk/CustomMessageDialog.vala:152 msgid "OK" msgstr "Aceptar" @@ -109,7 +109,7 @@ msgstr "Aceptar" msgid "ERROR" msgstr "ERROR" -#: src/Common/LinuxKernel.vala:1252 src/Gtk/MainWindow.vala:689 +#: src/Common/LinuxKernel.vala:1252 src/Gtk/MainWindow.vala:685 msgid "This kernel is already installed." msgstr "Este núcleo ya se instaló." @@ -204,7 +204,7 @@ msgstr "Instalar núcleo troncal especificado" msgid "Remove specified kernel" msgstr "Quitar el núcleo troncal especificado" -#: src/Console/AppConsole.vala:90 src/Gtk/MainWindow.vala:424 +#: src/Console/AppConsole.vala:90 src/Gtk/MainWindow.vala:422 msgid "Remove installed kernels older than running kernel" msgstr "" @@ -302,17 +302,17 @@ msgstr "Estado" msgid "Refresh" msgstr "Actualizar" -#: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:558 -#: src/Gtk/MainWindow.vala:694 src/Utility/TeeJee.System.vala:281 +#: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:554 +#: src/Gtk/MainWindow.vala:690 src/Utility/TeeJee.System.vala:281 msgid "Internet connection is not active" msgstr "La conexión a Internet está inactiva" -#: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:558 -#: src/Gtk/MainWindow.vala:694 +#: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:554 +#: src/Gtk/MainWindow.vala:690 msgid "No Internet" msgstr "No hay Internet" -#: src/Gtk/MainWindow.vala:357 src/Gtk/UpdateNotificationWindow.vala:147 +#: src/Gtk/MainWindow.vala:357 src/Gtk/UpdateNotificationWindow.vala:145 msgid "Install" msgstr "Instalar" @@ -340,159 +340,159 @@ msgstr "Quitar" msgid "Select the kernels to remove" msgstr "Seleccione los núcleos que se desinstalarán" -#: src/Gtk/MainWindow.vala:423 +#: src/Gtk/MainWindow.vala:421 msgid "Purge" msgstr "" -#: src/Gtk/MainWindow.vala:462 +#: src/Gtk/MainWindow.vala:458 msgid "Changes" msgstr "Cambios" -#: src/Gtk/MainWindow.vala:473 src/Gtk/SettingsDialog.vala:55 +#: src/Gtk/MainWindow.vala:469 src/Gtk/SettingsDialog.vala:53 msgid "Settings" msgstr "Configuración" -#: src/Gtk/MainWindow.vala:494 +#: src/Gtk/MainWindow.vala:490 msgid "About" msgstr "Acerca de" -#: src/Gtk/MainWindow.vala:542 +#: src/Gtk/MainWindow.vala:538 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "" "Herramienta de renovación de núcleo para distribuciones basadas en Ubuntu" -#: src/Gtk/MainWindow.vala:577 +#: src/Gtk/MainWindow.vala:573 msgid "Refreshing..." msgstr "Actualizando…" -#: src/Gtk/ProgressWindow.vala:145 src/Gtk/TerminalWindow.vala:148 -#: src/Gtk/UpdateNotificationWindow.vala:167 -#: src/Utility/Gtk/CustomMessageDialog.vala:155 +#: src/Gtk/ProgressWindow.vala:144 src/Gtk/TerminalWindow.vala:149 +#: src/Gtk/UpdateNotificationWindow.vala:165 +#: src/Utility/Gtk/CustomMessageDialog.vala:153 msgid "Cancel" msgstr "Cancelar" -#: src/Gtk/SettingsDialog.vala:65 +#: src/Gtk/SettingsDialog.vala:63 msgid "Notification" msgstr "Notificación" -#: src/Gtk/SettingsDialog.vala:72 +#: src/Gtk/SettingsDialog.vala:70 msgid "Notify if a major release is available" msgstr "Notificar si hay una versión importante disponible" -#: src/Gtk/SettingsDialog.vala:83 +#: src/Gtk/SettingsDialog.vala:81 msgid "Notify if a point release is available" msgstr "Notificar si hay una versión puntual disponible" -#: src/Gtk/SettingsDialog.vala:94 +#: src/Gtk/SettingsDialog.vala:92 msgid "Show notification bubble on desktop" msgstr "Mostrar globo de notificación en el escritorio" -#: src/Gtk/SettingsDialog.vala:105 +#: src/Gtk/SettingsDialog.vala:103 msgid "Show notification dialog" msgstr "Mostrar cuadro de diálogo de notificación" -#: src/Gtk/SettingsDialog.vala:120 +#: src/Gtk/SettingsDialog.vala:118 msgid "Check every" msgstr "Comprobar cada" -#: src/Gtk/SettingsDialog.vala:151 +#: src/Gtk/SettingsDialog.vala:149 msgid "Hour(s)" msgstr "Horas" -#: src/Gtk/SettingsDialog.vala:153 +#: src/Gtk/SettingsDialog.vala:151 msgid "Day(s)" msgstr "Días" -#: src/Gtk/SettingsDialog.vala:155 +#: src/Gtk/SettingsDialog.vala:153 msgid "Week(s)" msgstr "Semanas" -#: src/Gtk/SettingsDialog.vala:160 +#: src/Gtk/SettingsDialog.vala:158 msgid "Display" msgstr "Mostrar" -#: src/Gtk/SettingsDialog.vala:168 +#: src/Gtk/SettingsDialog.vala:166 msgid "Hide unstable and RC releases" msgstr "Ocultar versiones inestables y RC" -#: src/Gtk/SettingsDialog.vala:182 +#: src/Gtk/SettingsDialog.vala:180 msgid "Show N previous major versions " msgstr "" -#: src/Gtk/SettingsDialog.vala:197 +#: src/Gtk/SettingsDialog.vala:195 msgid "Other" msgstr "" -#: src/Gtk/SettingsDialog.vala:205 +#: src/Gtk/SettingsDialog.vala:203 msgid "Skip internet connection check" msgstr "La conexión a Internet está inactiva" -#: src/Gtk/SettingsDialog.vala:218 +#: src/Gtk/SettingsDialog.vala:216 #, fuzzy msgid "Internet connection timeout in " msgstr "La conexión a Internet está inactiva" -#: src/Gtk/SettingsDialog.vala:232 +#: src/Gtk/SettingsDialog.vala:230 msgid "seconds" msgstr "" -#: src/Gtk/TerminalWindow.vala:158 src/Utility/Gtk/AboutWindow.vala:295 +#: src/Gtk/TerminalWindow.vala:159 src/Utility/Gtk/AboutWindow.vala:294 msgid "Close" msgstr "Cerrar" -#: src/Gtk/UpdateNotificationWindow.vala:148 +#: src/Gtk/UpdateNotificationWindow.vala:146 msgid "Install this kernel" msgstr "Instalar este kernel" -#: src/Gtk/UpdateNotificationWindow.vala:157 +#: src/Gtk/UpdateNotificationWindow.vala:155 msgid "Show" msgstr "Mostrar" -#: src/Gtk/UpdateNotificationWindow.vala:158 +#: src/Gtk/UpdateNotificationWindow.vala:156 msgid "List available kernels" msgstr "Mostrar núcleos disponibles" -#: src/Gtk/UpdateNotificationWindow.vala:168 +#: src/Gtk/UpdateNotificationWindow.vala:166 msgid "Ignore this update" msgstr "Ignorar esta actualización" -#: src/Utility/Gtk/AboutWindow.vala:272 src/Utility/Gtk/AboutWindow.vala:289 +#: src/Utility/Gtk/AboutWindow.vala:271 src/Utility/Gtk/AboutWindow.vala:288 msgid "Credits" msgstr "Créditos" -#: src/Utility/Gtk/AboutWindow.vala:285 +#: src/Utility/Gtk/AboutWindow.vala:284 msgid "Back" msgstr "Atrás" -#: src/Utility/Gtk/AboutWindow.vala:314 +#: src/Utility/Gtk/AboutWindow.vala:313 msgid "Authors" msgstr "Autores" -#: src/Utility/Gtk/AboutWindow.vala:322 +#: src/Utility/Gtk/AboutWindow.vala:321 msgid "Contributions" msgstr "Contribuciones" -#: src/Utility/Gtk/AboutWindow.vala:330 +#: src/Utility/Gtk/AboutWindow.vala:329 msgid "Third Party Tools" msgstr "Herramientas de terceros" -#: src/Utility/Gtk/AboutWindow.vala:338 +#: src/Utility/Gtk/AboutWindow.vala:337 msgid "Artists" msgstr "Artistas" -#: src/Utility/Gtk/AboutWindow.vala:346 +#: src/Utility/Gtk/AboutWindow.vala:345 msgid "Translators" msgstr "Traductores" -#: src/Utility/Gtk/AboutWindow.vala:354 +#: src/Utility/Gtk/AboutWindow.vala:353 msgid "Documenters" msgstr "Documentadores" -#: src/Utility/Gtk/CustomMessageDialog.vala:159 +#: src/Utility/Gtk/CustomMessageDialog.vala:157 msgid "Yes" msgstr "Sí" -#: src/Utility/Gtk/CustomMessageDialog.vala:160 +#: src/Utility/Gtk/CustomMessageDialog.vala:158 msgid "No" msgstr "No" diff --git a/po/fr.po b/po/fr.po index a02d7e29..3d54514e 100644 --- a/po/fr.po +++ b/po/fr.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-02 23:39-0400\n" +"POT-Creation-Date: 2020-05-06 15:08-0400\n" "PO-Revision-Date: 2018-08-05 15:50+0200\n" "Last-Translator: Yolateng0 \n" "Language-Team: French\n" @@ -69,7 +69,7 @@ msgid "Latest point update" msgstr "" #: src/Common/LinuxKernel.vala:796 src/Console/AppConsole.vala:371 -#: src/Console/AppConsole.vala:429 src/Gtk/MainWindow.vala:804 +#: src/Console/AppConsole.vala:429 src/Gtk/MainWindow.vala:798 msgid "No updates found" msgstr "Aucune mise à jour disponible" @@ -103,8 +103,8 @@ msgid "Downloading" msgstr "Téléchargement" #: src/Common/LinuxKernel.vala:1229 -#: src/Utility/Gtk/CustomMessageDialog.vala:150 -#: src/Utility/Gtk/CustomMessageDialog.vala:154 +#: src/Utility/Gtk/CustomMessageDialog.vala:148 +#: src/Utility/Gtk/CustomMessageDialog.vala:152 msgid "OK" msgstr "OK" @@ -112,7 +112,7 @@ msgstr "OK" msgid "ERROR" msgstr "ERREUR" -#: src/Common/LinuxKernel.vala:1252 src/Gtk/MainWindow.vala:689 +#: src/Common/LinuxKernel.vala:1252 src/Gtk/MainWindow.vala:685 msgid "This kernel is already installed." msgstr "Ce noyau est déjà installé." @@ -211,7 +211,7 @@ msgstr "Installer le noyau principal spécifié" msgid "Remove specified kernel" msgstr "Supprimer le noyau mainline sélectionné" -#: src/Console/AppConsole.vala:90 src/Gtk/MainWindow.vala:424 +#: src/Console/AppConsole.vala:90 src/Gtk/MainWindow.vala:422 msgid "Remove installed kernels older than running kernel" msgstr "" @@ -312,17 +312,17 @@ msgstr "Statut" msgid "Refresh" msgstr "Actualiser" -#: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:558 -#: src/Gtk/MainWindow.vala:694 src/Utility/TeeJee.System.vala:281 +#: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:554 +#: src/Gtk/MainWindow.vala:690 src/Utility/TeeJee.System.vala:281 msgid "Internet connection is not active" msgstr "Connexion internet inexistante" -#: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:558 -#: src/Gtk/MainWindow.vala:694 +#: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:554 +#: src/Gtk/MainWindow.vala:690 msgid "No Internet" msgstr "Pas d'Internet" -#: src/Gtk/MainWindow.vala:357 src/Gtk/UpdateNotificationWindow.vala:147 +#: src/Gtk/MainWindow.vala:357 src/Gtk/UpdateNotificationWindow.vala:145 msgid "Install" msgstr "Installer" @@ -350,161 +350,161 @@ msgstr "Supprimer" msgid "Select the kernels to remove" msgstr "Sélectionnez les noyaux à supprimer" -#: src/Gtk/MainWindow.vala:423 +#: src/Gtk/MainWindow.vala:421 msgid "Purge" msgstr "" -#: src/Gtk/MainWindow.vala:462 +#: src/Gtk/MainWindow.vala:458 msgid "Changes" msgstr "Changements" -#: src/Gtk/MainWindow.vala:473 src/Gtk/SettingsDialog.vala:55 +#: src/Gtk/MainWindow.vala:469 src/Gtk/SettingsDialog.vala:53 msgid "Settings" msgstr "Paramètres" -#: src/Gtk/MainWindow.vala:494 +#: src/Gtk/MainWindow.vala:490 msgid "About" msgstr "À propos" -#: src/Gtk/MainWindow.vala:542 +#: src/Gtk/MainWindow.vala:538 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "" "Utilitaire de mise à niveau des noyaux pour les distributions basées pour " "Ubuntu" -#: src/Gtk/MainWindow.vala:577 +#: src/Gtk/MainWindow.vala:573 msgid "Refreshing..." msgstr "Actualisation..." -#: src/Gtk/ProgressWindow.vala:145 src/Gtk/TerminalWindow.vala:148 -#: src/Gtk/UpdateNotificationWindow.vala:167 -#: src/Utility/Gtk/CustomMessageDialog.vala:155 +#: src/Gtk/ProgressWindow.vala:144 src/Gtk/TerminalWindow.vala:149 +#: src/Gtk/UpdateNotificationWindow.vala:165 +#: src/Utility/Gtk/CustomMessageDialog.vala:153 msgid "Cancel" msgstr "Annuler" -#: src/Gtk/SettingsDialog.vala:65 +#: src/Gtk/SettingsDialog.vala:63 msgid "Notification" msgstr "Notification" -#: src/Gtk/SettingsDialog.vala:72 +#: src/Gtk/SettingsDialog.vala:70 msgid "Notify if a major release is available" msgstr "Notifier si une version stable majeure est disponible" -#: src/Gtk/SettingsDialog.vala:83 +#: src/Gtk/SettingsDialog.vala:81 msgid "Notify if a point release is available" msgstr "Notifier si une version stable mineure est disponible" -#: src/Gtk/SettingsDialog.vala:94 +#: src/Gtk/SettingsDialog.vala:92 msgid "Show notification bubble on desktop" msgstr "Afficher la bulle de notification sur le bureau" -#: src/Gtk/SettingsDialog.vala:105 +#: src/Gtk/SettingsDialog.vala:103 msgid "Show notification dialog" msgstr "Afficher les notifications" -#: src/Gtk/SettingsDialog.vala:120 +#: src/Gtk/SettingsDialog.vala:118 msgid "Check every" msgstr "Vérifier toutes les" -#: src/Gtk/SettingsDialog.vala:151 +#: src/Gtk/SettingsDialog.vala:149 msgid "Hour(s)" msgstr "Heure(s)" -#: src/Gtk/SettingsDialog.vala:153 +#: src/Gtk/SettingsDialog.vala:151 msgid "Day(s)" msgstr "Jour(s)" -#: src/Gtk/SettingsDialog.vala:155 +#: src/Gtk/SettingsDialog.vala:153 msgid "Week(s)" msgstr "Semaine(s)" -#: src/Gtk/SettingsDialog.vala:160 +#: src/Gtk/SettingsDialog.vala:158 msgid "Display" msgstr "Afficher" -#: src/Gtk/SettingsDialog.vala:168 +#: src/Gtk/SettingsDialog.vala:166 msgid "Hide unstable and RC releases" msgstr "Cacher les versions instables et RC" -#: src/Gtk/SettingsDialog.vala:182 +#: src/Gtk/SettingsDialog.vala:180 msgid "Show N previous major versions " msgstr "" -#: src/Gtk/SettingsDialog.vala:197 +#: src/Gtk/SettingsDialog.vala:195 msgid "Other" msgstr "" -#: src/Gtk/SettingsDialog.vala:205 +#: src/Gtk/SettingsDialog.vala:203 #, fuzzy msgid "Skip internet connection check" msgstr "Connexion internet inexistante" -#: src/Gtk/SettingsDialog.vala:218 +#: src/Gtk/SettingsDialog.vala:216 #, fuzzy msgid "Internet connection timeout in " msgstr "Connexion internet inexistante" -#: src/Gtk/SettingsDialog.vala:232 +#: src/Gtk/SettingsDialog.vala:230 msgid "seconds" msgstr "" -#: src/Gtk/TerminalWindow.vala:158 src/Utility/Gtk/AboutWindow.vala:295 +#: src/Gtk/TerminalWindow.vala:159 src/Utility/Gtk/AboutWindow.vala:294 msgid "Close" msgstr "Fermer" -#: src/Gtk/UpdateNotificationWindow.vala:148 +#: src/Gtk/UpdateNotificationWindow.vala:146 msgid "Install this kernel" msgstr "Installer ce noyau" -#: src/Gtk/UpdateNotificationWindow.vala:157 +#: src/Gtk/UpdateNotificationWindow.vala:155 msgid "Show" msgstr "Afficher" -#: src/Gtk/UpdateNotificationWindow.vala:158 +#: src/Gtk/UpdateNotificationWindow.vala:156 msgid "List available kernels" msgstr "Lister les noyaux disponibles" -#: src/Gtk/UpdateNotificationWindow.vala:168 +#: src/Gtk/UpdateNotificationWindow.vala:166 msgid "Ignore this update" msgstr "Ignorer cette mise à jour" -#: src/Utility/Gtk/AboutWindow.vala:272 src/Utility/Gtk/AboutWindow.vala:289 +#: src/Utility/Gtk/AboutWindow.vala:271 src/Utility/Gtk/AboutWindow.vala:288 msgid "Credits" msgstr "Crédits" -#: src/Utility/Gtk/AboutWindow.vala:285 +#: src/Utility/Gtk/AboutWindow.vala:284 msgid "Back" msgstr "Retour" -#: src/Utility/Gtk/AboutWindow.vala:314 +#: src/Utility/Gtk/AboutWindow.vala:313 msgid "Authors" msgstr "Auteurs" -#: src/Utility/Gtk/AboutWindow.vala:322 +#: src/Utility/Gtk/AboutWindow.vala:321 msgid "Contributions" msgstr "Contributions" -#: src/Utility/Gtk/AboutWindow.vala:330 +#: src/Utility/Gtk/AboutWindow.vala:329 msgid "Third Party Tools" msgstr "Outils tiers" -#: src/Utility/Gtk/AboutWindow.vala:338 +#: src/Utility/Gtk/AboutWindow.vala:337 msgid "Artists" msgstr "Artistes" -#: src/Utility/Gtk/AboutWindow.vala:346 +#: src/Utility/Gtk/AboutWindow.vala:345 msgid "Translators" msgstr "Traducteurs" -#: src/Utility/Gtk/AboutWindow.vala:354 +#: src/Utility/Gtk/AboutWindow.vala:353 msgid "Documenters" msgstr "Documentalistes" -#: src/Utility/Gtk/CustomMessageDialog.vala:159 +#: src/Utility/Gtk/CustomMessageDialog.vala:157 msgid "Yes" msgstr "Oui" -#: src/Utility/Gtk/CustomMessageDialog.vala:160 +#: src/Utility/Gtk/CustomMessageDialog.vala:158 msgid "No" msgstr "Non" diff --git a/po/hr.po b/po/hr.po index 86bde2d5..995c8c25 100644 --- a/po/hr.po +++ b/po/hr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-02 23:39-0400\n" +"POT-Creation-Date: 2020-05-06 15:08-0400\n" "PO-Revision-Date: 2017-12-24 00:52+0100\n" "Last-Translator: gogo \n" "Language-Team: Croatian \n" @@ -70,7 +70,7 @@ msgid "Latest point update" msgstr "" #: src/Common/LinuxKernel.vala:796 src/Console/AppConsole.vala:371 -#: src/Console/AppConsole.vala:429 src/Gtk/MainWindow.vala:804 +#: src/Console/AppConsole.vala:429 src/Gtk/MainWindow.vala:798 msgid "No updates found" msgstr "Nema pronađenih nadopuna" @@ -104,8 +104,8 @@ msgid "Downloading" msgstr "Preuzimanje" #: src/Common/LinuxKernel.vala:1229 -#: src/Utility/Gtk/CustomMessageDialog.vala:150 -#: src/Utility/Gtk/CustomMessageDialog.vala:154 +#: src/Utility/Gtk/CustomMessageDialog.vala:148 +#: src/Utility/Gtk/CustomMessageDialog.vala:152 msgid "OK" msgstr "U redu" @@ -113,7 +113,7 @@ msgstr "U redu" msgid "ERROR" msgstr "GREŠKA" -#: src/Common/LinuxKernel.vala:1252 src/Gtk/MainWindow.vala:689 +#: src/Common/LinuxKernel.vala:1252 src/Gtk/MainWindow.vala:685 msgid "This kernel is already installed." msgstr "Ovaj kernel je već instaliran." @@ -212,7 +212,7 @@ msgstr "Instaliraj određeni mainline kernel" msgid "Remove specified kernel" msgstr "Ukloni određeni mainline kernel" -#: src/Console/AppConsole.vala:90 src/Gtk/MainWindow.vala:424 +#: src/Console/AppConsole.vala:90 src/Gtk/MainWindow.vala:422 msgid "Remove installed kernels older than running kernel" msgstr "" @@ -310,17 +310,17 @@ msgstr "Stanje" msgid "Refresh" msgstr "Osvježi" -#: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:558 -#: src/Gtk/MainWindow.vala:694 src/Utility/TeeJee.System.vala:281 +#: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:554 +#: src/Gtk/MainWindow.vala:690 src/Utility/TeeJee.System.vala:281 msgid "Internet connection is not active" msgstr "Internet povezivanje nije aktivno" -#: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:558 -#: src/Gtk/MainWindow.vala:694 +#: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:554 +#: src/Gtk/MainWindow.vala:690 msgid "No Internet" msgstr "Nema pristupa internetu" -#: src/Gtk/MainWindow.vala:357 src/Gtk/UpdateNotificationWindow.vala:147 +#: src/Gtk/MainWindow.vala:357 src/Gtk/UpdateNotificationWindow.vala:145 msgid "Install" msgstr "Instaliraj" @@ -348,159 +348,159 @@ msgstr "Ukloni" msgid "Select the kernels to remove" msgstr "Odaberi kernele za uklanjanje" -#: src/Gtk/MainWindow.vala:423 +#: src/Gtk/MainWindow.vala:421 msgid "Purge" msgstr "" -#: src/Gtk/MainWindow.vala:462 +#: src/Gtk/MainWindow.vala:458 msgid "Changes" msgstr "Promjene" -#: src/Gtk/MainWindow.vala:473 src/Gtk/SettingsDialog.vala:55 +#: src/Gtk/MainWindow.vala:469 src/Gtk/SettingsDialog.vala:53 msgid "Settings" msgstr "Postavke" -#: src/Gtk/MainWindow.vala:494 +#: src/Gtk/MainWindow.vala:490 msgid "About" msgstr "O programu" -#: src/Gtk/MainWindow.vala:542 +#: src/Gtk/MainWindow.vala:538 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Alat za nadogradnju kernela Ubuntu temeljenih distribucija" -#: src/Gtk/MainWindow.vala:577 +#: src/Gtk/MainWindow.vala:573 msgid "Refreshing..." msgstr "Osvježavanje..." -#: src/Gtk/ProgressWindow.vala:145 src/Gtk/TerminalWindow.vala:148 -#: src/Gtk/UpdateNotificationWindow.vala:167 -#: src/Utility/Gtk/CustomMessageDialog.vala:155 +#: src/Gtk/ProgressWindow.vala:144 src/Gtk/TerminalWindow.vala:149 +#: src/Gtk/UpdateNotificationWindow.vala:165 +#: src/Utility/Gtk/CustomMessageDialog.vala:153 msgid "Cancel" msgstr "Odustani" -#: src/Gtk/SettingsDialog.vala:65 +#: src/Gtk/SettingsDialog.vala:63 msgid "Notification" msgstr "Obavijesti" -#: src/Gtk/SettingsDialog.vala:72 +#: src/Gtk/SettingsDialog.vala:70 msgid "Notify if a major release is available" msgstr "Obavijesti kada je glavno izdanje dostupno" -#: src/Gtk/SettingsDialog.vala:83 +#: src/Gtk/SettingsDialog.vala:81 msgid "Notify if a point release is available" msgstr "Obavijesti kada je pojedino izdanje dostupno" -#: src/Gtk/SettingsDialog.vala:94 +#: src/Gtk/SettingsDialog.vala:92 msgid "Show notification bubble on desktop" msgstr "Prikaži mjehurić obavijesti radne površine" -#: src/Gtk/SettingsDialog.vala:105 +#: src/Gtk/SettingsDialog.vala:103 msgid "Show notification dialog" msgstr "Prikaži dijalog obavijesti" -#: src/Gtk/SettingsDialog.vala:120 +#: src/Gtk/SettingsDialog.vala:118 msgid "Check every" msgstr "Provjeri svaka" -#: src/Gtk/SettingsDialog.vala:151 +#: src/Gtk/SettingsDialog.vala:149 msgid "Hour(s)" msgstr "Sat(a)" -#: src/Gtk/SettingsDialog.vala:153 +#: src/Gtk/SettingsDialog.vala:151 msgid "Day(s)" msgstr "Dan(a)" -#: src/Gtk/SettingsDialog.vala:155 +#: src/Gtk/SettingsDialog.vala:153 msgid "Week(s)" msgstr "Tjedan(a)" -#: src/Gtk/SettingsDialog.vala:160 +#: src/Gtk/SettingsDialog.vala:158 msgid "Display" msgstr "Prikaz" -#: src/Gtk/SettingsDialog.vala:168 +#: src/Gtk/SettingsDialog.vala:166 msgid "Hide unstable and RC releases" msgstr "Sakrij nestabilne kernele i predizdanja" -#: src/Gtk/SettingsDialog.vala:182 +#: src/Gtk/SettingsDialog.vala:180 msgid "Show N previous major versions " msgstr "" -#: src/Gtk/SettingsDialog.vala:197 +#: src/Gtk/SettingsDialog.vala:195 msgid "Other" msgstr "" -#: src/Gtk/SettingsDialog.vala:205 +#: src/Gtk/SettingsDialog.vala:203 #, fuzzy msgid "Skip internet connection check" msgstr "Internet povezivanje nije aktivno" -#: src/Gtk/SettingsDialog.vala:218 +#: src/Gtk/SettingsDialog.vala:216 #, fuzzy msgid "Internet connection timeout in " msgstr "Internet povezivanje nije aktivno" -#: src/Gtk/SettingsDialog.vala:232 +#: src/Gtk/SettingsDialog.vala:230 msgid "seconds" msgstr "" -#: src/Gtk/TerminalWindow.vala:158 src/Utility/Gtk/AboutWindow.vala:295 +#: src/Gtk/TerminalWindow.vala:159 src/Utility/Gtk/AboutWindow.vala:294 msgid "Close" msgstr "Zatvori" -#: src/Gtk/UpdateNotificationWindow.vala:148 +#: src/Gtk/UpdateNotificationWindow.vala:146 msgid "Install this kernel" msgstr "Instaliraj ovaj kernel" -#: src/Gtk/UpdateNotificationWindow.vala:157 +#: src/Gtk/UpdateNotificationWindow.vala:155 msgid "Show" msgstr "Prikaži" -#: src/Gtk/UpdateNotificationWindow.vala:158 +#: src/Gtk/UpdateNotificationWindow.vala:156 msgid "List available kernels" msgstr "Prikaži sve kernele" -#: src/Gtk/UpdateNotificationWindow.vala:168 +#: src/Gtk/UpdateNotificationWindow.vala:166 msgid "Ignore this update" msgstr "Zanemari ovu nadopunu" -#: src/Utility/Gtk/AboutWindow.vala:272 src/Utility/Gtk/AboutWindow.vala:289 +#: src/Utility/Gtk/AboutWindow.vala:271 src/Utility/Gtk/AboutWindow.vala:288 msgid "Credits" msgstr "Zasluge" -#: src/Utility/Gtk/AboutWindow.vala:285 +#: src/Utility/Gtk/AboutWindow.vala:284 msgid "Back" msgstr "Natrag" -#: src/Utility/Gtk/AboutWindow.vala:314 +#: src/Utility/Gtk/AboutWindow.vala:313 msgid "Authors" msgstr "Autori" -#: src/Utility/Gtk/AboutWindow.vala:322 +#: src/Utility/Gtk/AboutWindow.vala:321 msgid "Contributions" msgstr "Prilozi" -#: src/Utility/Gtk/AboutWindow.vala:330 +#: src/Utility/Gtk/AboutWindow.vala:329 msgid "Third Party Tools" msgstr "Alati treće strane" -#: src/Utility/Gtk/AboutWindow.vala:338 +#: src/Utility/Gtk/AboutWindow.vala:337 msgid "Artists" msgstr "Dizajneri" -#: src/Utility/Gtk/AboutWindow.vala:346 +#: src/Utility/Gtk/AboutWindow.vala:345 msgid "Translators" msgstr "Prevoditelji" -#: src/Utility/Gtk/AboutWindow.vala:354 +#: src/Utility/Gtk/AboutWindow.vala:353 msgid "Documenters" msgstr "Autori dokumentacije" -#: src/Utility/Gtk/CustomMessageDialog.vala:159 +#: src/Utility/Gtk/CustomMessageDialog.vala:157 msgid "Yes" msgstr "Da" -#: src/Utility/Gtk/CustomMessageDialog.vala:160 +#: src/Utility/Gtk/CustomMessageDialog.vala:158 msgid "No" msgstr "Ne" diff --git a/po/messages.pot b/po/messages.pot index 4b304fae..ae03dbcb 100644 --- a/po/messages.pot +++ b/po/messages.pot @@ -6,9 +6,9 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: mainline 1.0.6\n" +"Project-Id-Version: mainline 1.0.8\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-02 23:40-0400\n" +"POT-Creation-Date: 2020-05-06 15:08-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -66,7 +66,7 @@ msgid "Latest point update" msgstr "" #: src/Common/LinuxKernel.vala:796 src/Console/AppConsole.vala:371 -#: src/Console/AppConsole.vala:429 src/Gtk/MainWindow.vala:804 +#: src/Console/AppConsole.vala:429 src/Gtk/MainWindow.vala:798 msgid "No updates found" msgstr "" @@ -100,8 +100,8 @@ msgid "Downloading" msgstr "" #: src/Common/LinuxKernel.vala:1229 -#: src/Utility/Gtk/CustomMessageDialog.vala:150 -#: src/Utility/Gtk/CustomMessageDialog.vala:154 +#: src/Utility/Gtk/CustomMessageDialog.vala:148 +#: src/Utility/Gtk/CustomMessageDialog.vala:152 msgid "OK" msgstr "" @@ -109,7 +109,7 @@ msgstr "" msgid "ERROR" msgstr "" -#: src/Common/LinuxKernel.vala:1252 src/Gtk/MainWindow.vala:689 +#: src/Common/LinuxKernel.vala:1252 src/Gtk/MainWindow.vala:685 msgid "This kernel is already installed." msgstr "" @@ -198,7 +198,7 @@ msgstr "" msgid "Remove specified kernel" msgstr "" -#: src/Console/AppConsole.vala:90 src/Gtk/MainWindow.vala:424 +#: src/Console/AppConsole.vala:90 src/Gtk/MainWindow.vala:422 msgid "Remove installed kernels older than running kernel" msgstr "" @@ -295,17 +295,17 @@ msgstr "" msgid "Refresh" msgstr "" -#: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:558 -#: src/Gtk/MainWindow.vala:694 src/Utility/TeeJee.System.vala:281 +#: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:554 +#: src/Gtk/MainWindow.vala:690 src/Utility/TeeJee.System.vala:281 msgid "Internet connection is not active" msgstr "" -#: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:558 -#: src/Gtk/MainWindow.vala:694 +#: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:554 +#: src/Gtk/MainWindow.vala:690 msgid "No Internet" msgstr "" -#: src/Gtk/MainWindow.vala:357 src/Gtk/UpdateNotificationWindow.vala:147 +#: src/Gtk/MainWindow.vala:357 src/Gtk/UpdateNotificationWindow.vala:145 msgid "Install" msgstr "" @@ -333,157 +333,157 @@ msgstr "" msgid "Select the kernels to remove" msgstr "" -#: src/Gtk/MainWindow.vala:423 +#: src/Gtk/MainWindow.vala:421 msgid "Purge" msgstr "" -#: src/Gtk/MainWindow.vala:462 +#: src/Gtk/MainWindow.vala:458 msgid "Changes" msgstr "" -#: src/Gtk/MainWindow.vala:473 src/Gtk/SettingsDialog.vala:55 +#: src/Gtk/MainWindow.vala:469 src/Gtk/SettingsDialog.vala:53 msgid "Settings" msgstr "" -#: src/Gtk/MainWindow.vala:494 +#: src/Gtk/MainWindow.vala:490 msgid "About" msgstr "" -#: src/Gtk/MainWindow.vala:542 +#: src/Gtk/MainWindow.vala:538 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "" -#: src/Gtk/MainWindow.vala:577 +#: src/Gtk/MainWindow.vala:573 msgid "Refreshing..." msgstr "" -#: src/Gtk/ProgressWindow.vala:145 src/Gtk/TerminalWindow.vala:148 -#: src/Gtk/UpdateNotificationWindow.vala:167 -#: src/Utility/Gtk/CustomMessageDialog.vala:155 +#: src/Gtk/ProgressWindow.vala:144 src/Gtk/TerminalWindow.vala:149 +#: src/Gtk/UpdateNotificationWindow.vala:165 +#: src/Utility/Gtk/CustomMessageDialog.vala:153 msgid "Cancel" msgstr "" -#: src/Gtk/SettingsDialog.vala:65 +#: src/Gtk/SettingsDialog.vala:63 msgid "Notification" msgstr "" -#: src/Gtk/SettingsDialog.vala:72 +#: src/Gtk/SettingsDialog.vala:70 msgid "Notify if a major release is available" msgstr "" -#: src/Gtk/SettingsDialog.vala:83 +#: src/Gtk/SettingsDialog.vala:81 msgid "Notify if a point release is available" msgstr "" -#: src/Gtk/SettingsDialog.vala:94 +#: src/Gtk/SettingsDialog.vala:92 msgid "Show notification bubble on desktop" msgstr "" -#: src/Gtk/SettingsDialog.vala:105 +#: src/Gtk/SettingsDialog.vala:103 msgid "Show notification dialog" msgstr "" -#: src/Gtk/SettingsDialog.vala:120 +#: src/Gtk/SettingsDialog.vala:118 msgid "Check every" msgstr "" -#: src/Gtk/SettingsDialog.vala:151 +#: src/Gtk/SettingsDialog.vala:149 msgid "Hour(s)" msgstr "" -#: src/Gtk/SettingsDialog.vala:153 +#: src/Gtk/SettingsDialog.vala:151 msgid "Day(s)" msgstr "" -#: src/Gtk/SettingsDialog.vala:155 +#: src/Gtk/SettingsDialog.vala:153 msgid "Week(s)" msgstr "" -#: src/Gtk/SettingsDialog.vala:160 +#: src/Gtk/SettingsDialog.vala:158 msgid "Display" msgstr "" -#: src/Gtk/SettingsDialog.vala:168 +#: src/Gtk/SettingsDialog.vala:166 msgid "Hide unstable and RC releases" msgstr "" -#: src/Gtk/SettingsDialog.vala:182 +#: src/Gtk/SettingsDialog.vala:180 msgid "Show N previous major versions " msgstr "" -#: src/Gtk/SettingsDialog.vala:197 +#: src/Gtk/SettingsDialog.vala:195 msgid "Other" msgstr "" -#: src/Gtk/SettingsDialog.vala:205 +#: src/Gtk/SettingsDialog.vala:203 msgid "Skip internet connection check" msgstr "" -#: src/Gtk/SettingsDialog.vala:218 +#: src/Gtk/SettingsDialog.vala:216 msgid "Internet connection timeout in " msgstr "" -#: src/Gtk/SettingsDialog.vala:232 +#: src/Gtk/SettingsDialog.vala:230 msgid "seconds" msgstr "" -#: src/Gtk/TerminalWindow.vala:158 src/Utility/Gtk/AboutWindow.vala:295 +#: src/Gtk/TerminalWindow.vala:159 src/Utility/Gtk/AboutWindow.vala:294 msgid "Close" msgstr "" -#: src/Gtk/UpdateNotificationWindow.vala:148 +#: src/Gtk/UpdateNotificationWindow.vala:146 msgid "Install this kernel" msgstr "" -#: src/Gtk/UpdateNotificationWindow.vala:157 +#: src/Gtk/UpdateNotificationWindow.vala:155 msgid "Show" msgstr "" -#: src/Gtk/UpdateNotificationWindow.vala:158 +#: src/Gtk/UpdateNotificationWindow.vala:156 msgid "List available kernels" msgstr "" -#: src/Gtk/UpdateNotificationWindow.vala:168 +#: src/Gtk/UpdateNotificationWindow.vala:166 msgid "Ignore this update" msgstr "" -#: src/Utility/Gtk/AboutWindow.vala:272 src/Utility/Gtk/AboutWindow.vala:289 +#: src/Utility/Gtk/AboutWindow.vala:271 src/Utility/Gtk/AboutWindow.vala:288 msgid "Credits" msgstr "" -#: src/Utility/Gtk/AboutWindow.vala:285 +#: src/Utility/Gtk/AboutWindow.vala:284 msgid "Back" msgstr "" -#: src/Utility/Gtk/AboutWindow.vala:314 +#: src/Utility/Gtk/AboutWindow.vala:313 msgid "Authors" msgstr "" -#: src/Utility/Gtk/AboutWindow.vala:322 +#: src/Utility/Gtk/AboutWindow.vala:321 msgid "Contributions" msgstr "" -#: src/Utility/Gtk/AboutWindow.vala:330 +#: src/Utility/Gtk/AboutWindow.vala:329 msgid "Third Party Tools" msgstr "" -#: src/Utility/Gtk/AboutWindow.vala:338 +#: src/Utility/Gtk/AboutWindow.vala:337 msgid "Artists" msgstr "" -#: src/Utility/Gtk/AboutWindow.vala:346 +#: src/Utility/Gtk/AboutWindow.vala:345 msgid "Translators" msgstr "" -#: src/Utility/Gtk/AboutWindow.vala:354 +#: src/Utility/Gtk/AboutWindow.vala:353 msgid "Documenters" msgstr "" -#: src/Utility/Gtk/CustomMessageDialog.vala:159 +#: src/Utility/Gtk/CustomMessageDialog.vala:157 msgid "Yes" msgstr "" -#: src/Utility/Gtk/CustomMessageDialog.vala:160 +#: src/Utility/Gtk/CustomMessageDialog.vala:158 msgid "No" msgstr "" diff --git a/po/nl.po b/po/nl.po index deccdddf..9a6081c6 100644 --- a/po/nl.po +++ b/po/nl.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu 2.2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-02 23:39-0400\n" +"POT-Creation-Date: 2020-05-06 15:08-0400\n" "PO-Revision-Date: 2017-04-30 11:50+0200\n" "Last-Translator: Heimen Stoffels \n" "Language-Team: \n" @@ -70,7 +70,7 @@ msgid "Latest point update" msgstr "" #: src/Common/LinuxKernel.vala:796 src/Console/AppConsole.vala:371 -#: src/Console/AppConsole.vala:429 src/Gtk/MainWindow.vala:804 +#: src/Console/AppConsole.vala:429 src/Gtk/MainWindow.vala:798 msgid "No updates found" msgstr "Geen updates gevonden" @@ -104,8 +104,8 @@ msgid "Downloading" msgstr "Bezig met downloaden" #: src/Common/LinuxKernel.vala:1229 -#: src/Utility/Gtk/CustomMessageDialog.vala:150 -#: src/Utility/Gtk/CustomMessageDialog.vala:154 +#: src/Utility/Gtk/CustomMessageDialog.vala:148 +#: src/Utility/Gtk/CustomMessageDialog.vala:152 msgid "OK" msgstr "Oké" @@ -113,7 +113,7 @@ msgstr "Oké" msgid "ERROR" msgstr "FOUT" -#: src/Common/LinuxKernel.vala:1252 src/Gtk/MainWindow.vala:689 +#: src/Common/LinuxKernel.vala:1252 src/Gtk/MainWindow.vala:685 msgid "This kernel is already installed." msgstr "Deze kernel is al geïnstalleerd." @@ -213,7 +213,7 @@ msgstr "Opgegeven mainline-kernel installeren" msgid "Remove specified kernel" msgstr "Opgegeven mainline-kernel verwijderen" -#: src/Console/AppConsole.vala:90 src/Gtk/MainWindow.vala:424 +#: src/Console/AppConsole.vala:90 src/Gtk/MainWindow.vala:422 msgid "Remove installed kernels older than running kernel" msgstr "" @@ -315,17 +315,17 @@ msgstr "Status" msgid "Refresh" msgstr "Verversen" -#: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:558 -#: src/Gtk/MainWindow.vala:694 src/Utility/TeeJee.System.vala:281 +#: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:554 +#: src/Gtk/MainWindow.vala:690 src/Utility/TeeJee.System.vala:281 msgid "Internet connection is not active" msgstr "U bent niet verbonden met het internet" -#: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:558 -#: src/Gtk/MainWindow.vala:694 +#: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:554 +#: src/Gtk/MainWindow.vala:690 msgid "No Internet" msgstr "Geen internetverbinding" -#: src/Gtk/MainWindow.vala:357 src/Gtk/UpdateNotificationWindow.vala:147 +#: src/Gtk/MainWindow.vala:357 src/Gtk/UpdateNotificationWindow.vala:145 msgid "Install" msgstr "Installeren" @@ -353,160 +353,160 @@ msgstr "Verwijderen" msgid "Select the kernels to remove" msgstr "Selecteer de te verwijderen kernels" -#: src/Gtk/MainWindow.vala:423 +#: src/Gtk/MainWindow.vala:421 msgid "Purge" msgstr "" -#: src/Gtk/MainWindow.vala:462 +#: src/Gtk/MainWindow.vala:458 msgid "Changes" msgstr "Wijzigingen" -#: src/Gtk/MainWindow.vala:473 src/Gtk/SettingsDialog.vala:55 +#: src/Gtk/MainWindow.vala:469 src/Gtk/SettingsDialog.vala:53 msgid "Settings" msgstr "Instellingen" -#: src/Gtk/MainWindow.vala:494 +#: src/Gtk/MainWindow.vala:490 msgid "About" msgstr "Over" -#: src/Gtk/MainWindow.vala:542 +#: src/Gtk/MainWindow.vala:538 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Kernel-upgradehulpmiddel voor op Ubuntu-gebaseerde distributies" -#: src/Gtk/MainWindow.vala:577 +#: src/Gtk/MainWindow.vala:573 msgid "Refreshing..." msgstr "Bezig met verversen..." -#: src/Gtk/ProgressWindow.vala:145 src/Gtk/TerminalWindow.vala:148 -#: src/Gtk/UpdateNotificationWindow.vala:167 -#: src/Utility/Gtk/CustomMessageDialog.vala:155 +#: src/Gtk/ProgressWindow.vala:144 src/Gtk/TerminalWindow.vala:149 +#: src/Gtk/UpdateNotificationWindow.vala:165 +#: src/Utility/Gtk/CustomMessageDialog.vala:153 msgid "Cancel" msgstr "Annuleren" -#: src/Gtk/SettingsDialog.vala:65 +#: src/Gtk/SettingsDialog.vala:63 msgid "Notification" msgstr "Melding" -#: src/Gtk/SettingsDialog.vala:72 +#: src/Gtk/SettingsDialog.vala:70 msgid "Notify if a major release is available" msgstr "Melding weergeven als er een grote update beschikbaar is" -#: src/Gtk/SettingsDialog.vala:83 +#: src/Gtk/SettingsDialog.vala:81 msgid "Notify if a point release is available" msgstr "Melding weergeven als er een puntupdate beschikbaar is" -#: src/Gtk/SettingsDialog.vala:94 +#: src/Gtk/SettingsDialog.vala:92 msgid "Show notification bubble on desktop" msgstr "Bureaubladmelding weergeven" -#: src/Gtk/SettingsDialog.vala:105 +#: src/Gtk/SettingsDialog.vala:103 msgid "Show notification dialog" msgstr "Meldingsvenster weergeven" -#: src/Gtk/SettingsDialog.vala:120 +#: src/Gtk/SettingsDialog.vala:118 msgid "Check every" msgstr "Controleer elke" -#: src/Gtk/SettingsDialog.vala:151 +#: src/Gtk/SettingsDialog.vala:149 msgid "Hour(s)" msgstr "uur" -#: src/Gtk/SettingsDialog.vala:153 +#: src/Gtk/SettingsDialog.vala:151 msgid "Day(s)" msgstr "dag(en)" -#: src/Gtk/SettingsDialog.vala:155 +#: src/Gtk/SettingsDialog.vala:153 msgid "Week(s)" msgstr "we(e)k(en)" -#: src/Gtk/SettingsDialog.vala:160 +#: src/Gtk/SettingsDialog.vala:158 msgid "Display" msgstr "Weergave" -#: src/Gtk/SettingsDialog.vala:168 +#: src/Gtk/SettingsDialog.vala:166 msgid "Hide unstable and RC releases" msgstr "Instabiele en RC-uitgaven verbergen" -#: src/Gtk/SettingsDialog.vala:182 +#: src/Gtk/SettingsDialog.vala:180 msgid "Show N previous major versions " msgstr "" -#: src/Gtk/SettingsDialog.vala:197 +#: src/Gtk/SettingsDialog.vala:195 msgid "Other" msgstr "" -#: src/Gtk/SettingsDialog.vala:205 +#: src/Gtk/SettingsDialog.vala:203 #, fuzzy msgid "Skip internet connection check" msgstr "U bent niet verbonden met het internet" -#: src/Gtk/SettingsDialog.vala:218 +#: src/Gtk/SettingsDialog.vala:216 #, fuzzy msgid "Internet connection timeout in " msgstr "U bent niet verbonden met het internet" -#: src/Gtk/SettingsDialog.vala:232 +#: src/Gtk/SettingsDialog.vala:230 msgid "seconds" msgstr "" -#: src/Gtk/TerminalWindow.vala:158 src/Utility/Gtk/AboutWindow.vala:295 +#: src/Gtk/TerminalWindow.vala:159 src/Utility/Gtk/AboutWindow.vala:294 msgid "Close" msgstr "Sluiten" -#: src/Gtk/UpdateNotificationWindow.vala:148 +#: src/Gtk/UpdateNotificationWindow.vala:146 msgid "Install this kernel" msgstr "Deze kernel installeren" -#: src/Gtk/UpdateNotificationWindow.vala:157 +#: src/Gtk/UpdateNotificationWindow.vala:155 msgid "Show" msgstr "" -#: src/Gtk/UpdateNotificationWindow.vala:158 +#: src/Gtk/UpdateNotificationWindow.vala:156 #, fuzzy msgid "List available kernels" msgstr "Alle beschikbare mainline-kernels weergeven" -#: src/Gtk/UpdateNotificationWindow.vala:168 +#: src/Gtk/UpdateNotificationWindow.vala:166 msgid "Ignore this update" msgstr "Deze update negeren" -#: src/Utility/Gtk/AboutWindow.vala:272 src/Utility/Gtk/AboutWindow.vala:289 +#: src/Utility/Gtk/AboutWindow.vala:271 src/Utility/Gtk/AboutWindow.vala:288 msgid "Credits" msgstr "Met dank aan" -#: src/Utility/Gtk/AboutWindow.vala:285 +#: src/Utility/Gtk/AboutWindow.vala:284 msgid "Back" msgstr "Terug" -#: src/Utility/Gtk/AboutWindow.vala:314 +#: src/Utility/Gtk/AboutWindow.vala:313 msgid "Authors" msgstr "Auteurs" -#: src/Utility/Gtk/AboutWindow.vala:322 +#: src/Utility/Gtk/AboutWindow.vala:321 msgid "Contributions" msgstr "Bijdragen" -#: src/Utility/Gtk/AboutWindow.vala:330 +#: src/Utility/Gtk/AboutWindow.vala:329 msgid "Third Party Tools" msgstr "Externe hulpmiddelen" -#: src/Utility/Gtk/AboutWindow.vala:338 +#: src/Utility/Gtk/AboutWindow.vala:337 msgid "Artists" msgstr "Artiesten" -#: src/Utility/Gtk/AboutWindow.vala:346 +#: src/Utility/Gtk/AboutWindow.vala:345 msgid "Translators" msgstr "Vertalers" -#: src/Utility/Gtk/AboutWindow.vala:354 +#: src/Utility/Gtk/AboutWindow.vala:353 msgid "Documenters" msgstr "Documenteerders" -#: src/Utility/Gtk/CustomMessageDialog.vala:159 +#: src/Utility/Gtk/CustomMessageDialog.vala:157 msgid "Yes" msgstr "" -#: src/Utility/Gtk/CustomMessageDialog.vala:160 +#: src/Utility/Gtk/CustomMessageDialog.vala:158 msgid "No" msgstr "" diff --git a/po/pl.po b/po/pl.po index f812d8c3..5f83f4f4 100644 --- a/po/pl.po +++ b/po/pl.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-02 23:39-0400\n" +"POT-Creation-Date: 2020-05-06 15:08-0400\n" "PO-Revision-Date: 2017-08-12 15:26+0200\n" "Last-Translator: Waldemar Konik \n" "Language-Team: Polish\n" @@ -68,7 +68,7 @@ msgid "Latest point update" msgstr "" #: src/Common/LinuxKernel.vala:796 src/Console/AppConsole.vala:371 -#: src/Console/AppConsole.vala:429 src/Gtk/MainWindow.vala:804 +#: src/Console/AppConsole.vala:429 src/Gtk/MainWindow.vala:798 msgid "No updates found" msgstr "Nie znaleziono aktualizacji" @@ -102,8 +102,8 @@ msgid "Downloading" msgstr "Pobieranie" #: src/Common/LinuxKernel.vala:1229 -#: src/Utility/Gtk/CustomMessageDialog.vala:150 -#: src/Utility/Gtk/CustomMessageDialog.vala:154 +#: src/Utility/Gtk/CustomMessageDialog.vala:148 +#: src/Utility/Gtk/CustomMessageDialog.vala:152 msgid "OK" msgstr "OK" @@ -111,7 +111,7 @@ msgstr "OK" msgid "ERROR" msgstr "BŁĄD" -#: src/Common/LinuxKernel.vala:1252 src/Gtk/MainWindow.vala:689 +#: src/Common/LinuxKernel.vala:1252 src/Gtk/MainWindow.vala:685 msgid "This kernel is already installed." msgstr "To jądro jest już zainstalowane." @@ -210,7 +210,7 @@ msgstr "Zainstaluj wybrane jądro" msgid "Remove specified kernel" msgstr "Usuń wybrane jądro" -#: src/Console/AppConsole.vala:90 src/Gtk/MainWindow.vala:424 +#: src/Console/AppConsole.vala:90 src/Gtk/MainWindow.vala:422 msgid "Remove installed kernels older than running kernel" msgstr "" @@ -309,17 +309,17 @@ msgstr "Status" msgid "Refresh" msgstr "Odśwież" -#: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:558 -#: src/Gtk/MainWindow.vala:694 src/Utility/TeeJee.System.vala:281 +#: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:554 +#: src/Gtk/MainWindow.vala:690 src/Utility/TeeJee.System.vala:281 msgid "Internet connection is not active" msgstr "Brak połączenia z internetem" -#: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:558 -#: src/Gtk/MainWindow.vala:694 +#: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:554 +#: src/Gtk/MainWindow.vala:690 msgid "No Internet" msgstr "Brak internetu" -#: src/Gtk/MainWindow.vala:357 src/Gtk/UpdateNotificationWindow.vala:147 +#: src/Gtk/MainWindow.vala:357 src/Gtk/UpdateNotificationWindow.vala:145 msgid "Install" msgstr "Zainstaluj" @@ -347,160 +347,160 @@ msgstr "Usuń" msgid "Select the kernels to remove" msgstr "Wybierz jądro do usunięcia" -#: src/Gtk/MainWindow.vala:423 +#: src/Gtk/MainWindow.vala:421 msgid "Purge" msgstr "" -#: src/Gtk/MainWindow.vala:462 +#: src/Gtk/MainWindow.vala:458 msgid "Changes" msgstr "Zmiany" -#: src/Gtk/MainWindow.vala:473 src/Gtk/SettingsDialog.vala:55 +#: src/Gtk/MainWindow.vala:469 src/Gtk/SettingsDialog.vala:53 msgid "Settings" msgstr "Ustawienia" -#: src/Gtk/MainWindow.vala:494 +#: src/Gtk/MainWindow.vala:490 msgid "About" msgstr "O programie" -#: src/Gtk/MainWindow.vala:542 +#: src/Gtk/MainWindow.vala:538 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Narzędzie uaktualniania jądra dla dystrybucji z rodziny Ubuntu" -#: src/Gtk/MainWindow.vala:577 +#: src/Gtk/MainWindow.vala:573 msgid "Refreshing..." msgstr "Odświeżam..." -#: src/Gtk/ProgressWindow.vala:145 src/Gtk/TerminalWindow.vala:148 -#: src/Gtk/UpdateNotificationWindow.vala:167 -#: src/Utility/Gtk/CustomMessageDialog.vala:155 +#: src/Gtk/ProgressWindow.vala:144 src/Gtk/TerminalWindow.vala:149 +#: src/Gtk/UpdateNotificationWindow.vala:165 +#: src/Utility/Gtk/CustomMessageDialog.vala:153 msgid "Cancel" msgstr "Anuluj" -#: src/Gtk/SettingsDialog.vala:65 +#: src/Gtk/SettingsDialog.vala:63 msgid "Notification" msgstr "Powiadomienia" -#: src/Gtk/SettingsDialog.vala:72 +#: src/Gtk/SettingsDialog.vala:70 msgid "Notify if a major release is available" msgstr "Powiadom, jeśli pojawi się główna wersja" -#: src/Gtk/SettingsDialog.vala:83 +#: src/Gtk/SettingsDialog.vala:81 msgid "Notify if a point release is available" msgstr "Powiadom, jeśli pojawi się wersja punktowa" -#: src/Gtk/SettingsDialog.vala:94 +#: src/Gtk/SettingsDialog.vala:92 msgid "Show notification bubble on desktop" msgstr "Pokaż powiadomienia na pulpicie" -#: src/Gtk/SettingsDialog.vala:105 +#: src/Gtk/SettingsDialog.vala:103 msgid "Show notification dialog" msgstr "Pokaż okno powiadomień" -#: src/Gtk/SettingsDialog.vala:120 +#: src/Gtk/SettingsDialog.vala:118 msgid "Check every" msgstr "Sprawdzaj co" -#: src/Gtk/SettingsDialog.vala:151 +#: src/Gtk/SettingsDialog.vala:149 msgid "Hour(s)" msgstr "Godzin(y)" -#: src/Gtk/SettingsDialog.vala:153 +#: src/Gtk/SettingsDialog.vala:151 msgid "Day(s)" msgstr "Dni" -#: src/Gtk/SettingsDialog.vala:155 +#: src/Gtk/SettingsDialog.vala:153 msgid "Week(s)" msgstr "Tygodni" -#: src/Gtk/SettingsDialog.vala:160 +#: src/Gtk/SettingsDialog.vala:158 msgid "Display" msgstr "Pokaż" -#: src/Gtk/SettingsDialog.vala:168 +#: src/Gtk/SettingsDialog.vala:166 msgid "Hide unstable and RC releases" msgstr "Ukryj wydania niestabilne i RC" -#: src/Gtk/SettingsDialog.vala:182 +#: src/Gtk/SettingsDialog.vala:180 msgid "Show N previous major versions " msgstr "" -#: src/Gtk/SettingsDialog.vala:197 +#: src/Gtk/SettingsDialog.vala:195 msgid "Other" msgstr "" -#: src/Gtk/SettingsDialog.vala:205 +#: src/Gtk/SettingsDialog.vala:203 #, fuzzy msgid "Skip internet connection check" msgstr "Brak połączenia z internetem" -#: src/Gtk/SettingsDialog.vala:218 +#: src/Gtk/SettingsDialog.vala:216 #, fuzzy msgid "Internet connection timeout in " msgstr "Brak połączenia z internetem" -#: src/Gtk/SettingsDialog.vala:232 +#: src/Gtk/SettingsDialog.vala:230 msgid "seconds" msgstr "" -#: src/Gtk/TerminalWindow.vala:158 src/Utility/Gtk/AboutWindow.vala:295 +#: src/Gtk/TerminalWindow.vala:159 src/Utility/Gtk/AboutWindow.vala:294 msgid "Close" msgstr "Zamknij" -#: src/Gtk/UpdateNotificationWindow.vala:148 +#: src/Gtk/UpdateNotificationWindow.vala:146 msgid "Install this kernel" msgstr "Zainstaluj to jądro" -#: src/Gtk/UpdateNotificationWindow.vala:157 +#: src/Gtk/UpdateNotificationWindow.vala:155 msgid "Show" msgstr "" -#: src/Gtk/UpdateNotificationWindow.vala:158 +#: src/Gtk/UpdateNotificationWindow.vala:156 #, fuzzy msgid "List available kernels" msgstr "Pokaż wszystkie dostępne jądra" -#: src/Gtk/UpdateNotificationWindow.vala:168 +#: src/Gtk/UpdateNotificationWindow.vala:166 msgid "Ignore this update" msgstr "Zignoruj tę aktualizację" -#: src/Utility/Gtk/AboutWindow.vala:272 src/Utility/Gtk/AboutWindow.vala:289 +#: src/Utility/Gtk/AboutWindow.vala:271 src/Utility/Gtk/AboutWindow.vala:288 msgid "Credits" msgstr "Zasługi" -#: src/Utility/Gtk/AboutWindow.vala:285 +#: src/Utility/Gtk/AboutWindow.vala:284 msgid "Back" msgstr "Wstecz" -#: src/Utility/Gtk/AboutWindow.vala:314 +#: src/Utility/Gtk/AboutWindow.vala:313 msgid "Authors" msgstr "Аutorzy" -#: src/Utility/Gtk/AboutWindow.vala:322 +#: src/Utility/Gtk/AboutWindow.vala:321 msgid "Contributions" msgstr "Wkład" -#: src/Utility/Gtk/AboutWindow.vala:330 +#: src/Utility/Gtk/AboutWindow.vala:329 msgid "Third Party Tools" msgstr "Narzędzia osób trzecich" -#: src/Utility/Gtk/AboutWindow.vala:338 +#: src/Utility/Gtk/AboutWindow.vala:337 msgid "Artists" msgstr "Artyści" -#: src/Utility/Gtk/AboutWindow.vala:346 +#: src/Utility/Gtk/AboutWindow.vala:345 msgid "Translators" msgstr "Tłumacze" -#: src/Utility/Gtk/AboutWindow.vala:354 +#: src/Utility/Gtk/AboutWindow.vala:353 msgid "Documenters" msgstr "Dokumentujący" -#: src/Utility/Gtk/CustomMessageDialog.vala:159 +#: src/Utility/Gtk/CustomMessageDialog.vala:157 msgid "Yes" msgstr "" -#: src/Utility/Gtk/CustomMessageDialog.vala:160 +#: src/Utility/Gtk/CustomMessageDialog.vala:158 msgid "No" msgstr "" diff --git a/po/ru.po b/po/ru.po index fbe0d4a1..802e2450 100644 --- a/po/ru.po +++ b/po/ru.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-02 23:39-0400\n" +"POT-Creation-Date: 2020-05-06 15:08-0400\n" "PO-Revision-Date: 2016-12-13 16:46+0300\n" "Last-Translator: Faust3000 \n" "Language-Team: Russian \n" @@ -70,7 +70,7 @@ msgid "Latest point update" msgstr "" #: src/Common/LinuxKernel.vala:796 src/Console/AppConsole.vala:371 -#: src/Console/AppConsole.vala:429 src/Gtk/MainWindow.vala:804 +#: src/Console/AppConsole.vala:429 src/Gtk/MainWindow.vala:798 msgid "No updates found" msgstr "Обновлений не найдено" @@ -106,8 +106,8 @@ msgid "Downloading" msgstr "Загрузка" #: src/Common/LinuxKernel.vala:1229 -#: src/Utility/Gtk/CustomMessageDialog.vala:150 -#: src/Utility/Gtk/CustomMessageDialog.vala:154 +#: src/Utility/Gtk/CustomMessageDialog.vala:148 +#: src/Utility/Gtk/CustomMessageDialog.vala:152 msgid "OK" msgstr "OK" @@ -115,7 +115,7 @@ msgstr "OK" msgid "ERROR" msgstr "ОШИБКА" -#: src/Common/LinuxKernel.vala:1252 src/Gtk/MainWindow.vala:689 +#: src/Common/LinuxKernel.vala:1252 src/Gtk/MainWindow.vala:685 msgid "This kernel is already installed." msgstr "Это ядро уже установлено." @@ -215,7 +215,7 @@ msgstr "Установить указанную ветку ядра" msgid "Remove specified kernel" msgstr "Удалить указанную ветку ядра" -#: src/Console/AppConsole.vala:90 src/Gtk/MainWindow.vala:424 +#: src/Console/AppConsole.vala:90 src/Gtk/MainWindow.vala:422 msgid "Remove installed kernels older than running kernel" msgstr "Удалить более старшие установленные ядра, чем используемое" @@ -314,17 +314,17 @@ msgstr "Состояние" msgid "Refresh" msgstr "Обновить" -#: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:558 -#: src/Gtk/MainWindow.vala:694 src/Utility/TeeJee.System.vala:281 +#: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:554 +#: src/Gtk/MainWindow.vala:690 src/Utility/TeeJee.System.vala:281 msgid "Internet connection is not active" msgstr "Интернет соединение не активно" -#: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:558 -#: src/Gtk/MainWindow.vala:694 +#: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:554 +#: src/Gtk/MainWindow.vala:690 msgid "No Internet" msgstr "" -#: src/Gtk/MainWindow.vala:357 src/Gtk/UpdateNotificationWindow.vala:147 +#: src/Gtk/MainWindow.vala:357 src/Gtk/UpdateNotificationWindow.vala:145 msgid "Install" msgstr "Установить" @@ -352,160 +352,160 @@ msgstr "Удалить" msgid "Select the kernels to remove" msgstr "" -#: src/Gtk/MainWindow.vala:423 +#: src/Gtk/MainWindow.vala:421 msgid "Purge" msgstr "Очистить" -#: src/Gtk/MainWindow.vala:462 +#: src/Gtk/MainWindow.vala:458 msgid "Changes" msgstr "Изменения" -#: src/Gtk/MainWindow.vala:473 src/Gtk/SettingsDialog.vala:55 +#: src/Gtk/MainWindow.vala:469 src/Gtk/SettingsDialog.vala:53 msgid "Settings" msgstr "Настройки" -#: src/Gtk/MainWindow.vala:494 +#: src/Gtk/MainWindow.vala:490 msgid "About" msgstr "О программе" -#: src/Gtk/MainWindow.vala:542 +#: src/Gtk/MainWindow.vala:538 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Программа обновления ядра для дистрибутивов на базе Ubuntu" -#: src/Gtk/MainWindow.vala:577 +#: src/Gtk/MainWindow.vala:573 msgid "Refreshing..." msgstr "Обновление..." -#: src/Gtk/ProgressWindow.vala:145 src/Gtk/TerminalWindow.vala:148 -#: src/Gtk/UpdateNotificationWindow.vala:167 -#: src/Utility/Gtk/CustomMessageDialog.vala:155 +#: src/Gtk/ProgressWindow.vala:144 src/Gtk/TerminalWindow.vala:149 +#: src/Gtk/UpdateNotificationWindow.vala:165 +#: src/Utility/Gtk/CustomMessageDialog.vala:153 msgid "Cancel" msgstr "Отмена" -#: src/Gtk/SettingsDialog.vala:65 +#: src/Gtk/SettingsDialog.vala:63 msgid "Notification" msgstr "Уведомления" -#: src/Gtk/SettingsDialog.vala:72 +#: src/Gtk/SettingsDialog.vala:70 msgid "Notify if a major release is available" msgstr "Уведомлять, если доступно крупное обновление" -#: src/Gtk/SettingsDialog.vala:83 +#: src/Gtk/SettingsDialog.vala:81 msgid "Notify if a point release is available" msgstr "Уведомлять, если доступно небольшое обновление" -#: src/Gtk/SettingsDialog.vala:94 +#: src/Gtk/SettingsDialog.vala:92 msgid "Show notification bubble on desktop" msgstr "Показывать окно оповещений на рабочем столе" -#: src/Gtk/SettingsDialog.vala:105 +#: src/Gtk/SettingsDialog.vala:103 msgid "Show notification dialog" msgstr "Показывать окно оповещений" -#: src/Gtk/SettingsDialog.vala:120 +#: src/Gtk/SettingsDialog.vala:118 msgid "Check every" msgstr "Проверять каждые" -#: src/Gtk/SettingsDialog.vala:151 +#: src/Gtk/SettingsDialog.vala:149 msgid "Hour(s)" msgstr "Час(ов)" -#: src/Gtk/SettingsDialog.vala:153 +#: src/Gtk/SettingsDialog.vala:151 msgid "Day(s)" msgstr "День(дней)" -#: src/Gtk/SettingsDialog.vala:155 +#: src/Gtk/SettingsDialog.vala:153 msgid "Week(s)" msgstr "Неделю(ли)" -#: src/Gtk/SettingsDialog.vala:160 +#: src/Gtk/SettingsDialog.vala:158 msgid "Display" msgstr "Вид" -#: src/Gtk/SettingsDialog.vala:168 +#: src/Gtk/SettingsDialog.vala:166 msgid "Hide unstable and RC releases" msgstr "Скрыть нестабильные и релиз-кандидат версии" -#: src/Gtk/SettingsDialog.vala:182 +#: src/Gtk/SettingsDialog.vala:180 msgid "Show N previous major versions " msgstr "" -#: src/Gtk/SettingsDialog.vala:197 +#: src/Gtk/SettingsDialog.vala:195 msgid "Other" msgstr "" -#: src/Gtk/SettingsDialog.vala:205 +#: src/Gtk/SettingsDialog.vala:203 #, fuzzy msgid "Skip internet connection check" msgstr "Интернет соединение не активно" -#: src/Gtk/SettingsDialog.vala:218 +#: src/Gtk/SettingsDialog.vala:216 #, fuzzy msgid "Internet connection timeout in " msgstr "Интернет соединение не активно" -#: src/Gtk/SettingsDialog.vala:232 +#: src/Gtk/SettingsDialog.vala:230 msgid "seconds" msgstr "" -#: src/Gtk/TerminalWindow.vala:158 src/Utility/Gtk/AboutWindow.vala:295 +#: src/Gtk/TerminalWindow.vala:159 src/Utility/Gtk/AboutWindow.vala:294 msgid "Close" msgstr "Закрыть" -#: src/Gtk/UpdateNotificationWindow.vala:148 +#: src/Gtk/UpdateNotificationWindow.vala:146 msgid "Install this kernel" msgstr "Установить это ядро" -#: src/Gtk/UpdateNotificationWindow.vala:157 +#: src/Gtk/UpdateNotificationWindow.vala:155 msgid "Show" msgstr "" -#: src/Gtk/UpdateNotificationWindow.vala:158 +#: src/Gtk/UpdateNotificationWindow.vala:156 #, fuzzy msgid "List available kernels" msgstr "Список всех доступных основных ядер" -#: src/Gtk/UpdateNotificationWindow.vala:168 +#: src/Gtk/UpdateNotificationWindow.vala:166 msgid "Ignore this update" msgstr "Игнорировать это обновление" -#: src/Utility/Gtk/AboutWindow.vala:272 src/Utility/Gtk/AboutWindow.vala:289 +#: src/Utility/Gtk/AboutWindow.vala:271 src/Utility/Gtk/AboutWindow.vala:288 msgid "Credits" msgstr "Создатели" -#: src/Utility/Gtk/AboutWindow.vala:285 +#: src/Utility/Gtk/AboutWindow.vala:284 msgid "Back" msgstr "Назад" -#: src/Utility/Gtk/AboutWindow.vala:314 +#: src/Utility/Gtk/AboutWindow.vala:313 msgid "Authors" msgstr "Авторы" -#: src/Utility/Gtk/AboutWindow.vala:322 +#: src/Utility/Gtk/AboutWindow.vala:321 msgid "Contributions" msgstr "Взносы" -#: src/Utility/Gtk/AboutWindow.vala:330 +#: src/Utility/Gtk/AboutWindow.vala:329 msgid "Third Party Tools" msgstr "Сторонние инструменты" -#: src/Utility/Gtk/AboutWindow.vala:338 +#: src/Utility/Gtk/AboutWindow.vala:337 msgid "Artists" msgstr "Художники" -#: src/Utility/Gtk/AboutWindow.vala:346 +#: src/Utility/Gtk/AboutWindow.vala:345 msgid "Translators" msgstr "Переводчики" -#: src/Utility/Gtk/AboutWindow.vala:354 +#: src/Utility/Gtk/AboutWindow.vala:353 msgid "Documenters" msgstr "Составители документации" -#: src/Utility/Gtk/CustomMessageDialog.vala:159 +#: src/Utility/Gtk/CustomMessageDialog.vala:157 msgid "Yes" msgstr "" -#: src/Utility/Gtk/CustomMessageDialog.vala:160 +#: src/Utility/Gtk/CustomMessageDialog.vala:158 msgid "No" msgstr "" diff --git a/po/sv.po b/po/sv.po index 96e8750b..467a9405 100644 --- a/po/sv.po +++ b/po/sv.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu 2.2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-02 23:39-0400\n" +"POT-Creation-Date: 2020-05-06 15:08-0400\n" "PO-Revision-Date: 2018-01-13 16:56+0100\n" "Last-Translator: Åke Engelbrektson \n" "Language-Team: Svenska Språkfiler \n" @@ -71,7 +71,7 @@ msgid "Latest point update" msgstr "" #: src/Common/LinuxKernel.vala:796 src/Console/AppConsole.vala:371 -#: src/Console/AppConsole.vala:429 src/Gtk/MainWindow.vala:804 +#: src/Console/AppConsole.vala:429 src/Gtk/MainWindow.vala:798 msgid "No updates found" msgstr "Inga uppdateringar hittades" @@ -105,8 +105,8 @@ msgid "Downloading" msgstr "Laddar ner" #: src/Common/LinuxKernel.vala:1229 -#: src/Utility/Gtk/CustomMessageDialog.vala:150 -#: src/Utility/Gtk/CustomMessageDialog.vala:154 +#: src/Utility/Gtk/CustomMessageDialog.vala:148 +#: src/Utility/Gtk/CustomMessageDialog.vala:152 msgid "OK" msgstr "OK" @@ -114,7 +114,7 @@ msgstr "OK" msgid "ERROR" msgstr "FEL" -#: src/Common/LinuxKernel.vala:1252 src/Gtk/MainWindow.vala:689 +#: src/Common/LinuxKernel.vala:1252 src/Gtk/MainWindow.vala:685 msgid "This kernel is already installed." msgstr "Denna kärna är redan installerad" @@ -211,7 +211,7 @@ msgstr "Installera specificerad kärna" msgid "Remove specified kernel" msgstr "Ta bort specificerad kärna" -#: src/Console/AppConsole.vala:90 src/Gtk/MainWindow.vala:424 +#: src/Console/AppConsole.vala:90 src/Gtk/MainWindow.vala:422 msgid "Remove installed kernels older than running kernel" msgstr "Ta bort installerade kärnor äldre än den som körs" @@ -309,17 +309,17 @@ msgstr "Status" msgid "Refresh" msgstr "Uppdatera" -#: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:558 -#: src/Gtk/MainWindow.vala:694 src/Utility/TeeJee.System.vala:281 +#: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:554 +#: src/Gtk/MainWindow.vala:690 src/Utility/TeeJee.System.vala:281 msgid "Internet connection is not active" msgstr "Internetuppkopplingen är inte aktiv" -#: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:558 -#: src/Gtk/MainWindow.vala:694 +#: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:554 +#: src/Gtk/MainWindow.vala:690 msgid "No Internet" msgstr "Inget internet" -#: src/Gtk/MainWindow.vala:357 src/Gtk/UpdateNotificationWindow.vala:147 +#: src/Gtk/MainWindow.vala:357 src/Gtk/UpdateNotificationWindow.vala:145 msgid "Install" msgstr "Installera" @@ -347,159 +347,159 @@ msgstr "Ta bort" msgid "Select the kernels to remove" msgstr "Välj kärnor för borttagning" -#: src/Gtk/MainWindow.vala:423 +#: src/Gtk/MainWindow.vala:421 msgid "Purge" msgstr "Rensa" -#: src/Gtk/MainWindow.vala:462 +#: src/Gtk/MainWindow.vala:458 msgid "Changes" msgstr "Ändringar" -#: src/Gtk/MainWindow.vala:473 src/Gtk/SettingsDialog.vala:55 +#: src/Gtk/MainWindow.vala:469 src/Gtk/SettingsDialog.vala:53 msgid "Settings" msgstr "Inställningar" -#: src/Gtk/MainWindow.vala:494 +#: src/Gtk/MainWindow.vala:490 msgid "About" msgstr "Om" -#: src/Gtk/MainWindow.vala:542 +#: src/Gtk/MainWindow.vala:538 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Kärnuppgraderingsverktyg för Ubuntu-baserade distributioner" -#: src/Gtk/MainWindow.vala:577 +#: src/Gtk/MainWindow.vala:573 msgid "Refreshing..." msgstr "Uppdaterar ..." -#: src/Gtk/ProgressWindow.vala:145 src/Gtk/TerminalWindow.vala:148 -#: src/Gtk/UpdateNotificationWindow.vala:167 -#: src/Utility/Gtk/CustomMessageDialog.vala:155 +#: src/Gtk/ProgressWindow.vala:144 src/Gtk/TerminalWindow.vala:149 +#: src/Gtk/UpdateNotificationWindow.vala:165 +#: src/Utility/Gtk/CustomMessageDialog.vala:153 msgid "Cancel" msgstr "Avbryt" -#: src/Gtk/SettingsDialog.vala:65 +#: src/Gtk/SettingsDialog.vala:63 msgid "Notification" msgstr "Avisering" -#: src/Gtk/SettingsDialog.vala:72 +#: src/Gtk/SettingsDialog.vala:70 msgid "Notify if a major release is available" msgstr "Meddela om en ny (stor) uppdatering finns tillgänglig" -#: src/Gtk/SettingsDialog.vala:83 +#: src/Gtk/SettingsDialog.vala:81 msgid "Notify if a point release is available" msgstr "Meddela om en ny (mindre) uppdatering finns tillgänglig" -#: src/Gtk/SettingsDialog.vala:94 +#: src/Gtk/SettingsDialog.vala:92 msgid "Show notification bubble on desktop" msgstr "Visa aviseringsruta på skrivbordet" -#: src/Gtk/SettingsDialog.vala:105 +#: src/Gtk/SettingsDialog.vala:103 msgid "Show notification dialog" msgstr "Visa aviseringsdialog" -#: src/Gtk/SettingsDialog.vala:120 +#: src/Gtk/SettingsDialog.vala:118 msgid "Check every" msgstr "Kontrollera varje" -#: src/Gtk/SettingsDialog.vala:151 +#: src/Gtk/SettingsDialog.vala:149 msgid "Hour(s)" msgstr "Timma(r)" -#: src/Gtk/SettingsDialog.vala:153 +#: src/Gtk/SettingsDialog.vala:151 msgid "Day(s)" msgstr "Dag(ar)" -#: src/Gtk/SettingsDialog.vala:155 +#: src/Gtk/SettingsDialog.vala:153 msgid "Week(s)" msgstr "Veckor" -#: src/Gtk/SettingsDialog.vala:160 +#: src/Gtk/SettingsDialog.vala:158 msgid "Display" msgstr "Visa" -#: src/Gtk/SettingsDialog.vala:168 +#: src/Gtk/SettingsDialog.vala:166 msgid "Hide unstable and RC releases" msgstr "Dölj instabila- och RC-publiceringar" -#: src/Gtk/SettingsDialog.vala:182 +#: src/Gtk/SettingsDialog.vala:180 msgid "Show N previous major versions " msgstr "" -#: src/Gtk/SettingsDialog.vala:197 +#: src/Gtk/SettingsDialog.vala:195 msgid "Other" msgstr "" -#: src/Gtk/SettingsDialog.vala:205 +#: src/Gtk/SettingsDialog.vala:203 #, fuzzy msgid "Skip internet connection check" msgstr "Internetuppkopplingen är inte aktiv" -#: src/Gtk/SettingsDialog.vala:218 +#: src/Gtk/SettingsDialog.vala:216 #, fuzzy msgid "Internet connection timeout in " msgstr "Internetuppkopplingen är inte aktiv" -#: src/Gtk/SettingsDialog.vala:232 +#: src/Gtk/SettingsDialog.vala:230 msgid "seconds" msgstr "" -#: src/Gtk/TerminalWindow.vala:158 src/Utility/Gtk/AboutWindow.vala:295 +#: src/Gtk/TerminalWindow.vala:159 src/Utility/Gtk/AboutWindow.vala:294 msgid "Close" msgstr "Stäng" -#: src/Gtk/UpdateNotificationWindow.vala:148 +#: src/Gtk/UpdateNotificationWindow.vala:146 msgid "Install this kernel" msgstr "Installera denna kärna" -#: src/Gtk/UpdateNotificationWindow.vala:157 +#: src/Gtk/UpdateNotificationWindow.vala:155 msgid "Show" msgstr "Visa" -#: src/Gtk/UpdateNotificationWindow.vala:158 +#: src/Gtk/UpdateNotificationWindow.vala:156 msgid "List available kernels" msgstr "Lista tillgängliga kärnor" -#: src/Gtk/UpdateNotificationWindow.vala:168 +#: src/Gtk/UpdateNotificationWindow.vala:166 msgid "Ignore this update" msgstr "Undanta denna uppdatering" -#: src/Utility/Gtk/AboutWindow.vala:272 src/Utility/Gtk/AboutWindow.vala:289 +#: src/Utility/Gtk/AboutWindow.vala:271 src/Utility/Gtk/AboutWindow.vala:288 msgid "Credits" msgstr "Tack" -#: src/Utility/Gtk/AboutWindow.vala:285 +#: src/Utility/Gtk/AboutWindow.vala:284 msgid "Back" msgstr "Tillbaka" -#: src/Utility/Gtk/AboutWindow.vala:314 +#: src/Utility/Gtk/AboutWindow.vala:313 msgid "Authors" msgstr "Utvecklare" -#: src/Utility/Gtk/AboutWindow.vala:322 +#: src/Utility/Gtk/AboutWindow.vala:321 msgid "Contributions" msgstr "Bidrag" -#: src/Utility/Gtk/AboutWindow.vala:330 +#: src/Utility/Gtk/AboutWindow.vala:329 msgid "Third Party Tools" msgstr "Tredjepartsverktyg" -#: src/Utility/Gtk/AboutWindow.vala:338 +#: src/Utility/Gtk/AboutWindow.vala:337 msgid "Artists" msgstr "Artister" -#: src/Utility/Gtk/AboutWindow.vala:346 +#: src/Utility/Gtk/AboutWindow.vala:345 msgid "Translators" msgstr "Översättare" -#: src/Utility/Gtk/AboutWindow.vala:354 +#: src/Utility/Gtk/AboutWindow.vala:353 msgid "Documenters" msgstr "Dokumentalister" -#: src/Utility/Gtk/CustomMessageDialog.vala:159 +#: src/Utility/Gtk/CustomMessageDialog.vala:157 msgid "Yes" msgstr "Ja" -#: src/Utility/Gtk/CustomMessageDialog.vala:160 +#: src/Utility/Gtk/CustomMessageDialog.vala:158 msgid "No" msgstr "Nej" diff --git a/po/tr.po b/po/tr.po index b12015b1..32afc8b6 100644 --- a/po/tr.po +++ b/po/tr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-02 23:39-0400\n" +"POT-Creation-Date: 2020-05-06 15:08-0400\n" "PO-Revision-Date: 2020-03-10 15:59+0300\n" "Last-Translator: Gökhan GÖKKAYA \n" "Language-Team: Turkish\n" @@ -67,7 +67,7 @@ msgid "Latest point update" msgstr "Son güncelleme noktası" #: src/Common/LinuxKernel.vala:796 src/Console/AppConsole.vala:371 -#: src/Console/AppConsole.vala:429 src/Gtk/MainWindow.vala:804 +#: src/Console/AppConsole.vala:429 src/Gtk/MainWindow.vala:798 msgid "No updates found" msgstr "Güncelleme bulunamadı" @@ -101,8 +101,8 @@ msgid "Downloading" msgstr "İndiriliyor" #: src/Common/LinuxKernel.vala:1229 -#: src/Utility/Gtk/CustomMessageDialog.vala:150 -#: src/Utility/Gtk/CustomMessageDialog.vala:154 +#: src/Utility/Gtk/CustomMessageDialog.vala:148 +#: src/Utility/Gtk/CustomMessageDialog.vala:152 msgid "OK" msgstr "TAMAM" @@ -110,7 +110,7 @@ msgstr "TAMAM" msgid "ERROR" msgstr "HATA" -#: src/Common/LinuxKernel.vala:1252 src/Gtk/MainWindow.vala:689 +#: src/Common/LinuxKernel.vala:1252 src/Gtk/MainWindow.vala:685 msgid "This kernel is already installed." msgstr "Bu çekirdek zaten kurulu." @@ -204,7 +204,7 @@ msgstr "Belirtilen mainline çekirdeğini kur" msgid "Remove specified kernel" msgstr "Belirtilen çekirdeği kaldır" -#: src/Console/AppConsole.vala:90 src/Gtk/MainWindow.vala:424 +#: src/Console/AppConsole.vala:90 src/Gtk/MainWindow.vala:422 msgid "Remove installed kernels older than running kernel" msgstr "Çalışan çekirdekten eski olan kurulu çekirdekleri kaldır" @@ -301,17 +301,17 @@ msgstr "Durum" msgid "Refresh" msgstr "Yenile" -#: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:558 -#: src/Gtk/MainWindow.vala:694 src/Utility/TeeJee.System.vala:281 +#: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:554 +#: src/Gtk/MainWindow.vala:690 src/Utility/TeeJee.System.vala:281 msgid "Internet connection is not active" msgstr "İnternet bağlantısı aktif değil" -#: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:558 -#: src/Gtk/MainWindow.vala:694 +#: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:554 +#: src/Gtk/MainWindow.vala:690 msgid "No Internet" msgstr "İnternet Yok" -#: src/Gtk/MainWindow.vala:357 src/Gtk/UpdateNotificationWindow.vala:147 +#: src/Gtk/MainWindow.vala:357 src/Gtk/UpdateNotificationWindow.vala:145 msgid "Install" msgstr "Kur" @@ -339,157 +339,157 @@ msgstr "Sil" msgid "Select the kernels to remove" msgstr "Kaldırma için çekirdek seçin" -#: src/Gtk/MainWindow.vala:423 +#: src/Gtk/MainWindow.vala:421 msgid "Purge" msgstr "Temizle" -#: src/Gtk/MainWindow.vala:462 +#: src/Gtk/MainWindow.vala:458 msgid "Changes" msgstr "Değişiklikler" -#: src/Gtk/MainWindow.vala:473 src/Gtk/SettingsDialog.vala:55 +#: src/Gtk/MainWindow.vala:469 src/Gtk/SettingsDialog.vala:53 msgid "Settings" msgstr "Ayarlar" -#: src/Gtk/MainWindow.vala:494 +#: src/Gtk/MainWindow.vala:490 msgid "About" msgstr "Hakkında" -#: src/Gtk/MainWindow.vala:542 +#: src/Gtk/MainWindow.vala:538 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Ubuntu tabanlı dağıtımlar için çekirdek güncelleme aracı" -#: src/Gtk/MainWindow.vala:577 +#: src/Gtk/MainWindow.vala:573 msgid "Refreshing..." msgstr "Yenileniyor..." -#: src/Gtk/ProgressWindow.vala:145 src/Gtk/TerminalWindow.vala:148 -#: src/Gtk/UpdateNotificationWindow.vala:167 -#: src/Utility/Gtk/CustomMessageDialog.vala:155 +#: src/Gtk/ProgressWindow.vala:144 src/Gtk/TerminalWindow.vala:149 +#: src/Gtk/UpdateNotificationWindow.vala:165 +#: src/Utility/Gtk/CustomMessageDialog.vala:153 msgid "Cancel" msgstr "İptal" -#: src/Gtk/SettingsDialog.vala:65 +#: src/Gtk/SettingsDialog.vala:63 msgid "Notification" msgstr "Bildirim" -#: src/Gtk/SettingsDialog.vala:72 +#: src/Gtk/SettingsDialog.vala:70 msgid "Notify if a major release is available" msgstr "Ana sürüm mevcutsa bildir" -#: src/Gtk/SettingsDialog.vala:83 +#: src/Gtk/SettingsDialog.vala:81 msgid "Notify if a point release is available" msgstr "Ara sürüm mevcutsa bildir" -#: src/Gtk/SettingsDialog.vala:94 +#: src/Gtk/SettingsDialog.vala:92 msgid "Show notification bubble on desktop" msgstr "Masaüstünde bildirim baloncuğu göster" -#: src/Gtk/SettingsDialog.vala:105 +#: src/Gtk/SettingsDialog.vala:103 msgid "Show notification dialog" msgstr "Bildirim iletişimini göster" -#: src/Gtk/SettingsDialog.vala:120 +#: src/Gtk/SettingsDialog.vala:118 msgid "Check every" msgstr "Kontrol aralığı" -#: src/Gtk/SettingsDialog.vala:151 +#: src/Gtk/SettingsDialog.vala:149 msgid "Hour(s)" msgstr "Saat" -#: src/Gtk/SettingsDialog.vala:153 +#: src/Gtk/SettingsDialog.vala:151 msgid "Day(s)" msgstr "Gün" -#: src/Gtk/SettingsDialog.vala:155 +#: src/Gtk/SettingsDialog.vala:153 msgid "Week(s)" msgstr "Hafta" -#: src/Gtk/SettingsDialog.vala:160 +#: src/Gtk/SettingsDialog.vala:158 msgid "Display" msgstr "Gösterim" -#: src/Gtk/SettingsDialog.vala:168 +#: src/Gtk/SettingsDialog.vala:166 msgid "Hide unstable and RC releases" msgstr "Kararsız ve RC sürümleri gizle" -#: src/Gtk/SettingsDialog.vala:182 +#: src/Gtk/SettingsDialog.vala:180 msgid "Show N previous major versions " msgstr "Önceki ana sürümleri gösterme sayısı " -#: src/Gtk/SettingsDialog.vala:197 +#: src/Gtk/SettingsDialog.vala:195 msgid "Other" msgstr "Diğer" -#: src/Gtk/SettingsDialog.vala:205 +#: src/Gtk/SettingsDialog.vala:203 msgid "Skip internet connection check" msgstr "İnternet bağlantı kontrolünü atla" -#: src/Gtk/SettingsDialog.vala:218 +#: src/Gtk/SettingsDialog.vala:216 msgid "Internet connection timeout in " msgstr "İnternet bağlantısı zaman aşımı " -#: src/Gtk/SettingsDialog.vala:232 +#: src/Gtk/SettingsDialog.vala:230 msgid "seconds" msgstr "saniye" -#: src/Gtk/TerminalWindow.vala:158 src/Utility/Gtk/AboutWindow.vala:295 +#: src/Gtk/TerminalWindow.vala:159 src/Utility/Gtk/AboutWindow.vala:294 msgid "Close" msgstr "Kapat" -#: src/Gtk/UpdateNotificationWindow.vala:148 +#: src/Gtk/UpdateNotificationWindow.vala:146 msgid "Install this kernel" msgstr "Bu çekirdeği kur" -#: src/Gtk/UpdateNotificationWindow.vala:157 +#: src/Gtk/UpdateNotificationWindow.vala:155 msgid "Show" msgstr "Göster" -#: src/Gtk/UpdateNotificationWindow.vala:158 +#: src/Gtk/UpdateNotificationWindow.vala:156 msgid "List available kernels" msgstr "Tüm çekirdekleri listele" -#: src/Gtk/UpdateNotificationWindow.vala:168 +#: src/Gtk/UpdateNotificationWindow.vala:166 msgid "Ignore this update" msgstr "Bu güncellemeyi yoksay" -#: src/Utility/Gtk/AboutWindow.vala:272 src/Utility/Gtk/AboutWindow.vala:289 +#: src/Utility/Gtk/AboutWindow.vala:271 src/Utility/Gtk/AboutWindow.vala:288 msgid "Credits" msgstr "Katkı sağlayanlar" -#: src/Utility/Gtk/AboutWindow.vala:285 +#: src/Utility/Gtk/AboutWindow.vala:284 msgid "Back" msgstr "Geri" -#: src/Utility/Gtk/AboutWindow.vala:314 +#: src/Utility/Gtk/AboutWindow.vala:313 msgid "Authors" msgstr "Yazar" -#: src/Utility/Gtk/AboutWindow.vala:322 +#: src/Utility/Gtk/AboutWindow.vala:321 msgid "Contributions" msgstr "Destek verenler" -#: src/Utility/Gtk/AboutWindow.vala:330 +#: src/Utility/Gtk/AboutWindow.vala:329 msgid "Third Party Tools" msgstr "Üçüncü Parti Araçlar" -#: src/Utility/Gtk/AboutWindow.vala:338 +#: src/Utility/Gtk/AboutWindow.vala:337 msgid "Artists" msgstr "Sanatçılar" -#: src/Utility/Gtk/AboutWindow.vala:346 +#: src/Utility/Gtk/AboutWindow.vala:345 msgid "Translators" msgstr "Çevirenler" -#: src/Utility/Gtk/AboutWindow.vala:354 +#: src/Utility/Gtk/AboutWindow.vala:353 msgid "Documenters" msgstr "Belgelendirenler" -#: src/Utility/Gtk/CustomMessageDialog.vala:159 +#: src/Utility/Gtk/CustomMessageDialog.vala:157 msgid "Yes" msgstr "Evet" -#: src/Utility/Gtk/CustomMessageDialog.vala:160 +#: src/Utility/Gtk/CustomMessageDialog.vala:158 msgid "No" msgstr "Hayır" diff --git a/po/uk.po b/po/uk.po index f763ca0f..cc1b7523 100644 --- a/po/uk.po +++ b/po/uk.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-02 23:39-0400\n" +"POT-Creation-Date: 2020-05-06 15:08-0400\n" "PO-Revision-Date: 2019-07-25 11:00+0300\n" "Last-Translator: Serhii Golovko \n" "Language-Team: Ukranian \n" @@ -62,7 +62,7 @@ msgid "Latest point update" msgstr "Остання точка оновлення" #: src/Common/LinuxKernel.vala:796 src/Console/AppConsole.vala:371 -#: src/Console/AppConsole.vala:429 src/Gtk/MainWindow.vala:804 +#: src/Console/AppConsole.vala:429 src/Gtk/MainWindow.vala:798 msgid "No updates found" msgstr "Оновлень не знайдено" @@ -96,8 +96,8 @@ msgid "Downloading" msgstr "Завантаження" #: src/Common/LinuxKernel.vala:1229 -#: src/Utility/Gtk/CustomMessageDialog.vala:150 -#: src/Utility/Gtk/CustomMessageDialog.vala:154 +#: src/Utility/Gtk/CustomMessageDialog.vala:148 +#: src/Utility/Gtk/CustomMessageDialog.vala:152 msgid "OK" msgstr "OK" @@ -105,7 +105,7 @@ msgstr "OK" msgid "ERROR" msgstr "ПОМИЛКА" -#: src/Common/LinuxKernel.vala:1252 src/Gtk/MainWindow.vala:689 +#: src/Common/LinuxKernel.vala:1252 src/Gtk/MainWindow.vala:685 msgid "This kernel is already installed." msgstr "Это ядро уже установлено." @@ -200,7 +200,7 @@ msgstr "Встановити зазначену гілку ядра" msgid "Remove specified kernel" msgstr "Видаліть вказане ядро" -#: src/Console/AppConsole.vala:90 src/Gtk/MainWindow.vala:424 +#: src/Console/AppConsole.vala:90 src/Gtk/MainWindow.vala:422 msgid "Remove installed kernels older than running kernel" msgstr "Видаліть встановлені ядра, старші за запущене" @@ -297,17 +297,17 @@ msgstr "Стан" msgid "Refresh" msgstr "Оновити" -#: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:558 -#: src/Gtk/MainWindow.vala:694 src/Utility/TeeJee.System.vala:281 +#: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:554 +#: src/Gtk/MainWindow.vala:690 src/Utility/TeeJee.System.vala:281 msgid "Internet connection is not active" msgstr "Інтернет з'єднання не активно" -#: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:558 -#: src/Gtk/MainWindow.vala:694 +#: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:554 +#: src/Gtk/MainWindow.vala:690 msgid "No Internet" msgstr "Інтернету немає" -#: src/Gtk/MainWindow.vala:357 src/Gtk/UpdateNotificationWindow.vala:147 +#: src/Gtk/MainWindow.vala:357 src/Gtk/UpdateNotificationWindow.vala:145 msgid "Install" msgstr "Встановити" @@ -335,157 +335,157 @@ msgstr "Видалити" msgid "Select the kernels to remove" msgstr "Виберіть ядра для видалення" -#: src/Gtk/MainWindow.vala:423 +#: src/Gtk/MainWindow.vala:421 msgid "Purge" msgstr "Чистити" -#: src/Gtk/MainWindow.vala:462 +#: src/Gtk/MainWindow.vala:458 msgid "Changes" msgstr "Зміни" -#: src/Gtk/MainWindow.vala:473 src/Gtk/SettingsDialog.vala:55 +#: src/Gtk/MainWindow.vala:469 src/Gtk/SettingsDialog.vala:53 msgid "Settings" msgstr "Налаштування" -#: src/Gtk/MainWindow.vala:494 +#: src/Gtk/MainWindow.vala:490 msgid "About" msgstr "Про программу" -#: src/Gtk/MainWindow.vala:542 +#: src/Gtk/MainWindow.vala:538 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Програма оновлення ядра для дистрибутивів на базі Ubuntu" -#: src/Gtk/MainWindow.vala:577 +#: src/Gtk/MainWindow.vala:573 msgid "Refreshing..." msgstr "Оновлення..." -#: src/Gtk/ProgressWindow.vala:145 src/Gtk/TerminalWindow.vala:148 -#: src/Gtk/UpdateNotificationWindow.vala:167 -#: src/Utility/Gtk/CustomMessageDialog.vala:155 +#: src/Gtk/ProgressWindow.vala:144 src/Gtk/TerminalWindow.vala:149 +#: src/Gtk/UpdateNotificationWindow.vala:165 +#: src/Utility/Gtk/CustomMessageDialog.vala:153 msgid "Cancel" msgstr "Відміна" -#: src/Gtk/SettingsDialog.vala:65 +#: src/Gtk/SettingsDialog.vala:63 msgid "Notification" msgstr "Повідомлення" -#: src/Gtk/SettingsDialog.vala:72 +#: src/Gtk/SettingsDialog.vala:70 msgid "Notify if a major release is available" msgstr "Повідомити, чи доступний великий випуск" -#: src/Gtk/SettingsDialog.vala:83 +#: src/Gtk/SettingsDialog.vala:81 msgid "Notify if a point release is available" msgstr "Повідомити, чи доступний невеликий випуск" -#: src/Gtk/SettingsDialog.vala:94 +#: src/Gtk/SettingsDialog.vala:92 msgid "Show notification bubble on desktop" msgstr "Показувати вікно сповіщень на робочому столі" -#: src/Gtk/SettingsDialog.vala:105 +#: src/Gtk/SettingsDialog.vala:103 msgid "Show notification dialog" msgstr "Показувати вікно сповіщень" -#: src/Gtk/SettingsDialog.vala:120 +#: src/Gtk/SettingsDialog.vala:118 msgid "Check every" msgstr "Перевіряти кожні" -#: src/Gtk/SettingsDialog.vala:151 +#: src/Gtk/SettingsDialog.vala:149 msgid "Hour(s)" msgstr "Година(дин)" -#: src/Gtk/SettingsDialog.vala:153 +#: src/Gtk/SettingsDialog.vala:151 msgid "Day(s)" msgstr "День(днів)" -#: src/Gtk/SettingsDialog.vala:155 +#: src/Gtk/SettingsDialog.vala:153 msgid "Week(s)" msgstr "Тиждень (ні)" -#: src/Gtk/SettingsDialog.vala:160 +#: src/Gtk/SettingsDialog.vala:158 msgid "Display" msgstr "Вид" -#: src/Gtk/SettingsDialog.vala:168 +#: src/Gtk/SettingsDialog.vala:166 msgid "Hide unstable and RC releases" msgstr "Приховати нестабільні і реліз-кандидат версії" -#: src/Gtk/SettingsDialog.vala:182 +#: src/Gtk/SettingsDialog.vala:180 msgid "Show N previous major versions " msgstr "" -#: src/Gtk/SettingsDialog.vala:197 +#: src/Gtk/SettingsDialog.vala:195 msgid "Other" msgstr "Інший" -#: src/Gtk/SettingsDialog.vala:205 +#: src/Gtk/SettingsDialog.vala:203 msgid "Skip internet connection check" msgstr "Пропустити перевірку підключення до Інтернету" -#: src/Gtk/SettingsDialog.vala:218 +#: src/Gtk/SettingsDialog.vala:216 msgid "Internet connection timeout in " msgstr "Час очікування підключення до Інтернету в " -#: src/Gtk/SettingsDialog.vala:232 +#: src/Gtk/SettingsDialog.vala:230 msgid "seconds" msgstr "секунди" -#: src/Gtk/TerminalWindow.vala:158 src/Utility/Gtk/AboutWindow.vala:295 +#: src/Gtk/TerminalWindow.vala:159 src/Utility/Gtk/AboutWindow.vala:294 msgid "Close" msgstr "Закрити" -#: src/Gtk/UpdateNotificationWindow.vala:148 +#: src/Gtk/UpdateNotificationWindow.vala:146 msgid "Install this kernel" msgstr "Встановити це ядро" -#: src/Gtk/UpdateNotificationWindow.vala:157 +#: src/Gtk/UpdateNotificationWindow.vala:155 msgid "Show" msgstr "Показати" -#: src/Gtk/UpdateNotificationWindow.vala:158 +#: src/Gtk/UpdateNotificationWindow.vala:156 msgid "List available kernels" msgstr "Список всіх доступних основних ядер" -#: src/Gtk/UpdateNotificationWindow.vala:168 +#: src/Gtk/UpdateNotificationWindow.vala:166 msgid "Ignore this update" msgstr "Ігнорувати це оновлення" -#: src/Utility/Gtk/AboutWindow.vala:272 src/Utility/Gtk/AboutWindow.vala:289 +#: src/Utility/Gtk/AboutWindow.vala:271 src/Utility/Gtk/AboutWindow.vala:288 msgid "Credits" msgstr "Творці" -#: src/Utility/Gtk/AboutWindow.vala:285 +#: src/Utility/Gtk/AboutWindow.vala:284 msgid "Back" msgstr "Назад" -#: src/Utility/Gtk/AboutWindow.vala:314 +#: src/Utility/Gtk/AboutWindow.vala:313 msgid "Authors" msgstr "Автори" -#: src/Utility/Gtk/AboutWindow.vala:322 +#: src/Utility/Gtk/AboutWindow.vala:321 msgid "Contributions" msgstr "Внески" -#: src/Utility/Gtk/AboutWindow.vala:330 +#: src/Utility/Gtk/AboutWindow.vala:329 msgid "Third Party Tools" msgstr "Сторонние инструменты" -#: src/Utility/Gtk/AboutWindow.vala:338 +#: src/Utility/Gtk/AboutWindow.vala:337 msgid "Artists" msgstr "Художники" -#: src/Utility/Gtk/AboutWindow.vala:346 +#: src/Utility/Gtk/AboutWindow.vala:345 msgid "Translators" msgstr "Перекладачи" -#: src/Utility/Gtk/AboutWindow.vala:354 +#: src/Utility/Gtk/AboutWindow.vala:353 msgid "Documenters" msgstr "Укладачі документації" -#: src/Utility/Gtk/CustomMessageDialog.vala:159 +#: src/Utility/Gtk/CustomMessageDialog.vala:157 msgid "Yes" msgstr "Так" -#: src/Utility/Gtk/CustomMessageDialog.vala:160 +#: src/Utility/Gtk/CustomMessageDialog.vala:158 msgid "No" msgstr "Ні" diff --git a/share/mainline/images/general.svg b/share/mainline/images/general.svg deleted file mode 100644 index 293f4ad2..00000000 --- a/share/mainline/images/general.svg +++ /dev/null @@ -1,211 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - diff --git a/share/mainline/images/help-info.svg b/share/mainline/images/help-info.svg deleted file mode 100644 index 5060514a..00000000 --- a/share/mainline/images/help-info.svg +++ /dev/null @@ -1,291 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - diff --git a/src/Gtk/MainWindow.vala b/src/Gtk/MainWindow.vala index 937009ab..080f0910 100644 --- a/src/Gtk/MainWindow.vala +++ b/src/Gtk/MainWindow.vala @@ -57,7 +57,7 @@ public class MainWindow : Gtk.Window{ title = BRANDING_LONGNAME; window_position = WindowPosition.CENTER; - icon = get_app_icon(16,".svg"); + icon = get_app_icon(16); // vbox_main vbox_main = new Gtk.Box(Orientation.VERTICAL, 6); @@ -382,7 +382,7 @@ public class MainWindow : Gtk.Window{ else if (selected_kernels.size > 0){ var term = new TerminalWindow.with_parent(this, false, true); - + term.script_complete.connect(()=>{ term.allow_window_close(); }); @@ -413,8 +413,6 @@ public class MainWindow : Gtk.Window{ sh += "echo ''\n"; sh += "echo 'Close window to exit...'\n"; - this.hide(); - term.execute_script(save_bash_script_temp(sh)); } }); @@ -453,8 +451,6 @@ public class MainWindow : Gtk.Window{ sh += "echo ''\n"; sh += "echo 'Close window to exit...'\n"; - this.hide(); - term.execute_script(save_bash_script_temp(sh)); }); @@ -695,8 +691,6 @@ public class MainWindow : Gtk.Window{ return; } - this.hide(); - var term = new TerminalWindow.with_parent(this, false, true); term.script_complete.connect(()=>{ diff --git a/src/Gtk/ProgressWindow.vala b/src/Gtk/ProgressWindow.vala index db197be3..0cfebdc4 100644 --- a/src/Gtk/ProgressWindow.vala +++ b/src/Gtk/ProgressWindow.vala @@ -57,14 +57,13 @@ public class ProgressWindow : Gtk.Window { set_transient_for(parent); set_modal(true); - set_skip_taskbar_hint(true); - set_skip_pager_hint(true); + set_decorated(false); set_type_hint(Gdk.WindowTypeHint.DIALOG); window_position = WindowPosition.CENTER; set_default_size(def_width, def_height); - icon = get_app_icon(16,".svg"); + icon = get_app_icon(16); App.status_line = ""; App.progress_count = 0; diff --git a/src/Gtk/SettingsDialog.vala b/src/Gtk/SettingsDialog.vala index d1d8587d..d9c7f25a 100644 --- a/src/Gtk/SettingsDialog.vala +++ b/src/Gtk/SettingsDialog.vala @@ -44,13 +44,11 @@ public class SettingsDialog : Gtk.Dialog { public SettingsDialog.with_parent(Window parent) { set_transient_for(parent); set_modal(true); - set_skip_taskbar_hint(true); - set_skip_pager_hint(true); window_position = WindowPosition.CENTER_ON_PARENT; deletable = false; resizable = false; - icon = get_app_icon(16,".svg"); + icon = get_app_icon(16); title = _("Settings"); diff --git a/src/Gtk/TerminalWindow.vala b/src/Gtk/TerminalWindow.vala index 3b2583d7..3e0eb6c5 100644 --- a/src/Gtk/TerminalWindow.vala +++ b/src/Gtk/TerminalWindow.vala @@ -56,6 +56,7 @@ public class TerminalWindow : Gtk.Window { set_transient_for(parent); parent_win = parent; } + set_modal(true); window_position = WindowPosition.CENTER; @@ -84,7 +85,7 @@ public class TerminalWindow : Gtk.Window { public void init_window () { - title = ""; + title = BRANDING_LONGNAME; icon = get_app_icon(16); resizable = true; deletable = false; diff --git a/src/Gtk/UpdateNotificationWindow.vala b/src/Gtk/UpdateNotificationWindow.vala index 288e37ef..db42af83 100644 --- a/src/Gtk/UpdateNotificationWindow.vala +++ b/src/Gtk/UpdateNotificationWindow.vala @@ -80,8 +80,6 @@ public class UpdateNotificationWindow : Gtk.Window { icon = get_app_icon(16); resizable = false; deletable = false; - //skip_taskbar_hint = true; - //skip_pager_hint = true; //vbox_main vbox_main = new Gtk.Box(Orientation.VERTICAL, 6); diff --git a/src/Utility/Gtk/AboutWindow.vala b/src/Utility/Gtk/AboutWindow.vala index 7f0e07c5..f0a03a08 100644 --- a/src/Utility/Gtk/AboutWindow.vala +++ b/src/Utility/Gtk/AboutWindow.vala @@ -191,7 +191,6 @@ public class AboutWindow : Dialog { window_position = WindowPosition.CENTER_ON_PARENT; set_destroy_with_parent (true); set_modal (true); - skip_taskbar_hint = false; set_default_size (450, 400); vbox_main = get_content_area(); diff --git a/src/Utility/Gtk/CustomMessageDialog.vala b/src/Utility/Gtk/CustomMessageDialog.vala index 21c9c4cd..18fe6996 100644 --- a/src/Utility/Gtk/CustomMessageDialog.vala +++ b/src/Utility/Gtk/CustomMessageDialog.vala @@ -79,13 +79,11 @@ public class CustomMessageDialog : Gtk.Dialog { public void init_window () { - this.title = ""; + this.title = BRANDING_LONGNAME; this.window_position = WindowPosition.CENTER_ON_PARENT; this.icon = get_app_icon(16); this.resizable = false; this.deletable = false; - this.skip_taskbar_hint = true; - this.skip_pager_hint = true; //vbox_main vbox_main = get_content_area () as Gtk.Box; diff --git a/src/Utility/Gtk/GtkHelper.vala b/src/Utility/Gtk/GtkHelper.vala index 83768145..92ce0c2d 100644 --- a/src/Utility/Gtk/GtkHelper.vala +++ b/src/Utility/Gtk/GtkHelper.vala @@ -50,7 +50,7 @@ namespace TeeJee.GtkHelper{ // icon ---------------------------------------------- - public Gdk.Pixbuf? get_app_icon(int icon_size, string format = ".png"){ + public Gdk.Pixbuf? get_app_icon(int icon_size, string format = ".svg"){ var img_icon = get_shared_icon(BRANDING_SHORTNAME, BRANDING_SHORTNAME + format,icon_size,"pixmaps"); if (img_icon != null){ return img_icon.pixbuf; From ddb42101b3bedccd8f49e6988c8eb0608db4c9ad Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Thu, 7 May 2020 00:34:37 -0400 Subject: [PATCH 076/567] update credits, fix uninstall target was missing -gtk bin and new lib dir --- .deb_build_number.mak | 4 +- AUTHORS | 3 + BRANDING.mak | 2 +- Makefile | 18 +- README.md | 4 +- README.md.src | 4 +- debian/changelog | 16 + lib/notify-send.sh/AUTHORS | 5 + lib/notify-send.sh/LICENSE | 675 ++++++++++++++++++++++++ lib/notify-send.sh/README.md | 82 +++ lib/notify-send.sh/notify-action.sh | 68 +++ lib/notify-send.sh/notify-send.sh | 316 +++++++++++ po/es.po | 150 +++--- po/fr.po | 150 +++--- po/hr.po | 150 +++--- po/messages.pot | 152 +++--- po/nl.po | 151 +++--- po/pl.po | 151 +++--- po/ru.po | 151 +++--- po/sv.po | 150 +++--- po/tr.po | 150 +++--- po/uk.po | 150 +++--- src/Common/Main.vala | 11 +- src/Console/AppConsole.vala | 31 +- src/{Utility => Console}/OSDNotify.vala | 35 +- src/Gtk/AppGtk.vala | 6 +- src/Gtk/MainWindow.vala | 83 +-- src/Gtk/SettingsDialog.vala | 12 - src/Gtk/UpdateNotificationWindow.vala | 179 ------- src/Utility/TeeJee.Process.vala | 11 +- 30 files changed, 1927 insertions(+), 1143 deletions(-) create mode 100644 lib/notify-send.sh/AUTHORS create mode 100644 lib/notify-send.sh/LICENSE create mode 100644 lib/notify-send.sh/README.md create mode 100755 lib/notify-send.sh/notify-action.sh create mode 100755 lib/notify-send.sh/notify-send.sh rename src/{Utility => Console}/OSDNotify.vala (68%) delete mode 100644 src/Gtk/UpdateNotificationWindow.vala diff --git a/.deb_build_number.mak b/.deb_build_number.mak index 3d3b0343..fad04238 100644 --- a/.deb_build_number.mak +++ b/.deb_build_number.mak @@ -1,3 +1,3 @@ # This file is generated by Makefile "make deb_build_number" -DEB_PKG_VERSION := 1.0.8 -DEB_BUILD_NUMBER := 0002 +DEB_PKG_VERSION := 1.0.9 +DEB_BUILD_NUMBER := 0001 diff --git a/AUTHORS b/AUTHORS index c54d6f56..6ff098d1 100644 --- a/AUTHORS +++ b/AUTHORS @@ -2,3 +2,6 @@ Tony George first version of all files Steven G revisions to SettingsDialog.vala Main.vala TeeJee.System.vala Cloyce D. Spradling revisions to LinuxKernel.vala AppConsole.vala Brian K. White revisions to many files + +3rd party inclusions: + notify-send.sh https://github.com/vlevit/notify-send.sh diff --git a/BRANDING.mak b/BRANDING.mak index b4fa967a..ce8fdf15 100644 --- a/BRANDING.mak +++ b/BRANDING.mak @@ -3,7 +3,7 @@ VERSION_MAJOR = 1 VERSION_MINOR = 0 -VERSION_MICRO = 8 +VERSION_MICRO = 9 BRANDING_SHORTNAME = mainline BRANDING_LONGNAME = Ubuntu Mainline Kernel Installer BRANDING_AUTHORNAME = Brian K. White diff --git a/Makefile b/Makefile index 4d76a673..03f8d324 100644 --- a/Makefile +++ b/Makefile @@ -9,6 +9,7 @@ CFLAGS := --std=c99 prefix := /usr bindir := $(prefix)/bin sharedir := $(prefix)/share +libdir := $(prefix)/lib localedir := $(sharedir)/locale launcherdir := $(sharedir)/applications #polkitdir := $(sharedir)/polkit-1/actions @@ -24,7 +25,8 @@ gee := gee-0.8 include BRANDING.mak BRANDING_VERSION := $(VERSION_MAJOR).$(VERSION_MINOR).$(VERSION_MICRO) -branding_symbols := -X -D'BRANDING_SHORTNAME="$(BRANDING_SHORTNAME)"' \ +build_symbols := -X -D'INSTALL_PREFIX="$(prefix)"' \ + -X -D'BRANDING_SHORTNAME="$(BRANDING_SHORTNAME)"' \ -X -D'BRANDING_LONGNAME="$(BRANDING_LONGNAME)"' \ -X -D'BRANDING_VERSION="$(BRANDING_VERSION)"' \ -X -D'BRANDING_AUTHORNAME="$(BRANDING_AUTHORNAME)"' \ @@ -60,12 +62,12 @@ deb_file = release/deb/$(BRANDING_SHORTNAME)_$(pkg_version).$(DEB_BUILD_NUMBER)_ all: $(BRANDING_SHORTNAME) $(BRANDING_SHORTNAME)-gtk $(BRANDING_SHORTNAME)-gtk: $(misc_files) $(common_vala_files) $(gui_vala_files) $(po_files) - valac -X -w $(branding_symbols) --Xcc="-lm" \ + valac -X -w $(build_symbols) --Xcc="-lm" \ --pkg $(glib) --pkg $(gio-unix) --pkg posix --pkg $(gee) --pkg $(json-glib) --pkg $(gtk+) --pkg $(vte) \ $(common_vala_files) $(gui_vala_files) -o $(@) $(BRANDING_SHORTNAME): $(misc_files) $(common_vala_files) $(tui_vala_files) $(po_files) - valac -X -w $(branding_symbols) --Xcc="-lm" \ + valac -X -w $(build_symbols) --Xcc="-lm" \ --pkg $(glib) --pkg $(gio-unix) --pkg posix --pkg $(gee) --pkg $(json-glib) \ $(common_vala_files) $(tui_vala_files) -o $(@) @@ -106,13 +108,13 @@ clean: install: all mkdir -p "$(DESTDIR)$(bindir)" mkdir -p "$(DESTDIR)$(sharedir)" + mkdir -p "$(DESTDIR)$(libdir)" mkdir -p "$(DESTDIR)$(man1dir)" mkdir -p "$(DESTDIR)$(launcherdir)" # mkdir -p "$(DESTDIR)$(polkitdir)" mkdir -p "$(DESTDIR)$(sharedir)/$(BRANDING_SHORTNAME)" + mkdir -p "$(DESTDIR)$(libdir)/$(BRANDING_SHORTNAME)" mkdir -p "$(DESTDIR)$(sharedir)/pixmaps" - install -m 0755 $(BRANDING_SHORTNAME) "$(DESTDIR)$(bindir)" - install -m 0755 $(BRANDING_SHORTNAME)-gtk "$(DESTDIR)$(bindir)" cp -dpr --no-preserve=ownership -t "$(DESTDIR)$(sharedir)/$(BRANDING_SHORTNAME)" share/$(BRANDING_SHORTNAME)/* chmod --recursive 0755 $(DESTDIR)$(sharedir)/$(BRANDING_SHORTNAME)/* # install -m 0644 share/polkit-1/actions/$(BRANDING_SHORTNAME).policy "$(DESTDIR)$(polkitdir)" @@ -123,12 +125,16 @@ install: all mkdir -p "$(DESTDIR)$(localedir)/$${l}/LC_MESSAGES"; \ msgfmt --check --verbose -o "$(DESTDIR)$(localedir)/$${l}/LC_MESSAGES/$(BRANDING_SHORTNAME).mo" $${p} ; \ done + cp -dpr --no-preserve=ownership -t "$(DESTDIR)$(libdir)/$(BRANDING_SHORTNAME)" lib/* + install -m 0755 $(BRANDING_SHORTNAME) "$(DESTDIR)$(bindir)" + install -m 0755 $(BRANDING_SHORTNAME)-gtk "$(DESTDIR)$(bindir)" .PHONY: uninstall uninstall: # $(BRANDING_SHORTNAME) --clean-cache - rm -f $(DESTDIR)$(bindir)/$(BRANDING_SHORTNAME) + rm -f $(DESTDIR)$(bindir)/$(BRANDING_SHORTNAME) $(DESTDIR)$(bindir)/$(BRANDING_SHORTNAME)-gtk rm -rf $(DESTDIR)$(sharedir)/$(BRANDING_SHORTNAME) + rm -rf $(DESTDIR)$(libdir)/$(BRANDING_SHORTNAME) # rm -f $(DESTDIR)$(polkitdir)/$(BRANDING_SHORTNAME).policy rm -f $(DESTDIR)$(launcherdir)/$(BRANDING_SHORTNAME).desktop rm -f $(DESTDIR)$(sharedir)/pixmaps/$(BRANDING_SHORTNAME).* diff --git a/README.md b/README.md index 99d068a0..432f5737 100644 --- a/README.md +++ b/README.md @@ -42,11 +42,11 @@ The original author stopped maintaining the original GPL version of ukuu and swi * Removed all GRUB options * Removed all donate buttons, links, dialogs * Remove source cruft +* Better temp and cache directory behavior +* Better desktop notification behavior ### Development Plans / TODO * More efficient downloading & caching of info about available kernels -Stop consuming over 5GB with kernel packages in ```~/.cache/``` -Until then, as a work-around, ```mainline --clean-cache``` deletes the cache * Better (more automatic) initial sizes for the window and the columns in the kernel list display so you don't have to manually expand them ...or at least, remember the sizes the user last set. * Clean up build warnings diff --git a/README.md.src b/README.md.src index f802ae34..35fcbbe9 100644 --- a/README.md.src +++ b/README.md.src @@ -42,11 +42,11 @@ The original author stopped maintaining the original GPL version of ukuu and swi * Removed all GRUB options * Removed all donate buttons, links, dialogs * Remove source cruft +* Better temp and cache directory behavior +* Better desktop notification behavior ### Development Plans / TODO * More efficient downloading & caching of info about available kernels -Stop consuming over 5GB with kernel packages in ```~/.cache/``` -Until then, as a work-around, ```BRANDING_SHORTNAME --clean-cache``` deletes the cache * Better (more automatic) initial sizes for the window and the columns in the kernel list display so you don't have to manually expand them ...or at least, remember the sizes the user last set. * Clean up build warnings diff --git a/debian/changelog b/debian/changelog index fb962466..47fdc03f 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,19 @@ +mainline (1.0.9) unstable; urgency=medium + + * Improve desktop notifications + Remove the redundant --notify option from the gui app + Replace the use of "notify_send" with "notify_send.sh" + Make the desktop notification have the apps name & icon instead of "notify_send" + Make the desktop notification directly clickable to launch the app to install the new kernel + Localize the notification text + + * Improve temp directories + Stop making a top level "mainline" & "mainline-gtk" subdir under /tmp or ~/.temp, + with random dirs under that, which just creates permissions problems. + Now always generate /mainline_ + + -- Brian K. White Thu, 07 May 2020 00:01:27 -0400 + mainline (1.0.8) unstable; urgency=medium * Don't hide the terminal window from the taskbar or pager diff --git a/lib/notify-send.sh/AUTHORS b/lib/notify-send.sh/AUTHORS new file mode 100644 index 00000000..b33fb06d --- /dev/null +++ b/lib/notify-send.sh/AUTHORS @@ -0,0 +1,5 @@ +Vyacheslav Levit +Max Weller +bsilvereagle +nylen +Daniel Rudolf diff --git a/lib/notify-send.sh/LICENSE b/lib/notify-send.sh/LICENSE new file mode 100644 index 00000000..6b156fe1 --- /dev/null +++ b/lib/notify-send.sh/LICENSE @@ -0,0 +1,675 @@ +GNU GENERAL PUBLIC LICENSE + Version 3, 29 June 2007 + + Copyright (C) 2007 Free Software Foundation, Inc. + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The GNU General Public License is a free, copyleft license for +software and other kinds of works. + + The licenses for most software and other practical works are designed +to take away your freedom to share and change the works. By contrast, +the GNU General Public License is intended to guarantee your freedom to +share and change all versions of a program--to make sure it remains free +software for all its users. We, the Free Software Foundation, use the +GNU General Public License for most of our software; it applies also to +any other work released this way by its authors. You can apply it to +your programs, too. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +them if you wish), that you receive source code or can get it if you +want it, that you can change the software or use pieces of it in new +free programs, and that you know you can do these things. + + To protect your rights, we need to prevent others from denying you +these rights or asking you to surrender the rights. Therefore, you have +certain responsibilities if you distribute copies of the software, or if +you modify it: responsibilities to respect the freedom of others. + + For example, if you distribute copies of such a program, whether +gratis or for a fee, you must pass on to the recipients the same +freedoms that you received. You must make sure that they, too, receive +or can get the source code. And you must show them these terms so they +know their rights. + + Developers that use the GNU GPL protect your rights with two steps: +(1) assert copyright on the software, and (2) offer you this License +giving you legal permission to copy, distribute and/or modify it. + + For the developers' and authors' protection, the GPL clearly explains +that there is no warranty for this free software. For both users' and +authors' sake, the GPL requires that modified versions be marked as +changed, so that their problems will not be attributed erroneously to +authors of previous versions. + + Some devices are designed to deny users access to install or run +modified versions of the software inside them, although the manufacturer +can do so. This is fundamentally incompatible with the aim of +protecting users' freedom to change the software. The systematic +pattern of such abuse occurs in the area of products for individuals to +use, which is precisely where it is most unacceptable. Therefore, we +have designed this version of the GPL to prohibit the practice for those +products. If such problems arise substantially in other domains, we +stand ready to extend this provision to those domains in future versions +of the GPL, as needed to protect the freedom of users. + + Finally, every program is threatened constantly by software patents. +States should not allow patents to restrict development and use of +software on general-purpose computers, but in those that do, we wish to +avoid the special danger that patents applied to a free program could +make it effectively proprietary. To prevent this, the GPL assures that +patents cannot be used to render the program non-free. + + The precise terms and conditions for copying, distribution and +modification follow. + + TERMS AND CONDITIONS + + 0. Definitions. + + "This License" refers to version 3 of the GNU General Public License. + + "Copyright" also means copyright-like laws that apply to other kinds of +works, such as semiconductor masks. + + "The Program" refers to any copyrightable work licensed under this +License. Each licensee is addressed as "you". "Licensees" and +"recipients" may be individuals or organizations. + + To "modify" a work means to copy from or adapt all or part of the work +in a fashion requiring copyright permission, other than the making of an +exact copy. The resulting work is called a "modified version" of the +earlier work or a work "based on" the earlier work. + + A "covered work" means either the unmodified Program or a work based +on the Program. + + To "propagate" a work means to do anything with it that, without +permission, would make you directly or secondarily liable for +infringement under applicable copyright law, except executing it on a +computer or modifying a private copy. Propagation includes copying, +distribution (with or without modification), making available to the +public, and in some countries other activities as well. + + To "convey" a work means any kind of propagation that enables other +parties to make or receive copies. Mere interaction with a user through +a computer network, with no transfer of a copy, is not conveying. + + An interactive user interface displays "Appropriate Legal Notices" +to the extent that it includes a convenient and prominently visible +feature that (1) displays an appropriate copyright notice, and (2) +tells the user that there is no warranty for the work (except to the +extent that warranties are provided), that licensees may convey the +work under this License, and how to view a copy of this License. If +the interface presents a list of user commands or options, such as a +menu, a prominent item in the list meets this criterion. + + 1. Source Code. + + The "source code" for a work means the preferred form of the work +for making modifications to it. "Object code" means any non-source +form of a work. + + A "Standard Interface" means an interface that either is an official +standard defined by a recognized standards body, or, in the case of +interfaces specified for a particular programming language, one that +is widely used among developers working in that language. + + The "System Libraries" of an executable work include anything, other +than the work as a whole, that (a) is included in the normal form of +packaging a Major Component, but which is not part of that Major +Component, and (b) serves only to enable use of the work with that +Major Component, or to implement a Standard Interface for which an +implementation is available to the public in source code form. A +"Major Component", in this context, means a major essential component +(kernel, window system, and so on) of the specific operating system +(if any) on which the executable work runs, or a compiler used to +produce the work, or an object code interpreter used to run it. + + The "Corresponding Source" for a work in object code form means all +the source code needed to generate, install, and (for an executable +work) run the object code and to modify the work, including scripts to +control those activities. However, it does not include the work's +System Libraries, or general-purpose tools or generally available free +programs which are used unmodified in performing those activities but +which are not part of the work. For example, Corresponding Source +includes interface definition files associated with source files for +the work, and the source code for shared libraries and dynamically +linked subprograms that the work is specifically designed to require, +such as by intimate data communication or control flow between those +subprograms and other parts of the work. + + The Corresponding Source need not include anything that users +can regenerate automatically from other parts of the Corresponding +Source. + + The Corresponding Source for a work in source code form is that +same work. + + 2. Basic Permissions. + + All rights granted under this License are granted for the term of +copyright on the Program, and are irrevocable provided the stated +conditions are met. This License explicitly affirms your unlimited +permission to run the unmodified Program. The output from running a +covered work is covered by this License only if the output, given its +content, constitutes a covered work. This License acknowledges your +rights of fair use or other equivalent, as provided by copyright law. + + You may make, run and propagate covered works that you do not +convey, without conditions so long as your license otherwise remains +in force. You may convey covered works to others for the sole purpose +of having them make modifications exclusively for you, or provide you +with facilities for running those works, provided that you comply with +the terms of this License in conveying all material for which you do +not control copyright. Those thus making or running the covered works +for you must do so exclusively on your behalf, under your direction +and control, on terms that prohibit them from making any copies of +your copyrighted material outside their relationship with you. + + Conveying under any other circumstances is permitted solely under +the conditions stated below. Sublicensing is not allowed; section 10 +makes it unnecessary. + + 3. Protecting Users' Legal Rights From Anti-Circumvention Law. + + No covered work shall be deemed part of an effective technological +measure under any applicable law fulfilling obligations under article +11 of the WIPO copyright treaty adopted on 20 December 1996, or +similar laws prohibiting or restricting circumvention of such +measures. + + When you convey a covered work, you waive any legal power to forbid +circumvention of technological measures to the extent such circumvention +is effected by exercising rights under this License with respect to +the covered work, and you disclaim any intention to limit operation or +modification of the work as a means of enforcing, against the work's +users, your or third parties' legal rights to forbid circumvention of +technological measures. + + 4. Conveying Verbatim Copies. + + You may convey verbatim copies of the Program's source code as you +receive it, in any medium, provided that you conspicuously and +appropriately publish on each copy an appropriate copyright notice; +keep intact all notices stating that this License and any +non-permissive terms added in accord with section 7 apply to the code; +keep intact all notices of the absence of any warranty; and give all +recipients a copy of this License along with the Program. + + You may charge any price or no price for each copy that you convey, +and you may offer support or warranty protection for a fee. + + 5. Conveying Modified Source Versions. + + You may convey a work based on the Program, or the modifications to +produce it from the Program, in the form of source code under the +terms of section 4, provided that you also meet all of these conditions: + + a) The work must carry prominent notices stating that you modified + it, and giving a relevant date. + + b) The work must carry prominent notices stating that it is + released under this License and any conditions added under section + 7. This requirement modifies the requirement in section 4 to + "keep intact all notices". + + c) You must license the entire work, as a whole, under this + License to anyone who comes into possession of a copy. This + License will therefore apply, along with any applicable section 7 + additional terms, to the whole of the work, and all its parts, + regardless of how they are packaged. This License gives no + permission to license the work in any other way, but it does not + invalidate such permission if you have separately received it. + + d) If the work has interactive user interfaces, each must display + Appropriate Legal Notices; however, if the Program has interactive + interfaces that do not display Appropriate Legal Notices, your + work need not make them do so. + + A compilation of a covered work with other separate and independent +works, which are not by their nature extensions of the covered work, +and which are not combined with it such as to form a larger program, +in or on a volume of a storage or distribution medium, is called an +"aggregate" if the compilation and its resulting copyright are not +used to limit the access or legal rights of the compilation's users +beyond what the individual works permit. Inclusion of a covered work +in an aggregate does not cause this License to apply to the other +parts of the aggregate. + + 6. Conveying Non-Source Forms. + + You may convey a covered work in object code form under the terms +of sections 4 and 5, provided that you also convey the +machine-readable Corresponding Source under the terms of this License, +in one of these ways: + + a) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by the + Corresponding Source fixed on a durable physical medium + customarily used for software interchange. + + b) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by a + written offer, valid for at least three years and valid for as + long as you offer spare parts or customer support for that product + model, to give anyone who possesses the object code either (1) a + copy of the Corresponding Source for all the software in the + product that is covered by this License, on a durable physical + medium customarily used for software interchange, for a price no + more than your reasonable cost of physically performing this + conveying of source, or (2) access to copy the + Corresponding Source from a network server at no charge. + + c) Convey individual copies of the object code with a copy of the + written offer to provide the Corresponding Source. This + alternative is allowed only occasionally and noncommercially, and + only if you received the object code with such an offer, in accord + with subsection 6b. + + d) Convey the object code by offering access from a designated + place (gratis or for a charge), and offer equivalent access to the + Corresponding Source in the same way through the same place at no + further charge. You need not require recipients to copy the + Corresponding Source along with the object code. If the place to + copy the object code is a network server, the Corresponding Source + may be on a different server (operated by you or a third party) + that supports equivalent copying facilities, provided you maintain + clear directions next to the object code saying where to find the + Corresponding Source. Regardless of what server hosts the + Corresponding Source, you remain obligated to ensure that it is + available for as long as needed to satisfy these requirements. + + e) Convey the object code using peer-to-peer transmission, provided + you inform other peers where the object code and Corresponding + Source of the work are being offered to the general public at no + charge under subsection 6d. + + A separable portion of the object code, whose source code is excluded +from the Corresponding Source as a System Library, need not be +included in conveying the object code work. + + A "User Product" is either (1) a "consumer product", which means any +tangible personal property which is normally used for personal, family, +or household purposes, or (2) anything designed or sold for incorporation +into a dwelling. In determining whether a product is a consumer product, +doubtful cases shall be resolved in favor of coverage. For a particular +product received by a particular user, "normally used" refers to a +typical or common use of that class of product, regardless of the status +of the particular user or of the way in which the particular user +actually uses, or expects or is expected to use, the product. A product +is a consumer product regardless of whether the product has substantial +commercial, industrial or non-consumer uses, unless such uses represent +the only significant mode of use of the product. + + "Installation Information" for a User Product means any methods, +procedures, authorization keys, or other information required to install +and execute modified versions of a covered work in that User Product from +a modified version of its Corresponding Source. The information must +suffice to ensure that the continued functioning of the modified object +code is in no case prevented or interfered with solely because +modification has been made. + + If you convey an object code work under this section in, or with, or +specifically for use in, a User Product, and the conveying occurs as +part of a transaction in which the right of possession and use of the +User Product is transferred to the recipient in perpetuity or for a +fixed term (regardless of how the transaction is characterized), the +Corresponding Source conveyed under this section must be accompanied +by the Installation Information. But this requirement does not apply +if neither you nor any third party retains the ability to install +modified object code on the User Product (for example, the work has +been installed in ROM). + + The requirement to provide Installation Information does not include a +requirement to continue to provide support service, warranty, or updates +for a work that has been modified or installed by the recipient, or for +the User Product in which it has been modified or installed. Access to a +network may be denied when the modification itself materially and +adversely affects the operation of the network or violates the rules and +protocols for communication across the network. + + Corresponding Source conveyed, and Installation Information provided, +in accord with this section must be in a format that is publicly +documented (and with an implementation available to the public in +source code form), and must require no special password or key for +unpacking, reading or copying. + + 7. Additional Terms. + + "Additional permissions" are terms that supplement the terms of this +License by making exceptions from one or more of its conditions. +Additional permissions that are applicable to the entire Program shall +be treated as though they were included in this License, to the extent +that they are valid under applicable law. If additional permissions +apply only to part of the Program, that part may be used separately +under those permissions, but the entire Program remains governed by +this License without regard to the additional permissions. + + When you convey a copy of a covered work, you may at your option +remove any additional permissions from that copy, or from any part of +it. (Additional permissions may be written to require their own +removal in certain cases when you modify the work.) You may place +additional permissions on material, added by you to a covered work, +for which you have or can give appropriate copyright permission. + + Notwithstanding any other provision of this License, for material you +add to a covered work, you may (if authorized by the copyright holders of +that material) supplement the terms of this License with terms: + + a) Disclaiming warranty or limiting liability differently from the + terms of sections 15 and 16 of this License; or + + b) Requiring preservation of specified reasonable legal notices or + author attributions in that material or in the Appropriate Legal + Notices displayed by works containing it; or + + c) Prohibiting misrepresentation of the origin of that material, or + requiring that modified versions of such material be marked in + reasonable ways as different from the original version; or + + d) Limiting the use for publicity purposes of names of licensors or + authors of the material; or + + e) Declining to grant rights under trademark law for use of some + trade names, trademarks, or service marks; or + + f) Requiring indemnification of licensors and authors of that + material by anyone who conveys the material (or modified versions of + it) with contractual assumptions of liability to the recipient, for + any liability that these contractual assumptions directly impose on + those licensors and authors. + + All other non-permissive additional terms are considered "further +restrictions" within the meaning of section 10. If the Program as you +received it, or any part of it, contains a notice stating that it is +governed by this License along with a term that is a further +restriction, you may remove that term. If a license document contains +a further restriction but permits relicensing or conveying under this +License, you may add to a covered work material governed by the terms +of that license document, provided that the further restriction does +not survive such relicensing or conveying. + + If you add terms to a covered work in accord with this section, you +must place, in the relevant source files, a statement of the +additional terms that apply to those files, or a notice indicating +where to find the applicable terms. + + Additional terms, permissive or non-permissive, may be stated in the +form of a separately written license, or stated as exceptions; +the above requirements apply either way. + + 8. Termination. + + You may not propagate or modify a covered work except as expressly +provided under this License. Any attempt otherwise to propagate or +modify it is void, and will automatically terminate your rights under +this License (including any patent licenses granted under the third +paragraph of section 11). + + However, if you cease all violation of this License, then your +license from a particular copyright holder is reinstated (a) +provisionally, unless and until the copyright holder explicitly and +finally terminates your license, and (b) permanently, if the copyright +holder fails to notify you of the violation by some reasonable means +prior to 60 days after the cessation. + + Moreover, your license from a particular copyright holder is +reinstated permanently if the copyright holder notifies you of the +violation by some reasonable means, this is the first time you have +received notice of violation of this License (for any work) from that +copyright holder, and you cure the violation prior to 30 days after +your receipt of the notice. + + Termination of your rights under this section does not terminate the +licenses of parties who have received copies or rights from you under +this License. If your rights have been terminated and not permanently +reinstated, you do not qualify to receive new licenses for the same +material under section 10. + + 9. Acceptance Not Required for Having Copies. + + You are not required to accept this License in order to receive or +run a copy of the Program. Ancillary propagation of a covered work +occurring solely as a consequence of using peer-to-peer transmission +to receive a copy likewise does not require acceptance. However, +nothing other than this License grants you permission to propagate or +modify any covered work. These actions infringe copyright if you do +not accept this License. Therefore, by modifying or propagating a +covered work, you indicate your acceptance of this License to do so. + + 10. Automatic Licensing of Downstream Recipients. + + Each time you convey a covered work, the recipient automatically +receives a license from the original licensors, to run, modify and +propagate that work, subject to this License. You are not responsible +for enforcing compliance by third parties with this License. + + An "entity transaction" is a transaction transferring control of an +organization, or substantially all assets of one, or subdividing an +organization, or merging organizations. If propagation of a covered +work results from an entity transaction, each party to that +transaction who receives a copy of the work also receives whatever +licenses to the work the party's predecessor in interest had or could +give under the previous paragraph, plus a right to possession of the +Corresponding Source of the work from the predecessor in interest, if +the predecessor has it or can get it with reasonable efforts. + + You may not impose any further restrictions on the exercise of the +rights granted or affirmed under this License. For example, you may +not impose a license fee, royalty, or other charge for exercise of +rights granted under this License, and you may not initiate litigation +(including a cross-claim or counterclaim in a lawsuit) alleging that +any patent claim is infringed by making, using, selling, offering for +sale, or importing the Program or any portion of it. + + 11. Patents. + + A "contributor" is a copyright holder who authorizes use under this +License of the Program or a work on which the Program is based. The +work thus licensed is called the contributor's "contributor version". + + A contributor's "essential patent claims" are all patent claims +owned or controlled by the contributor, whether already acquired or +hereafter acquired, that would be infringed by some manner, permitted +by this License, of making, using, or selling its contributor version, +but do not include claims that would be infringed only as a +consequence of further modification of the contributor version. For +purposes of this definition, "control" includes the right to grant +patent sublicenses in a manner consistent with the requirements of +this License. + + Each contributor grants you a non-exclusive, worldwide, royalty-free +patent license under the contributor's essential patent claims, to +make, use, sell, offer for sale, import and otherwise run, modify and +propagate the contents of its contributor version. + + In the following three paragraphs, a "patent license" is any express +agreement or commitment, however denominated, not to enforce a patent +(such as an express permission to practice a patent or covenant not to +sue for patent infringement). To "grant" such a patent license to a +party means to make such an agreement or commitment not to enforce a +patent against the party. + + If you convey a covered work, knowingly relying on a patent license, +and the Corresponding Source of the work is not available for anyone +to copy, free of charge and under the terms of this License, through a +publicly available network server or other readily accessible means, +then you must either (1) cause the Corresponding Source to be so +available, or (2) arrange to deprive yourself of the benefit of the +patent license for this particular work, or (3) arrange, in a manner +consistent with the requirements of this License, to extend the patent +license to downstream recipients. "Knowingly relying" means you have +actual knowledge that, but for the patent license, your conveying the +covered work in a country, or your recipient's use of the covered work +in a country, would infringe one or more identifiable patents in that +country that you have reason to believe are valid. + + If, pursuant to or in connection with a single transaction or +arrangement, you convey, or propagate by procuring conveyance of, a +covered work, and grant a patent license to some of the parties +receiving the covered work authorizing them to use, propagate, modify +or convey a specific copy of the covered work, then the patent license +you grant is automatically extended to all recipients of the covered +work and works based on it. + + A patent license is "discriminatory" if it does not include within +the scope of its coverage, prohibits the exercise of, or is +conditioned on the non-exercise of one or more of the rights that are +specifically granted under this License. You may not convey a covered +work if you are a party to an arrangement with a third party that is +in the business of distributing software, under which you make payment +to the third party based on the extent of your activity of conveying +the work, and under which the third party grants, to any of the +parties who would receive the covered work from you, a discriminatory +patent license (a) in connection with copies of the covered work +conveyed by you (or copies made from those copies), or (b) primarily +for and in connection with specific products or compilations that +contain the covered work, unless you entered into that arrangement, +or that patent license was granted, prior to 28 March 2007. + + Nothing in this License shall be construed as excluding or limiting +any implied license or other defenses to infringement that may +otherwise be available to you under applicable patent law. + + 12. No Surrender of Others' Freedom. + + If conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot convey a +covered work so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you may +not convey it at all. For example, if you agree to terms that obligate you +to collect a royalty for further conveying from those to whom you convey +the Program, the only way you could satisfy both those terms and this +License would be to refrain entirely from conveying the Program. + + 13. Use with the GNU Affero General Public License. + + Notwithstanding any other provision of this License, you have +permission to link or combine any covered work with a work licensed +under version 3 of the GNU Affero General Public License into a single +combined work, and to convey the resulting work. The terms of this +License will continue to apply to the part which is the covered work, +but the special requirements of the GNU Affero General Public License, +section 13, concerning interaction through a network will apply to the +combination as such. + + 14. Revised Versions of this License. + + The Free Software Foundation may publish revised and/or new versions of +the GNU General Public License from time to time. Such new versions will +be similar in spirit to the present version, but may differ in detail to +address new problems or concerns. + + Each version is given a distinguishing version number. If the +Program specifies that a certain numbered version of the GNU General +Public License "or any later version" applies to it, you have the +option of following the terms and conditions either of that numbered +version or of any later version published by the Free Software +Foundation. If the Program does not specify a version number of the +GNU General Public License, you may choose any version ever published +by the Free Software Foundation. + + If the Program specifies that a proxy can decide which future +versions of the GNU General Public License can be used, that proxy's +public statement of acceptance of a version permanently authorizes you +to choose that version for the Program. + + Later license versions may give you additional or different +permissions. However, no additional obligations are imposed on any +author or copyright holder as a result of your choosing to follow a +later version. + + 15. Disclaimer of Warranty. + + THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY +APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT +HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY +OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, +THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM +IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF +ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + + 16. Limitation of Liability. + + IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS +THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY +GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE +USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF +DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD +PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), +EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF +SUCH DAMAGES. + + 17. Interpretation of Sections 15 and 16. + + If the disclaimer of warranty and limitation of liability provided +above cannot be given local legal effect according to their terms, +reviewing courts shall apply local law that most closely approximates +an absolute waiver of all civil liability in connection with the +Program, unless a warranty or assumption of liability accompanies a +copy of the Program in return for a fee. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Programs + + If you develop a new program, and you want it to be of the greatest +possible use to the public, the best way to achieve this is to make it +free software which everyone can redistribute and change under these terms. + + To do so, attach the following notices to the program. It is safest +to attach them to the start of each source file to most effectively +state the exclusion of warranty; and each file should have at least +the "copyright" line and a pointer to where the full notice is found. + + {one line to give the program's name and a brief idea of what it does.} + Copyright (C) {year} {name of author} + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see . + +Also add information on how to contact you by electronic and paper mail. + + If the program does terminal interaction, make it output a short +notice like this when it starts in an interactive mode: + + {project} Copyright (C) {year} {fullname} + This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. + This is free software, and you are welcome to redistribute it + under certain conditions; type `show c' for details. + +The hypothetical commands `show w' and `show c' should show the appropriate +parts of the General Public License. Of course, your program's commands +might be different; for a GUI interface, you would use an "about box". + + You should also get your employer (if you work as a programmer) or school, +if any, to sign a "copyright disclaimer" for the program, if necessary. +For more information on this, and how to apply and follow the GNU GPL, see +. + + The GNU General Public License does not permit incorporating your program +into proprietary programs. If your program is a subroutine library, you +may consider it more useful to permit linking proprietary applications with +the library. If this is what you want to do, use the GNU Lesser General +Public License instead of this License. But first, please read +. + diff --git a/lib/notify-send.sh/README.md b/lib/notify-send.sh/README.md new file mode 100644 index 00000000..ce18d576 --- /dev/null +++ b/lib/notify-send.sh/README.md @@ -0,0 +1,82 @@ +# notify-send.sh + +notify-send.sh is a drop-in replacement for notify-send (from +libnotify) with ability to update and close existing notifications. + +The dependencies are `bash` and `gdbus` (shipped with glib2). + +In Debian and Ubuntu you can ensure all dependencies are installed +with the following command: + + $ sudo apt-get install bash libglib2.0-bin + +For Arch Linux users notify-send.sh is available in [AUR]. + +[AUR]: https://aur.archlinux.org/packages/notify-send.sh/ + +## Usage + +notify-send.sh has all command line options of notify-send with a few +additional ones: + + Usage: + notify-send.sh [OPTION...] [BODY] - create a notification + + Help Options: + -?|--help Show help options + + Application Options: + -u, --urgency=LEVEL Specifies the urgency level (low, normal, critical). + -t, --expire-time=TIME Specifies the timeout in milliseconds at which to expire the notification. + -a, --app-name=APP_NAME Specifies the app name for the icon + -i, --icon=ICON[,ICON...] Specifies an icon filename or stock icon to display. + -c, --category=TYPE[,TYPE...] Specifies the notification category. + -h, --hint=TYPE:NAME:VALUE Specifies basic extra data to pass. Valid types are int, double, string and byte. + -o, --action=LABEL:COMMAND Specifies an action. Can be passed multiple times. LABEL is usually a button's label. COMMAND is a shell command executed when action is invoked. + -d, --default-action=COMMAND Specifies the default action which is usually invoked by clicking the notification. + -l, --close-action=COMMAND Specifies the action invoked when the notification is closed. + -p, --print-id Print the notification ID to the standard output. + -r, --replace=ID Replace existing notification. + -R, --replace-file=FILE Store and load notification replace ID to/from this file. + -s, --close=ID Close notification. + -v, --version Version of the package. + + +So, for example, to notify a user of a new email we can run: + + $ notify-send.sh --icon=mail-unread --app-name=mail --hint=string:sound-name:message-new-email Subject Message + +To replace or close existing message first we should know its id. To +get id we have to run notify-send.sh with `--print-id`: + + $ notify-send.sh --print-id Subject Message + 10 + +Now we can update this notification using `--replace` option: + + $ notify-send.sh --replace=10 --print-id "New Subject" "New Message" + 10 + +Now we may want to close the notification: + + $ notify-send.sh --close=10 + +Use `--replace-file` to make sure that no more than one notification +is created per file. For example, to increase volume by 5% and show +the current volume value you can run: + + $ notify-send.sh --replace-file=/tmp/volumenotification "Increase Volume" "$(amixer sset Master 5%+ | awk '/[0-9]+%/ {print $2,$5}')" + +You can add a button to the notification with `-o` or `--default-action=`: + + $ notify-send.sh "Subject" "Message" -o "Show another notification:notify-send.sh 'new Subject' 'New Message'" + +You can specify multiple actions by passing `-o` multiple times. Use +`-d` or `--default-action` for action which is usually invoked when +notification area is clicked. Use `-l` or `--close-action` for action +performed when notification is closed. + + $ notify-send.sh "Subject" "Message" \ + -d "notify-send.sh 'Default Action'" \ + -o "Button Action:notify-send.sh 'Button Action'" \ + -l "notify-send.sh 'Close Action'" diff --git a/lib/notify-send.sh/notify-action.sh b/lib/notify-send.sh/notify-action.sh new file mode 100755 index 00000000..7b8dbb01 --- /dev/null +++ b/lib/notify-send.sh/notify-action.sh @@ -0,0 +1,68 @@ +#!/usr/bin/env bash + +GDBUS_MONITOR_PID=/tmp/notify-action-dbus-monitor.$$.pid +GDBUS_MONITOR=(gdbus monitor --session --dest org.freedesktop.Notifications --object-path /org/freedesktop/Notifications) + +NOTIFICATION_ID="$1" +if [[ -z "$NOTIFICATION_ID" ]]; then + echo "no notification id passed: $@" + exit 1; +fi +shift + +ACTION_COMMANDS=("$@") +if [[ -z "$ACTION_COMMANDS" ]]; then + echo "no action commands passed: $@" + exit 1; +fi + +cleanup() { + rm -f "$GDBUS_MONITOR_PID" +} + +create_pid_file(){ + rm -f "$GDBUS_MONITOR_PID" + umask 077 + touch "$GDBUS_MONITOR_PID" +} + +invoke_action() { + invoked_action_id="$1" + local action="" cmd="" + for index in "${!ACTION_COMMANDS[@]}"; do + if [[ $((index % 2)) == 0 ]]; then + action="${ACTION_COMMANDS[$index]}" + else + cmd="${ACTION_COMMANDS[$index]}" + if [[ "$action" == "$invoked_action_id" ]]; then + bash -c "${cmd}" & + fi + fi + done +} + +monitor() { + + create_pid_file + ( "${GDBUS_MONITOR[@]}" & echo $! >&3 ) 3>"$GDBUS_MONITOR_PID" | while read -r line + do + local closed_notification_id="$(sed '/^\/org\/freedesktop\/Notifications: org.freedesktop.Notifications.NotificationClosed (uint32 \([0-9]\+\), uint32 [0-9]\+)$/!d;s//\1/' <<< "$line")" + if [[ -n "$closed_notification_id" ]]; then + if [[ "$closed_notification_id" == "$NOTIFICATION_ID" ]]; then + invoke_action close + break + fi + else + local action_invoked="$(sed '/\/org\/freedesktop\/Notifications: org.freedesktop.Notifications.ActionInvoked (uint32 \([0-9]\+\), '\''\(.*\)'\'')$/!d;s//\1:\2/' <<< "$line")" + IFS=: read invoked_id action_id <<< "$action_invoked" + if [[ "$invoked_id" == "$NOTIFICATION_ID" ]]; then + invoke_action "$action_id" + break + fi + fi + done + kill $(<"$GDBUS_MONITOR_PID") + cleanup +} + +monitor diff --git a/lib/notify-send.sh/notify-send.sh b/lib/notify-send.sh/notify-send.sh new file mode 100755 index 00000000..9f6a5cee --- /dev/null +++ b/lib/notify-send.sh/notify-send.sh @@ -0,0 +1,316 @@ +#!/usr/bin/env bash + +# notify-send.sh - drop-in replacement for notify-send with more features +# Copyright (C) 2015-2020 notify-send.sh authors (see AUTHORS file) + +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. + +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . + +# Desktop Notifications Specification +# https://developer.gnome.org/notification-spec/ + +VERSION=1.1 +NOTIFY_ARGS=(--session + --dest org.freedesktop.Notifications + --object-path /org/freedesktop/Notifications) +EXPIRE_TIME=-1 +APP_NAME="${0##*/}" +REPLACE_ID=0 +URGENCY=1 +HINTS=() +SUMMARY_SET=n + +help() { + cat < [BODY] - create a notification + +Help Options: + -?|--help Show help options + +Application Options: + -u, --urgency=LEVEL Specifies the urgency level (low, normal, critical). + -t, --expire-time=TIME Specifies the timeout in milliseconds at which to expire the notification. + -f, --force-expire Forcefully closes the notification when the notification has expired. + -a, --app-name=APP_NAME Specifies the app name for the icon. + -i, --icon=ICON[,ICON...] Specifies an icon filename or stock icon to display. + -c, --category=TYPE[,TYPE...] Specifies the notification category. + -h, --hint=TYPE:NAME:VALUE Specifies basic extra data to pass. Valid types are int, double, string and byte. + -o, --action=LABEL:COMMAND Specifies an action. Can be passed multiple times. LABEL is usually a button's label. COMMAND is a shell command executed when action is invoked. + -d, --default-action=COMMAND Specifies the default action which is usually invoked by clicking the notification. + -l, --close-action=COMMAND Specifies the action invoked when notification is closed. + -p, --print-id Print the notification ID to the standard output. + -r, --replace=ID Replace existing notification. + -R, --replace-file=FILE Store and load notification replace ID to/from this file. + -s, --close=ID Close notification. + -v, --version Version of the package. + +EOF +} + +convert_type() { + case "$1" in + int) echo int32 ;; + double|string|byte) echo "$1" ;; + *) echo error; return 1 ;; + esac +} + +make_action_key() { + echo "$(tr -dc _A-Z-a-z-0-9 <<< \"$1\")${RANDOM}" +} + +make_action() { + local action_key="$1" + printf -v text "%q" "$2" + echo "\"$action_key\", \"$text\"" +} + +make_hint() { + type=$(convert_type "$1") + [[ ! $? = 0 ]] && return 1 + name="$2" + [[ "$type" = string ]] && command="\"$3\"" || command="$3" + echo "\"$name\": <$type $command>" +} + +concat_actions() { + local result="$1" + shift + for s in "$@"; do + result="$result, $s" + done + echo "[$result]" +} + +concat_hints() { + local result="$1" + shift + for s in "$@"; do + result="$result, $s" + done + echo "{$result}" +} + +parse_notification_id(){ + sed 's/(uint32 \([0-9]\+\),)/\1/g' +} + +notify() { + local actions="$(concat_actions "${ACTIONS[@]}")" + local hints="$(concat_hints "${HINTS[@]}")" + + NOTIFICATION_ID=$(gdbus call "${NOTIFY_ARGS[@]}" \ + --method org.freedesktop.Notifications.Notify \ + "$APP_NAME" "$REPLACE_ID" "$ICON" "$SUMMARY" "$BODY" \ + "${actions}" "${hints}" "int32 $EXPIRE_TIME" \ + | parse_notification_id) + + if [[ -n "$STORE_ID" ]] ; then + echo "$NOTIFICATION_ID" > $STORE_ID + fi + if [[ -n "$PRINT_ID" ]] ; then + echo "$NOTIFICATION_ID" + fi + + if [[ -n "$FORCE_EXPIRE" ]] ; then + type bc &> /dev/null || { echo "bc command not found. Please install bc package."; exit 1; } + SLEEP_TIME="$(bc <<< "scale=3; $EXPIRE_TIME / 1000")" + ( sleep "$SLEEP_TIME" ; notify_close "$NOTIFICATION_ID" ) & + fi + + maybe_run_action_handler +} + +notify_close () { + gdbus call "${NOTIFY_ARGS[@]}" --method org.freedesktop.Notifications.CloseNotification "$1" >/dev/null +} + +process_urgency() { + case "$1" in + low) URGENCY=0 ;; + normal) URGENCY=1 ;; + critical) URGENCY=2 ;; + *) echo "Unknown urgency $URGENCY specified. Known urgency levels: low, normal, critical." + exit 1 + ;; + esac +} + +process_category() { + IFS=, read -a categories <<< "$1" + for category in "${categories[@]}"; do + hint="$(make_hint string category "$category")" + HINTS=("${HINTS[@]}" "$hint") + done +} + +process_hint() { + IFS=: read type name command <<< "$1" + if [[ -z "$name" ]] || [[ -z "$command" ]] ; then + echo "Invalid hint syntax specified. Use TYPE:NAME:VALUE." + exit 1 + fi + hint="$(make_hint "$type" "$name" "$command")" + if [[ ! $? = 0 ]] ; then + echo "Invalid hint type \"$type\". Valid types are int, double, string and byte." + exit 1 + fi + HINTS=("${HINTS[@]}" "$hint") +} + +maybe_run_action_handler() { + if [[ -n "$NOTIFICATION_ID" ]] && [[ -n "$ACTION_COMMANDS" ]]; then + local notify_action="$(dirname ${BASH_SOURCE[0]})/notify-action.sh" + if [[ -x "$notify_action" ]] ; then + "$notify_action" "$NOTIFICATION_ID" "${ACTION_COMMANDS[@]}" & + exit 0 + else + echo "executable file not found: $notify_action" + exit 1 + fi + fi +} + +process_action() { + IFS=: read name command <<<"$1" + if [[ -z "$name" ]] || [[ -z "$command" ]]; then + echo "Invalid action syntax specified. Use NAME:COMMAND." + exit 1 + fi + + local action_key="$(make_action_key "$name")" + ACTION_COMMANDS=("${ACTION_COMMANDS[@]}" "$action_key" "$command") + + local action="$(make_action "$action_key" "$name")" + ACTIONS=("${ACTIONS[@]}" "$action") +} + +process_special_action() { + action_key="$1" + command="$2" + + if [[ -z "$action_key" ]] || [[ -z "$command" ]]; then + echo "Command must not be empty" + exit 1 + fi + + ACTION_COMMANDS=("${ACTION_COMMANDS[@]}" "$action_key" "$command") + + if [[ "$action_key" != close ]]; then + local action="$(make_action "$action_key" "$name")" + ACTIONS=("${ACTIONS[@]}" "$action") + fi +} + +process_posargs() { + if [[ "$1" = -* ]] && ! [[ "$positional" = yes ]] ; then + echo "Unknown option $1" + exit 1 + else + if [[ "$SUMMARY_SET" = n ]]; then + SUMMARY="$1" + SUMMARY_SET=y + else + BODY="$1" + fi + fi +} + +while (( $# > 0 )) ; do + case "$1" in + -\?|--help) + help + exit 0 + ;; + -v|--version) + echo "${0##*/} $VERSION" + exit 0 + ;; + -u|--urgency|--urgency=*) + [[ "$1" = --urgency=* ]] && urgency="${1#*=}" || { shift; urgency="$1"; } + process_urgency "$urgency" + ;; + -t|--expire-time|--expire-time=*) + [[ "$1" = --expire-time=* ]] && EXPIRE_TIME="${1#*=}" || { shift; EXPIRE_TIME="$1"; } + if ! [[ "$EXPIRE_TIME" =~ ^-?[0-9]+$ ]]; then + echo "Invalid expire time: ${EXPIRE_TIME}" + exit 1; + fi + ;; + -f|--force-expire) + FORCE_EXPIRE=yes + ;; + -a|--app-name|--app-name=*) + [[ "$1" = --app-name=* ]] && APP_NAME="${1#*=}" || { shift; APP_NAME="$1"; } + ;; + -i|--icon|--icon=*) + [[ "$1" = --icon=* ]] && ICON="${1#*=}" || { shift; ICON="$1"; } + ;; + -c|--category|--category=*) + [[ "$1" = --category=* ]] && category="${1#*=}" || { shift; category="$1"; } + process_category "$category" + ;; + -h|--hint|--hint=*) + [[ "$1" = --hint=* ]] && hint="${1#*=}" || { shift; hint="$1"; } + process_hint "$hint" + ;; + -o | --action | --action=*) + [[ "$1" == --action=* ]] && action="${1#*=}" || { shift; action="$1"; } + process_action "$action" + ;; + -d | --default-action | --default-action=*) + [[ "$1" == --default-action=* ]] && default_action="${1#*=}" || { shift; default_action="$1"; } + process_special_action default "$default_action" + ;; + -l | --close-action | --close-action=*) + [[ "$1" == --close-action=* ]] && close_action="${1#*=}" || { shift; close_action="$1"; } + process_special_action close "$close_action" + ;; + -p|--print-id) + PRINT_ID=yes + ;; + -r|--replace|--replace=*) + [[ "$1" = --replace=* ]] && REPLACE_ID="${1#*=}" || { shift; REPLACE_ID="$1"; } + ;; + -R|--replace-file|--replace-file=*) + [[ "$1" = --replace-file=* ]] && filename="${1#*=}" || { shift; filename="$1"; } + if [[ -s "$filename" ]]; then + REPLACE_ID="$(< $filename)" + fi + STORE_ID="$filename" + ;; + -s|--close|--close=*) + [[ "$1" = --close=* ]] && close_id="${1#*=}" || { shift; close_id="$1"; } + notify_close "$close_id" + exit $? + ;; + --) + positional=yes + ;; + *) + process_posargs "$1" + ;; + esac + shift +done + +# urgency is always set +HINTS=("$(make_hint byte urgency "$URGENCY")" "${HINTS[@]}") + +if [[ "$SUMMARY_SET" = n ]] ; then + help + exit 1 +else + notify +fi diff --git a/po/es.po b/po/es.po index f6c2c1ed..7c57d10b 100644 --- a/po/es.po +++ b/po/es.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-06 15:08-0400\n" +"POT-Creation-Date: 2020-05-07 00:12-0400\n" "PO-Revision-Date: 2018-01-03 02:03-0600\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish\n" @@ -57,16 +57,16 @@ msgstr "Los siguientes kernels serán eliminados:" msgid "Continue ?" msgstr "¿Continuar?" -#: src/Common/LinuxKernel.vala:777 src/Console/AppConsole.vala:359 +#: src/Common/LinuxKernel.vala:777 src/Console/AppConsole.vala:361 msgid "Latest update" msgstr "" -#: src/Common/LinuxKernel.vala:788 src/Console/AppConsole.vala:366 +#: src/Common/LinuxKernel.vala:788 src/Console/AppConsole.vala:368 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:796 src/Console/AppConsole.vala:371 -#: src/Console/AppConsole.vala:429 src/Gtk/MainWindow.vala:798 +#: src/Common/LinuxKernel.vala:796 src/Console/AppConsole.vala:373 +#: src/Console/AppConsole.vala:421 msgid "No updates found" msgstr "No se encontró ninguna actualización" @@ -109,7 +109,7 @@ msgstr "Aceptar" msgid "ERROR" msgstr "ERROR" -#: src/Common/LinuxKernel.vala:1252 src/Gtk/MainWindow.vala:685 +#: src/Common/LinuxKernel.vala:1252 src/Gtk/MainWindow.vala:686 msgid "This kernel is already installed." msgstr "Este núcleo ya se instaló." @@ -150,12 +150,12 @@ msgstr "" "Este núcleo está en ejecución y no se puede desinstalar.\n" "Instale otro núcleo antes de desinstalar este." -#: src/Common/Main.vala:107 +#: src/Common/Main.vala:106 msgid "Commands listed below are not available on this system" msgstr "" "Las órdenes enumeradas a continuación no están disponibles en este sistema" -#: src/Common/Main.vala:108 +#: src/Common/Main.vala:107 msgid "Please install required packages and try again" msgstr "Instale los paquetes requeridos e inténtelo de nuevo" @@ -164,125 +164,138 @@ msgstr "Instale los paquetes requeridos e inténtelo de nuevo" msgid "File not found: %s" msgstr "No se encontró el archivo: %s" -#: src/Console/AppConsole.vala:78 src/Gtk/AppGtk.vala:179 +#: src/Console/AppConsole.vala:80 src/Gtk/AppGtk.vala:175 msgid "Syntax" msgstr "Sintaxis" -#: src/Console/AppConsole.vala:80 +#: src/Console/AppConsole.vala:82 msgid "Commands" msgstr "Comandos" -#: src/Console/AppConsole.vala:82 +#: src/Console/AppConsole.vala:84 msgid "Check for kernel updates" msgstr "Buscar actualizaciones del núcleo" -#: src/Console/AppConsole.vala:83 +#: src/Console/AppConsole.vala:85 msgid "Check for kernel updates and notify current user" msgstr "Compruebe las actualizaciones del kernel y notifique al usuario actual" -#: src/Console/AppConsole.vala:84 +#: src/Console/AppConsole.vala:86 msgid "List all available mainline kernels" msgstr "Mostrar todos los núcleos troncales disponibles" -#: src/Console/AppConsole.vala:85 +#: src/Console/AppConsole.vala:87 msgid "List installed kernels" msgstr "Mostrar kernels disponibles" -#: src/Console/AppConsole.vala:86 +#: src/Console/AppConsole.vala:88 msgid "Install latest mainline kernel" msgstr "Instalar kernel troncal especificado" -#: src/Console/AppConsole.vala:87 +#: src/Console/AppConsole.vala:89 msgid "Install latest point update for current series" msgstr "" -#: src/Console/AppConsole.vala:88 +#: src/Console/AppConsole.vala:90 msgid "Install specified mainline kernel" msgstr "Instalar núcleo troncal especificado" -#: src/Console/AppConsole.vala:89 +#: src/Console/AppConsole.vala:91 msgid "Remove specified kernel" msgstr "Quitar el núcleo troncal especificado" -#: src/Console/AppConsole.vala:90 src/Gtk/MainWindow.vala:422 +#: src/Console/AppConsole.vala:92 src/Gtk/MainWindow.vala:422 msgid "Remove installed kernels older than running kernel" msgstr "" -#: src/Console/AppConsole.vala:91 +#: src/Console/AppConsole.vala:93 msgid "Download packages for specified kernel" msgstr "Descargar paquetes del núcleo especificado" -#: src/Console/AppConsole.vala:92 src/Console/AppConsole.vala:97 +#: src/Console/AppConsole.vala:94 src/Console/AppConsole.vala:99 msgid "Remove files from application cache" msgstr "Quitar archivos de la antememoria de la aplicación" -#: src/Console/AppConsole.vala:93 +#: src/Console/AppConsole.vala:95 msgid "Show unstable and RC releases" msgstr "Ocultar versiones inestables y RC" -#: src/Console/AppConsole.vala:95 src/Gtk/AppGtk.vala:181 +#: src/Console/AppConsole.vala:97 src/Gtk/AppGtk.vala:177 msgid "Options" msgstr "Opciones" -#: src/Console/AppConsole.vala:98 +#: src/Console/AppConsole.vala:100 msgid "Enable verbose debugging output" msgstr "" -#: src/Console/AppConsole.vala:99 +#: src/Console/AppConsole.vala:101 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "Asumir Sí para todas las solicitudes (modo no interactivo)" -#: src/Console/AppConsole.vala:100 +#: src/Console/AppConsole.vala:102 msgid "Override user" msgstr "" -#: src/Console/AppConsole.vala:113 +#: src/Console/AppConsole.vala:115 msgid "Admin access is required for running this application." msgstr "" "Se necesitan privilegios administrativos para ejecutar esta aplicación." -#: src/Console/AppConsole.vala:116 +#: src/Console/AppConsole.vala:118 msgid "Run the application as admin with pkexec or sudo." msgstr "Ejecute la aplicación con permisos administrativos con pkexec o sudo." -#: src/Console/AppConsole.vala:196 src/Gtk/AppGtk.vala:166 +#: src/Console/AppConsole.vala:198 src/Gtk/AppGtk.vala:162 msgid "Unknown option" msgstr "Opción desconocida" -#: src/Console/AppConsole.vala:198 src/Console/AppConsole.vala:312 -#: src/Console/AppConsole.vala:341 +#: src/Console/AppConsole.vala:200 src/Console/AppConsole.vala:314 +#: src/Console/AppConsole.vala:343 msgid "Run '" msgstr "" -#: src/Console/AppConsole.vala:203 src/Gtk/AppGtk.vala:110 +#: src/Console/AppConsole.vala:205 src/Gtk/AppGtk.vala:110 msgid "Cache" msgstr "Cache" -#: src/Console/AppConsole.vala:204 src/Gtk/AppGtk.vala:111 +#: src/Console/AppConsole.vala:206 src/Gtk/AppGtk.vala:111 msgid "Temp" msgstr "" -#: src/Console/AppConsole.vala:284 src/Console/AppConsole.vala:321 +#: src/Console/AppConsole.vala:286 src/Console/AppConsole.vala:323 msgid "No kernels specified" msgstr "" -#: src/Console/AppConsole.vala:290 +#: src/Console/AppConsole.vala:292 msgid "Multiple kernels selected for installation. Select only one." msgstr "Se seleccionaron varios núcleos para su instalación. Elija solo uno." -#: src/Console/AppConsole.vala:308 src/Gtk/MainWindow.vala:100 +#: src/Console/AppConsole.vala:310 src/Gtk/MainWindow.vala:100 msgid "Could not find requested version" msgstr "No se pudo encontrar la versión solicitada" -#: src/Console/AppConsole.vala:340 +#: src/Console/AppConsole.vala:342 msgid "Command not specified" msgstr "Coomand no especificado" -#: src/Gtk/AppGtk.vala:183 +#: src/Console/AppConsole.vala:391 src/Console/AppConsole.vala:408 +#, c-format +msgid "Linux v%s Available" +msgstr "" + +#: src/Console/AppConsole.vala:392 +msgid "Major update available for installation" +msgstr "" + +#: src/Console/AppConsole.vala:409 +msgid "Minor update available for installation" +msgstr "" + +#: src/Gtk/AppGtk.vala:179 msgid "Print debug information" msgstr "Mostrar información de depuración" -#: src/Gtk/AppGtk.vala:184 +#: src/Gtk/AppGtk.vala:180 msgid "Show all options" msgstr "Mostrar todas las opciones" @@ -302,17 +315,17 @@ msgstr "Estado" msgid "Refresh" msgstr "Actualizar" -#: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:554 -#: src/Gtk/MainWindow.vala:690 src/Utility/TeeJee.System.vala:281 +#: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:555 +#: src/Gtk/MainWindow.vala:691 src/Utility/TeeJee.System.vala:281 msgid "Internet connection is not active" msgstr "La conexión a Internet está inactiva" -#: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:554 -#: src/Gtk/MainWindow.vala:690 +#: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:555 +#: src/Gtk/MainWindow.vala:691 msgid "No Internet" msgstr "No hay Internet" -#: src/Gtk/MainWindow.vala:357 src/Gtk/UpdateNotificationWindow.vala:145 +#: src/Gtk/MainWindow.vala:357 msgid "Install" msgstr "Instalar" @@ -356,17 +369,16 @@ msgstr "Configuración" msgid "About" msgstr "Acerca de" -#: src/Gtk/MainWindow.vala:538 +#: src/Gtk/MainWindow.vala:539 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "" "Herramienta de renovación de núcleo para distribuciones basadas en Ubuntu" -#: src/Gtk/MainWindow.vala:573 +#: src/Gtk/MainWindow.vala:574 msgid "Refreshing..." msgstr "Actualizando…" #: src/Gtk/ProgressWindow.vala:144 src/Gtk/TerminalWindow.vala:149 -#: src/Gtk/UpdateNotificationWindow.vala:165 #: src/Utility/Gtk/CustomMessageDialog.vala:153 msgid "Cancel" msgstr "Cancelar" @@ -387,52 +399,48 @@ msgstr "Notificar si hay una versión puntual disponible" msgid "Show notification bubble on desktop" msgstr "Mostrar globo de notificación en el escritorio" -#: src/Gtk/SettingsDialog.vala:103 -msgid "Show notification dialog" -msgstr "Mostrar cuadro de diálogo de notificación" - -#: src/Gtk/SettingsDialog.vala:118 +#: src/Gtk/SettingsDialog.vala:106 msgid "Check every" msgstr "Comprobar cada" -#: src/Gtk/SettingsDialog.vala:149 +#: src/Gtk/SettingsDialog.vala:137 msgid "Hour(s)" msgstr "Horas" -#: src/Gtk/SettingsDialog.vala:151 +#: src/Gtk/SettingsDialog.vala:139 msgid "Day(s)" msgstr "Días" -#: src/Gtk/SettingsDialog.vala:153 +#: src/Gtk/SettingsDialog.vala:141 msgid "Week(s)" msgstr "Semanas" -#: src/Gtk/SettingsDialog.vala:158 +#: src/Gtk/SettingsDialog.vala:146 msgid "Display" msgstr "Mostrar" -#: src/Gtk/SettingsDialog.vala:166 +#: src/Gtk/SettingsDialog.vala:154 msgid "Hide unstable and RC releases" msgstr "Ocultar versiones inestables y RC" -#: src/Gtk/SettingsDialog.vala:180 +#: src/Gtk/SettingsDialog.vala:168 msgid "Show N previous major versions " msgstr "" -#: src/Gtk/SettingsDialog.vala:195 +#: src/Gtk/SettingsDialog.vala:183 msgid "Other" msgstr "" -#: src/Gtk/SettingsDialog.vala:203 +#: src/Gtk/SettingsDialog.vala:191 msgid "Skip internet connection check" msgstr "La conexión a Internet está inactiva" -#: src/Gtk/SettingsDialog.vala:216 +#: src/Gtk/SettingsDialog.vala:204 #, fuzzy msgid "Internet connection timeout in " msgstr "La conexión a Internet está inactiva" -#: src/Gtk/SettingsDialog.vala:230 +#: src/Gtk/SettingsDialog.vala:218 msgid "seconds" msgstr "" @@ -440,22 +448,6 @@ msgstr "" msgid "Close" msgstr "Cerrar" -#: src/Gtk/UpdateNotificationWindow.vala:146 -msgid "Install this kernel" -msgstr "Instalar este kernel" - -#: src/Gtk/UpdateNotificationWindow.vala:155 -msgid "Show" -msgstr "Mostrar" - -#: src/Gtk/UpdateNotificationWindow.vala:156 -msgid "List available kernels" -msgstr "Mostrar núcleos disponibles" - -#: src/Gtk/UpdateNotificationWindow.vala:166 -msgid "Ignore this update" -msgstr "Ignorar esta actualización" - #: src/Utility/Gtk/AboutWindow.vala:271 src/Utility/Gtk/AboutWindow.vala:288 msgid "Credits" msgstr "Créditos" @@ -579,6 +571,6 @@ msgstr "E" msgid "W" msgstr "W" -#: src/Utility/TeeJee.Process.vala:513 +#: src/Utility/TeeJee.Process.vala:506 msgid "Stopped" msgstr "Detenido" diff --git a/po/fr.po b/po/fr.po index 3d54514e..6fa7f4c3 100644 --- a/po/fr.po +++ b/po/fr.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-06 15:08-0400\n" +"POT-Creation-Date: 2020-05-07 00:12-0400\n" "PO-Revision-Date: 2018-08-05 15:50+0200\n" "Last-Translator: Yolateng0 \n" "Language-Team: French\n" @@ -60,16 +60,16 @@ msgstr "" msgid "Continue ?" msgstr "" -#: src/Common/LinuxKernel.vala:777 src/Console/AppConsole.vala:359 +#: src/Common/LinuxKernel.vala:777 src/Console/AppConsole.vala:361 msgid "Latest update" msgstr "" -#: src/Common/LinuxKernel.vala:788 src/Console/AppConsole.vala:366 +#: src/Common/LinuxKernel.vala:788 src/Console/AppConsole.vala:368 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:796 src/Console/AppConsole.vala:371 -#: src/Console/AppConsole.vala:429 src/Gtk/MainWindow.vala:798 +#: src/Common/LinuxKernel.vala:796 src/Console/AppConsole.vala:373 +#: src/Console/AppConsole.vala:421 msgid "No updates found" msgstr "Aucune mise à jour disponible" @@ -112,7 +112,7 @@ msgstr "OK" msgid "ERROR" msgstr "ERREUR" -#: src/Common/LinuxKernel.vala:1252 src/Gtk/MainWindow.vala:685 +#: src/Common/LinuxKernel.vala:1252 src/Gtk/MainWindow.vala:686 msgid "This kernel is already installed." msgstr "Ce noyau est déjà installé." @@ -154,11 +154,11 @@ msgstr "" "Ce noyau est en cours d'exécution et ne peut pas être supprimé.\n" " Installez un autre noyau avant de retirer celui-ci." -#: src/Common/Main.vala:107 +#: src/Common/Main.vala:106 msgid "Commands listed below are not available on this system" msgstr "Les commandes listées ne sont pas valables pour ce système" -#: src/Common/Main.vala:108 +#: src/Common/Main.vala:107 msgid "Please install required packages and try again" msgstr "Veuillez installer les paquets requis et réessayer" @@ -167,132 +167,145 @@ msgstr "Veuillez installer les paquets requis et réessayer" msgid "File not found: %s" msgstr "Fichier non trouvé: %s" -#: src/Console/AppConsole.vala:78 src/Gtk/AppGtk.vala:179 +#: src/Console/AppConsole.vala:80 src/Gtk/AppGtk.vala:175 msgid "Syntax" msgstr "Syntaxe" -#: src/Console/AppConsole.vala:80 +#: src/Console/AppConsole.vala:82 msgid "Commands" msgstr "" -#: src/Console/AppConsole.vala:82 +#: src/Console/AppConsole.vala:84 msgid "Check for kernel updates" msgstr "Vérifier les mises à jour des noyaux" -#: src/Console/AppConsole.vala:83 +#: src/Console/AppConsole.vala:85 #, fuzzy msgid "Check for kernel updates and notify current user" msgstr "Vérifier les mises à jour des noyaux" -#: src/Console/AppConsole.vala:84 +#: src/Console/AppConsole.vala:86 msgid "List all available mainline kernels" msgstr "Lister tous les noyaux mainline disponibles" -#: src/Console/AppConsole.vala:85 +#: src/Console/AppConsole.vala:87 #, fuzzy msgid "List installed kernels" msgstr "Lister les noyaux disponibles" -#: src/Console/AppConsole.vala:86 +#: src/Console/AppConsole.vala:88 #, fuzzy msgid "Install latest mainline kernel" msgstr "Installer le noyau principal spécifié" -#: src/Console/AppConsole.vala:87 +#: src/Console/AppConsole.vala:89 msgid "Install latest point update for current series" msgstr "" -#: src/Console/AppConsole.vala:88 +#: src/Console/AppConsole.vala:90 msgid "Install specified mainline kernel" msgstr "Installer le noyau principal spécifié" -#: src/Console/AppConsole.vala:89 +#: src/Console/AppConsole.vala:91 #, fuzzy msgid "Remove specified kernel" msgstr "Supprimer le noyau mainline sélectionné" -#: src/Console/AppConsole.vala:90 src/Gtk/MainWindow.vala:422 +#: src/Console/AppConsole.vala:92 src/Gtk/MainWindow.vala:422 msgid "Remove installed kernels older than running kernel" msgstr "" -#: src/Console/AppConsole.vala:91 +#: src/Console/AppConsole.vala:93 msgid "Download packages for specified kernel" msgstr "Télécharger les paquets pour des noyaux spécifiques" -#: src/Console/AppConsole.vala:92 src/Console/AppConsole.vala:97 +#: src/Console/AppConsole.vala:94 src/Console/AppConsole.vala:99 msgid "Remove files from application cache" msgstr "Supprimer les fichiers du cache de l'application" -#: src/Console/AppConsole.vala:93 +#: src/Console/AppConsole.vala:95 #, fuzzy msgid "Show unstable and RC releases" msgstr "Cacher les versions instables et RC" -#: src/Console/AppConsole.vala:95 src/Gtk/AppGtk.vala:181 +#: src/Console/AppConsole.vala:97 src/Gtk/AppGtk.vala:177 msgid "Options" msgstr "Options" -#: src/Console/AppConsole.vala:98 +#: src/Console/AppConsole.vala:100 msgid "Enable verbose debugging output" msgstr "" -#: src/Console/AppConsole.vala:99 +#: src/Console/AppConsole.vala:101 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "" -#: src/Console/AppConsole.vala:100 +#: src/Console/AppConsole.vala:102 msgid "Override user" msgstr "" -#: src/Console/AppConsole.vala:113 +#: src/Console/AppConsole.vala:115 msgid "Admin access is required for running this application." msgstr "Accès administrateur requis pour lancer cette application." -#: src/Console/AppConsole.vala:116 +#: src/Console/AppConsole.vala:118 msgid "Run the application as admin with pkexec or sudo." msgstr "Exécutez l'application en tant qu'admin avec pkexec or sudo." -#: src/Console/AppConsole.vala:196 src/Gtk/AppGtk.vala:166 +#: src/Console/AppConsole.vala:198 src/Gtk/AppGtk.vala:162 msgid "Unknown option" msgstr "Option inconnue" -#: src/Console/AppConsole.vala:198 src/Console/AppConsole.vala:312 -#: src/Console/AppConsole.vala:341 +#: src/Console/AppConsole.vala:200 src/Console/AppConsole.vala:314 +#: src/Console/AppConsole.vala:343 msgid "Run '" msgstr "" -#: src/Console/AppConsole.vala:203 src/Gtk/AppGtk.vala:110 +#: src/Console/AppConsole.vala:205 src/Gtk/AppGtk.vala:110 msgid "Cache" msgstr "" -#: src/Console/AppConsole.vala:204 src/Gtk/AppGtk.vala:111 +#: src/Console/AppConsole.vala:206 src/Gtk/AppGtk.vala:111 msgid "Temp" msgstr "" -#: src/Console/AppConsole.vala:284 src/Console/AppConsole.vala:321 +#: src/Console/AppConsole.vala:286 src/Console/AppConsole.vala:323 msgid "No kernels specified" msgstr "" -#: src/Console/AppConsole.vala:290 +#: src/Console/AppConsole.vala:292 msgid "Multiple kernels selected for installation. Select only one." msgstr "" "Plusieurs noyaux sélectionnés pour être installés. Sélectionnez en seulement " "un." -#: src/Console/AppConsole.vala:308 src/Gtk/MainWindow.vala:100 +#: src/Console/AppConsole.vala:310 src/Gtk/MainWindow.vala:100 msgid "Could not find requested version" msgstr "Impossible de trouver la version demandée" -#: src/Console/AppConsole.vala:340 +#: src/Console/AppConsole.vala:342 #, fuzzy msgid "Command not specified" msgstr "Impossible de trouver le fichier" -#: src/Gtk/AppGtk.vala:183 +#: src/Console/AppConsole.vala:391 src/Console/AppConsole.vala:408 +#, c-format +msgid "Linux v%s Available" +msgstr "" + +#: src/Console/AppConsole.vala:392 +msgid "Major update available for installation" +msgstr "" + +#: src/Console/AppConsole.vala:409 +msgid "Minor update available for installation" +msgstr "" + +#: src/Gtk/AppGtk.vala:179 msgid "Print debug information" msgstr "Afficher les informations de débogage" -#: src/Gtk/AppGtk.vala:184 +#: src/Gtk/AppGtk.vala:180 msgid "Show all options" msgstr "Afficher toutes les options" @@ -312,17 +325,17 @@ msgstr "Statut" msgid "Refresh" msgstr "Actualiser" -#: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:554 -#: src/Gtk/MainWindow.vala:690 src/Utility/TeeJee.System.vala:281 +#: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:555 +#: src/Gtk/MainWindow.vala:691 src/Utility/TeeJee.System.vala:281 msgid "Internet connection is not active" msgstr "Connexion internet inexistante" -#: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:554 -#: src/Gtk/MainWindow.vala:690 +#: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:555 +#: src/Gtk/MainWindow.vala:691 msgid "No Internet" msgstr "Pas d'Internet" -#: src/Gtk/MainWindow.vala:357 src/Gtk/UpdateNotificationWindow.vala:145 +#: src/Gtk/MainWindow.vala:357 msgid "Install" msgstr "Installer" @@ -366,18 +379,17 @@ msgstr "Paramètres" msgid "About" msgstr "À propos" -#: src/Gtk/MainWindow.vala:538 +#: src/Gtk/MainWindow.vala:539 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "" "Utilitaire de mise à niveau des noyaux pour les distributions basées pour " "Ubuntu" -#: src/Gtk/MainWindow.vala:573 +#: src/Gtk/MainWindow.vala:574 msgid "Refreshing..." msgstr "Actualisation..." #: src/Gtk/ProgressWindow.vala:144 src/Gtk/TerminalWindow.vala:149 -#: src/Gtk/UpdateNotificationWindow.vala:165 #: src/Utility/Gtk/CustomMessageDialog.vala:153 msgid "Cancel" msgstr "Annuler" @@ -398,53 +410,49 @@ msgstr "Notifier si une version stable mineure est disponible" msgid "Show notification bubble on desktop" msgstr "Afficher la bulle de notification sur le bureau" -#: src/Gtk/SettingsDialog.vala:103 -msgid "Show notification dialog" -msgstr "Afficher les notifications" - -#: src/Gtk/SettingsDialog.vala:118 +#: src/Gtk/SettingsDialog.vala:106 msgid "Check every" msgstr "Vérifier toutes les" -#: src/Gtk/SettingsDialog.vala:149 +#: src/Gtk/SettingsDialog.vala:137 msgid "Hour(s)" msgstr "Heure(s)" -#: src/Gtk/SettingsDialog.vala:151 +#: src/Gtk/SettingsDialog.vala:139 msgid "Day(s)" msgstr "Jour(s)" -#: src/Gtk/SettingsDialog.vala:153 +#: src/Gtk/SettingsDialog.vala:141 msgid "Week(s)" msgstr "Semaine(s)" -#: src/Gtk/SettingsDialog.vala:158 +#: src/Gtk/SettingsDialog.vala:146 msgid "Display" msgstr "Afficher" -#: src/Gtk/SettingsDialog.vala:166 +#: src/Gtk/SettingsDialog.vala:154 msgid "Hide unstable and RC releases" msgstr "Cacher les versions instables et RC" -#: src/Gtk/SettingsDialog.vala:180 +#: src/Gtk/SettingsDialog.vala:168 msgid "Show N previous major versions " msgstr "" -#: src/Gtk/SettingsDialog.vala:195 +#: src/Gtk/SettingsDialog.vala:183 msgid "Other" msgstr "" -#: src/Gtk/SettingsDialog.vala:203 +#: src/Gtk/SettingsDialog.vala:191 #, fuzzy msgid "Skip internet connection check" msgstr "Connexion internet inexistante" -#: src/Gtk/SettingsDialog.vala:216 +#: src/Gtk/SettingsDialog.vala:204 #, fuzzy msgid "Internet connection timeout in " msgstr "Connexion internet inexistante" -#: src/Gtk/SettingsDialog.vala:230 +#: src/Gtk/SettingsDialog.vala:218 msgid "seconds" msgstr "" @@ -452,22 +460,6 @@ msgstr "" msgid "Close" msgstr "Fermer" -#: src/Gtk/UpdateNotificationWindow.vala:146 -msgid "Install this kernel" -msgstr "Installer ce noyau" - -#: src/Gtk/UpdateNotificationWindow.vala:155 -msgid "Show" -msgstr "Afficher" - -#: src/Gtk/UpdateNotificationWindow.vala:156 -msgid "List available kernels" -msgstr "Lister les noyaux disponibles" - -#: src/Gtk/UpdateNotificationWindow.vala:166 -msgid "Ignore this update" -msgstr "Ignorer cette mise à jour" - #: src/Utility/Gtk/AboutWindow.vala:271 src/Utility/Gtk/AboutWindow.vala:288 msgid "Credits" msgstr "Crédits" @@ -591,6 +583,6 @@ msgstr "E" msgid "W" msgstr "W" -#: src/Utility/TeeJee.Process.vala:513 +#: src/Utility/TeeJee.Process.vala:506 msgid "Stopped" msgstr "Arrêté" diff --git a/po/hr.po b/po/hr.po index 995c8c25..b5f075de 100644 --- a/po/hr.po +++ b/po/hr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-06 15:08-0400\n" +"POT-Creation-Date: 2020-05-07 00:12-0400\n" "PO-Revision-Date: 2017-12-24 00:52+0100\n" "Last-Translator: gogo \n" "Language-Team: Croatian \n" @@ -61,16 +61,16 @@ msgstr "" msgid "Continue ?" msgstr "" -#: src/Common/LinuxKernel.vala:777 src/Console/AppConsole.vala:359 +#: src/Common/LinuxKernel.vala:777 src/Console/AppConsole.vala:361 msgid "Latest update" msgstr "" -#: src/Common/LinuxKernel.vala:788 src/Console/AppConsole.vala:366 +#: src/Common/LinuxKernel.vala:788 src/Console/AppConsole.vala:368 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:796 src/Console/AppConsole.vala:371 -#: src/Console/AppConsole.vala:429 src/Gtk/MainWindow.vala:798 +#: src/Common/LinuxKernel.vala:796 src/Console/AppConsole.vala:373 +#: src/Console/AppConsole.vala:421 msgid "No updates found" msgstr "Nema pronađenih nadopuna" @@ -113,7 +113,7 @@ msgstr "U redu" msgid "ERROR" msgstr "GREŠKA" -#: src/Common/LinuxKernel.vala:1252 src/Gtk/MainWindow.vala:685 +#: src/Common/LinuxKernel.vala:1252 src/Gtk/MainWindow.vala:686 msgid "This kernel is already installed." msgstr "Ovaj kernel je već instaliran." @@ -155,11 +155,11 @@ msgstr "" "Ovaj kernel je trenutno pokrenut i ne može se ukloniti.\n" " Instalirajte drugi kernel prije uklanjanja trenutnog kernela." -#: src/Common/Main.vala:107 +#: src/Common/Main.vala:106 msgid "Commands listed below are not available on this system" msgstr "Naredbe navedene ispod nisu dostupne na ovom sustavu" -#: src/Common/Main.vala:108 +#: src/Common/Main.vala:107 msgid "Please install required packages and try again" msgstr "Instalirajte potrebni paket i pokušajte ponovno" @@ -168,129 +168,142 @@ msgstr "Instalirajte potrebni paket i pokušajte ponovno" msgid "File not found: %s" msgstr "Datoteka nije pronađena: %s" -#: src/Console/AppConsole.vala:78 src/Gtk/AppGtk.vala:179 +#: src/Console/AppConsole.vala:80 src/Gtk/AppGtk.vala:175 msgid "Syntax" msgstr "Sintaksa" -#: src/Console/AppConsole.vala:80 +#: src/Console/AppConsole.vala:82 msgid "Commands" msgstr "" -#: src/Console/AppConsole.vala:82 +#: src/Console/AppConsole.vala:84 msgid "Check for kernel updates" msgstr "Provjeri nadopune kernela" -#: src/Console/AppConsole.vala:83 +#: src/Console/AppConsole.vala:85 #, fuzzy msgid "Check for kernel updates and notify current user" msgstr "Provjeri nadopune kernela" -#: src/Console/AppConsole.vala:84 +#: src/Console/AppConsole.vala:86 msgid "List all available mainline kernels" msgstr "Prikaži sve mainline kernele" -#: src/Console/AppConsole.vala:85 +#: src/Console/AppConsole.vala:87 #, fuzzy msgid "List installed kernels" msgstr "Prikaži sve kernele" -#: src/Console/AppConsole.vala:86 +#: src/Console/AppConsole.vala:88 #, fuzzy msgid "Install latest mainline kernel" msgstr "Instaliraj određeni mainline kernel" -#: src/Console/AppConsole.vala:87 +#: src/Console/AppConsole.vala:89 msgid "Install latest point update for current series" msgstr "" -#: src/Console/AppConsole.vala:88 +#: src/Console/AppConsole.vala:90 msgid "Install specified mainline kernel" msgstr "Instaliraj određeni mainline kernel" -#: src/Console/AppConsole.vala:89 +#: src/Console/AppConsole.vala:91 #, fuzzy msgid "Remove specified kernel" msgstr "Ukloni određeni mainline kernel" -#: src/Console/AppConsole.vala:90 src/Gtk/MainWindow.vala:422 +#: src/Console/AppConsole.vala:92 src/Gtk/MainWindow.vala:422 msgid "Remove installed kernels older than running kernel" msgstr "" -#: src/Console/AppConsole.vala:91 +#: src/Console/AppConsole.vala:93 msgid "Download packages for specified kernel" msgstr "Preuzmi pakete za određeni kernel" -#: src/Console/AppConsole.vala:92 src/Console/AppConsole.vala:97 +#: src/Console/AppConsole.vala:94 src/Console/AppConsole.vala:99 msgid "Remove files from application cache" msgstr "Ukloni datoteke iz predmemorije aplikacije" -#: src/Console/AppConsole.vala:93 +#: src/Console/AppConsole.vala:95 #, fuzzy msgid "Show unstable and RC releases" msgstr "Sakrij nestabilne kernele i predizdanja" -#: src/Console/AppConsole.vala:95 src/Gtk/AppGtk.vala:181 +#: src/Console/AppConsole.vala:97 src/Gtk/AppGtk.vala:177 msgid "Options" msgstr "Mogućnosti" -#: src/Console/AppConsole.vala:98 +#: src/Console/AppConsole.vala:100 msgid "Enable verbose debugging output" msgstr "" -#: src/Console/AppConsole.vala:99 +#: src/Console/AppConsole.vala:101 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "" -#: src/Console/AppConsole.vala:100 +#: src/Console/AppConsole.vala:102 msgid "Override user" msgstr "" -#: src/Console/AppConsole.vala:113 +#: src/Console/AppConsole.vala:115 msgid "Admin access is required for running this application." msgstr "Administratorske ovlasti su potrebne za pokretanje ove aplikacije." -#: src/Console/AppConsole.vala:116 +#: src/Console/AppConsole.vala:118 msgid "Run the application as admin with pkexec or sudo." msgstr "Pokreni aplikaciju kao administrator sa pkexec ili sudo." -#: src/Console/AppConsole.vala:196 src/Gtk/AppGtk.vala:166 +#: src/Console/AppConsole.vala:198 src/Gtk/AppGtk.vala:162 msgid "Unknown option" msgstr "Nepoznata mogućnost" -#: src/Console/AppConsole.vala:198 src/Console/AppConsole.vala:312 -#: src/Console/AppConsole.vala:341 +#: src/Console/AppConsole.vala:200 src/Console/AppConsole.vala:314 +#: src/Console/AppConsole.vala:343 msgid "Run '" msgstr "" -#: src/Console/AppConsole.vala:203 src/Gtk/AppGtk.vala:110 +#: src/Console/AppConsole.vala:205 src/Gtk/AppGtk.vala:110 msgid "Cache" msgstr "" -#: src/Console/AppConsole.vala:204 src/Gtk/AppGtk.vala:111 +#: src/Console/AppConsole.vala:206 src/Gtk/AppGtk.vala:111 msgid "Temp" msgstr "" -#: src/Console/AppConsole.vala:284 src/Console/AppConsole.vala:321 +#: src/Console/AppConsole.vala:286 src/Console/AppConsole.vala:323 msgid "No kernels specified" msgstr "" -#: src/Console/AppConsole.vala:290 +#: src/Console/AppConsole.vala:292 msgid "Multiple kernels selected for installation. Select only one." msgstr "Više kernela je odabrano za instalaciju. odaberite samo jedan." -#: src/Console/AppConsole.vala:308 src/Gtk/MainWindow.vala:100 +#: src/Console/AppConsole.vala:310 src/Gtk/MainWindow.vala:100 msgid "Could not find requested version" msgstr "Nemoguće je pronaći zatraženu inačicu" -#: src/Console/AppConsole.vala:340 +#: src/Console/AppConsole.vala:342 msgid "Command not specified" msgstr "" -#: src/Gtk/AppGtk.vala:183 +#: src/Console/AppConsole.vala:391 src/Console/AppConsole.vala:408 +#, c-format +msgid "Linux v%s Available" +msgstr "" + +#: src/Console/AppConsole.vala:392 +msgid "Major update available for installation" +msgstr "" + +#: src/Console/AppConsole.vala:409 +msgid "Minor update available for installation" +msgstr "" + +#: src/Gtk/AppGtk.vala:179 msgid "Print debug information" msgstr "Ispiši informacije otklanjanja grešaka" -#: src/Gtk/AppGtk.vala:184 +#: src/Gtk/AppGtk.vala:180 msgid "Show all options" msgstr "Prikaži sve mogućnosti" @@ -310,17 +323,17 @@ msgstr "Stanje" msgid "Refresh" msgstr "Osvježi" -#: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:554 -#: src/Gtk/MainWindow.vala:690 src/Utility/TeeJee.System.vala:281 +#: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:555 +#: src/Gtk/MainWindow.vala:691 src/Utility/TeeJee.System.vala:281 msgid "Internet connection is not active" msgstr "Internet povezivanje nije aktivno" -#: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:554 -#: src/Gtk/MainWindow.vala:690 +#: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:555 +#: src/Gtk/MainWindow.vala:691 msgid "No Internet" msgstr "Nema pristupa internetu" -#: src/Gtk/MainWindow.vala:357 src/Gtk/UpdateNotificationWindow.vala:145 +#: src/Gtk/MainWindow.vala:357 msgid "Install" msgstr "Instaliraj" @@ -364,16 +377,15 @@ msgstr "Postavke" msgid "About" msgstr "O programu" -#: src/Gtk/MainWindow.vala:538 +#: src/Gtk/MainWindow.vala:539 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Alat za nadogradnju kernela Ubuntu temeljenih distribucija" -#: src/Gtk/MainWindow.vala:573 +#: src/Gtk/MainWindow.vala:574 msgid "Refreshing..." msgstr "Osvježavanje..." #: src/Gtk/ProgressWindow.vala:144 src/Gtk/TerminalWindow.vala:149 -#: src/Gtk/UpdateNotificationWindow.vala:165 #: src/Utility/Gtk/CustomMessageDialog.vala:153 msgid "Cancel" msgstr "Odustani" @@ -394,53 +406,49 @@ msgstr "Obavijesti kada je pojedino izdanje dostupno" msgid "Show notification bubble on desktop" msgstr "Prikaži mjehurić obavijesti radne površine" -#: src/Gtk/SettingsDialog.vala:103 -msgid "Show notification dialog" -msgstr "Prikaži dijalog obavijesti" - -#: src/Gtk/SettingsDialog.vala:118 +#: src/Gtk/SettingsDialog.vala:106 msgid "Check every" msgstr "Provjeri svaka" -#: src/Gtk/SettingsDialog.vala:149 +#: src/Gtk/SettingsDialog.vala:137 msgid "Hour(s)" msgstr "Sat(a)" -#: src/Gtk/SettingsDialog.vala:151 +#: src/Gtk/SettingsDialog.vala:139 msgid "Day(s)" msgstr "Dan(a)" -#: src/Gtk/SettingsDialog.vala:153 +#: src/Gtk/SettingsDialog.vala:141 msgid "Week(s)" msgstr "Tjedan(a)" -#: src/Gtk/SettingsDialog.vala:158 +#: src/Gtk/SettingsDialog.vala:146 msgid "Display" msgstr "Prikaz" -#: src/Gtk/SettingsDialog.vala:166 +#: src/Gtk/SettingsDialog.vala:154 msgid "Hide unstable and RC releases" msgstr "Sakrij nestabilne kernele i predizdanja" -#: src/Gtk/SettingsDialog.vala:180 +#: src/Gtk/SettingsDialog.vala:168 msgid "Show N previous major versions " msgstr "" -#: src/Gtk/SettingsDialog.vala:195 +#: src/Gtk/SettingsDialog.vala:183 msgid "Other" msgstr "" -#: src/Gtk/SettingsDialog.vala:203 +#: src/Gtk/SettingsDialog.vala:191 #, fuzzy msgid "Skip internet connection check" msgstr "Internet povezivanje nije aktivno" -#: src/Gtk/SettingsDialog.vala:216 +#: src/Gtk/SettingsDialog.vala:204 #, fuzzy msgid "Internet connection timeout in " msgstr "Internet povezivanje nije aktivno" -#: src/Gtk/SettingsDialog.vala:230 +#: src/Gtk/SettingsDialog.vala:218 msgid "seconds" msgstr "" @@ -448,22 +456,6 @@ msgstr "" msgid "Close" msgstr "Zatvori" -#: src/Gtk/UpdateNotificationWindow.vala:146 -msgid "Install this kernel" -msgstr "Instaliraj ovaj kernel" - -#: src/Gtk/UpdateNotificationWindow.vala:155 -msgid "Show" -msgstr "Prikaži" - -#: src/Gtk/UpdateNotificationWindow.vala:156 -msgid "List available kernels" -msgstr "Prikaži sve kernele" - -#: src/Gtk/UpdateNotificationWindow.vala:166 -msgid "Ignore this update" -msgstr "Zanemari ovu nadopunu" - #: src/Utility/Gtk/AboutWindow.vala:271 src/Utility/Gtk/AboutWindow.vala:288 msgid "Credits" msgstr "Zasluge" @@ -587,6 +579,6 @@ msgstr "G" msgid "W" msgstr "Z" -#: src/Utility/TeeJee.Process.vala:513 +#: src/Utility/TeeJee.Process.vala:506 msgid "Stopped" msgstr "Zaustavljeno" diff --git a/po/messages.pot b/po/messages.pot index ae03dbcb..54824ab0 100644 --- a/po/messages.pot +++ b/po/messages.pot @@ -6,9 +6,9 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: mainline 1.0.8\n" +"Project-Id-Version: mainline 1.0.9\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-06 15:08-0400\n" +"POT-Creation-Date: 2020-05-07 00:12-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -57,16 +57,16 @@ msgstr "" msgid "Continue ?" msgstr "" -#: src/Common/LinuxKernel.vala:777 src/Console/AppConsole.vala:359 +#: src/Common/LinuxKernel.vala:777 src/Console/AppConsole.vala:361 msgid "Latest update" msgstr "" -#: src/Common/LinuxKernel.vala:788 src/Console/AppConsole.vala:366 +#: src/Common/LinuxKernel.vala:788 src/Console/AppConsole.vala:368 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:796 src/Console/AppConsole.vala:371 -#: src/Console/AppConsole.vala:429 src/Gtk/MainWindow.vala:798 +#: src/Common/LinuxKernel.vala:796 src/Console/AppConsole.vala:373 +#: src/Console/AppConsole.vala:421 msgid "No updates found" msgstr "" @@ -109,7 +109,7 @@ msgstr "" msgid "ERROR" msgstr "" -#: src/Common/LinuxKernel.vala:1252 src/Gtk/MainWindow.vala:685 +#: src/Common/LinuxKernel.vala:1252 src/Gtk/MainWindow.vala:686 msgid "This kernel is already installed." msgstr "" @@ -145,11 +145,11 @@ msgid "" " Install another kernel before removing this one." msgstr "" -#: src/Common/Main.vala:107 +#: src/Common/Main.vala:106 msgid "Commands listed below are not available on this system" msgstr "" -#: src/Common/Main.vala:108 +#: src/Common/Main.vala:107 msgid "Please install required packages and try again" msgstr "" @@ -158,124 +158,137 @@ msgstr "" msgid "File not found: %s" msgstr "" -#: src/Console/AppConsole.vala:78 src/Gtk/AppGtk.vala:179 +#: src/Console/AppConsole.vala:80 src/Gtk/AppGtk.vala:175 msgid "Syntax" msgstr "" -#: src/Console/AppConsole.vala:80 +#: src/Console/AppConsole.vala:82 msgid "Commands" msgstr "" -#: src/Console/AppConsole.vala:82 +#: src/Console/AppConsole.vala:84 msgid "Check for kernel updates" msgstr "" -#: src/Console/AppConsole.vala:83 +#: src/Console/AppConsole.vala:85 msgid "Check for kernel updates and notify current user" msgstr "" -#: src/Console/AppConsole.vala:84 +#: src/Console/AppConsole.vala:86 msgid "List all available mainline kernels" msgstr "" -#: src/Console/AppConsole.vala:85 +#: src/Console/AppConsole.vala:87 msgid "List installed kernels" msgstr "" -#: src/Console/AppConsole.vala:86 +#: src/Console/AppConsole.vala:88 msgid "Install latest mainline kernel" msgstr "" -#: src/Console/AppConsole.vala:87 +#: src/Console/AppConsole.vala:89 msgid "Install latest point update for current series" msgstr "" -#: src/Console/AppConsole.vala:88 +#: src/Console/AppConsole.vala:90 msgid "Install specified mainline kernel" msgstr "" -#: src/Console/AppConsole.vala:89 +#: src/Console/AppConsole.vala:91 msgid "Remove specified kernel" msgstr "" -#: src/Console/AppConsole.vala:90 src/Gtk/MainWindow.vala:422 +#: src/Console/AppConsole.vala:92 src/Gtk/MainWindow.vala:422 msgid "Remove installed kernels older than running kernel" msgstr "" -#: src/Console/AppConsole.vala:91 +#: src/Console/AppConsole.vala:93 msgid "Download packages for specified kernel" msgstr "" -#: src/Console/AppConsole.vala:92 src/Console/AppConsole.vala:97 +#: src/Console/AppConsole.vala:94 src/Console/AppConsole.vala:99 msgid "Remove files from application cache" msgstr "" -#: src/Console/AppConsole.vala:93 +#: src/Console/AppConsole.vala:95 msgid "Show unstable and RC releases" msgstr "" -#: src/Console/AppConsole.vala:95 src/Gtk/AppGtk.vala:181 +#: src/Console/AppConsole.vala:97 src/Gtk/AppGtk.vala:177 msgid "Options" msgstr "" -#: src/Console/AppConsole.vala:98 +#: src/Console/AppConsole.vala:100 msgid "Enable verbose debugging output" msgstr "" -#: src/Console/AppConsole.vala:99 +#: src/Console/AppConsole.vala:101 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "" -#: src/Console/AppConsole.vala:100 +#: src/Console/AppConsole.vala:102 msgid "Override user" msgstr "" -#: src/Console/AppConsole.vala:113 +#: src/Console/AppConsole.vala:115 msgid "Admin access is required for running this application." msgstr "" -#: src/Console/AppConsole.vala:116 +#: src/Console/AppConsole.vala:118 msgid "Run the application as admin with pkexec or sudo." msgstr "" -#: src/Console/AppConsole.vala:196 src/Gtk/AppGtk.vala:166 +#: src/Console/AppConsole.vala:198 src/Gtk/AppGtk.vala:162 msgid "Unknown option" msgstr "" -#: src/Console/AppConsole.vala:198 src/Console/AppConsole.vala:312 -#: src/Console/AppConsole.vala:341 +#: src/Console/AppConsole.vala:200 src/Console/AppConsole.vala:314 +#: src/Console/AppConsole.vala:343 msgid "Run '" msgstr "" -#: src/Console/AppConsole.vala:203 src/Gtk/AppGtk.vala:110 +#: src/Console/AppConsole.vala:205 src/Gtk/AppGtk.vala:110 msgid "Cache" msgstr "" -#: src/Console/AppConsole.vala:204 src/Gtk/AppGtk.vala:111 +#: src/Console/AppConsole.vala:206 src/Gtk/AppGtk.vala:111 msgid "Temp" msgstr "" -#: src/Console/AppConsole.vala:284 src/Console/AppConsole.vala:321 +#: src/Console/AppConsole.vala:286 src/Console/AppConsole.vala:323 msgid "No kernels specified" msgstr "" -#: src/Console/AppConsole.vala:290 +#: src/Console/AppConsole.vala:292 msgid "Multiple kernels selected for installation. Select only one." msgstr "" -#: src/Console/AppConsole.vala:308 src/Gtk/MainWindow.vala:100 +#: src/Console/AppConsole.vala:310 src/Gtk/MainWindow.vala:100 msgid "Could not find requested version" msgstr "" -#: src/Console/AppConsole.vala:340 +#: src/Console/AppConsole.vala:342 msgid "Command not specified" msgstr "" -#: src/Gtk/AppGtk.vala:183 +#: src/Console/AppConsole.vala:391 src/Console/AppConsole.vala:408 +#, c-format +msgid "Linux v%s Available" +msgstr "" + +#: src/Console/AppConsole.vala:392 +msgid "Major update available for installation" +msgstr "" + +#: src/Console/AppConsole.vala:409 +msgid "Minor update available for installation" +msgstr "" + +#: src/Gtk/AppGtk.vala:179 msgid "Print debug information" msgstr "" -#: src/Gtk/AppGtk.vala:184 +#: src/Gtk/AppGtk.vala:180 msgid "Show all options" msgstr "" @@ -295,17 +308,17 @@ msgstr "" msgid "Refresh" msgstr "" -#: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:554 -#: src/Gtk/MainWindow.vala:690 src/Utility/TeeJee.System.vala:281 +#: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:555 +#: src/Gtk/MainWindow.vala:691 src/Utility/TeeJee.System.vala:281 msgid "Internet connection is not active" msgstr "" -#: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:554 -#: src/Gtk/MainWindow.vala:690 +#: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:555 +#: src/Gtk/MainWindow.vala:691 msgid "No Internet" msgstr "" -#: src/Gtk/MainWindow.vala:357 src/Gtk/UpdateNotificationWindow.vala:145 +#: src/Gtk/MainWindow.vala:357 msgid "Install" msgstr "" @@ -349,16 +362,15 @@ msgstr "" msgid "About" msgstr "" -#: src/Gtk/MainWindow.vala:538 +#: src/Gtk/MainWindow.vala:539 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "" -#: src/Gtk/MainWindow.vala:573 +#: src/Gtk/MainWindow.vala:574 msgid "Refreshing..." msgstr "" #: src/Gtk/ProgressWindow.vala:144 src/Gtk/TerminalWindow.vala:149 -#: src/Gtk/UpdateNotificationWindow.vala:165 #: src/Utility/Gtk/CustomMessageDialog.vala:153 msgid "Cancel" msgstr "" @@ -379,51 +391,47 @@ msgstr "" msgid "Show notification bubble on desktop" msgstr "" -#: src/Gtk/SettingsDialog.vala:103 -msgid "Show notification dialog" -msgstr "" - -#: src/Gtk/SettingsDialog.vala:118 +#: src/Gtk/SettingsDialog.vala:106 msgid "Check every" msgstr "" -#: src/Gtk/SettingsDialog.vala:149 +#: src/Gtk/SettingsDialog.vala:137 msgid "Hour(s)" msgstr "" -#: src/Gtk/SettingsDialog.vala:151 +#: src/Gtk/SettingsDialog.vala:139 msgid "Day(s)" msgstr "" -#: src/Gtk/SettingsDialog.vala:153 +#: src/Gtk/SettingsDialog.vala:141 msgid "Week(s)" msgstr "" -#: src/Gtk/SettingsDialog.vala:158 +#: src/Gtk/SettingsDialog.vala:146 msgid "Display" msgstr "" -#: src/Gtk/SettingsDialog.vala:166 +#: src/Gtk/SettingsDialog.vala:154 msgid "Hide unstable and RC releases" msgstr "" -#: src/Gtk/SettingsDialog.vala:180 +#: src/Gtk/SettingsDialog.vala:168 msgid "Show N previous major versions " msgstr "" -#: src/Gtk/SettingsDialog.vala:195 +#: src/Gtk/SettingsDialog.vala:183 msgid "Other" msgstr "" -#: src/Gtk/SettingsDialog.vala:203 +#: src/Gtk/SettingsDialog.vala:191 msgid "Skip internet connection check" msgstr "" -#: src/Gtk/SettingsDialog.vala:216 +#: src/Gtk/SettingsDialog.vala:204 msgid "Internet connection timeout in " msgstr "" -#: src/Gtk/SettingsDialog.vala:230 +#: src/Gtk/SettingsDialog.vala:218 msgid "seconds" msgstr "" @@ -431,22 +439,6 @@ msgstr "" msgid "Close" msgstr "" -#: src/Gtk/UpdateNotificationWindow.vala:146 -msgid "Install this kernel" -msgstr "" - -#: src/Gtk/UpdateNotificationWindow.vala:155 -msgid "Show" -msgstr "" - -#: src/Gtk/UpdateNotificationWindow.vala:156 -msgid "List available kernels" -msgstr "" - -#: src/Gtk/UpdateNotificationWindow.vala:166 -msgid "Ignore this update" -msgstr "" - #: src/Utility/Gtk/AboutWindow.vala:271 src/Utility/Gtk/AboutWindow.vala:288 msgid "Credits" msgstr "" @@ -570,6 +562,6 @@ msgstr "" msgid "W" msgstr "" -#: src/Utility/TeeJee.Process.vala:513 +#: src/Utility/TeeJee.Process.vala:506 msgid "Stopped" msgstr "" diff --git a/po/nl.po b/po/nl.po index 9a6081c6..5e1cd0eb 100644 --- a/po/nl.po +++ b/po/nl.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu 2.2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-06 15:08-0400\n" +"POT-Creation-Date: 2020-05-07 00:12-0400\n" "PO-Revision-Date: 2017-04-30 11:50+0200\n" "Last-Translator: Heimen Stoffels \n" "Language-Team: \n" @@ -61,16 +61,16 @@ msgstr "" msgid "Continue ?" msgstr "" -#: src/Common/LinuxKernel.vala:777 src/Console/AppConsole.vala:359 +#: src/Common/LinuxKernel.vala:777 src/Console/AppConsole.vala:361 msgid "Latest update" msgstr "" -#: src/Common/LinuxKernel.vala:788 src/Console/AppConsole.vala:366 +#: src/Common/LinuxKernel.vala:788 src/Console/AppConsole.vala:368 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:796 src/Console/AppConsole.vala:371 -#: src/Console/AppConsole.vala:429 src/Gtk/MainWindow.vala:798 +#: src/Common/LinuxKernel.vala:796 src/Console/AppConsole.vala:373 +#: src/Console/AppConsole.vala:421 msgid "No updates found" msgstr "Geen updates gevonden" @@ -113,7 +113,7 @@ msgstr "Oké" msgid "ERROR" msgstr "FOUT" -#: src/Common/LinuxKernel.vala:1252 src/Gtk/MainWindow.vala:685 +#: src/Common/LinuxKernel.vala:1252 src/Gtk/MainWindow.vala:686 msgid "This kernel is already installed." msgstr "Deze kernel is al geïnstalleerd." @@ -156,11 +156,11 @@ msgstr "" "Deze kernel is momenteel in gebruik en kan daarom niet worden verwijderd.\n" " Installeer een andere kernel voordat u deze verwijdert." -#: src/Common/Main.vala:107 +#: src/Common/Main.vala:106 msgid "Commands listed below are not available on this system" msgstr "De onderstaande opdrachten zijn niet beschikbaar op dit systeem" -#: src/Common/Main.vala:108 +#: src/Common/Main.vala:107 msgid "Please install required packages and try again" msgstr "Installeer de vereiste pakketten en probeer het opnieuw" @@ -169,133 +169,146 @@ msgstr "Installeer de vereiste pakketten en probeer het opnieuw" msgid "File not found: %s" msgstr "Bestand niet gevonden: %s" -#: src/Console/AppConsole.vala:78 src/Gtk/AppGtk.vala:179 +#: src/Console/AppConsole.vala:80 src/Gtk/AppGtk.vala:175 msgid "Syntax" msgstr "Syntax" -#: src/Console/AppConsole.vala:80 +#: src/Console/AppConsole.vala:82 msgid "Commands" msgstr "" -#: src/Console/AppConsole.vala:82 +#: src/Console/AppConsole.vala:84 msgid "Check for kernel updates" msgstr "Controleren op kernel-updates" -#: src/Console/AppConsole.vala:83 +#: src/Console/AppConsole.vala:85 #, fuzzy msgid "Check for kernel updates and notify current user" msgstr "Controleren op kernel-updates" -#: src/Console/AppConsole.vala:84 +#: src/Console/AppConsole.vala:86 msgid "List all available mainline kernels" msgstr "Alle beschikbare mainline-kernels weergeven" -#: src/Console/AppConsole.vala:85 +#: src/Console/AppConsole.vala:87 #, fuzzy msgid "List installed kernels" msgstr "Alle beschikbare mainline-kernels weergeven" -#: src/Console/AppConsole.vala:86 +#: src/Console/AppConsole.vala:88 #, fuzzy msgid "Install latest mainline kernel" msgstr "Opgegeven mainline-kernel installeren" -#: src/Console/AppConsole.vala:87 +#: src/Console/AppConsole.vala:89 msgid "Install latest point update for current series" msgstr "" -#: src/Console/AppConsole.vala:88 +#: src/Console/AppConsole.vala:90 msgid "Install specified mainline kernel" msgstr "Opgegeven mainline-kernel installeren" -#: src/Console/AppConsole.vala:89 +#: src/Console/AppConsole.vala:91 #, fuzzy msgid "Remove specified kernel" msgstr "Opgegeven mainline-kernel verwijderen" -#: src/Console/AppConsole.vala:90 src/Gtk/MainWindow.vala:422 +#: src/Console/AppConsole.vala:92 src/Gtk/MainWindow.vala:422 msgid "Remove installed kernels older than running kernel" msgstr "" -#: src/Console/AppConsole.vala:91 +#: src/Console/AppConsole.vala:93 msgid "Download packages for specified kernel" msgstr "Pakketten downloaden voor opgegeven kernel" -#: src/Console/AppConsole.vala:92 src/Console/AppConsole.vala:97 +#: src/Console/AppConsole.vala:94 src/Console/AppConsole.vala:99 msgid "Remove files from application cache" msgstr "Bestanden verwijderen uit applicatie-cache" -#: src/Console/AppConsole.vala:93 +#: src/Console/AppConsole.vala:95 #, fuzzy msgid "Show unstable and RC releases" msgstr "Instabiele en RC-uitgaven verbergen" -#: src/Console/AppConsole.vala:95 src/Gtk/AppGtk.vala:181 +#: src/Console/AppConsole.vala:97 src/Gtk/AppGtk.vala:177 msgid "Options" msgstr "Opties" -#: src/Console/AppConsole.vala:98 +#: src/Console/AppConsole.vala:100 msgid "Enable verbose debugging output" msgstr "" -#: src/Console/AppConsole.vala:99 +#: src/Console/AppConsole.vala:101 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "" -#: src/Console/AppConsole.vala:100 +#: src/Console/AppConsole.vala:102 msgid "Override user" msgstr "" -#: src/Console/AppConsole.vala:113 +#: src/Console/AppConsole.vala:115 msgid "Admin access is required for running this application." msgstr "" "U heeft administrator-rechten nodig om deze applicatie te kunnen draaien." -#: src/Console/AppConsole.vala:116 +#: src/Console/AppConsole.vala:118 #, fuzzy msgid "Run the application as admin with pkexec or sudo." msgstr "Draai de applicatie als root of m.b.v. gksu/sudo." -#: src/Console/AppConsole.vala:196 src/Gtk/AppGtk.vala:166 +#: src/Console/AppConsole.vala:198 src/Gtk/AppGtk.vala:162 msgid "Unknown option" msgstr "Onbekende optie" -#: src/Console/AppConsole.vala:198 src/Console/AppConsole.vala:312 -#: src/Console/AppConsole.vala:341 +#: src/Console/AppConsole.vala:200 src/Console/AppConsole.vala:314 +#: src/Console/AppConsole.vala:343 msgid "Run '" msgstr "" -#: src/Console/AppConsole.vala:203 src/Gtk/AppGtk.vala:110 +#: src/Console/AppConsole.vala:205 src/Gtk/AppGtk.vala:110 msgid "Cache" msgstr "" -#: src/Console/AppConsole.vala:204 src/Gtk/AppGtk.vala:111 +#: src/Console/AppConsole.vala:206 src/Gtk/AppGtk.vala:111 msgid "Temp" msgstr "" -#: src/Console/AppConsole.vala:284 src/Console/AppConsole.vala:321 +#: src/Console/AppConsole.vala:286 src/Console/AppConsole.vala:323 msgid "No kernels specified" msgstr "" -#: src/Console/AppConsole.vala:290 +#: src/Console/AppConsole.vala:292 msgid "Multiple kernels selected for installation. Select only one." msgstr "" "Er zijn meerdere te installeren kernels geselecteerd. Selecteer er slechts " "één." -#: src/Console/AppConsole.vala:308 src/Gtk/MainWindow.vala:100 +#: src/Console/AppConsole.vala:310 src/Gtk/MainWindow.vala:100 msgid "Could not find requested version" msgstr "De vereiste versie kan niet worden gevonden" -#: src/Console/AppConsole.vala:340 +#: src/Console/AppConsole.vala:342 msgid "Command not specified" msgstr "" -#: src/Gtk/AppGtk.vala:183 +#: src/Console/AppConsole.vala:391 src/Console/AppConsole.vala:408 +#, c-format +msgid "Linux v%s Available" +msgstr "" + +#: src/Console/AppConsole.vala:392 +msgid "Major update available for installation" +msgstr "" + +#: src/Console/AppConsole.vala:409 +msgid "Minor update available for installation" +msgstr "" + +#: src/Gtk/AppGtk.vala:179 msgid "Print debug information" msgstr "Foutopsporingsinformatie printen" -#: src/Gtk/AppGtk.vala:184 +#: src/Gtk/AppGtk.vala:180 msgid "Show all options" msgstr "Alle opties weergeven" @@ -315,17 +328,17 @@ msgstr "Status" msgid "Refresh" msgstr "Verversen" -#: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:554 -#: src/Gtk/MainWindow.vala:690 src/Utility/TeeJee.System.vala:281 +#: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:555 +#: src/Gtk/MainWindow.vala:691 src/Utility/TeeJee.System.vala:281 msgid "Internet connection is not active" msgstr "U bent niet verbonden met het internet" -#: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:554 -#: src/Gtk/MainWindow.vala:690 +#: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:555 +#: src/Gtk/MainWindow.vala:691 msgid "No Internet" msgstr "Geen internetverbinding" -#: src/Gtk/MainWindow.vala:357 src/Gtk/UpdateNotificationWindow.vala:145 +#: src/Gtk/MainWindow.vala:357 msgid "Install" msgstr "Installeren" @@ -369,16 +382,15 @@ msgstr "Instellingen" msgid "About" msgstr "Over" -#: src/Gtk/MainWindow.vala:538 +#: src/Gtk/MainWindow.vala:539 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Kernel-upgradehulpmiddel voor op Ubuntu-gebaseerde distributies" -#: src/Gtk/MainWindow.vala:573 +#: src/Gtk/MainWindow.vala:574 msgid "Refreshing..." msgstr "Bezig met verversen..." #: src/Gtk/ProgressWindow.vala:144 src/Gtk/TerminalWindow.vala:149 -#: src/Gtk/UpdateNotificationWindow.vala:165 #: src/Utility/Gtk/CustomMessageDialog.vala:153 msgid "Cancel" msgstr "Annuleren" @@ -399,53 +411,49 @@ msgstr "Melding weergeven als er een puntupdate beschikbaar is" msgid "Show notification bubble on desktop" msgstr "Bureaubladmelding weergeven" -#: src/Gtk/SettingsDialog.vala:103 -msgid "Show notification dialog" -msgstr "Meldingsvenster weergeven" - -#: src/Gtk/SettingsDialog.vala:118 +#: src/Gtk/SettingsDialog.vala:106 msgid "Check every" msgstr "Controleer elke" -#: src/Gtk/SettingsDialog.vala:149 +#: src/Gtk/SettingsDialog.vala:137 msgid "Hour(s)" msgstr "uur" -#: src/Gtk/SettingsDialog.vala:151 +#: src/Gtk/SettingsDialog.vala:139 msgid "Day(s)" msgstr "dag(en)" -#: src/Gtk/SettingsDialog.vala:153 +#: src/Gtk/SettingsDialog.vala:141 msgid "Week(s)" msgstr "we(e)k(en)" -#: src/Gtk/SettingsDialog.vala:158 +#: src/Gtk/SettingsDialog.vala:146 msgid "Display" msgstr "Weergave" -#: src/Gtk/SettingsDialog.vala:166 +#: src/Gtk/SettingsDialog.vala:154 msgid "Hide unstable and RC releases" msgstr "Instabiele en RC-uitgaven verbergen" -#: src/Gtk/SettingsDialog.vala:180 +#: src/Gtk/SettingsDialog.vala:168 msgid "Show N previous major versions " msgstr "" -#: src/Gtk/SettingsDialog.vala:195 +#: src/Gtk/SettingsDialog.vala:183 msgid "Other" msgstr "" -#: src/Gtk/SettingsDialog.vala:203 +#: src/Gtk/SettingsDialog.vala:191 #, fuzzy msgid "Skip internet connection check" msgstr "U bent niet verbonden met het internet" -#: src/Gtk/SettingsDialog.vala:216 +#: src/Gtk/SettingsDialog.vala:204 #, fuzzy msgid "Internet connection timeout in " msgstr "U bent niet verbonden met het internet" -#: src/Gtk/SettingsDialog.vala:230 +#: src/Gtk/SettingsDialog.vala:218 msgid "seconds" msgstr "" @@ -453,23 +461,6 @@ msgstr "" msgid "Close" msgstr "Sluiten" -#: src/Gtk/UpdateNotificationWindow.vala:146 -msgid "Install this kernel" -msgstr "Deze kernel installeren" - -#: src/Gtk/UpdateNotificationWindow.vala:155 -msgid "Show" -msgstr "" - -#: src/Gtk/UpdateNotificationWindow.vala:156 -#, fuzzy -msgid "List available kernels" -msgstr "Alle beschikbare mainline-kernels weergeven" - -#: src/Gtk/UpdateNotificationWindow.vala:166 -msgid "Ignore this update" -msgstr "Deze update negeren" - #: src/Utility/Gtk/AboutWindow.vala:271 src/Utility/Gtk/AboutWindow.vala:288 msgid "Credits" msgstr "Met dank aan" @@ -593,6 +584,6 @@ msgstr "E" msgid "W" msgstr "W" -#: src/Utility/TeeJee.Process.vala:513 +#: src/Utility/TeeJee.Process.vala:506 msgid "Stopped" msgstr "Gestopt" diff --git a/po/pl.po b/po/pl.po index 5f83f4f4..ffba6d64 100644 --- a/po/pl.po +++ b/po/pl.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-06 15:08-0400\n" +"POT-Creation-Date: 2020-05-07 00:12-0400\n" "PO-Revision-Date: 2017-08-12 15:26+0200\n" "Last-Translator: Waldemar Konik \n" "Language-Team: Polish\n" @@ -59,16 +59,16 @@ msgstr "" msgid "Continue ?" msgstr "" -#: src/Common/LinuxKernel.vala:777 src/Console/AppConsole.vala:359 +#: src/Common/LinuxKernel.vala:777 src/Console/AppConsole.vala:361 msgid "Latest update" msgstr "" -#: src/Common/LinuxKernel.vala:788 src/Console/AppConsole.vala:366 +#: src/Common/LinuxKernel.vala:788 src/Console/AppConsole.vala:368 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:796 src/Console/AppConsole.vala:371 -#: src/Console/AppConsole.vala:429 src/Gtk/MainWindow.vala:798 +#: src/Common/LinuxKernel.vala:796 src/Console/AppConsole.vala:373 +#: src/Console/AppConsole.vala:421 msgid "No updates found" msgstr "Nie znaleziono aktualizacji" @@ -111,7 +111,7 @@ msgstr "OK" msgid "ERROR" msgstr "BŁĄD" -#: src/Common/LinuxKernel.vala:1252 src/Gtk/MainWindow.vala:685 +#: src/Common/LinuxKernel.vala:1252 src/Gtk/MainWindow.vala:686 msgid "This kernel is already installed." msgstr "To jądro jest już zainstalowane." @@ -153,11 +153,11 @@ msgstr "" "To jądro aktualnie działa i nie może zostać usunięte.\n" " Zainstaluj inne jądro przed usunięciem tego." -#: src/Common/Main.vala:107 +#: src/Common/Main.vala:106 msgid "Commands listed below are not available on this system" msgstr "Poniższe polecenia nie są dostępne na tym systemie" -#: src/Common/Main.vala:108 +#: src/Common/Main.vala:107 msgid "Please install required packages and try again" msgstr "Zainstaluj wymagane pakiety i spróbuj ponownie" @@ -166,130 +166,143 @@ msgstr "Zainstaluj wymagane pakiety i spróbuj ponownie" msgid "File not found: %s" msgstr "Nie odnaleziono pliku: %s" -#: src/Console/AppConsole.vala:78 src/Gtk/AppGtk.vala:179 +#: src/Console/AppConsole.vala:80 src/Gtk/AppGtk.vala:175 msgid "Syntax" msgstr "Składnia" -#: src/Console/AppConsole.vala:80 +#: src/Console/AppConsole.vala:82 msgid "Commands" msgstr "" -#: src/Console/AppConsole.vala:82 +#: src/Console/AppConsole.vala:84 msgid "Check for kernel updates" msgstr "Sprawdź nowe wersje jądra" -#: src/Console/AppConsole.vala:83 +#: src/Console/AppConsole.vala:85 #, fuzzy msgid "Check for kernel updates and notify current user" msgstr "Sprawdź nowe wersje jądra" -#: src/Console/AppConsole.vala:84 +#: src/Console/AppConsole.vala:86 msgid "List all available mainline kernels" msgstr "Pokaż wszystkie dostępne jądra" -#: src/Console/AppConsole.vala:85 +#: src/Console/AppConsole.vala:87 #, fuzzy msgid "List installed kernels" msgstr "Pokaż wszystkie dostępne jądra" -#: src/Console/AppConsole.vala:86 +#: src/Console/AppConsole.vala:88 #, fuzzy msgid "Install latest mainline kernel" msgstr "Zainstaluj wybrane jądro" -#: src/Console/AppConsole.vala:87 +#: src/Console/AppConsole.vala:89 msgid "Install latest point update for current series" msgstr "" -#: src/Console/AppConsole.vala:88 +#: src/Console/AppConsole.vala:90 msgid "Install specified mainline kernel" msgstr "Zainstaluj wybrane jądro" -#: src/Console/AppConsole.vala:89 +#: src/Console/AppConsole.vala:91 #, fuzzy msgid "Remove specified kernel" msgstr "Usuń wybrane jądro" -#: src/Console/AppConsole.vala:90 src/Gtk/MainWindow.vala:422 +#: src/Console/AppConsole.vala:92 src/Gtk/MainWindow.vala:422 msgid "Remove installed kernels older than running kernel" msgstr "" -#: src/Console/AppConsole.vala:91 +#: src/Console/AppConsole.vala:93 msgid "Download packages for specified kernel" msgstr "Pobierz pakiety dla wybranego jądra" -#: src/Console/AppConsole.vala:92 src/Console/AppConsole.vala:97 +#: src/Console/AppConsole.vala:94 src/Console/AppConsole.vala:99 msgid "Remove files from application cache" msgstr "Usuń pliki z pamięci podręcznej aplikacji" -#: src/Console/AppConsole.vala:93 +#: src/Console/AppConsole.vala:95 #, fuzzy msgid "Show unstable and RC releases" msgstr "Ukryj wydania niestabilne i RC" -#: src/Console/AppConsole.vala:95 src/Gtk/AppGtk.vala:181 +#: src/Console/AppConsole.vala:97 src/Gtk/AppGtk.vala:177 msgid "Options" msgstr "Opcje" -#: src/Console/AppConsole.vala:98 +#: src/Console/AppConsole.vala:100 msgid "Enable verbose debugging output" msgstr "" -#: src/Console/AppConsole.vala:99 +#: src/Console/AppConsole.vala:101 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "" -#: src/Console/AppConsole.vala:100 +#: src/Console/AppConsole.vala:102 msgid "Override user" msgstr "" -#: src/Console/AppConsole.vala:113 +#: src/Console/AppConsole.vala:115 msgid "Admin access is required for running this application." msgstr "Aby uruchomić tę aplikację niezbędne są prawa administratora." -#: src/Console/AppConsole.vala:116 +#: src/Console/AppConsole.vala:118 #, fuzzy msgid "Run the application as admin with pkexec or sudo." msgstr "Uruchom aplikację jako root albo użyj gksu/sudo." -#: src/Console/AppConsole.vala:196 src/Gtk/AppGtk.vala:166 +#: src/Console/AppConsole.vala:198 src/Gtk/AppGtk.vala:162 msgid "Unknown option" msgstr "Nieznana opcja" -#: src/Console/AppConsole.vala:198 src/Console/AppConsole.vala:312 -#: src/Console/AppConsole.vala:341 +#: src/Console/AppConsole.vala:200 src/Console/AppConsole.vala:314 +#: src/Console/AppConsole.vala:343 msgid "Run '" msgstr "" -#: src/Console/AppConsole.vala:203 src/Gtk/AppGtk.vala:110 +#: src/Console/AppConsole.vala:205 src/Gtk/AppGtk.vala:110 msgid "Cache" msgstr "" -#: src/Console/AppConsole.vala:204 src/Gtk/AppGtk.vala:111 +#: src/Console/AppConsole.vala:206 src/Gtk/AppGtk.vala:111 msgid "Temp" msgstr "" -#: src/Console/AppConsole.vala:284 src/Console/AppConsole.vala:321 +#: src/Console/AppConsole.vala:286 src/Console/AppConsole.vala:323 msgid "No kernels specified" msgstr "" -#: src/Console/AppConsole.vala:290 +#: src/Console/AppConsole.vala:292 msgid "Multiple kernels selected for installation. Select only one." msgstr "Wybrano kilka jąder do instalacji. Wybierz tylko jedno." -#: src/Console/AppConsole.vala:308 src/Gtk/MainWindow.vala:100 +#: src/Console/AppConsole.vala:310 src/Gtk/MainWindow.vala:100 msgid "Could not find requested version" msgstr "Nie można odnaleźć żądanej wersji" -#: src/Console/AppConsole.vala:340 +#: src/Console/AppConsole.vala:342 msgid "Command not specified" msgstr "" -#: src/Gtk/AppGtk.vala:183 +#: src/Console/AppConsole.vala:391 src/Console/AppConsole.vala:408 +#, c-format +msgid "Linux v%s Available" +msgstr "" + +#: src/Console/AppConsole.vala:392 +msgid "Major update available for installation" +msgstr "" + +#: src/Console/AppConsole.vala:409 +msgid "Minor update available for installation" +msgstr "" + +#: src/Gtk/AppGtk.vala:179 msgid "Print debug information" msgstr "Wypisz informacje debugujące" -#: src/Gtk/AppGtk.vala:184 +#: src/Gtk/AppGtk.vala:180 msgid "Show all options" msgstr "Pokaż wszystkie opcje" @@ -309,17 +322,17 @@ msgstr "Status" msgid "Refresh" msgstr "Odśwież" -#: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:554 -#: src/Gtk/MainWindow.vala:690 src/Utility/TeeJee.System.vala:281 +#: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:555 +#: src/Gtk/MainWindow.vala:691 src/Utility/TeeJee.System.vala:281 msgid "Internet connection is not active" msgstr "Brak połączenia z internetem" -#: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:554 -#: src/Gtk/MainWindow.vala:690 +#: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:555 +#: src/Gtk/MainWindow.vala:691 msgid "No Internet" msgstr "Brak internetu" -#: src/Gtk/MainWindow.vala:357 src/Gtk/UpdateNotificationWindow.vala:145 +#: src/Gtk/MainWindow.vala:357 msgid "Install" msgstr "Zainstaluj" @@ -363,16 +376,15 @@ msgstr "Ustawienia" msgid "About" msgstr "O programie" -#: src/Gtk/MainWindow.vala:538 +#: src/Gtk/MainWindow.vala:539 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Narzędzie uaktualniania jądra dla dystrybucji z rodziny Ubuntu" -#: src/Gtk/MainWindow.vala:573 +#: src/Gtk/MainWindow.vala:574 msgid "Refreshing..." msgstr "Odświeżam..." #: src/Gtk/ProgressWindow.vala:144 src/Gtk/TerminalWindow.vala:149 -#: src/Gtk/UpdateNotificationWindow.vala:165 #: src/Utility/Gtk/CustomMessageDialog.vala:153 msgid "Cancel" msgstr "Anuluj" @@ -393,53 +405,49 @@ msgstr "Powiadom, jeśli pojawi się wersja punktowa" msgid "Show notification bubble on desktop" msgstr "Pokaż powiadomienia na pulpicie" -#: src/Gtk/SettingsDialog.vala:103 -msgid "Show notification dialog" -msgstr "Pokaż okno powiadomień" - -#: src/Gtk/SettingsDialog.vala:118 +#: src/Gtk/SettingsDialog.vala:106 msgid "Check every" msgstr "Sprawdzaj co" -#: src/Gtk/SettingsDialog.vala:149 +#: src/Gtk/SettingsDialog.vala:137 msgid "Hour(s)" msgstr "Godzin(y)" -#: src/Gtk/SettingsDialog.vala:151 +#: src/Gtk/SettingsDialog.vala:139 msgid "Day(s)" msgstr "Dni" -#: src/Gtk/SettingsDialog.vala:153 +#: src/Gtk/SettingsDialog.vala:141 msgid "Week(s)" msgstr "Tygodni" -#: src/Gtk/SettingsDialog.vala:158 +#: src/Gtk/SettingsDialog.vala:146 msgid "Display" msgstr "Pokaż" -#: src/Gtk/SettingsDialog.vala:166 +#: src/Gtk/SettingsDialog.vala:154 msgid "Hide unstable and RC releases" msgstr "Ukryj wydania niestabilne i RC" -#: src/Gtk/SettingsDialog.vala:180 +#: src/Gtk/SettingsDialog.vala:168 msgid "Show N previous major versions " msgstr "" -#: src/Gtk/SettingsDialog.vala:195 +#: src/Gtk/SettingsDialog.vala:183 msgid "Other" msgstr "" -#: src/Gtk/SettingsDialog.vala:203 +#: src/Gtk/SettingsDialog.vala:191 #, fuzzy msgid "Skip internet connection check" msgstr "Brak połączenia z internetem" -#: src/Gtk/SettingsDialog.vala:216 +#: src/Gtk/SettingsDialog.vala:204 #, fuzzy msgid "Internet connection timeout in " msgstr "Brak połączenia z internetem" -#: src/Gtk/SettingsDialog.vala:230 +#: src/Gtk/SettingsDialog.vala:218 msgid "seconds" msgstr "" @@ -447,23 +455,6 @@ msgstr "" msgid "Close" msgstr "Zamknij" -#: src/Gtk/UpdateNotificationWindow.vala:146 -msgid "Install this kernel" -msgstr "Zainstaluj to jądro" - -#: src/Gtk/UpdateNotificationWindow.vala:155 -msgid "Show" -msgstr "" - -#: src/Gtk/UpdateNotificationWindow.vala:156 -#, fuzzy -msgid "List available kernels" -msgstr "Pokaż wszystkie dostępne jądra" - -#: src/Gtk/UpdateNotificationWindow.vala:166 -msgid "Ignore this update" -msgstr "Zignoruj tę aktualizację" - #: src/Utility/Gtk/AboutWindow.vala:271 src/Utility/Gtk/AboutWindow.vala:288 msgid "Credits" msgstr "Zasługi" @@ -587,6 +578,6 @@ msgstr "E" msgid "W" msgstr "W" -#: src/Utility/TeeJee.Process.vala:513 +#: src/Utility/TeeJee.Process.vala:506 msgid "Stopped" msgstr "Zatrzymany" diff --git a/po/ru.po b/po/ru.po index 802e2450..8255810e 100644 --- a/po/ru.po +++ b/po/ru.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-06 15:08-0400\n" +"POT-Creation-Date: 2020-05-07 00:12-0400\n" "PO-Revision-Date: 2016-12-13 16:46+0300\n" "Last-Translator: Faust3000 \n" "Language-Team: Russian \n" @@ -61,16 +61,16 @@ msgstr "" msgid "Continue ?" msgstr "" -#: src/Common/LinuxKernel.vala:777 src/Console/AppConsole.vala:359 +#: src/Common/LinuxKernel.vala:777 src/Console/AppConsole.vala:361 msgid "Latest update" msgstr "" -#: src/Common/LinuxKernel.vala:788 src/Console/AppConsole.vala:366 +#: src/Common/LinuxKernel.vala:788 src/Console/AppConsole.vala:368 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:796 src/Console/AppConsole.vala:371 -#: src/Console/AppConsole.vala:429 src/Gtk/MainWindow.vala:798 +#: src/Common/LinuxKernel.vala:796 src/Console/AppConsole.vala:373 +#: src/Console/AppConsole.vala:421 msgid "No updates found" msgstr "Обновлений не найдено" @@ -115,7 +115,7 @@ msgstr "OK" msgid "ERROR" msgstr "ОШИБКА" -#: src/Common/LinuxKernel.vala:1252 src/Gtk/MainWindow.vala:685 +#: src/Common/LinuxKernel.vala:1252 src/Gtk/MainWindow.vala:686 msgid "This kernel is already installed." msgstr "Это ядро уже установлено." @@ -158,11 +158,11 @@ msgstr "" "Это ядро в настоящий момент работает и не может быть удалено.\n" " Установите другое ядро, прежде чем удалять его." -#: src/Common/Main.vala:107 +#: src/Common/Main.vala:106 msgid "Commands listed below are not available on this system" msgstr "Команды перечисленные ниже недоступны на этой системе" -#: src/Common/Main.vala:108 +#: src/Common/Main.vala:107 msgid "Please install required packages and try again" msgstr "Установить необходимые пакеты и попробуйте снова" @@ -171,130 +171,143 @@ msgstr "Установить необходимые пакеты и попроб msgid "File not found: %s" msgstr "Файл не найден: %s" -#: src/Console/AppConsole.vala:78 src/Gtk/AppGtk.vala:179 +#: src/Console/AppConsole.vala:80 src/Gtk/AppGtk.vala:175 msgid "Syntax" msgstr "Синтаксис" -#: src/Console/AppConsole.vala:80 +#: src/Console/AppConsole.vala:82 msgid "Commands" msgstr "" -#: src/Console/AppConsole.vala:82 +#: src/Console/AppConsole.vala:84 msgid "Check for kernel updates" msgstr "Проверить обновления ядра" -#: src/Console/AppConsole.vala:83 +#: src/Console/AppConsole.vala:85 #, fuzzy msgid "Check for kernel updates and notify current user" msgstr "Проверить обновления ядра" -#: src/Console/AppConsole.vala:84 +#: src/Console/AppConsole.vala:86 msgid "List all available mainline kernels" msgstr "Список всех доступных основных ядер" -#: src/Console/AppConsole.vala:85 +#: src/Console/AppConsole.vala:87 #, fuzzy msgid "List installed kernels" msgstr "Список всех доступных основных ядер" -#: src/Console/AppConsole.vala:86 +#: src/Console/AppConsole.vala:88 #, fuzzy msgid "Install latest mainline kernel" msgstr "Установить указанную ветку ядра" -#: src/Console/AppConsole.vala:87 +#: src/Console/AppConsole.vala:89 msgid "Install latest point update for current series" msgstr "" -#: src/Console/AppConsole.vala:88 +#: src/Console/AppConsole.vala:90 msgid "Install specified mainline kernel" msgstr "Установить указанную ветку ядра" -#: src/Console/AppConsole.vala:89 +#: src/Console/AppConsole.vala:91 #, fuzzy msgid "Remove specified kernel" msgstr "Удалить указанную ветку ядра" -#: src/Console/AppConsole.vala:90 src/Gtk/MainWindow.vala:422 +#: src/Console/AppConsole.vala:92 src/Gtk/MainWindow.vala:422 msgid "Remove installed kernels older than running kernel" msgstr "Удалить более старшие установленные ядра, чем используемое" -#: src/Console/AppConsole.vala:91 +#: src/Console/AppConsole.vala:93 msgid "Download packages for specified kernel" msgstr "Скачать пакеты для указанного ядра" -#: src/Console/AppConsole.vala:92 src/Console/AppConsole.vala:97 +#: src/Console/AppConsole.vala:94 src/Console/AppConsole.vala:99 msgid "Remove files from application cache" msgstr "Удалить файлы из кэша программы" -#: src/Console/AppConsole.vala:93 +#: src/Console/AppConsole.vala:95 #, fuzzy msgid "Show unstable and RC releases" msgstr "Скрыть нестабильные и релиз-кандидат версии" -#: src/Console/AppConsole.vala:95 src/Gtk/AppGtk.vala:181 +#: src/Console/AppConsole.vala:97 src/Gtk/AppGtk.vala:177 msgid "Options" msgstr "Параметры" -#: src/Console/AppConsole.vala:98 +#: src/Console/AppConsole.vala:100 msgid "Enable verbose debugging output" msgstr "" -#: src/Console/AppConsole.vala:99 +#: src/Console/AppConsole.vala:101 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "" -#: src/Console/AppConsole.vala:100 +#: src/Console/AppConsole.vala:102 msgid "Override user" msgstr "" -#: src/Console/AppConsole.vala:113 +#: src/Console/AppConsole.vala:115 msgid "Admin access is required for running this application." msgstr "Для запуска программы требуются права администратора." -#: src/Console/AppConsole.vala:116 +#: src/Console/AppConsole.vala:118 #, fuzzy msgid "Run the application as admin with pkexec or sudo." msgstr "Запустите программу с правами Root или используйте gksu/sudo." -#: src/Console/AppConsole.vala:196 src/Gtk/AppGtk.vala:166 +#: src/Console/AppConsole.vala:198 src/Gtk/AppGtk.vala:162 msgid "Unknown option" msgstr "Неизвестный параметр" -#: src/Console/AppConsole.vala:198 src/Console/AppConsole.vala:312 -#: src/Console/AppConsole.vala:341 +#: src/Console/AppConsole.vala:200 src/Console/AppConsole.vala:314 +#: src/Console/AppConsole.vala:343 msgid "Run '" msgstr "" -#: src/Console/AppConsole.vala:203 src/Gtk/AppGtk.vala:110 +#: src/Console/AppConsole.vala:205 src/Gtk/AppGtk.vala:110 msgid "Cache" msgstr "" -#: src/Console/AppConsole.vala:204 src/Gtk/AppGtk.vala:111 +#: src/Console/AppConsole.vala:206 src/Gtk/AppGtk.vala:111 msgid "Temp" msgstr "" -#: src/Console/AppConsole.vala:284 src/Console/AppConsole.vala:321 +#: src/Console/AppConsole.vala:286 src/Console/AppConsole.vala:323 msgid "No kernels specified" msgstr "" -#: src/Console/AppConsole.vala:290 +#: src/Console/AppConsole.vala:292 msgid "Multiple kernels selected for installation. Select only one." msgstr "" -#: src/Console/AppConsole.vala:308 src/Gtk/MainWindow.vala:100 +#: src/Console/AppConsole.vala:310 src/Gtk/MainWindow.vala:100 msgid "Could not find requested version" msgstr "Не удалось найти запрошенную версию" -#: src/Console/AppConsole.vala:340 +#: src/Console/AppConsole.vala:342 msgid "Command not specified" msgstr "" -#: src/Gtk/AppGtk.vala:183 +#: src/Console/AppConsole.vala:391 src/Console/AppConsole.vala:408 +#, c-format +msgid "Linux v%s Available" +msgstr "" + +#: src/Console/AppConsole.vala:392 +msgid "Major update available for installation" +msgstr "" + +#: src/Console/AppConsole.vala:409 +msgid "Minor update available for installation" +msgstr "" + +#: src/Gtk/AppGtk.vala:179 msgid "Print debug information" msgstr "Распечатать отладочную информацию" -#: src/Gtk/AppGtk.vala:184 +#: src/Gtk/AppGtk.vala:180 msgid "Show all options" msgstr "Показать все параметры" @@ -314,17 +327,17 @@ msgstr "Состояние" msgid "Refresh" msgstr "Обновить" -#: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:554 -#: src/Gtk/MainWindow.vala:690 src/Utility/TeeJee.System.vala:281 +#: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:555 +#: src/Gtk/MainWindow.vala:691 src/Utility/TeeJee.System.vala:281 msgid "Internet connection is not active" msgstr "Интернет соединение не активно" -#: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:554 -#: src/Gtk/MainWindow.vala:690 +#: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:555 +#: src/Gtk/MainWindow.vala:691 msgid "No Internet" msgstr "" -#: src/Gtk/MainWindow.vala:357 src/Gtk/UpdateNotificationWindow.vala:145 +#: src/Gtk/MainWindow.vala:357 msgid "Install" msgstr "Установить" @@ -368,16 +381,15 @@ msgstr "Настройки" msgid "About" msgstr "О программе" -#: src/Gtk/MainWindow.vala:538 +#: src/Gtk/MainWindow.vala:539 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Программа обновления ядра для дистрибутивов на базе Ubuntu" -#: src/Gtk/MainWindow.vala:573 +#: src/Gtk/MainWindow.vala:574 msgid "Refreshing..." msgstr "Обновление..." #: src/Gtk/ProgressWindow.vala:144 src/Gtk/TerminalWindow.vala:149 -#: src/Gtk/UpdateNotificationWindow.vala:165 #: src/Utility/Gtk/CustomMessageDialog.vala:153 msgid "Cancel" msgstr "Отмена" @@ -398,53 +410,49 @@ msgstr "Уведомлять, если доступно небольшое об msgid "Show notification bubble on desktop" msgstr "Показывать окно оповещений на рабочем столе" -#: src/Gtk/SettingsDialog.vala:103 -msgid "Show notification dialog" -msgstr "Показывать окно оповещений" - -#: src/Gtk/SettingsDialog.vala:118 +#: src/Gtk/SettingsDialog.vala:106 msgid "Check every" msgstr "Проверять каждые" -#: src/Gtk/SettingsDialog.vala:149 +#: src/Gtk/SettingsDialog.vala:137 msgid "Hour(s)" msgstr "Час(ов)" -#: src/Gtk/SettingsDialog.vala:151 +#: src/Gtk/SettingsDialog.vala:139 msgid "Day(s)" msgstr "День(дней)" -#: src/Gtk/SettingsDialog.vala:153 +#: src/Gtk/SettingsDialog.vala:141 msgid "Week(s)" msgstr "Неделю(ли)" -#: src/Gtk/SettingsDialog.vala:158 +#: src/Gtk/SettingsDialog.vala:146 msgid "Display" msgstr "Вид" -#: src/Gtk/SettingsDialog.vala:166 +#: src/Gtk/SettingsDialog.vala:154 msgid "Hide unstable and RC releases" msgstr "Скрыть нестабильные и релиз-кандидат версии" -#: src/Gtk/SettingsDialog.vala:180 +#: src/Gtk/SettingsDialog.vala:168 msgid "Show N previous major versions " msgstr "" -#: src/Gtk/SettingsDialog.vala:195 +#: src/Gtk/SettingsDialog.vala:183 msgid "Other" msgstr "" -#: src/Gtk/SettingsDialog.vala:203 +#: src/Gtk/SettingsDialog.vala:191 #, fuzzy msgid "Skip internet connection check" msgstr "Интернет соединение не активно" -#: src/Gtk/SettingsDialog.vala:216 +#: src/Gtk/SettingsDialog.vala:204 #, fuzzy msgid "Internet connection timeout in " msgstr "Интернет соединение не активно" -#: src/Gtk/SettingsDialog.vala:230 +#: src/Gtk/SettingsDialog.vala:218 msgid "seconds" msgstr "" @@ -452,23 +460,6 @@ msgstr "" msgid "Close" msgstr "Закрыть" -#: src/Gtk/UpdateNotificationWindow.vala:146 -msgid "Install this kernel" -msgstr "Установить это ядро" - -#: src/Gtk/UpdateNotificationWindow.vala:155 -msgid "Show" -msgstr "" - -#: src/Gtk/UpdateNotificationWindow.vala:156 -#, fuzzy -msgid "List available kernels" -msgstr "Список всех доступных основных ядер" - -#: src/Gtk/UpdateNotificationWindow.vala:166 -msgid "Ignore this update" -msgstr "Игнорировать это обновление" - #: src/Utility/Gtk/AboutWindow.vala:271 src/Utility/Gtk/AboutWindow.vala:288 msgid "Credits" msgstr "Создатели" @@ -597,6 +588,6 @@ msgstr "E" msgid "W" msgstr "W" -#: src/Utility/TeeJee.Process.vala:513 +#: src/Utility/TeeJee.Process.vala:506 msgid "Stopped" msgstr "Остановлено" diff --git a/po/sv.po b/po/sv.po index 467a9405..cf654464 100644 --- a/po/sv.po +++ b/po/sv.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu 2.2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-06 15:08-0400\n" +"POT-Creation-Date: 2020-05-07 00:12-0400\n" "PO-Revision-Date: 2018-01-13 16:56+0100\n" "Last-Translator: Åke Engelbrektson \n" "Language-Team: Svenska Språkfiler \n" @@ -62,16 +62,16 @@ msgstr "" msgid "Continue ?" msgstr "" -#: src/Common/LinuxKernel.vala:777 src/Console/AppConsole.vala:359 +#: src/Common/LinuxKernel.vala:777 src/Console/AppConsole.vala:361 msgid "Latest update" msgstr "" -#: src/Common/LinuxKernel.vala:788 src/Console/AppConsole.vala:366 +#: src/Common/LinuxKernel.vala:788 src/Console/AppConsole.vala:368 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:796 src/Console/AppConsole.vala:371 -#: src/Console/AppConsole.vala:429 src/Gtk/MainWindow.vala:798 +#: src/Common/LinuxKernel.vala:796 src/Console/AppConsole.vala:373 +#: src/Console/AppConsole.vala:421 msgid "No updates found" msgstr "Inga uppdateringar hittades" @@ -114,7 +114,7 @@ msgstr "OK" msgid "ERROR" msgstr "FEL" -#: src/Common/LinuxKernel.vala:1252 src/Gtk/MainWindow.vala:685 +#: src/Common/LinuxKernel.vala:1252 src/Gtk/MainWindow.vala:686 msgid "This kernel is already installed." msgstr "Denna kärna är redan installerad" @@ -154,11 +154,11 @@ msgstr "" "Denna kärna används för tillfället och kan inte tas bort.\n" "Installera en annan kärna innan du tar bort den här." -#: src/Common/Main.vala:107 +#: src/Common/Main.vala:106 msgid "Commands listed below are not available on this system" msgstr "Kommandon listade nedan, finns inte tillgängliga i detta system." -#: src/Common/Main.vala:108 +#: src/Common/Main.vala:107 msgid "Please install required packages and try again" msgstr "Installera nödvändiga paket och försök igen" @@ -167,129 +167,142 @@ msgstr "Installera nödvändiga paket och försök igen" msgid "File not found: %s" msgstr "Filen kunde inte hittas: %s" -#: src/Console/AppConsole.vala:78 src/Gtk/AppGtk.vala:179 +#: src/Console/AppConsole.vala:80 src/Gtk/AppGtk.vala:175 msgid "Syntax" msgstr "Syntax" -#: src/Console/AppConsole.vala:80 +#: src/Console/AppConsole.vala:82 msgid "Commands" msgstr "" -#: src/Console/AppConsole.vala:82 +#: src/Console/AppConsole.vala:84 msgid "Check for kernel updates" msgstr "Sök efter kärnuppdateringar" -#: src/Console/AppConsole.vala:83 +#: src/Console/AppConsole.vala:85 #, fuzzy msgid "Check for kernel updates and notify current user" msgstr "Sök efter kärnuppdateringar" -#: src/Console/AppConsole.vala:84 +#: src/Console/AppConsole.vala:86 msgid "List all available mainline kernels" msgstr "Lista alla tillgängliga kärnor" -#: src/Console/AppConsole.vala:85 +#: src/Console/AppConsole.vala:87 #, fuzzy msgid "List installed kernels" msgstr "Lista tillgängliga kärnor" -#: src/Console/AppConsole.vala:86 +#: src/Console/AppConsole.vala:88 #, fuzzy msgid "Install latest mainline kernel" msgstr "Installera specificerad kärna" -#: src/Console/AppConsole.vala:87 +#: src/Console/AppConsole.vala:89 msgid "Install latest point update for current series" msgstr "" -#: src/Console/AppConsole.vala:88 +#: src/Console/AppConsole.vala:90 msgid "Install specified mainline kernel" msgstr "Installera specificerad kärna" -#: src/Console/AppConsole.vala:89 +#: src/Console/AppConsole.vala:91 #, fuzzy msgid "Remove specified kernel" msgstr "Ta bort specificerad kärna" -#: src/Console/AppConsole.vala:90 src/Gtk/MainWindow.vala:422 +#: src/Console/AppConsole.vala:92 src/Gtk/MainWindow.vala:422 msgid "Remove installed kernels older than running kernel" msgstr "Ta bort installerade kärnor äldre än den som körs" -#: src/Console/AppConsole.vala:91 +#: src/Console/AppConsole.vala:93 msgid "Download packages for specified kernel" msgstr "Ladda ner paket för specificerad kärna" -#: src/Console/AppConsole.vala:92 src/Console/AppConsole.vala:97 +#: src/Console/AppConsole.vala:94 src/Console/AppConsole.vala:99 msgid "Remove files from application cache" msgstr "Ta bort filer från program-cachen" -#: src/Console/AppConsole.vala:93 +#: src/Console/AppConsole.vala:95 #, fuzzy msgid "Show unstable and RC releases" msgstr "Dölj instabila- och RC-publiceringar" -#: src/Console/AppConsole.vala:95 src/Gtk/AppGtk.vala:181 +#: src/Console/AppConsole.vala:97 src/Gtk/AppGtk.vala:177 msgid "Options" msgstr "Alternativ" -#: src/Console/AppConsole.vala:98 +#: src/Console/AppConsole.vala:100 msgid "Enable verbose debugging output" msgstr "" -#: src/Console/AppConsole.vala:99 +#: src/Console/AppConsole.vala:101 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "" -#: src/Console/AppConsole.vala:100 +#: src/Console/AppConsole.vala:102 msgid "Override user" msgstr "" -#: src/Console/AppConsole.vala:113 +#: src/Console/AppConsole.vala:115 msgid "Admin access is required for running this application." msgstr "Root-åtkomst krävs för att köra detta program." -#: src/Console/AppConsole.vala:116 +#: src/Console/AppConsole.vala:118 msgid "Run the application as admin with pkexec or sudo." msgstr "Kör programmet som administratör, med pkexec eller sudo." -#: src/Console/AppConsole.vala:196 src/Gtk/AppGtk.vala:166 +#: src/Console/AppConsole.vala:198 src/Gtk/AppGtk.vala:162 msgid "Unknown option" msgstr "Okänt alternativ" -#: src/Console/AppConsole.vala:198 src/Console/AppConsole.vala:312 -#: src/Console/AppConsole.vala:341 +#: src/Console/AppConsole.vala:200 src/Console/AppConsole.vala:314 +#: src/Console/AppConsole.vala:343 msgid "Run '" msgstr "" -#: src/Console/AppConsole.vala:203 src/Gtk/AppGtk.vala:110 +#: src/Console/AppConsole.vala:205 src/Gtk/AppGtk.vala:110 msgid "Cache" msgstr "" -#: src/Console/AppConsole.vala:204 src/Gtk/AppGtk.vala:111 +#: src/Console/AppConsole.vala:206 src/Gtk/AppGtk.vala:111 msgid "Temp" msgstr "" -#: src/Console/AppConsole.vala:284 src/Console/AppConsole.vala:321 +#: src/Console/AppConsole.vala:286 src/Console/AppConsole.vala:323 msgid "No kernels specified" msgstr "" -#: src/Console/AppConsole.vala:290 +#: src/Console/AppConsole.vala:292 msgid "Multiple kernels selected for installation. Select only one." msgstr "Flera kärnor valda för installation. Välj endast en." -#: src/Console/AppConsole.vala:308 src/Gtk/MainWindow.vala:100 +#: src/Console/AppConsole.vala:310 src/Gtk/MainWindow.vala:100 msgid "Could not find requested version" msgstr "Kunde inte hitta efterfrågad version" -#: src/Console/AppConsole.vala:340 +#: src/Console/AppConsole.vala:342 msgid "Command not specified" msgstr "" -#: src/Gtk/AppGtk.vala:183 +#: src/Console/AppConsole.vala:391 src/Console/AppConsole.vala:408 +#, c-format +msgid "Linux v%s Available" +msgstr "" + +#: src/Console/AppConsole.vala:392 +msgid "Major update available for installation" +msgstr "" + +#: src/Console/AppConsole.vala:409 +msgid "Minor update available for installation" +msgstr "" + +#: src/Gtk/AppGtk.vala:179 msgid "Print debug information" msgstr "Skriv ut felsökningsinformation" -#: src/Gtk/AppGtk.vala:184 +#: src/Gtk/AppGtk.vala:180 msgid "Show all options" msgstr "Visa alla alternativ" @@ -309,17 +322,17 @@ msgstr "Status" msgid "Refresh" msgstr "Uppdatera" -#: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:554 -#: src/Gtk/MainWindow.vala:690 src/Utility/TeeJee.System.vala:281 +#: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:555 +#: src/Gtk/MainWindow.vala:691 src/Utility/TeeJee.System.vala:281 msgid "Internet connection is not active" msgstr "Internetuppkopplingen är inte aktiv" -#: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:554 -#: src/Gtk/MainWindow.vala:690 +#: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:555 +#: src/Gtk/MainWindow.vala:691 msgid "No Internet" msgstr "Inget internet" -#: src/Gtk/MainWindow.vala:357 src/Gtk/UpdateNotificationWindow.vala:145 +#: src/Gtk/MainWindow.vala:357 msgid "Install" msgstr "Installera" @@ -363,16 +376,15 @@ msgstr "Inställningar" msgid "About" msgstr "Om" -#: src/Gtk/MainWindow.vala:538 +#: src/Gtk/MainWindow.vala:539 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Kärnuppgraderingsverktyg för Ubuntu-baserade distributioner" -#: src/Gtk/MainWindow.vala:573 +#: src/Gtk/MainWindow.vala:574 msgid "Refreshing..." msgstr "Uppdaterar ..." #: src/Gtk/ProgressWindow.vala:144 src/Gtk/TerminalWindow.vala:149 -#: src/Gtk/UpdateNotificationWindow.vala:165 #: src/Utility/Gtk/CustomMessageDialog.vala:153 msgid "Cancel" msgstr "Avbryt" @@ -393,53 +405,49 @@ msgstr "Meddela om en ny (mindre) uppdatering finns tillgänglig" msgid "Show notification bubble on desktop" msgstr "Visa aviseringsruta på skrivbordet" -#: src/Gtk/SettingsDialog.vala:103 -msgid "Show notification dialog" -msgstr "Visa aviseringsdialog" - -#: src/Gtk/SettingsDialog.vala:118 +#: src/Gtk/SettingsDialog.vala:106 msgid "Check every" msgstr "Kontrollera varje" -#: src/Gtk/SettingsDialog.vala:149 +#: src/Gtk/SettingsDialog.vala:137 msgid "Hour(s)" msgstr "Timma(r)" -#: src/Gtk/SettingsDialog.vala:151 +#: src/Gtk/SettingsDialog.vala:139 msgid "Day(s)" msgstr "Dag(ar)" -#: src/Gtk/SettingsDialog.vala:153 +#: src/Gtk/SettingsDialog.vala:141 msgid "Week(s)" msgstr "Veckor" -#: src/Gtk/SettingsDialog.vala:158 +#: src/Gtk/SettingsDialog.vala:146 msgid "Display" msgstr "Visa" -#: src/Gtk/SettingsDialog.vala:166 +#: src/Gtk/SettingsDialog.vala:154 msgid "Hide unstable and RC releases" msgstr "Dölj instabila- och RC-publiceringar" -#: src/Gtk/SettingsDialog.vala:180 +#: src/Gtk/SettingsDialog.vala:168 msgid "Show N previous major versions " msgstr "" -#: src/Gtk/SettingsDialog.vala:195 +#: src/Gtk/SettingsDialog.vala:183 msgid "Other" msgstr "" -#: src/Gtk/SettingsDialog.vala:203 +#: src/Gtk/SettingsDialog.vala:191 #, fuzzy msgid "Skip internet connection check" msgstr "Internetuppkopplingen är inte aktiv" -#: src/Gtk/SettingsDialog.vala:216 +#: src/Gtk/SettingsDialog.vala:204 #, fuzzy msgid "Internet connection timeout in " msgstr "Internetuppkopplingen är inte aktiv" -#: src/Gtk/SettingsDialog.vala:230 +#: src/Gtk/SettingsDialog.vala:218 msgid "seconds" msgstr "" @@ -447,22 +455,6 @@ msgstr "" msgid "Close" msgstr "Stäng" -#: src/Gtk/UpdateNotificationWindow.vala:146 -msgid "Install this kernel" -msgstr "Installera denna kärna" - -#: src/Gtk/UpdateNotificationWindow.vala:155 -msgid "Show" -msgstr "Visa" - -#: src/Gtk/UpdateNotificationWindow.vala:156 -msgid "List available kernels" -msgstr "Lista tillgängliga kärnor" - -#: src/Gtk/UpdateNotificationWindow.vala:166 -msgid "Ignore this update" -msgstr "Undanta denna uppdatering" - #: src/Utility/Gtk/AboutWindow.vala:271 src/Utility/Gtk/AboutWindow.vala:288 msgid "Credits" msgstr "Tack" @@ -586,6 +578,6 @@ msgstr "F" msgid "W" msgstr "V" -#: src/Utility/TeeJee.Process.vala:513 +#: src/Utility/TeeJee.Process.vala:506 msgid "Stopped" msgstr "Stoppad" diff --git a/po/tr.po b/po/tr.po index 32afc8b6..8799b7c9 100644 --- a/po/tr.po +++ b/po/tr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-06 15:08-0400\n" +"POT-Creation-Date: 2020-05-07 00:12-0400\n" "PO-Revision-Date: 2020-03-10 15:59+0300\n" "Last-Translator: Gökhan GÖKKAYA \n" "Language-Team: Turkish\n" @@ -58,16 +58,16 @@ msgstr "Aşağıdaki çekirdekler silinecek:" msgid "Continue ?" msgstr "Devam et ?" -#: src/Common/LinuxKernel.vala:777 src/Console/AppConsole.vala:359 +#: src/Common/LinuxKernel.vala:777 src/Console/AppConsole.vala:361 msgid "Latest update" msgstr "Son güncelleme" -#: src/Common/LinuxKernel.vala:788 src/Console/AppConsole.vala:366 +#: src/Common/LinuxKernel.vala:788 src/Console/AppConsole.vala:368 msgid "Latest point update" msgstr "Son güncelleme noktası" -#: src/Common/LinuxKernel.vala:796 src/Console/AppConsole.vala:371 -#: src/Console/AppConsole.vala:429 src/Gtk/MainWindow.vala:798 +#: src/Common/LinuxKernel.vala:796 src/Console/AppConsole.vala:373 +#: src/Console/AppConsole.vala:421 msgid "No updates found" msgstr "Güncelleme bulunamadı" @@ -110,7 +110,7 @@ msgstr "TAMAM" msgid "ERROR" msgstr "HATA" -#: src/Common/LinuxKernel.vala:1252 src/Gtk/MainWindow.vala:685 +#: src/Common/LinuxKernel.vala:1252 src/Gtk/MainWindow.vala:686 msgid "This kernel is already installed." msgstr "Bu çekirdek zaten kurulu." @@ -151,11 +151,11 @@ msgstr "" "Bu çekirdek şu anda çalışıyor ve bu sebeple kaldırılamaz.\n" "Bunu kaldırmadan önce başka bir çekirdek yükleyin." -#: src/Common/Main.vala:107 +#: src/Common/Main.vala:106 msgid "Commands listed below are not available on this system" msgstr "Aşağıda listelenen komutlar bu sistemde mevcut değil" -#: src/Common/Main.vala:108 +#: src/Common/Main.vala:107 msgid "Please install required packages and try again" msgstr "Lütfen gerekli paketleri yükleyin ve tekrar deneyin" @@ -164,124 +164,137 @@ msgstr "Lütfen gerekli paketleri yükleyin ve tekrar deneyin" msgid "File not found: %s" msgstr "Şu dosya bulunamadı: %s" -#: src/Console/AppConsole.vala:78 src/Gtk/AppGtk.vala:179 +#: src/Console/AppConsole.vala:80 src/Gtk/AppGtk.vala:175 msgid "Syntax" msgstr "Sözdizimi" -#: src/Console/AppConsole.vala:80 +#: src/Console/AppConsole.vala:82 msgid "Commands" msgstr "Komutlar" -#: src/Console/AppConsole.vala:82 +#: src/Console/AppConsole.vala:84 msgid "Check for kernel updates" msgstr "Çekirdek güncellemelerini kontrol et" -#: src/Console/AppConsole.vala:83 +#: src/Console/AppConsole.vala:85 msgid "Check for kernel updates and notify current user" msgstr "Çekirdek güncellemelerini kontrol et ve mevcut kullanıcıyı uyar" -#: src/Console/AppConsole.vala:84 +#: src/Console/AppConsole.vala:86 msgid "List all available mainline kernels" msgstr "Tüm mainline çekirdeklerini listele" -#: src/Console/AppConsole.vala:85 +#: src/Console/AppConsole.vala:87 msgid "List installed kernels" msgstr "Kurulu çekirdekleri listele" -#: src/Console/AppConsole.vala:86 +#: src/Console/AppConsole.vala:88 msgid "Install latest mainline kernel" msgstr "En son mainline çekirdeğini kur" -#: src/Console/AppConsole.vala:87 +#: src/Console/AppConsole.vala:89 msgid "Install latest point update for current series" msgstr "Mevcut çekirdek serisi için en güncelleme noktasını kur" -#: src/Console/AppConsole.vala:88 +#: src/Console/AppConsole.vala:90 msgid "Install specified mainline kernel" msgstr "Belirtilen mainline çekirdeğini kur" -#: src/Console/AppConsole.vala:89 +#: src/Console/AppConsole.vala:91 msgid "Remove specified kernel" msgstr "Belirtilen çekirdeği kaldır" -#: src/Console/AppConsole.vala:90 src/Gtk/MainWindow.vala:422 +#: src/Console/AppConsole.vala:92 src/Gtk/MainWindow.vala:422 msgid "Remove installed kernels older than running kernel" msgstr "Çalışan çekirdekten eski olan kurulu çekirdekleri kaldır" -#: src/Console/AppConsole.vala:91 +#: src/Console/AppConsole.vala:93 msgid "Download packages for specified kernel" msgstr "Belirtilen çekirdek için paketleri indir" -#: src/Console/AppConsole.vala:92 src/Console/AppConsole.vala:97 +#: src/Console/AppConsole.vala:94 src/Console/AppConsole.vala:99 msgid "Remove files from application cache" msgstr "Dosyaları uygulama önbelleğinden sil" -#: src/Console/AppConsole.vala:93 +#: src/Console/AppConsole.vala:95 msgid "Show unstable and RC releases" msgstr "Kararsız ve RC sürümleri göster" -#: src/Console/AppConsole.vala:95 src/Gtk/AppGtk.vala:181 +#: src/Console/AppConsole.vala:97 src/Gtk/AppGtk.vala:177 msgid "Options" msgstr "Seçenekler" -#: src/Console/AppConsole.vala:98 +#: src/Console/AppConsole.vala:100 msgid "Enable verbose debugging output" msgstr "Ayrıntılı hata ayıklama çıktısını etkinleştir" -#: src/Console/AppConsole.vala:99 +#: src/Console/AppConsole.vala:101 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "Tüm istemler için Evet'i kabul edin (etkileşimsiz kip)" -#: src/Console/AppConsole.vala:100 +#: src/Console/AppConsole.vala:102 msgid "Override user" msgstr "Kullanıcıyı geçersiz kıl" -#: src/Console/AppConsole.vala:113 +#: src/Console/AppConsole.vala:115 msgid "Admin access is required for running this application." msgstr "Bu uygulamayı çalıştırmak için yönetici izni gerekiyor." -#: src/Console/AppConsole.vala:116 +#: src/Console/AppConsole.vala:118 msgid "Run the application as admin with pkexec or sudo." msgstr "Bu uygulamayı pkexec yada sudo ile yönetici haklarıyla çalıştırın." -#: src/Console/AppConsole.vala:196 src/Gtk/AppGtk.vala:166 +#: src/Console/AppConsole.vala:198 src/Gtk/AppGtk.vala:162 msgid "Unknown option" msgstr "Bilinmeyen seçenek" -#: src/Console/AppConsole.vala:198 src/Console/AppConsole.vala:312 -#: src/Console/AppConsole.vala:341 +#: src/Console/AppConsole.vala:200 src/Console/AppConsole.vala:314 +#: src/Console/AppConsole.vala:343 msgid "Run '" msgstr "Çalıştır '" -#: src/Console/AppConsole.vala:203 src/Gtk/AppGtk.vala:110 +#: src/Console/AppConsole.vala:205 src/Gtk/AppGtk.vala:110 msgid "Cache" msgstr "Önbellek" -#: src/Console/AppConsole.vala:204 src/Gtk/AppGtk.vala:111 +#: src/Console/AppConsole.vala:206 src/Gtk/AppGtk.vala:111 msgid "Temp" msgstr "Geçici" -#: src/Console/AppConsole.vala:284 src/Console/AppConsole.vala:321 +#: src/Console/AppConsole.vala:286 src/Console/AppConsole.vala:323 msgid "No kernels specified" msgstr "Belirtilen çekirdek yok" -#: src/Console/AppConsole.vala:290 +#: src/Console/AppConsole.vala:292 msgid "Multiple kernels selected for installation. Select only one." msgstr "Kurulum için çoklu çekirdek seçildi. Sadece bir tane seçiniz." -#: src/Console/AppConsole.vala:308 src/Gtk/MainWindow.vala:100 +#: src/Console/AppConsole.vala:310 src/Gtk/MainWindow.vala:100 msgid "Could not find requested version" msgstr "İstenen sürüm bulunamadı" -#: src/Console/AppConsole.vala:340 +#: src/Console/AppConsole.vala:342 msgid "Command not specified" msgstr "Komut belirtilmedi" -#: src/Gtk/AppGtk.vala:183 +#: src/Console/AppConsole.vala:391 src/Console/AppConsole.vala:408 +#, c-format +msgid "Linux v%s Available" +msgstr "" + +#: src/Console/AppConsole.vala:392 +msgid "Major update available for installation" +msgstr "" + +#: src/Console/AppConsole.vala:409 +msgid "Minor update available for installation" +msgstr "" + +#: src/Gtk/AppGtk.vala:179 msgid "Print debug information" msgstr "Hata ayıklama bilgisini yazdır" -#: src/Gtk/AppGtk.vala:184 +#: src/Gtk/AppGtk.vala:180 msgid "Show all options" msgstr "Tüm seçenekleri göster" @@ -301,17 +314,17 @@ msgstr "Durum" msgid "Refresh" msgstr "Yenile" -#: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:554 -#: src/Gtk/MainWindow.vala:690 src/Utility/TeeJee.System.vala:281 +#: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:555 +#: src/Gtk/MainWindow.vala:691 src/Utility/TeeJee.System.vala:281 msgid "Internet connection is not active" msgstr "İnternet bağlantısı aktif değil" -#: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:554 -#: src/Gtk/MainWindow.vala:690 +#: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:555 +#: src/Gtk/MainWindow.vala:691 msgid "No Internet" msgstr "İnternet Yok" -#: src/Gtk/MainWindow.vala:357 src/Gtk/UpdateNotificationWindow.vala:145 +#: src/Gtk/MainWindow.vala:357 msgid "Install" msgstr "Kur" @@ -355,16 +368,15 @@ msgstr "Ayarlar" msgid "About" msgstr "Hakkında" -#: src/Gtk/MainWindow.vala:538 +#: src/Gtk/MainWindow.vala:539 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Ubuntu tabanlı dağıtımlar için çekirdek güncelleme aracı" -#: src/Gtk/MainWindow.vala:573 +#: src/Gtk/MainWindow.vala:574 msgid "Refreshing..." msgstr "Yenileniyor..." #: src/Gtk/ProgressWindow.vala:144 src/Gtk/TerminalWindow.vala:149 -#: src/Gtk/UpdateNotificationWindow.vala:165 #: src/Utility/Gtk/CustomMessageDialog.vala:153 msgid "Cancel" msgstr "İptal" @@ -385,51 +397,47 @@ msgstr "Ara sürüm mevcutsa bildir" msgid "Show notification bubble on desktop" msgstr "Masaüstünde bildirim baloncuğu göster" -#: src/Gtk/SettingsDialog.vala:103 -msgid "Show notification dialog" -msgstr "Bildirim iletişimini göster" - -#: src/Gtk/SettingsDialog.vala:118 +#: src/Gtk/SettingsDialog.vala:106 msgid "Check every" msgstr "Kontrol aralığı" -#: src/Gtk/SettingsDialog.vala:149 +#: src/Gtk/SettingsDialog.vala:137 msgid "Hour(s)" msgstr "Saat" -#: src/Gtk/SettingsDialog.vala:151 +#: src/Gtk/SettingsDialog.vala:139 msgid "Day(s)" msgstr "Gün" -#: src/Gtk/SettingsDialog.vala:153 +#: src/Gtk/SettingsDialog.vala:141 msgid "Week(s)" msgstr "Hafta" -#: src/Gtk/SettingsDialog.vala:158 +#: src/Gtk/SettingsDialog.vala:146 msgid "Display" msgstr "Gösterim" -#: src/Gtk/SettingsDialog.vala:166 +#: src/Gtk/SettingsDialog.vala:154 msgid "Hide unstable and RC releases" msgstr "Kararsız ve RC sürümleri gizle" -#: src/Gtk/SettingsDialog.vala:180 +#: src/Gtk/SettingsDialog.vala:168 msgid "Show N previous major versions " msgstr "Önceki ana sürümleri gösterme sayısı " -#: src/Gtk/SettingsDialog.vala:195 +#: src/Gtk/SettingsDialog.vala:183 msgid "Other" msgstr "Diğer" -#: src/Gtk/SettingsDialog.vala:203 +#: src/Gtk/SettingsDialog.vala:191 msgid "Skip internet connection check" msgstr "İnternet bağlantı kontrolünü atla" -#: src/Gtk/SettingsDialog.vala:216 +#: src/Gtk/SettingsDialog.vala:204 msgid "Internet connection timeout in " msgstr "İnternet bağlantısı zaman aşımı " -#: src/Gtk/SettingsDialog.vala:230 +#: src/Gtk/SettingsDialog.vala:218 msgid "seconds" msgstr "saniye" @@ -437,22 +445,6 @@ msgstr "saniye" msgid "Close" msgstr "Kapat" -#: src/Gtk/UpdateNotificationWindow.vala:146 -msgid "Install this kernel" -msgstr "Bu çekirdeği kur" - -#: src/Gtk/UpdateNotificationWindow.vala:155 -msgid "Show" -msgstr "Göster" - -#: src/Gtk/UpdateNotificationWindow.vala:156 -msgid "List available kernels" -msgstr "Tüm çekirdekleri listele" - -#: src/Gtk/UpdateNotificationWindow.vala:166 -msgid "Ignore this update" -msgstr "Bu güncellemeyi yoksay" - #: src/Utility/Gtk/AboutWindow.vala:271 src/Utility/Gtk/AboutWindow.vala:288 msgid "Credits" msgstr "Katkı sağlayanlar" @@ -576,6 +568,6 @@ msgstr "H" msgid "W" msgstr "U" -#: src/Utility/TeeJee.Process.vala:513 +#: src/Utility/TeeJee.Process.vala:506 msgid "Stopped" msgstr "Durduruldu" diff --git a/po/uk.po b/po/uk.po index cc1b7523..b730d588 100644 --- a/po/uk.po +++ b/po/uk.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-06 15:08-0400\n" +"POT-Creation-Date: 2020-05-07 00:12-0400\n" "PO-Revision-Date: 2019-07-25 11:00+0300\n" "Last-Translator: Serhii Golovko \n" "Language-Team: Ukranian \n" @@ -53,16 +53,16 @@ msgstr "Наступні ядра будуть видалені:" msgid "Continue ?" msgstr "Продовжувати ?" -#: src/Common/LinuxKernel.vala:777 src/Console/AppConsole.vala:359 +#: src/Common/LinuxKernel.vala:777 src/Console/AppConsole.vala:361 msgid "Latest update" msgstr "Останнє оновлення" -#: src/Common/LinuxKernel.vala:788 src/Console/AppConsole.vala:366 +#: src/Common/LinuxKernel.vala:788 src/Console/AppConsole.vala:368 msgid "Latest point update" msgstr "Остання точка оновлення" -#: src/Common/LinuxKernel.vala:796 src/Console/AppConsole.vala:371 -#: src/Console/AppConsole.vala:429 src/Gtk/MainWindow.vala:798 +#: src/Common/LinuxKernel.vala:796 src/Console/AppConsole.vala:373 +#: src/Console/AppConsole.vala:421 msgid "No updates found" msgstr "Оновлень не знайдено" @@ -105,7 +105,7 @@ msgstr "OK" msgid "ERROR" msgstr "ПОМИЛКА" -#: src/Common/LinuxKernel.vala:1252 src/Gtk/MainWindow.vala:685 +#: src/Common/LinuxKernel.vala:1252 src/Gtk/MainWindow.vala:686 msgid "This kernel is already installed." msgstr "Это ядро уже установлено." @@ -147,11 +147,11 @@ msgstr "" "Это ядро в настоящий момент работает и не может быть удалено.\n" " Установите другое ядро, прежде чем удалять его." -#: src/Common/Main.vala:107 +#: src/Common/Main.vala:106 msgid "Commands listed below are not available on this system" msgstr "Команди перераховані нижче недоступні на цій системі" -#: src/Common/Main.vala:108 +#: src/Common/Main.vala:107 msgid "Please install required packages and try again" msgstr "Встановити необхідні пакети і спробуйте знову" @@ -160,124 +160,137 @@ msgstr "Встановити необхідні пакети і спробуйт msgid "File not found: %s" msgstr "Файл не знайдено: %s" -#: src/Console/AppConsole.vala:78 src/Gtk/AppGtk.vala:179 +#: src/Console/AppConsole.vala:80 src/Gtk/AppGtk.vala:175 msgid "Syntax" msgstr "Синтаксис" -#: src/Console/AppConsole.vala:80 +#: src/Console/AppConsole.vala:82 msgid "Commands" msgstr "Команди" -#: src/Console/AppConsole.vala:82 +#: src/Console/AppConsole.vala:84 msgid "Check for kernel updates" msgstr "Перевірити оновлення ядра" -#: src/Console/AppConsole.vala:83 +#: src/Console/AppConsole.vala:85 msgid "Check for kernel updates and notify current user" msgstr "Перевірте наявність оновлень ядра та повідомте поточного користувача" -#: src/Console/AppConsole.vala:84 +#: src/Console/AppConsole.vala:86 msgid "List all available mainline kernels" msgstr "Список всіх доступних основних ядер" -#: src/Console/AppConsole.vala:85 +#: src/Console/AppConsole.vala:87 msgid "List installed kernels" msgstr "Список всіх доступних основних ядер" -#: src/Console/AppConsole.vala:86 +#: src/Console/AppConsole.vala:88 msgid "Install latest mainline kernel" msgstr "Встановити зазначену гілку ядра" -#: src/Console/AppConsole.vala:87 +#: src/Console/AppConsole.vala:89 msgid "Install latest point update for current series" msgstr "Встановіть останню точку оновлення для поточної серії" -#: src/Console/AppConsole.vala:88 +#: src/Console/AppConsole.vala:90 msgid "Install specified mainline kernel" msgstr "Встановити зазначену гілку ядра" -#: src/Console/AppConsole.vala:89 +#: src/Console/AppConsole.vala:91 msgid "Remove specified kernel" msgstr "Видаліть вказане ядро" -#: src/Console/AppConsole.vala:90 src/Gtk/MainWindow.vala:422 +#: src/Console/AppConsole.vala:92 src/Gtk/MainWindow.vala:422 msgid "Remove installed kernels older than running kernel" msgstr "Видаліть встановлені ядра, старші за запущене" -#: src/Console/AppConsole.vala:91 +#: src/Console/AppConsole.vala:93 msgid "Download packages for specified kernel" msgstr "Завантажити пакети для зазначеного ядра" -#: src/Console/AppConsole.vala:92 src/Console/AppConsole.vala:97 +#: src/Console/AppConsole.vala:94 src/Console/AppConsole.vala:99 msgid "Remove files from application cache" msgstr "Видалити файли з кешу програми" -#: src/Console/AppConsole.vala:93 +#: src/Console/AppConsole.vala:95 msgid "Show unstable and RC releases" msgstr "Приховати нестабільні і реліз-кандидат версії" -#: src/Console/AppConsole.vala:95 src/Gtk/AppGtk.vala:181 +#: src/Console/AppConsole.vala:97 src/Gtk/AppGtk.vala:177 msgid "Options" msgstr "Параметри" -#: src/Console/AppConsole.vala:98 +#: src/Console/AppConsole.vala:100 msgid "Enable verbose debugging output" msgstr "" -#: src/Console/AppConsole.vala:99 +#: src/Console/AppConsole.vala:101 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "Припустимо, так для всіх підказок (неінтерактивний режим)" -#: src/Console/AppConsole.vala:100 +#: src/Console/AppConsole.vala:102 msgid "Override user" msgstr "" -#: src/Console/AppConsole.vala:113 +#: src/Console/AppConsole.vala:115 msgid "Admin access is required for running this application." msgstr "Для запуску програми потрібно мати права адміністратора." -#: src/Console/AppConsole.vala:116 +#: src/Console/AppConsole.vala:118 msgid "Run the application as admin with pkexec or sudo." msgstr "Запустіть додаток як адміністратор за допомогою pkexec або sudo." -#: src/Console/AppConsole.vala:196 src/Gtk/AppGtk.vala:166 +#: src/Console/AppConsole.vala:198 src/Gtk/AppGtk.vala:162 msgid "Unknown option" msgstr "Невідомий параметр" -#: src/Console/AppConsole.vala:198 src/Console/AppConsole.vala:312 -#: src/Console/AppConsole.vala:341 +#: src/Console/AppConsole.vala:200 src/Console/AppConsole.vala:314 +#: src/Console/AppConsole.vala:343 msgid "Run '" msgstr "Запуск" -#: src/Console/AppConsole.vala:203 src/Gtk/AppGtk.vala:110 +#: src/Console/AppConsole.vala:205 src/Gtk/AppGtk.vala:110 msgid "Cache" msgstr "Кеш" -#: src/Console/AppConsole.vala:204 src/Gtk/AppGtk.vala:111 +#: src/Console/AppConsole.vala:206 src/Gtk/AppGtk.vala:111 msgid "Temp" msgstr "Темп" -#: src/Console/AppConsole.vala:284 src/Console/AppConsole.vala:321 +#: src/Console/AppConsole.vala:286 src/Console/AppConsole.vala:323 msgid "No kernels specified" msgstr "Ядра не вказані" -#: src/Console/AppConsole.vala:290 +#: src/Console/AppConsole.vala:292 msgid "Multiple kernels selected for installation. Select only one." msgstr "Для встановлення вибрано кілька ядер. Виберіть лише одну." -#: src/Console/AppConsole.vala:308 src/Gtk/MainWindow.vala:100 +#: src/Console/AppConsole.vala:310 src/Gtk/MainWindow.vala:100 msgid "Could not find requested version" msgstr "Не вдалося знайти запитувану версію" -#: src/Console/AppConsole.vala:340 +#: src/Console/AppConsole.vala:342 msgid "Command not specified" msgstr "Команда не вказана" -#: src/Gtk/AppGtk.vala:183 +#: src/Console/AppConsole.vala:391 src/Console/AppConsole.vala:408 +#, c-format +msgid "Linux v%s Available" +msgstr "" + +#: src/Console/AppConsole.vala:392 +msgid "Major update available for installation" +msgstr "" + +#: src/Console/AppConsole.vala:409 +msgid "Minor update available for installation" +msgstr "" + +#: src/Gtk/AppGtk.vala:179 msgid "Print debug information" msgstr "Роздрукувати зневадження" -#: src/Gtk/AppGtk.vala:184 +#: src/Gtk/AppGtk.vala:180 msgid "Show all options" msgstr "Показати усі параметри" @@ -297,17 +310,17 @@ msgstr "Стан" msgid "Refresh" msgstr "Оновити" -#: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:554 -#: src/Gtk/MainWindow.vala:690 src/Utility/TeeJee.System.vala:281 +#: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:555 +#: src/Gtk/MainWindow.vala:691 src/Utility/TeeJee.System.vala:281 msgid "Internet connection is not active" msgstr "Інтернет з'єднання не активно" -#: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:554 -#: src/Gtk/MainWindow.vala:690 +#: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:555 +#: src/Gtk/MainWindow.vala:691 msgid "No Internet" msgstr "Інтернету немає" -#: src/Gtk/MainWindow.vala:357 src/Gtk/UpdateNotificationWindow.vala:145 +#: src/Gtk/MainWindow.vala:357 msgid "Install" msgstr "Встановити" @@ -351,16 +364,15 @@ msgstr "Налаштування" msgid "About" msgstr "Про программу" -#: src/Gtk/MainWindow.vala:538 +#: src/Gtk/MainWindow.vala:539 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Програма оновлення ядра для дистрибутивів на базі Ubuntu" -#: src/Gtk/MainWindow.vala:573 +#: src/Gtk/MainWindow.vala:574 msgid "Refreshing..." msgstr "Оновлення..." #: src/Gtk/ProgressWindow.vala:144 src/Gtk/TerminalWindow.vala:149 -#: src/Gtk/UpdateNotificationWindow.vala:165 #: src/Utility/Gtk/CustomMessageDialog.vala:153 msgid "Cancel" msgstr "Відміна" @@ -381,51 +393,47 @@ msgstr "Повідомити, чи доступний невеликий вип msgid "Show notification bubble on desktop" msgstr "Показувати вікно сповіщень на робочому столі" -#: src/Gtk/SettingsDialog.vala:103 -msgid "Show notification dialog" -msgstr "Показувати вікно сповіщень" - -#: src/Gtk/SettingsDialog.vala:118 +#: src/Gtk/SettingsDialog.vala:106 msgid "Check every" msgstr "Перевіряти кожні" -#: src/Gtk/SettingsDialog.vala:149 +#: src/Gtk/SettingsDialog.vala:137 msgid "Hour(s)" msgstr "Година(дин)" -#: src/Gtk/SettingsDialog.vala:151 +#: src/Gtk/SettingsDialog.vala:139 msgid "Day(s)" msgstr "День(днів)" -#: src/Gtk/SettingsDialog.vala:153 +#: src/Gtk/SettingsDialog.vala:141 msgid "Week(s)" msgstr "Тиждень (ні)" -#: src/Gtk/SettingsDialog.vala:158 +#: src/Gtk/SettingsDialog.vala:146 msgid "Display" msgstr "Вид" -#: src/Gtk/SettingsDialog.vala:166 +#: src/Gtk/SettingsDialog.vala:154 msgid "Hide unstable and RC releases" msgstr "Приховати нестабільні і реліз-кандидат версії" -#: src/Gtk/SettingsDialog.vala:180 +#: src/Gtk/SettingsDialog.vala:168 msgid "Show N previous major versions " msgstr "" -#: src/Gtk/SettingsDialog.vala:195 +#: src/Gtk/SettingsDialog.vala:183 msgid "Other" msgstr "Інший" -#: src/Gtk/SettingsDialog.vala:203 +#: src/Gtk/SettingsDialog.vala:191 msgid "Skip internet connection check" msgstr "Пропустити перевірку підключення до Інтернету" -#: src/Gtk/SettingsDialog.vala:216 +#: src/Gtk/SettingsDialog.vala:204 msgid "Internet connection timeout in " msgstr "Час очікування підключення до Інтернету в " -#: src/Gtk/SettingsDialog.vala:230 +#: src/Gtk/SettingsDialog.vala:218 msgid "seconds" msgstr "секунди" @@ -433,22 +441,6 @@ msgstr "секунди" msgid "Close" msgstr "Закрити" -#: src/Gtk/UpdateNotificationWindow.vala:146 -msgid "Install this kernel" -msgstr "Встановити це ядро" - -#: src/Gtk/UpdateNotificationWindow.vala:155 -msgid "Show" -msgstr "Показати" - -#: src/Gtk/UpdateNotificationWindow.vala:156 -msgid "List available kernels" -msgstr "Список всіх доступних основних ядер" - -#: src/Gtk/UpdateNotificationWindow.vala:166 -msgid "Ignore this update" -msgstr "Ігнорувати це оновлення" - #: src/Utility/Gtk/AboutWindow.vala:271 src/Utility/Gtk/AboutWindow.vala:288 msgid "Credits" msgstr "Творці" @@ -572,6 +564,6 @@ msgstr "E" msgid "W" msgstr "W" -#: src/Utility/TeeJee.Process.vala:513 +#: src/Utility/TeeJee.Process.vala:506 msgid "Stopped" msgstr "Зупинено" diff --git a/src/Common/Main.vala b/src/Common/Main.vala index 15a1f6be..84f75291 100644 --- a/src/Common/Main.vala +++ b/src/Common/Main.vala @@ -38,7 +38,7 @@ public class Main : GLib.Object{ // constants ---------- [CCode(cname="DEFAULT_SHOW_PREV_MAJORS")] extern const string DEFAULT_SHOW_PREV_MAJORS; - + public string APP_CONFIG_FILE = ""; public string STARTUP_SCRIPT_FILE = ""; public string STARTUP_DESKTOP_FILE = ""; @@ -62,7 +62,6 @@ public class Main : GLib.Object{ public bool notify_major = true; public bool notify_minor = true; public bool notify_bubble = true; - public bool notify_dialog = true; public int notify_interval_unit = 0; public int notify_interval_value = 2; public bool skip_connection_check = false; @@ -91,7 +90,7 @@ public class Main : GLib.Object{ public static bool check_dependencies(out string msg) { string[] dependencies = { "apt-get", "aptitude", "aria2c", "dpkg", "gpg", "lsb_release", "pgrep", "pkexec", "uname" }; - // bash cat chmod chown cd cp du echo env find gzip gunzip id kill ln mv notify-user pidof ps read realpath rm setsid sh stat tar wc which while xdg-open + // bash bc cat chmod chown cd cp du echo env find gdbus gzip gunzip id kill ln mv pidof ps read realpath rm setsid sh stat tar wc which while xdg-open msg = ""; @@ -141,7 +140,6 @@ public class Main : GLib.Object{ config.set_string_member("notify_major", notify_major.to_string()); config.set_string_member("notify_minor", notify_minor.to_string()); config.set_string_member("notify_bubble", notify_bubble.to_string()); - config.set_string_member("notify_dialog", notify_dialog.to_string()); config.set_string_member("hide_unstable", LinuxKernel.hide_unstable.to_string()); config.set_string_member("show_prev_majors", LinuxKernel.show_prev_majors.to_string()); config.set_string_member("notify_interval_unit", notify_interval_unit.to_string()); @@ -200,7 +198,6 @@ public class Main : GLib.Object{ notify_major = json_get_bool(config, "notify_major", true); notify_minor = json_get_bool(config, "notify_minor", true); notify_bubble = json_get_bool(config, "notify_bubble", true); - notify_dialog = json_get_bool(config, "notify_dialog", true); notify_interval_unit = json_get_int(config, "notify_interval_unit", 0); notify_interval_value = json_get_int(config, "notify_interval_value", 2); connection_timeout_seconds = json_get_int(config, "connection_timeout_seconds", 15); @@ -245,7 +242,9 @@ public class Main : GLib.Object{ // UGLY - this should be a cron job string txt = "# Notifications are disabled\nexit 0\n"; if (notify_minor || notify_major){ - txt = "while sleep %d%s".printf(count, suffix)+" ;do " + BRANDING_SHORTNAME + " --notify ;done\n"; + //txt = "while sleep %d%s".printf(count, suffix)+" ;do " + BRANDING_SHORTNAME + " --notify ;done\n"; + // debugging + txt = "while sleep 60 ;do " + BRANDING_SHORTNAME + " --notify ;done\n"; } file_write(STARTUP_SCRIPT_FILE,txt); diff --git a/src/Console/AppConsole.vala b/src/Console/AppConsole.vala index 01363500..3246fe95 100644 --- a/src/Console/AppConsole.vala +++ b/src/Console/AppConsole.vala @@ -30,12 +30,14 @@ using TeeJee.ProcessHelper; using TeeJee.System; using TeeJee.Misc; + public Main App; [CCode(cname="BRANDING_SHORTNAME")] extern const string BRANDING_SHORTNAME; [CCode(cname="BRANDING_LONGNAME")] extern const string BRANDING_LONGNAME; [CCode(cname="BRANDING_VERSION")] extern const string BRANDING_VERSION; +[CCode(cname="INSTALL_PREFIX")] extern const string INSTALL_PREFIX; -const string LOCALE_DIR = "/usr/share/locale"; +const string LOCALE_DIR = INSTALL_PREFIX+"/share/locale"; public class AppConsole : GLib.Object { @@ -45,7 +47,7 @@ public class AppConsole : GLib.Object { log_msg("%s v%s".printf(BRANDING_SHORTNAME, BRANDING_VERSION)); - init_tmp(BRANDING_SHORTNAME); + init_tmp(); LOG_TIMESTAMP = false; @@ -385,21 +387,16 @@ public class AppConsole : GLib.Object { var kern = LinuxKernel.kernel_update_major; if ((kern != null) && App.notify_major){ - - var title = "Linux v%s Available".printf(kern.version_main); - var message = "Major update available for installation"; + + var title = _("Linux v%s Available").printf(kern.version_main); + var message = _("Major update available for installation"); if (App.notify_bubble){ - OSDNotify.notify_send(title,message,3000,"normal","info"); + OSDNotify.notify_send(title,message); } log_msg(title); log_msg(message); - - if (App.notify_dialog){ - exec_script_async(BRANDING_SHORTNAME+"-gtk --notify"); - exit(0); - } return; } @@ -408,20 +405,15 @@ public class AppConsole : GLib.Object { if ((kern != null) && App.notify_minor){ - var title = "Linux v%s Available".printf(kern.version_main); - var message = "Minor update available for installation"; + var title = _("Linux v%s Available").printf(kern.version_main); + var message = _("Minor update available for installation"); if (App.notify_bubble){ - OSDNotify.notify_send(title,message,3000,"normal","info"); + OSDNotify.notify_send(title,message); } log_msg(title); log_msg(message); - - if (App.notify_dialog){ - exec_script_async(BRANDING_SHORTNAME+"-gtk --notify"); - exit(0); - } return; } @@ -440,4 +432,3 @@ public class AppConsole : GLib.Object { } } - diff --git a/src/Utility/OSDNotify.vala b/src/Console/OSDNotify.vala similarity index 68% rename from src/Utility/OSDNotify.vala rename to src/Console/OSDNotify.vala index 6e37f55f..16dd68de 100644 --- a/src/Utility/OSDNotify.vala +++ b/src/Console/OSDNotify.vala @@ -26,32 +26,17 @@ using TeeJee.Logging; using TeeJee.FileSystem; using TeeJee.ProcessHelper; -// dep: notify-send public class OSDNotify : GLib.Object { + private static DateTime dt_last_notification = null; public const int NOTIFICATION_INTERVAL = 3; - - public static int notify_send ( - string title, string message, int durationMillis, - string urgency = "low", // low, normal, critical - string dialog_type = "info" //error, info, warning - ){ + + public static int notify_send (string title, string message){ /* Displays notification bubble on the desktop */ int retVal = 0; - switch (dialog_type){ - case "error": - case "info": - case "warning": - //ok - break; - default: - dialog_type = "info"; - break; - } - long seconds = 9999; if (dt_last_notification != null){ DateTime dt_end = new DateTime.now_local(); @@ -60,7 +45,10 @@ public class OSDNotify : GLib.Object { } if (seconds > NOTIFICATION_INTERVAL){ - string s = "notify-send -t %d -u %s -i %s \"%s\" \"%s\"".printf(durationMillis, urgency, "gtk-dialog-" + dialog_type, title, message); + //string s = "notify-send -t %d -u %s -i %s \"%s\" \"%s\"".printf(durationMillis, urgency, icon, title, message); + // notify-send.sh -u low -a mainline -i mainline -c info -o "Show:mainline-gtk" "mainline" "New kernel is available" + string s = INSTALL_PREFIX+"/lib/"+BRANDING_SHORTNAME+"/notify-send.sh/notify-send.sh -u low -c info -a "+BRANDING_SHORTNAME+" -i "+BRANDING_SHORTNAME+" -o \"Show:"+BRANDING_SHORTNAME+"-gtk\" \"%s\" \"%s\"".printf(title,message); + //log_msg(s); retVal = exec_sync (s, null, null); dt_last_notification = new DateTime.now_local(); } @@ -68,13 +56,4 @@ public class OSDNotify : GLib.Object { return retVal; } - public static bool is_supported(){ - string path = get_cmd_path ("notify-send"); - if ((path != null) && (path.length > 0)){ - return true; - } - else{ - return false; - } - } } diff --git a/src/Gtk/AppGtk.vala b/src/Gtk/AppGtk.vala index fac027cd..9bb40ec9 100644 --- a/src/Gtk/AppGtk.vala +++ b/src/Gtk/AppGtk.vala @@ -54,7 +54,7 @@ public class AppGtk : GLib.Object { Gtk.init(ref args); - init_tmp(BRANDING_SHORTNAME+"-gtk"); + init_tmp(); //check_if_admin(); @@ -140,10 +140,6 @@ public class AppGtk : GLib.Object { App.command = "install"; App.requested_version = args[++k]; break; - - case "--notify": - App.command = "notify"; - break; // options without argument -------------------------- diff --git a/src/Gtk/MainWindow.vala b/src/Gtk/MainWindow.vala index 080f0910..5a1b22da 100644 --- a/src/Gtk/MainWindow.vala +++ b/src/Gtk/MainWindow.vala @@ -108,10 +108,10 @@ public class MainWindow : Gtk.Window{ break; - case "notify": - - notify_user(); - break; +// case "notify": +// +// notify_user(); +// break; } return false; @@ -506,7 +506,8 @@ public class MainWindow : Gtk.Window{ dialog.third_party = { "Elementary project (various icons):github.com/elementary/icons", - "Tango project (various icons):tango.freedesktop.org/Tango_Desktop_Project" + "Tango project (various icons):tango.freedesktop.org/Tango_Desktop_Project", + "notify-send.sh:github.com/vlevit/notify-send.sh" }; // FIXME - generate this list from the .po files /* @@ -725,76 +726,4 @@ public class MainWindow : Gtk.Window{ term.execute_script(save_bash_script_temp(sh)); } - private void notify_user(){ - - LinuxKernel.check_updates(); - - var kern = LinuxKernel.kernel_update_major; - - if ((kern != null) && App.notify_major){ - - var title = "Linux v%s Available".printf(kern.version_main); - var message = "Major update available for installation"; - - if (App.notify_bubble){ - - OSDNotify.notify_send(title,message,3000,"normal","info"); - } - - if (App.notify_dialog){ - - var win = new UpdateNotificationWindow( - BRANDING_LONGNAME, - "%s\n\n%s".printf(title, message), - null, - kern); - - win.destroy.connect(()=>{ - log_debug("UpdateNotificationWindow destroyed"); - Gtk.main_quit(); - }); - - Gtk.main(); // start event loop - } - - log_msg(title); - log_msg(message); - return; - } - - kern = LinuxKernel.kernel_update_minor; - - if ((kern != null) && App.notify_minor){ - - var title = "Linux v%s Available".printf(kern.version_main); - var message = "Minor update available for installation"; - - if (App.notify_bubble){ - - OSDNotify.notify_send(title,message,3000,"normal","info"); - } - - if (App.notify_dialog){ - - var win = new UpdateNotificationWindow( - BRANDING_LONGNAME, - "%s\n\n%s".printf(title, message), - this, - kern); - - win.destroy.connect(()=>{ - log_debug("UpdateNotificationWindow destroyed"); - Gtk.main_quit(); - }); - - Gtk.main(); // start event loop - } - - log_msg(title); - log_msg(message); - return; - } - - log_msg(_("No updates found")); - } } diff --git a/src/Gtk/SettingsDialog.vala b/src/Gtk/SettingsDialog.vala index d9c7f25a..8d2486c9 100644 --- a/src/Gtk/SettingsDialog.vala +++ b/src/Gtk/SettingsDialog.vala @@ -98,18 +98,6 @@ public class SettingsDialog : Gtk.Dialog { chk.toggled.connect(()=>{ App.notify_bubble = chk_notify_bubble.active; }); - - // show window - chk = new Gtk.CheckButton.with_label(_("Show notification dialog")); - chk.active = App.notify_dialog; - chk.margin_start = 6; - chk.margin_bottom = 6; - vbox_main.add(chk); - chk_notify_dialog = chk; - - chk.toggled.connect(()=>{ - App.notify_dialog = chk_notify_dialog.active; - }); // notification interval var hbox = new Gtk.Box(Orientation.HORIZONTAL, 6); diff --git a/src/Gtk/UpdateNotificationWindow.vala b/src/Gtk/UpdateNotificationWindow.vala deleted file mode 100644 index db42af83..00000000 --- a/src/Gtk/UpdateNotificationWindow.vala +++ /dev/null @@ -1,179 +0,0 @@ -/* - * UpdateNotificationWindow.vala - * - * Copyright 2015 Tony George - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, - * MA 02110-1301, USA. - * - * - */ - - -using Gtk; -using Gee; - -using TeeJee.Logging; -using TeeJee.FileSystem; -using TeeJee.JsonHelper; -using TeeJee.ProcessHelper; -using TeeJee.GtkHelper; -using TeeJee.System; -using TeeJee.Misc; - -public class UpdateNotificationWindow : Gtk.Window { - - private Gtk.Box vbox_main; - private Gtk.Label lbl_msg; - private Gtk.ScrolledWindow sw_msg; - - private string msg_title; - private string msg_body; - private Gtk.MessageType msg_type; - - private LinuxKernel kern_update; - private MainWindow main_window; - - public UpdateNotificationWindow(string _msg_title, string _msg_body, MainWindow? _window, LinuxKernel _kern_update) { - - window_position = WindowPosition.CENTER; - - set_transient_for(_window); - set_modal(true); - - msg_title = _msg_title; - msg_body = _msg_body; - msg_type = Gtk.MessageType.INFO; - kern_update = _kern_update; - main_window = _window; - - init_window(); - - show_all(); - - if (lbl_msg.get_allocated_height() > 400){ - sw_msg.vscrollbar_policy = PolicyType.AUTOMATIC; - sw_msg.set_size_request(-1,400); - lbl_msg.margin_end = 25; - } - else{ - sw_msg.vscrollbar_policy = PolicyType.NEVER; - } - } - - public void init_window () { - - title = BRANDING_LONGNAME; - window_position = WindowPosition.CENTER_ON_PARENT; - icon = get_app_icon(16); - resizable = false; - deletable = false; - - //vbox_main - vbox_main = new Gtk.Box(Orientation.VERTICAL, 6); - vbox_main.margin = 6; - add(vbox_main); - - //hbox_contents - var hbox_contents = new Gtk.Box(Orientation.HORIZONTAL, 6); - hbox_contents.margin = 6; - vbox_main.add (hbox_contents); - - string icon_name = "gtk-dialog-info"; - - switch(msg_type){ - case Gtk.MessageType.INFO: - icon_name = "gtk-dialog-info"; - break; - case Gtk.MessageType.WARNING: - icon_name = "gtk-dialog-warning"; - break; - case Gtk.MessageType.QUESTION: - icon_name = "gtk-dialog-question"; - break; - case Gtk.MessageType.ERROR: - icon_name = "gtk-dialog-error"; - break; - } - - // img - var img = new Image.from_icon_name(icon_name, Gtk.IconSize.DIALOG); - img.margin_end = 12; - hbox_contents.add(img); - - // vbox_msg - var vbox_msg = new Gtk.Box(Orientation.VERTICAL, 24); - vbox_msg.margin_end = 6; - hbox_contents.add(vbox_msg); - - // lbl_msg - lbl_msg = new Gtk.Label(msg_body); - lbl_msg.set_use_markup(true); - lbl_msg.xalign = (float) 0.0; - lbl_msg.max_width_chars = 70; - lbl_msg.wrap = true; - lbl_msg.wrap_mode = Pango.WrapMode.WORD; - //hbox_contents.add(lbl_msg); - - // sw_msg - sw_msg = new ScrolledWindow(null, null); - //sw_msg.set_shadow_type (ShadowType.ETCHED_IN); - sw_msg.add (lbl_msg); - sw_msg.expand = true; - sw_msg.hscrollbar_policy = PolicyType.NEVER; - sw_msg.vscrollbar_policy = PolicyType.AUTOMATIC; - //sw_msg.set_size_request(); - vbox_msg.add(sw_msg); - - // actions - var hbox_actions = new Gtk.Box(Orientation.HORIZONTAL, 6); - vbox_msg.add (hbox_actions); - - // install - var button = new Gtk.Button.with_label(" " + _("Install") + " "); - button.set_tooltip_text(_("Install this kernel")); - hbox_actions.add(button); - - button.clicked.connect(()=>{ - this.hide(); - main_window.install(kern_update); - }); - - // open ukuu - button = new Gtk.Button.with_label(" " + _("Show") + " "); - button.set_tooltip_text(_("List available kernels")); - hbox_actions.add(button); - - button.clicked.connect(()=>{ - this.hide(); - main_window.show_all(); - }); - - // ignore - button = new Gtk.Button.with_label(" " + _("Cancel") + " "); - button.set_tooltip_text(_("Ignore this update")); - hbox_actions.add(button); - - button.clicked.connect(()=>{ - this.destroy(); - if (App.command == "notify"){ - Gtk.main_quit(); - App.exit_app(0); - } - }); - } -} - - diff --git a/src/Utility/TeeJee.Process.vala b/src/Utility/TeeJee.Process.vala index 57bd01e3..cb472ff7 100644 --- a/src/Utility/TeeJee.Process.vala +++ b/src/Utility/TeeJee.Process.vala @@ -34,20 +34,13 @@ namespace TeeJee.ProcessHelper{ // execute process --------------------------------- - public static void init_tmp(string subdir_name){ + public static void init_tmp(){ string std_out, std_err; - TEMP_DIR = Environment.get_tmp_dir() + "/" + subdir_name + "/" + random_string(); + TEMP_DIR = Environment.get_tmp_dir() + "/" + BRANDING_SHORTNAME + "_" + random_string(); dir_create(TEMP_DIR); - exec_script_sync("echo 'ok'",out std_out,out std_err, true); - if ((std_out == null)||(std_out.strip() != "ok")){ - TEMP_DIR = Environment.get_home_dir() + "/.temp/" + subdir_name + "/" + random_string(); - exec_sync("rm -rf '%s'".printf(TEMP_DIR), null, null); - dir_create(TEMP_DIR); - } - //log_debug("TEMP_DIR=" + TEMP_DIR); } From ee5fd9d0b379ad0c46bd3c0797ec3002c94520d1 Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Thu, 7 May 2020 05:26:21 -0400 Subject: [PATCH 077/567] un-hard-code /usr, reorganize icon files --- .deb_build_number.mak | 2 +- .gitignore | 7 +- Makefile | 17 +- debian/changelog | 2 + po/es.po | 56 +- po/fr.po | 56 +- po/hr.po | 56 +- po/messages.pot | 56 +- po/nl.po | 56 +- po/pl.po | 56 +- po/ru.po | 56 +- po/sv.po | 56 +- po/tr.po | 56 +- po/uk.po | 56 +- share/mainline/images/tux.svg | 1940 ----------------- .../images => pixmaps/mainline}/tux-red.png | Bin .../images => pixmaps/mainline}/tux.png | Bin .../mainline}/ubuntu-logo.png | Bin src/Common/Main.vala | 4 +- src/Console/OSDNotify.vala | 2 - src/Gtk/AppGtk.vala | 5 +- src/Gtk/MainWindow.vala | 11 +- src/Gtk/SettingsDialog.vala | 1 - src/Utility/Gtk/GtkHelper.vala | 31 +- 24 files changed, 305 insertions(+), 2277 deletions(-) delete mode 100644 share/mainline/images/tux.svg rename share/{mainline/images => pixmaps/mainline}/tux-red.png (100%) rename share/{mainline/images => pixmaps/mainline}/tux.png (100%) rename share/{mainline/images => pixmaps/mainline}/ubuntu-logo.png (100%) diff --git a/.deb_build_number.mak b/.deb_build_number.mak index fad04238..7739f47e 100644 --- a/.deb_build_number.mak +++ b/.deb_build_number.mak @@ -1,3 +1,3 @@ # This file is generated by Makefile "make deb_build_number" DEB_PKG_VERSION := 1.0.9 -DEB_BUILD_NUMBER := 0001 +DEB_BUILD_NUMBER := 0003 diff --git a/.gitignore b/.gitignore index bacee95f..f9db5fa7 100644 --- a/.gitignore +++ b/.gitignore @@ -1,9 +1,10 @@ -mainline -mainline-gtk -release +/mainline +/mainline-gtk +/release *.c *.o *~ .git *.swp .#* + diff --git a/Makefile b/Makefile index 03f8d324..c5e0ca3e 100644 --- a/Makefile +++ b/Makefile @@ -107,25 +107,20 @@ clean: .PHONY: install install: all mkdir -p "$(DESTDIR)$(bindir)" - mkdir -p "$(DESTDIR)$(sharedir)" - mkdir -p "$(DESTDIR)$(libdir)" + mkdir -p "$(DESTDIR)$(sharedir)/pixmaps/$(BRANDING_SHORTNAME)" + mkdir -p "$(DESTDIR)$(libdir)/$(BRANDING_SHORTNAME)" mkdir -p "$(DESTDIR)$(man1dir)" mkdir -p "$(DESTDIR)$(launcherdir)" # mkdir -p "$(DESTDIR)$(polkitdir)" - mkdir -p "$(DESTDIR)$(sharedir)/$(BRANDING_SHORTNAME)" - mkdir -p "$(DESTDIR)$(libdir)/$(BRANDING_SHORTNAME)" - mkdir -p "$(DESTDIR)$(sharedir)/pixmaps" - cp -dpr --no-preserve=ownership -t "$(DESTDIR)$(sharedir)/$(BRANDING_SHORTNAME)" share/$(BRANDING_SHORTNAME)/* - chmod --recursive 0755 $(DESTDIR)$(sharedir)/$(BRANDING_SHORTNAME)/* + cp -dpr --no-preserve=ownership -t "$(DESTDIR)$(sharedir)" share/* + cp -dpr --no-preserve=ownership -t "$(DESTDIR)$(libdir)/$(BRANDING_SHORTNAME)" lib/* # install -m 0644 share/polkit-1/actions/$(BRANDING_SHORTNAME).policy "$(DESTDIR)$(polkitdir)" install -m 0755 $(BRANDING_SHORTNAME).desktop "$(DESTDIR)$(launcherdir)" - install -m 0755 share/pixmaps/$(BRANDING_SHORTNAME).* "$(DESTDIR)$(sharedir)/pixmaps" for p in $(po_files) ; do \ l=$${p##*/} l=$${l%.*}; \ mkdir -p "$(DESTDIR)$(localedir)/$${l}/LC_MESSAGES"; \ msgfmt --check --verbose -o "$(DESTDIR)$(localedir)/$${l}/LC_MESSAGES/$(BRANDING_SHORTNAME).mo" $${p} ; \ done - cp -dpr --no-preserve=ownership -t "$(DESTDIR)$(libdir)/$(BRANDING_SHORTNAME)" lib/* install -m 0755 $(BRANDING_SHORTNAME) "$(DESTDIR)$(bindir)" install -m 0755 $(BRANDING_SHORTNAME)-gtk "$(DESTDIR)$(bindir)" @@ -133,11 +128,11 @@ install: all uninstall: # $(BRANDING_SHORTNAME) --clean-cache rm -f $(DESTDIR)$(bindir)/$(BRANDING_SHORTNAME) $(DESTDIR)$(bindir)/$(BRANDING_SHORTNAME)-gtk - rm -rf $(DESTDIR)$(sharedir)/$(BRANDING_SHORTNAME) + rm -f $(DESTDIR)$(sharedir)/pixmaps/$(BRANDING_SHORTNAME).* + rm -rf $(DESTDIR)$(sharedir)/pixmaps/$(BRANDING_SHORTNAME) rm -rf $(DESTDIR)$(libdir)/$(BRANDING_SHORTNAME) # rm -f $(DESTDIR)$(polkitdir)/$(BRANDING_SHORTNAME).policy rm -f $(DESTDIR)$(launcherdir)/$(BRANDING_SHORTNAME).desktop - rm -f $(DESTDIR)$(sharedir)/pixmaps/$(BRANDING_SHORTNAME).* rm -f $(DESTDIR)$(localedir)/*/LC_MESSAGES/$(BRANDING_SHORTNAME).mo rm -f $(DESTDIR)/home/*/.config/$(BRANDING_SHORTNAME)/$(BRANDING_SHORTNAME)-notify.sh rm -f $(DESTDIR)/home/*/.config/autostart/$(BRANDING_SHORTNAME).desktop diff --git a/debian/changelog b/debian/changelog index 47fdc03f..3da08466 100644 --- a/debian/changelog +++ b/debian/changelog @@ -11,6 +11,8 @@ mainline (1.0.9) unstable; urgency=medium Stop making a top level "mainline" & "mainline-gtk" subdir under /tmp or ~/.temp, with random dirs under that, which just creates permissions problems. Now always generate /mainline_ + + * un-hardcode "/usr" in various install paths -- Brian K. White Thu, 07 May 2020 00:01:27 -0400 diff --git a/po/es.po b/po/es.po index 7c57d10b..ec9b24e5 100644 --- a/po/es.po +++ b/po/es.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-07 00:12-0400\n" +"POT-Creation-Date: 2020-05-07 03:35-0400\n" "PO-Revision-Date: 2018-01-03 02:03-0600\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish\n" @@ -109,7 +109,7 @@ msgstr "Aceptar" msgid "ERROR" msgstr "ERROR" -#: src/Common/LinuxKernel.vala:1252 src/Gtk/MainWindow.vala:686 +#: src/Common/LinuxKernel.vala:1252 src/Gtk/MainWindow.vala:681 msgid "This kernel is already installed." msgstr "Este núcleo ya se instaló." @@ -164,7 +164,7 @@ msgstr "Instale los paquetes requeridos e inténtelo de nuevo" msgid "File not found: %s" msgstr "No se encontró el archivo: %s" -#: src/Console/AppConsole.vala:80 src/Gtk/AppGtk.vala:175 +#: src/Console/AppConsole.vala:80 src/Gtk/AppGtk.vala:174 msgid "Syntax" msgstr "Sintaxis" @@ -220,7 +220,7 @@ msgstr "Quitar archivos de la antememoria de la aplicación" msgid "Show unstable and RC releases" msgstr "Ocultar versiones inestables y RC" -#: src/Console/AppConsole.vala:97 src/Gtk/AppGtk.vala:177 +#: src/Console/AppConsole.vala:97 src/Gtk/AppGtk.vala:176 msgid "Options" msgstr "Opciones" @@ -245,7 +245,7 @@ msgstr "" msgid "Run the application as admin with pkexec or sudo." msgstr "Ejecute la aplicación con permisos administrativos con pkexec o sudo." -#: src/Console/AppConsole.vala:198 src/Gtk/AppGtk.vala:162 +#: src/Console/AppConsole.vala:198 src/Gtk/AppGtk.vala:161 msgid "Unknown option" msgstr "Opción desconocida" @@ -254,11 +254,11 @@ msgstr "Opción desconocida" msgid "Run '" msgstr "" -#: src/Console/AppConsole.vala:205 src/Gtk/AppGtk.vala:110 +#: src/Console/AppConsole.vala:205 src/Gtk/AppGtk.vala:109 msgid "Cache" msgstr "Cache" -#: src/Console/AppConsole.vala:206 src/Gtk/AppGtk.vala:111 +#: src/Console/AppConsole.vala:206 src/Gtk/AppGtk.vala:110 msgid "Temp" msgstr "" @@ -291,11 +291,11 @@ msgstr "" msgid "Minor update available for installation" msgstr "" -#: src/Gtk/AppGtk.vala:179 +#: src/Gtk/AppGtk.vala:178 msgid "Print debug information" msgstr "Mostrar información de depuración" -#: src/Gtk/AppGtk.vala:180 +#: src/Gtk/AppGtk.vala:179 msgid "Show all options" msgstr "Mostrar todas las opciones" @@ -316,12 +316,12 @@ msgid "Refresh" msgstr "Actualizar" #: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:555 -#: src/Gtk/MainWindow.vala:691 src/Utility/TeeJee.System.vala:281 +#: src/Gtk/MainWindow.vala:686 src/Utility/TeeJee.System.vala:281 msgid "Internet connection is not active" msgstr "La conexión a Internet está inactiva" #: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:555 -#: src/Gtk/MainWindow.vala:691 +#: src/Gtk/MainWindow.vala:686 msgid "No Internet" msgstr "No hay Internet" @@ -361,7 +361,7 @@ msgstr "" msgid "Changes" msgstr "Cambios" -#: src/Gtk/MainWindow.vala:469 src/Gtk/SettingsDialog.vala:53 +#: src/Gtk/MainWindow.vala:469 src/Gtk/SettingsDialog.vala:52 msgid "Settings" msgstr "Configuración" @@ -383,64 +383,64 @@ msgstr "Actualizando…" msgid "Cancel" msgstr "Cancelar" -#: src/Gtk/SettingsDialog.vala:63 +#: src/Gtk/SettingsDialog.vala:62 msgid "Notification" msgstr "Notificación" -#: src/Gtk/SettingsDialog.vala:70 +#: src/Gtk/SettingsDialog.vala:69 msgid "Notify if a major release is available" msgstr "Notificar si hay una versión importante disponible" -#: src/Gtk/SettingsDialog.vala:81 +#: src/Gtk/SettingsDialog.vala:80 msgid "Notify if a point release is available" msgstr "Notificar si hay una versión puntual disponible" -#: src/Gtk/SettingsDialog.vala:92 +#: src/Gtk/SettingsDialog.vala:91 msgid "Show notification bubble on desktop" msgstr "Mostrar globo de notificación en el escritorio" -#: src/Gtk/SettingsDialog.vala:106 +#: src/Gtk/SettingsDialog.vala:105 msgid "Check every" msgstr "Comprobar cada" -#: src/Gtk/SettingsDialog.vala:137 +#: src/Gtk/SettingsDialog.vala:136 msgid "Hour(s)" msgstr "Horas" -#: src/Gtk/SettingsDialog.vala:139 +#: src/Gtk/SettingsDialog.vala:138 msgid "Day(s)" msgstr "Días" -#: src/Gtk/SettingsDialog.vala:141 +#: src/Gtk/SettingsDialog.vala:140 msgid "Week(s)" msgstr "Semanas" -#: src/Gtk/SettingsDialog.vala:146 +#: src/Gtk/SettingsDialog.vala:145 msgid "Display" msgstr "Mostrar" -#: src/Gtk/SettingsDialog.vala:154 +#: src/Gtk/SettingsDialog.vala:153 msgid "Hide unstable and RC releases" msgstr "Ocultar versiones inestables y RC" -#: src/Gtk/SettingsDialog.vala:168 +#: src/Gtk/SettingsDialog.vala:167 msgid "Show N previous major versions " msgstr "" -#: src/Gtk/SettingsDialog.vala:183 +#: src/Gtk/SettingsDialog.vala:182 msgid "Other" msgstr "" -#: src/Gtk/SettingsDialog.vala:191 +#: src/Gtk/SettingsDialog.vala:190 msgid "Skip internet connection check" msgstr "La conexión a Internet está inactiva" -#: src/Gtk/SettingsDialog.vala:204 +#: src/Gtk/SettingsDialog.vala:203 #, fuzzy msgid "Internet connection timeout in " msgstr "La conexión a Internet está inactiva" -#: src/Gtk/SettingsDialog.vala:218 +#: src/Gtk/SettingsDialog.vala:217 msgid "seconds" msgstr "" @@ -492,7 +492,7 @@ msgstr "No" msgid "Error" msgstr "Error" -#: src/Utility/Gtk/GtkHelper.vala:93 +#: src/Utility/Gtk/GtkHelper.vala:77 msgid "Missing Icon" msgstr "Falta el icono" diff --git a/po/fr.po b/po/fr.po index 6fa7f4c3..6d0f4ccd 100644 --- a/po/fr.po +++ b/po/fr.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-07 00:12-0400\n" +"POT-Creation-Date: 2020-05-07 03:35-0400\n" "PO-Revision-Date: 2018-08-05 15:50+0200\n" "Last-Translator: Yolateng0 \n" "Language-Team: French\n" @@ -112,7 +112,7 @@ msgstr "OK" msgid "ERROR" msgstr "ERREUR" -#: src/Common/LinuxKernel.vala:1252 src/Gtk/MainWindow.vala:686 +#: src/Common/LinuxKernel.vala:1252 src/Gtk/MainWindow.vala:681 msgid "This kernel is already installed." msgstr "Ce noyau est déjà installé." @@ -167,7 +167,7 @@ msgstr "Veuillez installer les paquets requis et réessayer" msgid "File not found: %s" msgstr "Fichier non trouvé: %s" -#: src/Console/AppConsole.vala:80 src/Gtk/AppGtk.vala:175 +#: src/Console/AppConsole.vala:80 src/Gtk/AppGtk.vala:174 msgid "Syntax" msgstr "Syntaxe" @@ -228,7 +228,7 @@ msgstr "Supprimer les fichiers du cache de l'application" msgid "Show unstable and RC releases" msgstr "Cacher les versions instables et RC" -#: src/Console/AppConsole.vala:97 src/Gtk/AppGtk.vala:177 +#: src/Console/AppConsole.vala:97 src/Gtk/AppGtk.vala:176 msgid "Options" msgstr "Options" @@ -252,7 +252,7 @@ msgstr "Accès administrateur requis pour lancer cette application." msgid "Run the application as admin with pkexec or sudo." msgstr "Exécutez l'application en tant qu'admin avec pkexec or sudo." -#: src/Console/AppConsole.vala:198 src/Gtk/AppGtk.vala:162 +#: src/Console/AppConsole.vala:198 src/Gtk/AppGtk.vala:161 msgid "Unknown option" msgstr "Option inconnue" @@ -261,11 +261,11 @@ msgstr "Option inconnue" msgid "Run '" msgstr "" -#: src/Console/AppConsole.vala:205 src/Gtk/AppGtk.vala:110 +#: src/Console/AppConsole.vala:205 src/Gtk/AppGtk.vala:109 msgid "Cache" msgstr "" -#: src/Console/AppConsole.vala:206 src/Gtk/AppGtk.vala:111 +#: src/Console/AppConsole.vala:206 src/Gtk/AppGtk.vala:110 msgid "Temp" msgstr "" @@ -301,11 +301,11 @@ msgstr "" msgid "Minor update available for installation" msgstr "" -#: src/Gtk/AppGtk.vala:179 +#: src/Gtk/AppGtk.vala:178 msgid "Print debug information" msgstr "Afficher les informations de débogage" -#: src/Gtk/AppGtk.vala:180 +#: src/Gtk/AppGtk.vala:179 msgid "Show all options" msgstr "Afficher toutes les options" @@ -326,12 +326,12 @@ msgid "Refresh" msgstr "Actualiser" #: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:555 -#: src/Gtk/MainWindow.vala:691 src/Utility/TeeJee.System.vala:281 +#: src/Gtk/MainWindow.vala:686 src/Utility/TeeJee.System.vala:281 msgid "Internet connection is not active" msgstr "Connexion internet inexistante" #: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:555 -#: src/Gtk/MainWindow.vala:691 +#: src/Gtk/MainWindow.vala:686 msgid "No Internet" msgstr "Pas d'Internet" @@ -371,7 +371,7 @@ msgstr "" msgid "Changes" msgstr "Changements" -#: src/Gtk/MainWindow.vala:469 src/Gtk/SettingsDialog.vala:53 +#: src/Gtk/MainWindow.vala:469 src/Gtk/SettingsDialog.vala:52 msgid "Settings" msgstr "Paramètres" @@ -394,65 +394,65 @@ msgstr "Actualisation..." msgid "Cancel" msgstr "Annuler" -#: src/Gtk/SettingsDialog.vala:63 +#: src/Gtk/SettingsDialog.vala:62 msgid "Notification" msgstr "Notification" -#: src/Gtk/SettingsDialog.vala:70 +#: src/Gtk/SettingsDialog.vala:69 msgid "Notify if a major release is available" msgstr "Notifier si une version stable majeure est disponible" -#: src/Gtk/SettingsDialog.vala:81 +#: src/Gtk/SettingsDialog.vala:80 msgid "Notify if a point release is available" msgstr "Notifier si une version stable mineure est disponible" -#: src/Gtk/SettingsDialog.vala:92 +#: src/Gtk/SettingsDialog.vala:91 msgid "Show notification bubble on desktop" msgstr "Afficher la bulle de notification sur le bureau" -#: src/Gtk/SettingsDialog.vala:106 +#: src/Gtk/SettingsDialog.vala:105 msgid "Check every" msgstr "Vérifier toutes les" -#: src/Gtk/SettingsDialog.vala:137 +#: src/Gtk/SettingsDialog.vala:136 msgid "Hour(s)" msgstr "Heure(s)" -#: src/Gtk/SettingsDialog.vala:139 +#: src/Gtk/SettingsDialog.vala:138 msgid "Day(s)" msgstr "Jour(s)" -#: src/Gtk/SettingsDialog.vala:141 +#: src/Gtk/SettingsDialog.vala:140 msgid "Week(s)" msgstr "Semaine(s)" -#: src/Gtk/SettingsDialog.vala:146 +#: src/Gtk/SettingsDialog.vala:145 msgid "Display" msgstr "Afficher" -#: src/Gtk/SettingsDialog.vala:154 +#: src/Gtk/SettingsDialog.vala:153 msgid "Hide unstable and RC releases" msgstr "Cacher les versions instables et RC" -#: src/Gtk/SettingsDialog.vala:168 +#: src/Gtk/SettingsDialog.vala:167 msgid "Show N previous major versions " msgstr "" -#: src/Gtk/SettingsDialog.vala:183 +#: src/Gtk/SettingsDialog.vala:182 msgid "Other" msgstr "" -#: src/Gtk/SettingsDialog.vala:191 +#: src/Gtk/SettingsDialog.vala:190 #, fuzzy msgid "Skip internet connection check" msgstr "Connexion internet inexistante" -#: src/Gtk/SettingsDialog.vala:204 +#: src/Gtk/SettingsDialog.vala:203 #, fuzzy msgid "Internet connection timeout in " msgstr "Connexion internet inexistante" -#: src/Gtk/SettingsDialog.vala:218 +#: src/Gtk/SettingsDialog.vala:217 msgid "seconds" msgstr "" @@ -504,7 +504,7 @@ msgstr "Non" msgid "Error" msgstr "Erreur" -#: src/Utility/Gtk/GtkHelper.vala:93 +#: src/Utility/Gtk/GtkHelper.vala:77 msgid "Missing Icon" msgstr "Icône introuvable" diff --git a/po/hr.po b/po/hr.po index b5f075de..bed8ae9a 100644 --- a/po/hr.po +++ b/po/hr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-07 00:12-0400\n" +"POT-Creation-Date: 2020-05-07 03:35-0400\n" "PO-Revision-Date: 2017-12-24 00:52+0100\n" "Last-Translator: gogo \n" "Language-Team: Croatian \n" @@ -113,7 +113,7 @@ msgstr "U redu" msgid "ERROR" msgstr "GREŠKA" -#: src/Common/LinuxKernel.vala:1252 src/Gtk/MainWindow.vala:686 +#: src/Common/LinuxKernel.vala:1252 src/Gtk/MainWindow.vala:681 msgid "This kernel is already installed." msgstr "Ovaj kernel je već instaliran." @@ -168,7 +168,7 @@ msgstr "Instalirajte potrebni paket i pokušajte ponovno" msgid "File not found: %s" msgstr "Datoteka nije pronađena: %s" -#: src/Console/AppConsole.vala:80 src/Gtk/AppGtk.vala:175 +#: src/Console/AppConsole.vala:80 src/Gtk/AppGtk.vala:174 msgid "Syntax" msgstr "Sintaksa" @@ -229,7 +229,7 @@ msgstr "Ukloni datoteke iz predmemorije aplikacije" msgid "Show unstable and RC releases" msgstr "Sakrij nestabilne kernele i predizdanja" -#: src/Console/AppConsole.vala:97 src/Gtk/AppGtk.vala:177 +#: src/Console/AppConsole.vala:97 src/Gtk/AppGtk.vala:176 msgid "Options" msgstr "Mogućnosti" @@ -253,7 +253,7 @@ msgstr "Administratorske ovlasti su potrebne za pokretanje ove aplikacije." msgid "Run the application as admin with pkexec or sudo." msgstr "Pokreni aplikaciju kao administrator sa pkexec ili sudo." -#: src/Console/AppConsole.vala:198 src/Gtk/AppGtk.vala:162 +#: src/Console/AppConsole.vala:198 src/Gtk/AppGtk.vala:161 msgid "Unknown option" msgstr "Nepoznata mogućnost" @@ -262,11 +262,11 @@ msgstr "Nepoznata mogućnost" msgid "Run '" msgstr "" -#: src/Console/AppConsole.vala:205 src/Gtk/AppGtk.vala:110 +#: src/Console/AppConsole.vala:205 src/Gtk/AppGtk.vala:109 msgid "Cache" msgstr "" -#: src/Console/AppConsole.vala:206 src/Gtk/AppGtk.vala:111 +#: src/Console/AppConsole.vala:206 src/Gtk/AppGtk.vala:110 msgid "Temp" msgstr "" @@ -299,11 +299,11 @@ msgstr "" msgid "Minor update available for installation" msgstr "" -#: src/Gtk/AppGtk.vala:179 +#: src/Gtk/AppGtk.vala:178 msgid "Print debug information" msgstr "Ispiši informacije otklanjanja grešaka" -#: src/Gtk/AppGtk.vala:180 +#: src/Gtk/AppGtk.vala:179 msgid "Show all options" msgstr "Prikaži sve mogućnosti" @@ -324,12 +324,12 @@ msgid "Refresh" msgstr "Osvježi" #: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:555 -#: src/Gtk/MainWindow.vala:691 src/Utility/TeeJee.System.vala:281 +#: src/Gtk/MainWindow.vala:686 src/Utility/TeeJee.System.vala:281 msgid "Internet connection is not active" msgstr "Internet povezivanje nije aktivno" #: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:555 -#: src/Gtk/MainWindow.vala:691 +#: src/Gtk/MainWindow.vala:686 msgid "No Internet" msgstr "Nema pristupa internetu" @@ -369,7 +369,7 @@ msgstr "" msgid "Changes" msgstr "Promjene" -#: src/Gtk/MainWindow.vala:469 src/Gtk/SettingsDialog.vala:53 +#: src/Gtk/MainWindow.vala:469 src/Gtk/SettingsDialog.vala:52 msgid "Settings" msgstr "Postavke" @@ -390,65 +390,65 @@ msgstr "Osvježavanje..." msgid "Cancel" msgstr "Odustani" -#: src/Gtk/SettingsDialog.vala:63 +#: src/Gtk/SettingsDialog.vala:62 msgid "Notification" msgstr "Obavijesti" -#: src/Gtk/SettingsDialog.vala:70 +#: src/Gtk/SettingsDialog.vala:69 msgid "Notify if a major release is available" msgstr "Obavijesti kada je glavno izdanje dostupno" -#: src/Gtk/SettingsDialog.vala:81 +#: src/Gtk/SettingsDialog.vala:80 msgid "Notify if a point release is available" msgstr "Obavijesti kada je pojedino izdanje dostupno" -#: src/Gtk/SettingsDialog.vala:92 +#: src/Gtk/SettingsDialog.vala:91 msgid "Show notification bubble on desktop" msgstr "Prikaži mjehurić obavijesti radne površine" -#: src/Gtk/SettingsDialog.vala:106 +#: src/Gtk/SettingsDialog.vala:105 msgid "Check every" msgstr "Provjeri svaka" -#: src/Gtk/SettingsDialog.vala:137 +#: src/Gtk/SettingsDialog.vala:136 msgid "Hour(s)" msgstr "Sat(a)" -#: src/Gtk/SettingsDialog.vala:139 +#: src/Gtk/SettingsDialog.vala:138 msgid "Day(s)" msgstr "Dan(a)" -#: src/Gtk/SettingsDialog.vala:141 +#: src/Gtk/SettingsDialog.vala:140 msgid "Week(s)" msgstr "Tjedan(a)" -#: src/Gtk/SettingsDialog.vala:146 +#: src/Gtk/SettingsDialog.vala:145 msgid "Display" msgstr "Prikaz" -#: src/Gtk/SettingsDialog.vala:154 +#: src/Gtk/SettingsDialog.vala:153 msgid "Hide unstable and RC releases" msgstr "Sakrij nestabilne kernele i predizdanja" -#: src/Gtk/SettingsDialog.vala:168 +#: src/Gtk/SettingsDialog.vala:167 msgid "Show N previous major versions " msgstr "" -#: src/Gtk/SettingsDialog.vala:183 +#: src/Gtk/SettingsDialog.vala:182 msgid "Other" msgstr "" -#: src/Gtk/SettingsDialog.vala:191 +#: src/Gtk/SettingsDialog.vala:190 #, fuzzy msgid "Skip internet connection check" msgstr "Internet povezivanje nije aktivno" -#: src/Gtk/SettingsDialog.vala:204 +#: src/Gtk/SettingsDialog.vala:203 #, fuzzy msgid "Internet connection timeout in " msgstr "Internet povezivanje nije aktivno" -#: src/Gtk/SettingsDialog.vala:218 +#: src/Gtk/SettingsDialog.vala:217 msgid "seconds" msgstr "" @@ -500,7 +500,7 @@ msgstr "Ne" msgid "Error" msgstr "Greška" -#: src/Utility/Gtk/GtkHelper.vala:93 +#: src/Utility/Gtk/GtkHelper.vala:77 msgid "Missing Icon" msgstr "Ikone koje nedostaju" diff --git a/po/messages.pot b/po/messages.pot index 54824ab0..1eec051e 100644 --- a/po/messages.pot +++ b/po/messages.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline 1.0.9\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-07 00:12-0400\n" +"POT-Creation-Date: 2020-05-07 03:35-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -109,7 +109,7 @@ msgstr "" msgid "ERROR" msgstr "" -#: src/Common/LinuxKernel.vala:1252 src/Gtk/MainWindow.vala:686 +#: src/Common/LinuxKernel.vala:1252 src/Gtk/MainWindow.vala:681 msgid "This kernel is already installed." msgstr "" @@ -158,7 +158,7 @@ msgstr "" msgid "File not found: %s" msgstr "" -#: src/Console/AppConsole.vala:80 src/Gtk/AppGtk.vala:175 +#: src/Console/AppConsole.vala:80 src/Gtk/AppGtk.vala:174 msgid "Syntax" msgstr "" @@ -214,7 +214,7 @@ msgstr "" msgid "Show unstable and RC releases" msgstr "" -#: src/Console/AppConsole.vala:97 src/Gtk/AppGtk.vala:177 +#: src/Console/AppConsole.vala:97 src/Gtk/AppGtk.vala:176 msgid "Options" msgstr "" @@ -238,7 +238,7 @@ msgstr "" msgid "Run the application as admin with pkexec or sudo." msgstr "" -#: src/Console/AppConsole.vala:198 src/Gtk/AppGtk.vala:162 +#: src/Console/AppConsole.vala:198 src/Gtk/AppGtk.vala:161 msgid "Unknown option" msgstr "" @@ -247,11 +247,11 @@ msgstr "" msgid "Run '" msgstr "" -#: src/Console/AppConsole.vala:205 src/Gtk/AppGtk.vala:110 +#: src/Console/AppConsole.vala:205 src/Gtk/AppGtk.vala:109 msgid "Cache" msgstr "" -#: src/Console/AppConsole.vala:206 src/Gtk/AppGtk.vala:111 +#: src/Console/AppConsole.vala:206 src/Gtk/AppGtk.vala:110 msgid "Temp" msgstr "" @@ -284,11 +284,11 @@ msgstr "" msgid "Minor update available for installation" msgstr "" -#: src/Gtk/AppGtk.vala:179 +#: src/Gtk/AppGtk.vala:178 msgid "Print debug information" msgstr "" -#: src/Gtk/AppGtk.vala:180 +#: src/Gtk/AppGtk.vala:179 msgid "Show all options" msgstr "" @@ -309,12 +309,12 @@ msgid "Refresh" msgstr "" #: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:555 -#: src/Gtk/MainWindow.vala:691 src/Utility/TeeJee.System.vala:281 +#: src/Gtk/MainWindow.vala:686 src/Utility/TeeJee.System.vala:281 msgid "Internet connection is not active" msgstr "" #: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:555 -#: src/Gtk/MainWindow.vala:691 +#: src/Gtk/MainWindow.vala:686 msgid "No Internet" msgstr "" @@ -354,7 +354,7 @@ msgstr "" msgid "Changes" msgstr "" -#: src/Gtk/MainWindow.vala:469 src/Gtk/SettingsDialog.vala:53 +#: src/Gtk/MainWindow.vala:469 src/Gtk/SettingsDialog.vala:52 msgid "Settings" msgstr "" @@ -375,63 +375,63 @@ msgstr "" msgid "Cancel" msgstr "" -#: src/Gtk/SettingsDialog.vala:63 +#: src/Gtk/SettingsDialog.vala:62 msgid "Notification" msgstr "" -#: src/Gtk/SettingsDialog.vala:70 +#: src/Gtk/SettingsDialog.vala:69 msgid "Notify if a major release is available" msgstr "" -#: src/Gtk/SettingsDialog.vala:81 +#: src/Gtk/SettingsDialog.vala:80 msgid "Notify if a point release is available" msgstr "" -#: src/Gtk/SettingsDialog.vala:92 +#: src/Gtk/SettingsDialog.vala:91 msgid "Show notification bubble on desktop" msgstr "" -#: src/Gtk/SettingsDialog.vala:106 +#: src/Gtk/SettingsDialog.vala:105 msgid "Check every" msgstr "" -#: src/Gtk/SettingsDialog.vala:137 +#: src/Gtk/SettingsDialog.vala:136 msgid "Hour(s)" msgstr "" -#: src/Gtk/SettingsDialog.vala:139 +#: src/Gtk/SettingsDialog.vala:138 msgid "Day(s)" msgstr "" -#: src/Gtk/SettingsDialog.vala:141 +#: src/Gtk/SettingsDialog.vala:140 msgid "Week(s)" msgstr "" -#: src/Gtk/SettingsDialog.vala:146 +#: src/Gtk/SettingsDialog.vala:145 msgid "Display" msgstr "" -#: src/Gtk/SettingsDialog.vala:154 +#: src/Gtk/SettingsDialog.vala:153 msgid "Hide unstable and RC releases" msgstr "" -#: src/Gtk/SettingsDialog.vala:168 +#: src/Gtk/SettingsDialog.vala:167 msgid "Show N previous major versions " msgstr "" -#: src/Gtk/SettingsDialog.vala:183 +#: src/Gtk/SettingsDialog.vala:182 msgid "Other" msgstr "" -#: src/Gtk/SettingsDialog.vala:191 +#: src/Gtk/SettingsDialog.vala:190 msgid "Skip internet connection check" msgstr "" -#: src/Gtk/SettingsDialog.vala:204 +#: src/Gtk/SettingsDialog.vala:203 msgid "Internet connection timeout in " msgstr "" -#: src/Gtk/SettingsDialog.vala:218 +#: src/Gtk/SettingsDialog.vala:217 msgid "seconds" msgstr "" @@ -483,7 +483,7 @@ msgstr "" msgid "Error" msgstr "" -#: src/Utility/Gtk/GtkHelper.vala:93 +#: src/Utility/Gtk/GtkHelper.vala:77 msgid "Missing Icon" msgstr "" diff --git a/po/nl.po b/po/nl.po index 5e1cd0eb..4b59ec78 100644 --- a/po/nl.po +++ b/po/nl.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu 2.2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-07 00:12-0400\n" +"POT-Creation-Date: 2020-05-07 03:35-0400\n" "PO-Revision-Date: 2017-04-30 11:50+0200\n" "Last-Translator: Heimen Stoffels \n" "Language-Team: \n" @@ -113,7 +113,7 @@ msgstr "Oké" msgid "ERROR" msgstr "FOUT" -#: src/Common/LinuxKernel.vala:1252 src/Gtk/MainWindow.vala:686 +#: src/Common/LinuxKernel.vala:1252 src/Gtk/MainWindow.vala:681 msgid "This kernel is already installed." msgstr "Deze kernel is al geïnstalleerd." @@ -169,7 +169,7 @@ msgstr "Installeer de vereiste pakketten en probeer het opnieuw" msgid "File not found: %s" msgstr "Bestand niet gevonden: %s" -#: src/Console/AppConsole.vala:80 src/Gtk/AppGtk.vala:175 +#: src/Console/AppConsole.vala:80 src/Gtk/AppGtk.vala:174 msgid "Syntax" msgstr "Syntax" @@ -230,7 +230,7 @@ msgstr "Bestanden verwijderen uit applicatie-cache" msgid "Show unstable and RC releases" msgstr "Instabiele en RC-uitgaven verbergen" -#: src/Console/AppConsole.vala:97 src/Gtk/AppGtk.vala:177 +#: src/Console/AppConsole.vala:97 src/Gtk/AppGtk.vala:176 msgid "Options" msgstr "Opties" @@ -256,7 +256,7 @@ msgstr "" msgid "Run the application as admin with pkexec or sudo." msgstr "Draai de applicatie als root of m.b.v. gksu/sudo." -#: src/Console/AppConsole.vala:198 src/Gtk/AppGtk.vala:162 +#: src/Console/AppConsole.vala:198 src/Gtk/AppGtk.vala:161 msgid "Unknown option" msgstr "Onbekende optie" @@ -265,11 +265,11 @@ msgstr "Onbekende optie" msgid "Run '" msgstr "" -#: src/Console/AppConsole.vala:205 src/Gtk/AppGtk.vala:110 +#: src/Console/AppConsole.vala:205 src/Gtk/AppGtk.vala:109 msgid "Cache" msgstr "" -#: src/Console/AppConsole.vala:206 src/Gtk/AppGtk.vala:111 +#: src/Console/AppConsole.vala:206 src/Gtk/AppGtk.vala:110 msgid "Temp" msgstr "" @@ -304,11 +304,11 @@ msgstr "" msgid "Minor update available for installation" msgstr "" -#: src/Gtk/AppGtk.vala:179 +#: src/Gtk/AppGtk.vala:178 msgid "Print debug information" msgstr "Foutopsporingsinformatie printen" -#: src/Gtk/AppGtk.vala:180 +#: src/Gtk/AppGtk.vala:179 msgid "Show all options" msgstr "Alle opties weergeven" @@ -329,12 +329,12 @@ msgid "Refresh" msgstr "Verversen" #: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:555 -#: src/Gtk/MainWindow.vala:691 src/Utility/TeeJee.System.vala:281 +#: src/Gtk/MainWindow.vala:686 src/Utility/TeeJee.System.vala:281 msgid "Internet connection is not active" msgstr "U bent niet verbonden met het internet" #: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:555 -#: src/Gtk/MainWindow.vala:691 +#: src/Gtk/MainWindow.vala:686 msgid "No Internet" msgstr "Geen internetverbinding" @@ -374,7 +374,7 @@ msgstr "" msgid "Changes" msgstr "Wijzigingen" -#: src/Gtk/MainWindow.vala:469 src/Gtk/SettingsDialog.vala:53 +#: src/Gtk/MainWindow.vala:469 src/Gtk/SettingsDialog.vala:52 msgid "Settings" msgstr "Instellingen" @@ -395,65 +395,65 @@ msgstr "Bezig met verversen..." msgid "Cancel" msgstr "Annuleren" -#: src/Gtk/SettingsDialog.vala:63 +#: src/Gtk/SettingsDialog.vala:62 msgid "Notification" msgstr "Melding" -#: src/Gtk/SettingsDialog.vala:70 +#: src/Gtk/SettingsDialog.vala:69 msgid "Notify if a major release is available" msgstr "Melding weergeven als er een grote update beschikbaar is" -#: src/Gtk/SettingsDialog.vala:81 +#: src/Gtk/SettingsDialog.vala:80 msgid "Notify if a point release is available" msgstr "Melding weergeven als er een puntupdate beschikbaar is" -#: src/Gtk/SettingsDialog.vala:92 +#: src/Gtk/SettingsDialog.vala:91 msgid "Show notification bubble on desktop" msgstr "Bureaubladmelding weergeven" -#: src/Gtk/SettingsDialog.vala:106 +#: src/Gtk/SettingsDialog.vala:105 msgid "Check every" msgstr "Controleer elke" -#: src/Gtk/SettingsDialog.vala:137 +#: src/Gtk/SettingsDialog.vala:136 msgid "Hour(s)" msgstr "uur" -#: src/Gtk/SettingsDialog.vala:139 +#: src/Gtk/SettingsDialog.vala:138 msgid "Day(s)" msgstr "dag(en)" -#: src/Gtk/SettingsDialog.vala:141 +#: src/Gtk/SettingsDialog.vala:140 msgid "Week(s)" msgstr "we(e)k(en)" -#: src/Gtk/SettingsDialog.vala:146 +#: src/Gtk/SettingsDialog.vala:145 msgid "Display" msgstr "Weergave" -#: src/Gtk/SettingsDialog.vala:154 +#: src/Gtk/SettingsDialog.vala:153 msgid "Hide unstable and RC releases" msgstr "Instabiele en RC-uitgaven verbergen" -#: src/Gtk/SettingsDialog.vala:168 +#: src/Gtk/SettingsDialog.vala:167 msgid "Show N previous major versions " msgstr "" -#: src/Gtk/SettingsDialog.vala:183 +#: src/Gtk/SettingsDialog.vala:182 msgid "Other" msgstr "" -#: src/Gtk/SettingsDialog.vala:191 +#: src/Gtk/SettingsDialog.vala:190 #, fuzzy msgid "Skip internet connection check" msgstr "U bent niet verbonden met het internet" -#: src/Gtk/SettingsDialog.vala:204 +#: src/Gtk/SettingsDialog.vala:203 #, fuzzy msgid "Internet connection timeout in " msgstr "U bent niet verbonden met het internet" -#: src/Gtk/SettingsDialog.vala:218 +#: src/Gtk/SettingsDialog.vala:217 msgid "seconds" msgstr "" @@ -505,7 +505,7 @@ msgstr "" msgid "Error" msgstr "Fout" -#: src/Utility/Gtk/GtkHelper.vala:93 +#: src/Utility/Gtk/GtkHelper.vala:77 msgid "Missing Icon" msgstr "Ontbrekend pictogram" diff --git a/po/pl.po b/po/pl.po index ffba6d64..3a3f6265 100644 --- a/po/pl.po +++ b/po/pl.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-07 00:12-0400\n" +"POT-Creation-Date: 2020-05-07 03:35-0400\n" "PO-Revision-Date: 2017-08-12 15:26+0200\n" "Last-Translator: Waldemar Konik \n" "Language-Team: Polish\n" @@ -111,7 +111,7 @@ msgstr "OK" msgid "ERROR" msgstr "BŁĄD" -#: src/Common/LinuxKernel.vala:1252 src/Gtk/MainWindow.vala:686 +#: src/Common/LinuxKernel.vala:1252 src/Gtk/MainWindow.vala:681 msgid "This kernel is already installed." msgstr "To jądro jest już zainstalowane." @@ -166,7 +166,7 @@ msgstr "Zainstaluj wymagane pakiety i spróbuj ponownie" msgid "File not found: %s" msgstr "Nie odnaleziono pliku: %s" -#: src/Console/AppConsole.vala:80 src/Gtk/AppGtk.vala:175 +#: src/Console/AppConsole.vala:80 src/Gtk/AppGtk.vala:174 msgid "Syntax" msgstr "Składnia" @@ -227,7 +227,7 @@ msgstr "Usuń pliki z pamięci podręcznej aplikacji" msgid "Show unstable and RC releases" msgstr "Ukryj wydania niestabilne i RC" -#: src/Console/AppConsole.vala:97 src/Gtk/AppGtk.vala:177 +#: src/Console/AppConsole.vala:97 src/Gtk/AppGtk.vala:176 msgid "Options" msgstr "Opcje" @@ -252,7 +252,7 @@ msgstr "Aby uruchomić tę aplikację niezbędne są prawa administratora." msgid "Run the application as admin with pkexec or sudo." msgstr "Uruchom aplikację jako root albo użyj gksu/sudo." -#: src/Console/AppConsole.vala:198 src/Gtk/AppGtk.vala:162 +#: src/Console/AppConsole.vala:198 src/Gtk/AppGtk.vala:161 msgid "Unknown option" msgstr "Nieznana opcja" @@ -261,11 +261,11 @@ msgstr "Nieznana opcja" msgid "Run '" msgstr "" -#: src/Console/AppConsole.vala:205 src/Gtk/AppGtk.vala:110 +#: src/Console/AppConsole.vala:205 src/Gtk/AppGtk.vala:109 msgid "Cache" msgstr "" -#: src/Console/AppConsole.vala:206 src/Gtk/AppGtk.vala:111 +#: src/Console/AppConsole.vala:206 src/Gtk/AppGtk.vala:110 msgid "Temp" msgstr "" @@ -298,11 +298,11 @@ msgstr "" msgid "Minor update available for installation" msgstr "" -#: src/Gtk/AppGtk.vala:179 +#: src/Gtk/AppGtk.vala:178 msgid "Print debug information" msgstr "Wypisz informacje debugujące" -#: src/Gtk/AppGtk.vala:180 +#: src/Gtk/AppGtk.vala:179 msgid "Show all options" msgstr "Pokaż wszystkie opcje" @@ -323,12 +323,12 @@ msgid "Refresh" msgstr "Odśwież" #: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:555 -#: src/Gtk/MainWindow.vala:691 src/Utility/TeeJee.System.vala:281 +#: src/Gtk/MainWindow.vala:686 src/Utility/TeeJee.System.vala:281 msgid "Internet connection is not active" msgstr "Brak połączenia z internetem" #: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:555 -#: src/Gtk/MainWindow.vala:691 +#: src/Gtk/MainWindow.vala:686 msgid "No Internet" msgstr "Brak internetu" @@ -368,7 +368,7 @@ msgstr "" msgid "Changes" msgstr "Zmiany" -#: src/Gtk/MainWindow.vala:469 src/Gtk/SettingsDialog.vala:53 +#: src/Gtk/MainWindow.vala:469 src/Gtk/SettingsDialog.vala:52 msgid "Settings" msgstr "Ustawienia" @@ -389,65 +389,65 @@ msgstr "Odświeżam..." msgid "Cancel" msgstr "Anuluj" -#: src/Gtk/SettingsDialog.vala:63 +#: src/Gtk/SettingsDialog.vala:62 msgid "Notification" msgstr "Powiadomienia" -#: src/Gtk/SettingsDialog.vala:70 +#: src/Gtk/SettingsDialog.vala:69 msgid "Notify if a major release is available" msgstr "Powiadom, jeśli pojawi się główna wersja" -#: src/Gtk/SettingsDialog.vala:81 +#: src/Gtk/SettingsDialog.vala:80 msgid "Notify if a point release is available" msgstr "Powiadom, jeśli pojawi się wersja punktowa" -#: src/Gtk/SettingsDialog.vala:92 +#: src/Gtk/SettingsDialog.vala:91 msgid "Show notification bubble on desktop" msgstr "Pokaż powiadomienia na pulpicie" -#: src/Gtk/SettingsDialog.vala:106 +#: src/Gtk/SettingsDialog.vala:105 msgid "Check every" msgstr "Sprawdzaj co" -#: src/Gtk/SettingsDialog.vala:137 +#: src/Gtk/SettingsDialog.vala:136 msgid "Hour(s)" msgstr "Godzin(y)" -#: src/Gtk/SettingsDialog.vala:139 +#: src/Gtk/SettingsDialog.vala:138 msgid "Day(s)" msgstr "Dni" -#: src/Gtk/SettingsDialog.vala:141 +#: src/Gtk/SettingsDialog.vala:140 msgid "Week(s)" msgstr "Tygodni" -#: src/Gtk/SettingsDialog.vala:146 +#: src/Gtk/SettingsDialog.vala:145 msgid "Display" msgstr "Pokaż" -#: src/Gtk/SettingsDialog.vala:154 +#: src/Gtk/SettingsDialog.vala:153 msgid "Hide unstable and RC releases" msgstr "Ukryj wydania niestabilne i RC" -#: src/Gtk/SettingsDialog.vala:168 +#: src/Gtk/SettingsDialog.vala:167 msgid "Show N previous major versions " msgstr "" -#: src/Gtk/SettingsDialog.vala:183 +#: src/Gtk/SettingsDialog.vala:182 msgid "Other" msgstr "" -#: src/Gtk/SettingsDialog.vala:191 +#: src/Gtk/SettingsDialog.vala:190 #, fuzzy msgid "Skip internet connection check" msgstr "Brak połączenia z internetem" -#: src/Gtk/SettingsDialog.vala:204 +#: src/Gtk/SettingsDialog.vala:203 #, fuzzy msgid "Internet connection timeout in " msgstr "Brak połączenia z internetem" -#: src/Gtk/SettingsDialog.vala:218 +#: src/Gtk/SettingsDialog.vala:217 msgid "seconds" msgstr "" @@ -499,7 +499,7 @@ msgstr "" msgid "Error" msgstr "Błąd" -#: src/Utility/Gtk/GtkHelper.vala:93 +#: src/Utility/Gtk/GtkHelper.vala:77 msgid "Missing Icon" msgstr "Brakująca ikona" diff --git a/po/ru.po b/po/ru.po index 8255810e..cda3c0b3 100644 --- a/po/ru.po +++ b/po/ru.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-07 00:12-0400\n" +"POT-Creation-Date: 2020-05-07 03:35-0400\n" "PO-Revision-Date: 2016-12-13 16:46+0300\n" "Last-Translator: Faust3000 \n" "Language-Team: Russian \n" @@ -115,7 +115,7 @@ msgstr "OK" msgid "ERROR" msgstr "ОШИБКА" -#: src/Common/LinuxKernel.vala:1252 src/Gtk/MainWindow.vala:686 +#: src/Common/LinuxKernel.vala:1252 src/Gtk/MainWindow.vala:681 msgid "This kernel is already installed." msgstr "Это ядро уже установлено." @@ -171,7 +171,7 @@ msgstr "Установить необходимые пакеты и попроб msgid "File not found: %s" msgstr "Файл не найден: %s" -#: src/Console/AppConsole.vala:80 src/Gtk/AppGtk.vala:175 +#: src/Console/AppConsole.vala:80 src/Gtk/AppGtk.vala:174 msgid "Syntax" msgstr "Синтаксис" @@ -232,7 +232,7 @@ msgstr "Удалить файлы из кэша программы" msgid "Show unstable and RC releases" msgstr "Скрыть нестабильные и релиз-кандидат версии" -#: src/Console/AppConsole.vala:97 src/Gtk/AppGtk.vala:177 +#: src/Console/AppConsole.vala:97 src/Gtk/AppGtk.vala:176 msgid "Options" msgstr "Параметры" @@ -257,7 +257,7 @@ msgstr "Для запуска программы требуются права msgid "Run the application as admin with pkexec or sudo." msgstr "Запустите программу с правами Root или используйте gksu/sudo." -#: src/Console/AppConsole.vala:198 src/Gtk/AppGtk.vala:162 +#: src/Console/AppConsole.vala:198 src/Gtk/AppGtk.vala:161 msgid "Unknown option" msgstr "Неизвестный параметр" @@ -266,11 +266,11 @@ msgstr "Неизвестный параметр" msgid "Run '" msgstr "" -#: src/Console/AppConsole.vala:205 src/Gtk/AppGtk.vala:110 +#: src/Console/AppConsole.vala:205 src/Gtk/AppGtk.vala:109 msgid "Cache" msgstr "" -#: src/Console/AppConsole.vala:206 src/Gtk/AppGtk.vala:111 +#: src/Console/AppConsole.vala:206 src/Gtk/AppGtk.vala:110 msgid "Temp" msgstr "" @@ -303,11 +303,11 @@ msgstr "" msgid "Minor update available for installation" msgstr "" -#: src/Gtk/AppGtk.vala:179 +#: src/Gtk/AppGtk.vala:178 msgid "Print debug information" msgstr "Распечатать отладочную информацию" -#: src/Gtk/AppGtk.vala:180 +#: src/Gtk/AppGtk.vala:179 msgid "Show all options" msgstr "Показать все параметры" @@ -328,12 +328,12 @@ msgid "Refresh" msgstr "Обновить" #: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:555 -#: src/Gtk/MainWindow.vala:691 src/Utility/TeeJee.System.vala:281 +#: src/Gtk/MainWindow.vala:686 src/Utility/TeeJee.System.vala:281 msgid "Internet connection is not active" msgstr "Интернет соединение не активно" #: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:555 -#: src/Gtk/MainWindow.vala:691 +#: src/Gtk/MainWindow.vala:686 msgid "No Internet" msgstr "" @@ -373,7 +373,7 @@ msgstr "Очистить" msgid "Changes" msgstr "Изменения" -#: src/Gtk/MainWindow.vala:469 src/Gtk/SettingsDialog.vala:53 +#: src/Gtk/MainWindow.vala:469 src/Gtk/SettingsDialog.vala:52 msgid "Settings" msgstr "Настройки" @@ -394,65 +394,65 @@ msgstr "Обновление..." msgid "Cancel" msgstr "Отмена" -#: src/Gtk/SettingsDialog.vala:63 +#: src/Gtk/SettingsDialog.vala:62 msgid "Notification" msgstr "Уведомления" -#: src/Gtk/SettingsDialog.vala:70 +#: src/Gtk/SettingsDialog.vala:69 msgid "Notify if a major release is available" msgstr "Уведомлять, если доступно крупное обновление" -#: src/Gtk/SettingsDialog.vala:81 +#: src/Gtk/SettingsDialog.vala:80 msgid "Notify if a point release is available" msgstr "Уведомлять, если доступно небольшое обновление" -#: src/Gtk/SettingsDialog.vala:92 +#: src/Gtk/SettingsDialog.vala:91 msgid "Show notification bubble on desktop" msgstr "Показывать окно оповещений на рабочем столе" -#: src/Gtk/SettingsDialog.vala:106 +#: src/Gtk/SettingsDialog.vala:105 msgid "Check every" msgstr "Проверять каждые" -#: src/Gtk/SettingsDialog.vala:137 +#: src/Gtk/SettingsDialog.vala:136 msgid "Hour(s)" msgstr "Час(ов)" -#: src/Gtk/SettingsDialog.vala:139 +#: src/Gtk/SettingsDialog.vala:138 msgid "Day(s)" msgstr "День(дней)" -#: src/Gtk/SettingsDialog.vala:141 +#: src/Gtk/SettingsDialog.vala:140 msgid "Week(s)" msgstr "Неделю(ли)" -#: src/Gtk/SettingsDialog.vala:146 +#: src/Gtk/SettingsDialog.vala:145 msgid "Display" msgstr "Вид" -#: src/Gtk/SettingsDialog.vala:154 +#: src/Gtk/SettingsDialog.vala:153 msgid "Hide unstable and RC releases" msgstr "Скрыть нестабильные и релиз-кандидат версии" -#: src/Gtk/SettingsDialog.vala:168 +#: src/Gtk/SettingsDialog.vala:167 msgid "Show N previous major versions " msgstr "" -#: src/Gtk/SettingsDialog.vala:183 +#: src/Gtk/SettingsDialog.vala:182 msgid "Other" msgstr "" -#: src/Gtk/SettingsDialog.vala:191 +#: src/Gtk/SettingsDialog.vala:190 #, fuzzy msgid "Skip internet connection check" msgstr "Интернет соединение не активно" -#: src/Gtk/SettingsDialog.vala:204 +#: src/Gtk/SettingsDialog.vala:203 #, fuzzy msgid "Internet connection timeout in " msgstr "Интернет соединение не активно" -#: src/Gtk/SettingsDialog.vala:218 +#: src/Gtk/SettingsDialog.vala:217 msgid "seconds" msgstr "" @@ -504,7 +504,7 @@ msgstr "" msgid "Error" msgstr "Ошибка" -#: src/Utility/Gtk/GtkHelper.vala:93 +#: src/Utility/Gtk/GtkHelper.vala:77 msgid "Missing Icon" msgstr "Значок отсутствует" diff --git a/po/sv.po b/po/sv.po index cf654464..923677a3 100644 --- a/po/sv.po +++ b/po/sv.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu 2.2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-07 00:12-0400\n" +"POT-Creation-Date: 2020-05-07 03:35-0400\n" "PO-Revision-Date: 2018-01-13 16:56+0100\n" "Last-Translator: Åke Engelbrektson \n" "Language-Team: Svenska Språkfiler \n" @@ -114,7 +114,7 @@ msgstr "OK" msgid "ERROR" msgstr "FEL" -#: src/Common/LinuxKernel.vala:1252 src/Gtk/MainWindow.vala:686 +#: src/Common/LinuxKernel.vala:1252 src/Gtk/MainWindow.vala:681 msgid "This kernel is already installed." msgstr "Denna kärna är redan installerad" @@ -167,7 +167,7 @@ msgstr "Installera nödvändiga paket och försök igen" msgid "File not found: %s" msgstr "Filen kunde inte hittas: %s" -#: src/Console/AppConsole.vala:80 src/Gtk/AppGtk.vala:175 +#: src/Console/AppConsole.vala:80 src/Gtk/AppGtk.vala:174 msgid "Syntax" msgstr "Syntax" @@ -228,7 +228,7 @@ msgstr "Ta bort filer från program-cachen" msgid "Show unstable and RC releases" msgstr "Dölj instabila- och RC-publiceringar" -#: src/Console/AppConsole.vala:97 src/Gtk/AppGtk.vala:177 +#: src/Console/AppConsole.vala:97 src/Gtk/AppGtk.vala:176 msgid "Options" msgstr "Alternativ" @@ -252,7 +252,7 @@ msgstr "Root-åtkomst krävs för att köra detta program." msgid "Run the application as admin with pkexec or sudo." msgstr "Kör programmet som administratör, med pkexec eller sudo." -#: src/Console/AppConsole.vala:198 src/Gtk/AppGtk.vala:162 +#: src/Console/AppConsole.vala:198 src/Gtk/AppGtk.vala:161 msgid "Unknown option" msgstr "Okänt alternativ" @@ -261,11 +261,11 @@ msgstr "Okänt alternativ" msgid "Run '" msgstr "" -#: src/Console/AppConsole.vala:205 src/Gtk/AppGtk.vala:110 +#: src/Console/AppConsole.vala:205 src/Gtk/AppGtk.vala:109 msgid "Cache" msgstr "" -#: src/Console/AppConsole.vala:206 src/Gtk/AppGtk.vala:111 +#: src/Console/AppConsole.vala:206 src/Gtk/AppGtk.vala:110 msgid "Temp" msgstr "" @@ -298,11 +298,11 @@ msgstr "" msgid "Minor update available for installation" msgstr "" -#: src/Gtk/AppGtk.vala:179 +#: src/Gtk/AppGtk.vala:178 msgid "Print debug information" msgstr "Skriv ut felsökningsinformation" -#: src/Gtk/AppGtk.vala:180 +#: src/Gtk/AppGtk.vala:179 msgid "Show all options" msgstr "Visa alla alternativ" @@ -323,12 +323,12 @@ msgid "Refresh" msgstr "Uppdatera" #: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:555 -#: src/Gtk/MainWindow.vala:691 src/Utility/TeeJee.System.vala:281 +#: src/Gtk/MainWindow.vala:686 src/Utility/TeeJee.System.vala:281 msgid "Internet connection is not active" msgstr "Internetuppkopplingen är inte aktiv" #: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:555 -#: src/Gtk/MainWindow.vala:691 +#: src/Gtk/MainWindow.vala:686 msgid "No Internet" msgstr "Inget internet" @@ -368,7 +368,7 @@ msgstr "Rensa" msgid "Changes" msgstr "Ändringar" -#: src/Gtk/MainWindow.vala:469 src/Gtk/SettingsDialog.vala:53 +#: src/Gtk/MainWindow.vala:469 src/Gtk/SettingsDialog.vala:52 msgid "Settings" msgstr "Inställningar" @@ -389,65 +389,65 @@ msgstr "Uppdaterar ..." msgid "Cancel" msgstr "Avbryt" -#: src/Gtk/SettingsDialog.vala:63 +#: src/Gtk/SettingsDialog.vala:62 msgid "Notification" msgstr "Avisering" -#: src/Gtk/SettingsDialog.vala:70 +#: src/Gtk/SettingsDialog.vala:69 msgid "Notify if a major release is available" msgstr "Meddela om en ny (stor) uppdatering finns tillgänglig" -#: src/Gtk/SettingsDialog.vala:81 +#: src/Gtk/SettingsDialog.vala:80 msgid "Notify if a point release is available" msgstr "Meddela om en ny (mindre) uppdatering finns tillgänglig" -#: src/Gtk/SettingsDialog.vala:92 +#: src/Gtk/SettingsDialog.vala:91 msgid "Show notification bubble on desktop" msgstr "Visa aviseringsruta på skrivbordet" -#: src/Gtk/SettingsDialog.vala:106 +#: src/Gtk/SettingsDialog.vala:105 msgid "Check every" msgstr "Kontrollera varje" -#: src/Gtk/SettingsDialog.vala:137 +#: src/Gtk/SettingsDialog.vala:136 msgid "Hour(s)" msgstr "Timma(r)" -#: src/Gtk/SettingsDialog.vala:139 +#: src/Gtk/SettingsDialog.vala:138 msgid "Day(s)" msgstr "Dag(ar)" -#: src/Gtk/SettingsDialog.vala:141 +#: src/Gtk/SettingsDialog.vala:140 msgid "Week(s)" msgstr "Veckor" -#: src/Gtk/SettingsDialog.vala:146 +#: src/Gtk/SettingsDialog.vala:145 msgid "Display" msgstr "Visa" -#: src/Gtk/SettingsDialog.vala:154 +#: src/Gtk/SettingsDialog.vala:153 msgid "Hide unstable and RC releases" msgstr "Dölj instabila- och RC-publiceringar" -#: src/Gtk/SettingsDialog.vala:168 +#: src/Gtk/SettingsDialog.vala:167 msgid "Show N previous major versions " msgstr "" -#: src/Gtk/SettingsDialog.vala:183 +#: src/Gtk/SettingsDialog.vala:182 msgid "Other" msgstr "" -#: src/Gtk/SettingsDialog.vala:191 +#: src/Gtk/SettingsDialog.vala:190 #, fuzzy msgid "Skip internet connection check" msgstr "Internetuppkopplingen är inte aktiv" -#: src/Gtk/SettingsDialog.vala:204 +#: src/Gtk/SettingsDialog.vala:203 #, fuzzy msgid "Internet connection timeout in " msgstr "Internetuppkopplingen är inte aktiv" -#: src/Gtk/SettingsDialog.vala:218 +#: src/Gtk/SettingsDialog.vala:217 msgid "seconds" msgstr "" @@ -499,7 +499,7 @@ msgstr "Nej" msgid "Error" msgstr "Fel" -#: src/Utility/Gtk/GtkHelper.vala:93 +#: src/Utility/Gtk/GtkHelper.vala:77 msgid "Missing Icon" msgstr "Saknad ikon" diff --git a/po/tr.po b/po/tr.po index 8799b7c9..9c9e5de4 100644 --- a/po/tr.po +++ b/po/tr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-07 00:12-0400\n" +"POT-Creation-Date: 2020-05-07 03:35-0400\n" "PO-Revision-Date: 2020-03-10 15:59+0300\n" "Last-Translator: Gökhan GÖKKAYA \n" "Language-Team: Turkish\n" @@ -110,7 +110,7 @@ msgstr "TAMAM" msgid "ERROR" msgstr "HATA" -#: src/Common/LinuxKernel.vala:1252 src/Gtk/MainWindow.vala:686 +#: src/Common/LinuxKernel.vala:1252 src/Gtk/MainWindow.vala:681 msgid "This kernel is already installed." msgstr "Bu çekirdek zaten kurulu." @@ -164,7 +164,7 @@ msgstr "Lütfen gerekli paketleri yükleyin ve tekrar deneyin" msgid "File not found: %s" msgstr "Şu dosya bulunamadı: %s" -#: src/Console/AppConsole.vala:80 src/Gtk/AppGtk.vala:175 +#: src/Console/AppConsole.vala:80 src/Gtk/AppGtk.vala:174 msgid "Syntax" msgstr "Sözdizimi" @@ -220,7 +220,7 @@ msgstr "Dosyaları uygulama önbelleğinden sil" msgid "Show unstable and RC releases" msgstr "Kararsız ve RC sürümleri göster" -#: src/Console/AppConsole.vala:97 src/Gtk/AppGtk.vala:177 +#: src/Console/AppConsole.vala:97 src/Gtk/AppGtk.vala:176 msgid "Options" msgstr "Seçenekler" @@ -244,7 +244,7 @@ msgstr "Bu uygulamayı çalıştırmak için yönetici izni gerekiyor." msgid "Run the application as admin with pkexec or sudo." msgstr "Bu uygulamayı pkexec yada sudo ile yönetici haklarıyla çalıştırın." -#: src/Console/AppConsole.vala:198 src/Gtk/AppGtk.vala:162 +#: src/Console/AppConsole.vala:198 src/Gtk/AppGtk.vala:161 msgid "Unknown option" msgstr "Bilinmeyen seçenek" @@ -253,11 +253,11 @@ msgstr "Bilinmeyen seçenek" msgid "Run '" msgstr "Çalıştır '" -#: src/Console/AppConsole.vala:205 src/Gtk/AppGtk.vala:110 +#: src/Console/AppConsole.vala:205 src/Gtk/AppGtk.vala:109 msgid "Cache" msgstr "Önbellek" -#: src/Console/AppConsole.vala:206 src/Gtk/AppGtk.vala:111 +#: src/Console/AppConsole.vala:206 src/Gtk/AppGtk.vala:110 msgid "Temp" msgstr "Geçici" @@ -290,11 +290,11 @@ msgstr "" msgid "Minor update available for installation" msgstr "" -#: src/Gtk/AppGtk.vala:179 +#: src/Gtk/AppGtk.vala:178 msgid "Print debug information" msgstr "Hata ayıklama bilgisini yazdır" -#: src/Gtk/AppGtk.vala:180 +#: src/Gtk/AppGtk.vala:179 msgid "Show all options" msgstr "Tüm seçenekleri göster" @@ -315,12 +315,12 @@ msgid "Refresh" msgstr "Yenile" #: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:555 -#: src/Gtk/MainWindow.vala:691 src/Utility/TeeJee.System.vala:281 +#: src/Gtk/MainWindow.vala:686 src/Utility/TeeJee.System.vala:281 msgid "Internet connection is not active" msgstr "İnternet bağlantısı aktif değil" #: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:555 -#: src/Gtk/MainWindow.vala:691 +#: src/Gtk/MainWindow.vala:686 msgid "No Internet" msgstr "İnternet Yok" @@ -360,7 +360,7 @@ msgstr "Temizle" msgid "Changes" msgstr "Değişiklikler" -#: src/Gtk/MainWindow.vala:469 src/Gtk/SettingsDialog.vala:53 +#: src/Gtk/MainWindow.vala:469 src/Gtk/SettingsDialog.vala:52 msgid "Settings" msgstr "Ayarlar" @@ -381,63 +381,63 @@ msgstr "Yenileniyor..." msgid "Cancel" msgstr "İptal" -#: src/Gtk/SettingsDialog.vala:63 +#: src/Gtk/SettingsDialog.vala:62 msgid "Notification" msgstr "Bildirim" -#: src/Gtk/SettingsDialog.vala:70 +#: src/Gtk/SettingsDialog.vala:69 msgid "Notify if a major release is available" msgstr "Ana sürüm mevcutsa bildir" -#: src/Gtk/SettingsDialog.vala:81 +#: src/Gtk/SettingsDialog.vala:80 msgid "Notify if a point release is available" msgstr "Ara sürüm mevcutsa bildir" -#: src/Gtk/SettingsDialog.vala:92 +#: src/Gtk/SettingsDialog.vala:91 msgid "Show notification bubble on desktop" msgstr "Masaüstünde bildirim baloncuğu göster" -#: src/Gtk/SettingsDialog.vala:106 +#: src/Gtk/SettingsDialog.vala:105 msgid "Check every" msgstr "Kontrol aralığı" -#: src/Gtk/SettingsDialog.vala:137 +#: src/Gtk/SettingsDialog.vala:136 msgid "Hour(s)" msgstr "Saat" -#: src/Gtk/SettingsDialog.vala:139 +#: src/Gtk/SettingsDialog.vala:138 msgid "Day(s)" msgstr "Gün" -#: src/Gtk/SettingsDialog.vala:141 +#: src/Gtk/SettingsDialog.vala:140 msgid "Week(s)" msgstr "Hafta" -#: src/Gtk/SettingsDialog.vala:146 +#: src/Gtk/SettingsDialog.vala:145 msgid "Display" msgstr "Gösterim" -#: src/Gtk/SettingsDialog.vala:154 +#: src/Gtk/SettingsDialog.vala:153 msgid "Hide unstable and RC releases" msgstr "Kararsız ve RC sürümleri gizle" -#: src/Gtk/SettingsDialog.vala:168 +#: src/Gtk/SettingsDialog.vala:167 msgid "Show N previous major versions " msgstr "Önceki ana sürümleri gösterme sayısı " -#: src/Gtk/SettingsDialog.vala:183 +#: src/Gtk/SettingsDialog.vala:182 msgid "Other" msgstr "Diğer" -#: src/Gtk/SettingsDialog.vala:191 +#: src/Gtk/SettingsDialog.vala:190 msgid "Skip internet connection check" msgstr "İnternet bağlantı kontrolünü atla" -#: src/Gtk/SettingsDialog.vala:204 +#: src/Gtk/SettingsDialog.vala:203 msgid "Internet connection timeout in " msgstr "İnternet bağlantısı zaman aşımı " -#: src/Gtk/SettingsDialog.vala:218 +#: src/Gtk/SettingsDialog.vala:217 msgid "seconds" msgstr "saniye" @@ -489,7 +489,7 @@ msgstr "Hayır" msgid "Error" msgstr "Hata" -#: src/Utility/Gtk/GtkHelper.vala:93 +#: src/Utility/Gtk/GtkHelper.vala:77 msgid "Missing Icon" msgstr "Eksik Simge" diff --git a/po/uk.po b/po/uk.po index b730d588..56cd8048 100644 --- a/po/uk.po +++ b/po/uk.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-07 00:12-0400\n" +"POT-Creation-Date: 2020-05-07 03:35-0400\n" "PO-Revision-Date: 2019-07-25 11:00+0300\n" "Last-Translator: Serhii Golovko \n" "Language-Team: Ukranian \n" @@ -105,7 +105,7 @@ msgstr "OK" msgid "ERROR" msgstr "ПОМИЛКА" -#: src/Common/LinuxKernel.vala:1252 src/Gtk/MainWindow.vala:686 +#: src/Common/LinuxKernel.vala:1252 src/Gtk/MainWindow.vala:681 msgid "This kernel is already installed." msgstr "Это ядро уже установлено." @@ -160,7 +160,7 @@ msgstr "Встановити необхідні пакети і спробуйт msgid "File not found: %s" msgstr "Файл не знайдено: %s" -#: src/Console/AppConsole.vala:80 src/Gtk/AppGtk.vala:175 +#: src/Console/AppConsole.vala:80 src/Gtk/AppGtk.vala:174 msgid "Syntax" msgstr "Синтаксис" @@ -216,7 +216,7 @@ msgstr "Видалити файли з кешу програми" msgid "Show unstable and RC releases" msgstr "Приховати нестабільні і реліз-кандидат версії" -#: src/Console/AppConsole.vala:97 src/Gtk/AppGtk.vala:177 +#: src/Console/AppConsole.vala:97 src/Gtk/AppGtk.vala:176 msgid "Options" msgstr "Параметри" @@ -240,7 +240,7 @@ msgstr "Для запуску програми потрібно мати пра msgid "Run the application as admin with pkexec or sudo." msgstr "Запустіть додаток як адміністратор за допомогою pkexec або sudo." -#: src/Console/AppConsole.vala:198 src/Gtk/AppGtk.vala:162 +#: src/Console/AppConsole.vala:198 src/Gtk/AppGtk.vala:161 msgid "Unknown option" msgstr "Невідомий параметр" @@ -249,11 +249,11 @@ msgstr "Невідомий параметр" msgid "Run '" msgstr "Запуск" -#: src/Console/AppConsole.vala:205 src/Gtk/AppGtk.vala:110 +#: src/Console/AppConsole.vala:205 src/Gtk/AppGtk.vala:109 msgid "Cache" msgstr "Кеш" -#: src/Console/AppConsole.vala:206 src/Gtk/AppGtk.vala:111 +#: src/Console/AppConsole.vala:206 src/Gtk/AppGtk.vala:110 msgid "Temp" msgstr "Темп" @@ -286,11 +286,11 @@ msgstr "" msgid "Minor update available for installation" msgstr "" -#: src/Gtk/AppGtk.vala:179 +#: src/Gtk/AppGtk.vala:178 msgid "Print debug information" msgstr "Роздрукувати зневадження" -#: src/Gtk/AppGtk.vala:180 +#: src/Gtk/AppGtk.vala:179 msgid "Show all options" msgstr "Показати усі параметри" @@ -311,12 +311,12 @@ msgid "Refresh" msgstr "Оновити" #: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:555 -#: src/Gtk/MainWindow.vala:691 src/Utility/TeeJee.System.vala:281 +#: src/Gtk/MainWindow.vala:686 src/Utility/TeeJee.System.vala:281 msgid "Internet connection is not active" msgstr "Інтернет з'єднання не активно" #: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:555 -#: src/Gtk/MainWindow.vala:691 +#: src/Gtk/MainWindow.vala:686 msgid "No Internet" msgstr "Інтернету немає" @@ -356,7 +356,7 @@ msgstr "Чистити" msgid "Changes" msgstr "Зміни" -#: src/Gtk/MainWindow.vala:469 src/Gtk/SettingsDialog.vala:53 +#: src/Gtk/MainWindow.vala:469 src/Gtk/SettingsDialog.vala:52 msgid "Settings" msgstr "Налаштування" @@ -377,63 +377,63 @@ msgstr "Оновлення..." msgid "Cancel" msgstr "Відміна" -#: src/Gtk/SettingsDialog.vala:63 +#: src/Gtk/SettingsDialog.vala:62 msgid "Notification" msgstr "Повідомлення" -#: src/Gtk/SettingsDialog.vala:70 +#: src/Gtk/SettingsDialog.vala:69 msgid "Notify if a major release is available" msgstr "Повідомити, чи доступний великий випуск" -#: src/Gtk/SettingsDialog.vala:81 +#: src/Gtk/SettingsDialog.vala:80 msgid "Notify if a point release is available" msgstr "Повідомити, чи доступний невеликий випуск" -#: src/Gtk/SettingsDialog.vala:92 +#: src/Gtk/SettingsDialog.vala:91 msgid "Show notification bubble on desktop" msgstr "Показувати вікно сповіщень на робочому столі" -#: src/Gtk/SettingsDialog.vala:106 +#: src/Gtk/SettingsDialog.vala:105 msgid "Check every" msgstr "Перевіряти кожні" -#: src/Gtk/SettingsDialog.vala:137 +#: src/Gtk/SettingsDialog.vala:136 msgid "Hour(s)" msgstr "Година(дин)" -#: src/Gtk/SettingsDialog.vala:139 +#: src/Gtk/SettingsDialog.vala:138 msgid "Day(s)" msgstr "День(днів)" -#: src/Gtk/SettingsDialog.vala:141 +#: src/Gtk/SettingsDialog.vala:140 msgid "Week(s)" msgstr "Тиждень (ні)" -#: src/Gtk/SettingsDialog.vala:146 +#: src/Gtk/SettingsDialog.vala:145 msgid "Display" msgstr "Вид" -#: src/Gtk/SettingsDialog.vala:154 +#: src/Gtk/SettingsDialog.vala:153 msgid "Hide unstable and RC releases" msgstr "Приховати нестабільні і реліз-кандидат версії" -#: src/Gtk/SettingsDialog.vala:168 +#: src/Gtk/SettingsDialog.vala:167 msgid "Show N previous major versions " msgstr "" -#: src/Gtk/SettingsDialog.vala:183 +#: src/Gtk/SettingsDialog.vala:182 msgid "Other" msgstr "Інший" -#: src/Gtk/SettingsDialog.vala:191 +#: src/Gtk/SettingsDialog.vala:190 msgid "Skip internet connection check" msgstr "Пропустити перевірку підключення до Інтернету" -#: src/Gtk/SettingsDialog.vala:204 +#: src/Gtk/SettingsDialog.vala:203 msgid "Internet connection timeout in " msgstr "Час очікування підключення до Інтернету в " -#: src/Gtk/SettingsDialog.vala:218 +#: src/Gtk/SettingsDialog.vala:217 msgid "seconds" msgstr "секунди" @@ -485,7 +485,7 @@ msgstr "Ні" msgid "Error" msgstr "Помилка" -#: src/Utility/Gtk/GtkHelper.vala:93 +#: src/Utility/Gtk/GtkHelper.vala:77 msgid "Missing Icon" msgstr "Нема значка" diff --git a/share/mainline/images/tux.svg b/share/mainline/images/tux.svg deleted file mode 100644 index 53cb2752..00000000 --- a/share/mainline/images/tux.svg +++ /dev/null @@ -1,1940 +0,0 @@ - - - - - Tux - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - Tux - 20 June 2012 - - - Garrett LeSage - - - - - - Larry Ewing, the creator of the original Tux graphic - - - - - tux - Linux - penguin - logo - - - - - Larry Ewing, Garrett LeSage - - - https://github.com/garrett/Tux - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/share/mainline/images/tux-red.png b/share/pixmaps/mainline/tux-red.png similarity index 100% rename from share/mainline/images/tux-red.png rename to share/pixmaps/mainline/tux-red.png diff --git a/share/mainline/images/tux.png b/share/pixmaps/mainline/tux.png similarity index 100% rename from share/mainline/images/tux.png rename to share/pixmaps/mainline/tux.png diff --git a/share/mainline/images/ubuntu-logo.png b/share/pixmaps/mainline/ubuntu-logo.png similarity index 100% rename from share/mainline/images/ubuntu-logo.png rename to share/pixmaps/mainline/ubuntu-logo.png diff --git a/src/Common/Main.vala b/src/Common/Main.vala index 84f75291..cb467f3e 100644 --- a/src/Common/Main.vala +++ b/src/Common/Main.vala @@ -242,9 +242,7 @@ public class Main : GLib.Object{ // UGLY - this should be a cron job string txt = "# Notifications are disabled\nexit 0\n"; if (notify_minor || notify_major){ - //txt = "while sleep %d%s".printf(count, suffix)+" ;do " + BRANDING_SHORTNAME + " --notify ;done\n"; - // debugging - txt = "while sleep 60 ;do " + BRANDING_SHORTNAME + " --notify ;done\n"; + txt = "while sleep %d%s".printf(count, suffix)+" ;do " + BRANDING_SHORTNAME + " --notify ;done\n"; } file_write(STARTUP_SCRIPT_FILE,txt); diff --git a/src/Console/OSDNotify.vala b/src/Console/OSDNotify.vala index 16dd68de..d06f16ac 100644 --- a/src/Console/OSDNotify.vala +++ b/src/Console/OSDNotify.vala @@ -45,8 +45,6 @@ public class OSDNotify : GLib.Object { } if (seconds > NOTIFICATION_INTERVAL){ - //string s = "notify-send -t %d -u %s -i %s \"%s\" \"%s\"".printf(durationMillis, urgency, icon, title, message); - // notify-send.sh -u low -a mainline -i mainline -c info -o "Show:mainline-gtk" "mainline" "New kernel is available" string s = INSTALL_PREFIX+"/lib/"+BRANDING_SHORTNAME+"/notify-send.sh/notify-send.sh -u low -c info -a "+BRANDING_SHORTNAME+" -i "+BRANDING_SHORTNAME+" -o \"Show:"+BRANDING_SHORTNAME+"-gtk\" \"%s\" \"%s\"".printf(title,message); //log_msg(s); retVal = exec_sync (s, null, null); diff --git a/src/Gtk/AppGtk.vala b/src/Gtk/AppGtk.vala index 9bb40ec9..c42694b6 100644 --- a/src/Gtk/AppGtk.vala +++ b/src/Gtk/AppGtk.vala @@ -39,10 +39,9 @@ public Main App; [CCode(cname="BRANDING_AUTHORNAME")] extern const string BRANDING_AUTHORNAME; [CCode(cname="BRANDING_AUTHOREMAIL")] extern const string BRANDING_AUTHOREMAIL; [CCode(cname="BRANDING_WEBSITE")] extern const string BRANDING_WEBSITE; +[CCode(cname="INSTALL_PREFIX")] extern const string INSTALL_PREFIX; -public const string ICON_DIR = BRANDING_SHORTNAME; - -const string LOCALE_DIR = "/usr/share/locale"; +const string LOCALE_DIR = INSTALL_PREFIX+"/share/locale"; public class AppGtk : GLib.Object { diff --git a/src/Gtk/MainWindow.vala b/src/Gtk/MainWindow.vala index 5a1b22da..33bb4842 100644 --- a/src/Gtk/MainWindow.vala +++ b/src/Gtk/MainWindow.vala @@ -263,11 +263,11 @@ public class MainWindow : Gtk.Window{ Gdk.Pixbuf pix_mainline_rc = null; try { - pix_ubuntu = new Gdk.Pixbuf.from_file ("/usr/share/" + BRANDING_SHORTNAME + "/images/ubuntu-logo.png"); + pix_ubuntu = new Gdk.Pixbuf.from_file (INSTALL_PREFIX + "/share/pixmaps/" + BRANDING_SHORTNAME + "/ubuntu-logo.png"); - pix_mainline = new Gdk.Pixbuf.from_file ("/usr/share/" + BRANDING_SHORTNAME + "/images/tux.png"); + pix_mainline = new Gdk.Pixbuf.from_file (INSTALL_PREFIX + "/share/pixmaps/" + BRANDING_SHORTNAME + "/tux.png"); - pix_mainline_rc = new Gdk.Pixbuf.from_file ("/usr/share/" + BRANDING_SHORTNAME + "/images/tux-red.png"); + pix_mainline_rc = new Gdk.Pixbuf.from_file (INSTALL_PREFIX + "/share/pixmaps/" + BRANDING_SHORTNAME + "/tux-red.png"); } catch (Error e) { log_error (e.message); @@ -645,11 +645,6 @@ public class MainWindow : Gtk.Window{ //hbox.margin = 6; scrolled.add(hbox); - var img_status = new Gtk.Image(); - img_status.pixbuf = get_shared_icon_pixbuf("", "tux.svg", 64); - img_status.margin = 6; - hbox.add(img_status); - lbl_info = new Gtk.Label(""); lbl_info.margin = 6; lbl_info.set_use_markup(true); diff --git a/src/Gtk/SettingsDialog.vala b/src/Gtk/SettingsDialog.vala index 8d2486c9..859288df 100644 --- a/src/Gtk/SettingsDialog.vala +++ b/src/Gtk/SettingsDialog.vala @@ -38,7 +38,6 @@ public class SettingsDialog : Gtk.Dialog { private Gtk.CheckButton chk_notify_major; private Gtk.CheckButton chk_notify_minor; private Gtk.CheckButton chk_notify_bubble; - private Gtk.CheckButton chk_notify_dialog; private Gtk.CheckButton chk_hide_unstable; public SettingsDialog.with_parent(Window parent) { diff --git a/src/Utility/Gtk/GtkHelper.vala b/src/Utility/Gtk/GtkHelper.vala index 92ce0c2d..bb68b003 100644 --- a/src/Utility/Gtk/GtkHelper.vala +++ b/src/Utility/Gtk/GtkHelper.vala @@ -50,8 +50,8 @@ namespace TeeJee.GtkHelper{ // icon ---------------------------------------------- - public Gdk.Pixbuf? get_app_icon(int icon_size, string format = ".svg"){ - var img_icon = get_shared_icon(BRANDING_SHORTNAME, BRANDING_SHORTNAME + format,icon_size,"pixmaps"); + public Gdk.Pixbuf? get_app_icon(int icon_size){ + var img_icon = get_shared_icon(BRANDING_SHORTNAME ,icon_size); if (img_icon != null){ return img_icon.pixbuf; } @@ -60,37 +60,21 @@ namespace TeeJee.GtkHelper{ } } - public Gtk.Image? get_shared_icon( - string icon_name, - string fallback_icon_file_name, - int icon_size, - string icon_directory = ICON_DIR + "/images"){ + public Gtk.Image? get_shared_icon(string icon_name, int icon_size){ Gdk.Pixbuf pix_icon = null; Gtk.Image img_icon = null; try { Gtk.IconTheme icon_theme = Gtk.IconTheme.get_default(); - pix_icon = icon_theme.load_icon_for_scale ( icon_name, Gtk.IconSize.MENU, icon_size, Gtk.IconLookupFlags.FORCE_SIZE); - } catch (Error e) { //log_error (e.message); } - string fallback_icon_file_path = "/usr/share/%s/%s".printf(icon_directory, fallback_icon_file_name); - - if (pix_icon == null){ - try { - pix_icon = new Gdk.Pixbuf.from_file_at_size (fallback_icon_file_path, icon_size, icon_size); - } catch (Error e) { - log_error (e.message); - } - } - if (pix_icon == null){ - log_error (_("Missing Icon") + ": '%s', '%s'".printf(icon_name, fallback_icon_file_path)); + log_error (_("Missing Icon") + ": '%s'".printf(icon_name)); } else{ img_icon = new Gtk.Image.from_pixbuf(pix_icon); @@ -99,12 +83,9 @@ namespace TeeJee.GtkHelper{ return img_icon; } - public Gdk.Pixbuf? get_shared_icon_pixbuf(string icon_name, - string fallback_file_name, - int icon_size, - string icon_directory = ICON_DIR + "/images"){ + public Gdk.Pixbuf? get_shared_icon_pixbuf(string icon_name, int icon_size){ - var img = get_shared_icon(icon_name, fallback_file_name, icon_size, icon_directory); + var img = get_shared_icon(icon_name, icon_size); var pixbuf = (img == null) ? null : img.pixbuf; return pixbuf; } From fc713d9cf2c985f6d6897053576450a655c34f3c Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Thu, 7 May 2020 18:24:51 -0400 Subject: [PATCH 078/567] document new notification action button issue --- README.md | 1 + README.md.src | 1 + 2 files changed, 2 insertions(+) diff --git a/README.md b/README.md index 432f5737..2d34ccdf 100644 --- a/README.md +++ b/README.md @@ -46,6 +46,7 @@ The original author stopped maintaining the original GPL version of ukuu and swi * Better desktop notification behavior ### Development Plans / TODO +* 20200506 The new "Show" button to launch mainline-gtk right from the desktop notification isn't fully working yet. The button ony works for the first few seconds after the notification appears. * More efficient downloading & caching of info about available kernels * Better (more automatic) initial sizes for the window and the columns in the kernel list display so you don't have to manually expand them ...or at least, remember the sizes the user last set. diff --git a/README.md.src b/README.md.src index 35fcbbe9..3a1535a3 100644 --- a/README.md.src +++ b/README.md.src @@ -46,6 +46,7 @@ The original author stopped maintaining the original GPL version of ukuu and swi * Better desktop notification behavior ### Development Plans / TODO +* 20200506 The new "Show" button to launch mainline-gtk right from the desktop notification isn't fully working yet. The button ony works for the first few seconds after the notification appears. * More efficient downloading & caching of info about available kernels * Better (more automatic) initial sizes for the window and the columns in the kernel list display so you don't have to manually expand them ...or at least, remember the sizes the user last set. From 89cf104ed8a55df27c3fdecca201282e8d8b5cd1 Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Sat, 9 May 2020 07:52:21 -0400 Subject: [PATCH 079/567] notifications, temp files, remove unused code --- .deb_build_number.mak | 2 +- Makefile | 7 +- debian/changelog | 16 +- lib/notify-action-debug.sh | 5 + lib/{notify-send.sh => notify_send}/AUTHORS | 0 lib/{notify-send.sh => notify_send}/LICENSE | 0 lib/{notify-send.sh => notify_send}/README.md | 0 .../notify-action.sh | 0 .../notify-send.sh | 0 po/es.po | 299 ++++++----- po/fr.po | 299 ++++++----- po/hr.po | 299 ++++++----- po/messages.pot | 285 +++++------ po/nl.po | 299 ++++++----- po/pl.po | 299 ++++++----- po/ru.po | 299 ++++++----- po/sv.po | 299 ++++++----- po/tr.po | 302 ++++++----- po/uk.po | 302 ++++++----- src/Common/DownloadManager.vala | 17 +- src/Common/LinuxKernel.vala | 121 ++--- src/Common/Main.vala | 21 +- src/Common/Package.vala | 39 +- src/Console/AppConsole.vala | 111 ++-- src/Console/OSDNotify.vala | 87 +++- src/Gtk/AppGtk.vala | 3 - src/Gtk/MainWindow.vala | 77 +-- src/Gtk/SettingsDialog.vala | 19 +- src/Utility/AsyncTask.vala | 3 +- src/Utility/Gtk/AboutWindow.vala | 42 +- src/Utility/TeeJee.FileSystem.vala | 474 +----------------- src/Utility/TeeJee.Process.vala | 3 +- src/Utility/TeeJee.System.vala | 207 +------- 33 files changed, 1767 insertions(+), 2469 deletions(-) create mode 100755 lib/notify-action-debug.sh rename lib/{notify-send.sh => notify_send}/AUTHORS (100%) rename lib/{notify-send.sh => notify_send}/LICENSE (100%) rename lib/{notify-send.sh => notify_send}/README.md (100%) rename lib/{notify-send.sh => notify_send}/notify-action.sh (100%) rename lib/{notify-send.sh => notify_send}/notify-send.sh (100%) diff --git a/.deb_build_number.mak b/.deb_build_number.mak index 7739f47e..cdec778b 100644 --- a/.deb_build_number.mak +++ b/.deb_build_number.mak @@ -1,3 +1,3 @@ # This file is generated by Makefile "make deb_build_number" DEB_PKG_VERSION := 1.0.9 -DEB_BUILD_NUMBER := 0003 +DEB_BUILD_NUMBER := 0006 diff --git a/Makefile b/Makefile index c5e0ca3e..04198280 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,9 @@ # Makefile for "mainline" +# url to ubuntu mainline kernels +URI_KERNEL_UBUNTU_MAINLINE := http://kernel.ubuntu.com/~kernel-ppa/mainline/ # number of previous major kernel version numbers to show by default -DEFAULT_SHOW_PREV_MAJORS = 0 +DEFAULT_SHOW_PREV_MAJORS := 0 SHELL := /bin/bash CFLAGS := --std=c99 @@ -33,7 +35,8 @@ build_symbols := -X -D'INSTALL_PREFIX="$(prefix)"' \ -X -D'BRANDING_AUTHOREMAIL="$(BRANDING_AUTHOREMAIL)"' \ -X -D'BRANDING_WEBSITE="$(BRANDING_WEBSITE)"' \ -X -D'GETTEXT_PACKAGE="$(BRANDING_SHORTNAME)"' \ - -X -D'DEFAULT_SHOW_PREV_MAJORS="$(DEFAULT_SHOW_PREV_MAJORS)"' + -X -D'DEFAULT_SHOW_PREV_MAJORS="$(DEFAULT_SHOW_PREV_MAJORS)"' \ + -X -D'URI_KERNEL_UBUNTU_MAINLINE="$(URI_KERNEL_UBUNTU_MAINLINE)"' misc_files := README.md \ INSTALL \ diff --git a/debian/changelog b/debian/changelog index 3da08466..66c7492d 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,18 +1,10 @@ mainline (1.0.9) unstable; urgency=medium * Improve desktop notifications - Remove the redundant --notify option from the gui app - Replace the use of "notify_send" with "notify_send.sh" - Make the desktop notification have the apps name & icon instead of "notify_send" - Make the desktop notification directly clickable to launch the app to install the new kernel - Localize the notification text - - * Improve temp directories - Stop making a top level "mainline" & "mainline-gtk" subdir under /tmp or ~/.temp, - with random dirs under that, which just creates permissions problems. - Now always generate /mainline_ - - * un-hardcode "/usr" in various install paths + * Improve temp directories & file permissions, somewhat + * Removed a bunch more un-used TeeJee util functions + * un-hardcode "/usr" in various paths to installed files + * Added some quasi-hidden extra functionality to --debug -- Brian K. White Thu, 07 May 2020 00:01:27 -0400 diff --git a/lib/notify-action-debug.sh b/lib/notify-action-debug.sh new file mode 100755 index 00000000..a37c60ef --- /dev/null +++ b/lib/notify-action-debug.sh @@ -0,0 +1,5 @@ +#!/bin/bash +printf -v DT "%(%Y%m%d%H%M%S)T_${RANDOM}" -1 +LF=/tmp/.mainline_notify_action_${DT}.log +set > ${LF} +mainline-gtk --debug 2>&1 >> ${LF} diff --git a/lib/notify-send.sh/AUTHORS b/lib/notify_send/AUTHORS similarity index 100% rename from lib/notify-send.sh/AUTHORS rename to lib/notify_send/AUTHORS diff --git a/lib/notify-send.sh/LICENSE b/lib/notify_send/LICENSE similarity index 100% rename from lib/notify-send.sh/LICENSE rename to lib/notify_send/LICENSE diff --git a/lib/notify-send.sh/README.md b/lib/notify_send/README.md similarity index 100% rename from lib/notify-send.sh/README.md rename to lib/notify_send/README.md diff --git a/lib/notify-send.sh/notify-action.sh b/lib/notify_send/notify-action.sh similarity index 100% rename from lib/notify-send.sh/notify-action.sh rename to lib/notify_send/notify-action.sh diff --git a/lib/notify-send.sh/notify-send.sh b/lib/notify_send/notify-send.sh similarity index 100% rename from lib/notify-send.sh/notify-send.sh rename to lib/notify_send/notify-send.sh diff --git a/po/es.po b/po/es.po index ec9b24e5..0837a688 100644 --- a/po/es.po +++ b/po/es.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-07 03:35-0400\n" +"POT-Creation-Date: 2020-05-09 07:19-0400\n" "PO-Revision-Date: 2018-01-03 02:03-0600\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish\n" @@ -25,104 +25,104 @@ msgstr "Distribución" msgid "Architecture" msgstr "Arquitectura del sistema" -#: src/Common/LinuxKernel.vala:257 +#: src/Common/LinuxKernel.vala:231 msgid "Index is stale" msgstr "El índice es obsoleto" -#: src/Common/LinuxKernel.vala:260 +#: src/Common/LinuxKernel.vala:234 msgid "Index is fresh" msgstr "El índice está al día" -#: src/Common/LinuxKernel.vala:365 +#: src/Common/LinuxKernel.vala:339 msgid "Fetching index..." msgstr "Recuperando índice..." -#: src/Common/LinuxKernel.vala:408 +#: src/Common/LinuxKernel.vala:382 msgid "Fetching index from kernel.ubuntu.com..." msgstr "Recuperando índice de kernel.ubuntu.com…" -#: src/Common/LinuxKernel.vala:727 +#: src/Common/LinuxKernel.vala:693 msgid "Could not find running kernel in list!" msgstr "¡No se pudo encontrar el núcleo en ejecución en la lista!" -#: src/Common/LinuxKernel.vala:733 +#: src/Common/LinuxKernel.vala:699 msgid "Could not find any kernels to remove" msgstr "Seleccione los núcleos que se desinstalarán" -#: src/Common/LinuxKernel.vala:742 +#: src/Common/LinuxKernel.vala:708 msgid "The following kernels will be removed:" msgstr "Los siguientes kernels serán eliminados:" -#: src/Common/LinuxKernel.vala:749 +#: src/Common/LinuxKernel.vala:715 msgid "Continue ?" msgstr "¿Continuar?" -#: src/Common/LinuxKernel.vala:777 src/Console/AppConsole.vala:361 +#: src/Common/LinuxKernel.vala:743 src/Console/AppConsole.vala:363 msgid "Latest update" msgstr "" -#: src/Common/LinuxKernel.vala:788 src/Console/AppConsole.vala:368 +#: src/Common/LinuxKernel.vala:754 src/Console/AppConsole.vala:370 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:796 src/Console/AppConsole.vala:373 -#: src/Console/AppConsole.vala:421 +#: src/Common/LinuxKernel.vala:762 src/Console/AppConsole.vala:375 +#: src/Console/AppConsole.vala:419 msgid "No updates found" msgstr "No se encontró ninguna actualización" -#: src/Common/LinuxKernel.vala:806 +#: src/Common/LinuxKernel.vala:772 #, c-format -msgid "Install Linux v%s ? (y/n): " +msgid "Install Kernel Version %s ? (y/n): " msgstr "" -#: src/Common/LinuxKernel.vala:1072 +#: src/Common/LinuxKernel.vala:1038 msgid "Packages Available" msgstr "Paquetes disponibles" -#: src/Common/LinuxKernel.vala:1080 +#: src/Common/LinuxKernel.vala:1046 msgid "Packages Installed" msgstr "Paquetes instalados" -#: src/Common/LinuxKernel.vala:1164 +#: src/Common/LinuxKernel.vala:1130 msgid "Available Kernels" msgstr "Núcleos disponibles" -#: src/Common/LinuxKernel.vala:1181 src/Gtk/MainWindow.vala:208 +#: src/Common/LinuxKernel.vala:1147 src/Gtk/MainWindow.vala:186 msgid "Installed" msgstr "Instalado" -#: src/Common/LinuxKernel.vala:1181 src/Gtk/MainWindow.vala:208 +#: src/Common/LinuxKernel.vala:1147 src/Gtk/MainWindow.vala:186 msgid "Running" msgstr "En ejecución" -#: src/Common/LinuxKernel.vala:1210 +#: src/Common/LinuxKernel.vala:1182 msgid "Downloading" msgstr "Descargando" -#: src/Common/LinuxKernel.vala:1229 +#: src/Common/LinuxKernel.vala:1201 #: src/Utility/Gtk/CustomMessageDialog.vala:148 #: src/Utility/Gtk/CustomMessageDialog.vala:152 msgid "OK" msgstr "Aceptar" -#: src/Common/LinuxKernel.vala:1238 +#: src/Common/LinuxKernel.vala:1207 msgid "ERROR" msgstr "ERROR" -#: src/Common/LinuxKernel.vala:1252 src/Gtk/MainWindow.vala:681 +#: src/Common/LinuxKernel.vala:1221 src/Gtk/MainWindow.vala:653 msgid "This kernel is already installed." msgstr "Este núcleo ya se instaló." -#: src/Common/LinuxKernel.vala:1283 +#: src/Common/LinuxKernel.vala:1252 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "Instalación finalizada. Se necesita reiniciar para utilizar el núcleo nuevo." -#: src/Common/LinuxKernel.vala:1286 +#: src/Common/LinuxKernel.vala:1255 msgid "Installation completed with errors" msgstr "Instalación finalizada con errores" -#: src/Common/LinuxKernel.vala:1302 +#: src/Common/LinuxKernel.vala:1271 msgid "" "Selected kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -130,19 +130,19 @@ msgstr "" "El núcleo seleccionado está en ejecución y no puede desinstalarse.\n" "Instale otro núcleo antes de desinstalar este." -#: src/Common/LinuxKernel.vala:1307 +#: src/Common/LinuxKernel.vala:1276 msgid "Preparing to remove selected kernels" msgstr "Preparándose para desinstalar los núcleos seleccionados" -#: src/Common/LinuxKernel.vala:1339 src/Common/LinuxKernel.vala:1392 +#: src/Common/LinuxKernel.vala:1308 src/Common/LinuxKernel.vala:1361 msgid "Un-install completed" msgstr "Desinstalación finalizada" -#: src/Common/LinuxKernel.vala:1342 src/Common/LinuxKernel.vala:1395 +#: src/Common/LinuxKernel.vala:1311 src/Common/LinuxKernel.vala:1364 msgid "Un-install completed with errors" msgstr "Desinstalación finalizada con errores" -#: src/Common/LinuxKernel.vala:1355 +#: src/Common/LinuxKernel.vala:1324 msgid "" "This kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -150,231 +150,219 @@ msgstr "" "Este núcleo está en ejecución y no se puede desinstalar.\n" "Instale otro núcleo antes de desinstalar este." -#: src/Common/Main.vala:106 +#: src/Common/Main.vala:107 msgid "Commands listed below are not available on this system" msgstr "" "Las órdenes enumeradas a continuación no están disponibles en este sistema" -#: src/Common/Main.vala:107 +#: src/Common/Main.vala:108 msgid "Please install required packages and try again" msgstr "Instale los paquetes requeridos e inténtelo de nuevo" -#: src/Common/Package.vala:126 src/Common/Package.vala:188 +#: src/Common/Package.vala:131 src/Common/Package.vala:193 #, c-format msgid "File not found: %s" msgstr "No se encontró el archivo: %s" -#: src/Console/AppConsole.vala:80 src/Gtk/AppGtk.vala:174 +#: src/Console/AppConsole.vala:81 src/Gtk/AppGtk.vala:171 msgid "Syntax" msgstr "Sintaxis" -#: src/Console/AppConsole.vala:82 +#: src/Console/AppConsole.vala:83 msgid "Commands" msgstr "Comandos" -#: src/Console/AppConsole.vala:84 +#: src/Console/AppConsole.vala:85 msgid "Check for kernel updates" msgstr "Buscar actualizaciones del núcleo" -#: src/Console/AppConsole.vala:85 +#: src/Console/AppConsole.vala:86 msgid "Check for kernel updates and notify current user" msgstr "Compruebe las actualizaciones del kernel y notifique al usuario actual" -#: src/Console/AppConsole.vala:86 +#: src/Console/AppConsole.vala:87 msgid "List all available mainline kernels" msgstr "Mostrar todos los núcleos troncales disponibles" -#: src/Console/AppConsole.vala:87 +#: src/Console/AppConsole.vala:88 msgid "List installed kernels" msgstr "Mostrar kernels disponibles" -#: src/Console/AppConsole.vala:88 +#: src/Console/AppConsole.vala:89 msgid "Install latest mainline kernel" msgstr "Instalar kernel troncal especificado" -#: src/Console/AppConsole.vala:89 +#: src/Console/AppConsole.vala:90 msgid "Install latest point update for current series" msgstr "" -#: src/Console/AppConsole.vala:90 +#: src/Console/AppConsole.vala:91 msgid "Install specified mainline kernel" msgstr "Instalar núcleo troncal especificado" -#: src/Console/AppConsole.vala:91 +#: src/Console/AppConsole.vala:92 msgid "Remove specified kernel" msgstr "Quitar el núcleo troncal especificado" -#: src/Console/AppConsole.vala:92 src/Gtk/MainWindow.vala:422 +#: src/Console/AppConsole.vala:93 src/Gtk/MainWindow.vala:396 msgid "Remove installed kernels older than running kernel" msgstr "" -#: src/Console/AppConsole.vala:93 +#: src/Console/AppConsole.vala:94 msgid "Download packages for specified kernel" msgstr "Descargar paquetes del núcleo especificado" -#: src/Console/AppConsole.vala:94 src/Console/AppConsole.vala:99 +#: src/Console/AppConsole.vala:95 src/Console/AppConsole.vala:100 msgid "Remove files from application cache" msgstr "Quitar archivos de la antememoria de la aplicación" -#: src/Console/AppConsole.vala:95 +#: src/Console/AppConsole.vala:96 msgid "Show unstable and RC releases" msgstr "Ocultar versiones inestables y RC" -#: src/Console/AppConsole.vala:97 src/Gtk/AppGtk.vala:176 +#: src/Console/AppConsole.vala:98 src/Gtk/AppGtk.vala:173 msgid "Options" msgstr "Opciones" -#: src/Console/AppConsole.vala:100 +#: src/Console/AppConsole.vala:101 msgid "Enable verbose debugging output" msgstr "" -#: src/Console/AppConsole.vala:101 +#: src/Console/AppConsole.vala:102 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "Asumir Sí para todas las solicitudes (modo no interactivo)" -#: src/Console/AppConsole.vala:102 +#: src/Console/AppConsole.vala:103 msgid "Override user" msgstr "" -#: src/Console/AppConsole.vala:115 +#: src/Console/AppConsole.vala:116 msgid "Admin access is required for running this application." msgstr "" "Se necesitan privilegios administrativos para ejecutar esta aplicación." -#: src/Console/AppConsole.vala:118 +#: src/Console/AppConsole.vala:119 msgid "Run the application as admin with pkexec or sudo." msgstr "Ejecute la aplicación con permisos administrativos con pkexec o sudo." -#: src/Console/AppConsole.vala:198 src/Gtk/AppGtk.vala:161 +#: src/Console/AppConsole.vala:200 src/Gtk/AppGtk.vala:158 msgid "Unknown option" msgstr "Opción desconocida" -#: src/Console/AppConsole.vala:200 src/Console/AppConsole.vala:314 -#: src/Console/AppConsole.vala:343 +#: src/Console/AppConsole.vala:202 src/Console/AppConsole.vala:315 +#: src/Console/AppConsole.vala:345 msgid "Run '" msgstr "" -#: src/Console/AppConsole.vala:205 src/Gtk/AppGtk.vala:109 -msgid "Cache" -msgstr "Cache" - -#: src/Console/AppConsole.vala:206 src/Gtk/AppGtk.vala:110 -msgid "Temp" -msgstr "" - -#: src/Console/AppConsole.vala:286 src/Console/AppConsole.vala:323 +#: src/Console/AppConsole.vala:284 src/Console/AppConsole.vala:324 msgid "No kernels specified" msgstr "" -#: src/Console/AppConsole.vala:292 +#: src/Console/AppConsole.vala:290 msgid "Multiple kernels selected for installation. Select only one." msgstr "Se seleccionaron varios núcleos para su instalación. Elija solo uno." -#: src/Console/AppConsole.vala:310 src/Gtk/MainWindow.vala:100 +#: src/Console/AppConsole.vala:311 src/Gtk/MainWindow.vala:100 msgid "Could not find requested version" msgstr "No se pudo encontrar la versión solicitada" -#: src/Console/AppConsole.vala:342 +#: src/Console/AppConsole.vala:344 msgid "Command not specified" msgstr "Coomand no especificado" -#: src/Console/AppConsole.vala:391 src/Console/AppConsole.vala:408 -#, c-format -msgid "Linux v%s Available" -msgstr "" - -#: src/Console/AppConsole.vala:392 -msgid "Major update available for installation" -msgstr "" - -#: src/Console/AppConsole.vala:409 -msgid "Minor update available for installation" -msgstr "" +#: src/Console/AppConsole.vala:393 src/Console/AppConsole.vala:408 +#, fuzzy, c-format +msgid "Kernel %s Available" +msgstr "Paquetes disponibles" -#: src/Gtk/AppGtk.vala:178 +#: src/Gtk/AppGtk.vala:175 msgid "Print debug information" msgstr "Mostrar información de depuración" -#: src/Gtk/AppGtk.vala:179 +#: src/Gtk/AppGtk.vala:176 msgid "Show all options" msgstr "Mostrar todas las opciones" -#: src/Gtk/MainWindow.vala:150 +#: src/Gtk/MainWindow.vala:146 msgid "Kernel" msgstr "Núcleo" -#: src/Gtk/MainWindow.vala:179 -msgid "Version" -msgstr "Versión" - -#: src/Gtk/MainWindow.vala:196 +#: src/Gtk/MainWindow.vala:174 msgid "Status" msgstr "Estado" -#: src/Gtk/MainWindow.vala:341 +#: src/Gtk/MainWindow.vala:319 msgid "Refresh" msgstr "Actualizar" -#: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:555 -#: src/Gtk/MainWindow.vala:686 src/Utility/TeeJee.System.vala:281 +#: src/Gtk/MainWindow.vala:326 src/Gtk/MainWindow.vala:527 +#: src/Gtk/MainWindow.vala:658 src/Utility/TeeJee.System.vala:146 msgid "Internet connection is not active" msgstr "La conexión a Internet está inactiva" -#: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:555 -#: src/Gtk/MainWindow.vala:686 +#: src/Gtk/MainWindow.vala:326 src/Gtk/MainWindow.vala:527 +#: src/Gtk/MainWindow.vala:658 msgid "No Internet" msgstr "No hay Internet" -#: src/Gtk/MainWindow.vala:357 +#: src/Gtk/MainWindow.vala:335 msgid "Install" msgstr "Instalar" -#: src/Gtk/MainWindow.vala:366 +#: src/Gtk/MainWindow.vala:344 msgid "Multiple Kernels Selected" msgstr "Se seleccionaron varios kernels" -#: src/Gtk/MainWindow.vala:366 +#: src/Gtk/MainWindow.vala:344 msgid "Select a single kernel to install" msgstr "Seleccione un solo núcleo para instalarlo" -#: src/Gtk/MainWindow.vala:369 src/Gtk/MainWindow.vala:380 +#: src/Gtk/MainWindow.vala:347 src/Gtk/MainWindow.vala:358 msgid "Not Selected" msgstr "No seleccionado" -#: src/Gtk/MainWindow.vala:369 +#: src/Gtk/MainWindow.vala:347 msgid "Select the kernel to install" msgstr "Seleccione el núcleo que se instalará" -#: src/Gtk/MainWindow.vala:374 +#: src/Gtk/MainWindow.vala:352 msgid "Remove" msgstr "Quitar" -#: src/Gtk/MainWindow.vala:380 +#: src/Gtk/MainWindow.vala:358 msgid "Select the kernels to remove" msgstr "Seleccione los núcleos que se desinstalarán" -#: src/Gtk/MainWindow.vala:421 +#: src/Gtk/MainWindow.vala:395 msgid "Purge" msgstr "" -#: src/Gtk/MainWindow.vala:458 +#: src/Gtk/MainWindow.vala:429 msgid "Changes" msgstr "Cambios" -#: src/Gtk/MainWindow.vala:469 src/Gtk/SettingsDialog.vala:52 +#: src/Gtk/MainWindow.vala:440 src/Gtk/SettingsDialog.vala:52 msgid "Settings" msgstr "Configuración" -#: src/Gtk/MainWindow.vala:490 +#: src/Gtk/MainWindow.vala:461 msgid "About" msgstr "Acerca de" -#: src/Gtk/MainWindow.vala:539 +#: src/Gtk/MainWindow.vala:505 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "" "Herramienta de renovación de núcleo para distribuciones basadas en Ubuntu" -#: src/Gtk/MainWindow.vala:574 +#: src/Gtk/MainWindow.vala:506 +msgid "Forked:" +msgstr "" + +#: src/Gtk/MainWindow.vala:506 +msgid "Original:" +msgstr "" + +#: src/Gtk/MainWindow.vala:546 msgid "Refreshing..." msgstr "Actualizando…" @@ -399,48 +387,56 @@ msgstr "Notificar si hay una versión puntual disponible" msgid "Show notification bubble on desktop" msgstr "Mostrar globo de notificación en el escritorio" -#: src/Gtk/SettingsDialog.vala:105 +#: src/Gtk/SettingsDialog.vala:102 +msgid "(Allowing intervals in seconds for --debug)" +msgstr "" + +#: src/Gtk/SettingsDialog.vala:112 msgid "Check every" msgstr "Comprobar cada" -#: src/Gtk/SettingsDialog.vala:136 +#: src/Gtk/SettingsDialog.vala:145 msgid "Hour(s)" msgstr "Horas" -#: src/Gtk/SettingsDialog.vala:138 +#: src/Gtk/SettingsDialog.vala:147 msgid "Day(s)" msgstr "Días" -#: src/Gtk/SettingsDialog.vala:140 +#: src/Gtk/SettingsDialog.vala:149 msgid "Week(s)" msgstr "Semanas" -#: src/Gtk/SettingsDialog.vala:145 +#: src/Gtk/SettingsDialog.vala:152 +msgid "Second(s)" +msgstr "" + +#: src/Gtk/SettingsDialog.vala:158 msgid "Display" msgstr "Mostrar" -#: src/Gtk/SettingsDialog.vala:153 +#: src/Gtk/SettingsDialog.vala:166 msgid "Hide unstable and RC releases" msgstr "Ocultar versiones inestables y RC" -#: src/Gtk/SettingsDialog.vala:167 +#: src/Gtk/SettingsDialog.vala:180 msgid "Show N previous major versions " msgstr "" -#: src/Gtk/SettingsDialog.vala:182 +#: src/Gtk/SettingsDialog.vala:195 msgid "Other" msgstr "" -#: src/Gtk/SettingsDialog.vala:190 +#: src/Gtk/SettingsDialog.vala:203 msgid "Skip internet connection check" msgstr "La conexión a Internet está inactiva" -#: src/Gtk/SettingsDialog.vala:203 +#: src/Gtk/SettingsDialog.vala:216 #, fuzzy msgid "Internet connection timeout in " msgstr "La conexión a Internet está inactiva" -#: src/Gtk/SettingsDialog.vala:217 +#: src/Gtk/SettingsDialog.vala:230 msgid "seconds" msgstr "" @@ -465,21 +461,22 @@ msgid "Contributions" msgstr "Contribuciones" #: src/Utility/Gtk/AboutWindow.vala:329 -msgid "Third Party Tools" -msgstr "Herramientas de terceros" - -#: src/Utility/Gtk/AboutWindow.vala:337 msgid "Artists" msgstr "Artistas" -#: src/Utility/Gtk/AboutWindow.vala:345 +#: src/Utility/Gtk/AboutWindow.vala:337 msgid "Translators" msgstr "Traductores" -#: src/Utility/Gtk/AboutWindow.vala:353 +#: src/Utility/Gtk/AboutWindow.vala:345 msgid "Documenters" msgstr "Documentadores" +#: src/Utility/Gtk/AboutWindow.vala:353 +#, fuzzy +msgid "Third Party Inclusions" +msgstr "Herramientas de terceros" + #: src/Utility/Gtk/CustomMessageDialog.vala:157 msgid "Yes" msgstr "Sí" @@ -496,72 +493,66 @@ msgstr "Error" msgid "Missing Icon" msgstr "Falta el icono" -#: src/Utility/TeeJee.FileSystem.vala:97 src/Utility/TeeJee.FileSystem.vala:100 +#: src/Utility/TeeJee.FileSystem.vala:73 src/Utility/TeeJee.FileSystem.vala:76 msgid "File deleted" msgstr "Se eliminó el archivo" -#: src/Utility/TeeJee.FileSystem.vala:106 +#: src/Utility/TeeJee.FileSystem.vala:82 msgid "Failed to delete file" msgstr "Falló la eliminación del archivo" -#: src/Utility/TeeJee.FileSystem.vala:162 +#: src/Utility/TeeJee.FileSystem.vala:108 msgid "Failed to read file" msgstr "Falló la lectura del archivo" -#: src/Utility/TeeJee.FileSystem.vala:187 -#: src/Utility/TeeJee.FileSystem.vala:190 +#: src/Utility/TeeJee.FileSystem.vala:135 +#: src/Utility/TeeJee.FileSystem.vala:138 msgid "File saved" msgstr "Se guardó el archivo" -#: src/Utility/TeeJee.FileSystem.vala:197 +#: src/Utility/TeeJee.FileSystem.vala:147 msgid "Failed to write file" msgstr "Falló la escritura del archivo" -#: src/Utility/TeeJee.FileSystem.vala:210 -#: src/Utility/TeeJee.FileSystem.vala:213 +#: src/Utility/TeeJee.FileSystem.vala:160 +#: src/Utility/TeeJee.FileSystem.vala:163 msgid "File copied" msgstr "Se copió el archivo" -#: src/Utility/TeeJee.FileSystem.vala:221 +#: src/Utility/TeeJee.FileSystem.vala:171 msgid "Failed to copy file" msgstr "Falló la copia del archivo" -#: src/Utility/TeeJee.FileSystem.vala:231 -#: src/Utility/TeeJee.FileSystem.vala:538 +#: src/Utility/TeeJee.FileSystem.vala:181 msgid "File not found" msgstr "No se encontró el archivo" -#: src/Utility/TeeJee.FileSystem.vala:245 -#: src/Utility/TeeJee.FileSystem.vala:248 +#: src/Utility/TeeJee.FileSystem.vala:195 +#: src/Utility/TeeJee.FileSystem.vala:198 msgid "File moved" msgstr "Se trasladó el archivo" -#: src/Utility/TeeJee.FileSystem.vala:253 +#: src/Utility/TeeJee.FileSystem.vala:203 msgid "Failed to move file" msgstr "Falló el traslado del archivo" -#: src/Utility/TeeJee.FileSystem.vala:349 -#: src/Utility/TeeJee.FileSystem.vala:352 -#: src/Utility/TeeJee.FileSystem.vala:378 +#: src/Utility/TeeJee.FileSystem.vala:258 +#: src/Utility/TeeJee.FileSystem.vala:261 msgid "Created directory" msgstr "Se creó el directorio" -#: src/Utility/TeeJee.FileSystem.vala:359 +#: src/Utility/TeeJee.FileSystem.vala:268 msgid "Failed to create dir" msgstr "Falló la creación del directorio" -#: src/Utility/TeeJee.FileSystem.vala:375 -msgid "Deleted directory" -msgstr "Se eliminó el directorio" - -#: src/Utility/TeeJee.FileSystem.vala:509 -msgid "Dir not found" -msgstr "No se encontró el directorio" +#: src/Utility/TeeJee.FileSystem.vala:283 +#, fuzzy +msgid "Deleted" +msgstr "Se eliminó el archivo" -#: src/Utility/TeeJee.FileSystem.vala:662 -#: src/Utility/TeeJee.FileSystem.vala:711 -msgid "File is missing" -msgstr "Falta el archivo" +#: src/Utility/TeeJee.FileSystem.vala:284 +msgid "FAILED deleting" +msgstr "" #: src/Utility/TeeJee.Logging.vala:89 msgid "E" @@ -571,6 +562,6 @@ msgstr "E" msgid "W" msgstr "W" -#: src/Utility/TeeJee.Process.vala:506 +#: src/Utility/TeeJee.Process.vala:507 msgid "Stopped" msgstr "Detenido" diff --git a/po/fr.po b/po/fr.po index 6d0f4ccd..17802444 100644 --- a/po/fr.po +++ b/po/fr.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-07 03:35-0400\n" +"POT-Creation-Date: 2020-05-09 07:19-0400\n" "PO-Revision-Date: 2018-08-05 15:50+0200\n" "Last-Translator: Yolateng0 \n" "Language-Team: French\n" @@ -26,107 +26,107 @@ msgstr "Distribution" msgid "Architecture" msgstr "Architecture du système" -#: src/Common/LinuxKernel.vala:257 +#: src/Common/LinuxKernel.vala:231 msgid "Index is stale" msgstr "L'index est obsolète" -#: src/Common/LinuxKernel.vala:260 +#: src/Common/LinuxKernel.vala:234 msgid "Index is fresh" msgstr "L'index est à jour" -#: src/Common/LinuxKernel.vala:365 +#: src/Common/LinuxKernel.vala:339 msgid "Fetching index..." msgstr "" -#: src/Common/LinuxKernel.vala:408 +#: src/Common/LinuxKernel.vala:382 msgid "Fetching index from kernel.ubuntu.com..." msgstr "Récupération de l'index depuis kernel.ubuntu.com..." -#: src/Common/LinuxKernel.vala:727 +#: src/Common/LinuxKernel.vala:693 #, fuzzy msgid "Could not find running kernel in list!" msgstr "Impossible de trouver la version demandée" -#: src/Common/LinuxKernel.vala:733 +#: src/Common/LinuxKernel.vala:699 #, fuzzy msgid "Could not find any kernels to remove" msgstr "Sélectionnez les noyaux à supprimer" -#: src/Common/LinuxKernel.vala:742 +#: src/Common/LinuxKernel.vala:708 msgid "The following kernels will be removed:" msgstr "" -#: src/Common/LinuxKernel.vala:749 +#: src/Common/LinuxKernel.vala:715 msgid "Continue ?" msgstr "" -#: src/Common/LinuxKernel.vala:777 src/Console/AppConsole.vala:361 +#: src/Common/LinuxKernel.vala:743 src/Console/AppConsole.vala:363 msgid "Latest update" msgstr "" -#: src/Common/LinuxKernel.vala:788 src/Console/AppConsole.vala:368 +#: src/Common/LinuxKernel.vala:754 src/Console/AppConsole.vala:370 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:796 src/Console/AppConsole.vala:373 -#: src/Console/AppConsole.vala:421 +#: src/Common/LinuxKernel.vala:762 src/Console/AppConsole.vala:375 +#: src/Console/AppConsole.vala:419 msgid "No updates found" msgstr "Aucune mise à jour disponible" -#: src/Common/LinuxKernel.vala:806 +#: src/Common/LinuxKernel.vala:772 #, c-format -msgid "Install Linux v%s ? (y/n): " +msgid "Install Kernel Version %s ? (y/n): " msgstr "" -#: src/Common/LinuxKernel.vala:1072 +#: src/Common/LinuxKernel.vala:1038 msgid "Packages Available" msgstr "Paquets disponibles" -#: src/Common/LinuxKernel.vala:1080 +#: src/Common/LinuxKernel.vala:1046 msgid "Packages Installed" msgstr "Paquets installés" -#: src/Common/LinuxKernel.vala:1164 +#: src/Common/LinuxKernel.vala:1130 msgid "Available Kernels" msgstr "Noyaux disponibles" -#: src/Common/LinuxKernel.vala:1181 src/Gtk/MainWindow.vala:208 +#: src/Common/LinuxKernel.vala:1147 src/Gtk/MainWindow.vala:186 msgid "Installed" msgstr "Installé" -#: src/Common/LinuxKernel.vala:1181 src/Gtk/MainWindow.vala:208 +#: src/Common/LinuxKernel.vala:1147 src/Gtk/MainWindow.vala:186 msgid "Running" msgstr "En cours" -#: src/Common/LinuxKernel.vala:1210 +#: src/Common/LinuxKernel.vala:1182 msgid "Downloading" msgstr "Téléchargement" -#: src/Common/LinuxKernel.vala:1229 +#: src/Common/LinuxKernel.vala:1201 #: src/Utility/Gtk/CustomMessageDialog.vala:148 #: src/Utility/Gtk/CustomMessageDialog.vala:152 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:1238 +#: src/Common/LinuxKernel.vala:1207 msgid "ERROR" msgstr "ERREUR" -#: src/Common/LinuxKernel.vala:1252 src/Gtk/MainWindow.vala:681 +#: src/Common/LinuxKernel.vala:1221 src/Gtk/MainWindow.vala:653 msgid "This kernel is already installed." msgstr "Ce noyau est déjà installé." -#: src/Common/LinuxKernel.vala:1283 +#: src/Common/LinuxKernel.vala:1252 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "Installation complétée. Un redémarrage est nécessaire pour utiliser le " "nouveau noyau." -#: src/Common/LinuxKernel.vala:1286 +#: src/Common/LinuxKernel.vala:1255 msgid "Installation completed with errors" msgstr "Installation terminée avec des erreurs" -#: src/Common/LinuxKernel.vala:1302 +#: src/Common/LinuxKernel.vala:1271 msgid "" "Selected kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -134,19 +134,19 @@ msgstr "" "Ce noyau est en cours d'exécution et ne peut pas être supprimé.\n" " Installez un autre noyau avant de retirer celui-ci." -#: src/Common/LinuxKernel.vala:1307 +#: src/Common/LinuxKernel.vala:1276 msgid "Preparing to remove selected kernels" msgstr "Préparation à la suppression des noyaux sélectionnés" -#: src/Common/LinuxKernel.vala:1339 src/Common/LinuxKernel.vala:1392 +#: src/Common/LinuxKernel.vala:1308 src/Common/LinuxKernel.vala:1361 msgid "Un-install completed" msgstr "Désinstallation complète" -#: src/Common/LinuxKernel.vala:1342 src/Common/LinuxKernel.vala:1395 +#: src/Common/LinuxKernel.vala:1311 src/Common/LinuxKernel.vala:1364 msgid "Un-install completed with errors" msgstr "Désinstallation terminée avec des erreurs" -#: src/Common/LinuxKernel.vala:1355 +#: src/Common/LinuxKernel.vala:1324 msgid "" "This kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -154,238 +154,226 @@ msgstr "" "Ce noyau est en cours d'exécution et ne peut pas être supprimé.\n" " Installez un autre noyau avant de retirer celui-ci." -#: src/Common/Main.vala:106 +#: src/Common/Main.vala:107 msgid "Commands listed below are not available on this system" msgstr "Les commandes listées ne sont pas valables pour ce système" -#: src/Common/Main.vala:107 +#: src/Common/Main.vala:108 msgid "Please install required packages and try again" msgstr "Veuillez installer les paquets requis et réessayer" -#: src/Common/Package.vala:126 src/Common/Package.vala:188 +#: src/Common/Package.vala:131 src/Common/Package.vala:193 #, c-format msgid "File not found: %s" msgstr "Fichier non trouvé: %s" -#: src/Console/AppConsole.vala:80 src/Gtk/AppGtk.vala:174 +#: src/Console/AppConsole.vala:81 src/Gtk/AppGtk.vala:171 msgid "Syntax" msgstr "Syntaxe" -#: src/Console/AppConsole.vala:82 +#: src/Console/AppConsole.vala:83 msgid "Commands" msgstr "" -#: src/Console/AppConsole.vala:84 +#: src/Console/AppConsole.vala:85 msgid "Check for kernel updates" msgstr "Vérifier les mises à jour des noyaux" -#: src/Console/AppConsole.vala:85 +#: src/Console/AppConsole.vala:86 #, fuzzy msgid "Check for kernel updates and notify current user" msgstr "Vérifier les mises à jour des noyaux" -#: src/Console/AppConsole.vala:86 +#: src/Console/AppConsole.vala:87 msgid "List all available mainline kernels" msgstr "Lister tous les noyaux mainline disponibles" -#: src/Console/AppConsole.vala:87 +#: src/Console/AppConsole.vala:88 #, fuzzy msgid "List installed kernels" msgstr "Lister les noyaux disponibles" -#: src/Console/AppConsole.vala:88 +#: src/Console/AppConsole.vala:89 #, fuzzy msgid "Install latest mainline kernel" msgstr "Installer le noyau principal spécifié" -#: src/Console/AppConsole.vala:89 +#: src/Console/AppConsole.vala:90 msgid "Install latest point update for current series" msgstr "" -#: src/Console/AppConsole.vala:90 +#: src/Console/AppConsole.vala:91 msgid "Install specified mainline kernel" msgstr "Installer le noyau principal spécifié" -#: src/Console/AppConsole.vala:91 +#: src/Console/AppConsole.vala:92 #, fuzzy msgid "Remove specified kernel" msgstr "Supprimer le noyau mainline sélectionné" -#: src/Console/AppConsole.vala:92 src/Gtk/MainWindow.vala:422 +#: src/Console/AppConsole.vala:93 src/Gtk/MainWindow.vala:396 msgid "Remove installed kernels older than running kernel" msgstr "" -#: src/Console/AppConsole.vala:93 +#: src/Console/AppConsole.vala:94 msgid "Download packages for specified kernel" msgstr "Télécharger les paquets pour des noyaux spécifiques" -#: src/Console/AppConsole.vala:94 src/Console/AppConsole.vala:99 +#: src/Console/AppConsole.vala:95 src/Console/AppConsole.vala:100 msgid "Remove files from application cache" msgstr "Supprimer les fichiers du cache de l'application" -#: src/Console/AppConsole.vala:95 +#: src/Console/AppConsole.vala:96 #, fuzzy msgid "Show unstable and RC releases" msgstr "Cacher les versions instables et RC" -#: src/Console/AppConsole.vala:97 src/Gtk/AppGtk.vala:176 +#: src/Console/AppConsole.vala:98 src/Gtk/AppGtk.vala:173 msgid "Options" msgstr "Options" -#: src/Console/AppConsole.vala:100 +#: src/Console/AppConsole.vala:101 msgid "Enable verbose debugging output" msgstr "" -#: src/Console/AppConsole.vala:101 +#: src/Console/AppConsole.vala:102 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "" -#: src/Console/AppConsole.vala:102 +#: src/Console/AppConsole.vala:103 msgid "Override user" msgstr "" -#: src/Console/AppConsole.vala:115 +#: src/Console/AppConsole.vala:116 msgid "Admin access is required for running this application." msgstr "Accès administrateur requis pour lancer cette application." -#: src/Console/AppConsole.vala:118 +#: src/Console/AppConsole.vala:119 msgid "Run the application as admin with pkexec or sudo." msgstr "Exécutez l'application en tant qu'admin avec pkexec or sudo." -#: src/Console/AppConsole.vala:198 src/Gtk/AppGtk.vala:161 +#: src/Console/AppConsole.vala:200 src/Gtk/AppGtk.vala:158 msgid "Unknown option" msgstr "Option inconnue" -#: src/Console/AppConsole.vala:200 src/Console/AppConsole.vala:314 -#: src/Console/AppConsole.vala:343 +#: src/Console/AppConsole.vala:202 src/Console/AppConsole.vala:315 +#: src/Console/AppConsole.vala:345 msgid "Run '" msgstr "" -#: src/Console/AppConsole.vala:205 src/Gtk/AppGtk.vala:109 -msgid "Cache" -msgstr "" - -#: src/Console/AppConsole.vala:206 src/Gtk/AppGtk.vala:110 -msgid "Temp" -msgstr "" - -#: src/Console/AppConsole.vala:286 src/Console/AppConsole.vala:323 +#: src/Console/AppConsole.vala:284 src/Console/AppConsole.vala:324 msgid "No kernels specified" msgstr "" -#: src/Console/AppConsole.vala:292 +#: src/Console/AppConsole.vala:290 msgid "Multiple kernels selected for installation. Select only one." msgstr "" "Plusieurs noyaux sélectionnés pour être installés. Sélectionnez en seulement " "un." -#: src/Console/AppConsole.vala:310 src/Gtk/MainWindow.vala:100 +#: src/Console/AppConsole.vala:311 src/Gtk/MainWindow.vala:100 msgid "Could not find requested version" msgstr "Impossible de trouver la version demandée" -#: src/Console/AppConsole.vala:342 +#: src/Console/AppConsole.vala:344 #, fuzzy msgid "Command not specified" msgstr "Impossible de trouver le fichier" -#: src/Console/AppConsole.vala:391 src/Console/AppConsole.vala:408 -#, c-format -msgid "Linux v%s Available" -msgstr "" - -#: src/Console/AppConsole.vala:392 -msgid "Major update available for installation" -msgstr "" - -#: src/Console/AppConsole.vala:409 -msgid "Minor update available for installation" -msgstr "" +#: src/Console/AppConsole.vala:393 src/Console/AppConsole.vala:408 +#, fuzzy, c-format +msgid "Kernel %s Available" +msgstr "Paquets disponibles" -#: src/Gtk/AppGtk.vala:178 +#: src/Gtk/AppGtk.vala:175 msgid "Print debug information" msgstr "Afficher les informations de débogage" -#: src/Gtk/AppGtk.vala:179 +#: src/Gtk/AppGtk.vala:176 msgid "Show all options" msgstr "Afficher toutes les options" -#: src/Gtk/MainWindow.vala:150 +#: src/Gtk/MainWindow.vala:146 msgid "Kernel" msgstr "Noyau" -#: src/Gtk/MainWindow.vala:179 -msgid "Version" -msgstr "Version" - -#: src/Gtk/MainWindow.vala:196 +#: src/Gtk/MainWindow.vala:174 msgid "Status" msgstr "Statut" -#: src/Gtk/MainWindow.vala:341 +#: src/Gtk/MainWindow.vala:319 msgid "Refresh" msgstr "Actualiser" -#: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:555 -#: src/Gtk/MainWindow.vala:686 src/Utility/TeeJee.System.vala:281 +#: src/Gtk/MainWindow.vala:326 src/Gtk/MainWindow.vala:527 +#: src/Gtk/MainWindow.vala:658 src/Utility/TeeJee.System.vala:146 msgid "Internet connection is not active" msgstr "Connexion internet inexistante" -#: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:555 -#: src/Gtk/MainWindow.vala:686 +#: src/Gtk/MainWindow.vala:326 src/Gtk/MainWindow.vala:527 +#: src/Gtk/MainWindow.vala:658 msgid "No Internet" msgstr "Pas d'Internet" -#: src/Gtk/MainWindow.vala:357 +#: src/Gtk/MainWindow.vala:335 msgid "Install" msgstr "Installer" -#: src/Gtk/MainWindow.vala:366 +#: src/Gtk/MainWindow.vala:344 msgid "Multiple Kernels Selected" msgstr "Plusieurs noyaux sélectionnés" -#: src/Gtk/MainWindow.vala:366 +#: src/Gtk/MainWindow.vala:344 msgid "Select a single kernel to install" msgstr "Sélectionnez un seul noyau à installer" -#: src/Gtk/MainWindow.vala:369 src/Gtk/MainWindow.vala:380 +#: src/Gtk/MainWindow.vala:347 src/Gtk/MainWindow.vala:358 msgid "Not Selected" msgstr "Non selectionné" -#: src/Gtk/MainWindow.vala:369 +#: src/Gtk/MainWindow.vala:347 msgid "Select the kernel to install" msgstr "Sélectionnez le noyau à installer" -#: src/Gtk/MainWindow.vala:374 +#: src/Gtk/MainWindow.vala:352 msgid "Remove" msgstr "Supprimer" -#: src/Gtk/MainWindow.vala:380 +#: src/Gtk/MainWindow.vala:358 msgid "Select the kernels to remove" msgstr "Sélectionnez les noyaux à supprimer" -#: src/Gtk/MainWindow.vala:421 +#: src/Gtk/MainWindow.vala:395 msgid "Purge" msgstr "" -#: src/Gtk/MainWindow.vala:458 +#: src/Gtk/MainWindow.vala:429 msgid "Changes" msgstr "Changements" -#: src/Gtk/MainWindow.vala:469 src/Gtk/SettingsDialog.vala:52 +#: src/Gtk/MainWindow.vala:440 src/Gtk/SettingsDialog.vala:52 msgid "Settings" msgstr "Paramètres" -#: src/Gtk/MainWindow.vala:490 +#: src/Gtk/MainWindow.vala:461 msgid "About" msgstr "À propos" -#: src/Gtk/MainWindow.vala:539 +#: src/Gtk/MainWindow.vala:505 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "" "Utilitaire de mise à niveau des noyaux pour les distributions basées pour " "Ubuntu" -#: src/Gtk/MainWindow.vala:574 +#: src/Gtk/MainWindow.vala:506 +msgid "Forked:" +msgstr "" + +#: src/Gtk/MainWindow.vala:506 +msgid "Original:" +msgstr "" + +#: src/Gtk/MainWindow.vala:546 msgid "Refreshing..." msgstr "Actualisation..." @@ -410,49 +398,57 @@ msgstr "Notifier si une version stable mineure est disponible" msgid "Show notification bubble on desktop" msgstr "Afficher la bulle de notification sur le bureau" -#: src/Gtk/SettingsDialog.vala:105 +#: src/Gtk/SettingsDialog.vala:102 +msgid "(Allowing intervals in seconds for --debug)" +msgstr "" + +#: src/Gtk/SettingsDialog.vala:112 msgid "Check every" msgstr "Vérifier toutes les" -#: src/Gtk/SettingsDialog.vala:136 +#: src/Gtk/SettingsDialog.vala:145 msgid "Hour(s)" msgstr "Heure(s)" -#: src/Gtk/SettingsDialog.vala:138 +#: src/Gtk/SettingsDialog.vala:147 msgid "Day(s)" msgstr "Jour(s)" -#: src/Gtk/SettingsDialog.vala:140 +#: src/Gtk/SettingsDialog.vala:149 msgid "Week(s)" msgstr "Semaine(s)" -#: src/Gtk/SettingsDialog.vala:145 +#: src/Gtk/SettingsDialog.vala:152 +msgid "Second(s)" +msgstr "" + +#: src/Gtk/SettingsDialog.vala:158 msgid "Display" msgstr "Afficher" -#: src/Gtk/SettingsDialog.vala:153 +#: src/Gtk/SettingsDialog.vala:166 msgid "Hide unstable and RC releases" msgstr "Cacher les versions instables et RC" -#: src/Gtk/SettingsDialog.vala:167 +#: src/Gtk/SettingsDialog.vala:180 msgid "Show N previous major versions " msgstr "" -#: src/Gtk/SettingsDialog.vala:182 +#: src/Gtk/SettingsDialog.vala:195 msgid "Other" msgstr "" -#: src/Gtk/SettingsDialog.vala:190 +#: src/Gtk/SettingsDialog.vala:203 #, fuzzy msgid "Skip internet connection check" msgstr "Connexion internet inexistante" -#: src/Gtk/SettingsDialog.vala:203 +#: src/Gtk/SettingsDialog.vala:216 #, fuzzy msgid "Internet connection timeout in " msgstr "Connexion internet inexistante" -#: src/Gtk/SettingsDialog.vala:217 +#: src/Gtk/SettingsDialog.vala:230 msgid "seconds" msgstr "" @@ -477,21 +473,22 @@ msgid "Contributions" msgstr "Contributions" #: src/Utility/Gtk/AboutWindow.vala:329 -msgid "Third Party Tools" -msgstr "Outils tiers" - -#: src/Utility/Gtk/AboutWindow.vala:337 msgid "Artists" msgstr "Artistes" -#: src/Utility/Gtk/AboutWindow.vala:345 +#: src/Utility/Gtk/AboutWindow.vala:337 msgid "Translators" msgstr "Traducteurs" -#: src/Utility/Gtk/AboutWindow.vala:353 +#: src/Utility/Gtk/AboutWindow.vala:345 msgid "Documenters" msgstr "Documentalistes" +#: src/Utility/Gtk/AboutWindow.vala:353 +#, fuzzy +msgid "Third Party Inclusions" +msgstr "Outils tiers" + #: src/Utility/Gtk/CustomMessageDialog.vala:157 msgid "Yes" msgstr "Oui" @@ -508,72 +505,66 @@ msgstr "Erreur" msgid "Missing Icon" msgstr "Icône introuvable" -#: src/Utility/TeeJee.FileSystem.vala:97 src/Utility/TeeJee.FileSystem.vala:100 +#: src/Utility/TeeJee.FileSystem.vala:73 src/Utility/TeeJee.FileSystem.vala:76 msgid "File deleted" msgstr "Fichier effacé" -#: src/Utility/TeeJee.FileSystem.vala:106 +#: src/Utility/TeeJee.FileSystem.vala:82 msgid "Failed to delete file" msgstr "Impossible d'effacer le fichier" -#: src/Utility/TeeJee.FileSystem.vala:162 +#: src/Utility/TeeJee.FileSystem.vala:108 msgid "Failed to read file" msgstr "Impossible de lire le fichier" -#: src/Utility/TeeJee.FileSystem.vala:187 -#: src/Utility/TeeJee.FileSystem.vala:190 +#: src/Utility/TeeJee.FileSystem.vala:135 +#: src/Utility/TeeJee.FileSystem.vala:138 msgid "File saved" msgstr "Fichier sauvegardé" -#: src/Utility/TeeJee.FileSystem.vala:197 +#: src/Utility/TeeJee.FileSystem.vala:147 msgid "Failed to write file" msgstr "Impossible d'écrire le fichier" -#: src/Utility/TeeJee.FileSystem.vala:210 -#: src/Utility/TeeJee.FileSystem.vala:213 +#: src/Utility/TeeJee.FileSystem.vala:160 +#: src/Utility/TeeJee.FileSystem.vala:163 msgid "File copied" msgstr "Fichier copié" -#: src/Utility/TeeJee.FileSystem.vala:221 +#: src/Utility/TeeJee.FileSystem.vala:171 msgid "Failed to copy file" msgstr "Impossible de copier le fichier" -#: src/Utility/TeeJee.FileSystem.vala:231 -#: src/Utility/TeeJee.FileSystem.vala:538 +#: src/Utility/TeeJee.FileSystem.vala:181 msgid "File not found" msgstr "Fichier non trouvé" -#: src/Utility/TeeJee.FileSystem.vala:245 -#: src/Utility/TeeJee.FileSystem.vala:248 +#: src/Utility/TeeJee.FileSystem.vala:195 +#: src/Utility/TeeJee.FileSystem.vala:198 msgid "File moved" msgstr "Fichier déplacé" -#: src/Utility/TeeJee.FileSystem.vala:253 +#: src/Utility/TeeJee.FileSystem.vala:203 msgid "Failed to move file" msgstr "Impossible de déplacer le fichier" -#: src/Utility/TeeJee.FileSystem.vala:349 -#: src/Utility/TeeJee.FileSystem.vala:352 -#: src/Utility/TeeJee.FileSystem.vala:378 +#: src/Utility/TeeJee.FileSystem.vala:258 +#: src/Utility/TeeJee.FileSystem.vala:261 msgid "Created directory" msgstr "Dossier créé" -#: src/Utility/TeeJee.FileSystem.vala:359 +#: src/Utility/TeeJee.FileSystem.vala:268 msgid "Failed to create dir" msgstr "Impossible de créer le nouveau dossier" -#: src/Utility/TeeJee.FileSystem.vala:375 -msgid "Deleted directory" -msgstr "Dossier éffacé" - -#: src/Utility/TeeJee.FileSystem.vala:509 -msgid "Dir not found" -msgstr "Dossier non trouvé" +#: src/Utility/TeeJee.FileSystem.vala:283 +#, fuzzy +msgid "Deleted" +msgstr "Fichier effacé" -#: src/Utility/TeeJee.FileSystem.vala:662 -#: src/Utility/TeeJee.FileSystem.vala:711 -msgid "File is missing" -msgstr "Fichier disparu" +#: src/Utility/TeeJee.FileSystem.vala:284 +msgid "FAILED deleting" +msgstr "" #: src/Utility/TeeJee.Logging.vala:89 msgid "E" @@ -583,6 +574,6 @@ msgstr "E" msgid "W" msgstr "W" -#: src/Utility/TeeJee.Process.vala:506 +#: src/Utility/TeeJee.Process.vala:507 msgid "Stopped" msgstr "Arrêté" diff --git a/po/hr.po b/po/hr.po index bed8ae9a..c06b5c4a 100644 --- a/po/hr.po +++ b/po/hr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-07 03:35-0400\n" +"POT-Creation-Date: 2020-05-09 07:19-0400\n" "PO-Revision-Date: 2017-12-24 00:52+0100\n" "Last-Translator: gogo \n" "Language-Team: Croatian \n" @@ -27,107 +27,107 @@ msgstr "Distribucija" msgid "Architecture" msgstr "Arhitektura sustava" -#: src/Common/LinuxKernel.vala:257 +#: src/Common/LinuxKernel.vala:231 msgid "Index is stale" msgstr "Sadržaj je zastario" -#: src/Common/LinuxKernel.vala:260 +#: src/Common/LinuxKernel.vala:234 msgid "Index is fresh" msgstr "Sadržaj je osvježen" -#: src/Common/LinuxKernel.vala:365 +#: src/Common/LinuxKernel.vala:339 msgid "Fetching index..." msgstr "" -#: src/Common/LinuxKernel.vala:408 +#: src/Common/LinuxKernel.vala:382 msgid "Fetching index from kernel.ubuntu.com..." msgstr "Preuzimanje sadržaja sa kernel.ubuntu.com..." -#: src/Common/LinuxKernel.vala:727 +#: src/Common/LinuxKernel.vala:693 #, fuzzy msgid "Could not find running kernel in list!" msgstr "Nemoguće je pronaći zatraženu inačicu" -#: src/Common/LinuxKernel.vala:733 +#: src/Common/LinuxKernel.vala:699 #, fuzzy msgid "Could not find any kernels to remove" msgstr "Odaberi kernele za uklanjanje" -#: src/Common/LinuxKernel.vala:742 +#: src/Common/LinuxKernel.vala:708 msgid "The following kernels will be removed:" msgstr "" -#: src/Common/LinuxKernel.vala:749 +#: src/Common/LinuxKernel.vala:715 msgid "Continue ?" msgstr "" -#: src/Common/LinuxKernel.vala:777 src/Console/AppConsole.vala:361 +#: src/Common/LinuxKernel.vala:743 src/Console/AppConsole.vala:363 msgid "Latest update" msgstr "" -#: src/Common/LinuxKernel.vala:788 src/Console/AppConsole.vala:368 +#: src/Common/LinuxKernel.vala:754 src/Console/AppConsole.vala:370 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:796 src/Console/AppConsole.vala:373 -#: src/Console/AppConsole.vala:421 +#: src/Common/LinuxKernel.vala:762 src/Console/AppConsole.vala:375 +#: src/Console/AppConsole.vala:419 msgid "No updates found" msgstr "Nema pronađenih nadopuna" -#: src/Common/LinuxKernel.vala:806 +#: src/Common/LinuxKernel.vala:772 #, c-format -msgid "Install Linux v%s ? (y/n): " +msgid "Install Kernel Version %s ? (y/n): " msgstr "" -#: src/Common/LinuxKernel.vala:1072 +#: src/Common/LinuxKernel.vala:1038 msgid "Packages Available" msgstr "Dostupni paketi" -#: src/Common/LinuxKernel.vala:1080 +#: src/Common/LinuxKernel.vala:1046 msgid "Packages Installed" msgstr "Instalirani paketi" -#: src/Common/LinuxKernel.vala:1164 +#: src/Common/LinuxKernel.vala:1130 msgid "Available Kernels" msgstr "Dostupni kerneli" -#: src/Common/LinuxKernel.vala:1181 src/Gtk/MainWindow.vala:208 +#: src/Common/LinuxKernel.vala:1147 src/Gtk/MainWindow.vala:186 msgid "Installed" msgstr "Instalirano" -#: src/Common/LinuxKernel.vala:1181 src/Gtk/MainWindow.vala:208 +#: src/Common/LinuxKernel.vala:1147 src/Gtk/MainWindow.vala:186 msgid "Running" msgstr "Pokrenuto" -#: src/Common/LinuxKernel.vala:1210 +#: src/Common/LinuxKernel.vala:1182 msgid "Downloading" msgstr "Preuzimanje" -#: src/Common/LinuxKernel.vala:1229 +#: src/Common/LinuxKernel.vala:1201 #: src/Utility/Gtk/CustomMessageDialog.vala:148 #: src/Utility/Gtk/CustomMessageDialog.vala:152 msgid "OK" msgstr "U redu" -#: src/Common/LinuxKernel.vala:1238 +#: src/Common/LinuxKernel.vala:1207 msgid "ERROR" msgstr "GREŠKA" -#: src/Common/LinuxKernel.vala:1252 src/Gtk/MainWindow.vala:681 +#: src/Common/LinuxKernel.vala:1221 src/Gtk/MainWindow.vala:653 msgid "This kernel is already installed." msgstr "Ovaj kernel je već instaliran." -#: src/Common/LinuxKernel.vala:1283 +#: src/Common/LinuxKernel.vala:1252 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "Instalacija je završena. Potrebno je ponovno pokretanje računala kako bi se " "koristio novi kernel." -#: src/Common/LinuxKernel.vala:1286 +#: src/Common/LinuxKernel.vala:1255 msgid "Installation completed with errors" msgstr "Instalacija je završena s greškama" -#: src/Common/LinuxKernel.vala:1302 +#: src/Common/LinuxKernel.vala:1271 msgid "" "Selected kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -135,19 +135,19 @@ msgstr "" "Odabrani kernel je trenutno pokernut i ne može se ukloniti.\n" " Instalirajte drugi kernel prije uklanjanja trenutnog kernela." -#: src/Common/LinuxKernel.vala:1307 +#: src/Common/LinuxKernel.vala:1276 msgid "Preparing to remove selected kernels" msgstr "Pripremanje uklanjanja odabranih kernela" -#: src/Common/LinuxKernel.vala:1339 src/Common/LinuxKernel.vala:1392 +#: src/Common/LinuxKernel.vala:1308 src/Common/LinuxKernel.vala:1361 msgid "Un-install completed" msgstr "Deinstalacija završena" -#: src/Common/LinuxKernel.vala:1342 src/Common/LinuxKernel.vala:1395 +#: src/Common/LinuxKernel.vala:1311 src/Common/LinuxKernel.vala:1364 msgid "Un-install completed with errors" msgstr "Deinstalacija završena s greškama" -#: src/Common/LinuxKernel.vala:1355 +#: src/Common/LinuxKernel.vala:1324 msgid "" "This kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -155,233 +155,221 @@ msgstr "" "Ovaj kernel je trenutno pokrenut i ne može se ukloniti.\n" " Instalirajte drugi kernel prije uklanjanja trenutnog kernela." -#: src/Common/Main.vala:106 +#: src/Common/Main.vala:107 msgid "Commands listed below are not available on this system" msgstr "Naredbe navedene ispod nisu dostupne na ovom sustavu" -#: src/Common/Main.vala:107 +#: src/Common/Main.vala:108 msgid "Please install required packages and try again" msgstr "Instalirajte potrebni paket i pokušajte ponovno" -#: src/Common/Package.vala:126 src/Common/Package.vala:188 +#: src/Common/Package.vala:131 src/Common/Package.vala:193 #, c-format msgid "File not found: %s" msgstr "Datoteka nije pronađena: %s" -#: src/Console/AppConsole.vala:80 src/Gtk/AppGtk.vala:174 +#: src/Console/AppConsole.vala:81 src/Gtk/AppGtk.vala:171 msgid "Syntax" msgstr "Sintaksa" -#: src/Console/AppConsole.vala:82 +#: src/Console/AppConsole.vala:83 msgid "Commands" msgstr "" -#: src/Console/AppConsole.vala:84 +#: src/Console/AppConsole.vala:85 msgid "Check for kernel updates" msgstr "Provjeri nadopune kernela" -#: src/Console/AppConsole.vala:85 +#: src/Console/AppConsole.vala:86 #, fuzzy msgid "Check for kernel updates and notify current user" msgstr "Provjeri nadopune kernela" -#: src/Console/AppConsole.vala:86 +#: src/Console/AppConsole.vala:87 msgid "List all available mainline kernels" msgstr "Prikaži sve mainline kernele" -#: src/Console/AppConsole.vala:87 +#: src/Console/AppConsole.vala:88 #, fuzzy msgid "List installed kernels" msgstr "Prikaži sve kernele" -#: src/Console/AppConsole.vala:88 +#: src/Console/AppConsole.vala:89 #, fuzzy msgid "Install latest mainline kernel" msgstr "Instaliraj određeni mainline kernel" -#: src/Console/AppConsole.vala:89 +#: src/Console/AppConsole.vala:90 msgid "Install latest point update for current series" msgstr "" -#: src/Console/AppConsole.vala:90 +#: src/Console/AppConsole.vala:91 msgid "Install specified mainline kernel" msgstr "Instaliraj određeni mainline kernel" -#: src/Console/AppConsole.vala:91 +#: src/Console/AppConsole.vala:92 #, fuzzy msgid "Remove specified kernel" msgstr "Ukloni određeni mainline kernel" -#: src/Console/AppConsole.vala:92 src/Gtk/MainWindow.vala:422 +#: src/Console/AppConsole.vala:93 src/Gtk/MainWindow.vala:396 msgid "Remove installed kernels older than running kernel" msgstr "" -#: src/Console/AppConsole.vala:93 +#: src/Console/AppConsole.vala:94 msgid "Download packages for specified kernel" msgstr "Preuzmi pakete za određeni kernel" -#: src/Console/AppConsole.vala:94 src/Console/AppConsole.vala:99 +#: src/Console/AppConsole.vala:95 src/Console/AppConsole.vala:100 msgid "Remove files from application cache" msgstr "Ukloni datoteke iz predmemorije aplikacije" -#: src/Console/AppConsole.vala:95 +#: src/Console/AppConsole.vala:96 #, fuzzy msgid "Show unstable and RC releases" msgstr "Sakrij nestabilne kernele i predizdanja" -#: src/Console/AppConsole.vala:97 src/Gtk/AppGtk.vala:176 +#: src/Console/AppConsole.vala:98 src/Gtk/AppGtk.vala:173 msgid "Options" msgstr "Mogućnosti" -#: src/Console/AppConsole.vala:100 +#: src/Console/AppConsole.vala:101 msgid "Enable verbose debugging output" msgstr "" -#: src/Console/AppConsole.vala:101 +#: src/Console/AppConsole.vala:102 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "" -#: src/Console/AppConsole.vala:102 +#: src/Console/AppConsole.vala:103 msgid "Override user" msgstr "" -#: src/Console/AppConsole.vala:115 +#: src/Console/AppConsole.vala:116 msgid "Admin access is required for running this application." msgstr "Administratorske ovlasti su potrebne za pokretanje ove aplikacije." -#: src/Console/AppConsole.vala:118 +#: src/Console/AppConsole.vala:119 msgid "Run the application as admin with pkexec or sudo." msgstr "Pokreni aplikaciju kao administrator sa pkexec ili sudo." -#: src/Console/AppConsole.vala:198 src/Gtk/AppGtk.vala:161 +#: src/Console/AppConsole.vala:200 src/Gtk/AppGtk.vala:158 msgid "Unknown option" msgstr "Nepoznata mogućnost" -#: src/Console/AppConsole.vala:200 src/Console/AppConsole.vala:314 -#: src/Console/AppConsole.vala:343 +#: src/Console/AppConsole.vala:202 src/Console/AppConsole.vala:315 +#: src/Console/AppConsole.vala:345 msgid "Run '" msgstr "" -#: src/Console/AppConsole.vala:205 src/Gtk/AppGtk.vala:109 -msgid "Cache" -msgstr "" - -#: src/Console/AppConsole.vala:206 src/Gtk/AppGtk.vala:110 -msgid "Temp" -msgstr "" - -#: src/Console/AppConsole.vala:286 src/Console/AppConsole.vala:323 +#: src/Console/AppConsole.vala:284 src/Console/AppConsole.vala:324 msgid "No kernels specified" msgstr "" -#: src/Console/AppConsole.vala:292 +#: src/Console/AppConsole.vala:290 msgid "Multiple kernels selected for installation. Select only one." msgstr "Više kernela je odabrano za instalaciju. odaberite samo jedan." -#: src/Console/AppConsole.vala:310 src/Gtk/MainWindow.vala:100 +#: src/Console/AppConsole.vala:311 src/Gtk/MainWindow.vala:100 msgid "Could not find requested version" msgstr "Nemoguće je pronaći zatraženu inačicu" -#: src/Console/AppConsole.vala:342 +#: src/Console/AppConsole.vala:344 msgid "Command not specified" msgstr "" -#: src/Console/AppConsole.vala:391 src/Console/AppConsole.vala:408 -#, c-format -msgid "Linux v%s Available" -msgstr "" - -#: src/Console/AppConsole.vala:392 -msgid "Major update available for installation" -msgstr "" - -#: src/Console/AppConsole.vala:409 -msgid "Minor update available for installation" -msgstr "" +#: src/Console/AppConsole.vala:393 src/Console/AppConsole.vala:408 +#, fuzzy, c-format +msgid "Kernel %s Available" +msgstr "Dostupni paketi" -#: src/Gtk/AppGtk.vala:178 +#: src/Gtk/AppGtk.vala:175 msgid "Print debug information" msgstr "Ispiši informacije otklanjanja grešaka" -#: src/Gtk/AppGtk.vala:179 +#: src/Gtk/AppGtk.vala:176 msgid "Show all options" msgstr "Prikaži sve mogućnosti" -#: src/Gtk/MainWindow.vala:150 +#: src/Gtk/MainWindow.vala:146 msgid "Kernel" msgstr "Kernel" -#: src/Gtk/MainWindow.vala:179 -msgid "Version" -msgstr "Inačica" - -#: src/Gtk/MainWindow.vala:196 +#: src/Gtk/MainWindow.vala:174 msgid "Status" msgstr "Stanje" -#: src/Gtk/MainWindow.vala:341 +#: src/Gtk/MainWindow.vala:319 msgid "Refresh" msgstr "Osvježi" -#: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:555 -#: src/Gtk/MainWindow.vala:686 src/Utility/TeeJee.System.vala:281 +#: src/Gtk/MainWindow.vala:326 src/Gtk/MainWindow.vala:527 +#: src/Gtk/MainWindow.vala:658 src/Utility/TeeJee.System.vala:146 msgid "Internet connection is not active" msgstr "Internet povezivanje nije aktivno" -#: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:555 -#: src/Gtk/MainWindow.vala:686 +#: src/Gtk/MainWindow.vala:326 src/Gtk/MainWindow.vala:527 +#: src/Gtk/MainWindow.vala:658 msgid "No Internet" msgstr "Nema pristupa internetu" -#: src/Gtk/MainWindow.vala:357 +#: src/Gtk/MainWindow.vala:335 msgid "Install" msgstr "Instaliraj" -#: src/Gtk/MainWindow.vala:366 +#: src/Gtk/MainWindow.vala:344 msgid "Multiple Kernels Selected" msgstr "Više kernela je odabrano" -#: src/Gtk/MainWindow.vala:366 +#: src/Gtk/MainWindow.vala:344 msgid "Select a single kernel to install" msgstr "Odaberi pojedni kernel za instalaciju" -#: src/Gtk/MainWindow.vala:369 src/Gtk/MainWindow.vala:380 +#: src/Gtk/MainWindow.vala:347 src/Gtk/MainWindow.vala:358 msgid "Not Selected" msgstr "Nije odabrano" -#: src/Gtk/MainWindow.vala:369 +#: src/Gtk/MainWindow.vala:347 msgid "Select the kernel to install" msgstr "Odaberi kernel za instalaciju" -#: src/Gtk/MainWindow.vala:374 +#: src/Gtk/MainWindow.vala:352 msgid "Remove" msgstr "Ukloni" -#: src/Gtk/MainWindow.vala:380 +#: src/Gtk/MainWindow.vala:358 msgid "Select the kernels to remove" msgstr "Odaberi kernele za uklanjanje" -#: src/Gtk/MainWindow.vala:421 +#: src/Gtk/MainWindow.vala:395 msgid "Purge" msgstr "" -#: src/Gtk/MainWindow.vala:458 +#: src/Gtk/MainWindow.vala:429 msgid "Changes" msgstr "Promjene" -#: src/Gtk/MainWindow.vala:469 src/Gtk/SettingsDialog.vala:52 +#: src/Gtk/MainWindow.vala:440 src/Gtk/SettingsDialog.vala:52 msgid "Settings" msgstr "Postavke" -#: src/Gtk/MainWindow.vala:490 +#: src/Gtk/MainWindow.vala:461 msgid "About" msgstr "O programu" -#: src/Gtk/MainWindow.vala:539 +#: src/Gtk/MainWindow.vala:505 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Alat za nadogradnju kernela Ubuntu temeljenih distribucija" -#: src/Gtk/MainWindow.vala:574 +#: src/Gtk/MainWindow.vala:506 +msgid "Forked:" +msgstr "" + +#: src/Gtk/MainWindow.vala:506 +msgid "Original:" +msgstr "" + +#: src/Gtk/MainWindow.vala:546 msgid "Refreshing..." msgstr "Osvježavanje..." @@ -406,49 +394,57 @@ msgstr "Obavijesti kada je pojedino izdanje dostupno" msgid "Show notification bubble on desktop" msgstr "Prikaži mjehurić obavijesti radne površine" -#: src/Gtk/SettingsDialog.vala:105 +#: src/Gtk/SettingsDialog.vala:102 +msgid "(Allowing intervals in seconds for --debug)" +msgstr "" + +#: src/Gtk/SettingsDialog.vala:112 msgid "Check every" msgstr "Provjeri svaka" -#: src/Gtk/SettingsDialog.vala:136 +#: src/Gtk/SettingsDialog.vala:145 msgid "Hour(s)" msgstr "Sat(a)" -#: src/Gtk/SettingsDialog.vala:138 +#: src/Gtk/SettingsDialog.vala:147 msgid "Day(s)" msgstr "Dan(a)" -#: src/Gtk/SettingsDialog.vala:140 +#: src/Gtk/SettingsDialog.vala:149 msgid "Week(s)" msgstr "Tjedan(a)" -#: src/Gtk/SettingsDialog.vala:145 +#: src/Gtk/SettingsDialog.vala:152 +msgid "Second(s)" +msgstr "" + +#: src/Gtk/SettingsDialog.vala:158 msgid "Display" msgstr "Prikaz" -#: src/Gtk/SettingsDialog.vala:153 +#: src/Gtk/SettingsDialog.vala:166 msgid "Hide unstable and RC releases" msgstr "Sakrij nestabilne kernele i predizdanja" -#: src/Gtk/SettingsDialog.vala:167 +#: src/Gtk/SettingsDialog.vala:180 msgid "Show N previous major versions " msgstr "" -#: src/Gtk/SettingsDialog.vala:182 +#: src/Gtk/SettingsDialog.vala:195 msgid "Other" msgstr "" -#: src/Gtk/SettingsDialog.vala:190 +#: src/Gtk/SettingsDialog.vala:203 #, fuzzy msgid "Skip internet connection check" msgstr "Internet povezivanje nije aktivno" -#: src/Gtk/SettingsDialog.vala:203 +#: src/Gtk/SettingsDialog.vala:216 #, fuzzy msgid "Internet connection timeout in " msgstr "Internet povezivanje nije aktivno" -#: src/Gtk/SettingsDialog.vala:217 +#: src/Gtk/SettingsDialog.vala:230 msgid "seconds" msgstr "" @@ -473,21 +469,22 @@ msgid "Contributions" msgstr "Prilozi" #: src/Utility/Gtk/AboutWindow.vala:329 -msgid "Third Party Tools" -msgstr "Alati treće strane" - -#: src/Utility/Gtk/AboutWindow.vala:337 msgid "Artists" msgstr "Dizajneri" -#: src/Utility/Gtk/AboutWindow.vala:345 +#: src/Utility/Gtk/AboutWindow.vala:337 msgid "Translators" msgstr "Prevoditelji" -#: src/Utility/Gtk/AboutWindow.vala:353 +#: src/Utility/Gtk/AboutWindow.vala:345 msgid "Documenters" msgstr "Autori dokumentacije" +#: src/Utility/Gtk/AboutWindow.vala:353 +#, fuzzy +msgid "Third Party Inclusions" +msgstr "Alati treće strane" + #: src/Utility/Gtk/CustomMessageDialog.vala:157 msgid "Yes" msgstr "Da" @@ -504,72 +501,66 @@ msgstr "Greška" msgid "Missing Icon" msgstr "Ikone koje nedostaju" -#: src/Utility/TeeJee.FileSystem.vala:97 src/Utility/TeeJee.FileSystem.vala:100 +#: src/Utility/TeeJee.FileSystem.vala:73 src/Utility/TeeJee.FileSystem.vala:76 msgid "File deleted" msgstr "Datoteka obrisana" -#: src/Utility/TeeJee.FileSystem.vala:106 +#: src/Utility/TeeJee.FileSystem.vala:82 msgid "Failed to delete file" msgstr "Neuspjelo brisanje datoteke" -#: src/Utility/TeeJee.FileSystem.vala:162 +#: src/Utility/TeeJee.FileSystem.vala:108 msgid "Failed to read file" msgstr "Neuspjelo čitanje datoteke" -#: src/Utility/TeeJee.FileSystem.vala:187 -#: src/Utility/TeeJee.FileSystem.vala:190 +#: src/Utility/TeeJee.FileSystem.vala:135 +#: src/Utility/TeeJee.FileSystem.vala:138 msgid "File saved" msgstr "Datoteka je spremljenja" -#: src/Utility/TeeJee.FileSystem.vala:197 +#: src/Utility/TeeJee.FileSystem.vala:147 msgid "Failed to write file" msgstr "Neuspjelo zapisivanje datoteke" -#: src/Utility/TeeJee.FileSystem.vala:210 -#: src/Utility/TeeJee.FileSystem.vala:213 +#: src/Utility/TeeJee.FileSystem.vala:160 +#: src/Utility/TeeJee.FileSystem.vala:163 msgid "File copied" msgstr "Datoteka kopirana" -#: src/Utility/TeeJee.FileSystem.vala:221 +#: src/Utility/TeeJee.FileSystem.vala:171 msgid "Failed to copy file" msgstr "Neuspjelo kopiranje datoteke" -#: src/Utility/TeeJee.FileSystem.vala:231 -#: src/Utility/TeeJee.FileSystem.vala:538 +#: src/Utility/TeeJee.FileSystem.vala:181 msgid "File not found" msgstr "Datoteka nije pronađena" -#: src/Utility/TeeJee.FileSystem.vala:245 -#: src/Utility/TeeJee.FileSystem.vala:248 +#: src/Utility/TeeJee.FileSystem.vala:195 +#: src/Utility/TeeJee.FileSystem.vala:198 msgid "File moved" msgstr "Datoteka je premještena" -#: src/Utility/TeeJee.FileSystem.vala:253 +#: src/Utility/TeeJee.FileSystem.vala:203 msgid "Failed to move file" msgstr "Neuspjelo premještanje datoteke" -#: src/Utility/TeeJee.FileSystem.vala:349 -#: src/Utility/TeeJee.FileSystem.vala:352 -#: src/Utility/TeeJee.FileSystem.vala:378 +#: src/Utility/TeeJee.FileSystem.vala:258 +#: src/Utility/TeeJee.FileSystem.vala:261 msgid "Created directory" msgstr "Stvoren direktorij" -#: src/Utility/TeeJee.FileSystem.vala:359 +#: src/Utility/TeeJee.FileSystem.vala:268 msgid "Failed to create dir" msgstr "Neuspjelo stvarnje direktorija" -#: src/Utility/TeeJee.FileSystem.vala:375 -msgid "Deleted directory" -msgstr "Obrisan direktorij" - -#: src/Utility/TeeJee.FileSystem.vala:509 -msgid "Dir not found" -msgstr "Direktorij nije pronađen" +#: src/Utility/TeeJee.FileSystem.vala:283 +#, fuzzy +msgid "Deleted" +msgstr "Datoteka obrisana" -#: src/Utility/TeeJee.FileSystem.vala:662 -#: src/Utility/TeeJee.FileSystem.vala:711 -msgid "File is missing" -msgstr "Datoteka nedostaje" +#: src/Utility/TeeJee.FileSystem.vala:284 +msgid "FAILED deleting" +msgstr "" #: src/Utility/TeeJee.Logging.vala:89 msgid "E" @@ -579,6 +570,6 @@ msgstr "G" msgid "W" msgstr "Z" -#: src/Utility/TeeJee.Process.vala:506 +#: src/Utility/TeeJee.Process.vala:507 msgid "Stopped" msgstr "Zaustavljeno" diff --git a/po/messages.pot b/po/messages.pot index 1eec051e..1c8d2639 100644 --- a/po/messages.pot +++ b/po/messages.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline 1.0.9\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-07 03:35-0400\n" +"POT-Creation-Date: 2020-05-09 07:19-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -25,348 +25,336 @@ msgstr "" msgid "Architecture" msgstr "" -#: src/Common/LinuxKernel.vala:257 +#: src/Common/LinuxKernel.vala:231 msgid "Index is stale" msgstr "" -#: src/Common/LinuxKernel.vala:260 +#: src/Common/LinuxKernel.vala:234 msgid "Index is fresh" msgstr "" -#: src/Common/LinuxKernel.vala:365 +#: src/Common/LinuxKernel.vala:339 msgid "Fetching index..." msgstr "" -#: src/Common/LinuxKernel.vala:408 +#: src/Common/LinuxKernel.vala:382 msgid "Fetching index from kernel.ubuntu.com..." msgstr "" -#: src/Common/LinuxKernel.vala:727 +#: src/Common/LinuxKernel.vala:693 msgid "Could not find running kernel in list!" msgstr "" -#: src/Common/LinuxKernel.vala:733 +#: src/Common/LinuxKernel.vala:699 msgid "Could not find any kernels to remove" msgstr "" -#: src/Common/LinuxKernel.vala:742 +#: src/Common/LinuxKernel.vala:708 msgid "The following kernels will be removed:" msgstr "" -#: src/Common/LinuxKernel.vala:749 +#: src/Common/LinuxKernel.vala:715 msgid "Continue ?" msgstr "" -#: src/Common/LinuxKernel.vala:777 src/Console/AppConsole.vala:361 +#: src/Common/LinuxKernel.vala:743 src/Console/AppConsole.vala:363 msgid "Latest update" msgstr "" -#: src/Common/LinuxKernel.vala:788 src/Console/AppConsole.vala:368 +#: src/Common/LinuxKernel.vala:754 src/Console/AppConsole.vala:370 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:796 src/Console/AppConsole.vala:373 -#: src/Console/AppConsole.vala:421 +#: src/Common/LinuxKernel.vala:762 src/Console/AppConsole.vala:375 +#: src/Console/AppConsole.vala:419 msgid "No updates found" msgstr "" -#: src/Common/LinuxKernel.vala:806 +#: src/Common/LinuxKernel.vala:772 #, c-format -msgid "Install Linux v%s ? (y/n): " +msgid "Install Kernel Version %s ? (y/n): " msgstr "" -#: src/Common/LinuxKernel.vala:1072 +#: src/Common/LinuxKernel.vala:1038 msgid "Packages Available" msgstr "" -#: src/Common/LinuxKernel.vala:1080 +#: src/Common/LinuxKernel.vala:1046 msgid "Packages Installed" msgstr "" -#: src/Common/LinuxKernel.vala:1164 +#: src/Common/LinuxKernel.vala:1130 msgid "Available Kernels" msgstr "" -#: src/Common/LinuxKernel.vala:1181 src/Gtk/MainWindow.vala:208 +#: src/Common/LinuxKernel.vala:1147 src/Gtk/MainWindow.vala:186 msgid "Installed" msgstr "" -#: src/Common/LinuxKernel.vala:1181 src/Gtk/MainWindow.vala:208 +#: src/Common/LinuxKernel.vala:1147 src/Gtk/MainWindow.vala:186 msgid "Running" msgstr "" -#: src/Common/LinuxKernel.vala:1210 +#: src/Common/LinuxKernel.vala:1182 msgid "Downloading" msgstr "" -#: src/Common/LinuxKernel.vala:1229 +#: src/Common/LinuxKernel.vala:1201 #: src/Utility/Gtk/CustomMessageDialog.vala:148 #: src/Utility/Gtk/CustomMessageDialog.vala:152 msgid "OK" msgstr "" -#: src/Common/LinuxKernel.vala:1238 +#: src/Common/LinuxKernel.vala:1207 msgid "ERROR" msgstr "" -#: src/Common/LinuxKernel.vala:1252 src/Gtk/MainWindow.vala:681 +#: src/Common/LinuxKernel.vala:1221 src/Gtk/MainWindow.vala:653 msgid "This kernel is already installed." msgstr "" -#: src/Common/LinuxKernel.vala:1283 +#: src/Common/LinuxKernel.vala:1252 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" -#: src/Common/LinuxKernel.vala:1286 +#: src/Common/LinuxKernel.vala:1255 msgid "Installation completed with errors" msgstr "" -#: src/Common/LinuxKernel.vala:1302 +#: src/Common/LinuxKernel.vala:1271 msgid "" "Selected kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." msgstr "" -#: src/Common/LinuxKernel.vala:1307 +#: src/Common/LinuxKernel.vala:1276 msgid "Preparing to remove selected kernels" msgstr "" -#: src/Common/LinuxKernel.vala:1339 src/Common/LinuxKernel.vala:1392 +#: src/Common/LinuxKernel.vala:1308 src/Common/LinuxKernel.vala:1361 msgid "Un-install completed" msgstr "" -#: src/Common/LinuxKernel.vala:1342 src/Common/LinuxKernel.vala:1395 +#: src/Common/LinuxKernel.vala:1311 src/Common/LinuxKernel.vala:1364 msgid "Un-install completed with errors" msgstr "" -#: src/Common/LinuxKernel.vala:1355 +#: src/Common/LinuxKernel.vala:1324 msgid "" "This kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." msgstr "" -#: src/Common/Main.vala:106 +#: src/Common/Main.vala:107 msgid "Commands listed below are not available on this system" msgstr "" -#: src/Common/Main.vala:107 +#: src/Common/Main.vala:108 msgid "Please install required packages and try again" msgstr "" -#: src/Common/Package.vala:126 src/Common/Package.vala:188 +#: src/Common/Package.vala:131 src/Common/Package.vala:193 #, c-format msgid "File not found: %s" msgstr "" -#: src/Console/AppConsole.vala:80 src/Gtk/AppGtk.vala:174 +#: src/Console/AppConsole.vala:81 src/Gtk/AppGtk.vala:171 msgid "Syntax" msgstr "" -#: src/Console/AppConsole.vala:82 +#: src/Console/AppConsole.vala:83 msgid "Commands" msgstr "" -#: src/Console/AppConsole.vala:84 +#: src/Console/AppConsole.vala:85 msgid "Check for kernel updates" msgstr "" -#: src/Console/AppConsole.vala:85 +#: src/Console/AppConsole.vala:86 msgid "Check for kernel updates and notify current user" msgstr "" -#: src/Console/AppConsole.vala:86 +#: src/Console/AppConsole.vala:87 msgid "List all available mainline kernels" msgstr "" -#: src/Console/AppConsole.vala:87 +#: src/Console/AppConsole.vala:88 msgid "List installed kernels" msgstr "" -#: src/Console/AppConsole.vala:88 +#: src/Console/AppConsole.vala:89 msgid "Install latest mainline kernel" msgstr "" -#: src/Console/AppConsole.vala:89 +#: src/Console/AppConsole.vala:90 msgid "Install latest point update for current series" msgstr "" -#: src/Console/AppConsole.vala:90 +#: src/Console/AppConsole.vala:91 msgid "Install specified mainline kernel" msgstr "" -#: src/Console/AppConsole.vala:91 +#: src/Console/AppConsole.vala:92 msgid "Remove specified kernel" msgstr "" -#: src/Console/AppConsole.vala:92 src/Gtk/MainWindow.vala:422 +#: src/Console/AppConsole.vala:93 src/Gtk/MainWindow.vala:396 msgid "Remove installed kernels older than running kernel" msgstr "" -#: src/Console/AppConsole.vala:93 +#: src/Console/AppConsole.vala:94 msgid "Download packages for specified kernel" msgstr "" -#: src/Console/AppConsole.vala:94 src/Console/AppConsole.vala:99 +#: src/Console/AppConsole.vala:95 src/Console/AppConsole.vala:100 msgid "Remove files from application cache" msgstr "" -#: src/Console/AppConsole.vala:95 +#: src/Console/AppConsole.vala:96 msgid "Show unstable and RC releases" msgstr "" -#: src/Console/AppConsole.vala:97 src/Gtk/AppGtk.vala:176 +#: src/Console/AppConsole.vala:98 src/Gtk/AppGtk.vala:173 msgid "Options" msgstr "" -#: src/Console/AppConsole.vala:100 +#: src/Console/AppConsole.vala:101 msgid "Enable verbose debugging output" msgstr "" -#: src/Console/AppConsole.vala:101 +#: src/Console/AppConsole.vala:102 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "" -#: src/Console/AppConsole.vala:102 +#: src/Console/AppConsole.vala:103 msgid "Override user" msgstr "" -#: src/Console/AppConsole.vala:115 +#: src/Console/AppConsole.vala:116 msgid "Admin access is required for running this application." msgstr "" -#: src/Console/AppConsole.vala:118 +#: src/Console/AppConsole.vala:119 msgid "Run the application as admin with pkexec or sudo." msgstr "" -#: src/Console/AppConsole.vala:198 src/Gtk/AppGtk.vala:161 +#: src/Console/AppConsole.vala:200 src/Gtk/AppGtk.vala:158 msgid "Unknown option" msgstr "" -#: src/Console/AppConsole.vala:200 src/Console/AppConsole.vala:314 -#: src/Console/AppConsole.vala:343 +#: src/Console/AppConsole.vala:202 src/Console/AppConsole.vala:315 +#: src/Console/AppConsole.vala:345 msgid "Run '" msgstr "" -#: src/Console/AppConsole.vala:205 src/Gtk/AppGtk.vala:109 -msgid "Cache" -msgstr "" - -#: src/Console/AppConsole.vala:206 src/Gtk/AppGtk.vala:110 -msgid "Temp" -msgstr "" - -#: src/Console/AppConsole.vala:286 src/Console/AppConsole.vala:323 +#: src/Console/AppConsole.vala:284 src/Console/AppConsole.vala:324 msgid "No kernels specified" msgstr "" -#: src/Console/AppConsole.vala:292 +#: src/Console/AppConsole.vala:290 msgid "Multiple kernels selected for installation. Select only one." msgstr "" -#: src/Console/AppConsole.vala:310 src/Gtk/MainWindow.vala:100 +#: src/Console/AppConsole.vala:311 src/Gtk/MainWindow.vala:100 msgid "Could not find requested version" msgstr "" -#: src/Console/AppConsole.vala:342 +#: src/Console/AppConsole.vala:344 msgid "Command not specified" msgstr "" -#: src/Console/AppConsole.vala:391 src/Console/AppConsole.vala:408 +#: src/Console/AppConsole.vala:393 src/Console/AppConsole.vala:408 #, c-format -msgid "Linux v%s Available" -msgstr "" - -#: src/Console/AppConsole.vala:392 -msgid "Major update available for installation" -msgstr "" - -#: src/Console/AppConsole.vala:409 -msgid "Minor update available for installation" +msgid "Kernel %s Available" msgstr "" -#: src/Gtk/AppGtk.vala:178 +#: src/Gtk/AppGtk.vala:175 msgid "Print debug information" msgstr "" -#: src/Gtk/AppGtk.vala:179 +#: src/Gtk/AppGtk.vala:176 msgid "Show all options" msgstr "" -#: src/Gtk/MainWindow.vala:150 +#: src/Gtk/MainWindow.vala:146 msgid "Kernel" msgstr "" -#: src/Gtk/MainWindow.vala:179 -msgid "Version" -msgstr "" - -#: src/Gtk/MainWindow.vala:196 +#: src/Gtk/MainWindow.vala:174 msgid "Status" msgstr "" -#: src/Gtk/MainWindow.vala:341 +#: src/Gtk/MainWindow.vala:319 msgid "Refresh" msgstr "" -#: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:555 -#: src/Gtk/MainWindow.vala:686 src/Utility/TeeJee.System.vala:281 +#: src/Gtk/MainWindow.vala:326 src/Gtk/MainWindow.vala:527 +#: src/Gtk/MainWindow.vala:658 src/Utility/TeeJee.System.vala:146 msgid "Internet connection is not active" msgstr "" -#: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:555 -#: src/Gtk/MainWindow.vala:686 +#: src/Gtk/MainWindow.vala:326 src/Gtk/MainWindow.vala:527 +#: src/Gtk/MainWindow.vala:658 msgid "No Internet" msgstr "" -#: src/Gtk/MainWindow.vala:357 +#: src/Gtk/MainWindow.vala:335 msgid "Install" msgstr "" -#: src/Gtk/MainWindow.vala:366 +#: src/Gtk/MainWindow.vala:344 msgid "Multiple Kernels Selected" msgstr "" -#: src/Gtk/MainWindow.vala:366 +#: src/Gtk/MainWindow.vala:344 msgid "Select a single kernel to install" msgstr "" -#: src/Gtk/MainWindow.vala:369 src/Gtk/MainWindow.vala:380 +#: src/Gtk/MainWindow.vala:347 src/Gtk/MainWindow.vala:358 msgid "Not Selected" msgstr "" -#: src/Gtk/MainWindow.vala:369 +#: src/Gtk/MainWindow.vala:347 msgid "Select the kernel to install" msgstr "" -#: src/Gtk/MainWindow.vala:374 +#: src/Gtk/MainWindow.vala:352 msgid "Remove" msgstr "" -#: src/Gtk/MainWindow.vala:380 +#: src/Gtk/MainWindow.vala:358 msgid "Select the kernels to remove" msgstr "" -#: src/Gtk/MainWindow.vala:421 +#: src/Gtk/MainWindow.vala:395 msgid "Purge" msgstr "" -#: src/Gtk/MainWindow.vala:458 +#: src/Gtk/MainWindow.vala:429 msgid "Changes" msgstr "" -#: src/Gtk/MainWindow.vala:469 src/Gtk/SettingsDialog.vala:52 +#: src/Gtk/MainWindow.vala:440 src/Gtk/SettingsDialog.vala:52 msgid "Settings" msgstr "" -#: src/Gtk/MainWindow.vala:490 +#: src/Gtk/MainWindow.vala:461 msgid "About" msgstr "" -#: src/Gtk/MainWindow.vala:539 +#: src/Gtk/MainWindow.vala:505 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "" -#: src/Gtk/MainWindow.vala:574 +#: src/Gtk/MainWindow.vala:506 +msgid "Forked:" +msgstr "" + +#: src/Gtk/MainWindow.vala:506 +msgid "Original:" +msgstr "" + +#: src/Gtk/MainWindow.vala:546 msgid "Refreshing..." msgstr "" @@ -391,47 +379,55 @@ msgstr "" msgid "Show notification bubble on desktop" msgstr "" -#: src/Gtk/SettingsDialog.vala:105 +#: src/Gtk/SettingsDialog.vala:102 +msgid "(Allowing intervals in seconds for --debug)" +msgstr "" + +#: src/Gtk/SettingsDialog.vala:112 msgid "Check every" msgstr "" -#: src/Gtk/SettingsDialog.vala:136 +#: src/Gtk/SettingsDialog.vala:145 msgid "Hour(s)" msgstr "" -#: src/Gtk/SettingsDialog.vala:138 +#: src/Gtk/SettingsDialog.vala:147 msgid "Day(s)" msgstr "" -#: src/Gtk/SettingsDialog.vala:140 +#: src/Gtk/SettingsDialog.vala:149 msgid "Week(s)" msgstr "" -#: src/Gtk/SettingsDialog.vala:145 +#: src/Gtk/SettingsDialog.vala:152 +msgid "Second(s)" +msgstr "" + +#: src/Gtk/SettingsDialog.vala:158 msgid "Display" msgstr "" -#: src/Gtk/SettingsDialog.vala:153 +#: src/Gtk/SettingsDialog.vala:166 msgid "Hide unstable and RC releases" msgstr "" -#: src/Gtk/SettingsDialog.vala:167 +#: src/Gtk/SettingsDialog.vala:180 msgid "Show N previous major versions " msgstr "" -#: src/Gtk/SettingsDialog.vala:182 +#: src/Gtk/SettingsDialog.vala:195 msgid "Other" msgstr "" -#: src/Gtk/SettingsDialog.vala:190 +#: src/Gtk/SettingsDialog.vala:203 msgid "Skip internet connection check" msgstr "" -#: src/Gtk/SettingsDialog.vala:203 +#: src/Gtk/SettingsDialog.vala:216 msgid "Internet connection timeout in " msgstr "" -#: src/Gtk/SettingsDialog.vala:217 +#: src/Gtk/SettingsDialog.vala:230 msgid "seconds" msgstr "" @@ -456,19 +452,19 @@ msgid "Contributions" msgstr "" #: src/Utility/Gtk/AboutWindow.vala:329 -msgid "Third Party Tools" +msgid "Artists" msgstr "" #: src/Utility/Gtk/AboutWindow.vala:337 -msgid "Artists" +msgid "Translators" msgstr "" #: src/Utility/Gtk/AboutWindow.vala:345 -msgid "Translators" +msgid "Documenters" msgstr "" #: src/Utility/Gtk/AboutWindow.vala:353 -msgid "Documenters" +msgid "Third Party Inclusions" msgstr "" #: src/Utility/Gtk/CustomMessageDialog.vala:157 @@ -487,71 +483,64 @@ msgstr "" msgid "Missing Icon" msgstr "" -#: src/Utility/TeeJee.FileSystem.vala:97 src/Utility/TeeJee.FileSystem.vala:100 +#: src/Utility/TeeJee.FileSystem.vala:73 src/Utility/TeeJee.FileSystem.vala:76 msgid "File deleted" msgstr "" -#: src/Utility/TeeJee.FileSystem.vala:106 +#: src/Utility/TeeJee.FileSystem.vala:82 msgid "Failed to delete file" msgstr "" -#: src/Utility/TeeJee.FileSystem.vala:162 +#: src/Utility/TeeJee.FileSystem.vala:108 msgid "Failed to read file" msgstr "" -#: src/Utility/TeeJee.FileSystem.vala:187 -#: src/Utility/TeeJee.FileSystem.vala:190 +#: src/Utility/TeeJee.FileSystem.vala:135 +#: src/Utility/TeeJee.FileSystem.vala:138 msgid "File saved" msgstr "" -#: src/Utility/TeeJee.FileSystem.vala:197 +#: src/Utility/TeeJee.FileSystem.vala:147 msgid "Failed to write file" msgstr "" -#: src/Utility/TeeJee.FileSystem.vala:210 -#: src/Utility/TeeJee.FileSystem.vala:213 +#: src/Utility/TeeJee.FileSystem.vala:160 +#: src/Utility/TeeJee.FileSystem.vala:163 msgid "File copied" msgstr "" -#: src/Utility/TeeJee.FileSystem.vala:221 +#: src/Utility/TeeJee.FileSystem.vala:171 msgid "Failed to copy file" msgstr "" -#: src/Utility/TeeJee.FileSystem.vala:231 -#: src/Utility/TeeJee.FileSystem.vala:538 +#: src/Utility/TeeJee.FileSystem.vala:181 msgid "File not found" msgstr "" -#: src/Utility/TeeJee.FileSystem.vala:245 -#: src/Utility/TeeJee.FileSystem.vala:248 +#: src/Utility/TeeJee.FileSystem.vala:195 +#: src/Utility/TeeJee.FileSystem.vala:198 msgid "File moved" msgstr "" -#: src/Utility/TeeJee.FileSystem.vala:253 +#: src/Utility/TeeJee.FileSystem.vala:203 msgid "Failed to move file" msgstr "" -#: src/Utility/TeeJee.FileSystem.vala:349 -#: src/Utility/TeeJee.FileSystem.vala:352 -#: src/Utility/TeeJee.FileSystem.vala:378 +#: src/Utility/TeeJee.FileSystem.vala:258 +#: src/Utility/TeeJee.FileSystem.vala:261 msgid "Created directory" msgstr "" -#: src/Utility/TeeJee.FileSystem.vala:359 +#: src/Utility/TeeJee.FileSystem.vala:268 msgid "Failed to create dir" msgstr "" -#: src/Utility/TeeJee.FileSystem.vala:375 -msgid "Deleted directory" -msgstr "" - -#: src/Utility/TeeJee.FileSystem.vala:509 -msgid "Dir not found" +#: src/Utility/TeeJee.FileSystem.vala:283 +msgid "Deleted" msgstr "" -#: src/Utility/TeeJee.FileSystem.vala:662 -#: src/Utility/TeeJee.FileSystem.vala:711 -msgid "File is missing" +#: src/Utility/TeeJee.FileSystem.vala:284 +msgid "FAILED deleting" msgstr "" #: src/Utility/TeeJee.Logging.vala:89 @@ -562,6 +551,6 @@ msgstr "" msgid "W" msgstr "" -#: src/Utility/TeeJee.Process.vala:506 +#: src/Utility/TeeJee.Process.vala:507 msgid "Stopped" msgstr "" diff --git a/po/nl.po b/po/nl.po index 4b59ec78..d29191fe 100644 --- a/po/nl.po +++ b/po/nl.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu 2.2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-07 03:35-0400\n" +"POT-Creation-Date: 2020-05-09 07:19-0400\n" "PO-Revision-Date: 2017-04-30 11:50+0200\n" "Last-Translator: Heimen Stoffels \n" "Language-Team: \n" @@ -27,107 +27,107 @@ msgstr "Distributie" msgid "Architecture" msgstr "Systeemarchitectuur" -#: src/Common/LinuxKernel.vala:257 +#: src/Common/LinuxKernel.vala:231 msgid "Index is stale" msgstr "De index is verouderd" -#: src/Common/LinuxKernel.vala:260 +#: src/Common/LinuxKernel.vala:234 msgid "Index is fresh" msgstr "De index is up-to-date" -#: src/Common/LinuxKernel.vala:365 +#: src/Common/LinuxKernel.vala:339 msgid "Fetching index..." msgstr "" -#: src/Common/LinuxKernel.vala:408 +#: src/Common/LinuxKernel.vala:382 msgid "Fetching index from kernel.ubuntu.com..." msgstr "Bezig met ophalen van index van kernel.ubuntu.com..." -#: src/Common/LinuxKernel.vala:727 +#: src/Common/LinuxKernel.vala:693 #, fuzzy msgid "Could not find running kernel in list!" msgstr "De vereiste versie kan niet worden gevonden" -#: src/Common/LinuxKernel.vala:733 +#: src/Common/LinuxKernel.vala:699 #, fuzzy msgid "Could not find any kernels to remove" msgstr "Selecteer de te verwijderen kernels" -#: src/Common/LinuxKernel.vala:742 +#: src/Common/LinuxKernel.vala:708 msgid "The following kernels will be removed:" msgstr "" -#: src/Common/LinuxKernel.vala:749 +#: src/Common/LinuxKernel.vala:715 msgid "Continue ?" msgstr "" -#: src/Common/LinuxKernel.vala:777 src/Console/AppConsole.vala:361 +#: src/Common/LinuxKernel.vala:743 src/Console/AppConsole.vala:363 msgid "Latest update" msgstr "" -#: src/Common/LinuxKernel.vala:788 src/Console/AppConsole.vala:368 +#: src/Common/LinuxKernel.vala:754 src/Console/AppConsole.vala:370 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:796 src/Console/AppConsole.vala:373 -#: src/Console/AppConsole.vala:421 +#: src/Common/LinuxKernel.vala:762 src/Console/AppConsole.vala:375 +#: src/Console/AppConsole.vala:419 msgid "No updates found" msgstr "Geen updates gevonden" -#: src/Common/LinuxKernel.vala:806 +#: src/Common/LinuxKernel.vala:772 #, c-format -msgid "Install Linux v%s ? (y/n): " +msgid "Install Kernel Version %s ? (y/n): " msgstr "" -#: src/Common/LinuxKernel.vala:1072 +#: src/Common/LinuxKernel.vala:1038 msgid "Packages Available" msgstr "Beschikbare pakketten" -#: src/Common/LinuxKernel.vala:1080 +#: src/Common/LinuxKernel.vala:1046 msgid "Packages Installed" msgstr "Geïnstalleerde pakketten" -#: src/Common/LinuxKernel.vala:1164 +#: src/Common/LinuxKernel.vala:1130 msgid "Available Kernels" msgstr "Beschikbare kernels" -#: src/Common/LinuxKernel.vala:1181 src/Gtk/MainWindow.vala:208 +#: src/Common/LinuxKernel.vala:1147 src/Gtk/MainWindow.vala:186 msgid "Installed" msgstr "Geïnstalleerd" -#: src/Common/LinuxKernel.vala:1181 src/Gtk/MainWindow.vala:208 +#: src/Common/LinuxKernel.vala:1147 src/Gtk/MainWindow.vala:186 msgid "Running" msgstr "Bezig met draaien" -#: src/Common/LinuxKernel.vala:1210 +#: src/Common/LinuxKernel.vala:1182 msgid "Downloading" msgstr "Bezig met downloaden" -#: src/Common/LinuxKernel.vala:1229 +#: src/Common/LinuxKernel.vala:1201 #: src/Utility/Gtk/CustomMessageDialog.vala:148 #: src/Utility/Gtk/CustomMessageDialog.vala:152 msgid "OK" msgstr "Oké" -#: src/Common/LinuxKernel.vala:1238 +#: src/Common/LinuxKernel.vala:1207 msgid "ERROR" msgstr "FOUT" -#: src/Common/LinuxKernel.vala:1252 src/Gtk/MainWindow.vala:681 +#: src/Common/LinuxKernel.vala:1221 src/Gtk/MainWindow.vala:653 msgid "This kernel is already installed." msgstr "Deze kernel is al geïnstalleerd." -#: src/Common/LinuxKernel.vala:1283 +#: src/Common/LinuxKernel.vala:1252 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "De installatie is voltooid. Herstart de computer om de nieuwe kernel te " "gebruiken." -#: src/Common/LinuxKernel.vala:1286 +#: src/Common/LinuxKernel.vala:1255 msgid "Installation completed with errors" msgstr "De installatie is foutloos voltooid" -#: src/Common/LinuxKernel.vala:1302 +#: src/Common/LinuxKernel.vala:1271 msgid "" "Selected kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -136,19 +136,19 @@ msgstr "" "verwijderd.\n" " Installeer een andere kernel voordat u deze verwijdert." -#: src/Common/LinuxKernel.vala:1307 +#: src/Common/LinuxKernel.vala:1276 msgid "Preparing to remove selected kernels" msgstr "Bezig met voorbereiden van verwijderen van geselecteerde kernels" -#: src/Common/LinuxKernel.vala:1339 src/Common/LinuxKernel.vala:1392 +#: src/Common/LinuxKernel.vala:1308 src/Common/LinuxKernel.vala:1361 msgid "Un-install completed" msgstr "Deïnstalleren voltooid" -#: src/Common/LinuxKernel.vala:1342 src/Common/LinuxKernel.vala:1395 +#: src/Common/LinuxKernel.vala:1311 src/Common/LinuxKernel.vala:1364 msgid "Un-install completed with errors" msgstr "Deïnstalleren voltooid, maar met fouten" -#: src/Common/LinuxKernel.vala:1355 +#: src/Common/LinuxKernel.vala:1324 msgid "" "This kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -156,237 +156,225 @@ msgstr "" "Deze kernel is momenteel in gebruik en kan daarom niet worden verwijderd.\n" " Installeer een andere kernel voordat u deze verwijdert." -#: src/Common/Main.vala:106 +#: src/Common/Main.vala:107 msgid "Commands listed below are not available on this system" msgstr "De onderstaande opdrachten zijn niet beschikbaar op dit systeem" -#: src/Common/Main.vala:107 +#: src/Common/Main.vala:108 msgid "Please install required packages and try again" msgstr "Installeer de vereiste pakketten en probeer het opnieuw" -#: src/Common/Package.vala:126 src/Common/Package.vala:188 +#: src/Common/Package.vala:131 src/Common/Package.vala:193 #, c-format msgid "File not found: %s" msgstr "Bestand niet gevonden: %s" -#: src/Console/AppConsole.vala:80 src/Gtk/AppGtk.vala:174 +#: src/Console/AppConsole.vala:81 src/Gtk/AppGtk.vala:171 msgid "Syntax" msgstr "Syntax" -#: src/Console/AppConsole.vala:82 +#: src/Console/AppConsole.vala:83 msgid "Commands" msgstr "" -#: src/Console/AppConsole.vala:84 +#: src/Console/AppConsole.vala:85 msgid "Check for kernel updates" msgstr "Controleren op kernel-updates" -#: src/Console/AppConsole.vala:85 +#: src/Console/AppConsole.vala:86 #, fuzzy msgid "Check for kernel updates and notify current user" msgstr "Controleren op kernel-updates" -#: src/Console/AppConsole.vala:86 +#: src/Console/AppConsole.vala:87 msgid "List all available mainline kernels" msgstr "Alle beschikbare mainline-kernels weergeven" -#: src/Console/AppConsole.vala:87 +#: src/Console/AppConsole.vala:88 #, fuzzy msgid "List installed kernels" msgstr "Alle beschikbare mainline-kernels weergeven" -#: src/Console/AppConsole.vala:88 +#: src/Console/AppConsole.vala:89 #, fuzzy msgid "Install latest mainline kernel" msgstr "Opgegeven mainline-kernel installeren" -#: src/Console/AppConsole.vala:89 +#: src/Console/AppConsole.vala:90 msgid "Install latest point update for current series" msgstr "" -#: src/Console/AppConsole.vala:90 +#: src/Console/AppConsole.vala:91 msgid "Install specified mainline kernel" msgstr "Opgegeven mainline-kernel installeren" -#: src/Console/AppConsole.vala:91 +#: src/Console/AppConsole.vala:92 #, fuzzy msgid "Remove specified kernel" msgstr "Opgegeven mainline-kernel verwijderen" -#: src/Console/AppConsole.vala:92 src/Gtk/MainWindow.vala:422 +#: src/Console/AppConsole.vala:93 src/Gtk/MainWindow.vala:396 msgid "Remove installed kernels older than running kernel" msgstr "" -#: src/Console/AppConsole.vala:93 +#: src/Console/AppConsole.vala:94 msgid "Download packages for specified kernel" msgstr "Pakketten downloaden voor opgegeven kernel" -#: src/Console/AppConsole.vala:94 src/Console/AppConsole.vala:99 +#: src/Console/AppConsole.vala:95 src/Console/AppConsole.vala:100 msgid "Remove files from application cache" msgstr "Bestanden verwijderen uit applicatie-cache" -#: src/Console/AppConsole.vala:95 +#: src/Console/AppConsole.vala:96 #, fuzzy msgid "Show unstable and RC releases" msgstr "Instabiele en RC-uitgaven verbergen" -#: src/Console/AppConsole.vala:97 src/Gtk/AppGtk.vala:176 +#: src/Console/AppConsole.vala:98 src/Gtk/AppGtk.vala:173 msgid "Options" msgstr "Opties" -#: src/Console/AppConsole.vala:100 +#: src/Console/AppConsole.vala:101 msgid "Enable verbose debugging output" msgstr "" -#: src/Console/AppConsole.vala:101 +#: src/Console/AppConsole.vala:102 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "" -#: src/Console/AppConsole.vala:102 +#: src/Console/AppConsole.vala:103 msgid "Override user" msgstr "" -#: src/Console/AppConsole.vala:115 +#: src/Console/AppConsole.vala:116 msgid "Admin access is required for running this application." msgstr "" "U heeft administrator-rechten nodig om deze applicatie te kunnen draaien." -#: src/Console/AppConsole.vala:118 +#: src/Console/AppConsole.vala:119 #, fuzzy msgid "Run the application as admin with pkexec or sudo." msgstr "Draai de applicatie als root of m.b.v. gksu/sudo." -#: src/Console/AppConsole.vala:198 src/Gtk/AppGtk.vala:161 +#: src/Console/AppConsole.vala:200 src/Gtk/AppGtk.vala:158 msgid "Unknown option" msgstr "Onbekende optie" -#: src/Console/AppConsole.vala:200 src/Console/AppConsole.vala:314 -#: src/Console/AppConsole.vala:343 +#: src/Console/AppConsole.vala:202 src/Console/AppConsole.vala:315 +#: src/Console/AppConsole.vala:345 msgid "Run '" msgstr "" -#: src/Console/AppConsole.vala:205 src/Gtk/AppGtk.vala:109 -msgid "Cache" -msgstr "" - -#: src/Console/AppConsole.vala:206 src/Gtk/AppGtk.vala:110 -msgid "Temp" -msgstr "" - -#: src/Console/AppConsole.vala:286 src/Console/AppConsole.vala:323 +#: src/Console/AppConsole.vala:284 src/Console/AppConsole.vala:324 msgid "No kernels specified" msgstr "" -#: src/Console/AppConsole.vala:292 +#: src/Console/AppConsole.vala:290 msgid "Multiple kernels selected for installation. Select only one." msgstr "" "Er zijn meerdere te installeren kernels geselecteerd. Selecteer er slechts " "één." -#: src/Console/AppConsole.vala:310 src/Gtk/MainWindow.vala:100 +#: src/Console/AppConsole.vala:311 src/Gtk/MainWindow.vala:100 msgid "Could not find requested version" msgstr "De vereiste versie kan niet worden gevonden" -#: src/Console/AppConsole.vala:342 +#: src/Console/AppConsole.vala:344 msgid "Command not specified" msgstr "" -#: src/Console/AppConsole.vala:391 src/Console/AppConsole.vala:408 -#, c-format -msgid "Linux v%s Available" -msgstr "" - -#: src/Console/AppConsole.vala:392 -msgid "Major update available for installation" -msgstr "" - -#: src/Console/AppConsole.vala:409 -msgid "Minor update available for installation" -msgstr "" +#: src/Console/AppConsole.vala:393 src/Console/AppConsole.vala:408 +#, fuzzy, c-format +msgid "Kernel %s Available" +msgstr "Beschikbare pakketten" -#: src/Gtk/AppGtk.vala:178 +#: src/Gtk/AppGtk.vala:175 msgid "Print debug information" msgstr "Foutopsporingsinformatie printen" -#: src/Gtk/AppGtk.vala:179 +#: src/Gtk/AppGtk.vala:176 msgid "Show all options" msgstr "Alle opties weergeven" -#: src/Gtk/MainWindow.vala:150 +#: src/Gtk/MainWindow.vala:146 msgid "Kernel" msgstr "Kernel" -#: src/Gtk/MainWindow.vala:179 -msgid "Version" -msgstr "Versie" - -#: src/Gtk/MainWindow.vala:196 +#: src/Gtk/MainWindow.vala:174 msgid "Status" msgstr "Status" -#: src/Gtk/MainWindow.vala:341 +#: src/Gtk/MainWindow.vala:319 msgid "Refresh" msgstr "Verversen" -#: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:555 -#: src/Gtk/MainWindow.vala:686 src/Utility/TeeJee.System.vala:281 +#: src/Gtk/MainWindow.vala:326 src/Gtk/MainWindow.vala:527 +#: src/Gtk/MainWindow.vala:658 src/Utility/TeeJee.System.vala:146 msgid "Internet connection is not active" msgstr "U bent niet verbonden met het internet" -#: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:555 -#: src/Gtk/MainWindow.vala:686 +#: src/Gtk/MainWindow.vala:326 src/Gtk/MainWindow.vala:527 +#: src/Gtk/MainWindow.vala:658 msgid "No Internet" msgstr "Geen internetverbinding" -#: src/Gtk/MainWindow.vala:357 +#: src/Gtk/MainWindow.vala:335 msgid "Install" msgstr "Installeren" -#: src/Gtk/MainWindow.vala:366 +#: src/Gtk/MainWindow.vala:344 msgid "Multiple Kernels Selected" msgstr "Meerdere kernels geselecteerd" -#: src/Gtk/MainWindow.vala:366 +#: src/Gtk/MainWindow.vala:344 msgid "Select a single kernel to install" msgstr "Selecteer een enkele te installeren kernel" -#: src/Gtk/MainWindow.vala:369 src/Gtk/MainWindow.vala:380 +#: src/Gtk/MainWindow.vala:347 src/Gtk/MainWindow.vala:358 msgid "Not Selected" msgstr "Niet geselecteerd" -#: src/Gtk/MainWindow.vala:369 +#: src/Gtk/MainWindow.vala:347 msgid "Select the kernel to install" msgstr "Selecteer de te installeren kernel" -#: src/Gtk/MainWindow.vala:374 +#: src/Gtk/MainWindow.vala:352 msgid "Remove" msgstr "Verwijderen" -#: src/Gtk/MainWindow.vala:380 +#: src/Gtk/MainWindow.vala:358 msgid "Select the kernels to remove" msgstr "Selecteer de te verwijderen kernels" -#: src/Gtk/MainWindow.vala:421 +#: src/Gtk/MainWindow.vala:395 msgid "Purge" msgstr "" -#: src/Gtk/MainWindow.vala:458 +#: src/Gtk/MainWindow.vala:429 msgid "Changes" msgstr "Wijzigingen" -#: src/Gtk/MainWindow.vala:469 src/Gtk/SettingsDialog.vala:52 +#: src/Gtk/MainWindow.vala:440 src/Gtk/SettingsDialog.vala:52 msgid "Settings" msgstr "Instellingen" -#: src/Gtk/MainWindow.vala:490 +#: src/Gtk/MainWindow.vala:461 msgid "About" msgstr "Over" -#: src/Gtk/MainWindow.vala:539 +#: src/Gtk/MainWindow.vala:505 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Kernel-upgradehulpmiddel voor op Ubuntu-gebaseerde distributies" -#: src/Gtk/MainWindow.vala:574 +#: src/Gtk/MainWindow.vala:506 +msgid "Forked:" +msgstr "" + +#: src/Gtk/MainWindow.vala:506 +msgid "Original:" +msgstr "" + +#: src/Gtk/MainWindow.vala:546 msgid "Refreshing..." msgstr "Bezig met verversen..." @@ -411,49 +399,57 @@ msgstr "Melding weergeven als er een puntupdate beschikbaar is" msgid "Show notification bubble on desktop" msgstr "Bureaubladmelding weergeven" -#: src/Gtk/SettingsDialog.vala:105 +#: src/Gtk/SettingsDialog.vala:102 +msgid "(Allowing intervals in seconds for --debug)" +msgstr "" + +#: src/Gtk/SettingsDialog.vala:112 msgid "Check every" msgstr "Controleer elke" -#: src/Gtk/SettingsDialog.vala:136 +#: src/Gtk/SettingsDialog.vala:145 msgid "Hour(s)" msgstr "uur" -#: src/Gtk/SettingsDialog.vala:138 +#: src/Gtk/SettingsDialog.vala:147 msgid "Day(s)" msgstr "dag(en)" -#: src/Gtk/SettingsDialog.vala:140 +#: src/Gtk/SettingsDialog.vala:149 msgid "Week(s)" msgstr "we(e)k(en)" -#: src/Gtk/SettingsDialog.vala:145 +#: src/Gtk/SettingsDialog.vala:152 +msgid "Second(s)" +msgstr "" + +#: src/Gtk/SettingsDialog.vala:158 msgid "Display" msgstr "Weergave" -#: src/Gtk/SettingsDialog.vala:153 +#: src/Gtk/SettingsDialog.vala:166 msgid "Hide unstable and RC releases" msgstr "Instabiele en RC-uitgaven verbergen" -#: src/Gtk/SettingsDialog.vala:167 +#: src/Gtk/SettingsDialog.vala:180 msgid "Show N previous major versions " msgstr "" -#: src/Gtk/SettingsDialog.vala:182 +#: src/Gtk/SettingsDialog.vala:195 msgid "Other" msgstr "" -#: src/Gtk/SettingsDialog.vala:190 +#: src/Gtk/SettingsDialog.vala:203 #, fuzzy msgid "Skip internet connection check" msgstr "U bent niet verbonden met het internet" -#: src/Gtk/SettingsDialog.vala:203 +#: src/Gtk/SettingsDialog.vala:216 #, fuzzy msgid "Internet connection timeout in " msgstr "U bent niet verbonden met het internet" -#: src/Gtk/SettingsDialog.vala:217 +#: src/Gtk/SettingsDialog.vala:230 msgid "seconds" msgstr "" @@ -478,21 +474,22 @@ msgid "Contributions" msgstr "Bijdragen" #: src/Utility/Gtk/AboutWindow.vala:329 -msgid "Third Party Tools" -msgstr "Externe hulpmiddelen" - -#: src/Utility/Gtk/AboutWindow.vala:337 msgid "Artists" msgstr "Artiesten" -#: src/Utility/Gtk/AboutWindow.vala:345 +#: src/Utility/Gtk/AboutWindow.vala:337 msgid "Translators" msgstr "Vertalers" -#: src/Utility/Gtk/AboutWindow.vala:353 +#: src/Utility/Gtk/AboutWindow.vala:345 msgid "Documenters" msgstr "Documenteerders" +#: src/Utility/Gtk/AboutWindow.vala:353 +#, fuzzy +msgid "Third Party Inclusions" +msgstr "Externe hulpmiddelen" + #: src/Utility/Gtk/CustomMessageDialog.vala:157 msgid "Yes" msgstr "" @@ -509,72 +506,66 @@ msgstr "Fout" msgid "Missing Icon" msgstr "Ontbrekend pictogram" -#: src/Utility/TeeJee.FileSystem.vala:97 src/Utility/TeeJee.FileSystem.vala:100 +#: src/Utility/TeeJee.FileSystem.vala:73 src/Utility/TeeJee.FileSystem.vala:76 msgid "File deleted" msgstr "Bestand verwijderd" -#: src/Utility/TeeJee.FileSystem.vala:106 +#: src/Utility/TeeJee.FileSystem.vala:82 msgid "Failed to delete file" msgstr "Verwijderen van map is mislukt" -#: src/Utility/TeeJee.FileSystem.vala:162 +#: src/Utility/TeeJee.FileSystem.vala:108 msgid "Failed to read file" msgstr "Lezen van bestand is mislukt" -#: src/Utility/TeeJee.FileSystem.vala:187 -#: src/Utility/TeeJee.FileSystem.vala:190 +#: src/Utility/TeeJee.FileSystem.vala:135 +#: src/Utility/TeeJee.FileSystem.vala:138 msgid "File saved" msgstr "Bestand opgeslagen" -#: src/Utility/TeeJee.FileSystem.vala:197 +#: src/Utility/TeeJee.FileSystem.vala:147 msgid "Failed to write file" msgstr "Schrijven naar bestand is mislukt" -#: src/Utility/TeeJee.FileSystem.vala:210 -#: src/Utility/TeeJee.FileSystem.vala:213 +#: src/Utility/TeeJee.FileSystem.vala:160 +#: src/Utility/TeeJee.FileSystem.vala:163 msgid "File copied" msgstr "Bestand gekopieerd" -#: src/Utility/TeeJee.FileSystem.vala:221 +#: src/Utility/TeeJee.FileSystem.vala:171 msgid "Failed to copy file" msgstr "Kopiëren van bestand is mislukt" -#: src/Utility/TeeJee.FileSystem.vala:231 -#: src/Utility/TeeJee.FileSystem.vala:538 +#: src/Utility/TeeJee.FileSystem.vala:181 msgid "File not found" msgstr "Bestand niet gevonden" -#: src/Utility/TeeJee.FileSystem.vala:245 -#: src/Utility/TeeJee.FileSystem.vala:248 +#: src/Utility/TeeJee.FileSystem.vala:195 +#: src/Utility/TeeJee.FileSystem.vala:198 msgid "File moved" msgstr "Bestand verplaatst" -#: src/Utility/TeeJee.FileSystem.vala:253 +#: src/Utility/TeeJee.FileSystem.vala:203 msgid "Failed to move file" msgstr "Verplaatsen van bestand is mislukt" -#: src/Utility/TeeJee.FileSystem.vala:349 -#: src/Utility/TeeJee.FileSystem.vala:352 -#: src/Utility/TeeJee.FileSystem.vala:378 +#: src/Utility/TeeJee.FileSystem.vala:258 +#: src/Utility/TeeJee.FileSystem.vala:261 msgid "Created directory" msgstr "Map gecreëerd" -#: src/Utility/TeeJee.FileSystem.vala:359 +#: src/Utility/TeeJee.FileSystem.vala:268 msgid "Failed to create dir" msgstr "Creëren van map is mislukt" -#: src/Utility/TeeJee.FileSystem.vala:375 -msgid "Deleted directory" -msgstr "Map verwijderd" - -#: src/Utility/TeeJee.FileSystem.vala:509 -msgid "Dir not found" -msgstr "Map niet gevonden" +#: src/Utility/TeeJee.FileSystem.vala:283 +#, fuzzy +msgid "Deleted" +msgstr "Bestand verwijderd" -#: src/Utility/TeeJee.FileSystem.vala:662 -#: src/Utility/TeeJee.FileSystem.vala:711 -msgid "File is missing" -msgstr "Bestand ontbreekt" +#: src/Utility/TeeJee.FileSystem.vala:284 +msgid "FAILED deleting" +msgstr "" #: src/Utility/TeeJee.Logging.vala:89 msgid "E" @@ -584,6 +575,6 @@ msgstr "E" msgid "W" msgstr "W" -#: src/Utility/TeeJee.Process.vala:506 +#: src/Utility/TeeJee.Process.vala:507 msgid "Stopped" msgstr "Gestopt" diff --git a/po/pl.po b/po/pl.po index 3a3f6265..4871c583 100644 --- a/po/pl.po +++ b/po/pl.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-07 03:35-0400\n" +"POT-Creation-Date: 2020-05-09 07:19-0400\n" "PO-Revision-Date: 2017-08-12 15:26+0200\n" "Last-Translator: Waldemar Konik \n" "Language-Team: Polish\n" @@ -25,107 +25,107 @@ msgstr "Dystrybucja" msgid "Architecture" msgstr "Architektura systemu" -#: src/Common/LinuxKernel.vala:257 +#: src/Common/LinuxKernel.vala:231 msgid "Index is stale" msgstr "Indeks jest nieaktualny" -#: src/Common/LinuxKernel.vala:260 +#: src/Common/LinuxKernel.vala:234 msgid "Index is fresh" msgstr "Indeks jest aktualny" -#: src/Common/LinuxKernel.vala:365 +#: src/Common/LinuxKernel.vala:339 msgid "Fetching index..." msgstr "" -#: src/Common/LinuxKernel.vala:408 +#: src/Common/LinuxKernel.vala:382 msgid "Fetching index from kernel.ubuntu.com..." msgstr "Pobieranie indeksu z kernel.ubuntu.com..." -#: src/Common/LinuxKernel.vala:727 +#: src/Common/LinuxKernel.vala:693 #, fuzzy msgid "Could not find running kernel in list!" msgstr "Nie można odnaleźć żądanej wersji" -#: src/Common/LinuxKernel.vala:733 +#: src/Common/LinuxKernel.vala:699 #, fuzzy msgid "Could not find any kernels to remove" msgstr "Wybierz jądro do usunięcia" -#: src/Common/LinuxKernel.vala:742 +#: src/Common/LinuxKernel.vala:708 msgid "The following kernels will be removed:" msgstr "" -#: src/Common/LinuxKernel.vala:749 +#: src/Common/LinuxKernel.vala:715 msgid "Continue ?" msgstr "" -#: src/Common/LinuxKernel.vala:777 src/Console/AppConsole.vala:361 +#: src/Common/LinuxKernel.vala:743 src/Console/AppConsole.vala:363 msgid "Latest update" msgstr "" -#: src/Common/LinuxKernel.vala:788 src/Console/AppConsole.vala:368 +#: src/Common/LinuxKernel.vala:754 src/Console/AppConsole.vala:370 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:796 src/Console/AppConsole.vala:373 -#: src/Console/AppConsole.vala:421 +#: src/Common/LinuxKernel.vala:762 src/Console/AppConsole.vala:375 +#: src/Console/AppConsole.vala:419 msgid "No updates found" msgstr "Nie znaleziono aktualizacji" -#: src/Common/LinuxKernel.vala:806 +#: src/Common/LinuxKernel.vala:772 #, c-format -msgid "Install Linux v%s ? (y/n): " +msgid "Install Kernel Version %s ? (y/n): " msgstr "" -#: src/Common/LinuxKernel.vala:1072 +#: src/Common/LinuxKernel.vala:1038 msgid "Packages Available" msgstr "Dostępne pakiety" -#: src/Common/LinuxKernel.vala:1080 +#: src/Common/LinuxKernel.vala:1046 msgid "Packages Installed" msgstr "Pakiety zainstalowane" -#: src/Common/LinuxKernel.vala:1164 +#: src/Common/LinuxKernel.vala:1130 msgid "Available Kernels" msgstr "Dostępne jądra" -#: src/Common/LinuxKernel.vala:1181 src/Gtk/MainWindow.vala:208 +#: src/Common/LinuxKernel.vala:1147 src/Gtk/MainWindow.vala:186 msgid "Installed" msgstr "Zainstalowany" -#: src/Common/LinuxKernel.vala:1181 src/Gtk/MainWindow.vala:208 +#: src/Common/LinuxKernel.vala:1147 src/Gtk/MainWindow.vala:186 msgid "Running" msgstr "Uruchomiony" -#: src/Common/LinuxKernel.vala:1210 +#: src/Common/LinuxKernel.vala:1182 msgid "Downloading" msgstr "Pobieranie" -#: src/Common/LinuxKernel.vala:1229 +#: src/Common/LinuxKernel.vala:1201 #: src/Utility/Gtk/CustomMessageDialog.vala:148 #: src/Utility/Gtk/CustomMessageDialog.vala:152 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:1238 +#: src/Common/LinuxKernel.vala:1207 msgid "ERROR" msgstr "BŁĄD" -#: src/Common/LinuxKernel.vala:1252 src/Gtk/MainWindow.vala:681 +#: src/Common/LinuxKernel.vala:1221 src/Gtk/MainWindow.vala:653 msgid "This kernel is already installed." msgstr "To jądro jest już zainstalowane." -#: src/Common/LinuxKernel.vala:1283 +#: src/Common/LinuxKernel.vala:1252 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "Instalacja zakończona. Aby korzystać z nowego jądra, konieczne jest ponowne " "uruchomienie." -#: src/Common/LinuxKernel.vala:1286 +#: src/Common/LinuxKernel.vala:1255 msgid "Installation completed with errors" msgstr "Instalacja zakończona z błędami" -#: src/Common/LinuxKernel.vala:1302 +#: src/Common/LinuxKernel.vala:1271 msgid "" "Selected kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -133,19 +133,19 @@ msgstr "" "Wybrane jądro aktualnie działa i nie może zostać usunięte.\n" " Zainstaluj inne jądro przed usunięciem tego." -#: src/Common/LinuxKernel.vala:1307 +#: src/Common/LinuxKernel.vala:1276 msgid "Preparing to remove selected kernels" msgstr "Przygotowanie do usunięcia wybranych jąder" -#: src/Common/LinuxKernel.vala:1339 src/Common/LinuxKernel.vala:1392 +#: src/Common/LinuxKernel.vala:1308 src/Common/LinuxKernel.vala:1361 msgid "Un-install completed" msgstr "De-instalacja zakończona" -#: src/Common/LinuxKernel.vala:1342 src/Common/LinuxKernel.vala:1395 +#: src/Common/LinuxKernel.vala:1311 src/Common/LinuxKernel.vala:1364 msgid "Un-install completed with errors" msgstr "De-instalacja zakończona z błędami" -#: src/Common/LinuxKernel.vala:1355 +#: src/Common/LinuxKernel.vala:1324 msgid "" "This kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -153,234 +153,222 @@ msgstr "" "To jądro aktualnie działa i nie może zostać usunięte.\n" " Zainstaluj inne jądro przed usunięciem tego." -#: src/Common/Main.vala:106 +#: src/Common/Main.vala:107 msgid "Commands listed below are not available on this system" msgstr "Poniższe polecenia nie są dostępne na tym systemie" -#: src/Common/Main.vala:107 +#: src/Common/Main.vala:108 msgid "Please install required packages and try again" msgstr "Zainstaluj wymagane pakiety i spróbuj ponownie" -#: src/Common/Package.vala:126 src/Common/Package.vala:188 +#: src/Common/Package.vala:131 src/Common/Package.vala:193 #, c-format msgid "File not found: %s" msgstr "Nie odnaleziono pliku: %s" -#: src/Console/AppConsole.vala:80 src/Gtk/AppGtk.vala:174 +#: src/Console/AppConsole.vala:81 src/Gtk/AppGtk.vala:171 msgid "Syntax" msgstr "Składnia" -#: src/Console/AppConsole.vala:82 +#: src/Console/AppConsole.vala:83 msgid "Commands" msgstr "" -#: src/Console/AppConsole.vala:84 +#: src/Console/AppConsole.vala:85 msgid "Check for kernel updates" msgstr "Sprawdź nowe wersje jądra" -#: src/Console/AppConsole.vala:85 +#: src/Console/AppConsole.vala:86 #, fuzzy msgid "Check for kernel updates and notify current user" msgstr "Sprawdź nowe wersje jądra" -#: src/Console/AppConsole.vala:86 +#: src/Console/AppConsole.vala:87 msgid "List all available mainline kernels" msgstr "Pokaż wszystkie dostępne jądra" -#: src/Console/AppConsole.vala:87 +#: src/Console/AppConsole.vala:88 #, fuzzy msgid "List installed kernels" msgstr "Pokaż wszystkie dostępne jądra" -#: src/Console/AppConsole.vala:88 +#: src/Console/AppConsole.vala:89 #, fuzzy msgid "Install latest mainline kernel" msgstr "Zainstaluj wybrane jądro" -#: src/Console/AppConsole.vala:89 +#: src/Console/AppConsole.vala:90 msgid "Install latest point update for current series" msgstr "" -#: src/Console/AppConsole.vala:90 +#: src/Console/AppConsole.vala:91 msgid "Install specified mainline kernel" msgstr "Zainstaluj wybrane jądro" -#: src/Console/AppConsole.vala:91 +#: src/Console/AppConsole.vala:92 #, fuzzy msgid "Remove specified kernel" msgstr "Usuń wybrane jądro" -#: src/Console/AppConsole.vala:92 src/Gtk/MainWindow.vala:422 +#: src/Console/AppConsole.vala:93 src/Gtk/MainWindow.vala:396 msgid "Remove installed kernels older than running kernel" msgstr "" -#: src/Console/AppConsole.vala:93 +#: src/Console/AppConsole.vala:94 msgid "Download packages for specified kernel" msgstr "Pobierz pakiety dla wybranego jądra" -#: src/Console/AppConsole.vala:94 src/Console/AppConsole.vala:99 +#: src/Console/AppConsole.vala:95 src/Console/AppConsole.vala:100 msgid "Remove files from application cache" msgstr "Usuń pliki z pamięci podręcznej aplikacji" -#: src/Console/AppConsole.vala:95 +#: src/Console/AppConsole.vala:96 #, fuzzy msgid "Show unstable and RC releases" msgstr "Ukryj wydania niestabilne i RC" -#: src/Console/AppConsole.vala:97 src/Gtk/AppGtk.vala:176 +#: src/Console/AppConsole.vala:98 src/Gtk/AppGtk.vala:173 msgid "Options" msgstr "Opcje" -#: src/Console/AppConsole.vala:100 +#: src/Console/AppConsole.vala:101 msgid "Enable verbose debugging output" msgstr "" -#: src/Console/AppConsole.vala:101 +#: src/Console/AppConsole.vala:102 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "" -#: src/Console/AppConsole.vala:102 +#: src/Console/AppConsole.vala:103 msgid "Override user" msgstr "" -#: src/Console/AppConsole.vala:115 +#: src/Console/AppConsole.vala:116 msgid "Admin access is required for running this application." msgstr "Aby uruchomić tę aplikację niezbędne są prawa administratora." -#: src/Console/AppConsole.vala:118 +#: src/Console/AppConsole.vala:119 #, fuzzy msgid "Run the application as admin with pkexec or sudo." msgstr "Uruchom aplikację jako root albo użyj gksu/sudo." -#: src/Console/AppConsole.vala:198 src/Gtk/AppGtk.vala:161 +#: src/Console/AppConsole.vala:200 src/Gtk/AppGtk.vala:158 msgid "Unknown option" msgstr "Nieznana opcja" -#: src/Console/AppConsole.vala:200 src/Console/AppConsole.vala:314 -#: src/Console/AppConsole.vala:343 +#: src/Console/AppConsole.vala:202 src/Console/AppConsole.vala:315 +#: src/Console/AppConsole.vala:345 msgid "Run '" msgstr "" -#: src/Console/AppConsole.vala:205 src/Gtk/AppGtk.vala:109 -msgid "Cache" -msgstr "" - -#: src/Console/AppConsole.vala:206 src/Gtk/AppGtk.vala:110 -msgid "Temp" -msgstr "" - -#: src/Console/AppConsole.vala:286 src/Console/AppConsole.vala:323 +#: src/Console/AppConsole.vala:284 src/Console/AppConsole.vala:324 msgid "No kernels specified" msgstr "" -#: src/Console/AppConsole.vala:292 +#: src/Console/AppConsole.vala:290 msgid "Multiple kernels selected for installation. Select only one." msgstr "Wybrano kilka jąder do instalacji. Wybierz tylko jedno." -#: src/Console/AppConsole.vala:310 src/Gtk/MainWindow.vala:100 +#: src/Console/AppConsole.vala:311 src/Gtk/MainWindow.vala:100 msgid "Could not find requested version" msgstr "Nie można odnaleźć żądanej wersji" -#: src/Console/AppConsole.vala:342 +#: src/Console/AppConsole.vala:344 msgid "Command not specified" msgstr "" -#: src/Console/AppConsole.vala:391 src/Console/AppConsole.vala:408 -#, c-format -msgid "Linux v%s Available" -msgstr "" - -#: src/Console/AppConsole.vala:392 -msgid "Major update available for installation" -msgstr "" - -#: src/Console/AppConsole.vala:409 -msgid "Minor update available for installation" -msgstr "" +#: src/Console/AppConsole.vala:393 src/Console/AppConsole.vala:408 +#, fuzzy, c-format +msgid "Kernel %s Available" +msgstr "Dostępne pakiety" -#: src/Gtk/AppGtk.vala:178 +#: src/Gtk/AppGtk.vala:175 msgid "Print debug information" msgstr "Wypisz informacje debugujące" -#: src/Gtk/AppGtk.vala:179 +#: src/Gtk/AppGtk.vala:176 msgid "Show all options" msgstr "Pokaż wszystkie opcje" -#: src/Gtk/MainWindow.vala:150 +#: src/Gtk/MainWindow.vala:146 msgid "Kernel" msgstr "Jądro" -#: src/Gtk/MainWindow.vala:179 -msgid "Version" -msgstr "Wersja" - -#: src/Gtk/MainWindow.vala:196 +#: src/Gtk/MainWindow.vala:174 msgid "Status" msgstr "Status" -#: src/Gtk/MainWindow.vala:341 +#: src/Gtk/MainWindow.vala:319 msgid "Refresh" msgstr "Odśwież" -#: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:555 -#: src/Gtk/MainWindow.vala:686 src/Utility/TeeJee.System.vala:281 +#: src/Gtk/MainWindow.vala:326 src/Gtk/MainWindow.vala:527 +#: src/Gtk/MainWindow.vala:658 src/Utility/TeeJee.System.vala:146 msgid "Internet connection is not active" msgstr "Brak połączenia z internetem" -#: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:555 -#: src/Gtk/MainWindow.vala:686 +#: src/Gtk/MainWindow.vala:326 src/Gtk/MainWindow.vala:527 +#: src/Gtk/MainWindow.vala:658 msgid "No Internet" msgstr "Brak internetu" -#: src/Gtk/MainWindow.vala:357 +#: src/Gtk/MainWindow.vala:335 msgid "Install" msgstr "Zainstaluj" -#: src/Gtk/MainWindow.vala:366 +#: src/Gtk/MainWindow.vala:344 msgid "Multiple Kernels Selected" msgstr "Wybrano kilka jąder" -#: src/Gtk/MainWindow.vala:366 +#: src/Gtk/MainWindow.vala:344 msgid "Select a single kernel to install" msgstr "Wybierz pojedyncze jądro do instalacji" -#: src/Gtk/MainWindow.vala:369 src/Gtk/MainWindow.vala:380 +#: src/Gtk/MainWindow.vala:347 src/Gtk/MainWindow.vala:358 msgid "Not Selected" msgstr "Nie wybrany" -#: src/Gtk/MainWindow.vala:369 +#: src/Gtk/MainWindow.vala:347 msgid "Select the kernel to install" msgstr "Wybierz pojedyncze do instalacji" -#: src/Gtk/MainWindow.vala:374 +#: src/Gtk/MainWindow.vala:352 msgid "Remove" msgstr "Usuń" -#: src/Gtk/MainWindow.vala:380 +#: src/Gtk/MainWindow.vala:358 msgid "Select the kernels to remove" msgstr "Wybierz jądro do usunięcia" -#: src/Gtk/MainWindow.vala:421 +#: src/Gtk/MainWindow.vala:395 msgid "Purge" msgstr "" -#: src/Gtk/MainWindow.vala:458 +#: src/Gtk/MainWindow.vala:429 msgid "Changes" msgstr "Zmiany" -#: src/Gtk/MainWindow.vala:469 src/Gtk/SettingsDialog.vala:52 +#: src/Gtk/MainWindow.vala:440 src/Gtk/SettingsDialog.vala:52 msgid "Settings" msgstr "Ustawienia" -#: src/Gtk/MainWindow.vala:490 +#: src/Gtk/MainWindow.vala:461 msgid "About" msgstr "O programie" -#: src/Gtk/MainWindow.vala:539 +#: src/Gtk/MainWindow.vala:505 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Narzędzie uaktualniania jądra dla dystrybucji z rodziny Ubuntu" -#: src/Gtk/MainWindow.vala:574 +#: src/Gtk/MainWindow.vala:506 +msgid "Forked:" +msgstr "" + +#: src/Gtk/MainWindow.vala:506 +msgid "Original:" +msgstr "" + +#: src/Gtk/MainWindow.vala:546 msgid "Refreshing..." msgstr "Odświeżam..." @@ -405,49 +393,57 @@ msgstr "Powiadom, jeśli pojawi się wersja punktowa" msgid "Show notification bubble on desktop" msgstr "Pokaż powiadomienia na pulpicie" -#: src/Gtk/SettingsDialog.vala:105 +#: src/Gtk/SettingsDialog.vala:102 +msgid "(Allowing intervals in seconds for --debug)" +msgstr "" + +#: src/Gtk/SettingsDialog.vala:112 msgid "Check every" msgstr "Sprawdzaj co" -#: src/Gtk/SettingsDialog.vala:136 +#: src/Gtk/SettingsDialog.vala:145 msgid "Hour(s)" msgstr "Godzin(y)" -#: src/Gtk/SettingsDialog.vala:138 +#: src/Gtk/SettingsDialog.vala:147 msgid "Day(s)" msgstr "Dni" -#: src/Gtk/SettingsDialog.vala:140 +#: src/Gtk/SettingsDialog.vala:149 msgid "Week(s)" msgstr "Tygodni" -#: src/Gtk/SettingsDialog.vala:145 +#: src/Gtk/SettingsDialog.vala:152 +msgid "Second(s)" +msgstr "" + +#: src/Gtk/SettingsDialog.vala:158 msgid "Display" msgstr "Pokaż" -#: src/Gtk/SettingsDialog.vala:153 +#: src/Gtk/SettingsDialog.vala:166 msgid "Hide unstable and RC releases" msgstr "Ukryj wydania niestabilne i RC" -#: src/Gtk/SettingsDialog.vala:167 +#: src/Gtk/SettingsDialog.vala:180 msgid "Show N previous major versions " msgstr "" -#: src/Gtk/SettingsDialog.vala:182 +#: src/Gtk/SettingsDialog.vala:195 msgid "Other" msgstr "" -#: src/Gtk/SettingsDialog.vala:190 +#: src/Gtk/SettingsDialog.vala:203 #, fuzzy msgid "Skip internet connection check" msgstr "Brak połączenia z internetem" -#: src/Gtk/SettingsDialog.vala:203 +#: src/Gtk/SettingsDialog.vala:216 #, fuzzy msgid "Internet connection timeout in " msgstr "Brak połączenia z internetem" -#: src/Gtk/SettingsDialog.vala:217 +#: src/Gtk/SettingsDialog.vala:230 msgid "seconds" msgstr "" @@ -472,21 +468,22 @@ msgid "Contributions" msgstr "Wkład" #: src/Utility/Gtk/AboutWindow.vala:329 -msgid "Third Party Tools" -msgstr "Narzędzia osób trzecich" - -#: src/Utility/Gtk/AboutWindow.vala:337 msgid "Artists" msgstr "Artyści" -#: src/Utility/Gtk/AboutWindow.vala:345 +#: src/Utility/Gtk/AboutWindow.vala:337 msgid "Translators" msgstr "Tłumacze" -#: src/Utility/Gtk/AboutWindow.vala:353 +#: src/Utility/Gtk/AboutWindow.vala:345 msgid "Documenters" msgstr "Dokumentujący" +#: src/Utility/Gtk/AboutWindow.vala:353 +#, fuzzy +msgid "Third Party Inclusions" +msgstr "Narzędzia osób trzecich" + #: src/Utility/Gtk/CustomMessageDialog.vala:157 msgid "Yes" msgstr "" @@ -503,72 +500,66 @@ msgstr "Błąd" msgid "Missing Icon" msgstr "Brakująca ikona" -#: src/Utility/TeeJee.FileSystem.vala:97 src/Utility/TeeJee.FileSystem.vala:100 +#: src/Utility/TeeJee.FileSystem.vala:73 src/Utility/TeeJee.FileSystem.vala:76 msgid "File deleted" msgstr "Plik usunięty" -#: src/Utility/TeeJee.FileSystem.vala:106 +#: src/Utility/TeeJee.FileSystem.vala:82 msgid "Failed to delete file" msgstr "Nie udało się usunąć pliku" -#: src/Utility/TeeJee.FileSystem.vala:162 +#: src/Utility/TeeJee.FileSystem.vala:108 msgid "Failed to read file" msgstr "Nie udało się odczytać pliku" -#: src/Utility/TeeJee.FileSystem.vala:187 -#: src/Utility/TeeJee.FileSystem.vala:190 +#: src/Utility/TeeJee.FileSystem.vala:135 +#: src/Utility/TeeJee.FileSystem.vala:138 msgid "File saved" msgstr "Plik zapisany" -#: src/Utility/TeeJee.FileSystem.vala:197 +#: src/Utility/TeeJee.FileSystem.vala:147 msgid "Failed to write file" msgstr "Nie udało się zapisać pliku" -#: src/Utility/TeeJee.FileSystem.vala:210 -#: src/Utility/TeeJee.FileSystem.vala:213 +#: src/Utility/TeeJee.FileSystem.vala:160 +#: src/Utility/TeeJee.FileSystem.vala:163 msgid "File copied" msgstr "Plik skopiowany" -#: src/Utility/TeeJee.FileSystem.vala:221 +#: src/Utility/TeeJee.FileSystem.vala:171 msgid "Failed to copy file" msgstr "Nie udało się skopiować pliku" -#: src/Utility/TeeJee.FileSystem.vala:231 -#: src/Utility/TeeJee.FileSystem.vala:538 +#: src/Utility/TeeJee.FileSystem.vala:181 msgid "File not found" msgstr "Nie odnaleziono pliku" -#: src/Utility/TeeJee.FileSystem.vala:245 -#: src/Utility/TeeJee.FileSystem.vala:248 +#: src/Utility/TeeJee.FileSystem.vala:195 +#: src/Utility/TeeJee.FileSystem.vala:198 msgid "File moved" msgstr "Plik przeniesiony" -#: src/Utility/TeeJee.FileSystem.vala:253 +#: src/Utility/TeeJee.FileSystem.vala:203 msgid "Failed to move file" msgstr "Nie udało się przenieść pliku" -#: src/Utility/TeeJee.FileSystem.vala:349 -#: src/Utility/TeeJee.FileSystem.vala:352 -#: src/Utility/TeeJee.FileSystem.vala:378 +#: src/Utility/TeeJee.FileSystem.vala:258 +#: src/Utility/TeeJee.FileSystem.vala:261 msgid "Created directory" msgstr "Utworzono katalog" -#: src/Utility/TeeJee.FileSystem.vala:359 +#: src/Utility/TeeJee.FileSystem.vala:268 msgid "Failed to create dir" msgstr "Nie udało się utworzyć katalogu" -#: src/Utility/TeeJee.FileSystem.vala:375 -msgid "Deleted directory" -msgstr "Usunięto katalog" - -#: src/Utility/TeeJee.FileSystem.vala:509 -msgid "Dir not found" -msgstr "Katalog nie odnaleziony" +#: src/Utility/TeeJee.FileSystem.vala:283 +#, fuzzy +msgid "Deleted" +msgstr "Plik usunięty" -#: src/Utility/TeeJee.FileSystem.vala:662 -#: src/Utility/TeeJee.FileSystem.vala:711 -msgid "File is missing" -msgstr "Brak pliku" +#: src/Utility/TeeJee.FileSystem.vala:284 +msgid "FAILED deleting" +msgstr "" #: src/Utility/TeeJee.Logging.vala:89 msgid "E" @@ -578,6 +569,6 @@ msgstr "E" msgid "W" msgstr "W" -#: src/Utility/TeeJee.Process.vala:506 +#: src/Utility/TeeJee.Process.vala:507 msgid "Stopped" msgstr "Zatrzymany" diff --git a/po/ru.po b/po/ru.po index cda3c0b3..87feeeef 100644 --- a/po/ru.po +++ b/po/ru.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-07 03:35-0400\n" +"POT-Creation-Date: 2020-05-09 07:19-0400\n" "PO-Revision-Date: 2016-12-13 16:46+0300\n" "Last-Translator: Faust3000 \n" "Language-Team: Russian \n" @@ -27,109 +27,109 @@ msgstr "Дистрибутив" msgid "Architecture" msgstr "Системная архитектура" -#: src/Common/LinuxKernel.vala:257 +#: src/Common/LinuxKernel.vala:231 msgid "Index is stale" msgstr "Сведения устарели" -#: src/Common/LinuxKernel.vala:260 +#: src/Common/LinuxKernel.vala:234 msgid "Index is fresh" msgstr "Сведения актуальны" -#: src/Common/LinuxKernel.vala:365 +#: src/Common/LinuxKernel.vala:339 msgid "Fetching index..." msgstr "" -#: src/Common/LinuxKernel.vala:408 +#: src/Common/LinuxKernel.vala:382 msgid "Fetching index from kernel.ubuntu.com..." msgstr "Получение сведений с kernel.ubuntu.com..." -#: src/Common/LinuxKernel.vala:727 +#: src/Common/LinuxKernel.vala:693 #, fuzzy msgid "Could not find running kernel in list!" msgstr "Не удалось найти запрошенную версию" -#: src/Common/LinuxKernel.vala:733 +#: src/Common/LinuxKernel.vala:699 #, fuzzy msgid "Could not find any kernels to remove" msgstr "Не удалось найти запрошенную версию" -#: src/Common/LinuxKernel.vala:742 +#: src/Common/LinuxKernel.vala:708 msgid "The following kernels will be removed:" msgstr "" -#: src/Common/LinuxKernel.vala:749 +#: src/Common/LinuxKernel.vala:715 msgid "Continue ?" msgstr "" -#: src/Common/LinuxKernel.vala:777 src/Console/AppConsole.vala:361 +#: src/Common/LinuxKernel.vala:743 src/Console/AppConsole.vala:363 msgid "Latest update" msgstr "" -#: src/Common/LinuxKernel.vala:788 src/Console/AppConsole.vala:368 +#: src/Common/LinuxKernel.vala:754 src/Console/AppConsole.vala:370 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:796 src/Console/AppConsole.vala:373 -#: src/Console/AppConsole.vala:421 +#: src/Common/LinuxKernel.vala:762 src/Console/AppConsole.vala:375 +#: src/Console/AppConsole.vala:419 msgid "No updates found" msgstr "Обновлений не найдено" -#: src/Common/LinuxKernel.vala:806 +#: src/Common/LinuxKernel.vala:772 #, c-format -msgid "Install Linux v%s ? (y/n): " +msgid "Install Kernel Version %s ? (y/n): " msgstr "" -#: src/Common/LinuxKernel.vala:1072 +#: src/Common/LinuxKernel.vala:1038 #, fuzzy msgid "Packages Available" msgstr "Установлено" -#: src/Common/LinuxKernel.vala:1080 +#: src/Common/LinuxKernel.vala:1046 #, fuzzy msgid "Packages Installed" msgstr "Установлено" -#: src/Common/LinuxKernel.vala:1164 +#: src/Common/LinuxKernel.vala:1130 msgid "Available Kernels" msgstr "Доступные ядра" -#: src/Common/LinuxKernel.vala:1181 src/Gtk/MainWindow.vala:208 +#: src/Common/LinuxKernel.vala:1147 src/Gtk/MainWindow.vala:186 msgid "Installed" msgstr "Установлено" -#: src/Common/LinuxKernel.vala:1181 src/Gtk/MainWindow.vala:208 +#: src/Common/LinuxKernel.vala:1147 src/Gtk/MainWindow.vala:186 msgid "Running" msgstr "Используется" -#: src/Common/LinuxKernel.vala:1210 +#: src/Common/LinuxKernel.vala:1182 msgid "Downloading" msgstr "Загрузка" -#: src/Common/LinuxKernel.vala:1229 +#: src/Common/LinuxKernel.vala:1201 #: src/Utility/Gtk/CustomMessageDialog.vala:148 #: src/Utility/Gtk/CustomMessageDialog.vala:152 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:1238 +#: src/Common/LinuxKernel.vala:1207 msgid "ERROR" msgstr "ОШИБКА" -#: src/Common/LinuxKernel.vala:1252 src/Gtk/MainWindow.vala:681 +#: src/Common/LinuxKernel.vala:1221 src/Gtk/MainWindow.vala:653 msgid "This kernel is already installed." msgstr "Это ядро уже установлено." -#: src/Common/LinuxKernel.vala:1283 +#: src/Common/LinuxKernel.vala:1252 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "Установка завершена. Обязательно выполните перезагрузку, чтобы использовать " "новое ядро." -#: src/Common/LinuxKernel.vala:1286 +#: src/Common/LinuxKernel.vala:1255 msgid "Installation completed with errors" msgstr "Установка завершена с ошибками" -#: src/Common/LinuxKernel.vala:1302 +#: src/Common/LinuxKernel.vala:1271 #, fuzzy msgid "" "Selected kernel is currently running and cannot be removed.\n" @@ -138,19 +138,19 @@ msgstr "" "Это ядро в настоящий момент работает и не может быть удалено.\n" " Установите другое ядро, прежде чем удалять его." -#: src/Common/LinuxKernel.vala:1307 +#: src/Common/LinuxKernel.vala:1276 msgid "Preparing to remove selected kernels" msgstr "" -#: src/Common/LinuxKernel.vala:1339 src/Common/LinuxKernel.vala:1392 +#: src/Common/LinuxKernel.vala:1308 src/Common/LinuxKernel.vala:1361 msgid "Un-install completed" msgstr "Удаление завершено" -#: src/Common/LinuxKernel.vala:1342 src/Common/LinuxKernel.vala:1395 +#: src/Common/LinuxKernel.vala:1311 src/Common/LinuxKernel.vala:1364 msgid "Un-install completed with errors" msgstr "Удаление завершено с ошибками" -#: src/Common/LinuxKernel.vala:1355 +#: src/Common/LinuxKernel.vala:1324 msgid "" "This kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -158,234 +158,222 @@ msgstr "" "Это ядро в настоящий момент работает и не может быть удалено.\n" " Установите другое ядро, прежде чем удалять его." -#: src/Common/Main.vala:106 +#: src/Common/Main.vala:107 msgid "Commands listed below are not available on this system" msgstr "Команды перечисленные ниже недоступны на этой системе" -#: src/Common/Main.vala:107 +#: src/Common/Main.vala:108 msgid "Please install required packages and try again" msgstr "Установить необходимые пакеты и попробуйте снова" -#: src/Common/Package.vala:126 src/Common/Package.vala:188 +#: src/Common/Package.vala:131 src/Common/Package.vala:193 #, c-format msgid "File not found: %s" msgstr "Файл не найден: %s" -#: src/Console/AppConsole.vala:80 src/Gtk/AppGtk.vala:174 +#: src/Console/AppConsole.vala:81 src/Gtk/AppGtk.vala:171 msgid "Syntax" msgstr "Синтаксис" -#: src/Console/AppConsole.vala:82 +#: src/Console/AppConsole.vala:83 msgid "Commands" msgstr "" -#: src/Console/AppConsole.vala:84 +#: src/Console/AppConsole.vala:85 msgid "Check for kernel updates" msgstr "Проверить обновления ядра" -#: src/Console/AppConsole.vala:85 +#: src/Console/AppConsole.vala:86 #, fuzzy msgid "Check for kernel updates and notify current user" msgstr "Проверить обновления ядра" -#: src/Console/AppConsole.vala:86 +#: src/Console/AppConsole.vala:87 msgid "List all available mainline kernels" msgstr "Список всех доступных основных ядер" -#: src/Console/AppConsole.vala:87 +#: src/Console/AppConsole.vala:88 #, fuzzy msgid "List installed kernels" msgstr "Список всех доступных основных ядер" -#: src/Console/AppConsole.vala:88 +#: src/Console/AppConsole.vala:89 #, fuzzy msgid "Install latest mainline kernel" msgstr "Установить указанную ветку ядра" -#: src/Console/AppConsole.vala:89 +#: src/Console/AppConsole.vala:90 msgid "Install latest point update for current series" msgstr "" -#: src/Console/AppConsole.vala:90 +#: src/Console/AppConsole.vala:91 msgid "Install specified mainline kernel" msgstr "Установить указанную ветку ядра" -#: src/Console/AppConsole.vala:91 +#: src/Console/AppConsole.vala:92 #, fuzzy msgid "Remove specified kernel" msgstr "Удалить указанную ветку ядра" -#: src/Console/AppConsole.vala:92 src/Gtk/MainWindow.vala:422 +#: src/Console/AppConsole.vala:93 src/Gtk/MainWindow.vala:396 msgid "Remove installed kernels older than running kernel" msgstr "Удалить более старшие установленные ядра, чем используемое" -#: src/Console/AppConsole.vala:93 +#: src/Console/AppConsole.vala:94 msgid "Download packages for specified kernel" msgstr "Скачать пакеты для указанного ядра" -#: src/Console/AppConsole.vala:94 src/Console/AppConsole.vala:99 +#: src/Console/AppConsole.vala:95 src/Console/AppConsole.vala:100 msgid "Remove files from application cache" msgstr "Удалить файлы из кэша программы" -#: src/Console/AppConsole.vala:95 +#: src/Console/AppConsole.vala:96 #, fuzzy msgid "Show unstable and RC releases" msgstr "Скрыть нестабильные и релиз-кандидат версии" -#: src/Console/AppConsole.vala:97 src/Gtk/AppGtk.vala:176 +#: src/Console/AppConsole.vala:98 src/Gtk/AppGtk.vala:173 msgid "Options" msgstr "Параметры" -#: src/Console/AppConsole.vala:100 +#: src/Console/AppConsole.vala:101 msgid "Enable verbose debugging output" msgstr "" -#: src/Console/AppConsole.vala:101 +#: src/Console/AppConsole.vala:102 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "" -#: src/Console/AppConsole.vala:102 +#: src/Console/AppConsole.vala:103 msgid "Override user" msgstr "" -#: src/Console/AppConsole.vala:115 +#: src/Console/AppConsole.vala:116 msgid "Admin access is required for running this application." msgstr "Для запуска программы требуются права администратора." -#: src/Console/AppConsole.vala:118 +#: src/Console/AppConsole.vala:119 #, fuzzy msgid "Run the application as admin with pkexec or sudo." msgstr "Запустите программу с правами Root или используйте gksu/sudo." -#: src/Console/AppConsole.vala:198 src/Gtk/AppGtk.vala:161 +#: src/Console/AppConsole.vala:200 src/Gtk/AppGtk.vala:158 msgid "Unknown option" msgstr "Неизвестный параметр" -#: src/Console/AppConsole.vala:200 src/Console/AppConsole.vala:314 -#: src/Console/AppConsole.vala:343 +#: src/Console/AppConsole.vala:202 src/Console/AppConsole.vala:315 +#: src/Console/AppConsole.vala:345 msgid "Run '" msgstr "" -#: src/Console/AppConsole.vala:205 src/Gtk/AppGtk.vala:109 -msgid "Cache" -msgstr "" - -#: src/Console/AppConsole.vala:206 src/Gtk/AppGtk.vala:110 -msgid "Temp" -msgstr "" - -#: src/Console/AppConsole.vala:286 src/Console/AppConsole.vala:323 +#: src/Console/AppConsole.vala:284 src/Console/AppConsole.vala:324 msgid "No kernels specified" msgstr "" -#: src/Console/AppConsole.vala:292 +#: src/Console/AppConsole.vala:290 msgid "Multiple kernels selected for installation. Select only one." msgstr "" -#: src/Console/AppConsole.vala:310 src/Gtk/MainWindow.vala:100 +#: src/Console/AppConsole.vala:311 src/Gtk/MainWindow.vala:100 msgid "Could not find requested version" msgstr "Не удалось найти запрошенную версию" -#: src/Console/AppConsole.vala:342 +#: src/Console/AppConsole.vala:344 msgid "Command not specified" msgstr "" -#: src/Console/AppConsole.vala:391 src/Console/AppConsole.vala:408 -#, c-format -msgid "Linux v%s Available" -msgstr "" - -#: src/Console/AppConsole.vala:392 -msgid "Major update available for installation" -msgstr "" - -#: src/Console/AppConsole.vala:409 -msgid "Minor update available for installation" -msgstr "" +#: src/Console/AppConsole.vala:393 src/Console/AppConsole.vala:408 +#, fuzzy, c-format +msgid "Kernel %s Available" +msgstr "Установлено" -#: src/Gtk/AppGtk.vala:178 +#: src/Gtk/AppGtk.vala:175 msgid "Print debug information" msgstr "Распечатать отладочную информацию" -#: src/Gtk/AppGtk.vala:179 +#: src/Gtk/AppGtk.vala:176 msgid "Show all options" msgstr "Показать все параметры" -#: src/Gtk/MainWindow.vala:150 +#: src/Gtk/MainWindow.vala:146 msgid "Kernel" msgstr "Ядро" -#: src/Gtk/MainWindow.vala:179 -msgid "Version" -msgstr "Версия" - -#: src/Gtk/MainWindow.vala:196 +#: src/Gtk/MainWindow.vala:174 msgid "Status" msgstr "Состояние" -#: src/Gtk/MainWindow.vala:341 +#: src/Gtk/MainWindow.vala:319 msgid "Refresh" msgstr "Обновить" -#: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:555 -#: src/Gtk/MainWindow.vala:686 src/Utility/TeeJee.System.vala:281 +#: src/Gtk/MainWindow.vala:326 src/Gtk/MainWindow.vala:527 +#: src/Gtk/MainWindow.vala:658 src/Utility/TeeJee.System.vala:146 msgid "Internet connection is not active" msgstr "Интернет соединение не активно" -#: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:555 -#: src/Gtk/MainWindow.vala:686 +#: src/Gtk/MainWindow.vala:326 src/Gtk/MainWindow.vala:527 +#: src/Gtk/MainWindow.vala:658 msgid "No Internet" msgstr "" -#: src/Gtk/MainWindow.vala:357 +#: src/Gtk/MainWindow.vala:335 msgid "Install" msgstr "Установить" -#: src/Gtk/MainWindow.vala:366 +#: src/Gtk/MainWindow.vala:344 msgid "Multiple Kernels Selected" msgstr "" -#: src/Gtk/MainWindow.vala:366 +#: src/Gtk/MainWindow.vala:344 msgid "Select a single kernel to install" msgstr "" -#: src/Gtk/MainWindow.vala:369 src/Gtk/MainWindow.vala:380 +#: src/Gtk/MainWindow.vala:347 src/Gtk/MainWindow.vala:358 msgid "Not Selected" msgstr "" -#: src/Gtk/MainWindow.vala:369 +#: src/Gtk/MainWindow.vala:347 msgid "Select the kernel to install" msgstr "" -#: src/Gtk/MainWindow.vala:374 +#: src/Gtk/MainWindow.vala:352 msgid "Remove" msgstr "Удалить" -#: src/Gtk/MainWindow.vala:380 +#: src/Gtk/MainWindow.vala:358 msgid "Select the kernels to remove" msgstr "" -#: src/Gtk/MainWindow.vala:421 +#: src/Gtk/MainWindow.vala:395 msgid "Purge" msgstr "Очистить" -#: src/Gtk/MainWindow.vala:458 +#: src/Gtk/MainWindow.vala:429 msgid "Changes" msgstr "Изменения" -#: src/Gtk/MainWindow.vala:469 src/Gtk/SettingsDialog.vala:52 +#: src/Gtk/MainWindow.vala:440 src/Gtk/SettingsDialog.vala:52 msgid "Settings" msgstr "Настройки" -#: src/Gtk/MainWindow.vala:490 +#: src/Gtk/MainWindow.vala:461 msgid "About" msgstr "О программе" -#: src/Gtk/MainWindow.vala:539 +#: src/Gtk/MainWindow.vala:505 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Программа обновления ядра для дистрибутивов на базе Ubuntu" -#: src/Gtk/MainWindow.vala:574 +#: src/Gtk/MainWindow.vala:506 +msgid "Forked:" +msgstr "" + +#: src/Gtk/MainWindow.vala:506 +msgid "Original:" +msgstr "" + +#: src/Gtk/MainWindow.vala:546 msgid "Refreshing..." msgstr "Обновление..." @@ -410,49 +398,57 @@ msgstr "Уведомлять, если доступно небольшое об msgid "Show notification bubble on desktop" msgstr "Показывать окно оповещений на рабочем столе" -#: src/Gtk/SettingsDialog.vala:105 +#: src/Gtk/SettingsDialog.vala:102 +msgid "(Allowing intervals in seconds for --debug)" +msgstr "" + +#: src/Gtk/SettingsDialog.vala:112 msgid "Check every" msgstr "Проверять каждые" -#: src/Gtk/SettingsDialog.vala:136 +#: src/Gtk/SettingsDialog.vala:145 msgid "Hour(s)" msgstr "Час(ов)" -#: src/Gtk/SettingsDialog.vala:138 +#: src/Gtk/SettingsDialog.vala:147 msgid "Day(s)" msgstr "День(дней)" -#: src/Gtk/SettingsDialog.vala:140 +#: src/Gtk/SettingsDialog.vala:149 msgid "Week(s)" msgstr "Неделю(ли)" -#: src/Gtk/SettingsDialog.vala:145 +#: src/Gtk/SettingsDialog.vala:152 +msgid "Second(s)" +msgstr "" + +#: src/Gtk/SettingsDialog.vala:158 msgid "Display" msgstr "Вид" -#: src/Gtk/SettingsDialog.vala:153 +#: src/Gtk/SettingsDialog.vala:166 msgid "Hide unstable and RC releases" msgstr "Скрыть нестабильные и релиз-кандидат версии" -#: src/Gtk/SettingsDialog.vala:167 +#: src/Gtk/SettingsDialog.vala:180 msgid "Show N previous major versions " msgstr "" -#: src/Gtk/SettingsDialog.vala:182 +#: src/Gtk/SettingsDialog.vala:195 msgid "Other" msgstr "" -#: src/Gtk/SettingsDialog.vala:190 +#: src/Gtk/SettingsDialog.vala:203 #, fuzzy msgid "Skip internet connection check" msgstr "Интернет соединение не активно" -#: src/Gtk/SettingsDialog.vala:203 +#: src/Gtk/SettingsDialog.vala:216 #, fuzzy msgid "Internet connection timeout in " msgstr "Интернет соединение не активно" -#: src/Gtk/SettingsDialog.vala:217 +#: src/Gtk/SettingsDialog.vala:230 msgid "seconds" msgstr "" @@ -477,21 +473,22 @@ msgid "Contributions" msgstr "Взносы" #: src/Utility/Gtk/AboutWindow.vala:329 -msgid "Third Party Tools" -msgstr "Сторонние инструменты" - -#: src/Utility/Gtk/AboutWindow.vala:337 msgid "Artists" msgstr "Художники" -#: src/Utility/Gtk/AboutWindow.vala:345 +#: src/Utility/Gtk/AboutWindow.vala:337 msgid "Translators" msgstr "Переводчики" -#: src/Utility/Gtk/AboutWindow.vala:353 +#: src/Utility/Gtk/AboutWindow.vala:345 msgid "Documenters" msgstr "Составители документации" +#: src/Utility/Gtk/AboutWindow.vala:353 +#, fuzzy +msgid "Third Party Inclusions" +msgstr "Сторонние инструменты" + #: src/Utility/Gtk/CustomMessageDialog.vala:157 msgid "Yes" msgstr "" @@ -508,77 +505,71 @@ msgstr "Ошибка" msgid "Missing Icon" msgstr "Значок отсутствует" -#: src/Utility/TeeJee.FileSystem.vala:97 src/Utility/TeeJee.FileSystem.vala:100 +#: src/Utility/TeeJee.FileSystem.vala:73 src/Utility/TeeJee.FileSystem.vala:76 #, fuzzy msgid "File deleted" msgstr "Не удалось удалить файл" -#: src/Utility/TeeJee.FileSystem.vala:106 +#: src/Utility/TeeJee.FileSystem.vala:82 msgid "Failed to delete file" msgstr "Не удалось удалить файл" -#: src/Utility/TeeJee.FileSystem.vala:162 +#: src/Utility/TeeJee.FileSystem.vala:108 msgid "Failed to read file" msgstr "Не удалось прочитать файл" -#: src/Utility/TeeJee.FileSystem.vala:187 -#: src/Utility/TeeJee.FileSystem.vala:190 +#: src/Utility/TeeJee.FileSystem.vala:135 +#: src/Utility/TeeJee.FileSystem.vala:138 #, fuzzy msgid "File saved" msgstr "Файловая система" -#: src/Utility/TeeJee.FileSystem.vala:197 +#: src/Utility/TeeJee.FileSystem.vala:147 msgid "Failed to write file" msgstr "Не удалось записать файл" -#: src/Utility/TeeJee.FileSystem.vala:210 -#: src/Utility/TeeJee.FileSystem.vala:213 +#: src/Utility/TeeJee.FileSystem.vala:160 +#: src/Utility/TeeJee.FileSystem.vala:163 #, fuzzy msgid "File copied" msgstr "Не удалось скопировать файл" -#: src/Utility/TeeJee.FileSystem.vala:221 +#: src/Utility/TeeJee.FileSystem.vala:171 msgid "Failed to copy file" msgstr "Не удалось скопировать файл" -#: src/Utility/TeeJee.FileSystem.vala:231 -#: src/Utility/TeeJee.FileSystem.vala:538 +#: src/Utility/TeeJee.FileSystem.vala:181 msgid "File not found" msgstr "Файл не найден" -#: src/Utility/TeeJee.FileSystem.vala:245 -#: src/Utility/TeeJee.FileSystem.vala:248 +#: src/Utility/TeeJee.FileSystem.vala:195 +#: src/Utility/TeeJee.FileSystem.vala:198 #, fuzzy msgid "File moved" msgstr "Удалить" -#: src/Utility/TeeJee.FileSystem.vala:253 +#: src/Utility/TeeJee.FileSystem.vala:203 msgid "Failed to move file" msgstr "Не удалось переместить файл" -#: src/Utility/TeeJee.FileSystem.vala:349 -#: src/Utility/TeeJee.FileSystem.vala:352 -#: src/Utility/TeeJee.FileSystem.vala:378 +#: src/Utility/TeeJee.FileSystem.vala:258 +#: src/Utility/TeeJee.FileSystem.vala:261 #, fuzzy msgid "Created directory" msgstr "Используемая кэш-папка" -#: src/Utility/TeeJee.FileSystem.vala:359 +#: src/Utility/TeeJee.FileSystem.vala:268 msgid "Failed to create dir" msgstr "Не удалось создать папку" -#: src/Utility/TeeJee.FileSystem.vala:375 -msgid "Deleted directory" -msgstr "" - -#: src/Utility/TeeJee.FileSystem.vala:509 -msgid "Dir not found" -msgstr "Папка не найдена" +#: src/Utility/TeeJee.FileSystem.vala:283 +#, fuzzy +msgid "Deleted" +msgstr "Не удалось удалить файл" -#: src/Utility/TeeJee.FileSystem.vala:662 -#: src/Utility/TeeJee.FileSystem.vala:711 -msgid "File is missing" -msgstr "Файл отсутствует" +#: src/Utility/TeeJee.FileSystem.vala:284 +msgid "FAILED deleting" +msgstr "" #: src/Utility/TeeJee.Logging.vala:89 msgid "E" @@ -588,6 +579,6 @@ msgstr "E" msgid "W" msgstr "W" -#: src/Utility/TeeJee.Process.vala:506 +#: src/Utility/TeeJee.Process.vala:507 msgid "Stopped" msgstr "Остановлено" diff --git a/po/sv.po b/po/sv.po index 923677a3..56d61fb3 100644 --- a/po/sv.po +++ b/po/sv.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu 2.2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-07 03:35-0400\n" +"POT-Creation-Date: 2020-05-09 07:19-0400\n" "PO-Revision-Date: 2018-01-13 16:56+0100\n" "Last-Translator: Åke Engelbrektson \n" "Language-Team: Svenska Språkfiler \n" @@ -27,106 +27,106 @@ msgstr "Distribution" msgid "Architecture" msgstr "Systemarkitektur" -#: src/Common/LinuxKernel.vala:257 +#: src/Common/LinuxKernel.vala:231 msgid "Index is stale" msgstr "Index är inaktuellt" -#: src/Common/LinuxKernel.vala:260 +#: src/Common/LinuxKernel.vala:234 msgid "Index is fresh" msgstr "Index är uppdaterat" -#: src/Common/LinuxKernel.vala:365 +#: src/Common/LinuxKernel.vala:339 #, fuzzy msgid "Fetching index..." msgstr "Hämtar index för" -#: src/Common/LinuxKernel.vala:408 +#: src/Common/LinuxKernel.vala:382 msgid "Fetching index from kernel.ubuntu.com..." msgstr "Hämtar index från kernel.ubuntu.com ..." -#: src/Common/LinuxKernel.vala:727 +#: src/Common/LinuxKernel.vala:693 #, fuzzy msgid "Could not find running kernel in list!" msgstr "Kunde inte hitta efterfrågad version" -#: src/Common/LinuxKernel.vala:733 +#: src/Common/LinuxKernel.vala:699 #, fuzzy msgid "Could not find any kernels to remove" msgstr "Välj kärnor för borttagning" -#: src/Common/LinuxKernel.vala:742 +#: src/Common/LinuxKernel.vala:708 msgid "The following kernels will be removed:" msgstr "" -#: src/Common/LinuxKernel.vala:749 +#: src/Common/LinuxKernel.vala:715 msgid "Continue ?" msgstr "" -#: src/Common/LinuxKernel.vala:777 src/Console/AppConsole.vala:361 +#: src/Common/LinuxKernel.vala:743 src/Console/AppConsole.vala:363 msgid "Latest update" msgstr "" -#: src/Common/LinuxKernel.vala:788 src/Console/AppConsole.vala:368 +#: src/Common/LinuxKernel.vala:754 src/Console/AppConsole.vala:370 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:796 src/Console/AppConsole.vala:373 -#: src/Console/AppConsole.vala:421 +#: src/Common/LinuxKernel.vala:762 src/Console/AppConsole.vala:375 +#: src/Console/AppConsole.vala:419 msgid "No updates found" msgstr "Inga uppdateringar hittades" -#: src/Common/LinuxKernel.vala:806 +#: src/Common/LinuxKernel.vala:772 #, c-format -msgid "Install Linux v%s ? (y/n): " +msgid "Install Kernel Version %s ? (y/n): " msgstr "" -#: src/Common/LinuxKernel.vala:1072 +#: src/Common/LinuxKernel.vala:1038 msgid "Packages Available" msgstr "Tillgängliga paket" -#: src/Common/LinuxKernel.vala:1080 +#: src/Common/LinuxKernel.vala:1046 msgid "Packages Installed" msgstr "Installerade paket" -#: src/Common/LinuxKernel.vala:1164 +#: src/Common/LinuxKernel.vala:1130 msgid "Available Kernels" msgstr "Tillgängliga kärnor" -#: src/Common/LinuxKernel.vala:1181 src/Gtk/MainWindow.vala:208 +#: src/Common/LinuxKernel.vala:1147 src/Gtk/MainWindow.vala:186 msgid "Installed" msgstr "Installerad" -#: src/Common/LinuxKernel.vala:1181 src/Gtk/MainWindow.vala:208 +#: src/Common/LinuxKernel.vala:1147 src/Gtk/MainWindow.vala:186 msgid "Running" msgstr "Körs" -#: src/Common/LinuxKernel.vala:1210 +#: src/Common/LinuxKernel.vala:1182 msgid "Downloading" msgstr "Laddar ner" -#: src/Common/LinuxKernel.vala:1229 +#: src/Common/LinuxKernel.vala:1201 #: src/Utility/Gtk/CustomMessageDialog.vala:148 #: src/Utility/Gtk/CustomMessageDialog.vala:152 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:1238 +#: src/Common/LinuxKernel.vala:1207 msgid "ERROR" msgstr "FEL" -#: src/Common/LinuxKernel.vala:1252 src/Gtk/MainWindow.vala:681 +#: src/Common/LinuxKernel.vala:1221 src/Gtk/MainWindow.vala:653 msgid "This kernel is already installed." msgstr "Denna kärna är redan installerad" -#: src/Common/LinuxKernel.vala:1283 +#: src/Common/LinuxKernel.vala:1252 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "Installation slutförd. Omstart krävs för att tillämpa den nya kärnan." -#: src/Common/LinuxKernel.vala:1286 +#: src/Common/LinuxKernel.vala:1255 msgid "Installation completed with errors" msgstr "Installation slutförd med fel" -#: src/Common/LinuxKernel.vala:1302 +#: src/Common/LinuxKernel.vala:1271 msgid "" "Selected kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -134,19 +134,19 @@ msgstr "" "Denna kärna används för tillfället och kan inte tas bort.\n" "Installera en annan kärna innan du tar bort den här." -#: src/Common/LinuxKernel.vala:1307 +#: src/Common/LinuxKernel.vala:1276 msgid "Preparing to remove selected kernels" msgstr "Förbereder borttagning av markerade kärnor" -#: src/Common/LinuxKernel.vala:1339 src/Common/LinuxKernel.vala:1392 +#: src/Common/LinuxKernel.vala:1308 src/Common/LinuxKernel.vala:1361 msgid "Un-install completed" msgstr "Avinstallation slutförd" -#: src/Common/LinuxKernel.vala:1342 src/Common/LinuxKernel.vala:1395 +#: src/Common/LinuxKernel.vala:1311 src/Common/LinuxKernel.vala:1364 msgid "Un-install completed with errors" msgstr "Avinstallation slutförd med fel" -#: src/Common/LinuxKernel.vala:1355 +#: src/Common/LinuxKernel.vala:1324 msgid "" "This kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -154,233 +154,221 @@ msgstr "" "Denna kärna används för tillfället och kan inte tas bort.\n" "Installera en annan kärna innan du tar bort den här." -#: src/Common/Main.vala:106 +#: src/Common/Main.vala:107 msgid "Commands listed below are not available on this system" msgstr "Kommandon listade nedan, finns inte tillgängliga i detta system." -#: src/Common/Main.vala:107 +#: src/Common/Main.vala:108 msgid "Please install required packages and try again" msgstr "Installera nödvändiga paket och försök igen" -#: src/Common/Package.vala:126 src/Common/Package.vala:188 +#: src/Common/Package.vala:131 src/Common/Package.vala:193 #, c-format msgid "File not found: %s" msgstr "Filen kunde inte hittas: %s" -#: src/Console/AppConsole.vala:80 src/Gtk/AppGtk.vala:174 +#: src/Console/AppConsole.vala:81 src/Gtk/AppGtk.vala:171 msgid "Syntax" msgstr "Syntax" -#: src/Console/AppConsole.vala:82 +#: src/Console/AppConsole.vala:83 msgid "Commands" msgstr "" -#: src/Console/AppConsole.vala:84 +#: src/Console/AppConsole.vala:85 msgid "Check for kernel updates" msgstr "Sök efter kärnuppdateringar" -#: src/Console/AppConsole.vala:85 +#: src/Console/AppConsole.vala:86 #, fuzzy msgid "Check for kernel updates and notify current user" msgstr "Sök efter kärnuppdateringar" -#: src/Console/AppConsole.vala:86 +#: src/Console/AppConsole.vala:87 msgid "List all available mainline kernels" msgstr "Lista alla tillgängliga kärnor" -#: src/Console/AppConsole.vala:87 +#: src/Console/AppConsole.vala:88 #, fuzzy msgid "List installed kernels" msgstr "Lista tillgängliga kärnor" -#: src/Console/AppConsole.vala:88 +#: src/Console/AppConsole.vala:89 #, fuzzy msgid "Install latest mainline kernel" msgstr "Installera specificerad kärna" -#: src/Console/AppConsole.vala:89 +#: src/Console/AppConsole.vala:90 msgid "Install latest point update for current series" msgstr "" -#: src/Console/AppConsole.vala:90 +#: src/Console/AppConsole.vala:91 msgid "Install specified mainline kernel" msgstr "Installera specificerad kärna" -#: src/Console/AppConsole.vala:91 +#: src/Console/AppConsole.vala:92 #, fuzzy msgid "Remove specified kernel" msgstr "Ta bort specificerad kärna" -#: src/Console/AppConsole.vala:92 src/Gtk/MainWindow.vala:422 +#: src/Console/AppConsole.vala:93 src/Gtk/MainWindow.vala:396 msgid "Remove installed kernels older than running kernel" msgstr "Ta bort installerade kärnor äldre än den som körs" -#: src/Console/AppConsole.vala:93 +#: src/Console/AppConsole.vala:94 msgid "Download packages for specified kernel" msgstr "Ladda ner paket för specificerad kärna" -#: src/Console/AppConsole.vala:94 src/Console/AppConsole.vala:99 +#: src/Console/AppConsole.vala:95 src/Console/AppConsole.vala:100 msgid "Remove files from application cache" msgstr "Ta bort filer från program-cachen" -#: src/Console/AppConsole.vala:95 +#: src/Console/AppConsole.vala:96 #, fuzzy msgid "Show unstable and RC releases" msgstr "Dölj instabila- och RC-publiceringar" -#: src/Console/AppConsole.vala:97 src/Gtk/AppGtk.vala:176 +#: src/Console/AppConsole.vala:98 src/Gtk/AppGtk.vala:173 msgid "Options" msgstr "Alternativ" -#: src/Console/AppConsole.vala:100 +#: src/Console/AppConsole.vala:101 msgid "Enable verbose debugging output" msgstr "" -#: src/Console/AppConsole.vala:101 +#: src/Console/AppConsole.vala:102 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "" -#: src/Console/AppConsole.vala:102 +#: src/Console/AppConsole.vala:103 msgid "Override user" msgstr "" -#: src/Console/AppConsole.vala:115 +#: src/Console/AppConsole.vala:116 msgid "Admin access is required for running this application." msgstr "Root-åtkomst krävs för att köra detta program." -#: src/Console/AppConsole.vala:118 +#: src/Console/AppConsole.vala:119 msgid "Run the application as admin with pkexec or sudo." msgstr "Kör programmet som administratör, med pkexec eller sudo." -#: src/Console/AppConsole.vala:198 src/Gtk/AppGtk.vala:161 +#: src/Console/AppConsole.vala:200 src/Gtk/AppGtk.vala:158 msgid "Unknown option" msgstr "Okänt alternativ" -#: src/Console/AppConsole.vala:200 src/Console/AppConsole.vala:314 -#: src/Console/AppConsole.vala:343 +#: src/Console/AppConsole.vala:202 src/Console/AppConsole.vala:315 +#: src/Console/AppConsole.vala:345 msgid "Run '" msgstr "" -#: src/Console/AppConsole.vala:205 src/Gtk/AppGtk.vala:109 -msgid "Cache" -msgstr "" - -#: src/Console/AppConsole.vala:206 src/Gtk/AppGtk.vala:110 -msgid "Temp" -msgstr "" - -#: src/Console/AppConsole.vala:286 src/Console/AppConsole.vala:323 +#: src/Console/AppConsole.vala:284 src/Console/AppConsole.vala:324 msgid "No kernels specified" msgstr "" -#: src/Console/AppConsole.vala:292 +#: src/Console/AppConsole.vala:290 msgid "Multiple kernels selected for installation. Select only one." msgstr "Flera kärnor valda för installation. Välj endast en." -#: src/Console/AppConsole.vala:310 src/Gtk/MainWindow.vala:100 +#: src/Console/AppConsole.vala:311 src/Gtk/MainWindow.vala:100 msgid "Could not find requested version" msgstr "Kunde inte hitta efterfrågad version" -#: src/Console/AppConsole.vala:342 +#: src/Console/AppConsole.vala:344 msgid "Command not specified" msgstr "" -#: src/Console/AppConsole.vala:391 src/Console/AppConsole.vala:408 -#, c-format -msgid "Linux v%s Available" -msgstr "" - -#: src/Console/AppConsole.vala:392 -msgid "Major update available for installation" -msgstr "" - -#: src/Console/AppConsole.vala:409 -msgid "Minor update available for installation" -msgstr "" +#: src/Console/AppConsole.vala:393 src/Console/AppConsole.vala:408 +#, fuzzy, c-format +msgid "Kernel %s Available" +msgstr "Tillgängliga paket" -#: src/Gtk/AppGtk.vala:178 +#: src/Gtk/AppGtk.vala:175 msgid "Print debug information" msgstr "Skriv ut felsökningsinformation" -#: src/Gtk/AppGtk.vala:179 +#: src/Gtk/AppGtk.vala:176 msgid "Show all options" msgstr "Visa alla alternativ" -#: src/Gtk/MainWindow.vala:150 +#: src/Gtk/MainWindow.vala:146 msgid "Kernel" msgstr "Kärna" -#: src/Gtk/MainWindow.vala:179 -msgid "Version" -msgstr "Version" - -#: src/Gtk/MainWindow.vala:196 +#: src/Gtk/MainWindow.vala:174 msgid "Status" msgstr "Status" -#: src/Gtk/MainWindow.vala:341 +#: src/Gtk/MainWindow.vala:319 msgid "Refresh" msgstr "Uppdatera" -#: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:555 -#: src/Gtk/MainWindow.vala:686 src/Utility/TeeJee.System.vala:281 +#: src/Gtk/MainWindow.vala:326 src/Gtk/MainWindow.vala:527 +#: src/Gtk/MainWindow.vala:658 src/Utility/TeeJee.System.vala:146 msgid "Internet connection is not active" msgstr "Internetuppkopplingen är inte aktiv" -#: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:555 -#: src/Gtk/MainWindow.vala:686 +#: src/Gtk/MainWindow.vala:326 src/Gtk/MainWindow.vala:527 +#: src/Gtk/MainWindow.vala:658 msgid "No Internet" msgstr "Inget internet" -#: src/Gtk/MainWindow.vala:357 +#: src/Gtk/MainWindow.vala:335 msgid "Install" msgstr "Installera" -#: src/Gtk/MainWindow.vala:366 +#: src/Gtk/MainWindow.vala:344 msgid "Multiple Kernels Selected" msgstr "Flera kärnor markerade" -#: src/Gtk/MainWindow.vala:366 +#: src/Gtk/MainWindow.vala:344 msgid "Select a single kernel to install" msgstr "Välj en enstaka kärna att installera" -#: src/Gtk/MainWindow.vala:369 src/Gtk/MainWindow.vala:380 +#: src/Gtk/MainWindow.vala:347 src/Gtk/MainWindow.vala:358 msgid "Not Selected" msgstr "Inte vald" -#: src/Gtk/MainWindow.vala:369 +#: src/Gtk/MainWindow.vala:347 msgid "Select the kernel to install" msgstr "Välj kärna för installation" -#: src/Gtk/MainWindow.vala:374 +#: src/Gtk/MainWindow.vala:352 msgid "Remove" msgstr "Ta bort" -#: src/Gtk/MainWindow.vala:380 +#: src/Gtk/MainWindow.vala:358 msgid "Select the kernels to remove" msgstr "Välj kärnor för borttagning" -#: src/Gtk/MainWindow.vala:421 +#: src/Gtk/MainWindow.vala:395 msgid "Purge" msgstr "Rensa" -#: src/Gtk/MainWindow.vala:458 +#: src/Gtk/MainWindow.vala:429 msgid "Changes" msgstr "Ändringar" -#: src/Gtk/MainWindow.vala:469 src/Gtk/SettingsDialog.vala:52 +#: src/Gtk/MainWindow.vala:440 src/Gtk/SettingsDialog.vala:52 msgid "Settings" msgstr "Inställningar" -#: src/Gtk/MainWindow.vala:490 +#: src/Gtk/MainWindow.vala:461 msgid "About" msgstr "Om" -#: src/Gtk/MainWindow.vala:539 +#: src/Gtk/MainWindow.vala:505 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Kärnuppgraderingsverktyg för Ubuntu-baserade distributioner" -#: src/Gtk/MainWindow.vala:574 +#: src/Gtk/MainWindow.vala:506 +msgid "Forked:" +msgstr "" + +#: src/Gtk/MainWindow.vala:506 +msgid "Original:" +msgstr "" + +#: src/Gtk/MainWindow.vala:546 msgid "Refreshing..." msgstr "Uppdaterar ..." @@ -405,49 +393,57 @@ msgstr "Meddela om en ny (mindre) uppdatering finns tillgänglig" msgid "Show notification bubble on desktop" msgstr "Visa aviseringsruta på skrivbordet" -#: src/Gtk/SettingsDialog.vala:105 +#: src/Gtk/SettingsDialog.vala:102 +msgid "(Allowing intervals in seconds for --debug)" +msgstr "" + +#: src/Gtk/SettingsDialog.vala:112 msgid "Check every" msgstr "Kontrollera varje" -#: src/Gtk/SettingsDialog.vala:136 +#: src/Gtk/SettingsDialog.vala:145 msgid "Hour(s)" msgstr "Timma(r)" -#: src/Gtk/SettingsDialog.vala:138 +#: src/Gtk/SettingsDialog.vala:147 msgid "Day(s)" msgstr "Dag(ar)" -#: src/Gtk/SettingsDialog.vala:140 +#: src/Gtk/SettingsDialog.vala:149 msgid "Week(s)" msgstr "Veckor" -#: src/Gtk/SettingsDialog.vala:145 +#: src/Gtk/SettingsDialog.vala:152 +msgid "Second(s)" +msgstr "" + +#: src/Gtk/SettingsDialog.vala:158 msgid "Display" msgstr "Visa" -#: src/Gtk/SettingsDialog.vala:153 +#: src/Gtk/SettingsDialog.vala:166 msgid "Hide unstable and RC releases" msgstr "Dölj instabila- och RC-publiceringar" -#: src/Gtk/SettingsDialog.vala:167 +#: src/Gtk/SettingsDialog.vala:180 msgid "Show N previous major versions " msgstr "" -#: src/Gtk/SettingsDialog.vala:182 +#: src/Gtk/SettingsDialog.vala:195 msgid "Other" msgstr "" -#: src/Gtk/SettingsDialog.vala:190 +#: src/Gtk/SettingsDialog.vala:203 #, fuzzy msgid "Skip internet connection check" msgstr "Internetuppkopplingen är inte aktiv" -#: src/Gtk/SettingsDialog.vala:203 +#: src/Gtk/SettingsDialog.vala:216 #, fuzzy msgid "Internet connection timeout in " msgstr "Internetuppkopplingen är inte aktiv" -#: src/Gtk/SettingsDialog.vala:217 +#: src/Gtk/SettingsDialog.vala:230 msgid "seconds" msgstr "" @@ -472,21 +468,22 @@ msgid "Contributions" msgstr "Bidrag" #: src/Utility/Gtk/AboutWindow.vala:329 -msgid "Third Party Tools" -msgstr "Tredjepartsverktyg" - -#: src/Utility/Gtk/AboutWindow.vala:337 msgid "Artists" msgstr "Artister" -#: src/Utility/Gtk/AboutWindow.vala:345 +#: src/Utility/Gtk/AboutWindow.vala:337 msgid "Translators" msgstr "Översättare" -#: src/Utility/Gtk/AboutWindow.vala:353 +#: src/Utility/Gtk/AboutWindow.vala:345 msgid "Documenters" msgstr "Dokumentalister" +#: src/Utility/Gtk/AboutWindow.vala:353 +#, fuzzy +msgid "Third Party Inclusions" +msgstr "Tredjepartsverktyg" + #: src/Utility/Gtk/CustomMessageDialog.vala:157 msgid "Yes" msgstr "Ja" @@ -503,72 +500,66 @@ msgstr "Fel" msgid "Missing Icon" msgstr "Saknad ikon" -#: src/Utility/TeeJee.FileSystem.vala:97 src/Utility/TeeJee.FileSystem.vala:100 +#: src/Utility/TeeJee.FileSystem.vala:73 src/Utility/TeeJee.FileSystem.vala:76 msgid "File deleted" msgstr "Fil borttagen" -#: src/Utility/TeeJee.FileSystem.vala:106 +#: src/Utility/TeeJee.FileSystem.vala:82 msgid "Failed to delete file" msgstr "Kunde inte ta bort filen" -#: src/Utility/TeeJee.FileSystem.vala:162 +#: src/Utility/TeeJee.FileSystem.vala:108 msgid "Failed to read file" msgstr "Kunde inte läsa filen" -#: src/Utility/TeeJee.FileSystem.vala:187 -#: src/Utility/TeeJee.FileSystem.vala:190 +#: src/Utility/TeeJee.FileSystem.vala:135 +#: src/Utility/TeeJee.FileSystem.vala:138 msgid "File saved" msgstr "Fil sparad" -#: src/Utility/TeeJee.FileSystem.vala:197 +#: src/Utility/TeeJee.FileSystem.vala:147 msgid "Failed to write file" msgstr "Kunde inte skriva filen" -#: src/Utility/TeeJee.FileSystem.vala:210 -#: src/Utility/TeeJee.FileSystem.vala:213 +#: src/Utility/TeeJee.FileSystem.vala:160 +#: src/Utility/TeeJee.FileSystem.vala:163 msgid "File copied" msgstr "Kopierade fil" -#: src/Utility/TeeJee.FileSystem.vala:221 +#: src/Utility/TeeJee.FileSystem.vala:171 msgid "Failed to copy file" msgstr "Kunde inte kopiera filen" -#: src/Utility/TeeJee.FileSystem.vala:231 -#: src/Utility/TeeJee.FileSystem.vala:538 +#: src/Utility/TeeJee.FileSystem.vala:181 msgid "File not found" msgstr "Filen kan inte hittas" -#: src/Utility/TeeJee.FileSystem.vala:245 -#: src/Utility/TeeJee.FileSystem.vala:248 +#: src/Utility/TeeJee.FileSystem.vala:195 +#: src/Utility/TeeJee.FileSystem.vala:198 msgid "File moved" msgstr "Fil flyttad" -#: src/Utility/TeeJee.FileSystem.vala:253 +#: src/Utility/TeeJee.FileSystem.vala:203 msgid "Failed to move file" msgstr "Kunde inte flytta filen" -#: src/Utility/TeeJee.FileSystem.vala:349 -#: src/Utility/TeeJee.FileSystem.vala:352 -#: src/Utility/TeeJee.FileSystem.vala:378 +#: src/Utility/TeeJee.FileSystem.vala:258 +#: src/Utility/TeeJee.FileSystem.vala:261 msgid "Created directory" msgstr "Skapade mapp" -#: src/Utility/TeeJee.FileSystem.vala:359 +#: src/Utility/TeeJee.FileSystem.vala:268 msgid "Failed to create dir" msgstr "Kunde inte skapa mappen" -#: src/Utility/TeeJee.FileSystem.vala:375 -msgid "Deleted directory" -msgstr "Tog bort mapp" - -#: src/Utility/TeeJee.FileSystem.vala:509 -msgid "Dir not found" -msgstr "Mappen kan inte hittas" +#: src/Utility/TeeJee.FileSystem.vala:283 +#, fuzzy +msgid "Deleted" +msgstr "Fil borttagen" -#: src/Utility/TeeJee.FileSystem.vala:662 -#: src/Utility/TeeJee.FileSystem.vala:711 -msgid "File is missing" -msgstr "Filen saknas" +#: src/Utility/TeeJee.FileSystem.vala:284 +msgid "FAILED deleting" +msgstr "" #: src/Utility/TeeJee.Logging.vala:89 msgid "E" @@ -578,6 +569,6 @@ msgstr "F" msgid "W" msgstr "V" -#: src/Utility/TeeJee.Process.vala:506 +#: src/Utility/TeeJee.Process.vala:507 msgid "Stopped" msgstr "Stoppad" diff --git a/po/tr.po b/po/tr.po index 9c9e5de4..62407cd1 100644 --- a/po/tr.po +++ b/po/tr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-07 03:35-0400\n" +"POT-Creation-Date: 2020-05-09 07:19-0400\n" "PO-Revision-Date: 2020-03-10 15:59+0300\n" "Last-Translator: Gökhan GÖKKAYA \n" "Language-Team: Turkish\n" @@ -26,104 +26,104 @@ msgstr "Dağıtım" msgid "Architecture" msgstr "Sistem mimarisi" -#: src/Common/LinuxKernel.vala:257 +#: src/Common/LinuxKernel.vala:231 msgid "Index is stale" msgstr "İçerik listesi eski" -#: src/Common/LinuxKernel.vala:260 +#: src/Common/LinuxKernel.vala:234 msgid "Index is fresh" msgstr "İçerik listesi güncel" -#: src/Common/LinuxKernel.vala:365 +#: src/Common/LinuxKernel.vala:339 msgid "Fetching index..." msgstr "İçerik dizini alınıyor..." -#: src/Common/LinuxKernel.vala:408 +#: src/Common/LinuxKernel.vala:382 msgid "Fetching index from kernel.ubuntu.com..." msgstr "İçerik listesi kernel.ubuntu.com alanından alınıyor..." -#: src/Common/LinuxKernel.vala:727 +#: src/Common/LinuxKernel.vala:693 msgid "Could not find running kernel in list!" msgstr "İstenen sürüm bulunamadı!" -#: src/Common/LinuxKernel.vala:733 +#: src/Common/LinuxKernel.vala:699 msgid "Could not find any kernels to remove" msgstr "Kaldırılacak çekirdek bulunamadı" -#: src/Common/LinuxKernel.vala:742 +#: src/Common/LinuxKernel.vala:708 msgid "The following kernels will be removed:" msgstr "Aşağıdaki çekirdekler silinecek:" -#: src/Common/LinuxKernel.vala:749 +#: src/Common/LinuxKernel.vala:715 msgid "Continue ?" msgstr "Devam et ?" -#: src/Common/LinuxKernel.vala:777 src/Console/AppConsole.vala:361 +#: src/Common/LinuxKernel.vala:743 src/Console/AppConsole.vala:363 msgid "Latest update" msgstr "Son güncelleme" -#: src/Common/LinuxKernel.vala:788 src/Console/AppConsole.vala:368 +#: src/Common/LinuxKernel.vala:754 src/Console/AppConsole.vala:370 msgid "Latest point update" msgstr "Son güncelleme noktası" -#: src/Common/LinuxKernel.vala:796 src/Console/AppConsole.vala:373 -#: src/Console/AppConsole.vala:421 +#: src/Common/LinuxKernel.vala:762 src/Console/AppConsole.vala:375 +#: src/Console/AppConsole.vala:419 msgid "No updates found" msgstr "Güncelleme bulunamadı" -#: src/Common/LinuxKernel.vala:806 -#, c-format -msgid "Install Linux v%s ? (y/n): " +#: src/Common/LinuxKernel.vala:772 +#, fuzzy, c-format +msgid "Install Kernel Version %s ? (y/n): " msgstr "Linux v%s Kur ? (e/h): " -#: src/Common/LinuxKernel.vala:1072 +#: src/Common/LinuxKernel.vala:1038 msgid "Packages Available" msgstr "Mevcut Paketler" -#: src/Common/LinuxKernel.vala:1080 +#: src/Common/LinuxKernel.vala:1046 msgid "Packages Installed" msgstr "Kurulu Paketler" -#: src/Common/LinuxKernel.vala:1164 +#: src/Common/LinuxKernel.vala:1130 msgid "Available Kernels" msgstr "Mevcut Çekirdekler" -#: src/Common/LinuxKernel.vala:1181 src/Gtk/MainWindow.vala:208 +#: src/Common/LinuxKernel.vala:1147 src/Gtk/MainWindow.vala:186 msgid "Installed" msgstr "Kurulu" -#: src/Common/LinuxKernel.vala:1181 src/Gtk/MainWindow.vala:208 +#: src/Common/LinuxKernel.vala:1147 src/Gtk/MainWindow.vala:186 msgid "Running" msgstr "Çalışıyor" -#: src/Common/LinuxKernel.vala:1210 +#: src/Common/LinuxKernel.vala:1182 msgid "Downloading" msgstr "İndiriliyor" -#: src/Common/LinuxKernel.vala:1229 +#: src/Common/LinuxKernel.vala:1201 #: src/Utility/Gtk/CustomMessageDialog.vala:148 #: src/Utility/Gtk/CustomMessageDialog.vala:152 msgid "OK" msgstr "TAMAM" -#: src/Common/LinuxKernel.vala:1238 +#: src/Common/LinuxKernel.vala:1207 msgid "ERROR" msgstr "HATA" -#: src/Common/LinuxKernel.vala:1252 src/Gtk/MainWindow.vala:681 +#: src/Common/LinuxKernel.vala:1221 src/Gtk/MainWindow.vala:653 msgid "This kernel is already installed." msgstr "Bu çekirdek zaten kurulu." -#: src/Common/LinuxKernel.vala:1283 +#: src/Common/LinuxKernel.vala:1252 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "Kurulum tamamlandı. Yeni çekirdeği kullanmak için yeniden başlatma gerekiyor." -#: src/Common/LinuxKernel.vala:1286 +#: src/Common/LinuxKernel.vala:1255 msgid "Installation completed with errors" msgstr "Kurulum hatalarla tamamlandı" -#: src/Common/LinuxKernel.vala:1302 +#: src/Common/LinuxKernel.vala:1271 msgid "" "Selected kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -131,19 +131,19 @@ msgstr "" "Seçilen çekirdek şu anda çalışıyor ve kaldırılamıyor.\n" " Bunu kaldırmadan önce başka bir çekirdek yükleyin." -#: src/Common/LinuxKernel.vala:1307 +#: src/Common/LinuxKernel.vala:1276 msgid "Preparing to remove selected kernels" msgstr "Seçilen çekirdekleri kaldırmak için hazırlanıyor" -#: src/Common/LinuxKernel.vala:1339 src/Common/LinuxKernel.vala:1392 +#: src/Common/LinuxKernel.vala:1308 src/Common/LinuxKernel.vala:1361 msgid "Un-install completed" msgstr "Kaldırma tamamlandı" -#: src/Common/LinuxKernel.vala:1342 src/Common/LinuxKernel.vala:1395 +#: src/Common/LinuxKernel.vala:1311 src/Common/LinuxKernel.vala:1364 msgid "Un-install completed with errors" msgstr "Kaldırma hatalarla tamamlandı" -#: src/Common/LinuxKernel.vala:1355 +#: src/Common/LinuxKernel.vala:1324 msgid "" "This kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -151,228 +151,216 @@ msgstr "" "Bu çekirdek şu anda çalışıyor ve bu sebeple kaldırılamaz.\n" "Bunu kaldırmadan önce başka bir çekirdek yükleyin." -#: src/Common/Main.vala:106 +#: src/Common/Main.vala:107 msgid "Commands listed below are not available on this system" msgstr "Aşağıda listelenen komutlar bu sistemde mevcut değil" -#: src/Common/Main.vala:107 +#: src/Common/Main.vala:108 msgid "Please install required packages and try again" msgstr "Lütfen gerekli paketleri yükleyin ve tekrar deneyin" -#: src/Common/Package.vala:126 src/Common/Package.vala:188 +#: src/Common/Package.vala:131 src/Common/Package.vala:193 #, c-format msgid "File not found: %s" msgstr "Şu dosya bulunamadı: %s" -#: src/Console/AppConsole.vala:80 src/Gtk/AppGtk.vala:174 +#: src/Console/AppConsole.vala:81 src/Gtk/AppGtk.vala:171 msgid "Syntax" msgstr "Sözdizimi" -#: src/Console/AppConsole.vala:82 +#: src/Console/AppConsole.vala:83 msgid "Commands" msgstr "Komutlar" -#: src/Console/AppConsole.vala:84 +#: src/Console/AppConsole.vala:85 msgid "Check for kernel updates" msgstr "Çekirdek güncellemelerini kontrol et" -#: src/Console/AppConsole.vala:85 +#: src/Console/AppConsole.vala:86 msgid "Check for kernel updates and notify current user" msgstr "Çekirdek güncellemelerini kontrol et ve mevcut kullanıcıyı uyar" -#: src/Console/AppConsole.vala:86 +#: src/Console/AppConsole.vala:87 msgid "List all available mainline kernels" msgstr "Tüm mainline çekirdeklerini listele" -#: src/Console/AppConsole.vala:87 +#: src/Console/AppConsole.vala:88 msgid "List installed kernels" msgstr "Kurulu çekirdekleri listele" -#: src/Console/AppConsole.vala:88 +#: src/Console/AppConsole.vala:89 msgid "Install latest mainline kernel" msgstr "En son mainline çekirdeğini kur" -#: src/Console/AppConsole.vala:89 +#: src/Console/AppConsole.vala:90 msgid "Install latest point update for current series" msgstr "Mevcut çekirdek serisi için en güncelleme noktasını kur" -#: src/Console/AppConsole.vala:90 +#: src/Console/AppConsole.vala:91 msgid "Install specified mainline kernel" msgstr "Belirtilen mainline çekirdeğini kur" -#: src/Console/AppConsole.vala:91 +#: src/Console/AppConsole.vala:92 msgid "Remove specified kernel" msgstr "Belirtilen çekirdeği kaldır" -#: src/Console/AppConsole.vala:92 src/Gtk/MainWindow.vala:422 +#: src/Console/AppConsole.vala:93 src/Gtk/MainWindow.vala:396 msgid "Remove installed kernels older than running kernel" msgstr "Çalışan çekirdekten eski olan kurulu çekirdekleri kaldır" -#: src/Console/AppConsole.vala:93 +#: src/Console/AppConsole.vala:94 msgid "Download packages for specified kernel" msgstr "Belirtilen çekirdek için paketleri indir" -#: src/Console/AppConsole.vala:94 src/Console/AppConsole.vala:99 +#: src/Console/AppConsole.vala:95 src/Console/AppConsole.vala:100 msgid "Remove files from application cache" msgstr "Dosyaları uygulama önbelleğinden sil" -#: src/Console/AppConsole.vala:95 +#: src/Console/AppConsole.vala:96 msgid "Show unstable and RC releases" msgstr "Kararsız ve RC sürümleri göster" -#: src/Console/AppConsole.vala:97 src/Gtk/AppGtk.vala:176 +#: src/Console/AppConsole.vala:98 src/Gtk/AppGtk.vala:173 msgid "Options" msgstr "Seçenekler" -#: src/Console/AppConsole.vala:100 +#: src/Console/AppConsole.vala:101 msgid "Enable verbose debugging output" msgstr "Ayrıntılı hata ayıklama çıktısını etkinleştir" -#: src/Console/AppConsole.vala:101 +#: src/Console/AppConsole.vala:102 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "Tüm istemler için Evet'i kabul edin (etkileşimsiz kip)" -#: src/Console/AppConsole.vala:102 +#: src/Console/AppConsole.vala:103 msgid "Override user" msgstr "Kullanıcıyı geçersiz kıl" -#: src/Console/AppConsole.vala:115 +#: src/Console/AppConsole.vala:116 msgid "Admin access is required for running this application." msgstr "Bu uygulamayı çalıştırmak için yönetici izni gerekiyor." -#: src/Console/AppConsole.vala:118 +#: src/Console/AppConsole.vala:119 msgid "Run the application as admin with pkexec or sudo." msgstr "Bu uygulamayı pkexec yada sudo ile yönetici haklarıyla çalıştırın." -#: src/Console/AppConsole.vala:198 src/Gtk/AppGtk.vala:161 +#: src/Console/AppConsole.vala:200 src/Gtk/AppGtk.vala:158 msgid "Unknown option" msgstr "Bilinmeyen seçenek" -#: src/Console/AppConsole.vala:200 src/Console/AppConsole.vala:314 -#: src/Console/AppConsole.vala:343 +#: src/Console/AppConsole.vala:202 src/Console/AppConsole.vala:315 +#: src/Console/AppConsole.vala:345 msgid "Run '" msgstr "Çalıştır '" -#: src/Console/AppConsole.vala:205 src/Gtk/AppGtk.vala:109 -msgid "Cache" -msgstr "Önbellek" - -#: src/Console/AppConsole.vala:206 src/Gtk/AppGtk.vala:110 -msgid "Temp" -msgstr "Geçici" - -#: src/Console/AppConsole.vala:286 src/Console/AppConsole.vala:323 +#: src/Console/AppConsole.vala:284 src/Console/AppConsole.vala:324 msgid "No kernels specified" msgstr "Belirtilen çekirdek yok" -#: src/Console/AppConsole.vala:292 +#: src/Console/AppConsole.vala:290 msgid "Multiple kernels selected for installation. Select only one." msgstr "Kurulum için çoklu çekirdek seçildi. Sadece bir tane seçiniz." -#: src/Console/AppConsole.vala:310 src/Gtk/MainWindow.vala:100 +#: src/Console/AppConsole.vala:311 src/Gtk/MainWindow.vala:100 msgid "Could not find requested version" msgstr "İstenen sürüm bulunamadı" -#: src/Console/AppConsole.vala:342 +#: src/Console/AppConsole.vala:344 msgid "Command not specified" msgstr "Komut belirtilmedi" -#: src/Console/AppConsole.vala:391 src/Console/AppConsole.vala:408 -#, c-format -msgid "Linux v%s Available" -msgstr "" - -#: src/Console/AppConsole.vala:392 -msgid "Major update available for installation" -msgstr "" - -#: src/Console/AppConsole.vala:409 -msgid "Minor update available for installation" -msgstr "" +#: src/Console/AppConsole.vala:393 src/Console/AppConsole.vala:408 +#, fuzzy, c-format +msgid "Kernel %s Available" +msgstr "Mevcut Paketler" -#: src/Gtk/AppGtk.vala:178 +#: src/Gtk/AppGtk.vala:175 msgid "Print debug information" msgstr "Hata ayıklama bilgisini yazdır" -#: src/Gtk/AppGtk.vala:179 +#: src/Gtk/AppGtk.vala:176 msgid "Show all options" msgstr "Tüm seçenekleri göster" -#: src/Gtk/MainWindow.vala:150 +#: src/Gtk/MainWindow.vala:146 msgid "Kernel" msgstr "Çekirdek" -#: src/Gtk/MainWindow.vala:179 -msgid "Version" -msgstr "Sürüm" - -#: src/Gtk/MainWindow.vala:196 +#: src/Gtk/MainWindow.vala:174 msgid "Status" msgstr "Durum" -#: src/Gtk/MainWindow.vala:341 +#: src/Gtk/MainWindow.vala:319 msgid "Refresh" msgstr "Yenile" -#: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:555 -#: src/Gtk/MainWindow.vala:686 src/Utility/TeeJee.System.vala:281 +#: src/Gtk/MainWindow.vala:326 src/Gtk/MainWindow.vala:527 +#: src/Gtk/MainWindow.vala:658 src/Utility/TeeJee.System.vala:146 msgid "Internet connection is not active" msgstr "İnternet bağlantısı aktif değil" -#: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:555 -#: src/Gtk/MainWindow.vala:686 +#: src/Gtk/MainWindow.vala:326 src/Gtk/MainWindow.vala:527 +#: src/Gtk/MainWindow.vala:658 msgid "No Internet" msgstr "İnternet Yok" -#: src/Gtk/MainWindow.vala:357 +#: src/Gtk/MainWindow.vala:335 msgid "Install" msgstr "Kur" -#: src/Gtk/MainWindow.vala:366 +#: src/Gtk/MainWindow.vala:344 msgid "Multiple Kernels Selected" msgstr "Çoklu Çekirdek Seçildi" -#: src/Gtk/MainWindow.vala:366 +#: src/Gtk/MainWindow.vala:344 msgid "Select a single kernel to install" msgstr "Kurulum için tek çekirdek seçin" -#: src/Gtk/MainWindow.vala:369 src/Gtk/MainWindow.vala:380 +#: src/Gtk/MainWindow.vala:347 src/Gtk/MainWindow.vala:358 msgid "Not Selected" msgstr "Seçilen Yok" -#: src/Gtk/MainWindow.vala:369 +#: src/Gtk/MainWindow.vala:347 msgid "Select the kernel to install" msgstr "Kurulum için çekirdek seçin" -#: src/Gtk/MainWindow.vala:374 +#: src/Gtk/MainWindow.vala:352 msgid "Remove" msgstr "Sil" -#: src/Gtk/MainWindow.vala:380 +#: src/Gtk/MainWindow.vala:358 msgid "Select the kernels to remove" msgstr "Kaldırma için çekirdek seçin" -#: src/Gtk/MainWindow.vala:421 +#: src/Gtk/MainWindow.vala:395 msgid "Purge" msgstr "Temizle" -#: src/Gtk/MainWindow.vala:458 +#: src/Gtk/MainWindow.vala:429 msgid "Changes" msgstr "Değişiklikler" -#: src/Gtk/MainWindow.vala:469 src/Gtk/SettingsDialog.vala:52 +#: src/Gtk/MainWindow.vala:440 src/Gtk/SettingsDialog.vala:52 msgid "Settings" msgstr "Ayarlar" -#: src/Gtk/MainWindow.vala:490 +#: src/Gtk/MainWindow.vala:461 msgid "About" msgstr "Hakkında" -#: src/Gtk/MainWindow.vala:539 +#: src/Gtk/MainWindow.vala:505 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Ubuntu tabanlı dağıtımlar için çekirdek güncelleme aracı" -#: src/Gtk/MainWindow.vala:574 +#: src/Gtk/MainWindow.vala:506 +msgid "Forked:" +msgstr "" + +#: src/Gtk/MainWindow.vala:506 +msgid "Original:" +msgstr "" + +#: src/Gtk/MainWindow.vala:546 msgid "Refreshing..." msgstr "Yenileniyor..." @@ -397,47 +385,56 @@ msgstr "Ara sürüm mevcutsa bildir" msgid "Show notification bubble on desktop" msgstr "Masaüstünde bildirim baloncuğu göster" -#: src/Gtk/SettingsDialog.vala:105 +#: src/Gtk/SettingsDialog.vala:102 +msgid "(Allowing intervals in seconds for --debug)" +msgstr "" + +#: src/Gtk/SettingsDialog.vala:112 msgid "Check every" msgstr "Kontrol aralığı" -#: src/Gtk/SettingsDialog.vala:136 +#: src/Gtk/SettingsDialog.vala:145 msgid "Hour(s)" msgstr "Saat" -#: src/Gtk/SettingsDialog.vala:138 +#: src/Gtk/SettingsDialog.vala:147 msgid "Day(s)" msgstr "Gün" -#: src/Gtk/SettingsDialog.vala:140 +#: src/Gtk/SettingsDialog.vala:149 msgid "Week(s)" msgstr "Hafta" -#: src/Gtk/SettingsDialog.vala:145 +#: src/Gtk/SettingsDialog.vala:152 +#, fuzzy +msgid "Second(s)" +msgstr "saniye" + +#: src/Gtk/SettingsDialog.vala:158 msgid "Display" msgstr "Gösterim" -#: src/Gtk/SettingsDialog.vala:153 +#: src/Gtk/SettingsDialog.vala:166 msgid "Hide unstable and RC releases" msgstr "Kararsız ve RC sürümleri gizle" -#: src/Gtk/SettingsDialog.vala:167 +#: src/Gtk/SettingsDialog.vala:180 msgid "Show N previous major versions " msgstr "Önceki ana sürümleri gösterme sayısı " -#: src/Gtk/SettingsDialog.vala:182 +#: src/Gtk/SettingsDialog.vala:195 msgid "Other" msgstr "Diğer" -#: src/Gtk/SettingsDialog.vala:190 +#: src/Gtk/SettingsDialog.vala:203 msgid "Skip internet connection check" msgstr "İnternet bağlantı kontrolünü atla" -#: src/Gtk/SettingsDialog.vala:203 +#: src/Gtk/SettingsDialog.vala:216 msgid "Internet connection timeout in " msgstr "İnternet bağlantısı zaman aşımı " -#: src/Gtk/SettingsDialog.vala:217 +#: src/Gtk/SettingsDialog.vala:230 msgid "seconds" msgstr "saniye" @@ -462,21 +459,22 @@ msgid "Contributions" msgstr "Destek verenler" #: src/Utility/Gtk/AboutWindow.vala:329 -msgid "Third Party Tools" -msgstr "Üçüncü Parti Araçlar" - -#: src/Utility/Gtk/AboutWindow.vala:337 msgid "Artists" msgstr "Sanatçılar" -#: src/Utility/Gtk/AboutWindow.vala:345 +#: src/Utility/Gtk/AboutWindow.vala:337 msgid "Translators" msgstr "Çevirenler" -#: src/Utility/Gtk/AboutWindow.vala:353 +#: src/Utility/Gtk/AboutWindow.vala:345 msgid "Documenters" msgstr "Belgelendirenler" +#: src/Utility/Gtk/AboutWindow.vala:353 +#, fuzzy +msgid "Third Party Inclusions" +msgstr "Üçüncü Parti Araçlar" + #: src/Utility/Gtk/CustomMessageDialog.vala:157 msgid "Yes" msgstr "Evet" @@ -493,72 +491,66 @@ msgstr "Hata" msgid "Missing Icon" msgstr "Eksik Simge" -#: src/Utility/TeeJee.FileSystem.vala:97 src/Utility/TeeJee.FileSystem.vala:100 +#: src/Utility/TeeJee.FileSystem.vala:73 src/Utility/TeeJee.FileSystem.vala:76 msgid "File deleted" msgstr "Dosya silindi" -#: src/Utility/TeeJee.FileSystem.vala:106 +#: src/Utility/TeeJee.FileSystem.vala:82 msgid "Failed to delete file" msgstr "Dosya silme başarısız" -#: src/Utility/TeeJee.FileSystem.vala:162 +#: src/Utility/TeeJee.FileSystem.vala:108 msgid "Failed to read file" msgstr "Dosya okuma başarısız" -#: src/Utility/TeeJee.FileSystem.vala:187 -#: src/Utility/TeeJee.FileSystem.vala:190 +#: src/Utility/TeeJee.FileSystem.vala:135 +#: src/Utility/TeeJee.FileSystem.vala:138 msgid "File saved" msgstr "Dosya kaydedildi" -#: src/Utility/TeeJee.FileSystem.vala:197 +#: src/Utility/TeeJee.FileSystem.vala:147 msgid "Failed to write file" msgstr "Dosya yazma başarısız" -#: src/Utility/TeeJee.FileSystem.vala:210 -#: src/Utility/TeeJee.FileSystem.vala:213 +#: src/Utility/TeeJee.FileSystem.vala:160 +#: src/Utility/TeeJee.FileSystem.vala:163 msgid "File copied" msgstr "Dosya kopyalandı" -#: src/Utility/TeeJee.FileSystem.vala:221 +#: src/Utility/TeeJee.FileSystem.vala:171 msgid "Failed to copy file" msgstr "Dosya kopyalama başarısız" -#: src/Utility/TeeJee.FileSystem.vala:231 -#: src/Utility/TeeJee.FileSystem.vala:538 +#: src/Utility/TeeJee.FileSystem.vala:181 msgid "File not found" msgstr "Dosya bulunamadı" -#: src/Utility/TeeJee.FileSystem.vala:245 -#: src/Utility/TeeJee.FileSystem.vala:248 +#: src/Utility/TeeJee.FileSystem.vala:195 +#: src/Utility/TeeJee.FileSystem.vala:198 msgid "File moved" msgstr "Dosya taşındı" -#: src/Utility/TeeJee.FileSystem.vala:253 +#: src/Utility/TeeJee.FileSystem.vala:203 msgid "Failed to move file" msgstr "Dosya taşıma başarısız" -#: src/Utility/TeeJee.FileSystem.vala:349 -#: src/Utility/TeeJee.FileSystem.vala:352 -#: src/Utility/TeeJee.FileSystem.vala:378 +#: src/Utility/TeeJee.FileSystem.vala:258 +#: src/Utility/TeeJee.FileSystem.vala:261 msgid "Created directory" msgstr "Dizin oluşturuldu" -#: src/Utility/TeeJee.FileSystem.vala:359 +#: src/Utility/TeeJee.FileSystem.vala:268 msgid "Failed to create dir" msgstr "Dizin oluşturma başarısız" -#: src/Utility/TeeJee.FileSystem.vala:375 -msgid "Deleted directory" -msgstr "Silinen dizin" - -#: src/Utility/TeeJee.FileSystem.vala:509 -msgid "Dir not found" -msgstr "Dizin bulunamadı" +#: src/Utility/TeeJee.FileSystem.vala:283 +#, fuzzy +msgid "Deleted" +msgstr "Dosya silindi" -#: src/Utility/TeeJee.FileSystem.vala:662 -#: src/Utility/TeeJee.FileSystem.vala:711 -msgid "File is missing" -msgstr "Dosya eksik" +#: src/Utility/TeeJee.FileSystem.vala:284 +msgid "FAILED deleting" +msgstr "" #: src/Utility/TeeJee.Logging.vala:89 msgid "E" @@ -568,6 +560,6 @@ msgstr "H" msgid "W" msgstr "U" -#: src/Utility/TeeJee.Process.vala:506 +#: src/Utility/TeeJee.Process.vala:507 msgid "Stopped" msgstr "Durduruldu" diff --git a/po/uk.po b/po/uk.po index 56cd8048..12a16c5c 100644 --- a/po/uk.po +++ b/po/uk.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-07 03:35-0400\n" +"POT-Creation-Date: 2020-05-09 07:19-0400\n" "PO-Revision-Date: 2019-07-25 11:00+0300\n" "Last-Translator: Serhii Golovko \n" "Language-Team: Ukranian \n" @@ -21,105 +21,105 @@ msgstr "Дистрибутив" msgid "Architecture" msgstr "Системна архитектура" -#: src/Common/LinuxKernel.vala:257 +#: src/Common/LinuxKernel.vala:231 msgid "Index is stale" msgstr "Відомості застаріли" -#: src/Common/LinuxKernel.vala:260 +#: src/Common/LinuxKernel.vala:234 msgid "Index is fresh" msgstr "Відомості актуальні" -#: src/Common/LinuxKernel.vala:365 +#: src/Common/LinuxKernel.vala:339 msgid "Fetching index..." msgstr "Отримання індекса ..." -#: src/Common/LinuxKernel.vala:408 +#: src/Common/LinuxKernel.vala:382 msgid "Fetching index from kernel.ubuntu.com..." msgstr "Отримання відомостей з kernel.ubuntu.com..." -#: src/Common/LinuxKernel.vala:727 +#: src/Common/LinuxKernel.vala:693 msgid "Could not find running kernel in list!" msgstr "Не вдалося знайти запущене ядро ​​у списку!" -#: src/Common/LinuxKernel.vala:733 +#: src/Common/LinuxKernel.vala:699 msgid "Could not find any kernels to remove" msgstr "Не вдалося знайти жодне ядро ​​для видалення" -#: src/Common/LinuxKernel.vala:742 +#: src/Common/LinuxKernel.vala:708 msgid "The following kernels will be removed:" msgstr "Наступні ядра будуть видалені:" -#: src/Common/LinuxKernel.vala:749 +#: src/Common/LinuxKernel.vala:715 msgid "Continue ?" msgstr "Продовжувати ?" -#: src/Common/LinuxKernel.vala:777 src/Console/AppConsole.vala:361 +#: src/Common/LinuxKernel.vala:743 src/Console/AppConsole.vala:363 msgid "Latest update" msgstr "Останнє оновлення" -#: src/Common/LinuxKernel.vala:788 src/Console/AppConsole.vala:368 +#: src/Common/LinuxKernel.vala:754 src/Console/AppConsole.vala:370 msgid "Latest point update" msgstr "Остання точка оновлення" -#: src/Common/LinuxKernel.vala:796 src/Console/AppConsole.vala:373 -#: src/Console/AppConsole.vala:421 +#: src/Common/LinuxKernel.vala:762 src/Console/AppConsole.vala:375 +#: src/Console/AppConsole.vala:419 msgid "No updates found" msgstr "Оновлень не знайдено" -#: src/Common/LinuxKernel.vala:806 -#, c-format -msgid "Install Linux v%s ? (y/n): " +#: src/Common/LinuxKernel.vala:772 +#, fuzzy, c-format +msgid "Install Kernel Version %s ? (y/n): " msgstr "Встановити Linux v% s? (так/ні): " -#: src/Common/LinuxKernel.vala:1072 +#: src/Common/LinuxKernel.vala:1038 msgid "Packages Available" msgstr "Доступні пакети" -#: src/Common/LinuxKernel.vala:1080 +#: src/Common/LinuxKernel.vala:1046 msgid "Packages Installed" msgstr "Встановлені пакети" -#: src/Common/LinuxKernel.vala:1164 +#: src/Common/LinuxKernel.vala:1130 msgid "Available Kernels" msgstr "Доступні ядра" -#: src/Common/LinuxKernel.vala:1181 src/Gtk/MainWindow.vala:208 +#: src/Common/LinuxKernel.vala:1147 src/Gtk/MainWindow.vala:186 msgid "Installed" msgstr "Встановлено" -#: src/Common/LinuxKernel.vala:1181 src/Gtk/MainWindow.vala:208 +#: src/Common/LinuxKernel.vala:1147 src/Gtk/MainWindow.vala:186 msgid "Running" msgstr "Використовується" -#: src/Common/LinuxKernel.vala:1210 +#: src/Common/LinuxKernel.vala:1182 msgid "Downloading" msgstr "Завантаження" -#: src/Common/LinuxKernel.vala:1229 +#: src/Common/LinuxKernel.vala:1201 #: src/Utility/Gtk/CustomMessageDialog.vala:148 #: src/Utility/Gtk/CustomMessageDialog.vala:152 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:1238 +#: src/Common/LinuxKernel.vala:1207 msgid "ERROR" msgstr "ПОМИЛКА" -#: src/Common/LinuxKernel.vala:1252 src/Gtk/MainWindow.vala:681 +#: src/Common/LinuxKernel.vala:1221 src/Gtk/MainWindow.vala:653 msgid "This kernel is already installed." msgstr "Это ядро уже установлено." -#: src/Common/LinuxKernel.vala:1283 +#: src/Common/LinuxKernel.vala:1252 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "Установка завершена. Обов'язково виконайте перезавантаження, щоб " "використовувати нове ядро." -#: src/Common/LinuxKernel.vala:1286 +#: src/Common/LinuxKernel.vala:1255 msgid "Installation completed with errors" msgstr "Установка завершена з помилками" -#: src/Common/LinuxKernel.vala:1302 +#: src/Common/LinuxKernel.vala:1271 msgid "" "Selected kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -127,19 +127,19 @@ msgstr "" "Це ядро ​​зараз працює і не може бути видалено. \n" "Встановіть інше ядро, перш ніж видаляти його." -#: src/Common/LinuxKernel.vala:1307 +#: src/Common/LinuxKernel.vala:1276 msgid "Preparing to remove selected kernels" msgstr "Підготовка до видалення вибраних ядер" -#: src/Common/LinuxKernel.vala:1339 src/Common/LinuxKernel.vala:1392 +#: src/Common/LinuxKernel.vala:1308 src/Common/LinuxKernel.vala:1361 msgid "Un-install completed" msgstr "Удаление завершено" -#: src/Common/LinuxKernel.vala:1342 src/Common/LinuxKernel.vala:1395 +#: src/Common/LinuxKernel.vala:1311 src/Common/LinuxKernel.vala:1364 msgid "Un-install completed with errors" msgstr "Удаление завершено с ошибками" -#: src/Common/LinuxKernel.vala:1355 +#: src/Common/LinuxKernel.vala:1324 msgid "" "This kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -147,228 +147,216 @@ msgstr "" "Это ядро в настоящий момент работает и не может быть удалено.\n" " Установите другое ядро, прежде чем удалять его." -#: src/Common/Main.vala:106 +#: src/Common/Main.vala:107 msgid "Commands listed below are not available on this system" msgstr "Команди перераховані нижче недоступні на цій системі" -#: src/Common/Main.vala:107 +#: src/Common/Main.vala:108 msgid "Please install required packages and try again" msgstr "Встановити необхідні пакети і спробуйте знову" -#: src/Common/Package.vala:126 src/Common/Package.vala:188 +#: src/Common/Package.vala:131 src/Common/Package.vala:193 #, c-format msgid "File not found: %s" msgstr "Файл не знайдено: %s" -#: src/Console/AppConsole.vala:80 src/Gtk/AppGtk.vala:174 +#: src/Console/AppConsole.vala:81 src/Gtk/AppGtk.vala:171 msgid "Syntax" msgstr "Синтаксис" -#: src/Console/AppConsole.vala:82 +#: src/Console/AppConsole.vala:83 msgid "Commands" msgstr "Команди" -#: src/Console/AppConsole.vala:84 +#: src/Console/AppConsole.vala:85 msgid "Check for kernel updates" msgstr "Перевірити оновлення ядра" -#: src/Console/AppConsole.vala:85 +#: src/Console/AppConsole.vala:86 msgid "Check for kernel updates and notify current user" msgstr "Перевірте наявність оновлень ядра та повідомте поточного користувача" -#: src/Console/AppConsole.vala:86 +#: src/Console/AppConsole.vala:87 msgid "List all available mainline kernels" msgstr "Список всіх доступних основних ядер" -#: src/Console/AppConsole.vala:87 +#: src/Console/AppConsole.vala:88 msgid "List installed kernels" msgstr "Список всіх доступних основних ядер" -#: src/Console/AppConsole.vala:88 +#: src/Console/AppConsole.vala:89 msgid "Install latest mainline kernel" msgstr "Встановити зазначену гілку ядра" -#: src/Console/AppConsole.vala:89 +#: src/Console/AppConsole.vala:90 msgid "Install latest point update for current series" msgstr "Встановіть останню точку оновлення для поточної серії" -#: src/Console/AppConsole.vala:90 +#: src/Console/AppConsole.vala:91 msgid "Install specified mainline kernel" msgstr "Встановити зазначену гілку ядра" -#: src/Console/AppConsole.vala:91 +#: src/Console/AppConsole.vala:92 msgid "Remove specified kernel" msgstr "Видаліть вказане ядро" -#: src/Console/AppConsole.vala:92 src/Gtk/MainWindow.vala:422 +#: src/Console/AppConsole.vala:93 src/Gtk/MainWindow.vala:396 msgid "Remove installed kernels older than running kernel" msgstr "Видаліть встановлені ядра, старші за запущене" -#: src/Console/AppConsole.vala:93 +#: src/Console/AppConsole.vala:94 msgid "Download packages for specified kernel" msgstr "Завантажити пакети для зазначеного ядра" -#: src/Console/AppConsole.vala:94 src/Console/AppConsole.vala:99 +#: src/Console/AppConsole.vala:95 src/Console/AppConsole.vala:100 msgid "Remove files from application cache" msgstr "Видалити файли з кешу програми" -#: src/Console/AppConsole.vala:95 +#: src/Console/AppConsole.vala:96 msgid "Show unstable and RC releases" msgstr "Приховати нестабільні і реліз-кандидат версії" -#: src/Console/AppConsole.vala:97 src/Gtk/AppGtk.vala:176 +#: src/Console/AppConsole.vala:98 src/Gtk/AppGtk.vala:173 msgid "Options" msgstr "Параметри" -#: src/Console/AppConsole.vala:100 +#: src/Console/AppConsole.vala:101 msgid "Enable verbose debugging output" msgstr "" -#: src/Console/AppConsole.vala:101 +#: src/Console/AppConsole.vala:102 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "Припустимо, так для всіх підказок (неінтерактивний режим)" -#: src/Console/AppConsole.vala:102 +#: src/Console/AppConsole.vala:103 msgid "Override user" msgstr "" -#: src/Console/AppConsole.vala:115 +#: src/Console/AppConsole.vala:116 msgid "Admin access is required for running this application." msgstr "Для запуску програми потрібно мати права адміністратора." -#: src/Console/AppConsole.vala:118 +#: src/Console/AppConsole.vala:119 msgid "Run the application as admin with pkexec or sudo." msgstr "Запустіть додаток як адміністратор за допомогою pkexec або sudo." -#: src/Console/AppConsole.vala:198 src/Gtk/AppGtk.vala:161 +#: src/Console/AppConsole.vala:200 src/Gtk/AppGtk.vala:158 msgid "Unknown option" msgstr "Невідомий параметр" -#: src/Console/AppConsole.vala:200 src/Console/AppConsole.vala:314 -#: src/Console/AppConsole.vala:343 +#: src/Console/AppConsole.vala:202 src/Console/AppConsole.vala:315 +#: src/Console/AppConsole.vala:345 msgid "Run '" msgstr "Запуск" -#: src/Console/AppConsole.vala:205 src/Gtk/AppGtk.vala:109 -msgid "Cache" -msgstr "Кеш" - -#: src/Console/AppConsole.vala:206 src/Gtk/AppGtk.vala:110 -msgid "Temp" -msgstr "Темп" - -#: src/Console/AppConsole.vala:286 src/Console/AppConsole.vala:323 +#: src/Console/AppConsole.vala:284 src/Console/AppConsole.vala:324 msgid "No kernels specified" msgstr "Ядра не вказані" -#: src/Console/AppConsole.vala:292 +#: src/Console/AppConsole.vala:290 msgid "Multiple kernels selected for installation. Select only one." msgstr "Для встановлення вибрано кілька ядер. Виберіть лише одну." -#: src/Console/AppConsole.vala:310 src/Gtk/MainWindow.vala:100 +#: src/Console/AppConsole.vala:311 src/Gtk/MainWindow.vala:100 msgid "Could not find requested version" msgstr "Не вдалося знайти запитувану версію" -#: src/Console/AppConsole.vala:342 +#: src/Console/AppConsole.vala:344 msgid "Command not specified" msgstr "Команда не вказана" -#: src/Console/AppConsole.vala:391 src/Console/AppConsole.vala:408 -#, c-format -msgid "Linux v%s Available" -msgstr "" - -#: src/Console/AppConsole.vala:392 -msgid "Major update available for installation" -msgstr "" - -#: src/Console/AppConsole.vala:409 -msgid "Minor update available for installation" -msgstr "" +#: src/Console/AppConsole.vala:393 src/Console/AppConsole.vala:408 +#, fuzzy, c-format +msgid "Kernel %s Available" +msgstr "Доступні пакети" -#: src/Gtk/AppGtk.vala:178 +#: src/Gtk/AppGtk.vala:175 msgid "Print debug information" msgstr "Роздрукувати зневадження" -#: src/Gtk/AppGtk.vala:179 +#: src/Gtk/AppGtk.vala:176 msgid "Show all options" msgstr "Показати усі параметри" -#: src/Gtk/MainWindow.vala:150 +#: src/Gtk/MainWindow.vala:146 msgid "Kernel" msgstr "Ядро" -#: src/Gtk/MainWindow.vala:179 -msgid "Version" -msgstr "Версія" - -#: src/Gtk/MainWindow.vala:196 +#: src/Gtk/MainWindow.vala:174 msgid "Status" msgstr "Стан" -#: src/Gtk/MainWindow.vala:341 +#: src/Gtk/MainWindow.vala:319 msgid "Refresh" msgstr "Оновити" -#: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:555 -#: src/Gtk/MainWindow.vala:686 src/Utility/TeeJee.System.vala:281 +#: src/Gtk/MainWindow.vala:326 src/Gtk/MainWindow.vala:527 +#: src/Gtk/MainWindow.vala:658 src/Utility/TeeJee.System.vala:146 msgid "Internet connection is not active" msgstr "Інтернет з'єднання не активно" -#: src/Gtk/MainWindow.vala:348 src/Gtk/MainWindow.vala:555 -#: src/Gtk/MainWindow.vala:686 +#: src/Gtk/MainWindow.vala:326 src/Gtk/MainWindow.vala:527 +#: src/Gtk/MainWindow.vala:658 msgid "No Internet" msgstr "Інтернету немає" -#: src/Gtk/MainWindow.vala:357 +#: src/Gtk/MainWindow.vala:335 msgid "Install" msgstr "Встановити" -#: src/Gtk/MainWindow.vala:366 +#: src/Gtk/MainWindow.vala:344 msgid "Multiple Kernels Selected" msgstr "Вибрано кілька ядер" -#: src/Gtk/MainWindow.vala:366 +#: src/Gtk/MainWindow.vala:344 msgid "Select a single kernel to install" msgstr "Виберіть одне ядро ​​для встановлення" -#: src/Gtk/MainWindow.vala:369 src/Gtk/MainWindow.vala:380 +#: src/Gtk/MainWindow.vala:347 src/Gtk/MainWindow.vala:358 msgid "Not Selected" msgstr "Не вибрано" -#: src/Gtk/MainWindow.vala:369 +#: src/Gtk/MainWindow.vala:347 msgid "Select the kernel to install" msgstr "Виберіть ядро ​​для встановлення" -#: src/Gtk/MainWindow.vala:374 +#: src/Gtk/MainWindow.vala:352 msgid "Remove" msgstr "Видалити" -#: src/Gtk/MainWindow.vala:380 +#: src/Gtk/MainWindow.vala:358 msgid "Select the kernels to remove" msgstr "Виберіть ядра для видалення" -#: src/Gtk/MainWindow.vala:421 +#: src/Gtk/MainWindow.vala:395 msgid "Purge" msgstr "Чистити" -#: src/Gtk/MainWindow.vala:458 +#: src/Gtk/MainWindow.vala:429 msgid "Changes" msgstr "Зміни" -#: src/Gtk/MainWindow.vala:469 src/Gtk/SettingsDialog.vala:52 +#: src/Gtk/MainWindow.vala:440 src/Gtk/SettingsDialog.vala:52 msgid "Settings" msgstr "Налаштування" -#: src/Gtk/MainWindow.vala:490 +#: src/Gtk/MainWindow.vala:461 msgid "About" msgstr "Про программу" -#: src/Gtk/MainWindow.vala:539 +#: src/Gtk/MainWindow.vala:505 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Програма оновлення ядра для дистрибутивів на базі Ubuntu" -#: src/Gtk/MainWindow.vala:574 +#: src/Gtk/MainWindow.vala:506 +msgid "Forked:" +msgstr "" + +#: src/Gtk/MainWindow.vala:506 +msgid "Original:" +msgstr "" + +#: src/Gtk/MainWindow.vala:546 msgid "Refreshing..." msgstr "Оновлення..." @@ -393,47 +381,56 @@ msgstr "Повідомити, чи доступний невеликий вип msgid "Show notification bubble on desktop" msgstr "Показувати вікно сповіщень на робочому столі" -#: src/Gtk/SettingsDialog.vala:105 +#: src/Gtk/SettingsDialog.vala:102 +msgid "(Allowing intervals in seconds for --debug)" +msgstr "" + +#: src/Gtk/SettingsDialog.vala:112 msgid "Check every" msgstr "Перевіряти кожні" -#: src/Gtk/SettingsDialog.vala:136 +#: src/Gtk/SettingsDialog.vala:145 msgid "Hour(s)" msgstr "Година(дин)" -#: src/Gtk/SettingsDialog.vala:138 +#: src/Gtk/SettingsDialog.vala:147 msgid "Day(s)" msgstr "День(днів)" -#: src/Gtk/SettingsDialog.vala:140 +#: src/Gtk/SettingsDialog.vala:149 msgid "Week(s)" msgstr "Тиждень (ні)" -#: src/Gtk/SettingsDialog.vala:145 +#: src/Gtk/SettingsDialog.vala:152 +#, fuzzy +msgid "Second(s)" +msgstr "секунди" + +#: src/Gtk/SettingsDialog.vala:158 msgid "Display" msgstr "Вид" -#: src/Gtk/SettingsDialog.vala:153 +#: src/Gtk/SettingsDialog.vala:166 msgid "Hide unstable and RC releases" msgstr "Приховати нестабільні і реліз-кандидат версії" -#: src/Gtk/SettingsDialog.vala:167 +#: src/Gtk/SettingsDialog.vala:180 msgid "Show N previous major versions " msgstr "" -#: src/Gtk/SettingsDialog.vala:182 +#: src/Gtk/SettingsDialog.vala:195 msgid "Other" msgstr "Інший" -#: src/Gtk/SettingsDialog.vala:190 +#: src/Gtk/SettingsDialog.vala:203 msgid "Skip internet connection check" msgstr "Пропустити перевірку підключення до Інтернету" -#: src/Gtk/SettingsDialog.vala:203 +#: src/Gtk/SettingsDialog.vala:216 msgid "Internet connection timeout in " msgstr "Час очікування підключення до Інтернету в " -#: src/Gtk/SettingsDialog.vala:217 +#: src/Gtk/SettingsDialog.vala:230 msgid "seconds" msgstr "секунди" @@ -458,21 +455,22 @@ msgid "Contributions" msgstr "Внески" #: src/Utility/Gtk/AboutWindow.vala:329 -msgid "Third Party Tools" -msgstr "Сторонние инструменты" - -#: src/Utility/Gtk/AboutWindow.vala:337 msgid "Artists" msgstr "Художники" -#: src/Utility/Gtk/AboutWindow.vala:345 +#: src/Utility/Gtk/AboutWindow.vala:337 msgid "Translators" msgstr "Перекладачи" -#: src/Utility/Gtk/AboutWindow.vala:353 +#: src/Utility/Gtk/AboutWindow.vala:345 msgid "Documenters" msgstr "Укладачі документації" +#: src/Utility/Gtk/AboutWindow.vala:353 +#, fuzzy +msgid "Third Party Inclusions" +msgstr "Сторонние инструменты" + #: src/Utility/Gtk/CustomMessageDialog.vala:157 msgid "Yes" msgstr "Так" @@ -489,72 +487,66 @@ msgstr "Помилка" msgid "Missing Icon" msgstr "Нема значка" -#: src/Utility/TeeJee.FileSystem.vala:97 src/Utility/TeeJee.FileSystem.vala:100 +#: src/Utility/TeeJee.FileSystem.vala:73 src/Utility/TeeJee.FileSystem.vala:76 msgid "File deleted" msgstr "Не вдалося видалити файл" -#: src/Utility/TeeJee.FileSystem.vala:106 +#: src/Utility/TeeJee.FileSystem.vala:82 msgid "Failed to delete file" msgstr "Не вдалося видалити файл" -#: src/Utility/TeeJee.FileSystem.vala:162 +#: src/Utility/TeeJee.FileSystem.vala:108 msgid "Failed to read file" msgstr "Не вдалося прочитати файл" -#: src/Utility/TeeJee.FileSystem.vala:187 -#: src/Utility/TeeJee.FileSystem.vala:190 +#: src/Utility/TeeJee.FileSystem.vala:135 +#: src/Utility/TeeJee.FileSystem.vala:138 msgid "File saved" msgstr "Файл збережено" -#: src/Utility/TeeJee.FileSystem.vala:197 +#: src/Utility/TeeJee.FileSystem.vala:147 msgid "Failed to write file" msgstr "Не вдалося записати файл" -#: src/Utility/TeeJee.FileSystem.vala:210 -#: src/Utility/TeeJee.FileSystem.vala:213 +#: src/Utility/TeeJee.FileSystem.vala:160 +#: src/Utility/TeeJee.FileSystem.vala:163 msgid "File copied" msgstr "Не вдалося скопіювати файл" -#: src/Utility/TeeJee.FileSystem.vala:221 +#: src/Utility/TeeJee.FileSystem.vala:171 msgid "Failed to copy file" msgstr "Не вдалося скопіювати файл" -#: src/Utility/TeeJee.FileSystem.vala:231 -#: src/Utility/TeeJee.FileSystem.vala:538 +#: src/Utility/TeeJee.FileSystem.vala:181 msgid "File not found" msgstr "Файл не знайдено" -#: src/Utility/TeeJee.FileSystem.vala:245 -#: src/Utility/TeeJee.FileSystem.vala:248 +#: src/Utility/TeeJee.FileSystem.vala:195 +#: src/Utility/TeeJee.FileSystem.vala:198 msgid "File moved" msgstr "Видалити" -#: src/Utility/TeeJee.FileSystem.vala:253 +#: src/Utility/TeeJee.FileSystem.vala:203 msgid "Failed to move file" msgstr "Не вдалося перемістити файл" -#: src/Utility/TeeJee.FileSystem.vala:349 -#: src/Utility/TeeJee.FileSystem.vala:352 -#: src/Utility/TeeJee.FileSystem.vala:378 +#: src/Utility/TeeJee.FileSystem.vala:258 +#: src/Utility/TeeJee.FileSystem.vala:261 msgid "Created directory" msgstr "Використовувана кеш-папка" -#: src/Utility/TeeJee.FileSystem.vala:359 +#: src/Utility/TeeJee.FileSystem.vala:268 msgid "Failed to create dir" msgstr "Не вдалося створити теку" -#: src/Utility/TeeJee.FileSystem.vala:375 -msgid "Deleted directory" -msgstr "Видалений каталог" - -#: src/Utility/TeeJee.FileSystem.vala:509 -msgid "Dir not found" -msgstr "Тека не знайдена" +#: src/Utility/TeeJee.FileSystem.vala:283 +#, fuzzy +msgid "Deleted" +msgstr "Не вдалося видалити файл" -#: src/Utility/TeeJee.FileSystem.vala:662 -#: src/Utility/TeeJee.FileSystem.vala:711 -msgid "File is missing" -msgstr "Файл відсутній" +#: src/Utility/TeeJee.FileSystem.vala:284 +msgid "FAILED deleting" +msgstr "" #: src/Utility/TeeJee.Logging.vala:89 msgid "E" @@ -564,6 +556,6 @@ msgstr "E" msgid "W" msgstr "W" -#: src/Utility/TeeJee.Process.vala:506 +#: src/Utility/TeeJee.Process.vala:507 msgid "Stopped" msgstr "Зупинено" diff --git a/src/Common/DownloadManager.vala b/src/Common/DownloadManager.vala index 2e71fb80..20d2c187 100644 --- a/src/Common/DownloadManager.vala +++ b/src/Common/DownloadManager.vala @@ -94,7 +94,12 @@ public class DownloadTask : AsyncTask{ list += " out=%s\n".printf(item.file_name); } file_write(list_file, list); - log_debug("saved download list: %s".printf(list_file)); + + //log_debug("LinuxKernel.CURRENT_USER="+LinuxKernel.CURRENT_USER); + //log_debug("App.user_login="+App.user_login); + //log_debug("saved download list: %s".printf(list_file)); + + chown(list_file,App.user_login,App.user_login); string cmd = "aria2c"; cmd += " --no-netrc true"; @@ -200,20 +205,18 @@ public class DownloadTask : AsyncTask{ } protected override void finish_task(){ - - verify(); - + mv_partials_to_finals(); dir_delete(working_dir); } - private void verify() { + private void mv_partials_to_finals() { - log_debug("verify()"); + //log_debug("mv_partials_to_finals()"); foreach(var item in downloads){ if (!file_exists(item.file_path_partial)){ - log_debug("verify: file_path_partial not found: %s".printf(item.file_path_partial)); + log_debug("file_path_partial not found: %s".printf(item.file_path_partial)); continue; } diff --git a/src/Common/LinuxKernel.vala b/src/Common/LinuxKernel.vala index a20ffa74..8bbf8101 100644 --- a/src/Common/LinuxKernel.vala +++ b/src/Common/LinuxKernel.vala @@ -7,8 +7,8 @@ using TeeJee.Misc; public class LinuxKernel : GLib.Object, Gee.Comparable { - public string name = ""; - public string version = ""; + public string kname = ""; + public string kver = ""; public string version_main = ""; public string version_extra = ""; public string version_package = ""; @@ -27,8 +27,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { public bool is_installed = false; public bool is_running = false; public bool is_mainline = false; - public bool is_mainline_package = false; // TODO: remove this - + public string deb_header = ""; public string deb_header_all = ""; public string deb_image = ""; @@ -37,7 +36,8 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { // static - public static string URI_KERNEL_UBUNTU_MAINLINE = "http://kernel.ubuntu.com/~kernel-ppa/mainline/"; + [CCode(cname="URI_KERNEL_UBUNTU_MAINLINE")] extern const string URI_KERNEL_UBUNTU_MAINLINE; + public static string CACHE_DIR; public static string NATIVE_ARCH; public static string LINUX_DISTRO; @@ -120,24 +120,6 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { ver = std_out.strip().replace("\n",""); log_msg("Running kernel" + ": %s".printf(ver)); - exec_sync("uname -a", out std_out, null); - log_debug(std_out); - - string[] arr = std_out.split(ver); - if (arr.length > 0){ - string[] parts = arr[1].strip().split_set(" -_~"); - string partnum = parts[0].strip(); - if (partnum.has_prefix("#")){ - partnum = partnum[1:partnum.length]; - if (is_numeric(partnum) && (partnum.length <= 3)){ - var kern = new LinuxKernel.from_version(ver); - ver = "%s.%s".printf(kern.version_main, partnum); - } - } - } - - log_msg("Kernel version" + ": %s".printf(ver)); - return ver; } @@ -173,11 +155,10 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { } public static void clean_cache(){ + //log_debug("clean_cache() deleting: \"%s\"".printf(CACHE_DIR)); if (dir_exists(CACHE_DIR)){ bool ok = dir_delete(CACHE_DIR); - if (ok){ - log_msg("Removed cached files in '%s'".printf(CACHE_DIR)); - } + if (ok) log_msg("Removed cached files in '%s'".printf(CACHE_DIR)); } } @@ -186,22 +167,17 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { public LinuxKernel(string _name, bool _is_mainline){ if (_name.has_suffix("/")){ - this.name = _name[0: _name.length - 1]; + this.kname = _name[0: _name.length - 1]; } else{ - this.name = _name; + this.kname = _name; } // parse version string --------- - version = this.name; - - // remove "v" - if (version.has_prefix("v")){ - version = version[1:version.length]; - } + kver = this.kname; - split_version_string(version, out version_main, out version_extra); + split_version_string(kver, out version_main, out version_extra); // set page URI ----------- @@ -212,11 +188,9 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { public LinuxKernel.from_version(string _version){ - version = _version; - - name = "v" + version; + kver = _version; - split_version_string(version, out version_main, out version_extra); + split_version_string(kver, out version_main, out version_extra); page_uri = ""; } @@ -436,7 +410,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { string txt = file_read(index_page); // parse index.html -------------------------- - + // https://kernel.ubuntu.com/~kernel-ppa/mainline/v5.6.11/ try{ //v3.0.16-oneiric/ var rex = new Regex("""([a-zA-Z0-9\-._]+)[\/]*<\/a>"""); @@ -467,7 +441,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { public static void check_installed(){ - log_debug("check_installed"); + log_debug("check_installed()"); log_msg(string.nfill(70, '-')); @@ -481,21 +455,17 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { var pkg_versions = new Gee.ArrayList(); foreach(var pkg in pkg_list_installed.values){ - if (pkg.name.contains("linux-image")){ + if (pkg.pname.contains("linux-image")){ if (!pkg_versions.contains(pkg.version_installed)){ pkg_versions.add(pkg.version_installed); log_msg("Found installed" + ": %s".printf(pkg.version_installed)); - string kern_name = "v%s".printf(pkg.version_installed); + string kern_name = "%s".printf(pkg.version_installed); var kern = new LinuxKernel(kern_name, false); kern.is_installed = true; kern.set_apt_pkg_list(); - if (kern.is_mainline_package){ - continue; - } - bool found = false; foreach(var kernel in kernel_list){ if (kernel.version_main == kern.version_main){ @@ -584,26 +554,22 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { public static void check_available(){ - log_debug("check_available"); + log_debug("check_available()"); var list = Package.query_available_packages("^linux-image"); var pkg_versions = new Gee.ArrayList(); foreach(var pkg in list.values){ - if (pkg.name.contains("linux-image")){ + if (pkg.pname.contains("linux-image")){ if (!pkg_versions.contains(pkg.version_installed)){ pkg_versions.add(pkg.version_installed); log_msg("Found upgrade" + ": %s".printf(pkg.version_installed)); - string kern_name = "v%s".printf(pkg.version_installed); + string kern_name = "%s".printf(pkg.version_installed); var kern = new LinuxKernel(kern_name, false); kern.is_installed = false; - - if (kern.is_mainline_package){ - continue; - } bool found = false; foreach(var kernel in kernel_list){ @@ -627,7 +593,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { public static void check_updates(){ - log_debug("check_updates"); + log_debug("check_updates()"); kernel_update_major = null; kernel_update_minor = null; @@ -743,7 +709,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { foreach(var kern in list){ - message += " ▰ v%s\n".printf(kern.version_main); + message += " ▰ %s\n".printf(kern.version_main); } message += "\n%s (y/n): ".printf(_("Continue ?")); @@ -803,7 +769,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { if (confirm){ - var message = "\n" + _("Install Linux v%s ? (y/n): ").printf(kern.version_main); + var message = "\n" + _("Install Kernel Version %s ? (y/n): ").printf(kern.version_main); stdout.printf(message); stdout.flush(); @@ -958,12 +924,12 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { public void set_apt_pkg_list(){ foreach(var pkg in pkg_list_installed.values){ - if (!pkg.name.has_prefix("linux-")){ + if (!pkg.pname.has_prefix("linux-")){ continue; } - if (pkg.version_installed == version){ - apt_pkg_list[pkg.name] = pkg.name; - log_debug("Package: %s".printf(pkg.name)); + if (pkg.version_installed == kver){ + apt_pkg_list[pkg.pname] = pkg.pname; + log_debug("Package: %s".printf(pkg.pname)); } } } @@ -972,13 +938,13 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { public bool is_rc{ get { - return version.contains("-rc"); + return kver.contains("-rc"); } } public bool is_unstable{ get { - return version.contains("-rc") || version.contains("-unstable"); + return kver.contains("-rc") || kver.contains("-unstable"); } } @@ -1007,10 +973,10 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { public string cache_subdir{ owned get { - return "%s/%s".printf(CACHE_DIR, name); + return "%s/%s".printf(CACHE_DIR,version_main); } } - + public string cached_page{ owned get { return "%s/index.html".printf(cache_subdir); @@ -1180,7 +1146,10 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { extra = extra.has_prefix("-") ? extra[1:extra.length] : extra; var desc = kern.is_running ? _("Running") : (kern.is_installed ? _("Installed") : ""); - log_msg("%-30s %-25s %s".printf(kern.name, kern.version_main, desc)); + // kern.kname "v5.6.11" -> cache download dir names, needed for --install, --remove + // kern.kver or kern.version_main "5.6.11" -> most displays & references + //log_msg("%-32s %-32s %s".printf(kern.kname, kern.version_main, desc)); + log_msg("%-32s %s".printf(kern.version_main, desc)); } } @@ -1194,19 +1163,22 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { // dep: aria2c public bool download_packages(){ bool ok = true; + //log_debug("download_packages(): CURRENT_USER="+CURRENT_USER); check_if_initialized(); foreach(string file_name in deb_list.keys){ - string file_path = "%s/%s/%s".printf(cache_subdir, NATIVE_ARCH, file_name); + string dl_dir = "%s/%s".printf(cache_subdir, NATIVE_ARCH); + string file_path = "%s/%s".printf(dl_dir, file_name); if (file_exists(file_path) && !file_exists(file_path + ".aria2c")){ continue; } - dir_create(file_parent(file_path)); - + dir_create(dl_dir); + chown(dl_dir, CURRENT_USER, CURRENT_USER); + stdout.printf("\n" + _("Downloading") + ": '%s'... \n".printf(file_name)); stdout.flush(); @@ -1228,11 +1200,8 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { if (file_exists(file_path)){ stdout.printf("\r%-70s\n".printf(_("OK"))); stdout.flush(); - - if (get_user_id_effective() == 0){ - chown(file_path, CURRENT_USER, CURRENT_USER); - chmod(file_path, "a+rw"); - } + + chown(file_path, CURRENT_USER, CURRENT_USER); } else{ stdout.printf("\r%-70s\n".printf(_("ERROR"))); @@ -1258,7 +1227,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { if (ok){ - log_msg("Preparing to install '%s'".printf(name)); + log_msg("Preparing to install '%s'".printf(version_main)); // kname var flist = ""; @@ -1356,7 +1325,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { return false; } - log_msg("Preparing to remove '%s'".printf(name)); + log_msg("Preparing to remove '%s'".printf(version_main)); // kname var cmd = "dpkg -r "; diff --git a/src/Common/Main.vala b/src/Common/Main.vala index cb467f3e..e88c926b 100644 --- a/src/Common/Main.vala +++ b/src/Common/Main.vala @@ -71,13 +71,14 @@ public class Main : GLib.Object{ // constructors ------------ public Main(string[] arg0, bool _gui_mode){ + //log_msg("Main()"); GUI_MODE = _gui_mode; - + LOG_TIMESTAMP = false; Package.initialize(); - + LinuxKernel.initialize(); init_paths(); @@ -132,6 +133,8 @@ public class Main : GLib.Object{ LinuxKernel.CACHE_DIR = user_home + "/.cache/" + BRANDING_SHORTNAME; LinuxKernel.CURRENT_USER = user_login; LinuxKernel.CURRENT_USER_HOME = user_home; + + //log_debug("CACHE_DIR=%s".printf(LinuxKernel.CACHE_DIR)); } public void save_app_config(){ @@ -162,7 +165,6 @@ public class Main : GLib.Object{ log_debug("Saved config file: %s".printf(APP_CONFIG_FILE)); - // change owner to current user so that ukuu can access in normal mode chown(APP_CONFIG_FILE, user_login, user_login); update_notification_files(); @@ -233,16 +235,23 @@ public class Main : GLib.Object{ suffix = "d"; count = App.notify_interval_value * 7; break; + case 3: // second + suffix = ""; + count = App.notify_interval_value; + break; } if (file_exists(STARTUP_SCRIPT_FILE)){ file_delete(STARTUP_SCRIPT_FILE); } - // UGLY - this should be a cron job - string txt = "# Notifications are disabled\nexit 0\n"; + string opts = ""; + if (LOG_DEBUG) opts = "--debug"; + string txt = "# Called from " + STARTUP_DESKTOP_FILE + "\n"; if (notify_minor || notify_major){ - txt = "while sleep %d%s".printf(count, suffix)+" ;do " + BRANDING_SHORTNAME + " --notify ;done\n"; + txt = txt + "while : ;do "+BRANDING_SHORTNAME+" %s --notify ;sleep %d%s".printf(opts,count,suffix)+" ;done\n"; + } else { + txt = txt + "# Notifications are disabled\nexit 0\n"; } file_write(STARTUP_SCRIPT_FILE,txt); diff --git a/src/Common/Package.vala b/src/Common/Package.vala index 3c9c755c..c01cf06c 100644 --- a/src/Common/Package.vala +++ b/src/Common/Package.vala @@ -5,7 +5,7 @@ using TeeJee.Misc; public class Package : GLib.Object { public string id = ""; - public string name = ""; + public string pname = ""; public string description = ""; public string server = ""; public string repo = ""; @@ -42,7 +42,7 @@ public class Package : GLib.Object { } public Package(string _name){ - name = _name; + pname = _name; } public bool is_foreign(){ @@ -83,7 +83,12 @@ public class Package : GLib.Object { string std_out, std_err; exec_sync("aptitude search --disable-columns -F '%p|%v|%M|%d' '?installed'", out std_out, out std_err); file_write(temp_file, std_out); - +/* +linux-headers-5.6.10-050610|5.6.10-050610.202005052153||Header files related to Linux kernel version 5.6.10 +linux-headers-5.6.10-050610-generic|5.6.10-050610.202005052153||Linux kernel headers for version 5.6.10 on 64 bit x86 SMP +linux-image-unsigned-5.3.0-51-generic|5.3.0-51.44||Linux kernel image for version 5.3.0 on 64 bit x86 SMP +linux-image-unsigned-5.6.10-050610-generic|5.6.10-050610.202005052153||Linux kernel image for version 5.6.10 on 64 bit x86 SMP +*/ // parse ------------------------ try { @@ -97,21 +102,21 @@ public class Package : GLib.Object { continue; } - string name = arr[0].strip(); - string arch = (name.contains(":")) ? name.split(":")[1].strip() : ""; - if (name.contains(":")) { name = name.split(":")[0]; } + string pname = arr[0].strip(); + string arch = (pname.contains(":")) ? pname.split(":")[1].strip() : ""; + if (pname.contains(":")) { pname = pname.split(":")[0]; } string version = arr[1].strip(); string auto = arr[2].strip(); string desc = arr[3].strip(); - string id = Package.get_id(name,arch); + string id = Package.get_id(pname,arch); Package pkg = null; if (!list.has_key(id)) { - pkg = new Package(name); + pkg = new Package(pname); pkg.arch = arch; pkg.description = desc; - pkg.id = Package.get_id(pkg.name,pkg.arch); + pkg.id = Package.get_id(pkg.pname,pkg.arch); list[pkg.id] = pkg; } @@ -129,7 +134,7 @@ public class Package : GLib.Object { catch (Error e) { log_error (e.message); } - + //file_delete(temp_file); return list; } @@ -159,21 +164,21 @@ public class Package : GLib.Object { continue; } - string name = arr[0].strip(); - string arch = (name.contains(":")) ? name.split(":")[1].strip() : ""; - if (name.contains(":")) { name = name.split(":")[0]; } + string pname = arr[0].strip(); + string arch = (pname.contains(":")) ? pname.split(":")[1].strip() : ""; + if (pname.contains(":")) { pname = pname.split(":")[0]; } string version = arr[1].strip(); string auto = arr[2].strip(); string desc = arr[3].strip(); - string id = Package.get_id(name,arch); + string id = Package.get_id(pname,arch); Package pkg = null; if (!list.has_key(id)) { - pkg = new Package(name); + pkg = new Package(pname); pkg.arch = arch; pkg.description = desc; - pkg.id = Package.get_id(pkg.name,pkg.arch); + pkg.id = Package.get_id(pkg.pname,pkg.arch); list[pkg.id] = pkg; } @@ -191,7 +196,7 @@ public class Package : GLib.Object { catch (Error e) { log_error (e.message); } - + //file_delete(temp_file); return list; } } diff --git a/src/Console/AppConsole.vala b/src/Console/AppConsole.vala index 3246fe95..b147947d 100644 --- a/src/Console/AppConsole.vala +++ b/src/Console/AppConsole.vala @@ -32,6 +32,7 @@ using TeeJee.Misc; public Main App; + [CCode(cname="BRANDING_SHORTNAME")] extern const string BRANDING_SHORTNAME; [CCode(cname="BRANDING_LONGNAME")] extern const string BRANDING_LONGNAME; [CCode(cname="BRANDING_VERSION")] extern const string BRANDING_VERSION; @@ -45,7 +46,7 @@ public class AppConsole : GLib.Object { set_locale(); - log_msg("%s v%s".printf(BRANDING_SHORTNAME, BRANDING_VERSION)); + log_msg("%s %s".printf(BRANDING_SHORTNAME, BRANDING_VERSION)); init_tmp(); @@ -75,40 +76,40 @@ public class AppConsole : GLib.Object { private static string help_message() { - string msg = "\n" + BRANDING_SHORTNAME + " v" + BRANDING_VERSION + " - " + BRANDING_LONGNAME + "\n"; - msg += "\n"; - msg += _("Syntax") + ": " + BRANDING_SHORTNAME + " [options]\n"; - msg += "\n"; - msg += _("Commands") + ":\n"; - msg += "\n"; - msg += " --check " + _("Check for kernel updates") + "\n"; - msg += " --notify " + _("Check for kernel updates and notify current user") + "\n"; - msg += " --list " + _("List all available mainline kernels") + "\n"; - msg += " --list-installed " + _("List installed kernels") + "\n"; - msg += " --install-latest " + _("Install latest mainline kernel") + "\n"; - msg += " --install-point " + _("Install latest point update for current series") + "\n"; - msg += " --install " + _("Install specified mainline kernel") + "\n"; - msg += " --remove " + _("Remove specified kernel") + "\n"; - msg += " --purge-old-kernels " + _("Remove installed kernels older than running kernel") + "\n"; - msg += " --download " + _("Download packages for specified kernel") + "\n"; - msg += " --clean-cache " + _("Remove files from application cache") + "\n"; - msg += " --show-unstable " + _("Show unstable and RC releases") + "\n"; - msg += "\n"; - msg += _("Options") + ":\n"; - msg += "\n"; - msg += " --clean-cache " + _("Remove files from application cache") + "\n"; - msg += " --debug " + _("Enable verbose debugging output") + "\n"; - msg += " --yes " + _("Assume Yes for all prompts (non-interactive mode)") + "\n"; - msg += " --user " + _("Override user") + "\n"; - msg += "\n"; - msg += "Notes:\n"; - msg += "1. Comma separated list of version strings can be specified for --remove and --download\n"; + string msg = "\n" + BRANDING_SHORTNAME + " v" + BRANDING_VERSION + " - " + BRANDING_LONGNAME + "\n" + + "\n" + + _("Syntax") + ": " + BRANDING_SHORTNAME + " [options]\n" + + "\n" + + _("Commands") + ":\n" + + "\n" + + " --check " + _("Check for kernel updates") + "\n" + + " --notify " + _("Check for kernel updates and notify current user") + "\n" + + " --list " + _("List all available mainline kernels") + "\n" + + " --list-installed " + _("List installed kernels") + "\n" + + " --install-latest " + _("Install latest mainline kernel") + "\n" + + " --install-point " + _("Install latest point update for current series") + "\n" + + " --install " + _("Install specified mainline kernel") + "\n" + + " --remove " + _("Remove specified kernel") + "\n" + + " --purge-old-kernels " + _("Remove installed kernels older than running kernel") + "\n" + + " --download " + _("Download packages for specified kernel") + "\n" + + " --clean-cache " + _("Remove files from application cache") + "\n" + + " --show-unstable " + _("Show unstable and RC releases") + "\n" + + "\n" + + _("Options") + ":\n" + + "\n" + + " --clean-cache " + _("Remove files from application cache") + "\n" + + " --debug " + _("Enable verbose debugging output") + "\n" + + " --yes " + _("Assume Yes for all prompts (non-interactive mode)") + "\n" + + " --user " + _("Override user") + "\n" + + "\n" + + "Notes:\n" + + "1. Comma separated list of version strings can be specified for --remove and --download\n"; return msg; } private static void check_if_admin(){ - if (get_user_id_effective() != 0) { + if (!user_is_admin()) { log_msg(string.nfill(70,'-')); @@ -128,10 +129,11 @@ public class AppConsole : GLib.Object { for (int k = 1; k < args.length; k++) { txt += "'%s' ".printf(args[k]); } - log_debug(txt); - + + //log_msg("AppConsole.vala:parse_arguments() txt="+txt); + // check argument count ----------------- - + if (args.length == 1) { //no args given log_msg(help_message()); @@ -202,14 +204,13 @@ public class AppConsole : GLib.Object { } } - log_msg(_("Cache") + ": %s".printf(LinuxKernel.CACHE_DIR)); - log_msg(_("Temp") + ": %s".printf(TEMP_DIR)); - // run command -------------------------------------- - + + //log_msg ("cmd:"+cmd); + switch (cmd) { case "--list": - + check_if_internet_is_active(false); LinuxKernel.query(true); @@ -238,7 +239,7 @@ public class AppConsole : GLib.Object { case "--install-latest": - check_if_admin(); + //check_if_admin(); check_if_internet_is_active(true); @@ -273,16 +274,13 @@ public class AppConsole : GLib.Object { case "--download": case "--install": case "--remove": + if (cmd=="--download") check_if_internet_is_active(); + if (cmd=="--install" || cmd=="--remove") check_if_admin(); - check_if_admin(); - - if ((cmd == "--install") || (cmd == "--download")){ - check_if_internet_is_active(); - } - LinuxKernel.query(true); - if (cmd_versions.length == 0){ + //log_msg("if(cmd_versions.length==0)"); + if (cmd_versions.length==0){ log_error(_("No kernels specified")); exit(1); } @@ -296,10 +294,13 @@ public class AppConsole : GLib.Object { var list = new Gee.ArrayList(); foreach(string requested_version in requested_versions){ + //log_msg("requested_version:"+requested_version); //### LinuxKernel kern_requested = null; foreach(var kern in LinuxKernel.kernel_list){ - if (kern.name == requested_version){ + // match --list output + //log_msg("kern.version_main:"+kern.version_main); //### + if (kern.version_main == requested_version){ kern_requested = kern; break; } @@ -326,6 +327,7 @@ public class AppConsole : GLib.Object { switch(cmd){ case "--download": + //log_msg("--download"); //### return LinuxKernel.download_kernels(list); case "--remove": @@ -388,15 +390,13 @@ public class AppConsole : GLib.Object { if ((kern != null) && App.notify_major){ - var title = _("Linux v%s Available").printf(kern.version_main); - var message = _("Major update available for installation"); + var title = _("Kernel %s Available").printf(kern.version_main); if (App.notify_bubble){ - OSDNotify.notify_send(title,message); + OSDNotify.notify_send(title); } log_msg(title); - log_msg(message); return; } @@ -405,15 +405,13 @@ public class AppConsole : GLib.Object { if ((kern != null) && App.notify_minor){ - var title = _("Linux v%s Available").printf(kern.version_main); - var message = _("Minor update available for installation"); + var title = _("Kernel %s Available").printf(kern.version_main); if (App.notify_bubble){ - OSDNotify.notify_send(title,message); + OSDNotify.notify_send(title); } log_msg(title); - log_msg(message); return; } @@ -422,7 +420,7 @@ public class AppConsole : GLib.Object { } public void check_if_internet_is_active(bool exit_app = true){ - + //log_msg("check_if_internet_is_active()"); //### if (!check_internet_connectivity()){ if (exit_app){ @@ -430,5 +428,4 @@ public class AppConsole : GLib.Object { } } } - } diff --git a/src/Console/OSDNotify.vala b/src/Console/OSDNotify.vala index d06f16ac..de853bf6 100644 --- a/src/Console/OSDNotify.vala +++ b/src/Console/OSDNotify.vala @@ -29,9 +29,9 @@ using TeeJee.ProcessHelper; public class OSDNotify : GLib.Object { private static DateTime dt_last_notification = null; - public const int NOTIFICATION_INTERVAL = 3; - - public static int notify_send (string title, string message){ + public const int MIN_NOTIFICATION_INTERVAL = 3; + + public static int notify_send (string title = "", string message = ""){ /* Displays notification bubble on the desktop */ @@ -44,11 +44,86 @@ public class OSDNotify : GLib.Object { seconds = (long)(elapsed * 1.0 / TimeSpan.SECOND); } - if (seconds > NOTIFICATION_INTERVAL){ - string s = INSTALL_PREFIX+"/lib/"+BRANDING_SHORTNAME+"/notify-send.sh/notify-send.sh -u low -c info -a "+BRANDING_SHORTNAME+" -i "+BRANDING_SHORTNAME+" -o \"Show:"+BRANDING_SHORTNAME+"-gtk\" \"%s\" \"%s\"".printf(title,message); - //log_msg(s); + + // Notification display timeout. Override the desktop default. + + // The action buttons in notify-send.sh only work + // during the initial display life of a notification. + // When a notification is generated, an associated notify-action.sh + // process is started in the background which waits for a dbus + // event. When you press the action button in the notification, + // it generates a dbus event which the monitor process detects + // and reacts to. + // When the notification times out, the associated monitor + // process goes away and never comes back. + // When you view a past notification from the history, + // the notification still has the button, and it's still clickable, + // but nothing happens when you press it, because the associated + // notify-action.sh process is no longer there to receive the event + // and perform the action. + + // So as a work-around, override the default desktop timeout + // and set a timeout that is slightly less than the update + // interval, and use the --force-expire option so that when the + // timeout does finally expire, it doesn't appear in the history. + + // So the notification appears and stays alive and fully functional + // until the user dismisses it, or until just before the next + // notification update is due to appear. If the user dismisses + // the notification, there is no "broken" notification in the + // the history. The force-expire option doesn't work 100%. + // Sometimes an expired notification is still visible in the + // notification daemon history, and sometimes you can view it, + // and sometimes you can start to view it but then it goes away + // by itself just after you pop it up, etc. + + // We may be able to do cool stuff with this later, with more + // action buttons to install, dismiss, blacklist a certain version, etc. + // And maybe we can use the notification ID option to update a + // single notification rather then generate new ones. + + int timeout_ms = 604800000; + switch (App.notify_interval_unit){ + case 0: // hour + timeout_ms = 3600000; + break; + case 1: // day + timeout_ms = 86400000; + break; + case 2: // week + timeout_ms = 604800000; + break; + case 3: // second + timeout_ms = 1000; + break; + } + + // notification timeout is kernel update interval minus one second + timeout_ms = App.notify_interval_value * timeout_ms - 1000; + + if (seconds > MIN_NOTIFICATION_INTERVAL){ + + string action = BRANDING_SHORTNAME+"-gtk"; + string body = message; + if (LOG_DEBUG) { + action = INSTALL_PREFIX+"/lib/"+BRANDING_SHORTNAME+"/notify-action-debug.sh"; + body = "debug: button runs %s".printf(action); + } + + string s = + INSTALL_PREFIX+"/lib/"+BRANDING_SHORTNAME+"/notify_send/notify-send.sh" + + " -u low" + + " -c info" + + " -f" + + " -a "+BRANDING_SHORTNAME + + " -i "+BRANDING_SHORTNAME + + " -o Install:%s".printf(action) + + " -t %d \"%s\" \"%s\"".printf(timeout_ms,title,body); + retVal = exec_sync (s, null, null); + dt_last_notification = new DateTime.now_local(); + } return retVal; diff --git a/src/Gtk/AppGtk.vala b/src/Gtk/AppGtk.vala index c42694b6..509f2355 100644 --- a/src/Gtk/AppGtk.vala +++ b/src/Gtk/AppGtk.vala @@ -106,9 +106,6 @@ public class AppGtk : GLib.Object { public static bool parse_arguments(string[] args) { - log_msg(_("Cache") + ": %s".printf(LinuxKernel.CACHE_DIR)); - log_msg(_("Temp") + ": %s".printf(TEMP_DIR)); - App.command = "list"; //parse options diff --git a/src/Gtk/MainWindow.vala b/src/Gtk/MainWindow.vala index 33bb4842..f00e44e6 100644 --- a/src/Gtk/MainWindow.vala +++ b/src/Gtk/MainWindow.vala @@ -90,7 +90,7 @@ public class MainWindow : Gtk.Window{ LinuxKernel kern_requested = null; foreach(var kern in LinuxKernel.kernel_list){ - if (kern.name == App.requested_version){ + if (kern.version_main == App.requested_version){ kern_requested = kern; break; } @@ -108,10 +108,6 @@ public class MainWindow : Gtk.Window{ break; -// case "notify": -// -// notify_user(); -// break; } return false; @@ -149,7 +145,7 @@ public class MainWindow : Gtk.Window{ var col = new TreeViewColumn(); col.title = _("Kernel"); col.resizable = true; - col.min_width = 150; + col.min_width = 200; tv.append_column(col); // cell icon @@ -161,7 +157,6 @@ public class MainWindow : Gtk.Window{ Gdk.Pixbuf pix; model.get (iter, 1, out pix, -1); (cell as Gtk.CellRendererPixbuf).pixbuf = pix; - //(cell as Gtk.CellRendererPixbuf).visible = !(App.hide_unstable); }); //cell text @@ -171,31 +166,14 @@ public class MainWindow : Gtk.Window{ col.set_cell_data_func (cellText, (cell_layout, cell, model, iter)=>{ LinuxKernel kern; model.get (iter, 0, out kern, -1); - (cell as Gtk.CellRendererText).text = "Linux " + kern.version_main; - }); - - //column - col = new TreeViewColumn(); - col.title = _("Version"); - col.resizable = true; - col.min_width = 150; - tv.append_column(col); - - //cell text - cellText = new CellRendererText(); - cellText.ellipsize = Pango.EllipsizeMode.END; - col.pack_start (cellText, false); - col.set_cell_data_func (cellText, (cell_layout, cell, model, iter)=>{ - LinuxKernel kern; - model.get (iter, 0, out kern, -1); - (cell as Gtk.CellRendererText).text = kern.name; + (cell as Gtk.CellRendererText).text = kern.version_main; }); //column col = new TreeViewColumn(); col.title = _("Status"); col.resizable = true; - col.min_width = 100; + col.min_width = 200; tv.append_column(col); //cell text @@ -396,16 +374,12 @@ public class MainWindow : Gtk.Window{ string sh = ""; sh += "pkexec env DISPLAY=$DISPLAY XAUTHORITY=$XAUTHORITY "; sh += BRANDING_SHORTNAME+" --user %s".printf(App.user_login); - if (LOG_DEBUG){ - sh += " --debug"; - } + if (LOG_DEBUG) sh += " --debug"; string names = ""; foreach(var kern in selected_kernels){ - if (names.length > 0){ - names += ","; - } - names += "%s".printf(kern.name); + if (names.length > 0) names += ","; + names += "%s".printf(kern.version_main); } sh += " --remove %s\n".printf(names); @@ -440,10 +414,7 @@ public class MainWindow : Gtk.Window{ string sh = ""; sh += "pkexec env DISPLAY=$DISPLAY XAUTHORITY=$XAUTHORITY http_proxy=$http_proxy https_proxy=$https_proxy HTTP_PROXY=$HTTP_PROXY HTTPS_PROXY=$HTTPS_PROXY "; sh += BRANDING_SHORTNAME+" --user "+App.user_login; - if (LOG_DEBUG){ - sh += " --debug"; - } - + if (LOG_DEBUG) sh += " --debug"; sh += " --purge-old-kernels\n"; log_debug(sh); @@ -504,11 +475,6 @@ public class MainWindow : Gtk.Window{ BRANDING_AUTHORNAME+" <"+BRANDING_AUTHOREMAIL+">" }; - dialog.third_party = { - "Elementary project (various icons):github.com/elementary/icons", - "Tango project (various icons):tango.freedesktop.org/Tango_Desktop_Project", - "notify-send.sh:github.com/vlevit/notify-send.sh" - }; // FIXME - generate this list from the .po files /* dialog.translators = { @@ -537,7 +503,7 @@ public class MainWindow : Gtk.Window{ dialog.program_name = BRANDING_LONGNAME; dialog.comments = _("Kernel upgrade utility for Ubuntu-based distributions"); - dialog.copyright = "Original: \"ukuu\" © 2015-18 Tony George\nForked: \""+BRANDING_SHORTNAME+"\" 2019 "+BRANDING_AUTHORNAME+" ("+BRANDING_AUTHOREMAIL+")"; + dialog.copyright = _("Original:")+" \"ukuu\" © 2015-18 Tony George\n"+_("Forked:")+" \""+BRANDING_SHORTNAME+"\" 2019 "+BRANDING_AUTHORNAME+" ("+BRANDING_AUTHOREMAIL+")"; dialog.version = BRANDING_VERSION; dialog.logo = get_app_icon(128); @@ -545,6 +511,12 @@ public class MainWindow : Gtk.Window{ dialog.website = BRANDING_WEBSITE; dialog.website_label = BRANDING_WEBSITE; + dialog.third_party = { + "Elementary project (various icons):github.com/elementary/icons", + "Tango project (various icons):tango.freedesktop.org/Tango_Desktop_Project", + "notify-send.sh:github.com/vlevit/notify-send.sh" + }; + dialog.initialize(); dialog.show_all(); } @@ -655,7 +627,7 @@ public class MainWindow : Gtk.Window{ if (LinuxKernel.kernel_active != null){ - lbl_info.label = "Running Linux %s".printf(LinuxKernel.kernel_active.version_main); + lbl_info.label = "Running %s".printf(LinuxKernel.kernel_active.version_main); if (LinuxKernel.kernel_active.is_mainline){ lbl_info.label += " (mainline)"; @@ -665,12 +637,12 @@ public class MainWindow : Gtk.Window{ } if (LinuxKernel.kernel_latest_stable.compare_to(LinuxKernel.kernel_active) > 0){ - lbl_info.label += " ~ " + "Linux %s available".printf( + lbl_info.label += " ~ " + "%s available".printf( LinuxKernel.kernel_latest_stable.version_main); } } else{ - lbl_info.label = "Running Linux %s".printf(LinuxKernel.RUNNING_KERNEL); + lbl_info.label = "Running %s".printf(LinuxKernel.RUNNING_KERNEL); } } @@ -708,14 +680,15 @@ public class MainWindow : Gtk.Window{ }); string sh = ""; + sh += BRANDING_SHORTNAME; + if (LOG_DEBUG) sh += " --debug"; + sh += " --download %s".printf(kern.version_main); + sh += " && "; sh += "pkexec env DISPLAY=$DISPLAY XAUTHORITY=$XAUTHORITY "; sh += BRANDING_SHORTNAME+" --user "+App.user_login; - if (LOG_DEBUG){ - sh += " --debug"; - } - sh += " --install %s\n".printf(kern.name); - - sh += "echo ''\n"; + if (LOG_DEBUG) sh += " --debug"; + sh += " --install %s\n".printf(kern.version_main); + sh += "echo \n"; sh += "echo 'Close window to exit...'\n"; term.execute_script(save_bash_script_temp(sh)); diff --git a/src/Gtk/SettingsDialog.vala b/src/Gtk/SettingsDialog.vala index 859288df..ab39073e 100644 --- a/src/Gtk/SettingsDialog.vala +++ b/src/Gtk/SettingsDialog.vala @@ -50,7 +50,7 @@ public class SettingsDialog : Gtk.Dialog { icon = get_app_icon(16); title = _("Settings"); - + // get content area var vbox_main = get_content_area(); vbox_main.spacing = 6; @@ -98,6 +98,13 @@ public class SettingsDialog : Gtk.Dialog { App.notify_bubble = chk_notify_bubble.active; }); + if (LOG_DEBUG) { + label = new Label(_("(Allowing intervals in seconds for --debug)")); + label.xalign = (float) 0.0; + label.margin_bottom = 6; + vbox_main.add (label); + } + // notification interval var hbox = new Gtk.Box(Orientation.HORIZONTAL, 6); vbox_main.add (hbox); @@ -107,7 +114,9 @@ public class SettingsDialog : Gtk.Dialog { label.margin_start = 6; hbox.add (label); - var adjustment = new Gtk.Adjustment(App.notify_interval_value, 1, 52, 1, 1, 0); + int max_intervals = 52; + if (LOG_DEBUG) max_intervals = 3600; // allow up to 1hr in seconds + var adjustment = new Gtk.Adjustment(App.notify_interval_value, 1, max_intervals, 1, 1, 0); var spin = new Gtk.SpinButton (adjustment, 1, 0); spin.xalign = (float) 0.5; hbox.add(spin); @@ -131,13 +140,17 @@ public class SettingsDialog : Gtk.Dialog { //populate TreeIter iter; - var model = new Gtk.ListStore (2, typeof (string), typeof (string)); + var model = new Gtk.ListStore (2, typeof (string), typeof (string)); model.append (out iter); model.set (iter,0,_("Hour(s)"),1,"hour"); model.append (out iter); model.set (iter,0,_("Day(s)"),1,"day"); model.append (out iter); model.set (iter,0,_("Week(s)"),1,"week"); + if (LOG_DEBUG) { + model.append (out iter); + model.set (iter,0,_("Second(s)"),1,"second"); + } combo.set_model(model); combo.set_active(App.notify_interval_unit); diff --git a/src/Utility/AsyncTask.vala b/src/Utility/AsyncTask.vala index 942b8e73..16312c6c 100644 --- a/src/Utility/AsyncTask.vala +++ b/src/Utility/AsyncTask.vala @@ -296,13 +296,12 @@ public abstract class AsyncTask : GLib.Object{ timer.stop(); finish_task(); + //dir_delete(working_dir); if ((status != AppStatus.CANCELLED) && (status != AppStatus.PASSWORD_REQUIRED)) { status = AppStatus.FINISHED; } - //dir_delete(working_dir); - task_complete(); //signal } diff --git a/src/Utility/Gtk/AboutWindow.vala b/src/Utility/Gtk/AboutWindow.vala index f0a03a08..c06298e2 100644 --- a/src/Utility/Gtk/AboutWindow.vala +++ b/src/Utility/Gtk/AboutWindow.vala @@ -312,49 +312,49 @@ public class AboutWindow : Dialog { if (authors.length > 0){ add_header("%s\n".printf(_("Authors"))); foreach(string name in authors){ - add_line("%s\n".printf(name)); + add_line("%s".printf(name)); } - add_line("\n"); + add_line(""); } if (contributors.length > 0){ add_header("%s\n".printf(_("Contributions"))); foreach(string name in contributors){ - add_line("%s\n".printf(name)); + add_line("%s".printf(name)); } - add_line("\n"); - } - - if (third_party.length > 0){ - add_header("%s\n".printf(_("Third Party Tools"))); - foreach(string name in third_party){ - add_line("%s\n".printf(name)); - } - add_line("\n"); + add_line(""); } if (artists.length > 0){ add_header("%s\n".printf(_("Artists"))); foreach(string name in artists){ - add_line("%s\n".printf(name)); + add_line("%s".printf(name)); } - add_line("\n"); + add_line(""); } if (translators.length > 0){ add_header("%s\n".printf(_("Translators"))); foreach(string name in translators){ - add_line("%s\n".printf(name),true,false); + add_line("%s".printf(name),true,false); } - add_line("\n"); + add_line(""); } if (documenters.length > 0){ add_header("%s\n".printf(_("Documenters"))); foreach(string name in documenters){ - add_line("%s\n".printf(name)); + add_line("%s".printf(name)); } - add_line("\n"); + add_line(""); + } + + if (third_party.length > 0){ + add_header("%s\n".printf(_("Third Party Inclusions"))); + foreach(string name in third_party){ + add_line("%s".printf(name)); + } + add_line(""); } if (vbox_lines.get_children().length() == 0){ @@ -364,7 +364,7 @@ public class AboutWindow : Dialog { public void add_line(string text, bool escape_html_chars = true, bool parse = true){ - if (text.split(":").length >= 2 && parse == true){ + if (text.split(":").length >= 2 && parse){ var link = new LinkButton(escape_html(text.split(":")[0])); vbox_lines.add(link); @@ -390,9 +390,7 @@ public class AboutWindow : Dialog { } else{ var txt = text; - if (escape_html_chars){ - txt = escape_html(text); - } + if (escape_html_chars) txt = escape_html(text); var lbl = new Label(txt); lbl.set_use_markup(true); diff --git a/src/Utility/TeeJee.FileSystem.vala b/src/Utility/TeeJee.FileSystem.vala index 40ad990a..bf0a7c61 100644 --- a/src/Utility/TeeJee.FileSystem.vala +++ b/src/Utility/TeeJee.FileSystem.vala @@ -30,7 +30,6 @@ namespace TeeJee.FileSystem{ using TeeJee.ProcessHelper; using TeeJee.Misc; - public const int64 KB = 1000; public const int64 MB = 1000 * KB; public const int64 GB = 1000 * MB; @@ -54,37 +53,14 @@ namespace TeeJee.FileSystem{ return GLib.Path.build_path("/", path1, path2); } - public string remove_trailing_slash(string path){ - if (path.has_suffix("/")){ - return path[0:path.length - 1]; - } - else{ - return path; - } - } - // file helpers ----------------------------- - public bool file_or_dir_exists(string item_path){ - - /* check if item exists on disk*/ - - var item = File.parse_name(item_path); - return item.query_exists(); - } - public bool file_exists (string file_path){ /* Check if file exists */ return (FileUtils.test(file_path, GLib.FileTest.EXISTS) && !FileUtils.test(file_path, GLib.FileTest.IS_DIR)); } - public bool file_exists_regular (string file_path){ - /* Check if file exists */ - return ( FileUtils.test(file_path, GLib.FileTest.EXISTS) - && FileUtils.test(file_path, GLib.FileTest.IS_REGULAR)); - } - public bool file_delete(string file_path, bool show_message = false){ /* Check and delete file */ @@ -108,36 +84,6 @@ namespace TeeJee.FileSystem{ } } - public bool file_move_to_trash(string file_path){ - - /* Check and delete file */ - - var file = File.new_for_path (file_path); - if (file.query_exists ()) { - Posix.system("gvfs-trash '%s'".printf(escape_single_quote(file_path))); - } - return true; - } - - public bool file_shred(string file_path){ - - /* Check and delete file */ - - var file = File.new_for_path (file_path); - if (file.query_exists ()) { - Posix.system("shred -u '%s'".printf(escape_single_quote(file_path))); - } - return true; - } - - public int64 file_line_count (string file_path){ - /* Count number of lines in text file */ - string cmd = "wc -l '%s'".printf(escape_single_quote(file_path)); - string std_out, std_err; - exec_sync(cmd, out std_out, out std_err); - return long.parse(std_out.split("\t")[0]); - } - public string? file_read (string file_path, bool show_message = false){ /* Reads text from file */ @@ -171,7 +117,9 @@ namespace TeeJee.FileSystem{ try{ - dir_create(file_parent(file_path)); + string pdir = file_parent(file_path); + dir_create(pdir); + chown(pdir,App.user_login,App.user_login); var file = File.new_for_path (file_path); if (file.query_exists ()) { @@ -189,7 +137,9 @@ namespace TeeJee.FileSystem{ else{ log_debug(_("File saved") + ": %s".printf(file_path)); } - + + chown(pdir,App.user_login,App.user_login); + return true; } catch (Error e) { @@ -212,8 +162,8 @@ namespace TeeJee.FileSystem{ else{ log_debug(_("File copied") + ": '%s' → '%s'".printf(src_file, dest_file)); } - - return true; + chown(dest_file,App.user_login,App.user_login); + return true; } } catch(Error e){ @@ -254,31 +204,6 @@ namespace TeeJee.FileSystem{ } } - public bool file_gzip (string src_file){ - - string dst_file = src_file + ".gz"; - file_delete(dst_file); - - string cmd = "gzip '%s'".printf(escape_single_quote(src_file)); - string std_out, std_err; - exec_sync(cmd, out std_out, out std_err); - - return file_exists(dst_file); - } - - public bool file_gunzip (string src_file){ - - string dst_file = src_file; - file_delete(dst_file); - - string cmd = "gunzip '%s'".printf(escape_single_quote(src_file)); - string std_out, std_err; - exec_sync(cmd, out std_out, out std_err); - - return file_exists(dst_file); - } - - // file info ----------------- public int64 file_get_size(string file_path){ @@ -313,22 +238,6 @@ namespace TeeJee.FileSystem{ return (new DateTime.from_unix_utc(0)); //1970 } - - public string file_get_symlink_target(string file_path){ - try{ - FileInfo info; - File file = File.parse_name (file_path); - if (file.query_exists()) { - info = file.query_info("%s".printf(FileAttribute.STANDARD_SYMLINK_TARGET), 0); - return info.get_symlink_target(); - } - } - catch (Error e) { - log_error (e.message); - } - - return ""; - } // directory helpers ---------------------- @@ -336,7 +245,7 @@ namespace TeeJee.FileSystem{ /* Check if directory exists */ return ( FileUtils.test(dir_path, GLib.FileTest.EXISTS) && FileUtils.test(dir_path, GLib.FileTest.IS_DIR)); } - + public bool dir_create (string dir_path, bool show_message = false){ /* Creates a directory along with parents */ @@ -371,349 +280,20 @@ namespace TeeJee.FileSystem{ string cmd = "rm -rf '%s'".printf(escape_single_quote(dir_path)); int status = exec_sync(cmd); - if (show_message){ - log_msg(_("Deleted directory") + ": %s".printf(dir_path)); - } - else{ - log_debug(_("Created directory") + ": %s".printf(dir_path)); - } + string result = _("Deleted"); + if (status!=0) result = _("FAILED deleting"); + result += ": %s".printf(dir_path); + if (show_message) log_msg(result); else log_debug(result); return (status == 0); } - public bool dir_move_to_trash (string dir_path){ - return file_move_to_trash(dir_path); - } - - public bool dir_is_empty (string dir_path){ - - /* Check if directory is empty */ - - try{ - bool is_empty = true; - var dir = File.parse_name (dir_path); - if (dir.query_exists()) { - FileInfo info; - var enu = dir.enumerate_children ("%s".printf(FileAttribute.STANDARD_NAME), 0); - while ((info = enu.next_file()) != null) { - is_empty = false; - break; - } - } - return is_empty; - } - catch (Error e) { - log_error (e.message); - return false; - } - } - - public bool filesystem_supports_hardlinks(string path, out bool is_readonly){ - bool supports_hardlinks = false; - is_readonly = false; - - var test_file = path_combine(path, random_string() + "~"); - - if (file_write(test_file,"")){ - - var test_file2 = path_combine(path, random_string() + "~"); - - var cmd = "ln '%s' '%s'".printf( - escape_single_quote(test_file), - escape_single_quote(test_file2)); - - log_debug(cmd); - - int status = exec_sync(cmd); - - cmd = "stat --printf '%%h' '%s'".printf( - escape_single_quote(test_file)); - - log_debug(cmd); - - string std_out, std_err; - status = exec_sync(cmd, out std_out, out std_err); - log_debug("stdout: %s".printf(std_out)); - - int64 count = 0; - if (int64.try_parse(std_out, out count)){ - if (count > 1){ - supports_hardlinks = true; - } - } - - file_delete(test_file2); // delete if exists - file_delete(test_file); - } - else{ - is_readonly = true; - } - - return supports_hardlinks; - } - - public Gee.ArrayList dir_list_names(string path){ - var list = new Gee.ArrayList(); - - try - { - File f_home = File.new_for_path (path); - FileEnumerator enumerator = f_home.enumerate_children ("%s".printf(FileAttribute.STANDARD_NAME), 0); - FileInfo file; - while ((file = enumerator.next_file ()) != null) { - string name = file.get_name(); - list.add(name); - } - } - catch (Error e) { - log_error (e.message); - } - - //sort the list - CompareDataFunc entry_compare = (a, b) => { - return strcmp(a,b); - }; - list.sort((owned) entry_compare); - - return list; - } - - public bool dir_tar (string src_dir, string tar_file, bool recursion = true){ - if (dir_exists(src_dir)) { - - if (file_exists(tar_file)){ - file_delete(tar_file); - } - - var src_parent = file_parent(src_dir); - var src_name = file_basename(src_dir); - - string cmd = "tar cvf '%s' --overwrite --%srecursion -C '%s' '%s'\n".printf( - escape_single_quote(tar_file), - (recursion ? "" : "no-"), - escape_single_quote(src_parent), - escape_single_quote(src_name)); - - log_debug(cmd); - - string stdout, stderr; - int status = exec_script_sync(cmd, out stdout, out stderr); - if (status == 0){ - return true; - } - else{ - log_msg(stderr); - } - } - else{ - log_error(_("Dir not found") + ": %s".printf(src_dir)); - } - - return false; - } - - public bool dir_untar (string tar_file, string dst_dir){ - if (file_exists(tar_file)) { - - if (!dir_exists(dst_dir)){ - dir_create(dst_dir); - } - - string cmd = "tar xvf '%s' --overwrite --same-permissions -C '%s'\n".printf( - escape_single_quote(tar_file), - escape_single_quote(dst_dir)); - - log_debug(cmd); - - string stdout, stderr; - int status = exec_script_sync(cmd, out stdout, out stderr); - if (status == 0){ - return true; - } - else{ - log_msg(stderr); - } - } - else{ - log_error(_("File not found") + ": %s".printf(tar_file)); - } - - return false; - } - - public bool chown(string dir_path, string user, string group = user){ + public bool chown(string dir_path, string user, string group){ string cmd = "chown %s:%s -R '%s'".printf(user, group, escape_single_quote(dir_path)); int status = exec_sync(cmd, null, null); return (status == 0); } - // dir info ------------------- - - // dep: find wc TODO: rewrite - public long dir_count(string path){ - - /* Return total count of files and directories */ - - string cmd = ""; - string std_out; - string std_err; - int ret_val; - - cmd = "find '%s' | wc -l".printf(escape_single_quote(path)); - ret_val = exec_script_sync(cmd, out std_out, out std_err); - return long.parse(std_out); - } - - // dep: du - public long dir_size(string path){ - - /* Returns size of files and directories in KB*/ - - string cmd = "du -s -b '%s'".printf(escape_single_quote(path)); - string std_out, std_err; - exec_sync(cmd, out std_out, out std_err); - return long.parse(std_out.split("\t")[0]); - } - - // dep: du - public long dir_size_kb(string path){ - - /* Returns size of files and directories in KB*/ - - return (long)(dir_size(path) / 1024.0); - } - - // archiving and encryption ---------------- - - // dep: tar gzip gpg - public bool file_tar_encrypt (string src_file, string dst_file, string password){ - if (file_exists(src_file)) { - if (file_exists(dst_file)){ - file_delete(dst_file); - } - - var src_dir = file_parent(src_file); - var src_name = file_basename(src_file); - - var dst_dir = file_parent(dst_file); - var dst_name = file_basename(dst_file); - var tar_name = dst_name[0 : dst_name.index_of(".gpg")]; - var tar_file = "%s/%s".printf(dst_dir, tar_name); - - string cmd = "tar cvf '%s' --overwrite -C '%s' '%s'\n".printf( - escape_single_quote(tar_file), - escape_single_quote(src_dir), - escape_single_quote(src_name)); - - cmd += "gpg --passphrase '%s' -o '%s' --symmetric '%s'\n".printf( - password, - escape_single_quote(dst_file), - escape_single_quote(tar_file)); - - cmd += "rm -f '%s'\n".printf(escape_single_quote(tar_file)); - - log_debug(cmd); - - string stdout, stderr; - int status = exec_script_sync(cmd, out stdout, out stderr); - if (status == 0){ - return true; - } - else{ - log_msg(stderr); - } - } - - return false; - } - - // dep: tar gzip gpg - public string file_decrypt_untar_read (string src_file, string password){ - - if (file_exists(src_file)) { - - //var src_name = file_basename(src_file); - //var tar_name = src_name[0 : src_name.index_of(".gpg")]; - //var tar_file = "%s/%s".printf(TEMP_DIR, tar_name); - //var temp_file = "%s/%s".printf(TEMP_DIR, random_string()); - - string cmd = ""; - - cmd += "gpg --quiet --no-verbose --passphrase '%s' -o- --decrypt '%s'".printf( - password, - escape_single_quote(src_file)); - - cmd += " | tar xf - --to-stdout 2>/dev/null\n"; - cmd += "exit $?\n"; - - log_debug(cmd); - - string std_out, std_err; - int status = exec_script_sync(cmd, out std_out, out std_err); - if (status == 0){ - return std_out; - } - else{ - log_error(std_err); - return ""; - } - } - else{ - log_error(_("File is missing") + ": %s".printf(src_file)); - } - - return ""; - } - - // dep: tar gzip gpg - public bool decrypt_and_untar (string src_file, string dst_file, string password){ - if (file_exists(src_file)) { - if (file_exists(dst_file)){ - file_delete(dst_file); - } - - var src_dir = file_parent(src_file); - var src_name = file_basename(src_file); - var tar_name = src_name[0 : src_name.index_of(".gpg")]; - var tar_file = "%s/%s".printf(src_dir, tar_name); - - string cmd = ""; - - // gpg cannot overwrite - remove tar file if it exists - cmd += "rm -f '%s'\n".printf(escape_single_quote(tar_file)); - - cmd += "gpg --passphrase '%s' -o '%s' --decrypt '%s'\n".printf( - password, - escape_single_quote(tar_file), - escape_single_quote(src_file)); - - cmd += "status=$?; if [ $status -ne 0 ]; then exit $status; fi\n"; - - cmd += "tar xvf '%s' --overwrite --same-permissions -C '%s'\n".printf( - escape_single_quote(tar_file), - escape_single_quote(file_parent(dst_file))); - - cmd += "rm -f '%s'\n".printf(escape_single_quote(tar_file)); - - log_debug(cmd); - - string stdout, stderr; - int status = exec_script_sync(cmd, out stdout, out stderr); - if (status == 0){ - return true; - } - else{ - log_error(stderr); - return false; - } - } - else{ - log_error(_("File is missing") + ": %s".printf(src_file)); - } - - return false; - } - // misc -------------------- public string format_file_size ( @@ -765,7 +345,6 @@ namespace TeeJee.FileSystem{ return file_path.replace("'","'\\''"); } - // dep: chmod public int chmod (string file, string permission){ @@ -774,29 +353,4 @@ namespace TeeJee.FileSystem{ return exec_sync (cmd, null, null); } - // dep: realpath - public string resolve_relative_path (string filePath){ - - /* Resolve the full path of given file using 'realpath' command */ - - string filePath2 = filePath; - if (filePath2.has_prefix ("~")){ - filePath2 = Environment.get_home_dir () + "/" + filePath2[2:filePath2.length]; - } - - try { - string output = ""; - string cmd = "realpath '%s'".printf(escape_single_quote(filePath2)); - Process.spawn_command_line_sync(cmd, out output); - output = output.strip (); - if (FileUtils.test(output, GLib.FileTest.EXISTS)){ - return output; - } - } - catch(Error e){ - log_error (e.message); - } - - return filePath2; - } } diff --git a/src/Utility/TeeJee.Process.vala b/src/Utility/TeeJee.Process.vala index cb472ff7..96d07cd6 100644 --- a/src/Utility/TeeJee.Process.vala +++ b/src/Utility/TeeJee.Process.vala @@ -41,12 +41,13 @@ namespace TeeJee.ProcessHelper{ TEMP_DIR = Environment.get_tmp_dir() + "/" + BRANDING_SHORTNAME + "_" + random_string(); dir_create(TEMP_DIR); - //log_debug("TEMP_DIR=" + TEMP_DIR); + log_debug("TEMP_DIR="+TEMP_DIR); } public string create_temp_subdir(string base_dir = ""){ var temp = "%s/%s".printf((base_dir.length > 0) ? base_dir : TEMP_DIR, random_string()); dir_create(temp); + return temp; } diff --git a/src/Utility/TeeJee.System.vala b/src/Utility/TeeJee.System.vala index e0882559..e995141e 100644 --- a/src/Utility/TeeJee.System.vala +++ b/src/Utility/TeeJee.System.vala @@ -32,7 +32,6 @@ namespace TeeJee.System{ // user --------------------------------------------------- public bool user_is_admin(){ - return (get_user_id_effective() == 0); } @@ -77,13 +76,6 @@ namespace TeeJee.System{ return get_username_from_uid(get_user_id()); } - public string get_username_effective(){ - - // returns effective user id ('root' for applications executed with sudo and pkexec) - - return get_username_from_uid(get_user_id_effective()); - } - public int get_user_id_from_username(string username){ int user_id = -1; @@ -132,136 +124,9 @@ namespace TeeJee.System{ return userhome; } - public string get_user_home_effective(){ - return get_user_home(get_username_effective()); - } - - // application ----------------------------------------------- - - public string get_app_path(){ - - /* Get path of current process */ - - try{ - return GLib.FileUtils.read_link ("/proc/self/exe"); - } - catch (Error e){ - log_error (e.message); - return ""; - } - } - - public string get_app_dir(){ - - /* Get parent directory of current process */ - - try{ - return (File.new_for_path (GLib.FileUtils.read_link ("/proc/self/exe"))).get_parent ().get_path (); - } - catch (Error e){ - log_error (e.message); - return ""; - } - } - - // system ------------------------------------ - - // dep: cat TODO: rewrite - public double get_system_uptime_seconds(){ - - /* Returns the system up-time in seconds */ - - string cmd = ""; - string std_out; - string std_err; - int ret_val; - - try{ - cmd = "cat /proc/uptime"; - Process.spawn_command_line_sync(cmd, out std_out, out std_err, out ret_val); - string uptime = std_out.split(" ")[0]; - double secs = double.parse(uptime); - return secs; - } - catch(Error e){ - log_error (e.message); - return 0; - } - } - - public string get_desktop_name(){ - - /* Return the names of the current Desktop environment */ - - int pid = -1; - - pid = get_pid_by_name("cinnamon"); - if (pid > 0){ - return "Cinnamon"; - } - - pid = get_pid_by_name("xfdesktop"); - if (pid > 0){ - return "Xfce"; - } - - pid = get_pid_by_name("lxsession"); - if (pid > 0){ - return "LXDE"; - } - - pid = get_pid_by_name("gnome-shell"); - if (pid > 0){ - return "Gnome"; - } - - pid = get_pid_by_name("wingpanel"); - if (pid > 0){ - return "Elementary"; - } - - pid = get_pid_by_name("unity-panel-service"); - if (pid > 0){ - return "Unity"; - } - - pid = get_pid_by_name("plasma-desktop"); - if (pid > 0){ - return "KDE"; - } - - return "Unknown"; - } - - public Gee.ArrayList list_dir_names(string path){ - var list = new Gee.ArrayList(); - - try - { - File f_home = File.new_for_path (path); - FileEnumerator enumerator = f_home.enumerate_children ("%s".printf(FileAttribute.STANDARD_NAME), 0); - FileInfo file; - while ((file = enumerator.next_file ()) != null) { - string name = file.get_name(); - //string item = path + "/" + name; - list.add(name); - } - } - catch (Error e) { - log_error (e.message); - } - - //sort the list - CompareDataFunc entry_compare = (a, b) => { - return strcmp(a,b); - }; - list.sort((owned) entry_compare); - - return list; - } - // internet helpers ---------------------- public bool check_internet_connectivity(){ + //log_msg("check_internet_connectivity()"); if (App.skip_connection_check) { return true; @@ -284,11 +149,6 @@ namespace TeeJee.System{ return (status == 0); } - public bool command_exists(string command){ - string path = get_cmd_path(command); - return ((path != null) && (path.length > 0)); - } - // open ----------------------------- public bool xdg_open (string file, string user = ""){ @@ -312,51 +172,6 @@ namespace TeeJee.System{ return false; } - - public bool using_efi_boot(){ - - /* Returns true if the system was booted in EFI mode - * and false for BIOS mode */ - - return dir_exists("/sys/firmware/efi"); - } - - public void open_terminal_window( - string terminal_emulator, - string working_dir, - string script_file_to_execute, - bool run_as_admin){ - - string cmd = ""; - if (run_as_admin){ - cmd += "pkexec env DISPLAY=$DISPLAY XAUTHORITY=$XAUTHORITY "; - } - - string term = terminal_emulator; - if (!command_exists(term)){ - term = "gnome-terminal"; - if (!command_exists(term)){ - term = "xfce4-terminal"; - } - } - - cmd += term; - - switch (term){ - case "gnome-terminal": - case "xfce4-terminal": - if (working_dir.length > 0){ - cmd += " --working-directory='%s'".printf(escape_single_quote(working_dir)); - } - if (script_file_to_execute.length > 0){ - cmd += " -e '%s\n; echo Press ENTER to exit... ; read dummy;'".printf(escape_single_quote(script_file_to_execute)); - } - break; - } - - log_debug(cmd); - exec_script_async(cmd); - } // timers -------------------------------------------------- @@ -385,26 +200,6 @@ namespace TeeJee.System{ Thread.usleep ((ulong) milliseconds * 1000); } - public string timer_elapsed_string(GLib.Timer timer, bool stop = true){ - ulong microseconds; - double seconds; - seconds = timer.elapsed (out microseconds); - if (stop){ - timer.stop(); - } - return "%.0f ms".printf((seconds * 1000 ) + microseconds/1000); - } - - public void timer_elapsed_print(GLib.Timer timer, bool stop = true){ - ulong microseconds; - double seconds; - seconds = timer.elapsed (out microseconds); - if (stop){ - timer.stop(); - } - log_msg("%s %lu\n".printf(seconds.to_string(), microseconds)); - } - public void set_numeric_locale(string type){ Intl.setlocale(GLib.LocaleCategory.NUMERIC, type); Intl.setlocale(GLib.LocaleCategory.COLLATE, type); From 9b255f977a9103e2b804fa488cee2daafb1f339c Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Sun, 10 May 2020 05:49:24 -0400 Subject: [PATCH 080/567] improve notification behavior --- po/es.po | 6 ++- po/fr.po | 6 ++- po/hr.po | 6 ++- po/messages.pot | 6 ++- po/nl.po | 6 ++- po/pl.po | 6 ++- po/ru.po | 6 ++- po/sv.po | 6 ++- po/tr.po | 6 ++- po/uk.po | 6 ++- src/Console/OSDNotify.vala | 81 ++++++-------------------------------- 11 files changed, 63 insertions(+), 78 deletions(-) diff --git a/po/es.po b/po/es.po index 0837a688..8bf540ea 100644 --- a/po/es.po +++ b/po/es.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-09 07:19-0400\n" +"POT-Creation-Date: 2020-05-10 05:43-0400\n" "PO-Revision-Date: 2018-01-03 02:03-0600\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish\n" @@ -275,6 +275,10 @@ msgstr "Coomand no especificado" msgid "Kernel %s Available" msgstr "Paquetes disponibles" +#: src/Console/OSDNotify.vala:63 +msgid "Show" +msgstr "" + #: src/Gtk/AppGtk.vala:175 msgid "Print debug information" msgstr "Mostrar información de depuración" diff --git a/po/fr.po b/po/fr.po index 17802444..0c2bbb74 100644 --- a/po/fr.po +++ b/po/fr.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-09 07:19-0400\n" +"POT-Creation-Date: 2020-05-10 05:43-0400\n" "PO-Revision-Date: 2018-08-05 15:50+0200\n" "Last-Translator: Yolateng0 \n" "Language-Team: French\n" @@ -285,6 +285,10 @@ msgstr "Impossible de trouver le fichier" msgid "Kernel %s Available" msgstr "Paquets disponibles" +#: src/Console/OSDNotify.vala:63 +msgid "Show" +msgstr "" + #: src/Gtk/AppGtk.vala:175 msgid "Print debug information" msgstr "Afficher les informations de débogage" diff --git a/po/hr.po b/po/hr.po index c06b5c4a..438f4249 100644 --- a/po/hr.po +++ b/po/hr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-09 07:19-0400\n" +"POT-Creation-Date: 2020-05-10 05:43-0400\n" "PO-Revision-Date: 2017-12-24 00:52+0100\n" "Last-Translator: gogo \n" "Language-Team: Croatian \n" @@ -283,6 +283,10 @@ msgstr "" msgid "Kernel %s Available" msgstr "Dostupni paketi" +#: src/Console/OSDNotify.vala:63 +msgid "Show" +msgstr "" + #: src/Gtk/AppGtk.vala:175 msgid "Print debug information" msgstr "Ispiši informacije otklanjanja grešaka" diff --git a/po/messages.pot b/po/messages.pot index 1c8d2639..e84f94f3 100644 --- a/po/messages.pot +++ b/po/messages.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline 1.0.9\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-09 07:19-0400\n" +"POT-Creation-Date: 2020-05-10 05:43-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -268,6 +268,10 @@ msgstr "" msgid "Kernel %s Available" msgstr "" +#: src/Console/OSDNotify.vala:63 +msgid "Show" +msgstr "" + #: src/Gtk/AppGtk.vala:175 msgid "Print debug information" msgstr "" diff --git a/po/nl.po b/po/nl.po index d29191fe..e8b84afd 100644 --- a/po/nl.po +++ b/po/nl.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu 2.2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-09 07:19-0400\n" +"POT-Creation-Date: 2020-05-10 05:43-0400\n" "PO-Revision-Date: 2017-04-30 11:50+0200\n" "Last-Translator: Heimen Stoffels \n" "Language-Team: \n" @@ -288,6 +288,10 @@ msgstr "" msgid "Kernel %s Available" msgstr "Beschikbare pakketten" +#: src/Console/OSDNotify.vala:63 +msgid "Show" +msgstr "" + #: src/Gtk/AppGtk.vala:175 msgid "Print debug information" msgstr "Foutopsporingsinformatie printen" diff --git a/po/pl.po b/po/pl.po index 4871c583..8ef8001d 100644 --- a/po/pl.po +++ b/po/pl.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-09 07:19-0400\n" +"POT-Creation-Date: 2020-05-10 05:43-0400\n" "PO-Revision-Date: 2017-08-12 15:26+0200\n" "Last-Translator: Waldemar Konik \n" "Language-Team: Polish\n" @@ -282,6 +282,10 @@ msgstr "" msgid "Kernel %s Available" msgstr "Dostępne pakiety" +#: src/Console/OSDNotify.vala:63 +msgid "Show" +msgstr "" + #: src/Gtk/AppGtk.vala:175 msgid "Print debug information" msgstr "Wypisz informacje debugujące" diff --git a/po/ru.po b/po/ru.po index 87feeeef..4d9d1379 100644 --- a/po/ru.po +++ b/po/ru.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-09 07:19-0400\n" +"POT-Creation-Date: 2020-05-10 05:43-0400\n" "PO-Revision-Date: 2016-12-13 16:46+0300\n" "Last-Translator: Faust3000 \n" "Language-Team: Russian \n" @@ -287,6 +287,10 @@ msgstr "" msgid "Kernel %s Available" msgstr "Установлено" +#: src/Console/OSDNotify.vala:63 +msgid "Show" +msgstr "" + #: src/Gtk/AppGtk.vala:175 msgid "Print debug information" msgstr "Распечатать отладочную информацию" diff --git a/po/sv.po b/po/sv.po index 56d61fb3..8039a803 100644 --- a/po/sv.po +++ b/po/sv.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu 2.2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-09 07:19-0400\n" +"POT-Creation-Date: 2020-05-10 05:43-0400\n" "PO-Revision-Date: 2018-01-13 16:56+0100\n" "Last-Translator: Åke Engelbrektson \n" "Language-Team: Svenska Språkfiler \n" @@ -282,6 +282,10 @@ msgstr "" msgid "Kernel %s Available" msgstr "Tillgängliga paket" +#: src/Console/OSDNotify.vala:63 +msgid "Show" +msgstr "" + #: src/Gtk/AppGtk.vala:175 msgid "Print debug information" msgstr "Skriv ut felsökningsinformation" diff --git a/po/tr.po b/po/tr.po index 62407cd1..ca8314e9 100644 --- a/po/tr.po +++ b/po/tr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-09 07:19-0400\n" +"POT-Creation-Date: 2020-05-10 05:43-0400\n" "PO-Revision-Date: 2020-03-10 15:59+0300\n" "Last-Translator: Gökhan GÖKKAYA \n" "Language-Team: Turkish\n" @@ -274,6 +274,10 @@ msgstr "Komut belirtilmedi" msgid "Kernel %s Available" msgstr "Mevcut Paketler" +#: src/Console/OSDNotify.vala:63 +msgid "Show" +msgstr "" + #: src/Gtk/AppGtk.vala:175 msgid "Print debug information" msgstr "Hata ayıklama bilgisini yazdır" diff --git a/po/uk.po b/po/uk.po index 12a16c5c..67414e64 100644 --- a/po/uk.po +++ b/po/uk.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-09 07:19-0400\n" +"POT-Creation-Date: 2020-05-10 05:43-0400\n" "PO-Revision-Date: 2019-07-25 11:00+0300\n" "Last-Translator: Serhii Golovko \n" "Language-Team: Ukranian \n" @@ -270,6 +270,10 @@ msgstr "Команда не вказана" msgid "Kernel %s Available" msgstr "Доступні пакети" +#: src/Console/OSDNotify.vala:63 +msgid "Show" +msgstr "" + #: src/Gtk/AppGtk.vala:175 msgid "Print debug information" msgstr "Роздрукувати зневадження" diff --git a/src/Console/OSDNotify.vala b/src/Console/OSDNotify.vala index de853bf6..83de9f74 100644 --- a/src/Console/OSDNotify.vala +++ b/src/Console/OSDNotify.vala @@ -31,7 +31,7 @@ public class OSDNotify : GLib.Object { private static DateTime dt_last_notification = null; public const int MIN_NOTIFICATION_INTERVAL = 3; - public static int notify_send (string title = "", string message = ""){ + public static int notify_send (string summary = "", string _body = ""){ /* Displays notification bubble on the desktop */ @@ -44,81 +44,26 @@ public class OSDNotify : GLib.Object { seconds = (long)(elapsed * 1.0 / TimeSpan.SECOND); } - - // Notification display timeout. Override the desktop default. - - // The action buttons in notify-send.sh only work - // during the initial display life of a notification. - // When a notification is generated, an associated notify-action.sh - // process is started in the background which waits for a dbus - // event. When you press the action button in the notification, - // it generates a dbus event which the monitor process detects - // and reacts to. - // When the notification times out, the associated monitor - // process goes away and never comes back. - // When you view a past notification from the history, - // the notification still has the button, and it's still clickable, - // but nothing happens when you press it, because the associated - // notify-action.sh process is no longer there to receive the event - // and perform the action. - - // So as a work-around, override the default desktop timeout - // and set a timeout that is slightly less than the update - // interval, and use the --force-expire option so that when the - // timeout does finally expire, it doesn't appear in the history. - - // So the notification appears and stays alive and fully functional - // until the user dismisses it, or until just before the next - // notification update is due to appear. If the user dismisses - // the notification, there is no "broken" notification in the - // the history. The force-expire option doesn't work 100%. - // Sometimes an expired notification is still visible in the - // notification daemon history, and sometimes you can view it, - // and sometimes you can start to view it but then it goes away - // by itself just after you pop it up, etc. - - // We may be able to do cool stuff with this later, with more - // action buttons to install, dismiss, blacklist a certain version, etc. - // And maybe we can use the notification ID option to update a - // single notification rather then generate new ones. - - int timeout_ms = 604800000; - switch (App.notify_interval_unit){ - case 0: // hour - timeout_ms = 3600000; - break; - case 1: // day - timeout_ms = 86400000; - break; - case 2: // week - timeout_ms = 604800000; - break; - case 3: // second - timeout_ms = 1000; - break; - } - - // notification timeout is kernel update interval minus one second - timeout_ms = App.notify_interval_value * timeout_ms - 1000; - if (seconds > MIN_NOTIFICATION_INTERVAL){ string action = BRANDING_SHORTNAME+"-gtk"; - string body = message; + string body = _body; if (LOG_DEBUG) { action = INSTALL_PREFIX+"/lib/"+BRANDING_SHORTNAME+"/notify-action-debug.sh"; - body = "debug: button runs %s".printf(action); + body += "\n("+action+")"; } string s = - INSTALL_PREFIX+"/lib/"+BRANDING_SHORTNAME+"/notify_send/notify-send.sh" - + " -u low" - + " -c info" - + " -f" - + " -a "+BRANDING_SHORTNAME - + " -i "+BRANDING_SHORTNAME - + " -o Install:%s".printf(action) - + " -t %d \"%s\" \"%s\"".printf(timeout_ms,title,body); + INSTALL_PREFIX+"/lib/"+BRANDING_SHORTNAME+"/notify_send/notify-send.sh" + + " -u low" + + " -c info" + + " -a "+BRANDING_SHORTNAME + + " -i "+BRANDING_SHORTNAME + + " -t 0" + + " -o \""+_("Show")+":"+action+"\"" + + " \""+summary+"\"" + + " \""+body+"\"" + ; retVal = exec_sync (s, null, null); From b44dc138b84feccd9ddac7c8555f2fe8052f5654 Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Sun, 10 May 2020 21:59:32 -0400 Subject: [PATCH 081/567] many tmp dir fixups, slick notify-send.sh features --- .deb_build_number.mak | 2 +- debian/changelog | 2 +- po/es.po | 217 ++++++++++++++++------------- po/fr.po | 216 +++++++++++++++------------- po/hr.po | 216 +++++++++++++++------------- po/messages.pot | 212 +++++++++++++++------------- po/nl.po | 216 +++++++++++++++------------- po/pl.po | 216 +++++++++++++++------------- po/ru.po | 216 +++++++++++++++------------- po/sv.po | 216 +++++++++++++++------------- po/tr.po | 217 ++++++++++++++++------------- po/uk.po | 217 ++++++++++++++++------------- src/Common/DownloadManager.vala | 25 ++-- src/Common/LinuxKernel.vala | 7 +- src/Common/Main.vala | 53 +++++-- src/Common/Package.vala | 26 ++-- src/Console/AppConsole.vala | 45 +++--- src/Console/OSDNotify.vala | 29 ++-- src/Gtk/AppGtk.vala | 13 -- src/Gtk/MainWindow.vala | 23 ++- src/Gtk/TerminalWindow.vala | 53 ++----- src/Utility/AsyncTask.vala | 38 ++--- src/Utility/TeeJee.FileSystem.vala | 58 ++++---- src/Utility/TeeJee.Process.vala | 84 +++++------ 24 files changed, 1418 insertions(+), 1199 deletions(-) diff --git a/.deb_build_number.mak b/.deb_build_number.mak index cdec778b..837ce7b6 100644 --- a/.deb_build_number.mak +++ b/.deb_build_number.mak @@ -1,3 +1,3 @@ # This file is generated by Makefile "make deb_build_number" DEB_PKG_VERSION := 1.0.9 -DEB_BUILD_NUMBER := 0006 +DEB_BUILD_NUMBER := 0008 diff --git a/debian/changelog b/debian/changelog index 66c7492d..39df1a22 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,7 +1,7 @@ mainline (1.0.9) unstable; urgency=medium * Improve desktop notifications - * Improve temp directories & file permissions, somewhat + * Improve temp directories & file permissions * Removed a bunch more un-used TeeJee util functions * un-hardcode "/usr" in various paths to installed files * Added some quasi-hidden extra functionality to --debug diff --git a/po/es.po b/po/es.po index 8bf540ea..976768a5 100644 --- a/po/es.po +++ b/po/es.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-10 05:43-0400\n" +"POT-Creation-Date: 2020-05-10 21:20-0400\n" "PO-Revision-Date: 2018-01-03 02:03-0600\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish\n" @@ -41,88 +41,88 @@ msgstr "Recuperando índice..." msgid "Fetching index from kernel.ubuntu.com..." msgstr "Recuperando índice de kernel.ubuntu.com…" -#: src/Common/LinuxKernel.vala:693 +#: src/Common/LinuxKernel.vala:694 msgid "Could not find running kernel in list!" msgstr "¡No se pudo encontrar el núcleo en ejecución en la lista!" -#: src/Common/LinuxKernel.vala:699 +#: src/Common/LinuxKernel.vala:700 msgid "Could not find any kernels to remove" msgstr "Seleccione los núcleos que se desinstalarán" -#: src/Common/LinuxKernel.vala:708 +#: src/Common/LinuxKernel.vala:709 msgid "The following kernels will be removed:" msgstr "Los siguientes kernels serán eliminados:" -#: src/Common/LinuxKernel.vala:715 +#: src/Common/LinuxKernel.vala:716 msgid "Continue ?" msgstr "¿Continuar?" -#: src/Common/LinuxKernel.vala:743 src/Console/AppConsole.vala:363 +#: src/Common/LinuxKernel.vala:744 src/Console/AppConsole.vala:346 msgid "Latest update" msgstr "" -#: src/Common/LinuxKernel.vala:754 src/Console/AppConsole.vala:370 +#: src/Common/LinuxKernel.vala:755 src/Console/AppConsole.vala:353 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:762 src/Console/AppConsole.vala:375 -#: src/Console/AppConsole.vala:419 +#: src/Common/LinuxKernel.vala:763 src/Console/AppConsole.vala:358 +#: src/Console/AppConsole.vala:408 msgid "No updates found" msgstr "No se encontró ninguna actualización" -#: src/Common/LinuxKernel.vala:772 +#: src/Common/LinuxKernel.vala:773 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "" -#: src/Common/LinuxKernel.vala:1038 +#: src/Common/LinuxKernel.vala:1039 msgid "Packages Available" msgstr "Paquetes disponibles" -#: src/Common/LinuxKernel.vala:1046 +#: src/Common/LinuxKernel.vala:1047 msgid "Packages Installed" msgstr "Paquetes instalados" -#: src/Common/LinuxKernel.vala:1130 +#: src/Common/LinuxKernel.vala:1131 msgid "Available Kernels" msgstr "Núcleos disponibles" -#: src/Common/LinuxKernel.vala:1147 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1148 src/Gtk/MainWindow.vala:186 msgid "Installed" msgstr "Instalado" -#: src/Common/LinuxKernel.vala:1147 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1148 src/Gtk/MainWindow.vala:186 msgid "Running" msgstr "En ejecución" -#: src/Common/LinuxKernel.vala:1182 +#: src/Common/LinuxKernel.vala:1183 msgid "Downloading" msgstr "Descargando" -#: src/Common/LinuxKernel.vala:1201 +#: src/Common/LinuxKernel.vala:1202 #: src/Utility/Gtk/CustomMessageDialog.vala:148 #: src/Utility/Gtk/CustomMessageDialog.vala:152 msgid "OK" msgstr "Aceptar" -#: src/Common/LinuxKernel.vala:1207 +#: src/Common/LinuxKernel.vala:1208 msgid "ERROR" msgstr "ERROR" -#: src/Common/LinuxKernel.vala:1221 src/Gtk/MainWindow.vala:653 +#: src/Common/LinuxKernel.vala:1222 src/Gtk/MainWindow.vala:663 msgid "This kernel is already installed." msgstr "Este núcleo ya se instaló." -#: src/Common/LinuxKernel.vala:1252 +#: src/Common/LinuxKernel.vala:1253 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "Instalación finalizada. Se necesita reiniciar para utilizar el núcleo nuevo." -#: src/Common/LinuxKernel.vala:1255 +#: src/Common/LinuxKernel.vala:1256 msgid "Installation completed with errors" msgstr "Instalación finalizada con errores" -#: src/Common/LinuxKernel.vala:1271 +#: src/Common/LinuxKernel.vala:1272 msgid "" "Selected kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -130,19 +130,19 @@ msgstr "" "El núcleo seleccionado está en ejecución y no puede desinstalarse.\n" "Instale otro núcleo antes de desinstalar este." -#: src/Common/LinuxKernel.vala:1276 +#: src/Common/LinuxKernel.vala:1277 msgid "Preparing to remove selected kernels" msgstr "Preparándose para desinstalar los núcleos seleccionados" -#: src/Common/LinuxKernel.vala:1308 src/Common/LinuxKernel.vala:1361 +#: src/Common/LinuxKernel.vala:1309 src/Common/LinuxKernel.vala:1362 msgid "Un-install completed" msgstr "Desinstalación finalizada" -#: src/Common/LinuxKernel.vala:1311 src/Common/LinuxKernel.vala:1364 +#: src/Common/LinuxKernel.vala:1312 src/Common/LinuxKernel.vala:1365 msgid "Un-install completed with errors" msgstr "Desinstalación finalizada con errores" -#: src/Common/LinuxKernel.vala:1324 +#: src/Common/LinuxKernel.vala:1325 msgid "" "This kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -150,140 +150,165 @@ msgstr "" "Este núcleo está en ejecución y no se puede desinstalar.\n" "Instale otro núcleo antes de desinstalar este." -#: src/Common/Main.vala:107 +#: src/Common/Main.vala:123 msgid "Commands listed below are not available on this system" msgstr "" "Las órdenes enumeradas a continuación no están disponibles en este sistema" -#: src/Common/Main.vala:108 +#: src/Common/Main.vala:124 msgid "Please install required packages and try again" msgstr "Instale los paquetes requeridos e inténtelo de nuevo" -#: src/Common/Package.vala:131 src/Common/Package.vala:193 +#: src/Common/Main.vala:270 +msgid "Called from" +msgstr "" + +#: src/Common/Main.vala:282 +#, fuzzy +msgid "Notifications are disabled" +msgstr "Notificación" + +#: src/Common/Package.vala:134 src/Common/Package.vala:198 #, c-format msgid "File not found: %s" msgstr "No se encontró el archivo: %s" -#: src/Console/AppConsole.vala:81 src/Gtk/AppGtk.vala:171 +#: src/Console/AppConsole.vala:71 src/Gtk/AppGtk.vala:158 msgid "Syntax" msgstr "Sintaxis" -#: src/Console/AppConsole.vala:83 +#: src/Console/AppConsole.vala:73 msgid "Commands" msgstr "Comandos" -#: src/Console/AppConsole.vala:85 +#: src/Console/AppConsole.vala:75 msgid "Check for kernel updates" msgstr "Buscar actualizaciones del núcleo" -#: src/Console/AppConsole.vala:86 +#: src/Console/AppConsole.vala:76 msgid "Check for kernel updates and notify current user" msgstr "Compruebe las actualizaciones del kernel y notifique al usuario actual" -#: src/Console/AppConsole.vala:87 +#: src/Console/AppConsole.vala:77 msgid "List all available mainline kernels" msgstr "Mostrar todos los núcleos troncales disponibles" -#: src/Console/AppConsole.vala:88 +#: src/Console/AppConsole.vala:78 msgid "List installed kernels" msgstr "Mostrar kernels disponibles" -#: src/Console/AppConsole.vala:89 +#: src/Console/AppConsole.vala:79 msgid "Install latest mainline kernel" msgstr "Instalar kernel troncal especificado" -#: src/Console/AppConsole.vala:90 +#: src/Console/AppConsole.vala:80 msgid "Install latest point update for current series" msgstr "" -#: src/Console/AppConsole.vala:91 +#: src/Console/AppConsole.vala:81 msgid "Install specified mainline kernel" msgstr "Instalar núcleo troncal especificado" -#: src/Console/AppConsole.vala:92 -msgid "Remove specified kernel" -msgstr "Quitar el núcleo troncal especificado" +#: src/Console/AppConsole.vala:82 +#, fuzzy +msgid "Uninstall specified kernels" +msgstr "Instalar núcleo troncal especificado" -#: src/Console/AppConsole.vala:93 src/Gtk/MainWindow.vala:396 +#: src/Console/AppConsole.vala:83 src/Gtk/MainWindow.vala:401 msgid "Remove installed kernels older than running kernel" msgstr "" -#: src/Console/AppConsole.vala:94 -msgid "Download packages for specified kernel" +#: src/Console/AppConsole.vala:84 +#, fuzzy +msgid "Download specified kernels" msgstr "Descargar paquetes del núcleo especificado" -#: src/Console/AppConsole.vala:95 src/Console/AppConsole.vala:100 +#: src/Console/AppConsole.vala:85 msgid "Remove files from application cache" msgstr "Quitar archivos de la antememoria de la aplicación" -#: src/Console/AppConsole.vala:96 +#: src/Console/AppConsole.vala:86 msgid "Show unstable and RC releases" msgstr "Ocultar versiones inestables y RC" -#: src/Console/AppConsole.vala:98 src/Gtk/AppGtk.vala:173 +#: src/Console/AppConsole.vala:88 src/Gtk/AppGtk.vala:160 msgid "Options" msgstr "Opciones" -#: src/Console/AppConsole.vala:101 +#: src/Console/AppConsole.vala:90 msgid "Enable verbose debugging output" msgstr "" -#: src/Console/AppConsole.vala:102 +#: src/Console/AppConsole.vala:91 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "Asumir Sí para todas las solicitudes (modo no interactivo)" -#: src/Console/AppConsole.vala:103 +#: src/Console/AppConsole.vala:92 msgid "Override user" msgstr "" -#: src/Console/AppConsole.vala:116 +#: src/Console/AppConsole.vala:95 +msgid "A version string taken from the output of --list" +msgstr "" + +#: src/Console/AppConsole.vala:96 +msgid "" +"One or more version strings (comma-seperated) taken from the output of --list" +msgstr "" + +#: src/Console/AppConsole.vala:103 msgid "Admin access is required for running this application." msgstr "" "Se necesitan privilegios administrativos para ejecutar esta aplicación." -#: src/Console/AppConsole.vala:119 +#: src/Console/AppConsole.vala:104 msgid "Run the application as admin with pkexec or sudo." msgstr "Ejecute la aplicación con permisos administrativos con pkexec o sudo." -#: src/Console/AppConsole.vala:200 src/Gtk/AppGtk.vala:158 +#: src/Console/AppConsole.vala:183 src/Gtk/AppGtk.vala:145 msgid "Unknown option" msgstr "Opción desconocida" -#: src/Console/AppConsole.vala:202 src/Console/AppConsole.vala:315 -#: src/Console/AppConsole.vala:345 +#: src/Console/AppConsole.vala:185 src/Console/AppConsole.vala:298 +#: src/Console/AppConsole.vala:328 msgid "Run '" msgstr "" -#: src/Console/AppConsole.vala:284 src/Console/AppConsole.vala:324 +#: src/Console/AppConsole.vala:267 src/Console/AppConsole.vala:307 msgid "No kernels specified" msgstr "" -#: src/Console/AppConsole.vala:290 +#: src/Console/AppConsole.vala:273 msgid "Multiple kernels selected for installation. Select only one." msgstr "Se seleccionaron varios núcleos para su instalación. Elija solo uno." -#: src/Console/AppConsole.vala:311 src/Gtk/MainWindow.vala:100 +#: src/Console/AppConsole.vala:294 src/Gtk/MainWindow.vala:100 msgid "Could not find requested version" msgstr "No se pudo encontrar la versión solicitada" -#: src/Console/AppConsole.vala:344 +#: src/Console/AppConsole.vala:327 msgid "Command not specified" msgstr "Coomand no especificado" -#: src/Console/AppConsole.vala:393 src/Console/AppConsole.vala:408 +#: src/Console/AppConsole.vala:380 src/Console/AppConsole.vala:396 #, fuzzy, c-format msgid "Kernel %s Available" msgstr "Paquetes disponibles" -#: src/Console/OSDNotify.vala:63 +#: src/Console/AppConsole.vala:383 src/Console/AppConsole.vala:399 +#: src/Gtk/MainWindow.vala:335 +msgid "Install" +msgstr "Instalar" + +#: src/Console/OSDNotify.vala:66 msgid "Show" msgstr "" -#: src/Gtk/AppGtk.vala:175 +#: src/Gtk/AppGtk.vala:162 msgid "Print debug information" msgstr "Mostrar información de depuración" -#: src/Gtk/AppGtk.vala:176 +#: src/Gtk/AppGtk.vala:163 msgid "Show all options" msgstr "Mostrar todas las opciones" @@ -299,20 +324,16 @@ msgstr "Estado" msgid "Refresh" msgstr "Actualizar" -#: src/Gtk/MainWindow.vala:326 src/Gtk/MainWindow.vala:527 -#: src/Gtk/MainWindow.vala:658 src/Utility/TeeJee.System.vala:146 +#: src/Gtk/MainWindow.vala:326 src/Gtk/MainWindow.vala:537 +#: src/Gtk/MainWindow.vala:668 src/Utility/TeeJee.System.vala:146 msgid "Internet connection is not active" msgstr "La conexión a Internet está inactiva" -#: src/Gtk/MainWindow.vala:326 src/Gtk/MainWindow.vala:527 -#: src/Gtk/MainWindow.vala:658 +#: src/Gtk/MainWindow.vala:326 src/Gtk/MainWindow.vala:537 +#: src/Gtk/MainWindow.vala:668 msgid "No Internet" msgstr "No hay Internet" -#: src/Gtk/MainWindow.vala:335 -msgid "Install" -msgstr "Instalar" - #: src/Gtk/MainWindow.vala:344 msgid "Multiple Kernels Selected" msgstr "Se seleccionaron varios kernels" @@ -337,36 +358,36 @@ msgstr "Quitar" msgid "Select the kernels to remove" msgstr "Seleccione los núcleos que se desinstalarán" -#: src/Gtk/MainWindow.vala:395 +#: src/Gtk/MainWindow.vala:400 msgid "Purge" msgstr "" -#: src/Gtk/MainWindow.vala:429 +#: src/Gtk/MainWindow.vala:439 msgid "Changes" msgstr "Cambios" -#: src/Gtk/MainWindow.vala:440 src/Gtk/SettingsDialog.vala:52 +#: src/Gtk/MainWindow.vala:450 src/Gtk/SettingsDialog.vala:52 msgid "Settings" msgstr "Configuración" -#: src/Gtk/MainWindow.vala:461 +#: src/Gtk/MainWindow.vala:471 msgid "About" msgstr "Acerca de" -#: src/Gtk/MainWindow.vala:505 +#: src/Gtk/MainWindow.vala:515 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "" "Herramienta de renovación de núcleo para distribuciones basadas en Ubuntu" -#: src/Gtk/MainWindow.vala:506 +#: src/Gtk/MainWindow.vala:516 msgid "Forked:" msgstr "" -#: src/Gtk/MainWindow.vala:506 +#: src/Gtk/MainWindow.vala:516 msgid "Original:" msgstr "" -#: src/Gtk/MainWindow.vala:546 +#: src/Gtk/MainWindow.vala:556 msgid "Refreshing..." msgstr "Actualizando…" @@ -497,64 +518,64 @@ msgstr "Error" msgid "Missing Icon" msgstr "Falta el icono" -#: src/Utility/TeeJee.FileSystem.vala:73 src/Utility/TeeJee.FileSystem.vala:76 +#: src/Utility/TeeJee.FileSystem.vala:71 src/Utility/TeeJee.FileSystem.vala:74 msgid "File deleted" msgstr "Se eliminó el archivo" -#: src/Utility/TeeJee.FileSystem.vala:82 +#: src/Utility/TeeJee.FileSystem.vala:80 msgid "Failed to delete file" msgstr "Falló la eliminación del archivo" -#: src/Utility/TeeJee.FileSystem.vala:108 +#: src/Utility/TeeJee.FileSystem.vala:99 msgid "Failed to read file" msgstr "Falló la lectura del archivo" -#: src/Utility/TeeJee.FileSystem.vala:135 -#: src/Utility/TeeJee.FileSystem.vala:138 +#: src/Utility/TeeJee.FileSystem.vala:127 +#: src/Utility/TeeJee.FileSystem.vala:130 msgid "File saved" msgstr "Se guardó el archivo" -#: src/Utility/TeeJee.FileSystem.vala:147 +#: src/Utility/TeeJee.FileSystem.vala:139 msgid "Failed to write file" msgstr "Falló la escritura del archivo" -#: src/Utility/TeeJee.FileSystem.vala:160 -#: src/Utility/TeeJee.FileSystem.vala:163 +#: src/Utility/TeeJee.FileSystem.vala:152 +#: src/Utility/TeeJee.FileSystem.vala:155 msgid "File copied" msgstr "Se copió el archivo" -#: src/Utility/TeeJee.FileSystem.vala:171 +#: src/Utility/TeeJee.FileSystem.vala:163 msgid "Failed to copy file" msgstr "Falló la copia del archivo" -#: src/Utility/TeeJee.FileSystem.vala:181 +#: src/Utility/TeeJee.FileSystem.vala:173 msgid "File not found" msgstr "No se encontró el archivo" -#: src/Utility/TeeJee.FileSystem.vala:195 -#: src/Utility/TeeJee.FileSystem.vala:198 +#: src/Utility/TeeJee.FileSystem.vala:187 +#: src/Utility/TeeJee.FileSystem.vala:190 msgid "File moved" msgstr "Se trasladó el archivo" -#: src/Utility/TeeJee.FileSystem.vala:203 +#: src/Utility/TeeJee.FileSystem.vala:195 msgid "Failed to move file" msgstr "Falló el traslado del archivo" -#: src/Utility/TeeJee.FileSystem.vala:258 -#: src/Utility/TeeJee.FileSystem.vala:261 +#: src/Utility/TeeJee.FileSystem.vala:252 +#: src/Utility/TeeJee.FileSystem.vala:255 msgid "Created directory" msgstr "Se creó el directorio" -#: src/Utility/TeeJee.FileSystem.vala:268 +#: src/Utility/TeeJee.FileSystem.vala:262 msgid "Failed to create dir" msgstr "Falló la creación del directorio" -#: src/Utility/TeeJee.FileSystem.vala:283 +#: src/Utility/TeeJee.FileSystem.vala:277 #, fuzzy msgid "Deleted" msgstr "Se eliminó el archivo" -#: src/Utility/TeeJee.FileSystem.vala:284 +#: src/Utility/TeeJee.FileSystem.vala:278 msgid "FAILED deleting" msgstr "" @@ -566,6 +587,6 @@ msgstr "E" msgid "W" msgstr "W" -#: src/Utility/TeeJee.Process.vala:507 +#: src/Utility/TeeJee.Process.vala:511 msgid "Stopped" msgstr "Detenido" diff --git a/po/fr.po b/po/fr.po index 0c2bbb74..35dd002b 100644 --- a/po/fr.po +++ b/po/fr.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-10 05:43-0400\n" +"POT-Creation-Date: 2020-05-10 21:20-0400\n" "PO-Revision-Date: 2018-08-05 15:50+0200\n" "Last-Translator: Yolateng0 \n" "Language-Team: French\n" @@ -42,91 +42,91 @@ msgstr "" msgid "Fetching index from kernel.ubuntu.com..." msgstr "Récupération de l'index depuis kernel.ubuntu.com..." -#: src/Common/LinuxKernel.vala:693 +#: src/Common/LinuxKernel.vala:694 #, fuzzy msgid "Could not find running kernel in list!" msgstr "Impossible de trouver la version demandée" -#: src/Common/LinuxKernel.vala:699 +#: src/Common/LinuxKernel.vala:700 #, fuzzy msgid "Could not find any kernels to remove" msgstr "Sélectionnez les noyaux à supprimer" -#: src/Common/LinuxKernel.vala:708 +#: src/Common/LinuxKernel.vala:709 msgid "The following kernels will be removed:" msgstr "" -#: src/Common/LinuxKernel.vala:715 +#: src/Common/LinuxKernel.vala:716 msgid "Continue ?" msgstr "" -#: src/Common/LinuxKernel.vala:743 src/Console/AppConsole.vala:363 +#: src/Common/LinuxKernel.vala:744 src/Console/AppConsole.vala:346 msgid "Latest update" msgstr "" -#: src/Common/LinuxKernel.vala:754 src/Console/AppConsole.vala:370 +#: src/Common/LinuxKernel.vala:755 src/Console/AppConsole.vala:353 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:762 src/Console/AppConsole.vala:375 -#: src/Console/AppConsole.vala:419 +#: src/Common/LinuxKernel.vala:763 src/Console/AppConsole.vala:358 +#: src/Console/AppConsole.vala:408 msgid "No updates found" msgstr "Aucune mise à jour disponible" -#: src/Common/LinuxKernel.vala:772 +#: src/Common/LinuxKernel.vala:773 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "" -#: src/Common/LinuxKernel.vala:1038 +#: src/Common/LinuxKernel.vala:1039 msgid "Packages Available" msgstr "Paquets disponibles" -#: src/Common/LinuxKernel.vala:1046 +#: src/Common/LinuxKernel.vala:1047 msgid "Packages Installed" msgstr "Paquets installés" -#: src/Common/LinuxKernel.vala:1130 +#: src/Common/LinuxKernel.vala:1131 msgid "Available Kernels" msgstr "Noyaux disponibles" -#: src/Common/LinuxKernel.vala:1147 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1148 src/Gtk/MainWindow.vala:186 msgid "Installed" msgstr "Installé" -#: src/Common/LinuxKernel.vala:1147 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1148 src/Gtk/MainWindow.vala:186 msgid "Running" msgstr "En cours" -#: src/Common/LinuxKernel.vala:1182 +#: src/Common/LinuxKernel.vala:1183 msgid "Downloading" msgstr "Téléchargement" -#: src/Common/LinuxKernel.vala:1201 +#: src/Common/LinuxKernel.vala:1202 #: src/Utility/Gtk/CustomMessageDialog.vala:148 #: src/Utility/Gtk/CustomMessageDialog.vala:152 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:1207 +#: src/Common/LinuxKernel.vala:1208 msgid "ERROR" msgstr "ERREUR" -#: src/Common/LinuxKernel.vala:1221 src/Gtk/MainWindow.vala:653 +#: src/Common/LinuxKernel.vala:1222 src/Gtk/MainWindow.vala:663 msgid "This kernel is already installed." msgstr "Ce noyau est déjà installé." -#: src/Common/LinuxKernel.vala:1252 +#: src/Common/LinuxKernel.vala:1253 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "Installation complétée. Un redémarrage est nécessaire pour utiliser le " "nouveau noyau." -#: src/Common/LinuxKernel.vala:1255 +#: src/Common/LinuxKernel.vala:1256 msgid "Installation completed with errors" msgstr "Installation terminée avec des erreurs" -#: src/Common/LinuxKernel.vala:1271 +#: src/Common/LinuxKernel.vala:1272 msgid "" "Selected kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -134,19 +134,19 @@ msgstr "" "Ce noyau est en cours d'exécution et ne peut pas être supprimé.\n" " Installez un autre noyau avant de retirer celui-ci." -#: src/Common/LinuxKernel.vala:1276 +#: src/Common/LinuxKernel.vala:1277 msgid "Preparing to remove selected kernels" msgstr "Préparation à la suppression des noyaux sélectionnés" -#: src/Common/LinuxKernel.vala:1308 src/Common/LinuxKernel.vala:1361 +#: src/Common/LinuxKernel.vala:1309 src/Common/LinuxKernel.vala:1362 msgid "Un-install completed" msgstr "Désinstallation complète" -#: src/Common/LinuxKernel.vala:1311 src/Common/LinuxKernel.vala:1364 +#: src/Common/LinuxKernel.vala:1312 src/Common/LinuxKernel.vala:1365 msgid "Un-install completed with errors" msgstr "Désinstallation terminée avec des erreurs" -#: src/Common/LinuxKernel.vala:1324 +#: src/Common/LinuxKernel.vala:1325 msgid "" "This kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -154,146 +154,170 @@ msgstr "" "Ce noyau est en cours d'exécution et ne peut pas être supprimé.\n" " Installez un autre noyau avant de retirer celui-ci." -#: src/Common/Main.vala:107 +#: src/Common/Main.vala:123 msgid "Commands listed below are not available on this system" msgstr "Les commandes listées ne sont pas valables pour ce système" -#: src/Common/Main.vala:108 +#: src/Common/Main.vala:124 msgid "Please install required packages and try again" msgstr "Veuillez installer les paquets requis et réessayer" -#: src/Common/Package.vala:131 src/Common/Package.vala:193 +#: src/Common/Main.vala:270 +msgid "Called from" +msgstr "" + +#: src/Common/Main.vala:282 +#, fuzzy +msgid "Notifications are disabled" +msgstr "Notification" + +#: src/Common/Package.vala:134 src/Common/Package.vala:198 #, c-format msgid "File not found: %s" msgstr "Fichier non trouvé: %s" -#: src/Console/AppConsole.vala:81 src/Gtk/AppGtk.vala:171 +#: src/Console/AppConsole.vala:71 src/Gtk/AppGtk.vala:158 msgid "Syntax" msgstr "Syntaxe" -#: src/Console/AppConsole.vala:83 +#: src/Console/AppConsole.vala:73 msgid "Commands" msgstr "" -#: src/Console/AppConsole.vala:85 +#: src/Console/AppConsole.vala:75 msgid "Check for kernel updates" msgstr "Vérifier les mises à jour des noyaux" -#: src/Console/AppConsole.vala:86 +#: src/Console/AppConsole.vala:76 #, fuzzy msgid "Check for kernel updates and notify current user" msgstr "Vérifier les mises à jour des noyaux" -#: src/Console/AppConsole.vala:87 +#: src/Console/AppConsole.vala:77 msgid "List all available mainline kernels" msgstr "Lister tous les noyaux mainline disponibles" -#: src/Console/AppConsole.vala:88 +#: src/Console/AppConsole.vala:78 #, fuzzy msgid "List installed kernels" msgstr "Lister les noyaux disponibles" -#: src/Console/AppConsole.vala:89 +#: src/Console/AppConsole.vala:79 #, fuzzy msgid "Install latest mainline kernel" msgstr "Installer le noyau principal spécifié" -#: src/Console/AppConsole.vala:90 +#: src/Console/AppConsole.vala:80 msgid "Install latest point update for current series" msgstr "" -#: src/Console/AppConsole.vala:91 +#: src/Console/AppConsole.vala:81 msgid "Install specified mainline kernel" msgstr "Installer le noyau principal spécifié" -#: src/Console/AppConsole.vala:92 +#: src/Console/AppConsole.vala:82 #, fuzzy -msgid "Remove specified kernel" -msgstr "Supprimer le noyau mainline sélectionné" +msgid "Uninstall specified kernels" +msgstr "Installer le noyau principal spécifié" -#: src/Console/AppConsole.vala:93 src/Gtk/MainWindow.vala:396 +#: src/Console/AppConsole.vala:83 src/Gtk/MainWindow.vala:401 msgid "Remove installed kernels older than running kernel" msgstr "" -#: src/Console/AppConsole.vala:94 -msgid "Download packages for specified kernel" +#: src/Console/AppConsole.vala:84 +#, fuzzy +msgid "Download specified kernels" msgstr "Télécharger les paquets pour des noyaux spécifiques" -#: src/Console/AppConsole.vala:95 src/Console/AppConsole.vala:100 +#: src/Console/AppConsole.vala:85 msgid "Remove files from application cache" msgstr "Supprimer les fichiers du cache de l'application" -#: src/Console/AppConsole.vala:96 +#: src/Console/AppConsole.vala:86 #, fuzzy msgid "Show unstable and RC releases" msgstr "Cacher les versions instables et RC" -#: src/Console/AppConsole.vala:98 src/Gtk/AppGtk.vala:173 +#: src/Console/AppConsole.vala:88 src/Gtk/AppGtk.vala:160 msgid "Options" msgstr "Options" -#: src/Console/AppConsole.vala:101 +#: src/Console/AppConsole.vala:90 msgid "Enable verbose debugging output" msgstr "" -#: src/Console/AppConsole.vala:102 +#: src/Console/AppConsole.vala:91 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "" -#: src/Console/AppConsole.vala:103 +#: src/Console/AppConsole.vala:92 msgid "Override user" msgstr "" -#: src/Console/AppConsole.vala:116 +#: src/Console/AppConsole.vala:95 +msgid "A version string taken from the output of --list" +msgstr "" + +#: src/Console/AppConsole.vala:96 +msgid "" +"One or more version strings (comma-seperated) taken from the output of --list" +msgstr "" + +#: src/Console/AppConsole.vala:103 msgid "Admin access is required for running this application." msgstr "Accès administrateur requis pour lancer cette application." -#: src/Console/AppConsole.vala:119 +#: src/Console/AppConsole.vala:104 msgid "Run the application as admin with pkexec or sudo." msgstr "Exécutez l'application en tant qu'admin avec pkexec or sudo." -#: src/Console/AppConsole.vala:200 src/Gtk/AppGtk.vala:158 +#: src/Console/AppConsole.vala:183 src/Gtk/AppGtk.vala:145 msgid "Unknown option" msgstr "Option inconnue" -#: src/Console/AppConsole.vala:202 src/Console/AppConsole.vala:315 -#: src/Console/AppConsole.vala:345 +#: src/Console/AppConsole.vala:185 src/Console/AppConsole.vala:298 +#: src/Console/AppConsole.vala:328 msgid "Run '" msgstr "" -#: src/Console/AppConsole.vala:284 src/Console/AppConsole.vala:324 +#: src/Console/AppConsole.vala:267 src/Console/AppConsole.vala:307 msgid "No kernels specified" msgstr "" -#: src/Console/AppConsole.vala:290 +#: src/Console/AppConsole.vala:273 msgid "Multiple kernels selected for installation. Select only one." msgstr "" "Plusieurs noyaux sélectionnés pour être installés. Sélectionnez en seulement " "un." -#: src/Console/AppConsole.vala:311 src/Gtk/MainWindow.vala:100 +#: src/Console/AppConsole.vala:294 src/Gtk/MainWindow.vala:100 msgid "Could not find requested version" msgstr "Impossible de trouver la version demandée" -#: src/Console/AppConsole.vala:344 +#: src/Console/AppConsole.vala:327 #, fuzzy msgid "Command not specified" msgstr "Impossible de trouver le fichier" -#: src/Console/AppConsole.vala:393 src/Console/AppConsole.vala:408 +#: src/Console/AppConsole.vala:380 src/Console/AppConsole.vala:396 #, fuzzy, c-format msgid "Kernel %s Available" msgstr "Paquets disponibles" -#: src/Console/OSDNotify.vala:63 +#: src/Console/AppConsole.vala:383 src/Console/AppConsole.vala:399 +#: src/Gtk/MainWindow.vala:335 +msgid "Install" +msgstr "Installer" + +#: src/Console/OSDNotify.vala:66 msgid "Show" msgstr "" -#: src/Gtk/AppGtk.vala:175 +#: src/Gtk/AppGtk.vala:162 msgid "Print debug information" msgstr "Afficher les informations de débogage" -#: src/Gtk/AppGtk.vala:176 +#: src/Gtk/AppGtk.vala:163 msgid "Show all options" msgstr "Afficher toutes les options" @@ -309,20 +333,16 @@ msgstr "Statut" msgid "Refresh" msgstr "Actualiser" -#: src/Gtk/MainWindow.vala:326 src/Gtk/MainWindow.vala:527 -#: src/Gtk/MainWindow.vala:658 src/Utility/TeeJee.System.vala:146 +#: src/Gtk/MainWindow.vala:326 src/Gtk/MainWindow.vala:537 +#: src/Gtk/MainWindow.vala:668 src/Utility/TeeJee.System.vala:146 msgid "Internet connection is not active" msgstr "Connexion internet inexistante" -#: src/Gtk/MainWindow.vala:326 src/Gtk/MainWindow.vala:527 -#: src/Gtk/MainWindow.vala:658 +#: src/Gtk/MainWindow.vala:326 src/Gtk/MainWindow.vala:537 +#: src/Gtk/MainWindow.vala:668 msgid "No Internet" msgstr "Pas d'Internet" -#: src/Gtk/MainWindow.vala:335 -msgid "Install" -msgstr "Installer" - #: src/Gtk/MainWindow.vala:344 msgid "Multiple Kernels Selected" msgstr "Plusieurs noyaux sélectionnés" @@ -347,37 +367,37 @@ msgstr "Supprimer" msgid "Select the kernels to remove" msgstr "Sélectionnez les noyaux à supprimer" -#: src/Gtk/MainWindow.vala:395 +#: src/Gtk/MainWindow.vala:400 msgid "Purge" msgstr "" -#: src/Gtk/MainWindow.vala:429 +#: src/Gtk/MainWindow.vala:439 msgid "Changes" msgstr "Changements" -#: src/Gtk/MainWindow.vala:440 src/Gtk/SettingsDialog.vala:52 +#: src/Gtk/MainWindow.vala:450 src/Gtk/SettingsDialog.vala:52 msgid "Settings" msgstr "Paramètres" -#: src/Gtk/MainWindow.vala:461 +#: src/Gtk/MainWindow.vala:471 msgid "About" msgstr "À propos" -#: src/Gtk/MainWindow.vala:505 +#: src/Gtk/MainWindow.vala:515 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "" "Utilitaire de mise à niveau des noyaux pour les distributions basées pour " "Ubuntu" -#: src/Gtk/MainWindow.vala:506 +#: src/Gtk/MainWindow.vala:516 msgid "Forked:" msgstr "" -#: src/Gtk/MainWindow.vala:506 +#: src/Gtk/MainWindow.vala:516 msgid "Original:" msgstr "" -#: src/Gtk/MainWindow.vala:546 +#: src/Gtk/MainWindow.vala:556 msgid "Refreshing..." msgstr "Actualisation..." @@ -509,64 +529,64 @@ msgstr "Erreur" msgid "Missing Icon" msgstr "Icône introuvable" -#: src/Utility/TeeJee.FileSystem.vala:73 src/Utility/TeeJee.FileSystem.vala:76 +#: src/Utility/TeeJee.FileSystem.vala:71 src/Utility/TeeJee.FileSystem.vala:74 msgid "File deleted" msgstr "Fichier effacé" -#: src/Utility/TeeJee.FileSystem.vala:82 +#: src/Utility/TeeJee.FileSystem.vala:80 msgid "Failed to delete file" msgstr "Impossible d'effacer le fichier" -#: src/Utility/TeeJee.FileSystem.vala:108 +#: src/Utility/TeeJee.FileSystem.vala:99 msgid "Failed to read file" msgstr "Impossible de lire le fichier" -#: src/Utility/TeeJee.FileSystem.vala:135 -#: src/Utility/TeeJee.FileSystem.vala:138 +#: src/Utility/TeeJee.FileSystem.vala:127 +#: src/Utility/TeeJee.FileSystem.vala:130 msgid "File saved" msgstr "Fichier sauvegardé" -#: src/Utility/TeeJee.FileSystem.vala:147 +#: src/Utility/TeeJee.FileSystem.vala:139 msgid "Failed to write file" msgstr "Impossible d'écrire le fichier" -#: src/Utility/TeeJee.FileSystem.vala:160 -#: src/Utility/TeeJee.FileSystem.vala:163 +#: src/Utility/TeeJee.FileSystem.vala:152 +#: src/Utility/TeeJee.FileSystem.vala:155 msgid "File copied" msgstr "Fichier copié" -#: src/Utility/TeeJee.FileSystem.vala:171 +#: src/Utility/TeeJee.FileSystem.vala:163 msgid "Failed to copy file" msgstr "Impossible de copier le fichier" -#: src/Utility/TeeJee.FileSystem.vala:181 +#: src/Utility/TeeJee.FileSystem.vala:173 msgid "File not found" msgstr "Fichier non trouvé" -#: src/Utility/TeeJee.FileSystem.vala:195 -#: src/Utility/TeeJee.FileSystem.vala:198 +#: src/Utility/TeeJee.FileSystem.vala:187 +#: src/Utility/TeeJee.FileSystem.vala:190 msgid "File moved" msgstr "Fichier déplacé" -#: src/Utility/TeeJee.FileSystem.vala:203 +#: src/Utility/TeeJee.FileSystem.vala:195 msgid "Failed to move file" msgstr "Impossible de déplacer le fichier" -#: src/Utility/TeeJee.FileSystem.vala:258 -#: src/Utility/TeeJee.FileSystem.vala:261 +#: src/Utility/TeeJee.FileSystem.vala:252 +#: src/Utility/TeeJee.FileSystem.vala:255 msgid "Created directory" msgstr "Dossier créé" -#: src/Utility/TeeJee.FileSystem.vala:268 +#: src/Utility/TeeJee.FileSystem.vala:262 msgid "Failed to create dir" msgstr "Impossible de créer le nouveau dossier" -#: src/Utility/TeeJee.FileSystem.vala:283 +#: src/Utility/TeeJee.FileSystem.vala:277 #, fuzzy msgid "Deleted" msgstr "Fichier effacé" -#: src/Utility/TeeJee.FileSystem.vala:284 +#: src/Utility/TeeJee.FileSystem.vala:278 msgid "FAILED deleting" msgstr "" @@ -578,6 +598,6 @@ msgstr "E" msgid "W" msgstr "W" -#: src/Utility/TeeJee.Process.vala:507 +#: src/Utility/TeeJee.Process.vala:511 msgid "Stopped" msgstr "Arrêté" diff --git a/po/hr.po b/po/hr.po index 438f4249..951fcd7a 100644 --- a/po/hr.po +++ b/po/hr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-10 05:43-0400\n" +"POT-Creation-Date: 2020-05-10 21:20-0400\n" "PO-Revision-Date: 2017-12-24 00:52+0100\n" "Last-Translator: gogo \n" "Language-Team: Croatian \n" @@ -43,91 +43,91 @@ msgstr "" msgid "Fetching index from kernel.ubuntu.com..." msgstr "Preuzimanje sadržaja sa kernel.ubuntu.com..." -#: src/Common/LinuxKernel.vala:693 +#: src/Common/LinuxKernel.vala:694 #, fuzzy msgid "Could not find running kernel in list!" msgstr "Nemoguće je pronaći zatraženu inačicu" -#: src/Common/LinuxKernel.vala:699 +#: src/Common/LinuxKernel.vala:700 #, fuzzy msgid "Could not find any kernels to remove" msgstr "Odaberi kernele za uklanjanje" -#: src/Common/LinuxKernel.vala:708 +#: src/Common/LinuxKernel.vala:709 msgid "The following kernels will be removed:" msgstr "" -#: src/Common/LinuxKernel.vala:715 +#: src/Common/LinuxKernel.vala:716 msgid "Continue ?" msgstr "" -#: src/Common/LinuxKernel.vala:743 src/Console/AppConsole.vala:363 +#: src/Common/LinuxKernel.vala:744 src/Console/AppConsole.vala:346 msgid "Latest update" msgstr "" -#: src/Common/LinuxKernel.vala:754 src/Console/AppConsole.vala:370 +#: src/Common/LinuxKernel.vala:755 src/Console/AppConsole.vala:353 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:762 src/Console/AppConsole.vala:375 -#: src/Console/AppConsole.vala:419 +#: src/Common/LinuxKernel.vala:763 src/Console/AppConsole.vala:358 +#: src/Console/AppConsole.vala:408 msgid "No updates found" msgstr "Nema pronađenih nadopuna" -#: src/Common/LinuxKernel.vala:772 +#: src/Common/LinuxKernel.vala:773 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "" -#: src/Common/LinuxKernel.vala:1038 +#: src/Common/LinuxKernel.vala:1039 msgid "Packages Available" msgstr "Dostupni paketi" -#: src/Common/LinuxKernel.vala:1046 +#: src/Common/LinuxKernel.vala:1047 msgid "Packages Installed" msgstr "Instalirani paketi" -#: src/Common/LinuxKernel.vala:1130 +#: src/Common/LinuxKernel.vala:1131 msgid "Available Kernels" msgstr "Dostupni kerneli" -#: src/Common/LinuxKernel.vala:1147 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1148 src/Gtk/MainWindow.vala:186 msgid "Installed" msgstr "Instalirano" -#: src/Common/LinuxKernel.vala:1147 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1148 src/Gtk/MainWindow.vala:186 msgid "Running" msgstr "Pokrenuto" -#: src/Common/LinuxKernel.vala:1182 +#: src/Common/LinuxKernel.vala:1183 msgid "Downloading" msgstr "Preuzimanje" -#: src/Common/LinuxKernel.vala:1201 +#: src/Common/LinuxKernel.vala:1202 #: src/Utility/Gtk/CustomMessageDialog.vala:148 #: src/Utility/Gtk/CustomMessageDialog.vala:152 msgid "OK" msgstr "U redu" -#: src/Common/LinuxKernel.vala:1207 +#: src/Common/LinuxKernel.vala:1208 msgid "ERROR" msgstr "GREŠKA" -#: src/Common/LinuxKernel.vala:1221 src/Gtk/MainWindow.vala:653 +#: src/Common/LinuxKernel.vala:1222 src/Gtk/MainWindow.vala:663 msgid "This kernel is already installed." msgstr "Ovaj kernel je već instaliran." -#: src/Common/LinuxKernel.vala:1252 +#: src/Common/LinuxKernel.vala:1253 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "Instalacija je završena. Potrebno je ponovno pokretanje računala kako bi se " "koristio novi kernel." -#: src/Common/LinuxKernel.vala:1255 +#: src/Common/LinuxKernel.vala:1256 msgid "Installation completed with errors" msgstr "Instalacija je završena s greškama" -#: src/Common/LinuxKernel.vala:1271 +#: src/Common/LinuxKernel.vala:1272 msgid "" "Selected kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -135,19 +135,19 @@ msgstr "" "Odabrani kernel je trenutno pokernut i ne može se ukloniti.\n" " Instalirajte drugi kernel prije uklanjanja trenutnog kernela." -#: src/Common/LinuxKernel.vala:1276 +#: src/Common/LinuxKernel.vala:1277 msgid "Preparing to remove selected kernels" msgstr "Pripremanje uklanjanja odabranih kernela" -#: src/Common/LinuxKernel.vala:1308 src/Common/LinuxKernel.vala:1361 +#: src/Common/LinuxKernel.vala:1309 src/Common/LinuxKernel.vala:1362 msgid "Un-install completed" msgstr "Deinstalacija završena" -#: src/Common/LinuxKernel.vala:1311 src/Common/LinuxKernel.vala:1364 +#: src/Common/LinuxKernel.vala:1312 src/Common/LinuxKernel.vala:1365 msgid "Un-install completed with errors" msgstr "Deinstalacija završena s greškama" -#: src/Common/LinuxKernel.vala:1324 +#: src/Common/LinuxKernel.vala:1325 msgid "" "This kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -155,143 +155,167 @@ msgstr "" "Ovaj kernel je trenutno pokrenut i ne može se ukloniti.\n" " Instalirajte drugi kernel prije uklanjanja trenutnog kernela." -#: src/Common/Main.vala:107 +#: src/Common/Main.vala:123 msgid "Commands listed below are not available on this system" msgstr "Naredbe navedene ispod nisu dostupne na ovom sustavu" -#: src/Common/Main.vala:108 +#: src/Common/Main.vala:124 msgid "Please install required packages and try again" msgstr "Instalirajte potrebni paket i pokušajte ponovno" -#: src/Common/Package.vala:131 src/Common/Package.vala:193 +#: src/Common/Main.vala:270 +msgid "Called from" +msgstr "" + +#: src/Common/Main.vala:282 +#, fuzzy +msgid "Notifications are disabled" +msgstr "Obavijesti" + +#: src/Common/Package.vala:134 src/Common/Package.vala:198 #, c-format msgid "File not found: %s" msgstr "Datoteka nije pronađena: %s" -#: src/Console/AppConsole.vala:81 src/Gtk/AppGtk.vala:171 +#: src/Console/AppConsole.vala:71 src/Gtk/AppGtk.vala:158 msgid "Syntax" msgstr "Sintaksa" -#: src/Console/AppConsole.vala:83 +#: src/Console/AppConsole.vala:73 msgid "Commands" msgstr "" -#: src/Console/AppConsole.vala:85 +#: src/Console/AppConsole.vala:75 msgid "Check for kernel updates" msgstr "Provjeri nadopune kernela" -#: src/Console/AppConsole.vala:86 +#: src/Console/AppConsole.vala:76 #, fuzzy msgid "Check for kernel updates and notify current user" msgstr "Provjeri nadopune kernela" -#: src/Console/AppConsole.vala:87 +#: src/Console/AppConsole.vala:77 msgid "List all available mainline kernels" msgstr "Prikaži sve mainline kernele" -#: src/Console/AppConsole.vala:88 +#: src/Console/AppConsole.vala:78 #, fuzzy msgid "List installed kernels" msgstr "Prikaži sve kernele" -#: src/Console/AppConsole.vala:89 +#: src/Console/AppConsole.vala:79 #, fuzzy msgid "Install latest mainline kernel" msgstr "Instaliraj određeni mainline kernel" -#: src/Console/AppConsole.vala:90 +#: src/Console/AppConsole.vala:80 msgid "Install latest point update for current series" msgstr "" -#: src/Console/AppConsole.vala:91 +#: src/Console/AppConsole.vala:81 msgid "Install specified mainline kernel" msgstr "Instaliraj određeni mainline kernel" -#: src/Console/AppConsole.vala:92 +#: src/Console/AppConsole.vala:82 #, fuzzy -msgid "Remove specified kernel" -msgstr "Ukloni određeni mainline kernel" +msgid "Uninstall specified kernels" +msgstr "Instaliraj određeni mainline kernel" -#: src/Console/AppConsole.vala:93 src/Gtk/MainWindow.vala:396 +#: src/Console/AppConsole.vala:83 src/Gtk/MainWindow.vala:401 msgid "Remove installed kernels older than running kernel" msgstr "" -#: src/Console/AppConsole.vala:94 -msgid "Download packages for specified kernel" +#: src/Console/AppConsole.vala:84 +#, fuzzy +msgid "Download specified kernels" msgstr "Preuzmi pakete za određeni kernel" -#: src/Console/AppConsole.vala:95 src/Console/AppConsole.vala:100 +#: src/Console/AppConsole.vala:85 msgid "Remove files from application cache" msgstr "Ukloni datoteke iz predmemorije aplikacije" -#: src/Console/AppConsole.vala:96 +#: src/Console/AppConsole.vala:86 #, fuzzy msgid "Show unstable and RC releases" msgstr "Sakrij nestabilne kernele i predizdanja" -#: src/Console/AppConsole.vala:98 src/Gtk/AppGtk.vala:173 +#: src/Console/AppConsole.vala:88 src/Gtk/AppGtk.vala:160 msgid "Options" msgstr "Mogućnosti" -#: src/Console/AppConsole.vala:101 +#: src/Console/AppConsole.vala:90 msgid "Enable verbose debugging output" msgstr "" -#: src/Console/AppConsole.vala:102 +#: src/Console/AppConsole.vala:91 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "" -#: src/Console/AppConsole.vala:103 +#: src/Console/AppConsole.vala:92 msgid "Override user" msgstr "" -#: src/Console/AppConsole.vala:116 +#: src/Console/AppConsole.vala:95 +msgid "A version string taken from the output of --list" +msgstr "" + +#: src/Console/AppConsole.vala:96 +msgid "" +"One or more version strings (comma-seperated) taken from the output of --list" +msgstr "" + +#: src/Console/AppConsole.vala:103 msgid "Admin access is required for running this application." msgstr "Administratorske ovlasti su potrebne za pokretanje ove aplikacije." -#: src/Console/AppConsole.vala:119 +#: src/Console/AppConsole.vala:104 msgid "Run the application as admin with pkexec or sudo." msgstr "Pokreni aplikaciju kao administrator sa pkexec ili sudo." -#: src/Console/AppConsole.vala:200 src/Gtk/AppGtk.vala:158 +#: src/Console/AppConsole.vala:183 src/Gtk/AppGtk.vala:145 msgid "Unknown option" msgstr "Nepoznata mogućnost" -#: src/Console/AppConsole.vala:202 src/Console/AppConsole.vala:315 -#: src/Console/AppConsole.vala:345 +#: src/Console/AppConsole.vala:185 src/Console/AppConsole.vala:298 +#: src/Console/AppConsole.vala:328 msgid "Run '" msgstr "" -#: src/Console/AppConsole.vala:284 src/Console/AppConsole.vala:324 +#: src/Console/AppConsole.vala:267 src/Console/AppConsole.vala:307 msgid "No kernels specified" msgstr "" -#: src/Console/AppConsole.vala:290 +#: src/Console/AppConsole.vala:273 msgid "Multiple kernels selected for installation. Select only one." msgstr "Više kernela je odabrano za instalaciju. odaberite samo jedan." -#: src/Console/AppConsole.vala:311 src/Gtk/MainWindow.vala:100 +#: src/Console/AppConsole.vala:294 src/Gtk/MainWindow.vala:100 msgid "Could not find requested version" msgstr "Nemoguće je pronaći zatraženu inačicu" -#: src/Console/AppConsole.vala:344 +#: src/Console/AppConsole.vala:327 msgid "Command not specified" msgstr "" -#: src/Console/AppConsole.vala:393 src/Console/AppConsole.vala:408 +#: src/Console/AppConsole.vala:380 src/Console/AppConsole.vala:396 #, fuzzy, c-format msgid "Kernel %s Available" msgstr "Dostupni paketi" -#: src/Console/OSDNotify.vala:63 +#: src/Console/AppConsole.vala:383 src/Console/AppConsole.vala:399 +#: src/Gtk/MainWindow.vala:335 +msgid "Install" +msgstr "Instaliraj" + +#: src/Console/OSDNotify.vala:66 msgid "Show" msgstr "" -#: src/Gtk/AppGtk.vala:175 +#: src/Gtk/AppGtk.vala:162 msgid "Print debug information" msgstr "Ispiši informacije otklanjanja grešaka" -#: src/Gtk/AppGtk.vala:176 +#: src/Gtk/AppGtk.vala:163 msgid "Show all options" msgstr "Prikaži sve mogućnosti" @@ -307,20 +331,16 @@ msgstr "Stanje" msgid "Refresh" msgstr "Osvježi" -#: src/Gtk/MainWindow.vala:326 src/Gtk/MainWindow.vala:527 -#: src/Gtk/MainWindow.vala:658 src/Utility/TeeJee.System.vala:146 +#: src/Gtk/MainWindow.vala:326 src/Gtk/MainWindow.vala:537 +#: src/Gtk/MainWindow.vala:668 src/Utility/TeeJee.System.vala:146 msgid "Internet connection is not active" msgstr "Internet povezivanje nije aktivno" -#: src/Gtk/MainWindow.vala:326 src/Gtk/MainWindow.vala:527 -#: src/Gtk/MainWindow.vala:658 +#: src/Gtk/MainWindow.vala:326 src/Gtk/MainWindow.vala:537 +#: src/Gtk/MainWindow.vala:668 msgid "No Internet" msgstr "Nema pristupa internetu" -#: src/Gtk/MainWindow.vala:335 -msgid "Install" -msgstr "Instaliraj" - #: src/Gtk/MainWindow.vala:344 msgid "Multiple Kernels Selected" msgstr "Više kernela je odabrano" @@ -345,35 +365,35 @@ msgstr "Ukloni" msgid "Select the kernels to remove" msgstr "Odaberi kernele za uklanjanje" -#: src/Gtk/MainWindow.vala:395 +#: src/Gtk/MainWindow.vala:400 msgid "Purge" msgstr "" -#: src/Gtk/MainWindow.vala:429 +#: src/Gtk/MainWindow.vala:439 msgid "Changes" msgstr "Promjene" -#: src/Gtk/MainWindow.vala:440 src/Gtk/SettingsDialog.vala:52 +#: src/Gtk/MainWindow.vala:450 src/Gtk/SettingsDialog.vala:52 msgid "Settings" msgstr "Postavke" -#: src/Gtk/MainWindow.vala:461 +#: src/Gtk/MainWindow.vala:471 msgid "About" msgstr "O programu" -#: src/Gtk/MainWindow.vala:505 +#: src/Gtk/MainWindow.vala:515 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Alat za nadogradnju kernela Ubuntu temeljenih distribucija" -#: src/Gtk/MainWindow.vala:506 +#: src/Gtk/MainWindow.vala:516 msgid "Forked:" msgstr "" -#: src/Gtk/MainWindow.vala:506 +#: src/Gtk/MainWindow.vala:516 msgid "Original:" msgstr "" -#: src/Gtk/MainWindow.vala:546 +#: src/Gtk/MainWindow.vala:556 msgid "Refreshing..." msgstr "Osvježavanje..." @@ -505,64 +525,64 @@ msgstr "Greška" msgid "Missing Icon" msgstr "Ikone koje nedostaju" -#: src/Utility/TeeJee.FileSystem.vala:73 src/Utility/TeeJee.FileSystem.vala:76 +#: src/Utility/TeeJee.FileSystem.vala:71 src/Utility/TeeJee.FileSystem.vala:74 msgid "File deleted" msgstr "Datoteka obrisana" -#: src/Utility/TeeJee.FileSystem.vala:82 +#: src/Utility/TeeJee.FileSystem.vala:80 msgid "Failed to delete file" msgstr "Neuspjelo brisanje datoteke" -#: src/Utility/TeeJee.FileSystem.vala:108 +#: src/Utility/TeeJee.FileSystem.vala:99 msgid "Failed to read file" msgstr "Neuspjelo čitanje datoteke" -#: src/Utility/TeeJee.FileSystem.vala:135 -#: src/Utility/TeeJee.FileSystem.vala:138 +#: src/Utility/TeeJee.FileSystem.vala:127 +#: src/Utility/TeeJee.FileSystem.vala:130 msgid "File saved" msgstr "Datoteka je spremljenja" -#: src/Utility/TeeJee.FileSystem.vala:147 +#: src/Utility/TeeJee.FileSystem.vala:139 msgid "Failed to write file" msgstr "Neuspjelo zapisivanje datoteke" -#: src/Utility/TeeJee.FileSystem.vala:160 -#: src/Utility/TeeJee.FileSystem.vala:163 +#: src/Utility/TeeJee.FileSystem.vala:152 +#: src/Utility/TeeJee.FileSystem.vala:155 msgid "File copied" msgstr "Datoteka kopirana" -#: src/Utility/TeeJee.FileSystem.vala:171 +#: src/Utility/TeeJee.FileSystem.vala:163 msgid "Failed to copy file" msgstr "Neuspjelo kopiranje datoteke" -#: src/Utility/TeeJee.FileSystem.vala:181 +#: src/Utility/TeeJee.FileSystem.vala:173 msgid "File not found" msgstr "Datoteka nije pronađena" -#: src/Utility/TeeJee.FileSystem.vala:195 -#: src/Utility/TeeJee.FileSystem.vala:198 +#: src/Utility/TeeJee.FileSystem.vala:187 +#: src/Utility/TeeJee.FileSystem.vala:190 msgid "File moved" msgstr "Datoteka je premještena" -#: src/Utility/TeeJee.FileSystem.vala:203 +#: src/Utility/TeeJee.FileSystem.vala:195 msgid "Failed to move file" msgstr "Neuspjelo premještanje datoteke" -#: src/Utility/TeeJee.FileSystem.vala:258 -#: src/Utility/TeeJee.FileSystem.vala:261 +#: src/Utility/TeeJee.FileSystem.vala:252 +#: src/Utility/TeeJee.FileSystem.vala:255 msgid "Created directory" msgstr "Stvoren direktorij" -#: src/Utility/TeeJee.FileSystem.vala:268 +#: src/Utility/TeeJee.FileSystem.vala:262 msgid "Failed to create dir" msgstr "Neuspjelo stvarnje direktorija" -#: src/Utility/TeeJee.FileSystem.vala:283 +#: src/Utility/TeeJee.FileSystem.vala:277 #, fuzzy msgid "Deleted" msgstr "Datoteka obrisana" -#: src/Utility/TeeJee.FileSystem.vala:284 +#: src/Utility/TeeJee.FileSystem.vala:278 msgid "FAILED deleting" msgstr "" @@ -574,6 +594,6 @@ msgstr "G" msgid "W" msgstr "Z" -#: src/Utility/TeeJee.Process.vala:507 +#: src/Utility/TeeJee.Process.vala:511 msgid "Stopped" msgstr "Zaustavljeno" diff --git a/po/messages.pot b/po/messages.pot index e84f94f3..20f48066 100644 --- a/po/messages.pot +++ b/po/messages.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline 1.0.9\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-10 05:43-0400\n" +"POT-Creation-Date: 2020-05-10 21:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -41,242 +41,264 @@ msgstr "" msgid "Fetching index from kernel.ubuntu.com..." msgstr "" -#: src/Common/LinuxKernel.vala:693 +#: src/Common/LinuxKernel.vala:694 msgid "Could not find running kernel in list!" msgstr "" -#: src/Common/LinuxKernel.vala:699 +#: src/Common/LinuxKernel.vala:700 msgid "Could not find any kernels to remove" msgstr "" -#: src/Common/LinuxKernel.vala:708 +#: src/Common/LinuxKernel.vala:709 msgid "The following kernels will be removed:" msgstr "" -#: src/Common/LinuxKernel.vala:715 +#: src/Common/LinuxKernel.vala:716 msgid "Continue ?" msgstr "" -#: src/Common/LinuxKernel.vala:743 src/Console/AppConsole.vala:363 +#: src/Common/LinuxKernel.vala:744 src/Console/AppConsole.vala:346 msgid "Latest update" msgstr "" -#: src/Common/LinuxKernel.vala:754 src/Console/AppConsole.vala:370 +#: src/Common/LinuxKernel.vala:755 src/Console/AppConsole.vala:353 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:762 src/Console/AppConsole.vala:375 -#: src/Console/AppConsole.vala:419 +#: src/Common/LinuxKernel.vala:763 src/Console/AppConsole.vala:358 +#: src/Console/AppConsole.vala:408 msgid "No updates found" msgstr "" -#: src/Common/LinuxKernel.vala:772 +#: src/Common/LinuxKernel.vala:773 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "" -#: src/Common/LinuxKernel.vala:1038 +#: src/Common/LinuxKernel.vala:1039 msgid "Packages Available" msgstr "" -#: src/Common/LinuxKernel.vala:1046 +#: src/Common/LinuxKernel.vala:1047 msgid "Packages Installed" msgstr "" -#: src/Common/LinuxKernel.vala:1130 +#: src/Common/LinuxKernel.vala:1131 msgid "Available Kernels" msgstr "" -#: src/Common/LinuxKernel.vala:1147 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1148 src/Gtk/MainWindow.vala:186 msgid "Installed" msgstr "" -#: src/Common/LinuxKernel.vala:1147 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1148 src/Gtk/MainWindow.vala:186 msgid "Running" msgstr "" -#: src/Common/LinuxKernel.vala:1182 +#: src/Common/LinuxKernel.vala:1183 msgid "Downloading" msgstr "" -#: src/Common/LinuxKernel.vala:1201 +#: src/Common/LinuxKernel.vala:1202 #: src/Utility/Gtk/CustomMessageDialog.vala:148 #: src/Utility/Gtk/CustomMessageDialog.vala:152 msgid "OK" msgstr "" -#: src/Common/LinuxKernel.vala:1207 +#: src/Common/LinuxKernel.vala:1208 msgid "ERROR" msgstr "" -#: src/Common/LinuxKernel.vala:1221 src/Gtk/MainWindow.vala:653 +#: src/Common/LinuxKernel.vala:1222 src/Gtk/MainWindow.vala:663 msgid "This kernel is already installed." msgstr "" -#: src/Common/LinuxKernel.vala:1252 +#: src/Common/LinuxKernel.vala:1253 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" -#: src/Common/LinuxKernel.vala:1255 +#: src/Common/LinuxKernel.vala:1256 msgid "Installation completed with errors" msgstr "" -#: src/Common/LinuxKernel.vala:1271 +#: src/Common/LinuxKernel.vala:1272 msgid "" "Selected kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." msgstr "" -#: src/Common/LinuxKernel.vala:1276 +#: src/Common/LinuxKernel.vala:1277 msgid "Preparing to remove selected kernels" msgstr "" -#: src/Common/LinuxKernel.vala:1308 src/Common/LinuxKernel.vala:1361 +#: src/Common/LinuxKernel.vala:1309 src/Common/LinuxKernel.vala:1362 msgid "Un-install completed" msgstr "" -#: src/Common/LinuxKernel.vala:1311 src/Common/LinuxKernel.vala:1364 +#: src/Common/LinuxKernel.vala:1312 src/Common/LinuxKernel.vala:1365 msgid "Un-install completed with errors" msgstr "" -#: src/Common/LinuxKernel.vala:1324 +#: src/Common/LinuxKernel.vala:1325 msgid "" "This kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." msgstr "" -#: src/Common/Main.vala:107 +#: src/Common/Main.vala:123 msgid "Commands listed below are not available on this system" msgstr "" -#: src/Common/Main.vala:108 +#: src/Common/Main.vala:124 msgid "Please install required packages and try again" msgstr "" -#: src/Common/Package.vala:131 src/Common/Package.vala:193 +#: src/Common/Main.vala:270 +msgid "Called from" +msgstr "" + +#: src/Common/Main.vala:282 +msgid "Notifications are disabled" +msgstr "" + +#: src/Common/Package.vala:134 src/Common/Package.vala:198 #, c-format msgid "File not found: %s" msgstr "" -#: src/Console/AppConsole.vala:81 src/Gtk/AppGtk.vala:171 +#: src/Console/AppConsole.vala:71 src/Gtk/AppGtk.vala:158 msgid "Syntax" msgstr "" -#: src/Console/AppConsole.vala:83 +#: src/Console/AppConsole.vala:73 msgid "Commands" msgstr "" -#: src/Console/AppConsole.vala:85 +#: src/Console/AppConsole.vala:75 msgid "Check for kernel updates" msgstr "" -#: src/Console/AppConsole.vala:86 +#: src/Console/AppConsole.vala:76 msgid "Check for kernel updates and notify current user" msgstr "" -#: src/Console/AppConsole.vala:87 +#: src/Console/AppConsole.vala:77 msgid "List all available mainline kernels" msgstr "" -#: src/Console/AppConsole.vala:88 +#: src/Console/AppConsole.vala:78 msgid "List installed kernels" msgstr "" -#: src/Console/AppConsole.vala:89 +#: src/Console/AppConsole.vala:79 msgid "Install latest mainline kernel" msgstr "" -#: src/Console/AppConsole.vala:90 +#: src/Console/AppConsole.vala:80 msgid "Install latest point update for current series" msgstr "" -#: src/Console/AppConsole.vala:91 +#: src/Console/AppConsole.vala:81 msgid "Install specified mainline kernel" msgstr "" -#: src/Console/AppConsole.vala:92 -msgid "Remove specified kernel" +#: src/Console/AppConsole.vala:82 +msgid "Uninstall specified kernels" msgstr "" -#: src/Console/AppConsole.vala:93 src/Gtk/MainWindow.vala:396 +#: src/Console/AppConsole.vala:83 src/Gtk/MainWindow.vala:401 msgid "Remove installed kernels older than running kernel" msgstr "" -#: src/Console/AppConsole.vala:94 -msgid "Download packages for specified kernel" +#: src/Console/AppConsole.vala:84 +msgid "Download specified kernels" msgstr "" -#: src/Console/AppConsole.vala:95 src/Console/AppConsole.vala:100 +#: src/Console/AppConsole.vala:85 msgid "Remove files from application cache" msgstr "" -#: src/Console/AppConsole.vala:96 +#: src/Console/AppConsole.vala:86 msgid "Show unstable and RC releases" msgstr "" -#: src/Console/AppConsole.vala:98 src/Gtk/AppGtk.vala:173 +#: src/Console/AppConsole.vala:88 src/Gtk/AppGtk.vala:160 msgid "Options" msgstr "" -#: src/Console/AppConsole.vala:101 +#: src/Console/AppConsole.vala:90 msgid "Enable verbose debugging output" msgstr "" -#: src/Console/AppConsole.vala:102 +#: src/Console/AppConsole.vala:91 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "" -#: src/Console/AppConsole.vala:103 +#: src/Console/AppConsole.vala:92 msgid "Override user" msgstr "" -#: src/Console/AppConsole.vala:116 +#: src/Console/AppConsole.vala:95 +msgid "A version string taken from the output of --list" +msgstr "" + +#: src/Console/AppConsole.vala:96 +msgid "" +"One or more version strings (comma-seperated) taken from the output of --list" +msgstr "" + +#: src/Console/AppConsole.vala:103 msgid "Admin access is required for running this application." msgstr "" -#: src/Console/AppConsole.vala:119 +#: src/Console/AppConsole.vala:104 msgid "Run the application as admin with pkexec or sudo." msgstr "" -#: src/Console/AppConsole.vala:200 src/Gtk/AppGtk.vala:158 +#: src/Console/AppConsole.vala:183 src/Gtk/AppGtk.vala:145 msgid "Unknown option" msgstr "" -#: src/Console/AppConsole.vala:202 src/Console/AppConsole.vala:315 -#: src/Console/AppConsole.vala:345 +#: src/Console/AppConsole.vala:185 src/Console/AppConsole.vala:298 +#: src/Console/AppConsole.vala:328 msgid "Run '" msgstr "" -#: src/Console/AppConsole.vala:284 src/Console/AppConsole.vala:324 +#: src/Console/AppConsole.vala:267 src/Console/AppConsole.vala:307 msgid "No kernels specified" msgstr "" -#: src/Console/AppConsole.vala:290 +#: src/Console/AppConsole.vala:273 msgid "Multiple kernels selected for installation. Select only one." msgstr "" -#: src/Console/AppConsole.vala:311 src/Gtk/MainWindow.vala:100 +#: src/Console/AppConsole.vala:294 src/Gtk/MainWindow.vala:100 msgid "Could not find requested version" msgstr "" -#: src/Console/AppConsole.vala:344 +#: src/Console/AppConsole.vala:327 msgid "Command not specified" msgstr "" -#: src/Console/AppConsole.vala:393 src/Console/AppConsole.vala:408 +#: src/Console/AppConsole.vala:380 src/Console/AppConsole.vala:396 #, c-format msgid "Kernel %s Available" msgstr "" -#: src/Console/OSDNotify.vala:63 +#: src/Console/AppConsole.vala:383 src/Console/AppConsole.vala:399 +#: src/Gtk/MainWindow.vala:335 +msgid "Install" +msgstr "" + +#: src/Console/OSDNotify.vala:66 msgid "Show" msgstr "" -#: src/Gtk/AppGtk.vala:175 +#: src/Gtk/AppGtk.vala:162 msgid "Print debug information" msgstr "" -#: src/Gtk/AppGtk.vala:176 +#: src/Gtk/AppGtk.vala:163 msgid "Show all options" msgstr "" @@ -292,20 +314,16 @@ msgstr "" msgid "Refresh" msgstr "" -#: src/Gtk/MainWindow.vala:326 src/Gtk/MainWindow.vala:527 -#: src/Gtk/MainWindow.vala:658 src/Utility/TeeJee.System.vala:146 +#: src/Gtk/MainWindow.vala:326 src/Gtk/MainWindow.vala:537 +#: src/Gtk/MainWindow.vala:668 src/Utility/TeeJee.System.vala:146 msgid "Internet connection is not active" msgstr "" -#: src/Gtk/MainWindow.vala:326 src/Gtk/MainWindow.vala:527 -#: src/Gtk/MainWindow.vala:658 +#: src/Gtk/MainWindow.vala:326 src/Gtk/MainWindow.vala:537 +#: src/Gtk/MainWindow.vala:668 msgid "No Internet" msgstr "" -#: src/Gtk/MainWindow.vala:335 -msgid "Install" -msgstr "" - #: src/Gtk/MainWindow.vala:344 msgid "Multiple Kernels Selected" msgstr "" @@ -330,35 +348,35 @@ msgstr "" msgid "Select the kernels to remove" msgstr "" -#: src/Gtk/MainWindow.vala:395 +#: src/Gtk/MainWindow.vala:400 msgid "Purge" msgstr "" -#: src/Gtk/MainWindow.vala:429 +#: src/Gtk/MainWindow.vala:439 msgid "Changes" msgstr "" -#: src/Gtk/MainWindow.vala:440 src/Gtk/SettingsDialog.vala:52 +#: src/Gtk/MainWindow.vala:450 src/Gtk/SettingsDialog.vala:52 msgid "Settings" msgstr "" -#: src/Gtk/MainWindow.vala:461 +#: src/Gtk/MainWindow.vala:471 msgid "About" msgstr "" -#: src/Gtk/MainWindow.vala:505 +#: src/Gtk/MainWindow.vala:515 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "" -#: src/Gtk/MainWindow.vala:506 +#: src/Gtk/MainWindow.vala:516 msgid "Forked:" msgstr "" -#: src/Gtk/MainWindow.vala:506 +#: src/Gtk/MainWindow.vala:516 msgid "Original:" msgstr "" -#: src/Gtk/MainWindow.vala:546 +#: src/Gtk/MainWindow.vala:556 msgid "Refreshing..." msgstr "" @@ -487,63 +505,63 @@ msgstr "" msgid "Missing Icon" msgstr "" -#: src/Utility/TeeJee.FileSystem.vala:73 src/Utility/TeeJee.FileSystem.vala:76 +#: src/Utility/TeeJee.FileSystem.vala:71 src/Utility/TeeJee.FileSystem.vala:74 msgid "File deleted" msgstr "" -#: src/Utility/TeeJee.FileSystem.vala:82 +#: src/Utility/TeeJee.FileSystem.vala:80 msgid "Failed to delete file" msgstr "" -#: src/Utility/TeeJee.FileSystem.vala:108 +#: src/Utility/TeeJee.FileSystem.vala:99 msgid "Failed to read file" msgstr "" -#: src/Utility/TeeJee.FileSystem.vala:135 -#: src/Utility/TeeJee.FileSystem.vala:138 +#: src/Utility/TeeJee.FileSystem.vala:127 +#: src/Utility/TeeJee.FileSystem.vala:130 msgid "File saved" msgstr "" -#: src/Utility/TeeJee.FileSystem.vala:147 +#: src/Utility/TeeJee.FileSystem.vala:139 msgid "Failed to write file" msgstr "" -#: src/Utility/TeeJee.FileSystem.vala:160 -#: src/Utility/TeeJee.FileSystem.vala:163 +#: src/Utility/TeeJee.FileSystem.vala:152 +#: src/Utility/TeeJee.FileSystem.vala:155 msgid "File copied" msgstr "" -#: src/Utility/TeeJee.FileSystem.vala:171 +#: src/Utility/TeeJee.FileSystem.vala:163 msgid "Failed to copy file" msgstr "" -#: src/Utility/TeeJee.FileSystem.vala:181 +#: src/Utility/TeeJee.FileSystem.vala:173 msgid "File not found" msgstr "" -#: src/Utility/TeeJee.FileSystem.vala:195 -#: src/Utility/TeeJee.FileSystem.vala:198 +#: src/Utility/TeeJee.FileSystem.vala:187 +#: src/Utility/TeeJee.FileSystem.vala:190 msgid "File moved" msgstr "" -#: src/Utility/TeeJee.FileSystem.vala:203 +#: src/Utility/TeeJee.FileSystem.vala:195 msgid "Failed to move file" msgstr "" -#: src/Utility/TeeJee.FileSystem.vala:258 -#: src/Utility/TeeJee.FileSystem.vala:261 +#: src/Utility/TeeJee.FileSystem.vala:252 +#: src/Utility/TeeJee.FileSystem.vala:255 msgid "Created directory" msgstr "" -#: src/Utility/TeeJee.FileSystem.vala:268 +#: src/Utility/TeeJee.FileSystem.vala:262 msgid "Failed to create dir" msgstr "" -#: src/Utility/TeeJee.FileSystem.vala:283 +#: src/Utility/TeeJee.FileSystem.vala:277 msgid "Deleted" msgstr "" -#: src/Utility/TeeJee.FileSystem.vala:284 +#: src/Utility/TeeJee.FileSystem.vala:278 msgid "FAILED deleting" msgstr "" @@ -555,6 +573,6 @@ msgstr "" msgid "W" msgstr "" -#: src/Utility/TeeJee.Process.vala:507 +#: src/Utility/TeeJee.Process.vala:511 msgid "Stopped" msgstr "" diff --git a/po/nl.po b/po/nl.po index e8b84afd..0a7294de 100644 --- a/po/nl.po +++ b/po/nl.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu 2.2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-10 05:43-0400\n" +"POT-Creation-Date: 2020-05-10 21:20-0400\n" "PO-Revision-Date: 2017-04-30 11:50+0200\n" "Last-Translator: Heimen Stoffels \n" "Language-Team: \n" @@ -43,91 +43,91 @@ msgstr "" msgid "Fetching index from kernel.ubuntu.com..." msgstr "Bezig met ophalen van index van kernel.ubuntu.com..." -#: src/Common/LinuxKernel.vala:693 +#: src/Common/LinuxKernel.vala:694 #, fuzzy msgid "Could not find running kernel in list!" msgstr "De vereiste versie kan niet worden gevonden" -#: src/Common/LinuxKernel.vala:699 +#: src/Common/LinuxKernel.vala:700 #, fuzzy msgid "Could not find any kernels to remove" msgstr "Selecteer de te verwijderen kernels" -#: src/Common/LinuxKernel.vala:708 +#: src/Common/LinuxKernel.vala:709 msgid "The following kernels will be removed:" msgstr "" -#: src/Common/LinuxKernel.vala:715 +#: src/Common/LinuxKernel.vala:716 msgid "Continue ?" msgstr "" -#: src/Common/LinuxKernel.vala:743 src/Console/AppConsole.vala:363 +#: src/Common/LinuxKernel.vala:744 src/Console/AppConsole.vala:346 msgid "Latest update" msgstr "" -#: src/Common/LinuxKernel.vala:754 src/Console/AppConsole.vala:370 +#: src/Common/LinuxKernel.vala:755 src/Console/AppConsole.vala:353 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:762 src/Console/AppConsole.vala:375 -#: src/Console/AppConsole.vala:419 +#: src/Common/LinuxKernel.vala:763 src/Console/AppConsole.vala:358 +#: src/Console/AppConsole.vala:408 msgid "No updates found" msgstr "Geen updates gevonden" -#: src/Common/LinuxKernel.vala:772 +#: src/Common/LinuxKernel.vala:773 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "" -#: src/Common/LinuxKernel.vala:1038 +#: src/Common/LinuxKernel.vala:1039 msgid "Packages Available" msgstr "Beschikbare pakketten" -#: src/Common/LinuxKernel.vala:1046 +#: src/Common/LinuxKernel.vala:1047 msgid "Packages Installed" msgstr "Geïnstalleerde pakketten" -#: src/Common/LinuxKernel.vala:1130 +#: src/Common/LinuxKernel.vala:1131 msgid "Available Kernels" msgstr "Beschikbare kernels" -#: src/Common/LinuxKernel.vala:1147 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1148 src/Gtk/MainWindow.vala:186 msgid "Installed" msgstr "Geïnstalleerd" -#: src/Common/LinuxKernel.vala:1147 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1148 src/Gtk/MainWindow.vala:186 msgid "Running" msgstr "Bezig met draaien" -#: src/Common/LinuxKernel.vala:1182 +#: src/Common/LinuxKernel.vala:1183 msgid "Downloading" msgstr "Bezig met downloaden" -#: src/Common/LinuxKernel.vala:1201 +#: src/Common/LinuxKernel.vala:1202 #: src/Utility/Gtk/CustomMessageDialog.vala:148 #: src/Utility/Gtk/CustomMessageDialog.vala:152 msgid "OK" msgstr "Oké" -#: src/Common/LinuxKernel.vala:1207 +#: src/Common/LinuxKernel.vala:1208 msgid "ERROR" msgstr "FOUT" -#: src/Common/LinuxKernel.vala:1221 src/Gtk/MainWindow.vala:653 +#: src/Common/LinuxKernel.vala:1222 src/Gtk/MainWindow.vala:663 msgid "This kernel is already installed." msgstr "Deze kernel is al geïnstalleerd." -#: src/Common/LinuxKernel.vala:1252 +#: src/Common/LinuxKernel.vala:1253 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "De installatie is voltooid. Herstart de computer om de nieuwe kernel te " "gebruiken." -#: src/Common/LinuxKernel.vala:1255 +#: src/Common/LinuxKernel.vala:1256 msgid "Installation completed with errors" msgstr "De installatie is foutloos voltooid" -#: src/Common/LinuxKernel.vala:1271 +#: src/Common/LinuxKernel.vala:1272 msgid "" "Selected kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -136,19 +136,19 @@ msgstr "" "verwijderd.\n" " Installeer een andere kernel voordat u deze verwijdert." -#: src/Common/LinuxKernel.vala:1276 +#: src/Common/LinuxKernel.vala:1277 msgid "Preparing to remove selected kernels" msgstr "Bezig met voorbereiden van verwijderen van geselecteerde kernels" -#: src/Common/LinuxKernel.vala:1308 src/Common/LinuxKernel.vala:1361 +#: src/Common/LinuxKernel.vala:1309 src/Common/LinuxKernel.vala:1362 msgid "Un-install completed" msgstr "Deïnstalleren voltooid" -#: src/Common/LinuxKernel.vala:1311 src/Common/LinuxKernel.vala:1364 +#: src/Common/LinuxKernel.vala:1312 src/Common/LinuxKernel.vala:1365 msgid "Un-install completed with errors" msgstr "Deïnstalleren voltooid, maar met fouten" -#: src/Common/LinuxKernel.vala:1324 +#: src/Common/LinuxKernel.vala:1325 msgid "" "This kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -156,147 +156,171 @@ msgstr "" "Deze kernel is momenteel in gebruik en kan daarom niet worden verwijderd.\n" " Installeer een andere kernel voordat u deze verwijdert." -#: src/Common/Main.vala:107 +#: src/Common/Main.vala:123 msgid "Commands listed below are not available on this system" msgstr "De onderstaande opdrachten zijn niet beschikbaar op dit systeem" -#: src/Common/Main.vala:108 +#: src/Common/Main.vala:124 msgid "Please install required packages and try again" msgstr "Installeer de vereiste pakketten en probeer het opnieuw" -#: src/Common/Package.vala:131 src/Common/Package.vala:193 +#: src/Common/Main.vala:270 +msgid "Called from" +msgstr "" + +#: src/Common/Main.vala:282 +#, fuzzy +msgid "Notifications are disabled" +msgstr "Melding" + +#: src/Common/Package.vala:134 src/Common/Package.vala:198 #, c-format msgid "File not found: %s" msgstr "Bestand niet gevonden: %s" -#: src/Console/AppConsole.vala:81 src/Gtk/AppGtk.vala:171 +#: src/Console/AppConsole.vala:71 src/Gtk/AppGtk.vala:158 msgid "Syntax" msgstr "Syntax" -#: src/Console/AppConsole.vala:83 +#: src/Console/AppConsole.vala:73 msgid "Commands" msgstr "" -#: src/Console/AppConsole.vala:85 +#: src/Console/AppConsole.vala:75 msgid "Check for kernel updates" msgstr "Controleren op kernel-updates" -#: src/Console/AppConsole.vala:86 +#: src/Console/AppConsole.vala:76 #, fuzzy msgid "Check for kernel updates and notify current user" msgstr "Controleren op kernel-updates" -#: src/Console/AppConsole.vala:87 +#: src/Console/AppConsole.vala:77 msgid "List all available mainline kernels" msgstr "Alle beschikbare mainline-kernels weergeven" -#: src/Console/AppConsole.vala:88 +#: src/Console/AppConsole.vala:78 #, fuzzy msgid "List installed kernels" msgstr "Alle beschikbare mainline-kernels weergeven" -#: src/Console/AppConsole.vala:89 +#: src/Console/AppConsole.vala:79 #, fuzzy msgid "Install latest mainline kernel" msgstr "Opgegeven mainline-kernel installeren" -#: src/Console/AppConsole.vala:90 +#: src/Console/AppConsole.vala:80 msgid "Install latest point update for current series" msgstr "" -#: src/Console/AppConsole.vala:91 +#: src/Console/AppConsole.vala:81 msgid "Install specified mainline kernel" msgstr "Opgegeven mainline-kernel installeren" -#: src/Console/AppConsole.vala:92 +#: src/Console/AppConsole.vala:82 #, fuzzy -msgid "Remove specified kernel" -msgstr "Opgegeven mainline-kernel verwijderen" +msgid "Uninstall specified kernels" +msgstr "Opgegeven mainline-kernel installeren" -#: src/Console/AppConsole.vala:93 src/Gtk/MainWindow.vala:396 +#: src/Console/AppConsole.vala:83 src/Gtk/MainWindow.vala:401 msgid "Remove installed kernels older than running kernel" msgstr "" -#: src/Console/AppConsole.vala:94 -msgid "Download packages for specified kernel" +#: src/Console/AppConsole.vala:84 +#, fuzzy +msgid "Download specified kernels" msgstr "Pakketten downloaden voor opgegeven kernel" -#: src/Console/AppConsole.vala:95 src/Console/AppConsole.vala:100 +#: src/Console/AppConsole.vala:85 msgid "Remove files from application cache" msgstr "Bestanden verwijderen uit applicatie-cache" -#: src/Console/AppConsole.vala:96 +#: src/Console/AppConsole.vala:86 #, fuzzy msgid "Show unstable and RC releases" msgstr "Instabiele en RC-uitgaven verbergen" -#: src/Console/AppConsole.vala:98 src/Gtk/AppGtk.vala:173 +#: src/Console/AppConsole.vala:88 src/Gtk/AppGtk.vala:160 msgid "Options" msgstr "Opties" -#: src/Console/AppConsole.vala:101 +#: src/Console/AppConsole.vala:90 msgid "Enable verbose debugging output" msgstr "" -#: src/Console/AppConsole.vala:102 +#: src/Console/AppConsole.vala:91 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "" -#: src/Console/AppConsole.vala:103 +#: src/Console/AppConsole.vala:92 msgid "Override user" msgstr "" -#: src/Console/AppConsole.vala:116 +#: src/Console/AppConsole.vala:95 +msgid "A version string taken from the output of --list" +msgstr "" + +#: src/Console/AppConsole.vala:96 +msgid "" +"One or more version strings (comma-seperated) taken from the output of --list" +msgstr "" + +#: src/Console/AppConsole.vala:103 msgid "Admin access is required for running this application." msgstr "" "U heeft administrator-rechten nodig om deze applicatie te kunnen draaien." -#: src/Console/AppConsole.vala:119 +#: src/Console/AppConsole.vala:104 #, fuzzy msgid "Run the application as admin with pkexec or sudo." msgstr "Draai de applicatie als root of m.b.v. gksu/sudo." -#: src/Console/AppConsole.vala:200 src/Gtk/AppGtk.vala:158 +#: src/Console/AppConsole.vala:183 src/Gtk/AppGtk.vala:145 msgid "Unknown option" msgstr "Onbekende optie" -#: src/Console/AppConsole.vala:202 src/Console/AppConsole.vala:315 -#: src/Console/AppConsole.vala:345 +#: src/Console/AppConsole.vala:185 src/Console/AppConsole.vala:298 +#: src/Console/AppConsole.vala:328 msgid "Run '" msgstr "" -#: src/Console/AppConsole.vala:284 src/Console/AppConsole.vala:324 +#: src/Console/AppConsole.vala:267 src/Console/AppConsole.vala:307 msgid "No kernels specified" msgstr "" -#: src/Console/AppConsole.vala:290 +#: src/Console/AppConsole.vala:273 msgid "Multiple kernels selected for installation. Select only one." msgstr "" "Er zijn meerdere te installeren kernels geselecteerd. Selecteer er slechts " "één." -#: src/Console/AppConsole.vala:311 src/Gtk/MainWindow.vala:100 +#: src/Console/AppConsole.vala:294 src/Gtk/MainWindow.vala:100 msgid "Could not find requested version" msgstr "De vereiste versie kan niet worden gevonden" -#: src/Console/AppConsole.vala:344 +#: src/Console/AppConsole.vala:327 msgid "Command not specified" msgstr "" -#: src/Console/AppConsole.vala:393 src/Console/AppConsole.vala:408 +#: src/Console/AppConsole.vala:380 src/Console/AppConsole.vala:396 #, fuzzy, c-format msgid "Kernel %s Available" msgstr "Beschikbare pakketten" -#: src/Console/OSDNotify.vala:63 +#: src/Console/AppConsole.vala:383 src/Console/AppConsole.vala:399 +#: src/Gtk/MainWindow.vala:335 +msgid "Install" +msgstr "Installeren" + +#: src/Console/OSDNotify.vala:66 msgid "Show" msgstr "" -#: src/Gtk/AppGtk.vala:175 +#: src/Gtk/AppGtk.vala:162 msgid "Print debug information" msgstr "Foutopsporingsinformatie printen" -#: src/Gtk/AppGtk.vala:176 +#: src/Gtk/AppGtk.vala:163 msgid "Show all options" msgstr "Alle opties weergeven" @@ -312,20 +336,16 @@ msgstr "Status" msgid "Refresh" msgstr "Verversen" -#: src/Gtk/MainWindow.vala:326 src/Gtk/MainWindow.vala:527 -#: src/Gtk/MainWindow.vala:658 src/Utility/TeeJee.System.vala:146 +#: src/Gtk/MainWindow.vala:326 src/Gtk/MainWindow.vala:537 +#: src/Gtk/MainWindow.vala:668 src/Utility/TeeJee.System.vala:146 msgid "Internet connection is not active" msgstr "U bent niet verbonden met het internet" -#: src/Gtk/MainWindow.vala:326 src/Gtk/MainWindow.vala:527 -#: src/Gtk/MainWindow.vala:658 +#: src/Gtk/MainWindow.vala:326 src/Gtk/MainWindow.vala:537 +#: src/Gtk/MainWindow.vala:668 msgid "No Internet" msgstr "Geen internetverbinding" -#: src/Gtk/MainWindow.vala:335 -msgid "Install" -msgstr "Installeren" - #: src/Gtk/MainWindow.vala:344 msgid "Multiple Kernels Selected" msgstr "Meerdere kernels geselecteerd" @@ -350,35 +370,35 @@ msgstr "Verwijderen" msgid "Select the kernels to remove" msgstr "Selecteer de te verwijderen kernels" -#: src/Gtk/MainWindow.vala:395 +#: src/Gtk/MainWindow.vala:400 msgid "Purge" msgstr "" -#: src/Gtk/MainWindow.vala:429 +#: src/Gtk/MainWindow.vala:439 msgid "Changes" msgstr "Wijzigingen" -#: src/Gtk/MainWindow.vala:440 src/Gtk/SettingsDialog.vala:52 +#: src/Gtk/MainWindow.vala:450 src/Gtk/SettingsDialog.vala:52 msgid "Settings" msgstr "Instellingen" -#: src/Gtk/MainWindow.vala:461 +#: src/Gtk/MainWindow.vala:471 msgid "About" msgstr "Over" -#: src/Gtk/MainWindow.vala:505 +#: src/Gtk/MainWindow.vala:515 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Kernel-upgradehulpmiddel voor op Ubuntu-gebaseerde distributies" -#: src/Gtk/MainWindow.vala:506 +#: src/Gtk/MainWindow.vala:516 msgid "Forked:" msgstr "" -#: src/Gtk/MainWindow.vala:506 +#: src/Gtk/MainWindow.vala:516 msgid "Original:" msgstr "" -#: src/Gtk/MainWindow.vala:546 +#: src/Gtk/MainWindow.vala:556 msgid "Refreshing..." msgstr "Bezig met verversen..." @@ -510,64 +530,64 @@ msgstr "Fout" msgid "Missing Icon" msgstr "Ontbrekend pictogram" -#: src/Utility/TeeJee.FileSystem.vala:73 src/Utility/TeeJee.FileSystem.vala:76 +#: src/Utility/TeeJee.FileSystem.vala:71 src/Utility/TeeJee.FileSystem.vala:74 msgid "File deleted" msgstr "Bestand verwijderd" -#: src/Utility/TeeJee.FileSystem.vala:82 +#: src/Utility/TeeJee.FileSystem.vala:80 msgid "Failed to delete file" msgstr "Verwijderen van map is mislukt" -#: src/Utility/TeeJee.FileSystem.vala:108 +#: src/Utility/TeeJee.FileSystem.vala:99 msgid "Failed to read file" msgstr "Lezen van bestand is mislukt" -#: src/Utility/TeeJee.FileSystem.vala:135 -#: src/Utility/TeeJee.FileSystem.vala:138 +#: src/Utility/TeeJee.FileSystem.vala:127 +#: src/Utility/TeeJee.FileSystem.vala:130 msgid "File saved" msgstr "Bestand opgeslagen" -#: src/Utility/TeeJee.FileSystem.vala:147 +#: src/Utility/TeeJee.FileSystem.vala:139 msgid "Failed to write file" msgstr "Schrijven naar bestand is mislukt" -#: src/Utility/TeeJee.FileSystem.vala:160 -#: src/Utility/TeeJee.FileSystem.vala:163 +#: src/Utility/TeeJee.FileSystem.vala:152 +#: src/Utility/TeeJee.FileSystem.vala:155 msgid "File copied" msgstr "Bestand gekopieerd" -#: src/Utility/TeeJee.FileSystem.vala:171 +#: src/Utility/TeeJee.FileSystem.vala:163 msgid "Failed to copy file" msgstr "Kopiëren van bestand is mislukt" -#: src/Utility/TeeJee.FileSystem.vala:181 +#: src/Utility/TeeJee.FileSystem.vala:173 msgid "File not found" msgstr "Bestand niet gevonden" -#: src/Utility/TeeJee.FileSystem.vala:195 -#: src/Utility/TeeJee.FileSystem.vala:198 +#: src/Utility/TeeJee.FileSystem.vala:187 +#: src/Utility/TeeJee.FileSystem.vala:190 msgid "File moved" msgstr "Bestand verplaatst" -#: src/Utility/TeeJee.FileSystem.vala:203 +#: src/Utility/TeeJee.FileSystem.vala:195 msgid "Failed to move file" msgstr "Verplaatsen van bestand is mislukt" -#: src/Utility/TeeJee.FileSystem.vala:258 -#: src/Utility/TeeJee.FileSystem.vala:261 +#: src/Utility/TeeJee.FileSystem.vala:252 +#: src/Utility/TeeJee.FileSystem.vala:255 msgid "Created directory" msgstr "Map gecreëerd" -#: src/Utility/TeeJee.FileSystem.vala:268 +#: src/Utility/TeeJee.FileSystem.vala:262 msgid "Failed to create dir" msgstr "Creëren van map is mislukt" -#: src/Utility/TeeJee.FileSystem.vala:283 +#: src/Utility/TeeJee.FileSystem.vala:277 #, fuzzy msgid "Deleted" msgstr "Bestand verwijderd" -#: src/Utility/TeeJee.FileSystem.vala:284 +#: src/Utility/TeeJee.FileSystem.vala:278 msgid "FAILED deleting" msgstr "" @@ -579,6 +599,6 @@ msgstr "E" msgid "W" msgstr "W" -#: src/Utility/TeeJee.Process.vala:507 +#: src/Utility/TeeJee.Process.vala:511 msgid "Stopped" msgstr "Gestopt" diff --git a/po/pl.po b/po/pl.po index 8ef8001d..508e8e49 100644 --- a/po/pl.po +++ b/po/pl.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-10 05:43-0400\n" +"POT-Creation-Date: 2020-05-10 21:20-0400\n" "PO-Revision-Date: 2017-08-12 15:26+0200\n" "Last-Translator: Waldemar Konik \n" "Language-Team: Polish\n" @@ -41,91 +41,91 @@ msgstr "" msgid "Fetching index from kernel.ubuntu.com..." msgstr "Pobieranie indeksu z kernel.ubuntu.com..." -#: src/Common/LinuxKernel.vala:693 +#: src/Common/LinuxKernel.vala:694 #, fuzzy msgid "Could not find running kernel in list!" msgstr "Nie można odnaleźć żądanej wersji" -#: src/Common/LinuxKernel.vala:699 +#: src/Common/LinuxKernel.vala:700 #, fuzzy msgid "Could not find any kernels to remove" msgstr "Wybierz jądro do usunięcia" -#: src/Common/LinuxKernel.vala:708 +#: src/Common/LinuxKernel.vala:709 msgid "The following kernels will be removed:" msgstr "" -#: src/Common/LinuxKernel.vala:715 +#: src/Common/LinuxKernel.vala:716 msgid "Continue ?" msgstr "" -#: src/Common/LinuxKernel.vala:743 src/Console/AppConsole.vala:363 +#: src/Common/LinuxKernel.vala:744 src/Console/AppConsole.vala:346 msgid "Latest update" msgstr "" -#: src/Common/LinuxKernel.vala:754 src/Console/AppConsole.vala:370 +#: src/Common/LinuxKernel.vala:755 src/Console/AppConsole.vala:353 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:762 src/Console/AppConsole.vala:375 -#: src/Console/AppConsole.vala:419 +#: src/Common/LinuxKernel.vala:763 src/Console/AppConsole.vala:358 +#: src/Console/AppConsole.vala:408 msgid "No updates found" msgstr "Nie znaleziono aktualizacji" -#: src/Common/LinuxKernel.vala:772 +#: src/Common/LinuxKernel.vala:773 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "" -#: src/Common/LinuxKernel.vala:1038 +#: src/Common/LinuxKernel.vala:1039 msgid "Packages Available" msgstr "Dostępne pakiety" -#: src/Common/LinuxKernel.vala:1046 +#: src/Common/LinuxKernel.vala:1047 msgid "Packages Installed" msgstr "Pakiety zainstalowane" -#: src/Common/LinuxKernel.vala:1130 +#: src/Common/LinuxKernel.vala:1131 msgid "Available Kernels" msgstr "Dostępne jądra" -#: src/Common/LinuxKernel.vala:1147 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1148 src/Gtk/MainWindow.vala:186 msgid "Installed" msgstr "Zainstalowany" -#: src/Common/LinuxKernel.vala:1147 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1148 src/Gtk/MainWindow.vala:186 msgid "Running" msgstr "Uruchomiony" -#: src/Common/LinuxKernel.vala:1182 +#: src/Common/LinuxKernel.vala:1183 msgid "Downloading" msgstr "Pobieranie" -#: src/Common/LinuxKernel.vala:1201 +#: src/Common/LinuxKernel.vala:1202 #: src/Utility/Gtk/CustomMessageDialog.vala:148 #: src/Utility/Gtk/CustomMessageDialog.vala:152 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:1207 +#: src/Common/LinuxKernel.vala:1208 msgid "ERROR" msgstr "BŁĄD" -#: src/Common/LinuxKernel.vala:1221 src/Gtk/MainWindow.vala:653 +#: src/Common/LinuxKernel.vala:1222 src/Gtk/MainWindow.vala:663 msgid "This kernel is already installed." msgstr "To jądro jest już zainstalowane." -#: src/Common/LinuxKernel.vala:1252 +#: src/Common/LinuxKernel.vala:1253 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "Instalacja zakończona. Aby korzystać z nowego jądra, konieczne jest ponowne " "uruchomienie." -#: src/Common/LinuxKernel.vala:1255 +#: src/Common/LinuxKernel.vala:1256 msgid "Installation completed with errors" msgstr "Instalacja zakończona z błędami" -#: src/Common/LinuxKernel.vala:1271 +#: src/Common/LinuxKernel.vala:1272 msgid "" "Selected kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -133,19 +133,19 @@ msgstr "" "Wybrane jądro aktualnie działa i nie może zostać usunięte.\n" " Zainstaluj inne jądro przed usunięciem tego." -#: src/Common/LinuxKernel.vala:1276 +#: src/Common/LinuxKernel.vala:1277 msgid "Preparing to remove selected kernels" msgstr "Przygotowanie do usunięcia wybranych jąder" -#: src/Common/LinuxKernel.vala:1308 src/Common/LinuxKernel.vala:1361 +#: src/Common/LinuxKernel.vala:1309 src/Common/LinuxKernel.vala:1362 msgid "Un-install completed" msgstr "De-instalacja zakończona" -#: src/Common/LinuxKernel.vala:1311 src/Common/LinuxKernel.vala:1364 +#: src/Common/LinuxKernel.vala:1312 src/Common/LinuxKernel.vala:1365 msgid "Un-install completed with errors" msgstr "De-instalacja zakończona z błędami" -#: src/Common/LinuxKernel.vala:1324 +#: src/Common/LinuxKernel.vala:1325 msgid "" "This kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -153,144 +153,168 @@ msgstr "" "To jądro aktualnie działa i nie może zostać usunięte.\n" " Zainstaluj inne jądro przed usunięciem tego." -#: src/Common/Main.vala:107 +#: src/Common/Main.vala:123 msgid "Commands listed below are not available on this system" msgstr "Poniższe polecenia nie są dostępne na tym systemie" -#: src/Common/Main.vala:108 +#: src/Common/Main.vala:124 msgid "Please install required packages and try again" msgstr "Zainstaluj wymagane pakiety i spróbuj ponownie" -#: src/Common/Package.vala:131 src/Common/Package.vala:193 +#: src/Common/Main.vala:270 +msgid "Called from" +msgstr "" + +#: src/Common/Main.vala:282 +#, fuzzy +msgid "Notifications are disabled" +msgstr "Powiadomienia" + +#: src/Common/Package.vala:134 src/Common/Package.vala:198 #, c-format msgid "File not found: %s" msgstr "Nie odnaleziono pliku: %s" -#: src/Console/AppConsole.vala:81 src/Gtk/AppGtk.vala:171 +#: src/Console/AppConsole.vala:71 src/Gtk/AppGtk.vala:158 msgid "Syntax" msgstr "Składnia" -#: src/Console/AppConsole.vala:83 +#: src/Console/AppConsole.vala:73 msgid "Commands" msgstr "" -#: src/Console/AppConsole.vala:85 +#: src/Console/AppConsole.vala:75 msgid "Check for kernel updates" msgstr "Sprawdź nowe wersje jądra" -#: src/Console/AppConsole.vala:86 +#: src/Console/AppConsole.vala:76 #, fuzzy msgid "Check for kernel updates and notify current user" msgstr "Sprawdź nowe wersje jądra" -#: src/Console/AppConsole.vala:87 +#: src/Console/AppConsole.vala:77 msgid "List all available mainline kernels" msgstr "Pokaż wszystkie dostępne jądra" -#: src/Console/AppConsole.vala:88 +#: src/Console/AppConsole.vala:78 #, fuzzy msgid "List installed kernels" msgstr "Pokaż wszystkie dostępne jądra" -#: src/Console/AppConsole.vala:89 +#: src/Console/AppConsole.vala:79 #, fuzzy msgid "Install latest mainline kernel" msgstr "Zainstaluj wybrane jądro" -#: src/Console/AppConsole.vala:90 +#: src/Console/AppConsole.vala:80 msgid "Install latest point update for current series" msgstr "" -#: src/Console/AppConsole.vala:91 +#: src/Console/AppConsole.vala:81 msgid "Install specified mainline kernel" msgstr "Zainstaluj wybrane jądro" -#: src/Console/AppConsole.vala:92 +#: src/Console/AppConsole.vala:82 #, fuzzy -msgid "Remove specified kernel" -msgstr "Usuń wybrane jądro" +msgid "Uninstall specified kernels" +msgstr "Zainstaluj wybrane jądro" -#: src/Console/AppConsole.vala:93 src/Gtk/MainWindow.vala:396 +#: src/Console/AppConsole.vala:83 src/Gtk/MainWindow.vala:401 msgid "Remove installed kernels older than running kernel" msgstr "" -#: src/Console/AppConsole.vala:94 -msgid "Download packages for specified kernel" +#: src/Console/AppConsole.vala:84 +#, fuzzy +msgid "Download specified kernels" msgstr "Pobierz pakiety dla wybranego jądra" -#: src/Console/AppConsole.vala:95 src/Console/AppConsole.vala:100 +#: src/Console/AppConsole.vala:85 msgid "Remove files from application cache" msgstr "Usuń pliki z pamięci podręcznej aplikacji" -#: src/Console/AppConsole.vala:96 +#: src/Console/AppConsole.vala:86 #, fuzzy msgid "Show unstable and RC releases" msgstr "Ukryj wydania niestabilne i RC" -#: src/Console/AppConsole.vala:98 src/Gtk/AppGtk.vala:173 +#: src/Console/AppConsole.vala:88 src/Gtk/AppGtk.vala:160 msgid "Options" msgstr "Opcje" -#: src/Console/AppConsole.vala:101 +#: src/Console/AppConsole.vala:90 msgid "Enable verbose debugging output" msgstr "" -#: src/Console/AppConsole.vala:102 +#: src/Console/AppConsole.vala:91 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "" -#: src/Console/AppConsole.vala:103 +#: src/Console/AppConsole.vala:92 msgid "Override user" msgstr "" -#: src/Console/AppConsole.vala:116 +#: src/Console/AppConsole.vala:95 +msgid "A version string taken from the output of --list" +msgstr "" + +#: src/Console/AppConsole.vala:96 +msgid "" +"One or more version strings (comma-seperated) taken from the output of --list" +msgstr "" + +#: src/Console/AppConsole.vala:103 msgid "Admin access is required for running this application." msgstr "Aby uruchomić tę aplikację niezbędne są prawa administratora." -#: src/Console/AppConsole.vala:119 +#: src/Console/AppConsole.vala:104 #, fuzzy msgid "Run the application as admin with pkexec or sudo." msgstr "Uruchom aplikację jako root albo użyj gksu/sudo." -#: src/Console/AppConsole.vala:200 src/Gtk/AppGtk.vala:158 +#: src/Console/AppConsole.vala:183 src/Gtk/AppGtk.vala:145 msgid "Unknown option" msgstr "Nieznana opcja" -#: src/Console/AppConsole.vala:202 src/Console/AppConsole.vala:315 -#: src/Console/AppConsole.vala:345 +#: src/Console/AppConsole.vala:185 src/Console/AppConsole.vala:298 +#: src/Console/AppConsole.vala:328 msgid "Run '" msgstr "" -#: src/Console/AppConsole.vala:284 src/Console/AppConsole.vala:324 +#: src/Console/AppConsole.vala:267 src/Console/AppConsole.vala:307 msgid "No kernels specified" msgstr "" -#: src/Console/AppConsole.vala:290 +#: src/Console/AppConsole.vala:273 msgid "Multiple kernels selected for installation. Select only one." msgstr "Wybrano kilka jąder do instalacji. Wybierz tylko jedno." -#: src/Console/AppConsole.vala:311 src/Gtk/MainWindow.vala:100 +#: src/Console/AppConsole.vala:294 src/Gtk/MainWindow.vala:100 msgid "Could not find requested version" msgstr "Nie można odnaleźć żądanej wersji" -#: src/Console/AppConsole.vala:344 +#: src/Console/AppConsole.vala:327 msgid "Command not specified" msgstr "" -#: src/Console/AppConsole.vala:393 src/Console/AppConsole.vala:408 +#: src/Console/AppConsole.vala:380 src/Console/AppConsole.vala:396 #, fuzzy, c-format msgid "Kernel %s Available" msgstr "Dostępne pakiety" -#: src/Console/OSDNotify.vala:63 +#: src/Console/AppConsole.vala:383 src/Console/AppConsole.vala:399 +#: src/Gtk/MainWindow.vala:335 +msgid "Install" +msgstr "Zainstaluj" + +#: src/Console/OSDNotify.vala:66 msgid "Show" msgstr "" -#: src/Gtk/AppGtk.vala:175 +#: src/Gtk/AppGtk.vala:162 msgid "Print debug information" msgstr "Wypisz informacje debugujące" -#: src/Gtk/AppGtk.vala:176 +#: src/Gtk/AppGtk.vala:163 msgid "Show all options" msgstr "Pokaż wszystkie opcje" @@ -306,20 +330,16 @@ msgstr "Status" msgid "Refresh" msgstr "Odśwież" -#: src/Gtk/MainWindow.vala:326 src/Gtk/MainWindow.vala:527 -#: src/Gtk/MainWindow.vala:658 src/Utility/TeeJee.System.vala:146 +#: src/Gtk/MainWindow.vala:326 src/Gtk/MainWindow.vala:537 +#: src/Gtk/MainWindow.vala:668 src/Utility/TeeJee.System.vala:146 msgid "Internet connection is not active" msgstr "Brak połączenia z internetem" -#: src/Gtk/MainWindow.vala:326 src/Gtk/MainWindow.vala:527 -#: src/Gtk/MainWindow.vala:658 +#: src/Gtk/MainWindow.vala:326 src/Gtk/MainWindow.vala:537 +#: src/Gtk/MainWindow.vala:668 msgid "No Internet" msgstr "Brak internetu" -#: src/Gtk/MainWindow.vala:335 -msgid "Install" -msgstr "Zainstaluj" - #: src/Gtk/MainWindow.vala:344 msgid "Multiple Kernels Selected" msgstr "Wybrano kilka jąder" @@ -344,35 +364,35 @@ msgstr "Usuń" msgid "Select the kernels to remove" msgstr "Wybierz jądro do usunięcia" -#: src/Gtk/MainWindow.vala:395 +#: src/Gtk/MainWindow.vala:400 msgid "Purge" msgstr "" -#: src/Gtk/MainWindow.vala:429 +#: src/Gtk/MainWindow.vala:439 msgid "Changes" msgstr "Zmiany" -#: src/Gtk/MainWindow.vala:440 src/Gtk/SettingsDialog.vala:52 +#: src/Gtk/MainWindow.vala:450 src/Gtk/SettingsDialog.vala:52 msgid "Settings" msgstr "Ustawienia" -#: src/Gtk/MainWindow.vala:461 +#: src/Gtk/MainWindow.vala:471 msgid "About" msgstr "O programie" -#: src/Gtk/MainWindow.vala:505 +#: src/Gtk/MainWindow.vala:515 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Narzędzie uaktualniania jądra dla dystrybucji z rodziny Ubuntu" -#: src/Gtk/MainWindow.vala:506 +#: src/Gtk/MainWindow.vala:516 msgid "Forked:" msgstr "" -#: src/Gtk/MainWindow.vala:506 +#: src/Gtk/MainWindow.vala:516 msgid "Original:" msgstr "" -#: src/Gtk/MainWindow.vala:546 +#: src/Gtk/MainWindow.vala:556 msgid "Refreshing..." msgstr "Odświeżam..." @@ -504,64 +524,64 @@ msgstr "Błąd" msgid "Missing Icon" msgstr "Brakująca ikona" -#: src/Utility/TeeJee.FileSystem.vala:73 src/Utility/TeeJee.FileSystem.vala:76 +#: src/Utility/TeeJee.FileSystem.vala:71 src/Utility/TeeJee.FileSystem.vala:74 msgid "File deleted" msgstr "Plik usunięty" -#: src/Utility/TeeJee.FileSystem.vala:82 +#: src/Utility/TeeJee.FileSystem.vala:80 msgid "Failed to delete file" msgstr "Nie udało się usunąć pliku" -#: src/Utility/TeeJee.FileSystem.vala:108 +#: src/Utility/TeeJee.FileSystem.vala:99 msgid "Failed to read file" msgstr "Nie udało się odczytać pliku" -#: src/Utility/TeeJee.FileSystem.vala:135 -#: src/Utility/TeeJee.FileSystem.vala:138 +#: src/Utility/TeeJee.FileSystem.vala:127 +#: src/Utility/TeeJee.FileSystem.vala:130 msgid "File saved" msgstr "Plik zapisany" -#: src/Utility/TeeJee.FileSystem.vala:147 +#: src/Utility/TeeJee.FileSystem.vala:139 msgid "Failed to write file" msgstr "Nie udało się zapisać pliku" -#: src/Utility/TeeJee.FileSystem.vala:160 -#: src/Utility/TeeJee.FileSystem.vala:163 +#: src/Utility/TeeJee.FileSystem.vala:152 +#: src/Utility/TeeJee.FileSystem.vala:155 msgid "File copied" msgstr "Plik skopiowany" -#: src/Utility/TeeJee.FileSystem.vala:171 +#: src/Utility/TeeJee.FileSystem.vala:163 msgid "Failed to copy file" msgstr "Nie udało się skopiować pliku" -#: src/Utility/TeeJee.FileSystem.vala:181 +#: src/Utility/TeeJee.FileSystem.vala:173 msgid "File not found" msgstr "Nie odnaleziono pliku" -#: src/Utility/TeeJee.FileSystem.vala:195 -#: src/Utility/TeeJee.FileSystem.vala:198 +#: src/Utility/TeeJee.FileSystem.vala:187 +#: src/Utility/TeeJee.FileSystem.vala:190 msgid "File moved" msgstr "Plik przeniesiony" -#: src/Utility/TeeJee.FileSystem.vala:203 +#: src/Utility/TeeJee.FileSystem.vala:195 msgid "Failed to move file" msgstr "Nie udało się przenieść pliku" -#: src/Utility/TeeJee.FileSystem.vala:258 -#: src/Utility/TeeJee.FileSystem.vala:261 +#: src/Utility/TeeJee.FileSystem.vala:252 +#: src/Utility/TeeJee.FileSystem.vala:255 msgid "Created directory" msgstr "Utworzono katalog" -#: src/Utility/TeeJee.FileSystem.vala:268 +#: src/Utility/TeeJee.FileSystem.vala:262 msgid "Failed to create dir" msgstr "Nie udało się utworzyć katalogu" -#: src/Utility/TeeJee.FileSystem.vala:283 +#: src/Utility/TeeJee.FileSystem.vala:277 #, fuzzy msgid "Deleted" msgstr "Plik usunięty" -#: src/Utility/TeeJee.FileSystem.vala:284 +#: src/Utility/TeeJee.FileSystem.vala:278 msgid "FAILED deleting" msgstr "" @@ -573,6 +593,6 @@ msgstr "E" msgid "W" msgstr "W" -#: src/Utility/TeeJee.Process.vala:507 +#: src/Utility/TeeJee.Process.vala:511 msgid "Stopped" msgstr "Zatrzymany" diff --git a/po/ru.po b/po/ru.po index 4d9d1379..2c6afaa1 100644 --- a/po/ru.po +++ b/po/ru.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-10 05:43-0400\n" +"POT-Creation-Date: 2020-05-10 21:20-0400\n" "PO-Revision-Date: 2016-12-13 16:46+0300\n" "Last-Translator: Faust3000 \n" "Language-Team: Russian \n" @@ -43,93 +43,93 @@ msgstr "" msgid "Fetching index from kernel.ubuntu.com..." msgstr "Получение сведений с kernel.ubuntu.com..." -#: src/Common/LinuxKernel.vala:693 +#: src/Common/LinuxKernel.vala:694 #, fuzzy msgid "Could not find running kernel in list!" msgstr "Не удалось найти запрошенную версию" -#: src/Common/LinuxKernel.vala:699 +#: src/Common/LinuxKernel.vala:700 #, fuzzy msgid "Could not find any kernels to remove" msgstr "Не удалось найти запрошенную версию" -#: src/Common/LinuxKernel.vala:708 +#: src/Common/LinuxKernel.vala:709 msgid "The following kernels will be removed:" msgstr "" -#: src/Common/LinuxKernel.vala:715 +#: src/Common/LinuxKernel.vala:716 msgid "Continue ?" msgstr "" -#: src/Common/LinuxKernel.vala:743 src/Console/AppConsole.vala:363 +#: src/Common/LinuxKernel.vala:744 src/Console/AppConsole.vala:346 msgid "Latest update" msgstr "" -#: src/Common/LinuxKernel.vala:754 src/Console/AppConsole.vala:370 +#: src/Common/LinuxKernel.vala:755 src/Console/AppConsole.vala:353 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:762 src/Console/AppConsole.vala:375 -#: src/Console/AppConsole.vala:419 +#: src/Common/LinuxKernel.vala:763 src/Console/AppConsole.vala:358 +#: src/Console/AppConsole.vala:408 msgid "No updates found" msgstr "Обновлений не найдено" -#: src/Common/LinuxKernel.vala:772 +#: src/Common/LinuxKernel.vala:773 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "" -#: src/Common/LinuxKernel.vala:1038 +#: src/Common/LinuxKernel.vala:1039 #, fuzzy msgid "Packages Available" msgstr "Установлено" -#: src/Common/LinuxKernel.vala:1046 +#: src/Common/LinuxKernel.vala:1047 #, fuzzy msgid "Packages Installed" msgstr "Установлено" -#: src/Common/LinuxKernel.vala:1130 +#: src/Common/LinuxKernel.vala:1131 msgid "Available Kernels" msgstr "Доступные ядра" -#: src/Common/LinuxKernel.vala:1147 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1148 src/Gtk/MainWindow.vala:186 msgid "Installed" msgstr "Установлено" -#: src/Common/LinuxKernel.vala:1147 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1148 src/Gtk/MainWindow.vala:186 msgid "Running" msgstr "Используется" -#: src/Common/LinuxKernel.vala:1182 +#: src/Common/LinuxKernel.vala:1183 msgid "Downloading" msgstr "Загрузка" -#: src/Common/LinuxKernel.vala:1201 +#: src/Common/LinuxKernel.vala:1202 #: src/Utility/Gtk/CustomMessageDialog.vala:148 #: src/Utility/Gtk/CustomMessageDialog.vala:152 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:1207 +#: src/Common/LinuxKernel.vala:1208 msgid "ERROR" msgstr "ОШИБКА" -#: src/Common/LinuxKernel.vala:1221 src/Gtk/MainWindow.vala:653 +#: src/Common/LinuxKernel.vala:1222 src/Gtk/MainWindow.vala:663 msgid "This kernel is already installed." msgstr "Это ядро уже установлено." -#: src/Common/LinuxKernel.vala:1252 +#: src/Common/LinuxKernel.vala:1253 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "Установка завершена. Обязательно выполните перезагрузку, чтобы использовать " "новое ядро." -#: src/Common/LinuxKernel.vala:1255 +#: src/Common/LinuxKernel.vala:1256 msgid "Installation completed with errors" msgstr "Установка завершена с ошибками" -#: src/Common/LinuxKernel.vala:1271 +#: src/Common/LinuxKernel.vala:1272 #, fuzzy msgid "" "Selected kernel is currently running and cannot be removed.\n" @@ -138,19 +138,19 @@ msgstr "" "Это ядро в настоящий момент работает и не может быть удалено.\n" " Установите другое ядро, прежде чем удалять его." -#: src/Common/LinuxKernel.vala:1276 +#: src/Common/LinuxKernel.vala:1277 msgid "Preparing to remove selected kernels" msgstr "" -#: src/Common/LinuxKernel.vala:1308 src/Common/LinuxKernel.vala:1361 +#: src/Common/LinuxKernel.vala:1309 src/Common/LinuxKernel.vala:1362 msgid "Un-install completed" msgstr "Удаление завершено" -#: src/Common/LinuxKernel.vala:1311 src/Common/LinuxKernel.vala:1364 +#: src/Common/LinuxKernel.vala:1312 src/Common/LinuxKernel.vala:1365 msgid "Un-install completed with errors" msgstr "Удаление завершено с ошибками" -#: src/Common/LinuxKernel.vala:1324 +#: src/Common/LinuxKernel.vala:1325 msgid "" "This kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -158,144 +158,168 @@ msgstr "" "Это ядро в настоящий момент работает и не может быть удалено.\n" " Установите другое ядро, прежде чем удалять его." -#: src/Common/Main.vala:107 +#: src/Common/Main.vala:123 msgid "Commands listed below are not available on this system" msgstr "Команды перечисленные ниже недоступны на этой системе" -#: src/Common/Main.vala:108 +#: src/Common/Main.vala:124 msgid "Please install required packages and try again" msgstr "Установить необходимые пакеты и попробуйте снова" -#: src/Common/Package.vala:131 src/Common/Package.vala:193 +#: src/Common/Main.vala:270 +msgid "Called from" +msgstr "" + +#: src/Common/Main.vala:282 +#, fuzzy +msgid "Notifications are disabled" +msgstr "Уведомления" + +#: src/Common/Package.vala:134 src/Common/Package.vala:198 #, c-format msgid "File not found: %s" msgstr "Файл не найден: %s" -#: src/Console/AppConsole.vala:81 src/Gtk/AppGtk.vala:171 +#: src/Console/AppConsole.vala:71 src/Gtk/AppGtk.vala:158 msgid "Syntax" msgstr "Синтаксис" -#: src/Console/AppConsole.vala:83 +#: src/Console/AppConsole.vala:73 msgid "Commands" msgstr "" -#: src/Console/AppConsole.vala:85 +#: src/Console/AppConsole.vala:75 msgid "Check for kernel updates" msgstr "Проверить обновления ядра" -#: src/Console/AppConsole.vala:86 +#: src/Console/AppConsole.vala:76 #, fuzzy msgid "Check for kernel updates and notify current user" msgstr "Проверить обновления ядра" -#: src/Console/AppConsole.vala:87 +#: src/Console/AppConsole.vala:77 msgid "List all available mainline kernels" msgstr "Список всех доступных основных ядер" -#: src/Console/AppConsole.vala:88 +#: src/Console/AppConsole.vala:78 #, fuzzy msgid "List installed kernels" msgstr "Список всех доступных основных ядер" -#: src/Console/AppConsole.vala:89 +#: src/Console/AppConsole.vala:79 #, fuzzy msgid "Install latest mainline kernel" msgstr "Установить указанную ветку ядра" -#: src/Console/AppConsole.vala:90 +#: src/Console/AppConsole.vala:80 msgid "Install latest point update for current series" msgstr "" -#: src/Console/AppConsole.vala:91 +#: src/Console/AppConsole.vala:81 msgid "Install specified mainline kernel" msgstr "Установить указанную ветку ядра" -#: src/Console/AppConsole.vala:92 +#: src/Console/AppConsole.vala:82 #, fuzzy -msgid "Remove specified kernel" -msgstr "Удалить указанную ветку ядра" +msgid "Uninstall specified kernels" +msgstr "Установить указанную ветку ядра" -#: src/Console/AppConsole.vala:93 src/Gtk/MainWindow.vala:396 +#: src/Console/AppConsole.vala:83 src/Gtk/MainWindow.vala:401 msgid "Remove installed kernels older than running kernel" msgstr "Удалить более старшие установленные ядра, чем используемое" -#: src/Console/AppConsole.vala:94 -msgid "Download packages for specified kernel" +#: src/Console/AppConsole.vala:84 +#, fuzzy +msgid "Download specified kernels" msgstr "Скачать пакеты для указанного ядра" -#: src/Console/AppConsole.vala:95 src/Console/AppConsole.vala:100 +#: src/Console/AppConsole.vala:85 msgid "Remove files from application cache" msgstr "Удалить файлы из кэша программы" -#: src/Console/AppConsole.vala:96 +#: src/Console/AppConsole.vala:86 #, fuzzy msgid "Show unstable and RC releases" msgstr "Скрыть нестабильные и релиз-кандидат версии" -#: src/Console/AppConsole.vala:98 src/Gtk/AppGtk.vala:173 +#: src/Console/AppConsole.vala:88 src/Gtk/AppGtk.vala:160 msgid "Options" msgstr "Параметры" -#: src/Console/AppConsole.vala:101 +#: src/Console/AppConsole.vala:90 msgid "Enable verbose debugging output" msgstr "" -#: src/Console/AppConsole.vala:102 +#: src/Console/AppConsole.vala:91 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "" -#: src/Console/AppConsole.vala:103 +#: src/Console/AppConsole.vala:92 msgid "Override user" msgstr "" -#: src/Console/AppConsole.vala:116 +#: src/Console/AppConsole.vala:95 +msgid "A version string taken from the output of --list" +msgstr "" + +#: src/Console/AppConsole.vala:96 +msgid "" +"One or more version strings (comma-seperated) taken from the output of --list" +msgstr "" + +#: src/Console/AppConsole.vala:103 msgid "Admin access is required for running this application." msgstr "Для запуска программы требуются права администратора." -#: src/Console/AppConsole.vala:119 +#: src/Console/AppConsole.vala:104 #, fuzzy msgid "Run the application as admin with pkexec or sudo." msgstr "Запустите программу с правами Root или используйте gksu/sudo." -#: src/Console/AppConsole.vala:200 src/Gtk/AppGtk.vala:158 +#: src/Console/AppConsole.vala:183 src/Gtk/AppGtk.vala:145 msgid "Unknown option" msgstr "Неизвестный параметр" -#: src/Console/AppConsole.vala:202 src/Console/AppConsole.vala:315 -#: src/Console/AppConsole.vala:345 +#: src/Console/AppConsole.vala:185 src/Console/AppConsole.vala:298 +#: src/Console/AppConsole.vala:328 msgid "Run '" msgstr "" -#: src/Console/AppConsole.vala:284 src/Console/AppConsole.vala:324 +#: src/Console/AppConsole.vala:267 src/Console/AppConsole.vala:307 msgid "No kernels specified" msgstr "" -#: src/Console/AppConsole.vala:290 +#: src/Console/AppConsole.vala:273 msgid "Multiple kernels selected for installation. Select only one." msgstr "" -#: src/Console/AppConsole.vala:311 src/Gtk/MainWindow.vala:100 +#: src/Console/AppConsole.vala:294 src/Gtk/MainWindow.vala:100 msgid "Could not find requested version" msgstr "Не удалось найти запрошенную версию" -#: src/Console/AppConsole.vala:344 +#: src/Console/AppConsole.vala:327 msgid "Command not specified" msgstr "" -#: src/Console/AppConsole.vala:393 src/Console/AppConsole.vala:408 +#: src/Console/AppConsole.vala:380 src/Console/AppConsole.vala:396 #, fuzzy, c-format msgid "Kernel %s Available" msgstr "Установлено" -#: src/Console/OSDNotify.vala:63 +#: src/Console/AppConsole.vala:383 src/Console/AppConsole.vala:399 +#: src/Gtk/MainWindow.vala:335 +msgid "Install" +msgstr "Установить" + +#: src/Console/OSDNotify.vala:66 msgid "Show" msgstr "" -#: src/Gtk/AppGtk.vala:175 +#: src/Gtk/AppGtk.vala:162 msgid "Print debug information" msgstr "Распечатать отладочную информацию" -#: src/Gtk/AppGtk.vala:176 +#: src/Gtk/AppGtk.vala:163 msgid "Show all options" msgstr "Показать все параметры" @@ -311,20 +335,16 @@ msgstr "Состояние" msgid "Refresh" msgstr "Обновить" -#: src/Gtk/MainWindow.vala:326 src/Gtk/MainWindow.vala:527 -#: src/Gtk/MainWindow.vala:658 src/Utility/TeeJee.System.vala:146 +#: src/Gtk/MainWindow.vala:326 src/Gtk/MainWindow.vala:537 +#: src/Gtk/MainWindow.vala:668 src/Utility/TeeJee.System.vala:146 msgid "Internet connection is not active" msgstr "Интернет соединение не активно" -#: src/Gtk/MainWindow.vala:326 src/Gtk/MainWindow.vala:527 -#: src/Gtk/MainWindow.vala:658 +#: src/Gtk/MainWindow.vala:326 src/Gtk/MainWindow.vala:537 +#: src/Gtk/MainWindow.vala:668 msgid "No Internet" msgstr "" -#: src/Gtk/MainWindow.vala:335 -msgid "Install" -msgstr "Установить" - #: src/Gtk/MainWindow.vala:344 msgid "Multiple Kernels Selected" msgstr "" @@ -349,35 +369,35 @@ msgstr "Удалить" msgid "Select the kernels to remove" msgstr "" -#: src/Gtk/MainWindow.vala:395 +#: src/Gtk/MainWindow.vala:400 msgid "Purge" msgstr "Очистить" -#: src/Gtk/MainWindow.vala:429 +#: src/Gtk/MainWindow.vala:439 msgid "Changes" msgstr "Изменения" -#: src/Gtk/MainWindow.vala:440 src/Gtk/SettingsDialog.vala:52 +#: src/Gtk/MainWindow.vala:450 src/Gtk/SettingsDialog.vala:52 msgid "Settings" msgstr "Настройки" -#: src/Gtk/MainWindow.vala:461 +#: src/Gtk/MainWindow.vala:471 msgid "About" msgstr "О программе" -#: src/Gtk/MainWindow.vala:505 +#: src/Gtk/MainWindow.vala:515 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Программа обновления ядра для дистрибутивов на базе Ubuntu" -#: src/Gtk/MainWindow.vala:506 +#: src/Gtk/MainWindow.vala:516 msgid "Forked:" msgstr "" -#: src/Gtk/MainWindow.vala:506 +#: src/Gtk/MainWindow.vala:516 msgid "Original:" msgstr "" -#: src/Gtk/MainWindow.vala:546 +#: src/Gtk/MainWindow.vala:556 msgid "Refreshing..." msgstr "Обновление..." @@ -509,69 +529,69 @@ msgstr "Ошибка" msgid "Missing Icon" msgstr "Значок отсутствует" -#: src/Utility/TeeJee.FileSystem.vala:73 src/Utility/TeeJee.FileSystem.vala:76 +#: src/Utility/TeeJee.FileSystem.vala:71 src/Utility/TeeJee.FileSystem.vala:74 #, fuzzy msgid "File deleted" msgstr "Не удалось удалить файл" -#: src/Utility/TeeJee.FileSystem.vala:82 +#: src/Utility/TeeJee.FileSystem.vala:80 msgid "Failed to delete file" msgstr "Не удалось удалить файл" -#: src/Utility/TeeJee.FileSystem.vala:108 +#: src/Utility/TeeJee.FileSystem.vala:99 msgid "Failed to read file" msgstr "Не удалось прочитать файл" -#: src/Utility/TeeJee.FileSystem.vala:135 -#: src/Utility/TeeJee.FileSystem.vala:138 +#: src/Utility/TeeJee.FileSystem.vala:127 +#: src/Utility/TeeJee.FileSystem.vala:130 #, fuzzy msgid "File saved" msgstr "Файловая система" -#: src/Utility/TeeJee.FileSystem.vala:147 +#: src/Utility/TeeJee.FileSystem.vala:139 msgid "Failed to write file" msgstr "Не удалось записать файл" -#: src/Utility/TeeJee.FileSystem.vala:160 -#: src/Utility/TeeJee.FileSystem.vala:163 +#: src/Utility/TeeJee.FileSystem.vala:152 +#: src/Utility/TeeJee.FileSystem.vala:155 #, fuzzy msgid "File copied" msgstr "Не удалось скопировать файл" -#: src/Utility/TeeJee.FileSystem.vala:171 +#: src/Utility/TeeJee.FileSystem.vala:163 msgid "Failed to copy file" msgstr "Не удалось скопировать файл" -#: src/Utility/TeeJee.FileSystem.vala:181 +#: src/Utility/TeeJee.FileSystem.vala:173 msgid "File not found" msgstr "Файл не найден" -#: src/Utility/TeeJee.FileSystem.vala:195 -#: src/Utility/TeeJee.FileSystem.vala:198 +#: src/Utility/TeeJee.FileSystem.vala:187 +#: src/Utility/TeeJee.FileSystem.vala:190 #, fuzzy msgid "File moved" msgstr "Удалить" -#: src/Utility/TeeJee.FileSystem.vala:203 +#: src/Utility/TeeJee.FileSystem.vala:195 msgid "Failed to move file" msgstr "Не удалось переместить файл" -#: src/Utility/TeeJee.FileSystem.vala:258 -#: src/Utility/TeeJee.FileSystem.vala:261 +#: src/Utility/TeeJee.FileSystem.vala:252 +#: src/Utility/TeeJee.FileSystem.vala:255 #, fuzzy msgid "Created directory" msgstr "Используемая кэш-папка" -#: src/Utility/TeeJee.FileSystem.vala:268 +#: src/Utility/TeeJee.FileSystem.vala:262 msgid "Failed to create dir" msgstr "Не удалось создать папку" -#: src/Utility/TeeJee.FileSystem.vala:283 +#: src/Utility/TeeJee.FileSystem.vala:277 #, fuzzy msgid "Deleted" msgstr "Не удалось удалить файл" -#: src/Utility/TeeJee.FileSystem.vala:284 +#: src/Utility/TeeJee.FileSystem.vala:278 msgid "FAILED deleting" msgstr "" @@ -583,6 +603,6 @@ msgstr "E" msgid "W" msgstr "W" -#: src/Utility/TeeJee.Process.vala:507 +#: src/Utility/TeeJee.Process.vala:511 msgid "Stopped" msgstr "Остановлено" diff --git a/po/sv.po b/po/sv.po index 8039a803..e343b911 100644 --- a/po/sv.po +++ b/po/sv.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu 2.2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-10 05:43-0400\n" +"POT-Creation-Date: 2020-05-10 21:20-0400\n" "PO-Revision-Date: 2018-01-13 16:56+0100\n" "Last-Translator: Åke Engelbrektson \n" "Language-Team: Svenska Språkfiler \n" @@ -44,89 +44,89 @@ msgstr "Hämtar index för" msgid "Fetching index from kernel.ubuntu.com..." msgstr "Hämtar index från kernel.ubuntu.com ..." -#: src/Common/LinuxKernel.vala:693 +#: src/Common/LinuxKernel.vala:694 #, fuzzy msgid "Could not find running kernel in list!" msgstr "Kunde inte hitta efterfrågad version" -#: src/Common/LinuxKernel.vala:699 +#: src/Common/LinuxKernel.vala:700 #, fuzzy msgid "Could not find any kernels to remove" msgstr "Välj kärnor för borttagning" -#: src/Common/LinuxKernel.vala:708 +#: src/Common/LinuxKernel.vala:709 msgid "The following kernels will be removed:" msgstr "" -#: src/Common/LinuxKernel.vala:715 +#: src/Common/LinuxKernel.vala:716 msgid "Continue ?" msgstr "" -#: src/Common/LinuxKernel.vala:743 src/Console/AppConsole.vala:363 +#: src/Common/LinuxKernel.vala:744 src/Console/AppConsole.vala:346 msgid "Latest update" msgstr "" -#: src/Common/LinuxKernel.vala:754 src/Console/AppConsole.vala:370 +#: src/Common/LinuxKernel.vala:755 src/Console/AppConsole.vala:353 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:762 src/Console/AppConsole.vala:375 -#: src/Console/AppConsole.vala:419 +#: src/Common/LinuxKernel.vala:763 src/Console/AppConsole.vala:358 +#: src/Console/AppConsole.vala:408 msgid "No updates found" msgstr "Inga uppdateringar hittades" -#: src/Common/LinuxKernel.vala:772 +#: src/Common/LinuxKernel.vala:773 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "" -#: src/Common/LinuxKernel.vala:1038 +#: src/Common/LinuxKernel.vala:1039 msgid "Packages Available" msgstr "Tillgängliga paket" -#: src/Common/LinuxKernel.vala:1046 +#: src/Common/LinuxKernel.vala:1047 msgid "Packages Installed" msgstr "Installerade paket" -#: src/Common/LinuxKernel.vala:1130 +#: src/Common/LinuxKernel.vala:1131 msgid "Available Kernels" msgstr "Tillgängliga kärnor" -#: src/Common/LinuxKernel.vala:1147 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1148 src/Gtk/MainWindow.vala:186 msgid "Installed" msgstr "Installerad" -#: src/Common/LinuxKernel.vala:1147 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1148 src/Gtk/MainWindow.vala:186 msgid "Running" msgstr "Körs" -#: src/Common/LinuxKernel.vala:1182 +#: src/Common/LinuxKernel.vala:1183 msgid "Downloading" msgstr "Laddar ner" -#: src/Common/LinuxKernel.vala:1201 +#: src/Common/LinuxKernel.vala:1202 #: src/Utility/Gtk/CustomMessageDialog.vala:148 #: src/Utility/Gtk/CustomMessageDialog.vala:152 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:1207 +#: src/Common/LinuxKernel.vala:1208 msgid "ERROR" msgstr "FEL" -#: src/Common/LinuxKernel.vala:1221 src/Gtk/MainWindow.vala:653 +#: src/Common/LinuxKernel.vala:1222 src/Gtk/MainWindow.vala:663 msgid "This kernel is already installed." msgstr "Denna kärna är redan installerad" -#: src/Common/LinuxKernel.vala:1252 +#: src/Common/LinuxKernel.vala:1253 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "Installation slutförd. Omstart krävs för att tillämpa den nya kärnan." -#: src/Common/LinuxKernel.vala:1255 +#: src/Common/LinuxKernel.vala:1256 msgid "Installation completed with errors" msgstr "Installation slutförd med fel" -#: src/Common/LinuxKernel.vala:1271 +#: src/Common/LinuxKernel.vala:1272 msgid "" "Selected kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -134,19 +134,19 @@ msgstr "" "Denna kärna används för tillfället och kan inte tas bort.\n" "Installera en annan kärna innan du tar bort den här." -#: src/Common/LinuxKernel.vala:1276 +#: src/Common/LinuxKernel.vala:1277 msgid "Preparing to remove selected kernels" msgstr "Förbereder borttagning av markerade kärnor" -#: src/Common/LinuxKernel.vala:1308 src/Common/LinuxKernel.vala:1361 +#: src/Common/LinuxKernel.vala:1309 src/Common/LinuxKernel.vala:1362 msgid "Un-install completed" msgstr "Avinstallation slutförd" -#: src/Common/LinuxKernel.vala:1311 src/Common/LinuxKernel.vala:1364 +#: src/Common/LinuxKernel.vala:1312 src/Common/LinuxKernel.vala:1365 msgid "Un-install completed with errors" msgstr "Avinstallation slutförd med fel" -#: src/Common/LinuxKernel.vala:1324 +#: src/Common/LinuxKernel.vala:1325 msgid "" "This kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -154,143 +154,167 @@ msgstr "" "Denna kärna används för tillfället och kan inte tas bort.\n" "Installera en annan kärna innan du tar bort den här." -#: src/Common/Main.vala:107 +#: src/Common/Main.vala:123 msgid "Commands listed below are not available on this system" msgstr "Kommandon listade nedan, finns inte tillgängliga i detta system." -#: src/Common/Main.vala:108 +#: src/Common/Main.vala:124 msgid "Please install required packages and try again" msgstr "Installera nödvändiga paket och försök igen" -#: src/Common/Package.vala:131 src/Common/Package.vala:193 +#: src/Common/Main.vala:270 +msgid "Called from" +msgstr "" + +#: src/Common/Main.vala:282 +#, fuzzy +msgid "Notifications are disabled" +msgstr "Avisering" + +#: src/Common/Package.vala:134 src/Common/Package.vala:198 #, c-format msgid "File not found: %s" msgstr "Filen kunde inte hittas: %s" -#: src/Console/AppConsole.vala:81 src/Gtk/AppGtk.vala:171 +#: src/Console/AppConsole.vala:71 src/Gtk/AppGtk.vala:158 msgid "Syntax" msgstr "Syntax" -#: src/Console/AppConsole.vala:83 +#: src/Console/AppConsole.vala:73 msgid "Commands" msgstr "" -#: src/Console/AppConsole.vala:85 +#: src/Console/AppConsole.vala:75 msgid "Check for kernel updates" msgstr "Sök efter kärnuppdateringar" -#: src/Console/AppConsole.vala:86 +#: src/Console/AppConsole.vala:76 #, fuzzy msgid "Check for kernel updates and notify current user" msgstr "Sök efter kärnuppdateringar" -#: src/Console/AppConsole.vala:87 +#: src/Console/AppConsole.vala:77 msgid "List all available mainline kernels" msgstr "Lista alla tillgängliga kärnor" -#: src/Console/AppConsole.vala:88 +#: src/Console/AppConsole.vala:78 #, fuzzy msgid "List installed kernels" msgstr "Lista tillgängliga kärnor" -#: src/Console/AppConsole.vala:89 +#: src/Console/AppConsole.vala:79 #, fuzzy msgid "Install latest mainline kernel" msgstr "Installera specificerad kärna" -#: src/Console/AppConsole.vala:90 +#: src/Console/AppConsole.vala:80 msgid "Install latest point update for current series" msgstr "" -#: src/Console/AppConsole.vala:91 +#: src/Console/AppConsole.vala:81 msgid "Install specified mainline kernel" msgstr "Installera specificerad kärna" -#: src/Console/AppConsole.vala:92 +#: src/Console/AppConsole.vala:82 #, fuzzy -msgid "Remove specified kernel" -msgstr "Ta bort specificerad kärna" +msgid "Uninstall specified kernels" +msgstr "Installera specificerad kärna" -#: src/Console/AppConsole.vala:93 src/Gtk/MainWindow.vala:396 +#: src/Console/AppConsole.vala:83 src/Gtk/MainWindow.vala:401 msgid "Remove installed kernels older than running kernel" msgstr "Ta bort installerade kärnor äldre än den som körs" -#: src/Console/AppConsole.vala:94 -msgid "Download packages for specified kernel" +#: src/Console/AppConsole.vala:84 +#, fuzzy +msgid "Download specified kernels" msgstr "Ladda ner paket för specificerad kärna" -#: src/Console/AppConsole.vala:95 src/Console/AppConsole.vala:100 +#: src/Console/AppConsole.vala:85 msgid "Remove files from application cache" msgstr "Ta bort filer från program-cachen" -#: src/Console/AppConsole.vala:96 +#: src/Console/AppConsole.vala:86 #, fuzzy msgid "Show unstable and RC releases" msgstr "Dölj instabila- och RC-publiceringar" -#: src/Console/AppConsole.vala:98 src/Gtk/AppGtk.vala:173 +#: src/Console/AppConsole.vala:88 src/Gtk/AppGtk.vala:160 msgid "Options" msgstr "Alternativ" -#: src/Console/AppConsole.vala:101 +#: src/Console/AppConsole.vala:90 msgid "Enable verbose debugging output" msgstr "" -#: src/Console/AppConsole.vala:102 +#: src/Console/AppConsole.vala:91 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "" -#: src/Console/AppConsole.vala:103 +#: src/Console/AppConsole.vala:92 msgid "Override user" msgstr "" -#: src/Console/AppConsole.vala:116 +#: src/Console/AppConsole.vala:95 +msgid "A version string taken from the output of --list" +msgstr "" + +#: src/Console/AppConsole.vala:96 +msgid "" +"One or more version strings (comma-seperated) taken from the output of --list" +msgstr "" + +#: src/Console/AppConsole.vala:103 msgid "Admin access is required for running this application." msgstr "Root-åtkomst krävs för att köra detta program." -#: src/Console/AppConsole.vala:119 +#: src/Console/AppConsole.vala:104 msgid "Run the application as admin with pkexec or sudo." msgstr "Kör programmet som administratör, med pkexec eller sudo." -#: src/Console/AppConsole.vala:200 src/Gtk/AppGtk.vala:158 +#: src/Console/AppConsole.vala:183 src/Gtk/AppGtk.vala:145 msgid "Unknown option" msgstr "Okänt alternativ" -#: src/Console/AppConsole.vala:202 src/Console/AppConsole.vala:315 -#: src/Console/AppConsole.vala:345 +#: src/Console/AppConsole.vala:185 src/Console/AppConsole.vala:298 +#: src/Console/AppConsole.vala:328 msgid "Run '" msgstr "" -#: src/Console/AppConsole.vala:284 src/Console/AppConsole.vala:324 +#: src/Console/AppConsole.vala:267 src/Console/AppConsole.vala:307 msgid "No kernels specified" msgstr "" -#: src/Console/AppConsole.vala:290 +#: src/Console/AppConsole.vala:273 msgid "Multiple kernels selected for installation. Select only one." msgstr "Flera kärnor valda för installation. Välj endast en." -#: src/Console/AppConsole.vala:311 src/Gtk/MainWindow.vala:100 +#: src/Console/AppConsole.vala:294 src/Gtk/MainWindow.vala:100 msgid "Could not find requested version" msgstr "Kunde inte hitta efterfrågad version" -#: src/Console/AppConsole.vala:344 +#: src/Console/AppConsole.vala:327 msgid "Command not specified" msgstr "" -#: src/Console/AppConsole.vala:393 src/Console/AppConsole.vala:408 +#: src/Console/AppConsole.vala:380 src/Console/AppConsole.vala:396 #, fuzzy, c-format msgid "Kernel %s Available" msgstr "Tillgängliga paket" -#: src/Console/OSDNotify.vala:63 +#: src/Console/AppConsole.vala:383 src/Console/AppConsole.vala:399 +#: src/Gtk/MainWindow.vala:335 +msgid "Install" +msgstr "Installera" + +#: src/Console/OSDNotify.vala:66 msgid "Show" msgstr "" -#: src/Gtk/AppGtk.vala:175 +#: src/Gtk/AppGtk.vala:162 msgid "Print debug information" msgstr "Skriv ut felsökningsinformation" -#: src/Gtk/AppGtk.vala:176 +#: src/Gtk/AppGtk.vala:163 msgid "Show all options" msgstr "Visa alla alternativ" @@ -306,20 +330,16 @@ msgstr "Status" msgid "Refresh" msgstr "Uppdatera" -#: src/Gtk/MainWindow.vala:326 src/Gtk/MainWindow.vala:527 -#: src/Gtk/MainWindow.vala:658 src/Utility/TeeJee.System.vala:146 +#: src/Gtk/MainWindow.vala:326 src/Gtk/MainWindow.vala:537 +#: src/Gtk/MainWindow.vala:668 src/Utility/TeeJee.System.vala:146 msgid "Internet connection is not active" msgstr "Internetuppkopplingen är inte aktiv" -#: src/Gtk/MainWindow.vala:326 src/Gtk/MainWindow.vala:527 -#: src/Gtk/MainWindow.vala:658 +#: src/Gtk/MainWindow.vala:326 src/Gtk/MainWindow.vala:537 +#: src/Gtk/MainWindow.vala:668 msgid "No Internet" msgstr "Inget internet" -#: src/Gtk/MainWindow.vala:335 -msgid "Install" -msgstr "Installera" - #: src/Gtk/MainWindow.vala:344 msgid "Multiple Kernels Selected" msgstr "Flera kärnor markerade" @@ -344,35 +364,35 @@ msgstr "Ta bort" msgid "Select the kernels to remove" msgstr "Välj kärnor för borttagning" -#: src/Gtk/MainWindow.vala:395 +#: src/Gtk/MainWindow.vala:400 msgid "Purge" msgstr "Rensa" -#: src/Gtk/MainWindow.vala:429 +#: src/Gtk/MainWindow.vala:439 msgid "Changes" msgstr "Ändringar" -#: src/Gtk/MainWindow.vala:440 src/Gtk/SettingsDialog.vala:52 +#: src/Gtk/MainWindow.vala:450 src/Gtk/SettingsDialog.vala:52 msgid "Settings" msgstr "Inställningar" -#: src/Gtk/MainWindow.vala:461 +#: src/Gtk/MainWindow.vala:471 msgid "About" msgstr "Om" -#: src/Gtk/MainWindow.vala:505 +#: src/Gtk/MainWindow.vala:515 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Kärnuppgraderingsverktyg för Ubuntu-baserade distributioner" -#: src/Gtk/MainWindow.vala:506 +#: src/Gtk/MainWindow.vala:516 msgid "Forked:" msgstr "" -#: src/Gtk/MainWindow.vala:506 +#: src/Gtk/MainWindow.vala:516 msgid "Original:" msgstr "" -#: src/Gtk/MainWindow.vala:546 +#: src/Gtk/MainWindow.vala:556 msgid "Refreshing..." msgstr "Uppdaterar ..." @@ -504,64 +524,64 @@ msgstr "Fel" msgid "Missing Icon" msgstr "Saknad ikon" -#: src/Utility/TeeJee.FileSystem.vala:73 src/Utility/TeeJee.FileSystem.vala:76 +#: src/Utility/TeeJee.FileSystem.vala:71 src/Utility/TeeJee.FileSystem.vala:74 msgid "File deleted" msgstr "Fil borttagen" -#: src/Utility/TeeJee.FileSystem.vala:82 +#: src/Utility/TeeJee.FileSystem.vala:80 msgid "Failed to delete file" msgstr "Kunde inte ta bort filen" -#: src/Utility/TeeJee.FileSystem.vala:108 +#: src/Utility/TeeJee.FileSystem.vala:99 msgid "Failed to read file" msgstr "Kunde inte läsa filen" -#: src/Utility/TeeJee.FileSystem.vala:135 -#: src/Utility/TeeJee.FileSystem.vala:138 +#: src/Utility/TeeJee.FileSystem.vala:127 +#: src/Utility/TeeJee.FileSystem.vala:130 msgid "File saved" msgstr "Fil sparad" -#: src/Utility/TeeJee.FileSystem.vala:147 +#: src/Utility/TeeJee.FileSystem.vala:139 msgid "Failed to write file" msgstr "Kunde inte skriva filen" -#: src/Utility/TeeJee.FileSystem.vala:160 -#: src/Utility/TeeJee.FileSystem.vala:163 +#: src/Utility/TeeJee.FileSystem.vala:152 +#: src/Utility/TeeJee.FileSystem.vala:155 msgid "File copied" msgstr "Kopierade fil" -#: src/Utility/TeeJee.FileSystem.vala:171 +#: src/Utility/TeeJee.FileSystem.vala:163 msgid "Failed to copy file" msgstr "Kunde inte kopiera filen" -#: src/Utility/TeeJee.FileSystem.vala:181 +#: src/Utility/TeeJee.FileSystem.vala:173 msgid "File not found" msgstr "Filen kan inte hittas" -#: src/Utility/TeeJee.FileSystem.vala:195 -#: src/Utility/TeeJee.FileSystem.vala:198 +#: src/Utility/TeeJee.FileSystem.vala:187 +#: src/Utility/TeeJee.FileSystem.vala:190 msgid "File moved" msgstr "Fil flyttad" -#: src/Utility/TeeJee.FileSystem.vala:203 +#: src/Utility/TeeJee.FileSystem.vala:195 msgid "Failed to move file" msgstr "Kunde inte flytta filen" -#: src/Utility/TeeJee.FileSystem.vala:258 -#: src/Utility/TeeJee.FileSystem.vala:261 +#: src/Utility/TeeJee.FileSystem.vala:252 +#: src/Utility/TeeJee.FileSystem.vala:255 msgid "Created directory" msgstr "Skapade mapp" -#: src/Utility/TeeJee.FileSystem.vala:268 +#: src/Utility/TeeJee.FileSystem.vala:262 msgid "Failed to create dir" msgstr "Kunde inte skapa mappen" -#: src/Utility/TeeJee.FileSystem.vala:283 +#: src/Utility/TeeJee.FileSystem.vala:277 #, fuzzy msgid "Deleted" msgstr "Fil borttagen" -#: src/Utility/TeeJee.FileSystem.vala:284 +#: src/Utility/TeeJee.FileSystem.vala:278 msgid "FAILED deleting" msgstr "" @@ -573,6 +593,6 @@ msgstr "F" msgid "W" msgstr "V" -#: src/Utility/TeeJee.Process.vala:507 +#: src/Utility/TeeJee.Process.vala:511 msgid "Stopped" msgstr "Stoppad" diff --git a/po/tr.po b/po/tr.po index ca8314e9..9474a51b 100644 --- a/po/tr.po +++ b/po/tr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-10 05:43-0400\n" +"POT-Creation-Date: 2020-05-10 21:20-0400\n" "PO-Revision-Date: 2020-03-10 15:59+0300\n" "Last-Translator: Gökhan GÖKKAYA \n" "Language-Team: Turkish\n" @@ -42,88 +42,88 @@ msgstr "İçerik dizini alınıyor..." msgid "Fetching index from kernel.ubuntu.com..." msgstr "İçerik listesi kernel.ubuntu.com alanından alınıyor..." -#: src/Common/LinuxKernel.vala:693 +#: src/Common/LinuxKernel.vala:694 msgid "Could not find running kernel in list!" msgstr "İstenen sürüm bulunamadı!" -#: src/Common/LinuxKernel.vala:699 +#: src/Common/LinuxKernel.vala:700 msgid "Could not find any kernels to remove" msgstr "Kaldırılacak çekirdek bulunamadı" -#: src/Common/LinuxKernel.vala:708 +#: src/Common/LinuxKernel.vala:709 msgid "The following kernels will be removed:" msgstr "Aşağıdaki çekirdekler silinecek:" -#: src/Common/LinuxKernel.vala:715 +#: src/Common/LinuxKernel.vala:716 msgid "Continue ?" msgstr "Devam et ?" -#: src/Common/LinuxKernel.vala:743 src/Console/AppConsole.vala:363 +#: src/Common/LinuxKernel.vala:744 src/Console/AppConsole.vala:346 msgid "Latest update" msgstr "Son güncelleme" -#: src/Common/LinuxKernel.vala:754 src/Console/AppConsole.vala:370 +#: src/Common/LinuxKernel.vala:755 src/Console/AppConsole.vala:353 msgid "Latest point update" msgstr "Son güncelleme noktası" -#: src/Common/LinuxKernel.vala:762 src/Console/AppConsole.vala:375 -#: src/Console/AppConsole.vala:419 +#: src/Common/LinuxKernel.vala:763 src/Console/AppConsole.vala:358 +#: src/Console/AppConsole.vala:408 msgid "No updates found" msgstr "Güncelleme bulunamadı" -#: src/Common/LinuxKernel.vala:772 +#: src/Common/LinuxKernel.vala:773 #, fuzzy, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Linux v%s Kur ? (e/h): " -#: src/Common/LinuxKernel.vala:1038 +#: src/Common/LinuxKernel.vala:1039 msgid "Packages Available" msgstr "Mevcut Paketler" -#: src/Common/LinuxKernel.vala:1046 +#: src/Common/LinuxKernel.vala:1047 msgid "Packages Installed" msgstr "Kurulu Paketler" -#: src/Common/LinuxKernel.vala:1130 +#: src/Common/LinuxKernel.vala:1131 msgid "Available Kernels" msgstr "Mevcut Çekirdekler" -#: src/Common/LinuxKernel.vala:1147 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1148 src/Gtk/MainWindow.vala:186 msgid "Installed" msgstr "Kurulu" -#: src/Common/LinuxKernel.vala:1147 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1148 src/Gtk/MainWindow.vala:186 msgid "Running" msgstr "Çalışıyor" -#: src/Common/LinuxKernel.vala:1182 +#: src/Common/LinuxKernel.vala:1183 msgid "Downloading" msgstr "İndiriliyor" -#: src/Common/LinuxKernel.vala:1201 +#: src/Common/LinuxKernel.vala:1202 #: src/Utility/Gtk/CustomMessageDialog.vala:148 #: src/Utility/Gtk/CustomMessageDialog.vala:152 msgid "OK" msgstr "TAMAM" -#: src/Common/LinuxKernel.vala:1207 +#: src/Common/LinuxKernel.vala:1208 msgid "ERROR" msgstr "HATA" -#: src/Common/LinuxKernel.vala:1221 src/Gtk/MainWindow.vala:653 +#: src/Common/LinuxKernel.vala:1222 src/Gtk/MainWindow.vala:663 msgid "This kernel is already installed." msgstr "Bu çekirdek zaten kurulu." -#: src/Common/LinuxKernel.vala:1252 +#: src/Common/LinuxKernel.vala:1253 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "Kurulum tamamlandı. Yeni çekirdeği kullanmak için yeniden başlatma gerekiyor." -#: src/Common/LinuxKernel.vala:1255 +#: src/Common/LinuxKernel.vala:1256 msgid "Installation completed with errors" msgstr "Kurulum hatalarla tamamlandı" -#: src/Common/LinuxKernel.vala:1271 +#: src/Common/LinuxKernel.vala:1272 msgid "" "Selected kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -131,19 +131,19 @@ msgstr "" "Seçilen çekirdek şu anda çalışıyor ve kaldırılamıyor.\n" " Bunu kaldırmadan önce başka bir çekirdek yükleyin." -#: src/Common/LinuxKernel.vala:1276 +#: src/Common/LinuxKernel.vala:1277 msgid "Preparing to remove selected kernels" msgstr "Seçilen çekirdekleri kaldırmak için hazırlanıyor" -#: src/Common/LinuxKernel.vala:1308 src/Common/LinuxKernel.vala:1361 +#: src/Common/LinuxKernel.vala:1309 src/Common/LinuxKernel.vala:1362 msgid "Un-install completed" msgstr "Kaldırma tamamlandı" -#: src/Common/LinuxKernel.vala:1311 src/Common/LinuxKernel.vala:1364 +#: src/Common/LinuxKernel.vala:1312 src/Common/LinuxKernel.vala:1365 msgid "Un-install completed with errors" msgstr "Kaldırma hatalarla tamamlandı" -#: src/Common/LinuxKernel.vala:1324 +#: src/Common/LinuxKernel.vala:1325 msgid "" "This kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -151,138 +151,163 @@ msgstr "" "Bu çekirdek şu anda çalışıyor ve bu sebeple kaldırılamaz.\n" "Bunu kaldırmadan önce başka bir çekirdek yükleyin." -#: src/Common/Main.vala:107 +#: src/Common/Main.vala:123 msgid "Commands listed below are not available on this system" msgstr "Aşağıda listelenen komutlar bu sistemde mevcut değil" -#: src/Common/Main.vala:108 +#: src/Common/Main.vala:124 msgid "Please install required packages and try again" msgstr "Lütfen gerekli paketleri yükleyin ve tekrar deneyin" -#: src/Common/Package.vala:131 src/Common/Package.vala:193 +#: src/Common/Main.vala:270 +msgid "Called from" +msgstr "" + +#: src/Common/Main.vala:282 +#, fuzzy +msgid "Notifications are disabled" +msgstr "Bildirim" + +#: src/Common/Package.vala:134 src/Common/Package.vala:198 #, c-format msgid "File not found: %s" msgstr "Şu dosya bulunamadı: %s" -#: src/Console/AppConsole.vala:81 src/Gtk/AppGtk.vala:171 +#: src/Console/AppConsole.vala:71 src/Gtk/AppGtk.vala:158 msgid "Syntax" msgstr "Sözdizimi" -#: src/Console/AppConsole.vala:83 +#: src/Console/AppConsole.vala:73 msgid "Commands" msgstr "Komutlar" -#: src/Console/AppConsole.vala:85 +#: src/Console/AppConsole.vala:75 msgid "Check for kernel updates" msgstr "Çekirdek güncellemelerini kontrol et" -#: src/Console/AppConsole.vala:86 +#: src/Console/AppConsole.vala:76 msgid "Check for kernel updates and notify current user" msgstr "Çekirdek güncellemelerini kontrol et ve mevcut kullanıcıyı uyar" -#: src/Console/AppConsole.vala:87 +#: src/Console/AppConsole.vala:77 msgid "List all available mainline kernels" msgstr "Tüm mainline çekirdeklerini listele" -#: src/Console/AppConsole.vala:88 +#: src/Console/AppConsole.vala:78 msgid "List installed kernels" msgstr "Kurulu çekirdekleri listele" -#: src/Console/AppConsole.vala:89 +#: src/Console/AppConsole.vala:79 msgid "Install latest mainline kernel" msgstr "En son mainline çekirdeğini kur" -#: src/Console/AppConsole.vala:90 +#: src/Console/AppConsole.vala:80 msgid "Install latest point update for current series" msgstr "Mevcut çekirdek serisi için en güncelleme noktasını kur" -#: src/Console/AppConsole.vala:91 +#: src/Console/AppConsole.vala:81 msgid "Install specified mainline kernel" msgstr "Belirtilen mainline çekirdeğini kur" -#: src/Console/AppConsole.vala:92 -msgid "Remove specified kernel" -msgstr "Belirtilen çekirdeği kaldır" +#: src/Console/AppConsole.vala:82 +#, fuzzy +msgid "Uninstall specified kernels" +msgstr "Belirtilen mainline çekirdeğini kur" -#: src/Console/AppConsole.vala:93 src/Gtk/MainWindow.vala:396 +#: src/Console/AppConsole.vala:83 src/Gtk/MainWindow.vala:401 msgid "Remove installed kernels older than running kernel" msgstr "Çalışan çekirdekten eski olan kurulu çekirdekleri kaldır" -#: src/Console/AppConsole.vala:94 -msgid "Download packages for specified kernel" +#: src/Console/AppConsole.vala:84 +#, fuzzy +msgid "Download specified kernels" msgstr "Belirtilen çekirdek için paketleri indir" -#: src/Console/AppConsole.vala:95 src/Console/AppConsole.vala:100 +#: src/Console/AppConsole.vala:85 msgid "Remove files from application cache" msgstr "Dosyaları uygulama önbelleğinden sil" -#: src/Console/AppConsole.vala:96 +#: src/Console/AppConsole.vala:86 msgid "Show unstable and RC releases" msgstr "Kararsız ve RC sürümleri göster" -#: src/Console/AppConsole.vala:98 src/Gtk/AppGtk.vala:173 +#: src/Console/AppConsole.vala:88 src/Gtk/AppGtk.vala:160 msgid "Options" msgstr "Seçenekler" -#: src/Console/AppConsole.vala:101 +#: src/Console/AppConsole.vala:90 msgid "Enable verbose debugging output" msgstr "Ayrıntılı hata ayıklama çıktısını etkinleştir" -#: src/Console/AppConsole.vala:102 +#: src/Console/AppConsole.vala:91 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "Tüm istemler için Evet'i kabul edin (etkileşimsiz kip)" -#: src/Console/AppConsole.vala:103 +#: src/Console/AppConsole.vala:92 msgid "Override user" msgstr "Kullanıcıyı geçersiz kıl" -#: src/Console/AppConsole.vala:116 +#: src/Console/AppConsole.vala:95 +msgid "A version string taken from the output of --list" +msgstr "" + +#: src/Console/AppConsole.vala:96 +msgid "" +"One or more version strings (comma-seperated) taken from the output of --list" +msgstr "" + +#: src/Console/AppConsole.vala:103 msgid "Admin access is required for running this application." msgstr "Bu uygulamayı çalıştırmak için yönetici izni gerekiyor." -#: src/Console/AppConsole.vala:119 +#: src/Console/AppConsole.vala:104 msgid "Run the application as admin with pkexec or sudo." msgstr "Bu uygulamayı pkexec yada sudo ile yönetici haklarıyla çalıştırın." -#: src/Console/AppConsole.vala:200 src/Gtk/AppGtk.vala:158 +#: src/Console/AppConsole.vala:183 src/Gtk/AppGtk.vala:145 msgid "Unknown option" msgstr "Bilinmeyen seçenek" -#: src/Console/AppConsole.vala:202 src/Console/AppConsole.vala:315 -#: src/Console/AppConsole.vala:345 +#: src/Console/AppConsole.vala:185 src/Console/AppConsole.vala:298 +#: src/Console/AppConsole.vala:328 msgid "Run '" msgstr "Çalıştır '" -#: src/Console/AppConsole.vala:284 src/Console/AppConsole.vala:324 +#: src/Console/AppConsole.vala:267 src/Console/AppConsole.vala:307 msgid "No kernels specified" msgstr "Belirtilen çekirdek yok" -#: src/Console/AppConsole.vala:290 +#: src/Console/AppConsole.vala:273 msgid "Multiple kernels selected for installation. Select only one." msgstr "Kurulum için çoklu çekirdek seçildi. Sadece bir tane seçiniz." -#: src/Console/AppConsole.vala:311 src/Gtk/MainWindow.vala:100 +#: src/Console/AppConsole.vala:294 src/Gtk/MainWindow.vala:100 msgid "Could not find requested version" msgstr "İstenen sürüm bulunamadı" -#: src/Console/AppConsole.vala:344 +#: src/Console/AppConsole.vala:327 msgid "Command not specified" msgstr "Komut belirtilmedi" -#: src/Console/AppConsole.vala:393 src/Console/AppConsole.vala:408 +#: src/Console/AppConsole.vala:380 src/Console/AppConsole.vala:396 #, fuzzy, c-format msgid "Kernel %s Available" msgstr "Mevcut Paketler" -#: src/Console/OSDNotify.vala:63 +#: src/Console/AppConsole.vala:383 src/Console/AppConsole.vala:399 +#: src/Gtk/MainWindow.vala:335 +msgid "Install" +msgstr "Kur" + +#: src/Console/OSDNotify.vala:66 msgid "Show" msgstr "" -#: src/Gtk/AppGtk.vala:175 +#: src/Gtk/AppGtk.vala:162 msgid "Print debug information" msgstr "Hata ayıklama bilgisini yazdır" -#: src/Gtk/AppGtk.vala:176 +#: src/Gtk/AppGtk.vala:163 msgid "Show all options" msgstr "Tüm seçenekleri göster" @@ -298,20 +323,16 @@ msgstr "Durum" msgid "Refresh" msgstr "Yenile" -#: src/Gtk/MainWindow.vala:326 src/Gtk/MainWindow.vala:527 -#: src/Gtk/MainWindow.vala:658 src/Utility/TeeJee.System.vala:146 +#: src/Gtk/MainWindow.vala:326 src/Gtk/MainWindow.vala:537 +#: src/Gtk/MainWindow.vala:668 src/Utility/TeeJee.System.vala:146 msgid "Internet connection is not active" msgstr "İnternet bağlantısı aktif değil" -#: src/Gtk/MainWindow.vala:326 src/Gtk/MainWindow.vala:527 -#: src/Gtk/MainWindow.vala:658 +#: src/Gtk/MainWindow.vala:326 src/Gtk/MainWindow.vala:537 +#: src/Gtk/MainWindow.vala:668 msgid "No Internet" msgstr "İnternet Yok" -#: src/Gtk/MainWindow.vala:335 -msgid "Install" -msgstr "Kur" - #: src/Gtk/MainWindow.vala:344 msgid "Multiple Kernels Selected" msgstr "Çoklu Çekirdek Seçildi" @@ -336,35 +357,35 @@ msgstr "Sil" msgid "Select the kernels to remove" msgstr "Kaldırma için çekirdek seçin" -#: src/Gtk/MainWindow.vala:395 +#: src/Gtk/MainWindow.vala:400 msgid "Purge" msgstr "Temizle" -#: src/Gtk/MainWindow.vala:429 +#: src/Gtk/MainWindow.vala:439 msgid "Changes" msgstr "Değişiklikler" -#: src/Gtk/MainWindow.vala:440 src/Gtk/SettingsDialog.vala:52 +#: src/Gtk/MainWindow.vala:450 src/Gtk/SettingsDialog.vala:52 msgid "Settings" msgstr "Ayarlar" -#: src/Gtk/MainWindow.vala:461 +#: src/Gtk/MainWindow.vala:471 msgid "About" msgstr "Hakkında" -#: src/Gtk/MainWindow.vala:505 +#: src/Gtk/MainWindow.vala:515 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Ubuntu tabanlı dağıtımlar için çekirdek güncelleme aracı" -#: src/Gtk/MainWindow.vala:506 +#: src/Gtk/MainWindow.vala:516 msgid "Forked:" msgstr "" -#: src/Gtk/MainWindow.vala:506 +#: src/Gtk/MainWindow.vala:516 msgid "Original:" msgstr "" -#: src/Gtk/MainWindow.vala:546 +#: src/Gtk/MainWindow.vala:556 msgid "Refreshing..." msgstr "Yenileniyor..." @@ -495,64 +516,64 @@ msgstr "Hata" msgid "Missing Icon" msgstr "Eksik Simge" -#: src/Utility/TeeJee.FileSystem.vala:73 src/Utility/TeeJee.FileSystem.vala:76 +#: src/Utility/TeeJee.FileSystem.vala:71 src/Utility/TeeJee.FileSystem.vala:74 msgid "File deleted" msgstr "Dosya silindi" -#: src/Utility/TeeJee.FileSystem.vala:82 +#: src/Utility/TeeJee.FileSystem.vala:80 msgid "Failed to delete file" msgstr "Dosya silme başarısız" -#: src/Utility/TeeJee.FileSystem.vala:108 +#: src/Utility/TeeJee.FileSystem.vala:99 msgid "Failed to read file" msgstr "Dosya okuma başarısız" -#: src/Utility/TeeJee.FileSystem.vala:135 -#: src/Utility/TeeJee.FileSystem.vala:138 +#: src/Utility/TeeJee.FileSystem.vala:127 +#: src/Utility/TeeJee.FileSystem.vala:130 msgid "File saved" msgstr "Dosya kaydedildi" -#: src/Utility/TeeJee.FileSystem.vala:147 +#: src/Utility/TeeJee.FileSystem.vala:139 msgid "Failed to write file" msgstr "Dosya yazma başarısız" -#: src/Utility/TeeJee.FileSystem.vala:160 -#: src/Utility/TeeJee.FileSystem.vala:163 +#: src/Utility/TeeJee.FileSystem.vala:152 +#: src/Utility/TeeJee.FileSystem.vala:155 msgid "File copied" msgstr "Dosya kopyalandı" -#: src/Utility/TeeJee.FileSystem.vala:171 +#: src/Utility/TeeJee.FileSystem.vala:163 msgid "Failed to copy file" msgstr "Dosya kopyalama başarısız" -#: src/Utility/TeeJee.FileSystem.vala:181 +#: src/Utility/TeeJee.FileSystem.vala:173 msgid "File not found" msgstr "Dosya bulunamadı" -#: src/Utility/TeeJee.FileSystem.vala:195 -#: src/Utility/TeeJee.FileSystem.vala:198 +#: src/Utility/TeeJee.FileSystem.vala:187 +#: src/Utility/TeeJee.FileSystem.vala:190 msgid "File moved" msgstr "Dosya taşındı" -#: src/Utility/TeeJee.FileSystem.vala:203 +#: src/Utility/TeeJee.FileSystem.vala:195 msgid "Failed to move file" msgstr "Dosya taşıma başarısız" -#: src/Utility/TeeJee.FileSystem.vala:258 -#: src/Utility/TeeJee.FileSystem.vala:261 +#: src/Utility/TeeJee.FileSystem.vala:252 +#: src/Utility/TeeJee.FileSystem.vala:255 msgid "Created directory" msgstr "Dizin oluşturuldu" -#: src/Utility/TeeJee.FileSystem.vala:268 +#: src/Utility/TeeJee.FileSystem.vala:262 msgid "Failed to create dir" msgstr "Dizin oluşturma başarısız" -#: src/Utility/TeeJee.FileSystem.vala:283 +#: src/Utility/TeeJee.FileSystem.vala:277 #, fuzzy msgid "Deleted" msgstr "Dosya silindi" -#: src/Utility/TeeJee.FileSystem.vala:284 +#: src/Utility/TeeJee.FileSystem.vala:278 msgid "FAILED deleting" msgstr "" @@ -564,6 +585,6 @@ msgstr "H" msgid "W" msgstr "U" -#: src/Utility/TeeJee.Process.vala:507 +#: src/Utility/TeeJee.Process.vala:511 msgid "Stopped" msgstr "Durduruldu" diff --git a/po/uk.po b/po/uk.po index 67414e64..8bddcfa1 100644 --- a/po/uk.po +++ b/po/uk.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-10 05:43-0400\n" +"POT-Creation-Date: 2020-05-10 21:20-0400\n" "PO-Revision-Date: 2019-07-25 11:00+0300\n" "Last-Translator: Serhii Golovko \n" "Language-Team: Ukranian \n" @@ -37,89 +37,89 @@ msgstr "Отримання індекса ..." msgid "Fetching index from kernel.ubuntu.com..." msgstr "Отримання відомостей з kernel.ubuntu.com..." -#: src/Common/LinuxKernel.vala:693 +#: src/Common/LinuxKernel.vala:694 msgid "Could not find running kernel in list!" msgstr "Не вдалося знайти запущене ядро ​​у списку!" -#: src/Common/LinuxKernel.vala:699 +#: src/Common/LinuxKernel.vala:700 msgid "Could not find any kernels to remove" msgstr "Не вдалося знайти жодне ядро ​​для видалення" -#: src/Common/LinuxKernel.vala:708 +#: src/Common/LinuxKernel.vala:709 msgid "The following kernels will be removed:" msgstr "Наступні ядра будуть видалені:" -#: src/Common/LinuxKernel.vala:715 +#: src/Common/LinuxKernel.vala:716 msgid "Continue ?" msgstr "Продовжувати ?" -#: src/Common/LinuxKernel.vala:743 src/Console/AppConsole.vala:363 +#: src/Common/LinuxKernel.vala:744 src/Console/AppConsole.vala:346 msgid "Latest update" msgstr "Останнє оновлення" -#: src/Common/LinuxKernel.vala:754 src/Console/AppConsole.vala:370 +#: src/Common/LinuxKernel.vala:755 src/Console/AppConsole.vala:353 msgid "Latest point update" msgstr "Остання точка оновлення" -#: src/Common/LinuxKernel.vala:762 src/Console/AppConsole.vala:375 -#: src/Console/AppConsole.vala:419 +#: src/Common/LinuxKernel.vala:763 src/Console/AppConsole.vala:358 +#: src/Console/AppConsole.vala:408 msgid "No updates found" msgstr "Оновлень не знайдено" -#: src/Common/LinuxKernel.vala:772 +#: src/Common/LinuxKernel.vala:773 #, fuzzy, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Встановити Linux v% s? (так/ні): " -#: src/Common/LinuxKernel.vala:1038 +#: src/Common/LinuxKernel.vala:1039 msgid "Packages Available" msgstr "Доступні пакети" -#: src/Common/LinuxKernel.vala:1046 +#: src/Common/LinuxKernel.vala:1047 msgid "Packages Installed" msgstr "Встановлені пакети" -#: src/Common/LinuxKernel.vala:1130 +#: src/Common/LinuxKernel.vala:1131 msgid "Available Kernels" msgstr "Доступні ядра" -#: src/Common/LinuxKernel.vala:1147 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1148 src/Gtk/MainWindow.vala:186 msgid "Installed" msgstr "Встановлено" -#: src/Common/LinuxKernel.vala:1147 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1148 src/Gtk/MainWindow.vala:186 msgid "Running" msgstr "Використовується" -#: src/Common/LinuxKernel.vala:1182 +#: src/Common/LinuxKernel.vala:1183 msgid "Downloading" msgstr "Завантаження" -#: src/Common/LinuxKernel.vala:1201 +#: src/Common/LinuxKernel.vala:1202 #: src/Utility/Gtk/CustomMessageDialog.vala:148 #: src/Utility/Gtk/CustomMessageDialog.vala:152 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:1207 +#: src/Common/LinuxKernel.vala:1208 msgid "ERROR" msgstr "ПОМИЛКА" -#: src/Common/LinuxKernel.vala:1221 src/Gtk/MainWindow.vala:653 +#: src/Common/LinuxKernel.vala:1222 src/Gtk/MainWindow.vala:663 msgid "This kernel is already installed." msgstr "Это ядро уже установлено." -#: src/Common/LinuxKernel.vala:1252 +#: src/Common/LinuxKernel.vala:1253 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "Установка завершена. Обов'язково виконайте перезавантаження, щоб " "використовувати нове ядро." -#: src/Common/LinuxKernel.vala:1255 +#: src/Common/LinuxKernel.vala:1256 msgid "Installation completed with errors" msgstr "Установка завершена з помилками" -#: src/Common/LinuxKernel.vala:1271 +#: src/Common/LinuxKernel.vala:1272 msgid "" "Selected kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -127,19 +127,19 @@ msgstr "" "Це ядро ​​зараз працює і не може бути видалено. \n" "Встановіть інше ядро, перш ніж видаляти його." -#: src/Common/LinuxKernel.vala:1276 +#: src/Common/LinuxKernel.vala:1277 msgid "Preparing to remove selected kernels" msgstr "Підготовка до видалення вибраних ядер" -#: src/Common/LinuxKernel.vala:1308 src/Common/LinuxKernel.vala:1361 +#: src/Common/LinuxKernel.vala:1309 src/Common/LinuxKernel.vala:1362 msgid "Un-install completed" msgstr "Удаление завершено" -#: src/Common/LinuxKernel.vala:1311 src/Common/LinuxKernel.vala:1364 +#: src/Common/LinuxKernel.vala:1312 src/Common/LinuxKernel.vala:1365 msgid "Un-install completed with errors" msgstr "Удаление завершено с ошибками" -#: src/Common/LinuxKernel.vala:1324 +#: src/Common/LinuxKernel.vala:1325 msgid "" "This kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -147,138 +147,163 @@ msgstr "" "Это ядро в настоящий момент работает и не может быть удалено.\n" " Установите другое ядро, прежде чем удалять его." -#: src/Common/Main.vala:107 +#: src/Common/Main.vala:123 msgid "Commands listed below are not available on this system" msgstr "Команди перераховані нижче недоступні на цій системі" -#: src/Common/Main.vala:108 +#: src/Common/Main.vala:124 msgid "Please install required packages and try again" msgstr "Встановити необхідні пакети і спробуйте знову" -#: src/Common/Package.vala:131 src/Common/Package.vala:193 +#: src/Common/Main.vala:270 +msgid "Called from" +msgstr "" + +#: src/Common/Main.vala:282 +#, fuzzy +msgid "Notifications are disabled" +msgstr "Повідомлення" + +#: src/Common/Package.vala:134 src/Common/Package.vala:198 #, c-format msgid "File not found: %s" msgstr "Файл не знайдено: %s" -#: src/Console/AppConsole.vala:81 src/Gtk/AppGtk.vala:171 +#: src/Console/AppConsole.vala:71 src/Gtk/AppGtk.vala:158 msgid "Syntax" msgstr "Синтаксис" -#: src/Console/AppConsole.vala:83 +#: src/Console/AppConsole.vala:73 msgid "Commands" msgstr "Команди" -#: src/Console/AppConsole.vala:85 +#: src/Console/AppConsole.vala:75 msgid "Check for kernel updates" msgstr "Перевірити оновлення ядра" -#: src/Console/AppConsole.vala:86 +#: src/Console/AppConsole.vala:76 msgid "Check for kernel updates and notify current user" msgstr "Перевірте наявність оновлень ядра та повідомте поточного користувача" -#: src/Console/AppConsole.vala:87 +#: src/Console/AppConsole.vala:77 msgid "List all available mainline kernels" msgstr "Список всіх доступних основних ядер" -#: src/Console/AppConsole.vala:88 +#: src/Console/AppConsole.vala:78 msgid "List installed kernels" msgstr "Список всіх доступних основних ядер" -#: src/Console/AppConsole.vala:89 +#: src/Console/AppConsole.vala:79 msgid "Install latest mainline kernel" msgstr "Встановити зазначену гілку ядра" -#: src/Console/AppConsole.vala:90 +#: src/Console/AppConsole.vala:80 msgid "Install latest point update for current series" msgstr "Встановіть останню точку оновлення для поточної серії" -#: src/Console/AppConsole.vala:91 +#: src/Console/AppConsole.vala:81 msgid "Install specified mainline kernel" msgstr "Встановити зазначену гілку ядра" -#: src/Console/AppConsole.vala:92 -msgid "Remove specified kernel" -msgstr "Видаліть вказане ядро" +#: src/Console/AppConsole.vala:82 +#, fuzzy +msgid "Uninstall specified kernels" +msgstr "Встановити зазначену гілку ядра" -#: src/Console/AppConsole.vala:93 src/Gtk/MainWindow.vala:396 +#: src/Console/AppConsole.vala:83 src/Gtk/MainWindow.vala:401 msgid "Remove installed kernels older than running kernel" msgstr "Видаліть встановлені ядра, старші за запущене" -#: src/Console/AppConsole.vala:94 -msgid "Download packages for specified kernel" +#: src/Console/AppConsole.vala:84 +#, fuzzy +msgid "Download specified kernels" msgstr "Завантажити пакети для зазначеного ядра" -#: src/Console/AppConsole.vala:95 src/Console/AppConsole.vala:100 +#: src/Console/AppConsole.vala:85 msgid "Remove files from application cache" msgstr "Видалити файли з кешу програми" -#: src/Console/AppConsole.vala:96 +#: src/Console/AppConsole.vala:86 msgid "Show unstable and RC releases" msgstr "Приховати нестабільні і реліз-кандидат версії" -#: src/Console/AppConsole.vala:98 src/Gtk/AppGtk.vala:173 +#: src/Console/AppConsole.vala:88 src/Gtk/AppGtk.vala:160 msgid "Options" msgstr "Параметри" -#: src/Console/AppConsole.vala:101 +#: src/Console/AppConsole.vala:90 msgid "Enable verbose debugging output" msgstr "" -#: src/Console/AppConsole.vala:102 +#: src/Console/AppConsole.vala:91 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "Припустимо, так для всіх підказок (неінтерактивний режим)" -#: src/Console/AppConsole.vala:103 +#: src/Console/AppConsole.vala:92 msgid "Override user" msgstr "" -#: src/Console/AppConsole.vala:116 +#: src/Console/AppConsole.vala:95 +msgid "A version string taken from the output of --list" +msgstr "" + +#: src/Console/AppConsole.vala:96 +msgid "" +"One or more version strings (comma-seperated) taken from the output of --list" +msgstr "" + +#: src/Console/AppConsole.vala:103 msgid "Admin access is required for running this application." msgstr "Для запуску програми потрібно мати права адміністратора." -#: src/Console/AppConsole.vala:119 +#: src/Console/AppConsole.vala:104 msgid "Run the application as admin with pkexec or sudo." msgstr "Запустіть додаток як адміністратор за допомогою pkexec або sudo." -#: src/Console/AppConsole.vala:200 src/Gtk/AppGtk.vala:158 +#: src/Console/AppConsole.vala:183 src/Gtk/AppGtk.vala:145 msgid "Unknown option" msgstr "Невідомий параметр" -#: src/Console/AppConsole.vala:202 src/Console/AppConsole.vala:315 -#: src/Console/AppConsole.vala:345 +#: src/Console/AppConsole.vala:185 src/Console/AppConsole.vala:298 +#: src/Console/AppConsole.vala:328 msgid "Run '" msgstr "Запуск" -#: src/Console/AppConsole.vala:284 src/Console/AppConsole.vala:324 +#: src/Console/AppConsole.vala:267 src/Console/AppConsole.vala:307 msgid "No kernels specified" msgstr "Ядра не вказані" -#: src/Console/AppConsole.vala:290 +#: src/Console/AppConsole.vala:273 msgid "Multiple kernels selected for installation. Select only one." msgstr "Для встановлення вибрано кілька ядер. Виберіть лише одну." -#: src/Console/AppConsole.vala:311 src/Gtk/MainWindow.vala:100 +#: src/Console/AppConsole.vala:294 src/Gtk/MainWindow.vala:100 msgid "Could not find requested version" msgstr "Не вдалося знайти запитувану версію" -#: src/Console/AppConsole.vala:344 +#: src/Console/AppConsole.vala:327 msgid "Command not specified" msgstr "Команда не вказана" -#: src/Console/AppConsole.vala:393 src/Console/AppConsole.vala:408 +#: src/Console/AppConsole.vala:380 src/Console/AppConsole.vala:396 #, fuzzy, c-format msgid "Kernel %s Available" msgstr "Доступні пакети" -#: src/Console/OSDNotify.vala:63 +#: src/Console/AppConsole.vala:383 src/Console/AppConsole.vala:399 +#: src/Gtk/MainWindow.vala:335 +msgid "Install" +msgstr "Встановити" + +#: src/Console/OSDNotify.vala:66 msgid "Show" msgstr "" -#: src/Gtk/AppGtk.vala:175 +#: src/Gtk/AppGtk.vala:162 msgid "Print debug information" msgstr "Роздрукувати зневадження" -#: src/Gtk/AppGtk.vala:176 +#: src/Gtk/AppGtk.vala:163 msgid "Show all options" msgstr "Показати усі параметри" @@ -294,20 +319,16 @@ msgstr "Стан" msgid "Refresh" msgstr "Оновити" -#: src/Gtk/MainWindow.vala:326 src/Gtk/MainWindow.vala:527 -#: src/Gtk/MainWindow.vala:658 src/Utility/TeeJee.System.vala:146 +#: src/Gtk/MainWindow.vala:326 src/Gtk/MainWindow.vala:537 +#: src/Gtk/MainWindow.vala:668 src/Utility/TeeJee.System.vala:146 msgid "Internet connection is not active" msgstr "Інтернет з'єднання не активно" -#: src/Gtk/MainWindow.vala:326 src/Gtk/MainWindow.vala:527 -#: src/Gtk/MainWindow.vala:658 +#: src/Gtk/MainWindow.vala:326 src/Gtk/MainWindow.vala:537 +#: src/Gtk/MainWindow.vala:668 msgid "No Internet" msgstr "Інтернету немає" -#: src/Gtk/MainWindow.vala:335 -msgid "Install" -msgstr "Встановити" - #: src/Gtk/MainWindow.vala:344 msgid "Multiple Kernels Selected" msgstr "Вибрано кілька ядер" @@ -332,35 +353,35 @@ msgstr "Видалити" msgid "Select the kernels to remove" msgstr "Виберіть ядра для видалення" -#: src/Gtk/MainWindow.vala:395 +#: src/Gtk/MainWindow.vala:400 msgid "Purge" msgstr "Чистити" -#: src/Gtk/MainWindow.vala:429 +#: src/Gtk/MainWindow.vala:439 msgid "Changes" msgstr "Зміни" -#: src/Gtk/MainWindow.vala:440 src/Gtk/SettingsDialog.vala:52 +#: src/Gtk/MainWindow.vala:450 src/Gtk/SettingsDialog.vala:52 msgid "Settings" msgstr "Налаштування" -#: src/Gtk/MainWindow.vala:461 +#: src/Gtk/MainWindow.vala:471 msgid "About" msgstr "Про программу" -#: src/Gtk/MainWindow.vala:505 +#: src/Gtk/MainWindow.vala:515 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Програма оновлення ядра для дистрибутивів на базі Ubuntu" -#: src/Gtk/MainWindow.vala:506 +#: src/Gtk/MainWindow.vala:516 msgid "Forked:" msgstr "" -#: src/Gtk/MainWindow.vala:506 +#: src/Gtk/MainWindow.vala:516 msgid "Original:" msgstr "" -#: src/Gtk/MainWindow.vala:546 +#: src/Gtk/MainWindow.vala:556 msgid "Refreshing..." msgstr "Оновлення..." @@ -491,64 +512,64 @@ msgstr "Помилка" msgid "Missing Icon" msgstr "Нема значка" -#: src/Utility/TeeJee.FileSystem.vala:73 src/Utility/TeeJee.FileSystem.vala:76 +#: src/Utility/TeeJee.FileSystem.vala:71 src/Utility/TeeJee.FileSystem.vala:74 msgid "File deleted" msgstr "Не вдалося видалити файл" -#: src/Utility/TeeJee.FileSystem.vala:82 +#: src/Utility/TeeJee.FileSystem.vala:80 msgid "Failed to delete file" msgstr "Не вдалося видалити файл" -#: src/Utility/TeeJee.FileSystem.vala:108 +#: src/Utility/TeeJee.FileSystem.vala:99 msgid "Failed to read file" msgstr "Не вдалося прочитати файл" -#: src/Utility/TeeJee.FileSystem.vala:135 -#: src/Utility/TeeJee.FileSystem.vala:138 +#: src/Utility/TeeJee.FileSystem.vala:127 +#: src/Utility/TeeJee.FileSystem.vala:130 msgid "File saved" msgstr "Файл збережено" -#: src/Utility/TeeJee.FileSystem.vala:147 +#: src/Utility/TeeJee.FileSystem.vala:139 msgid "Failed to write file" msgstr "Не вдалося записати файл" -#: src/Utility/TeeJee.FileSystem.vala:160 -#: src/Utility/TeeJee.FileSystem.vala:163 +#: src/Utility/TeeJee.FileSystem.vala:152 +#: src/Utility/TeeJee.FileSystem.vala:155 msgid "File copied" msgstr "Не вдалося скопіювати файл" -#: src/Utility/TeeJee.FileSystem.vala:171 +#: src/Utility/TeeJee.FileSystem.vala:163 msgid "Failed to copy file" msgstr "Не вдалося скопіювати файл" -#: src/Utility/TeeJee.FileSystem.vala:181 +#: src/Utility/TeeJee.FileSystem.vala:173 msgid "File not found" msgstr "Файл не знайдено" -#: src/Utility/TeeJee.FileSystem.vala:195 -#: src/Utility/TeeJee.FileSystem.vala:198 +#: src/Utility/TeeJee.FileSystem.vala:187 +#: src/Utility/TeeJee.FileSystem.vala:190 msgid "File moved" msgstr "Видалити" -#: src/Utility/TeeJee.FileSystem.vala:203 +#: src/Utility/TeeJee.FileSystem.vala:195 msgid "Failed to move file" msgstr "Не вдалося перемістити файл" -#: src/Utility/TeeJee.FileSystem.vala:258 -#: src/Utility/TeeJee.FileSystem.vala:261 +#: src/Utility/TeeJee.FileSystem.vala:252 +#: src/Utility/TeeJee.FileSystem.vala:255 msgid "Created directory" msgstr "Використовувана кеш-папка" -#: src/Utility/TeeJee.FileSystem.vala:268 +#: src/Utility/TeeJee.FileSystem.vala:262 msgid "Failed to create dir" msgstr "Не вдалося створити теку" -#: src/Utility/TeeJee.FileSystem.vala:283 +#: src/Utility/TeeJee.FileSystem.vala:277 #, fuzzy msgid "Deleted" msgstr "Не вдалося видалити файл" -#: src/Utility/TeeJee.FileSystem.vala:284 +#: src/Utility/TeeJee.FileSystem.vala:278 msgid "FAILED deleting" msgstr "" @@ -560,6 +581,6 @@ msgstr "E" msgid "W" msgstr "W" -#: src/Utility/TeeJee.Process.vala:507 +#: src/Utility/TeeJee.Process.vala:511 msgid "Stopped" msgstr "Зупинено" diff --git a/src/Common/DownloadManager.vala b/src/Common/DownloadManager.vala index 20d2c187..1b99cd03 100644 --- a/src/Common/DownloadManager.vala +++ b/src/Common/DownloadManager.vala @@ -79,14 +79,16 @@ public class DownloadTask : AsyncTask{ } public void prepare() { - string script_text = build_script(); - save_bash_script_temp(script_text, script_file); + string s = build_script(); + save_bash_script_temp(s, script_file); } private string build_script() { + log_debug("build_script():"); + log_debug("working_dir="+working_dir); string list = ""; - string list_file = path_combine(working_dir, "download.list"); + string list_file = working_dir+"/download.list"; foreach(var item in downloads){ list += "%s\n".printf(item.source_uri); list += " gid=%s\n".printf(item.gid); @@ -206,14 +208,16 @@ public class DownloadTask : AsyncTask{ protected override void finish_task(){ mv_partials_to_finals(); + log_debug("DownloadTask():finish_task():dir_delete("+working_dir+"):"); dir_delete(working_dir); } private void mv_partials_to_finals() { - //log_debug("mv_partials_to_finals()"); + log_debug("mv_partials_to_finals()"); foreach(var item in downloads){ + string d = file_parent(item.file_path_partial); if (!file_exists(item.file_path_partial)){ log_debug("file_path_partial not found: %s".printf(item.file_path_partial)); @@ -221,22 +225,23 @@ public class DownloadTask : AsyncTask{ } //log_msg("status=%s".printf(item.status)); - if (item.status == "OK"){ file_move(item.file_path_partial, item.file_path); } else{ file_delete(item.file_path_partial); } + dir_delete(d); } } public int read_status(){ + log_debug("read_status:working_dir="+working_dir); var status_file = working_dir + "/status"; var f = File.new_for_path(status_file); if (f.query_exists()){ - var txt = file_read(status_file); - return int.parse(txt); + string s = file_read(status_file); + return int.parse(s); } return -1; } @@ -266,13 +271,13 @@ public class DownloadItem : GLib.Object public string file_path{ owned get{ - return path_combine(download_dir, file_name); + return download_dir+"/"+file_name; } } public string file_path_partial{ owned get{ - return path_combine(partial_dir, file_name); + return partial_dir+"/"+file_name; } } @@ -286,7 +291,7 @@ public class DownloadItem : GLib.Object file_name = _file_name; download_dir = _download_dir; - partial_dir = create_temp_subdir(); + partial_dir = create_tmp_dir("DownloadItem()"); source_uri = _source_uri; } diff --git a/src/Common/LinuxKernel.vala b/src/Common/LinuxKernel.vala index 8bbf8101..a0991b4d 100644 --- a/src/Common/LinuxKernel.vala +++ b/src/Common/LinuxKernel.vala @@ -459,6 +459,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { if (!pkg_versions.contains(pkg.version_installed)){ pkg_versions.add(pkg.version_installed); + log_msg("Found installed" + ": %s".printf(pkg.version_installed)); string kern_name = "%s".printf(pkg.version_installed); @@ -916,9 +917,9 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { } public void mark_invalid(){ - string file = "%s/invalid".printf(cache_subdir); - if (!file_exists(file)){ - file_write(file, "1"); + string f = cache_subdir+"/invalid"; + if (!file_exists(f)){ + file_write(f, "1"); } } diff --git a/src/Common/Main.vala b/src/Common/Main.vala index e88c926b..d74bfd15 100644 --- a/src/Common/Main.vala +++ b/src/Common/Main.vala @@ -32,16 +32,32 @@ using TeeJee.ProcessHelper; using TeeJee.System; using TeeJee.Misc; +[CCode(cname="BRANDING_SHORTNAME")] extern const string BRANDING_SHORTNAME; +[CCode(cname="BRANDING_LONGNAME")] extern const string BRANDING_LONGNAME; +[CCode(cname="BRANDING_VERSION")] extern const string BRANDING_VERSION; +[CCode(cname="BRANDING_AUTHORNAME")] extern const string BRANDING_AUTHORNAME; +[CCode(cname="BRANDING_AUTHOREMAIL")] extern const string BRANDING_AUTHOREMAIL; +[CCode(cname="BRANDING_WEBSITE")] extern const string BRANDING_WEBSITE; +[CCode(cname="INSTALL_PREFIX")] extern const string INSTALL_PREFIX; +[CCode(cname="DEFAULT_SHOW_PREV_MAJORS")] extern const string DEFAULT_SHOW_PREV_MAJORS; + +public const string LOCALE_DIR = INSTALL_PREFIX + "/share/locale"; +public const string APP_LIB_DIR = INSTALL_PREFIX + "/lib/" + BRANDING_SHORTNAME; + extern void exit(int exit_code); public class Main : GLib.Object{ // constants ---------- - [CCode(cname="DEFAULT_SHOW_PREV_MAJORS")] extern const string DEFAULT_SHOW_PREV_MAJORS; - + + public string TMP_PREFIX = ""; + public string TMP_DIR = ""; + public string APP_CONF_DIR = ""; public string APP_CONFIG_FILE = ""; public string STARTUP_SCRIPT_FILE = ""; public string STARTUP_DESKTOP_FILE = ""; + public string NOTIFICATION_ID_FILE = ""; + public string NOTIFICATION_SEEN_FILE = ""; public string user_login = ""; public string user_home = ""; @@ -125,15 +141,19 @@ public class Main : GLib.Object{ user_home = get_user_home(user_login); - // app config files - APP_CONFIG_FILE = user_home + "/.config/" + BRANDING_SHORTNAME + "/config.json"; - STARTUP_SCRIPT_FILE = user_home + "/.config/" + BRANDING_SHORTNAME + "/" + BRANDING_SHORTNAME + "-notify.sh"; + APP_CONF_DIR = user_home + "/.config/" + BRANDING_SHORTNAME; + APP_CONFIG_FILE = APP_CONF_DIR + "/config.json"; + STARTUP_SCRIPT_FILE = APP_CONF_DIR + "/notify.sh"; STARTUP_DESKTOP_FILE = user_home + "/.config/autostart/" + BRANDING_SHORTNAME + ".desktop"; + NOTIFICATION_ID_FILE = APP_CONF_DIR + "/notification_id"; + NOTIFICATION_SEEN_FILE = APP_CONF_DIR + "/seen"; LinuxKernel.CACHE_DIR = user_home + "/.cache/" + BRANDING_SHORTNAME; LinuxKernel.CURRENT_USER = user_login; LinuxKernel.CURRENT_USER_HOME = user_home; + TMP_PREFIX = Environment.get_tmp_dir() + "/." + BRANDING_SHORTNAME; + //log_debug("CACHE_DIR=%s".printf(LinuxKernel.CACHE_DIR)); } @@ -221,8 +241,8 @@ public class Main : GLib.Object{ private void update_startup_script(){ + // construct the commandline argument for "sleep" int count = App.notify_interval_value; - string suffix = "h"; switch (App.notify_interval_unit){ case 0: // hour @@ -245,16 +265,25 @@ public class Main : GLib.Object{ file_delete(STARTUP_SCRIPT_FILE); } - string opts = ""; - if (LOG_DEBUG) opts = "--debug"; - string txt = "# Called from " + STARTUP_DESKTOP_FILE + "\n"; + // see OSDNotify.vala notify-send.sh -R + string s = + "# " +_("Called from") + " " + STARTUP_DESKTOP_FILE + "\n" + + "rm -f " + NOTIFICATION_ID_FILE + "\n" + + "rm -f " + NOTIFICATION_SEEN_FILE + "\n"; + if (notify_minor || notify_major){ - txt = txt + "while : ;do "+BRANDING_SHORTNAME+" %s --notify ;sleep %d%s".printf(opts,count,suffix)+" ;done\n"; + s += "while : ;do\n" + + BRANDING_SHORTNAME+" --notify"; + if (LOG_DEBUG) s += " --debug"; + s += "\n" + + "sleep %d%s\n".printf(count,suffix) + + "done\n"; } else { - txt = txt + "# Notifications are disabled\nexit 0\n"; + s += "# " + _("Notifications are disabled") + "\n" + + "exit 0\n"; } - file_write(STARTUP_SCRIPT_FILE,txt); + file_write(STARTUP_SCRIPT_FILE,s); chown(STARTUP_SCRIPT_FILE, user_login, user_login); } diff --git a/src/Common/Package.vala b/src/Common/Package.vala index c01cf06c..09c6672f 100644 --- a/src/Common/Package.vala +++ b/src/Common/Package.vala @@ -74,15 +74,18 @@ public class Package : GLib.Object { public static Gee.HashMap query_installed_packages() { + log_debug("query_installed_packages()"); + var list = new Gee.HashMap(); - string temp_file = get_temp_file_path(); + string t_dir = create_tmp_dir("query_installed_packages()"); + string t_file = get_temp_file_path(t_dir); // get installed packages from aptitude -------------- string std_out, std_err; exec_sync("aptitude search --disable-columns -F '%p|%v|%M|%d' '?installed'", out std_out, out std_err); - file_write(temp_file, std_out); + file_write(t_file, std_out); /* linux-headers-5.6.10-050610|5.6.10-050610.202005052153||Header files related to Linux kernel version 5.6.10 linux-headers-5.6.10-050610-generic|5.6.10-050610.202005052153||Linux kernel headers for version 5.6.10 on 64 bit x86 SMP @@ -93,7 +96,7 @@ linux-image-unsigned-5.6.10-050610-generic|5.6.10-050610.202005052153||Linux ker try { string line; - var file = File.new_for_path (temp_file); + var file = File.new_for_path (t_file); if (file.query_exists ()) { var dis = new DataInputStream (file.read()); while ((line = dis.read_line (null)) != null) { @@ -128,13 +131,14 @@ linux-image-unsigned-5.6.10-050610-generic|5.6.10-050610.202005052153||Linux ker } } else { - log_error (_("File not found: %s").printf(temp_file)); + log_error (_("File not found: %s").printf(t_file)); } } catch (Error e) { log_error (e.message); } - //file_delete(temp_file); + file_delete(t_file); + dir_delete(t_dir); return list; } @@ -142,20 +146,21 @@ linux-image-unsigned-5.6.10-050610-generic|5.6.10-050610.202005052153||Linux ker var list = new Gee.HashMap(); - string temp_file = get_temp_file_path(); + string t_dir = create_tmp_dir("query_available_packages()"); + string t_file = get_temp_file_path(t_dir); // get installed packages from aptitude -------------- string std_out, std_err; string cmd = "aptitude search --disable-columns -F '%%p|%%v|%%M|%%d' '!installed ?architecture(native) %s'".printf(search_string); exec_sync(cmd, out std_out, out std_err); - file_write(temp_file, std_out); + file_write(t_file, std_out); // parse ------------------------ try { string line; - var file = File.new_for_path (temp_file); + var file = File.new_for_path (t_file); if (file.query_exists ()) { var dis = new DataInputStream (file.read()); while ((line = dis.read_line (null)) != null) { @@ -190,13 +195,14 @@ linux-image-unsigned-5.6.10-050610-generic|5.6.10-050610.202005052153||Linux ker } } else { - log_error (_("File not found: %s").printf(temp_file)); + log_error (_("File not found: %s").printf(t_file)); } } catch (Error e) { log_error (e.message); } - //file_delete(temp_file); + file_delete(t_file); + dir_delete(t_dir); return list; } } diff --git a/src/Console/AppConsole.vala b/src/Console/AppConsole.vala index b147947d..d7c00e4e 100644 --- a/src/Console/AppConsole.vala +++ b/src/Console/AppConsole.vala @@ -30,16 +30,8 @@ using TeeJee.ProcessHelper; using TeeJee.System; using TeeJee.Misc; - public Main App; -[CCode(cname="BRANDING_SHORTNAME")] extern const string BRANDING_SHORTNAME; -[CCode(cname="BRANDING_LONGNAME")] extern const string BRANDING_LONGNAME; -[CCode(cname="BRANDING_VERSION")] extern const string BRANDING_VERSION; -[CCode(cname="INSTALL_PREFIX")] extern const string INSTALL_PREFIX; - -const string LOCALE_DIR = INSTALL_PREFIX+"/share/locale"; - public class AppConsole : GLib.Object { public static int main (string[] args) { @@ -48,8 +40,6 @@ public class AppConsole : GLib.Object { log_msg("%s %s".printf(BRANDING_SHORTNAME, BRANDING_VERSION)); - init_tmp(); - LOG_TIMESTAMP = false; //check dependencies @@ -88,37 +78,30 @@ public class AppConsole : GLib.Object { + " --list-installed " + _("List installed kernels") + "\n" + " --install-latest " + _("Install latest mainline kernel") + "\n" + " --install-point " + _("Install latest point update for current series") + "\n" - + " --install " + _("Install specified mainline kernel") + "\n" - + " --remove " + _("Remove specified kernel") + "\n" + + " --install " + _("Install specified mainline kernel") + "(1)\n" + + " --remove " + _("Uninstall specified kernels") + "(2)\n" + " --purge-old-kernels " + _("Remove installed kernels older than running kernel") + "\n" - + " --download " + _("Download packages for specified kernel") + "\n" + + " --download " + _("Download specified kernels") + "(2)\n" + " --clean-cache " + _("Remove files from application cache") + "\n" + " --show-unstable " + _("Show unstable and RC releases") + "\n" + "\n" + _("Options") + ":\n" + "\n" - + " --clean-cache " + _("Remove files from application cache") + "\n" + " --debug " + _("Enable verbose debugging output") + "\n" + " --yes " + _("Assume Yes for all prompts (non-interactive mode)") + "\n" + " --user " + _("Override user") + "\n" + "\n" + "Notes:\n" - + "1. Comma separated list of version strings can be specified for --remove and --download\n"; + + "(1) " +_("A version string taken from the output of --list") + "\n" + + "(2) " +_("One or more version strings (comma-seperated) taken from the output of --list") + "\n"; return msg; } private static void check_if_admin(){ if (!user_is_admin()) { - - log_msg(string.nfill(70,'-')); - - string msg = _("Admin access is required for running this application."); - log_error(msg); - - msg = _("Run the application as admin with pkexec or sudo."); - log_error(msg); - + log_error(_("Admin access is required for running this application.")); + log_error(_("Run the application as admin with pkexec or sudo.")); exit(1); } } @@ -386,14 +369,19 @@ public class AppConsole : GLib.Object { LinuxKernel.check_updates(); + string seen = ""; + if (file_exists(App.NOTIFICATION_SEEN_FILE)) seen = file_read(App.NOTIFICATION_SEEN_FILE); + log_debug("seen:\""+seen+"\""); + var kern = LinuxKernel.kernel_update_major; - if ((kern != null) && App.notify_major){ + if (App.notify_major && (kern!=null) && (seen!=kern.version_main)){ var title = _("Kernel %s Available").printf(kern.version_main); if (App.notify_bubble){ - OSDNotify.notify_send(title); + string extra_action = _("Install")+":"+BRANDING_SHORTNAME+"-gtk --install "+kern.version_main; + OSDNotify.notify_send(title,"major",extra_action); } log_msg(title); @@ -403,12 +391,13 @@ public class AppConsole : GLib.Object { kern = LinuxKernel.kernel_update_minor; - if ((kern != null) && App.notify_minor){ + if (App.notify_minor && (kern!=null) && (seen!=kern.version_main)){ var title = _("Kernel %s Available").printf(kern.version_main); if (App.notify_bubble){ - OSDNotify.notify_send(title); + string extra_action = _("Install")+":"+BRANDING_SHORTNAME+"-gtk --install "+kern.version_main; + OSDNotify.notify_send(title,"minor",extra_action); } log_msg(title); diff --git a/src/Console/OSDNotify.vala b/src/Console/OSDNotify.vala index 83de9f74..2b2d348b 100644 --- a/src/Console/OSDNotify.vala +++ b/src/Console/OSDNotify.vala @@ -30,8 +30,8 @@ public class OSDNotify : GLib.Object { private static DateTime dt_last_notification = null; public const int MIN_NOTIFICATION_INTERVAL = 3; - - public static int notify_send (string summary = "", string _body = ""){ + + public static int notify_send (string summary = "", string _body = "", string extra_action = ""){ /* Displays notification bubble on the desktop */ @@ -48,24 +48,31 @@ public class OSDNotify : GLib.Object { string action = BRANDING_SHORTNAME+"-gtk"; string body = _body; + if (LOG_DEBUG) { - action = INSTALL_PREFIX+"/lib/"+BRANDING_SHORTNAME+"/notify-action-debug.sh"; - body += "\n("+action+")"; + action = APP_LIB_DIR+"/notify-action-debug.sh"; + if (body!="") body += "\\n\\n"; + body += "("+action+")"; } - + string s = - INSTALL_PREFIX+"/lib/"+BRANDING_SHORTNAME+"/notify_send/notify-send.sh" + APP_LIB_DIR+"/notify_send/notify-send.sh" + " -u low" + " -c info" + " -a "+BRANDING_SHORTNAME + " -i "+BRANDING_SHORTNAME + " -t 0" - + " -o \""+_("Show")+":"+action+"\"" - + " \""+summary+"\"" - + " \""+body+"\"" - ; + + " -R "+App.NOTIFICATION_ID_FILE + + " -o \""+_("Show")+":"+action+"\""; + if (extra_action!="") s += " -o \""+extra_action+"\""; + s += " \""+summary+"\"" + + " \""+body+"\""; + + log_debug(s); + + exec_async (s); - retVal = exec_sync (s, null, null); + // retVal = exec_sync (s, null, null); dt_last_notification = new DateTime.now_local(); diff --git a/src/Gtk/AppGtk.vala b/src/Gtk/AppGtk.vala index 509f2355..34e563d6 100644 --- a/src/Gtk/AppGtk.vala +++ b/src/Gtk/AppGtk.vala @@ -33,15 +33,6 @@ using TeeJee.System; using TeeJee.Misc; public Main App; -[CCode(cname="BRANDING_SHORTNAME")] extern const string BRANDING_SHORTNAME; -[CCode(cname="BRANDING_LONGNAME")] extern const string BRANDING_LONGNAME; -[CCode(cname="BRANDING_VERSION")] extern const string BRANDING_VERSION; -[CCode(cname="BRANDING_AUTHORNAME")] extern const string BRANDING_AUTHORNAME; -[CCode(cname="BRANDING_AUTHOREMAIL")] extern const string BRANDING_AUTHOREMAIL; -[CCode(cname="BRANDING_WEBSITE")] extern const string BRANDING_WEBSITE; -[CCode(cname="INSTALL_PREFIX")] extern const string INSTALL_PREFIX; - -const string LOCALE_DIR = INSTALL_PREFIX+"/share/locale"; public class AppGtk : GLib.Object { @@ -53,10 +44,6 @@ public class AppGtk : GLib.Object { Gtk.init(ref args); - init_tmp(); - - //check_if_admin(); - LOG_TIMESTAMP = false; //check dependencies diff --git a/src/Gtk/MainWindow.vala b/src/Gtk/MainWindow.vala index f00e44e6..079b3502 100644 --- a/src/Gtk/MainWindow.vala +++ b/src/Gtk/MainWindow.vala @@ -360,9 +360,13 @@ public class MainWindow : Gtk.Window{ else if (selected_kernels.size > 0){ var term = new TerminalWindow.with_parent(this, false, true); - + string t_dir = create_tmp_dir("button Remove"); + string t_file = get_temp_file_path(t_dir)+".sh"; + term.script_complete.connect(()=>{ term.allow_window_close(); + file_delete(t_file); + dir_delete(t_dir); }); term.destroy.connect(()=>{ @@ -387,7 +391,8 @@ public class MainWindow : Gtk.Window{ sh += "echo ''\n"; sh += "echo 'Close window to exit...'\n"; - term.execute_script(save_bash_script_temp(sh)); + save_bash_script_temp(sh,t_file); + term.execute_script(t_file,t_dir); } }); @@ -400,9 +405,13 @@ public class MainWindow : Gtk.Window{ button.clicked.connect(() => { var term = new TerminalWindow.with_parent(this, false, true); + string t_dir = create_tmp_dir("button Purge"); + string t_file = get_temp_file_path(t_dir)+".sh"; term.script_complete.connect(()=>{ term.allow_window_close(); + file_delete(t_file); + dir_delete(t_dir); }); term.destroy.connect(()=>{ @@ -422,7 +431,8 @@ public class MainWindow : Gtk.Window{ sh += "echo ''\n"; sh += "echo 'Close window to exit...'\n"; - term.execute_script(save_bash_script_temp(sh)); + save_bash_script_temp(sh,t_file); + term.execute_script(t_file,t_dir); }); // changes @@ -660,9 +670,13 @@ public class MainWindow : Gtk.Window{ } var term = new TerminalWindow.with_parent(this, false, true); + string t_dir = create_tmp_dir("install()"); + string t_file = get_temp_file_path(t_dir)+".sh"; term.script_complete.connect(()=>{ term.allow_window_close(); + file_delete(t_file); + dir_delete(t_dir); }); term.destroy.connect(()=>{ @@ -691,7 +705,8 @@ public class MainWindow : Gtk.Window{ sh += "echo \n"; sh += "echo 'Close window to exit...'\n"; - term.execute_script(save_bash_script_temp(sh)); + save_bash_script_temp(sh,t_file); + term.execute_script(t_file,t_dir); } } diff --git a/src/Gtk/TerminalWindow.vala b/src/Gtk/TerminalWindow.vala index 3e0eb6c5..0dd0af04 100644 --- a/src/Gtk/TerminalWindow.vala +++ b/src/Gtk/TerminalWindow.vala @@ -46,11 +46,11 @@ public class TerminalWindow : Gtk.Window { public bool cancelled = false; public bool is_running = false; - + public signal void script_complete(); - + // init - + public TerminalWindow.with_parent(Gtk.Window? parent, bool fullscreen = false, bool show_cancel_button = false) { if (parent != null){ set_transient_for(parent); @@ -84,20 +84,20 @@ public class TerminalWindow : Gtk.Window { } public void init_window () { - + title = BRANDING_LONGNAME; icon = get_app_icon(16); resizable = true; deletable = false; - + // vbox_main --------------- - + vbox_main = new Gtk.Box(Orientation.VERTICAL, 0); vbox_main.set_size_request (def_width, def_height); add (vbox_main); // terminal ---------------------- - + term = new Vte.Terminal(); term.expand = true; @@ -171,51 +171,25 @@ public class TerminalWindow : Gtk.Window { hbox.pack_start (label, true, true, 0); } - public void start_shell(){ - string[] argv = new string[1]; - argv[0] = "/bin/sh"; - - string[] env = Environ.get(); - - try{ - - is_running = true; - - term.spawn_sync( - Vte.PtyFlags.DEFAULT, //pty_flags - TEMP_DIR, //working_directory - argv, //argv - env, //env - GLib.SpawnFlags.SEARCH_PATH, //spawn_flags - null, //child_setup - out child_pid, - null - ); - - } - catch (Error e) { - log_error (e.message); - } - } - public void terminate_child(){ btn_cancel.sensitive = false; process_quit(child_pid); } - public void execute_script(string script_path, bool wait = false){ + public void execute_script(string f, string d, bool wait = false){ string[] argv = new string[1]; - argv[0] = script_path; - + argv[0] = f; + string[] env = Environ.get(); try{ is_running = true; + log_debug("before term.spawn_sync()"); term.spawn_sync( Vte.PtyFlags.DEFAULT, //pty_flags - TEMP_DIR, //working_directory + d, //working_directory argv, //argv env, //env GLib.SpawnFlags.SEARCH_PATH | GLib.SpawnFlags.DO_NOT_REAP_CHILD, //spawn_flags @@ -234,6 +208,8 @@ public class TerminalWindow : Gtk.Window { gtk_do_events(); } } + + log_debug("end TerminalWindow:execute_script()"); } catch (Error e) { log_error (e.message); @@ -248,6 +224,7 @@ public class TerminalWindow : Gtk.Window { btn_close.visible = true; script_complete(); + } public void allow_window_close(bool allow = true){ diff --git a/src/Utility/AsyncTask.vala b/src/Utility/AsyncTask.vala index 16312c6c..cf73a2dd 100644 --- a/src/Utility/AsyncTask.vala +++ b/src/Utility/AsyncTask.vala @@ -72,26 +72,24 @@ public abstract class AsyncTask : GLib.Object{ public signal void task_complete(); protected AsyncTask(){ - working_dir = TEMP_DIR + "/" + timestamp_for_path(); - script_file = path_combine(working_dir, "script.sh"); - log_file = path_combine(working_dir, "task.log"); + working_dir = create_tmp_dir("AsyncTask"); + script_file = working_dir+"/script.sh"; + log_file = working_dir+"/task.log"; //regex = new Gee.HashMap(); // needs to be initialized again in instance constructor - - dir_create(working_dir); } public bool begin(){ status = AppStatus.RUNNING; - + bool has_started = true; is_terminated = false; finish_called = false; - + prg_count = 0; error_msg = ""; - + string[] spawn_args = new string[1]; spawn_args[0] = script_file; @@ -102,6 +100,9 @@ public abstract class AsyncTask : GLib.Object{ timer = new GLib.Timer(); timer.start(); + log_debug("AsyncTask:begin():try{"); + log_debug("working_dir="+working_dir); + // execute script file Process.spawn_async_with_pipes( working_dir, // working dir @@ -114,8 +115,6 @@ public abstract class AsyncTask : GLib.Object{ out output_fd, out error_fd); - log_debug("AsyncTask: child_pid: %d".printf(child_pid)); - // create stream readers UnixOutputStream uos_in = new UnixOutputStream(input_fd, false); UnixInputStream uis_out = new UnixInputStream(output_fd, false); @@ -257,7 +256,7 @@ public abstract class AsyncTask : GLib.Object{ if (finish_called) { return; } finish_called = true; - log_debug("AsyncTask: finish(): enter"); + log_debug("AsyncTask:finish():"); // dispose stdin try{ @@ -294,7 +293,8 @@ public abstract class AsyncTask : GLib.Object{ out_line = ""; timer.stop(); - + + log_debug("AsyncTask:finish(): before finish_task()"); finish_task(); //dir_delete(working_dir); @@ -309,12 +309,16 @@ public abstract class AsyncTask : GLib.Object{ protected int read_exit_code(){ exit_code = -1; - var path = file_parent(script_file) + "/status"; - if (file_exists(path)){ - var txt = file_read(path); - exit_code = int.parse(txt); + string status_file = file_parent(script_file) + "/status"; + log_debug("read_exit_code():"); + log_debug("working_dir="+working_dir); + log_debug("script_file="+script_file); + log_debug("status_file="+status_file); + if (file_exists(status_file)){ + string s = file_read(status_file); + exit_code = int.parse(s); } - log_debug("exit_code: %d".printf(exit_code)); + log_debug("exit_code=%d".printf(exit_code)); return exit_code; } diff --git a/src/Utility/TeeJee.FileSystem.vala b/src/Utility/TeeJee.FileSystem.vala index bf0a7c61..76ad3756 100644 --- a/src/Utility/TeeJee.FileSystem.vala +++ b/src/Utility/TeeJee.FileSystem.vala @@ -41,16 +41,14 @@ namespace TeeJee.FileSystem{ // path helpers ---------------------------- - public string file_parent(string file_path){ - return File.new_for_path(file_path).get_parent().get_path(); + public string file_parent(string f){ + log_debug("file_parent("+f+")"); + return File.new_for_path(f).get_parent().get_path(); } - public string file_basename(string file_path){ - return File.new_for_path(file_path).get_basename(); - } - - public string path_combine(string path1, string path2){ - return GLib.Path.build_path("/", path1, path2); + public string file_basename(string f){ + log_debug("file_basename("+f+")"); + return File.new_for_path(f).get_basename(); } // file helpers ----------------------------- @@ -84,7 +82,7 @@ namespace TeeJee.FileSystem{ } } - public string? file_read (string file_path, bool show_message = false){ + public string? file_read (string file_path){ /* Reads text from file */ @@ -93,13 +91,6 @@ namespace TeeJee.FileSystem{ try{ GLib.FileUtils.get_contents (file_path, out txt, out size); - - if (show_message){ - //log_msg(_("File read") + ": %s".printf(file_path)); - } - else{ - //log_debug(_("File read") + ": %s".printf(file_path)); - } return txt; } @@ -111,17 +102,18 @@ namespace TeeJee.FileSystem{ return null; } - public bool file_write (string file_path, string contents, bool show_message = false){ + public bool file_write (string f, string contents, bool show_message = false){ /* Write text to file */ + log_debug("file_write("+f+")"); + try{ - string pdir = file_parent(file_path); - dir_create(pdir); - chown(pdir,App.user_login,App.user_login); - - var file = File.new_for_path (file_path); + string d = file_parent(f); + dir_create(d); + + var file = File.new_for_path (f); if (file.query_exists ()) { file.delete (); } @@ -132,19 +124,19 @@ namespace TeeJee.FileSystem{ data_stream.close(); if (show_message){ - log_msg(_("File saved") + ": %s".printf(file_path)); + log_msg(_("File saved") + ":" + f); } else{ - log_debug(_("File saved") + ": %s".printf(file_path)); + log_debug(_("File saved") + ":" + f); } - chown(pdir,App.user_login,App.user_login); + chown(f,App.user_login,App.user_login); return true; } catch (Error e) { log_error (e.message); - log_error(_("Failed to write file") + ": %s".printf(file_path)); + log_error(_("Failed to write file") + ":" + f); return false; } } @@ -246,26 +238,28 @@ namespace TeeJee.FileSystem{ return ( FileUtils.test(dir_path, GLib.FileTest.EXISTS) && FileUtils.test(dir_path, GLib.FileTest.IS_DIR)); } - public bool dir_create (string dir_path, bool show_message = false){ + public bool dir_create (string d, bool show_message = false){ + log_debug("dir_create("+d+")"); /* Creates a directory along with parents */ try{ - var dir = File.parse_name (dir_path); + var dir = File.parse_name (d); if (dir.query_exists () == false) { dir.make_directory_with_parents (null); + chown(d,App.user_login,App.user_login); if (show_message){ - log_msg(_("Created directory") + ": %s".printf(dir_path)); + log_msg(_("Created directory") + ": %s".printf(d)); } else{ - log_debug(_("Created directory") + ": %s".printf(dir_path)); + log_debug(_("Created directory") + ": %s".printf(d)); } } return true; } catch (Error e) { log_error (e.message); - log_error(_("Failed to create dir") + ": %s".printf(dir_path)); + log_error(_("Failed to create dir") + ": %s".printf(d)); return false; } } @@ -283,7 +277,7 @@ namespace TeeJee.FileSystem{ string result = _("Deleted"); if (status!=0) result = _("FAILED deleting"); result += ": %s".printf(dir_path); - if (show_message) log_msg(result); else log_debug(result); + if (show_message) log_msg(result); else log_debug("dir_delete():"+result); return (status == 0); } diff --git a/src/Utility/TeeJee.Process.vala b/src/Utility/TeeJee.Process.vala index 96d07cd6..20401f30 100644 --- a/src/Utility/TeeJee.Process.vala +++ b/src/Utility/TeeJee.Process.vala @@ -28,27 +28,15 @@ namespace TeeJee.ProcessHelper{ using TeeJee.FileSystem; using TeeJee.Misc; - public string TEMP_DIR; - /* Convenience functions for executing commands and managing processes */ // execute process --------------------------------- - - public static void init_tmp(){ - - string std_out, std_err; - - TEMP_DIR = Environment.get_tmp_dir() + "/" + BRANDING_SHORTNAME + "_" + random_string(); - dir_create(TEMP_DIR); - log_debug("TEMP_DIR="+TEMP_DIR); - } - - public string create_temp_subdir(string base_dir = ""){ - var temp = "%s/%s".printf((base_dir.length > 0) ? base_dir : TEMP_DIR, random_string()); - dir_create(temp); - - return temp; + public string create_tmp_dir(string p=""){ + string d = App.TMP_PREFIX+"_%s".printf(random_string()); + log_debug("create_tmp_dir:"+p+":"+d); + dir_create(d); + return d; } public int exec_sync (string cmd, out string? std_out = null, out string? std_err = null){ @@ -67,7 +55,13 @@ namespace TeeJee.ProcessHelper{ return -1; } } - + + // 20200510 bkw - execute command without waiting + public void exec_async (string cmd){ + try {Process.spawn_command_line_async (cmd);} + catch (SpawnError e) {log_error (e.message);} + } + public int exec_script_sync (string script, out string? std_out = null, out string? std_err = null, bool supress_errors = false, bool run_as_admin = false, @@ -79,24 +73,24 @@ namespace TeeJee.ProcessHelper{ * std_out, std_err can be null. Output will be written to terminal if null. * */ - string sh_file = save_bash_script_temp(script, null, true, supress_errors); - string sh_file_admin = ""; - + string t_dir = create_tmp_dir("exec_script_sync()"); + string t_f = get_temp_file_path(t_dir); + string sh_file = t_f+".sh"; + save_bash_script_temp(script,sh_file, true, supress_errors); + string su_file = t_f+"_su.sh"; + if (run_as_admin){ - - var script_admin = "#!/bin/bash\n"; - script_admin += "pkexec env DISPLAY=$DISPLAY XAUTHORITY=$XAUTHORITY"; - script_admin += " '%s'".printf(escape_single_quote(sh_file)); - - sh_file_admin = GLib.Path.build_filename(file_parent(sh_file),"script-admin.sh"); + string s = "#!/bin/bash\n" + + "pkexec env DISPLAY=$DISPLAY XAUTHORITY=$XAUTHORITY" + + " '%s'".printf(escape_single_quote(sh_file)); - save_bash_script_temp(script_admin, sh_file_admin, true, supress_errors); + save_bash_script_temp(s, su_file, true, supress_errors); } try { string[] argv = new string[1]; if (run_as_admin){ - argv[0] = sh_file_admin; + argv[0] = su_file; } else{ argv[0] = sh_file; @@ -109,7 +103,7 @@ namespace TeeJee.ProcessHelper{ if (print_to_terminal){ Process.spawn_sync ( - TEMP_DIR, //working dir + t_dir, //working dir argv, //argv env, //environment SpawnFlags.SEARCH_PATH, @@ -122,7 +116,7 @@ namespace TeeJee.ProcessHelper{ else{ Process.spawn_sync ( - TEMP_DIR, //working dir + t_dir, //working dir argv, //argv env, //environment SpawnFlags.SEARCH_PATH, @@ -133,13 +127,18 @@ namespace TeeJee.ProcessHelper{ ); } + string d = "exec_script_sync():"; if (cleanup_tmp){ + d += "file_delete("+sh_file+")"; file_delete(sh_file); if (run_as_admin){ - file_delete(sh_file_admin); + d += ":file_delete("+su_file+")"; + file_delete(su_file); } + d += ":dir_delete("+t_dir+")"; + dir_delete(t_dir); } - + log_debug(d); return exit_code; } catch (Error e){ @@ -150,7 +149,7 @@ namespace TeeJee.ProcessHelper{ } } - public int exec_script_async (string script){ + public int exec_script_async (string s){ /* Executes commands synchronously. * Pipes and multiple commands are fully supported. @@ -160,16 +159,18 @@ namespace TeeJee.ProcessHelper{ try { - string scriptfile = save_bash_script_temp (script); + string t_dir = create_tmp_dir("exec_script_async()"); + string t_file = get_temp_file_path(t_dir); + save_bash_script_temp(s,t_file); string[] argv = new string[1]; - argv[0] = scriptfile; + argv[0] = t_file; string[] env = Environ.get(); Pid child_pid; Process.spawn_async_with_pipes( - TEMP_DIR, //working dir + t_dir, //working dir argv, //argv env, //environment SpawnFlags.SEARCH_PATH, @@ -205,9 +206,12 @@ namespace TeeJee.ProcessHelper{ script.append ("echo ${exitCode} > status\n"); if ((sh_path == null) || (sh_path.length == 0)){ - sh_path = get_temp_file_path() + ".sh"; + string t_dir = create_tmp_dir("**** save_bash_script_temp() ****"); + sh_path = get_temp_file_path(t_dir) + ".sh"; } + log_debug("save_bash_script_temp():sh_path:"+sh_path); + try{ //write script file var file = File.new_for_path (sh_path); @@ -233,11 +237,11 @@ namespace TeeJee.ProcessHelper{ return null; } - public string get_temp_file_path(){ + public string get_temp_file_path(string d){ /* Generates temporary file path */ - return TEMP_DIR + "/" + timestamp_numeric() + (new Rand()).next_int().to_string(); + return d + "/" + timestamp_numeric() + (new Rand()).next_int().to_string(); } public void exec_process_new_session(string command){ From 6ea306b9f777f7e8661093a12ed2ec381edd0b6e Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Sun, 10 May 2020 22:20:05 -0400 Subject: [PATCH 082/567] readme --- .deb_build_number.mak | 2 +- README.md | 34 ---------------------------------- README.md.src | 34 ---------------------------------- debian/changelog | 2 +- 4 files changed, 2 insertions(+), 70 deletions(-) diff --git a/.deb_build_number.mak b/.deb_build_number.mak index 837ce7b6..db588edd 100644 --- a/.deb_build_number.mak +++ b/.deb_build_number.mak @@ -1,3 +1,3 @@ # This file is generated by Makefile "make deb_build_number" DEB_PKG_VERSION := 1.0.9 -DEB_BUILD_NUMBER := 0008 +DEB_BUILD_NUMBER := 0009 diff --git a/README.md b/README.md index 2d34ccdf..63c27dd8 100644 --- a/README.md +++ b/README.md @@ -44,37 +44,3 @@ The original author stopped maintaining the original GPL version of ukuu and swi * Remove source cruft * Better temp and cache directory behavior * Better desktop notification behavior - -### Development Plans / TODO -* 20200506 The new "Show" button to launch mainline-gtk right from the desktop notification isn't fully working yet. The button ony works for the first few seconds after the notification appears. -* More efficient downloading & caching of info about available kernels -* Better (more automatic) initial sizes for the window and the columns in the kernel list display so you don't have to manually expand them -...or at least, remember the sizes the user last set. -* Clean up build warnings -* Clean up run-time GTK warnings -* Make http client configurable (curl/wget/other) -Currently uses aria2c. -Maybe just by moving the aria2c actions into an external script in ~/.config, where the user could do anything they want, rsync, bittorrent, dummy/fake. -* Reduce dependencies, -Do we really need aptitude? -libsoup or other library instead of shell commands for downloads? -* Customizable appearance, at least colors -* Option to specify kernel variant (generic, lowlatency, snapdragon, etc...) -* Improve the annoying pkexec behavior. -It would be nicer to run pkexec (or lxqt-sudo, etc) one time for the whole session, and only have to enter a password once, instead of once per action. -But currently, if you actually do that, it creates files in the users home directory that are owned by root, so don't do that. -This might be addressed by getting the policy kit file working. -* Write a man page -* Make all the terminal & child processes more robust. -It's always really been pretty 9/10ths-baked. -Kernel downloads fail, but work if you just do it again. -dpkg installs fail, but work if you just do it again. -Populating the main window fails, but works if you just do it again. -Determining what is currently installed & running fails, but works if you just do it again -...that is really kind of inexcusable crap and could all be a lot better. -* More careful temp file / temp working dir management. -It does avoidable dumb things like creating dirs/files as one user and then can't remove or use them later as another user. -Maybe do clean_cache() after every action? -https://github.com/joshuadowding/ukuu/commit/ca03723a7a542cd591246a0f6d6a62bad4fac57c -* Maybe replace the entire thing with a bash script, maybe with zenity for an optional gui? -https://github.com/pimlie/ubuntu-mainline-kernel.sh diff --git a/README.md.src b/README.md.src index 3a1535a3..6e088281 100644 --- a/README.md.src +++ b/README.md.src @@ -44,37 +44,3 @@ The original author stopped maintaining the original GPL version of ukuu and swi * Remove source cruft * Better temp and cache directory behavior * Better desktop notification behavior - -### Development Plans / TODO -* 20200506 The new "Show" button to launch mainline-gtk right from the desktop notification isn't fully working yet. The button ony works for the first few seconds after the notification appears. -* More efficient downloading & caching of info about available kernels -* Better (more automatic) initial sizes for the window and the columns in the kernel list display so you don't have to manually expand them -...or at least, remember the sizes the user last set. -* Clean up build warnings -* Clean up run-time GTK warnings -* Make http client configurable (curl/wget/other) -Currently uses aria2c. -Maybe just by moving the aria2c actions into an external script in ~/.config, where the user could do anything they want, rsync, bittorrent, dummy/fake. -* Reduce dependencies, -Do we really need aptitude? -libsoup or other library instead of shell commands for downloads? -* Customizable appearance, at least colors -* Option to specify kernel variant (generic, lowlatency, snapdragon, etc...) -* Improve the annoying pkexec behavior. -It would be nicer to run pkexec (or lxqt-sudo, etc) one time for the whole session, and only have to enter a password once, instead of once per action. -But currently, if you actually do that, it creates files in the users home directory that are owned by root, so don't do that. -This might be addressed by getting the policy kit file working. -* Write a man page -* Make all the terminal & child processes more robust. -It's always really been pretty 9/10ths-baked. -Kernel downloads fail, but work if you just do it again. -dpkg installs fail, but work if you just do it again. -Populating the main window fails, but works if you just do it again. -Determining what is currently installed & running fails, but works if you just do it again -...that is really kind of inexcusable crap and could all be a lot better. -* More careful temp file / temp working dir management. -It does avoidable dumb things like creating dirs/files as one user and then can't remove or use them later as another user. -Maybe do clean_cache() after every action? -https://github.com/joshuadowding/ukuu/commit/ca03723a7a542cd591246a0f6d6a62bad4fac57c -* Maybe replace the entire thing with a bash script, maybe with zenity for an optional gui? -https://github.com/pimlie/ubuntu-mainline-kernel.sh diff --git a/debian/changelog b/debian/changelog index 39df1a22..82b65308 100644 --- a/debian/changelog +++ b/debian/changelog @@ -6,7 +6,7 @@ mainline (1.0.9) unstable; urgency=medium * un-hardcode "/usr" in various paths to installed files * Added some quasi-hidden extra functionality to --debug - -- Brian K. White Thu, 07 May 2020 00:01:27 -0400 + -- Brian K. White Sun, 10 May 2020 22:16:17 -0400 mainline (1.0.8) unstable; urgency=medium From 7bcd0c8ad08adaf938de190f30645e41d93033a2 Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Mon, 11 May 2020 06:47:45 -0400 Subject: [PATCH 083/567] remove excess debugging now that the temp files are fixed --- .deb_build_number.mak | 2 +- po/es.po | 38 ++++++++++++++++---------------- po/fr.po | 38 ++++++++++++++++---------------- po/hr.po | 38 ++++++++++++++++---------------- po/messages.pot | 38 ++++++++++++++++---------------- po/nl.po | 38 ++++++++++++++++---------------- po/pl.po | 38 ++++++++++++++++---------------- po/ru.po | 38 ++++++++++++++++---------------- po/sv.po | 38 ++++++++++++++++---------------- po/tr.po | 38 ++++++++++++++++---------------- po/uk.po | 38 ++++++++++++++++---------------- src/Common/DownloadManager.vala | 2 +- src/Common/Main.vala | 1 - src/Common/Package.vala | 4 ++-- src/Console/AppConsole.vala | 18 +++------------ src/Console/OSDNotify.vala | 2 -- src/Gtk/AppGtk.vala | 4 ++-- src/Gtk/MainWindow.vala | 6 ++--- src/Gtk/TerminalWindow.vala | 4 ---- src/Utility/AsyncTask.vala | 18 +++++++-------- src/Utility/Gtk/AboutWindow.vala | 2 +- src/Utility/TeeJee.Process.vala | 10 ++++----- src/Utility/TeeJee.System.vala | 1 - 23 files changed, 216 insertions(+), 238 deletions(-) diff --git a/.deb_build_number.mak b/.deb_build_number.mak index db588edd..d6ced6e0 100644 --- a/.deb_build_number.mak +++ b/.deb_build_number.mak @@ -1,3 +1,3 @@ # This file is generated by Makefile "make deb_build_number" DEB_PKG_VERSION := 1.0.9 -DEB_BUILD_NUMBER := 0009 +DEB_BUILD_NUMBER := 0010 diff --git a/po/es.po b/po/es.po index 976768a5..60aaad29 100644 --- a/po/es.po +++ b/po/es.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-10 21:20-0400\n" +"POT-Creation-Date: 2020-05-11 06:42-0400\n" "PO-Revision-Date: 2018-01-03 02:03-0600\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish\n" @@ -57,16 +57,16 @@ msgstr "Los siguientes kernels serán eliminados:" msgid "Continue ?" msgstr "¿Continuar?" -#: src/Common/LinuxKernel.vala:744 src/Console/AppConsole.vala:346 +#: src/Common/LinuxKernel.vala:744 src/Console/AppConsole.vala:336 msgid "Latest update" msgstr "" -#: src/Common/LinuxKernel.vala:755 src/Console/AppConsole.vala:353 +#: src/Common/LinuxKernel.vala:755 src/Console/AppConsole.vala:343 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:763 src/Console/AppConsole.vala:358 -#: src/Console/AppConsole.vala:408 +#: src/Common/LinuxKernel.vala:763 src/Console/AppConsole.vala:348 +#: src/Console/AppConsole.vala:398 msgid "No updates found" msgstr "No se encontró ninguna actualización" @@ -150,20 +150,20 @@ msgstr "" "Este núcleo está en ejecución y no se puede desinstalar.\n" "Instale otro núcleo antes de desinstalar este." -#: src/Common/Main.vala:123 +#: src/Common/Main.vala:122 msgid "Commands listed below are not available on this system" msgstr "" "Las órdenes enumeradas a continuación no están disponibles en este sistema" -#: src/Common/Main.vala:124 +#: src/Common/Main.vala:123 msgid "Please install required packages and try again" msgstr "Instale los paquetes requeridos e inténtelo de nuevo" -#: src/Common/Main.vala:270 +#: src/Common/Main.vala:269 msgid "Called from" msgstr "" -#: src/Common/Main.vala:282 +#: src/Common/Main.vala:281 #, fuzzy msgid "Notifications are disabled" msgstr "Notificación" @@ -265,37 +265,37 @@ msgstr "" msgid "Run the application as admin with pkexec or sudo." msgstr "Ejecute la aplicación con permisos administrativos con pkexec o sudo." -#: src/Console/AppConsole.vala:183 src/Gtk/AppGtk.vala:145 +#: src/Console/AppConsole.vala:180 src/Gtk/AppGtk.vala:145 msgid "Unknown option" msgstr "Opción desconocida" -#: src/Console/AppConsole.vala:185 src/Console/AppConsole.vala:298 -#: src/Console/AppConsole.vala:328 +#: src/Console/AppConsole.vala:182 src/Console/AppConsole.vala:289 +#: src/Console/AppConsole.vala:318 msgid "Run '" msgstr "" -#: src/Console/AppConsole.vala:267 src/Console/AppConsole.vala:307 +#: src/Console/AppConsole.vala:261 src/Console/AppConsole.vala:298 msgid "No kernels specified" msgstr "" -#: src/Console/AppConsole.vala:273 +#: src/Console/AppConsole.vala:267 msgid "Multiple kernels selected for installation. Select only one." msgstr "Se seleccionaron varios núcleos para su instalación. Elija solo uno." -#: src/Console/AppConsole.vala:294 src/Gtk/MainWindow.vala:100 +#: src/Console/AppConsole.vala:285 src/Gtk/MainWindow.vala:100 msgid "Could not find requested version" msgstr "No se pudo encontrar la versión solicitada" -#: src/Console/AppConsole.vala:327 +#: src/Console/AppConsole.vala:317 msgid "Command not specified" msgstr "Coomand no especificado" -#: src/Console/AppConsole.vala:380 src/Console/AppConsole.vala:396 +#: src/Console/AppConsole.vala:370 src/Console/AppConsole.vala:386 #, fuzzy, c-format msgid "Kernel %s Available" msgstr "Paquetes disponibles" -#: src/Console/AppConsole.vala:383 src/Console/AppConsole.vala:399 +#: src/Console/AppConsole.vala:373 src/Console/AppConsole.vala:389 #: src/Gtk/MainWindow.vala:335 msgid "Install" msgstr "Instalar" @@ -325,7 +325,7 @@ msgid "Refresh" msgstr "Actualizar" #: src/Gtk/MainWindow.vala:326 src/Gtk/MainWindow.vala:537 -#: src/Gtk/MainWindow.vala:668 src/Utility/TeeJee.System.vala:146 +#: src/Gtk/MainWindow.vala:668 src/Utility/TeeJee.System.vala:145 msgid "Internet connection is not active" msgstr "La conexión a Internet está inactiva" diff --git a/po/fr.po b/po/fr.po index 35dd002b..4ee1c5b0 100644 --- a/po/fr.po +++ b/po/fr.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-10 21:20-0400\n" +"POT-Creation-Date: 2020-05-11 06:42-0400\n" "PO-Revision-Date: 2018-08-05 15:50+0200\n" "Last-Translator: Yolateng0 \n" "Language-Team: French\n" @@ -60,16 +60,16 @@ msgstr "" msgid "Continue ?" msgstr "" -#: src/Common/LinuxKernel.vala:744 src/Console/AppConsole.vala:346 +#: src/Common/LinuxKernel.vala:744 src/Console/AppConsole.vala:336 msgid "Latest update" msgstr "" -#: src/Common/LinuxKernel.vala:755 src/Console/AppConsole.vala:353 +#: src/Common/LinuxKernel.vala:755 src/Console/AppConsole.vala:343 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:763 src/Console/AppConsole.vala:358 -#: src/Console/AppConsole.vala:408 +#: src/Common/LinuxKernel.vala:763 src/Console/AppConsole.vala:348 +#: src/Console/AppConsole.vala:398 msgid "No updates found" msgstr "Aucune mise à jour disponible" @@ -154,19 +154,19 @@ msgstr "" "Ce noyau est en cours d'exécution et ne peut pas être supprimé.\n" " Installez un autre noyau avant de retirer celui-ci." -#: src/Common/Main.vala:123 +#: src/Common/Main.vala:122 msgid "Commands listed below are not available on this system" msgstr "Les commandes listées ne sont pas valables pour ce système" -#: src/Common/Main.vala:124 +#: src/Common/Main.vala:123 msgid "Please install required packages and try again" msgstr "Veuillez installer les paquets requis et réessayer" -#: src/Common/Main.vala:270 +#: src/Common/Main.vala:269 msgid "Called from" msgstr "" -#: src/Common/Main.vala:282 +#: src/Common/Main.vala:281 #, fuzzy msgid "Notifications are disabled" msgstr "Notification" @@ -271,40 +271,40 @@ msgstr "Accès administrateur requis pour lancer cette application." msgid "Run the application as admin with pkexec or sudo." msgstr "Exécutez l'application en tant qu'admin avec pkexec or sudo." -#: src/Console/AppConsole.vala:183 src/Gtk/AppGtk.vala:145 +#: src/Console/AppConsole.vala:180 src/Gtk/AppGtk.vala:145 msgid "Unknown option" msgstr "Option inconnue" -#: src/Console/AppConsole.vala:185 src/Console/AppConsole.vala:298 -#: src/Console/AppConsole.vala:328 +#: src/Console/AppConsole.vala:182 src/Console/AppConsole.vala:289 +#: src/Console/AppConsole.vala:318 msgid "Run '" msgstr "" -#: src/Console/AppConsole.vala:267 src/Console/AppConsole.vala:307 +#: src/Console/AppConsole.vala:261 src/Console/AppConsole.vala:298 msgid "No kernels specified" msgstr "" -#: src/Console/AppConsole.vala:273 +#: src/Console/AppConsole.vala:267 msgid "Multiple kernels selected for installation. Select only one." msgstr "" "Plusieurs noyaux sélectionnés pour être installés. Sélectionnez en seulement " "un." -#: src/Console/AppConsole.vala:294 src/Gtk/MainWindow.vala:100 +#: src/Console/AppConsole.vala:285 src/Gtk/MainWindow.vala:100 msgid "Could not find requested version" msgstr "Impossible de trouver la version demandée" -#: src/Console/AppConsole.vala:327 +#: src/Console/AppConsole.vala:317 #, fuzzy msgid "Command not specified" msgstr "Impossible de trouver le fichier" -#: src/Console/AppConsole.vala:380 src/Console/AppConsole.vala:396 +#: src/Console/AppConsole.vala:370 src/Console/AppConsole.vala:386 #, fuzzy, c-format msgid "Kernel %s Available" msgstr "Paquets disponibles" -#: src/Console/AppConsole.vala:383 src/Console/AppConsole.vala:399 +#: src/Console/AppConsole.vala:373 src/Console/AppConsole.vala:389 #: src/Gtk/MainWindow.vala:335 msgid "Install" msgstr "Installer" @@ -334,7 +334,7 @@ msgid "Refresh" msgstr "Actualiser" #: src/Gtk/MainWindow.vala:326 src/Gtk/MainWindow.vala:537 -#: src/Gtk/MainWindow.vala:668 src/Utility/TeeJee.System.vala:146 +#: src/Gtk/MainWindow.vala:668 src/Utility/TeeJee.System.vala:145 msgid "Internet connection is not active" msgstr "Connexion internet inexistante" diff --git a/po/hr.po b/po/hr.po index 951fcd7a..c921796f 100644 --- a/po/hr.po +++ b/po/hr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-10 21:20-0400\n" +"POT-Creation-Date: 2020-05-11 06:42-0400\n" "PO-Revision-Date: 2017-12-24 00:52+0100\n" "Last-Translator: gogo \n" "Language-Team: Croatian \n" @@ -61,16 +61,16 @@ msgstr "" msgid "Continue ?" msgstr "" -#: src/Common/LinuxKernel.vala:744 src/Console/AppConsole.vala:346 +#: src/Common/LinuxKernel.vala:744 src/Console/AppConsole.vala:336 msgid "Latest update" msgstr "" -#: src/Common/LinuxKernel.vala:755 src/Console/AppConsole.vala:353 +#: src/Common/LinuxKernel.vala:755 src/Console/AppConsole.vala:343 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:763 src/Console/AppConsole.vala:358 -#: src/Console/AppConsole.vala:408 +#: src/Common/LinuxKernel.vala:763 src/Console/AppConsole.vala:348 +#: src/Console/AppConsole.vala:398 msgid "No updates found" msgstr "Nema pronađenih nadopuna" @@ -155,19 +155,19 @@ msgstr "" "Ovaj kernel je trenutno pokrenut i ne može se ukloniti.\n" " Instalirajte drugi kernel prije uklanjanja trenutnog kernela." -#: src/Common/Main.vala:123 +#: src/Common/Main.vala:122 msgid "Commands listed below are not available on this system" msgstr "Naredbe navedene ispod nisu dostupne na ovom sustavu" -#: src/Common/Main.vala:124 +#: src/Common/Main.vala:123 msgid "Please install required packages and try again" msgstr "Instalirajte potrebni paket i pokušajte ponovno" -#: src/Common/Main.vala:270 +#: src/Common/Main.vala:269 msgid "Called from" msgstr "" -#: src/Common/Main.vala:282 +#: src/Common/Main.vala:281 #, fuzzy msgid "Notifications are disabled" msgstr "Obavijesti" @@ -272,37 +272,37 @@ msgstr "Administratorske ovlasti su potrebne za pokretanje ove aplikacije." msgid "Run the application as admin with pkexec or sudo." msgstr "Pokreni aplikaciju kao administrator sa pkexec ili sudo." -#: src/Console/AppConsole.vala:183 src/Gtk/AppGtk.vala:145 +#: src/Console/AppConsole.vala:180 src/Gtk/AppGtk.vala:145 msgid "Unknown option" msgstr "Nepoznata mogućnost" -#: src/Console/AppConsole.vala:185 src/Console/AppConsole.vala:298 -#: src/Console/AppConsole.vala:328 +#: src/Console/AppConsole.vala:182 src/Console/AppConsole.vala:289 +#: src/Console/AppConsole.vala:318 msgid "Run '" msgstr "" -#: src/Console/AppConsole.vala:267 src/Console/AppConsole.vala:307 +#: src/Console/AppConsole.vala:261 src/Console/AppConsole.vala:298 msgid "No kernels specified" msgstr "" -#: src/Console/AppConsole.vala:273 +#: src/Console/AppConsole.vala:267 msgid "Multiple kernels selected for installation. Select only one." msgstr "Više kernela je odabrano za instalaciju. odaberite samo jedan." -#: src/Console/AppConsole.vala:294 src/Gtk/MainWindow.vala:100 +#: src/Console/AppConsole.vala:285 src/Gtk/MainWindow.vala:100 msgid "Could not find requested version" msgstr "Nemoguće je pronaći zatraženu inačicu" -#: src/Console/AppConsole.vala:327 +#: src/Console/AppConsole.vala:317 msgid "Command not specified" msgstr "" -#: src/Console/AppConsole.vala:380 src/Console/AppConsole.vala:396 +#: src/Console/AppConsole.vala:370 src/Console/AppConsole.vala:386 #, fuzzy, c-format msgid "Kernel %s Available" msgstr "Dostupni paketi" -#: src/Console/AppConsole.vala:383 src/Console/AppConsole.vala:399 +#: src/Console/AppConsole.vala:373 src/Console/AppConsole.vala:389 #: src/Gtk/MainWindow.vala:335 msgid "Install" msgstr "Instaliraj" @@ -332,7 +332,7 @@ msgid "Refresh" msgstr "Osvježi" #: src/Gtk/MainWindow.vala:326 src/Gtk/MainWindow.vala:537 -#: src/Gtk/MainWindow.vala:668 src/Utility/TeeJee.System.vala:146 +#: src/Gtk/MainWindow.vala:668 src/Utility/TeeJee.System.vala:145 msgid "Internet connection is not active" msgstr "Internet povezivanje nije aktivno" diff --git a/po/messages.pot b/po/messages.pot index 20f48066..35064308 100644 --- a/po/messages.pot +++ b/po/messages.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline 1.0.9\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-10 21:55-0400\n" +"POT-Creation-Date: 2020-05-11 06:42-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -57,16 +57,16 @@ msgstr "" msgid "Continue ?" msgstr "" -#: src/Common/LinuxKernel.vala:744 src/Console/AppConsole.vala:346 +#: src/Common/LinuxKernel.vala:744 src/Console/AppConsole.vala:336 msgid "Latest update" msgstr "" -#: src/Common/LinuxKernel.vala:755 src/Console/AppConsole.vala:353 +#: src/Common/LinuxKernel.vala:755 src/Console/AppConsole.vala:343 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:763 src/Console/AppConsole.vala:358 -#: src/Console/AppConsole.vala:408 +#: src/Common/LinuxKernel.vala:763 src/Console/AppConsole.vala:348 +#: src/Console/AppConsole.vala:398 msgid "No updates found" msgstr "" @@ -145,19 +145,19 @@ msgid "" " Install another kernel before removing this one." msgstr "" -#: src/Common/Main.vala:123 +#: src/Common/Main.vala:122 msgid "Commands listed below are not available on this system" msgstr "" -#: src/Common/Main.vala:124 +#: src/Common/Main.vala:123 msgid "Please install required packages and try again" msgstr "" -#: src/Common/Main.vala:270 +#: src/Common/Main.vala:269 msgid "Called from" msgstr "" -#: src/Common/Main.vala:282 +#: src/Common/Main.vala:281 msgid "Notifications are disabled" msgstr "" @@ -255,37 +255,37 @@ msgstr "" msgid "Run the application as admin with pkexec or sudo." msgstr "" -#: src/Console/AppConsole.vala:183 src/Gtk/AppGtk.vala:145 +#: src/Console/AppConsole.vala:180 src/Gtk/AppGtk.vala:145 msgid "Unknown option" msgstr "" -#: src/Console/AppConsole.vala:185 src/Console/AppConsole.vala:298 -#: src/Console/AppConsole.vala:328 +#: src/Console/AppConsole.vala:182 src/Console/AppConsole.vala:289 +#: src/Console/AppConsole.vala:318 msgid "Run '" msgstr "" -#: src/Console/AppConsole.vala:267 src/Console/AppConsole.vala:307 +#: src/Console/AppConsole.vala:261 src/Console/AppConsole.vala:298 msgid "No kernels specified" msgstr "" -#: src/Console/AppConsole.vala:273 +#: src/Console/AppConsole.vala:267 msgid "Multiple kernels selected for installation. Select only one." msgstr "" -#: src/Console/AppConsole.vala:294 src/Gtk/MainWindow.vala:100 +#: src/Console/AppConsole.vala:285 src/Gtk/MainWindow.vala:100 msgid "Could not find requested version" msgstr "" -#: src/Console/AppConsole.vala:327 +#: src/Console/AppConsole.vala:317 msgid "Command not specified" msgstr "" -#: src/Console/AppConsole.vala:380 src/Console/AppConsole.vala:396 +#: src/Console/AppConsole.vala:370 src/Console/AppConsole.vala:386 #, c-format msgid "Kernel %s Available" msgstr "" -#: src/Console/AppConsole.vala:383 src/Console/AppConsole.vala:399 +#: src/Console/AppConsole.vala:373 src/Console/AppConsole.vala:389 #: src/Gtk/MainWindow.vala:335 msgid "Install" msgstr "" @@ -315,7 +315,7 @@ msgid "Refresh" msgstr "" #: src/Gtk/MainWindow.vala:326 src/Gtk/MainWindow.vala:537 -#: src/Gtk/MainWindow.vala:668 src/Utility/TeeJee.System.vala:146 +#: src/Gtk/MainWindow.vala:668 src/Utility/TeeJee.System.vala:145 msgid "Internet connection is not active" msgstr "" diff --git a/po/nl.po b/po/nl.po index 0a7294de..fe074d40 100644 --- a/po/nl.po +++ b/po/nl.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu 2.2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-10 21:20-0400\n" +"POT-Creation-Date: 2020-05-11 06:42-0400\n" "PO-Revision-Date: 2017-04-30 11:50+0200\n" "Last-Translator: Heimen Stoffels \n" "Language-Team: \n" @@ -61,16 +61,16 @@ msgstr "" msgid "Continue ?" msgstr "" -#: src/Common/LinuxKernel.vala:744 src/Console/AppConsole.vala:346 +#: src/Common/LinuxKernel.vala:744 src/Console/AppConsole.vala:336 msgid "Latest update" msgstr "" -#: src/Common/LinuxKernel.vala:755 src/Console/AppConsole.vala:353 +#: src/Common/LinuxKernel.vala:755 src/Console/AppConsole.vala:343 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:763 src/Console/AppConsole.vala:358 -#: src/Console/AppConsole.vala:408 +#: src/Common/LinuxKernel.vala:763 src/Console/AppConsole.vala:348 +#: src/Console/AppConsole.vala:398 msgid "No updates found" msgstr "Geen updates gevonden" @@ -156,19 +156,19 @@ msgstr "" "Deze kernel is momenteel in gebruik en kan daarom niet worden verwijderd.\n" " Installeer een andere kernel voordat u deze verwijdert." -#: src/Common/Main.vala:123 +#: src/Common/Main.vala:122 msgid "Commands listed below are not available on this system" msgstr "De onderstaande opdrachten zijn niet beschikbaar op dit systeem" -#: src/Common/Main.vala:124 +#: src/Common/Main.vala:123 msgid "Please install required packages and try again" msgstr "Installeer de vereiste pakketten en probeer het opnieuw" -#: src/Common/Main.vala:270 +#: src/Common/Main.vala:269 msgid "Called from" msgstr "" -#: src/Common/Main.vala:282 +#: src/Common/Main.vala:281 #, fuzzy msgid "Notifications are disabled" msgstr "Melding" @@ -275,39 +275,39 @@ msgstr "" msgid "Run the application as admin with pkexec or sudo." msgstr "Draai de applicatie als root of m.b.v. gksu/sudo." -#: src/Console/AppConsole.vala:183 src/Gtk/AppGtk.vala:145 +#: src/Console/AppConsole.vala:180 src/Gtk/AppGtk.vala:145 msgid "Unknown option" msgstr "Onbekende optie" -#: src/Console/AppConsole.vala:185 src/Console/AppConsole.vala:298 -#: src/Console/AppConsole.vala:328 +#: src/Console/AppConsole.vala:182 src/Console/AppConsole.vala:289 +#: src/Console/AppConsole.vala:318 msgid "Run '" msgstr "" -#: src/Console/AppConsole.vala:267 src/Console/AppConsole.vala:307 +#: src/Console/AppConsole.vala:261 src/Console/AppConsole.vala:298 msgid "No kernels specified" msgstr "" -#: src/Console/AppConsole.vala:273 +#: src/Console/AppConsole.vala:267 msgid "Multiple kernels selected for installation. Select only one." msgstr "" "Er zijn meerdere te installeren kernels geselecteerd. Selecteer er slechts " "één." -#: src/Console/AppConsole.vala:294 src/Gtk/MainWindow.vala:100 +#: src/Console/AppConsole.vala:285 src/Gtk/MainWindow.vala:100 msgid "Could not find requested version" msgstr "De vereiste versie kan niet worden gevonden" -#: src/Console/AppConsole.vala:327 +#: src/Console/AppConsole.vala:317 msgid "Command not specified" msgstr "" -#: src/Console/AppConsole.vala:380 src/Console/AppConsole.vala:396 +#: src/Console/AppConsole.vala:370 src/Console/AppConsole.vala:386 #, fuzzy, c-format msgid "Kernel %s Available" msgstr "Beschikbare pakketten" -#: src/Console/AppConsole.vala:383 src/Console/AppConsole.vala:399 +#: src/Console/AppConsole.vala:373 src/Console/AppConsole.vala:389 #: src/Gtk/MainWindow.vala:335 msgid "Install" msgstr "Installeren" @@ -337,7 +337,7 @@ msgid "Refresh" msgstr "Verversen" #: src/Gtk/MainWindow.vala:326 src/Gtk/MainWindow.vala:537 -#: src/Gtk/MainWindow.vala:668 src/Utility/TeeJee.System.vala:146 +#: src/Gtk/MainWindow.vala:668 src/Utility/TeeJee.System.vala:145 msgid "Internet connection is not active" msgstr "U bent niet verbonden met het internet" diff --git a/po/pl.po b/po/pl.po index 508e8e49..9f74dbf6 100644 --- a/po/pl.po +++ b/po/pl.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-10 21:20-0400\n" +"POT-Creation-Date: 2020-05-11 06:42-0400\n" "PO-Revision-Date: 2017-08-12 15:26+0200\n" "Last-Translator: Waldemar Konik \n" "Language-Team: Polish\n" @@ -59,16 +59,16 @@ msgstr "" msgid "Continue ?" msgstr "" -#: src/Common/LinuxKernel.vala:744 src/Console/AppConsole.vala:346 +#: src/Common/LinuxKernel.vala:744 src/Console/AppConsole.vala:336 msgid "Latest update" msgstr "" -#: src/Common/LinuxKernel.vala:755 src/Console/AppConsole.vala:353 +#: src/Common/LinuxKernel.vala:755 src/Console/AppConsole.vala:343 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:763 src/Console/AppConsole.vala:358 -#: src/Console/AppConsole.vala:408 +#: src/Common/LinuxKernel.vala:763 src/Console/AppConsole.vala:348 +#: src/Console/AppConsole.vala:398 msgid "No updates found" msgstr "Nie znaleziono aktualizacji" @@ -153,19 +153,19 @@ msgstr "" "To jądro aktualnie działa i nie może zostać usunięte.\n" " Zainstaluj inne jądro przed usunięciem tego." -#: src/Common/Main.vala:123 +#: src/Common/Main.vala:122 msgid "Commands listed below are not available on this system" msgstr "Poniższe polecenia nie są dostępne na tym systemie" -#: src/Common/Main.vala:124 +#: src/Common/Main.vala:123 msgid "Please install required packages and try again" msgstr "Zainstaluj wymagane pakiety i spróbuj ponownie" -#: src/Common/Main.vala:270 +#: src/Common/Main.vala:269 msgid "Called from" msgstr "" -#: src/Common/Main.vala:282 +#: src/Common/Main.vala:281 #, fuzzy msgid "Notifications are disabled" msgstr "Powiadomienia" @@ -271,37 +271,37 @@ msgstr "Aby uruchomić tę aplikację niezbędne są prawa administratora." msgid "Run the application as admin with pkexec or sudo." msgstr "Uruchom aplikację jako root albo użyj gksu/sudo." -#: src/Console/AppConsole.vala:183 src/Gtk/AppGtk.vala:145 +#: src/Console/AppConsole.vala:180 src/Gtk/AppGtk.vala:145 msgid "Unknown option" msgstr "Nieznana opcja" -#: src/Console/AppConsole.vala:185 src/Console/AppConsole.vala:298 -#: src/Console/AppConsole.vala:328 +#: src/Console/AppConsole.vala:182 src/Console/AppConsole.vala:289 +#: src/Console/AppConsole.vala:318 msgid "Run '" msgstr "" -#: src/Console/AppConsole.vala:267 src/Console/AppConsole.vala:307 +#: src/Console/AppConsole.vala:261 src/Console/AppConsole.vala:298 msgid "No kernels specified" msgstr "" -#: src/Console/AppConsole.vala:273 +#: src/Console/AppConsole.vala:267 msgid "Multiple kernels selected for installation. Select only one." msgstr "Wybrano kilka jąder do instalacji. Wybierz tylko jedno." -#: src/Console/AppConsole.vala:294 src/Gtk/MainWindow.vala:100 +#: src/Console/AppConsole.vala:285 src/Gtk/MainWindow.vala:100 msgid "Could not find requested version" msgstr "Nie można odnaleźć żądanej wersji" -#: src/Console/AppConsole.vala:327 +#: src/Console/AppConsole.vala:317 msgid "Command not specified" msgstr "" -#: src/Console/AppConsole.vala:380 src/Console/AppConsole.vala:396 +#: src/Console/AppConsole.vala:370 src/Console/AppConsole.vala:386 #, fuzzy, c-format msgid "Kernel %s Available" msgstr "Dostępne pakiety" -#: src/Console/AppConsole.vala:383 src/Console/AppConsole.vala:399 +#: src/Console/AppConsole.vala:373 src/Console/AppConsole.vala:389 #: src/Gtk/MainWindow.vala:335 msgid "Install" msgstr "Zainstaluj" @@ -331,7 +331,7 @@ msgid "Refresh" msgstr "Odśwież" #: src/Gtk/MainWindow.vala:326 src/Gtk/MainWindow.vala:537 -#: src/Gtk/MainWindow.vala:668 src/Utility/TeeJee.System.vala:146 +#: src/Gtk/MainWindow.vala:668 src/Utility/TeeJee.System.vala:145 msgid "Internet connection is not active" msgstr "Brak połączenia z internetem" diff --git a/po/ru.po b/po/ru.po index 2c6afaa1..9b811e77 100644 --- a/po/ru.po +++ b/po/ru.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-10 21:20-0400\n" +"POT-Creation-Date: 2020-05-11 06:42-0400\n" "PO-Revision-Date: 2016-12-13 16:46+0300\n" "Last-Translator: Faust3000 \n" "Language-Team: Russian \n" @@ -61,16 +61,16 @@ msgstr "" msgid "Continue ?" msgstr "" -#: src/Common/LinuxKernel.vala:744 src/Console/AppConsole.vala:346 +#: src/Common/LinuxKernel.vala:744 src/Console/AppConsole.vala:336 msgid "Latest update" msgstr "" -#: src/Common/LinuxKernel.vala:755 src/Console/AppConsole.vala:353 +#: src/Common/LinuxKernel.vala:755 src/Console/AppConsole.vala:343 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:763 src/Console/AppConsole.vala:358 -#: src/Console/AppConsole.vala:408 +#: src/Common/LinuxKernel.vala:763 src/Console/AppConsole.vala:348 +#: src/Console/AppConsole.vala:398 msgid "No updates found" msgstr "Обновлений не найдено" @@ -158,19 +158,19 @@ msgstr "" "Это ядро в настоящий момент работает и не может быть удалено.\n" " Установите другое ядро, прежде чем удалять его." -#: src/Common/Main.vala:123 +#: src/Common/Main.vala:122 msgid "Commands listed below are not available on this system" msgstr "Команды перечисленные ниже недоступны на этой системе" -#: src/Common/Main.vala:124 +#: src/Common/Main.vala:123 msgid "Please install required packages and try again" msgstr "Установить необходимые пакеты и попробуйте снова" -#: src/Common/Main.vala:270 +#: src/Common/Main.vala:269 msgid "Called from" msgstr "" -#: src/Common/Main.vala:282 +#: src/Common/Main.vala:281 #, fuzzy msgid "Notifications are disabled" msgstr "Уведомления" @@ -276,37 +276,37 @@ msgstr "Для запуска программы требуются права msgid "Run the application as admin with pkexec or sudo." msgstr "Запустите программу с правами Root или используйте gksu/sudo." -#: src/Console/AppConsole.vala:183 src/Gtk/AppGtk.vala:145 +#: src/Console/AppConsole.vala:180 src/Gtk/AppGtk.vala:145 msgid "Unknown option" msgstr "Неизвестный параметр" -#: src/Console/AppConsole.vala:185 src/Console/AppConsole.vala:298 -#: src/Console/AppConsole.vala:328 +#: src/Console/AppConsole.vala:182 src/Console/AppConsole.vala:289 +#: src/Console/AppConsole.vala:318 msgid "Run '" msgstr "" -#: src/Console/AppConsole.vala:267 src/Console/AppConsole.vala:307 +#: src/Console/AppConsole.vala:261 src/Console/AppConsole.vala:298 msgid "No kernels specified" msgstr "" -#: src/Console/AppConsole.vala:273 +#: src/Console/AppConsole.vala:267 msgid "Multiple kernels selected for installation. Select only one." msgstr "" -#: src/Console/AppConsole.vala:294 src/Gtk/MainWindow.vala:100 +#: src/Console/AppConsole.vala:285 src/Gtk/MainWindow.vala:100 msgid "Could not find requested version" msgstr "Не удалось найти запрошенную версию" -#: src/Console/AppConsole.vala:327 +#: src/Console/AppConsole.vala:317 msgid "Command not specified" msgstr "" -#: src/Console/AppConsole.vala:380 src/Console/AppConsole.vala:396 +#: src/Console/AppConsole.vala:370 src/Console/AppConsole.vala:386 #, fuzzy, c-format msgid "Kernel %s Available" msgstr "Установлено" -#: src/Console/AppConsole.vala:383 src/Console/AppConsole.vala:399 +#: src/Console/AppConsole.vala:373 src/Console/AppConsole.vala:389 #: src/Gtk/MainWindow.vala:335 msgid "Install" msgstr "Установить" @@ -336,7 +336,7 @@ msgid "Refresh" msgstr "Обновить" #: src/Gtk/MainWindow.vala:326 src/Gtk/MainWindow.vala:537 -#: src/Gtk/MainWindow.vala:668 src/Utility/TeeJee.System.vala:146 +#: src/Gtk/MainWindow.vala:668 src/Utility/TeeJee.System.vala:145 msgid "Internet connection is not active" msgstr "Интернет соединение не активно" diff --git a/po/sv.po b/po/sv.po index e343b911..7b3becc9 100644 --- a/po/sv.po +++ b/po/sv.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu 2.2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-10 21:20-0400\n" +"POT-Creation-Date: 2020-05-11 06:42-0400\n" "PO-Revision-Date: 2018-01-13 16:56+0100\n" "Last-Translator: Åke Engelbrektson \n" "Language-Team: Svenska Språkfiler \n" @@ -62,16 +62,16 @@ msgstr "" msgid "Continue ?" msgstr "" -#: src/Common/LinuxKernel.vala:744 src/Console/AppConsole.vala:346 +#: src/Common/LinuxKernel.vala:744 src/Console/AppConsole.vala:336 msgid "Latest update" msgstr "" -#: src/Common/LinuxKernel.vala:755 src/Console/AppConsole.vala:353 +#: src/Common/LinuxKernel.vala:755 src/Console/AppConsole.vala:343 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:763 src/Console/AppConsole.vala:358 -#: src/Console/AppConsole.vala:408 +#: src/Common/LinuxKernel.vala:763 src/Console/AppConsole.vala:348 +#: src/Console/AppConsole.vala:398 msgid "No updates found" msgstr "Inga uppdateringar hittades" @@ -154,19 +154,19 @@ msgstr "" "Denna kärna används för tillfället och kan inte tas bort.\n" "Installera en annan kärna innan du tar bort den här." -#: src/Common/Main.vala:123 +#: src/Common/Main.vala:122 msgid "Commands listed below are not available on this system" msgstr "Kommandon listade nedan, finns inte tillgängliga i detta system." -#: src/Common/Main.vala:124 +#: src/Common/Main.vala:123 msgid "Please install required packages and try again" msgstr "Installera nödvändiga paket och försök igen" -#: src/Common/Main.vala:270 +#: src/Common/Main.vala:269 msgid "Called from" msgstr "" -#: src/Common/Main.vala:282 +#: src/Common/Main.vala:281 #, fuzzy msgid "Notifications are disabled" msgstr "Avisering" @@ -271,37 +271,37 @@ msgstr "Root-åtkomst krävs för att köra detta program." msgid "Run the application as admin with pkexec or sudo." msgstr "Kör programmet som administratör, med pkexec eller sudo." -#: src/Console/AppConsole.vala:183 src/Gtk/AppGtk.vala:145 +#: src/Console/AppConsole.vala:180 src/Gtk/AppGtk.vala:145 msgid "Unknown option" msgstr "Okänt alternativ" -#: src/Console/AppConsole.vala:185 src/Console/AppConsole.vala:298 -#: src/Console/AppConsole.vala:328 +#: src/Console/AppConsole.vala:182 src/Console/AppConsole.vala:289 +#: src/Console/AppConsole.vala:318 msgid "Run '" msgstr "" -#: src/Console/AppConsole.vala:267 src/Console/AppConsole.vala:307 +#: src/Console/AppConsole.vala:261 src/Console/AppConsole.vala:298 msgid "No kernels specified" msgstr "" -#: src/Console/AppConsole.vala:273 +#: src/Console/AppConsole.vala:267 msgid "Multiple kernels selected for installation. Select only one." msgstr "Flera kärnor valda för installation. Välj endast en." -#: src/Console/AppConsole.vala:294 src/Gtk/MainWindow.vala:100 +#: src/Console/AppConsole.vala:285 src/Gtk/MainWindow.vala:100 msgid "Could not find requested version" msgstr "Kunde inte hitta efterfrågad version" -#: src/Console/AppConsole.vala:327 +#: src/Console/AppConsole.vala:317 msgid "Command not specified" msgstr "" -#: src/Console/AppConsole.vala:380 src/Console/AppConsole.vala:396 +#: src/Console/AppConsole.vala:370 src/Console/AppConsole.vala:386 #, fuzzy, c-format msgid "Kernel %s Available" msgstr "Tillgängliga paket" -#: src/Console/AppConsole.vala:383 src/Console/AppConsole.vala:399 +#: src/Console/AppConsole.vala:373 src/Console/AppConsole.vala:389 #: src/Gtk/MainWindow.vala:335 msgid "Install" msgstr "Installera" @@ -331,7 +331,7 @@ msgid "Refresh" msgstr "Uppdatera" #: src/Gtk/MainWindow.vala:326 src/Gtk/MainWindow.vala:537 -#: src/Gtk/MainWindow.vala:668 src/Utility/TeeJee.System.vala:146 +#: src/Gtk/MainWindow.vala:668 src/Utility/TeeJee.System.vala:145 msgid "Internet connection is not active" msgstr "Internetuppkopplingen är inte aktiv" diff --git a/po/tr.po b/po/tr.po index 9474a51b..909f2920 100644 --- a/po/tr.po +++ b/po/tr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-10 21:20-0400\n" +"POT-Creation-Date: 2020-05-11 06:42-0400\n" "PO-Revision-Date: 2020-03-10 15:59+0300\n" "Last-Translator: Gökhan GÖKKAYA \n" "Language-Team: Turkish\n" @@ -58,16 +58,16 @@ msgstr "Aşağıdaki çekirdekler silinecek:" msgid "Continue ?" msgstr "Devam et ?" -#: src/Common/LinuxKernel.vala:744 src/Console/AppConsole.vala:346 +#: src/Common/LinuxKernel.vala:744 src/Console/AppConsole.vala:336 msgid "Latest update" msgstr "Son güncelleme" -#: src/Common/LinuxKernel.vala:755 src/Console/AppConsole.vala:353 +#: src/Common/LinuxKernel.vala:755 src/Console/AppConsole.vala:343 msgid "Latest point update" msgstr "Son güncelleme noktası" -#: src/Common/LinuxKernel.vala:763 src/Console/AppConsole.vala:358 -#: src/Console/AppConsole.vala:408 +#: src/Common/LinuxKernel.vala:763 src/Console/AppConsole.vala:348 +#: src/Console/AppConsole.vala:398 msgid "No updates found" msgstr "Güncelleme bulunamadı" @@ -151,19 +151,19 @@ msgstr "" "Bu çekirdek şu anda çalışıyor ve bu sebeple kaldırılamaz.\n" "Bunu kaldırmadan önce başka bir çekirdek yükleyin." -#: src/Common/Main.vala:123 +#: src/Common/Main.vala:122 msgid "Commands listed below are not available on this system" msgstr "Aşağıda listelenen komutlar bu sistemde mevcut değil" -#: src/Common/Main.vala:124 +#: src/Common/Main.vala:123 msgid "Please install required packages and try again" msgstr "Lütfen gerekli paketleri yükleyin ve tekrar deneyin" -#: src/Common/Main.vala:270 +#: src/Common/Main.vala:269 msgid "Called from" msgstr "" -#: src/Common/Main.vala:282 +#: src/Common/Main.vala:281 #, fuzzy msgid "Notifications are disabled" msgstr "Bildirim" @@ -264,37 +264,37 @@ msgstr "Bu uygulamayı çalıştırmak için yönetici izni gerekiyor." msgid "Run the application as admin with pkexec or sudo." msgstr "Bu uygulamayı pkexec yada sudo ile yönetici haklarıyla çalıştırın." -#: src/Console/AppConsole.vala:183 src/Gtk/AppGtk.vala:145 +#: src/Console/AppConsole.vala:180 src/Gtk/AppGtk.vala:145 msgid "Unknown option" msgstr "Bilinmeyen seçenek" -#: src/Console/AppConsole.vala:185 src/Console/AppConsole.vala:298 -#: src/Console/AppConsole.vala:328 +#: src/Console/AppConsole.vala:182 src/Console/AppConsole.vala:289 +#: src/Console/AppConsole.vala:318 msgid "Run '" msgstr "Çalıştır '" -#: src/Console/AppConsole.vala:267 src/Console/AppConsole.vala:307 +#: src/Console/AppConsole.vala:261 src/Console/AppConsole.vala:298 msgid "No kernels specified" msgstr "Belirtilen çekirdek yok" -#: src/Console/AppConsole.vala:273 +#: src/Console/AppConsole.vala:267 msgid "Multiple kernels selected for installation. Select only one." msgstr "Kurulum için çoklu çekirdek seçildi. Sadece bir tane seçiniz." -#: src/Console/AppConsole.vala:294 src/Gtk/MainWindow.vala:100 +#: src/Console/AppConsole.vala:285 src/Gtk/MainWindow.vala:100 msgid "Could not find requested version" msgstr "İstenen sürüm bulunamadı" -#: src/Console/AppConsole.vala:327 +#: src/Console/AppConsole.vala:317 msgid "Command not specified" msgstr "Komut belirtilmedi" -#: src/Console/AppConsole.vala:380 src/Console/AppConsole.vala:396 +#: src/Console/AppConsole.vala:370 src/Console/AppConsole.vala:386 #, fuzzy, c-format msgid "Kernel %s Available" msgstr "Mevcut Paketler" -#: src/Console/AppConsole.vala:383 src/Console/AppConsole.vala:399 +#: src/Console/AppConsole.vala:373 src/Console/AppConsole.vala:389 #: src/Gtk/MainWindow.vala:335 msgid "Install" msgstr "Kur" @@ -324,7 +324,7 @@ msgid "Refresh" msgstr "Yenile" #: src/Gtk/MainWindow.vala:326 src/Gtk/MainWindow.vala:537 -#: src/Gtk/MainWindow.vala:668 src/Utility/TeeJee.System.vala:146 +#: src/Gtk/MainWindow.vala:668 src/Utility/TeeJee.System.vala:145 msgid "Internet connection is not active" msgstr "İnternet bağlantısı aktif değil" diff --git a/po/uk.po b/po/uk.po index 8bddcfa1..7fb65313 100644 --- a/po/uk.po +++ b/po/uk.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: ukuu\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-10 21:20-0400\n" +"POT-Creation-Date: 2020-05-11 06:42-0400\n" "PO-Revision-Date: 2019-07-25 11:00+0300\n" "Last-Translator: Serhii Golovko \n" "Language-Team: Ukranian \n" @@ -53,16 +53,16 @@ msgstr "Наступні ядра будуть видалені:" msgid "Continue ?" msgstr "Продовжувати ?" -#: src/Common/LinuxKernel.vala:744 src/Console/AppConsole.vala:346 +#: src/Common/LinuxKernel.vala:744 src/Console/AppConsole.vala:336 msgid "Latest update" msgstr "Останнє оновлення" -#: src/Common/LinuxKernel.vala:755 src/Console/AppConsole.vala:353 +#: src/Common/LinuxKernel.vala:755 src/Console/AppConsole.vala:343 msgid "Latest point update" msgstr "Остання точка оновлення" -#: src/Common/LinuxKernel.vala:763 src/Console/AppConsole.vala:358 -#: src/Console/AppConsole.vala:408 +#: src/Common/LinuxKernel.vala:763 src/Console/AppConsole.vala:348 +#: src/Console/AppConsole.vala:398 msgid "No updates found" msgstr "Оновлень не знайдено" @@ -147,19 +147,19 @@ msgstr "" "Это ядро в настоящий момент работает и не может быть удалено.\n" " Установите другое ядро, прежде чем удалять его." -#: src/Common/Main.vala:123 +#: src/Common/Main.vala:122 msgid "Commands listed below are not available on this system" msgstr "Команди перераховані нижче недоступні на цій системі" -#: src/Common/Main.vala:124 +#: src/Common/Main.vala:123 msgid "Please install required packages and try again" msgstr "Встановити необхідні пакети і спробуйте знову" -#: src/Common/Main.vala:270 +#: src/Common/Main.vala:269 msgid "Called from" msgstr "" -#: src/Common/Main.vala:282 +#: src/Common/Main.vala:281 #, fuzzy msgid "Notifications are disabled" msgstr "Повідомлення" @@ -260,37 +260,37 @@ msgstr "Для запуску програми потрібно мати пра msgid "Run the application as admin with pkexec or sudo." msgstr "Запустіть додаток як адміністратор за допомогою pkexec або sudo." -#: src/Console/AppConsole.vala:183 src/Gtk/AppGtk.vala:145 +#: src/Console/AppConsole.vala:180 src/Gtk/AppGtk.vala:145 msgid "Unknown option" msgstr "Невідомий параметр" -#: src/Console/AppConsole.vala:185 src/Console/AppConsole.vala:298 -#: src/Console/AppConsole.vala:328 +#: src/Console/AppConsole.vala:182 src/Console/AppConsole.vala:289 +#: src/Console/AppConsole.vala:318 msgid "Run '" msgstr "Запуск" -#: src/Console/AppConsole.vala:267 src/Console/AppConsole.vala:307 +#: src/Console/AppConsole.vala:261 src/Console/AppConsole.vala:298 msgid "No kernels specified" msgstr "Ядра не вказані" -#: src/Console/AppConsole.vala:273 +#: src/Console/AppConsole.vala:267 msgid "Multiple kernels selected for installation. Select only one." msgstr "Для встановлення вибрано кілька ядер. Виберіть лише одну." -#: src/Console/AppConsole.vala:294 src/Gtk/MainWindow.vala:100 +#: src/Console/AppConsole.vala:285 src/Gtk/MainWindow.vala:100 msgid "Could not find requested version" msgstr "Не вдалося знайти запитувану версію" -#: src/Console/AppConsole.vala:327 +#: src/Console/AppConsole.vala:317 msgid "Command not specified" msgstr "Команда не вказана" -#: src/Console/AppConsole.vala:380 src/Console/AppConsole.vala:396 +#: src/Console/AppConsole.vala:370 src/Console/AppConsole.vala:386 #, fuzzy, c-format msgid "Kernel %s Available" msgstr "Доступні пакети" -#: src/Console/AppConsole.vala:383 src/Console/AppConsole.vala:399 +#: src/Console/AppConsole.vala:373 src/Console/AppConsole.vala:389 #: src/Gtk/MainWindow.vala:335 msgid "Install" msgstr "Встановити" @@ -320,7 +320,7 @@ msgid "Refresh" msgstr "Оновити" #: src/Gtk/MainWindow.vala:326 src/Gtk/MainWindow.vala:537 -#: src/Gtk/MainWindow.vala:668 src/Utility/TeeJee.System.vala:146 +#: src/Gtk/MainWindow.vala:668 src/Utility/TeeJee.System.vala:145 msgid "Internet connection is not active" msgstr "Інтернет з'єднання не активно" diff --git a/src/Common/DownloadManager.vala b/src/Common/DownloadManager.vala index 1b99cd03..d7979f28 100644 --- a/src/Common/DownloadManager.vala +++ b/src/Common/DownloadManager.vala @@ -291,7 +291,7 @@ public class DownloadItem : GLib.Object file_name = _file_name; download_dir = _download_dir; - partial_dir = create_tmp_dir("DownloadItem()"); + partial_dir = create_tmp_dir(); source_uri = _source_uri; } diff --git a/src/Common/Main.vala b/src/Common/Main.vala index d74bfd15..37688d67 100644 --- a/src/Common/Main.vala +++ b/src/Common/Main.vala @@ -51,7 +51,6 @@ public class Main : GLib.Object{ // constants ---------- public string TMP_PREFIX = ""; - public string TMP_DIR = ""; public string APP_CONF_DIR = ""; public string APP_CONFIG_FILE = ""; public string STARTUP_SCRIPT_FILE = ""; diff --git a/src/Common/Package.vala b/src/Common/Package.vala index 09c6672f..452346ef 100644 --- a/src/Common/Package.vala +++ b/src/Common/Package.vala @@ -78,7 +78,7 @@ public class Package : GLib.Object { var list = new Gee.HashMap(); - string t_dir = create_tmp_dir("query_installed_packages()"); + string t_dir = create_tmp_dir(); string t_file = get_temp_file_path(t_dir); // get installed packages from aptitude -------------- @@ -146,7 +146,7 @@ linux-image-unsigned-5.6.10-050610-generic|5.6.10-050610.202005052153||Linux ker var list = new Gee.HashMap(); - string t_dir = create_tmp_dir("query_available_packages()"); + string t_dir = create_tmp_dir(); string t_file = get_temp_file_path(t_dir); // get installed packages from aptitude -------------- diff --git a/src/Console/AppConsole.vala b/src/Console/AppConsole.vala index d7c00e4e..a869a8a9 100644 --- a/src/Console/AppConsole.vala +++ b/src/Console/AppConsole.vala @@ -113,12 +113,9 @@ public class AppConsole : GLib.Object { txt += "'%s' ".printf(args[k]); } - //log_msg("AppConsole.vala:parse_arguments() txt="+txt); - // check argument count ----------------- if (args.length == 1) { - //no args given log_msg(help_message()); return false; } @@ -128,7 +125,7 @@ public class AppConsole : GLib.Object { // parse options first -------------- - for (int k = 1; k < args.length; k++) // Oth arg is app path + for (int k = 1; k < args.length; k++) { switch (args[k].down()) { case "--debug": @@ -189,8 +186,6 @@ public class AppConsole : GLib.Object { // run command -------------------------------------- - //log_msg ("cmd:"+cmd); - switch (cmd) { case "--list": @@ -262,7 +257,6 @@ public class AppConsole : GLib.Object { LinuxKernel.query(true); - //log_msg("if(cmd_versions.length==0)"); if (cmd_versions.length==0){ log_error(_("No kernels specified")); exit(1); @@ -277,12 +271,9 @@ public class AppConsole : GLib.Object { var list = new Gee.ArrayList(); foreach(string requested_version in requested_versions){ - //log_msg("requested_version:"+requested_version); //### - LinuxKernel kern_requested = null; foreach(var kern in LinuxKernel.kernel_list){ // match --list output - //log_msg("kern.version_main:"+kern.version_main); //### if (kern.version_main == requested_version){ kern_requested = kern; break; @@ -310,7 +301,6 @@ public class AppConsole : GLib.Object { switch(cmd){ case "--download": - //log_msg("--download"); //### return LinuxKernel.download_kernels(list); case "--remove": @@ -381,7 +371,7 @@ public class AppConsole : GLib.Object { if (App.notify_bubble){ string extra_action = _("Install")+":"+BRANDING_SHORTNAME+"-gtk --install "+kern.version_main; - OSDNotify.notify_send(title,"major",extra_action); + OSDNotify.notify_send(title,"",extra_action); } log_msg(title); @@ -397,7 +387,7 @@ public class AppConsole : GLib.Object { if (App.notify_bubble){ string extra_action = _("Install")+":"+BRANDING_SHORTNAME+"-gtk --install "+kern.version_main; - OSDNotify.notify_send(title,"minor",extra_action); + OSDNotify.notify_send(title,"",extra_action); } log_msg(title); @@ -409,9 +399,7 @@ public class AppConsole : GLib.Object { } public void check_if_internet_is_active(bool exit_app = true){ - //log_msg("check_if_internet_is_active()"); //### if (!check_internet_connectivity()){ - if (exit_app){ exit(1); } diff --git a/src/Console/OSDNotify.vala b/src/Console/OSDNotify.vala index 2b2d348b..850fe64a 100644 --- a/src/Console/OSDNotify.vala +++ b/src/Console/OSDNotify.vala @@ -72,8 +72,6 @@ public class OSDNotify : GLib.Object { exec_async (s); - // retVal = exec_sync (s, null, null); - dt_last_notification = new DateTime.now_local(); } diff --git a/src/Gtk/AppGtk.vala b/src/Gtk/AppGtk.vala index 34e563d6..cb706454 100644 --- a/src/Gtk/AppGtk.vala +++ b/src/Gtk/AppGtk.vala @@ -96,7 +96,7 @@ public class AppGtk : GLib.Object { App.command = "list"; //parse options - for (int k = 1; k < args.length; k++) // Oth arg is app path + for (int k = 1; k < args.length; k++) { switch (args[k].down()) { @@ -113,7 +113,7 @@ public class AppGtk : GLib.Object { } } - for (int k = 1; k < args.length; k++) // Oth arg is app path + for (int k = 1; k < args.length; k++) { switch (args[k].down()) { diff --git a/src/Gtk/MainWindow.vala b/src/Gtk/MainWindow.vala index 079b3502..22592956 100644 --- a/src/Gtk/MainWindow.vala +++ b/src/Gtk/MainWindow.vala @@ -360,7 +360,7 @@ public class MainWindow : Gtk.Window{ else if (selected_kernels.size > 0){ var term = new TerminalWindow.with_parent(this, false, true); - string t_dir = create_tmp_dir("button Remove"); + string t_dir = create_tmp_dir(); string t_file = get_temp_file_path(t_dir)+".sh"; term.script_complete.connect(()=>{ @@ -405,7 +405,7 @@ public class MainWindow : Gtk.Window{ button.clicked.connect(() => { var term = new TerminalWindow.with_parent(this, false, true); - string t_dir = create_tmp_dir("button Purge"); + string t_dir = create_tmp_dir(); string t_file = get_temp_file_path(t_dir)+".sh"; term.script_complete.connect(()=>{ @@ -670,7 +670,7 @@ public class MainWindow : Gtk.Window{ } var term = new TerminalWindow.with_parent(this, false, true); - string t_dir = create_tmp_dir("install()"); + string t_dir = create_tmp_dir(); string t_file = get_temp_file_path(t_dir)+".sh"; term.script_complete.connect(()=>{ diff --git a/src/Gtk/TerminalWindow.vala b/src/Gtk/TerminalWindow.vala index 0dd0af04..f6dc5601 100644 --- a/src/Gtk/TerminalWindow.vala +++ b/src/Gtk/TerminalWindow.vala @@ -186,7 +186,6 @@ public class TerminalWindow : Gtk.Window { is_running = true; - log_debug("before term.spawn_sync()"); term.spawn_sync( Vte.PtyFlags.DEFAULT, //pty_flags d, //working_directory @@ -209,7 +208,6 @@ public class TerminalWindow : Gtk.Window { } } - log_debug("end TerminalWindow:execute_script()"); } catch (Error e) { log_error (e.message); @@ -249,5 +247,3 @@ public class TerminalWindow : Gtk.Window { } } } - - diff --git a/src/Utility/AsyncTask.vala b/src/Utility/AsyncTask.vala index cf73a2dd..b90d9664 100644 --- a/src/Utility/AsyncTask.vala +++ b/src/Utility/AsyncTask.vala @@ -29,7 +29,7 @@ using TeeJee.System; using TeeJee.Misc; public abstract class AsyncTask : GLib.Object{ - + private string err_line = ""; private string out_line = ""; private DataOutputStream dos_in; @@ -40,7 +40,7 @@ public abstract class AsyncTask : GLib.Object{ private bool stdout_is_open = false; private bool stderr_is_open = false; - + protected Pid child_pid; private int input_fd; private int output_fd; @@ -52,7 +52,7 @@ public abstract class AsyncTask : GLib.Object{ protected string log_file = ""; public bool background_mode = false; - + // public public AppStatus status; public string status_line = ""; @@ -65,20 +65,20 @@ public abstract class AsyncTask : GLib.Object{ public int64 prg_count_total = 0; public string eta = ""; //public bool is_running = false; - + // signals public signal void stdout_line_read(string line); public signal void stderr_line_read(string line); public signal void task_complete(); protected AsyncTask(){ - working_dir = create_tmp_dir("AsyncTask"); + working_dir = create_tmp_dir(); script_file = working_dir+"/script.sh"; log_file = working_dir+"/task.log"; //regex = new Gee.HashMap(); // needs to be initialized again in instance constructor } - + public bool begin(){ status = AppStatus.RUNNING; @@ -100,7 +100,7 @@ public abstract class AsyncTask : GLib.Object{ timer = new GLib.Timer(); timer.start(); - log_debug("AsyncTask:begin():try{"); + log_debug("AsyncTask:begin():try"); log_debug("working_dir="+working_dir); // execute script file @@ -255,9 +255,7 @@ public abstract class AsyncTask : GLib.Object{ // finish() gets called by 2 threads but should be executed only once if (finish_called) { return; } finish_called = true; - - log_debug("AsyncTask:finish():"); - + // dispose stdin try{ if ((dos_in != null) && !dos_in.is_closed() && !dos_in.is_closing()){ diff --git a/src/Utility/Gtk/AboutWindow.vala b/src/Utility/Gtk/AboutWindow.vala index c06298e2..4634193e 100644 --- a/src/Utility/Gtk/AboutWindow.vala +++ b/src/Utility/Gtk/AboutWindow.vala @@ -302,7 +302,7 @@ public class AboutWindow : Dialog { title = program_name; img_logo.pixbuf = logo.scale_simple(128,128,Gdk.InterpType.HYPER); lbl_program_name.label = "%s".printf(program_name); - lbl_version.label = "v%s".printf(version); + lbl_version.label = "%s".printf(version); lbl_comments.label = "%s".printf(comments); lbtn_website.uri = website; lbtn_website.label = website_label; diff --git a/src/Utility/TeeJee.Process.vala b/src/Utility/TeeJee.Process.vala index 20401f30..510a2e97 100644 --- a/src/Utility/TeeJee.Process.vala +++ b/src/Utility/TeeJee.Process.vala @@ -32,9 +32,8 @@ namespace TeeJee.ProcessHelper{ // execute process --------------------------------- - public string create_tmp_dir(string p=""){ + public string create_tmp_dir(){ string d = App.TMP_PREFIX+"_%s".printf(random_string()); - log_debug("create_tmp_dir:"+p+":"+d); dir_create(d); return d; } @@ -73,7 +72,7 @@ namespace TeeJee.ProcessHelper{ * std_out, std_err can be null. Output will be written to terminal if null. * */ - string t_dir = create_tmp_dir("exec_script_sync()"); + string t_dir = create_tmp_dir(); string t_f = get_temp_file_path(t_dir); string sh_file = t_f+".sh"; save_bash_script_temp(script,sh_file, true, supress_errors); @@ -159,7 +158,7 @@ namespace TeeJee.ProcessHelper{ try { - string t_dir = create_tmp_dir("exec_script_async()"); + string t_dir = create_tmp_dir(); string t_file = get_temp_file_path(t_dir); save_bash_script_temp(s,t_file); @@ -205,8 +204,9 @@ namespace TeeJee.ProcessHelper{ script.append ("echo ${exitCode} > ${exitCode}\n"); script.append ("echo ${exitCode} > status\n"); + // TODO remove this - don't allow automatically creating a dir that the caller doesn't know how to delete if ((sh_path == null) || (sh_path.length == 0)){ - string t_dir = create_tmp_dir("**** save_bash_script_temp() ****"); + string t_dir = create_tmp_dir(); sh_path = get_temp_file_path(t_dir) + ".sh"; } diff --git a/src/Utility/TeeJee.System.vala b/src/Utility/TeeJee.System.vala index e995141e..d1ae6852 100644 --- a/src/Utility/TeeJee.System.vala +++ b/src/Utility/TeeJee.System.vala @@ -126,7 +126,6 @@ namespace TeeJee.System{ // internet helpers ---------------------- public bool check_internet_connectivity(){ - //log_msg("check_internet_connectivity()"); if (App.skip_connection_check) { return true; From 216388a206410dc9b111cdd6e012501e1e43122f Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Mon, 11 May 2020 09:04:00 -0400 Subject: [PATCH 084/567] touch up the translations a little, make some strings more translation-friendly --- README.md | 5 +++ README.md.src | 5 +++ po/es.po | 37 ++++++++++---------- po/fr.po | 37 ++++++++++---------- po/hr.po | 38 ++++++++++----------- po/messages.pot | 27 ++++++++------- po/nl.po | 38 ++++++++++----------- po/pl.po | 37 ++++++++++---------- po/ru.po | 38 ++++++++++----------- po/sv.po | 38 ++++++++++----------- po/tr.po | 36 ++++++++++---------- po/uk.po | 54 +++++++++++++++++------------- src/Console/AppConsole.vala | 4 +-- src/Gtk/MainWindow.vala | 2 +- src/Utility/TeeJee.FileSystem.vala | 2 +- 15 files changed, 211 insertions(+), 187 deletions(-) diff --git a/README.md b/README.md index 63c27dd8..0aea6b55 100644 --- a/README.md +++ b/README.md @@ -44,3 +44,8 @@ The original author stopped maintaining the original GPL version of ukuu and swi * Remove source cruft * Better temp and cache directory behavior * Better desktop notification behavior + +### TODO +* notifications - if you've seen a notification for a given kernel and dismissed it, don't display it again, at least not in the same login session. +* temp files - do something less broken when a user runs ex: "sudo mainline --install-latest" +* re-implement all those TeeJee utility functions that write shell scripts and spawn a bash to exec them, just to do things like chown() diff --git a/README.md.src b/README.md.src index 6e088281..82fde454 100644 --- a/README.md.src +++ b/README.md.src @@ -44,3 +44,8 @@ The original author stopped maintaining the original GPL version of ukuu and swi * Remove source cruft * Better temp and cache directory behavior * Better desktop notification behavior + +### TODO +* notifications - if you've seen a notification for a given kernel and dismissed it, don't display it again, at least not in the same login session. +* temp files - do something less broken when a user runs ex: "sudo mainline --install-latest" +* re-implement all those TeeJee utility functions that write shell scripts and spawn a bash to exec them, just to do things like chown() diff --git a/po/es.po b/po/es.po index 60aaad29..1ae29eb3 100644 --- a/po/es.po +++ b/po/es.po @@ -1,12 +1,8 @@ -# Spanish translation for ukuu -# This file is distributed under the same license as the ukuu package. -# Adolfo Jayme Barrientos , 2018. -# msgid "" msgstr "" -"Project-Id-Version: ukuu\n" +"Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-11 06:42-0400\n" +"POT-Creation-Date: 2020-05-11 09:00-0400\n" "PO-Revision-Date: 2018-01-03 02:03-0600\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish\n" @@ -253,7 +249,7 @@ msgstr "" #: src/Console/AppConsole.vala:96 msgid "" -"One or more version strings (comma-seperated) taken from the output of --list" +"One or more version strings (comma-separated) taken from the output of --list" msgstr "" #: src/Console/AppConsole.vala:103 @@ -269,10 +265,15 @@ msgstr "Ejecute la aplicación con permisos administrativos con pkexec o sudo." msgid "Unknown option" msgstr "Opción desconocida" -#: src/Console/AppConsole.vala:182 src/Console/AppConsole.vala:289 -#: src/Console/AppConsole.vala:318 -msgid "Run '" -msgstr "" +#: src/Console/AppConsole.vala:182 +#, fuzzy +msgid "Run" +msgstr "En ejecución" + +#: src/Console/AppConsole.vala:182 +#, fuzzy +msgid "to list all options" +msgstr "Mostrar todas las opciones" #: src/Console/AppConsole.vala:261 src/Console/AppConsole.vala:298 msgid "No kernels specified" @@ -286,6 +287,10 @@ msgstr "Se seleccionaron varios núcleos para su instalación. Elija solo uno." msgid "Could not find requested version" msgstr "No se pudo encontrar la versión solicitada" +#: src/Console/AppConsole.vala:289 src/Console/AppConsole.vala:318 +msgid "Run '" +msgstr "" + #: src/Console/AppConsole.vala:317 msgid "Command not specified" msgstr "Coomand no especificado" @@ -380,11 +385,11 @@ msgstr "" "Herramienta de renovación de núcleo para distribuciones basadas en Ubuntu" #: src/Gtk/MainWindow.vala:516 -msgid "Forked:" +msgid "Forked" msgstr "" #: src/Gtk/MainWindow.vala:516 -msgid "Original:" +msgid "Original" msgstr "" #: src/Gtk/MainWindow.vala:556 @@ -522,7 +527,7 @@ msgstr "Falta el icono" msgid "File deleted" msgstr "Se eliminó el archivo" -#: src/Utility/TeeJee.FileSystem.vala:80 +#: src/Utility/TeeJee.FileSystem.vala:80 src/Utility/TeeJee.FileSystem.vala:278 msgid "Failed to delete file" msgstr "Falló la eliminación del archivo" @@ -575,10 +580,6 @@ msgstr "Falló la creación del directorio" msgid "Deleted" msgstr "Se eliminó el archivo" -#: src/Utility/TeeJee.FileSystem.vala:278 -msgid "FAILED deleting" -msgstr "" - #: src/Utility/TeeJee.Logging.vala:89 msgid "E" msgstr "E" diff --git a/po/fr.po b/po/fr.po index 4ee1c5b0..0c45b055 100644 --- a/po/fr.po +++ b/po/fr.po @@ -1,12 +1,8 @@ -# French translation for ukuu -# This file is distributed under the same license as the ukuu package. -# Yolateng0 , 2017. -# msgid "" msgstr "" -"Project-Id-Version: ukuu\n" +"Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-11 06:42-0400\n" +"POT-Creation-Date: 2020-05-11 09:00-0400\n" "PO-Revision-Date: 2018-08-05 15:50+0200\n" "Last-Translator: Yolateng0 \n" "Language-Team: French\n" @@ -260,7 +256,7 @@ msgstr "" #: src/Console/AppConsole.vala:96 msgid "" -"One or more version strings (comma-seperated) taken from the output of --list" +"One or more version strings (comma-separated) taken from the output of --list" msgstr "" #: src/Console/AppConsole.vala:103 @@ -275,10 +271,15 @@ msgstr "Exécutez l'application en tant qu'admin avec pkexec or sudo." msgid "Unknown option" msgstr "Option inconnue" -#: src/Console/AppConsole.vala:182 src/Console/AppConsole.vala:289 -#: src/Console/AppConsole.vala:318 -msgid "Run '" -msgstr "" +#: src/Console/AppConsole.vala:182 +#, fuzzy +msgid "Run" +msgstr "En cours" + +#: src/Console/AppConsole.vala:182 +#, fuzzy +msgid "to list all options" +msgstr "Afficher toutes les options" #: src/Console/AppConsole.vala:261 src/Console/AppConsole.vala:298 msgid "No kernels specified" @@ -294,6 +295,10 @@ msgstr "" msgid "Could not find requested version" msgstr "Impossible de trouver la version demandée" +#: src/Console/AppConsole.vala:289 src/Console/AppConsole.vala:318 +msgid "Run '" +msgstr "" + #: src/Console/AppConsole.vala:317 #, fuzzy msgid "Command not specified" @@ -390,11 +395,11 @@ msgstr "" "Ubuntu" #: src/Gtk/MainWindow.vala:516 -msgid "Forked:" +msgid "Forked" msgstr "" #: src/Gtk/MainWindow.vala:516 -msgid "Original:" +msgid "Original" msgstr "" #: src/Gtk/MainWindow.vala:556 @@ -533,7 +538,7 @@ msgstr "Icône introuvable" msgid "File deleted" msgstr "Fichier effacé" -#: src/Utility/TeeJee.FileSystem.vala:80 +#: src/Utility/TeeJee.FileSystem.vala:80 src/Utility/TeeJee.FileSystem.vala:278 msgid "Failed to delete file" msgstr "Impossible d'effacer le fichier" @@ -586,10 +591,6 @@ msgstr "Impossible de créer le nouveau dossier" msgid "Deleted" msgstr "Fichier effacé" -#: src/Utility/TeeJee.FileSystem.vala:278 -msgid "FAILED deleting" -msgstr "" - #: src/Utility/TeeJee.Logging.vala:89 msgid "E" msgstr "E" diff --git a/po/hr.po b/po/hr.po index c921796f..8bf1cbe4 100644 --- a/po/hr.po +++ b/po/hr.po @@ -1,13 +1,8 @@ -# Croatian translation for ukuu -# Copyright (c) 2017 Rosetta Contributors and Canonical Ltd 2017 -# This file is distributed under the same license as the ukuu package. -# gogo , 2017. -# msgid "" msgstr "" -"Project-Id-Version: ukuu\n" +"Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-11 06:42-0400\n" +"POT-Creation-Date: 2020-05-11 09:00-0400\n" "PO-Revision-Date: 2017-12-24 00:52+0100\n" "Last-Translator: gogo \n" "Language-Team: Croatian \n" @@ -261,7 +256,7 @@ msgstr "" #: src/Console/AppConsole.vala:96 msgid "" -"One or more version strings (comma-seperated) taken from the output of --list" +"One or more version strings (comma-separated) taken from the output of --list" msgstr "" #: src/Console/AppConsole.vala:103 @@ -276,10 +271,15 @@ msgstr "Pokreni aplikaciju kao administrator sa pkexec ili sudo." msgid "Unknown option" msgstr "Nepoznata mogućnost" -#: src/Console/AppConsole.vala:182 src/Console/AppConsole.vala:289 -#: src/Console/AppConsole.vala:318 -msgid "Run '" -msgstr "" +#: src/Console/AppConsole.vala:182 +#, fuzzy +msgid "Run" +msgstr "Pokrenuto" + +#: src/Console/AppConsole.vala:182 +#, fuzzy +msgid "to list all options" +msgstr "Prikaži sve mogućnosti" #: src/Console/AppConsole.vala:261 src/Console/AppConsole.vala:298 msgid "No kernels specified" @@ -293,6 +293,10 @@ msgstr "Više kernela je odabrano za instalaciju. odaberite samo jedan." msgid "Could not find requested version" msgstr "Nemoguće je pronaći zatraženu inačicu" +#: src/Console/AppConsole.vala:289 src/Console/AppConsole.vala:318 +msgid "Run '" +msgstr "" + #: src/Console/AppConsole.vala:317 msgid "Command not specified" msgstr "" @@ -386,11 +390,11 @@ msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Alat za nadogradnju kernela Ubuntu temeljenih distribucija" #: src/Gtk/MainWindow.vala:516 -msgid "Forked:" +msgid "Forked" msgstr "" #: src/Gtk/MainWindow.vala:516 -msgid "Original:" +msgid "Original" msgstr "" #: src/Gtk/MainWindow.vala:556 @@ -529,7 +533,7 @@ msgstr "Ikone koje nedostaju" msgid "File deleted" msgstr "Datoteka obrisana" -#: src/Utility/TeeJee.FileSystem.vala:80 +#: src/Utility/TeeJee.FileSystem.vala:80 src/Utility/TeeJee.FileSystem.vala:278 msgid "Failed to delete file" msgstr "Neuspjelo brisanje datoteke" @@ -582,10 +586,6 @@ msgstr "Neuspjelo stvarnje direktorija" msgid "Deleted" msgstr "Datoteka obrisana" -#: src/Utility/TeeJee.FileSystem.vala:278 -msgid "FAILED deleting" -msgstr "" - #: src/Utility/TeeJee.Logging.vala:89 msgid "E" msgstr "G" diff --git a/po/messages.pot b/po/messages.pot index 35064308..ddcedf25 100644 --- a/po/messages.pot +++ b/po/messages.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline 1.0.9\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-11 06:42-0400\n" +"POT-Creation-Date: 2020-05-11 09:00-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -244,7 +244,7 @@ msgstr "" #: src/Console/AppConsole.vala:96 msgid "" -"One or more version strings (comma-seperated) taken from the output of --list" +"One or more version strings (comma-separated) taken from the output of --list" msgstr "" #: src/Console/AppConsole.vala:103 @@ -259,9 +259,12 @@ msgstr "" msgid "Unknown option" msgstr "" -#: src/Console/AppConsole.vala:182 src/Console/AppConsole.vala:289 -#: src/Console/AppConsole.vala:318 -msgid "Run '" +#: src/Console/AppConsole.vala:182 +msgid "Run" +msgstr "" + +#: src/Console/AppConsole.vala:182 +msgid "to list all options" msgstr "" #: src/Console/AppConsole.vala:261 src/Console/AppConsole.vala:298 @@ -276,6 +279,10 @@ msgstr "" msgid "Could not find requested version" msgstr "" +#: src/Console/AppConsole.vala:289 src/Console/AppConsole.vala:318 +msgid "Run '" +msgstr "" + #: src/Console/AppConsole.vala:317 msgid "Command not specified" msgstr "" @@ -369,11 +376,11 @@ msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "" #: src/Gtk/MainWindow.vala:516 -msgid "Forked:" +msgid "Forked" msgstr "" #: src/Gtk/MainWindow.vala:516 -msgid "Original:" +msgid "Original" msgstr "" #: src/Gtk/MainWindow.vala:556 @@ -509,7 +516,7 @@ msgstr "" msgid "File deleted" msgstr "" -#: src/Utility/TeeJee.FileSystem.vala:80 +#: src/Utility/TeeJee.FileSystem.vala:80 src/Utility/TeeJee.FileSystem.vala:278 msgid "Failed to delete file" msgstr "" @@ -561,10 +568,6 @@ msgstr "" msgid "Deleted" msgstr "" -#: src/Utility/TeeJee.FileSystem.vala:278 -msgid "FAILED deleting" -msgstr "" - #: src/Utility/TeeJee.Logging.vala:89 msgid "E" msgstr "" diff --git a/po/nl.po b/po/nl.po index fe074d40..44a81962 100644 --- a/po/nl.po +++ b/po/nl.po @@ -1,13 +1,8 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR Tony George (teejeetech@gmail.com) -# This file is distributed under the same license as the ukuu package. -# FIRST AUTHOR , YEAR. -# msgid "" msgstr "" -"Project-Id-Version: ukuu 2.2\n" +"Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-11 06:42-0400\n" +"POT-Creation-Date: 2020-05-11 09:00-0400\n" "PO-Revision-Date: 2017-04-30 11:50+0200\n" "Last-Translator: Heimen Stoffels \n" "Language-Team: \n" @@ -262,7 +257,7 @@ msgstr "" #: src/Console/AppConsole.vala:96 msgid "" -"One or more version strings (comma-seperated) taken from the output of --list" +"One or more version strings (comma-separated) taken from the output of --list" msgstr "" #: src/Console/AppConsole.vala:103 @@ -279,10 +274,15 @@ msgstr "Draai de applicatie als root of m.b.v. gksu/sudo." msgid "Unknown option" msgstr "Onbekende optie" -#: src/Console/AppConsole.vala:182 src/Console/AppConsole.vala:289 -#: src/Console/AppConsole.vala:318 -msgid "Run '" -msgstr "" +#: src/Console/AppConsole.vala:182 +#, fuzzy +msgid "Run" +msgstr "Bezig met draaien" + +#: src/Console/AppConsole.vala:182 +#, fuzzy +msgid "to list all options" +msgstr "Alle opties weergeven" #: src/Console/AppConsole.vala:261 src/Console/AppConsole.vala:298 msgid "No kernels specified" @@ -298,6 +298,10 @@ msgstr "" msgid "Could not find requested version" msgstr "De vereiste versie kan niet worden gevonden" +#: src/Console/AppConsole.vala:289 src/Console/AppConsole.vala:318 +msgid "Run '" +msgstr "" + #: src/Console/AppConsole.vala:317 msgid "Command not specified" msgstr "" @@ -391,11 +395,11 @@ msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Kernel-upgradehulpmiddel voor op Ubuntu-gebaseerde distributies" #: src/Gtk/MainWindow.vala:516 -msgid "Forked:" +msgid "Forked" msgstr "" #: src/Gtk/MainWindow.vala:516 -msgid "Original:" +msgid "Original" msgstr "" #: src/Gtk/MainWindow.vala:556 @@ -534,7 +538,7 @@ msgstr "Ontbrekend pictogram" msgid "File deleted" msgstr "Bestand verwijderd" -#: src/Utility/TeeJee.FileSystem.vala:80 +#: src/Utility/TeeJee.FileSystem.vala:80 src/Utility/TeeJee.FileSystem.vala:278 msgid "Failed to delete file" msgstr "Verwijderen van map is mislukt" @@ -587,10 +591,6 @@ msgstr "Creëren van map is mislukt" msgid "Deleted" msgstr "Bestand verwijderd" -#: src/Utility/TeeJee.FileSystem.vala:278 -msgid "FAILED deleting" -msgstr "" - #: src/Utility/TeeJee.Logging.vala:89 msgid "E" msgstr "E" diff --git a/po/pl.po b/po/pl.po index 9f74dbf6..b8b91b19 100644 --- a/po/pl.po +++ b/po/pl.po @@ -1,12 +1,8 @@ -# olish translation for ukuu -# This file is distributed under the same license as the ukuu package. -# Waldemar Konik , 2017. -# msgid "" msgstr "" -"Project-Id-Version: ukuu\n" +"Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-11 06:42-0400\n" +"POT-Creation-Date: 2020-05-11 09:00-0400\n" "PO-Revision-Date: 2017-08-12 15:26+0200\n" "Last-Translator: Waldemar Konik \n" "Language-Team: Polish\n" @@ -259,7 +255,7 @@ msgstr "" #: src/Console/AppConsole.vala:96 msgid "" -"One or more version strings (comma-seperated) taken from the output of --list" +"One or more version strings (comma-separated) taken from the output of --list" msgstr "" #: src/Console/AppConsole.vala:103 @@ -275,10 +271,15 @@ msgstr "Uruchom aplikację jako root albo użyj gksu/sudo." msgid "Unknown option" msgstr "Nieznana opcja" -#: src/Console/AppConsole.vala:182 src/Console/AppConsole.vala:289 -#: src/Console/AppConsole.vala:318 -msgid "Run '" -msgstr "" +#: src/Console/AppConsole.vala:182 +#, fuzzy +msgid "Run" +msgstr "Uruchomiony" + +#: src/Console/AppConsole.vala:182 +#, fuzzy +msgid "to list all options" +msgstr "Pokaż wszystkie opcje" #: src/Console/AppConsole.vala:261 src/Console/AppConsole.vala:298 msgid "No kernels specified" @@ -292,6 +293,10 @@ msgstr "Wybrano kilka jąder do instalacji. Wybierz tylko jedno." msgid "Could not find requested version" msgstr "Nie można odnaleźć żądanej wersji" +#: src/Console/AppConsole.vala:289 src/Console/AppConsole.vala:318 +msgid "Run '" +msgstr "" + #: src/Console/AppConsole.vala:317 msgid "Command not specified" msgstr "" @@ -385,11 +390,11 @@ msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Narzędzie uaktualniania jądra dla dystrybucji z rodziny Ubuntu" #: src/Gtk/MainWindow.vala:516 -msgid "Forked:" +msgid "Forked" msgstr "" #: src/Gtk/MainWindow.vala:516 -msgid "Original:" +msgid "Original" msgstr "" #: src/Gtk/MainWindow.vala:556 @@ -528,7 +533,7 @@ msgstr "Brakująca ikona" msgid "File deleted" msgstr "Plik usunięty" -#: src/Utility/TeeJee.FileSystem.vala:80 +#: src/Utility/TeeJee.FileSystem.vala:80 src/Utility/TeeJee.FileSystem.vala:278 msgid "Failed to delete file" msgstr "Nie udało się usunąć pliku" @@ -581,10 +586,6 @@ msgstr "Nie udało się utworzyć katalogu" msgid "Deleted" msgstr "Plik usunięty" -#: src/Utility/TeeJee.FileSystem.vala:278 -msgid "FAILED deleting" -msgstr "" - #: src/Utility/TeeJee.Logging.vala:89 msgid "E" msgstr "E" diff --git a/po/ru.po b/po/ru.po index 9b811e77..4fa7ac32 100644 --- a/po/ru.po +++ b/po/ru.po @@ -1,13 +1,8 @@ -# Russian translation for ukuu -# Copyright (c) 2016 Rosetta Contributors and Canonical Ltd 2016 -# This file is distributed under the same license as the ukuu package. -# FIRST AUTHOR , 2016. -# msgid "" msgstr "" -"Project-Id-Version: ukuu\n" +"Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-11 06:42-0400\n" +"POT-Creation-Date: 2020-05-11 09:00-0400\n" "PO-Revision-Date: 2016-12-13 16:46+0300\n" "Last-Translator: Faust3000 \n" "Language-Team: Russian \n" @@ -264,7 +259,7 @@ msgstr "" #: src/Console/AppConsole.vala:96 msgid "" -"One or more version strings (comma-seperated) taken from the output of --list" +"One or more version strings (comma-separated) taken from the output of --list" msgstr "" #: src/Console/AppConsole.vala:103 @@ -280,10 +275,15 @@ msgstr "Запустите программу с правами Root или ис msgid "Unknown option" msgstr "Неизвестный параметр" -#: src/Console/AppConsole.vala:182 src/Console/AppConsole.vala:289 -#: src/Console/AppConsole.vala:318 -msgid "Run '" -msgstr "" +#: src/Console/AppConsole.vala:182 +#, fuzzy +msgid "Run" +msgstr "Используется" + +#: src/Console/AppConsole.vala:182 +#, fuzzy +msgid "to list all options" +msgstr "Показать все параметры" #: src/Console/AppConsole.vala:261 src/Console/AppConsole.vala:298 msgid "No kernels specified" @@ -297,6 +297,10 @@ msgstr "" msgid "Could not find requested version" msgstr "Не удалось найти запрошенную версию" +#: src/Console/AppConsole.vala:289 src/Console/AppConsole.vala:318 +msgid "Run '" +msgstr "" + #: src/Console/AppConsole.vala:317 msgid "Command not specified" msgstr "" @@ -390,11 +394,11 @@ msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Программа обновления ядра для дистрибутивов на базе Ubuntu" #: src/Gtk/MainWindow.vala:516 -msgid "Forked:" +msgid "Forked" msgstr "" #: src/Gtk/MainWindow.vala:516 -msgid "Original:" +msgid "Original" msgstr "" #: src/Gtk/MainWindow.vala:556 @@ -534,7 +538,7 @@ msgstr "Значок отсутствует" msgid "File deleted" msgstr "Не удалось удалить файл" -#: src/Utility/TeeJee.FileSystem.vala:80 +#: src/Utility/TeeJee.FileSystem.vala:80 src/Utility/TeeJee.FileSystem.vala:278 msgid "Failed to delete file" msgstr "Не удалось удалить файл" @@ -591,10 +595,6 @@ msgstr "Не удалось создать папку" msgid "Deleted" msgstr "Не удалось удалить файл" -#: src/Utility/TeeJee.FileSystem.vala:278 -msgid "FAILED deleting" -msgstr "" - #: src/Utility/TeeJee.Logging.vala:89 msgid "E" msgstr "E" diff --git a/po/sv.po b/po/sv.po index 7b3becc9..ee4eca50 100644 --- a/po/sv.po +++ b/po/sv.po @@ -1,13 +1,8 @@ -# Translation package for ukuu. -# Copyright (C) YEAR Tony George (teejeetech@gmail.com) -# This file is distributed under the same license as the ukuu package. -# Åke Engelbrektson , 2016. -# msgid "" msgstr "" -"Project-Id-Version: ukuu 2.2\n" +"Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-11 06:42-0400\n" +"POT-Creation-Date: 2020-05-11 09:00-0400\n" "PO-Revision-Date: 2018-01-13 16:56+0100\n" "Last-Translator: Åke Engelbrektson \n" "Language-Team: Svenska Språkfiler \n" @@ -260,7 +255,7 @@ msgstr "" #: src/Console/AppConsole.vala:96 msgid "" -"One or more version strings (comma-seperated) taken from the output of --list" +"One or more version strings (comma-separated) taken from the output of --list" msgstr "" #: src/Console/AppConsole.vala:103 @@ -275,10 +270,15 @@ msgstr "Kör programmet som administratör, med pkexec eller sudo." msgid "Unknown option" msgstr "Okänt alternativ" -#: src/Console/AppConsole.vala:182 src/Console/AppConsole.vala:289 -#: src/Console/AppConsole.vala:318 -msgid "Run '" -msgstr "" +#: src/Console/AppConsole.vala:182 +#, fuzzy +msgid "Run" +msgstr "Körs" + +#: src/Console/AppConsole.vala:182 +#, fuzzy +msgid "to list all options" +msgstr "Visa alla alternativ" #: src/Console/AppConsole.vala:261 src/Console/AppConsole.vala:298 msgid "No kernels specified" @@ -292,6 +292,10 @@ msgstr "Flera kärnor valda för installation. Välj endast en." msgid "Could not find requested version" msgstr "Kunde inte hitta efterfrågad version" +#: src/Console/AppConsole.vala:289 src/Console/AppConsole.vala:318 +msgid "Run '" +msgstr "" + #: src/Console/AppConsole.vala:317 msgid "Command not specified" msgstr "" @@ -385,11 +389,11 @@ msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Kärnuppgraderingsverktyg för Ubuntu-baserade distributioner" #: src/Gtk/MainWindow.vala:516 -msgid "Forked:" +msgid "Forked" msgstr "" #: src/Gtk/MainWindow.vala:516 -msgid "Original:" +msgid "Original" msgstr "" #: src/Gtk/MainWindow.vala:556 @@ -528,7 +532,7 @@ msgstr "Saknad ikon" msgid "File deleted" msgstr "Fil borttagen" -#: src/Utility/TeeJee.FileSystem.vala:80 +#: src/Utility/TeeJee.FileSystem.vala:80 src/Utility/TeeJee.FileSystem.vala:278 msgid "Failed to delete file" msgstr "Kunde inte ta bort filen" @@ -581,10 +585,6 @@ msgstr "Kunde inte skapa mappen" msgid "Deleted" msgstr "Fil borttagen" -#: src/Utility/TeeJee.FileSystem.vala:278 -msgid "FAILED deleting" -msgstr "" - #: src/Utility/TeeJee.Logging.vala:89 msgid "E" msgstr "F" diff --git a/po/tr.po b/po/tr.po index 909f2920..dafe59b6 100644 --- a/po/tr.po +++ b/po/tr.po @@ -1,13 +1,8 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR Tony George (teejeetech@gmail.com) -# This file is distributed under the same license as the ukuu package. -# Gökhan Gökkaya , 2018. -# msgid "" msgstr "" -"Project-Id-Version: ukuu\n" +"Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-11 06:42-0400\n" +"POT-Creation-Date: 2020-05-11 09:00-0400\n" "PO-Revision-Date: 2020-03-10 15:59+0300\n" "Last-Translator: Gökhan GÖKKAYA \n" "Language-Team: Turkish\n" @@ -253,7 +248,7 @@ msgstr "" #: src/Console/AppConsole.vala:96 msgid "" -"One or more version strings (comma-seperated) taken from the output of --list" +"One or more version strings (comma-separated) taken from the output of --list" msgstr "" #: src/Console/AppConsole.vala:103 @@ -268,11 +263,16 @@ msgstr "Bu uygulamayı pkexec yada sudo ile yönetici haklarıyla çalıştırı msgid "Unknown option" msgstr "Bilinmeyen seçenek" -#: src/Console/AppConsole.vala:182 src/Console/AppConsole.vala:289 -#: src/Console/AppConsole.vala:318 -msgid "Run '" +#: src/Console/AppConsole.vala:182 +#, fuzzy +msgid "Run" msgstr "Çalıştır '" +#: src/Console/AppConsole.vala:182 +#, fuzzy +msgid "to list all options" +msgstr "Tüm seçenekleri göster" + #: src/Console/AppConsole.vala:261 src/Console/AppConsole.vala:298 msgid "No kernels specified" msgstr "Belirtilen çekirdek yok" @@ -285,6 +285,10 @@ msgstr "Kurulum için çoklu çekirdek seçildi. Sadece bir tane seçiniz." msgid "Could not find requested version" msgstr "İstenen sürüm bulunamadı" +#: src/Console/AppConsole.vala:289 src/Console/AppConsole.vala:318 +msgid "Run '" +msgstr "Çalıştır '" + #: src/Console/AppConsole.vala:317 msgid "Command not specified" msgstr "Komut belirtilmedi" @@ -378,11 +382,11 @@ msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Ubuntu tabanlı dağıtımlar için çekirdek güncelleme aracı" #: src/Gtk/MainWindow.vala:516 -msgid "Forked:" +msgid "Forked" msgstr "" #: src/Gtk/MainWindow.vala:516 -msgid "Original:" +msgid "Original" msgstr "" #: src/Gtk/MainWindow.vala:556 @@ -520,7 +524,7 @@ msgstr "Eksik Simge" msgid "File deleted" msgstr "Dosya silindi" -#: src/Utility/TeeJee.FileSystem.vala:80 +#: src/Utility/TeeJee.FileSystem.vala:80 src/Utility/TeeJee.FileSystem.vala:278 msgid "Failed to delete file" msgstr "Dosya silme başarısız" @@ -573,10 +577,6 @@ msgstr "Dizin oluşturma başarısız" msgid "Deleted" msgstr "Dosya silindi" -#: src/Utility/TeeJee.FileSystem.vala:278 -msgid "FAILED deleting" -msgstr "" - #: src/Utility/TeeJee.Logging.vala:89 msgid "E" msgstr "H" diff --git a/po/uk.po b/po/uk.po index 7fb65313..aee3e57d 100644 --- a/po/uk.po +++ b/po/uk.po @@ -1,8 +1,8 @@ msgid "" msgstr "" -"Project-Id-Version: ukuu\n" +"Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-11 06:42-0400\n" +"POT-Creation-Date: 2020-05-11 08:54-0400\n" "PO-Revision-Date: 2019-07-25 11:00+0300\n" "Last-Translator: Serhii Golovko \n" "Language-Team: Ukranian \n" @@ -112,8 +112,7 @@ msgstr "Это ядро уже установлено." #: src/Common/LinuxKernel.vala:1253 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" -"Установка завершена. Обов'язково виконайте перезавантаження, щоб " -"використовувати нове ядро." +"Установка завершена. Для використання нового ядра потрібна перезавантаження." #: src/Common/LinuxKernel.vala:1256 msgid "Installation completed with errors" @@ -157,7 +156,7 @@ msgstr "Встановити необхідні пакети і спробуйт #: src/Common/Main.vala:269 msgid "Called from" -msgstr "" +msgstr "Викликано з" #: src/Common/Main.vala:281 #, fuzzy @@ -233,7 +232,7 @@ msgstr "Параметри" #: src/Console/AppConsole.vala:90 msgid "Enable verbose debugging output" -msgstr "" +msgstr "Увімкнути багатослівний вихід налагодження" #: src/Console/AppConsole.vala:91 msgid "Assume Yes for all prompts (non-interactive mode)" @@ -241,16 +240,18 @@ msgstr "Припустимо, так для всіх підказок (неін #: src/Console/AppConsole.vala:92 msgid "Override user" -msgstr "" +msgstr "Перевизначення користувача" #: src/Console/AppConsole.vala:95 msgid "A version string taken from the output of --list" -msgstr "" +msgstr "Рядок версій, взятий з виводу --list" #: src/Console/AppConsole.vala:96 +#, fuzzy msgid "" -"One or more version strings (comma-seperated) taken from the output of --list" +"One or more version strings (comma-separated) taken from the output of --list" msgstr "" +"Одна або кілька рядків версії (розділені комами), взяті з виводу --list" #: src/Console/AppConsole.vala:103 msgid "Admin access is required for running this application." @@ -264,11 +265,16 @@ msgstr "Запустіть додаток як адміністратор за msgid "Unknown option" msgstr "Невідомий параметр" -#: src/Console/AppConsole.vala:182 src/Console/AppConsole.vala:289 -#: src/Console/AppConsole.vala:318 -msgid "Run '" +#: src/Console/AppConsole.vala:182 +#, fuzzy +msgid "Run" msgstr "Запуск" +#: src/Console/AppConsole.vala:182 +#, fuzzy +msgid "to list all options" +msgstr "Показати усі параметри" + #: src/Console/AppConsole.vala:261 src/Console/AppConsole.vala:298 msgid "No kernels specified" msgstr "Ядра не вказані" @@ -281,6 +287,10 @@ msgstr "Для встановлення вибрано кілька ядер. В msgid "Could not find requested version" msgstr "Не вдалося знайти запитувану версію" +#: src/Console/AppConsole.vala:289 src/Console/AppConsole.vala:318 +msgid "Run '" +msgstr "Запуск" + #: src/Console/AppConsole.vala:317 msgid "Command not specified" msgstr "Команда не вказана" @@ -297,7 +307,7 @@ msgstr "Встановити" #: src/Console/OSDNotify.vala:66 msgid "Show" -msgstr "" +msgstr "шоу" #: src/Gtk/AppGtk.vala:162 msgid "Print debug information" @@ -374,12 +384,14 @@ msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Програма оновлення ядра для дистрибутивів на базі Ubuntu" #: src/Gtk/MainWindow.vala:516 -msgid "Forked:" -msgstr "" +#, fuzzy +msgid "Forked" +msgstr "Роздвоєний" #: src/Gtk/MainWindow.vala:516 -msgid "Original:" -msgstr "" +#, fuzzy +msgid "Original" +msgstr "Оригінальний" #: src/Gtk/MainWindow.vala:556 msgid "Refreshing..." @@ -516,7 +528,7 @@ msgstr "Нема значка" msgid "File deleted" msgstr "Не вдалося видалити файл" -#: src/Utility/TeeJee.FileSystem.vala:80 +#: src/Utility/TeeJee.FileSystem.vala:80 src/Utility/TeeJee.FileSystem.vala:278 msgid "Failed to delete file" msgstr "Не вдалося видалити файл" @@ -567,11 +579,7 @@ msgstr "Не вдалося створити теку" #: src/Utility/TeeJee.FileSystem.vala:277 #, fuzzy msgid "Deleted" -msgstr "Не вдалося видалити файл" - -#: src/Utility/TeeJee.FileSystem.vala:278 -msgid "FAILED deleting" -msgstr "" +msgstr "видалено" #: src/Utility/TeeJee.Logging.vala:89 msgid "E" diff --git a/src/Console/AppConsole.vala b/src/Console/AppConsole.vala index a869a8a9..b27a6040 100644 --- a/src/Console/AppConsole.vala +++ b/src/Console/AppConsole.vala @@ -93,7 +93,7 @@ public class AppConsole : GLib.Object { + "\n" + "Notes:\n" + "(1) " +_("A version string taken from the output of --list") + "\n" - + "(2) " +_("One or more version strings (comma-seperated) taken from the output of --list") + "\n"; + + "(2) " +_("One or more version strings (comma-separated) taken from the output of --list") + "\n"; return msg; } @@ -179,7 +179,7 @@ public class AppConsole : GLib.Object { // unknown option log_error(_("Unknown option") + ": %s".printf(args[k])); // FIXME use argv[0] instead of hardcoded app name - log_error(_("Run '"+BRANDING_SHORTNAME+" --help' to list all options")); + log_error(_("Run")+" '"+BRANDING_SHORTNAME+" --help' "+_("to list all options")); return false; } } diff --git a/src/Gtk/MainWindow.vala b/src/Gtk/MainWindow.vala index 22592956..2855800d 100644 --- a/src/Gtk/MainWindow.vala +++ b/src/Gtk/MainWindow.vala @@ -513,7 +513,7 @@ public class MainWindow : Gtk.Window{ dialog.program_name = BRANDING_LONGNAME; dialog.comments = _("Kernel upgrade utility for Ubuntu-based distributions"); - dialog.copyright = _("Original:")+" \"ukuu\" © 2015-18 Tony George\n"+_("Forked:")+" \""+BRANDING_SHORTNAME+"\" 2019 "+BRANDING_AUTHORNAME+" ("+BRANDING_AUTHOREMAIL+")"; + dialog.copyright = _("Original")+": \"ukuu\" © 2015-18 Tony George\n"+_("Forked")+": \""+BRANDING_SHORTNAME+"\" 2019 "+BRANDING_AUTHORNAME+" ("+BRANDING_AUTHOREMAIL+")"; dialog.version = BRANDING_VERSION; dialog.logo = get_app_icon(128); diff --git a/src/Utility/TeeJee.FileSystem.vala b/src/Utility/TeeJee.FileSystem.vala index 76ad3756..38272a7b 100644 --- a/src/Utility/TeeJee.FileSystem.vala +++ b/src/Utility/TeeJee.FileSystem.vala @@ -275,7 +275,7 @@ namespace TeeJee.FileSystem{ string cmd = "rm -rf '%s'".printf(escape_single_quote(dir_path)); int status = exec_sync(cmd); string result = _("Deleted"); - if (status!=0) result = _("FAILED deleting"); + if (status!=0) result = _("Failed to delete file"); result += ": %s".printf(dir_path); if (show_message) log_msg(result); else log_debug("dir_delete():"+result); From 17735820c94e0f6e728102444445dd5673ef9680 Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Mon, 11 May 2020 10:47:05 -0400 Subject: [PATCH 085/567] remove more un-used teejee code --- .deb_build_number.mak | 2 +- README.md | 7 ++- README.md.src | 7 ++- po/es.po | 43 ++++++++------- po/fr.po | 43 ++++++++------- po/hr.po | 43 ++++++++------- po/messages.pot | 41 +++++++------- po/nl.po | 43 ++++++++------- po/pl.po | 43 ++++++++------- po/ru.po | 43 ++++++++------- po/sv.po | 43 ++++++++------- po/tr.po | 45 ++++++++-------- po/uk.po | 45 ++++++++-------- src/Common/Main.vala | 1 - src/Console/AppConsole.vala | 12 ++--- src/Gtk/AppGtk.vala | 4 +- src/Utility/AsyncTask.vala | 58 -------------------- src/Utility/Gtk/GtkHelper.vala | 14 +---- src/Utility/TeeJee.Misc.vala | 8 --- src/Utility/TeeJee.Process.vala | 69 +++--------------------- src/Utility/TeeJee.System.vala | 11 ---- src/Utility/Version.vala | 94 --------------------------------- 22 files changed, 237 insertions(+), 482 deletions(-) delete mode 100644 src/Utility/Version.vala diff --git a/.deb_build_number.mak b/.deb_build_number.mak index d6ced6e0..af856ddf 100644 --- a/.deb_build_number.mak +++ b/.deb_build_number.mak @@ -1,3 +1,3 @@ # This file is generated by Makefile "make deb_build_number" DEB_PKG_VERSION := 1.0.9 -DEB_BUILD_NUMBER := 0010 +DEB_BUILD_NUMBER := 0011 diff --git a/README.md b/README.md index 0aea6b55..dd807548 100644 --- a/README.md +++ b/README.md @@ -45,7 +45,10 @@ The original author stopped maintaining the original GPL version of ukuu and swi * Better temp and cache directory behavior * Better desktop notification behavior -### TODO +### TODO & WIP * notifications - if you've seen a notification for a given kernel and dismissed it, don't display it again, at least not in the same login session. +* notifications - make the bg process detect when the user logs off and exit itself. +* notifications - start/restart/stop the bg process when the user changes settings instead of only at logon/logoff +* notifications - you press one of the buttons, also close the notification * temp files - do something less broken when a user runs ex: "sudo mainline --install-latest" -* re-implement all those TeeJee utility functions that write shell scripts and spawn a bash to exec them, just to do things like chown() +* re-implement the TeeJee utility functions that write shell scripts and spawn a bash to exec them, just to do things like chown() diff --git a/README.md.src b/README.md.src index 82fde454..3c1f718b 100644 --- a/README.md.src +++ b/README.md.src @@ -45,7 +45,10 @@ The original author stopped maintaining the original GPL version of ukuu and swi * Better temp and cache directory behavior * Better desktop notification behavior -### TODO +### TODO & WIP * notifications - if you've seen a notification for a given kernel and dismissed it, don't display it again, at least not in the same login session. +* notifications - make the bg process detect when the user logs off and exit itself. +* notifications - start/restart/stop the bg process when the user changes settings instead of only at logon/logoff +* notifications - you press one of the buttons, also close the notification * temp files - do something less broken when a user runs ex: "sudo mainline --install-latest" -* re-implement all those TeeJee utility functions that write shell scripts and spawn a bash to exec them, just to do things like chown() +* re-implement the TeeJee utility functions that write shell scripts and spawn a bash to exec them, just to do things like chown() diff --git a/po/es.po b/po/es.po index 1ae29eb3..fad9b43e 100644 --- a/po/es.po +++ b/po/es.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-11 09:00-0400\n" +"POT-Creation-Date: 2020-05-11 10:31-0400\n" "PO-Revision-Date: 2018-01-03 02:03-0600\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish\n" @@ -53,16 +53,16 @@ msgstr "Los siguientes kernels serán eliminados:" msgid "Continue ?" msgstr "¿Continuar?" -#: src/Common/LinuxKernel.vala:744 src/Console/AppConsole.vala:336 +#: src/Common/LinuxKernel.vala:744 src/Console/AppConsole.vala:334 msgid "Latest update" msgstr "" -#: src/Common/LinuxKernel.vala:755 src/Console/AppConsole.vala:343 +#: src/Common/LinuxKernel.vala:755 src/Console/AppConsole.vala:341 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:763 src/Console/AppConsole.vala:348 -#: src/Console/AppConsole.vala:398 +#: src/Common/LinuxKernel.vala:763 src/Console/AppConsole.vala:346 +#: src/Console/AppConsole.vala:396 msgid "No updates found" msgstr "No se encontró ninguna actualización" @@ -253,7 +253,8 @@ msgid "" msgstr "" #: src/Console/AppConsole.vala:103 -msgid "Admin access is required for running this application." +#, fuzzy +msgid "Admin access is required for this action." msgstr "" "Se necesitan privilegios administrativos para ejecutar esta aplicación." @@ -265,7 +266,8 @@ msgstr "Ejecute la aplicación con permisos administrativos con pkexec o sudo." msgid "Unknown option" msgstr "Opción desconocida" -#: src/Console/AppConsole.vala:182 +#: src/Console/AppConsole.vala:182 src/Console/AppConsole.vala:288 +#: src/Console/AppConsole.vala:316 #, fuzzy msgid "Run" msgstr "En ejecución" @@ -275,7 +277,7 @@ msgstr "En ejecución" msgid "to list all options" msgstr "Mostrar todas las opciones" -#: src/Console/AppConsole.vala:261 src/Console/AppConsole.vala:298 +#: src/Console/AppConsole.vala:261 src/Console/AppConsole.vala:296 msgid "No kernels specified" msgstr "" @@ -287,20 +289,25 @@ msgstr "Se seleccionaron varios núcleos para su instalación. Elija solo uno." msgid "Could not find requested version" msgstr "No se pudo encontrar la versión solicitada" -#: src/Console/AppConsole.vala:289 src/Console/AppConsole.vala:318 -msgid "Run '" +#: src/Console/AppConsole.vala:288 +msgid "and use a version string listed in first column" msgstr "" -#: src/Console/AppConsole.vala:317 +#: src/Console/AppConsole.vala:315 msgid "Command not specified" msgstr "Coomand no especificado" -#: src/Console/AppConsole.vala:370 src/Console/AppConsole.vala:386 +#: src/Console/AppConsole.vala:316 +#, fuzzy +msgid "to list all commands" +msgstr "Mostrar todas las opciones" + +#: src/Console/AppConsole.vala:368 src/Console/AppConsole.vala:384 #, fuzzy, c-format msgid "Kernel %s Available" msgstr "Paquetes disponibles" -#: src/Console/AppConsole.vala:373 src/Console/AppConsole.vala:389 +#: src/Console/AppConsole.vala:371 src/Console/AppConsole.vala:387 #: src/Gtk/MainWindow.vala:335 msgid "Install" msgstr "Instalar" @@ -515,11 +522,7 @@ msgstr "Sí" msgid "No" msgstr "No" -#: src/Utility/Gtk/GtkHelper.vala:17 -msgid "Error" -msgstr "Error" - -#: src/Utility/Gtk/GtkHelper.vala:77 +#: src/Utility/Gtk/GtkHelper.vala:67 msgid "Missing Icon" msgstr "Falta el icono" @@ -587,7 +590,3 @@ msgstr "E" #: src/Utility/TeeJee.Logging.vala:89 msgid "W" msgstr "W" - -#: src/Utility/TeeJee.Process.vala:511 -msgid "Stopped" -msgstr "Detenido" diff --git a/po/fr.po b/po/fr.po index 0c45b055..b709dad9 100644 --- a/po/fr.po +++ b/po/fr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-11 09:00-0400\n" +"POT-Creation-Date: 2020-05-11 10:31-0400\n" "PO-Revision-Date: 2018-08-05 15:50+0200\n" "Last-Translator: Yolateng0 \n" "Language-Team: French\n" @@ -56,16 +56,16 @@ msgstr "" msgid "Continue ?" msgstr "" -#: src/Common/LinuxKernel.vala:744 src/Console/AppConsole.vala:336 +#: src/Common/LinuxKernel.vala:744 src/Console/AppConsole.vala:334 msgid "Latest update" msgstr "" -#: src/Common/LinuxKernel.vala:755 src/Console/AppConsole.vala:343 +#: src/Common/LinuxKernel.vala:755 src/Console/AppConsole.vala:341 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:763 src/Console/AppConsole.vala:348 -#: src/Console/AppConsole.vala:398 +#: src/Common/LinuxKernel.vala:763 src/Console/AppConsole.vala:346 +#: src/Console/AppConsole.vala:396 msgid "No updates found" msgstr "Aucune mise à jour disponible" @@ -260,7 +260,8 @@ msgid "" msgstr "" #: src/Console/AppConsole.vala:103 -msgid "Admin access is required for running this application." +#, fuzzy +msgid "Admin access is required for this action." msgstr "Accès administrateur requis pour lancer cette application." #: src/Console/AppConsole.vala:104 @@ -271,7 +272,8 @@ msgstr "Exécutez l'application en tant qu'admin avec pkexec or sudo." msgid "Unknown option" msgstr "Option inconnue" -#: src/Console/AppConsole.vala:182 +#: src/Console/AppConsole.vala:182 src/Console/AppConsole.vala:288 +#: src/Console/AppConsole.vala:316 #, fuzzy msgid "Run" msgstr "En cours" @@ -281,7 +283,7 @@ msgstr "En cours" msgid "to list all options" msgstr "Afficher toutes les options" -#: src/Console/AppConsole.vala:261 src/Console/AppConsole.vala:298 +#: src/Console/AppConsole.vala:261 src/Console/AppConsole.vala:296 msgid "No kernels specified" msgstr "" @@ -295,21 +297,26 @@ msgstr "" msgid "Could not find requested version" msgstr "Impossible de trouver la version demandée" -#: src/Console/AppConsole.vala:289 src/Console/AppConsole.vala:318 -msgid "Run '" +#: src/Console/AppConsole.vala:288 +msgid "and use a version string listed in first column" msgstr "" -#: src/Console/AppConsole.vala:317 +#: src/Console/AppConsole.vala:315 #, fuzzy msgid "Command not specified" msgstr "Impossible de trouver le fichier" -#: src/Console/AppConsole.vala:370 src/Console/AppConsole.vala:386 +#: src/Console/AppConsole.vala:316 +#, fuzzy +msgid "to list all commands" +msgstr "Afficher toutes les options" + +#: src/Console/AppConsole.vala:368 src/Console/AppConsole.vala:384 #, fuzzy, c-format msgid "Kernel %s Available" msgstr "Paquets disponibles" -#: src/Console/AppConsole.vala:373 src/Console/AppConsole.vala:389 +#: src/Console/AppConsole.vala:371 src/Console/AppConsole.vala:387 #: src/Gtk/MainWindow.vala:335 msgid "Install" msgstr "Installer" @@ -526,11 +533,7 @@ msgstr "Oui" msgid "No" msgstr "Non" -#: src/Utility/Gtk/GtkHelper.vala:17 -msgid "Error" -msgstr "Erreur" - -#: src/Utility/Gtk/GtkHelper.vala:77 +#: src/Utility/Gtk/GtkHelper.vala:67 msgid "Missing Icon" msgstr "Icône introuvable" @@ -598,7 +601,3 @@ msgstr "E" #: src/Utility/TeeJee.Logging.vala:89 msgid "W" msgstr "W" - -#: src/Utility/TeeJee.Process.vala:511 -msgid "Stopped" -msgstr "Arrêté" diff --git a/po/hr.po b/po/hr.po index 8bf1cbe4..4ff842b3 100644 --- a/po/hr.po +++ b/po/hr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-11 09:00-0400\n" +"POT-Creation-Date: 2020-05-11 10:31-0400\n" "PO-Revision-Date: 2017-12-24 00:52+0100\n" "Last-Translator: gogo \n" "Language-Team: Croatian \n" @@ -56,16 +56,16 @@ msgstr "" msgid "Continue ?" msgstr "" -#: src/Common/LinuxKernel.vala:744 src/Console/AppConsole.vala:336 +#: src/Common/LinuxKernel.vala:744 src/Console/AppConsole.vala:334 msgid "Latest update" msgstr "" -#: src/Common/LinuxKernel.vala:755 src/Console/AppConsole.vala:343 +#: src/Common/LinuxKernel.vala:755 src/Console/AppConsole.vala:341 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:763 src/Console/AppConsole.vala:348 -#: src/Console/AppConsole.vala:398 +#: src/Common/LinuxKernel.vala:763 src/Console/AppConsole.vala:346 +#: src/Console/AppConsole.vala:396 msgid "No updates found" msgstr "Nema pronađenih nadopuna" @@ -260,7 +260,8 @@ msgid "" msgstr "" #: src/Console/AppConsole.vala:103 -msgid "Admin access is required for running this application." +#, fuzzy +msgid "Admin access is required for this action." msgstr "Administratorske ovlasti su potrebne za pokretanje ove aplikacije." #: src/Console/AppConsole.vala:104 @@ -271,7 +272,8 @@ msgstr "Pokreni aplikaciju kao administrator sa pkexec ili sudo." msgid "Unknown option" msgstr "Nepoznata mogućnost" -#: src/Console/AppConsole.vala:182 +#: src/Console/AppConsole.vala:182 src/Console/AppConsole.vala:288 +#: src/Console/AppConsole.vala:316 #, fuzzy msgid "Run" msgstr "Pokrenuto" @@ -281,7 +283,7 @@ msgstr "Pokrenuto" msgid "to list all options" msgstr "Prikaži sve mogućnosti" -#: src/Console/AppConsole.vala:261 src/Console/AppConsole.vala:298 +#: src/Console/AppConsole.vala:261 src/Console/AppConsole.vala:296 msgid "No kernels specified" msgstr "" @@ -293,20 +295,25 @@ msgstr "Više kernela je odabrano za instalaciju. odaberite samo jedan." msgid "Could not find requested version" msgstr "Nemoguće je pronaći zatraženu inačicu" -#: src/Console/AppConsole.vala:289 src/Console/AppConsole.vala:318 -msgid "Run '" +#: src/Console/AppConsole.vala:288 +msgid "and use a version string listed in first column" msgstr "" -#: src/Console/AppConsole.vala:317 +#: src/Console/AppConsole.vala:315 msgid "Command not specified" msgstr "" -#: src/Console/AppConsole.vala:370 src/Console/AppConsole.vala:386 +#: src/Console/AppConsole.vala:316 +#, fuzzy +msgid "to list all commands" +msgstr "Prikaži sve mogućnosti" + +#: src/Console/AppConsole.vala:368 src/Console/AppConsole.vala:384 #, fuzzy, c-format msgid "Kernel %s Available" msgstr "Dostupni paketi" -#: src/Console/AppConsole.vala:373 src/Console/AppConsole.vala:389 +#: src/Console/AppConsole.vala:371 src/Console/AppConsole.vala:387 #: src/Gtk/MainWindow.vala:335 msgid "Install" msgstr "Instaliraj" @@ -521,11 +528,7 @@ msgstr "Da" msgid "No" msgstr "Ne" -#: src/Utility/Gtk/GtkHelper.vala:17 -msgid "Error" -msgstr "Greška" - -#: src/Utility/Gtk/GtkHelper.vala:77 +#: src/Utility/Gtk/GtkHelper.vala:67 msgid "Missing Icon" msgstr "Ikone koje nedostaju" @@ -593,7 +596,3 @@ msgstr "G" #: src/Utility/TeeJee.Logging.vala:89 msgid "W" msgstr "Z" - -#: src/Utility/TeeJee.Process.vala:511 -msgid "Stopped" -msgstr "Zaustavljeno" diff --git a/po/messages.pot b/po/messages.pot index ddcedf25..4e0d9138 100644 --- a/po/messages.pot +++ b/po/messages.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline 1.0.9\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-11 09:00-0400\n" +"POT-Creation-Date: 2020-05-11 10:43-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -57,16 +57,16 @@ msgstr "" msgid "Continue ?" msgstr "" -#: src/Common/LinuxKernel.vala:744 src/Console/AppConsole.vala:336 +#: src/Common/LinuxKernel.vala:744 src/Console/AppConsole.vala:334 msgid "Latest update" msgstr "" -#: src/Common/LinuxKernel.vala:755 src/Console/AppConsole.vala:343 +#: src/Common/LinuxKernel.vala:755 src/Console/AppConsole.vala:341 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:763 src/Console/AppConsole.vala:348 -#: src/Console/AppConsole.vala:398 +#: src/Common/LinuxKernel.vala:763 src/Console/AppConsole.vala:346 +#: src/Console/AppConsole.vala:396 msgid "No updates found" msgstr "" @@ -248,7 +248,7 @@ msgid "" msgstr "" #: src/Console/AppConsole.vala:103 -msgid "Admin access is required for running this application." +msgid "Admin access is required for this action." msgstr "" #: src/Console/AppConsole.vala:104 @@ -259,7 +259,8 @@ msgstr "" msgid "Unknown option" msgstr "" -#: src/Console/AppConsole.vala:182 +#: src/Console/AppConsole.vala:182 src/Console/AppConsole.vala:288 +#: src/Console/AppConsole.vala:316 msgid "Run" msgstr "" @@ -267,7 +268,7 @@ msgstr "" msgid "to list all options" msgstr "" -#: src/Console/AppConsole.vala:261 src/Console/AppConsole.vala:298 +#: src/Console/AppConsole.vala:261 src/Console/AppConsole.vala:296 msgid "No kernels specified" msgstr "" @@ -279,20 +280,24 @@ msgstr "" msgid "Could not find requested version" msgstr "" -#: src/Console/AppConsole.vala:289 src/Console/AppConsole.vala:318 -msgid "Run '" +#: src/Console/AppConsole.vala:288 +msgid "and use a version string listed in first column" msgstr "" -#: src/Console/AppConsole.vala:317 +#: src/Console/AppConsole.vala:315 msgid "Command not specified" msgstr "" -#: src/Console/AppConsole.vala:370 src/Console/AppConsole.vala:386 +#: src/Console/AppConsole.vala:316 +msgid "to list all commands" +msgstr "" + +#: src/Console/AppConsole.vala:368 src/Console/AppConsole.vala:384 #, c-format msgid "Kernel %s Available" msgstr "" -#: src/Console/AppConsole.vala:373 src/Console/AppConsole.vala:389 +#: src/Console/AppConsole.vala:371 src/Console/AppConsole.vala:387 #: src/Gtk/MainWindow.vala:335 msgid "Install" msgstr "" @@ -504,11 +509,7 @@ msgstr "" msgid "No" msgstr "" -#: src/Utility/Gtk/GtkHelper.vala:17 -msgid "Error" -msgstr "" - -#: src/Utility/Gtk/GtkHelper.vala:77 +#: src/Utility/Gtk/GtkHelper.vala:67 msgid "Missing Icon" msgstr "" @@ -575,7 +576,3 @@ msgstr "" #: src/Utility/TeeJee.Logging.vala:89 msgid "W" msgstr "" - -#: src/Utility/TeeJee.Process.vala:511 -msgid "Stopped" -msgstr "" diff --git a/po/nl.po b/po/nl.po index 44a81962..f45c880a 100644 --- a/po/nl.po +++ b/po/nl.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-11 09:00-0400\n" +"POT-Creation-Date: 2020-05-11 10:31-0400\n" "PO-Revision-Date: 2017-04-30 11:50+0200\n" "Last-Translator: Heimen Stoffels \n" "Language-Team: \n" @@ -56,16 +56,16 @@ msgstr "" msgid "Continue ?" msgstr "" -#: src/Common/LinuxKernel.vala:744 src/Console/AppConsole.vala:336 +#: src/Common/LinuxKernel.vala:744 src/Console/AppConsole.vala:334 msgid "Latest update" msgstr "" -#: src/Common/LinuxKernel.vala:755 src/Console/AppConsole.vala:343 +#: src/Common/LinuxKernel.vala:755 src/Console/AppConsole.vala:341 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:763 src/Console/AppConsole.vala:348 -#: src/Console/AppConsole.vala:398 +#: src/Common/LinuxKernel.vala:763 src/Console/AppConsole.vala:346 +#: src/Console/AppConsole.vala:396 msgid "No updates found" msgstr "Geen updates gevonden" @@ -261,7 +261,8 @@ msgid "" msgstr "" #: src/Console/AppConsole.vala:103 -msgid "Admin access is required for running this application." +#, fuzzy +msgid "Admin access is required for this action." msgstr "" "U heeft administrator-rechten nodig om deze applicatie te kunnen draaien." @@ -274,7 +275,8 @@ msgstr "Draai de applicatie als root of m.b.v. gksu/sudo." msgid "Unknown option" msgstr "Onbekende optie" -#: src/Console/AppConsole.vala:182 +#: src/Console/AppConsole.vala:182 src/Console/AppConsole.vala:288 +#: src/Console/AppConsole.vala:316 #, fuzzy msgid "Run" msgstr "Bezig met draaien" @@ -284,7 +286,7 @@ msgstr "Bezig met draaien" msgid "to list all options" msgstr "Alle opties weergeven" -#: src/Console/AppConsole.vala:261 src/Console/AppConsole.vala:298 +#: src/Console/AppConsole.vala:261 src/Console/AppConsole.vala:296 msgid "No kernels specified" msgstr "" @@ -298,20 +300,25 @@ msgstr "" msgid "Could not find requested version" msgstr "De vereiste versie kan niet worden gevonden" -#: src/Console/AppConsole.vala:289 src/Console/AppConsole.vala:318 -msgid "Run '" +#: src/Console/AppConsole.vala:288 +msgid "and use a version string listed in first column" msgstr "" -#: src/Console/AppConsole.vala:317 +#: src/Console/AppConsole.vala:315 msgid "Command not specified" msgstr "" -#: src/Console/AppConsole.vala:370 src/Console/AppConsole.vala:386 +#: src/Console/AppConsole.vala:316 +#, fuzzy +msgid "to list all commands" +msgstr "Alle opties weergeven" + +#: src/Console/AppConsole.vala:368 src/Console/AppConsole.vala:384 #, fuzzy, c-format msgid "Kernel %s Available" msgstr "Beschikbare pakketten" -#: src/Console/AppConsole.vala:373 src/Console/AppConsole.vala:389 +#: src/Console/AppConsole.vala:371 src/Console/AppConsole.vala:387 #: src/Gtk/MainWindow.vala:335 msgid "Install" msgstr "Installeren" @@ -526,11 +533,7 @@ msgstr "" msgid "No" msgstr "" -#: src/Utility/Gtk/GtkHelper.vala:17 -msgid "Error" -msgstr "Fout" - -#: src/Utility/Gtk/GtkHelper.vala:77 +#: src/Utility/Gtk/GtkHelper.vala:67 msgid "Missing Icon" msgstr "Ontbrekend pictogram" @@ -598,7 +601,3 @@ msgstr "E" #: src/Utility/TeeJee.Logging.vala:89 msgid "W" msgstr "W" - -#: src/Utility/TeeJee.Process.vala:511 -msgid "Stopped" -msgstr "Gestopt" diff --git a/po/pl.po b/po/pl.po index b8b91b19..079493b3 100644 --- a/po/pl.po +++ b/po/pl.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-11 09:00-0400\n" +"POT-Creation-Date: 2020-05-11 10:31-0400\n" "PO-Revision-Date: 2017-08-12 15:26+0200\n" "Last-Translator: Waldemar Konik \n" "Language-Team: Polish\n" @@ -55,16 +55,16 @@ msgstr "" msgid "Continue ?" msgstr "" -#: src/Common/LinuxKernel.vala:744 src/Console/AppConsole.vala:336 +#: src/Common/LinuxKernel.vala:744 src/Console/AppConsole.vala:334 msgid "Latest update" msgstr "" -#: src/Common/LinuxKernel.vala:755 src/Console/AppConsole.vala:343 +#: src/Common/LinuxKernel.vala:755 src/Console/AppConsole.vala:341 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:763 src/Console/AppConsole.vala:348 -#: src/Console/AppConsole.vala:398 +#: src/Common/LinuxKernel.vala:763 src/Console/AppConsole.vala:346 +#: src/Console/AppConsole.vala:396 msgid "No updates found" msgstr "Nie znaleziono aktualizacji" @@ -259,7 +259,8 @@ msgid "" msgstr "" #: src/Console/AppConsole.vala:103 -msgid "Admin access is required for running this application." +#, fuzzy +msgid "Admin access is required for this action." msgstr "Aby uruchomić tę aplikację niezbędne są prawa administratora." #: src/Console/AppConsole.vala:104 @@ -271,7 +272,8 @@ msgstr "Uruchom aplikację jako root albo użyj gksu/sudo." msgid "Unknown option" msgstr "Nieznana opcja" -#: src/Console/AppConsole.vala:182 +#: src/Console/AppConsole.vala:182 src/Console/AppConsole.vala:288 +#: src/Console/AppConsole.vala:316 #, fuzzy msgid "Run" msgstr "Uruchomiony" @@ -281,7 +283,7 @@ msgstr "Uruchomiony" msgid "to list all options" msgstr "Pokaż wszystkie opcje" -#: src/Console/AppConsole.vala:261 src/Console/AppConsole.vala:298 +#: src/Console/AppConsole.vala:261 src/Console/AppConsole.vala:296 msgid "No kernels specified" msgstr "" @@ -293,20 +295,25 @@ msgstr "Wybrano kilka jąder do instalacji. Wybierz tylko jedno." msgid "Could not find requested version" msgstr "Nie można odnaleźć żądanej wersji" -#: src/Console/AppConsole.vala:289 src/Console/AppConsole.vala:318 -msgid "Run '" +#: src/Console/AppConsole.vala:288 +msgid "and use a version string listed in first column" msgstr "" -#: src/Console/AppConsole.vala:317 +#: src/Console/AppConsole.vala:315 msgid "Command not specified" msgstr "" -#: src/Console/AppConsole.vala:370 src/Console/AppConsole.vala:386 +#: src/Console/AppConsole.vala:316 +#, fuzzy +msgid "to list all commands" +msgstr "Pokaż wszystkie opcje" + +#: src/Console/AppConsole.vala:368 src/Console/AppConsole.vala:384 #, fuzzy, c-format msgid "Kernel %s Available" msgstr "Dostępne pakiety" -#: src/Console/AppConsole.vala:373 src/Console/AppConsole.vala:389 +#: src/Console/AppConsole.vala:371 src/Console/AppConsole.vala:387 #: src/Gtk/MainWindow.vala:335 msgid "Install" msgstr "Zainstaluj" @@ -521,11 +528,7 @@ msgstr "" msgid "No" msgstr "" -#: src/Utility/Gtk/GtkHelper.vala:17 -msgid "Error" -msgstr "Błąd" - -#: src/Utility/Gtk/GtkHelper.vala:77 +#: src/Utility/Gtk/GtkHelper.vala:67 msgid "Missing Icon" msgstr "Brakująca ikona" @@ -593,7 +596,3 @@ msgstr "E" #: src/Utility/TeeJee.Logging.vala:89 msgid "W" msgstr "W" - -#: src/Utility/TeeJee.Process.vala:511 -msgid "Stopped" -msgstr "Zatrzymany" diff --git a/po/ru.po b/po/ru.po index 4fa7ac32..d66d0109 100644 --- a/po/ru.po +++ b/po/ru.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-11 09:00-0400\n" +"POT-Creation-Date: 2020-05-11 10:31-0400\n" "PO-Revision-Date: 2016-12-13 16:46+0300\n" "Last-Translator: Faust3000 \n" "Language-Team: Russian \n" @@ -56,16 +56,16 @@ msgstr "" msgid "Continue ?" msgstr "" -#: src/Common/LinuxKernel.vala:744 src/Console/AppConsole.vala:336 +#: src/Common/LinuxKernel.vala:744 src/Console/AppConsole.vala:334 msgid "Latest update" msgstr "" -#: src/Common/LinuxKernel.vala:755 src/Console/AppConsole.vala:343 +#: src/Common/LinuxKernel.vala:755 src/Console/AppConsole.vala:341 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:763 src/Console/AppConsole.vala:348 -#: src/Console/AppConsole.vala:398 +#: src/Common/LinuxKernel.vala:763 src/Console/AppConsole.vala:346 +#: src/Console/AppConsole.vala:396 msgid "No updates found" msgstr "Обновлений не найдено" @@ -263,7 +263,8 @@ msgid "" msgstr "" #: src/Console/AppConsole.vala:103 -msgid "Admin access is required for running this application." +#, fuzzy +msgid "Admin access is required for this action." msgstr "Для запуска программы требуются права администратора." #: src/Console/AppConsole.vala:104 @@ -275,7 +276,8 @@ msgstr "Запустите программу с правами Root или ис msgid "Unknown option" msgstr "Неизвестный параметр" -#: src/Console/AppConsole.vala:182 +#: src/Console/AppConsole.vala:182 src/Console/AppConsole.vala:288 +#: src/Console/AppConsole.vala:316 #, fuzzy msgid "Run" msgstr "Используется" @@ -285,7 +287,7 @@ msgstr "Используется" msgid "to list all options" msgstr "Показать все параметры" -#: src/Console/AppConsole.vala:261 src/Console/AppConsole.vala:298 +#: src/Console/AppConsole.vala:261 src/Console/AppConsole.vala:296 msgid "No kernels specified" msgstr "" @@ -297,20 +299,25 @@ msgstr "" msgid "Could not find requested version" msgstr "Не удалось найти запрошенную версию" -#: src/Console/AppConsole.vala:289 src/Console/AppConsole.vala:318 -msgid "Run '" +#: src/Console/AppConsole.vala:288 +msgid "and use a version string listed in first column" msgstr "" -#: src/Console/AppConsole.vala:317 +#: src/Console/AppConsole.vala:315 msgid "Command not specified" msgstr "" -#: src/Console/AppConsole.vala:370 src/Console/AppConsole.vala:386 +#: src/Console/AppConsole.vala:316 +#, fuzzy +msgid "to list all commands" +msgstr "Показать все параметры" + +#: src/Console/AppConsole.vala:368 src/Console/AppConsole.vala:384 #, fuzzy, c-format msgid "Kernel %s Available" msgstr "Установлено" -#: src/Console/AppConsole.vala:373 src/Console/AppConsole.vala:389 +#: src/Console/AppConsole.vala:371 src/Console/AppConsole.vala:387 #: src/Gtk/MainWindow.vala:335 msgid "Install" msgstr "Установить" @@ -525,11 +532,7 @@ msgstr "" msgid "No" msgstr "" -#: src/Utility/Gtk/GtkHelper.vala:17 -msgid "Error" -msgstr "Ошибка" - -#: src/Utility/Gtk/GtkHelper.vala:77 +#: src/Utility/Gtk/GtkHelper.vala:67 msgid "Missing Icon" msgstr "Значок отсутствует" @@ -602,7 +605,3 @@ msgstr "E" #: src/Utility/TeeJee.Logging.vala:89 msgid "W" msgstr "W" - -#: src/Utility/TeeJee.Process.vala:511 -msgid "Stopped" -msgstr "Остановлено" diff --git a/po/sv.po b/po/sv.po index ee4eca50..720124ea 100644 --- a/po/sv.po +++ b/po/sv.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-11 09:00-0400\n" +"POT-Creation-Date: 2020-05-11 10:31-0400\n" "PO-Revision-Date: 2018-01-13 16:56+0100\n" "Last-Translator: Åke Engelbrektson \n" "Language-Team: Svenska Språkfiler \n" @@ -57,16 +57,16 @@ msgstr "" msgid "Continue ?" msgstr "" -#: src/Common/LinuxKernel.vala:744 src/Console/AppConsole.vala:336 +#: src/Common/LinuxKernel.vala:744 src/Console/AppConsole.vala:334 msgid "Latest update" msgstr "" -#: src/Common/LinuxKernel.vala:755 src/Console/AppConsole.vala:343 +#: src/Common/LinuxKernel.vala:755 src/Console/AppConsole.vala:341 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:763 src/Console/AppConsole.vala:348 -#: src/Console/AppConsole.vala:398 +#: src/Common/LinuxKernel.vala:763 src/Console/AppConsole.vala:346 +#: src/Console/AppConsole.vala:396 msgid "No updates found" msgstr "Inga uppdateringar hittades" @@ -259,7 +259,8 @@ msgid "" msgstr "" #: src/Console/AppConsole.vala:103 -msgid "Admin access is required for running this application." +#, fuzzy +msgid "Admin access is required for this action." msgstr "Root-åtkomst krävs för att köra detta program." #: src/Console/AppConsole.vala:104 @@ -270,7 +271,8 @@ msgstr "Kör programmet som administratör, med pkexec eller sudo." msgid "Unknown option" msgstr "Okänt alternativ" -#: src/Console/AppConsole.vala:182 +#: src/Console/AppConsole.vala:182 src/Console/AppConsole.vala:288 +#: src/Console/AppConsole.vala:316 #, fuzzy msgid "Run" msgstr "Körs" @@ -280,7 +282,7 @@ msgstr "Körs" msgid "to list all options" msgstr "Visa alla alternativ" -#: src/Console/AppConsole.vala:261 src/Console/AppConsole.vala:298 +#: src/Console/AppConsole.vala:261 src/Console/AppConsole.vala:296 msgid "No kernels specified" msgstr "" @@ -292,20 +294,25 @@ msgstr "Flera kärnor valda för installation. Välj endast en." msgid "Could not find requested version" msgstr "Kunde inte hitta efterfrågad version" -#: src/Console/AppConsole.vala:289 src/Console/AppConsole.vala:318 -msgid "Run '" +#: src/Console/AppConsole.vala:288 +msgid "and use a version string listed in first column" msgstr "" -#: src/Console/AppConsole.vala:317 +#: src/Console/AppConsole.vala:315 msgid "Command not specified" msgstr "" -#: src/Console/AppConsole.vala:370 src/Console/AppConsole.vala:386 +#: src/Console/AppConsole.vala:316 +#, fuzzy +msgid "to list all commands" +msgstr "Visa alla alternativ" + +#: src/Console/AppConsole.vala:368 src/Console/AppConsole.vala:384 #, fuzzy, c-format msgid "Kernel %s Available" msgstr "Tillgängliga paket" -#: src/Console/AppConsole.vala:373 src/Console/AppConsole.vala:389 +#: src/Console/AppConsole.vala:371 src/Console/AppConsole.vala:387 #: src/Gtk/MainWindow.vala:335 msgid "Install" msgstr "Installera" @@ -520,11 +527,7 @@ msgstr "Ja" msgid "No" msgstr "Nej" -#: src/Utility/Gtk/GtkHelper.vala:17 -msgid "Error" -msgstr "Fel" - -#: src/Utility/Gtk/GtkHelper.vala:77 +#: src/Utility/Gtk/GtkHelper.vala:67 msgid "Missing Icon" msgstr "Saknad ikon" @@ -592,7 +595,3 @@ msgstr "F" #: src/Utility/TeeJee.Logging.vala:89 msgid "W" msgstr "V" - -#: src/Utility/TeeJee.Process.vala:511 -msgid "Stopped" -msgstr "Stoppad" diff --git a/po/tr.po b/po/tr.po index dafe59b6..169ba8d1 100644 --- a/po/tr.po +++ b/po/tr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-11 09:00-0400\n" +"POT-Creation-Date: 2020-05-11 10:31-0400\n" "PO-Revision-Date: 2020-03-10 15:59+0300\n" "Last-Translator: Gökhan GÖKKAYA \n" "Language-Team: Turkish\n" @@ -53,16 +53,16 @@ msgstr "Aşağıdaki çekirdekler silinecek:" msgid "Continue ?" msgstr "Devam et ?" -#: src/Common/LinuxKernel.vala:744 src/Console/AppConsole.vala:336 +#: src/Common/LinuxKernel.vala:744 src/Console/AppConsole.vala:334 msgid "Latest update" msgstr "Son güncelleme" -#: src/Common/LinuxKernel.vala:755 src/Console/AppConsole.vala:343 +#: src/Common/LinuxKernel.vala:755 src/Console/AppConsole.vala:341 msgid "Latest point update" msgstr "Son güncelleme noktası" -#: src/Common/LinuxKernel.vala:763 src/Console/AppConsole.vala:348 -#: src/Console/AppConsole.vala:398 +#: src/Common/LinuxKernel.vala:763 src/Console/AppConsole.vala:346 +#: src/Console/AppConsole.vala:396 msgid "No updates found" msgstr "Güncelleme bulunamadı" @@ -252,7 +252,8 @@ msgid "" msgstr "" #: src/Console/AppConsole.vala:103 -msgid "Admin access is required for running this application." +#, fuzzy +msgid "Admin access is required for this action." msgstr "Bu uygulamayı çalıştırmak için yönetici izni gerekiyor." #: src/Console/AppConsole.vala:104 @@ -263,7 +264,8 @@ msgstr "Bu uygulamayı pkexec yada sudo ile yönetici haklarıyla çalıştırı msgid "Unknown option" msgstr "Bilinmeyen seçenek" -#: src/Console/AppConsole.vala:182 +#: src/Console/AppConsole.vala:182 src/Console/AppConsole.vala:288 +#: src/Console/AppConsole.vala:316 #, fuzzy msgid "Run" msgstr "Çalıştır '" @@ -273,7 +275,7 @@ msgstr "Çalıştır '" msgid "to list all options" msgstr "Tüm seçenekleri göster" -#: src/Console/AppConsole.vala:261 src/Console/AppConsole.vala:298 +#: src/Console/AppConsole.vala:261 src/Console/AppConsole.vala:296 msgid "No kernels specified" msgstr "Belirtilen çekirdek yok" @@ -285,20 +287,25 @@ msgstr "Kurulum için çoklu çekirdek seçildi. Sadece bir tane seçiniz." msgid "Could not find requested version" msgstr "İstenen sürüm bulunamadı" -#: src/Console/AppConsole.vala:289 src/Console/AppConsole.vala:318 -msgid "Run '" -msgstr "Çalıştır '" +#: src/Console/AppConsole.vala:288 +msgid "and use a version string listed in first column" +msgstr "" -#: src/Console/AppConsole.vala:317 +#: src/Console/AppConsole.vala:315 msgid "Command not specified" msgstr "Komut belirtilmedi" -#: src/Console/AppConsole.vala:370 src/Console/AppConsole.vala:386 +#: src/Console/AppConsole.vala:316 +#, fuzzy +msgid "to list all commands" +msgstr "Tüm seçenekleri göster" + +#: src/Console/AppConsole.vala:368 src/Console/AppConsole.vala:384 #, fuzzy, c-format msgid "Kernel %s Available" msgstr "Mevcut Paketler" -#: src/Console/AppConsole.vala:373 src/Console/AppConsole.vala:389 +#: src/Console/AppConsole.vala:371 src/Console/AppConsole.vala:387 #: src/Gtk/MainWindow.vala:335 msgid "Install" msgstr "Kur" @@ -512,11 +519,7 @@ msgstr "Evet" msgid "No" msgstr "Hayır" -#: src/Utility/Gtk/GtkHelper.vala:17 -msgid "Error" -msgstr "Hata" - -#: src/Utility/Gtk/GtkHelper.vala:77 +#: src/Utility/Gtk/GtkHelper.vala:67 msgid "Missing Icon" msgstr "Eksik Simge" @@ -584,7 +587,3 @@ msgstr "H" #: src/Utility/TeeJee.Logging.vala:89 msgid "W" msgstr "U" - -#: src/Utility/TeeJee.Process.vala:511 -msgid "Stopped" -msgstr "Durduruldu" diff --git a/po/uk.po b/po/uk.po index aee3e57d..84df5137 100644 --- a/po/uk.po +++ b/po/uk.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-11 08:54-0400\n" +"POT-Creation-Date: 2020-05-11 10:31-0400\n" "PO-Revision-Date: 2019-07-25 11:00+0300\n" "Last-Translator: Serhii Golovko \n" "Language-Team: Ukranian \n" @@ -53,16 +53,16 @@ msgstr "Наступні ядра будуть видалені:" msgid "Continue ?" msgstr "Продовжувати ?" -#: src/Common/LinuxKernel.vala:744 src/Console/AppConsole.vala:336 +#: src/Common/LinuxKernel.vala:744 src/Console/AppConsole.vala:334 msgid "Latest update" msgstr "Останнє оновлення" -#: src/Common/LinuxKernel.vala:755 src/Console/AppConsole.vala:343 +#: src/Common/LinuxKernel.vala:755 src/Console/AppConsole.vala:341 msgid "Latest point update" msgstr "Остання точка оновлення" -#: src/Common/LinuxKernel.vala:763 src/Console/AppConsole.vala:348 -#: src/Console/AppConsole.vala:398 +#: src/Common/LinuxKernel.vala:763 src/Console/AppConsole.vala:346 +#: src/Console/AppConsole.vala:396 msgid "No updates found" msgstr "Оновлень не знайдено" @@ -254,7 +254,8 @@ msgstr "" "Одна або кілька рядків версії (розділені комами), взяті з виводу --list" #: src/Console/AppConsole.vala:103 -msgid "Admin access is required for running this application." +#, fuzzy +msgid "Admin access is required for this action." msgstr "Для запуску програми потрібно мати права адміністратора." #: src/Console/AppConsole.vala:104 @@ -265,7 +266,8 @@ msgstr "Запустіть додаток як адміністратор за msgid "Unknown option" msgstr "Невідомий параметр" -#: src/Console/AppConsole.vala:182 +#: src/Console/AppConsole.vala:182 src/Console/AppConsole.vala:288 +#: src/Console/AppConsole.vala:316 #, fuzzy msgid "Run" msgstr "Запуск" @@ -275,7 +277,7 @@ msgstr "Запуск" msgid "to list all options" msgstr "Показати усі параметри" -#: src/Console/AppConsole.vala:261 src/Console/AppConsole.vala:298 +#: src/Console/AppConsole.vala:261 src/Console/AppConsole.vala:296 msgid "No kernels specified" msgstr "Ядра не вказані" @@ -287,20 +289,25 @@ msgstr "Для встановлення вибрано кілька ядер. В msgid "Could not find requested version" msgstr "Не вдалося знайти запитувану версію" -#: src/Console/AppConsole.vala:289 src/Console/AppConsole.vala:318 -msgid "Run '" -msgstr "Запуск" +#: src/Console/AppConsole.vala:288 +msgid "and use a version string listed in first column" +msgstr "" -#: src/Console/AppConsole.vala:317 +#: src/Console/AppConsole.vala:315 msgid "Command not specified" msgstr "Команда не вказана" -#: src/Console/AppConsole.vala:370 src/Console/AppConsole.vala:386 +#: src/Console/AppConsole.vala:316 +#, fuzzy +msgid "to list all commands" +msgstr "Показати усі параметри" + +#: src/Console/AppConsole.vala:368 src/Console/AppConsole.vala:384 #, fuzzy, c-format msgid "Kernel %s Available" msgstr "Доступні пакети" -#: src/Console/AppConsole.vala:373 src/Console/AppConsole.vala:389 +#: src/Console/AppConsole.vala:371 src/Console/AppConsole.vala:387 #: src/Gtk/MainWindow.vala:335 msgid "Install" msgstr "Встановити" @@ -516,11 +523,7 @@ msgstr "Так" msgid "No" msgstr "Ні" -#: src/Utility/Gtk/GtkHelper.vala:17 -msgid "Error" -msgstr "Помилка" - -#: src/Utility/Gtk/GtkHelper.vala:77 +#: src/Utility/Gtk/GtkHelper.vala:67 msgid "Missing Icon" msgstr "Нема значка" @@ -588,7 +591,3 @@ msgstr "E" #: src/Utility/TeeJee.Logging.vala:89 msgid "W" msgstr "W" - -#: src/Utility/TeeJee.Process.vala:511 -msgid "Stopped" -msgstr "Зупинено" diff --git a/src/Common/Main.vala b/src/Common/Main.vala index 37688d67..123a92e1 100644 --- a/src/Common/Main.vala +++ b/src/Common/Main.vala @@ -308,4 +308,3 @@ public class Main : GLib.Object{ } } } - diff --git a/src/Console/AppConsole.vala b/src/Console/AppConsole.vala index b27a6040..f9115e33 100644 --- a/src/Console/AppConsole.vala +++ b/src/Console/AppConsole.vala @@ -38,7 +38,7 @@ public class AppConsole : GLib.Object { set_locale(); - log_msg("%s %s".printf(BRANDING_SHORTNAME, BRANDING_VERSION)); + log_msg(BRANDING_SHORTNAME+" "+BRANDING_VERSION); LOG_TIMESTAMP = false; @@ -66,7 +66,7 @@ public class AppConsole : GLib.Object { private static string help_message() { - string msg = "\n" + BRANDING_SHORTNAME + " v" + BRANDING_VERSION + " - " + BRANDING_LONGNAME + "\n" + string msg = "\n" + BRANDING_SHORTNAME + " " + BRANDING_VERSION + " - " + BRANDING_LONGNAME + "\n" + "\n" + _("Syntax") + ": " + BRANDING_SHORTNAME + " [options]\n" + "\n" @@ -100,7 +100,7 @@ public class AppConsole : GLib.Object { private static void check_if_admin(){ if (!user_is_admin()) { - log_error(_("Admin access is required for running this application.")); + log_error(_("Admin access is required for this action.")); log_error(_("Run the application as admin with pkexec or sudo.")); exit(1); } @@ -285,9 +285,7 @@ public class AppConsole : GLib.Object { var msg = _("Could not find requested version"); msg += ": %s".printf(requested_version); log_error(msg); - - log_error(_("Run '"+BRANDING_SHORTNAME+" --list' and use the version string listed in first column")); - + log_error(_("Run")+" '"+BRANDING_SHORTNAME+" --list' "+_("and use a version string listed in first column")); exit(1); } @@ -315,7 +313,7 @@ public class AppConsole : GLib.Object { default: // unknown option log_error(_("Command not specified")); - log_error(_("Run '"+BRANDING_SHORTNAME+" --help' to list all commands")); + log_error(_("Run")+" '"+BRANDING_SHORTNAME+" --help' "+_("to list all commands")); break; } diff --git a/src/Gtk/AppGtk.vala b/src/Gtk/AppGtk.vala index cb706454..f41fb66f 100644 --- a/src/Gtk/AppGtk.vala +++ b/src/Gtk/AppGtk.vala @@ -40,7 +40,7 @@ public class AppGtk : GLib.Object { set_locale(); - log_msg("%s v%s".printf(BRANDING_SHORTNAME, BRANDING_VERSION)); + log_msg("%s %s".printf(BRANDING_SHORTNAME, BRANDING_VERSION)); Gtk.init(ref args); @@ -153,7 +153,7 @@ public class AppGtk : GLib.Object { public static string help_message() { - string msg = "\n" + BRANDING_SHORTNAME + " v" + BRANDING_VERSION + " - " + BRANDING_LONGNAME + "\n"; + string msg = "\n" + BRANDING_SHORTNAME + " " + BRANDING_VERSION + " - " + BRANDING_LONGNAME + "\n"; msg += "\n"; msg += _("Syntax") + ": " + BRANDING_SHORTNAME + "-gtk [options]\n"; msg += "\n"; diff --git a/src/Utility/AsyncTask.vala b/src/Utility/AsyncTask.vala index b90d9664..57f93026 100644 --- a/src/Utility/AsyncTask.vala +++ b/src/Utility/AsyncTask.vala @@ -323,64 +323,6 @@ public abstract class AsyncTask : GLib.Object{ public bool is_running(){ return (status == AppStatus.RUNNING); } - - // public actions -------------- - - public void pause() { - Pid sub_child_pid; - foreach (long pid in get_process_children(child_pid)) { - sub_child_pid = (Pid) pid; - process_pause(sub_child_pid); - } - - status = AppStatus.PAUSED; - } - - public void resume() { - Pid sub_child_pid; - foreach (long pid in get_process_children(child_pid)) { - sub_child_pid = (Pid) pid; - process_resume(sub_child_pid); - } - - status = AppStatus.RUNNING; - } - - public void stop(AppStatus status_to_update = AppStatus.CANCELLED) { - // we need to un-freeze the processes before we kill them - if (status == AppStatus.PAUSED) { - resume(); - } - - status = status_to_update; - - process_quit(child_pid); - - log_debug("process_quit: %d".printf(child_pid)); - } - - public void print_app_status(){ - switch(status){ - case AppStatus.NOT_STARTED: - log_debug("status=%s".printf("NOT_STARTED")); - break; - case AppStatus.RUNNING: - log_debug("status=%s".printf("RUNNING")); - break; - case AppStatus.PAUSED: - log_debug("status=%s".printf("PAUSED")); - break; - case AppStatus.FINISHED: - log_debug("status=%s".printf("FINISHED")); - break; - case AppStatus.CANCELLED: - log_debug("status=%s".printf("CANCELLED")); - break; - case AppStatus.PASSWORD_REQUIRED: - log_debug("status=%s".printf("PASSWORD_REQUIRED")); - break; - } - } } public enum AppStatus { diff --git a/src/Utility/Gtk/GtkHelper.vala b/src/Utility/Gtk/GtkHelper.vala index bb68b003..cb9b0aca 100644 --- a/src/Utility/Gtk/GtkHelper.vala +++ b/src/Utility/Gtk/GtkHelper.vala @@ -10,18 +10,6 @@ namespace TeeJee.GtkHelper{ using Gtk; - // messages ---------------------------------------- - - public void show_err_log(Gtk.Window parent, bool disable_log = true){ - if ((err_log != null) && (err_log.length > 0)){ - gtk_messagebox(_("Error"), err_log, parent, true); - } - - if (disable_log){ - err_log_disable(); - } - } - public void gtk_do_events (){ /* Do pending events */ @@ -30,6 +18,8 @@ namespace TeeJee.GtkHelper{ Gtk.main_iteration (); } + // messages ---------------------------------------- + public void gtk_messagebox( string title, string message, Gtk.Window? parent_win, bool is_error = false){ diff --git a/src/Utility/TeeJee.Misc.vala b/src/Utility/TeeJee.Misc.vala index 3416805e..2407b1d2 100644 --- a/src/Utility/TeeJee.Misc.vala +++ b/src/Utility/TeeJee.Misc.vala @@ -30,14 +30,6 @@ namespace TeeJee.Misc { using TeeJee.FileSystem; using TeeJee.ProcessHelper; - // localization -------------------- - - public void set_numeric_locale(string type){ - Intl.setlocale(GLib.LocaleCategory.NUMERIC, type); - Intl.setlocale(GLib.LocaleCategory.COLLATE, type); - Intl.setlocale(GLib.LocaleCategory.TIME, type); - } - // timestamp ---------------- public string timestamp (bool show_millis = false){ diff --git a/src/Utility/TeeJee.Process.vala b/src/Utility/TeeJee.Process.vala index 510a2e97..d2fdf4af 100644 --- a/src/Utility/TeeJee.Process.vala +++ b/src/Utility/TeeJee.Process.vala @@ -201,10 +201,16 @@ namespace TeeJee.ProcessHelper{ script.append ("\n"); script.append ("%s\n".printf(commands)); script.append ("\n\nexitCode=$?\n"); + // FIXME bad behavior just assuming you can create files in cwd any time script.append ("echo ${exitCode} > ${exitCode}\n"); script.append ("echo ${exitCode} > status\n"); - // TODO remove this - don't allow automatically creating a dir that the caller doesn't know how to delete + // TODO - because of unwise things exactly like those echo > filename + // commands above, and also just so that the caller always knows + // how to clean up properly without risk of deleting something it shouldn't + // this should be codified into a promise that if we generate a path, + // then the final path element is *always* a new unique temp directory, + // as well as the sh file itself. - bkw if ((sh_path == null) || (sh_path.length == 0)){ string t_dir = create_tmp_dir(); sh_path = get_temp_file_path(t_dir) + ".sh"; @@ -390,28 +396,6 @@ namespace TeeJee.ProcessHelper{ return (ret_val == 0); } - // dep: pgrep TODO: Rewrite using /proc - public bool process_is_running_by_name(string proc_name){ - - /* Checks if given process is running */ - - string cmd = ""; - string std_out; - string std_err; - int ret_val; - - try{ - cmd = "pgrep -f '%s'".printf(proc_name); - Process.spawn_command_line_sync(cmd, out std_out, out std_err, out ret_val); - } - catch (Error e) { - log_error (e.message); - return false; - } - - return (ret_val == 0); - } - // dep: ps TODO: Rewrite using /proc public int[] get_process_children (Pid parent_pid){ @@ -457,25 +441,6 @@ namespace TeeJee.ProcessHelper{ } } } - - public void process_kill(Pid process_pid, bool killChildren = true){ - - /* Kills specified process and its children (optional). - * Sends signal SIGKILL to the process to kill it forcefully. - * It is recommended to use the function process_quit() instead. - * */ - - int[] child_pids = get_process_children (process_pid); - Posix.kill (process_pid, Posix.Signal.KILL); - - if (killChildren){ - Pid childPid; - foreach (long pid in child_pids){ - childPid = (Pid) pid; - Posix.kill (childPid, Posix.Signal.KILL); - } - } - } // dep: kill public int process_pause (Pid procID){ @@ -493,24 +458,4 @@ namespace TeeJee.ProcessHelper{ return exec_sync ("kill -CONT %d".printf(procID), null, null); } - // dep: ps TODO: Rewrite using /proc - public void process_quit_by_name(string cmd_name, string cmd_to_match, bool exact_match){ - - /* Kills a specific command */ - - string std_out, std_err; - exec_sync ("ps w -C '%s'".printf(cmd_name), out std_out, out std_err); - //use 'ps ew -C conky' for all users - - string pid = ""; - foreach(string line in std_out.split("\n")){ - if ((exact_match && line.has_suffix(" " + cmd_to_match)) - || (!exact_match && (line.index_of(cmd_to_match) != -1))){ - pid = line.strip().split(" ")[0]; - Posix.kill ((Pid) int.parse(pid), 15); - log_debug(_("Stopped") + ": [PID=" + pid + "] "); - } - } - } - } diff --git a/src/Utility/TeeJee.System.vala b/src/Utility/TeeJee.System.vala index d1ae6852..4d285aa2 100644 --- a/src/Utility/TeeJee.System.vala +++ b/src/Utility/TeeJee.System.vala @@ -180,11 +180,6 @@ namespace TeeJee.System{ return timer; } - public void timer_restart(GLib.Timer timer){ - timer.reset(); - timer.start(); - } - public ulong timer_elapsed(GLib.Timer timer, bool stop = true){ ulong microseconds; double seconds; @@ -198,10 +193,4 @@ namespace TeeJee.System{ public void sleep(int milliseconds){ Thread.usleep ((ulong) milliseconds * 1000); } - - public void set_numeric_locale(string type){ - Intl.setlocale(GLib.LocaleCategory.NUMERIC, type); - Intl.setlocale(GLib.LocaleCategory.COLLATE, type); - Intl.setlocale(GLib.LocaleCategory.TIME, type); - } } diff --git a/src/Utility/Version.vala b/src/Utility/Version.vala deleted file mode 100644 index e12a31fa..00000000 --- a/src/Utility/Version.vala +++ /dev/null @@ -1,94 +0,0 @@ - -/* - * Version.vala - * - * Copyright 2016 Tony George - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, - * MA 02110-1301, USA. - * - * - */ - - -using TeeJee.Logging; -using TeeJee.FileSystem; -using TeeJee.Misc; - -namespace TeeJee { - - public class Version : GLib.Object, Gee.Comparable { - - public string version = ""; - public Gee.ArrayList version_numbers; - - public Version(string version_string){ - version = version_string; - version_numbers = new Gee.ArrayList(); - - string[] arr = version.split_set (".-_"); - - foreach(var part in arr){ - if (is_numeric(part)){ - version_numbers.add(int.parse(part)); - } - else{ - break; - } - } - } - - public int compare_to(Version b){ - Version a = this; - int i = 0; - - // while both arrays have an element - while ((i < a.version_numbers.size) && (i < b.version_numbers.size)){ - - // continue if equal - if (a.version_numbers[i] == b.version_numbers[i]){ - i++; - continue; - } - - // return difference - return a.version_numbers[i] - b.version_numbers[i]; - } - - // one array has less parts than the other and all corresponding parts are equal - - // larger array is larger version - return a.version_numbers.size - b.version_numbers.size; - } - - public bool is_minimum(string version_string){ - Version a = this; - Version b = new Version(version_string); - return a.compare_to(b) >= 0; - } - - public bool is_maximum(string version_string){ - Version a = this; - Version b = new Version(version_string); - return a.compare_to(b) <= 0; - } - - public bool is_equal(string version_string){ - Version a = this; - Version b = new Version(version_string); - return a.compare_to(b) == 0; - } - } -} From 9bf51f8e103a192d241b717b6a030b75c56ecf7a Mon Sep 17 00:00:00 2001 From: cappelikan Date: Mon, 11 May 2020 18:25:50 +0300 Subject: [PATCH 086/567] Update uk.po Fixed translate uk.po --- po/uk.po | 94 ++++++++++++++++++++++++++++---------------------------- 1 file changed, 47 insertions(+), 47 deletions(-) diff --git a/po/uk.po b/po/uk.po index 84df5137..18d90105 100644 --- a/po/uk.po +++ b/po/uk.po @@ -23,11 +23,11 @@ msgstr "Системна архитектура" #: src/Common/LinuxKernel.vala:231 msgid "Index is stale" -msgstr "Відомості застаріли" +msgstr "Індекс є застарілим" #: src/Common/LinuxKernel.vala:234 msgid "Index is fresh" -msgstr "Відомості актуальні" +msgstr "Індекс є актуальним" #: src/Common/LinuxKernel.vala:339 msgid "Fetching index..." @@ -35,15 +35,15 @@ msgstr "Отримання індекса ..." #: src/Common/LinuxKernel.vala:382 msgid "Fetching index from kernel.ubuntu.com..." -msgstr "Отримання відомостей з kernel.ubuntu.com..." +msgstr "Отримання індекса з kernel.ubuntu.com..." #: src/Common/LinuxKernel.vala:694 msgid "Could not find running kernel in list!" -msgstr "Не вдалося знайти запущене ядро ​​у списку!" +msgstr "Не вдалося знайти запущене ядро у списку!" #: src/Common/LinuxKernel.vala:700 msgid "Could not find any kernels to remove" -msgstr "Не вдалося знайти жодне ядро ​​для видалення" +msgstr "Не вдалося знайти жодне ядро для вилучення" #: src/Common/LinuxKernel.vala:709 msgid "The following kernels will be removed:" @@ -99,7 +99,7 @@ msgstr "Завантаження" #: src/Utility/Gtk/CustomMessageDialog.vala:148 #: src/Utility/Gtk/CustomMessageDialog.vala:152 msgid "OK" -msgstr "OK" +msgstr "Добре" #: src/Common/LinuxKernel.vala:1208 msgid "ERROR" @@ -107,7 +107,7 @@ msgstr "ПОМИЛКА" #: src/Common/LinuxKernel.vala:1222 src/Gtk/MainWindow.vala:663 msgid "This kernel is already installed." -msgstr "Это ядро уже установлено." +msgstr "Це ядро вже встановлено." #: src/Common/LinuxKernel.vala:1253 msgid "Installation completed. A reboot is required to use the new kernel." @@ -123,7 +123,7 @@ msgid "" "Selected kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." msgstr "" -"Це ядро ​​зараз працює і не може бути видалено. \n" +"Це ядро зараз працює і не може бути видалено. \n" "Встановіть інше ядро, перш ніж видаляти його." #: src/Common/LinuxKernel.vala:1277 @@ -132,19 +132,19 @@ msgstr "Підготовка до видалення вибраних ядер" #: src/Common/LinuxKernel.vala:1309 src/Common/LinuxKernel.vala:1362 msgid "Un-install completed" -msgstr "Удаление завершено" +msgstr "Видалення завершено" #: src/Common/LinuxKernel.vala:1312 src/Common/LinuxKernel.vala:1365 msgid "Un-install completed with errors" -msgstr "Удаление завершено с ошибками" +msgstr "Видалення завершено з помилками" #: src/Common/LinuxKernel.vala:1325 msgid "" "This kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." msgstr "" -"Это ядро в настоящий момент работает и не может быть удалено.\n" -" Установите другое ядро, прежде чем удалять его." +"Це ядро наразі працює і його неможливо видалити.\n" +" Встановіть інше ядро перед тим, як видалити его." #: src/Common/Main.vala:122 msgid "Commands listed below are not available on this system" @@ -152,7 +152,7 @@ msgstr "Команди перераховані нижче недоступні #: src/Common/Main.vala:123 msgid "Please install required packages and try again" -msgstr "Встановити необхідні пакети і спробуйте знову" +msgstr "Будьласка встановіть необхідні пакети та спробуйте ще раз" #: src/Common/Main.vala:269 msgid "Called from" @@ -161,7 +161,7 @@ msgstr "Викликано з" #: src/Common/Main.vala:281 #, fuzzy msgid "Notifications are disabled" -msgstr "Повідомлення" +msgstr "Повідомлення вимкнено" #: src/Common/Package.vala:134 src/Common/Package.vala:198 #, c-format @@ -186,15 +186,15 @@ msgstr "Перевірте наявність оновлень ядра та п #: src/Console/AppConsole.vala:77 msgid "List all available mainline kernels" -msgstr "Список всіх доступних основних ядер" +msgstr "Список усіх доступних основних ядер" #: src/Console/AppConsole.vala:78 msgid "List installed kernels" -msgstr "Список всіх доступних основних ядер" +msgstr "Список встановлених ядер" #: src/Console/AppConsole.vala:79 msgid "Install latest mainline kernel" -msgstr "Встановити зазначену гілку ядра" +msgstr "Встановіть останнє основне ядро" #: src/Console/AppConsole.vala:80 msgid "Install latest point update for current series" @@ -202,21 +202,21 @@ msgstr "Встановіть останню точку оновлення для #: src/Console/AppConsole.vala:81 msgid "Install specified mainline kernel" -msgstr "Встановити зазначену гілку ядра" +msgstr "Встановіть конкретне основне ядро" #: src/Console/AppConsole.vala:82 #, fuzzy msgid "Uninstall specified kernels" -msgstr "Встановити зазначену гілку ядра" +msgstr "Видаліть конкретні ядра" #: src/Console/AppConsole.vala:83 src/Gtk/MainWindow.vala:401 msgid "Remove installed kernels older than running kernel" -msgstr "Видаліть встановлені ядра, старші за запущене" +msgstr "Видаліть встановлені ядра, старші за запущене ядро" #: src/Console/AppConsole.vala:84 #, fuzzy msgid "Download specified kernels" -msgstr "Завантажити пакети для зазначеного ядра" +msgstr "Завантажте конкретні ядра" #: src/Console/AppConsole.vala:85 msgid "Remove files from application cache" @@ -236,7 +236,7 @@ msgstr "Увімкнути багатослівний вихід налагод #: src/Console/AppConsole.vala:91 msgid "Assume Yes for all prompts (non-interactive mode)" -msgstr "Припустимо, так для всіх підказок (неінтерактивний режим)" +msgstr "Припустимо, Так для всіх підказок (неінтерактивний режим)" #: src/Console/AppConsole.vala:92 msgid "Override user" @@ -291,7 +291,7 @@ msgstr "Не вдалося знайти запитувану версію" #: src/Console/AppConsole.vala:288 msgid "and use a version string listed in first column" -msgstr "" +msgstr "і використовувати рядок версій, вказаний у першому стовпці" #: src/Console/AppConsole.vala:315 msgid "Command not specified" @@ -314,7 +314,7 @@ msgstr "Встановити" #: src/Console/OSDNotify.vala:66 msgid "Show" -msgstr "шоу" +msgstr "Показати" #: src/Gtk/AppGtk.vala:162 msgid "Print debug information" @@ -352,15 +352,15 @@ msgstr "Вибрано кілька ядер" #: src/Gtk/MainWindow.vala:344 msgid "Select a single kernel to install" -msgstr "Виберіть одне ядро ​​для встановлення" +msgstr "Виберіть одне ядро для встановлення" #: src/Gtk/MainWindow.vala:347 src/Gtk/MainWindow.vala:358 msgid "Not Selected" -msgstr "Не вибрано" +msgstr "Невибрано" #: src/Gtk/MainWindow.vala:347 msgid "Select the kernel to install" -msgstr "Виберіть ядро ​​для встановлення" +msgstr "Виберіть ядро для встановлення" #: src/Gtk/MainWindow.vala:352 msgid "Remove" @@ -427,7 +427,7 @@ msgstr "Показувати вікно сповіщень на робочому #: src/Gtk/SettingsDialog.vala:102 msgid "(Allowing intervals in seconds for --debug)" -msgstr "" +msgstr "(Дозволити інтервали в секундах для --debug)" #: src/Gtk/SettingsDialog.vala:112 msgid "Check every" @@ -435,24 +435,24 @@ msgstr "Перевіряти кожні" #: src/Gtk/SettingsDialog.vala:145 msgid "Hour(s)" -msgstr "Година(дин)" +msgstr "Година(Годин)" #: src/Gtk/SettingsDialog.vala:147 msgid "Day(s)" -msgstr "День(днів)" +msgstr "День(Днів)" #: src/Gtk/SettingsDialog.vala:149 msgid "Week(s)" -msgstr "Тиждень (ні)" +msgstr "Тиждень(ні)" #: src/Gtk/SettingsDialog.vala:152 #, fuzzy msgid "Second(s)" -msgstr "секунди" +msgstr "Секунда(и)" #: src/Gtk/SettingsDialog.vala:158 msgid "Display" -msgstr "Вид" +msgstr "Показ" #: src/Gtk/SettingsDialog.vala:166 msgid "Hide unstable and RC releases" @@ -460,7 +460,7 @@ msgstr "Приховати нестабільні і реліз-кандидат #: src/Gtk/SettingsDialog.vala:180 msgid "Show N previous major versions " -msgstr "" +msgstr "Показати N попередніх основних версій" #: src/Gtk/SettingsDialog.vala:195 msgid "Other" @@ -504,16 +504,16 @@ msgstr "Художники" #: src/Utility/Gtk/AboutWindow.vala:337 msgid "Translators" -msgstr "Перекладачи" +msgstr "Перекладачі" #: src/Utility/Gtk/AboutWindow.vala:345 msgid "Documenters" -msgstr "Укладачі документації" +msgstr "Документатори" #: src/Utility/Gtk/AboutWindow.vala:353 #, fuzzy msgid "Third Party Inclusions" -msgstr "Сторонние инструменты" +msgstr "Інструменти Сторонніх Розробників" #: src/Utility/Gtk/CustomMessageDialog.vala:157 msgid "Yes" @@ -529,15 +529,15 @@ msgstr "Нема значка" #: src/Utility/TeeJee.FileSystem.vala:71 src/Utility/TeeJee.FileSystem.vala:74 msgid "File deleted" -msgstr "Не вдалося видалити файл" +msgstr "Файл видалено" #: src/Utility/TeeJee.FileSystem.vala:80 src/Utility/TeeJee.FileSystem.vala:278 msgid "Failed to delete file" -msgstr "Не вдалося видалити файл" +msgstr "Невдалося видалити файл" #: src/Utility/TeeJee.FileSystem.vala:99 msgid "Failed to read file" -msgstr "Не вдалося прочитати файл" +msgstr "Невдалося прочитати файл" #: src/Utility/TeeJee.FileSystem.vala:127 #: src/Utility/TeeJee.FileSystem.vala:130 @@ -546,16 +546,16 @@ msgstr "Файл збережено" #: src/Utility/TeeJee.FileSystem.vala:139 msgid "Failed to write file" -msgstr "Не вдалося записати файл" +msgstr "Невдалося записати файл" #: src/Utility/TeeJee.FileSystem.vala:152 #: src/Utility/TeeJee.FileSystem.vala:155 msgid "File copied" -msgstr "Не вдалося скопіювати файл" +msgstr "Невдалося скопіювати файл" #: src/Utility/TeeJee.FileSystem.vala:163 msgid "Failed to copy file" -msgstr "Не вдалося скопіювати файл" +msgstr "Невдалося скопіювати файл" #: src/Utility/TeeJee.FileSystem.vala:173 msgid "File not found" @@ -564,11 +564,11 @@ msgstr "Файл не знайдено" #: src/Utility/TeeJee.FileSystem.vala:187 #: src/Utility/TeeJee.FileSystem.vala:190 msgid "File moved" -msgstr "Видалити" +msgstr "Файл переміщено" #: src/Utility/TeeJee.FileSystem.vala:195 msgid "Failed to move file" -msgstr "Не вдалося перемістити файл" +msgstr "Невдалося перемістити файл" #: src/Utility/TeeJee.FileSystem.vala:252 #: src/Utility/TeeJee.FileSystem.vala:255 @@ -577,12 +577,12 @@ msgstr "Використовувана кеш-папка" #: src/Utility/TeeJee.FileSystem.vala:262 msgid "Failed to create dir" -msgstr "Не вдалося створити теку" +msgstr "Невдалося створити теку" #: src/Utility/TeeJee.FileSystem.vala:277 #, fuzzy msgid "Deleted" -msgstr "видалено" +msgstr "Видалено" #: src/Utility/TeeJee.Logging.vala:89 msgid "E" From 8936438545a4f56bae74a9c764c5dab23a27f53a Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Mon, 11 May 2020 22:08:57 -0400 Subject: [PATCH 087/567] remove a little more cruft around logging --- .deb_build_number.mak | 2 +- po/es.po | 98 ++++++++++++++++----------------- po/fr.po | 98 ++++++++++++++++----------------- po/hr.po | 98 ++++++++++++++++----------------- po/messages.pot | 96 ++++++++++++++++---------------- po/nl.po | 98 ++++++++++++++++----------------- po/pl.po | 98 ++++++++++++++++----------------- po/ru.po | 98 ++++++++++++++++----------------- po/sv.po | 98 ++++++++++++++++----------------- po/tr.po | 98 ++++++++++++++++----------------- po/uk.po | 98 ++++++++++++++++----------------- src/Common/Main.vala | 2 - src/Console/AppConsole.vala | 2 - src/Gtk/AppGtk.vala | 2 - src/Utility/TeeJee.Logging.vala | 56 +++---------------- 15 files changed, 499 insertions(+), 543 deletions(-) diff --git a/.deb_build_number.mak b/.deb_build_number.mak index af856ddf..20c8cdda 100644 --- a/.deb_build_number.mak +++ b/.deb_build_number.mak @@ -1,3 +1,3 @@ # This file is generated by Makefile "make deb_build_number" DEB_PKG_VERSION := 1.0.9 -DEB_BUILD_NUMBER := 0011 +DEB_BUILD_NUMBER := 0012 diff --git a/po/es.po b/po/es.po index fad9b43e..8348c7cd 100644 --- a/po/es.po +++ b/po/es.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-11 10:31-0400\n" +"POT-Creation-Date: 2020-05-11 22:06-0400\n" "PO-Revision-Date: 2018-01-03 02:03-0600\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish\n" @@ -53,16 +53,16 @@ msgstr "Los siguientes kernels serán eliminados:" msgid "Continue ?" msgstr "¿Continuar?" -#: src/Common/LinuxKernel.vala:744 src/Console/AppConsole.vala:334 +#: src/Common/LinuxKernel.vala:744 src/Console/AppConsole.vala:332 msgid "Latest update" msgstr "" -#: src/Common/LinuxKernel.vala:755 src/Console/AppConsole.vala:341 +#: src/Common/LinuxKernel.vala:755 src/Console/AppConsole.vala:339 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:763 src/Console/AppConsole.vala:346 -#: src/Console/AppConsole.vala:396 +#: src/Common/LinuxKernel.vala:763 src/Console/AppConsole.vala:344 +#: src/Console/AppConsole.vala:394 msgid "No updates found" msgstr "No se encontró ninguna actualización" @@ -146,20 +146,20 @@ msgstr "" "Este núcleo está en ejecución y no se puede desinstalar.\n" "Instale otro núcleo antes de desinstalar este." -#: src/Common/Main.vala:122 +#: src/Common/Main.vala:120 msgid "Commands listed below are not available on this system" msgstr "" "Las órdenes enumeradas a continuación no están disponibles en este sistema" -#: src/Common/Main.vala:123 +#: src/Common/Main.vala:121 msgid "Please install required packages and try again" msgstr "Instale los paquetes requeridos e inténtelo de nuevo" -#: src/Common/Main.vala:269 +#: src/Common/Main.vala:267 msgid "Called from" msgstr "" -#: src/Common/Main.vala:281 +#: src/Common/Main.vala:279 #, fuzzy msgid "Notifications are disabled" msgstr "Notificación" @@ -169,145 +169,145 @@ msgstr "Notificación" msgid "File not found: %s" msgstr "No se encontró el archivo: %s" -#: src/Console/AppConsole.vala:71 src/Gtk/AppGtk.vala:158 +#: src/Console/AppConsole.vala:69 src/Gtk/AppGtk.vala:156 msgid "Syntax" msgstr "Sintaxis" -#: src/Console/AppConsole.vala:73 +#: src/Console/AppConsole.vala:71 msgid "Commands" msgstr "Comandos" -#: src/Console/AppConsole.vala:75 +#: src/Console/AppConsole.vala:73 msgid "Check for kernel updates" msgstr "Buscar actualizaciones del núcleo" -#: src/Console/AppConsole.vala:76 +#: src/Console/AppConsole.vala:74 msgid "Check for kernel updates and notify current user" msgstr "Compruebe las actualizaciones del kernel y notifique al usuario actual" -#: src/Console/AppConsole.vala:77 +#: src/Console/AppConsole.vala:75 msgid "List all available mainline kernels" msgstr "Mostrar todos los núcleos troncales disponibles" -#: src/Console/AppConsole.vala:78 +#: src/Console/AppConsole.vala:76 msgid "List installed kernels" msgstr "Mostrar kernels disponibles" -#: src/Console/AppConsole.vala:79 +#: src/Console/AppConsole.vala:77 msgid "Install latest mainline kernel" msgstr "Instalar kernel troncal especificado" -#: src/Console/AppConsole.vala:80 +#: src/Console/AppConsole.vala:78 msgid "Install latest point update for current series" msgstr "" -#: src/Console/AppConsole.vala:81 +#: src/Console/AppConsole.vala:79 msgid "Install specified mainline kernel" msgstr "Instalar núcleo troncal especificado" -#: src/Console/AppConsole.vala:82 +#: src/Console/AppConsole.vala:80 #, fuzzy msgid "Uninstall specified kernels" msgstr "Instalar núcleo troncal especificado" -#: src/Console/AppConsole.vala:83 src/Gtk/MainWindow.vala:401 +#: src/Console/AppConsole.vala:81 src/Gtk/MainWindow.vala:401 msgid "Remove installed kernels older than running kernel" msgstr "" -#: src/Console/AppConsole.vala:84 +#: src/Console/AppConsole.vala:82 #, fuzzy msgid "Download specified kernels" msgstr "Descargar paquetes del núcleo especificado" -#: src/Console/AppConsole.vala:85 +#: src/Console/AppConsole.vala:83 msgid "Remove files from application cache" msgstr "Quitar archivos de la antememoria de la aplicación" -#: src/Console/AppConsole.vala:86 +#: src/Console/AppConsole.vala:84 msgid "Show unstable and RC releases" msgstr "Ocultar versiones inestables y RC" -#: src/Console/AppConsole.vala:88 src/Gtk/AppGtk.vala:160 +#: src/Console/AppConsole.vala:86 src/Gtk/AppGtk.vala:158 msgid "Options" msgstr "Opciones" -#: src/Console/AppConsole.vala:90 +#: src/Console/AppConsole.vala:88 msgid "Enable verbose debugging output" msgstr "" -#: src/Console/AppConsole.vala:91 +#: src/Console/AppConsole.vala:89 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "Asumir Sí para todas las solicitudes (modo no interactivo)" -#: src/Console/AppConsole.vala:92 +#: src/Console/AppConsole.vala:90 msgid "Override user" msgstr "" -#: src/Console/AppConsole.vala:95 +#: src/Console/AppConsole.vala:93 msgid "A version string taken from the output of --list" msgstr "" -#: src/Console/AppConsole.vala:96 +#: src/Console/AppConsole.vala:94 msgid "" "One or more version strings (comma-separated) taken from the output of --list" msgstr "" -#: src/Console/AppConsole.vala:103 +#: src/Console/AppConsole.vala:101 #, fuzzy msgid "Admin access is required for this action." msgstr "" "Se necesitan privilegios administrativos para ejecutar esta aplicación." -#: src/Console/AppConsole.vala:104 +#: src/Console/AppConsole.vala:102 msgid "Run the application as admin with pkexec or sudo." msgstr "Ejecute la aplicación con permisos administrativos con pkexec o sudo." -#: src/Console/AppConsole.vala:180 src/Gtk/AppGtk.vala:145 +#: src/Console/AppConsole.vala:178 src/Gtk/AppGtk.vala:143 msgid "Unknown option" msgstr "Opción desconocida" -#: src/Console/AppConsole.vala:182 src/Console/AppConsole.vala:288 -#: src/Console/AppConsole.vala:316 +#: src/Console/AppConsole.vala:180 src/Console/AppConsole.vala:286 +#: src/Console/AppConsole.vala:314 #, fuzzy msgid "Run" msgstr "En ejecución" -#: src/Console/AppConsole.vala:182 +#: src/Console/AppConsole.vala:180 #, fuzzy msgid "to list all options" msgstr "Mostrar todas las opciones" -#: src/Console/AppConsole.vala:261 src/Console/AppConsole.vala:296 +#: src/Console/AppConsole.vala:259 src/Console/AppConsole.vala:294 msgid "No kernels specified" msgstr "" -#: src/Console/AppConsole.vala:267 +#: src/Console/AppConsole.vala:265 msgid "Multiple kernels selected for installation. Select only one." msgstr "Se seleccionaron varios núcleos para su instalación. Elija solo uno." -#: src/Console/AppConsole.vala:285 src/Gtk/MainWindow.vala:100 +#: src/Console/AppConsole.vala:283 src/Gtk/MainWindow.vala:100 msgid "Could not find requested version" msgstr "No se pudo encontrar la versión solicitada" -#: src/Console/AppConsole.vala:288 +#: src/Console/AppConsole.vala:286 msgid "and use a version string listed in first column" msgstr "" -#: src/Console/AppConsole.vala:315 +#: src/Console/AppConsole.vala:313 msgid "Command not specified" msgstr "Coomand no especificado" -#: src/Console/AppConsole.vala:316 +#: src/Console/AppConsole.vala:314 #, fuzzy msgid "to list all commands" msgstr "Mostrar todas las opciones" -#: src/Console/AppConsole.vala:368 src/Console/AppConsole.vala:384 +#: src/Console/AppConsole.vala:366 src/Console/AppConsole.vala:382 #, fuzzy, c-format msgid "Kernel %s Available" msgstr "Paquetes disponibles" -#: src/Console/AppConsole.vala:371 src/Console/AppConsole.vala:387 +#: src/Console/AppConsole.vala:369 src/Console/AppConsole.vala:385 #: src/Gtk/MainWindow.vala:335 msgid "Install" msgstr "Instalar" @@ -316,11 +316,11 @@ msgstr "Instalar" msgid "Show" msgstr "" -#: src/Gtk/AppGtk.vala:162 +#: src/Gtk/AppGtk.vala:160 msgid "Print debug information" msgstr "Mostrar información de depuración" -#: src/Gtk/AppGtk.vala:163 +#: src/Gtk/AppGtk.vala:161 msgid "Show all options" msgstr "Mostrar todas las opciones" @@ -583,10 +583,10 @@ msgstr "Falló la creación del directorio" msgid "Deleted" msgstr "Se eliminó el archivo" -#: src/Utility/TeeJee.Logging.vala:89 +#: src/Utility/TeeJee.Logging.vala:59 msgid "E" msgstr "E" -#: src/Utility/TeeJee.Logging.vala:89 -msgid "W" -msgstr "W" +#: src/Utility/TeeJee.Logging.vala:84 +msgid "D" +msgstr "" diff --git a/po/fr.po b/po/fr.po index b709dad9..8ea30379 100644 --- a/po/fr.po +++ b/po/fr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-11 10:31-0400\n" +"POT-Creation-Date: 2020-05-11 22:06-0400\n" "PO-Revision-Date: 2018-08-05 15:50+0200\n" "Last-Translator: Yolateng0 \n" "Language-Team: French\n" @@ -56,16 +56,16 @@ msgstr "" msgid "Continue ?" msgstr "" -#: src/Common/LinuxKernel.vala:744 src/Console/AppConsole.vala:334 +#: src/Common/LinuxKernel.vala:744 src/Console/AppConsole.vala:332 msgid "Latest update" msgstr "" -#: src/Common/LinuxKernel.vala:755 src/Console/AppConsole.vala:341 +#: src/Common/LinuxKernel.vala:755 src/Console/AppConsole.vala:339 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:763 src/Console/AppConsole.vala:346 -#: src/Console/AppConsole.vala:396 +#: src/Common/LinuxKernel.vala:763 src/Console/AppConsole.vala:344 +#: src/Console/AppConsole.vala:394 msgid "No updates found" msgstr "Aucune mise à jour disponible" @@ -150,19 +150,19 @@ msgstr "" "Ce noyau est en cours d'exécution et ne peut pas être supprimé.\n" " Installez un autre noyau avant de retirer celui-ci." -#: src/Common/Main.vala:122 +#: src/Common/Main.vala:120 msgid "Commands listed below are not available on this system" msgstr "Les commandes listées ne sont pas valables pour ce système" -#: src/Common/Main.vala:123 +#: src/Common/Main.vala:121 msgid "Please install required packages and try again" msgstr "Veuillez installer les paquets requis et réessayer" -#: src/Common/Main.vala:269 +#: src/Common/Main.vala:267 msgid "Called from" msgstr "" -#: src/Common/Main.vala:281 +#: src/Common/Main.vala:279 #, fuzzy msgid "Notifications are disabled" msgstr "Notification" @@ -172,151 +172,151 @@ msgstr "Notification" msgid "File not found: %s" msgstr "Fichier non trouvé: %s" -#: src/Console/AppConsole.vala:71 src/Gtk/AppGtk.vala:158 +#: src/Console/AppConsole.vala:69 src/Gtk/AppGtk.vala:156 msgid "Syntax" msgstr "Syntaxe" -#: src/Console/AppConsole.vala:73 +#: src/Console/AppConsole.vala:71 msgid "Commands" msgstr "" -#: src/Console/AppConsole.vala:75 +#: src/Console/AppConsole.vala:73 msgid "Check for kernel updates" msgstr "Vérifier les mises à jour des noyaux" -#: src/Console/AppConsole.vala:76 +#: src/Console/AppConsole.vala:74 #, fuzzy msgid "Check for kernel updates and notify current user" msgstr "Vérifier les mises à jour des noyaux" -#: src/Console/AppConsole.vala:77 +#: src/Console/AppConsole.vala:75 msgid "List all available mainline kernels" msgstr "Lister tous les noyaux mainline disponibles" -#: src/Console/AppConsole.vala:78 +#: src/Console/AppConsole.vala:76 #, fuzzy msgid "List installed kernels" msgstr "Lister les noyaux disponibles" -#: src/Console/AppConsole.vala:79 +#: src/Console/AppConsole.vala:77 #, fuzzy msgid "Install latest mainline kernel" msgstr "Installer le noyau principal spécifié" -#: src/Console/AppConsole.vala:80 +#: src/Console/AppConsole.vala:78 msgid "Install latest point update for current series" msgstr "" -#: src/Console/AppConsole.vala:81 +#: src/Console/AppConsole.vala:79 msgid "Install specified mainline kernel" msgstr "Installer le noyau principal spécifié" -#: src/Console/AppConsole.vala:82 +#: src/Console/AppConsole.vala:80 #, fuzzy msgid "Uninstall specified kernels" msgstr "Installer le noyau principal spécifié" -#: src/Console/AppConsole.vala:83 src/Gtk/MainWindow.vala:401 +#: src/Console/AppConsole.vala:81 src/Gtk/MainWindow.vala:401 msgid "Remove installed kernels older than running kernel" msgstr "" -#: src/Console/AppConsole.vala:84 +#: src/Console/AppConsole.vala:82 #, fuzzy msgid "Download specified kernels" msgstr "Télécharger les paquets pour des noyaux spécifiques" -#: src/Console/AppConsole.vala:85 +#: src/Console/AppConsole.vala:83 msgid "Remove files from application cache" msgstr "Supprimer les fichiers du cache de l'application" -#: src/Console/AppConsole.vala:86 +#: src/Console/AppConsole.vala:84 #, fuzzy msgid "Show unstable and RC releases" msgstr "Cacher les versions instables et RC" -#: src/Console/AppConsole.vala:88 src/Gtk/AppGtk.vala:160 +#: src/Console/AppConsole.vala:86 src/Gtk/AppGtk.vala:158 msgid "Options" msgstr "Options" -#: src/Console/AppConsole.vala:90 +#: src/Console/AppConsole.vala:88 msgid "Enable verbose debugging output" msgstr "" -#: src/Console/AppConsole.vala:91 +#: src/Console/AppConsole.vala:89 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "" -#: src/Console/AppConsole.vala:92 +#: src/Console/AppConsole.vala:90 msgid "Override user" msgstr "" -#: src/Console/AppConsole.vala:95 +#: src/Console/AppConsole.vala:93 msgid "A version string taken from the output of --list" msgstr "" -#: src/Console/AppConsole.vala:96 +#: src/Console/AppConsole.vala:94 msgid "" "One or more version strings (comma-separated) taken from the output of --list" msgstr "" -#: src/Console/AppConsole.vala:103 +#: src/Console/AppConsole.vala:101 #, fuzzy msgid "Admin access is required for this action." msgstr "Accès administrateur requis pour lancer cette application." -#: src/Console/AppConsole.vala:104 +#: src/Console/AppConsole.vala:102 msgid "Run the application as admin with pkexec or sudo." msgstr "Exécutez l'application en tant qu'admin avec pkexec or sudo." -#: src/Console/AppConsole.vala:180 src/Gtk/AppGtk.vala:145 +#: src/Console/AppConsole.vala:178 src/Gtk/AppGtk.vala:143 msgid "Unknown option" msgstr "Option inconnue" -#: src/Console/AppConsole.vala:182 src/Console/AppConsole.vala:288 -#: src/Console/AppConsole.vala:316 +#: src/Console/AppConsole.vala:180 src/Console/AppConsole.vala:286 +#: src/Console/AppConsole.vala:314 #, fuzzy msgid "Run" msgstr "En cours" -#: src/Console/AppConsole.vala:182 +#: src/Console/AppConsole.vala:180 #, fuzzy msgid "to list all options" msgstr "Afficher toutes les options" -#: src/Console/AppConsole.vala:261 src/Console/AppConsole.vala:296 +#: src/Console/AppConsole.vala:259 src/Console/AppConsole.vala:294 msgid "No kernels specified" msgstr "" -#: src/Console/AppConsole.vala:267 +#: src/Console/AppConsole.vala:265 msgid "Multiple kernels selected for installation. Select only one." msgstr "" "Plusieurs noyaux sélectionnés pour être installés. Sélectionnez en seulement " "un." -#: src/Console/AppConsole.vala:285 src/Gtk/MainWindow.vala:100 +#: src/Console/AppConsole.vala:283 src/Gtk/MainWindow.vala:100 msgid "Could not find requested version" msgstr "Impossible de trouver la version demandée" -#: src/Console/AppConsole.vala:288 +#: src/Console/AppConsole.vala:286 msgid "and use a version string listed in first column" msgstr "" -#: src/Console/AppConsole.vala:315 +#: src/Console/AppConsole.vala:313 #, fuzzy msgid "Command not specified" msgstr "Impossible de trouver le fichier" -#: src/Console/AppConsole.vala:316 +#: src/Console/AppConsole.vala:314 #, fuzzy msgid "to list all commands" msgstr "Afficher toutes les options" -#: src/Console/AppConsole.vala:368 src/Console/AppConsole.vala:384 +#: src/Console/AppConsole.vala:366 src/Console/AppConsole.vala:382 #, fuzzy, c-format msgid "Kernel %s Available" msgstr "Paquets disponibles" -#: src/Console/AppConsole.vala:371 src/Console/AppConsole.vala:387 +#: src/Console/AppConsole.vala:369 src/Console/AppConsole.vala:385 #: src/Gtk/MainWindow.vala:335 msgid "Install" msgstr "Installer" @@ -325,11 +325,11 @@ msgstr "Installer" msgid "Show" msgstr "" -#: src/Gtk/AppGtk.vala:162 +#: src/Gtk/AppGtk.vala:160 msgid "Print debug information" msgstr "Afficher les informations de débogage" -#: src/Gtk/AppGtk.vala:163 +#: src/Gtk/AppGtk.vala:161 msgid "Show all options" msgstr "Afficher toutes les options" @@ -594,10 +594,10 @@ msgstr "Impossible de créer le nouveau dossier" msgid "Deleted" msgstr "Fichier effacé" -#: src/Utility/TeeJee.Logging.vala:89 +#: src/Utility/TeeJee.Logging.vala:59 msgid "E" msgstr "E" -#: src/Utility/TeeJee.Logging.vala:89 -msgid "W" -msgstr "W" +#: src/Utility/TeeJee.Logging.vala:84 +msgid "D" +msgstr "" diff --git a/po/hr.po b/po/hr.po index 4ff842b3..b4774b43 100644 --- a/po/hr.po +++ b/po/hr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-11 10:31-0400\n" +"POT-Creation-Date: 2020-05-11 22:06-0400\n" "PO-Revision-Date: 2017-12-24 00:52+0100\n" "Last-Translator: gogo \n" "Language-Team: Croatian \n" @@ -56,16 +56,16 @@ msgstr "" msgid "Continue ?" msgstr "" -#: src/Common/LinuxKernel.vala:744 src/Console/AppConsole.vala:334 +#: src/Common/LinuxKernel.vala:744 src/Console/AppConsole.vala:332 msgid "Latest update" msgstr "" -#: src/Common/LinuxKernel.vala:755 src/Console/AppConsole.vala:341 +#: src/Common/LinuxKernel.vala:755 src/Console/AppConsole.vala:339 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:763 src/Console/AppConsole.vala:346 -#: src/Console/AppConsole.vala:396 +#: src/Common/LinuxKernel.vala:763 src/Console/AppConsole.vala:344 +#: src/Console/AppConsole.vala:394 msgid "No updates found" msgstr "Nema pronađenih nadopuna" @@ -150,19 +150,19 @@ msgstr "" "Ovaj kernel je trenutno pokrenut i ne može se ukloniti.\n" " Instalirajte drugi kernel prije uklanjanja trenutnog kernela." -#: src/Common/Main.vala:122 +#: src/Common/Main.vala:120 msgid "Commands listed below are not available on this system" msgstr "Naredbe navedene ispod nisu dostupne na ovom sustavu" -#: src/Common/Main.vala:123 +#: src/Common/Main.vala:121 msgid "Please install required packages and try again" msgstr "Instalirajte potrebni paket i pokušajte ponovno" -#: src/Common/Main.vala:269 +#: src/Common/Main.vala:267 msgid "Called from" msgstr "" -#: src/Common/Main.vala:281 +#: src/Common/Main.vala:279 #, fuzzy msgid "Notifications are disabled" msgstr "Obavijesti" @@ -172,148 +172,148 @@ msgstr "Obavijesti" msgid "File not found: %s" msgstr "Datoteka nije pronađena: %s" -#: src/Console/AppConsole.vala:71 src/Gtk/AppGtk.vala:158 +#: src/Console/AppConsole.vala:69 src/Gtk/AppGtk.vala:156 msgid "Syntax" msgstr "Sintaksa" -#: src/Console/AppConsole.vala:73 +#: src/Console/AppConsole.vala:71 msgid "Commands" msgstr "" -#: src/Console/AppConsole.vala:75 +#: src/Console/AppConsole.vala:73 msgid "Check for kernel updates" msgstr "Provjeri nadopune kernela" -#: src/Console/AppConsole.vala:76 +#: src/Console/AppConsole.vala:74 #, fuzzy msgid "Check for kernel updates and notify current user" msgstr "Provjeri nadopune kernela" -#: src/Console/AppConsole.vala:77 +#: src/Console/AppConsole.vala:75 msgid "List all available mainline kernels" msgstr "Prikaži sve mainline kernele" -#: src/Console/AppConsole.vala:78 +#: src/Console/AppConsole.vala:76 #, fuzzy msgid "List installed kernels" msgstr "Prikaži sve kernele" -#: src/Console/AppConsole.vala:79 +#: src/Console/AppConsole.vala:77 #, fuzzy msgid "Install latest mainline kernel" msgstr "Instaliraj određeni mainline kernel" -#: src/Console/AppConsole.vala:80 +#: src/Console/AppConsole.vala:78 msgid "Install latest point update for current series" msgstr "" -#: src/Console/AppConsole.vala:81 +#: src/Console/AppConsole.vala:79 msgid "Install specified mainline kernel" msgstr "Instaliraj određeni mainline kernel" -#: src/Console/AppConsole.vala:82 +#: src/Console/AppConsole.vala:80 #, fuzzy msgid "Uninstall specified kernels" msgstr "Instaliraj određeni mainline kernel" -#: src/Console/AppConsole.vala:83 src/Gtk/MainWindow.vala:401 +#: src/Console/AppConsole.vala:81 src/Gtk/MainWindow.vala:401 msgid "Remove installed kernels older than running kernel" msgstr "" -#: src/Console/AppConsole.vala:84 +#: src/Console/AppConsole.vala:82 #, fuzzy msgid "Download specified kernels" msgstr "Preuzmi pakete za određeni kernel" -#: src/Console/AppConsole.vala:85 +#: src/Console/AppConsole.vala:83 msgid "Remove files from application cache" msgstr "Ukloni datoteke iz predmemorije aplikacije" -#: src/Console/AppConsole.vala:86 +#: src/Console/AppConsole.vala:84 #, fuzzy msgid "Show unstable and RC releases" msgstr "Sakrij nestabilne kernele i predizdanja" -#: src/Console/AppConsole.vala:88 src/Gtk/AppGtk.vala:160 +#: src/Console/AppConsole.vala:86 src/Gtk/AppGtk.vala:158 msgid "Options" msgstr "Mogućnosti" -#: src/Console/AppConsole.vala:90 +#: src/Console/AppConsole.vala:88 msgid "Enable verbose debugging output" msgstr "" -#: src/Console/AppConsole.vala:91 +#: src/Console/AppConsole.vala:89 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "" -#: src/Console/AppConsole.vala:92 +#: src/Console/AppConsole.vala:90 msgid "Override user" msgstr "" -#: src/Console/AppConsole.vala:95 +#: src/Console/AppConsole.vala:93 msgid "A version string taken from the output of --list" msgstr "" -#: src/Console/AppConsole.vala:96 +#: src/Console/AppConsole.vala:94 msgid "" "One or more version strings (comma-separated) taken from the output of --list" msgstr "" -#: src/Console/AppConsole.vala:103 +#: src/Console/AppConsole.vala:101 #, fuzzy msgid "Admin access is required for this action." msgstr "Administratorske ovlasti su potrebne za pokretanje ove aplikacije." -#: src/Console/AppConsole.vala:104 +#: src/Console/AppConsole.vala:102 msgid "Run the application as admin with pkexec or sudo." msgstr "Pokreni aplikaciju kao administrator sa pkexec ili sudo." -#: src/Console/AppConsole.vala:180 src/Gtk/AppGtk.vala:145 +#: src/Console/AppConsole.vala:178 src/Gtk/AppGtk.vala:143 msgid "Unknown option" msgstr "Nepoznata mogućnost" -#: src/Console/AppConsole.vala:182 src/Console/AppConsole.vala:288 -#: src/Console/AppConsole.vala:316 +#: src/Console/AppConsole.vala:180 src/Console/AppConsole.vala:286 +#: src/Console/AppConsole.vala:314 #, fuzzy msgid "Run" msgstr "Pokrenuto" -#: src/Console/AppConsole.vala:182 +#: src/Console/AppConsole.vala:180 #, fuzzy msgid "to list all options" msgstr "Prikaži sve mogućnosti" -#: src/Console/AppConsole.vala:261 src/Console/AppConsole.vala:296 +#: src/Console/AppConsole.vala:259 src/Console/AppConsole.vala:294 msgid "No kernels specified" msgstr "" -#: src/Console/AppConsole.vala:267 +#: src/Console/AppConsole.vala:265 msgid "Multiple kernels selected for installation. Select only one." msgstr "Više kernela je odabrano za instalaciju. odaberite samo jedan." -#: src/Console/AppConsole.vala:285 src/Gtk/MainWindow.vala:100 +#: src/Console/AppConsole.vala:283 src/Gtk/MainWindow.vala:100 msgid "Could not find requested version" msgstr "Nemoguće je pronaći zatraženu inačicu" -#: src/Console/AppConsole.vala:288 +#: src/Console/AppConsole.vala:286 msgid "and use a version string listed in first column" msgstr "" -#: src/Console/AppConsole.vala:315 +#: src/Console/AppConsole.vala:313 msgid "Command not specified" msgstr "" -#: src/Console/AppConsole.vala:316 +#: src/Console/AppConsole.vala:314 #, fuzzy msgid "to list all commands" msgstr "Prikaži sve mogućnosti" -#: src/Console/AppConsole.vala:368 src/Console/AppConsole.vala:384 +#: src/Console/AppConsole.vala:366 src/Console/AppConsole.vala:382 #, fuzzy, c-format msgid "Kernel %s Available" msgstr "Dostupni paketi" -#: src/Console/AppConsole.vala:371 src/Console/AppConsole.vala:387 +#: src/Console/AppConsole.vala:369 src/Console/AppConsole.vala:385 #: src/Gtk/MainWindow.vala:335 msgid "Install" msgstr "Instaliraj" @@ -322,11 +322,11 @@ msgstr "Instaliraj" msgid "Show" msgstr "" -#: src/Gtk/AppGtk.vala:162 +#: src/Gtk/AppGtk.vala:160 msgid "Print debug information" msgstr "Ispiši informacije otklanjanja grešaka" -#: src/Gtk/AppGtk.vala:163 +#: src/Gtk/AppGtk.vala:161 msgid "Show all options" msgstr "Prikaži sve mogućnosti" @@ -589,10 +589,10 @@ msgstr "Neuspjelo stvarnje direktorija" msgid "Deleted" msgstr "Datoteka obrisana" -#: src/Utility/TeeJee.Logging.vala:89 +#: src/Utility/TeeJee.Logging.vala:59 msgid "E" msgstr "G" -#: src/Utility/TeeJee.Logging.vala:89 -msgid "W" -msgstr "Z" +#: src/Utility/TeeJee.Logging.vala:84 +msgid "D" +msgstr "" diff --git a/po/messages.pot b/po/messages.pot index 4e0d9138..3527e1a5 100644 --- a/po/messages.pot +++ b/po/messages.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline 1.0.9\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-11 10:43-0400\n" +"POT-Creation-Date: 2020-05-11 22:06-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -57,16 +57,16 @@ msgstr "" msgid "Continue ?" msgstr "" -#: src/Common/LinuxKernel.vala:744 src/Console/AppConsole.vala:334 +#: src/Common/LinuxKernel.vala:744 src/Console/AppConsole.vala:332 msgid "Latest update" msgstr "" -#: src/Common/LinuxKernel.vala:755 src/Console/AppConsole.vala:341 +#: src/Common/LinuxKernel.vala:755 src/Console/AppConsole.vala:339 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:763 src/Console/AppConsole.vala:346 -#: src/Console/AppConsole.vala:396 +#: src/Common/LinuxKernel.vala:763 src/Console/AppConsole.vala:344 +#: src/Console/AppConsole.vala:394 msgid "No updates found" msgstr "" @@ -145,19 +145,19 @@ msgid "" " Install another kernel before removing this one." msgstr "" -#: src/Common/Main.vala:122 +#: src/Common/Main.vala:120 msgid "Commands listed below are not available on this system" msgstr "" -#: src/Common/Main.vala:123 +#: src/Common/Main.vala:121 msgid "Please install required packages and try again" msgstr "" -#: src/Common/Main.vala:269 +#: src/Common/Main.vala:267 msgid "Called from" msgstr "" -#: src/Common/Main.vala:281 +#: src/Common/Main.vala:279 msgid "Notifications are disabled" msgstr "" @@ -166,138 +166,138 @@ msgstr "" msgid "File not found: %s" msgstr "" -#: src/Console/AppConsole.vala:71 src/Gtk/AppGtk.vala:158 +#: src/Console/AppConsole.vala:69 src/Gtk/AppGtk.vala:156 msgid "Syntax" msgstr "" -#: src/Console/AppConsole.vala:73 +#: src/Console/AppConsole.vala:71 msgid "Commands" msgstr "" -#: src/Console/AppConsole.vala:75 +#: src/Console/AppConsole.vala:73 msgid "Check for kernel updates" msgstr "" -#: src/Console/AppConsole.vala:76 +#: src/Console/AppConsole.vala:74 msgid "Check for kernel updates and notify current user" msgstr "" -#: src/Console/AppConsole.vala:77 +#: src/Console/AppConsole.vala:75 msgid "List all available mainline kernels" msgstr "" -#: src/Console/AppConsole.vala:78 +#: src/Console/AppConsole.vala:76 msgid "List installed kernels" msgstr "" -#: src/Console/AppConsole.vala:79 +#: src/Console/AppConsole.vala:77 msgid "Install latest mainline kernel" msgstr "" -#: src/Console/AppConsole.vala:80 +#: src/Console/AppConsole.vala:78 msgid "Install latest point update for current series" msgstr "" -#: src/Console/AppConsole.vala:81 +#: src/Console/AppConsole.vala:79 msgid "Install specified mainline kernel" msgstr "" -#: src/Console/AppConsole.vala:82 +#: src/Console/AppConsole.vala:80 msgid "Uninstall specified kernels" msgstr "" -#: src/Console/AppConsole.vala:83 src/Gtk/MainWindow.vala:401 +#: src/Console/AppConsole.vala:81 src/Gtk/MainWindow.vala:401 msgid "Remove installed kernels older than running kernel" msgstr "" -#: src/Console/AppConsole.vala:84 +#: src/Console/AppConsole.vala:82 msgid "Download specified kernels" msgstr "" -#: src/Console/AppConsole.vala:85 +#: src/Console/AppConsole.vala:83 msgid "Remove files from application cache" msgstr "" -#: src/Console/AppConsole.vala:86 +#: src/Console/AppConsole.vala:84 msgid "Show unstable and RC releases" msgstr "" -#: src/Console/AppConsole.vala:88 src/Gtk/AppGtk.vala:160 +#: src/Console/AppConsole.vala:86 src/Gtk/AppGtk.vala:158 msgid "Options" msgstr "" -#: src/Console/AppConsole.vala:90 +#: src/Console/AppConsole.vala:88 msgid "Enable verbose debugging output" msgstr "" -#: src/Console/AppConsole.vala:91 +#: src/Console/AppConsole.vala:89 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "" -#: src/Console/AppConsole.vala:92 +#: src/Console/AppConsole.vala:90 msgid "Override user" msgstr "" -#: src/Console/AppConsole.vala:95 +#: src/Console/AppConsole.vala:93 msgid "A version string taken from the output of --list" msgstr "" -#: src/Console/AppConsole.vala:96 +#: src/Console/AppConsole.vala:94 msgid "" "One or more version strings (comma-separated) taken from the output of --list" msgstr "" -#: src/Console/AppConsole.vala:103 +#: src/Console/AppConsole.vala:101 msgid "Admin access is required for this action." msgstr "" -#: src/Console/AppConsole.vala:104 +#: src/Console/AppConsole.vala:102 msgid "Run the application as admin with pkexec or sudo." msgstr "" -#: src/Console/AppConsole.vala:180 src/Gtk/AppGtk.vala:145 +#: src/Console/AppConsole.vala:178 src/Gtk/AppGtk.vala:143 msgid "Unknown option" msgstr "" -#: src/Console/AppConsole.vala:182 src/Console/AppConsole.vala:288 -#: src/Console/AppConsole.vala:316 +#: src/Console/AppConsole.vala:180 src/Console/AppConsole.vala:286 +#: src/Console/AppConsole.vala:314 msgid "Run" msgstr "" -#: src/Console/AppConsole.vala:182 +#: src/Console/AppConsole.vala:180 msgid "to list all options" msgstr "" -#: src/Console/AppConsole.vala:261 src/Console/AppConsole.vala:296 +#: src/Console/AppConsole.vala:259 src/Console/AppConsole.vala:294 msgid "No kernels specified" msgstr "" -#: src/Console/AppConsole.vala:267 +#: src/Console/AppConsole.vala:265 msgid "Multiple kernels selected for installation. Select only one." msgstr "" -#: src/Console/AppConsole.vala:285 src/Gtk/MainWindow.vala:100 +#: src/Console/AppConsole.vala:283 src/Gtk/MainWindow.vala:100 msgid "Could not find requested version" msgstr "" -#: src/Console/AppConsole.vala:288 +#: src/Console/AppConsole.vala:286 msgid "and use a version string listed in first column" msgstr "" -#: src/Console/AppConsole.vala:315 +#: src/Console/AppConsole.vala:313 msgid "Command not specified" msgstr "" -#: src/Console/AppConsole.vala:316 +#: src/Console/AppConsole.vala:314 msgid "to list all commands" msgstr "" -#: src/Console/AppConsole.vala:368 src/Console/AppConsole.vala:384 +#: src/Console/AppConsole.vala:366 src/Console/AppConsole.vala:382 #, c-format msgid "Kernel %s Available" msgstr "" -#: src/Console/AppConsole.vala:371 src/Console/AppConsole.vala:387 +#: src/Console/AppConsole.vala:369 src/Console/AppConsole.vala:385 #: src/Gtk/MainWindow.vala:335 msgid "Install" msgstr "" @@ -306,11 +306,11 @@ msgstr "" msgid "Show" msgstr "" -#: src/Gtk/AppGtk.vala:162 +#: src/Gtk/AppGtk.vala:160 msgid "Print debug information" msgstr "" -#: src/Gtk/AppGtk.vala:163 +#: src/Gtk/AppGtk.vala:161 msgid "Show all options" msgstr "" @@ -569,10 +569,10 @@ msgstr "" msgid "Deleted" msgstr "" -#: src/Utility/TeeJee.Logging.vala:89 +#: src/Utility/TeeJee.Logging.vala:59 msgid "E" msgstr "" -#: src/Utility/TeeJee.Logging.vala:89 -msgid "W" +#: src/Utility/TeeJee.Logging.vala:84 +msgid "D" msgstr "" diff --git a/po/nl.po b/po/nl.po index f45c880a..07f491b7 100644 --- a/po/nl.po +++ b/po/nl.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-11 10:31-0400\n" +"POT-Creation-Date: 2020-05-11 22:06-0400\n" "PO-Revision-Date: 2017-04-30 11:50+0200\n" "Last-Translator: Heimen Stoffels \n" "Language-Team: \n" @@ -56,16 +56,16 @@ msgstr "" msgid "Continue ?" msgstr "" -#: src/Common/LinuxKernel.vala:744 src/Console/AppConsole.vala:334 +#: src/Common/LinuxKernel.vala:744 src/Console/AppConsole.vala:332 msgid "Latest update" msgstr "" -#: src/Common/LinuxKernel.vala:755 src/Console/AppConsole.vala:341 +#: src/Common/LinuxKernel.vala:755 src/Console/AppConsole.vala:339 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:763 src/Console/AppConsole.vala:346 -#: src/Console/AppConsole.vala:396 +#: src/Common/LinuxKernel.vala:763 src/Console/AppConsole.vala:344 +#: src/Console/AppConsole.vala:394 msgid "No updates found" msgstr "Geen updates gevonden" @@ -151,19 +151,19 @@ msgstr "" "Deze kernel is momenteel in gebruik en kan daarom niet worden verwijderd.\n" " Installeer een andere kernel voordat u deze verwijdert." -#: src/Common/Main.vala:122 +#: src/Common/Main.vala:120 msgid "Commands listed below are not available on this system" msgstr "De onderstaande opdrachten zijn niet beschikbaar op dit systeem" -#: src/Common/Main.vala:123 +#: src/Common/Main.vala:121 msgid "Please install required packages and try again" msgstr "Installeer de vereiste pakketten en probeer het opnieuw" -#: src/Common/Main.vala:269 +#: src/Common/Main.vala:267 msgid "Called from" msgstr "" -#: src/Common/Main.vala:281 +#: src/Common/Main.vala:279 #, fuzzy msgid "Notifications are disabled" msgstr "Melding" @@ -173,152 +173,152 @@ msgstr "Melding" msgid "File not found: %s" msgstr "Bestand niet gevonden: %s" -#: src/Console/AppConsole.vala:71 src/Gtk/AppGtk.vala:158 +#: src/Console/AppConsole.vala:69 src/Gtk/AppGtk.vala:156 msgid "Syntax" msgstr "Syntax" -#: src/Console/AppConsole.vala:73 +#: src/Console/AppConsole.vala:71 msgid "Commands" msgstr "" -#: src/Console/AppConsole.vala:75 +#: src/Console/AppConsole.vala:73 msgid "Check for kernel updates" msgstr "Controleren op kernel-updates" -#: src/Console/AppConsole.vala:76 +#: src/Console/AppConsole.vala:74 #, fuzzy msgid "Check for kernel updates and notify current user" msgstr "Controleren op kernel-updates" -#: src/Console/AppConsole.vala:77 +#: src/Console/AppConsole.vala:75 msgid "List all available mainline kernels" msgstr "Alle beschikbare mainline-kernels weergeven" -#: src/Console/AppConsole.vala:78 +#: src/Console/AppConsole.vala:76 #, fuzzy msgid "List installed kernels" msgstr "Alle beschikbare mainline-kernels weergeven" -#: src/Console/AppConsole.vala:79 +#: src/Console/AppConsole.vala:77 #, fuzzy msgid "Install latest mainline kernel" msgstr "Opgegeven mainline-kernel installeren" -#: src/Console/AppConsole.vala:80 +#: src/Console/AppConsole.vala:78 msgid "Install latest point update for current series" msgstr "" -#: src/Console/AppConsole.vala:81 +#: src/Console/AppConsole.vala:79 msgid "Install specified mainline kernel" msgstr "Opgegeven mainline-kernel installeren" -#: src/Console/AppConsole.vala:82 +#: src/Console/AppConsole.vala:80 #, fuzzy msgid "Uninstall specified kernels" msgstr "Opgegeven mainline-kernel installeren" -#: src/Console/AppConsole.vala:83 src/Gtk/MainWindow.vala:401 +#: src/Console/AppConsole.vala:81 src/Gtk/MainWindow.vala:401 msgid "Remove installed kernels older than running kernel" msgstr "" -#: src/Console/AppConsole.vala:84 +#: src/Console/AppConsole.vala:82 #, fuzzy msgid "Download specified kernels" msgstr "Pakketten downloaden voor opgegeven kernel" -#: src/Console/AppConsole.vala:85 +#: src/Console/AppConsole.vala:83 msgid "Remove files from application cache" msgstr "Bestanden verwijderen uit applicatie-cache" -#: src/Console/AppConsole.vala:86 +#: src/Console/AppConsole.vala:84 #, fuzzy msgid "Show unstable and RC releases" msgstr "Instabiele en RC-uitgaven verbergen" -#: src/Console/AppConsole.vala:88 src/Gtk/AppGtk.vala:160 +#: src/Console/AppConsole.vala:86 src/Gtk/AppGtk.vala:158 msgid "Options" msgstr "Opties" -#: src/Console/AppConsole.vala:90 +#: src/Console/AppConsole.vala:88 msgid "Enable verbose debugging output" msgstr "" -#: src/Console/AppConsole.vala:91 +#: src/Console/AppConsole.vala:89 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "" -#: src/Console/AppConsole.vala:92 +#: src/Console/AppConsole.vala:90 msgid "Override user" msgstr "" -#: src/Console/AppConsole.vala:95 +#: src/Console/AppConsole.vala:93 msgid "A version string taken from the output of --list" msgstr "" -#: src/Console/AppConsole.vala:96 +#: src/Console/AppConsole.vala:94 msgid "" "One or more version strings (comma-separated) taken from the output of --list" msgstr "" -#: src/Console/AppConsole.vala:103 +#: src/Console/AppConsole.vala:101 #, fuzzy msgid "Admin access is required for this action." msgstr "" "U heeft administrator-rechten nodig om deze applicatie te kunnen draaien." -#: src/Console/AppConsole.vala:104 +#: src/Console/AppConsole.vala:102 #, fuzzy msgid "Run the application as admin with pkexec or sudo." msgstr "Draai de applicatie als root of m.b.v. gksu/sudo." -#: src/Console/AppConsole.vala:180 src/Gtk/AppGtk.vala:145 +#: src/Console/AppConsole.vala:178 src/Gtk/AppGtk.vala:143 msgid "Unknown option" msgstr "Onbekende optie" -#: src/Console/AppConsole.vala:182 src/Console/AppConsole.vala:288 -#: src/Console/AppConsole.vala:316 +#: src/Console/AppConsole.vala:180 src/Console/AppConsole.vala:286 +#: src/Console/AppConsole.vala:314 #, fuzzy msgid "Run" msgstr "Bezig met draaien" -#: src/Console/AppConsole.vala:182 +#: src/Console/AppConsole.vala:180 #, fuzzy msgid "to list all options" msgstr "Alle opties weergeven" -#: src/Console/AppConsole.vala:261 src/Console/AppConsole.vala:296 +#: src/Console/AppConsole.vala:259 src/Console/AppConsole.vala:294 msgid "No kernels specified" msgstr "" -#: src/Console/AppConsole.vala:267 +#: src/Console/AppConsole.vala:265 msgid "Multiple kernels selected for installation. Select only one." msgstr "" "Er zijn meerdere te installeren kernels geselecteerd. Selecteer er slechts " "één." -#: src/Console/AppConsole.vala:285 src/Gtk/MainWindow.vala:100 +#: src/Console/AppConsole.vala:283 src/Gtk/MainWindow.vala:100 msgid "Could not find requested version" msgstr "De vereiste versie kan niet worden gevonden" -#: src/Console/AppConsole.vala:288 +#: src/Console/AppConsole.vala:286 msgid "and use a version string listed in first column" msgstr "" -#: src/Console/AppConsole.vala:315 +#: src/Console/AppConsole.vala:313 msgid "Command not specified" msgstr "" -#: src/Console/AppConsole.vala:316 +#: src/Console/AppConsole.vala:314 #, fuzzy msgid "to list all commands" msgstr "Alle opties weergeven" -#: src/Console/AppConsole.vala:368 src/Console/AppConsole.vala:384 +#: src/Console/AppConsole.vala:366 src/Console/AppConsole.vala:382 #, fuzzy, c-format msgid "Kernel %s Available" msgstr "Beschikbare pakketten" -#: src/Console/AppConsole.vala:371 src/Console/AppConsole.vala:387 +#: src/Console/AppConsole.vala:369 src/Console/AppConsole.vala:385 #: src/Gtk/MainWindow.vala:335 msgid "Install" msgstr "Installeren" @@ -327,11 +327,11 @@ msgstr "Installeren" msgid "Show" msgstr "" -#: src/Gtk/AppGtk.vala:162 +#: src/Gtk/AppGtk.vala:160 msgid "Print debug information" msgstr "Foutopsporingsinformatie printen" -#: src/Gtk/AppGtk.vala:163 +#: src/Gtk/AppGtk.vala:161 msgid "Show all options" msgstr "Alle opties weergeven" @@ -594,10 +594,10 @@ msgstr "Creëren van map is mislukt" msgid "Deleted" msgstr "Bestand verwijderd" -#: src/Utility/TeeJee.Logging.vala:89 +#: src/Utility/TeeJee.Logging.vala:59 msgid "E" msgstr "E" -#: src/Utility/TeeJee.Logging.vala:89 -msgid "W" -msgstr "W" +#: src/Utility/TeeJee.Logging.vala:84 +msgid "D" +msgstr "" diff --git a/po/pl.po b/po/pl.po index 079493b3..f30cad6b 100644 --- a/po/pl.po +++ b/po/pl.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-11 10:31-0400\n" +"POT-Creation-Date: 2020-05-11 22:06-0400\n" "PO-Revision-Date: 2017-08-12 15:26+0200\n" "Last-Translator: Waldemar Konik \n" "Language-Team: Polish\n" @@ -55,16 +55,16 @@ msgstr "" msgid "Continue ?" msgstr "" -#: src/Common/LinuxKernel.vala:744 src/Console/AppConsole.vala:334 +#: src/Common/LinuxKernel.vala:744 src/Console/AppConsole.vala:332 msgid "Latest update" msgstr "" -#: src/Common/LinuxKernel.vala:755 src/Console/AppConsole.vala:341 +#: src/Common/LinuxKernel.vala:755 src/Console/AppConsole.vala:339 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:763 src/Console/AppConsole.vala:346 -#: src/Console/AppConsole.vala:396 +#: src/Common/LinuxKernel.vala:763 src/Console/AppConsole.vala:344 +#: src/Console/AppConsole.vala:394 msgid "No updates found" msgstr "Nie znaleziono aktualizacji" @@ -149,19 +149,19 @@ msgstr "" "To jądro aktualnie działa i nie może zostać usunięte.\n" " Zainstaluj inne jądro przed usunięciem tego." -#: src/Common/Main.vala:122 +#: src/Common/Main.vala:120 msgid "Commands listed below are not available on this system" msgstr "Poniższe polecenia nie są dostępne na tym systemie" -#: src/Common/Main.vala:123 +#: src/Common/Main.vala:121 msgid "Please install required packages and try again" msgstr "Zainstaluj wymagane pakiety i spróbuj ponownie" -#: src/Common/Main.vala:269 +#: src/Common/Main.vala:267 msgid "Called from" msgstr "" -#: src/Common/Main.vala:281 +#: src/Common/Main.vala:279 #, fuzzy msgid "Notifications are disabled" msgstr "Powiadomienia" @@ -171,149 +171,149 @@ msgstr "Powiadomienia" msgid "File not found: %s" msgstr "Nie odnaleziono pliku: %s" -#: src/Console/AppConsole.vala:71 src/Gtk/AppGtk.vala:158 +#: src/Console/AppConsole.vala:69 src/Gtk/AppGtk.vala:156 msgid "Syntax" msgstr "Składnia" -#: src/Console/AppConsole.vala:73 +#: src/Console/AppConsole.vala:71 msgid "Commands" msgstr "" -#: src/Console/AppConsole.vala:75 +#: src/Console/AppConsole.vala:73 msgid "Check for kernel updates" msgstr "Sprawdź nowe wersje jądra" -#: src/Console/AppConsole.vala:76 +#: src/Console/AppConsole.vala:74 #, fuzzy msgid "Check for kernel updates and notify current user" msgstr "Sprawdź nowe wersje jądra" -#: src/Console/AppConsole.vala:77 +#: src/Console/AppConsole.vala:75 msgid "List all available mainline kernels" msgstr "Pokaż wszystkie dostępne jądra" -#: src/Console/AppConsole.vala:78 +#: src/Console/AppConsole.vala:76 #, fuzzy msgid "List installed kernels" msgstr "Pokaż wszystkie dostępne jądra" -#: src/Console/AppConsole.vala:79 +#: src/Console/AppConsole.vala:77 #, fuzzy msgid "Install latest mainline kernel" msgstr "Zainstaluj wybrane jądro" -#: src/Console/AppConsole.vala:80 +#: src/Console/AppConsole.vala:78 msgid "Install latest point update for current series" msgstr "" -#: src/Console/AppConsole.vala:81 +#: src/Console/AppConsole.vala:79 msgid "Install specified mainline kernel" msgstr "Zainstaluj wybrane jądro" -#: src/Console/AppConsole.vala:82 +#: src/Console/AppConsole.vala:80 #, fuzzy msgid "Uninstall specified kernels" msgstr "Zainstaluj wybrane jądro" -#: src/Console/AppConsole.vala:83 src/Gtk/MainWindow.vala:401 +#: src/Console/AppConsole.vala:81 src/Gtk/MainWindow.vala:401 msgid "Remove installed kernels older than running kernel" msgstr "" -#: src/Console/AppConsole.vala:84 +#: src/Console/AppConsole.vala:82 #, fuzzy msgid "Download specified kernels" msgstr "Pobierz pakiety dla wybranego jądra" -#: src/Console/AppConsole.vala:85 +#: src/Console/AppConsole.vala:83 msgid "Remove files from application cache" msgstr "Usuń pliki z pamięci podręcznej aplikacji" -#: src/Console/AppConsole.vala:86 +#: src/Console/AppConsole.vala:84 #, fuzzy msgid "Show unstable and RC releases" msgstr "Ukryj wydania niestabilne i RC" -#: src/Console/AppConsole.vala:88 src/Gtk/AppGtk.vala:160 +#: src/Console/AppConsole.vala:86 src/Gtk/AppGtk.vala:158 msgid "Options" msgstr "Opcje" -#: src/Console/AppConsole.vala:90 +#: src/Console/AppConsole.vala:88 msgid "Enable verbose debugging output" msgstr "" -#: src/Console/AppConsole.vala:91 +#: src/Console/AppConsole.vala:89 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "" -#: src/Console/AppConsole.vala:92 +#: src/Console/AppConsole.vala:90 msgid "Override user" msgstr "" -#: src/Console/AppConsole.vala:95 +#: src/Console/AppConsole.vala:93 msgid "A version string taken from the output of --list" msgstr "" -#: src/Console/AppConsole.vala:96 +#: src/Console/AppConsole.vala:94 msgid "" "One or more version strings (comma-separated) taken from the output of --list" msgstr "" -#: src/Console/AppConsole.vala:103 +#: src/Console/AppConsole.vala:101 #, fuzzy msgid "Admin access is required for this action." msgstr "Aby uruchomić tę aplikację niezbędne są prawa administratora." -#: src/Console/AppConsole.vala:104 +#: src/Console/AppConsole.vala:102 #, fuzzy msgid "Run the application as admin with pkexec or sudo." msgstr "Uruchom aplikację jako root albo użyj gksu/sudo." -#: src/Console/AppConsole.vala:180 src/Gtk/AppGtk.vala:145 +#: src/Console/AppConsole.vala:178 src/Gtk/AppGtk.vala:143 msgid "Unknown option" msgstr "Nieznana opcja" -#: src/Console/AppConsole.vala:182 src/Console/AppConsole.vala:288 -#: src/Console/AppConsole.vala:316 +#: src/Console/AppConsole.vala:180 src/Console/AppConsole.vala:286 +#: src/Console/AppConsole.vala:314 #, fuzzy msgid "Run" msgstr "Uruchomiony" -#: src/Console/AppConsole.vala:182 +#: src/Console/AppConsole.vala:180 #, fuzzy msgid "to list all options" msgstr "Pokaż wszystkie opcje" -#: src/Console/AppConsole.vala:261 src/Console/AppConsole.vala:296 +#: src/Console/AppConsole.vala:259 src/Console/AppConsole.vala:294 msgid "No kernels specified" msgstr "" -#: src/Console/AppConsole.vala:267 +#: src/Console/AppConsole.vala:265 msgid "Multiple kernels selected for installation. Select only one." msgstr "Wybrano kilka jąder do instalacji. Wybierz tylko jedno." -#: src/Console/AppConsole.vala:285 src/Gtk/MainWindow.vala:100 +#: src/Console/AppConsole.vala:283 src/Gtk/MainWindow.vala:100 msgid "Could not find requested version" msgstr "Nie można odnaleźć żądanej wersji" -#: src/Console/AppConsole.vala:288 +#: src/Console/AppConsole.vala:286 msgid "and use a version string listed in first column" msgstr "" -#: src/Console/AppConsole.vala:315 +#: src/Console/AppConsole.vala:313 msgid "Command not specified" msgstr "" -#: src/Console/AppConsole.vala:316 +#: src/Console/AppConsole.vala:314 #, fuzzy msgid "to list all commands" msgstr "Pokaż wszystkie opcje" -#: src/Console/AppConsole.vala:368 src/Console/AppConsole.vala:384 +#: src/Console/AppConsole.vala:366 src/Console/AppConsole.vala:382 #, fuzzy, c-format msgid "Kernel %s Available" msgstr "Dostępne pakiety" -#: src/Console/AppConsole.vala:371 src/Console/AppConsole.vala:387 +#: src/Console/AppConsole.vala:369 src/Console/AppConsole.vala:385 #: src/Gtk/MainWindow.vala:335 msgid "Install" msgstr "Zainstaluj" @@ -322,11 +322,11 @@ msgstr "Zainstaluj" msgid "Show" msgstr "" -#: src/Gtk/AppGtk.vala:162 +#: src/Gtk/AppGtk.vala:160 msgid "Print debug information" msgstr "Wypisz informacje debugujące" -#: src/Gtk/AppGtk.vala:163 +#: src/Gtk/AppGtk.vala:161 msgid "Show all options" msgstr "Pokaż wszystkie opcje" @@ -589,10 +589,10 @@ msgstr "Nie udało się utworzyć katalogu" msgid "Deleted" msgstr "Plik usunięty" -#: src/Utility/TeeJee.Logging.vala:89 +#: src/Utility/TeeJee.Logging.vala:59 msgid "E" msgstr "E" -#: src/Utility/TeeJee.Logging.vala:89 -msgid "W" -msgstr "W" +#: src/Utility/TeeJee.Logging.vala:84 +msgid "D" +msgstr "" diff --git a/po/ru.po b/po/ru.po index d66d0109..82f783e5 100644 --- a/po/ru.po +++ b/po/ru.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-11 10:31-0400\n" +"POT-Creation-Date: 2020-05-11 22:06-0400\n" "PO-Revision-Date: 2016-12-13 16:46+0300\n" "Last-Translator: Faust3000 \n" "Language-Team: Russian \n" @@ -56,16 +56,16 @@ msgstr "" msgid "Continue ?" msgstr "" -#: src/Common/LinuxKernel.vala:744 src/Console/AppConsole.vala:334 +#: src/Common/LinuxKernel.vala:744 src/Console/AppConsole.vala:332 msgid "Latest update" msgstr "" -#: src/Common/LinuxKernel.vala:755 src/Console/AppConsole.vala:341 +#: src/Common/LinuxKernel.vala:755 src/Console/AppConsole.vala:339 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:763 src/Console/AppConsole.vala:346 -#: src/Console/AppConsole.vala:396 +#: src/Common/LinuxKernel.vala:763 src/Console/AppConsole.vala:344 +#: src/Console/AppConsole.vala:394 msgid "No updates found" msgstr "Обновлений не найдено" @@ -153,19 +153,19 @@ msgstr "" "Это ядро в настоящий момент работает и не может быть удалено.\n" " Установите другое ядро, прежде чем удалять его." -#: src/Common/Main.vala:122 +#: src/Common/Main.vala:120 msgid "Commands listed below are not available on this system" msgstr "Команды перечисленные ниже недоступны на этой системе" -#: src/Common/Main.vala:123 +#: src/Common/Main.vala:121 msgid "Please install required packages and try again" msgstr "Установить необходимые пакеты и попробуйте снова" -#: src/Common/Main.vala:269 +#: src/Common/Main.vala:267 msgid "Called from" msgstr "" -#: src/Common/Main.vala:281 +#: src/Common/Main.vala:279 #, fuzzy msgid "Notifications are disabled" msgstr "Уведомления" @@ -175,149 +175,149 @@ msgstr "Уведомления" msgid "File not found: %s" msgstr "Файл не найден: %s" -#: src/Console/AppConsole.vala:71 src/Gtk/AppGtk.vala:158 +#: src/Console/AppConsole.vala:69 src/Gtk/AppGtk.vala:156 msgid "Syntax" msgstr "Синтаксис" -#: src/Console/AppConsole.vala:73 +#: src/Console/AppConsole.vala:71 msgid "Commands" msgstr "" -#: src/Console/AppConsole.vala:75 +#: src/Console/AppConsole.vala:73 msgid "Check for kernel updates" msgstr "Проверить обновления ядра" -#: src/Console/AppConsole.vala:76 +#: src/Console/AppConsole.vala:74 #, fuzzy msgid "Check for kernel updates and notify current user" msgstr "Проверить обновления ядра" -#: src/Console/AppConsole.vala:77 +#: src/Console/AppConsole.vala:75 msgid "List all available mainline kernels" msgstr "Список всех доступных основных ядер" -#: src/Console/AppConsole.vala:78 +#: src/Console/AppConsole.vala:76 #, fuzzy msgid "List installed kernels" msgstr "Список всех доступных основных ядер" -#: src/Console/AppConsole.vala:79 +#: src/Console/AppConsole.vala:77 #, fuzzy msgid "Install latest mainline kernel" msgstr "Установить указанную ветку ядра" -#: src/Console/AppConsole.vala:80 +#: src/Console/AppConsole.vala:78 msgid "Install latest point update for current series" msgstr "" -#: src/Console/AppConsole.vala:81 +#: src/Console/AppConsole.vala:79 msgid "Install specified mainline kernel" msgstr "Установить указанную ветку ядра" -#: src/Console/AppConsole.vala:82 +#: src/Console/AppConsole.vala:80 #, fuzzy msgid "Uninstall specified kernels" msgstr "Установить указанную ветку ядра" -#: src/Console/AppConsole.vala:83 src/Gtk/MainWindow.vala:401 +#: src/Console/AppConsole.vala:81 src/Gtk/MainWindow.vala:401 msgid "Remove installed kernels older than running kernel" msgstr "Удалить более старшие установленные ядра, чем используемое" -#: src/Console/AppConsole.vala:84 +#: src/Console/AppConsole.vala:82 #, fuzzy msgid "Download specified kernels" msgstr "Скачать пакеты для указанного ядра" -#: src/Console/AppConsole.vala:85 +#: src/Console/AppConsole.vala:83 msgid "Remove files from application cache" msgstr "Удалить файлы из кэша программы" -#: src/Console/AppConsole.vala:86 +#: src/Console/AppConsole.vala:84 #, fuzzy msgid "Show unstable and RC releases" msgstr "Скрыть нестабильные и релиз-кандидат версии" -#: src/Console/AppConsole.vala:88 src/Gtk/AppGtk.vala:160 +#: src/Console/AppConsole.vala:86 src/Gtk/AppGtk.vala:158 msgid "Options" msgstr "Параметры" -#: src/Console/AppConsole.vala:90 +#: src/Console/AppConsole.vala:88 msgid "Enable verbose debugging output" msgstr "" -#: src/Console/AppConsole.vala:91 +#: src/Console/AppConsole.vala:89 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "" -#: src/Console/AppConsole.vala:92 +#: src/Console/AppConsole.vala:90 msgid "Override user" msgstr "" -#: src/Console/AppConsole.vala:95 +#: src/Console/AppConsole.vala:93 msgid "A version string taken from the output of --list" msgstr "" -#: src/Console/AppConsole.vala:96 +#: src/Console/AppConsole.vala:94 msgid "" "One or more version strings (comma-separated) taken from the output of --list" msgstr "" -#: src/Console/AppConsole.vala:103 +#: src/Console/AppConsole.vala:101 #, fuzzy msgid "Admin access is required for this action." msgstr "Для запуска программы требуются права администратора." -#: src/Console/AppConsole.vala:104 +#: src/Console/AppConsole.vala:102 #, fuzzy msgid "Run the application as admin with pkexec or sudo." msgstr "Запустите программу с правами Root или используйте gksu/sudo." -#: src/Console/AppConsole.vala:180 src/Gtk/AppGtk.vala:145 +#: src/Console/AppConsole.vala:178 src/Gtk/AppGtk.vala:143 msgid "Unknown option" msgstr "Неизвестный параметр" -#: src/Console/AppConsole.vala:182 src/Console/AppConsole.vala:288 -#: src/Console/AppConsole.vala:316 +#: src/Console/AppConsole.vala:180 src/Console/AppConsole.vala:286 +#: src/Console/AppConsole.vala:314 #, fuzzy msgid "Run" msgstr "Используется" -#: src/Console/AppConsole.vala:182 +#: src/Console/AppConsole.vala:180 #, fuzzy msgid "to list all options" msgstr "Показать все параметры" -#: src/Console/AppConsole.vala:261 src/Console/AppConsole.vala:296 +#: src/Console/AppConsole.vala:259 src/Console/AppConsole.vala:294 msgid "No kernels specified" msgstr "" -#: src/Console/AppConsole.vala:267 +#: src/Console/AppConsole.vala:265 msgid "Multiple kernels selected for installation. Select only one." msgstr "" -#: src/Console/AppConsole.vala:285 src/Gtk/MainWindow.vala:100 +#: src/Console/AppConsole.vala:283 src/Gtk/MainWindow.vala:100 msgid "Could not find requested version" msgstr "Не удалось найти запрошенную версию" -#: src/Console/AppConsole.vala:288 +#: src/Console/AppConsole.vala:286 msgid "and use a version string listed in first column" msgstr "" -#: src/Console/AppConsole.vala:315 +#: src/Console/AppConsole.vala:313 msgid "Command not specified" msgstr "" -#: src/Console/AppConsole.vala:316 +#: src/Console/AppConsole.vala:314 #, fuzzy msgid "to list all commands" msgstr "Показать все параметры" -#: src/Console/AppConsole.vala:368 src/Console/AppConsole.vala:384 +#: src/Console/AppConsole.vala:366 src/Console/AppConsole.vala:382 #, fuzzy, c-format msgid "Kernel %s Available" msgstr "Установлено" -#: src/Console/AppConsole.vala:371 src/Console/AppConsole.vala:387 +#: src/Console/AppConsole.vala:369 src/Console/AppConsole.vala:385 #: src/Gtk/MainWindow.vala:335 msgid "Install" msgstr "Установить" @@ -326,11 +326,11 @@ msgstr "Установить" msgid "Show" msgstr "" -#: src/Gtk/AppGtk.vala:162 +#: src/Gtk/AppGtk.vala:160 msgid "Print debug information" msgstr "Распечатать отладочную информацию" -#: src/Gtk/AppGtk.vala:163 +#: src/Gtk/AppGtk.vala:161 msgid "Show all options" msgstr "Показать все параметры" @@ -598,10 +598,10 @@ msgstr "Не удалось создать папку" msgid "Deleted" msgstr "Не удалось удалить файл" -#: src/Utility/TeeJee.Logging.vala:89 +#: src/Utility/TeeJee.Logging.vala:59 msgid "E" msgstr "E" -#: src/Utility/TeeJee.Logging.vala:89 -msgid "W" -msgstr "W" +#: src/Utility/TeeJee.Logging.vala:84 +msgid "D" +msgstr "" diff --git a/po/sv.po b/po/sv.po index 720124ea..4e13fe47 100644 --- a/po/sv.po +++ b/po/sv.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-11 10:31-0400\n" +"POT-Creation-Date: 2020-05-11 22:06-0400\n" "PO-Revision-Date: 2018-01-13 16:56+0100\n" "Last-Translator: Åke Engelbrektson \n" "Language-Team: Svenska Språkfiler \n" @@ -57,16 +57,16 @@ msgstr "" msgid "Continue ?" msgstr "" -#: src/Common/LinuxKernel.vala:744 src/Console/AppConsole.vala:334 +#: src/Common/LinuxKernel.vala:744 src/Console/AppConsole.vala:332 msgid "Latest update" msgstr "" -#: src/Common/LinuxKernel.vala:755 src/Console/AppConsole.vala:341 +#: src/Common/LinuxKernel.vala:755 src/Console/AppConsole.vala:339 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:763 src/Console/AppConsole.vala:346 -#: src/Console/AppConsole.vala:396 +#: src/Common/LinuxKernel.vala:763 src/Console/AppConsole.vala:344 +#: src/Console/AppConsole.vala:394 msgid "No updates found" msgstr "Inga uppdateringar hittades" @@ -149,19 +149,19 @@ msgstr "" "Denna kärna används för tillfället och kan inte tas bort.\n" "Installera en annan kärna innan du tar bort den här." -#: src/Common/Main.vala:122 +#: src/Common/Main.vala:120 msgid "Commands listed below are not available on this system" msgstr "Kommandon listade nedan, finns inte tillgängliga i detta system." -#: src/Common/Main.vala:123 +#: src/Common/Main.vala:121 msgid "Please install required packages and try again" msgstr "Installera nödvändiga paket och försök igen" -#: src/Common/Main.vala:269 +#: src/Common/Main.vala:267 msgid "Called from" msgstr "" -#: src/Common/Main.vala:281 +#: src/Common/Main.vala:279 #, fuzzy msgid "Notifications are disabled" msgstr "Avisering" @@ -171,148 +171,148 @@ msgstr "Avisering" msgid "File not found: %s" msgstr "Filen kunde inte hittas: %s" -#: src/Console/AppConsole.vala:71 src/Gtk/AppGtk.vala:158 +#: src/Console/AppConsole.vala:69 src/Gtk/AppGtk.vala:156 msgid "Syntax" msgstr "Syntax" -#: src/Console/AppConsole.vala:73 +#: src/Console/AppConsole.vala:71 msgid "Commands" msgstr "" -#: src/Console/AppConsole.vala:75 +#: src/Console/AppConsole.vala:73 msgid "Check for kernel updates" msgstr "Sök efter kärnuppdateringar" -#: src/Console/AppConsole.vala:76 +#: src/Console/AppConsole.vala:74 #, fuzzy msgid "Check for kernel updates and notify current user" msgstr "Sök efter kärnuppdateringar" -#: src/Console/AppConsole.vala:77 +#: src/Console/AppConsole.vala:75 msgid "List all available mainline kernels" msgstr "Lista alla tillgängliga kärnor" -#: src/Console/AppConsole.vala:78 +#: src/Console/AppConsole.vala:76 #, fuzzy msgid "List installed kernels" msgstr "Lista tillgängliga kärnor" -#: src/Console/AppConsole.vala:79 +#: src/Console/AppConsole.vala:77 #, fuzzy msgid "Install latest mainline kernel" msgstr "Installera specificerad kärna" -#: src/Console/AppConsole.vala:80 +#: src/Console/AppConsole.vala:78 msgid "Install latest point update for current series" msgstr "" -#: src/Console/AppConsole.vala:81 +#: src/Console/AppConsole.vala:79 msgid "Install specified mainline kernel" msgstr "Installera specificerad kärna" -#: src/Console/AppConsole.vala:82 +#: src/Console/AppConsole.vala:80 #, fuzzy msgid "Uninstall specified kernels" msgstr "Installera specificerad kärna" -#: src/Console/AppConsole.vala:83 src/Gtk/MainWindow.vala:401 +#: src/Console/AppConsole.vala:81 src/Gtk/MainWindow.vala:401 msgid "Remove installed kernels older than running kernel" msgstr "Ta bort installerade kärnor äldre än den som körs" -#: src/Console/AppConsole.vala:84 +#: src/Console/AppConsole.vala:82 #, fuzzy msgid "Download specified kernels" msgstr "Ladda ner paket för specificerad kärna" -#: src/Console/AppConsole.vala:85 +#: src/Console/AppConsole.vala:83 msgid "Remove files from application cache" msgstr "Ta bort filer från program-cachen" -#: src/Console/AppConsole.vala:86 +#: src/Console/AppConsole.vala:84 #, fuzzy msgid "Show unstable and RC releases" msgstr "Dölj instabila- och RC-publiceringar" -#: src/Console/AppConsole.vala:88 src/Gtk/AppGtk.vala:160 +#: src/Console/AppConsole.vala:86 src/Gtk/AppGtk.vala:158 msgid "Options" msgstr "Alternativ" -#: src/Console/AppConsole.vala:90 +#: src/Console/AppConsole.vala:88 msgid "Enable verbose debugging output" msgstr "" -#: src/Console/AppConsole.vala:91 +#: src/Console/AppConsole.vala:89 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "" -#: src/Console/AppConsole.vala:92 +#: src/Console/AppConsole.vala:90 msgid "Override user" msgstr "" -#: src/Console/AppConsole.vala:95 +#: src/Console/AppConsole.vala:93 msgid "A version string taken from the output of --list" msgstr "" -#: src/Console/AppConsole.vala:96 +#: src/Console/AppConsole.vala:94 msgid "" "One or more version strings (comma-separated) taken from the output of --list" msgstr "" -#: src/Console/AppConsole.vala:103 +#: src/Console/AppConsole.vala:101 #, fuzzy msgid "Admin access is required for this action." msgstr "Root-åtkomst krävs för att köra detta program." -#: src/Console/AppConsole.vala:104 +#: src/Console/AppConsole.vala:102 msgid "Run the application as admin with pkexec or sudo." msgstr "Kör programmet som administratör, med pkexec eller sudo." -#: src/Console/AppConsole.vala:180 src/Gtk/AppGtk.vala:145 +#: src/Console/AppConsole.vala:178 src/Gtk/AppGtk.vala:143 msgid "Unknown option" msgstr "Okänt alternativ" -#: src/Console/AppConsole.vala:182 src/Console/AppConsole.vala:288 -#: src/Console/AppConsole.vala:316 +#: src/Console/AppConsole.vala:180 src/Console/AppConsole.vala:286 +#: src/Console/AppConsole.vala:314 #, fuzzy msgid "Run" msgstr "Körs" -#: src/Console/AppConsole.vala:182 +#: src/Console/AppConsole.vala:180 #, fuzzy msgid "to list all options" msgstr "Visa alla alternativ" -#: src/Console/AppConsole.vala:261 src/Console/AppConsole.vala:296 +#: src/Console/AppConsole.vala:259 src/Console/AppConsole.vala:294 msgid "No kernels specified" msgstr "" -#: src/Console/AppConsole.vala:267 +#: src/Console/AppConsole.vala:265 msgid "Multiple kernels selected for installation. Select only one." msgstr "Flera kärnor valda för installation. Välj endast en." -#: src/Console/AppConsole.vala:285 src/Gtk/MainWindow.vala:100 +#: src/Console/AppConsole.vala:283 src/Gtk/MainWindow.vala:100 msgid "Could not find requested version" msgstr "Kunde inte hitta efterfrågad version" -#: src/Console/AppConsole.vala:288 +#: src/Console/AppConsole.vala:286 msgid "and use a version string listed in first column" msgstr "" -#: src/Console/AppConsole.vala:315 +#: src/Console/AppConsole.vala:313 msgid "Command not specified" msgstr "" -#: src/Console/AppConsole.vala:316 +#: src/Console/AppConsole.vala:314 #, fuzzy msgid "to list all commands" msgstr "Visa alla alternativ" -#: src/Console/AppConsole.vala:368 src/Console/AppConsole.vala:384 +#: src/Console/AppConsole.vala:366 src/Console/AppConsole.vala:382 #, fuzzy, c-format msgid "Kernel %s Available" msgstr "Tillgängliga paket" -#: src/Console/AppConsole.vala:371 src/Console/AppConsole.vala:387 +#: src/Console/AppConsole.vala:369 src/Console/AppConsole.vala:385 #: src/Gtk/MainWindow.vala:335 msgid "Install" msgstr "Installera" @@ -321,11 +321,11 @@ msgstr "Installera" msgid "Show" msgstr "" -#: src/Gtk/AppGtk.vala:162 +#: src/Gtk/AppGtk.vala:160 msgid "Print debug information" msgstr "Skriv ut felsökningsinformation" -#: src/Gtk/AppGtk.vala:163 +#: src/Gtk/AppGtk.vala:161 msgid "Show all options" msgstr "Visa alla alternativ" @@ -588,10 +588,10 @@ msgstr "Kunde inte skapa mappen" msgid "Deleted" msgstr "Fil borttagen" -#: src/Utility/TeeJee.Logging.vala:89 +#: src/Utility/TeeJee.Logging.vala:59 msgid "E" msgstr "F" -#: src/Utility/TeeJee.Logging.vala:89 -msgid "W" -msgstr "V" +#: src/Utility/TeeJee.Logging.vala:84 +msgid "D" +msgstr "" diff --git a/po/tr.po b/po/tr.po index 169ba8d1..612bb349 100644 --- a/po/tr.po +++ b/po/tr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-11 10:31-0400\n" +"POT-Creation-Date: 2020-05-11 22:06-0400\n" "PO-Revision-Date: 2020-03-10 15:59+0300\n" "Last-Translator: Gökhan GÖKKAYA \n" "Language-Team: Turkish\n" @@ -53,16 +53,16 @@ msgstr "Aşağıdaki çekirdekler silinecek:" msgid "Continue ?" msgstr "Devam et ?" -#: src/Common/LinuxKernel.vala:744 src/Console/AppConsole.vala:334 +#: src/Common/LinuxKernel.vala:744 src/Console/AppConsole.vala:332 msgid "Latest update" msgstr "Son güncelleme" -#: src/Common/LinuxKernel.vala:755 src/Console/AppConsole.vala:341 +#: src/Common/LinuxKernel.vala:755 src/Console/AppConsole.vala:339 msgid "Latest point update" msgstr "Son güncelleme noktası" -#: src/Common/LinuxKernel.vala:763 src/Console/AppConsole.vala:346 -#: src/Console/AppConsole.vala:396 +#: src/Common/LinuxKernel.vala:763 src/Console/AppConsole.vala:344 +#: src/Console/AppConsole.vala:394 msgid "No updates found" msgstr "Güncelleme bulunamadı" @@ -146,19 +146,19 @@ msgstr "" "Bu çekirdek şu anda çalışıyor ve bu sebeple kaldırılamaz.\n" "Bunu kaldırmadan önce başka bir çekirdek yükleyin." -#: src/Common/Main.vala:122 +#: src/Common/Main.vala:120 msgid "Commands listed below are not available on this system" msgstr "Aşağıda listelenen komutlar bu sistemde mevcut değil" -#: src/Common/Main.vala:123 +#: src/Common/Main.vala:121 msgid "Please install required packages and try again" msgstr "Lütfen gerekli paketleri yükleyin ve tekrar deneyin" -#: src/Common/Main.vala:269 +#: src/Common/Main.vala:267 msgid "Called from" msgstr "" -#: src/Common/Main.vala:281 +#: src/Common/Main.vala:279 #, fuzzy msgid "Notifications are disabled" msgstr "Bildirim" @@ -168,144 +168,144 @@ msgstr "Bildirim" msgid "File not found: %s" msgstr "Şu dosya bulunamadı: %s" -#: src/Console/AppConsole.vala:71 src/Gtk/AppGtk.vala:158 +#: src/Console/AppConsole.vala:69 src/Gtk/AppGtk.vala:156 msgid "Syntax" msgstr "Sözdizimi" -#: src/Console/AppConsole.vala:73 +#: src/Console/AppConsole.vala:71 msgid "Commands" msgstr "Komutlar" -#: src/Console/AppConsole.vala:75 +#: src/Console/AppConsole.vala:73 msgid "Check for kernel updates" msgstr "Çekirdek güncellemelerini kontrol et" -#: src/Console/AppConsole.vala:76 +#: src/Console/AppConsole.vala:74 msgid "Check for kernel updates and notify current user" msgstr "Çekirdek güncellemelerini kontrol et ve mevcut kullanıcıyı uyar" -#: src/Console/AppConsole.vala:77 +#: src/Console/AppConsole.vala:75 msgid "List all available mainline kernels" msgstr "Tüm mainline çekirdeklerini listele" -#: src/Console/AppConsole.vala:78 +#: src/Console/AppConsole.vala:76 msgid "List installed kernels" msgstr "Kurulu çekirdekleri listele" -#: src/Console/AppConsole.vala:79 +#: src/Console/AppConsole.vala:77 msgid "Install latest mainline kernel" msgstr "En son mainline çekirdeğini kur" -#: src/Console/AppConsole.vala:80 +#: src/Console/AppConsole.vala:78 msgid "Install latest point update for current series" msgstr "Mevcut çekirdek serisi için en güncelleme noktasını kur" -#: src/Console/AppConsole.vala:81 +#: src/Console/AppConsole.vala:79 msgid "Install specified mainline kernel" msgstr "Belirtilen mainline çekirdeğini kur" -#: src/Console/AppConsole.vala:82 +#: src/Console/AppConsole.vala:80 #, fuzzy msgid "Uninstall specified kernels" msgstr "Belirtilen mainline çekirdeğini kur" -#: src/Console/AppConsole.vala:83 src/Gtk/MainWindow.vala:401 +#: src/Console/AppConsole.vala:81 src/Gtk/MainWindow.vala:401 msgid "Remove installed kernels older than running kernel" msgstr "Çalışan çekirdekten eski olan kurulu çekirdekleri kaldır" -#: src/Console/AppConsole.vala:84 +#: src/Console/AppConsole.vala:82 #, fuzzy msgid "Download specified kernels" msgstr "Belirtilen çekirdek için paketleri indir" -#: src/Console/AppConsole.vala:85 +#: src/Console/AppConsole.vala:83 msgid "Remove files from application cache" msgstr "Dosyaları uygulama önbelleğinden sil" -#: src/Console/AppConsole.vala:86 +#: src/Console/AppConsole.vala:84 msgid "Show unstable and RC releases" msgstr "Kararsız ve RC sürümleri göster" -#: src/Console/AppConsole.vala:88 src/Gtk/AppGtk.vala:160 +#: src/Console/AppConsole.vala:86 src/Gtk/AppGtk.vala:158 msgid "Options" msgstr "Seçenekler" -#: src/Console/AppConsole.vala:90 +#: src/Console/AppConsole.vala:88 msgid "Enable verbose debugging output" msgstr "Ayrıntılı hata ayıklama çıktısını etkinleştir" -#: src/Console/AppConsole.vala:91 +#: src/Console/AppConsole.vala:89 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "Tüm istemler için Evet'i kabul edin (etkileşimsiz kip)" -#: src/Console/AppConsole.vala:92 +#: src/Console/AppConsole.vala:90 msgid "Override user" msgstr "Kullanıcıyı geçersiz kıl" -#: src/Console/AppConsole.vala:95 +#: src/Console/AppConsole.vala:93 msgid "A version string taken from the output of --list" msgstr "" -#: src/Console/AppConsole.vala:96 +#: src/Console/AppConsole.vala:94 msgid "" "One or more version strings (comma-separated) taken from the output of --list" msgstr "" -#: src/Console/AppConsole.vala:103 +#: src/Console/AppConsole.vala:101 #, fuzzy msgid "Admin access is required for this action." msgstr "Bu uygulamayı çalıştırmak için yönetici izni gerekiyor." -#: src/Console/AppConsole.vala:104 +#: src/Console/AppConsole.vala:102 msgid "Run the application as admin with pkexec or sudo." msgstr "Bu uygulamayı pkexec yada sudo ile yönetici haklarıyla çalıştırın." -#: src/Console/AppConsole.vala:180 src/Gtk/AppGtk.vala:145 +#: src/Console/AppConsole.vala:178 src/Gtk/AppGtk.vala:143 msgid "Unknown option" msgstr "Bilinmeyen seçenek" -#: src/Console/AppConsole.vala:182 src/Console/AppConsole.vala:288 -#: src/Console/AppConsole.vala:316 +#: src/Console/AppConsole.vala:180 src/Console/AppConsole.vala:286 +#: src/Console/AppConsole.vala:314 #, fuzzy msgid "Run" msgstr "Çalıştır '" -#: src/Console/AppConsole.vala:182 +#: src/Console/AppConsole.vala:180 #, fuzzy msgid "to list all options" msgstr "Tüm seçenekleri göster" -#: src/Console/AppConsole.vala:261 src/Console/AppConsole.vala:296 +#: src/Console/AppConsole.vala:259 src/Console/AppConsole.vala:294 msgid "No kernels specified" msgstr "Belirtilen çekirdek yok" -#: src/Console/AppConsole.vala:267 +#: src/Console/AppConsole.vala:265 msgid "Multiple kernels selected for installation. Select only one." msgstr "Kurulum için çoklu çekirdek seçildi. Sadece bir tane seçiniz." -#: src/Console/AppConsole.vala:285 src/Gtk/MainWindow.vala:100 +#: src/Console/AppConsole.vala:283 src/Gtk/MainWindow.vala:100 msgid "Could not find requested version" msgstr "İstenen sürüm bulunamadı" -#: src/Console/AppConsole.vala:288 +#: src/Console/AppConsole.vala:286 msgid "and use a version string listed in first column" msgstr "" -#: src/Console/AppConsole.vala:315 +#: src/Console/AppConsole.vala:313 msgid "Command not specified" msgstr "Komut belirtilmedi" -#: src/Console/AppConsole.vala:316 +#: src/Console/AppConsole.vala:314 #, fuzzy msgid "to list all commands" msgstr "Tüm seçenekleri göster" -#: src/Console/AppConsole.vala:368 src/Console/AppConsole.vala:384 +#: src/Console/AppConsole.vala:366 src/Console/AppConsole.vala:382 #, fuzzy, c-format msgid "Kernel %s Available" msgstr "Mevcut Paketler" -#: src/Console/AppConsole.vala:371 src/Console/AppConsole.vala:387 +#: src/Console/AppConsole.vala:369 src/Console/AppConsole.vala:385 #: src/Gtk/MainWindow.vala:335 msgid "Install" msgstr "Kur" @@ -314,11 +314,11 @@ msgstr "Kur" msgid "Show" msgstr "" -#: src/Gtk/AppGtk.vala:162 +#: src/Gtk/AppGtk.vala:160 msgid "Print debug information" msgstr "Hata ayıklama bilgisini yazdır" -#: src/Gtk/AppGtk.vala:163 +#: src/Gtk/AppGtk.vala:161 msgid "Show all options" msgstr "Tüm seçenekleri göster" @@ -580,10 +580,10 @@ msgstr "Dizin oluşturma başarısız" msgid "Deleted" msgstr "Dosya silindi" -#: src/Utility/TeeJee.Logging.vala:89 +#: src/Utility/TeeJee.Logging.vala:59 msgid "E" msgstr "H" -#: src/Utility/TeeJee.Logging.vala:89 -msgid "W" -msgstr "U" +#: src/Utility/TeeJee.Logging.vala:84 +msgid "D" +msgstr "" diff --git a/po/uk.po b/po/uk.po index 18d90105..f2b88d42 100644 --- a/po/uk.po +++ b/po/uk.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-11 10:31-0400\n" +"POT-Creation-Date: 2020-05-11 22:06-0400\n" "PO-Revision-Date: 2019-07-25 11:00+0300\n" "Last-Translator: Serhii Golovko \n" "Language-Team: Ukranian \n" @@ -53,16 +53,16 @@ msgstr "Наступні ядра будуть видалені:" msgid "Continue ?" msgstr "Продовжувати ?" -#: src/Common/LinuxKernel.vala:744 src/Console/AppConsole.vala:334 +#: src/Common/LinuxKernel.vala:744 src/Console/AppConsole.vala:332 msgid "Latest update" msgstr "Останнє оновлення" -#: src/Common/LinuxKernel.vala:755 src/Console/AppConsole.vala:341 +#: src/Common/LinuxKernel.vala:755 src/Console/AppConsole.vala:339 msgid "Latest point update" msgstr "Остання точка оновлення" -#: src/Common/LinuxKernel.vala:763 src/Console/AppConsole.vala:346 -#: src/Console/AppConsole.vala:396 +#: src/Common/LinuxKernel.vala:763 src/Console/AppConsole.vala:344 +#: src/Console/AppConsole.vala:394 msgid "No updates found" msgstr "Оновлень не знайдено" @@ -146,19 +146,19 @@ msgstr "" "Це ядро наразі працює і його неможливо видалити.\n" " Встановіть інше ядро перед тим, як видалити его." -#: src/Common/Main.vala:122 +#: src/Common/Main.vala:120 msgid "Commands listed below are not available on this system" msgstr "Команди перераховані нижче недоступні на цій системі" -#: src/Common/Main.vala:123 +#: src/Common/Main.vala:121 msgid "Please install required packages and try again" msgstr "Будьласка встановіть необхідні пакети та спробуйте ще раз" -#: src/Common/Main.vala:269 +#: src/Common/Main.vala:267 msgid "Called from" msgstr "Викликано з" -#: src/Common/Main.vala:281 +#: src/Common/Main.vala:279 #, fuzzy msgid "Notifications are disabled" msgstr "Повідомлення вимкнено" @@ -168,146 +168,146 @@ msgstr "Повідомлення вимкнено" msgid "File not found: %s" msgstr "Файл не знайдено: %s" -#: src/Console/AppConsole.vala:71 src/Gtk/AppGtk.vala:158 +#: src/Console/AppConsole.vala:69 src/Gtk/AppGtk.vala:156 msgid "Syntax" msgstr "Синтаксис" -#: src/Console/AppConsole.vala:73 +#: src/Console/AppConsole.vala:71 msgid "Commands" msgstr "Команди" -#: src/Console/AppConsole.vala:75 +#: src/Console/AppConsole.vala:73 msgid "Check for kernel updates" msgstr "Перевірити оновлення ядра" -#: src/Console/AppConsole.vala:76 +#: src/Console/AppConsole.vala:74 msgid "Check for kernel updates and notify current user" msgstr "Перевірте наявність оновлень ядра та повідомте поточного користувача" -#: src/Console/AppConsole.vala:77 +#: src/Console/AppConsole.vala:75 msgid "List all available mainline kernels" msgstr "Список усіх доступних основних ядер" -#: src/Console/AppConsole.vala:78 +#: src/Console/AppConsole.vala:76 msgid "List installed kernels" msgstr "Список встановлених ядер" -#: src/Console/AppConsole.vala:79 +#: src/Console/AppConsole.vala:77 msgid "Install latest mainline kernel" msgstr "Встановіть останнє основне ядро" -#: src/Console/AppConsole.vala:80 +#: src/Console/AppConsole.vala:78 msgid "Install latest point update for current series" msgstr "Встановіть останню точку оновлення для поточної серії" -#: src/Console/AppConsole.vala:81 +#: src/Console/AppConsole.vala:79 msgid "Install specified mainline kernel" msgstr "Встановіть конкретне основне ядро" -#: src/Console/AppConsole.vala:82 +#: src/Console/AppConsole.vala:80 #, fuzzy msgid "Uninstall specified kernels" msgstr "Видаліть конкретні ядра" -#: src/Console/AppConsole.vala:83 src/Gtk/MainWindow.vala:401 +#: src/Console/AppConsole.vala:81 src/Gtk/MainWindow.vala:401 msgid "Remove installed kernels older than running kernel" msgstr "Видаліть встановлені ядра, старші за запущене ядро" -#: src/Console/AppConsole.vala:84 +#: src/Console/AppConsole.vala:82 #, fuzzy msgid "Download specified kernels" msgstr "Завантажте конкретні ядра" -#: src/Console/AppConsole.vala:85 +#: src/Console/AppConsole.vala:83 msgid "Remove files from application cache" msgstr "Видалити файли з кешу програми" -#: src/Console/AppConsole.vala:86 +#: src/Console/AppConsole.vala:84 msgid "Show unstable and RC releases" msgstr "Приховати нестабільні і реліз-кандидат версії" -#: src/Console/AppConsole.vala:88 src/Gtk/AppGtk.vala:160 +#: src/Console/AppConsole.vala:86 src/Gtk/AppGtk.vala:158 msgid "Options" msgstr "Параметри" -#: src/Console/AppConsole.vala:90 +#: src/Console/AppConsole.vala:88 msgid "Enable verbose debugging output" msgstr "Увімкнути багатослівний вихід налагодження" -#: src/Console/AppConsole.vala:91 +#: src/Console/AppConsole.vala:89 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "Припустимо, Так для всіх підказок (неінтерактивний режим)" -#: src/Console/AppConsole.vala:92 +#: src/Console/AppConsole.vala:90 msgid "Override user" msgstr "Перевизначення користувача" -#: src/Console/AppConsole.vala:95 +#: src/Console/AppConsole.vala:93 msgid "A version string taken from the output of --list" msgstr "Рядок версій, взятий з виводу --list" -#: src/Console/AppConsole.vala:96 +#: src/Console/AppConsole.vala:94 #, fuzzy msgid "" "One or more version strings (comma-separated) taken from the output of --list" msgstr "" "Одна або кілька рядків версії (розділені комами), взяті з виводу --list" -#: src/Console/AppConsole.vala:103 +#: src/Console/AppConsole.vala:101 #, fuzzy msgid "Admin access is required for this action." msgstr "Для запуску програми потрібно мати права адміністратора." -#: src/Console/AppConsole.vala:104 +#: src/Console/AppConsole.vala:102 msgid "Run the application as admin with pkexec or sudo." msgstr "Запустіть додаток як адміністратор за допомогою pkexec або sudo." -#: src/Console/AppConsole.vala:180 src/Gtk/AppGtk.vala:145 +#: src/Console/AppConsole.vala:178 src/Gtk/AppGtk.vala:143 msgid "Unknown option" msgstr "Невідомий параметр" -#: src/Console/AppConsole.vala:182 src/Console/AppConsole.vala:288 -#: src/Console/AppConsole.vala:316 +#: src/Console/AppConsole.vala:180 src/Console/AppConsole.vala:286 +#: src/Console/AppConsole.vala:314 #, fuzzy msgid "Run" msgstr "Запуск" -#: src/Console/AppConsole.vala:182 +#: src/Console/AppConsole.vala:180 #, fuzzy msgid "to list all options" msgstr "Показати усі параметри" -#: src/Console/AppConsole.vala:261 src/Console/AppConsole.vala:296 +#: src/Console/AppConsole.vala:259 src/Console/AppConsole.vala:294 msgid "No kernels specified" msgstr "Ядра не вказані" -#: src/Console/AppConsole.vala:267 +#: src/Console/AppConsole.vala:265 msgid "Multiple kernels selected for installation. Select only one." msgstr "Для встановлення вибрано кілька ядер. Виберіть лише одну." -#: src/Console/AppConsole.vala:285 src/Gtk/MainWindow.vala:100 +#: src/Console/AppConsole.vala:283 src/Gtk/MainWindow.vala:100 msgid "Could not find requested version" msgstr "Не вдалося знайти запитувану версію" -#: src/Console/AppConsole.vala:288 +#: src/Console/AppConsole.vala:286 msgid "and use a version string listed in first column" msgstr "і використовувати рядок версій, вказаний у першому стовпці" -#: src/Console/AppConsole.vala:315 +#: src/Console/AppConsole.vala:313 msgid "Command not specified" msgstr "Команда не вказана" -#: src/Console/AppConsole.vala:316 +#: src/Console/AppConsole.vala:314 #, fuzzy msgid "to list all commands" msgstr "Показати усі параметри" -#: src/Console/AppConsole.vala:368 src/Console/AppConsole.vala:384 +#: src/Console/AppConsole.vala:366 src/Console/AppConsole.vala:382 #, fuzzy, c-format msgid "Kernel %s Available" msgstr "Доступні пакети" -#: src/Console/AppConsole.vala:371 src/Console/AppConsole.vala:387 +#: src/Console/AppConsole.vala:369 src/Console/AppConsole.vala:385 #: src/Gtk/MainWindow.vala:335 msgid "Install" msgstr "Встановити" @@ -316,11 +316,11 @@ msgstr "Встановити" msgid "Show" msgstr "Показати" -#: src/Gtk/AppGtk.vala:162 +#: src/Gtk/AppGtk.vala:160 msgid "Print debug information" msgstr "Роздрукувати зневадження" -#: src/Gtk/AppGtk.vala:163 +#: src/Gtk/AppGtk.vala:161 msgid "Show all options" msgstr "Показати усі параметри" @@ -584,10 +584,10 @@ msgstr "Невдалося створити теку" msgid "Deleted" msgstr "Видалено" -#: src/Utility/TeeJee.Logging.vala:89 +#: src/Utility/TeeJee.Logging.vala:59 msgid "E" msgstr "E" -#: src/Utility/TeeJee.Logging.vala:89 -msgid "W" -msgstr "W" +#: src/Utility/TeeJee.Logging.vala:84 +msgid "D" +msgstr "" diff --git a/src/Common/Main.vala b/src/Common/Main.vala index 123a92e1..16d8eaf1 100644 --- a/src/Common/Main.vala +++ b/src/Common/Main.vala @@ -90,8 +90,6 @@ public class Main : GLib.Object{ GUI_MODE = _gui_mode; - LOG_TIMESTAMP = false; - Package.initialize(); LinuxKernel.initialize(); diff --git a/src/Console/AppConsole.vala b/src/Console/AppConsole.vala index f9115e33..d9d78008 100644 --- a/src/Console/AppConsole.vala +++ b/src/Console/AppConsole.vala @@ -40,8 +40,6 @@ public class AppConsole : GLib.Object { log_msg(BRANDING_SHORTNAME+" "+BRANDING_VERSION); - LOG_TIMESTAMP = false; - //check dependencies string message; if (!Main.check_dependencies(out message)) { diff --git a/src/Gtk/AppGtk.vala b/src/Gtk/AppGtk.vala index f41fb66f..d4daf536 100644 --- a/src/Gtk/AppGtk.vala +++ b/src/Gtk/AppGtk.vala @@ -44,8 +44,6 @@ public class AppGtk : GLib.Object { Gtk.init(ref args); - LOG_TIMESTAMP = false; - //check dependencies string message; if (!Main.check_dependencies(out message)) { diff --git a/src/Utility/TeeJee.Logging.vala b/src/Utility/TeeJee.Logging.vala index 62c1e27c..a1497955 100644 --- a/src/Utility/TeeJee.Logging.vala +++ b/src/Utility/TeeJee.Logging.vala @@ -31,34 +31,15 @@ namespace TeeJee.Logging{ public DataOutputStream dos_log; public string err_log; public bool LOG_ENABLE = true; - public bool LOG_TIMESTAMP = false; - public bool LOG_COLORS = true; public bool LOG_DEBUG = false; - public bool LOG_COMMANDS = false; - public void log_msg (string message, bool highlight = false){ + public void log_msg (string message){ if (!LOG_ENABLE) { return; } - string msg = ""; + string s = message+"\n"; - if (highlight && LOG_COLORS){ - msg += "\033[1;38;5;34m"; - } - - if (LOG_TIMESTAMP){ - msg += "[" + timestamp(true) + "] "; - } - - msg += message; - - if (highlight && LOG_COLORS){ - msg += "\033[0m"; - } - - msg += "\n"; - - stdout.printf (msg); + stdout.printf(s); stdout.flush(); try { @@ -71,43 +52,24 @@ namespace TeeJee.Logging{ } } - public void log_error (string message, bool highlight = false, - bool is_warning = false){ + public void log_error (string message){ if (!LOG_ENABLE) { return; } - string msg = ""; - - if (highlight && LOG_COLORS){ - msg += "\033[1;38;5;160m"; - } - - if (LOG_TIMESTAMP){ - msg += "[" + timestamp(true) + "] "; - } - - string prefix = (is_warning) ? _("W") : _("E"); - - msg += prefix + ": " + message; - - if (highlight && LOG_COLORS){ - msg += "\033[0m"; - } - - msg += "\n"; + string s = _("E") + ": " + message + "\n"; - stdout.printf (msg); + stdout.printf(s); stdout.flush(); try { - string str = "[%s] %s: %s\n".printf(timestamp(), prefix, message); + string str = "[%s] %s\n".printf(timestamp(),message); if (dos_log != null){ dos_log.put_string (str); } if (err_log != null){ - err_log += "%s\n".printf(message); + err_log += s; } } catch (Error e) { @@ -119,7 +81,7 @@ namespace TeeJee.Logging{ if (!LOG_ENABLE) { return; } if (LOG_DEBUG){ - log_msg ("D: " + message); + log_msg (_("D") + ": " + message); } try { From d7943e56e7b73a2d96b862195f514e9c0dca0c5c Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Tue, 12 May 2020 05:31:13 -0400 Subject: [PATCH 088/567] readme wips --- .deb_build_number.mak | 2 +- README.md | 1 + README.md.src | 1 + po/es.po | 102 +++++++------ po/fr.po | 101 +++++++------ po/hr.po | 101 +++++++------ po/messages.pot | 97 +++++++------ po/nl.po | 103 +++++++------ po/pl.po | 102 +++++++------ po/ru.po | 102 +++++++------ po/sv.po | 101 +++++++------ po/tr.po | 101 +++++++------ po/uk.po | 101 +++++++------ src/Common/LinuxKernel.vala | 60 ++++---- src/Common/Main.vala | 6 +- src/Console/AppConsole.vala | 27 +--- src/Gtk/MainWindow.vala | 49 +++---- src/Utility/TeeJee.Process.vala | 246 +------------------------------- src/Utility/TeeJee.System.vala | 142 ++---------------- 19 files changed, 619 insertions(+), 926 deletions(-) diff --git a/.deb_build_number.mak b/.deb_build_number.mak index 20c8cdda..9e4b2788 100644 --- a/.deb_build_number.mak +++ b/.deb_build_number.mak @@ -1,3 +1,3 @@ # This file is generated by Makefile "make deb_build_number" DEB_PKG_VERSION := 1.0.9 -DEB_BUILD_NUMBER := 0012 +DEB_BUILD_NUMBER := 0013 diff --git a/README.md b/README.md index dd807548..d85fae4e 100644 --- a/README.md +++ b/README.md @@ -46,6 +46,7 @@ The original author stopped maintaining the original GPL version of ukuu and swi * Better desktop notification behavior ### TODO & WIP +* notifications - buggy pattern matching wrt -rc kernel versions * notifications - if you've seen a notification for a given kernel and dismissed it, don't display it again, at least not in the same login session. * notifications - make the bg process detect when the user logs off and exit itself. * notifications - start/restart/stop the bg process when the user changes settings instead of only at logon/logoff diff --git a/README.md.src b/README.md.src index 3c1f718b..1ff75737 100644 --- a/README.md.src +++ b/README.md.src @@ -46,6 +46,7 @@ The original author stopped maintaining the original GPL version of ukuu and swi * Better desktop notification behavior ### TODO & WIP +* notifications - buggy pattern matching wrt -rc kernel versions * notifications - if you've seen a notification for a given kernel and dismissed it, don't display it again, at least not in the same login session. * notifications - make the bg process detect when the user logs off and exit itself. * notifications - start/restart/stop the bg process when the user changes settings instead of only at logon/logoff diff --git a/po/es.po b/po/es.po index 8348c7cd..293394df 100644 --- a/po/es.po +++ b/po/es.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-11 22:06-0400\n" +"POT-Creation-Date: 2020-05-12 03:13-0400\n" "PO-Revision-Date: 2018-01-03 02:03-0600\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish\n" @@ -53,16 +53,16 @@ msgstr "Los siguientes kernels serán eliminados:" msgid "Continue ?" msgstr "¿Continuar?" -#: src/Common/LinuxKernel.vala:744 src/Console/AppConsole.vala:332 +#: src/Common/LinuxKernel.vala:744 src/Console/AppConsole.vala:309 msgid "Latest update" msgstr "" -#: src/Common/LinuxKernel.vala:755 src/Console/AppConsole.vala:339 +#: src/Common/LinuxKernel.vala:755 src/Console/AppConsole.vala:316 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:763 src/Console/AppConsole.vala:344 -#: src/Console/AppConsole.vala:394 +#: src/Common/LinuxKernel.vala:763 src/Console/AppConsole.vala:321 +#: src/Console/AppConsole.vala:371 msgid "No updates found" msgstr "No se encontró ninguna actualización" @@ -88,6 +88,7 @@ msgid "Installed" msgstr "Instalado" #: src/Common/LinuxKernel.vala:1148 src/Gtk/MainWindow.vala:186 +#: src/Gtk/MainWindow.vala:634 src/Gtk/MainWindow.vala:648 msgid "Running" msgstr "En ejecución" @@ -105,20 +106,20 @@ msgstr "Aceptar" msgid "ERROR" msgstr "ERROR" -#: src/Common/LinuxKernel.vala:1222 src/Gtk/MainWindow.vala:663 +#: src/Common/LinuxKernel.vala:1222 src/Gtk/MainWindow.vala:656 msgid "This kernel is already installed." msgstr "Este núcleo ya se instaló." -#: src/Common/LinuxKernel.vala:1253 +#: src/Common/LinuxKernel.vala:1248 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "Instalación finalizada. Se necesita reiniciar para utilizar el núcleo nuevo." -#: src/Common/LinuxKernel.vala:1256 +#: src/Common/LinuxKernel.vala:1251 msgid "Installation completed with errors" msgstr "Instalación finalizada con errores" -#: src/Common/LinuxKernel.vala:1272 +#: src/Common/LinuxKernel.vala:1267 msgid "" "Selected kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -126,19 +127,19 @@ msgstr "" "El núcleo seleccionado está en ejecución y no puede desinstalarse.\n" "Instale otro núcleo antes de desinstalar este." -#: src/Common/LinuxKernel.vala:1277 +#: src/Common/LinuxKernel.vala:1272 msgid "Preparing to remove selected kernels" msgstr "Preparándose para desinstalar los núcleos seleccionados" -#: src/Common/LinuxKernel.vala:1309 src/Common/LinuxKernel.vala:1362 +#: src/Common/LinuxKernel.vala:1303 src/Common/LinuxKernel.vala:1350 msgid "Un-install completed" msgstr "Desinstalación finalizada" -#: src/Common/LinuxKernel.vala:1312 src/Common/LinuxKernel.vala:1365 +#: src/Common/LinuxKernel.vala:1306 src/Common/LinuxKernel.vala:1353 msgid "Un-install completed with errors" msgstr "Desinstalación finalizada con errores" -#: src/Common/LinuxKernel.vala:1325 +#: src/Common/LinuxKernel.vala:1319 msgid "" "This kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -252,62 +253,52 @@ msgid "" "One or more version strings (comma-separated) taken from the output of --list" msgstr "" -#: src/Console/AppConsole.vala:101 -#, fuzzy -msgid "Admin access is required for this action." -msgstr "" -"Se necesitan privilegios administrativos para ejecutar esta aplicación." - -#: src/Console/AppConsole.vala:102 -msgid "Run the application as admin with pkexec or sudo." -msgstr "Ejecute la aplicación con permisos administrativos con pkexec o sudo." - -#: src/Console/AppConsole.vala:178 src/Gtk/AppGtk.vala:143 +#: src/Console/AppConsole.vala:169 src/Gtk/AppGtk.vala:143 msgid "Unknown option" msgstr "Opción desconocida" -#: src/Console/AppConsole.vala:180 src/Console/AppConsole.vala:286 -#: src/Console/AppConsole.vala:314 +#: src/Console/AppConsole.vala:171 src/Console/AppConsole.vala:263 +#: src/Console/AppConsole.vala:291 #, fuzzy msgid "Run" msgstr "En ejecución" -#: src/Console/AppConsole.vala:180 +#: src/Console/AppConsole.vala:171 #, fuzzy msgid "to list all options" msgstr "Mostrar todas las opciones" -#: src/Console/AppConsole.vala:259 src/Console/AppConsole.vala:294 +#: src/Console/AppConsole.vala:236 src/Console/AppConsole.vala:271 msgid "No kernels specified" msgstr "" -#: src/Console/AppConsole.vala:265 +#: src/Console/AppConsole.vala:242 msgid "Multiple kernels selected for installation. Select only one." msgstr "Se seleccionaron varios núcleos para su instalación. Elija solo uno." -#: src/Console/AppConsole.vala:283 src/Gtk/MainWindow.vala:100 +#: src/Console/AppConsole.vala:260 src/Gtk/MainWindow.vala:100 msgid "Could not find requested version" msgstr "No se pudo encontrar la versión solicitada" -#: src/Console/AppConsole.vala:286 +#: src/Console/AppConsole.vala:263 msgid "and use a version string listed in first column" msgstr "" -#: src/Console/AppConsole.vala:313 +#: src/Console/AppConsole.vala:290 msgid "Command not specified" msgstr "Coomand no especificado" -#: src/Console/AppConsole.vala:314 +#: src/Console/AppConsole.vala:291 #, fuzzy msgid "to list all commands" msgstr "Mostrar todas las opciones" -#: src/Console/AppConsole.vala:366 src/Console/AppConsole.vala:382 +#: src/Console/AppConsole.vala:343 src/Console/AppConsole.vala:359 #, fuzzy, c-format msgid "Kernel %s Available" msgstr "Paquetes disponibles" -#: src/Console/AppConsole.vala:369 src/Console/AppConsole.vala:385 +#: src/Console/AppConsole.vala:346 src/Console/AppConsole.vala:362 #: src/Gtk/MainWindow.vala:335 msgid "Install" msgstr "Instalar" @@ -336,13 +327,12 @@ msgstr "Estado" msgid "Refresh" msgstr "Actualizar" -#: src/Gtk/MainWindow.vala:326 src/Gtk/MainWindow.vala:537 -#: src/Gtk/MainWindow.vala:668 src/Utility/TeeJee.System.vala:145 +#: src/Gtk/MainWindow.vala:326 src/Utility/TeeJee.System.vala:42 msgid "Internet connection is not active" msgstr "La conexión a Internet está inactiva" -#: src/Gtk/MainWindow.vala:326 src/Gtk/MainWindow.vala:537 -#: src/Gtk/MainWindow.vala:668 +#: src/Gtk/MainWindow.vala:326 src/Gtk/MainWindow.vala:531 +#: src/Gtk/MainWindow.vala:661 msgid "No Internet" msgstr "No hay Internet" @@ -370,39 +360,59 @@ msgstr "Quitar" msgid "Select the kernels to remove" msgstr "Seleccione los núcleos que se desinstalarán" +#: src/Gtk/MainWindow.vala:392 src/Gtk/MainWindow.vala:426 +#: src/Gtk/MainWindow.vala:693 +msgid "Close window to exit..." +msgstr "" + #: src/Gtk/MainWindow.vala:400 msgid "Purge" msgstr "" -#: src/Gtk/MainWindow.vala:439 +#: src/Gtk/MainWindow.vala:433 msgid "Changes" msgstr "Cambios" -#: src/Gtk/MainWindow.vala:450 src/Gtk/SettingsDialog.vala:52 +#: src/Gtk/MainWindow.vala:444 src/Gtk/SettingsDialog.vala:52 msgid "Settings" msgstr "Configuración" -#: src/Gtk/MainWindow.vala:471 +#: src/Gtk/MainWindow.vala:465 msgid "About" msgstr "Acerca de" -#: src/Gtk/MainWindow.vala:515 +#: src/Gtk/MainWindow.vala:509 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "" "Herramienta de renovación de núcleo para distribuciones basadas en Ubuntu" -#: src/Gtk/MainWindow.vala:516 +#: src/Gtk/MainWindow.vala:510 msgid "Forked" msgstr "" -#: src/Gtk/MainWindow.vala:516 +#: src/Gtk/MainWindow.vala:510 msgid "Original" msgstr "" -#: src/Gtk/MainWindow.vala:556 +#: src/Gtk/MainWindow.vala:531 src/Gtk/MainWindow.vala:661 +#, fuzzy +msgid "Internet connection is not active." +msgstr "La conexión a Internet está inactiva" + +#: src/Gtk/MainWindow.vala:550 msgid "Refreshing..." msgstr "Actualizando…" +#: src/Gtk/MainWindow.vala:644 +#, fuzzy +msgid "available" +msgstr "Paquetes disponibles" + +#: src/Gtk/MainWindow.vala:656 +#, fuzzy +msgid "Already Installed" +msgstr "Instalado" + #: src/Gtk/ProgressWindow.vala:144 src/Gtk/TerminalWindow.vala:149 #: src/Utility/Gtk/CustomMessageDialog.vala:153 msgid "Cancel" diff --git a/po/fr.po b/po/fr.po index 8ea30379..75d7ff7a 100644 --- a/po/fr.po +++ b/po/fr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-11 22:06-0400\n" +"POT-Creation-Date: 2020-05-12 03:13-0400\n" "PO-Revision-Date: 2018-08-05 15:50+0200\n" "Last-Translator: Yolateng0 \n" "Language-Team: French\n" @@ -56,16 +56,16 @@ msgstr "" msgid "Continue ?" msgstr "" -#: src/Common/LinuxKernel.vala:744 src/Console/AppConsole.vala:332 +#: src/Common/LinuxKernel.vala:744 src/Console/AppConsole.vala:309 msgid "Latest update" msgstr "" -#: src/Common/LinuxKernel.vala:755 src/Console/AppConsole.vala:339 +#: src/Common/LinuxKernel.vala:755 src/Console/AppConsole.vala:316 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:763 src/Console/AppConsole.vala:344 -#: src/Console/AppConsole.vala:394 +#: src/Common/LinuxKernel.vala:763 src/Console/AppConsole.vala:321 +#: src/Console/AppConsole.vala:371 msgid "No updates found" msgstr "Aucune mise à jour disponible" @@ -91,6 +91,7 @@ msgid "Installed" msgstr "Installé" #: src/Common/LinuxKernel.vala:1148 src/Gtk/MainWindow.vala:186 +#: src/Gtk/MainWindow.vala:634 src/Gtk/MainWindow.vala:648 msgid "Running" msgstr "En cours" @@ -108,21 +109,21 @@ msgstr "OK" msgid "ERROR" msgstr "ERREUR" -#: src/Common/LinuxKernel.vala:1222 src/Gtk/MainWindow.vala:663 +#: src/Common/LinuxKernel.vala:1222 src/Gtk/MainWindow.vala:656 msgid "This kernel is already installed." msgstr "Ce noyau est déjà installé." -#: src/Common/LinuxKernel.vala:1253 +#: src/Common/LinuxKernel.vala:1248 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "Installation complétée. Un redémarrage est nécessaire pour utiliser le " "nouveau noyau." -#: src/Common/LinuxKernel.vala:1256 +#: src/Common/LinuxKernel.vala:1251 msgid "Installation completed with errors" msgstr "Installation terminée avec des erreurs" -#: src/Common/LinuxKernel.vala:1272 +#: src/Common/LinuxKernel.vala:1267 msgid "" "Selected kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -130,19 +131,19 @@ msgstr "" "Ce noyau est en cours d'exécution et ne peut pas être supprimé.\n" " Installez un autre noyau avant de retirer celui-ci." -#: src/Common/LinuxKernel.vala:1277 +#: src/Common/LinuxKernel.vala:1272 msgid "Preparing to remove selected kernels" msgstr "Préparation à la suppression des noyaux sélectionnés" -#: src/Common/LinuxKernel.vala:1309 src/Common/LinuxKernel.vala:1362 +#: src/Common/LinuxKernel.vala:1303 src/Common/LinuxKernel.vala:1350 msgid "Un-install completed" msgstr "Désinstallation complète" -#: src/Common/LinuxKernel.vala:1312 src/Common/LinuxKernel.vala:1365 +#: src/Common/LinuxKernel.vala:1306 src/Common/LinuxKernel.vala:1353 msgid "Un-install completed with errors" msgstr "Désinstallation terminée avec des erreurs" -#: src/Common/LinuxKernel.vala:1325 +#: src/Common/LinuxKernel.vala:1319 msgid "" "This kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -259,64 +260,55 @@ msgid "" "One or more version strings (comma-separated) taken from the output of --list" msgstr "" -#: src/Console/AppConsole.vala:101 -#, fuzzy -msgid "Admin access is required for this action." -msgstr "Accès administrateur requis pour lancer cette application." - -#: src/Console/AppConsole.vala:102 -msgid "Run the application as admin with pkexec or sudo." -msgstr "Exécutez l'application en tant qu'admin avec pkexec or sudo." - -#: src/Console/AppConsole.vala:178 src/Gtk/AppGtk.vala:143 +#: src/Console/AppConsole.vala:169 src/Gtk/AppGtk.vala:143 msgid "Unknown option" msgstr "Option inconnue" -#: src/Console/AppConsole.vala:180 src/Console/AppConsole.vala:286 -#: src/Console/AppConsole.vala:314 +#: src/Console/AppConsole.vala:171 src/Console/AppConsole.vala:263 +#: src/Console/AppConsole.vala:291 #, fuzzy msgid "Run" msgstr "En cours" -#: src/Console/AppConsole.vala:180 +#: src/Console/AppConsole.vala:171 #, fuzzy msgid "to list all options" msgstr "Afficher toutes les options" -#: src/Console/AppConsole.vala:259 src/Console/AppConsole.vala:294 +#: src/Console/AppConsole.vala:236 src/Console/AppConsole.vala:271 msgid "No kernels specified" msgstr "" -#: src/Console/AppConsole.vala:265 +#: src/Console/AppConsole.vala:242 msgid "Multiple kernels selected for installation. Select only one." msgstr "" "Plusieurs noyaux sélectionnés pour être installés. Sélectionnez en seulement " "un." -#: src/Console/AppConsole.vala:283 src/Gtk/MainWindow.vala:100 +#: src/Console/AppConsole.vala:260 src/Gtk/MainWindow.vala:100 msgid "Could not find requested version" msgstr "Impossible de trouver la version demandée" -#: src/Console/AppConsole.vala:286 +#: src/Console/AppConsole.vala:263 msgid "and use a version string listed in first column" msgstr "" -#: src/Console/AppConsole.vala:313 +#: src/Console/AppConsole.vala:290 #, fuzzy msgid "Command not specified" msgstr "Impossible de trouver le fichier" -#: src/Console/AppConsole.vala:314 +#: src/Console/AppConsole.vala:291 #, fuzzy msgid "to list all commands" msgstr "Afficher toutes les options" -#: src/Console/AppConsole.vala:366 src/Console/AppConsole.vala:382 +#: src/Console/AppConsole.vala:343 src/Console/AppConsole.vala:359 #, fuzzy, c-format msgid "Kernel %s Available" msgstr "Paquets disponibles" -#: src/Console/AppConsole.vala:369 src/Console/AppConsole.vala:385 +#: src/Console/AppConsole.vala:346 src/Console/AppConsole.vala:362 #: src/Gtk/MainWindow.vala:335 msgid "Install" msgstr "Installer" @@ -345,13 +337,12 @@ msgstr "Statut" msgid "Refresh" msgstr "Actualiser" -#: src/Gtk/MainWindow.vala:326 src/Gtk/MainWindow.vala:537 -#: src/Gtk/MainWindow.vala:668 src/Utility/TeeJee.System.vala:145 +#: src/Gtk/MainWindow.vala:326 src/Utility/TeeJee.System.vala:42 msgid "Internet connection is not active" msgstr "Connexion internet inexistante" -#: src/Gtk/MainWindow.vala:326 src/Gtk/MainWindow.vala:537 -#: src/Gtk/MainWindow.vala:668 +#: src/Gtk/MainWindow.vala:326 src/Gtk/MainWindow.vala:531 +#: src/Gtk/MainWindow.vala:661 msgid "No Internet" msgstr "Pas d'Internet" @@ -379,40 +370,60 @@ msgstr "Supprimer" msgid "Select the kernels to remove" msgstr "Sélectionnez les noyaux à supprimer" +#: src/Gtk/MainWindow.vala:392 src/Gtk/MainWindow.vala:426 +#: src/Gtk/MainWindow.vala:693 +msgid "Close window to exit..." +msgstr "" + #: src/Gtk/MainWindow.vala:400 msgid "Purge" msgstr "" -#: src/Gtk/MainWindow.vala:439 +#: src/Gtk/MainWindow.vala:433 msgid "Changes" msgstr "Changements" -#: src/Gtk/MainWindow.vala:450 src/Gtk/SettingsDialog.vala:52 +#: src/Gtk/MainWindow.vala:444 src/Gtk/SettingsDialog.vala:52 msgid "Settings" msgstr "Paramètres" -#: src/Gtk/MainWindow.vala:471 +#: src/Gtk/MainWindow.vala:465 msgid "About" msgstr "À propos" -#: src/Gtk/MainWindow.vala:515 +#: src/Gtk/MainWindow.vala:509 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "" "Utilitaire de mise à niveau des noyaux pour les distributions basées pour " "Ubuntu" -#: src/Gtk/MainWindow.vala:516 +#: src/Gtk/MainWindow.vala:510 msgid "Forked" msgstr "" -#: src/Gtk/MainWindow.vala:516 +#: src/Gtk/MainWindow.vala:510 msgid "Original" msgstr "" -#: src/Gtk/MainWindow.vala:556 +#: src/Gtk/MainWindow.vala:531 src/Gtk/MainWindow.vala:661 +#, fuzzy +msgid "Internet connection is not active." +msgstr "Connexion internet inexistante" + +#: src/Gtk/MainWindow.vala:550 msgid "Refreshing..." msgstr "Actualisation..." +#: src/Gtk/MainWindow.vala:644 +#, fuzzy +msgid "available" +msgstr "Paquets disponibles" + +#: src/Gtk/MainWindow.vala:656 +#, fuzzy +msgid "Already Installed" +msgstr "Installé" + #: src/Gtk/ProgressWindow.vala:144 src/Gtk/TerminalWindow.vala:149 #: src/Utility/Gtk/CustomMessageDialog.vala:153 msgid "Cancel" diff --git a/po/hr.po b/po/hr.po index b4774b43..fd42d18e 100644 --- a/po/hr.po +++ b/po/hr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-11 22:06-0400\n" +"POT-Creation-Date: 2020-05-12 03:13-0400\n" "PO-Revision-Date: 2017-12-24 00:52+0100\n" "Last-Translator: gogo \n" "Language-Team: Croatian \n" @@ -56,16 +56,16 @@ msgstr "" msgid "Continue ?" msgstr "" -#: src/Common/LinuxKernel.vala:744 src/Console/AppConsole.vala:332 +#: src/Common/LinuxKernel.vala:744 src/Console/AppConsole.vala:309 msgid "Latest update" msgstr "" -#: src/Common/LinuxKernel.vala:755 src/Console/AppConsole.vala:339 +#: src/Common/LinuxKernel.vala:755 src/Console/AppConsole.vala:316 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:763 src/Console/AppConsole.vala:344 -#: src/Console/AppConsole.vala:394 +#: src/Common/LinuxKernel.vala:763 src/Console/AppConsole.vala:321 +#: src/Console/AppConsole.vala:371 msgid "No updates found" msgstr "Nema pronađenih nadopuna" @@ -91,6 +91,7 @@ msgid "Installed" msgstr "Instalirano" #: src/Common/LinuxKernel.vala:1148 src/Gtk/MainWindow.vala:186 +#: src/Gtk/MainWindow.vala:634 src/Gtk/MainWindow.vala:648 msgid "Running" msgstr "Pokrenuto" @@ -108,21 +109,21 @@ msgstr "U redu" msgid "ERROR" msgstr "GREŠKA" -#: src/Common/LinuxKernel.vala:1222 src/Gtk/MainWindow.vala:663 +#: src/Common/LinuxKernel.vala:1222 src/Gtk/MainWindow.vala:656 msgid "This kernel is already installed." msgstr "Ovaj kernel je već instaliran." -#: src/Common/LinuxKernel.vala:1253 +#: src/Common/LinuxKernel.vala:1248 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "Instalacija je završena. Potrebno je ponovno pokretanje računala kako bi se " "koristio novi kernel." -#: src/Common/LinuxKernel.vala:1256 +#: src/Common/LinuxKernel.vala:1251 msgid "Installation completed with errors" msgstr "Instalacija je završena s greškama" -#: src/Common/LinuxKernel.vala:1272 +#: src/Common/LinuxKernel.vala:1267 msgid "" "Selected kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -130,19 +131,19 @@ msgstr "" "Odabrani kernel je trenutno pokernut i ne može se ukloniti.\n" " Instalirajte drugi kernel prije uklanjanja trenutnog kernela." -#: src/Common/LinuxKernel.vala:1277 +#: src/Common/LinuxKernel.vala:1272 msgid "Preparing to remove selected kernels" msgstr "Pripremanje uklanjanja odabranih kernela" -#: src/Common/LinuxKernel.vala:1309 src/Common/LinuxKernel.vala:1362 +#: src/Common/LinuxKernel.vala:1303 src/Common/LinuxKernel.vala:1350 msgid "Un-install completed" msgstr "Deinstalacija završena" -#: src/Common/LinuxKernel.vala:1312 src/Common/LinuxKernel.vala:1365 +#: src/Common/LinuxKernel.vala:1306 src/Common/LinuxKernel.vala:1353 msgid "Un-install completed with errors" msgstr "Deinstalacija završena s greškama" -#: src/Common/LinuxKernel.vala:1325 +#: src/Common/LinuxKernel.vala:1319 msgid "" "This kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -259,61 +260,52 @@ msgid "" "One or more version strings (comma-separated) taken from the output of --list" msgstr "" -#: src/Console/AppConsole.vala:101 -#, fuzzy -msgid "Admin access is required for this action." -msgstr "Administratorske ovlasti su potrebne za pokretanje ove aplikacije." - -#: src/Console/AppConsole.vala:102 -msgid "Run the application as admin with pkexec or sudo." -msgstr "Pokreni aplikaciju kao administrator sa pkexec ili sudo." - -#: src/Console/AppConsole.vala:178 src/Gtk/AppGtk.vala:143 +#: src/Console/AppConsole.vala:169 src/Gtk/AppGtk.vala:143 msgid "Unknown option" msgstr "Nepoznata mogućnost" -#: src/Console/AppConsole.vala:180 src/Console/AppConsole.vala:286 -#: src/Console/AppConsole.vala:314 +#: src/Console/AppConsole.vala:171 src/Console/AppConsole.vala:263 +#: src/Console/AppConsole.vala:291 #, fuzzy msgid "Run" msgstr "Pokrenuto" -#: src/Console/AppConsole.vala:180 +#: src/Console/AppConsole.vala:171 #, fuzzy msgid "to list all options" msgstr "Prikaži sve mogućnosti" -#: src/Console/AppConsole.vala:259 src/Console/AppConsole.vala:294 +#: src/Console/AppConsole.vala:236 src/Console/AppConsole.vala:271 msgid "No kernels specified" msgstr "" -#: src/Console/AppConsole.vala:265 +#: src/Console/AppConsole.vala:242 msgid "Multiple kernels selected for installation. Select only one." msgstr "Više kernela je odabrano za instalaciju. odaberite samo jedan." -#: src/Console/AppConsole.vala:283 src/Gtk/MainWindow.vala:100 +#: src/Console/AppConsole.vala:260 src/Gtk/MainWindow.vala:100 msgid "Could not find requested version" msgstr "Nemoguće je pronaći zatraženu inačicu" -#: src/Console/AppConsole.vala:286 +#: src/Console/AppConsole.vala:263 msgid "and use a version string listed in first column" msgstr "" -#: src/Console/AppConsole.vala:313 +#: src/Console/AppConsole.vala:290 msgid "Command not specified" msgstr "" -#: src/Console/AppConsole.vala:314 +#: src/Console/AppConsole.vala:291 #, fuzzy msgid "to list all commands" msgstr "Prikaži sve mogućnosti" -#: src/Console/AppConsole.vala:366 src/Console/AppConsole.vala:382 +#: src/Console/AppConsole.vala:343 src/Console/AppConsole.vala:359 #, fuzzy, c-format msgid "Kernel %s Available" msgstr "Dostupni paketi" -#: src/Console/AppConsole.vala:369 src/Console/AppConsole.vala:385 +#: src/Console/AppConsole.vala:346 src/Console/AppConsole.vala:362 #: src/Gtk/MainWindow.vala:335 msgid "Install" msgstr "Instaliraj" @@ -342,13 +334,12 @@ msgstr "Stanje" msgid "Refresh" msgstr "Osvježi" -#: src/Gtk/MainWindow.vala:326 src/Gtk/MainWindow.vala:537 -#: src/Gtk/MainWindow.vala:668 src/Utility/TeeJee.System.vala:145 +#: src/Gtk/MainWindow.vala:326 src/Utility/TeeJee.System.vala:42 msgid "Internet connection is not active" msgstr "Internet povezivanje nije aktivno" -#: src/Gtk/MainWindow.vala:326 src/Gtk/MainWindow.vala:537 -#: src/Gtk/MainWindow.vala:668 +#: src/Gtk/MainWindow.vala:326 src/Gtk/MainWindow.vala:531 +#: src/Gtk/MainWindow.vala:661 msgid "No Internet" msgstr "Nema pristupa internetu" @@ -376,38 +367,58 @@ msgstr "Ukloni" msgid "Select the kernels to remove" msgstr "Odaberi kernele za uklanjanje" +#: src/Gtk/MainWindow.vala:392 src/Gtk/MainWindow.vala:426 +#: src/Gtk/MainWindow.vala:693 +msgid "Close window to exit..." +msgstr "" + #: src/Gtk/MainWindow.vala:400 msgid "Purge" msgstr "" -#: src/Gtk/MainWindow.vala:439 +#: src/Gtk/MainWindow.vala:433 msgid "Changes" msgstr "Promjene" -#: src/Gtk/MainWindow.vala:450 src/Gtk/SettingsDialog.vala:52 +#: src/Gtk/MainWindow.vala:444 src/Gtk/SettingsDialog.vala:52 msgid "Settings" msgstr "Postavke" -#: src/Gtk/MainWindow.vala:471 +#: src/Gtk/MainWindow.vala:465 msgid "About" msgstr "O programu" -#: src/Gtk/MainWindow.vala:515 +#: src/Gtk/MainWindow.vala:509 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Alat za nadogradnju kernela Ubuntu temeljenih distribucija" -#: src/Gtk/MainWindow.vala:516 +#: src/Gtk/MainWindow.vala:510 msgid "Forked" msgstr "" -#: src/Gtk/MainWindow.vala:516 +#: src/Gtk/MainWindow.vala:510 msgid "Original" msgstr "" -#: src/Gtk/MainWindow.vala:556 +#: src/Gtk/MainWindow.vala:531 src/Gtk/MainWindow.vala:661 +#, fuzzy +msgid "Internet connection is not active." +msgstr "Internet povezivanje nije aktivno" + +#: src/Gtk/MainWindow.vala:550 msgid "Refreshing..." msgstr "Osvježavanje..." +#: src/Gtk/MainWindow.vala:644 +#, fuzzy +msgid "available" +msgstr "Dostupni paketi" + +#: src/Gtk/MainWindow.vala:656 +#, fuzzy +msgid "Already Installed" +msgstr "Instalirano" + #: src/Gtk/ProgressWindow.vala:144 src/Gtk/TerminalWindow.vala:149 #: src/Utility/Gtk/CustomMessageDialog.vala:153 msgid "Cancel" diff --git a/po/messages.pot b/po/messages.pot index 3527e1a5..23098fba 100644 --- a/po/messages.pot +++ b/po/messages.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline 1.0.9\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-11 22:06-0400\n" +"POT-Creation-Date: 2020-05-12 03:14-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -57,16 +57,16 @@ msgstr "" msgid "Continue ?" msgstr "" -#: src/Common/LinuxKernel.vala:744 src/Console/AppConsole.vala:332 +#: src/Common/LinuxKernel.vala:744 src/Console/AppConsole.vala:309 msgid "Latest update" msgstr "" -#: src/Common/LinuxKernel.vala:755 src/Console/AppConsole.vala:339 +#: src/Common/LinuxKernel.vala:755 src/Console/AppConsole.vala:316 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:763 src/Console/AppConsole.vala:344 -#: src/Console/AppConsole.vala:394 +#: src/Common/LinuxKernel.vala:763 src/Console/AppConsole.vala:321 +#: src/Console/AppConsole.vala:371 msgid "No updates found" msgstr "" @@ -92,6 +92,7 @@ msgid "Installed" msgstr "" #: src/Common/LinuxKernel.vala:1148 src/Gtk/MainWindow.vala:186 +#: src/Gtk/MainWindow.vala:634 src/Gtk/MainWindow.vala:648 msgid "Running" msgstr "" @@ -109,37 +110,37 @@ msgstr "" msgid "ERROR" msgstr "" -#: src/Common/LinuxKernel.vala:1222 src/Gtk/MainWindow.vala:663 +#: src/Common/LinuxKernel.vala:1222 src/Gtk/MainWindow.vala:656 msgid "This kernel is already installed." msgstr "" -#: src/Common/LinuxKernel.vala:1253 +#: src/Common/LinuxKernel.vala:1248 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" -#: src/Common/LinuxKernel.vala:1256 +#: src/Common/LinuxKernel.vala:1251 msgid "Installation completed with errors" msgstr "" -#: src/Common/LinuxKernel.vala:1272 +#: src/Common/LinuxKernel.vala:1267 msgid "" "Selected kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." msgstr "" -#: src/Common/LinuxKernel.vala:1277 +#: src/Common/LinuxKernel.vala:1272 msgid "Preparing to remove selected kernels" msgstr "" -#: src/Common/LinuxKernel.vala:1309 src/Common/LinuxKernel.vala:1362 +#: src/Common/LinuxKernel.vala:1303 src/Common/LinuxKernel.vala:1350 msgid "Un-install completed" msgstr "" -#: src/Common/LinuxKernel.vala:1312 src/Common/LinuxKernel.vala:1365 +#: src/Common/LinuxKernel.vala:1306 src/Common/LinuxKernel.vala:1353 msgid "Un-install completed with errors" msgstr "" -#: src/Common/LinuxKernel.vala:1325 +#: src/Common/LinuxKernel.vala:1319 msgid "" "This kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -247,57 +248,49 @@ msgid "" "One or more version strings (comma-separated) taken from the output of --list" msgstr "" -#: src/Console/AppConsole.vala:101 -msgid "Admin access is required for this action." -msgstr "" - -#: src/Console/AppConsole.vala:102 -msgid "Run the application as admin with pkexec or sudo." -msgstr "" - -#: src/Console/AppConsole.vala:178 src/Gtk/AppGtk.vala:143 +#: src/Console/AppConsole.vala:169 src/Gtk/AppGtk.vala:143 msgid "Unknown option" msgstr "" -#: src/Console/AppConsole.vala:180 src/Console/AppConsole.vala:286 -#: src/Console/AppConsole.vala:314 +#: src/Console/AppConsole.vala:171 src/Console/AppConsole.vala:263 +#: src/Console/AppConsole.vala:291 msgid "Run" msgstr "" -#: src/Console/AppConsole.vala:180 +#: src/Console/AppConsole.vala:171 msgid "to list all options" msgstr "" -#: src/Console/AppConsole.vala:259 src/Console/AppConsole.vala:294 +#: src/Console/AppConsole.vala:236 src/Console/AppConsole.vala:271 msgid "No kernels specified" msgstr "" -#: src/Console/AppConsole.vala:265 +#: src/Console/AppConsole.vala:242 msgid "Multiple kernels selected for installation. Select only one." msgstr "" -#: src/Console/AppConsole.vala:283 src/Gtk/MainWindow.vala:100 +#: src/Console/AppConsole.vala:260 src/Gtk/MainWindow.vala:100 msgid "Could not find requested version" msgstr "" -#: src/Console/AppConsole.vala:286 +#: src/Console/AppConsole.vala:263 msgid "and use a version string listed in first column" msgstr "" -#: src/Console/AppConsole.vala:313 +#: src/Console/AppConsole.vala:290 msgid "Command not specified" msgstr "" -#: src/Console/AppConsole.vala:314 +#: src/Console/AppConsole.vala:291 msgid "to list all commands" msgstr "" -#: src/Console/AppConsole.vala:366 src/Console/AppConsole.vala:382 +#: src/Console/AppConsole.vala:343 src/Console/AppConsole.vala:359 #, c-format msgid "Kernel %s Available" msgstr "" -#: src/Console/AppConsole.vala:369 src/Console/AppConsole.vala:385 +#: src/Console/AppConsole.vala:346 src/Console/AppConsole.vala:362 #: src/Gtk/MainWindow.vala:335 msgid "Install" msgstr "" @@ -326,13 +319,12 @@ msgstr "" msgid "Refresh" msgstr "" -#: src/Gtk/MainWindow.vala:326 src/Gtk/MainWindow.vala:537 -#: src/Gtk/MainWindow.vala:668 src/Utility/TeeJee.System.vala:145 +#: src/Gtk/MainWindow.vala:326 src/Utility/TeeJee.System.vala:42 msgid "Internet connection is not active" msgstr "" -#: src/Gtk/MainWindow.vala:326 src/Gtk/MainWindow.vala:537 -#: src/Gtk/MainWindow.vala:668 +#: src/Gtk/MainWindow.vala:326 src/Gtk/MainWindow.vala:531 +#: src/Gtk/MainWindow.vala:661 msgid "No Internet" msgstr "" @@ -360,38 +352,55 @@ msgstr "" msgid "Select the kernels to remove" msgstr "" +#: src/Gtk/MainWindow.vala:392 src/Gtk/MainWindow.vala:426 +#: src/Gtk/MainWindow.vala:693 +msgid "Close window to exit..." +msgstr "" + #: src/Gtk/MainWindow.vala:400 msgid "Purge" msgstr "" -#: src/Gtk/MainWindow.vala:439 +#: src/Gtk/MainWindow.vala:433 msgid "Changes" msgstr "" -#: src/Gtk/MainWindow.vala:450 src/Gtk/SettingsDialog.vala:52 +#: src/Gtk/MainWindow.vala:444 src/Gtk/SettingsDialog.vala:52 msgid "Settings" msgstr "" -#: src/Gtk/MainWindow.vala:471 +#: src/Gtk/MainWindow.vala:465 msgid "About" msgstr "" -#: src/Gtk/MainWindow.vala:515 +#: src/Gtk/MainWindow.vala:509 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "" -#: src/Gtk/MainWindow.vala:516 +#: src/Gtk/MainWindow.vala:510 msgid "Forked" msgstr "" -#: src/Gtk/MainWindow.vala:516 +#: src/Gtk/MainWindow.vala:510 msgid "Original" msgstr "" -#: src/Gtk/MainWindow.vala:556 +#: src/Gtk/MainWindow.vala:531 src/Gtk/MainWindow.vala:661 +msgid "Internet connection is not active." +msgstr "" + +#: src/Gtk/MainWindow.vala:550 msgid "Refreshing..." msgstr "" +#: src/Gtk/MainWindow.vala:644 +msgid "available" +msgstr "" + +#: src/Gtk/MainWindow.vala:656 +msgid "Already Installed" +msgstr "" + #: src/Gtk/ProgressWindow.vala:144 src/Gtk/TerminalWindow.vala:149 #: src/Utility/Gtk/CustomMessageDialog.vala:153 msgid "Cancel" diff --git a/po/nl.po b/po/nl.po index 07f491b7..36fd873e 100644 --- a/po/nl.po +++ b/po/nl.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-11 22:06-0400\n" +"POT-Creation-Date: 2020-05-12 03:13-0400\n" "PO-Revision-Date: 2017-04-30 11:50+0200\n" "Last-Translator: Heimen Stoffels \n" "Language-Team: \n" @@ -56,16 +56,16 @@ msgstr "" msgid "Continue ?" msgstr "" -#: src/Common/LinuxKernel.vala:744 src/Console/AppConsole.vala:332 +#: src/Common/LinuxKernel.vala:744 src/Console/AppConsole.vala:309 msgid "Latest update" msgstr "" -#: src/Common/LinuxKernel.vala:755 src/Console/AppConsole.vala:339 +#: src/Common/LinuxKernel.vala:755 src/Console/AppConsole.vala:316 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:763 src/Console/AppConsole.vala:344 -#: src/Console/AppConsole.vala:394 +#: src/Common/LinuxKernel.vala:763 src/Console/AppConsole.vala:321 +#: src/Console/AppConsole.vala:371 msgid "No updates found" msgstr "Geen updates gevonden" @@ -91,6 +91,7 @@ msgid "Installed" msgstr "Geïnstalleerd" #: src/Common/LinuxKernel.vala:1148 src/Gtk/MainWindow.vala:186 +#: src/Gtk/MainWindow.vala:634 src/Gtk/MainWindow.vala:648 msgid "Running" msgstr "Bezig met draaien" @@ -108,21 +109,21 @@ msgstr "Oké" msgid "ERROR" msgstr "FOUT" -#: src/Common/LinuxKernel.vala:1222 src/Gtk/MainWindow.vala:663 +#: src/Common/LinuxKernel.vala:1222 src/Gtk/MainWindow.vala:656 msgid "This kernel is already installed." msgstr "Deze kernel is al geïnstalleerd." -#: src/Common/LinuxKernel.vala:1253 +#: src/Common/LinuxKernel.vala:1248 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "De installatie is voltooid. Herstart de computer om de nieuwe kernel te " "gebruiken." -#: src/Common/LinuxKernel.vala:1256 +#: src/Common/LinuxKernel.vala:1251 msgid "Installation completed with errors" msgstr "De installatie is foutloos voltooid" -#: src/Common/LinuxKernel.vala:1272 +#: src/Common/LinuxKernel.vala:1267 msgid "" "Selected kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -131,19 +132,19 @@ msgstr "" "verwijderd.\n" " Installeer een andere kernel voordat u deze verwijdert." -#: src/Common/LinuxKernel.vala:1277 +#: src/Common/LinuxKernel.vala:1272 msgid "Preparing to remove selected kernels" msgstr "Bezig met voorbereiden van verwijderen van geselecteerde kernels" -#: src/Common/LinuxKernel.vala:1309 src/Common/LinuxKernel.vala:1362 +#: src/Common/LinuxKernel.vala:1303 src/Common/LinuxKernel.vala:1350 msgid "Un-install completed" msgstr "Deïnstalleren voltooid" -#: src/Common/LinuxKernel.vala:1312 src/Common/LinuxKernel.vala:1365 +#: src/Common/LinuxKernel.vala:1306 src/Common/LinuxKernel.vala:1353 msgid "Un-install completed with errors" msgstr "Deïnstalleren voltooid, maar met fouten" -#: src/Common/LinuxKernel.vala:1325 +#: src/Common/LinuxKernel.vala:1319 msgid "" "This kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -260,65 +261,54 @@ msgid "" "One or more version strings (comma-separated) taken from the output of --list" msgstr "" -#: src/Console/AppConsole.vala:101 -#, fuzzy -msgid "Admin access is required for this action." -msgstr "" -"U heeft administrator-rechten nodig om deze applicatie te kunnen draaien." - -#: src/Console/AppConsole.vala:102 -#, fuzzy -msgid "Run the application as admin with pkexec or sudo." -msgstr "Draai de applicatie als root of m.b.v. gksu/sudo." - -#: src/Console/AppConsole.vala:178 src/Gtk/AppGtk.vala:143 +#: src/Console/AppConsole.vala:169 src/Gtk/AppGtk.vala:143 msgid "Unknown option" msgstr "Onbekende optie" -#: src/Console/AppConsole.vala:180 src/Console/AppConsole.vala:286 -#: src/Console/AppConsole.vala:314 +#: src/Console/AppConsole.vala:171 src/Console/AppConsole.vala:263 +#: src/Console/AppConsole.vala:291 #, fuzzy msgid "Run" msgstr "Bezig met draaien" -#: src/Console/AppConsole.vala:180 +#: src/Console/AppConsole.vala:171 #, fuzzy msgid "to list all options" msgstr "Alle opties weergeven" -#: src/Console/AppConsole.vala:259 src/Console/AppConsole.vala:294 +#: src/Console/AppConsole.vala:236 src/Console/AppConsole.vala:271 msgid "No kernels specified" msgstr "" -#: src/Console/AppConsole.vala:265 +#: src/Console/AppConsole.vala:242 msgid "Multiple kernels selected for installation. Select only one." msgstr "" "Er zijn meerdere te installeren kernels geselecteerd. Selecteer er slechts " "één." -#: src/Console/AppConsole.vala:283 src/Gtk/MainWindow.vala:100 +#: src/Console/AppConsole.vala:260 src/Gtk/MainWindow.vala:100 msgid "Could not find requested version" msgstr "De vereiste versie kan niet worden gevonden" -#: src/Console/AppConsole.vala:286 +#: src/Console/AppConsole.vala:263 msgid "and use a version string listed in first column" msgstr "" -#: src/Console/AppConsole.vala:313 +#: src/Console/AppConsole.vala:290 msgid "Command not specified" msgstr "" -#: src/Console/AppConsole.vala:314 +#: src/Console/AppConsole.vala:291 #, fuzzy msgid "to list all commands" msgstr "Alle opties weergeven" -#: src/Console/AppConsole.vala:366 src/Console/AppConsole.vala:382 +#: src/Console/AppConsole.vala:343 src/Console/AppConsole.vala:359 #, fuzzy, c-format msgid "Kernel %s Available" msgstr "Beschikbare pakketten" -#: src/Console/AppConsole.vala:369 src/Console/AppConsole.vala:385 +#: src/Console/AppConsole.vala:346 src/Console/AppConsole.vala:362 #: src/Gtk/MainWindow.vala:335 msgid "Install" msgstr "Installeren" @@ -347,13 +337,12 @@ msgstr "Status" msgid "Refresh" msgstr "Verversen" -#: src/Gtk/MainWindow.vala:326 src/Gtk/MainWindow.vala:537 -#: src/Gtk/MainWindow.vala:668 src/Utility/TeeJee.System.vala:145 +#: src/Gtk/MainWindow.vala:326 src/Utility/TeeJee.System.vala:42 msgid "Internet connection is not active" msgstr "U bent niet verbonden met het internet" -#: src/Gtk/MainWindow.vala:326 src/Gtk/MainWindow.vala:537 -#: src/Gtk/MainWindow.vala:668 +#: src/Gtk/MainWindow.vala:326 src/Gtk/MainWindow.vala:531 +#: src/Gtk/MainWindow.vala:661 msgid "No Internet" msgstr "Geen internetverbinding" @@ -381,38 +370,58 @@ msgstr "Verwijderen" msgid "Select the kernels to remove" msgstr "Selecteer de te verwijderen kernels" +#: src/Gtk/MainWindow.vala:392 src/Gtk/MainWindow.vala:426 +#: src/Gtk/MainWindow.vala:693 +msgid "Close window to exit..." +msgstr "" + #: src/Gtk/MainWindow.vala:400 msgid "Purge" msgstr "" -#: src/Gtk/MainWindow.vala:439 +#: src/Gtk/MainWindow.vala:433 msgid "Changes" msgstr "Wijzigingen" -#: src/Gtk/MainWindow.vala:450 src/Gtk/SettingsDialog.vala:52 +#: src/Gtk/MainWindow.vala:444 src/Gtk/SettingsDialog.vala:52 msgid "Settings" msgstr "Instellingen" -#: src/Gtk/MainWindow.vala:471 +#: src/Gtk/MainWindow.vala:465 msgid "About" msgstr "Over" -#: src/Gtk/MainWindow.vala:515 +#: src/Gtk/MainWindow.vala:509 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Kernel-upgradehulpmiddel voor op Ubuntu-gebaseerde distributies" -#: src/Gtk/MainWindow.vala:516 +#: src/Gtk/MainWindow.vala:510 msgid "Forked" msgstr "" -#: src/Gtk/MainWindow.vala:516 +#: src/Gtk/MainWindow.vala:510 msgid "Original" msgstr "" -#: src/Gtk/MainWindow.vala:556 +#: src/Gtk/MainWindow.vala:531 src/Gtk/MainWindow.vala:661 +#, fuzzy +msgid "Internet connection is not active." +msgstr "U bent niet verbonden met het internet" + +#: src/Gtk/MainWindow.vala:550 msgid "Refreshing..." msgstr "Bezig met verversen..." +#: src/Gtk/MainWindow.vala:644 +#, fuzzy +msgid "available" +msgstr "Beschikbare pakketten" + +#: src/Gtk/MainWindow.vala:656 +#, fuzzy +msgid "Already Installed" +msgstr "Geïnstalleerd" + #: src/Gtk/ProgressWindow.vala:144 src/Gtk/TerminalWindow.vala:149 #: src/Utility/Gtk/CustomMessageDialog.vala:153 msgid "Cancel" diff --git a/po/pl.po b/po/pl.po index f30cad6b..30fa3f1a 100644 --- a/po/pl.po +++ b/po/pl.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-11 22:06-0400\n" +"POT-Creation-Date: 2020-05-12 03:13-0400\n" "PO-Revision-Date: 2017-08-12 15:26+0200\n" "Last-Translator: Waldemar Konik \n" "Language-Team: Polish\n" @@ -55,16 +55,16 @@ msgstr "" msgid "Continue ?" msgstr "" -#: src/Common/LinuxKernel.vala:744 src/Console/AppConsole.vala:332 +#: src/Common/LinuxKernel.vala:744 src/Console/AppConsole.vala:309 msgid "Latest update" msgstr "" -#: src/Common/LinuxKernel.vala:755 src/Console/AppConsole.vala:339 +#: src/Common/LinuxKernel.vala:755 src/Console/AppConsole.vala:316 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:763 src/Console/AppConsole.vala:344 -#: src/Console/AppConsole.vala:394 +#: src/Common/LinuxKernel.vala:763 src/Console/AppConsole.vala:321 +#: src/Console/AppConsole.vala:371 msgid "No updates found" msgstr "Nie znaleziono aktualizacji" @@ -90,6 +90,7 @@ msgid "Installed" msgstr "Zainstalowany" #: src/Common/LinuxKernel.vala:1148 src/Gtk/MainWindow.vala:186 +#: src/Gtk/MainWindow.vala:634 src/Gtk/MainWindow.vala:648 msgid "Running" msgstr "Uruchomiony" @@ -107,21 +108,21 @@ msgstr "OK" msgid "ERROR" msgstr "BŁĄD" -#: src/Common/LinuxKernel.vala:1222 src/Gtk/MainWindow.vala:663 +#: src/Common/LinuxKernel.vala:1222 src/Gtk/MainWindow.vala:656 msgid "This kernel is already installed." msgstr "To jądro jest już zainstalowane." -#: src/Common/LinuxKernel.vala:1253 +#: src/Common/LinuxKernel.vala:1248 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "Instalacja zakończona. Aby korzystać z nowego jądra, konieczne jest ponowne " "uruchomienie." -#: src/Common/LinuxKernel.vala:1256 +#: src/Common/LinuxKernel.vala:1251 msgid "Installation completed with errors" msgstr "Instalacja zakończona z błędami" -#: src/Common/LinuxKernel.vala:1272 +#: src/Common/LinuxKernel.vala:1267 msgid "" "Selected kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -129,19 +130,19 @@ msgstr "" "Wybrane jądro aktualnie działa i nie może zostać usunięte.\n" " Zainstaluj inne jądro przed usunięciem tego." -#: src/Common/LinuxKernel.vala:1277 +#: src/Common/LinuxKernel.vala:1272 msgid "Preparing to remove selected kernels" msgstr "Przygotowanie do usunięcia wybranych jąder" -#: src/Common/LinuxKernel.vala:1309 src/Common/LinuxKernel.vala:1362 +#: src/Common/LinuxKernel.vala:1303 src/Common/LinuxKernel.vala:1350 msgid "Un-install completed" msgstr "De-instalacja zakończona" -#: src/Common/LinuxKernel.vala:1312 src/Common/LinuxKernel.vala:1365 +#: src/Common/LinuxKernel.vala:1306 src/Common/LinuxKernel.vala:1353 msgid "Un-install completed with errors" msgstr "De-instalacja zakończona z błędami" -#: src/Common/LinuxKernel.vala:1325 +#: src/Common/LinuxKernel.vala:1319 msgid "" "This kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -258,62 +259,52 @@ msgid "" "One or more version strings (comma-separated) taken from the output of --list" msgstr "" -#: src/Console/AppConsole.vala:101 -#, fuzzy -msgid "Admin access is required for this action." -msgstr "Aby uruchomić tę aplikację niezbędne są prawa administratora." - -#: src/Console/AppConsole.vala:102 -#, fuzzy -msgid "Run the application as admin with pkexec or sudo." -msgstr "Uruchom aplikację jako root albo użyj gksu/sudo." - -#: src/Console/AppConsole.vala:178 src/Gtk/AppGtk.vala:143 +#: src/Console/AppConsole.vala:169 src/Gtk/AppGtk.vala:143 msgid "Unknown option" msgstr "Nieznana opcja" -#: src/Console/AppConsole.vala:180 src/Console/AppConsole.vala:286 -#: src/Console/AppConsole.vala:314 +#: src/Console/AppConsole.vala:171 src/Console/AppConsole.vala:263 +#: src/Console/AppConsole.vala:291 #, fuzzy msgid "Run" msgstr "Uruchomiony" -#: src/Console/AppConsole.vala:180 +#: src/Console/AppConsole.vala:171 #, fuzzy msgid "to list all options" msgstr "Pokaż wszystkie opcje" -#: src/Console/AppConsole.vala:259 src/Console/AppConsole.vala:294 +#: src/Console/AppConsole.vala:236 src/Console/AppConsole.vala:271 msgid "No kernels specified" msgstr "" -#: src/Console/AppConsole.vala:265 +#: src/Console/AppConsole.vala:242 msgid "Multiple kernels selected for installation. Select only one." msgstr "Wybrano kilka jąder do instalacji. Wybierz tylko jedno." -#: src/Console/AppConsole.vala:283 src/Gtk/MainWindow.vala:100 +#: src/Console/AppConsole.vala:260 src/Gtk/MainWindow.vala:100 msgid "Could not find requested version" msgstr "Nie można odnaleźć żądanej wersji" -#: src/Console/AppConsole.vala:286 +#: src/Console/AppConsole.vala:263 msgid "and use a version string listed in first column" msgstr "" -#: src/Console/AppConsole.vala:313 +#: src/Console/AppConsole.vala:290 msgid "Command not specified" msgstr "" -#: src/Console/AppConsole.vala:314 +#: src/Console/AppConsole.vala:291 #, fuzzy msgid "to list all commands" msgstr "Pokaż wszystkie opcje" -#: src/Console/AppConsole.vala:366 src/Console/AppConsole.vala:382 +#: src/Console/AppConsole.vala:343 src/Console/AppConsole.vala:359 #, fuzzy, c-format msgid "Kernel %s Available" msgstr "Dostępne pakiety" -#: src/Console/AppConsole.vala:369 src/Console/AppConsole.vala:385 +#: src/Console/AppConsole.vala:346 src/Console/AppConsole.vala:362 #: src/Gtk/MainWindow.vala:335 msgid "Install" msgstr "Zainstaluj" @@ -342,13 +333,12 @@ msgstr "Status" msgid "Refresh" msgstr "Odśwież" -#: src/Gtk/MainWindow.vala:326 src/Gtk/MainWindow.vala:537 -#: src/Gtk/MainWindow.vala:668 src/Utility/TeeJee.System.vala:145 +#: src/Gtk/MainWindow.vala:326 src/Utility/TeeJee.System.vala:42 msgid "Internet connection is not active" msgstr "Brak połączenia z internetem" -#: src/Gtk/MainWindow.vala:326 src/Gtk/MainWindow.vala:537 -#: src/Gtk/MainWindow.vala:668 +#: src/Gtk/MainWindow.vala:326 src/Gtk/MainWindow.vala:531 +#: src/Gtk/MainWindow.vala:661 msgid "No Internet" msgstr "Brak internetu" @@ -376,38 +366,58 @@ msgstr "Usuń" msgid "Select the kernels to remove" msgstr "Wybierz jądro do usunięcia" +#: src/Gtk/MainWindow.vala:392 src/Gtk/MainWindow.vala:426 +#: src/Gtk/MainWindow.vala:693 +msgid "Close window to exit..." +msgstr "" + #: src/Gtk/MainWindow.vala:400 msgid "Purge" msgstr "" -#: src/Gtk/MainWindow.vala:439 +#: src/Gtk/MainWindow.vala:433 msgid "Changes" msgstr "Zmiany" -#: src/Gtk/MainWindow.vala:450 src/Gtk/SettingsDialog.vala:52 +#: src/Gtk/MainWindow.vala:444 src/Gtk/SettingsDialog.vala:52 msgid "Settings" msgstr "Ustawienia" -#: src/Gtk/MainWindow.vala:471 +#: src/Gtk/MainWindow.vala:465 msgid "About" msgstr "O programie" -#: src/Gtk/MainWindow.vala:515 +#: src/Gtk/MainWindow.vala:509 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Narzędzie uaktualniania jądra dla dystrybucji z rodziny Ubuntu" -#: src/Gtk/MainWindow.vala:516 +#: src/Gtk/MainWindow.vala:510 msgid "Forked" msgstr "" -#: src/Gtk/MainWindow.vala:516 +#: src/Gtk/MainWindow.vala:510 msgid "Original" msgstr "" -#: src/Gtk/MainWindow.vala:556 +#: src/Gtk/MainWindow.vala:531 src/Gtk/MainWindow.vala:661 +#, fuzzy +msgid "Internet connection is not active." +msgstr "Brak połączenia z internetem" + +#: src/Gtk/MainWindow.vala:550 msgid "Refreshing..." msgstr "Odświeżam..." +#: src/Gtk/MainWindow.vala:644 +#, fuzzy +msgid "available" +msgstr "Dostępne pakiety" + +#: src/Gtk/MainWindow.vala:656 +#, fuzzy +msgid "Already Installed" +msgstr "Zainstalowany" + #: src/Gtk/ProgressWindow.vala:144 src/Gtk/TerminalWindow.vala:149 #: src/Utility/Gtk/CustomMessageDialog.vala:153 msgid "Cancel" diff --git a/po/ru.po b/po/ru.po index 82f783e5..cd373255 100644 --- a/po/ru.po +++ b/po/ru.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-11 22:06-0400\n" +"POT-Creation-Date: 2020-05-12 03:13-0400\n" "PO-Revision-Date: 2016-12-13 16:46+0300\n" "Last-Translator: Faust3000 \n" "Language-Team: Russian \n" @@ -56,16 +56,16 @@ msgstr "" msgid "Continue ?" msgstr "" -#: src/Common/LinuxKernel.vala:744 src/Console/AppConsole.vala:332 +#: src/Common/LinuxKernel.vala:744 src/Console/AppConsole.vala:309 msgid "Latest update" msgstr "" -#: src/Common/LinuxKernel.vala:755 src/Console/AppConsole.vala:339 +#: src/Common/LinuxKernel.vala:755 src/Console/AppConsole.vala:316 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:763 src/Console/AppConsole.vala:344 -#: src/Console/AppConsole.vala:394 +#: src/Common/LinuxKernel.vala:763 src/Console/AppConsole.vala:321 +#: src/Console/AppConsole.vala:371 msgid "No updates found" msgstr "Обновлений не найдено" @@ -93,6 +93,7 @@ msgid "Installed" msgstr "Установлено" #: src/Common/LinuxKernel.vala:1148 src/Gtk/MainWindow.vala:186 +#: src/Gtk/MainWindow.vala:634 src/Gtk/MainWindow.vala:648 msgid "Running" msgstr "Используется" @@ -110,21 +111,21 @@ msgstr "OK" msgid "ERROR" msgstr "ОШИБКА" -#: src/Common/LinuxKernel.vala:1222 src/Gtk/MainWindow.vala:663 +#: src/Common/LinuxKernel.vala:1222 src/Gtk/MainWindow.vala:656 msgid "This kernel is already installed." msgstr "Это ядро уже установлено." -#: src/Common/LinuxKernel.vala:1253 +#: src/Common/LinuxKernel.vala:1248 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "Установка завершена. Обязательно выполните перезагрузку, чтобы использовать " "новое ядро." -#: src/Common/LinuxKernel.vala:1256 +#: src/Common/LinuxKernel.vala:1251 msgid "Installation completed with errors" msgstr "Установка завершена с ошибками" -#: src/Common/LinuxKernel.vala:1272 +#: src/Common/LinuxKernel.vala:1267 #, fuzzy msgid "" "Selected kernel is currently running and cannot be removed.\n" @@ -133,19 +134,19 @@ msgstr "" "Это ядро в настоящий момент работает и не может быть удалено.\n" " Установите другое ядро, прежде чем удалять его." -#: src/Common/LinuxKernel.vala:1277 +#: src/Common/LinuxKernel.vala:1272 msgid "Preparing to remove selected kernels" msgstr "" -#: src/Common/LinuxKernel.vala:1309 src/Common/LinuxKernel.vala:1362 +#: src/Common/LinuxKernel.vala:1303 src/Common/LinuxKernel.vala:1350 msgid "Un-install completed" msgstr "Удаление завершено" -#: src/Common/LinuxKernel.vala:1312 src/Common/LinuxKernel.vala:1365 +#: src/Common/LinuxKernel.vala:1306 src/Common/LinuxKernel.vala:1353 msgid "Un-install completed with errors" msgstr "Удаление завершено с ошибками" -#: src/Common/LinuxKernel.vala:1325 +#: src/Common/LinuxKernel.vala:1319 msgid "" "This kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -262,62 +263,52 @@ msgid "" "One or more version strings (comma-separated) taken from the output of --list" msgstr "" -#: src/Console/AppConsole.vala:101 -#, fuzzy -msgid "Admin access is required for this action." -msgstr "Для запуска программы требуются права администратора." - -#: src/Console/AppConsole.vala:102 -#, fuzzy -msgid "Run the application as admin with pkexec or sudo." -msgstr "Запустите программу с правами Root или используйте gksu/sudo." - -#: src/Console/AppConsole.vala:178 src/Gtk/AppGtk.vala:143 +#: src/Console/AppConsole.vala:169 src/Gtk/AppGtk.vala:143 msgid "Unknown option" msgstr "Неизвестный параметр" -#: src/Console/AppConsole.vala:180 src/Console/AppConsole.vala:286 -#: src/Console/AppConsole.vala:314 +#: src/Console/AppConsole.vala:171 src/Console/AppConsole.vala:263 +#: src/Console/AppConsole.vala:291 #, fuzzy msgid "Run" msgstr "Используется" -#: src/Console/AppConsole.vala:180 +#: src/Console/AppConsole.vala:171 #, fuzzy msgid "to list all options" msgstr "Показать все параметры" -#: src/Console/AppConsole.vala:259 src/Console/AppConsole.vala:294 +#: src/Console/AppConsole.vala:236 src/Console/AppConsole.vala:271 msgid "No kernels specified" msgstr "" -#: src/Console/AppConsole.vala:265 +#: src/Console/AppConsole.vala:242 msgid "Multiple kernels selected for installation. Select only one." msgstr "" -#: src/Console/AppConsole.vala:283 src/Gtk/MainWindow.vala:100 +#: src/Console/AppConsole.vala:260 src/Gtk/MainWindow.vala:100 msgid "Could not find requested version" msgstr "Не удалось найти запрошенную версию" -#: src/Console/AppConsole.vala:286 +#: src/Console/AppConsole.vala:263 msgid "and use a version string listed in first column" msgstr "" -#: src/Console/AppConsole.vala:313 +#: src/Console/AppConsole.vala:290 msgid "Command not specified" msgstr "" -#: src/Console/AppConsole.vala:314 +#: src/Console/AppConsole.vala:291 #, fuzzy msgid "to list all commands" msgstr "Показать все параметры" -#: src/Console/AppConsole.vala:366 src/Console/AppConsole.vala:382 +#: src/Console/AppConsole.vala:343 src/Console/AppConsole.vala:359 #, fuzzy, c-format msgid "Kernel %s Available" msgstr "Установлено" -#: src/Console/AppConsole.vala:369 src/Console/AppConsole.vala:385 +#: src/Console/AppConsole.vala:346 src/Console/AppConsole.vala:362 #: src/Gtk/MainWindow.vala:335 msgid "Install" msgstr "Установить" @@ -346,13 +337,12 @@ msgstr "Состояние" msgid "Refresh" msgstr "Обновить" -#: src/Gtk/MainWindow.vala:326 src/Gtk/MainWindow.vala:537 -#: src/Gtk/MainWindow.vala:668 src/Utility/TeeJee.System.vala:145 +#: src/Gtk/MainWindow.vala:326 src/Utility/TeeJee.System.vala:42 msgid "Internet connection is not active" msgstr "Интернет соединение не активно" -#: src/Gtk/MainWindow.vala:326 src/Gtk/MainWindow.vala:537 -#: src/Gtk/MainWindow.vala:668 +#: src/Gtk/MainWindow.vala:326 src/Gtk/MainWindow.vala:531 +#: src/Gtk/MainWindow.vala:661 msgid "No Internet" msgstr "" @@ -380,38 +370,58 @@ msgstr "Удалить" msgid "Select the kernels to remove" msgstr "" +#: src/Gtk/MainWindow.vala:392 src/Gtk/MainWindow.vala:426 +#: src/Gtk/MainWindow.vala:693 +msgid "Close window to exit..." +msgstr "" + #: src/Gtk/MainWindow.vala:400 msgid "Purge" msgstr "Очистить" -#: src/Gtk/MainWindow.vala:439 +#: src/Gtk/MainWindow.vala:433 msgid "Changes" msgstr "Изменения" -#: src/Gtk/MainWindow.vala:450 src/Gtk/SettingsDialog.vala:52 +#: src/Gtk/MainWindow.vala:444 src/Gtk/SettingsDialog.vala:52 msgid "Settings" msgstr "Настройки" -#: src/Gtk/MainWindow.vala:471 +#: src/Gtk/MainWindow.vala:465 msgid "About" msgstr "О программе" -#: src/Gtk/MainWindow.vala:515 +#: src/Gtk/MainWindow.vala:509 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Программа обновления ядра для дистрибутивов на базе Ubuntu" -#: src/Gtk/MainWindow.vala:516 +#: src/Gtk/MainWindow.vala:510 msgid "Forked" msgstr "" -#: src/Gtk/MainWindow.vala:516 +#: src/Gtk/MainWindow.vala:510 msgid "Original" msgstr "" -#: src/Gtk/MainWindow.vala:556 +#: src/Gtk/MainWindow.vala:531 src/Gtk/MainWindow.vala:661 +#, fuzzy +msgid "Internet connection is not active." +msgstr "Интернет соединение не активно" + +#: src/Gtk/MainWindow.vala:550 msgid "Refreshing..." msgstr "Обновление..." +#: src/Gtk/MainWindow.vala:644 +#, fuzzy +msgid "available" +msgstr "Установлено" + +#: src/Gtk/MainWindow.vala:656 +#, fuzzy +msgid "Already Installed" +msgstr "Установлено" + #: src/Gtk/ProgressWindow.vala:144 src/Gtk/TerminalWindow.vala:149 #: src/Utility/Gtk/CustomMessageDialog.vala:153 msgid "Cancel" diff --git a/po/sv.po b/po/sv.po index 4e13fe47..bf02c005 100644 --- a/po/sv.po +++ b/po/sv.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-11 22:06-0400\n" +"POT-Creation-Date: 2020-05-12 03:13-0400\n" "PO-Revision-Date: 2018-01-13 16:56+0100\n" "Last-Translator: Åke Engelbrektson \n" "Language-Team: Svenska Språkfiler \n" @@ -57,16 +57,16 @@ msgstr "" msgid "Continue ?" msgstr "" -#: src/Common/LinuxKernel.vala:744 src/Console/AppConsole.vala:332 +#: src/Common/LinuxKernel.vala:744 src/Console/AppConsole.vala:309 msgid "Latest update" msgstr "" -#: src/Common/LinuxKernel.vala:755 src/Console/AppConsole.vala:339 +#: src/Common/LinuxKernel.vala:755 src/Console/AppConsole.vala:316 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:763 src/Console/AppConsole.vala:344 -#: src/Console/AppConsole.vala:394 +#: src/Common/LinuxKernel.vala:763 src/Console/AppConsole.vala:321 +#: src/Console/AppConsole.vala:371 msgid "No updates found" msgstr "Inga uppdateringar hittades" @@ -92,6 +92,7 @@ msgid "Installed" msgstr "Installerad" #: src/Common/LinuxKernel.vala:1148 src/Gtk/MainWindow.vala:186 +#: src/Gtk/MainWindow.vala:634 src/Gtk/MainWindow.vala:648 msgid "Running" msgstr "Körs" @@ -109,19 +110,19 @@ msgstr "OK" msgid "ERROR" msgstr "FEL" -#: src/Common/LinuxKernel.vala:1222 src/Gtk/MainWindow.vala:663 +#: src/Common/LinuxKernel.vala:1222 src/Gtk/MainWindow.vala:656 msgid "This kernel is already installed." msgstr "Denna kärna är redan installerad" -#: src/Common/LinuxKernel.vala:1253 +#: src/Common/LinuxKernel.vala:1248 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "Installation slutförd. Omstart krävs för att tillämpa den nya kärnan." -#: src/Common/LinuxKernel.vala:1256 +#: src/Common/LinuxKernel.vala:1251 msgid "Installation completed with errors" msgstr "Installation slutförd med fel" -#: src/Common/LinuxKernel.vala:1272 +#: src/Common/LinuxKernel.vala:1267 msgid "" "Selected kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -129,19 +130,19 @@ msgstr "" "Denna kärna används för tillfället och kan inte tas bort.\n" "Installera en annan kärna innan du tar bort den här." -#: src/Common/LinuxKernel.vala:1277 +#: src/Common/LinuxKernel.vala:1272 msgid "Preparing to remove selected kernels" msgstr "Förbereder borttagning av markerade kärnor" -#: src/Common/LinuxKernel.vala:1309 src/Common/LinuxKernel.vala:1362 +#: src/Common/LinuxKernel.vala:1303 src/Common/LinuxKernel.vala:1350 msgid "Un-install completed" msgstr "Avinstallation slutförd" -#: src/Common/LinuxKernel.vala:1312 src/Common/LinuxKernel.vala:1365 +#: src/Common/LinuxKernel.vala:1306 src/Common/LinuxKernel.vala:1353 msgid "Un-install completed with errors" msgstr "Avinstallation slutförd med fel" -#: src/Common/LinuxKernel.vala:1325 +#: src/Common/LinuxKernel.vala:1319 msgid "" "This kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -258,61 +259,52 @@ msgid "" "One or more version strings (comma-separated) taken from the output of --list" msgstr "" -#: src/Console/AppConsole.vala:101 -#, fuzzy -msgid "Admin access is required for this action." -msgstr "Root-åtkomst krävs för att köra detta program." - -#: src/Console/AppConsole.vala:102 -msgid "Run the application as admin with pkexec or sudo." -msgstr "Kör programmet som administratör, med pkexec eller sudo." - -#: src/Console/AppConsole.vala:178 src/Gtk/AppGtk.vala:143 +#: src/Console/AppConsole.vala:169 src/Gtk/AppGtk.vala:143 msgid "Unknown option" msgstr "Okänt alternativ" -#: src/Console/AppConsole.vala:180 src/Console/AppConsole.vala:286 -#: src/Console/AppConsole.vala:314 +#: src/Console/AppConsole.vala:171 src/Console/AppConsole.vala:263 +#: src/Console/AppConsole.vala:291 #, fuzzy msgid "Run" msgstr "Körs" -#: src/Console/AppConsole.vala:180 +#: src/Console/AppConsole.vala:171 #, fuzzy msgid "to list all options" msgstr "Visa alla alternativ" -#: src/Console/AppConsole.vala:259 src/Console/AppConsole.vala:294 +#: src/Console/AppConsole.vala:236 src/Console/AppConsole.vala:271 msgid "No kernels specified" msgstr "" -#: src/Console/AppConsole.vala:265 +#: src/Console/AppConsole.vala:242 msgid "Multiple kernels selected for installation. Select only one." msgstr "Flera kärnor valda för installation. Välj endast en." -#: src/Console/AppConsole.vala:283 src/Gtk/MainWindow.vala:100 +#: src/Console/AppConsole.vala:260 src/Gtk/MainWindow.vala:100 msgid "Could not find requested version" msgstr "Kunde inte hitta efterfrågad version" -#: src/Console/AppConsole.vala:286 +#: src/Console/AppConsole.vala:263 msgid "and use a version string listed in first column" msgstr "" -#: src/Console/AppConsole.vala:313 +#: src/Console/AppConsole.vala:290 msgid "Command not specified" msgstr "" -#: src/Console/AppConsole.vala:314 +#: src/Console/AppConsole.vala:291 #, fuzzy msgid "to list all commands" msgstr "Visa alla alternativ" -#: src/Console/AppConsole.vala:366 src/Console/AppConsole.vala:382 +#: src/Console/AppConsole.vala:343 src/Console/AppConsole.vala:359 #, fuzzy, c-format msgid "Kernel %s Available" msgstr "Tillgängliga paket" -#: src/Console/AppConsole.vala:369 src/Console/AppConsole.vala:385 +#: src/Console/AppConsole.vala:346 src/Console/AppConsole.vala:362 #: src/Gtk/MainWindow.vala:335 msgid "Install" msgstr "Installera" @@ -341,13 +333,12 @@ msgstr "Status" msgid "Refresh" msgstr "Uppdatera" -#: src/Gtk/MainWindow.vala:326 src/Gtk/MainWindow.vala:537 -#: src/Gtk/MainWindow.vala:668 src/Utility/TeeJee.System.vala:145 +#: src/Gtk/MainWindow.vala:326 src/Utility/TeeJee.System.vala:42 msgid "Internet connection is not active" msgstr "Internetuppkopplingen är inte aktiv" -#: src/Gtk/MainWindow.vala:326 src/Gtk/MainWindow.vala:537 -#: src/Gtk/MainWindow.vala:668 +#: src/Gtk/MainWindow.vala:326 src/Gtk/MainWindow.vala:531 +#: src/Gtk/MainWindow.vala:661 msgid "No Internet" msgstr "Inget internet" @@ -375,38 +366,58 @@ msgstr "Ta bort" msgid "Select the kernels to remove" msgstr "Välj kärnor för borttagning" +#: src/Gtk/MainWindow.vala:392 src/Gtk/MainWindow.vala:426 +#: src/Gtk/MainWindow.vala:693 +msgid "Close window to exit..." +msgstr "" + #: src/Gtk/MainWindow.vala:400 msgid "Purge" msgstr "Rensa" -#: src/Gtk/MainWindow.vala:439 +#: src/Gtk/MainWindow.vala:433 msgid "Changes" msgstr "Ändringar" -#: src/Gtk/MainWindow.vala:450 src/Gtk/SettingsDialog.vala:52 +#: src/Gtk/MainWindow.vala:444 src/Gtk/SettingsDialog.vala:52 msgid "Settings" msgstr "Inställningar" -#: src/Gtk/MainWindow.vala:471 +#: src/Gtk/MainWindow.vala:465 msgid "About" msgstr "Om" -#: src/Gtk/MainWindow.vala:515 +#: src/Gtk/MainWindow.vala:509 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Kärnuppgraderingsverktyg för Ubuntu-baserade distributioner" -#: src/Gtk/MainWindow.vala:516 +#: src/Gtk/MainWindow.vala:510 msgid "Forked" msgstr "" -#: src/Gtk/MainWindow.vala:516 +#: src/Gtk/MainWindow.vala:510 msgid "Original" msgstr "" -#: src/Gtk/MainWindow.vala:556 +#: src/Gtk/MainWindow.vala:531 src/Gtk/MainWindow.vala:661 +#, fuzzy +msgid "Internet connection is not active." +msgstr "Internetuppkopplingen är inte aktiv" + +#: src/Gtk/MainWindow.vala:550 msgid "Refreshing..." msgstr "Uppdaterar ..." +#: src/Gtk/MainWindow.vala:644 +#, fuzzy +msgid "available" +msgstr "Tillgängliga paket" + +#: src/Gtk/MainWindow.vala:656 +#, fuzzy +msgid "Already Installed" +msgstr "Installerad" + #: src/Gtk/ProgressWindow.vala:144 src/Gtk/TerminalWindow.vala:149 #: src/Utility/Gtk/CustomMessageDialog.vala:153 msgid "Cancel" diff --git a/po/tr.po b/po/tr.po index 612bb349..e4916cc7 100644 --- a/po/tr.po +++ b/po/tr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-11 22:06-0400\n" +"POT-Creation-Date: 2020-05-12 03:13-0400\n" "PO-Revision-Date: 2020-03-10 15:59+0300\n" "Last-Translator: Gökhan GÖKKAYA \n" "Language-Team: Turkish\n" @@ -53,16 +53,16 @@ msgstr "Aşağıdaki çekirdekler silinecek:" msgid "Continue ?" msgstr "Devam et ?" -#: src/Common/LinuxKernel.vala:744 src/Console/AppConsole.vala:332 +#: src/Common/LinuxKernel.vala:744 src/Console/AppConsole.vala:309 msgid "Latest update" msgstr "Son güncelleme" -#: src/Common/LinuxKernel.vala:755 src/Console/AppConsole.vala:339 +#: src/Common/LinuxKernel.vala:755 src/Console/AppConsole.vala:316 msgid "Latest point update" msgstr "Son güncelleme noktası" -#: src/Common/LinuxKernel.vala:763 src/Console/AppConsole.vala:344 -#: src/Console/AppConsole.vala:394 +#: src/Common/LinuxKernel.vala:763 src/Console/AppConsole.vala:321 +#: src/Console/AppConsole.vala:371 msgid "No updates found" msgstr "Güncelleme bulunamadı" @@ -88,6 +88,7 @@ msgid "Installed" msgstr "Kurulu" #: src/Common/LinuxKernel.vala:1148 src/Gtk/MainWindow.vala:186 +#: src/Gtk/MainWindow.vala:634 src/Gtk/MainWindow.vala:648 msgid "Running" msgstr "Çalışıyor" @@ -105,20 +106,20 @@ msgstr "TAMAM" msgid "ERROR" msgstr "HATA" -#: src/Common/LinuxKernel.vala:1222 src/Gtk/MainWindow.vala:663 +#: src/Common/LinuxKernel.vala:1222 src/Gtk/MainWindow.vala:656 msgid "This kernel is already installed." msgstr "Bu çekirdek zaten kurulu." -#: src/Common/LinuxKernel.vala:1253 +#: src/Common/LinuxKernel.vala:1248 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "Kurulum tamamlandı. Yeni çekirdeği kullanmak için yeniden başlatma gerekiyor." -#: src/Common/LinuxKernel.vala:1256 +#: src/Common/LinuxKernel.vala:1251 msgid "Installation completed with errors" msgstr "Kurulum hatalarla tamamlandı" -#: src/Common/LinuxKernel.vala:1272 +#: src/Common/LinuxKernel.vala:1267 msgid "" "Selected kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -126,19 +127,19 @@ msgstr "" "Seçilen çekirdek şu anda çalışıyor ve kaldırılamıyor.\n" " Bunu kaldırmadan önce başka bir çekirdek yükleyin." -#: src/Common/LinuxKernel.vala:1277 +#: src/Common/LinuxKernel.vala:1272 msgid "Preparing to remove selected kernels" msgstr "Seçilen çekirdekleri kaldırmak için hazırlanıyor" -#: src/Common/LinuxKernel.vala:1309 src/Common/LinuxKernel.vala:1362 +#: src/Common/LinuxKernel.vala:1303 src/Common/LinuxKernel.vala:1350 msgid "Un-install completed" msgstr "Kaldırma tamamlandı" -#: src/Common/LinuxKernel.vala:1312 src/Common/LinuxKernel.vala:1365 +#: src/Common/LinuxKernel.vala:1306 src/Common/LinuxKernel.vala:1353 msgid "Un-install completed with errors" msgstr "Kaldırma hatalarla tamamlandı" -#: src/Common/LinuxKernel.vala:1325 +#: src/Common/LinuxKernel.vala:1319 msgid "" "This kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -251,61 +252,52 @@ msgid "" "One or more version strings (comma-separated) taken from the output of --list" msgstr "" -#: src/Console/AppConsole.vala:101 -#, fuzzy -msgid "Admin access is required for this action." -msgstr "Bu uygulamayı çalıştırmak için yönetici izni gerekiyor." - -#: src/Console/AppConsole.vala:102 -msgid "Run the application as admin with pkexec or sudo." -msgstr "Bu uygulamayı pkexec yada sudo ile yönetici haklarıyla çalıştırın." - -#: src/Console/AppConsole.vala:178 src/Gtk/AppGtk.vala:143 +#: src/Console/AppConsole.vala:169 src/Gtk/AppGtk.vala:143 msgid "Unknown option" msgstr "Bilinmeyen seçenek" -#: src/Console/AppConsole.vala:180 src/Console/AppConsole.vala:286 -#: src/Console/AppConsole.vala:314 +#: src/Console/AppConsole.vala:171 src/Console/AppConsole.vala:263 +#: src/Console/AppConsole.vala:291 #, fuzzy msgid "Run" msgstr "Çalıştır '" -#: src/Console/AppConsole.vala:180 +#: src/Console/AppConsole.vala:171 #, fuzzy msgid "to list all options" msgstr "Tüm seçenekleri göster" -#: src/Console/AppConsole.vala:259 src/Console/AppConsole.vala:294 +#: src/Console/AppConsole.vala:236 src/Console/AppConsole.vala:271 msgid "No kernels specified" msgstr "Belirtilen çekirdek yok" -#: src/Console/AppConsole.vala:265 +#: src/Console/AppConsole.vala:242 msgid "Multiple kernels selected for installation. Select only one." msgstr "Kurulum için çoklu çekirdek seçildi. Sadece bir tane seçiniz." -#: src/Console/AppConsole.vala:283 src/Gtk/MainWindow.vala:100 +#: src/Console/AppConsole.vala:260 src/Gtk/MainWindow.vala:100 msgid "Could not find requested version" msgstr "İstenen sürüm bulunamadı" -#: src/Console/AppConsole.vala:286 +#: src/Console/AppConsole.vala:263 msgid "and use a version string listed in first column" msgstr "" -#: src/Console/AppConsole.vala:313 +#: src/Console/AppConsole.vala:290 msgid "Command not specified" msgstr "Komut belirtilmedi" -#: src/Console/AppConsole.vala:314 +#: src/Console/AppConsole.vala:291 #, fuzzy msgid "to list all commands" msgstr "Tüm seçenekleri göster" -#: src/Console/AppConsole.vala:366 src/Console/AppConsole.vala:382 +#: src/Console/AppConsole.vala:343 src/Console/AppConsole.vala:359 #, fuzzy, c-format msgid "Kernel %s Available" msgstr "Mevcut Paketler" -#: src/Console/AppConsole.vala:369 src/Console/AppConsole.vala:385 +#: src/Console/AppConsole.vala:346 src/Console/AppConsole.vala:362 #: src/Gtk/MainWindow.vala:335 msgid "Install" msgstr "Kur" @@ -334,13 +326,12 @@ msgstr "Durum" msgid "Refresh" msgstr "Yenile" -#: src/Gtk/MainWindow.vala:326 src/Gtk/MainWindow.vala:537 -#: src/Gtk/MainWindow.vala:668 src/Utility/TeeJee.System.vala:145 +#: src/Gtk/MainWindow.vala:326 src/Utility/TeeJee.System.vala:42 msgid "Internet connection is not active" msgstr "İnternet bağlantısı aktif değil" -#: src/Gtk/MainWindow.vala:326 src/Gtk/MainWindow.vala:537 -#: src/Gtk/MainWindow.vala:668 +#: src/Gtk/MainWindow.vala:326 src/Gtk/MainWindow.vala:531 +#: src/Gtk/MainWindow.vala:661 msgid "No Internet" msgstr "İnternet Yok" @@ -368,38 +359,58 @@ msgstr "Sil" msgid "Select the kernels to remove" msgstr "Kaldırma için çekirdek seçin" +#: src/Gtk/MainWindow.vala:392 src/Gtk/MainWindow.vala:426 +#: src/Gtk/MainWindow.vala:693 +msgid "Close window to exit..." +msgstr "" + #: src/Gtk/MainWindow.vala:400 msgid "Purge" msgstr "Temizle" -#: src/Gtk/MainWindow.vala:439 +#: src/Gtk/MainWindow.vala:433 msgid "Changes" msgstr "Değişiklikler" -#: src/Gtk/MainWindow.vala:450 src/Gtk/SettingsDialog.vala:52 +#: src/Gtk/MainWindow.vala:444 src/Gtk/SettingsDialog.vala:52 msgid "Settings" msgstr "Ayarlar" -#: src/Gtk/MainWindow.vala:471 +#: src/Gtk/MainWindow.vala:465 msgid "About" msgstr "Hakkında" -#: src/Gtk/MainWindow.vala:515 +#: src/Gtk/MainWindow.vala:509 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Ubuntu tabanlı dağıtımlar için çekirdek güncelleme aracı" -#: src/Gtk/MainWindow.vala:516 +#: src/Gtk/MainWindow.vala:510 msgid "Forked" msgstr "" -#: src/Gtk/MainWindow.vala:516 +#: src/Gtk/MainWindow.vala:510 msgid "Original" msgstr "" -#: src/Gtk/MainWindow.vala:556 +#: src/Gtk/MainWindow.vala:531 src/Gtk/MainWindow.vala:661 +#, fuzzy +msgid "Internet connection is not active." +msgstr "İnternet bağlantısı aktif değil" + +#: src/Gtk/MainWindow.vala:550 msgid "Refreshing..." msgstr "Yenileniyor..." +#: src/Gtk/MainWindow.vala:644 +#, fuzzy +msgid "available" +msgstr "Mevcut Paketler" + +#: src/Gtk/MainWindow.vala:656 +#, fuzzy +msgid "Already Installed" +msgstr "Kurulu" + #: src/Gtk/ProgressWindow.vala:144 src/Gtk/TerminalWindow.vala:149 #: src/Utility/Gtk/CustomMessageDialog.vala:153 msgid "Cancel" diff --git a/po/uk.po b/po/uk.po index f2b88d42..e5b0b924 100644 --- a/po/uk.po +++ b/po/uk.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-11 22:06-0400\n" +"POT-Creation-Date: 2020-05-12 03:13-0400\n" "PO-Revision-Date: 2019-07-25 11:00+0300\n" "Last-Translator: Serhii Golovko \n" "Language-Team: Ukranian \n" @@ -53,16 +53,16 @@ msgstr "Наступні ядра будуть видалені:" msgid "Continue ?" msgstr "Продовжувати ?" -#: src/Common/LinuxKernel.vala:744 src/Console/AppConsole.vala:332 +#: src/Common/LinuxKernel.vala:744 src/Console/AppConsole.vala:309 msgid "Latest update" msgstr "Останнє оновлення" -#: src/Common/LinuxKernel.vala:755 src/Console/AppConsole.vala:339 +#: src/Common/LinuxKernel.vala:755 src/Console/AppConsole.vala:316 msgid "Latest point update" msgstr "Остання точка оновлення" -#: src/Common/LinuxKernel.vala:763 src/Console/AppConsole.vala:344 -#: src/Console/AppConsole.vala:394 +#: src/Common/LinuxKernel.vala:763 src/Console/AppConsole.vala:321 +#: src/Console/AppConsole.vala:371 msgid "No updates found" msgstr "Оновлень не знайдено" @@ -88,6 +88,7 @@ msgid "Installed" msgstr "Встановлено" #: src/Common/LinuxKernel.vala:1148 src/Gtk/MainWindow.vala:186 +#: src/Gtk/MainWindow.vala:634 src/Gtk/MainWindow.vala:648 msgid "Running" msgstr "Використовується" @@ -105,20 +106,20 @@ msgstr "Добре" msgid "ERROR" msgstr "ПОМИЛКА" -#: src/Common/LinuxKernel.vala:1222 src/Gtk/MainWindow.vala:663 +#: src/Common/LinuxKernel.vala:1222 src/Gtk/MainWindow.vala:656 msgid "This kernel is already installed." msgstr "Це ядро вже встановлено." -#: src/Common/LinuxKernel.vala:1253 +#: src/Common/LinuxKernel.vala:1248 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "Установка завершена. Для використання нового ядра потрібна перезавантаження." -#: src/Common/LinuxKernel.vala:1256 +#: src/Common/LinuxKernel.vala:1251 msgid "Installation completed with errors" msgstr "Установка завершена з помилками" -#: src/Common/LinuxKernel.vala:1272 +#: src/Common/LinuxKernel.vala:1267 msgid "" "Selected kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -126,19 +127,19 @@ msgstr "" "Це ядро зараз працює і не може бути видалено. \n" "Встановіть інше ядро, перш ніж видаляти його." -#: src/Common/LinuxKernel.vala:1277 +#: src/Common/LinuxKernel.vala:1272 msgid "Preparing to remove selected kernels" msgstr "Підготовка до видалення вибраних ядер" -#: src/Common/LinuxKernel.vala:1309 src/Common/LinuxKernel.vala:1362 +#: src/Common/LinuxKernel.vala:1303 src/Common/LinuxKernel.vala:1350 msgid "Un-install completed" msgstr "Видалення завершено" -#: src/Common/LinuxKernel.vala:1312 src/Common/LinuxKernel.vala:1365 +#: src/Common/LinuxKernel.vala:1306 src/Common/LinuxKernel.vala:1353 msgid "Un-install completed with errors" msgstr "Видалення завершено з помилками" -#: src/Common/LinuxKernel.vala:1325 +#: src/Common/LinuxKernel.vala:1319 msgid "" "This kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -253,61 +254,52 @@ msgid "" msgstr "" "Одна або кілька рядків версії (розділені комами), взяті з виводу --list" -#: src/Console/AppConsole.vala:101 -#, fuzzy -msgid "Admin access is required for this action." -msgstr "Для запуску програми потрібно мати права адміністратора." - -#: src/Console/AppConsole.vala:102 -msgid "Run the application as admin with pkexec or sudo." -msgstr "Запустіть додаток як адміністратор за допомогою pkexec або sudo." - -#: src/Console/AppConsole.vala:178 src/Gtk/AppGtk.vala:143 +#: src/Console/AppConsole.vala:169 src/Gtk/AppGtk.vala:143 msgid "Unknown option" msgstr "Невідомий параметр" -#: src/Console/AppConsole.vala:180 src/Console/AppConsole.vala:286 -#: src/Console/AppConsole.vala:314 +#: src/Console/AppConsole.vala:171 src/Console/AppConsole.vala:263 +#: src/Console/AppConsole.vala:291 #, fuzzy msgid "Run" msgstr "Запуск" -#: src/Console/AppConsole.vala:180 +#: src/Console/AppConsole.vala:171 #, fuzzy msgid "to list all options" msgstr "Показати усі параметри" -#: src/Console/AppConsole.vala:259 src/Console/AppConsole.vala:294 +#: src/Console/AppConsole.vala:236 src/Console/AppConsole.vala:271 msgid "No kernels specified" msgstr "Ядра не вказані" -#: src/Console/AppConsole.vala:265 +#: src/Console/AppConsole.vala:242 msgid "Multiple kernels selected for installation. Select only one." msgstr "Для встановлення вибрано кілька ядер. Виберіть лише одну." -#: src/Console/AppConsole.vala:283 src/Gtk/MainWindow.vala:100 +#: src/Console/AppConsole.vala:260 src/Gtk/MainWindow.vala:100 msgid "Could not find requested version" msgstr "Не вдалося знайти запитувану версію" -#: src/Console/AppConsole.vala:286 +#: src/Console/AppConsole.vala:263 msgid "and use a version string listed in first column" msgstr "і використовувати рядок версій, вказаний у першому стовпці" -#: src/Console/AppConsole.vala:313 +#: src/Console/AppConsole.vala:290 msgid "Command not specified" msgstr "Команда не вказана" -#: src/Console/AppConsole.vala:314 +#: src/Console/AppConsole.vala:291 #, fuzzy msgid "to list all commands" msgstr "Показати усі параметри" -#: src/Console/AppConsole.vala:366 src/Console/AppConsole.vala:382 +#: src/Console/AppConsole.vala:343 src/Console/AppConsole.vala:359 #, fuzzy, c-format msgid "Kernel %s Available" msgstr "Доступні пакети" -#: src/Console/AppConsole.vala:369 src/Console/AppConsole.vala:385 +#: src/Console/AppConsole.vala:346 src/Console/AppConsole.vala:362 #: src/Gtk/MainWindow.vala:335 msgid "Install" msgstr "Встановити" @@ -336,13 +328,12 @@ msgstr "Стан" msgid "Refresh" msgstr "Оновити" -#: src/Gtk/MainWindow.vala:326 src/Gtk/MainWindow.vala:537 -#: src/Gtk/MainWindow.vala:668 src/Utility/TeeJee.System.vala:145 +#: src/Gtk/MainWindow.vala:326 src/Utility/TeeJee.System.vala:42 msgid "Internet connection is not active" msgstr "Інтернет з'єднання не активно" -#: src/Gtk/MainWindow.vala:326 src/Gtk/MainWindow.vala:537 -#: src/Gtk/MainWindow.vala:668 +#: src/Gtk/MainWindow.vala:326 src/Gtk/MainWindow.vala:531 +#: src/Gtk/MainWindow.vala:661 msgid "No Internet" msgstr "Інтернету немає" @@ -370,40 +361,60 @@ msgstr "Видалити" msgid "Select the kernels to remove" msgstr "Виберіть ядра для видалення" +#: src/Gtk/MainWindow.vala:392 src/Gtk/MainWindow.vala:426 +#: src/Gtk/MainWindow.vala:693 +msgid "Close window to exit..." +msgstr "" + #: src/Gtk/MainWindow.vala:400 msgid "Purge" msgstr "Чистити" -#: src/Gtk/MainWindow.vala:439 +#: src/Gtk/MainWindow.vala:433 msgid "Changes" msgstr "Зміни" -#: src/Gtk/MainWindow.vala:450 src/Gtk/SettingsDialog.vala:52 +#: src/Gtk/MainWindow.vala:444 src/Gtk/SettingsDialog.vala:52 msgid "Settings" msgstr "Налаштування" -#: src/Gtk/MainWindow.vala:471 +#: src/Gtk/MainWindow.vala:465 msgid "About" msgstr "Про программу" -#: src/Gtk/MainWindow.vala:515 +#: src/Gtk/MainWindow.vala:509 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Програма оновлення ядра для дистрибутивів на базі Ubuntu" -#: src/Gtk/MainWindow.vala:516 +#: src/Gtk/MainWindow.vala:510 #, fuzzy msgid "Forked" msgstr "Роздвоєний" -#: src/Gtk/MainWindow.vala:516 +#: src/Gtk/MainWindow.vala:510 #, fuzzy msgid "Original" msgstr "Оригінальний" -#: src/Gtk/MainWindow.vala:556 +#: src/Gtk/MainWindow.vala:531 src/Gtk/MainWindow.vala:661 +#, fuzzy +msgid "Internet connection is not active." +msgstr "Інтернет з'єднання не активно" + +#: src/Gtk/MainWindow.vala:550 msgid "Refreshing..." msgstr "Оновлення..." +#: src/Gtk/MainWindow.vala:644 +#, fuzzy +msgid "available" +msgstr "Доступні пакети" + +#: src/Gtk/MainWindow.vala:656 +#, fuzzy +msgid "Already Installed" +msgstr "Встановлено" + #: src/Gtk/ProgressWindow.vala:144 src/Gtk/TerminalWindow.vala:149 #: src/Utility/Gtk/CustomMessageDialog.vala:153 msgid "Cancel" diff --git a/src/Common/LinuxKernel.vala b/src/Common/LinuxKernel.vala index a0991b4d..2c98c24d 100644 --- a/src/Common/LinuxKernel.vala +++ b/src/Common/LinuxKernel.vala @@ -727,7 +727,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { foreach(var kern in list){ - kern.remove(true); + kern.remove(); } } @@ -779,7 +779,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { if (ch != 'y'){ return; } } - kern.install(true); + kern.install(); } // helpers @@ -1215,20 +1215,20 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { } // dep: dpkg - public bool install(bool write_to_terminal){ + public bool install(){ // check if installed if (is_installed){ log_error(_("This kernel is already installed.")); return false; } - + bool ok = download_packages(); int status = -1; - + if (ok){ - log_msg("Preparing to install '%s'".printf(version_main)); // kname + log_msg("Preparing to install '%s'".printf(version_main)); var flist = ""; @@ -1236,17 +1236,12 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { flist += " '%s'".printf(file_name); } - var cmd = "cd %s/%s && dpkg -i %s && rm %s".printf(cache_subdir, NATIVE_ARCH, flist, flist); - - if (write_to_terminal){ - log_msg(""); - status = Posix.system(cmd); // execute - log_msg(""); - } - else{ - status = exec_script_sync(cmd); // execute - } + string d = cache_subdir+"/"+NATIVE_ARCH; + string cmd = "pkexec env -C "+d+" DISPLAY=${DISPLAY} XAUTHORITY=${XAUTHORITY} dpkg -i "+flist + + " && cd "+d + + " && rm "+flist; + status = Posix.system(cmd); ok = (status == 0); if (ok){ @@ -1275,8 +1270,8 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { } log_msg(_("Preparing to remove selected kernels")); - - var cmd = "dpkg -r "; + + string cmd = "pkexec env DISPLAY=${DISPLAY} XAUTHORITY=${XAUTHORITY} dpkg -r"; foreach(var kern in selected_kernels){ @@ -1285,14 +1280,14 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { if (!pkg_name.has_prefix("linux-tools") && !pkg_name.has_prefix("linux-libc")){ - cmd += "'%s' ".printf(pkg_name); + cmd += " '%s'".printf(pkg_name); } } } else if (kern.deb_list.size > 0){ // get package names from deb file names foreach(string file_name in kern.deb_list.keys){ - cmd += "'%s' ".printf(file_name.split("_")[0]); + cmd += " '%s'".printf(file_name.split("_")[0]); } } else{ @@ -1301,8 +1296,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { } } - status = Posix.system(cmd); // execute - + status = Posix.system(cmd); ok = (status == 0); if (ok){ @@ -1316,7 +1310,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { } // dep: dpkg - public bool remove(bool write_to_terminal){ + public bool remove(){ bool ok = true; int status = -1; @@ -1325,24 +1319,23 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { log_error(_("This kernel is currently running and cannot be removed.\n Install another kernel before removing this one.")); return false; } - - log_msg("Preparing to remove '%s'".printf(version_main)); // kname - - var cmd = "dpkg -r "; + + log_msg("Preparing to remove '%s'".printf(version_main)); + + string cmd = "pkexec env DISPLAY=${DISPLAY} XAUTHORITY=${XAUTHORITY} dpkg -r"; if (apt_pkg_list.size > 0){ foreach(var pkg_name in apt_pkg_list.values){ if (!pkg_name.has_prefix("linux-tools") && !pkg_name.has_prefix("linux-libc")){ - - cmd += "'%s' ".printf(pkg_name); + cmd += " '%s'".printf(pkg_name); } } } else if (deb_list.size > 0){ // get package names from deb file names foreach(string file_name in deb_list.keys){ - cmd += "'%s' ".printf(file_name.split("_")[0]); + cmd += " '%s'".printf(file_name.split("_")[0]); } } else{ @@ -1350,12 +1343,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { return false; } - if (write_to_terminal){ - status = Posix.system(cmd); // execute - } - else{ - status = exec_script_sync(cmd); // execute - } + status = Posix.system(cmd); ok = (status == 0); if (ok){ diff --git a/src/Common/Main.vala b/src/Common/Main.vala index 16d8eaf1..94bce357 100644 --- a/src/Common/Main.vala +++ b/src/Common/Main.vala @@ -130,13 +130,13 @@ public class Main : GLib.Object{ public void init_paths(string custom_user_login = ""){ // user info - user_login = get_username(); + user_login = GLib.Environment.get_user_name(); if (custom_user_login.length > 0){ user_login = custom_user_login; } - - user_home = get_user_home(user_login); + + user_home = GLib.Environment.get_home_dir(); APP_CONF_DIR = user_home + "/.config/" + BRANDING_SHORTNAME; APP_CONFIG_FILE = APP_CONF_DIR + "/config.json"; diff --git a/src/Console/AppConsole.vala b/src/Console/AppConsole.vala index d9d78008..3906b51a 100644 --- a/src/Console/AppConsole.vala +++ b/src/Console/AppConsole.vala @@ -95,15 +95,6 @@ public class AppConsole : GLib.Object { return msg; } - private static void check_if_admin(){ - - if (!user_is_admin()) { - log_error(_("Admin access is required for this action.")); - log_error(_("Run the application as admin with pkexec or sudo.")); - exit(1); - } - } - public bool parse_arguments(string[] args) { string txt = BRANDING_SHORTNAME + " "; @@ -214,8 +205,7 @@ public class AppConsole : GLib.Object { break; case "--install-latest": - - //check_if_admin(); + case "--install-point": check_if_internet_is_active(true); @@ -223,20 +213,8 @@ public class AppConsole : GLib.Object { break; - case "--install-point": - - check_if_admin(); - - check_if_internet_is_active(true); - - LinuxKernel.install_latest(true, App.confirm); - - break; - case "--purge-old-kernels": - check_if_admin(); - LinuxKernel.purge_old_kernels(App.confirm); break; @@ -251,7 +229,6 @@ public class AppConsole : GLib.Object { case "--install": case "--remove": if (cmd=="--download") check_if_internet_is_active(); - if (cmd=="--install" || cmd=="--remove") check_if_admin(); LinuxKernel.query(true); @@ -303,7 +280,7 @@ public class AppConsole : GLib.Object { return LinuxKernel.remove_kernels(list); case "--install": - return list[0].install(true); + return list[0].install(); } break; diff --git a/src/Gtk/MainWindow.vala b/src/Gtk/MainWindow.vala index 2855800d..5006bf9c 100644 --- a/src/Gtk/MainWindow.vala +++ b/src/Gtk/MainWindow.vala @@ -376,8 +376,9 @@ public class MainWindow : Gtk.Window{ }); string sh = ""; - sh += "pkexec env DISPLAY=$DISPLAY XAUTHORITY=$XAUTHORITY "; - sh += BRANDING_SHORTNAME+" --user %s".printf(App.user_login); + //sh += "pkexec env DISPLAY=$DISPLAY XAUTHORITY=$XAUTHORITY "; + //sh += BRANDING_SHORTNAME+" --user %s".printf(App.user_login); + sh += BRANDING_SHORTNAME; if (LOG_DEBUG) sh += " --debug"; string names = ""; @@ -387,9 +388,8 @@ public class MainWindow : Gtk.Window{ } sh += " --remove %s\n".printf(names); - - sh += "echo ''\n"; - sh += "echo 'Close window to exit...'\n"; + sh += "echo \n"; + sh += "echo '"+_("Close window to exit...")+"'\n"; save_bash_script_temp(sh,t_file); term.execute_script(t_file,t_dir); @@ -420,16 +420,10 @@ public class MainWindow : Gtk.Window{ tv_refresh(); }); - string sh = ""; - sh += "pkexec env DISPLAY=$DISPLAY XAUTHORITY=$XAUTHORITY http_proxy=$http_proxy https_proxy=$https_proxy HTTP_PROXY=$HTTP_PROXY HTTPS_PROXY=$HTTPS_PROXY "; - sh += BRANDING_SHORTNAME+" --user "+App.user_login; + string sh = BRANDING_SHORTNAME+" --purge-old-kernels"; if (LOG_DEBUG) sh += " --debug"; - sh += " --purge-old-kernels\n"; - - log_debug(sh); - - sh += "echo ''\n"; - sh += "echo 'Close window to exit...'\n"; + sh += "\necho \n" + + "echo '"+_("Close window to exit...")+"'\n"; save_bash_script_temp(sh,t_file); term.execute_script(t_file,t_dir); @@ -534,7 +528,7 @@ public class MainWindow : Gtk.Window{ private void refresh_cache(bool download_index = true){ if (!check_internet_connectivity()){ - gtk_messagebox(_("No Internet"), _("Internet connection is not active"), this, true); + gtk_messagebox(_("No Internet"), _("Internet connection is not active."), this, true); return; } @@ -637,7 +631,7 @@ public class MainWindow : Gtk.Window{ if (LinuxKernel.kernel_active != null){ - lbl_info.label = "Running %s".printf(LinuxKernel.kernel_active.version_main); + lbl_info.label = _("Running")+" %s".printf(LinuxKernel.kernel_active.version_main); if (LinuxKernel.kernel_active.is_mainline){ lbl_info.label += " (mainline)"; @@ -647,12 +641,11 @@ public class MainWindow : Gtk.Window{ } if (LinuxKernel.kernel_latest_stable.compare_to(LinuxKernel.kernel_active) > 0){ - lbl_info.label += " ~ " + "%s available".printf( - LinuxKernel.kernel_latest_stable.version_main); + lbl_info.label += " ~ %s ".printf(LinuxKernel.kernel_latest_stable.version_main)+_("available"); } } else{ - lbl_info.label = "Running %s".printf(LinuxKernel.RUNNING_KERNEL); + lbl_info.label = _("Running")+" %s".printf(LinuxKernel.RUNNING_KERNEL); } } @@ -660,12 +653,12 @@ public class MainWindow : Gtk.Window{ // check if installed if (kern.is_installed){ - gtk_messagebox("Already Installed", _("This kernel is already installed."), this, true); + gtk_messagebox(_("Already Installed"), _("This kernel is already installed."), this, true); return; } if (!check_internet_connectivity()){ - gtk_messagebox(_("No Internet"), _("Internet connection is not active"), this, true); + gtk_messagebox(_("No Internet"), _("Internet connection is not active."), this, true); return; } @@ -693,17 +686,11 @@ public class MainWindow : Gtk.Window{ } }); - string sh = ""; - sh += BRANDING_SHORTNAME; - if (LOG_DEBUG) sh += " --debug"; - sh += " --download %s".printf(kern.version_main); - sh += " && "; - sh += "pkexec env DISPLAY=$DISPLAY XAUTHORITY=$XAUTHORITY "; - sh += BRANDING_SHORTNAME+" --user "+App.user_login; + string sh = BRANDING_SHORTNAME; if (LOG_DEBUG) sh += " --debug"; - sh += " --install %s\n".printf(kern.version_main); - sh += "echo \n"; - sh += "echo 'Close window to exit...'\n"; + sh += " --install %s\n".printf(kern.version_main) + + "echo \n" + + "echo '"+_("Close window to exit...")+"'\n"; save_bash_script_temp(sh,t_file); term.execute_script(t_file,t_dir); diff --git a/src/Utility/TeeJee.Process.vala b/src/Utility/TeeJee.Process.vala index d2fdf4af..0961755f 100644 --- a/src/Utility/TeeJee.Process.vala +++ b/src/Utility/TeeJee.Process.vala @@ -46,7 +46,7 @@ namespace TeeJee.ProcessHelper{ try { int status; - Process.spawn_command_line_sync(cmd, out std_out, out std_err, out status); + Process.spawn_command_line_sync (cmd, out std_out, out std_err, out status); return status; } catch (Error e){ @@ -61,129 +61,6 @@ namespace TeeJee.ProcessHelper{ catch (SpawnError e) {log_error (e.message);} } - public int exec_script_sync (string script, - out string? std_out = null, out string? std_err = null, - bool supress_errors = false, bool run_as_admin = false, - bool cleanup_tmp = true, bool print_to_terminal = false){ - - /* Executes commands synchronously. - * Pipes and multiple commands are fully supported. - * Commands are written to a temporary bash script and executed. - * std_out, std_err can be null. Output will be written to terminal if null. - * */ - - string t_dir = create_tmp_dir(); - string t_f = get_temp_file_path(t_dir); - string sh_file = t_f+".sh"; - save_bash_script_temp(script,sh_file, true, supress_errors); - string su_file = t_f+"_su.sh"; - - if (run_as_admin){ - string s = "#!/bin/bash\n" - + "pkexec env DISPLAY=$DISPLAY XAUTHORITY=$XAUTHORITY" - + " '%s'".printf(escape_single_quote(sh_file)); - - save_bash_script_temp(s, su_file, true, supress_errors); - } - - try { - string[] argv = new string[1]; - if (run_as_admin){ - argv[0] = su_file; - } - else{ - argv[0] = sh_file; - } - - string[] env = Environ.get(); - - int exit_code; - - if (print_to_terminal){ - - Process.spawn_sync ( - t_dir, //working dir - argv, //argv - env, //environment - SpawnFlags.SEARCH_PATH, - null, // child_setup - null, - null, - out exit_code - ); - } - else{ - - Process.spawn_sync ( - t_dir, //working dir - argv, //argv - env, //environment - SpawnFlags.SEARCH_PATH, - null, // child_setup - out std_out, - out std_err, - out exit_code - ); - } - - string d = "exec_script_sync():"; - if (cleanup_tmp){ - d += "file_delete("+sh_file+")"; - file_delete(sh_file); - if (run_as_admin){ - d += ":file_delete("+su_file+")"; - file_delete(su_file); - } - d += ":dir_delete("+t_dir+")"; - dir_delete(t_dir); - } - log_debug(d); - return exit_code; - } - catch (Error e){ - if (!supress_errors){ - log_error (e.message); - } - return -1; - } - } - - public int exec_script_async (string s){ - - /* Executes commands synchronously. - * Pipes and multiple commands are fully supported. - * Commands are written to a temporary bash script and executed. - * Return value indicates if script was started successfully. - * */ - - try { - - string t_dir = create_tmp_dir(); - string t_file = get_temp_file_path(t_dir); - save_bash_script_temp(s,t_file); - - string[] argv = new string[1]; - argv[0] = t_file; - - string[] env = Environ.get(); - - Pid child_pid; - Process.spawn_async_with_pipes( - t_dir, //working dir - argv, //argv - env, //environment - SpawnFlags.SEARCH_PATH, - null, - out child_pid); - - return 0; - } - catch (Error e){ - log_error (e.message); - return 1; - } - } - public string? save_bash_script_temp (string commands, string? script_path = null, bool force_locale = true, bool supress_errors = false){ @@ -249,10 +126,6 @@ namespace TeeJee.ProcessHelper{ return d + "/" + timestamp_numeric() + (new Rand()).next_int().to_string(); } - - public void exec_process_new_session(string command){ - exec_script_async("setsid %s &".printf(command)); - } // find process ------------------------------- @@ -273,107 +146,6 @@ namespace TeeJee.ProcessHelper{ } } - public bool cmd_exists(string cmd_tool){ - string path = get_cmd_path (cmd_tool); - if ((path == null) || (path.length == 0)){ - return false; - } - else{ - return true; - } - } - - // dep: pidof, TODO: Rewrite using /proc - public int get_pid_by_name (string name){ - - /* Get the process ID for a process with given name */ - - string std_out, std_err; - exec_sync("pidof \"%s\"".printf(name), out std_out, out std_err); - - if (std_out != null){ - string[] arr = std_out.split ("\n"); - if (arr.length > 0){ - return int.parse (arr[0]); - } - } - - return -1; - } - - public int get_pid_by_command(string cmdline){ - - /* Searches for process using the command line used to start the process. - * Returns the process id if found. - * */ - - try { - FileEnumerator enumerator; - FileInfo info; - File file = File.parse_name ("/proc"); - - enumerator = file.enumerate_children ("standard::name", 0); - while ((info = enumerator.next_file()) != null) { - try { - string io_stat_file_path = "/proc/%s/cmdline".printf(info.get_name()); - var io_stat_file = File.new_for_path(io_stat_file_path); - if (file.query_exists()){ - var dis = new DataInputStream (io_stat_file.read()); - - string line; - string text = ""; - size_t length; - while((line = dis.read_until ("\0", out length)) != null){ - text += " " + line; - } - - if ((text != null) && text.contains(cmdline)){ - return int.parse(info.get_name()); - } - } //stream closed - } - catch(Error e){ - // do not log - // some processes cannot be accessed by non-admin user - } - } - } - catch(Error e){ - log_error (e.message); - } - - return -1; - } - - public void get_proc_io_stats(int pid, out int64 read_bytes, out int64 write_bytes){ - - /* Returns the number of bytes read and written by a process to disk */ - - string io_stat_file_path = "/proc/%d/io".printf(pid); - var file = File.new_for_path(io_stat_file_path); - - read_bytes = 0; - write_bytes = 0; - - try { - if (file.query_exists()){ - var dis = new DataInputStream (file.read()); - string line; - while ((line = dis.read_line (null)) != null) { - if(line.has_prefix("rchar:")){ - read_bytes = int64.parse(line.replace("rchar:","").strip()); - } - else if(line.has_prefix("wchar:")){ - write_bytes = int64.parse(line.replace("wchar:","").strip()); - } - } - } //stream closed - } - catch(Error e){ - log_error (e.message); - } - } - // dep: ps TODO: Rewrite using /proc public bool process_is_running(long pid){ @@ -442,20 +214,4 @@ namespace TeeJee.ProcessHelper{ } } - // dep: kill - public int process_pause (Pid procID){ - - /* Pause/Freeze a process */ - - return exec_sync ("kill -STOP %d".printf(procID), null, null); - } - - // dep: kill - public int process_resume (Pid procID){ - - /* Resume/Un-freeze a process*/ - - return exec_sync ("kill -CONT %d".printf(procID), null, null); - } - } diff --git a/src/Utility/TeeJee.System.vala b/src/Utility/TeeJee.System.vala index 4d285aa2..89860c9c 100644 --- a/src/Utility/TeeJee.System.vala +++ b/src/Utility/TeeJee.System.vala @@ -1,4 +1,3 @@ - /* * TeeJee.System.vala * @@ -28,152 +27,33 @@ namespace TeeJee.System{ using TeeJee.Logging; using TeeJee.Misc; using TeeJee.FileSystem; - - // user --------------------------------------------------- - - public bool user_is_admin(){ - return (get_user_id_effective() == 0); - } - - public int get_user_id(){ - - // returns actual user id of current user (even for applications executed with sudo and pkexec) - - string pkexec_uid = GLib.Environment.get_variable("PKEXEC_UID"); - - if (pkexec_uid != null){ - return int.parse(pkexec_uid); - } - - string sudo_user = GLib.Environment.get_variable("SUDO_USER"); - - if (sudo_user != null){ - return get_user_id_from_username(sudo_user); - } - - return get_user_id_effective(); // normal user - } - - public int get_user_id_effective(){ - - // returns effective user id (0 for applications executed with sudo and pkexec) - - int uid = -1; - string cmd = "id -u"; - string std_out, std_err; - exec_sync(cmd, out std_out, out std_err); - if ((std_out != null) && (std_out.length > 0)){ - uid = int.parse(std_out); - } - - return uid; - } - - public string get_username(){ - - // returns actual username of current user (even for applications executed with sudo and pkexec) - - return get_username_from_uid(get_user_id()); - } - - public int get_user_id_from_username(string username){ - - int user_id = -1; - - foreach(var line in file_read("/etc/passwd").split("\n")){ - var arr = line.split(":"); - if (arr.length < 3) { continue; } - if (arr[0] == username){ - user_id = int.parse(arr[2]); - break; - } - } - - return user_id; - } - - public string get_username_from_uid(int user_id){ - - string username = ""; - - foreach(var line in file_read("/etc/passwd").split("\n")){ - var arr = line.split(":"); - if (arr.length < 3) { continue; } - if (int.parse(arr[2]) == user_id){ - username = arr[0]; - break; - } - } - - return username; - } - - public string get_user_home(string username = get_username()){ - - string userhome = ""; - - foreach(var line in file_read("/etc/passwd").split("\n")){ - var arr = line.split(":"); - if (arr.length < 6) { continue; } - if (arr[0] == username){ - userhome = arr[5]; - break; - } - } - - return userhome; - } // internet helpers ---------------------- public bool check_internet_connectivity(){ - if (App.skip_connection_check) { - return true; - } + if (App.skip_connection_check) return true; string std_err, std_out; - string cmd = "aria2c --no-netrc --no-conf --connect-timeout="+App.connection_timeout_seconds.to_string()+" --max-file-not-found=3 --retry-wait=2 --max-tries=3 --dry-run --quiet https://www.google.com/"; - int status = exec_script_sync(cmd, out std_out, out std_err, false); - - if (std_err.length > 0){ - log_error(std_err); - } + int status = exec_sync(cmd, out std_out, out std_err); - if (status != 0){ - log_error(_("Internet connection is not active")); - } + if (std_err.length > 0) log_error(std_err); + if (status != 0) log_error(_("Internet connection is not active")); - return (status == 0); + return (status == 0); } // open ----------------------------- - public bool xdg_open (string file, string user = ""){ - - string path = get_cmd_path ("xdg-open"); - - if ((path != null) && (path != "")){ - - string cmd = "xdg-open '%s'".printf(escape_single_quote(file)); - - if (user.length > 0){ - cmd = "pkexec --user %s env DISPLAY=$DISPLAY XAUTHORITY=$XAUTHORITY ".printf(user) + cmd; - } - - log_debug(cmd); - - int status = exec_script_async(cmd); - - return (status == 0); - } - - return false; + public void xdg_open (string file){ + string cmd = "xdg-open '%s'".printf(escape_single_quote(file)); + log_debug(cmd); + exec_async(cmd); } - + // timers -------------------------------------------------- - + public GLib.Timer timer_start(){ var timer = new GLib.Timer(); timer.start(); From 515000fc0fa2370932cef8398d6609365e9aa591 Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Tue, 12 May 2020 05:34:43 -0400 Subject: [PATCH 089/567] simplify save_bash_script_file() --- po/es.po | 60 +++++++++++++-------------- po/fr.po | 60 +++++++++++++-------------- po/hr.po | 60 +++++++++++++-------------- po/messages.pot | 60 +++++++++++++-------------- po/nl.po | 60 +++++++++++++-------------- po/pl.po | 60 +++++++++++++-------------- po/ru.po | 60 +++++++++++++-------------- po/sv.po | 60 +++++++++++++-------------- po/tr.po | 60 +++++++++++++-------------- po/uk.po | 60 +++++++++++++-------------- src/Common/LinuxKernel.vala | 20 ++++----- src/Console/AppConsole.vala | 2 +- src/Gtk/MainWindow.vala | 16 +++----- src/Utility/TeeJee.FileSystem.vala | 12 +++--- src/Utility/TeeJee.Process.vala | 65 ++++++++---------------------- 15 files changed, 338 insertions(+), 377 deletions(-) diff --git a/po/es.po b/po/es.po index 293394df..dcb0c6e2 100644 --- a/po/es.po +++ b/po/es.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-12 03:13-0400\n" +"POT-Creation-Date: 2020-05-12 04:22-0400\n" "PO-Revision-Date: 2018-01-03 02:03-0600\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish\n" @@ -88,7 +88,7 @@ msgid "Installed" msgstr "Instalado" #: src/Common/LinuxKernel.vala:1148 src/Gtk/MainWindow.vala:186 -#: src/Gtk/MainWindow.vala:634 src/Gtk/MainWindow.vala:648 +#: src/Gtk/MainWindow.vala:628 src/Gtk/MainWindow.vala:642 msgid "Running" msgstr "En ejecución" @@ -106,7 +106,7 @@ msgstr "Aceptar" msgid "ERROR" msgstr "ERROR" -#: src/Common/LinuxKernel.vala:1222 src/Gtk/MainWindow.vala:656 +#: src/Common/LinuxKernel.vala:1222 src/Gtk/MainWindow.vala:650 msgid "This kernel is already installed." msgstr "Este núcleo ya se instaló." @@ -211,7 +211,7 @@ msgstr "Instalar núcleo troncal especificado" msgid "Uninstall specified kernels" msgstr "Instalar núcleo troncal especificado" -#: src/Console/AppConsole.vala:81 src/Gtk/MainWindow.vala:401 +#: src/Console/AppConsole.vala:81 src/Gtk/MainWindow.vala:395 msgid "Remove installed kernels older than running kernel" msgstr "" @@ -299,7 +299,7 @@ msgid "Kernel %s Available" msgstr "Paquetes disponibles" #: src/Console/AppConsole.vala:346 src/Console/AppConsole.vala:362 -#: src/Gtk/MainWindow.vala:335 +#: src/Gtk/MainWindow.vala:333 msgid "Install" msgstr "Instalar" @@ -323,92 +323,92 @@ msgstr "Núcleo" msgid "Status" msgstr "Estado" -#: src/Gtk/MainWindow.vala:319 +#: src/Gtk/MainWindow.vala:317 msgid "Refresh" msgstr "Actualizar" -#: src/Gtk/MainWindow.vala:326 src/Utility/TeeJee.System.vala:42 +#: src/Gtk/MainWindow.vala:324 src/Utility/TeeJee.System.vala:42 msgid "Internet connection is not active" msgstr "La conexión a Internet está inactiva" -#: src/Gtk/MainWindow.vala:326 src/Gtk/MainWindow.vala:531 -#: src/Gtk/MainWindow.vala:661 +#: src/Gtk/MainWindow.vala:324 src/Gtk/MainWindow.vala:525 +#: src/Gtk/MainWindow.vala:655 msgid "No Internet" msgstr "No hay Internet" -#: src/Gtk/MainWindow.vala:344 +#: src/Gtk/MainWindow.vala:342 msgid "Multiple Kernels Selected" msgstr "Se seleccionaron varios kernels" -#: src/Gtk/MainWindow.vala:344 +#: src/Gtk/MainWindow.vala:342 msgid "Select a single kernel to install" msgstr "Seleccione un solo núcleo para instalarlo" -#: src/Gtk/MainWindow.vala:347 src/Gtk/MainWindow.vala:358 +#: src/Gtk/MainWindow.vala:345 src/Gtk/MainWindow.vala:356 msgid "Not Selected" msgstr "No seleccionado" -#: src/Gtk/MainWindow.vala:347 +#: src/Gtk/MainWindow.vala:345 msgid "Select the kernel to install" msgstr "Seleccione el núcleo que se instalará" -#: src/Gtk/MainWindow.vala:352 +#: src/Gtk/MainWindow.vala:350 msgid "Remove" msgstr "Quitar" -#: src/Gtk/MainWindow.vala:358 +#: src/Gtk/MainWindow.vala:356 msgid "Select the kernels to remove" msgstr "Seleccione los núcleos que se desinstalarán" -#: src/Gtk/MainWindow.vala:392 src/Gtk/MainWindow.vala:426 -#: src/Gtk/MainWindow.vala:693 +#: src/Gtk/MainWindow.vala:386 src/Gtk/MainWindow.vala:420 +#: src/Gtk/MainWindow.vala:687 msgid "Close window to exit..." msgstr "" -#: src/Gtk/MainWindow.vala:400 +#: src/Gtk/MainWindow.vala:394 msgid "Purge" msgstr "" -#: src/Gtk/MainWindow.vala:433 +#: src/Gtk/MainWindow.vala:427 msgid "Changes" msgstr "Cambios" -#: src/Gtk/MainWindow.vala:444 src/Gtk/SettingsDialog.vala:52 +#: src/Gtk/MainWindow.vala:438 src/Gtk/SettingsDialog.vala:52 msgid "Settings" msgstr "Configuración" -#: src/Gtk/MainWindow.vala:465 +#: src/Gtk/MainWindow.vala:459 msgid "About" msgstr "Acerca de" -#: src/Gtk/MainWindow.vala:509 +#: src/Gtk/MainWindow.vala:503 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "" "Herramienta de renovación de núcleo para distribuciones basadas en Ubuntu" -#: src/Gtk/MainWindow.vala:510 +#: src/Gtk/MainWindow.vala:504 msgid "Forked" msgstr "" -#: src/Gtk/MainWindow.vala:510 +#: src/Gtk/MainWindow.vala:504 msgid "Original" msgstr "" -#: src/Gtk/MainWindow.vala:531 src/Gtk/MainWindow.vala:661 +#: src/Gtk/MainWindow.vala:525 src/Gtk/MainWindow.vala:655 #, fuzzy msgid "Internet connection is not active." msgstr "La conexión a Internet está inactiva" -#: src/Gtk/MainWindow.vala:550 +#: src/Gtk/MainWindow.vala:544 msgid "Refreshing..." msgstr "Actualizando…" -#: src/Gtk/MainWindow.vala:644 +#: src/Gtk/MainWindow.vala:638 #, fuzzy msgid "available" msgstr "Paquetes disponibles" -#: src/Gtk/MainWindow.vala:656 +#: src/Gtk/MainWindow.vala:650 #, fuzzy msgid "Already Installed" msgstr "Instalado" @@ -540,7 +540,7 @@ msgstr "Falta el icono" msgid "File deleted" msgstr "Se eliminó el archivo" -#: src/Utility/TeeJee.FileSystem.vala:80 src/Utility/TeeJee.FileSystem.vala:278 +#: src/Utility/TeeJee.FileSystem.vala:80 src/Utility/TeeJee.FileSystem.vala:276 msgid "Failed to delete file" msgstr "Falló la eliminación del archivo" @@ -588,7 +588,7 @@ msgstr "Se creó el directorio" msgid "Failed to create dir" msgstr "Falló la creación del directorio" -#: src/Utility/TeeJee.FileSystem.vala:277 +#: src/Utility/TeeJee.FileSystem.vala:275 #, fuzzy msgid "Deleted" msgstr "Se eliminó el archivo" diff --git a/po/fr.po b/po/fr.po index 75d7ff7a..119f21d0 100644 --- a/po/fr.po +++ b/po/fr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-12 03:13-0400\n" +"POT-Creation-Date: 2020-05-12 04:22-0400\n" "PO-Revision-Date: 2018-08-05 15:50+0200\n" "Last-Translator: Yolateng0 \n" "Language-Team: French\n" @@ -91,7 +91,7 @@ msgid "Installed" msgstr "Installé" #: src/Common/LinuxKernel.vala:1148 src/Gtk/MainWindow.vala:186 -#: src/Gtk/MainWindow.vala:634 src/Gtk/MainWindow.vala:648 +#: src/Gtk/MainWindow.vala:628 src/Gtk/MainWindow.vala:642 msgid "Running" msgstr "En cours" @@ -109,7 +109,7 @@ msgstr "OK" msgid "ERROR" msgstr "ERREUR" -#: src/Common/LinuxKernel.vala:1222 src/Gtk/MainWindow.vala:656 +#: src/Common/LinuxKernel.vala:1222 src/Gtk/MainWindow.vala:650 msgid "This kernel is already installed." msgstr "Ce noyau est déjà installé." @@ -217,7 +217,7 @@ msgstr "Installer le noyau principal spécifié" msgid "Uninstall specified kernels" msgstr "Installer le noyau principal spécifié" -#: src/Console/AppConsole.vala:81 src/Gtk/MainWindow.vala:401 +#: src/Console/AppConsole.vala:81 src/Gtk/MainWindow.vala:395 msgid "Remove installed kernels older than running kernel" msgstr "" @@ -309,7 +309,7 @@ msgid "Kernel %s Available" msgstr "Paquets disponibles" #: src/Console/AppConsole.vala:346 src/Console/AppConsole.vala:362 -#: src/Gtk/MainWindow.vala:335 +#: src/Gtk/MainWindow.vala:333 msgid "Install" msgstr "Installer" @@ -333,93 +333,93 @@ msgstr "Noyau" msgid "Status" msgstr "Statut" -#: src/Gtk/MainWindow.vala:319 +#: src/Gtk/MainWindow.vala:317 msgid "Refresh" msgstr "Actualiser" -#: src/Gtk/MainWindow.vala:326 src/Utility/TeeJee.System.vala:42 +#: src/Gtk/MainWindow.vala:324 src/Utility/TeeJee.System.vala:42 msgid "Internet connection is not active" msgstr "Connexion internet inexistante" -#: src/Gtk/MainWindow.vala:326 src/Gtk/MainWindow.vala:531 -#: src/Gtk/MainWindow.vala:661 +#: src/Gtk/MainWindow.vala:324 src/Gtk/MainWindow.vala:525 +#: src/Gtk/MainWindow.vala:655 msgid "No Internet" msgstr "Pas d'Internet" -#: src/Gtk/MainWindow.vala:344 +#: src/Gtk/MainWindow.vala:342 msgid "Multiple Kernels Selected" msgstr "Plusieurs noyaux sélectionnés" -#: src/Gtk/MainWindow.vala:344 +#: src/Gtk/MainWindow.vala:342 msgid "Select a single kernel to install" msgstr "Sélectionnez un seul noyau à installer" -#: src/Gtk/MainWindow.vala:347 src/Gtk/MainWindow.vala:358 +#: src/Gtk/MainWindow.vala:345 src/Gtk/MainWindow.vala:356 msgid "Not Selected" msgstr "Non selectionné" -#: src/Gtk/MainWindow.vala:347 +#: src/Gtk/MainWindow.vala:345 msgid "Select the kernel to install" msgstr "Sélectionnez le noyau à installer" -#: src/Gtk/MainWindow.vala:352 +#: src/Gtk/MainWindow.vala:350 msgid "Remove" msgstr "Supprimer" -#: src/Gtk/MainWindow.vala:358 +#: src/Gtk/MainWindow.vala:356 msgid "Select the kernels to remove" msgstr "Sélectionnez les noyaux à supprimer" -#: src/Gtk/MainWindow.vala:392 src/Gtk/MainWindow.vala:426 -#: src/Gtk/MainWindow.vala:693 +#: src/Gtk/MainWindow.vala:386 src/Gtk/MainWindow.vala:420 +#: src/Gtk/MainWindow.vala:687 msgid "Close window to exit..." msgstr "" -#: src/Gtk/MainWindow.vala:400 +#: src/Gtk/MainWindow.vala:394 msgid "Purge" msgstr "" -#: src/Gtk/MainWindow.vala:433 +#: src/Gtk/MainWindow.vala:427 msgid "Changes" msgstr "Changements" -#: src/Gtk/MainWindow.vala:444 src/Gtk/SettingsDialog.vala:52 +#: src/Gtk/MainWindow.vala:438 src/Gtk/SettingsDialog.vala:52 msgid "Settings" msgstr "Paramètres" -#: src/Gtk/MainWindow.vala:465 +#: src/Gtk/MainWindow.vala:459 msgid "About" msgstr "À propos" -#: src/Gtk/MainWindow.vala:509 +#: src/Gtk/MainWindow.vala:503 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "" "Utilitaire de mise à niveau des noyaux pour les distributions basées pour " "Ubuntu" -#: src/Gtk/MainWindow.vala:510 +#: src/Gtk/MainWindow.vala:504 msgid "Forked" msgstr "" -#: src/Gtk/MainWindow.vala:510 +#: src/Gtk/MainWindow.vala:504 msgid "Original" msgstr "" -#: src/Gtk/MainWindow.vala:531 src/Gtk/MainWindow.vala:661 +#: src/Gtk/MainWindow.vala:525 src/Gtk/MainWindow.vala:655 #, fuzzy msgid "Internet connection is not active." msgstr "Connexion internet inexistante" -#: src/Gtk/MainWindow.vala:550 +#: src/Gtk/MainWindow.vala:544 msgid "Refreshing..." msgstr "Actualisation..." -#: src/Gtk/MainWindow.vala:644 +#: src/Gtk/MainWindow.vala:638 #, fuzzy msgid "available" msgstr "Paquets disponibles" -#: src/Gtk/MainWindow.vala:656 +#: src/Gtk/MainWindow.vala:650 #, fuzzy msgid "Already Installed" msgstr "Installé" @@ -552,7 +552,7 @@ msgstr "Icône introuvable" msgid "File deleted" msgstr "Fichier effacé" -#: src/Utility/TeeJee.FileSystem.vala:80 src/Utility/TeeJee.FileSystem.vala:278 +#: src/Utility/TeeJee.FileSystem.vala:80 src/Utility/TeeJee.FileSystem.vala:276 msgid "Failed to delete file" msgstr "Impossible d'effacer le fichier" @@ -600,7 +600,7 @@ msgstr "Dossier créé" msgid "Failed to create dir" msgstr "Impossible de créer le nouveau dossier" -#: src/Utility/TeeJee.FileSystem.vala:277 +#: src/Utility/TeeJee.FileSystem.vala:275 #, fuzzy msgid "Deleted" msgstr "Fichier effacé" diff --git a/po/hr.po b/po/hr.po index fd42d18e..c3832490 100644 --- a/po/hr.po +++ b/po/hr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-12 03:13-0400\n" +"POT-Creation-Date: 2020-05-12 04:22-0400\n" "PO-Revision-Date: 2017-12-24 00:52+0100\n" "Last-Translator: gogo \n" "Language-Team: Croatian \n" @@ -91,7 +91,7 @@ msgid "Installed" msgstr "Instalirano" #: src/Common/LinuxKernel.vala:1148 src/Gtk/MainWindow.vala:186 -#: src/Gtk/MainWindow.vala:634 src/Gtk/MainWindow.vala:648 +#: src/Gtk/MainWindow.vala:628 src/Gtk/MainWindow.vala:642 msgid "Running" msgstr "Pokrenuto" @@ -109,7 +109,7 @@ msgstr "U redu" msgid "ERROR" msgstr "GREŠKA" -#: src/Common/LinuxKernel.vala:1222 src/Gtk/MainWindow.vala:656 +#: src/Common/LinuxKernel.vala:1222 src/Gtk/MainWindow.vala:650 msgid "This kernel is already installed." msgstr "Ovaj kernel je već instaliran." @@ -217,7 +217,7 @@ msgstr "Instaliraj određeni mainline kernel" msgid "Uninstall specified kernels" msgstr "Instaliraj određeni mainline kernel" -#: src/Console/AppConsole.vala:81 src/Gtk/MainWindow.vala:401 +#: src/Console/AppConsole.vala:81 src/Gtk/MainWindow.vala:395 msgid "Remove installed kernels older than running kernel" msgstr "" @@ -306,7 +306,7 @@ msgid "Kernel %s Available" msgstr "Dostupni paketi" #: src/Console/AppConsole.vala:346 src/Console/AppConsole.vala:362 -#: src/Gtk/MainWindow.vala:335 +#: src/Gtk/MainWindow.vala:333 msgid "Install" msgstr "Instaliraj" @@ -330,91 +330,91 @@ msgstr "Kernel" msgid "Status" msgstr "Stanje" -#: src/Gtk/MainWindow.vala:319 +#: src/Gtk/MainWindow.vala:317 msgid "Refresh" msgstr "Osvježi" -#: src/Gtk/MainWindow.vala:326 src/Utility/TeeJee.System.vala:42 +#: src/Gtk/MainWindow.vala:324 src/Utility/TeeJee.System.vala:42 msgid "Internet connection is not active" msgstr "Internet povezivanje nije aktivno" -#: src/Gtk/MainWindow.vala:326 src/Gtk/MainWindow.vala:531 -#: src/Gtk/MainWindow.vala:661 +#: src/Gtk/MainWindow.vala:324 src/Gtk/MainWindow.vala:525 +#: src/Gtk/MainWindow.vala:655 msgid "No Internet" msgstr "Nema pristupa internetu" -#: src/Gtk/MainWindow.vala:344 +#: src/Gtk/MainWindow.vala:342 msgid "Multiple Kernels Selected" msgstr "Više kernela je odabrano" -#: src/Gtk/MainWindow.vala:344 +#: src/Gtk/MainWindow.vala:342 msgid "Select a single kernel to install" msgstr "Odaberi pojedni kernel za instalaciju" -#: src/Gtk/MainWindow.vala:347 src/Gtk/MainWindow.vala:358 +#: src/Gtk/MainWindow.vala:345 src/Gtk/MainWindow.vala:356 msgid "Not Selected" msgstr "Nije odabrano" -#: src/Gtk/MainWindow.vala:347 +#: src/Gtk/MainWindow.vala:345 msgid "Select the kernel to install" msgstr "Odaberi kernel za instalaciju" -#: src/Gtk/MainWindow.vala:352 +#: src/Gtk/MainWindow.vala:350 msgid "Remove" msgstr "Ukloni" -#: src/Gtk/MainWindow.vala:358 +#: src/Gtk/MainWindow.vala:356 msgid "Select the kernels to remove" msgstr "Odaberi kernele za uklanjanje" -#: src/Gtk/MainWindow.vala:392 src/Gtk/MainWindow.vala:426 -#: src/Gtk/MainWindow.vala:693 +#: src/Gtk/MainWindow.vala:386 src/Gtk/MainWindow.vala:420 +#: src/Gtk/MainWindow.vala:687 msgid "Close window to exit..." msgstr "" -#: src/Gtk/MainWindow.vala:400 +#: src/Gtk/MainWindow.vala:394 msgid "Purge" msgstr "" -#: src/Gtk/MainWindow.vala:433 +#: src/Gtk/MainWindow.vala:427 msgid "Changes" msgstr "Promjene" -#: src/Gtk/MainWindow.vala:444 src/Gtk/SettingsDialog.vala:52 +#: src/Gtk/MainWindow.vala:438 src/Gtk/SettingsDialog.vala:52 msgid "Settings" msgstr "Postavke" -#: src/Gtk/MainWindow.vala:465 +#: src/Gtk/MainWindow.vala:459 msgid "About" msgstr "O programu" -#: src/Gtk/MainWindow.vala:509 +#: src/Gtk/MainWindow.vala:503 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Alat za nadogradnju kernela Ubuntu temeljenih distribucija" -#: src/Gtk/MainWindow.vala:510 +#: src/Gtk/MainWindow.vala:504 msgid "Forked" msgstr "" -#: src/Gtk/MainWindow.vala:510 +#: src/Gtk/MainWindow.vala:504 msgid "Original" msgstr "" -#: src/Gtk/MainWindow.vala:531 src/Gtk/MainWindow.vala:661 +#: src/Gtk/MainWindow.vala:525 src/Gtk/MainWindow.vala:655 #, fuzzy msgid "Internet connection is not active." msgstr "Internet povezivanje nije aktivno" -#: src/Gtk/MainWindow.vala:550 +#: src/Gtk/MainWindow.vala:544 msgid "Refreshing..." msgstr "Osvježavanje..." -#: src/Gtk/MainWindow.vala:644 +#: src/Gtk/MainWindow.vala:638 #, fuzzy msgid "available" msgstr "Dostupni paketi" -#: src/Gtk/MainWindow.vala:656 +#: src/Gtk/MainWindow.vala:650 #, fuzzy msgid "Already Installed" msgstr "Instalirano" @@ -547,7 +547,7 @@ msgstr "Ikone koje nedostaju" msgid "File deleted" msgstr "Datoteka obrisana" -#: src/Utility/TeeJee.FileSystem.vala:80 src/Utility/TeeJee.FileSystem.vala:278 +#: src/Utility/TeeJee.FileSystem.vala:80 src/Utility/TeeJee.FileSystem.vala:276 msgid "Failed to delete file" msgstr "Neuspjelo brisanje datoteke" @@ -595,7 +595,7 @@ msgstr "Stvoren direktorij" msgid "Failed to create dir" msgstr "Neuspjelo stvarnje direktorija" -#: src/Utility/TeeJee.FileSystem.vala:277 +#: src/Utility/TeeJee.FileSystem.vala:275 #, fuzzy msgid "Deleted" msgstr "Datoteka obrisana" diff --git a/po/messages.pot b/po/messages.pot index 23098fba..00845826 100644 --- a/po/messages.pot +++ b/po/messages.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline 1.0.9\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-12 03:14-0400\n" +"POT-Creation-Date: 2020-05-12 04:22-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -92,7 +92,7 @@ msgid "Installed" msgstr "" #: src/Common/LinuxKernel.vala:1148 src/Gtk/MainWindow.vala:186 -#: src/Gtk/MainWindow.vala:634 src/Gtk/MainWindow.vala:648 +#: src/Gtk/MainWindow.vala:628 src/Gtk/MainWindow.vala:642 msgid "Running" msgstr "" @@ -110,7 +110,7 @@ msgstr "" msgid "ERROR" msgstr "" -#: src/Common/LinuxKernel.vala:1222 src/Gtk/MainWindow.vala:656 +#: src/Common/LinuxKernel.vala:1222 src/Gtk/MainWindow.vala:650 msgid "This kernel is already installed." msgstr "" @@ -207,7 +207,7 @@ msgstr "" msgid "Uninstall specified kernels" msgstr "" -#: src/Console/AppConsole.vala:81 src/Gtk/MainWindow.vala:401 +#: src/Console/AppConsole.vala:81 src/Gtk/MainWindow.vala:395 msgid "Remove installed kernels older than running kernel" msgstr "" @@ -291,7 +291,7 @@ msgid "Kernel %s Available" msgstr "" #: src/Console/AppConsole.vala:346 src/Console/AppConsole.vala:362 -#: src/Gtk/MainWindow.vala:335 +#: src/Gtk/MainWindow.vala:333 msgid "Install" msgstr "" @@ -315,89 +315,89 @@ msgstr "" msgid "Status" msgstr "" -#: src/Gtk/MainWindow.vala:319 +#: src/Gtk/MainWindow.vala:317 msgid "Refresh" msgstr "" -#: src/Gtk/MainWindow.vala:326 src/Utility/TeeJee.System.vala:42 +#: src/Gtk/MainWindow.vala:324 src/Utility/TeeJee.System.vala:42 msgid "Internet connection is not active" msgstr "" -#: src/Gtk/MainWindow.vala:326 src/Gtk/MainWindow.vala:531 -#: src/Gtk/MainWindow.vala:661 +#: src/Gtk/MainWindow.vala:324 src/Gtk/MainWindow.vala:525 +#: src/Gtk/MainWindow.vala:655 msgid "No Internet" msgstr "" -#: src/Gtk/MainWindow.vala:344 +#: src/Gtk/MainWindow.vala:342 msgid "Multiple Kernels Selected" msgstr "" -#: src/Gtk/MainWindow.vala:344 +#: src/Gtk/MainWindow.vala:342 msgid "Select a single kernel to install" msgstr "" -#: src/Gtk/MainWindow.vala:347 src/Gtk/MainWindow.vala:358 +#: src/Gtk/MainWindow.vala:345 src/Gtk/MainWindow.vala:356 msgid "Not Selected" msgstr "" -#: src/Gtk/MainWindow.vala:347 +#: src/Gtk/MainWindow.vala:345 msgid "Select the kernel to install" msgstr "" -#: src/Gtk/MainWindow.vala:352 +#: src/Gtk/MainWindow.vala:350 msgid "Remove" msgstr "" -#: src/Gtk/MainWindow.vala:358 +#: src/Gtk/MainWindow.vala:356 msgid "Select the kernels to remove" msgstr "" -#: src/Gtk/MainWindow.vala:392 src/Gtk/MainWindow.vala:426 -#: src/Gtk/MainWindow.vala:693 +#: src/Gtk/MainWindow.vala:386 src/Gtk/MainWindow.vala:420 +#: src/Gtk/MainWindow.vala:687 msgid "Close window to exit..." msgstr "" -#: src/Gtk/MainWindow.vala:400 +#: src/Gtk/MainWindow.vala:394 msgid "Purge" msgstr "" -#: src/Gtk/MainWindow.vala:433 +#: src/Gtk/MainWindow.vala:427 msgid "Changes" msgstr "" -#: src/Gtk/MainWindow.vala:444 src/Gtk/SettingsDialog.vala:52 +#: src/Gtk/MainWindow.vala:438 src/Gtk/SettingsDialog.vala:52 msgid "Settings" msgstr "" -#: src/Gtk/MainWindow.vala:465 +#: src/Gtk/MainWindow.vala:459 msgid "About" msgstr "" -#: src/Gtk/MainWindow.vala:509 +#: src/Gtk/MainWindow.vala:503 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "" -#: src/Gtk/MainWindow.vala:510 +#: src/Gtk/MainWindow.vala:504 msgid "Forked" msgstr "" -#: src/Gtk/MainWindow.vala:510 +#: src/Gtk/MainWindow.vala:504 msgid "Original" msgstr "" -#: src/Gtk/MainWindow.vala:531 src/Gtk/MainWindow.vala:661 +#: src/Gtk/MainWindow.vala:525 src/Gtk/MainWindow.vala:655 msgid "Internet connection is not active." msgstr "" -#: src/Gtk/MainWindow.vala:550 +#: src/Gtk/MainWindow.vala:544 msgid "Refreshing..." msgstr "" -#: src/Gtk/MainWindow.vala:644 +#: src/Gtk/MainWindow.vala:638 msgid "available" msgstr "" -#: src/Gtk/MainWindow.vala:656 +#: src/Gtk/MainWindow.vala:650 msgid "Already Installed" msgstr "" @@ -526,7 +526,7 @@ msgstr "" msgid "File deleted" msgstr "" -#: src/Utility/TeeJee.FileSystem.vala:80 src/Utility/TeeJee.FileSystem.vala:278 +#: src/Utility/TeeJee.FileSystem.vala:80 src/Utility/TeeJee.FileSystem.vala:276 msgid "Failed to delete file" msgstr "" @@ -574,7 +574,7 @@ msgstr "" msgid "Failed to create dir" msgstr "" -#: src/Utility/TeeJee.FileSystem.vala:277 +#: src/Utility/TeeJee.FileSystem.vala:275 msgid "Deleted" msgstr "" diff --git a/po/nl.po b/po/nl.po index 36fd873e..ba211b9f 100644 --- a/po/nl.po +++ b/po/nl.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-12 03:13-0400\n" +"POT-Creation-Date: 2020-05-12 04:22-0400\n" "PO-Revision-Date: 2017-04-30 11:50+0200\n" "Last-Translator: Heimen Stoffels \n" "Language-Team: \n" @@ -91,7 +91,7 @@ msgid "Installed" msgstr "Geïnstalleerd" #: src/Common/LinuxKernel.vala:1148 src/Gtk/MainWindow.vala:186 -#: src/Gtk/MainWindow.vala:634 src/Gtk/MainWindow.vala:648 +#: src/Gtk/MainWindow.vala:628 src/Gtk/MainWindow.vala:642 msgid "Running" msgstr "Bezig met draaien" @@ -109,7 +109,7 @@ msgstr "Oké" msgid "ERROR" msgstr "FOUT" -#: src/Common/LinuxKernel.vala:1222 src/Gtk/MainWindow.vala:656 +#: src/Common/LinuxKernel.vala:1222 src/Gtk/MainWindow.vala:650 msgid "This kernel is already installed." msgstr "Deze kernel is al geïnstalleerd." @@ -218,7 +218,7 @@ msgstr "Opgegeven mainline-kernel installeren" msgid "Uninstall specified kernels" msgstr "Opgegeven mainline-kernel installeren" -#: src/Console/AppConsole.vala:81 src/Gtk/MainWindow.vala:401 +#: src/Console/AppConsole.vala:81 src/Gtk/MainWindow.vala:395 msgid "Remove installed kernels older than running kernel" msgstr "" @@ -309,7 +309,7 @@ msgid "Kernel %s Available" msgstr "Beschikbare pakketten" #: src/Console/AppConsole.vala:346 src/Console/AppConsole.vala:362 -#: src/Gtk/MainWindow.vala:335 +#: src/Gtk/MainWindow.vala:333 msgid "Install" msgstr "Installeren" @@ -333,91 +333,91 @@ msgstr "Kernel" msgid "Status" msgstr "Status" -#: src/Gtk/MainWindow.vala:319 +#: src/Gtk/MainWindow.vala:317 msgid "Refresh" msgstr "Verversen" -#: src/Gtk/MainWindow.vala:326 src/Utility/TeeJee.System.vala:42 +#: src/Gtk/MainWindow.vala:324 src/Utility/TeeJee.System.vala:42 msgid "Internet connection is not active" msgstr "U bent niet verbonden met het internet" -#: src/Gtk/MainWindow.vala:326 src/Gtk/MainWindow.vala:531 -#: src/Gtk/MainWindow.vala:661 +#: src/Gtk/MainWindow.vala:324 src/Gtk/MainWindow.vala:525 +#: src/Gtk/MainWindow.vala:655 msgid "No Internet" msgstr "Geen internetverbinding" -#: src/Gtk/MainWindow.vala:344 +#: src/Gtk/MainWindow.vala:342 msgid "Multiple Kernels Selected" msgstr "Meerdere kernels geselecteerd" -#: src/Gtk/MainWindow.vala:344 +#: src/Gtk/MainWindow.vala:342 msgid "Select a single kernel to install" msgstr "Selecteer een enkele te installeren kernel" -#: src/Gtk/MainWindow.vala:347 src/Gtk/MainWindow.vala:358 +#: src/Gtk/MainWindow.vala:345 src/Gtk/MainWindow.vala:356 msgid "Not Selected" msgstr "Niet geselecteerd" -#: src/Gtk/MainWindow.vala:347 +#: src/Gtk/MainWindow.vala:345 msgid "Select the kernel to install" msgstr "Selecteer de te installeren kernel" -#: src/Gtk/MainWindow.vala:352 +#: src/Gtk/MainWindow.vala:350 msgid "Remove" msgstr "Verwijderen" -#: src/Gtk/MainWindow.vala:358 +#: src/Gtk/MainWindow.vala:356 msgid "Select the kernels to remove" msgstr "Selecteer de te verwijderen kernels" -#: src/Gtk/MainWindow.vala:392 src/Gtk/MainWindow.vala:426 -#: src/Gtk/MainWindow.vala:693 +#: src/Gtk/MainWindow.vala:386 src/Gtk/MainWindow.vala:420 +#: src/Gtk/MainWindow.vala:687 msgid "Close window to exit..." msgstr "" -#: src/Gtk/MainWindow.vala:400 +#: src/Gtk/MainWindow.vala:394 msgid "Purge" msgstr "" -#: src/Gtk/MainWindow.vala:433 +#: src/Gtk/MainWindow.vala:427 msgid "Changes" msgstr "Wijzigingen" -#: src/Gtk/MainWindow.vala:444 src/Gtk/SettingsDialog.vala:52 +#: src/Gtk/MainWindow.vala:438 src/Gtk/SettingsDialog.vala:52 msgid "Settings" msgstr "Instellingen" -#: src/Gtk/MainWindow.vala:465 +#: src/Gtk/MainWindow.vala:459 msgid "About" msgstr "Over" -#: src/Gtk/MainWindow.vala:509 +#: src/Gtk/MainWindow.vala:503 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Kernel-upgradehulpmiddel voor op Ubuntu-gebaseerde distributies" -#: src/Gtk/MainWindow.vala:510 +#: src/Gtk/MainWindow.vala:504 msgid "Forked" msgstr "" -#: src/Gtk/MainWindow.vala:510 +#: src/Gtk/MainWindow.vala:504 msgid "Original" msgstr "" -#: src/Gtk/MainWindow.vala:531 src/Gtk/MainWindow.vala:661 +#: src/Gtk/MainWindow.vala:525 src/Gtk/MainWindow.vala:655 #, fuzzy msgid "Internet connection is not active." msgstr "U bent niet verbonden met het internet" -#: src/Gtk/MainWindow.vala:550 +#: src/Gtk/MainWindow.vala:544 msgid "Refreshing..." msgstr "Bezig met verversen..." -#: src/Gtk/MainWindow.vala:644 +#: src/Gtk/MainWindow.vala:638 #, fuzzy msgid "available" msgstr "Beschikbare pakketten" -#: src/Gtk/MainWindow.vala:656 +#: src/Gtk/MainWindow.vala:650 #, fuzzy msgid "Already Installed" msgstr "Geïnstalleerd" @@ -550,7 +550,7 @@ msgstr "Ontbrekend pictogram" msgid "File deleted" msgstr "Bestand verwijderd" -#: src/Utility/TeeJee.FileSystem.vala:80 src/Utility/TeeJee.FileSystem.vala:278 +#: src/Utility/TeeJee.FileSystem.vala:80 src/Utility/TeeJee.FileSystem.vala:276 msgid "Failed to delete file" msgstr "Verwijderen van map is mislukt" @@ -598,7 +598,7 @@ msgstr "Map gecreëerd" msgid "Failed to create dir" msgstr "Creëren van map is mislukt" -#: src/Utility/TeeJee.FileSystem.vala:277 +#: src/Utility/TeeJee.FileSystem.vala:275 #, fuzzy msgid "Deleted" msgstr "Bestand verwijderd" diff --git a/po/pl.po b/po/pl.po index 30fa3f1a..907afcec 100644 --- a/po/pl.po +++ b/po/pl.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-12 03:13-0400\n" +"POT-Creation-Date: 2020-05-12 04:22-0400\n" "PO-Revision-Date: 2017-08-12 15:26+0200\n" "Last-Translator: Waldemar Konik \n" "Language-Team: Polish\n" @@ -90,7 +90,7 @@ msgid "Installed" msgstr "Zainstalowany" #: src/Common/LinuxKernel.vala:1148 src/Gtk/MainWindow.vala:186 -#: src/Gtk/MainWindow.vala:634 src/Gtk/MainWindow.vala:648 +#: src/Gtk/MainWindow.vala:628 src/Gtk/MainWindow.vala:642 msgid "Running" msgstr "Uruchomiony" @@ -108,7 +108,7 @@ msgstr "OK" msgid "ERROR" msgstr "BŁĄD" -#: src/Common/LinuxKernel.vala:1222 src/Gtk/MainWindow.vala:656 +#: src/Common/LinuxKernel.vala:1222 src/Gtk/MainWindow.vala:650 msgid "This kernel is already installed." msgstr "To jądro jest już zainstalowane." @@ -216,7 +216,7 @@ msgstr "Zainstaluj wybrane jądro" msgid "Uninstall specified kernels" msgstr "Zainstaluj wybrane jądro" -#: src/Console/AppConsole.vala:81 src/Gtk/MainWindow.vala:401 +#: src/Console/AppConsole.vala:81 src/Gtk/MainWindow.vala:395 msgid "Remove installed kernels older than running kernel" msgstr "" @@ -305,7 +305,7 @@ msgid "Kernel %s Available" msgstr "Dostępne pakiety" #: src/Console/AppConsole.vala:346 src/Console/AppConsole.vala:362 -#: src/Gtk/MainWindow.vala:335 +#: src/Gtk/MainWindow.vala:333 msgid "Install" msgstr "Zainstaluj" @@ -329,91 +329,91 @@ msgstr "Jądro" msgid "Status" msgstr "Status" -#: src/Gtk/MainWindow.vala:319 +#: src/Gtk/MainWindow.vala:317 msgid "Refresh" msgstr "Odśwież" -#: src/Gtk/MainWindow.vala:326 src/Utility/TeeJee.System.vala:42 +#: src/Gtk/MainWindow.vala:324 src/Utility/TeeJee.System.vala:42 msgid "Internet connection is not active" msgstr "Brak połączenia z internetem" -#: src/Gtk/MainWindow.vala:326 src/Gtk/MainWindow.vala:531 -#: src/Gtk/MainWindow.vala:661 +#: src/Gtk/MainWindow.vala:324 src/Gtk/MainWindow.vala:525 +#: src/Gtk/MainWindow.vala:655 msgid "No Internet" msgstr "Brak internetu" -#: src/Gtk/MainWindow.vala:344 +#: src/Gtk/MainWindow.vala:342 msgid "Multiple Kernels Selected" msgstr "Wybrano kilka jąder" -#: src/Gtk/MainWindow.vala:344 +#: src/Gtk/MainWindow.vala:342 msgid "Select a single kernel to install" msgstr "Wybierz pojedyncze jądro do instalacji" -#: src/Gtk/MainWindow.vala:347 src/Gtk/MainWindow.vala:358 +#: src/Gtk/MainWindow.vala:345 src/Gtk/MainWindow.vala:356 msgid "Not Selected" msgstr "Nie wybrany" -#: src/Gtk/MainWindow.vala:347 +#: src/Gtk/MainWindow.vala:345 msgid "Select the kernel to install" msgstr "Wybierz pojedyncze do instalacji" -#: src/Gtk/MainWindow.vala:352 +#: src/Gtk/MainWindow.vala:350 msgid "Remove" msgstr "Usuń" -#: src/Gtk/MainWindow.vala:358 +#: src/Gtk/MainWindow.vala:356 msgid "Select the kernels to remove" msgstr "Wybierz jądro do usunięcia" -#: src/Gtk/MainWindow.vala:392 src/Gtk/MainWindow.vala:426 -#: src/Gtk/MainWindow.vala:693 +#: src/Gtk/MainWindow.vala:386 src/Gtk/MainWindow.vala:420 +#: src/Gtk/MainWindow.vala:687 msgid "Close window to exit..." msgstr "" -#: src/Gtk/MainWindow.vala:400 +#: src/Gtk/MainWindow.vala:394 msgid "Purge" msgstr "" -#: src/Gtk/MainWindow.vala:433 +#: src/Gtk/MainWindow.vala:427 msgid "Changes" msgstr "Zmiany" -#: src/Gtk/MainWindow.vala:444 src/Gtk/SettingsDialog.vala:52 +#: src/Gtk/MainWindow.vala:438 src/Gtk/SettingsDialog.vala:52 msgid "Settings" msgstr "Ustawienia" -#: src/Gtk/MainWindow.vala:465 +#: src/Gtk/MainWindow.vala:459 msgid "About" msgstr "O programie" -#: src/Gtk/MainWindow.vala:509 +#: src/Gtk/MainWindow.vala:503 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Narzędzie uaktualniania jądra dla dystrybucji z rodziny Ubuntu" -#: src/Gtk/MainWindow.vala:510 +#: src/Gtk/MainWindow.vala:504 msgid "Forked" msgstr "" -#: src/Gtk/MainWindow.vala:510 +#: src/Gtk/MainWindow.vala:504 msgid "Original" msgstr "" -#: src/Gtk/MainWindow.vala:531 src/Gtk/MainWindow.vala:661 +#: src/Gtk/MainWindow.vala:525 src/Gtk/MainWindow.vala:655 #, fuzzy msgid "Internet connection is not active." msgstr "Brak połączenia z internetem" -#: src/Gtk/MainWindow.vala:550 +#: src/Gtk/MainWindow.vala:544 msgid "Refreshing..." msgstr "Odświeżam..." -#: src/Gtk/MainWindow.vala:644 +#: src/Gtk/MainWindow.vala:638 #, fuzzy msgid "available" msgstr "Dostępne pakiety" -#: src/Gtk/MainWindow.vala:656 +#: src/Gtk/MainWindow.vala:650 #, fuzzy msgid "Already Installed" msgstr "Zainstalowany" @@ -546,7 +546,7 @@ msgstr "Brakująca ikona" msgid "File deleted" msgstr "Plik usunięty" -#: src/Utility/TeeJee.FileSystem.vala:80 src/Utility/TeeJee.FileSystem.vala:278 +#: src/Utility/TeeJee.FileSystem.vala:80 src/Utility/TeeJee.FileSystem.vala:276 msgid "Failed to delete file" msgstr "Nie udało się usunąć pliku" @@ -594,7 +594,7 @@ msgstr "Utworzono katalog" msgid "Failed to create dir" msgstr "Nie udało się utworzyć katalogu" -#: src/Utility/TeeJee.FileSystem.vala:277 +#: src/Utility/TeeJee.FileSystem.vala:275 #, fuzzy msgid "Deleted" msgstr "Plik usunięty" diff --git a/po/ru.po b/po/ru.po index cd373255..fa66f9bb 100644 --- a/po/ru.po +++ b/po/ru.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-12 03:13-0400\n" +"POT-Creation-Date: 2020-05-12 04:22-0400\n" "PO-Revision-Date: 2016-12-13 16:46+0300\n" "Last-Translator: Faust3000 \n" "Language-Team: Russian \n" @@ -93,7 +93,7 @@ msgid "Installed" msgstr "Установлено" #: src/Common/LinuxKernel.vala:1148 src/Gtk/MainWindow.vala:186 -#: src/Gtk/MainWindow.vala:634 src/Gtk/MainWindow.vala:648 +#: src/Gtk/MainWindow.vala:628 src/Gtk/MainWindow.vala:642 msgid "Running" msgstr "Используется" @@ -111,7 +111,7 @@ msgstr "OK" msgid "ERROR" msgstr "ОШИБКА" -#: src/Common/LinuxKernel.vala:1222 src/Gtk/MainWindow.vala:656 +#: src/Common/LinuxKernel.vala:1222 src/Gtk/MainWindow.vala:650 msgid "This kernel is already installed." msgstr "Это ядро уже установлено." @@ -220,7 +220,7 @@ msgstr "Установить указанную ветку ядра" msgid "Uninstall specified kernels" msgstr "Установить указанную ветку ядра" -#: src/Console/AppConsole.vala:81 src/Gtk/MainWindow.vala:401 +#: src/Console/AppConsole.vala:81 src/Gtk/MainWindow.vala:395 msgid "Remove installed kernels older than running kernel" msgstr "Удалить более старшие установленные ядра, чем используемое" @@ -309,7 +309,7 @@ msgid "Kernel %s Available" msgstr "Установлено" #: src/Console/AppConsole.vala:346 src/Console/AppConsole.vala:362 -#: src/Gtk/MainWindow.vala:335 +#: src/Gtk/MainWindow.vala:333 msgid "Install" msgstr "Установить" @@ -333,91 +333,91 @@ msgstr "Ядро" msgid "Status" msgstr "Состояние" -#: src/Gtk/MainWindow.vala:319 +#: src/Gtk/MainWindow.vala:317 msgid "Refresh" msgstr "Обновить" -#: src/Gtk/MainWindow.vala:326 src/Utility/TeeJee.System.vala:42 +#: src/Gtk/MainWindow.vala:324 src/Utility/TeeJee.System.vala:42 msgid "Internet connection is not active" msgstr "Интернет соединение не активно" -#: src/Gtk/MainWindow.vala:326 src/Gtk/MainWindow.vala:531 -#: src/Gtk/MainWindow.vala:661 +#: src/Gtk/MainWindow.vala:324 src/Gtk/MainWindow.vala:525 +#: src/Gtk/MainWindow.vala:655 msgid "No Internet" msgstr "" -#: src/Gtk/MainWindow.vala:344 +#: src/Gtk/MainWindow.vala:342 msgid "Multiple Kernels Selected" msgstr "" -#: src/Gtk/MainWindow.vala:344 +#: src/Gtk/MainWindow.vala:342 msgid "Select a single kernel to install" msgstr "" -#: src/Gtk/MainWindow.vala:347 src/Gtk/MainWindow.vala:358 +#: src/Gtk/MainWindow.vala:345 src/Gtk/MainWindow.vala:356 msgid "Not Selected" msgstr "" -#: src/Gtk/MainWindow.vala:347 +#: src/Gtk/MainWindow.vala:345 msgid "Select the kernel to install" msgstr "" -#: src/Gtk/MainWindow.vala:352 +#: src/Gtk/MainWindow.vala:350 msgid "Remove" msgstr "Удалить" -#: src/Gtk/MainWindow.vala:358 +#: src/Gtk/MainWindow.vala:356 msgid "Select the kernels to remove" msgstr "" -#: src/Gtk/MainWindow.vala:392 src/Gtk/MainWindow.vala:426 -#: src/Gtk/MainWindow.vala:693 +#: src/Gtk/MainWindow.vala:386 src/Gtk/MainWindow.vala:420 +#: src/Gtk/MainWindow.vala:687 msgid "Close window to exit..." msgstr "" -#: src/Gtk/MainWindow.vala:400 +#: src/Gtk/MainWindow.vala:394 msgid "Purge" msgstr "Очистить" -#: src/Gtk/MainWindow.vala:433 +#: src/Gtk/MainWindow.vala:427 msgid "Changes" msgstr "Изменения" -#: src/Gtk/MainWindow.vala:444 src/Gtk/SettingsDialog.vala:52 +#: src/Gtk/MainWindow.vala:438 src/Gtk/SettingsDialog.vala:52 msgid "Settings" msgstr "Настройки" -#: src/Gtk/MainWindow.vala:465 +#: src/Gtk/MainWindow.vala:459 msgid "About" msgstr "О программе" -#: src/Gtk/MainWindow.vala:509 +#: src/Gtk/MainWindow.vala:503 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Программа обновления ядра для дистрибутивов на базе Ubuntu" -#: src/Gtk/MainWindow.vala:510 +#: src/Gtk/MainWindow.vala:504 msgid "Forked" msgstr "" -#: src/Gtk/MainWindow.vala:510 +#: src/Gtk/MainWindow.vala:504 msgid "Original" msgstr "" -#: src/Gtk/MainWindow.vala:531 src/Gtk/MainWindow.vala:661 +#: src/Gtk/MainWindow.vala:525 src/Gtk/MainWindow.vala:655 #, fuzzy msgid "Internet connection is not active." msgstr "Интернет соединение не активно" -#: src/Gtk/MainWindow.vala:550 +#: src/Gtk/MainWindow.vala:544 msgid "Refreshing..." msgstr "Обновление..." -#: src/Gtk/MainWindow.vala:644 +#: src/Gtk/MainWindow.vala:638 #, fuzzy msgid "available" msgstr "Установлено" -#: src/Gtk/MainWindow.vala:656 +#: src/Gtk/MainWindow.vala:650 #, fuzzy msgid "Already Installed" msgstr "Установлено" @@ -551,7 +551,7 @@ msgstr "Значок отсутствует" msgid "File deleted" msgstr "Не удалось удалить файл" -#: src/Utility/TeeJee.FileSystem.vala:80 src/Utility/TeeJee.FileSystem.vala:278 +#: src/Utility/TeeJee.FileSystem.vala:80 src/Utility/TeeJee.FileSystem.vala:276 msgid "Failed to delete file" msgstr "Не удалось удалить файл" @@ -603,7 +603,7 @@ msgstr "Используемая кэш-папка" msgid "Failed to create dir" msgstr "Не удалось создать папку" -#: src/Utility/TeeJee.FileSystem.vala:277 +#: src/Utility/TeeJee.FileSystem.vala:275 #, fuzzy msgid "Deleted" msgstr "Не удалось удалить файл" diff --git a/po/sv.po b/po/sv.po index bf02c005..f5568dbe 100644 --- a/po/sv.po +++ b/po/sv.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-12 03:13-0400\n" +"POT-Creation-Date: 2020-05-12 04:22-0400\n" "PO-Revision-Date: 2018-01-13 16:56+0100\n" "Last-Translator: Åke Engelbrektson \n" "Language-Team: Svenska Språkfiler \n" @@ -92,7 +92,7 @@ msgid "Installed" msgstr "Installerad" #: src/Common/LinuxKernel.vala:1148 src/Gtk/MainWindow.vala:186 -#: src/Gtk/MainWindow.vala:634 src/Gtk/MainWindow.vala:648 +#: src/Gtk/MainWindow.vala:628 src/Gtk/MainWindow.vala:642 msgid "Running" msgstr "Körs" @@ -110,7 +110,7 @@ msgstr "OK" msgid "ERROR" msgstr "FEL" -#: src/Common/LinuxKernel.vala:1222 src/Gtk/MainWindow.vala:656 +#: src/Common/LinuxKernel.vala:1222 src/Gtk/MainWindow.vala:650 msgid "This kernel is already installed." msgstr "Denna kärna är redan installerad" @@ -216,7 +216,7 @@ msgstr "Installera specificerad kärna" msgid "Uninstall specified kernels" msgstr "Installera specificerad kärna" -#: src/Console/AppConsole.vala:81 src/Gtk/MainWindow.vala:401 +#: src/Console/AppConsole.vala:81 src/Gtk/MainWindow.vala:395 msgid "Remove installed kernels older than running kernel" msgstr "Ta bort installerade kärnor äldre än den som körs" @@ -305,7 +305,7 @@ msgid "Kernel %s Available" msgstr "Tillgängliga paket" #: src/Console/AppConsole.vala:346 src/Console/AppConsole.vala:362 -#: src/Gtk/MainWindow.vala:335 +#: src/Gtk/MainWindow.vala:333 msgid "Install" msgstr "Installera" @@ -329,91 +329,91 @@ msgstr "Kärna" msgid "Status" msgstr "Status" -#: src/Gtk/MainWindow.vala:319 +#: src/Gtk/MainWindow.vala:317 msgid "Refresh" msgstr "Uppdatera" -#: src/Gtk/MainWindow.vala:326 src/Utility/TeeJee.System.vala:42 +#: src/Gtk/MainWindow.vala:324 src/Utility/TeeJee.System.vala:42 msgid "Internet connection is not active" msgstr "Internetuppkopplingen är inte aktiv" -#: src/Gtk/MainWindow.vala:326 src/Gtk/MainWindow.vala:531 -#: src/Gtk/MainWindow.vala:661 +#: src/Gtk/MainWindow.vala:324 src/Gtk/MainWindow.vala:525 +#: src/Gtk/MainWindow.vala:655 msgid "No Internet" msgstr "Inget internet" -#: src/Gtk/MainWindow.vala:344 +#: src/Gtk/MainWindow.vala:342 msgid "Multiple Kernels Selected" msgstr "Flera kärnor markerade" -#: src/Gtk/MainWindow.vala:344 +#: src/Gtk/MainWindow.vala:342 msgid "Select a single kernel to install" msgstr "Välj en enstaka kärna att installera" -#: src/Gtk/MainWindow.vala:347 src/Gtk/MainWindow.vala:358 +#: src/Gtk/MainWindow.vala:345 src/Gtk/MainWindow.vala:356 msgid "Not Selected" msgstr "Inte vald" -#: src/Gtk/MainWindow.vala:347 +#: src/Gtk/MainWindow.vala:345 msgid "Select the kernel to install" msgstr "Välj kärna för installation" -#: src/Gtk/MainWindow.vala:352 +#: src/Gtk/MainWindow.vala:350 msgid "Remove" msgstr "Ta bort" -#: src/Gtk/MainWindow.vala:358 +#: src/Gtk/MainWindow.vala:356 msgid "Select the kernels to remove" msgstr "Välj kärnor för borttagning" -#: src/Gtk/MainWindow.vala:392 src/Gtk/MainWindow.vala:426 -#: src/Gtk/MainWindow.vala:693 +#: src/Gtk/MainWindow.vala:386 src/Gtk/MainWindow.vala:420 +#: src/Gtk/MainWindow.vala:687 msgid "Close window to exit..." msgstr "" -#: src/Gtk/MainWindow.vala:400 +#: src/Gtk/MainWindow.vala:394 msgid "Purge" msgstr "Rensa" -#: src/Gtk/MainWindow.vala:433 +#: src/Gtk/MainWindow.vala:427 msgid "Changes" msgstr "Ändringar" -#: src/Gtk/MainWindow.vala:444 src/Gtk/SettingsDialog.vala:52 +#: src/Gtk/MainWindow.vala:438 src/Gtk/SettingsDialog.vala:52 msgid "Settings" msgstr "Inställningar" -#: src/Gtk/MainWindow.vala:465 +#: src/Gtk/MainWindow.vala:459 msgid "About" msgstr "Om" -#: src/Gtk/MainWindow.vala:509 +#: src/Gtk/MainWindow.vala:503 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Kärnuppgraderingsverktyg för Ubuntu-baserade distributioner" -#: src/Gtk/MainWindow.vala:510 +#: src/Gtk/MainWindow.vala:504 msgid "Forked" msgstr "" -#: src/Gtk/MainWindow.vala:510 +#: src/Gtk/MainWindow.vala:504 msgid "Original" msgstr "" -#: src/Gtk/MainWindow.vala:531 src/Gtk/MainWindow.vala:661 +#: src/Gtk/MainWindow.vala:525 src/Gtk/MainWindow.vala:655 #, fuzzy msgid "Internet connection is not active." msgstr "Internetuppkopplingen är inte aktiv" -#: src/Gtk/MainWindow.vala:550 +#: src/Gtk/MainWindow.vala:544 msgid "Refreshing..." msgstr "Uppdaterar ..." -#: src/Gtk/MainWindow.vala:644 +#: src/Gtk/MainWindow.vala:638 #, fuzzy msgid "available" msgstr "Tillgängliga paket" -#: src/Gtk/MainWindow.vala:656 +#: src/Gtk/MainWindow.vala:650 #, fuzzy msgid "Already Installed" msgstr "Installerad" @@ -546,7 +546,7 @@ msgstr "Saknad ikon" msgid "File deleted" msgstr "Fil borttagen" -#: src/Utility/TeeJee.FileSystem.vala:80 src/Utility/TeeJee.FileSystem.vala:278 +#: src/Utility/TeeJee.FileSystem.vala:80 src/Utility/TeeJee.FileSystem.vala:276 msgid "Failed to delete file" msgstr "Kunde inte ta bort filen" @@ -594,7 +594,7 @@ msgstr "Skapade mapp" msgid "Failed to create dir" msgstr "Kunde inte skapa mappen" -#: src/Utility/TeeJee.FileSystem.vala:277 +#: src/Utility/TeeJee.FileSystem.vala:275 #, fuzzy msgid "Deleted" msgstr "Fil borttagen" diff --git a/po/tr.po b/po/tr.po index e4916cc7..8f24a529 100644 --- a/po/tr.po +++ b/po/tr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-12 03:13-0400\n" +"POT-Creation-Date: 2020-05-12 04:22-0400\n" "PO-Revision-Date: 2020-03-10 15:59+0300\n" "Last-Translator: Gökhan GÖKKAYA \n" "Language-Team: Turkish\n" @@ -88,7 +88,7 @@ msgid "Installed" msgstr "Kurulu" #: src/Common/LinuxKernel.vala:1148 src/Gtk/MainWindow.vala:186 -#: src/Gtk/MainWindow.vala:634 src/Gtk/MainWindow.vala:648 +#: src/Gtk/MainWindow.vala:628 src/Gtk/MainWindow.vala:642 msgid "Running" msgstr "Çalışıyor" @@ -106,7 +106,7 @@ msgstr "TAMAM" msgid "ERROR" msgstr "HATA" -#: src/Common/LinuxKernel.vala:1222 src/Gtk/MainWindow.vala:656 +#: src/Common/LinuxKernel.vala:1222 src/Gtk/MainWindow.vala:650 msgid "This kernel is already installed." msgstr "Bu çekirdek zaten kurulu." @@ -210,7 +210,7 @@ msgstr "Belirtilen mainline çekirdeğini kur" msgid "Uninstall specified kernels" msgstr "Belirtilen mainline çekirdeğini kur" -#: src/Console/AppConsole.vala:81 src/Gtk/MainWindow.vala:401 +#: src/Console/AppConsole.vala:81 src/Gtk/MainWindow.vala:395 msgid "Remove installed kernels older than running kernel" msgstr "Çalışan çekirdekten eski olan kurulu çekirdekleri kaldır" @@ -298,7 +298,7 @@ msgid "Kernel %s Available" msgstr "Mevcut Paketler" #: src/Console/AppConsole.vala:346 src/Console/AppConsole.vala:362 -#: src/Gtk/MainWindow.vala:335 +#: src/Gtk/MainWindow.vala:333 msgid "Install" msgstr "Kur" @@ -322,91 +322,91 @@ msgstr "Çekirdek" msgid "Status" msgstr "Durum" -#: src/Gtk/MainWindow.vala:319 +#: src/Gtk/MainWindow.vala:317 msgid "Refresh" msgstr "Yenile" -#: src/Gtk/MainWindow.vala:326 src/Utility/TeeJee.System.vala:42 +#: src/Gtk/MainWindow.vala:324 src/Utility/TeeJee.System.vala:42 msgid "Internet connection is not active" msgstr "İnternet bağlantısı aktif değil" -#: src/Gtk/MainWindow.vala:326 src/Gtk/MainWindow.vala:531 -#: src/Gtk/MainWindow.vala:661 +#: src/Gtk/MainWindow.vala:324 src/Gtk/MainWindow.vala:525 +#: src/Gtk/MainWindow.vala:655 msgid "No Internet" msgstr "İnternet Yok" -#: src/Gtk/MainWindow.vala:344 +#: src/Gtk/MainWindow.vala:342 msgid "Multiple Kernels Selected" msgstr "Çoklu Çekirdek Seçildi" -#: src/Gtk/MainWindow.vala:344 +#: src/Gtk/MainWindow.vala:342 msgid "Select a single kernel to install" msgstr "Kurulum için tek çekirdek seçin" -#: src/Gtk/MainWindow.vala:347 src/Gtk/MainWindow.vala:358 +#: src/Gtk/MainWindow.vala:345 src/Gtk/MainWindow.vala:356 msgid "Not Selected" msgstr "Seçilen Yok" -#: src/Gtk/MainWindow.vala:347 +#: src/Gtk/MainWindow.vala:345 msgid "Select the kernel to install" msgstr "Kurulum için çekirdek seçin" -#: src/Gtk/MainWindow.vala:352 +#: src/Gtk/MainWindow.vala:350 msgid "Remove" msgstr "Sil" -#: src/Gtk/MainWindow.vala:358 +#: src/Gtk/MainWindow.vala:356 msgid "Select the kernels to remove" msgstr "Kaldırma için çekirdek seçin" -#: src/Gtk/MainWindow.vala:392 src/Gtk/MainWindow.vala:426 -#: src/Gtk/MainWindow.vala:693 +#: src/Gtk/MainWindow.vala:386 src/Gtk/MainWindow.vala:420 +#: src/Gtk/MainWindow.vala:687 msgid "Close window to exit..." msgstr "" -#: src/Gtk/MainWindow.vala:400 +#: src/Gtk/MainWindow.vala:394 msgid "Purge" msgstr "Temizle" -#: src/Gtk/MainWindow.vala:433 +#: src/Gtk/MainWindow.vala:427 msgid "Changes" msgstr "Değişiklikler" -#: src/Gtk/MainWindow.vala:444 src/Gtk/SettingsDialog.vala:52 +#: src/Gtk/MainWindow.vala:438 src/Gtk/SettingsDialog.vala:52 msgid "Settings" msgstr "Ayarlar" -#: src/Gtk/MainWindow.vala:465 +#: src/Gtk/MainWindow.vala:459 msgid "About" msgstr "Hakkında" -#: src/Gtk/MainWindow.vala:509 +#: src/Gtk/MainWindow.vala:503 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Ubuntu tabanlı dağıtımlar için çekirdek güncelleme aracı" -#: src/Gtk/MainWindow.vala:510 +#: src/Gtk/MainWindow.vala:504 msgid "Forked" msgstr "" -#: src/Gtk/MainWindow.vala:510 +#: src/Gtk/MainWindow.vala:504 msgid "Original" msgstr "" -#: src/Gtk/MainWindow.vala:531 src/Gtk/MainWindow.vala:661 +#: src/Gtk/MainWindow.vala:525 src/Gtk/MainWindow.vala:655 #, fuzzy msgid "Internet connection is not active." msgstr "İnternet bağlantısı aktif değil" -#: src/Gtk/MainWindow.vala:550 +#: src/Gtk/MainWindow.vala:544 msgid "Refreshing..." msgstr "Yenileniyor..." -#: src/Gtk/MainWindow.vala:644 +#: src/Gtk/MainWindow.vala:638 #, fuzzy msgid "available" msgstr "Mevcut Paketler" -#: src/Gtk/MainWindow.vala:656 +#: src/Gtk/MainWindow.vala:650 #, fuzzy msgid "Already Installed" msgstr "Kurulu" @@ -538,7 +538,7 @@ msgstr "Eksik Simge" msgid "File deleted" msgstr "Dosya silindi" -#: src/Utility/TeeJee.FileSystem.vala:80 src/Utility/TeeJee.FileSystem.vala:278 +#: src/Utility/TeeJee.FileSystem.vala:80 src/Utility/TeeJee.FileSystem.vala:276 msgid "Failed to delete file" msgstr "Dosya silme başarısız" @@ -586,7 +586,7 @@ msgstr "Dizin oluşturuldu" msgid "Failed to create dir" msgstr "Dizin oluşturma başarısız" -#: src/Utility/TeeJee.FileSystem.vala:277 +#: src/Utility/TeeJee.FileSystem.vala:275 #, fuzzy msgid "Deleted" msgstr "Dosya silindi" diff --git a/po/uk.po b/po/uk.po index e5b0b924..07cbe633 100644 --- a/po/uk.po +++ b/po/uk.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-12 03:13-0400\n" +"POT-Creation-Date: 2020-05-12 04:22-0400\n" "PO-Revision-Date: 2019-07-25 11:00+0300\n" "Last-Translator: Serhii Golovko \n" "Language-Team: Ukranian \n" @@ -88,7 +88,7 @@ msgid "Installed" msgstr "Встановлено" #: src/Common/LinuxKernel.vala:1148 src/Gtk/MainWindow.vala:186 -#: src/Gtk/MainWindow.vala:634 src/Gtk/MainWindow.vala:648 +#: src/Gtk/MainWindow.vala:628 src/Gtk/MainWindow.vala:642 msgid "Running" msgstr "Використовується" @@ -106,7 +106,7 @@ msgstr "Добре" msgid "ERROR" msgstr "ПОМИЛКА" -#: src/Common/LinuxKernel.vala:1222 src/Gtk/MainWindow.vala:656 +#: src/Common/LinuxKernel.vala:1222 src/Gtk/MainWindow.vala:650 msgid "This kernel is already installed." msgstr "Це ядро вже встановлено." @@ -210,7 +210,7 @@ msgstr "Встановіть конкретне основне ядро" msgid "Uninstall specified kernels" msgstr "Видаліть конкретні ядра" -#: src/Console/AppConsole.vala:81 src/Gtk/MainWindow.vala:401 +#: src/Console/AppConsole.vala:81 src/Gtk/MainWindow.vala:395 msgid "Remove installed kernels older than running kernel" msgstr "Видаліть встановлені ядра, старші за запущене ядро" @@ -300,7 +300,7 @@ msgid "Kernel %s Available" msgstr "Доступні пакети" #: src/Console/AppConsole.vala:346 src/Console/AppConsole.vala:362 -#: src/Gtk/MainWindow.vala:335 +#: src/Gtk/MainWindow.vala:333 msgid "Install" msgstr "Встановити" @@ -324,93 +324,93 @@ msgstr "Ядро" msgid "Status" msgstr "Стан" -#: src/Gtk/MainWindow.vala:319 +#: src/Gtk/MainWindow.vala:317 msgid "Refresh" msgstr "Оновити" -#: src/Gtk/MainWindow.vala:326 src/Utility/TeeJee.System.vala:42 +#: src/Gtk/MainWindow.vala:324 src/Utility/TeeJee.System.vala:42 msgid "Internet connection is not active" msgstr "Інтернет з'єднання не активно" -#: src/Gtk/MainWindow.vala:326 src/Gtk/MainWindow.vala:531 -#: src/Gtk/MainWindow.vala:661 +#: src/Gtk/MainWindow.vala:324 src/Gtk/MainWindow.vala:525 +#: src/Gtk/MainWindow.vala:655 msgid "No Internet" msgstr "Інтернету немає" -#: src/Gtk/MainWindow.vala:344 +#: src/Gtk/MainWindow.vala:342 msgid "Multiple Kernels Selected" msgstr "Вибрано кілька ядер" -#: src/Gtk/MainWindow.vala:344 +#: src/Gtk/MainWindow.vala:342 msgid "Select a single kernel to install" msgstr "Виберіть одне ядро для встановлення" -#: src/Gtk/MainWindow.vala:347 src/Gtk/MainWindow.vala:358 +#: src/Gtk/MainWindow.vala:345 src/Gtk/MainWindow.vala:356 msgid "Not Selected" msgstr "Невибрано" -#: src/Gtk/MainWindow.vala:347 +#: src/Gtk/MainWindow.vala:345 msgid "Select the kernel to install" msgstr "Виберіть ядро для встановлення" -#: src/Gtk/MainWindow.vala:352 +#: src/Gtk/MainWindow.vala:350 msgid "Remove" msgstr "Видалити" -#: src/Gtk/MainWindow.vala:358 +#: src/Gtk/MainWindow.vala:356 msgid "Select the kernels to remove" msgstr "Виберіть ядра для видалення" -#: src/Gtk/MainWindow.vala:392 src/Gtk/MainWindow.vala:426 -#: src/Gtk/MainWindow.vala:693 +#: src/Gtk/MainWindow.vala:386 src/Gtk/MainWindow.vala:420 +#: src/Gtk/MainWindow.vala:687 msgid "Close window to exit..." msgstr "" -#: src/Gtk/MainWindow.vala:400 +#: src/Gtk/MainWindow.vala:394 msgid "Purge" msgstr "Чистити" -#: src/Gtk/MainWindow.vala:433 +#: src/Gtk/MainWindow.vala:427 msgid "Changes" msgstr "Зміни" -#: src/Gtk/MainWindow.vala:444 src/Gtk/SettingsDialog.vala:52 +#: src/Gtk/MainWindow.vala:438 src/Gtk/SettingsDialog.vala:52 msgid "Settings" msgstr "Налаштування" -#: src/Gtk/MainWindow.vala:465 +#: src/Gtk/MainWindow.vala:459 msgid "About" msgstr "Про программу" -#: src/Gtk/MainWindow.vala:509 +#: src/Gtk/MainWindow.vala:503 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Програма оновлення ядра для дистрибутивів на базі Ubuntu" -#: src/Gtk/MainWindow.vala:510 +#: src/Gtk/MainWindow.vala:504 #, fuzzy msgid "Forked" msgstr "Роздвоєний" -#: src/Gtk/MainWindow.vala:510 +#: src/Gtk/MainWindow.vala:504 #, fuzzy msgid "Original" msgstr "Оригінальний" -#: src/Gtk/MainWindow.vala:531 src/Gtk/MainWindow.vala:661 +#: src/Gtk/MainWindow.vala:525 src/Gtk/MainWindow.vala:655 #, fuzzy msgid "Internet connection is not active." msgstr "Інтернет з'єднання не активно" -#: src/Gtk/MainWindow.vala:550 +#: src/Gtk/MainWindow.vala:544 msgid "Refreshing..." msgstr "Оновлення..." -#: src/Gtk/MainWindow.vala:644 +#: src/Gtk/MainWindow.vala:638 #, fuzzy msgid "available" msgstr "Доступні пакети" -#: src/Gtk/MainWindow.vala:656 +#: src/Gtk/MainWindow.vala:650 #, fuzzy msgid "Already Installed" msgstr "Встановлено" @@ -542,7 +542,7 @@ msgstr "Нема значка" msgid "File deleted" msgstr "Файл видалено" -#: src/Utility/TeeJee.FileSystem.vala:80 src/Utility/TeeJee.FileSystem.vala:278 +#: src/Utility/TeeJee.FileSystem.vala:80 src/Utility/TeeJee.FileSystem.vala:276 msgid "Failed to delete file" msgstr "Невдалося видалити файл" @@ -590,7 +590,7 @@ msgstr "Використовувана кеш-папка" msgid "Failed to create dir" msgstr "Невдалося створити теку" -#: src/Utility/TeeJee.FileSystem.vala:277 +#: src/Utility/TeeJee.FileSystem.vala:275 #, fuzzy msgid "Deleted" msgstr "Видалено" diff --git a/src/Common/LinuxKernel.vala b/src/Common/LinuxKernel.vala index 2c98c24d..82ddcaa0 100644 --- a/src/Common/LinuxKernel.vala +++ b/src/Common/LinuxKernel.vala @@ -161,8 +161,8 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { if (ok) log_msg("Removed cached files in '%s'".printf(CACHE_DIR)); } } - - // contructor + + // constructor public LinuxKernel(string _name, bool _is_mainline){ @@ -176,7 +176,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { // parse version string --------- kver = this.kname; - + split_version_string(kver, out version_main, out version_extra); // set page URI ----------- @@ -194,13 +194,13 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { page_uri = ""; } - + // static - + public static void query(bool wait){ check_if_initialized(); - + try { task_is_running = true; cancelled = false; @@ -209,7 +209,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { task_is_running = false; log_error (e.message); } - + if (wait){ while (task_is_running){ sleep(500); //wait @@ -356,8 +356,8 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { check_updates(); - //check_available(); - + //check_available(); // was commented? + task_is_running = false; } @@ -545,7 +545,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { } } } - + kernel_list.sort((a,b)=>{ return a.compare_to(b) * -1; }); diff --git a/src/Console/AppConsole.vala b/src/Console/AppConsole.vala index 3906b51a..dd5e6e45 100644 --- a/src/Console/AppConsole.vala +++ b/src/Console/AppConsole.vala @@ -327,7 +327,7 @@ public class AppConsole : GLib.Object { private void notify_user(){ check_if_internet_is_active(false); - + LinuxKernel.query(true); LinuxKernel.check_updates(); diff --git a/src/Gtk/MainWindow.vala b/src/Gtk/MainWindow.vala index 5006bf9c..80811d57 100644 --- a/src/Gtk/MainWindow.vala +++ b/src/Gtk/MainWindow.vala @@ -242,9 +242,7 @@ public class MainWindow : Gtk.Window{ try { pix_ubuntu = new Gdk.Pixbuf.from_file (INSTALL_PREFIX + "/share/pixmaps/" + BRANDING_SHORTNAME + "/ubuntu-logo.png"); - pix_mainline = new Gdk.Pixbuf.from_file (INSTALL_PREFIX + "/share/pixmaps/" + BRANDING_SHORTNAME + "/tux.png"); - pix_mainline_rc = new Gdk.Pixbuf.from_file (INSTALL_PREFIX + "/share/pixmaps/" + BRANDING_SHORTNAME + "/tux-red.png"); } catch (Error e) { @@ -375,21 +373,17 @@ public class MainWindow : Gtk.Window{ tv_refresh(); }); - string sh = ""; - //sh += "pkexec env DISPLAY=$DISPLAY XAUTHORITY=$XAUTHORITY "; - //sh += BRANDING_SHORTNAME+" --user %s".printf(App.user_login); - sh += BRANDING_SHORTNAME; - if (LOG_DEBUG) sh += " --debug"; - string names = ""; foreach(var kern in selected_kernels){ if (names.length > 0) names += ","; names += "%s".printf(kern.version_main); } - sh += " --remove %s\n".printf(names); - sh += "echo \n"; - sh += "echo '"+_("Close window to exit...")+"'\n"; + string sh = BRANDING_SHORTNAME; + if (LOG_DEBUG) sh += " --debug"; + sh += " --remove %s\n".printf(names) + + "echo \n" + + "echo '"+_("Close window to exit...")+"'\n"; save_bash_script_temp(sh,t_file); term.execute_script(t_file,t_dir); diff --git a/src/Utility/TeeJee.FileSystem.vala b/src/Utility/TeeJee.FileSystem.vala index 38272a7b..ab94cf99 100644 --- a/src/Utility/TeeJee.FileSystem.vala +++ b/src/Utility/TeeJee.FileSystem.vala @@ -265,20 +265,18 @@ namespace TeeJee.FileSystem{ } public bool dir_delete (string dir_path, bool show_message = false){ - + /* Recursively deletes directory along with contents */ - if (!dir_exists(dir_path)){ - return true; - } - + if (!dir_exists(dir_path)) return true; + string cmd = "rm -rf '%s'".printf(escape_single_quote(dir_path)); int status = exec_sync(cmd); string result = _("Deleted"); if (status!=0) result = _("Failed to delete file"); result += ": %s".printf(dir_path); if (show_message) log_msg(result); else log_debug("dir_delete():"+result); - + return (status == 0); } @@ -287,7 +285,7 @@ namespace TeeJee.FileSystem{ int status = exec_sync(cmd, null, null); return (status == 0); } - + // misc -------------------- public string format_file_size ( diff --git a/src/Utility/TeeJee.Process.vala b/src/Utility/TeeJee.Process.vala index 0961755f..2b511034 100644 --- a/src/Utility/TeeJee.Process.vala +++ b/src/Utility/TeeJee.Process.vala @@ -22,7 +22,6 @@ * */ -// FIXME - Stop creating temp dirs and files just to execute shell commands. namespace TeeJee.ProcessHelper{ using TeeJee.Logging; using TeeJee.FileSystem; @@ -61,62 +60,32 @@ namespace TeeJee.ProcessHelper{ catch (SpawnError e) {log_error (e.message);} } - public string? save_bash_script_temp (string commands, string? script_path = null, + public string? save_bash_script_temp (string cmds, string? file = null, bool force_locale = true, bool supress_errors = false){ - string sh_path = script_path; + string f = file; + if ((file == null) || (file.length == 0)){ + string t_dir = create_tmp_dir(); + f = get_temp_file_path(t_dir) + ".sh"; + } /* Creates a temporary bash script with given commands * Returns the script file path */ - var script = new StringBuilder(); - script.append ("#!/bin/bash\n"); - script.append ("\n"); - if (force_locale){ - script.append ("LANG=C\n"); - } - script.append ("\n"); - script.append ("%s\n".printf(commands)); - script.append ("\n\nexitCode=$?\n"); - // FIXME bad behavior just assuming you can create files in cwd any time - script.append ("echo ${exitCode} > ${exitCode}\n"); - script.append ("echo ${exitCode} > status\n"); - - // TODO - because of unwise things exactly like those echo > filename - // commands above, and also just so that the caller always knows - // how to clean up properly without risk of deleting something it shouldn't - // this should be codified into a promise that if we generate a path, - // then the final path element is *always* a new unique temp directory, - // as well as the sh file itself. - bkw - if ((sh_path == null) || (sh_path.length == 0)){ - string t_dir = create_tmp_dir(); - sh_path = get_temp_file_path(t_dir) + ".sh"; - } + string s = "#!/bin/bash\n\n"; + if (force_locale) s += "LANG=C\n"; + s += "\n" + + "%s\n".printf(cmds) + + "exitCode=${?}\n" + + "echo ${exitCode} > ${exitCode}\n" + + "echo ${exitCode} > status\n"; - log_debug("save_bash_script_temp():sh_path:"+sh_path); + log_debug("save_bash_script_temp("+file+"):"+f); - try{ - //write script file - var file = File.new_for_path (sh_path); - if (file.query_exists ()) { - file.delete (); - } - var file_stream = file.create (FileCreateFlags.REPLACE_DESTINATION); - var data_stream = new DataOutputStream (file_stream); - data_stream.put_string (script.str); - data_stream.close(); - - // set execute permission - chmod (sh_path, "u+x"); - - return sh_path; - } - catch (Error e) { - if (!supress_errors){ - log_error (e.message); - } + if(file_write(f,s)){ + chmod (f, "u+x"); + return f; } - return null; } From 7fe6839fa6750659001e0550724a0715ed217d46 Mon Sep 17 00:00:00 2001 From: cappelikan Date: Wed, 13 May 2020 23:56:16 +0300 Subject: [PATCH 090/567] Update uk.po --- po/uk.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/uk.po b/po/uk.po index 07cbe633..2d5e2203 100644 --- a/po/uk.po +++ b/po/uk.po @@ -584,7 +584,7 @@ msgstr "Невдалося перемістити файл" #: src/Utility/TeeJee.FileSystem.vala:252 #: src/Utility/TeeJee.FileSystem.vala:255 msgid "Created directory" -msgstr "Використовувана кеш-папка" +msgstr "Створений каталог" #: src/Utility/TeeJee.FileSystem.vala:262 msgid "Failed to create dir" From 6b3fac1b64679f1a0d25e479f88f1f893d2d31d1 Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Thu, 14 May 2020 05:30:16 -0400 Subject: [PATCH 091/567] don't need all the chown's any more, remove some other junk too. --- po/es.po | 150 ++++++++++++++--------------- po/fr.po | 149 ++++++++++++++-------------- po/hr.po | 149 ++++++++++++++-------------- po/messages.pot | 140 +++++++++++++-------------- po/nl.po | 149 ++++++++++++++-------------- po/pl.po | 149 ++++++++++++++-------------- po/ru.po | 148 ++++++++++++++-------------- po/sv.po | 149 ++++++++++++++-------------- po/tr.po | 149 ++++++++++++++-------------- po/uk.po | 149 ++++++++++++++-------------- src/Common/DownloadManager.vala | 55 ++++------- src/Common/LinuxKernel.vala | 20 ++-- src/Common/Main.vala | 31 ------ src/Console/AppConsole.vala | 7 -- src/Gtk/AppGtk.vala | 7 -- src/Utility/AsyncTask.vala | 22 +---- src/Utility/TeeJee.FileSystem.vala | 44 ++++----- src/Utility/TeeJee.Process.vala | 38 ++------ 18 files changed, 759 insertions(+), 946 deletions(-) diff --git a/po/es.po b/po/es.po index dcb0c6e2..ecb3974d 100644 --- a/po/es.po +++ b/po/es.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-12 04:22-0400\n" +"POT-Creation-Date: 2020-05-14 04:48-0400\n" "PO-Revision-Date: 2018-01-03 02:03-0600\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish\n" @@ -53,16 +53,16 @@ msgstr "Los siguientes kernels serán eliminados:" msgid "Continue ?" msgstr "¿Continuar?" -#: src/Common/LinuxKernel.vala:744 src/Console/AppConsole.vala:309 +#: src/Common/LinuxKernel.vala:744 src/Console/AppConsole.vala:302 msgid "Latest update" msgstr "" -#: src/Common/LinuxKernel.vala:755 src/Console/AppConsole.vala:316 +#: src/Common/LinuxKernel.vala:755 src/Console/AppConsole.vala:309 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:763 src/Console/AppConsole.vala:321 -#: src/Console/AppConsole.vala:371 +#: src/Common/LinuxKernel.vala:763 src/Console/AppConsole.vala:314 +#: src/Console/AppConsole.vala:364 msgid "No updates found" msgstr "No se encontró ninguna actualización" @@ -92,34 +92,34 @@ msgstr "Instalado" msgid "Running" msgstr "En ejecución" -#: src/Common/LinuxKernel.vala:1183 +#: src/Common/LinuxKernel.vala:1182 msgid "Downloading" msgstr "Descargando" -#: src/Common/LinuxKernel.vala:1202 +#: src/Common/LinuxKernel.vala:1201 #: src/Utility/Gtk/CustomMessageDialog.vala:148 #: src/Utility/Gtk/CustomMessageDialog.vala:152 msgid "OK" msgstr "Aceptar" -#: src/Common/LinuxKernel.vala:1208 +#: src/Common/LinuxKernel.vala:1206 msgid "ERROR" msgstr "ERROR" -#: src/Common/LinuxKernel.vala:1222 src/Gtk/MainWindow.vala:650 +#: src/Common/LinuxKernel.vala:1220 src/Gtk/MainWindow.vala:650 msgid "This kernel is already installed." msgstr "Este núcleo ya se instaló." -#: src/Common/LinuxKernel.vala:1248 +#: src/Common/LinuxKernel.vala:1246 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "Instalación finalizada. Se necesita reiniciar para utilizar el núcleo nuevo." -#: src/Common/LinuxKernel.vala:1251 +#: src/Common/LinuxKernel.vala:1249 msgid "Installation completed with errors" msgstr "Instalación finalizada con errores" -#: src/Common/LinuxKernel.vala:1267 +#: src/Common/LinuxKernel.vala:1265 msgid "" "Selected kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -127,19 +127,19 @@ msgstr "" "El núcleo seleccionado está en ejecución y no puede desinstalarse.\n" "Instale otro núcleo antes de desinstalar este." -#: src/Common/LinuxKernel.vala:1272 +#: src/Common/LinuxKernel.vala:1270 msgid "Preparing to remove selected kernels" msgstr "Preparándose para desinstalar los núcleos seleccionados" -#: src/Common/LinuxKernel.vala:1303 src/Common/LinuxKernel.vala:1350 +#: src/Common/LinuxKernel.vala:1301 src/Common/LinuxKernel.vala:1348 msgid "Un-install completed" msgstr "Desinstalación finalizada" -#: src/Common/LinuxKernel.vala:1306 src/Common/LinuxKernel.vala:1353 +#: src/Common/LinuxKernel.vala:1304 src/Common/LinuxKernel.vala:1351 msgid "Un-install completed with errors" msgstr "Desinstalación finalizada con errores" -#: src/Common/LinuxKernel.vala:1319 +#: src/Common/LinuxKernel.vala:1317 msgid "" "This kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -147,20 +147,11 @@ msgstr "" "Este núcleo está en ejecución y no se puede desinstalar.\n" "Instale otro núcleo antes de desinstalar este." -#: src/Common/Main.vala:120 -msgid "Commands listed below are not available on this system" -msgstr "" -"Las órdenes enumeradas a continuación no están disponibles en este sistema" - -#: src/Common/Main.vala:121 -msgid "Please install required packages and try again" -msgstr "Instale los paquetes requeridos e inténtelo de nuevo" - -#: src/Common/Main.vala:267 +#: src/Common/Main.vala:238 msgid "Called from" msgstr "" -#: src/Common/Main.vala:279 +#: src/Common/Main.vala:250 #, fuzzy msgid "Notifications are disabled" msgstr "Notificación" @@ -170,135 +161,135 @@ msgstr "Notificación" msgid "File not found: %s" msgstr "No se encontró el archivo: %s" -#: src/Console/AppConsole.vala:69 src/Gtk/AppGtk.vala:156 +#: src/Console/AppConsole.vala:62 src/Gtk/AppGtk.vala:149 msgid "Syntax" msgstr "Sintaxis" -#: src/Console/AppConsole.vala:71 +#: src/Console/AppConsole.vala:64 msgid "Commands" msgstr "Comandos" -#: src/Console/AppConsole.vala:73 +#: src/Console/AppConsole.vala:66 msgid "Check for kernel updates" msgstr "Buscar actualizaciones del núcleo" -#: src/Console/AppConsole.vala:74 +#: src/Console/AppConsole.vala:67 msgid "Check for kernel updates and notify current user" msgstr "Compruebe las actualizaciones del kernel y notifique al usuario actual" -#: src/Console/AppConsole.vala:75 +#: src/Console/AppConsole.vala:68 msgid "List all available mainline kernels" msgstr "Mostrar todos los núcleos troncales disponibles" -#: src/Console/AppConsole.vala:76 +#: src/Console/AppConsole.vala:69 msgid "List installed kernels" msgstr "Mostrar kernels disponibles" -#: src/Console/AppConsole.vala:77 +#: src/Console/AppConsole.vala:70 msgid "Install latest mainline kernel" msgstr "Instalar kernel troncal especificado" -#: src/Console/AppConsole.vala:78 +#: src/Console/AppConsole.vala:71 msgid "Install latest point update for current series" msgstr "" -#: src/Console/AppConsole.vala:79 +#: src/Console/AppConsole.vala:72 msgid "Install specified mainline kernel" msgstr "Instalar núcleo troncal especificado" -#: src/Console/AppConsole.vala:80 +#: src/Console/AppConsole.vala:73 #, fuzzy msgid "Uninstall specified kernels" msgstr "Instalar núcleo troncal especificado" -#: src/Console/AppConsole.vala:81 src/Gtk/MainWindow.vala:395 +#: src/Console/AppConsole.vala:74 src/Gtk/MainWindow.vala:395 msgid "Remove installed kernels older than running kernel" msgstr "" -#: src/Console/AppConsole.vala:82 +#: src/Console/AppConsole.vala:75 #, fuzzy msgid "Download specified kernels" msgstr "Descargar paquetes del núcleo especificado" -#: src/Console/AppConsole.vala:83 +#: src/Console/AppConsole.vala:76 msgid "Remove files from application cache" msgstr "Quitar archivos de la antememoria de la aplicación" -#: src/Console/AppConsole.vala:84 +#: src/Console/AppConsole.vala:77 msgid "Show unstable and RC releases" msgstr "Ocultar versiones inestables y RC" -#: src/Console/AppConsole.vala:86 src/Gtk/AppGtk.vala:158 +#: src/Console/AppConsole.vala:79 src/Gtk/AppGtk.vala:151 msgid "Options" msgstr "Opciones" -#: src/Console/AppConsole.vala:88 +#: src/Console/AppConsole.vala:81 msgid "Enable verbose debugging output" msgstr "" -#: src/Console/AppConsole.vala:89 +#: src/Console/AppConsole.vala:82 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "Asumir Sí para todas las solicitudes (modo no interactivo)" -#: src/Console/AppConsole.vala:90 +#: src/Console/AppConsole.vala:83 msgid "Override user" msgstr "" -#: src/Console/AppConsole.vala:93 +#: src/Console/AppConsole.vala:86 msgid "A version string taken from the output of --list" msgstr "" -#: src/Console/AppConsole.vala:94 +#: src/Console/AppConsole.vala:87 msgid "" "One or more version strings (comma-separated) taken from the output of --list" msgstr "" -#: src/Console/AppConsole.vala:169 src/Gtk/AppGtk.vala:143 +#: src/Console/AppConsole.vala:162 src/Gtk/AppGtk.vala:136 msgid "Unknown option" msgstr "Opción desconocida" -#: src/Console/AppConsole.vala:171 src/Console/AppConsole.vala:263 -#: src/Console/AppConsole.vala:291 +#: src/Console/AppConsole.vala:164 src/Console/AppConsole.vala:256 +#: src/Console/AppConsole.vala:284 #, fuzzy msgid "Run" msgstr "En ejecución" -#: src/Console/AppConsole.vala:171 +#: src/Console/AppConsole.vala:164 #, fuzzy msgid "to list all options" msgstr "Mostrar todas las opciones" -#: src/Console/AppConsole.vala:236 src/Console/AppConsole.vala:271 +#: src/Console/AppConsole.vala:229 src/Console/AppConsole.vala:264 msgid "No kernels specified" msgstr "" -#: src/Console/AppConsole.vala:242 +#: src/Console/AppConsole.vala:235 msgid "Multiple kernels selected for installation. Select only one." msgstr "Se seleccionaron varios núcleos para su instalación. Elija solo uno." -#: src/Console/AppConsole.vala:260 src/Gtk/MainWindow.vala:100 +#: src/Console/AppConsole.vala:253 src/Gtk/MainWindow.vala:100 msgid "Could not find requested version" msgstr "No se pudo encontrar la versión solicitada" -#: src/Console/AppConsole.vala:263 +#: src/Console/AppConsole.vala:256 msgid "and use a version string listed in first column" msgstr "" -#: src/Console/AppConsole.vala:290 +#: src/Console/AppConsole.vala:283 msgid "Command not specified" msgstr "Coomand no especificado" -#: src/Console/AppConsole.vala:291 +#: src/Console/AppConsole.vala:284 #, fuzzy msgid "to list all commands" msgstr "Mostrar todas las opciones" -#: src/Console/AppConsole.vala:343 src/Console/AppConsole.vala:359 +#: src/Console/AppConsole.vala:336 src/Console/AppConsole.vala:352 #, fuzzy, c-format msgid "Kernel %s Available" msgstr "Paquetes disponibles" -#: src/Console/AppConsole.vala:346 src/Console/AppConsole.vala:362 +#: src/Console/AppConsole.vala:339 src/Console/AppConsole.vala:355 #: src/Gtk/MainWindow.vala:333 msgid "Install" msgstr "Instalar" @@ -307,11 +298,11 @@ msgstr "Instalar" msgid "Show" msgstr "" -#: src/Gtk/AppGtk.vala:160 +#: src/Gtk/AppGtk.vala:153 msgid "Print debug information" msgstr "Mostrar información de depuración" -#: src/Gtk/AppGtk.vala:161 +#: src/Gtk/AppGtk.vala:154 msgid "Show all options" msgstr "Mostrar todas las opciones" @@ -536,13 +527,15 @@ msgstr "No" msgid "Missing Icon" msgstr "Falta el icono" -#: src/Utility/TeeJee.FileSystem.vala:71 src/Utility/TeeJee.FileSystem.vala:74 +#: src/Utility/TeeJee.FileSystem.vala:70 src/Utility/TeeJee.FileSystem.vala:73 +#, fuzzy msgid "File deleted" -msgstr "Se eliminó el archivo" +msgstr "Se guardó el archivo" -#: src/Utility/TeeJee.FileSystem.vala:80 src/Utility/TeeJee.FileSystem.vala:276 +#: src/Utility/TeeJee.FileSystem.vala:79 src/Utility/TeeJee.FileSystem.vala:273 +#, fuzzy msgid "Failed to delete file" -msgstr "Falló la eliminación del archivo" +msgstr "Falló la escritura del archivo" #: src/Utility/TeeJee.FileSystem.vala:99 msgid "Failed to read file" @@ -553,45 +546,44 @@ msgstr "Falló la lectura del archivo" msgid "File saved" msgstr "Se guardó el archivo" -#: src/Utility/TeeJee.FileSystem.vala:139 +#: src/Utility/TeeJee.FileSystem.vala:137 msgid "Failed to write file" msgstr "Falló la escritura del archivo" -#: src/Utility/TeeJee.FileSystem.vala:152 -#: src/Utility/TeeJee.FileSystem.vala:155 +#: src/Utility/TeeJee.FileSystem.vala:150 +#: src/Utility/TeeJee.FileSystem.vala:153 msgid "File copied" msgstr "Se copió el archivo" -#: src/Utility/TeeJee.FileSystem.vala:163 +#: src/Utility/TeeJee.FileSystem.vala:161 msgid "Failed to copy file" msgstr "Falló la copia del archivo" -#: src/Utility/TeeJee.FileSystem.vala:173 +#: src/Utility/TeeJee.FileSystem.vala:171 msgid "File not found" msgstr "No se encontró el archivo" -#: src/Utility/TeeJee.FileSystem.vala:187 -#: src/Utility/TeeJee.FileSystem.vala:190 +#: src/Utility/TeeJee.FileSystem.vala:185 +#: src/Utility/TeeJee.FileSystem.vala:188 msgid "File moved" msgstr "Se trasladó el archivo" -#: src/Utility/TeeJee.FileSystem.vala:195 +#: src/Utility/TeeJee.FileSystem.vala:193 msgid "Failed to move file" msgstr "Falló el traslado del archivo" -#: src/Utility/TeeJee.FileSystem.vala:252 -#: src/Utility/TeeJee.FileSystem.vala:255 +#: src/Utility/TeeJee.FileSystem.vala:250 +#: src/Utility/TeeJee.FileSystem.vala:253 msgid "Created directory" msgstr "Se creó el directorio" -#: src/Utility/TeeJee.FileSystem.vala:262 +#: src/Utility/TeeJee.FileSystem.vala:260 msgid "Failed to create dir" msgstr "Falló la creación del directorio" -#: src/Utility/TeeJee.FileSystem.vala:275 -#, fuzzy +#: src/Utility/TeeJee.FileSystem.vala:272 msgid "Deleted" -msgstr "Se eliminó el archivo" +msgstr "" #: src/Utility/TeeJee.Logging.vala:59 msgid "E" diff --git a/po/fr.po b/po/fr.po index 119f21d0..92b33f1f 100644 --- a/po/fr.po +++ b/po/fr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-12 04:22-0400\n" +"POT-Creation-Date: 2020-05-14 04:48-0400\n" "PO-Revision-Date: 2018-08-05 15:50+0200\n" "Last-Translator: Yolateng0 \n" "Language-Team: French\n" @@ -56,16 +56,16 @@ msgstr "" msgid "Continue ?" msgstr "" -#: src/Common/LinuxKernel.vala:744 src/Console/AppConsole.vala:309 +#: src/Common/LinuxKernel.vala:744 src/Console/AppConsole.vala:302 msgid "Latest update" msgstr "" -#: src/Common/LinuxKernel.vala:755 src/Console/AppConsole.vala:316 +#: src/Common/LinuxKernel.vala:755 src/Console/AppConsole.vala:309 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:763 src/Console/AppConsole.vala:321 -#: src/Console/AppConsole.vala:371 +#: src/Common/LinuxKernel.vala:763 src/Console/AppConsole.vala:314 +#: src/Console/AppConsole.vala:364 msgid "No updates found" msgstr "Aucune mise à jour disponible" @@ -95,35 +95,35 @@ msgstr "Installé" msgid "Running" msgstr "En cours" -#: src/Common/LinuxKernel.vala:1183 +#: src/Common/LinuxKernel.vala:1182 msgid "Downloading" msgstr "Téléchargement" -#: src/Common/LinuxKernel.vala:1202 +#: src/Common/LinuxKernel.vala:1201 #: src/Utility/Gtk/CustomMessageDialog.vala:148 #: src/Utility/Gtk/CustomMessageDialog.vala:152 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:1208 +#: src/Common/LinuxKernel.vala:1206 msgid "ERROR" msgstr "ERREUR" -#: src/Common/LinuxKernel.vala:1222 src/Gtk/MainWindow.vala:650 +#: src/Common/LinuxKernel.vala:1220 src/Gtk/MainWindow.vala:650 msgid "This kernel is already installed." msgstr "Ce noyau est déjà installé." -#: src/Common/LinuxKernel.vala:1248 +#: src/Common/LinuxKernel.vala:1246 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "Installation complétée. Un redémarrage est nécessaire pour utiliser le " "nouveau noyau." -#: src/Common/LinuxKernel.vala:1251 +#: src/Common/LinuxKernel.vala:1249 msgid "Installation completed with errors" msgstr "Installation terminée avec des erreurs" -#: src/Common/LinuxKernel.vala:1267 +#: src/Common/LinuxKernel.vala:1265 msgid "" "Selected kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -131,19 +131,19 @@ msgstr "" "Ce noyau est en cours d'exécution et ne peut pas être supprimé.\n" " Installez un autre noyau avant de retirer celui-ci." -#: src/Common/LinuxKernel.vala:1272 +#: src/Common/LinuxKernel.vala:1270 msgid "Preparing to remove selected kernels" msgstr "Préparation à la suppression des noyaux sélectionnés" -#: src/Common/LinuxKernel.vala:1303 src/Common/LinuxKernel.vala:1350 +#: src/Common/LinuxKernel.vala:1301 src/Common/LinuxKernel.vala:1348 msgid "Un-install completed" msgstr "Désinstallation complète" -#: src/Common/LinuxKernel.vala:1306 src/Common/LinuxKernel.vala:1353 +#: src/Common/LinuxKernel.vala:1304 src/Common/LinuxKernel.vala:1351 msgid "Un-install completed with errors" msgstr "Désinstallation terminée avec des erreurs" -#: src/Common/LinuxKernel.vala:1319 +#: src/Common/LinuxKernel.vala:1317 msgid "" "This kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -151,19 +151,11 @@ msgstr "" "Ce noyau est en cours d'exécution et ne peut pas être supprimé.\n" " Installez un autre noyau avant de retirer celui-ci." -#: src/Common/Main.vala:120 -msgid "Commands listed below are not available on this system" -msgstr "Les commandes listées ne sont pas valables pour ce système" - -#: src/Common/Main.vala:121 -msgid "Please install required packages and try again" -msgstr "Veuillez installer les paquets requis et réessayer" - -#: src/Common/Main.vala:267 +#: src/Common/Main.vala:238 msgid "Called from" msgstr "" -#: src/Common/Main.vala:279 +#: src/Common/Main.vala:250 #, fuzzy msgid "Notifications are disabled" msgstr "Notification" @@ -173,142 +165,142 @@ msgstr "Notification" msgid "File not found: %s" msgstr "Fichier non trouvé: %s" -#: src/Console/AppConsole.vala:69 src/Gtk/AppGtk.vala:156 +#: src/Console/AppConsole.vala:62 src/Gtk/AppGtk.vala:149 msgid "Syntax" msgstr "Syntaxe" -#: src/Console/AppConsole.vala:71 +#: src/Console/AppConsole.vala:64 msgid "Commands" msgstr "" -#: src/Console/AppConsole.vala:73 +#: src/Console/AppConsole.vala:66 msgid "Check for kernel updates" msgstr "Vérifier les mises à jour des noyaux" -#: src/Console/AppConsole.vala:74 +#: src/Console/AppConsole.vala:67 #, fuzzy msgid "Check for kernel updates and notify current user" msgstr "Vérifier les mises à jour des noyaux" -#: src/Console/AppConsole.vala:75 +#: src/Console/AppConsole.vala:68 msgid "List all available mainline kernels" msgstr "Lister tous les noyaux mainline disponibles" -#: src/Console/AppConsole.vala:76 +#: src/Console/AppConsole.vala:69 #, fuzzy msgid "List installed kernels" msgstr "Lister les noyaux disponibles" -#: src/Console/AppConsole.vala:77 +#: src/Console/AppConsole.vala:70 #, fuzzy msgid "Install latest mainline kernel" msgstr "Installer le noyau principal spécifié" -#: src/Console/AppConsole.vala:78 +#: src/Console/AppConsole.vala:71 msgid "Install latest point update for current series" msgstr "" -#: src/Console/AppConsole.vala:79 +#: src/Console/AppConsole.vala:72 msgid "Install specified mainline kernel" msgstr "Installer le noyau principal spécifié" -#: src/Console/AppConsole.vala:80 +#: src/Console/AppConsole.vala:73 #, fuzzy msgid "Uninstall specified kernels" msgstr "Installer le noyau principal spécifié" -#: src/Console/AppConsole.vala:81 src/Gtk/MainWindow.vala:395 +#: src/Console/AppConsole.vala:74 src/Gtk/MainWindow.vala:395 msgid "Remove installed kernels older than running kernel" msgstr "" -#: src/Console/AppConsole.vala:82 +#: src/Console/AppConsole.vala:75 #, fuzzy msgid "Download specified kernels" msgstr "Télécharger les paquets pour des noyaux spécifiques" -#: src/Console/AppConsole.vala:83 +#: src/Console/AppConsole.vala:76 msgid "Remove files from application cache" msgstr "Supprimer les fichiers du cache de l'application" -#: src/Console/AppConsole.vala:84 +#: src/Console/AppConsole.vala:77 #, fuzzy msgid "Show unstable and RC releases" msgstr "Cacher les versions instables et RC" -#: src/Console/AppConsole.vala:86 src/Gtk/AppGtk.vala:158 +#: src/Console/AppConsole.vala:79 src/Gtk/AppGtk.vala:151 msgid "Options" msgstr "Options" -#: src/Console/AppConsole.vala:88 +#: src/Console/AppConsole.vala:81 msgid "Enable verbose debugging output" msgstr "" -#: src/Console/AppConsole.vala:89 +#: src/Console/AppConsole.vala:82 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "" -#: src/Console/AppConsole.vala:90 +#: src/Console/AppConsole.vala:83 msgid "Override user" msgstr "" -#: src/Console/AppConsole.vala:93 +#: src/Console/AppConsole.vala:86 msgid "A version string taken from the output of --list" msgstr "" -#: src/Console/AppConsole.vala:94 +#: src/Console/AppConsole.vala:87 msgid "" "One or more version strings (comma-separated) taken from the output of --list" msgstr "" -#: src/Console/AppConsole.vala:169 src/Gtk/AppGtk.vala:143 +#: src/Console/AppConsole.vala:162 src/Gtk/AppGtk.vala:136 msgid "Unknown option" msgstr "Option inconnue" -#: src/Console/AppConsole.vala:171 src/Console/AppConsole.vala:263 -#: src/Console/AppConsole.vala:291 +#: src/Console/AppConsole.vala:164 src/Console/AppConsole.vala:256 +#: src/Console/AppConsole.vala:284 #, fuzzy msgid "Run" msgstr "En cours" -#: src/Console/AppConsole.vala:171 +#: src/Console/AppConsole.vala:164 #, fuzzy msgid "to list all options" msgstr "Afficher toutes les options" -#: src/Console/AppConsole.vala:236 src/Console/AppConsole.vala:271 +#: src/Console/AppConsole.vala:229 src/Console/AppConsole.vala:264 msgid "No kernels specified" msgstr "" -#: src/Console/AppConsole.vala:242 +#: src/Console/AppConsole.vala:235 msgid "Multiple kernels selected for installation. Select only one." msgstr "" "Plusieurs noyaux sélectionnés pour être installés. Sélectionnez en seulement " "un." -#: src/Console/AppConsole.vala:260 src/Gtk/MainWindow.vala:100 +#: src/Console/AppConsole.vala:253 src/Gtk/MainWindow.vala:100 msgid "Could not find requested version" msgstr "Impossible de trouver la version demandée" -#: src/Console/AppConsole.vala:263 +#: src/Console/AppConsole.vala:256 msgid "and use a version string listed in first column" msgstr "" -#: src/Console/AppConsole.vala:290 +#: src/Console/AppConsole.vala:283 #, fuzzy msgid "Command not specified" msgstr "Impossible de trouver le fichier" -#: src/Console/AppConsole.vala:291 +#: src/Console/AppConsole.vala:284 #, fuzzy msgid "to list all commands" msgstr "Afficher toutes les options" -#: src/Console/AppConsole.vala:343 src/Console/AppConsole.vala:359 +#: src/Console/AppConsole.vala:336 src/Console/AppConsole.vala:352 #, fuzzy, c-format msgid "Kernel %s Available" msgstr "Paquets disponibles" -#: src/Console/AppConsole.vala:346 src/Console/AppConsole.vala:362 +#: src/Console/AppConsole.vala:339 src/Console/AppConsole.vala:355 #: src/Gtk/MainWindow.vala:333 msgid "Install" msgstr "Installer" @@ -317,11 +309,11 @@ msgstr "Installer" msgid "Show" msgstr "" -#: src/Gtk/AppGtk.vala:160 +#: src/Gtk/AppGtk.vala:153 msgid "Print debug information" msgstr "Afficher les informations de débogage" -#: src/Gtk/AppGtk.vala:161 +#: src/Gtk/AppGtk.vala:154 msgid "Show all options" msgstr "Afficher toutes les options" @@ -548,13 +540,15 @@ msgstr "Non" msgid "Missing Icon" msgstr "Icône introuvable" -#: src/Utility/TeeJee.FileSystem.vala:71 src/Utility/TeeJee.FileSystem.vala:74 +#: src/Utility/TeeJee.FileSystem.vala:70 src/Utility/TeeJee.FileSystem.vala:73 +#, fuzzy msgid "File deleted" -msgstr "Fichier effacé" +msgstr "Fichier sauvegardé" -#: src/Utility/TeeJee.FileSystem.vala:80 src/Utility/TeeJee.FileSystem.vala:276 +#: src/Utility/TeeJee.FileSystem.vala:79 src/Utility/TeeJee.FileSystem.vala:273 +#, fuzzy msgid "Failed to delete file" -msgstr "Impossible d'effacer le fichier" +msgstr "Impossible d'écrire le fichier" #: src/Utility/TeeJee.FileSystem.vala:99 msgid "Failed to read file" @@ -565,45 +559,44 @@ msgstr "Impossible de lire le fichier" msgid "File saved" msgstr "Fichier sauvegardé" -#: src/Utility/TeeJee.FileSystem.vala:139 +#: src/Utility/TeeJee.FileSystem.vala:137 msgid "Failed to write file" msgstr "Impossible d'écrire le fichier" -#: src/Utility/TeeJee.FileSystem.vala:152 -#: src/Utility/TeeJee.FileSystem.vala:155 +#: src/Utility/TeeJee.FileSystem.vala:150 +#: src/Utility/TeeJee.FileSystem.vala:153 msgid "File copied" msgstr "Fichier copié" -#: src/Utility/TeeJee.FileSystem.vala:163 +#: src/Utility/TeeJee.FileSystem.vala:161 msgid "Failed to copy file" msgstr "Impossible de copier le fichier" -#: src/Utility/TeeJee.FileSystem.vala:173 +#: src/Utility/TeeJee.FileSystem.vala:171 msgid "File not found" msgstr "Fichier non trouvé" -#: src/Utility/TeeJee.FileSystem.vala:187 -#: src/Utility/TeeJee.FileSystem.vala:190 +#: src/Utility/TeeJee.FileSystem.vala:185 +#: src/Utility/TeeJee.FileSystem.vala:188 msgid "File moved" msgstr "Fichier déplacé" -#: src/Utility/TeeJee.FileSystem.vala:195 +#: src/Utility/TeeJee.FileSystem.vala:193 msgid "Failed to move file" msgstr "Impossible de déplacer le fichier" -#: src/Utility/TeeJee.FileSystem.vala:252 -#: src/Utility/TeeJee.FileSystem.vala:255 +#: src/Utility/TeeJee.FileSystem.vala:250 +#: src/Utility/TeeJee.FileSystem.vala:253 msgid "Created directory" msgstr "Dossier créé" -#: src/Utility/TeeJee.FileSystem.vala:262 +#: src/Utility/TeeJee.FileSystem.vala:260 msgid "Failed to create dir" msgstr "Impossible de créer le nouveau dossier" -#: src/Utility/TeeJee.FileSystem.vala:275 -#, fuzzy +#: src/Utility/TeeJee.FileSystem.vala:272 msgid "Deleted" -msgstr "Fichier effacé" +msgstr "" #: src/Utility/TeeJee.Logging.vala:59 msgid "E" diff --git a/po/hr.po b/po/hr.po index c3832490..38079b51 100644 --- a/po/hr.po +++ b/po/hr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-12 04:22-0400\n" +"POT-Creation-Date: 2020-05-14 04:48-0400\n" "PO-Revision-Date: 2017-12-24 00:52+0100\n" "Last-Translator: gogo \n" "Language-Team: Croatian \n" @@ -56,16 +56,16 @@ msgstr "" msgid "Continue ?" msgstr "" -#: src/Common/LinuxKernel.vala:744 src/Console/AppConsole.vala:309 +#: src/Common/LinuxKernel.vala:744 src/Console/AppConsole.vala:302 msgid "Latest update" msgstr "" -#: src/Common/LinuxKernel.vala:755 src/Console/AppConsole.vala:316 +#: src/Common/LinuxKernel.vala:755 src/Console/AppConsole.vala:309 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:763 src/Console/AppConsole.vala:321 -#: src/Console/AppConsole.vala:371 +#: src/Common/LinuxKernel.vala:763 src/Console/AppConsole.vala:314 +#: src/Console/AppConsole.vala:364 msgid "No updates found" msgstr "Nema pronađenih nadopuna" @@ -95,35 +95,35 @@ msgstr "Instalirano" msgid "Running" msgstr "Pokrenuto" -#: src/Common/LinuxKernel.vala:1183 +#: src/Common/LinuxKernel.vala:1182 msgid "Downloading" msgstr "Preuzimanje" -#: src/Common/LinuxKernel.vala:1202 +#: src/Common/LinuxKernel.vala:1201 #: src/Utility/Gtk/CustomMessageDialog.vala:148 #: src/Utility/Gtk/CustomMessageDialog.vala:152 msgid "OK" msgstr "U redu" -#: src/Common/LinuxKernel.vala:1208 +#: src/Common/LinuxKernel.vala:1206 msgid "ERROR" msgstr "GREŠKA" -#: src/Common/LinuxKernel.vala:1222 src/Gtk/MainWindow.vala:650 +#: src/Common/LinuxKernel.vala:1220 src/Gtk/MainWindow.vala:650 msgid "This kernel is already installed." msgstr "Ovaj kernel je već instaliran." -#: src/Common/LinuxKernel.vala:1248 +#: src/Common/LinuxKernel.vala:1246 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "Instalacija je završena. Potrebno je ponovno pokretanje računala kako bi se " "koristio novi kernel." -#: src/Common/LinuxKernel.vala:1251 +#: src/Common/LinuxKernel.vala:1249 msgid "Installation completed with errors" msgstr "Instalacija je završena s greškama" -#: src/Common/LinuxKernel.vala:1267 +#: src/Common/LinuxKernel.vala:1265 msgid "" "Selected kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -131,19 +131,19 @@ msgstr "" "Odabrani kernel je trenutno pokernut i ne može se ukloniti.\n" " Instalirajte drugi kernel prije uklanjanja trenutnog kernela." -#: src/Common/LinuxKernel.vala:1272 +#: src/Common/LinuxKernel.vala:1270 msgid "Preparing to remove selected kernels" msgstr "Pripremanje uklanjanja odabranih kernela" -#: src/Common/LinuxKernel.vala:1303 src/Common/LinuxKernel.vala:1350 +#: src/Common/LinuxKernel.vala:1301 src/Common/LinuxKernel.vala:1348 msgid "Un-install completed" msgstr "Deinstalacija završena" -#: src/Common/LinuxKernel.vala:1306 src/Common/LinuxKernel.vala:1353 +#: src/Common/LinuxKernel.vala:1304 src/Common/LinuxKernel.vala:1351 msgid "Un-install completed with errors" msgstr "Deinstalacija završena s greškama" -#: src/Common/LinuxKernel.vala:1319 +#: src/Common/LinuxKernel.vala:1317 msgid "" "This kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -151,19 +151,11 @@ msgstr "" "Ovaj kernel je trenutno pokrenut i ne može se ukloniti.\n" " Instalirajte drugi kernel prije uklanjanja trenutnog kernela." -#: src/Common/Main.vala:120 -msgid "Commands listed below are not available on this system" -msgstr "Naredbe navedene ispod nisu dostupne na ovom sustavu" - -#: src/Common/Main.vala:121 -msgid "Please install required packages and try again" -msgstr "Instalirajte potrebni paket i pokušajte ponovno" - -#: src/Common/Main.vala:267 +#: src/Common/Main.vala:238 msgid "Called from" msgstr "" -#: src/Common/Main.vala:279 +#: src/Common/Main.vala:250 #, fuzzy msgid "Notifications are disabled" msgstr "Obavijesti" @@ -173,139 +165,139 @@ msgstr "Obavijesti" msgid "File not found: %s" msgstr "Datoteka nije pronađena: %s" -#: src/Console/AppConsole.vala:69 src/Gtk/AppGtk.vala:156 +#: src/Console/AppConsole.vala:62 src/Gtk/AppGtk.vala:149 msgid "Syntax" msgstr "Sintaksa" -#: src/Console/AppConsole.vala:71 +#: src/Console/AppConsole.vala:64 msgid "Commands" msgstr "" -#: src/Console/AppConsole.vala:73 +#: src/Console/AppConsole.vala:66 msgid "Check for kernel updates" msgstr "Provjeri nadopune kernela" -#: src/Console/AppConsole.vala:74 +#: src/Console/AppConsole.vala:67 #, fuzzy msgid "Check for kernel updates and notify current user" msgstr "Provjeri nadopune kernela" -#: src/Console/AppConsole.vala:75 +#: src/Console/AppConsole.vala:68 msgid "List all available mainline kernels" msgstr "Prikaži sve mainline kernele" -#: src/Console/AppConsole.vala:76 +#: src/Console/AppConsole.vala:69 #, fuzzy msgid "List installed kernels" msgstr "Prikaži sve kernele" -#: src/Console/AppConsole.vala:77 +#: src/Console/AppConsole.vala:70 #, fuzzy msgid "Install latest mainline kernel" msgstr "Instaliraj određeni mainline kernel" -#: src/Console/AppConsole.vala:78 +#: src/Console/AppConsole.vala:71 msgid "Install latest point update for current series" msgstr "" -#: src/Console/AppConsole.vala:79 +#: src/Console/AppConsole.vala:72 msgid "Install specified mainline kernel" msgstr "Instaliraj određeni mainline kernel" -#: src/Console/AppConsole.vala:80 +#: src/Console/AppConsole.vala:73 #, fuzzy msgid "Uninstall specified kernels" msgstr "Instaliraj određeni mainline kernel" -#: src/Console/AppConsole.vala:81 src/Gtk/MainWindow.vala:395 +#: src/Console/AppConsole.vala:74 src/Gtk/MainWindow.vala:395 msgid "Remove installed kernels older than running kernel" msgstr "" -#: src/Console/AppConsole.vala:82 +#: src/Console/AppConsole.vala:75 #, fuzzy msgid "Download specified kernels" msgstr "Preuzmi pakete za određeni kernel" -#: src/Console/AppConsole.vala:83 +#: src/Console/AppConsole.vala:76 msgid "Remove files from application cache" msgstr "Ukloni datoteke iz predmemorije aplikacije" -#: src/Console/AppConsole.vala:84 +#: src/Console/AppConsole.vala:77 #, fuzzy msgid "Show unstable and RC releases" msgstr "Sakrij nestabilne kernele i predizdanja" -#: src/Console/AppConsole.vala:86 src/Gtk/AppGtk.vala:158 +#: src/Console/AppConsole.vala:79 src/Gtk/AppGtk.vala:151 msgid "Options" msgstr "Mogućnosti" -#: src/Console/AppConsole.vala:88 +#: src/Console/AppConsole.vala:81 msgid "Enable verbose debugging output" msgstr "" -#: src/Console/AppConsole.vala:89 +#: src/Console/AppConsole.vala:82 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "" -#: src/Console/AppConsole.vala:90 +#: src/Console/AppConsole.vala:83 msgid "Override user" msgstr "" -#: src/Console/AppConsole.vala:93 +#: src/Console/AppConsole.vala:86 msgid "A version string taken from the output of --list" msgstr "" -#: src/Console/AppConsole.vala:94 +#: src/Console/AppConsole.vala:87 msgid "" "One or more version strings (comma-separated) taken from the output of --list" msgstr "" -#: src/Console/AppConsole.vala:169 src/Gtk/AppGtk.vala:143 +#: src/Console/AppConsole.vala:162 src/Gtk/AppGtk.vala:136 msgid "Unknown option" msgstr "Nepoznata mogućnost" -#: src/Console/AppConsole.vala:171 src/Console/AppConsole.vala:263 -#: src/Console/AppConsole.vala:291 +#: src/Console/AppConsole.vala:164 src/Console/AppConsole.vala:256 +#: src/Console/AppConsole.vala:284 #, fuzzy msgid "Run" msgstr "Pokrenuto" -#: src/Console/AppConsole.vala:171 +#: src/Console/AppConsole.vala:164 #, fuzzy msgid "to list all options" msgstr "Prikaži sve mogućnosti" -#: src/Console/AppConsole.vala:236 src/Console/AppConsole.vala:271 +#: src/Console/AppConsole.vala:229 src/Console/AppConsole.vala:264 msgid "No kernels specified" msgstr "" -#: src/Console/AppConsole.vala:242 +#: src/Console/AppConsole.vala:235 msgid "Multiple kernels selected for installation. Select only one." msgstr "Više kernela je odabrano za instalaciju. odaberite samo jedan." -#: src/Console/AppConsole.vala:260 src/Gtk/MainWindow.vala:100 +#: src/Console/AppConsole.vala:253 src/Gtk/MainWindow.vala:100 msgid "Could not find requested version" msgstr "Nemoguće je pronaći zatraženu inačicu" -#: src/Console/AppConsole.vala:263 +#: src/Console/AppConsole.vala:256 msgid "and use a version string listed in first column" msgstr "" -#: src/Console/AppConsole.vala:290 +#: src/Console/AppConsole.vala:283 msgid "Command not specified" msgstr "" -#: src/Console/AppConsole.vala:291 +#: src/Console/AppConsole.vala:284 #, fuzzy msgid "to list all commands" msgstr "Prikaži sve mogućnosti" -#: src/Console/AppConsole.vala:343 src/Console/AppConsole.vala:359 +#: src/Console/AppConsole.vala:336 src/Console/AppConsole.vala:352 #, fuzzy, c-format msgid "Kernel %s Available" msgstr "Dostupni paketi" -#: src/Console/AppConsole.vala:346 src/Console/AppConsole.vala:362 +#: src/Console/AppConsole.vala:339 src/Console/AppConsole.vala:355 #: src/Gtk/MainWindow.vala:333 msgid "Install" msgstr "Instaliraj" @@ -314,11 +306,11 @@ msgstr "Instaliraj" msgid "Show" msgstr "" -#: src/Gtk/AppGtk.vala:160 +#: src/Gtk/AppGtk.vala:153 msgid "Print debug information" msgstr "Ispiši informacije otklanjanja grešaka" -#: src/Gtk/AppGtk.vala:161 +#: src/Gtk/AppGtk.vala:154 msgid "Show all options" msgstr "Prikaži sve mogućnosti" @@ -543,13 +535,15 @@ msgstr "Ne" msgid "Missing Icon" msgstr "Ikone koje nedostaju" -#: src/Utility/TeeJee.FileSystem.vala:71 src/Utility/TeeJee.FileSystem.vala:74 +#: src/Utility/TeeJee.FileSystem.vala:70 src/Utility/TeeJee.FileSystem.vala:73 +#, fuzzy msgid "File deleted" -msgstr "Datoteka obrisana" +msgstr "Datoteka je spremljenja" -#: src/Utility/TeeJee.FileSystem.vala:80 src/Utility/TeeJee.FileSystem.vala:276 +#: src/Utility/TeeJee.FileSystem.vala:79 src/Utility/TeeJee.FileSystem.vala:273 +#, fuzzy msgid "Failed to delete file" -msgstr "Neuspjelo brisanje datoteke" +msgstr "Neuspjelo zapisivanje datoteke" #: src/Utility/TeeJee.FileSystem.vala:99 msgid "Failed to read file" @@ -560,45 +554,44 @@ msgstr "Neuspjelo čitanje datoteke" msgid "File saved" msgstr "Datoteka je spremljenja" -#: src/Utility/TeeJee.FileSystem.vala:139 +#: src/Utility/TeeJee.FileSystem.vala:137 msgid "Failed to write file" msgstr "Neuspjelo zapisivanje datoteke" -#: src/Utility/TeeJee.FileSystem.vala:152 -#: src/Utility/TeeJee.FileSystem.vala:155 +#: src/Utility/TeeJee.FileSystem.vala:150 +#: src/Utility/TeeJee.FileSystem.vala:153 msgid "File copied" msgstr "Datoteka kopirana" -#: src/Utility/TeeJee.FileSystem.vala:163 +#: src/Utility/TeeJee.FileSystem.vala:161 msgid "Failed to copy file" msgstr "Neuspjelo kopiranje datoteke" -#: src/Utility/TeeJee.FileSystem.vala:173 +#: src/Utility/TeeJee.FileSystem.vala:171 msgid "File not found" msgstr "Datoteka nije pronađena" -#: src/Utility/TeeJee.FileSystem.vala:187 -#: src/Utility/TeeJee.FileSystem.vala:190 +#: src/Utility/TeeJee.FileSystem.vala:185 +#: src/Utility/TeeJee.FileSystem.vala:188 msgid "File moved" msgstr "Datoteka je premještena" -#: src/Utility/TeeJee.FileSystem.vala:195 +#: src/Utility/TeeJee.FileSystem.vala:193 msgid "Failed to move file" msgstr "Neuspjelo premještanje datoteke" -#: src/Utility/TeeJee.FileSystem.vala:252 -#: src/Utility/TeeJee.FileSystem.vala:255 +#: src/Utility/TeeJee.FileSystem.vala:250 +#: src/Utility/TeeJee.FileSystem.vala:253 msgid "Created directory" msgstr "Stvoren direktorij" -#: src/Utility/TeeJee.FileSystem.vala:262 +#: src/Utility/TeeJee.FileSystem.vala:260 msgid "Failed to create dir" msgstr "Neuspjelo stvarnje direktorija" -#: src/Utility/TeeJee.FileSystem.vala:275 -#, fuzzy +#: src/Utility/TeeJee.FileSystem.vala:272 msgid "Deleted" -msgstr "Datoteka obrisana" +msgstr "" #: src/Utility/TeeJee.Logging.vala:59 msgid "E" diff --git a/po/messages.pot b/po/messages.pot index 00845826..ab99fdf3 100644 --- a/po/messages.pot +++ b/po/messages.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline 1.0.9\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-12 04:22-0400\n" +"POT-Creation-Date: 2020-05-14 04:48-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -57,16 +57,16 @@ msgstr "" msgid "Continue ?" msgstr "" -#: src/Common/LinuxKernel.vala:744 src/Console/AppConsole.vala:309 +#: src/Common/LinuxKernel.vala:744 src/Console/AppConsole.vala:302 msgid "Latest update" msgstr "" -#: src/Common/LinuxKernel.vala:755 src/Console/AppConsole.vala:316 +#: src/Common/LinuxKernel.vala:755 src/Console/AppConsole.vala:309 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:763 src/Console/AppConsole.vala:321 -#: src/Console/AppConsole.vala:371 +#: src/Common/LinuxKernel.vala:763 src/Console/AppConsole.vala:314 +#: src/Console/AppConsole.vala:364 msgid "No updates found" msgstr "" @@ -96,69 +96,61 @@ msgstr "" msgid "Running" msgstr "" -#: src/Common/LinuxKernel.vala:1183 +#: src/Common/LinuxKernel.vala:1182 msgid "Downloading" msgstr "" -#: src/Common/LinuxKernel.vala:1202 +#: src/Common/LinuxKernel.vala:1201 #: src/Utility/Gtk/CustomMessageDialog.vala:148 #: src/Utility/Gtk/CustomMessageDialog.vala:152 msgid "OK" msgstr "" -#: src/Common/LinuxKernel.vala:1208 +#: src/Common/LinuxKernel.vala:1206 msgid "ERROR" msgstr "" -#: src/Common/LinuxKernel.vala:1222 src/Gtk/MainWindow.vala:650 +#: src/Common/LinuxKernel.vala:1220 src/Gtk/MainWindow.vala:650 msgid "This kernel is already installed." msgstr "" -#: src/Common/LinuxKernel.vala:1248 +#: src/Common/LinuxKernel.vala:1246 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" -#: src/Common/LinuxKernel.vala:1251 +#: src/Common/LinuxKernel.vala:1249 msgid "Installation completed with errors" msgstr "" -#: src/Common/LinuxKernel.vala:1267 +#: src/Common/LinuxKernel.vala:1265 msgid "" "Selected kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." msgstr "" -#: src/Common/LinuxKernel.vala:1272 +#: src/Common/LinuxKernel.vala:1270 msgid "Preparing to remove selected kernels" msgstr "" -#: src/Common/LinuxKernel.vala:1303 src/Common/LinuxKernel.vala:1350 +#: src/Common/LinuxKernel.vala:1301 src/Common/LinuxKernel.vala:1348 msgid "Un-install completed" msgstr "" -#: src/Common/LinuxKernel.vala:1306 src/Common/LinuxKernel.vala:1353 +#: src/Common/LinuxKernel.vala:1304 src/Common/LinuxKernel.vala:1351 msgid "Un-install completed with errors" msgstr "" -#: src/Common/LinuxKernel.vala:1319 +#: src/Common/LinuxKernel.vala:1317 msgid "" "This kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." msgstr "" -#: src/Common/Main.vala:120 -msgid "Commands listed below are not available on this system" -msgstr "" - -#: src/Common/Main.vala:121 -msgid "Please install required packages and try again" -msgstr "" - -#: src/Common/Main.vala:267 +#: src/Common/Main.vala:238 msgid "Called from" msgstr "" -#: src/Common/Main.vala:279 +#: src/Common/Main.vala:250 msgid "Notifications are disabled" msgstr "" @@ -167,130 +159,130 @@ msgstr "" msgid "File not found: %s" msgstr "" -#: src/Console/AppConsole.vala:69 src/Gtk/AppGtk.vala:156 +#: src/Console/AppConsole.vala:62 src/Gtk/AppGtk.vala:149 msgid "Syntax" msgstr "" -#: src/Console/AppConsole.vala:71 +#: src/Console/AppConsole.vala:64 msgid "Commands" msgstr "" -#: src/Console/AppConsole.vala:73 +#: src/Console/AppConsole.vala:66 msgid "Check for kernel updates" msgstr "" -#: src/Console/AppConsole.vala:74 +#: src/Console/AppConsole.vala:67 msgid "Check for kernel updates and notify current user" msgstr "" -#: src/Console/AppConsole.vala:75 +#: src/Console/AppConsole.vala:68 msgid "List all available mainline kernels" msgstr "" -#: src/Console/AppConsole.vala:76 +#: src/Console/AppConsole.vala:69 msgid "List installed kernels" msgstr "" -#: src/Console/AppConsole.vala:77 +#: src/Console/AppConsole.vala:70 msgid "Install latest mainline kernel" msgstr "" -#: src/Console/AppConsole.vala:78 +#: src/Console/AppConsole.vala:71 msgid "Install latest point update for current series" msgstr "" -#: src/Console/AppConsole.vala:79 +#: src/Console/AppConsole.vala:72 msgid "Install specified mainline kernel" msgstr "" -#: src/Console/AppConsole.vala:80 +#: src/Console/AppConsole.vala:73 msgid "Uninstall specified kernels" msgstr "" -#: src/Console/AppConsole.vala:81 src/Gtk/MainWindow.vala:395 +#: src/Console/AppConsole.vala:74 src/Gtk/MainWindow.vala:395 msgid "Remove installed kernels older than running kernel" msgstr "" -#: src/Console/AppConsole.vala:82 +#: src/Console/AppConsole.vala:75 msgid "Download specified kernels" msgstr "" -#: src/Console/AppConsole.vala:83 +#: src/Console/AppConsole.vala:76 msgid "Remove files from application cache" msgstr "" -#: src/Console/AppConsole.vala:84 +#: src/Console/AppConsole.vala:77 msgid "Show unstable and RC releases" msgstr "" -#: src/Console/AppConsole.vala:86 src/Gtk/AppGtk.vala:158 +#: src/Console/AppConsole.vala:79 src/Gtk/AppGtk.vala:151 msgid "Options" msgstr "" -#: src/Console/AppConsole.vala:88 +#: src/Console/AppConsole.vala:81 msgid "Enable verbose debugging output" msgstr "" -#: src/Console/AppConsole.vala:89 +#: src/Console/AppConsole.vala:82 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "" -#: src/Console/AppConsole.vala:90 +#: src/Console/AppConsole.vala:83 msgid "Override user" msgstr "" -#: src/Console/AppConsole.vala:93 +#: src/Console/AppConsole.vala:86 msgid "A version string taken from the output of --list" msgstr "" -#: src/Console/AppConsole.vala:94 +#: src/Console/AppConsole.vala:87 msgid "" "One or more version strings (comma-separated) taken from the output of --list" msgstr "" -#: src/Console/AppConsole.vala:169 src/Gtk/AppGtk.vala:143 +#: src/Console/AppConsole.vala:162 src/Gtk/AppGtk.vala:136 msgid "Unknown option" msgstr "" -#: src/Console/AppConsole.vala:171 src/Console/AppConsole.vala:263 -#: src/Console/AppConsole.vala:291 +#: src/Console/AppConsole.vala:164 src/Console/AppConsole.vala:256 +#: src/Console/AppConsole.vala:284 msgid "Run" msgstr "" -#: src/Console/AppConsole.vala:171 +#: src/Console/AppConsole.vala:164 msgid "to list all options" msgstr "" -#: src/Console/AppConsole.vala:236 src/Console/AppConsole.vala:271 +#: src/Console/AppConsole.vala:229 src/Console/AppConsole.vala:264 msgid "No kernels specified" msgstr "" -#: src/Console/AppConsole.vala:242 +#: src/Console/AppConsole.vala:235 msgid "Multiple kernels selected for installation. Select only one." msgstr "" -#: src/Console/AppConsole.vala:260 src/Gtk/MainWindow.vala:100 +#: src/Console/AppConsole.vala:253 src/Gtk/MainWindow.vala:100 msgid "Could not find requested version" msgstr "" -#: src/Console/AppConsole.vala:263 +#: src/Console/AppConsole.vala:256 msgid "and use a version string listed in first column" msgstr "" -#: src/Console/AppConsole.vala:290 +#: src/Console/AppConsole.vala:283 msgid "Command not specified" msgstr "" -#: src/Console/AppConsole.vala:291 +#: src/Console/AppConsole.vala:284 msgid "to list all commands" msgstr "" -#: src/Console/AppConsole.vala:343 src/Console/AppConsole.vala:359 +#: src/Console/AppConsole.vala:336 src/Console/AppConsole.vala:352 #, c-format msgid "Kernel %s Available" msgstr "" -#: src/Console/AppConsole.vala:346 src/Console/AppConsole.vala:362 +#: src/Console/AppConsole.vala:339 src/Console/AppConsole.vala:355 #: src/Gtk/MainWindow.vala:333 msgid "Install" msgstr "" @@ -299,11 +291,11 @@ msgstr "" msgid "Show" msgstr "" -#: src/Gtk/AppGtk.vala:160 +#: src/Gtk/AppGtk.vala:153 msgid "Print debug information" msgstr "" -#: src/Gtk/AppGtk.vala:161 +#: src/Gtk/AppGtk.vala:154 msgid "Show all options" msgstr "" @@ -522,11 +514,11 @@ msgstr "" msgid "Missing Icon" msgstr "" -#: src/Utility/TeeJee.FileSystem.vala:71 src/Utility/TeeJee.FileSystem.vala:74 +#: src/Utility/TeeJee.FileSystem.vala:70 src/Utility/TeeJee.FileSystem.vala:73 msgid "File deleted" msgstr "" -#: src/Utility/TeeJee.FileSystem.vala:80 src/Utility/TeeJee.FileSystem.vala:276 +#: src/Utility/TeeJee.FileSystem.vala:79 src/Utility/TeeJee.FileSystem.vala:273 msgid "Failed to delete file" msgstr "" @@ -539,42 +531,42 @@ msgstr "" msgid "File saved" msgstr "" -#: src/Utility/TeeJee.FileSystem.vala:139 +#: src/Utility/TeeJee.FileSystem.vala:137 msgid "Failed to write file" msgstr "" -#: src/Utility/TeeJee.FileSystem.vala:152 -#: src/Utility/TeeJee.FileSystem.vala:155 +#: src/Utility/TeeJee.FileSystem.vala:150 +#: src/Utility/TeeJee.FileSystem.vala:153 msgid "File copied" msgstr "" -#: src/Utility/TeeJee.FileSystem.vala:163 +#: src/Utility/TeeJee.FileSystem.vala:161 msgid "Failed to copy file" msgstr "" -#: src/Utility/TeeJee.FileSystem.vala:173 +#: src/Utility/TeeJee.FileSystem.vala:171 msgid "File not found" msgstr "" -#: src/Utility/TeeJee.FileSystem.vala:187 -#: src/Utility/TeeJee.FileSystem.vala:190 +#: src/Utility/TeeJee.FileSystem.vala:185 +#: src/Utility/TeeJee.FileSystem.vala:188 msgid "File moved" msgstr "" -#: src/Utility/TeeJee.FileSystem.vala:195 +#: src/Utility/TeeJee.FileSystem.vala:193 msgid "Failed to move file" msgstr "" -#: src/Utility/TeeJee.FileSystem.vala:252 -#: src/Utility/TeeJee.FileSystem.vala:255 +#: src/Utility/TeeJee.FileSystem.vala:250 +#: src/Utility/TeeJee.FileSystem.vala:253 msgid "Created directory" msgstr "" -#: src/Utility/TeeJee.FileSystem.vala:262 +#: src/Utility/TeeJee.FileSystem.vala:260 msgid "Failed to create dir" msgstr "" -#: src/Utility/TeeJee.FileSystem.vala:275 +#: src/Utility/TeeJee.FileSystem.vala:272 msgid "Deleted" msgstr "" diff --git a/po/nl.po b/po/nl.po index ba211b9f..23fda288 100644 --- a/po/nl.po +++ b/po/nl.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-12 04:22-0400\n" +"POT-Creation-Date: 2020-05-14 04:48-0400\n" "PO-Revision-Date: 2017-04-30 11:50+0200\n" "Last-Translator: Heimen Stoffels \n" "Language-Team: \n" @@ -56,16 +56,16 @@ msgstr "" msgid "Continue ?" msgstr "" -#: src/Common/LinuxKernel.vala:744 src/Console/AppConsole.vala:309 +#: src/Common/LinuxKernel.vala:744 src/Console/AppConsole.vala:302 msgid "Latest update" msgstr "" -#: src/Common/LinuxKernel.vala:755 src/Console/AppConsole.vala:316 +#: src/Common/LinuxKernel.vala:755 src/Console/AppConsole.vala:309 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:763 src/Console/AppConsole.vala:321 -#: src/Console/AppConsole.vala:371 +#: src/Common/LinuxKernel.vala:763 src/Console/AppConsole.vala:314 +#: src/Console/AppConsole.vala:364 msgid "No updates found" msgstr "Geen updates gevonden" @@ -95,35 +95,35 @@ msgstr "Geïnstalleerd" msgid "Running" msgstr "Bezig met draaien" -#: src/Common/LinuxKernel.vala:1183 +#: src/Common/LinuxKernel.vala:1182 msgid "Downloading" msgstr "Bezig met downloaden" -#: src/Common/LinuxKernel.vala:1202 +#: src/Common/LinuxKernel.vala:1201 #: src/Utility/Gtk/CustomMessageDialog.vala:148 #: src/Utility/Gtk/CustomMessageDialog.vala:152 msgid "OK" msgstr "Oké" -#: src/Common/LinuxKernel.vala:1208 +#: src/Common/LinuxKernel.vala:1206 msgid "ERROR" msgstr "FOUT" -#: src/Common/LinuxKernel.vala:1222 src/Gtk/MainWindow.vala:650 +#: src/Common/LinuxKernel.vala:1220 src/Gtk/MainWindow.vala:650 msgid "This kernel is already installed." msgstr "Deze kernel is al geïnstalleerd." -#: src/Common/LinuxKernel.vala:1248 +#: src/Common/LinuxKernel.vala:1246 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "De installatie is voltooid. Herstart de computer om de nieuwe kernel te " "gebruiken." -#: src/Common/LinuxKernel.vala:1251 +#: src/Common/LinuxKernel.vala:1249 msgid "Installation completed with errors" msgstr "De installatie is foutloos voltooid" -#: src/Common/LinuxKernel.vala:1267 +#: src/Common/LinuxKernel.vala:1265 msgid "" "Selected kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -132,19 +132,19 @@ msgstr "" "verwijderd.\n" " Installeer een andere kernel voordat u deze verwijdert." -#: src/Common/LinuxKernel.vala:1272 +#: src/Common/LinuxKernel.vala:1270 msgid "Preparing to remove selected kernels" msgstr "Bezig met voorbereiden van verwijderen van geselecteerde kernels" -#: src/Common/LinuxKernel.vala:1303 src/Common/LinuxKernel.vala:1350 +#: src/Common/LinuxKernel.vala:1301 src/Common/LinuxKernel.vala:1348 msgid "Un-install completed" msgstr "Deïnstalleren voltooid" -#: src/Common/LinuxKernel.vala:1306 src/Common/LinuxKernel.vala:1353 +#: src/Common/LinuxKernel.vala:1304 src/Common/LinuxKernel.vala:1351 msgid "Un-install completed with errors" msgstr "Deïnstalleren voltooid, maar met fouten" -#: src/Common/LinuxKernel.vala:1319 +#: src/Common/LinuxKernel.vala:1317 msgid "" "This kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -152,19 +152,11 @@ msgstr "" "Deze kernel is momenteel in gebruik en kan daarom niet worden verwijderd.\n" " Installeer een andere kernel voordat u deze verwijdert." -#: src/Common/Main.vala:120 -msgid "Commands listed below are not available on this system" -msgstr "De onderstaande opdrachten zijn niet beschikbaar op dit systeem" - -#: src/Common/Main.vala:121 -msgid "Please install required packages and try again" -msgstr "Installeer de vereiste pakketten en probeer het opnieuw" - -#: src/Common/Main.vala:267 +#: src/Common/Main.vala:238 msgid "Called from" msgstr "" -#: src/Common/Main.vala:279 +#: src/Common/Main.vala:250 #, fuzzy msgid "Notifications are disabled" msgstr "Melding" @@ -174,141 +166,141 @@ msgstr "Melding" msgid "File not found: %s" msgstr "Bestand niet gevonden: %s" -#: src/Console/AppConsole.vala:69 src/Gtk/AppGtk.vala:156 +#: src/Console/AppConsole.vala:62 src/Gtk/AppGtk.vala:149 msgid "Syntax" msgstr "Syntax" -#: src/Console/AppConsole.vala:71 +#: src/Console/AppConsole.vala:64 msgid "Commands" msgstr "" -#: src/Console/AppConsole.vala:73 +#: src/Console/AppConsole.vala:66 msgid "Check for kernel updates" msgstr "Controleren op kernel-updates" -#: src/Console/AppConsole.vala:74 +#: src/Console/AppConsole.vala:67 #, fuzzy msgid "Check for kernel updates and notify current user" msgstr "Controleren op kernel-updates" -#: src/Console/AppConsole.vala:75 +#: src/Console/AppConsole.vala:68 msgid "List all available mainline kernels" msgstr "Alle beschikbare mainline-kernels weergeven" -#: src/Console/AppConsole.vala:76 +#: src/Console/AppConsole.vala:69 #, fuzzy msgid "List installed kernels" msgstr "Alle beschikbare mainline-kernels weergeven" -#: src/Console/AppConsole.vala:77 +#: src/Console/AppConsole.vala:70 #, fuzzy msgid "Install latest mainline kernel" msgstr "Opgegeven mainline-kernel installeren" -#: src/Console/AppConsole.vala:78 +#: src/Console/AppConsole.vala:71 msgid "Install latest point update for current series" msgstr "" -#: src/Console/AppConsole.vala:79 +#: src/Console/AppConsole.vala:72 msgid "Install specified mainline kernel" msgstr "Opgegeven mainline-kernel installeren" -#: src/Console/AppConsole.vala:80 +#: src/Console/AppConsole.vala:73 #, fuzzy msgid "Uninstall specified kernels" msgstr "Opgegeven mainline-kernel installeren" -#: src/Console/AppConsole.vala:81 src/Gtk/MainWindow.vala:395 +#: src/Console/AppConsole.vala:74 src/Gtk/MainWindow.vala:395 msgid "Remove installed kernels older than running kernel" msgstr "" -#: src/Console/AppConsole.vala:82 +#: src/Console/AppConsole.vala:75 #, fuzzy msgid "Download specified kernels" msgstr "Pakketten downloaden voor opgegeven kernel" -#: src/Console/AppConsole.vala:83 +#: src/Console/AppConsole.vala:76 msgid "Remove files from application cache" msgstr "Bestanden verwijderen uit applicatie-cache" -#: src/Console/AppConsole.vala:84 +#: src/Console/AppConsole.vala:77 #, fuzzy msgid "Show unstable and RC releases" msgstr "Instabiele en RC-uitgaven verbergen" -#: src/Console/AppConsole.vala:86 src/Gtk/AppGtk.vala:158 +#: src/Console/AppConsole.vala:79 src/Gtk/AppGtk.vala:151 msgid "Options" msgstr "Opties" -#: src/Console/AppConsole.vala:88 +#: src/Console/AppConsole.vala:81 msgid "Enable verbose debugging output" msgstr "" -#: src/Console/AppConsole.vala:89 +#: src/Console/AppConsole.vala:82 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "" -#: src/Console/AppConsole.vala:90 +#: src/Console/AppConsole.vala:83 msgid "Override user" msgstr "" -#: src/Console/AppConsole.vala:93 +#: src/Console/AppConsole.vala:86 msgid "A version string taken from the output of --list" msgstr "" -#: src/Console/AppConsole.vala:94 +#: src/Console/AppConsole.vala:87 msgid "" "One or more version strings (comma-separated) taken from the output of --list" msgstr "" -#: src/Console/AppConsole.vala:169 src/Gtk/AppGtk.vala:143 +#: src/Console/AppConsole.vala:162 src/Gtk/AppGtk.vala:136 msgid "Unknown option" msgstr "Onbekende optie" -#: src/Console/AppConsole.vala:171 src/Console/AppConsole.vala:263 -#: src/Console/AppConsole.vala:291 +#: src/Console/AppConsole.vala:164 src/Console/AppConsole.vala:256 +#: src/Console/AppConsole.vala:284 #, fuzzy msgid "Run" msgstr "Bezig met draaien" -#: src/Console/AppConsole.vala:171 +#: src/Console/AppConsole.vala:164 #, fuzzy msgid "to list all options" msgstr "Alle opties weergeven" -#: src/Console/AppConsole.vala:236 src/Console/AppConsole.vala:271 +#: src/Console/AppConsole.vala:229 src/Console/AppConsole.vala:264 msgid "No kernels specified" msgstr "" -#: src/Console/AppConsole.vala:242 +#: src/Console/AppConsole.vala:235 msgid "Multiple kernels selected for installation. Select only one." msgstr "" "Er zijn meerdere te installeren kernels geselecteerd. Selecteer er slechts " "één." -#: src/Console/AppConsole.vala:260 src/Gtk/MainWindow.vala:100 +#: src/Console/AppConsole.vala:253 src/Gtk/MainWindow.vala:100 msgid "Could not find requested version" msgstr "De vereiste versie kan niet worden gevonden" -#: src/Console/AppConsole.vala:263 +#: src/Console/AppConsole.vala:256 msgid "and use a version string listed in first column" msgstr "" -#: src/Console/AppConsole.vala:290 +#: src/Console/AppConsole.vala:283 msgid "Command not specified" msgstr "" -#: src/Console/AppConsole.vala:291 +#: src/Console/AppConsole.vala:284 #, fuzzy msgid "to list all commands" msgstr "Alle opties weergeven" -#: src/Console/AppConsole.vala:343 src/Console/AppConsole.vala:359 +#: src/Console/AppConsole.vala:336 src/Console/AppConsole.vala:352 #, fuzzy, c-format msgid "Kernel %s Available" msgstr "Beschikbare pakketten" -#: src/Console/AppConsole.vala:346 src/Console/AppConsole.vala:362 +#: src/Console/AppConsole.vala:339 src/Console/AppConsole.vala:355 #: src/Gtk/MainWindow.vala:333 msgid "Install" msgstr "Installeren" @@ -317,11 +309,11 @@ msgstr "Installeren" msgid "Show" msgstr "" -#: src/Gtk/AppGtk.vala:160 +#: src/Gtk/AppGtk.vala:153 msgid "Print debug information" msgstr "Foutopsporingsinformatie printen" -#: src/Gtk/AppGtk.vala:161 +#: src/Gtk/AppGtk.vala:154 msgid "Show all options" msgstr "Alle opties weergeven" @@ -546,13 +538,15 @@ msgstr "" msgid "Missing Icon" msgstr "Ontbrekend pictogram" -#: src/Utility/TeeJee.FileSystem.vala:71 src/Utility/TeeJee.FileSystem.vala:74 +#: src/Utility/TeeJee.FileSystem.vala:70 src/Utility/TeeJee.FileSystem.vala:73 +#, fuzzy msgid "File deleted" -msgstr "Bestand verwijderd" +msgstr "Bestand opgeslagen" -#: src/Utility/TeeJee.FileSystem.vala:80 src/Utility/TeeJee.FileSystem.vala:276 +#: src/Utility/TeeJee.FileSystem.vala:79 src/Utility/TeeJee.FileSystem.vala:273 +#, fuzzy msgid "Failed to delete file" -msgstr "Verwijderen van map is mislukt" +msgstr "Schrijven naar bestand is mislukt" #: src/Utility/TeeJee.FileSystem.vala:99 msgid "Failed to read file" @@ -563,45 +557,44 @@ msgstr "Lezen van bestand is mislukt" msgid "File saved" msgstr "Bestand opgeslagen" -#: src/Utility/TeeJee.FileSystem.vala:139 +#: src/Utility/TeeJee.FileSystem.vala:137 msgid "Failed to write file" msgstr "Schrijven naar bestand is mislukt" -#: src/Utility/TeeJee.FileSystem.vala:152 -#: src/Utility/TeeJee.FileSystem.vala:155 +#: src/Utility/TeeJee.FileSystem.vala:150 +#: src/Utility/TeeJee.FileSystem.vala:153 msgid "File copied" msgstr "Bestand gekopieerd" -#: src/Utility/TeeJee.FileSystem.vala:163 +#: src/Utility/TeeJee.FileSystem.vala:161 msgid "Failed to copy file" msgstr "Kopiëren van bestand is mislukt" -#: src/Utility/TeeJee.FileSystem.vala:173 +#: src/Utility/TeeJee.FileSystem.vala:171 msgid "File not found" msgstr "Bestand niet gevonden" -#: src/Utility/TeeJee.FileSystem.vala:187 -#: src/Utility/TeeJee.FileSystem.vala:190 +#: src/Utility/TeeJee.FileSystem.vala:185 +#: src/Utility/TeeJee.FileSystem.vala:188 msgid "File moved" msgstr "Bestand verplaatst" -#: src/Utility/TeeJee.FileSystem.vala:195 +#: src/Utility/TeeJee.FileSystem.vala:193 msgid "Failed to move file" msgstr "Verplaatsen van bestand is mislukt" -#: src/Utility/TeeJee.FileSystem.vala:252 -#: src/Utility/TeeJee.FileSystem.vala:255 +#: src/Utility/TeeJee.FileSystem.vala:250 +#: src/Utility/TeeJee.FileSystem.vala:253 msgid "Created directory" msgstr "Map gecreëerd" -#: src/Utility/TeeJee.FileSystem.vala:262 +#: src/Utility/TeeJee.FileSystem.vala:260 msgid "Failed to create dir" msgstr "Creëren van map is mislukt" -#: src/Utility/TeeJee.FileSystem.vala:275 -#, fuzzy +#: src/Utility/TeeJee.FileSystem.vala:272 msgid "Deleted" -msgstr "Bestand verwijderd" +msgstr "" #: src/Utility/TeeJee.Logging.vala:59 msgid "E" diff --git a/po/pl.po b/po/pl.po index 907afcec..5fb9adf7 100644 --- a/po/pl.po +++ b/po/pl.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-12 04:22-0400\n" +"POT-Creation-Date: 2020-05-14 04:48-0400\n" "PO-Revision-Date: 2017-08-12 15:26+0200\n" "Last-Translator: Waldemar Konik \n" "Language-Team: Polish\n" @@ -55,16 +55,16 @@ msgstr "" msgid "Continue ?" msgstr "" -#: src/Common/LinuxKernel.vala:744 src/Console/AppConsole.vala:309 +#: src/Common/LinuxKernel.vala:744 src/Console/AppConsole.vala:302 msgid "Latest update" msgstr "" -#: src/Common/LinuxKernel.vala:755 src/Console/AppConsole.vala:316 +#: src/Common/LinuxKernel.vala:755 src/Console/AppConsole.vala:309 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:763 src/Console/AppConsole.vala:321 -#: src/Console/AppConsole.vala:371 +#: src/Common/LinuxKernel.vala:763 src/Console/AppConsole.vala:314 +#: src/Console/AppConsole.vala:364 msgid "No updates found" msgstr "Nie znaleziono aktualizacji" @@ -94,35 +94,35 @@ msgstr "Zainstalowany" msgid "Running" msgstr "Uruchomiony" -#: src/Common/LinuxKernel.vala:1183 +#: src/Common/LinuxKernel.vala:1182 msgid "Downloading" msgstr "Pobieranie" -#: src/Common/LinuxKernel.vala:1202 +#: src/Common/LinuxKernel.vala:1201 #: src/Utility/Gtk/CustomMessageDialog.vala:148 #: src/Utility/Gtk/CustomMessageDialog.vala:152 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:1208 +#: src/Common/LinuxKernel.vala:1206 msgid "ERROR" msgstr "BŁĄD" -#: src/Common/LinuxKernel.vala:1222 src/Gtk/MainWindow.vala:650 +#: src/Common/LinuxKernel.vala:1220 src/Gtk/MainWindow.vala:650 msgid "This kernel is already installed." msgstr "To jądro jest już zainstalowane." -#: src/Common/LinuxKernel.vala:1248 +#: src/Common/LinuxKernel.vala:1246 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "Instalacja zakończona. Aby korzystać z nowego jądra, konieczne jest ponowne " "uruchomienie." -#: src/Common/LinuxKernel.vala:1251 +#: src/Common/LinuxKernel.vala:1249 msgid "Installation completed with errors" msgstr "Instalacja zakończona z błędami" -#: src/Common/LinuxKernel.vala:1267 +#: src/Common/LinuxKernel.vala:1265 msgid "" "Selected kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -130,19 +130,19 @@ msgstr "" "Wybrane jądro aktualnie działa i nie może zostać usunięte.\n" " Zainstaluj inne jądro przed usunięciem tego." -#: src/Common/LinuxKernel.vala:1272 +#: src/Common/LinuxKernel.vala:1270 msgid "Preparing to remove selected kernels" msgstr "Przygotowanie do usunięcia wybranych jąder" -#: src/Common/LinuxKernel.vala:1303 src/Common/LinuxKernel.vala:1350 +#: src/Common/LinuxKernel.vala:1301 src/Common/LinuxKernel.vala:1348 msgid "Un-install completed" msgstr "De-instalacja zakończona" -#: src/Common/LinuxKernel.vala:1306 src/Common/LinuxKernel.vala:1353 +#: src/Common/LinuxKernel.vala:1304 src/Common/LinuxKernel.vala:1351 msgid "Un-install completed with errors" msgstr "De-instalacja zakończona z błędami" -#: src/Common/LinuxKernel.vala:1319 +#: src/Common/LinuxKernel.vala:1317 msgid "" "This kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -150,19 +150,11 @@ msgstr "" "To jądro aktualnie działa i nie może zostać usunięte.\n" " Zainstaluj inne jądro przed usunięciem tego." -#: src/Common/Main.vala:120 -msgid "Commands listed below are not available on this system" -msgstr "Poniższe polecenia nie są dostępne na tym systemie" - -#: src/Common/Main.vala:121 -msgid "Please install required packages and try again" -msgstr "Zainstaluj wymagane pakiety i spróbuj ponownie" - -#: src/Common/Main.vala:267 +#: src/Common/Main.vala:238 msgid "Called from" msgstr "" -#: src/Common/Main.vala:279 +#: src/Common/Main.vala:250 #, fuzzy msgid "Notifications are disabled" msgstr "Powiadomienia" @@ -172,139 +164,139 @@ msgstr "Powiadomienia" msgid "File not found: %s" msgstr "Nie odnaleziono pliku: %s" -#: src/Console/AppConsole.vala:69 src/Gtk/AppGtk.vala:156 +#: src/Console/AppConsole.vala:62 src/Gtk/AppGtk.vala:149 msgid "Syntax" msgstr "Składnia" -#: src/Console/AppConsole.vala:71 +#: src/Console/AppConsole.vala:64 msgid "Commands" msgstr "" -#: src/Console/AppConsole.vala:73 +#: src/Console/AppConsole.vala:66 msgid "Check for kernel updates" msgstr "Sprawdź nowe wersje jądra" -#: src/Console/AppConsole.vala:74 +#: src/Console/AppConsole.vala:67 #, fuzzy msgid "Check for kernel updates and notify current user" msgstr "Sprawdź nowe wersje jądra" -#: src/Console/AppConsole.vala:75 +#: src/Console/AppConsole.vala:68 msgid "List all available mainline kernels" msgstr "Pokaż wszystkie dostępne jądra" -#: src/Console/AppConsole.vala:76 +#: src/Console/AppConsole.vala:69 #, fuzzy msgid "List installed kernels" msgstr "Pokaż wszystkie dostępne jądra" -#: src/Console/AppConsole.vala:77 +#: src/Console/AppConsole.vala:70 #, fuzzy msgid "Install latest mainline kernel" msgstr "Zainstaluj wybrane jądro" -#: src/Console/AppConsole.vala:78 +#: src/Console/AppConsole.vala:71 msgid "Install latest point update for current series" msgstr "" -#: src/Console/AppConsole.vala:79 +#: src/Console/AppConsole.vala:72 msgid "Install specified mainline kernel" msgstr "Zainstaluj wybrane jądro" -#: src/Console/AppConsole.vala:80 +#: src/Console/AppConsole.vala:73 #, fuzzy msgid "Uninstall specified kernels" msgstr "Zainstaluj wybrane jądro" -#: src/Console/AppConsole.vala:81 src/Gtk/MainWindow.vala:395 +#: src/Console/AppConsole.vala:74 src/Gtk/MainWindow.vala:395 msgid "Remove installed kernels older than running kernel" msgstr "" -#: src/Console/AppConsole.vala:82 +#: src/Console/AppConsole.vala:75 #, fuzzy msgid "Download specified kernels" msgstr "Pobierz pakiety dla wybranego jądra" -#: src/Console/AppConsole.vala:83 +#: src/Console/AppConsole.vala:76 msgid "Remove files from application cache" msgstr "Usuń pliki z pamięci podręcznej aplikacji" -#: src/Console/AppConsole.vala:84 +#: src/Console/AppConsole.vala:77 #, fuzzy msgid "Show unstable and RC releases" msgstr "Ukryj wydania niestabilne i RC" -#: src/Console/AppConsole.vala:86 src/Gtk/AppGtk.vala:158 +#: src/Console/AppConsole.vala:79 src/Gtk/AppGtk.vala:151 msgid "Options" msgstr "Opcje" -#: src/Console/AppConsole.vala:88 +#: src/Console/AppConsole.vala:81 msgid "Enable verbose debugging output" msgstr "" -#: src/Console/AppConsole.vala:89 +#: src/Console/AppConsole.vala:82 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "" -#: src/Console/AppConsole.vala:90 +#: src/Console/AppConsole.vala:83 msgid "Override user" msgstr "" -#: src/Console/AppConsole.vala:93 +#: src/Console/AppConsole.vala:86 msgid "A version string taken from the output of --list" msgstr "" -#: src/Console/AppConsole.vala:94 +#: src/Console/AppConsole.vala:87 msgid "" "One or more version strings (comma-separated) taken from the output of --list" msgstr "" -#: src/Console/AppConsole.vala:169 src/Gtk/AppGtk.vala:143 +#: src/Console/AppConsole.vala:162 src/Gtk/AppGtk.vala:136 msgid "Unknown option" msgstr "Nieznana opcja" -#: src/Console/AppConsole.vala:171 src/Console/AppConsole.vala:263 -#: src/Console/AppConsole.vala:291 +#: src/Console/AppConsole.vala:164 src/Console/AppConsole.vala:256 +#: src/Console/AppConsole.vala:284 #, fuzzy msgid "Run" msgstr "Uruchomiony" -#: src/Console/AppConsole.vala:171 +#: src/Console/AppConsole.vala:164 #, fuzzy msgid "to list all options" msgstr "Pokaż wszystkie opcje" -#: src/Console/AppConsole.vala:236 src/Console/AppConsole.vala:271 +#: src/Console/AppConsole.vala:229 src/Console/AppConsole.vala:264 msgid "No kernels specified" msgstr "" -#: src/Console/AppConsole.vala:242 +#: src/Console/AppConsole.vala:235 msgid "Multiple kernels selected for installation. Select only one." msgstr "Wybrano kilka jąder do instalacji. Wybierz tylko jedno." -#: src/Console/AppConsole.vala:260 src/Gtk/MainWindow.vala:100 +#: src/Console/AppConsole.vala:253 src/Gtk/MainWindow.vala:100 msgid "Could not find requested version" msgstr "Nie można odnaleźć żądanej wersji" -#: src/Console/AppConsole.vala:263 +#: src/Console/AppConsole.vala:256 msgid "and use a version string listed in first column" msgstr "" -#: src/Console/AppConsole.vala:290 +#: src/Console/AppConsole.vala:283 msgid "Command not specified" msgstr "" -#: src/Console/AppConsole.vala:291 +#: src/Console/AppConsole.vala:284 #, fuzzy msgid "to list all commands" msgstr "Pokaż wszystkie opcje" -#: src/Console/AppConsole.vala:343 src/Console/AppConsole.vala:359 +#: src/Console/AppConsole.vala:336 src/Console/AppConsole.vala:352 #, fuzzy, c-format msgid "Kernel %s Available" msgstr "Dostępne pakiety" -#: src/Console/AppConsole.vala:346 src/Console/AppConsole.vala:362 +#: src/Console/AppConsole.vala:339 src/Console/AppConsole.vala:355 #: src/Gtk/MainWindow.vala:333 msgid "Install" msgstr "Zainstaluj" @@ -313,11 +305,11 @@ msgstr "Zainstaluj" msgid "Show" msgstr "" -#: src/Gtk/AppGtk.vala:160 +#: src/Gtk/AppGtk.vala:153 msgid "Print debug information" msgstr "Wypisz informacje debugujące" -#: src/Gtk/AppGtk.vala:161 +#: src/Gtk/AppGtk.vala:154 msgid "Show all options" msgstr "Pokaż wszystkie opcje" @@ -542,13 +534,15 @@ msgstr "" msgid "Missing Icon" msgstr "Brakująca ikona" -#: src/Utility/TeeJee.FileSystem.vala:71 src/Utility/TeeJee.FileSystem.vala:74 +#: src/Utility/TeeJee.FileSystem.vala:70 src/Utility/TeeJee.FileSystem.vala:73 +#, fuzzy msgid "File deleted" -msgstr "Plik usunięty" +msgstr "Plik zapisany" -#: src/Utility/TeeJee.FileSystem.vala:80 src/Utility/TeeJee.FileSystem.vala:276 +#: src/Utility/TeeJee.FileSystem.vala:79 src/Utility/TeeJee.FileSystem.vala:273 +#, fuzzy msgid "Failed to delete file" -msgstr "Nie udało się usunąć pliku" +msgstr "Nie udało się zapisać pliku" #: src/Utility/TeeJee.FileSystem.vala:99 msgid "Failed to read file" @@ -559,45 +553,44 @@ msgstr "Nie udało się odczytać pliku" msgid "File saved" msgstr "Plik zapisany" -#: src/Utility/TeeJee.FileSystem.vala:139 +#: src/Utility/TeeJee.FileSystem.vala:137 msgid "Failed to write file" msgstr "Nie udało się zapisać pliku" -#: src/Utility/TeeJee.FileSystem.vala:152 -#: src/Utility/TeeJee.FileSystem.vala:155 +#: src/Utility/TeeJee.FileSystem.vala:150 +#: src/Utility/TeeJee.FileSystem.vala:153 msgid "File copied" msgstr "Plik skopiowany" -#: src/Utility/TeeJee.FileSystem.vala:163 +#: src/Utility/TeeJee.FileSystem.vala:161 msgid "Failed to copy file" msgstr "Nie udało się skopiować pliku" -#: src/Utility/TeeJee.FileSystem.vala:173 +#: src/Utility/TeeJee.FileSystem.vala:171 msgid "File not found" msgstr "Nie odnaleziono pliku" -#: src/Utility/TeeJee.FileSystem.vala:187 -#: src/Utility/TeeJee.FileSystem.vala:190 +#: src/Utility/TeeJee.FileSystem.vala:185 +#: src/Utility/TeeJee.FileSystem.vala:188 msgid "File moved" msgstr "Plik przeniesiony" -#: src/Utility/TeeJee.FileSystem.vala:195 +#: src/Utility/TeeJee.FileSystem.vala:193 msgid "Failed to move file" msgstr "Nie udało się przenieść pliku" -#: src/Utility/TeeJee.FileSystem.vala:252 -#: src/Utility/TeeJee.FileSystem.vala:255 +#: src/Utility/TeeJee.FileSystem.vala:250 +#: src/Utility/TeeJee.FileSystem.vala:253 msgid "Created directory" msgstr "Utworzono katalog" -#: src/Utility/TeeJee.FileSystem.vala:262 +#: src/Utility/TeeJee.FileSystem.vala:260 msgid "Failed to create dir" msgstr "Nie udało się utworzyć katalogu" -#: src/Utility/TeeJee.FileSystem.vala:275 -#, fuzzy +#: src/Utility/TeeJee.FileSystem.vala:272 msgid "Deleted" -msgstr "Plik usunięty" +msgstr "" #: src/Utility/TeeJee.Logging.vala:59 msgid "E" diff --git a/po/ru.po b/po/ru.po index fa66f9bb..462bf385 100644 --- a/po/ru.po +++ b/po/ru.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-12 04:22-0400\n" +"POT-Creation-Date: 2020-05-14 04:48-0400\n" "PO-Revision-Date: 2016-12-13 16:46+0300\n" "Last-Translator: Faust3000 \n" "Language-Team: Russian \n" @@ -56,16 +56,16 @@ msgstr "" msgid "Continue ?" msgstr "" -#: src/Common/LinuxKernel.vala:744 src/Console/AppConsole.vala:309 +#: src/Common/LinuxKernel.vala:744 src/Console/AppConsole.vala:302 msgid "Latest update" msgstr "" -#: src/Common/LinuxKernel.vala:755 src/Console/AppConsole.vala:316 +#: src/Common/LinuxKernel.vala:755 src/Console/AppConsole.vala:309 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:763 src/Console/AppConsole.vala:321 -#: src/Console/AppConsole.vala:371 +#: src/Common/LinuxKernel.vala:763 src/Console/AppConsole.vala:314 +#: src/Console/AppConsole.vala:364 msgid "No updates found" msgstr "Обновлений не найдено" @@ -97,35 +97,35 @@ msgstr "Установлено" msgid "Running" msgstr "Используется" -#: src/Common/LinuxKernel.vala:1183 +#: src/Common/LinuxKernel.vala:1182 msgid "Downloading" msgstr "Загрузка" -#: src/Common/LinuxKernel.vala:1202 +#: src/Common/LinuxKernel.vala:1201 #: src/Utility/Gtk/CustomMessageDialog.vala:148 #: src/Utility/Gtk/CustomMessageDialog.vala:152 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:1208 +#: src/Common/LinuxKernel.vala:1206 msgid "ERROR" msgstr "ОШИБКА" -#: src/Common/LinuxKernel.vala:1222 src/Gtk/MainWindow.vala:650 +#: src/Common/LinuxKernel.vala:1220 src/Gtk/MainWindow.vala:650 msgid "This kernel is already installed." msgstr "Это ядро уже установлено." -#: src/Common/LinuxKernel.vala:1248 +#: src/Common/LinuxKernel.vala:1246 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "Установка завершена. Обязательно выполните перезагрузку, чтобы использовать " "новое ядро." -#: src/Common/LinuxKernel.vala:1251 +#: src/Common/LinuxKernel.vala:1249 msgid "Installation completed with errors" msgstr "Установка завершена с ошибками" -#: src/Common/LinuxKernel.vala:1267 +#: src/Common/LinuxKernel.vala:1265 #, fuzzy msgid "" "Selected kernel is currently running and cannot be removed.\n" @@ -134,19 +134,19 @@ msgstr "" "Это ядро в настоящий момент работает и не может быть удалено.\n" " Установите другое ядро, прежде чем удалять его." -#: src/Common/LinuxKernel.vala:1272 +#: src/Common/LinuxKernel.vala:1270 msgid "Preparing to remove selected kernels" msgstr "" -#: src/Common/LinuxKernel.vala:1303 src/Common/LinuxKernel.vala:1350 +#: src/Common/LinuxKernel.vala:1301 src/Common/LinuxKernel.vala:1348 msgid "Un-install completed" msgstr "Удаление завершено" -#: src/Common/LinuxKernel.vala:1306 src/Common/LinuxKernel.vala:1353 +#: src/Common/LinuxKernel.vala:1304 src/Common/LinuxKernel.vala:1351 msgid "Un-install completed with errors" msgstr "Удаление завершено с ошибками" -#: src/Common/LinuxKernel.vala:1319 +#: src/Common/LinuxKernel.vala:1317 msgid "" "This kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -154,19 +154,11 @@ msgstr "" "Это ядро в настоящий момент работает и не может быть удалено.\n" " Установите другое ядро, прежде чем удалять его." -#: src/Common/Main.vala:120 -msgid "Commands listed below are not available on this system" -msgstr "Команды перечисленные ниже недоступны на этой системе" - -#: src/Common/Main.vala:121 -msgid "Please install required packages and try again" -msgstr "Установить необходимые пакеты и попробуйте снова" - -#: src/Common/Main.vala:267 +#: src/Common/Main.vala:238 msgid "Called from" msgstr "" -#: src/Common/Main.vala:279 +#: src/Common/Main.vala:250 #, fuzzy msgid "Notifications are disabled" msgstr "Уведомления" @@ -176,139 +168,139 @@ msgstr "Уведомления" msgid "File not found: %s" msgstr "Файл не найден: %s" -#: src/Console/AppConsole.vala:69 src/Gtk/AppGtk.vala:156 +#: src/Console/AppConsole.vala:62 src/Gtk/AppGtk.vala:149 msgid "Syntax" msgstr "Синтаксис" -#: src/Console/AppConsole.vala:71 +#: src/Console/AppConsole.vala:64 msgid "Commands" msgstr "" -#: src/Console/AppConsole.vala:73 +#: src/Console/AppConsole.vala:66 msgid "Check for kernel updates" msgstr "Проверить обновления ядра" -#: src/Console/AppConsole.vala:74 +#: src/Console/AppConsole.vala:67 #, fuzzy msgid "Check for kernel updates and notify current user" msgstr "Проверить обновления ядра" -#: src/Console/AppConsole.vala:75 +#: src/Console/AppConsole.vala:68 msgid "List all available mainline kernels" msgstr "Список всех доступных основных ядер" -#: src/Console/AppConsole.vala:76 +#: src/Console/AppConsole.vala:69 #, fuzzy msgid "List installed kernels" msgstr "Список всех доступных основных ядер" -#: src/Console/AppConsole.vala:77 +#: src/Console/AppConsole.vala:70 #, fuzzy msgid "Install latest mainline kernel" msgstr "Установить указанную ветку ядра" -#: src/Console/AppConsole.vala:78 +#: src/Console/AppConsole.vala:71 msgid "Install latest point update for current series" msgstr "" -#: src/Console/AppConsole.vala:79 +#: src/Console/AppConsole.vala:72 msgid "Install specified mainline kernel" msgstr "Установить указанную ветку ядра" -#: src/Console/AppConsole.vala:80 +#: src/Console/AppConsole.vala:73 #, fuzzy msgid "Uninstall specified kernels" msgstr "Установить указанную ветку ядра" -#: src/Console/AppConsole.vala:81 src/Gtk/MainWindow.vala:395 +#: src/Console/AppConsole.vala:74 src/Gtk/MainWindow.vala:395 msgid "Remove installed kernels older than running kernel" msgstr "Удалить более старшие установленные ядра, чем используемое" -#: src/Console/AppConsole.vala:82 +#: src/Console/AppConsole.vala:75 #, fuzzy msgid "Download specified kernels" msgstr "Скачать пакеты для указанного ядра" -#: src/Console/AppConsole.vala:83 +#: src/Console/AppConsole.vala:76 msgid "Remove files from application cache" msgstr "Удалить файлы из кэша программы" -#: src/Console/AppConsole.vala:84 +#: src/Console/AppConsole.vala:77 #, fuzzy msgid "Show unstable and RC releases" msgstr "Скрыть нестабильные и релиз-кандидат версии" -#: src/Console/AppConsole.vala:86 src/Gtk/AppGtk.vala:158 +#: src/Console/AppConsole.vala:79 src/Gtk/AppGtk.vala:151 msgid "Options" msgstr "Параметры" -#: src/Console/AppConsole.vala:88 +#: src/Console/AppConsole.vala:81 msgid "Enable verbose debugging output" msgstr "" -#: src/Console/AppConsole.vala:89 +#: src/Console/AppConsole.vala:82 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "" -#: src/Console/AppConsole.vala:90 +#: src/Console/AppConsole.vala:83 msgid "Override user" msgstr "" -#: src/Console/AppConsole.vala:93 +#: src/Console/AppConsole.vala:86 msgid "A version string taken from the output of --list" msgstr "" -#: src/Console/AppConsole.vala:94 +#: src/Console/AppConsole.vala:87 msgid "" "One or more version strings (comma-separated) taken from the output of --list" msgstr "" -#: src/Console/AppConsole.vala:169 src/Gtk/AppGtk.vala:143 +#: src/Console/AppConsole.vala:162 src/Gtk/AppGtk.vala:136 msgid "Unknown option" msgstr "Неизвестный параметр" -#: src/Console/AppConsole.vala:171 src/Console/AppConsole.vala:263 -#: src/Console/AppConsole.vala:291 +#: src/Console/AppConsole.vala:164 src/Console/AppConsole.vala:256 +#: src/Console/AppConsole.vala:284 #, fuzzy msgid "Run" msgstr "Используется" -#: src/Console/AppConsole.vala:171 +#: src/Console/AppConsole.vala:164 #, fuzzy msgid "to list all options" msgstr "Показать все параметры" -#: src/Console/AppConsole.vala:236 src/Console/AppConsole.vala:271 +#: src/Console/AppConsole.vala:229 src/Console/AppConsole.vala:264 msgid "No kernels specified" msgstr "" -#: src/Console/AppConsole.vala:242 +#: src/Console/AppConsole.vala:235 msgid "Multiple kernels selected for installation. Select only one." msgstr "" -#: src/Console/AppConsole.vala:260 src/Gtk/MainWindow.vala:100 +#: src/Console/AppConsole.vala:253 src/Gtk/MainWindow.vala:100 msgid "Could not find requested version" msgstr "Не удалось найти запрошенную версию" -#: src/Console/AppConsole.vala:263 +#: src/Console/AppConsole.vala:256 msgid "and use a version string listed in first column" msgstr "" -#: src/Console/AppConsole.vala:290 +#: src/Console/AppConsole.vala:283 msgid "Command not specified" msgstr "" -#: src/Console/AppConsole.vala:291 +#: src/Console/AppConsole.vala:284 #, fuzzy msgid "to list all commands" msgstr "Показать все параметры" -#: src/Console/AppConsole.vala:343 src/Console/AppConsole.vala:359 +#: src/Console/AppConsole.vala:336 src/Console/AppConsole.vala:352 #, fuzzy, c-format msgid "Kernel %s Available" msgstr "Установлено" -#: src/Console/AppConsole.vala:346 src/Console/AppConsole.vala:362 +#: src/Console/AppConsole.vala:339 src/Console/AppConsole.vala:355 #: src/Gtk/MainWindow.vala:333 msgid "Install" msgstr "Установить" @@ -317,11 +309,11 @@ msgstr "Установить" msgid "Show" msgstr "" -#: src/Gtk/AppGtk.vala:160 +#: src/Gtk/AppGtk.vala:153 msgid "Print debug information" msgstr "Распечатать отладочную информацию" -#: src/Gtk/AppGtk.vala:161 +#: src/Gtk/AppGtk.vala:154 msgid "Show all options" msgstr "Показать все параметры" @@ -546,14 +538,15 @@ msgstr "" msgid "Missing Icon" msgstr "Значок отсутствует" -#: src/Utility/TeeJee.FileSystem.vala:71 src/Utility/TeeJee.FileSystem.vala:74 +#: src/Utility/TeeJee.FileSystem.vala:70 src/Utility/TeeJee.FileSystem.vala:73 #, fuzzy msgid "File deleted" -msgstr "Не удалось удалить файл" +msgstr "Файловая система" -#: src/Utility/TeeJee.FileSystem.vala:80 src/Utility/TeeJee.FileSystem.vala:276 +#: src/Utility/TeeJee.FileSystem.vala:79 src/Utility/TeeJee.FileSystem.vala:273 +#, fuzzy msgid "Failed to delete file" -msgstr "Не удалось удалить файл" +msgstr "Не удалось записать файл" #: src/Utility/TeeJee.FileSystem.vala:99 msgid "Failed to read file" @@ -565,48 +558,47 @@ msgstr "Не удалось прочитать файл" msgid "File saved" msgstr "Файловая система" -#: src/Utility/TeeJee.FileSystem.vala:139 +#: src/Utility/TeeJee.FileSystem.vala:137 msgid "Failed to write file" msgstr "Не удалось записать файл" -#: src/Utility/TeeJee.FileSystem.vala:152 -#: src/Utility/TeeJee.FileSystem.vala:155 +#: src/Utility/TeeJee.FileSystem.vala:150 +#: src/Utility/TeeJee.FileSystem.vala:153 #, fuzzy msgid "File copied" msgstr "Не удалось скопировать файл" -#: src/Utility/TeeJee.FileSystem.vala:163 +#: src/Utility/TeeJee.FileSystem.vala:161 msgid "Failed to copy file" msgstr "Не удалось скопировать файл" -#: src/Utility/TeeJee.FileSystem.vala:173 +#: src/Utility/TeeJee.FileSystem.vala:171 msgid "File not found" msgstr "Файл не найден" -#: src/Utility/TeeJee.FileSystem.vala:187 -#: src/Utility/TeeJee.FileSystem.vala:190 +#: src/Utility/TeeJee.FileSystem.vala:185 +#: src/Utility/TeeJee.FileSystem.vala:188 #, fuzzy msgid "File moved" msgstr "Удалить" -#: src/Utility/TeeJee.FileSystem.vala:195 +#: src/Utility/TeeJee.FileSystem.vala:193 msgid "Failed to move file" msgstr "Не удалось переместить файл" -#: src/Utility/TeeJee.FileSystem.vala:252 -#: src/Utility/TeeJee.FileSystem.vala:255 +#: src/Utility/TeeJee.FileSystem.vala:250 +#: src/Utility/TeeJee.FileSystem.vala:253 #, fuzzy msgid "Created directory" msgstr "Используемая кэш-папка" -#: src/Utility/TeeJee.FileSystem.vala:262 +#: src/Utility/TeeJee.FileSystem.vala:260 msgid "Failed to create dir" msgstr "Не удалось создать папку" -#: src/Utility/TeeJee.FileSystem.vala:275 -#, fuzzy +#: src/Utility/TeeJee.FileSystem.vala:272 msgid "Deleted" -msgstr "Не удалось удалить файл" +msgstr "" #: src/Utility/TeeJee.Logging.vala:59 msgid "E" diff --git a/po/sv.po b/po/sv.po index f5568dbe..2fcad69e 100644 --- a/po/sv.po +++ b/po/sv.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-12 04:22-0400\n" +"POT-Creation-Date: 2020-05-14 04:48-0400\n" "PO-Revision-Date: 2018-01-13 16:56+0100\n" "Last-Translator: Åke Engelbrektson \n" "Language-Team: Svenska Språkfiler \n" @@ -57,16 +57,16 @@ msgstr "" msgid "Continue ?" msgstr "" -#: src/Common/LinuxKernel.vala:744 src/Console/AppConsole.vala:309 +#: src/Common/LinuxKernel.vala:744 src/Console/AppConsole.vala:302 msgid "Latest update" msgstr "" -#: src/Common/LinuxKernel.vala:755 src/Console/AppConsole.vala:316 +#: src/Common/LinuxKernel.vala:755 src/Console/AppConsole.vala:309 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:763 src/Console/AppConsole.vala:321 -#: src/Console/AppConsole.vala:371 +#: src/Common/LinuxKernel.vala:763 src/Console/AppConsole.vala:314 +#: src/Console/AppConsole.vala:364 msgid "No updates found" msgstr "Inga uppdateringar hittades" @@ -96,33 +96,33 @@ msgstr "Installerad" msgid "Running" msgstr "Körs" -#: src/Common/LinuxKernel.vala:1183 +#: src/Common/LinuxKernel.vala:1182 msgid "Downloading" msgstr "Laddar ner" -#: src/Common/LinuxKernel.vala:1202 +#: src/Common/LinuxKernel.vala:1201 #: src/Utility/Gtk/CustomMessageDialog.vala:148 #: src/Utility/Gtk/CustomMessageDialog.vala:152 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:1208 +#: src/Common/LinuxKernel.vala:1206 msgid "ERROR" msgstr "FEL" -#: src/Common/LinuxKernel.vala:1222 src/Gtk/MainWindow.vala:650 +#: src/Common/LinuxKernel.vala:1220 src/Gtk/MainWindow.vala:650 msgid "This kernel is already installed." msgstr "Denna kärna är redan installerad" -#: src/Common/LinuxKernel.vala:1248 +#: src/Common/LinuxKernel.vala:1246 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "Installation slutförd. Omstart krävs för att tillämpa den nya kärnan." -#: src/Common/LinuxKernel.vala:1251 +#: src/Common/LinuxKernel.vala:1249 msgid "Installation completed with errors" msgstr "Installation slutförd med fel" -#: src/Common/LinuxKernel.vala:1267 +#: src/Common/LinuxKernel.vala:1265 msgid "" "Selected kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -130,19 +130,19 @@ msgstr "" "Denna kärna används för tillfället och kan inte tas bort.\n" "Installera en annan kärna innan du tar bort den här." -#: src/Common/LinuxKernel.vala:1272 +#: src/Common/LinuxKernel.vala:1270 msgid "Preparing to remove selected kernels" msgstr "Förbereder borttagning av markerade kärnor" -#: src/Common/LinuxKernel.vala:1303 src/Common/LinuxKernel.vala:1350 +#: src/Common/LinuxKernel.vala:1301 src/Common/LinuxKernel.vala:1348 msgid "Un-install completed" msgstr "Avinstallation slutförd" -#: src/Common/LinuxKernel.vala:1306 src/Common/LinuxKernel.vala:1353 +#: src/Common/LinuxKernel.vala:1304 src/Common/LinuxKernel.vala:1351 msgid "Un-install completed with errors" msgstr "Avinstallation slutförd med fel" -#: src/Common/LinuxKernel.vala:1319 +#: src/Common/LinuxKernel.vala:1317 msgid "" "This kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -150,19 +150,11 @@ msgstr "" "Denna kärna används för tillfället och kan inte tas bort.\n" "Installera en annan kärna innan du tar bort den här." -#: src/Common/Main.vala:120 -msgid "Commands listed below are not available on this system" -msgstr "Kommandon listade nedan, finns inte tillgängliga i detta system." - -#: src/Common/Main.vala:121 -msgid "Please install required packages and try again" -msgstr "Installera nödvändiga paket och försök igen" - -#: src/Common/Main.vala:267 +#: src/Common/Main.vala:238 msgid "Called from" msgstr "" -#: src/Common/Main.vala:279 +#: src/Common/Main.vala:250 #, fuzzy msgid "Notifications are disabled" msgstr "Avisering" @@ -172,139 +164,139 @@ msgstr "Avisering" msgid "File not found: %s" msgstr "Filen kunde inte hittas: %s" -#: src/Console/AppConsole.vala:69 src/Gtk/AppGtk.vala:156 +#: src/Console/AppConsole.vala:62 src/Gtk/AppGtk.vala:149 msgid "Syntax" msgstr "Syntax" -#: src/Console/AppConsole.vala:71 +#: src/Console/AppConsole.vala:64 msgid "Commands" msgstr "" -#: src/Console/AppConsole.vala:73 +#: src/Console/AppConsole.vala:66 msgid "Check for kernel updates" msgstr "Sök efter kärnuppdateringar" -#: src/Console/AppConsole.vala:74 +#: src/Console/AppConsole.vala:67 #, fuzzy msgid "Check for kernel updates and notify current user" msgstr "Sök efter kärnuppdateringar" -#: src/Console/AppConsole.vala:75 +#: src/Console/AppConsole.vala:68 msgid "List all available mainline kernels" msgstr "Lista alla tillgängliga kärnor" -#: src/Console/AppConsole.vala:76 +#: src/Console/AppConsole.vala:69 #, fuzzy msgid "List installed kernels" msgstr "Lista tillgängliga kärnor" -#: src/Console/AppConsole.vala:77 +#: src/Console/AppConsole.vala:70 #, fuzzy msgid "Install latest mainline kernel" msgstr "Installera specificerad kärna" -#: src/Console/AppConsole.vala:78 +#: src/Console/AppConsole.vala:71 msgid "Install latest point update for current series" msgstr "" -#: src/Console/AppConsole.vala:79 +#: src/Console/AppConsole.vala:72 msgid "Install specified mainline kernel" msgstr "Installera specificerad kärna" -#: src/Console/AppConsole.vala:80 +#: src/Console/AppConsole.vala:73 #, fuzzy msgid "Uninstall specified kernels" msgstr "Installera specificerad kärna" -#: src/Console/AppConsole.vala:81 src/Gtk/MainWindow.vala:395 +#: src/Console/AppConsole.vala:74 src/Gtk/MainWindow.vala:395 msgid "Remove installed kernels older than running kernel" msgstr "Ta bort installerade kärnor äldre än den som körs" -#: src/Console/AppConsole.vala:82 +#: src/Console/AppConsole.vala:75 #, fuzzy msgid "Download specified kernels" msgstr "Ladda ner paket för specificerad kärna" -#: src/Console/AppConsole.vala:83 +#: src/Console/AppConsole.vala:76 msgid "Remove files from application cache" msgstr "Ta bort filer från program-cachen" -#: src/Console/AppConsole.vala:84 +#: src/Console/AppConsole.vala:77 #, fuzzy msgid "Show unstable and RC releases" msgstr "Dölj instabila- och RC-publiceringar" -#: src/Console/AppConsole.vala:86 src/Gtk/AppGtk.vala:158 +#: src/Console/AppConsole.vala:79 src/Gtk/AppGtk.vala:151 msgid "Options" msgstr "Alternativ" -#: src/Console/AppConsole.vala:88 +#: src/Console/AppConsole.vala:81 msgid "Enable verbose debugging output" msgstr "" -#: src/Console/AppConsole.vala:89 +#: src/Console/AppConsole.vala:82 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "" -#: src/Console/AppConsole.vala:90 +#: src/Console/AppConsole.vala:83 msgid "Override user" msgstr "" -#: src/Console/AppConsole.vala:93 +#: src/Console/AppConsole.vala:86 msgid "A version string taken from the output of --list" msgstr "" -#: src/Console/AppConsole.vala:94 +#: src/Console/AppConsole.vala:87 msgid "" "One or more version strings (comma-separated) taken from the output of --list" msgstr "" -#: src/Console/AppConsole.vala:169 src/Gtk/AppGtk.vala:143 +#: src/Console/AppConsole.vala:162 src/Gtk/AppGtk.vala:136 msgid "Unknown option" msgstr "Okänt alternativ" -#: src/Console/AppConsole.vala:171 src/Console/AppConsole.vala:263 -#: src/Console/AppConsole.vala:291 +#: src/Console/AppConsole.vala:164 src/Console/AppConsole.vala:256 +#: src/Console/AppConsole.vala:284 #, fuzzy msgid "Run" msgstr "Körs" -#: src/Console/AppConsole.vala:171 +#: src/Console/AppConsole.vala:164 #, fuzzy msgid "to list all options" msgstr "Visa alla alternativ" -#: src/Console/AppConsole.vala:236 src/Console/AppConsole.vala:271 +#: src/Console/AppConsole.vala:229 src/Console/AppConsole.vala:264 msgid "No kernels specified" msgstr "" -#: src/Console/AppConsole.vala:242 +#: src/Console/AppConsole.vala:235 msgid "Multiple kernels selected for installation. Select only one." msgstr "Flera kärnor valda för installation. Välj endast en." -#: src/Console/AppConsole.vala:260 src/Gtk/MainWindow.vala:100 +#: src/Console/AppConsole.vala:253 src/Gtk/MainWindow.vala:100 msgid "Could not find requested version" msgstr "Kunde inte hitta efterfrågad version" -#: src/Console/AppConsole.vala:263 +#: src/Console/AppConsole.vala:256 msgid "and use a version string listed in first column" msgstr "" -#: src/Console/AppConsole.vala:290 +#: src/Console/AppConsole.vala:283 msgid "Command not specified" msgstr "" -#: src/Console/AppConsole.vala:291 +#: src/Console/AppConsole.vala:284 #, fuzzy msgid "to list all commands" msgstr "Visa alla alternativ" -#: src/Console/AppConsole.vala:343 src/Console/AppConsole.vala:359 +#: src/Console/AppConsole.vala:336 src/Console/AppConsole.vala:352 #, fuzzy, c-format msgid "Kernel %s Available" msgstr "Tillgängliga paket" -#: src/Console/AppConsole.vala:346 src/Console/AppConsole.vala:362 +#: src/Console/AppConsole.vala:339 src/Console/AppConsole.vala:355 #: src/Gtk/MainWindow.vala:333 msgid "Install" msgstr "Installera" @@ -313,11 +305,11 @@ msgstr "Installera" msgid "Show" msgstr "" -#: src/Gtk/AppGtk.vala:160 +#: src/Gtk/AppGtk.vala:153 msgid "Print debug information" msgstr "Skriv ut felsökningsinformation" -#: src/Gtk/AppGtk.vala:161 +#: src/Gtk/AppGtk.vala:154 msgid "Show all options" msgstr "Visa alla alternativ" @@ -542,13 +534,15 @@ msgstr "Nej" msgid "Missing Icon" msgstr "Saknad ikon" -#: src/Utility/TeeJee.FileSystem.vala:71 src/Utility/TeeJee.FileSystem.vala:74 +#: src/Utility/TeeJee.FileSystem.vala:70 src/Utility/TeeJee.FileSystem.vala:73 +#, fuzzy msgid "File deleted" -msgstr "Fil borttagen" +msgstr "Fil sparad" -#: src/Utility/TeeJee.FileSystem.vala:80 src/Utility/TeeJee.FileSystem.vala:276 +#: src/Utility/TeeJee.FileSystem.vala:79 src/Utility/TeeJee.FileSystem.vala:273 +#, fuzzy msgid "Failed to delete file" -msgstr "Kunde inte ta bort filen" +msgstr "Kunde inte skriva filen" #: src/Utility/TeeJee.FileSystem.vala:99 msgid "Failed to read file" @@ -559,45 +553,44 @@ msgstr "Kunde inte läsa filen" msgid "File saved" msgstr "Fil sparad" -#: src/Utility/TeeJee.FileSystem.vala:139 +#: src/Utility/TeeJee.FileSystem.vala:137 msgid "Failed to write file" msgstr "Kunde inte skriva filen" -#: src/Utility/TeeJee.FileSystem.vala:152 -#: src/Utility/TeeJee.FileSystem.vala:155 +#: src/Utility/TeeJee.FileSystem.vala:150 +#: src/Utility/TeeJee.FileSystem.vala:153 msgid "File copied" msgstr "Kopierade fil" -#: src/Utility/TeeJee.FileSystem.vala:163 +#: src/Utility/TeeJee.FileSystem.vala:161 msgid "Failed to copy file" msgstr "Kunde inte kopiera filen" -#: src/Utility/TeeJee.FileSystem.vala:173 +#: src/Utility/TeeJee.FileSystem.vala:171 msgid "File not found" msgstr "Filen kan inte hittas" -#: src/Utility/TeeJee.FileSystem.vala:187 -#: src/Utility/TeeJee.FileSystem.vala:190 +#: src/Utility/TeeJee.FileSystem.vala:185 +#: src/Utility/TeeJee.FileSystem.vala:188 msgid "File moved" msgstr "Fil flyttad" -#: src/Utility/TeeJee.FileSystem.vala:195 +#: src/Utility/TeeJee.FileSystem.vala:193 msgid "Failed to move file" msgstr "Kunde inte flytta filen" -#: src/Utility/TeeJee.FileSystem.vala:252 -#: src/Utility/TeeJee.FileSystem.vala:255 +#: src/Utility/TeeJee.FileSystem.vala:250 +#: src/Utility/TeeJee.FileSystem.vala:253 msgid "Created directory" msgstr "Skapade mapp" -#: src/Utility/TeeJee.FileSystem.vala:262 +#: src/Utility/TeeJee.FileSystem.vala:260 msgid "Failed to create dir" msgstr "Kunde inte skapa mappen" -#: src/Utility/TeeJee.FileSystem.vala:275 -#, fuzzy +#: src/Utility/TeeJee.FileSystem.vala:272 msgid "Deleted" -msgstr "Fil borttagen" +msgstr "" #: src/Utility/TeeJee.Logging.vala:59 msgid "E" diff --git a/po/tr.po b/po/tr.po index 8f24a529..0846da10 100644 --- a/po/tr.po +++ b/po/tr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-12 04:22-0400\n" +"POT-Creation-Date: 2020-05-14 04:48-0400\n" "PO-Revision-Date: 2020-03-10 15:59+0300\n" "Last-Translator: Gökhan GÖKKAYA \n" "Language-Team: Turkish\n" @@ -53,16 +53,16 @@ msgstr "Aşağıdaki çekirdekler silinecek:" msgid "Continue ?" msgstr "Devam et ?" -#: src/Common/LinuxKernel.vala:744 src/Console/AppConsole.vala:309 +#: src/Common/LinuxKernel.vala:744 src/Console/AppConsole.vala:302 msgid "Latest update" msgstr "Son güncelleme" -#: src/Common/LinuxKernel.vala:755 src/Console/AppConsole.vala:316 +#: src/Common/LinuxKernel.vala:755 src/Console/AppConsole.vala:309 msgid "Latest point update" msgstr "Son güncelleme noktası" -#: src/Common/LinuxKernel.vala:763 src/Console/AppConsole.vala:321 -#: src/Console/AppConsole.vala:371 +#: src/Common/LinuxKernel.vala:763 src/Console/AppConsole.vala:314 +#: src/Console/AppConsole.vala:364 msgid "No updates found" msgstr "Güncelleme bulunamadı" @@ -92,34 +92,34 @@ msgstr "Kurulu" msgid "Running" msgstr "Çalışıyor" -#: src/Common/LinuxKernel.vala:1183 +#: src/Common/LinuxKernel.vala:1182 msgid "Downloading" msgstr "İndiriliyor" -#: src/Common/LinuxKernel.vala:1202 +#: src/Common/LinuxKernel.vala:1201 #: src/Utility/Gtk/CustomMessageDialog.vala:148 #: src/Utility/Gtk/CustomMessageDialog.vala:152 msgid "OK" msgstr "TAMAM" -#: src/Common/LinuxKernel.vala:1208 +#: src/Common/LinuxKernel.vala:1206 msgid "ERROR" msgstr "HATA" -#: src/Common/LinuxKernel.vala:1222 src/Gtk/MainWindow.vala:650 +#: src/Common/LinuxKernel.vala:1220 src/Gtk/MainWindow.vala:650 msgid "This kernel is already installed." msgstr "Bu çekirdek zaten kurulu." -#: src/Common/LinuxKernel.vala:1248 +#: src/Common/LinuxKernel.vala:1246 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "Kurulum tamamlandı. Yeni çekirdeği kullanmak için yeniden başlatma gerekiyor." -#: src/Common/LinuxKernel.vala:1251 +#: src/Common/LinuxKernel.vala:1249 msgid "Installation completed with errors" msgstr "Kurulum hatalarla tamamlandı" -#: src/Common/LinuxKernel.vala:1267 +#: src/Common/LinuxKernel.vala:1265 msgid "" "Selected kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -127,19 +127,19 @@ msgstr "" "Seçilen çekirdek şu anda çalışıyor ve kaldırılamıyor.\n" " Bunu kaldırmadan önce başka bir çekirdek yükleyin." -#: src/Common/LinuxKernel.vala:1272 +#: src/Common/LinuxKernel.vala:1270 msgid "Preparing to remove selected kernels" msgstr "Seçilen çekirdekleri kaldırmak için hazırlanıyor" -#: src/Common/LinuxKernel.vala:1303 src/Common/LinuxKernel.vala:1350 +#: src/Common/LinuxKernel.vala:1301 src/Common/LinuxKernel.vala:1348 msgid "Un-install completed" msgstr "Kaldırma tamamlandı" -#: src/Common/LinuxKernel.vala:1306 src/Common/LinuxKernel.vala:1353 +#: src/Common/LinuxKernel.vala:1304 src/Common/LinuxKernel.vala:1351 msgid "Un-install completed with errors" msgstr "Kaldırma hatalarla tamamlandı" -#: src/Common/LinuxKernel.vala:1319 +#: src/Common/LinuxKernel.vala:1317 msgid "" "This kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -147,19 +147,11 @@ msgstr "" "Bu çekirdek şu anda çalışıyor ve bu sebeple kaldırılamaz.\n" "Bunu kaldırmadan önce başka bir çekirdek yükleyin." -#: src/Common/Main.vala:120 -msgid "Commands listed below are not available on this system" -msgstr "Aşağıda listelenen komutlar bu sistemde mevcut değil" - -#: src/Common/Main.vala:121 -msgid "Please install required packages and try again" -msgstr "Lütfen gerekli paketleri yükleyin ve tekrar deneyin" - -#: src/Common/Main.vala:267 +#: src/Common/Main.vala:238 msgid "Called from" msgstr "" -#: src/Common/Main.vala:279 +#: src/Common/Main.vala:250 #, fuzzy msgid "Notifications are disabled" msgstr "Bildirim" @@ -169,135 +161,135 @@ msgstr "Bildirim" msgid "File not found: %s" msgstr "Şu dosya bulunamadı: %s" -#: src/Console/AppConsole.vala:69 src/Gtk/AppGtk.vala:156 +#: src/Console/AppConsole.vala:62 src/Gtk/AppGtk.vala:149 msgid "Syntax" msgstr "Sözdizimi" -#: src/Console/AppConsole.vala:71 +#: src/Console/AppConsole.vala:64 msgid "Commands" msgstr "Komutlar" -#: src/Console/AppConsole.vala:73 +#: src/Console/AppConsole.vala:66 msgid "Check for kernel updates" msgstr "Çekirdek güncellemelerini kontrol et" -#: src/Console/AppConsole.vala:74 +#: src/Console/AppConsole.vala:67 msgid "Check for kernel updates and notify current user" msgstr "Çekirdek güncellemelerini kontrol et ve mevcut kullanıcıyı uyar" -#: src/Console/AppConsole.vala:75 +#: src/Console/AppConsole.vala:68 msgid "List all available mainline kernels" msgstr "Tüm mainline çekirdeklerini listele" -#: src/Console/AppConsole.vala:76 +#: src/Console/AppConsole.vala:69 msgid "List installed kernels" msgstr "Kurulu çekirdekleri listele" -#: src/Console/AppConsole.vala:77 +#: src/Console/AppConsole.vala:70 msgid "Install latest mainline kernel" msgstr "En son mainline çekirdeğini kur" -#: src/Console/AppConsole.vala:78 +#: src/Console/AppConsole.vala:71 msgid "Install latest point update for current series" msgstr "Mevcut çekirdek serisi için en güncelleme noktasını kur" -#: src/Console/AppConsole.vala:79 +#: src/Console/AppConsole.vala:72 msgid "Install specified mainline kernel" msgstr "Belirtilen mainline çekirdeğini kur" -#: src/Console/AppConsole.vala:80 +#: src/Console/AppConsole.vala:73 #, fuzzy msgid "Uninstall specified kernels" msgstr "Belirtilen mainline çekirdeğini kur" -#: src/Console/AppConsole.vala:81 src/Gtk/MainWindow.vala:395 +#: src/Console/AppConsole.vala:74 src/Gtk/MainWindow.vala:395 msgid "Remove installed kernels older than running kernel" msgstr "Çalışan çekirdekten eski olan kurulu çekirdekleri kaldır" -#: src/Console/AppConsole.vala:82 +#: src/Console/AppConsole.vala:75 #, fuzzy msgid "Download specified kernels" msgstr "Belirtilen çekirdek için paketleri indir" -#: src/Console/AppConsole.vala:83 +#: src/Console/AppConsole.vala:76 msgid "Remove files from application cache" msgstr "Dosyaları uygulama önbelleğinden sil" -#: src/Console/AppConsole.vala:84 +#: src/Console/AppConsole.vala:77 msgid "Show unstable and RC releases" msgstr "Kararsız ve RC sürümleri göster" -#: src/Console/AppConsole.vala:86 src/Gtk/AppGtk.vala:158 +#: src/Console/AppConsole.vala:79 src/Gtk/AppGtk.vala:151 msgid "Options" msgstr "Seçenekler" -#: src/Console/AppConsole.vala:88 +#: src/Console/AppConsole.vala:81 msgid "Enable verbose debugging output" msgstr "Ayrıntılı hata ayıklama çıktısını etkinleştir" -#: src/Console/AppConsole.vala:89 +#: src/Console/AppConsole.vala:82 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "Tüm istemler için Evet'i kabul edin (etkileşimsiz kip)" -#: src/Console/AppConsole.vala:90 +#: src/Console/AppConsole.vala:83 msgid "Override user" msgstr "Kullanıcıyı geçersiz kıl" -#: src/Console/AppConsole.vala:93 +#: src/Console/AppConsole.vala:86 msgid "A version string taken from the output of --list" msgstr "" -#: src/Console/AppConsole.vala:94 +#: src/Console/AppConsole.vala:87 msgid "" "One or more version strings (comma-separated) taken from the output of --list" msgstr "" -#: src/Console/AppConsole.vala:169 src/Gtk/AppGtk.vala:143 +#: src/Console/AppConsole.vala:162 src/Gtk/AppGtk.vala:136 msgid "Unknown option" msgstr "Bilinmeyen seçenek" -#: src/Console/AppConsole.vala:171 src/Console/AppConsole.vala:263 -#: src/Console/AppConsole.vala:291 +#: src/Console/AppConsole.vala:164 src/Console/AppConsole.vala:256 +#: src/Console/AppConsole.vala:284 #, fuzzy msgid "Run" msgstr "Çalıştır '" -#: src/Console/AppConsole.vala:171 +#: src/Console/AppConsole.vala:164 #, fuzzy msgid "to list all options" msgstr "Tüm seçenekleri göster" -#: src/Console/AppConsole.vala:236 src/Console/AppConsole.vala:271 +#: src/Console/AppConsole.vala:229 src/Console/AppConsole.vala:264 msgid "No kernels specified" msgstr "Belirtilen çekirdek yok" -#: src/Console/AppConsole.vala:242 +#: src/Console/AppConsole.vala:235 msgid "Multiple kernels selected for installation. Select only one." msgstr "Kurulum için çoklu çekirdek seçildi. Sadece bir tane seçiniz." -#: src/Console/AppConsole.vala:260 src/Gtk/MainWindow.vala:100 +#: src/Console/AppConsole.vala:253 src/Gtk/MainWindow.vala:100 msgid "Could not find requested version" msgstr "İstenen sürüm bulunamadı" -#: src/Console/AppConsole.vala:263 +#: src/Console/AppConsole.vala:256 msgid "and use a version string listed in first column" msgstr "" -#: src/Console/AppConsole.vala:290 +#: src/Console/AppConsole.vala:283 msgid "Command not specified" msgstr "Komut belirtilmedi" -#: src/Console/AppConsole.vala:291 +#: src/Console/AppConsole.vala:284 #, fuzzy msgid "to list all commands" msgstr "Tüm seçenekleri göster" -#: src/Console/AppConsole.vala:343 src/Console/AppConsole.vala:359 +#: src/Console/AppConsole.vala:336 src/Console/AppConsole.vala:352 #, fuzzy, c-format msgid "Kernel %s Available" msgstr "Mevcut Paketler" -#: src/Console/AppConsole.vala:346 src/Console/AppConsole.vala:362 +#: src/Console/AppConsole.vala:339 src/Console/AppConsole.vala:355 #: src/Gtk/MainWindow.vala:333 msgid "Install" msgstr "Kur" @@ -306,11 +298,11 @@ msgstr "Kur" msgid "Show" msgstr "" -#: src/Gtk/AppGtk.vala:160 +#: src/Gtk/AppGtk.vala:153 msgid "Print debug information" msgstr "Hata ayıklama bilgisini yazdır" -#: src/Gtk/AppGtk.vala:161 +#: src/Gtk/AppGtk.vala:154 msgid "Show all options" msgstr "Tüm seçenekleri göster" @@ -534,13 +526,15 @@ msgstr "Hayır" msgid "Missing Icon" msgstr "Eksik Simge" -#: src/Utility/TeeJee.FileSystem.vala:71 src/Utility/TeeJee.FileSystem.vala:74 +#: src/Utility/TeeJee.FileSystem.vala:70 src/Utility/TeeJee.FileSystem.vala:73 +#, fuzzy msgid "File deleted" -msgstr "Dosya silindi" +msgstr "Dosya kaydedildi" -#: src/Utility/TeeJee.FileSystem.vala:80 src/Utility/TeeJee.FileSystem.vala:276 +#: src/Utility/TeeJee.FileSystem.vala:79 src/Utility/TeeJee.FileSystem.vala:273 +#, fuzzy msgid "Failed to delete file" -msgstr "Dosya silme başarısız" +msgstr "Dosya yazma başarısız" #: src/Utility/TeeJee.FileSystem.vala:99 msgid "Failed to read file" @@ -551,45 +545,44 @@ msgstr "Dosya okuma başarısız" msgid "File saved" msgstr "Dosya kaydedildi" -#: src/Utility/TeeJee.FileSystem.vala:139 +#: src/Utility/TeeJee.FileSystem.vala:137 msgid "Failed to write file" msgstr "Dosya yazma başarısız" -#: src/Utility/TeeJee.FileSystem.vala:152 -#: src/Utility/TeeJee.FileSystem.vala:155 +#: src/Utility/TeeJee.FileSystem.vala:150 +#: src/Utility/TeeJee.FileSystem.vala:153 msgid "File copied" msgstr "Dosya kopyalandı" -#: src/Utility/TeeJee.FileSystem.vala:163 +#: src/Utility/TeeJee.FileSystem.vala:161 msgid "Failed to copy file" msgstr "Dosya kopyalama başarısız" -#: src/Utility/TeeJee.FileSystem.vala:173 +#: src/Utility/TeeJee.FileSystem.vala:171 msgid "File not found" msgstr "Dosya bulunamadı" -#: src/Utility/TeeJee.FileSystem.vala:187 -#: src/Utility/TeeJee.FileSystem.vala:190 +#: src/Utility/TeeJee.FileSystem.vala:185 +#: src/Utility/TeeJee.FileSystem.vala:188 msgid "File moved" msgstr "Dosya taşındı" -#: src/Utility/TeeJee.FileSystem.vala:195 +#: src/Utility/TeeJee.FileSystem.vala:193 msgid "Failed to move file" msgstr "Dosya taşıma başarısız" -#: src/Utility/TeeJee.FileSystem.vala:252 -#: src/Utility/TeeJee.FileSystem.vala:255 +#: src/Utility/TeeJee.FileSystem.vala:250 +#: src/Utility/TeeJee.FileSystem.vala:253 msgid "Created directory" msgstr "Dizin oluşturuldu" -#: src/Utility/TeeJee.FileSystem.vala:262 +#: src/Utility/TeeJee.FileSystem.vala:260 msgid "Failed to create dir" msgstr "Dizin oluşturma başarısız" -#: src/Utility/TeeJee.FileSystem.vala:275 -#, fuzzy +#: src/Utility/TeeJee.FileSystem.vala:272 msgid "Deleted" -msgstr "Dosya silindi" +msgstr "" #: src/Utility/TeeJee.Logging.vala:59 msgid "E" diff --git a/po/uk.po b/po/uk.po index 07cbe633..56d87ee3 100644 --- a/po/uk.po +++ b/po/uk.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-12 04:22-0400\n" +"POT-Creation-Date: 2020-05-14 04:48-0400\n" "PO-Revision-Date: 2019-07-25 11:00+0300\n" "Last-Translator: Serhii Golovko \n" "Language-Team: Ukranian \n" @@ -53,16 +53,16 @@ msgstr "Наступні ядра будуть видалені:" msgid "Continue ?" msgstr "Продовжувати ?" -#: src/Common/LinuxKernel.vala:744 src/Console/AppConsole.vala:309 +#: src/Common/LinuxKernel.vala:744 src/Console/AppConsole.vala:302 msgid "Latest update" msgstr "Останнє оновлення" -#: src/Common/LinuxKernel.vala:755 src/Console/AppConsole.vala:316 +#: src/Common/LinuxKernel.vala:755 src/Console/AppConsole.vala:309 msgid "Latest point update" msgstr "Остання точка оновлення" -#: src/Common/LinuxKernel.vala:763 src/Console/AppConsole.vala:321 -#: src/Console/AppConsole.vala:371 +#: src/Common/LinuxKernel.vala:763 src/Console/AppConsole.vala:314 +#: src/Console/AppConsole.vala:364 msgid "No updates found" msgstr "Оновлень не знайдено" @@ -92,34 +92,34 @@ msgstr "Встановлено" msgid "Running" msgstr "Використовується" -#: src/Common/LinuxKernel.vala:1183 +#: src/Common/LinuxKernel.vala:1182 msgid "Downloading" msgstr "Завантаження" -#: src/Common/LinuxKernel.vala:1202 +#: src/Common/LinuxKernel.vala:1201 #: src/Utility/Gtk/CustomMessageDialog.vala:148 #: src/Utility/Gtk/CustomMessageDialog.vala:152 msgid "OK" msgstr "Добре" -#: src/Common/LinuxKernel.vala:1208 +#: src/Common/LinuxKernel.vala:1206 msgid "ERROR" msgstr "ПОМИЛКА" -#: src/Common/LinuxKernel.vala:1222 src/Gtk/MainWindow.vala:650 +#: src/Common/LinuxKernel.vala:1220 src/Gtk/MainWindow.vala:650 msgid "This kernel is already installed." msgstr "Це ядро вже встановлено." -#: src/Common/LinuxKernel.vala:1248 +#: src/Common/LinuxKernel.vala:1246 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "Установка завершена. Для використання нового ядра потрібна перезавантаження." -#: src/Common/LinuxKernel.vala:1251 +#: src/Common/LinuxKernel.vala:1249 msgid "Installation completed with errors" msgstr "Установка завершена з помилками" -#: src/Common/LinuxKernel.vala:1267 +#: src/Common/LinuxKernel.vala:1265 msgid "" "Selected kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -127,19 +127,19 @@ msgstr "" "Це ядро зараз працює і не може бути видалено. \n" "Встановіть інше ядро, перш ніж видаляти його." -#: src/Common/LinuxKernel.vala:1272 +#: src/Common/LinuxKernel.vala:1270 msgid "Preparing to remove selected kernels" msgstr "Підготовка до видалення вибраних ядер" -#: src/Common/LinuxKernel.vala:1303 src/Common/LinuxKernel.vala:1350 +#: src/Common/LinuxKernel.vala:1301 src/Common/LinuxKernel.vala:1348 msgid "Un-install completed" msgstr "Видалення завершено" -#: src/Common/LinuxKernel.vala:1306 src/Common/LinuxKernel.vala:1353 +#: src/Common/LinuxKernel.vala:1304 src/Common/LinuxKernel.vala:1351 msgid "Un-install completed with errors" msgstr "Видалення завершено з помилками" -#: src/Common/LinuxKernel.vala:1319 +#: src/Common/LinuxKernel.vala:1317 msgid "" "This kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -147,19 +147,11 @@ msgstr "" "Це ядро наразі працює і його неможливо видалити.\n" " Встановіть інше ядро перед тим, як видалити его." -#: src/Common/Main.vala:120 -msgid "Commands listed below are not available on this system" -msgstr "Команди перераховані нижче недоступні на цій системі" - -#: src/Common/Main.vala:121 -msgid "Please install required packages and try again" -msgstr "Будьласка встановіть необхідні пакети та спробуйте ще раз" - -#: src/Common/Main.vala:267 +#: src/Common/Main.vala:238 msgid "Called from" msgstr "Викликано з" -#: src/Common/Main.vala:279 +#: src/Common/Main.vala:250 #, fuzzy msgid "Notifications are disabled" msgstr "Повідомлення вимкнено" @@ -169,137 +161,137 @@ msgstr "Повідомлення вимкнено" msgid "File not found: %s" msgstr "Файл не знайдено: %s" -#: src/Console/AppConsole.vala:69 src/Gtk/AppGtk.vala:156 +#: src/Console/AppConsole.vala:62 src/Gtk/AppGtk.vala:149 msgid "Syntax" msgstr "Синтаксис" -#: src/Console/AppConsole.vala:71 +#: src/Console/AppConsole.vala:64 msgid "Commands" msgstr "Команди" -#: src/Console/AppConsole.vala:73 +#: src/Console/AppConsole.vala:66 msgid "Check for kernel updates" msgstr "Перевірити оновлення ядра" -#: src/Console/AppConsole.vala:74 +#: src/Console/AppConsole.vala:67 msgid "Check for kernel updates and notify current user" msgstr "Перевірте наявність оновлень ядра та повідомте поточного користувача" -#: src/Console/AppConsole.vala:75 +#: src/Console/AppConsole.vala:68 msgid "List all available mainline kernels" msgstr "Список усіх доступних основних ядер" -#: src/Console/AppConsole.vala:76 +#: src/Console/AppConsole.vala:69 msgid "List installed kernels" msgstr "Список встановлених ядер" -#: src/Console/AppConsole.vala:77 +#: src/Console/AppConsole.vala:70 msgid "Install latest mainline kernel" msgstr "Встановіть останнє основне ядро" -#: src/Console/AppConsole.vala:78 +#: src/Console/AppConsole.vala:71 msgid "Install latest point update for current series" msgstr "Встановіть останню точку оновлення для поточної серії" -#: src/Console/AppConsole.vala:79 +#: src/Console/AppConsole.vala:72 msgid "Install specified mainline kernel" msgstr "Встановіть конкретне основне ядро" -#: src/Console/AppConsole.vala:80 +#: src/Console/AppConsole.vala:73 #, fuzzy msgid "Uninstall specified kernels" msgstr "Видаліть конкретні ядра" -#: src/Console/AppConsole.vala:81 src/Gtk/MainWindow.vala:395 +#: src/Console/AppConsole.vala:74 src/Gtk/MainWindow.vala:395 msgid "Remove installed kernels older than running kernel" msgstr "Видаліть встановлені ядра, старші за запущене ядро" -#: src/Console/AppConsole.vala:82 +#: src/Console/AppConsole.vala:75 #, fuzzy msgid "Download specified kernels" msgstr "Завантажте конкретні ядра" -#: src/Console/AppConsole.vala:83 +#: src/Console/AppConsole.vala:76 msgid "Remove files from application cache" msgstr "Видалити файли з кешу програми" -#: src/Console/AppConsole.vala:84 +#: src/Console/AppConsole.vala:77 msgid "Show unstable and RC releases" msgstr "Приховати нестабільні і реліз-кандидат версії" -#: src/Console/AppConsole.vala:86 src/Gtk/AppGtk.vala:158 +#: src/Console/AppConsole.vala:79 src/Gtk/AppGtk.vala:151 msgid "Options" msgstr "Параметри" -#: src/Console/AppConsole.vala:88 +#: src/Console/AppConsole.vala:81 msgid "Enable verbose debugging output" msgstr "Увімкнути багатослівний вихід налагодження" -#: src/Console/AppConsole.vala:89 +#: src/Console/AppConsole.vala:82 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "Припустимо, Так для всіх підказок (неінтерактивний режим)" -#: src/Console/AppConsole.vala:90 +#: src/Console/AppConsole.vala:83 msgid "Override user" msgstr "Перевизначення користувача" -#: src/Console/AppConsole.vala:93 +#: src/Console/AppConsole.vala:86 msgid "A version string taken from the output of --list" msgstr "Рядок версій, взятий з виводу --list" -#: src/Console/AppConsole.vala:94 +#: src/Console/AppConsole.vala:87 #, fuzzy msgid "" "One or more version strings (comma-separated) taken from the output of --list" msgstr "" "Одна або кілька рядків версії (розділені комами), взяті з виводу --list" -#: src/Console/AppConsole.vala:169 src/Gtk/AppGtk.vala:143 +#: src/Console/AppConsole.vala:162 src/Gtk/AppGtk.vala:136 msgid "Unknown option" msgstr "Невідомий параметр" -#: src/Console/AppConsole.vala:171 src/Console/AppConsole.vala:263 -#: src/Console/AppConsole.vala:291 +#: src/Console/AppConsole.vala:164 src/Console/AppConsole.vala:256 +#: src/Console/AppConsole.vala:284 #, fuzzy msgid "Run" msgstr "Запуск" -#: src/Console/AppConsole.vala:171 +#: src/Console/AppConsole.vala:164 #, fuzzy msgid "to list all options" msgstr "Показати усі параметри" -#: src/Console/AppConsole.vala:236 src/Console/AppConsole.vala:271 +#: src/Console/AppConsole.vala:229 src/Console/AppConsole.vala:264 msgid "No kernels specified" msgstr "Ядра не вказані" -#: src/Console/AppConsole.vala:242 +#: src/Console/AppConsole.vala:235 msgid "Multiple kernels selected for installation. Select only one." msgstr "Для встановлення вибрано кілька ядер. Виберіть лише одну." -#: src/Console/AppConsole.vala:260 src/Gtk/MainWindow.vala:100 +#: src/Console/AppConsole.vala:253 src/Gtk/MainWindow.vala:100 msgid "Could not find requested version" msgstr "Не вдалося знайти запитувану версію" -#: src/Console/AppConsole.vala:263 +#: src/Console/AppConsole.vala:256 msgid "and use a version string listed in first column" msgstr "і використовувати рядок версій, вказаний у першому стовпці" -#: src/Console/AppConsole.vala:290 +#: src/Console/AppConsole.vala:283 msgid "Command not specified" msgstr "Команда не вказана" -#: src/Console/AppConsole.vala:291 +#: src/Console/AppConsole.vala:284 #, fuzzy msgid "to list all commands" msgstr "Показати усі параметри" -#: src/Console/AppConsole.vala:343 src/Console/AppConsole.vala:359 +#: src/Console/AppConsole.vala:336 src/Console/AppConsole.vala:352 #, fuzzy, c-format msgid "Kernel %s Available" msgstr "Доступні пакети" -#: src/Console/AppConsole.vala:346 src/Console/AppConsole.vala:362 +#: src/Console/AppConsole.vala:339 src/Console/AppConsole.vala:355 #: src/Gtk/MainWindow.vala:333 msgid "Install" msgstr "Встановити" @@ -308,11 +300,11 @@ msgstr "Встановити" msgid "Show" msgstr "Показати" -#: src/Gtk/AppGtk.vala:160 +#: src/Gtk/AppGtk.vala:153 msgid "Print debug information" msgstr "Роздрукувати зневадження" -#: src/Gtk/AppGtk.vala:161 +#: src/Gtk/AppGtk.vala:154 msgid "Show all options" msgstr "Показати усі параметри" @@ -538,13 +530,15 @@ msgstr "Ні" msgid "Missing Icon" msgstr "Нема значка" -#: src/Utility/TeeJee.FileSystem.vala:71 src/Utility/TeeJee.FileSystem.vala:74 +#: src/Utility/TeeJee.FileSystem.vala:70 src/Utility/TeeJee.FileSystem.vala:73 +#, fuzzy msgid "File deleted" -msgstr "Файл видалено" +msgstr "Файл збережено" -#: src/Utility/TeeJee.FileSystem.vala:80 src/Utility/TeeJee.FileSystem.vala:276 +#: src/Utility/TeeJee.FileSystem.vala:79 src/Utility/TeeJee.FileSystem.vala:273 +#, fuzzy msgid "Failed to delete file" -msgstr "Невдалося видалити файл" +msgstr "Невдалося записати файл" #: src/Utility/TeeJee.FileSystem.vala:99 msgid "Failed to read file" @@ -555,45 +549,44 @@ msgstr "Невдалося прочитати файл" msgid "File saved" msgstr "Файл збережено" -#: src/Utility/TeeJee.FileSystem.vala:139 +#: src/Utility/TeeJee.FileSystem.vala:137 msgid "Failed to write file" msgstr "Невдалося записати файл" -#: src/Utility/TeeJee.FileSystem.vala:152 -#: src/Utility/TeeJee.FileSystem.vala:155 +#: src/Utility/TeeJee.FileSystem.vala:150 +#: src/Utility/TeeJee.FileSystem.vala:153 msgid "File copied" msgstr "Невдалося скопіювати файл" -#: src/Utility/TeeJee.FileSystem.vala:163 +#: src/Utility/TeeJee.FileSystem.vala:161 msgid "Failed to copy file" msgstr "Невдалося скопіювати файл" -#: src/Utility/TeeJee.FileSystem.vala:173 +#: src/Utility/TeeJee.FileSystem.vala:171 msgid "File not found" msgstr "Файл не знайдено" -#: src/Utility/TeeJee.FileSystem.vala:187 -#: src/Utility/TeeJee.FileSystem.vala:190 +#: src/Utility/TeeJee.FileSystem.vala:185 +#: src/Utility/TeeJee.FileSystem.vala:188 msgid "File moved" msgstr "Файл переміщено" -#: src/Utility/TeeJee.FileSystem.vala:195 +#: src/Utility/TeeJee.FileSystem.vala:193 msgid "Failed to move file" msgstr "Невдалося перемістити файл" -#: src/Utility/TeeJee.FileSystem.vala:252 -#: src/Utility/TeeJee.FileSystem.vala:255 +#: src/Utility/TeeJee.FileSystem.vala:250 +#: src/Utility/TeeJee.FileSystem.vala:253 msgid "Created directory" msgstr "Використовувана кеш-папка" -#: src/Utility/TeeJee.FileSystem.vala:262 +#: src/Utility/TeeJee.FileSystem.vala:260 msgid "Failed to create dir" msgstr "Невдалося створити теку" -#: src/Utility/TeeJee.FileSystem.vala:275 -#, fuzzy +#: src/Utility/TeeJee.FileSystem.vala:272 msgid "Deleted" -msgstr "Видалено" +msgstr "" #: src/Utility/TeeJee.Logging.vala:59 msgid "E" diff --git a/src/Common/DownloadManager.vala b/src/Common/DownloadManager.vala index d7979f28..b4d11acf 100644 --- a/src/Common/DownloadManager.vala +++ b/src/Common/DownloadManager.vala @@ -90,39 +90,33 @@ public class DownloadTask : AsyncTask{ string list = ""; string list_file = working_dir+"/download.list"; foreach(var item in downloads){ - list += "%s\n".printf(item.source_uri); - list += " gid=%s\n".printf(item.gid); - list += " dir=%s\n".printf(item.partial_dir); - list += " out=%s\n".printf(item.file_name); + list += item.source_uri + "\n" + + " gid=" + item.gid + "\n" + + " dir=" + item.partial_dir + "\n" + + " out=" + item.file_name + "\n"; } file_write(list_file, list); - //log_debug("LinuxKernel.CURRENT_USER="+LinuxKernel.CURRENT_USER); - //log_debug("App.user_login="+App.user_login); - //log_debug("saved download list: %s".printf(list_file)); - - chown(list_file,App.user_login,App.user_login); - - string cmd = "aria2c"; - cmd += " --no-netrc true"; - cmd += " -i '%s'".printf(escape_single_quote(list_file)); - cmd += " --show-console-readout=false"; - cmd += " --summary-interval=1"; - cmd += " --auto-save-interval=1"; - cmd += " --human-readable=false"; - cmd += " --enable-color=false"; - cmd += " --allow-overwrite"; - cmd += " --connect-timeout=%d".printf(connect_timeout_secs); - cmd += " --timeout=%d".printf(timeout_secs); - cmd += " --max-concurrent-downloads=%d".printf(concurrent_downloads); - cmd += " --max-file-not-found=3"; - cmd += " --retry-wait=2"; + string cmd = "aria2c" + + " --no-netrc true" + + " -i '%s'".printf(escape_single_quote(list_file)) + + " --show-console-readout=false" + + " --summary-interval=1" + + " --auto-save-interval=1" + + " --human-readable=false" + + " --enable-color=false" + + " --allow-overwrite" + + " --connect-timeout=%d".printf(connect_timeout_secs) + + " --timeout=%d".printf(timeout_secs) + + " --max-concurrent-downloads=%d".printf(concurrent_downloads) + + " --max-file-not-found=3" + + " --retry-wait=2"; log_debug(cmd); return cmd; } - + public override void parse_stdout_line(string out_line){ if (is_terminated) { return; @@ -234,17 +228,6 @@ public class DownloadTask : AsyncTask{ dir_delete(d); } } - - public int read_status(){ - log_debug("read_status:working_dir="+working_dir); - var status_file = working_dir + "/status"; - var f = File.new_for_path(status_file); - if (f.query_exists()){ - string s = file_read(status_file); - return int.parse(s); - } - return -1; - } } diff --git a/src/Common/LinuxKernel.vala b/src/Common/LinuxKernel.vala index 82ddcaa0..8a60fa59 100644 --- a/src/Common/LinuxKernel.vala +++ b/src/Common/LinuxKernel.vala @@ -444,7 +444,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { log_debug("check_installed()"); log_msg(string.nfill(70, '-')); - + foreach(var kern in kernel_list){ kern.is_installed = false; kern.is_running = false; @@ -453,20 +453,20 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { pkg_list_installed = Package.query_installed_packages(); var pkg_versions = new Gee.ArrayList(); - + foreach(var pkg in pkg_list_installed.values){ if (pkg.pname.contains("linux-image")){ if (!pkg_versions.contains(pkg.version_installed)){ - + pkg_versions.add(pkg.version_installed); - + log_msg("Found installed" + ": %s".printf(pkg.version_installed)); string kern_name = "%s".printf(pkg.version_installed); var kern = new LinuxKernel(kern_name, false); kern.is_installed = true; kern.set_apt_pkg_list(); - + bool found = false; foreach(var kernel in kernel_list){ if (kernel.version_main == kern.version_main){ @@ -475,7 +475,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { break; } } - + if (!found){ kernel_list.add(kern); } @@ -498,11 +498,11 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { // Running: 4.4.0-28-generic // Package: 4.4.0-28.47 - + string ver_running = RUNNING_KERNEL.replace("-generic",""); var kern_running = new LinuxKernel.from_version(ver_running); kernel_active = null; - + foreach(var kern in kernel_list){ if (!kern.is_valid){ continue; @@ -1178,8 +1178,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { } dir_create(dl_dir); - chown(dl_dir, CURRENT_USER, CURRENT_USER); - + stdout.printf("\n" + _("Downloading") + ": '%s'... \n".printf(file_name)); stdout.flush(); @@ -1202,7 +1201,6 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { stdout.printf("\r%-70s\n".printf(_("OK"))); stdout.flush(); - chown(file_path, CURRENT_USER, CURRENT_USER); } else{ stdout.printf("\r%-70s\n".printf(_("ERROR"))); diff --git a/src/Common/Main.vala b/src/Common/Main.vala index 94bce357..87f37f52 100644 --- a/src/Common/Main.vala +++ b/src/Common/Main.vala @@ -100,32 +100,6 @@ public class Main : GLib.Object{ } // helpers ------------ - - public static bool check_dependencies(out string msg) { - - string[] dependencies = { "apt-get", "aptitude", "aria2c", "dpkg", "gpg", "lsb_release", "pgrep", "pkexec", "uname" }; - // bash bc cat chmod chown cd cp du echo env find gdbus gzip gunzip id kill ln mv pidof ps read realpath rm setsid sh stat tar wc which while xdg-open - - msg = ""; - - string path; - foreach(string cmd_tool in dependencies) { - path = get_cmd_path (cmd_tool); - if ((path == null) || (path.length == 0)) { - msg += " * " + cmd_tool + "\n"; - } - } - - if (msg.length > 0) { - msg = _("Commands listed below are not available on this system") + ":\n\n" + msg + "\n"; - msg += _("Please install required packages and try again"); - log_msg(msg); - return false; - } - else{ - return true; - } - } public void init_paths(string custom_user_login = ""){ @@ -182,8 +156,6 @@ public class Main : GLib.Object{ log_debug("Saved config file: %s".printf(APP_CONFIG_FILE)); - chown(APP_CONFIG_FILE, user_login, user_login); - update_notification_files(); } @@ -235,7 +207,6 @@ public class Main : GLib.Object{ // begin ------------ - private void update_startup_script(){ // construct the commandline argument for "sleep" @@ -282,7 +253,6 @@ public class Main : GLib.Object{ file_write(STARTUP_SCRIPT_FILE,s); - chown(STARTUP_SCRIPT_FILE, user_login, user_login); } private void update_startup_desktop_file(){ @@ -299,7 +269,6 @@ public class Main : GLib.Object{ file_write(STARTUP_DESKTOP_FILE, txt); - chown(STARTUP_DESKTOP_FILE, user_login, user_login); } else{ file_delete(STARTUP_DESKTOP_FILE); diff --git a/src/Console/AppConsole.vala b/src/Console/AppConsole.vala index dd5e6e45..1c472c36 100644 --- a/src/Console/AppConsole.vala +++ b/src/Console/AppConsole.vala @@ -40,13 +40,6 @@ public class AppConsole : GLib.Object { log_msg(BRANDING_SHORTNAME+" "+BRANDING_VERSION); - //check dependencies - string message; - if (!Main.check_dependencies(out message)) { - log_error(message); - return(0); - } - App = new Main(args, false); var console = new AppConsole(); diff --git a/src/Gtk/AppGtk.vala b/src/Gtk/AppGtk.vala index d4daf536..ec7a4dcf 100644 --- a/src/Gtk/AppGtk.vala +++ b/src/Gtk/AppGtk.vala @@ -44,13 +44,6 @@ public class AppGtk : GLib.Object { Gtk.init(ref args); - //check dependencies - string message; - if (!Main.check_dependencies(out message)) { - gtk_messagebox("", message, null, true); - exit(0); - } - App = new Main(args, true); parse_arguments(args); diff --git a/src/Utility/AsyncTask.vala b/src/Utility/AsyncTask.vala index 57f93026..4f04f977 100644 --- a/src/Utility/AsyncTask.vala +++ b/src/Utility/AsyncTask.vala @@ -155,7 +155,6 @@ public abstract class AsyncTask : GLib.Object{ log_error ("AsyncTask.begin()"); log_error(e.message); has_started = false; - //status = AppStatus.FINISHED; } return has_started; @@ -284,8 +283,6 @@ public abstract class AsyncTask : GLib.Object{ // there may be pending operations which may throw an error } - read_exit_code(); - status_line = ""; err_line = ""; out_line = ""; @@ -293,8 +290,10 @@ public abstract class AsyncTask : GLib.Object{ timer.stop(); log_debug("AsyncTask:finish(): before finish_task()"); + finish_task(); - //dir_delete(working_dir); + + dir_delete(working_dir); if ((status != AppStatus.CANCELLED) && (status != AppStatus.PASSWORD_REQUIRED)) { status = AppStatus.FINISHED; @@ -305,21 +304,6 @@ public abstract class AsyncTask : GLib.Object{ protected abstract void finish_task(); - protected int read_exit_code(){ - exit_code = -1; - string status_file = file_parent(script_file) + "/status"; - log_debug("read_exit_code():"); - log_debug("working_dir="+working_dir); - log_debug("script_file="+script_file); - log_debug("status_file="+status_file); - if (file_exists(status_file)){ - string s = file_read(status_file); - exit_code = int.parse(s); - } - log_debug("exit_code=%d".printf(exit_code)); - return exit_code; - } - public bool is_running(){ return (status == AppStatus.RUNNING); } diff --git a/src/Utility/TeeJee.FileSystem.vala b/src/Utility/TeeJee.FileSystem.vala index ab94cf99..cc8211eb 100644 --- a/src/Utility/TeeJee.FileSystem.vala +++ b/src/Utility/TeeJee.FileSystem.vala @@ -60,7 +60,6 @@ namespace TeeJee.FileSystem{ } public bool file_delete(string file_path, bool show_message = false){ - /* Check and delete file */ try { @@ -80,6 +79,7 @@ namespace TeeJee.FileSystem{ log_error(_("Failed to delete file") + ": %s".printf(file_path)); return false; } + } public string? file_read (string file_path){ @@ -91,15 +91,15 @@ namespace TeeJee.FileSystem{ try{ GLib.FileUtils.get_contents (file_path, out txt, out size); - + return txt; } catch (Error e){ - log_error (e.message); - log_error(_("Failed to read file") + ": %s".printf(file_path)); - } + log_error (e.message); + log_error(_("Failed to read file") + ": %s".printf(file_path)); + } - return null; + return null; } public bool file_write (string f, string contents, bool show_message = false){ @@ -130,8 +130,6 @@ namespace TeeJee.FileSystem{ log_debug(_("File saved") + ":" + f); } - chown(f,App.user_login,App.user_login); - return true; } catch (Error e) { @@ -154,7 +152,7 @@ namespace TeeJee.FileSystem{ else{ log_debug(_("File copied") + ": '%s' → '%s'".printf(src_file, dest_file)); } - chown(dest_file,App.user_login,App.user_login); + return true; } } @@ -191,8 +189,8 @@ namespace TeeJee.FileSystem{ } } catch(Error e){ - log_error (e.message); - log_error(_("Failed to move file") + ": '%s' → '%s'".printf(src_file, dest_file)); + log_error (e.message); + log_error(_("Failed to move file") + ": '%s' → '%s'".printf(src_file, dest_file)); } } @@ -247,7 +245,7 @@ namespace TeeJee.FileSystem{ var dir = File.parse_name (d); if (dir.query_exists () == false) { dir.make_directory_with_parents (null); - chown(d,App.user_login,App.user_login); + if (show_message){ log_msg(_("Created directory") + ": %s".printf(d)); } @@ -265,9 +263,8 @@ namespace TeeJee.FileSystem{ } public bool dir_delete (string dir_path, bool show_message = false){ - /* Recursively deletes directory along with contents */ - + if (!dir_exists(dir_path)) return true; string cmd = "rm -rf '%s'".printf(escape_single_quote(dir_path)); @@ -278,14 +275,15 @@ namespace TeeJee.FileSystem{ if (show_message) log_msg(result); else log_debug("dir_delete():"+result); return (status == 0); - } - public bool chown(string dir_path, string user, string group){ - string cmd = "chown %s:%s -R '%s'".printf(user, group, escape_single_quote(dir_path)); - int status = exec_sync(cmd, null, null); - return (status == 0); } +// public bool chown(string dir_path, string user, string group){ +// string cmd = "chown %s:%s -R '%s'".printf(user, group, escape_single_quote(dir_path)); +// int status = exec_sync(cmd, null, null); +// return (status == 0); +// } + // misc -------------------- public string format_file_size ( @@ -337,12 +335,4 @@ namespace TeeJee.FileSystem{ return file_path.replace("'","'\\''"); } - // dep: chmod - public int chmod (string file, string permission){ - - /* Change file permissions */ - string cmd = "chmod %s '%s'".printf(permission, escape_single_quote(file)); - return exec_sync (cmd, null, null); - } - } diff --git a/src/Utility/TeeJee.Process.vala b/src/Utility/TeeJee.Process.vala index 2b511034..aa310a16 100644 --- a/src/Utility/TeeJee.Process.vala +++ b/src/Utility/TeeJee.Process.vala @@ -60,30 +60,23 @@ namespace TeeJee.ProcessHelper{ catch (SpawnError e) {log_error (e.message);} } - public string? save_bash_script_temp (string cmds, string? file = null, - bool force_locale = true, bool supress_errors = false){ + public string? save_bash_script_temp (string cmds, string? file = null){ + /* Creates a temporary bash script with given commands + * Returns the script file path */ string f = file; if ((file == null) || (file.length == 0)){ string t_dir = create_tmp_dir(); f = get_temp_file_path(t_dir) + ".sh"; } - - /* Creates a temporary bash script with given commands - * Returns the script file path */ - string s = "#!/bin/bash\n\n"; - if (force_locale) s += "LANG=C\n"; - s += "\n" - + "%s\n".printf(cmds) - + "exitCode=${?}\n" - + "echo ${exitCode} > ${exitCode}\n" - + "echo ${exitCode} > status\n"; + string s = "#!/bin/bash\n" + + cmds + "\n"; log_debug("save_bash_script_temp("+file+"):"+f); if(file_write(f,s)){ - chmod (f, "u+x"); + GLib.FileUtils.chmod (f, 0755); return f; } return null; @@ -95,25 +88,8 @@ namespace TeeJee.ProcessHelper{ return d + "/" + timestamp_numeric() + (new Rand()).next_int().to_string(); } - - // find process ------------------------------- - - // dep: which - public string get_cmd_path (string cmd_tool){ - - /* Returns the full path to a command */ - try { - int exitCode; - string stdout, stderr; - Process.spawn_command_line_sync("which " + cmd_tool, out stdout, out stderr, out exitCode); - return stdout; - } - catch (Error e){ - log_error (e.message); - return ""; - } - } + // find process ------------------------------- // dep: ps TODO: Rewrite using /proc public bool process_is_running(long pid){ From ab036f41ff9131fa4cc271994da18c77cf31a14f Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Thu, 14 May 2020 05:33:52 -0400 Subject: [PATCH 092/567] messages.pot --- po/messages.pot | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/messages.pot b/po/messages.pot index ab99fdf3..cbfb9063 100644 --- a/po/messages.pot +++ b/po/messages.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline 1.0.9\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-14 04:48-0400\n" +"POT-Creation-Date: 2020-05-14 05:32-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" From 64cf1ac720fc301e2a5820a981d519cc6faa5d94 Mon Sep 17 00:00:00 2001 From: cappelikan Date: Fri, 15 May 2020 10:09:26 +0300 Subject: [PATCH 093/567] Update uk.po --- po/uk.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/uk.po b/po/uk.po index 22e61987..e586686c 100644 --- a/po/uk.po +++ b/po/uk.po @@ -356,7 +356,7 @@ msgstr "Виберіть ядра для видалення" #: src/Gtk/MainWindow.vala:386 src/Gtk/MainWindow.vala:420 #: src/Gtk/MainWindow.vala:687 msgid "Close window to exit..." -msgstr "" +msgstr "Закрийте вікно, щоб вийти..." #: src/Gtk/MainWindow.vala:394 msgid "Purge" From 28cdb88e84010b17edb818aedda1390a8dfb1542 Mon Sep 17 00:00:00 2001 From: cappelikan Date: Sat, 16 May 2020 10:32:28 +0300 Subject: [PATCH 094/567] Update uk.po --- po/uk.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/uk.po b/po/uk.po index e586686c..136d3c8a 100644 --- a/po/uk.po +++ b/po/uk.po @@ -586,7 +586,7 @@ msgstr "Невдалося створити теку" #: src/Utility/TeeJee.FileSystem.vala:272 msgid "Deleted" -msgstr "" +msgstr "Видалено" #: src/Utility/TeeJee.Logging.vala:59 msgid "E" From 8a7a9432fe924e133350cc3cfc772def14deb328 Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Mon, 18 May 2020 08:03:46 -0400 Subject: [PATCH 095/567] remove un-used code, to check for new ubuntu kernels, was un-used because apt already does that --- po/es.po | 52 ++++++++++++++++++------------------- po/fr.po | 52 ++++++++++++++++++------------------- po/hr.po | 52 ++++++++++++++++++------------------- po/messages.pot | 52 ++++++++++++++++++------------------- po/nl.po | 52 ++++++++++++++++++------------------- po/pl.po | 52 ++++++++++++++++++------------------- po/ru.po | 52 ++++++++++++++++++------------------- po/sv.po | 52 ++++++++++++++++++------------------- po/tr.po | 52 ++++++++++++++++++------------------- po/uk.po | 52 ++++++++++++++++++------------------- src/Common/LinuxKernel.vala | 41 ----------------------------- 11 files changed, 260 insertions(+), 301 deletions(-) diff --git a/po/es.po b/po/es.po index ecb3974d..dce32233 100644 --- a/po/es.po +++ b/po/es.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-14 04:48-0400\n" +"POT-Creation-Date: 2020-05-18 07:56-0400\n" "PO-Revision-Date: 2018-01-03 02:03-0600\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish\n" @@ -33,93 +33,93 @@ msgstr "El índice está al día" msgid "Fetching index..." msgstr "Recuperando índice..." -#: src/Common/LinuxKernel.vala:382 +#: src/Common/LinuxKernel.vala:380 msgid "Fetching index from kernel.ubuntu.com..." msgstr "Recuperando índice de kernel.ubuntu.com…" -#: src/Common/LinuxKernel.vala:694 +#: src/Common/LinuxKernel.vala:653 msgid "Could not find running kernel in list!" msgstr "¡No se pudo encontrar el núcleo en ejecución en la lista!" -#: src/Common/LinuxKernel.vala:700 +#: src/Common/LinuxKernel.vala:659 msgid "Could not find any kernels to remove" msgstr "Seleccione los núcleos que se desinstalarán" -#: src/Common/LinuxKernel.vala:709 +#: src/Common/LinuxKernel.vala:668 msgid "The following kernels will be removed:" msgstr "Los siguientes kernels serán eliminados:" -#: src/Common/LinuxKernel.vala:716 +#: src/Common/LinuxKernel.vala:675 msgid "Continue ?" msgstr "¿Continuar?" -#: src/Common/LinuxKernel.vala:744 src/Console/AppConsole.vala:302 +#: src/Common/LinuxKernel.vala:703 src/Console/AppConsole.vala:302 msgid "Latest update" msgstr "" -#: src/Common/LinuxKernel.vala:755 src/Console/AppConsole.vala:309 +#: src/Common/LinuxKernel.vala:714 src/Console/AppConsole.vala:309 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:763 src/Console/AppConsole.vala:314 +#: src/Common/LinuxKernel.vala:722 src/Console/AppConsole.vala:314 #: src/Console/AppConsole.vala:364 msgid "No updates found" msgstr "No se encontró ninguna actualización" -#: src/Common/LinuxKernel.vala:773 +#: src/Common/LinuxKernel.vala:732 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "" -#: src/Common/LinuxKernel.vala:1039 +#: src/Common/LinuxKernel.vala:998 msgid "Packages Available" msgstr "Paquetes disponibles" -#: src/Common/LinuxKernel.vala:1047 +#: src/Common/LinuxKernel.vala:1006 msgid "Packages Installed" msgstr "Paquetes instalados" -#: src/Common/LinuxKernel.vala:1131 +#: src/Common/LinuxKernel.vala:1090 msgid "Available Kernels" msgstr "Núcleos disponibles" -#: src/Common/LinuxKernel.vala:1148 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1107 src/Gtk/MainWindow.vala:186 msgid "Installed" msgstr "Instalado" -#: src/Common/LinuxKernel.vala:1148 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1107 src/Gtk/MainWindow.vala:186 #: src/Gtk/MainWindow.vala:628 src/Gtk/MainWindow.vala:642 msgid "Running" msgstr "En ejecución" -#: src/Common/LinuxKernel.vala:1182 +#: src/Common/LinuxKernel.vala:1141 msgid "Downloading" msgstr "Descargando" -#: src/Common/LinuxKernel.vala:1201 +#: src/Common/LinuxKernel.vala:1160 #: src/Utility/Gtk/CustomMessageDialog.vala:148 #: src/Utility/Gtk/CustomMessageDialog.vala:152 msgid "OK" msgstr "Aceptar" -#: src/Common/LinuxKernel.vala:1206 +#: src/Common/LinuxKernel.vala:1165 msgid "ERROR" msgstr "ERROR" -#: src/Common/LinuxKernel.vala:1220 src/Gtk/MainWindow.vala:650 +#: src/Common/LinuxKernel.vala:1179 src/Gtk/MainWindow.vala:650 msgid "This kernel is already installed." msgstr "Este núcleo ya se instaló." -#: src/Common/LinuxKernel.vala:1246 +#: src/Common/LinuxKernel.vala:1205 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "Instalación finalizada. Se necesita reiniciar para utilizar el núcleo nuevo." -#: src/Common/LinuxKernel.vala:1249 +#: src/Common/LinuxKernel.vala:1208 msgid "Installation completed with errors" msgstr "Instalación finalizada con errores" -#: src/Common/LinuxKernel.vala:1265 +#: src/Common/LinuxKernel.vala:1224 msgid "" "Selected kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -127,19 +127,19 @@ msgstr "" "El núcleo seleccionado está en ejecución y no puede desinstalarse.\n" "Instale otro núcleo antes de desinstalar este." -#: src/Common/LinuxKernel.vala:1270 +#: src/Common/LinuxKernel.vala:1229 msgid "Preparing to remove selected kernels" msgstr "Preparándose para desinstalar los núcleos seleccionados" -#: src/Common/LinuxKernel.vala:1301 src/Common/LinuxKernel.vala:1348 +#: src/Common/LinuxKernel.vala:1260 src/Common/LinuxKernel.vala:1307 msgid "Un-install completed" msgstr "Desinstalación finalizada" -#: src/Common/LinuxKernel.vala:1304 src/Common/LinuxKernel.vala:1351 +#: src/Common/LinuxKernel.vala:1263 src/Common/LinuxKernel.vala:1310 msgid "Un-install completed with errors" msgstr "Desinstalación finalizada con errores" -#: src/Common/LinuxKernel.vala:1317 +#: src/Common/LinuxKernel.vala:1276 msgid "" "This kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." diff --git a/po/fr.po b/po/fr.po index 92b33f1f..c2f3082a 100644 --- a/po/fr.po +++ b/po/fr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-14 04:48-0400\n" +"POT-Creation-Date: 2020-05-18 07:56-0400\n" "PO-Revision-Date: 2018-08-05 15:50+0200\n" "Last-Translator: Yolateng0 \n" "Language-Team: French\n" @@ -34,96 +34,96 @@ msgstr "L'index est à jour" msgid "Fetching index..." msgstr "" -#: src/Common/LinuxKernel.vala:382 +#: src/Common/LinuxKernel.vala:380 msgid "Fetching index from kernel.ubuntu.com..." msgstr "Récupération de l'index depuis kernel.ubuntu.com..." -#: src/Common/LinuxKernel.vala:694 +#: src/Common/LinuxKernel.vala:653 #, fuzzy msgid "Could not find running kernel in list!" msgstr "Impossible de trouver la version demandée" -#: src/Common/LinuxKernel.vala:700 +#: src/Common/LinuxKernel.vala:659 #, fuzzy msgid "Could not find any kernels to remove" msgstr "Sélectionnez les noyaux à supprimer" -#: src/Common/LinuxKernel.vala:709 +#: src/Common/LinuxKernel.vala:668 msgid "The following kernels will be removed:" msgstr "" -#: src/Common/LinuxKernel.vala:716 +#: src/Common/LinuxKernel.vala:675 msgid "Continue ?" msgstr "" -#: src/Common/LinuxKernel.vala:744 src/Console/AppConsole.vala:302 +#: src/Common/LinuxKernel.vala:703 src/Console/AppConsole.vala:302 msgid "Latest update" msgstr "" -#: src/Common/LinuxKernel.vala:755 src/Console/AppConsole.vala:309 +#: src/Common/LinuxKernel.vala:714 src/Console/AppConsole.vala:309 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:763 src/Console/AppConsole.vala:314 +#: src/Common/LinuxKernel.vala:722 src/Console/AppConsole.vala:314 #: src/Console/AppConsole.vala:364 msgid "No updates found" msgstr "Aucune mise à jour disponible" -#: src/Common/LinuxKernel.vala:773 +#: src/Common/LinuxKernel.vala:732 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "" -#: src/Common/LinuxKernel.vala:1039 +#: src/Common/LinuxKernel.vala:998 msgid "Packages Available" msgstr "Paquets disponibles" -#: src/Common/LinuxKernel.vala:1047 +#: src/Common/LinuxKernel.vala:1006 msgid "Packages Installed" msgstr "Paquets installés" -#: src/Common/LinuxKernel.vala:1131 +#: src/Common/LinuxKernel.vala:1090 msgid "Available Kernels" msgstr "Noyaux disponibles" -#: src/Common/LinuxKernel.vala:1148 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1107 src/Gtk/MainWindow.vala:186 msgid "Installed" msgstr "Installé" -#: src/Common/LinuxKernel.vala:1148 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1107 src/Gtk/MainWindow.vala:186 #: src/Gtk/MainWindow.vala:628 src/Gtk/MainWindow.vala:642 msgid "Running" msgstr "En cours" -#: src/Common/LinuxKernel.vala:1182 +#: src/Common/LinuxKernel.vala:1141 msgid "Downloading" msgstr "Téléchargement" -#: src/Common/LinuxKernel.vala:1201 +#: src/Common/LinuxKernel.vala:1160 #: src/Utility/Gtk/CustomMessageDialog.vala:148 #: src/Utility/Gtk/CustomMessageDialog.vala:152 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:1206 +#: src/Common/LinuxKernel.vala:1165 msgid "ERROR" msgstr "ERREUR" -#: src/Common/LinuxKernel.vala:1220 src/Gtk/MainWindow.vala:650 +#: src/Common/LinuxKernel.vala:1179 src/Gtk/MainWindow.vala:650 msgid "This kernel is already installed." msgstr "Ce noyau est déjà installé." -#: src/Common/LinuxKernel.vala:1246 +#: src/Common/LinuxKernel.vala:1205 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "Installation complétée. Un redémarrage est nécessaire pour utiliser le " "nouveau noyau." -#: src/Common/LinuxKernel.vala:1249 +#: src/Common/LinuxKernel.vala:1208 msgid "Installation completed with errors" msgstr "Installation terminée avec des erreurs" -#: src/Common/LinuxKernel.vala:1265 +#: src/Common/LinuxKernel.vala:1224 msgid "" "Selected kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -131,19 +131,19 @@ msgstr "" "Ce noyau est en cours d'exécution et ne peut pas être supprimé.\n" " Installez un autre noyau avant de retirer celui-ci." -#: src/Common/LinuxKernel.vala:1270 +#: src/Common/LinuxKernel.vala:1229 msgid "Preparing to remove selected kernels" msgstr "Préparation à la suppression des noyaux sélectionnés" -#: src/Common/LinuxKernel.vala:1301 src/Common/LinuxKernel.vala:1348 +#: src/Common/LinuxKernel.vala:1260 src/Common/LinuxKernel.vala:1307 msgid "Un-install completed" msgstr "Désinstallation complète" -#: src/Common/LinuxKernel.vala:1304 src/Common/LinuxKernel.vala:1351 +#: src/Common/LinuxKernel.vala:1263 src/Common/LinuxKernel.vala:1310 msgid "Un-install completed with errors" msgstr "Désinstallation terminée avec des erreurs" -#: src/Common/LinuxKernel.vala:1317 +#: src/Common/LinuxKernel.vala:1276 msgid "" "This kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." diff --git a/po/hr.po b/po/hr.po index 38079b51..4197a4db 100644 --- a/po/hr.po +++ b/po/hr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-14 04:48-0400\n" +"POT-Creation-Date: 2020-05-18 07:56-0400\n" "PO-Revision-Date: 2017-12-24 00:52+0100\n" "Last-Translator: gogo \n" "Language-Team: Croatian \n" @@ -34,96 +34,96 @@ msgstr "Sadržaj je osvježen" msgid "Fetching index..." msgstr "" -#: src/Common/LinuxKernel.vala:382 +#: src/Common/LinuxKernel.vala:380 msgid "Fetching index from kernel.ubuntu.com..." msgstr "Preuzimanje sadržaja sa kernel.ubuntu.com..." -#: src/Common/LinuxKernel.vala:694 +#: src/Common/LinuxKernel.vala:653 #, fuzzy msgid "Could not find running kernel in list!" msgstr "Nemoguće je pronaći zatraženu inačicu" -#: src/Common/LinuxKernel.vala:700 +#: src/Common/LinuxKernel.vala:659 #, fuzzy msgid "Could not find any kernels to remove" msgstr "Odaberi kernele za uklanjanje" -#: src/Common/LinuxKernel.vala:709 +#: src/Common/LinuxKernel.vala:668 msgid "The following kernels will be removed:" msgstr "" -#: src/Common/LinuxKernel.vala:716 +#: src/Common/LinuxKernel.vala:675 msgid "Continue ?" msgstr "" -#: src/Common/LinuxKernel.vala:744 src/Console/AppConsole.vala:302 +#: src/Common/LinuxKernel.vala:703 src/Console/AppConsole.vala:302 msgid "Latest update" msgstr "" -#: src/Common/LinuxKernel.vala:755 src/Console/AppConsole.vala:309 +#: src/Common/LinuxKernel.vala:714 src/Console/AppConsole.vala:309 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:763 src/Console/AppConsole.vala:314 +#: src/Common/LinuxKernel.vala:722 src/Console/AppConsole.vala:314 #: src/Console/AppConsole.vala:364 msgid "No updates found" msgstr "Nema pronađenih nadopuna" -#: src/Common/LinuxKernel.vala:773 +#: src/Common/LinuxKernel.vala:732 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "" -#: src/Common/LinuxKernel.vala:1039 +#: src/Common/LinuxKernel.vala:998 msgid "Packages Available" msgstr "Dostupni paketi" -#: src/Common/LinuxKernel.vala:1047 +#: src/Common/LinuxKernel.vala:1006 msgid "Packages Installed" msgstr "Instalirani paketi" -#: src/Common/LinuxKernel.vala:1131 +#: src/Common/LinuxKernel.vala:1090 msgid "Available Kernels" msgstr "Dostupni kerneli" -#: src/Common/LinuxKernel.vala:1148 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1107 src/Gtk/MainWindow.vala:186 msgid "Installed" msgstr "Instalirano" -#: src/Common/LinuxKernel.vala:1148 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1107 src/Gtk/MainWindow.vala:186 #: src/Gtk/MainWindow.vala:628 src/Gtk/MainWindow.vala:642 msgid "Running" msgstr "Pokrenuto" -#: src/Common/LinuxKernel.vala:1182 +#: src/Common/LinuxKernel.vala:1141 msgid "Downloading" msgstr "Preuzimanje" -#: src/Common/LinuxKernel.vala:1201 +#: src/Common/LinuxKernel.vala:1160 #: src/Utility/Gtk/CustomMessageDialog.vala:148 #: src/Utility/Gtk/CustomMessageDialog.vala:152 msgid "OK" msgstr "U redu" -#: src/Common/LinuxKernel.vala:1206 +#: src/Common/LinuxKernel.vala:1165 msgid "ERROR" msgstr "GREŠKA" -#: src/Common/LinuxKernel.vala:1220 src/Gtk/MainWindow.vala:650 +#: src/Common/LinuxKernel.vala:1179 src/Gtk/MainWindow.vala:650 msgid "This kernel is already installed." msgstr "Ovaj kernel je već instaliran." -#: src/Common/LinuxKernel.vala:1246 +#: src/Common/LinuxKernel.vala:1205 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "Instalacija je završena. Potrebno je ponovno pokretanje računala kako bi se " "koristio novi kernel." -#: src/Common/LinuxKernel.vala:1249 +#: src/Common/LinuxKernel.vala:1208 msgid "Installation completed with errors" msgstr "Instalacija je završena s greškama" -#: src/Common/LinuxKernel.vala:1265 +#: src/Common/LinuxKernel.vala:1224 msgid "" "Selected kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -131,19 +131,19 @@ msgstr "" "Odabrani kernel je trenutno pokernut i ne može se ukloniti.\n" " Instalirajte drugi kernel prije uklanjanja trenutnog kernela." -#: src/Common/LinuxKernel.vala:1270 +#: src/Common/LinuxKernel.vala:1229 msgid "Preparing to remove selected kernels" msgstr "Pripremanje uklanjanja odabranih kernela" -#: src/Common/LinuxKernel.vala:1301 src/Common/LinuxKernel.vala:1348 +#: src/Common/LinuxKernel.vala:1260 src/Common/LinuxKernel.vala:1307 msgid "Un-install completed" msgstr "Deinstalacija završena" -#: src/Common/LinuxKernel.vala:1304 src/Common/LinuxKernel.vala:1351 +#: src/Common/LinuxKernel.vala:1263 src/Common/LinuxKernel.vala:1310 msgid "Un-install completed with errors" msgstr "Deinstalacija završena s greškama" -#: src/Common/LinuxKernel.vala:1317 +#: src/Common/LinuxKernel.vala:1276 msgid "" "This kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." diff --git a/po/messages.pot b/po/messages.pot index cbfb9063..9c56cb28 100644 --- a/po/messages.pot +++ b/po/messages.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline 1.0.9\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-14 05:32-0400\n" +"POT-Creation-Date: 2020-05-18 07:56-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -37,110 +37,110 @@ msgstr "" msgid "Fetching index..." msgstr "" -#: src/Common/LinuxKernel.vala:382 +#: src/Common/LinuxKernel.vala:380 msgid "Fetching index from kernel.ubuntu.com..." msgstr "" -#: src/Common/LinuxKernel.vala:694 +#: src/Common/LinuxKernel.vala:653 msgid "Could not find running kernel in list!" msgstr "" -#: src/Common/LinuxKernel.vala:700 +#: src/Common/LinuxKernel.vala:659 msgid "Could not find any kernels to remove" msgstr "" -#: src/Common/LinuxKernel.vala:709 +#: src/Common/LinuxKernel.vala:668 msgid "The following kernels will be removed:" msgstr "" -#: src/Common/LinuxKernel.vala:716 +#: src/Common/LinuxKernel.vala:675 msgid "Continue ?" msgstr "" -#: src/Common/LinuxKernel.vala:744 src/Console/AppConsole.vala:302 +#: src/Common/LinuxKernel.vala:703 src/Console/AppConsole.vala:302 msgid "Latest update" msgstr "" -#: src/Common/LinuxKernel.vala:755 src/Console/AppConsole.vala:309 +#: src/Common/LinuxKernel.vala:714 src/Console/AppConsole.vala:309 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:763 src/Console/AppConsole.vala:314 +#: src/Common/LinuxKernel.vala:722 src/Console/AppConsole.vala:314 #: src/Console/AppConsole.vala:364 msgid "No updates found" msgstr "" -#: src/Common/LinuxKernel.vala:773 +#: src/Common/LinuxKernel.vala:732 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "" -#: src/Common/LinuxKernel.vala:1039 +#: src/Common/LinuxKernel.vala:998 msgid "Packages Available" msgstr "" -#: src/Common/LinuxKernel.vala:1047 +#: src/Common/LinuxKernel.vala:1006 msgid "Packages Installed" msgstr "" -#: src/Common/LinuxKernel.vala:1131 +#: src/Common/LinuxKernel.vala:1090 msgid "Available Kernels" msgstr "" -#: src/Common/LinuxKernel.vala:1148 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1107 src/Gtk/MainWindow.vala:186 msgid "Installed" msgstr "" -#: src/Common/LinuxKernel.vala:1148 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1107 src/Gtk/MainWindow.vala:186 #: src/Gtk/MainWindow.vala:628 src/Gtk/MainWindow.vala:642 msgid "Running" msgstr "" -#: src/Common/LinuxKernel.vala:1182 +#: src/Common/LinuxKernel.vala:1141 msgid "Downloading" msgstr "" -#: src/Common/LinuxKernel.vala:1201 +#: src/Common/LinuxKernel.vala:1160 #: src/Utility/Gtk/CustomMessageDialog.vala:148 #: src/Utility/Gtk/CustomMessageDialog.vala:152 msgid "OK" msgstr "" -#: src/Common/LinuxKernel.vala:1206 +#: src/Common/LinuxKernel.vala:1165 msgid "ERROR" msgstr "" -#: src/Common/LinuxKernel.vala:1220 src/Gtk/MainWindow.vala:650 +#: src/Common/LinuxKernel.vala:1179 src/Gtk/MainWindow.vala:650 msgid "This kernel is already installed." msgstr "" -#: src/Common/LinuxKernel.vala:1246 +#: src/Common/LinuxKernel.vala:1205 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" -#: src/Common/LinuxKernel.vala:1249 +#: src/Common/LinuxKernel.vala:1208 msgid "Installation completed with errors" msgstr "" -#: src/Common/LinuxKernel.vala:1265 +#: src/Common/LinuxKernel.vala:1224 msgid "" "Selected kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." msgstr "" -#: src/Common/LinuxKernel.vala:1270 +#: src/Common/LinuxKernel.vala:1229 msgid "Preparing to remove selected kernels" msgstr "" -#: src/Common/LinuxKernel.vala:1301 src/Common/LinuxKernel.vala:1348 +#: src/Common/LinuxKernel.vala:1260 src/Common/LinuxKernel.vala:1307 msgid "Un-install completed" msgstr "" -#: src/Common/LinuxKernel.vala:1304 src/Common/LinuxKernel.vala:1351 +#: src/Common/LinuxKernel.vala:1263 src/Common/LinuxKernel.vala:1310 msgid "Un-install completed with errors" msgstr "" -#: src/Common/LinuxKernel.vala:1317 +#: src/Common/LinuxKernel.vala:1276 msgid "" "This kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." diff --git a/po/nl.po b/po/nl.po index 23fda288..36af2c45 100644 --- a/po/nl.po +++ b/po/nl.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-14 04:48-0400\n" +"POT-Creation-Date: 2020-05-18 07:56-0400\n" "PO-Revision-Date: 2017-04-30 11:50+0200\n" "Last-Translator: Heimen Stoffels \n" "Language-Team: \n" @@ -34,96 +34,96 @@ msgstr "De index is up-to-date" msgid "Fetching index..." msgstr "" -#: src/Common/LinuxKernel.vala:382 +#: src/Common/LinuxKernel.vala:380 msgid "Fetching index from kernel.ubuntu.com..." msgstr "Bezig met ophalen van index van kernel.ubuntu.com..." -#: src/Common/LinuxKernel.vala:694 +#: src/Common/LinuxKernel.vala:653 #, fuzzy msgid "Could not find running kernel in list!" msgstr "De vereiste versie kan niet worden gevonden" -#: src/Common/LinuxKernel.vala:700 +#: src/Common/LinuxKernel.vala:659 #, fuzzy msgid "Could not find any kernels to remove" msgstr "Selecteer de te verwijderen kernels" -#: src/Common/LinuxKernel.vala:709 +#: src/Common/LinuxKernel.vala:668 msgid "The following kernels will be removed:" msgstr "" -#: src/Common/LinuxKernel.vala:716 +#: src/Common/LinuxKernel.vala:675 msgid "Continue ?" msgstr "" -#: src/Common/LinuxKernel.vala:744 src/Console/AppConsole.vala:302 +#: src/Common/LinuxKernel.vala:703 src/Console/AppConsole.vala:302 msgid "Latest update" msgstr "" -#: src/Common/LinuxKernel.vala:755 src/Console/AppConsole.vala:309 +#: src/Common/LinuxKernel.vala:714 src/Console/AppConsole.vala:309 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:763 src/Console/AppConsole.vala:314 +#: src/Common/LinuxKernel.vala:722 src/Console/AppConsole.vala:314 #: src/Console/AppConsole.vala:364 msgid "No updates found" msgstr "Geen updates gevonden" -#: src/Common/LinuxKernel.vala:773 +#: src/Common/LinuxKernel.vala:732 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "" -#: src/Common/LinuxKernel.vala:1039 +#: src/Common/LinuxKernel.vala:998 msgid "Packages Available" msgstr "Beschikbare pakketten" -#: src/Common/LinuxKernel.vala:1047 +#: src/Common/LinuxKernel.vala:1006 msgid "Packages Installed" msgstr "Geïnstalleerde pakketten" -#: src/Common/LinuxKernel.vala:1131 +#: src/Common/LinuxKernel.vala:1090 msgid "Available Kernels" msgstr "Beschikbare kernels" -#: src/Common/LinuxKernel.vala:1148 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1107 src/Gtk/MainWindow.vala:186 msgid "Installed" msgstr "Geïnstalleerd" -#: src/Common/LinuxKernel.vala:1148 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1107 src/Gtk/MainWindow.vala:186 #: src/Gtk/MainWindow.vala:628 src/Gtk/MainWindow.vala:642 msgid "Running" msgstr "Bezig met draaien" -#: src/Common/LinuxKernel.vala:1182 +#: src/Common/LinuxKernel.vala:1141 msgid "Downloading" msgstr "Bezig met downloaden" -#: src/Common/LinuxKernel.vala:1201 +#: src/Common/LinuxKernel.vala:1160 #: src/Utility/Gtk/CustomMessageDialog.vala:148 #: src/Utility/Gtk/CustomMessageDialog.vala:152 msgid "OK" msgstr "Oké" -#: src/Common/LinuxKernel.vala:1206 +#: src/Common/LinuxKernel.vala:1165 msgid "ERROR" msgstr "FOUT" -#: src/Common/LinuxKernel.vala:1220 src/Gtk/MainWindow.vala:650 +#: src/Common/LinuxKernel.vala:1179 src/Gtk/MainWindow.vala:650 msgid "This kernel is already installed." msgstr "Deze kernel is al geïnstalleerd." -#: src/Common/LinuxKernel.vala:1246 +#: src/Common/LinuxKernel.vala:1205 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "De installatie is voltooid. Herstart de computer om de nieuwe kernel te " "gebruiken." -#: src/Common/LinuxKernel.vala:1249 +#: src/Common/LinuxKernel.vala:1208 msgid "Installation completed with errors" msgstr "De installatie is foutloos voltooid" -#: src/Common/LinuxKernel.vala:1265 +#: src/Common/LinuxKernel.vala:1224 msgid "" "Selected kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -132,19 +132,19 @@ msgstr "" "verwijderd.\n" " Installeer een andere kernel voordat u deze verwijdert." -#: src/Common/LinuxKernel.vala:1270 +#: src/Common/LinuxKernel.vala:1229 msgid "Preparing to remove selected kernels" msgstr "Bezig met voorbereiden van verwijderen van geselecteerde kernels" -#: src/Common/LinuxKernel.vala:1301 src/Common/LinuxKernel.vala:1348 +#: src/Common/LinuxKernel.vala:1260 src/Common/LinuxKernel.vala:1307 msgid "Un-install completed" msgstr "Deïnstalleren voltooid" -#: src/Common/LinuxKernel.vala:1304 src/Common/LinuxKernel.vala:1351 +#: src/Common/LinuxKernel.vala:1263 src/Common/LinuxKernel.vala:1310 msgid "Un-install completed with errors" msgstr "Deïnstalleren voltooid, maar met fouten" -#: src/Common/LinuxKernel.vala:1317 +#: src/Common/LinuxKernel.vala:1276 msgid "" "This kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." diff --git a/po/pl.po b/po/pl.po index 5fb9adf7..f26a147c 100644 --- a/po/pl.po +++ b/po/pl.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-14 04:48-0400\n" +"POT-Creation-Date: 2020-05-18 07:56-0400\n" "PO-Revision-Date: 2017-08-12 15:26+0200\n" "Last-Translator: Waldemar Konik \n" "Language-Team: Polish\n" @@ -33,96 +33,96 @@ msgstr "Indeks jest aktualny" msgid "Fetching index..." msgstr "" -#: src/Common/LinuxKernel.vala:382 +#: src/Common/LinuxKernel.vala:380 msgid "Fetching index from kernel.ubuntu.com..." msgstr "Pobieranie indeksu z kernel.ubuntu.com..." -#: src/Common/LinuxKernel.vala:694 +#: src/Common/LinuxKernel.vala:653 #, fuzzy msgid "Could not find running kernel in list!" msgstr "Nie można odnaleźć żądanej wersji" -#: src/Common/LinuxKernel.vala:700 +#: src/Common/LinuxKernel.vala:659 #, fuzzy msgid "Could not find any kernels to remove" msgstr "Wybierz jądro do usunięcia" -#: src/Common/LinuxKernel.vala:709 +#: src/Common/LinuxKernel.vala:668 msgid "The following kernels will be removed:" msgstr "" -#: src/Common/LinuxKernel.vala:716 +#: src/Common/LinuxKernel.vala:675 msgid "Continue ?" msgstr "" -#: src/Common/LinuxKernel.vala:744 src/Console/AppConsole.vala:302 +#: src/Common/LinuxKernel.vala:703 src/Console/AppConsole.vala:302 msgid "Latest update" msgstr "" -#: src/Common/LinuxKernel.vala:755 src/Console/AppConsole.vala:309 +#: src/Common/LinuxKernel.vala:714 src/Console/AppConsole.vala:309 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:763 src/Console/AppConsole.vala:314 +#: src/Common/LinuxKernel.vala:722 src/Console/AppConsole.vala:314 #: src/Console/AppConsole.vala:364 msgid "No updates found" msgstr "Nie znaleziono aktualizacji" -#: src/Common/LinuxKernel.vala:773 +#: src/Common/LinuxKernel.vala:732 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "" -#: src/Common/LinuxKernel.vala:1039 +#: src/Common/LinuxKernel.vala:998 msgid "Packages Available" msgstr "Dostępne pakiety" -#: src/Common/LinuxKernel.vala:1047 +#: src/Common/LinuxKernel.vala:1006 msgid "Packages Installed" msgstr "Pakiety zainstalowane" -#: src/Common/LinuxKernel.vala:1131 +#: src/Common/LinuxKernel.vala:1090 msgid "Available Kernels" msgstr "Dostępne jądra" -#: src/Common/LinuxKernel.vala:1148 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1107 src/Gtk/MainWindow.vala:186 msgid "Installed" msgstr "Zainstalowany" -#: src/Common/LinuxKernel.vala:1148 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1107 src/Gtk/MainWindow.vala:186 #: src/Gtk/MainWindow.vala:628 src/Gtk/MainWindow.vala:642 msgid "Running" msgstr "Uruchomiony" -#: src/Common/LinuxKernel.vala:1182 +#: src/Common/LinuxKernel.vala:1141 msgid "Downloading" msgstr "Pobieranie" -#: src/Common/LinuxKernel.vala:1201 +#: src/Common/LinuxKernel.vala:1160 #: src/Utility/Gtk/CustomMessageDialog.vala:148 #: src/Utility/Gtk/CustomMessageDialog.vala:152 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:1206 +#: src/Common/LinuxKernel.vala:1165 msgid "ERROR" msgstr "BŁĄD" -#: src/Common/LinuxKernel.vala:1220 src/Gtk/MainWindow.vala:650 +#: src/Common/LinuxKernel.vala:1179 src/Gtk/MainWindow.vala:650 msgid "This kernel is already installed." msgstr "To jądro jest już zainstalowane." -#: src/Common/LinuxKernel.vala:1246 +#: src/Common/LinuxKernel.vala:1205 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "Instalacja zakończona. Aby korzystać z nowego jądra, konieczne jest ponowne " "uruchomienie." -#: src/Common/LinuxKernel.vala:1249 +#: src/Common/LinuxKernel.vala:1208 msgid "Installation completed with errors" msgstr "Instalacja zakończona z błędami" -#: src/Common/LinuxKernel.vala:1265 +#: src/Common/LinuxKernel.vala:1224 msgid "" "Selected kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -130,19 +130,19 @@ msgstr "" "Wybrane jądro aktualnie działa i nie może zostać usunięte.\n" " Zainstaluj inne jądro przed usunięciem tego." -#: src/Common/LinuxKernel.vala:1270 +#: src/Common/LinuxKernel.vala:1229 msgid "Preparing to remove selected kernels" msgstr "Przygotowanie do usunięcia wybranych jąder" -#: src/Common/LinuxKernel.vala:1301 src/Common/LinuxKernel.vala:1348 +#: src/Common/LinuxKernel.vala:1260 src/Common/LinuxKernel.vala:1307 msgid "Un-install completed" msgstr "De-instalacja zakończona" -#: src/Common/LinuxKernel.vala:1304 src/Common/LinuxKernel.vala:1351 +#: src/Common/LinuxKernel.vala:1263 src/Common/LinuxKernel.vala:1310 msgid "Un-install completed with errors" msgstr "De-instalacja zakończona z błędami" -#: src/Common/LinuxKernel.vala:1317 +#: src/Common/LinuxKernel.vala:1276 msgid "" "This kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." diff --git a/po/ru.po b/po/ru.po index 462bf385..c6b6e17e 100644 --- a/po/ru.po +++ b/po/ru.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-14 04:48-0400\n" +"POT-Creation-Date: 2020-05-18 07:56-0400\n" "PO-Revision-Date: 2016-12-13 16:46+0300\n" "Last-Translator: Faust3000 \n" "Language-Team: Russian \n" @@ -34,98 +34,98 @@ msgstr "Сведения актуальны" msgid "Fetching index..." msgstr "" -#: src/Common/LinuxKernel.vala:382 +#: src/Common/LinuxKernel.vala:380 msgid "Fetching index from kernel.ubuntu.com..." msgstr "Получение сведений с kernel.ubuntu.com..." -#: src/Common/LinuxKernel.vala:694 +#: src/Common/LinuxKernel.vala:653 #, fuzzy msgid "Could not find running kernel in list!" msgstr "Не удалось найти запрошенную версию" -#: src/Common/LinuxKernel.vala:700 +#: src/Common/LinuxKernel.vala:659 #, fuzzy msgid "Could not find any kernels to remove" msgstr "Не удалось найти запрошенную версию" -#: src/Common/LinuxKernel.vala:709 +#: src/Common/LinuxKernel.vala:668 msgid "The following kernels will be removed:" msgstr "" -#: src/Common/LinuxKernel.vala:716 +#: src/Common/LinuxKernel.vala:675 msgid "Continue ?" msgstr "" -#: src/Common/LinuxKernel.vala:744 src/Console/AppConsole.vala:302 +#: src/Common/LinuxKernel.vala:703 src/Console/AppConsole.vala:302 msgid "Latest update" msgstr "" -#: src/Common/LinuxKernel.vala:755 src/Console/AppConsole.vala:309 +#: src/Common/LinuxKernel.vala:714 src/Console/AppConsole.vala:309 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:763 src/Console/AppConsole.vala:314 +#: src/Common/LinuxKernel.vala:722 src/Console/AppConsole.vala:314 #: src/Console/AppConsole.vala:364 msgid "No updates found" msgstr "Обновлений не найдено" -#: src/Common/LinuxKernel.vala:773 +#: src/Common/LinuxKernel.vala:732 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "" -#: src/Common/LinuxKernel.vala:1039 +#: src/Common/LinuxKernel.vala:998 #, fuzzy msgid "Packages Available" msgstr "Установлено" -#: src/Common/LinuxKernel.vala:1047 +#: src/Common/LinuxKernel.vala:1006 #, fuzzy msgid "Packages Installed" msgstr "Установлено" -#: src/Common/LinuxKernel.vala:1131 +#: src/Common/LinuxKernel.vala:1090 msgid "Available Kernels" msgstr "Доступные ядра" -#: src/Common/LinuxKernel.vala:1148 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1107 src/Gtk/MainWindow.vala:186 msgid "Installed" msgstr "Установлено" -#: src/Common/LinuxKernel.vala:1148 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1107 src/Gtk/MainWindow.vala:186 #: src/Gtk/MainWindow.vala:628 src/Gtk/MainWindow.vala:642 msgid "Running" msgstr "Используется" -#: src/Common/LinuxKernel.vala:1182 +#: src/Common/LinuxKernel.vala:1141 msgid "Downloading" msgstr "Загрузка" -#: src/Common/LinuxKernel.vala:1201 +#: src/Common/LinuxKernel.vala:1160 #: src/Utility/Gtk/CustomMessageDialog.vala:148 #: src/Utility/Gtk/CustomMessageDialog.vala:152 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:1206 +#: src/Common/LinuxKernel.vala:1165 msgid "ERROR" msgstr "ОШИБКА" -#: src/Common/LinuxKernel.vala:1220 src/Gtk/MainWindow.vala:650 +#: src/Common/LinuxKernel.vala:1179 src/Gtk/MainWindow.vala:650 msgid "This kernel is already installed." msgstr "Это ядро уже установлено." -#: src/Common/LinuxKernel.vala:1246 +#: src/Common/LinuxKernel.vala:1205 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "Установка завершена. Обязательно выполните перезагрузку, чтобы использовать " "новое ядро." -#: src/Common/LinuxKernel.vala:1249 +#: src/Common/LinuxKernel.vala:1208 msgid "Installation completed with errors" msgstr "Установка завершена с ошибками" -#: src/Common/LinuxKernel.vala:1265 +#: src/Common/LinuxKernel.vala:1224 #, fuzzy msgid "" "Selected kernel is currently running and cannot be removed.\n" @@ -134,19 +134,19 @@ msgstr "" "Это ядро в настоящий момент работает и не может быть удалено.\n" " Установите другое ядро, прежде чем удалять его." -#: src/Common/LinuxKernel.vala:1270 +#: src/Common/LinuxKernel.vala:1229 msgid "Preparing to remove selected kernels" msgstr "" -#: src/Common/LinuxKernel.vala:1301 src/Common/LinuxKernel.vala:1348 +#: src/Common/LinuxKernel.vala:1260 src/Common/LinuxKernel.vala:1307 msgid "Un-install completed" msgstr "Удаление завершено" -#: src/Common/LinuxKernel.vala:1304 src/Common/LinuxKernel.vala:1351 +#: src/Common/LinuxKernel.vala:1263 src/Common/LinuxKernel.vala:1310 msgid "Un-install completed with errors" msgstr "Удаление завершено с ошибками" -#: src/Common/LinuxKernel.vala:1317 +#: src/Common/LinuxKernel.vala:1276 msgid "" "This kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." diff --git a/po/sv.po b/po/sv.po index 2fcad69e..ef549a35 100644 --- a/po/sv.po +++ b/po/sv.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-14 04:48-0400\n" +"POT-Creation-Date: 2020-05-18 07:56-0400\n" "PO-Revision-Date: 2018-01-13 16:56+0100\n" "Last-Translator: Åke Engelbrektson \n" "Language-Team: Svenska Språkfiler \n" @@ -35,94 +35,94 @@ msgstr "Index är uppdaterat" msgid "Fetching index..." msgstr "Hämtar index för" -#: src/Common/LinuxKernel.vala:382 +#: src/Common/LinuxKernel.vala:380 msgid "Fetching index from kernel.ubuntu.com..." msgstr "Hämtar index från kernel.ubuntu.com ..." -#: src/Common/LinuxKernel.vala:694 +#: src/Common/LinuxKernel.vala:653 #, fuzzy msgid "Could not find running kernel in list!" msgstr "Kunde inte hitta efterfrågad version" -#: src/Common/LinuxKernel.vala:700 +#: src/Common/LinuxKernel.vala:659 #, fuzzy msgid "Could not find any kernels to remove" msgstr "Välj kärnor för borttagning" -#: src/Common/LinuxKernel.vala:709 +#: src/Common/LinuxKernel.vala:668 msgid "The following kernels will be removed:" msgstr "" -#: src/Common/LinuxKernel.vala:716 +#: src/Common/LinuxKernel.vala:675 msgid "Continue ?" msgstr "" -#: src/Common/LinuxKernel.vala:744 src/Console/AppConsole.vala:302 +#: src/Common/LinuxKernel.vala:703 src/Console/AppConsole.vala:302 msgid "Latest update" msgstr "" -#: src/Common/LinuxKernel.vala:755 src/Console/AppConsole.vala:309 +#: src/Common/LinuxKernel.vala:714 src/Console/AppConsole.vala:309 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:763 src/Console/AppConsole.vala:314 +#: src/Common/LinuxKernel.vala:722 src/Console/AppConsole.vala:314 #: src/Console/AppConsole.vala:364 msgid "No updates found" msgstr "Inga uppdateringar hittades" -#: src/Common/LinuxKernel.vala:773 +#: src/Common/LinuxKernel.vala:732 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "" -#: src/Common/LinuxKernel.vala:1039 +#: src/Common/LinuxKernel.vala:998 msgid "Packages Available" msgstr "Tillgängliga paket" -#: src/Common/LinuxKernel.vala:1047 +#: src/Common/LinuxKernel.vala:1006 msgid "Packages Installed" msgstr "Installerade paket" -#: src/Common/LinuxKernel.vala:1131 +#: src/Common/LinuxKernel.vala:1090 msgid "Available Kernels" msgstr "Tillgängliga kärnor" -#: src/Common/LinuxKernel.vala:1148 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1107 src/Gtk/MainWindow.vala:186 msgid "Installed" msgstr "Installerad" -#: src/Common/LinuxKernel.vala:1148 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1107 src/Gtk/MainWindow.vala:186 #: src/Gtk/MainWindow.vala:628 src/Gtk/MainWindow.vala:642 msgid "Running" msgstr "Körs" -#: src/Common/LinuxKernel.vala:1182 +#: src/Common/LinuxKernel.vala:1141 msgid "Downloading" msgstr "Laddar ner" -#: src/Common/LinuxKernel.vala:1201 +#: src/Common/LinuxKernel.vala:1160 #: src/Utility/Gtk/CustomMessageDialog.vala:148 #: src/Utility/Gtk/CustomMessageDialog.vala:152 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:1206 +#: src/Common/LinuxKernel.vala:1165 msgid "ERROR" msgstr "FEL" -#: src/Common/LinuxKernel.vala:1220 src/Gtk/MainWindow.vala:650 +#: src/Common/LinuxKernel.vala:1179 src/Gtk/MainWindow.vala:650 msgid "This kernel is already installed." msgstr "Denna kärna är redan installerad" -#: src/Common/LinuxKernel.vala:1246 +#: src/Common/LinuxKernel.vala:1205 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "Installation slutförd. Omstart krävs för att tillämpa den nya kärnan." -#: src/Common/LinuxKernel.vala:1249 +#: src/Common/LinuxKernel.vala:1208 msgid "Installation completed with errors" msgstr "Installation slutförd med fel" -#: src/Common/LinuxKernel.vala:1265 +#: src/Common/LinuxKernel.vala:1224 msgid "" "Selected kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -130,19 +130,19 @@ msgstr "" "Denna kärna används för tillfället och kan inte tas bort.\n" "Installera en annan kärna innan du tar bort den här." -#: src/Common/LinuxKernel.vala:1270 +#: src/Common/LinuxKernel.vala:1229 msgid "Preparing to remove selected kernels" msgstr "Förbereder borttagning av markerade kärnor" -#: src/Common/LinuxKernel.vala:1301 src/Common/LinuxKernel.vala:1348 +#: src/Common/LinuxKernel.vala:1260 src/Common/LinuxKernel.vala:1307 msgid "Un-install completed" msgstr "Avinstallation slutförd" -#: src/Common/LinuxKernel.vala:1304 src/Common/LinuxKernel.vala:1351 +#: src/Common/LinuxKernel.vala:1263 src/Common/LinuxKernel.vala:1310 msgid "Un-install completed with errors" msgstr "Avinstallation slutförd med fel" -#: src/Common/LinuxKernel.vala:1317 +#: src/Common/LinuxKernel.vala:1276 msgid "" "This kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." diff --git a/po/tr.po b/po/tr.po index 0846da10..6181c456 100644 --- a/po/tr.po +++ b/po/tr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-14 04:48-0400\n" +"POT-Creation-Date: 2020-05-18 07:56-0400\n" "PO-Revision-Date: 2020-03-10 15:59+0300\n" "Last-Translator: Gökhan GÖKKAYA \n" "Language-Team: Turkish\n" @@ -33,93 +33,93 @@ msgstr "İçerik listesi güncel" msgid "Fetching index..." msgstr "İçerik dizini alınıyor..." -#: src/Common/LinuxKernel.vala:382 +#: src/Common/LinuxKernel.vala:380 msgid "Fetching index from kernel.ubuntu.com..." msgstr "İçerik listesi kernel.ubuntu.com alanından alınıyor..." -#: src/Common/LinuxKernel.vala:694 +#: src/Common/LinuxKernel.vala:653 msgid "Could not find running kernel in list!" msgstr "İstenen sürüm bulunamadı!" -#: src/Common/LinuxKernel.vala:700 +#: src/Common/LinuxKernel.vala:659 msgid "Could not find any kernels to remove" msgstr "Kaldırılacak çekirdek bulunamadı" -#: src/Common/LinuxKernel.vala:709 +#: src/Common/LinuxKernel.vala:668 msgid "The following kernels will be removed:" msgstr "Aşağıdaki çekirdekler silinecek:" -#: src/Common/LinuxKernel.vala:716 +#: src/Common/LinuxKernel.vala:675 msgid "Continue ?" msgstr "Devam et ?" -#: src/Common/LinuxKernel.vala:744 src/Console/AppConsole.vala:302 +#: src/Common/LinuxKernel.vala:703 src/Console/AppConsole.vala:302 msgid "Latest update" msgstr "Son güncelleme" -#: src/Common/LinuxKernel.vala:755 src/Console/AppConsole.vala:309 +#: src/Common/LinuxKernel.vala:714 src/Console/AppConsole.vala:309 msgid "Latest point update" msgstr "Son güncelleme noktası" -#: src/Common/LinuxKernel.vala:763 src/Console/AppConsole.vala:314 +#: src/Common/LinuxKernel.vala:722 src/Console/AppConsole.vala:314 #: src/Console/AppConsole.vala:364 msgid "No updates found" msgstr "Güncelleme bulunamadı" -#: src/Common/LinuxKernel.vala:773 +#: src/Common/LinuxKernel.vala:732 #, fuzzy, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Linux v%s Kur ? (e/h): " -#: src/Common/LinuxKernel.vala:1039 +#: src/Common/LinuxKernel.vala:998 msgid "Packages Available" msgstr "Mevcut Paketler" -#: src/Common/LinuxKernel.vala:1047 +#: src/Common/LinuxKernel.vala:1006 msgid "Packages Installed" msgstr "Kurulu Paketler" -#: src/Common/LinuxKernel.vala:1131 +#: src/Common/LinuxKernel.vala:1090 msgid "Available Kernels" msgstr "Mevcut Çekirdekler" -#: src/Common/LinuxKernel.vala:1148 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1107 src/Gtk/MainWindow.vala:186 msgid "Installed" msgstr "Kurulu" -#: src/Common/LinuxKernel.vala:1148 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1107 src/Gtk/MainWindow.vala:186 #: src/Gtk/MainWindow.vala:628 src/Gtk/MainWindow.vala:642 msgid "Running" msgstr "Çalışıyor" -#: src/Common/LinuxKernel.vala:1182 +#: src/Common/LinuxKernel.vala:1141 msgid "Downloading" msgstr "İndiriliyor" -#: src/Common/LinuxKernel.vala:1201 +#: src/Common/LinuxKernel.vala:1160 #: src/Utility/Gtk/CustomMessageDialog.vala:148 #: src/Utility/Gtk/CustomMessageDialog.vala:152 msgid "OK" msgstr "TAMAM" -#: src/Common/LinuxKernel.vala:1206 +#: src/Common/LinuxKernel.vala:1165 msgid "ERROR" msgstr "HATA" -#: src/Common/LinuxKernel.vala:1220 src/Gtk/MainWindow.vala:650 +#: src/Common/LinuxKernel.vala:1179 src/Gtk/MainWindow.vala:650 msgid "This kernel is already installed." msgstr "Bu çekirdek zaten kurulu." -#: src/Common/LinuxKernel.vala:1246 +#: src/Common/LinuxKernel.vala:1205 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "Kurulum tamamlandı. Yeni çekirdeği kullanmak için yeniden başlatma gerekiyor." -#: src/Common/LinuxKernel.vala:1249 +#: src/Common/LinuxKernel.vala:1208 msgid "Installation completed with errors" msgstr "Kurulum hatalarla tamamlandı" -#: src/Common/LinuxKernel.vala:1265 +#: src/Common/LinuxKernel.vala:1224 msgid "" "Selected kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -127,19 +127,19 @@ msgstr "" "Seçilen çekirdek şu anda çalışıyor ve kaldırılamıyor.\n" " Bunu kaldırmadan önce başka bir çekirdek yükleyin." -#: src/Common/LinuxKernel.vala:1270 +#: src/Common/LinuxKernel.vala:1229 msgid "Preparing to remove selected kernels" msgstr "Seçilen çekirdekleri kaldırmak için hazırlanıyor" -#: src/Common/LinuxKernel.vala:1301 src/Common/LinuxKernel.vala:1348 +#: src/Common/LinuxKernel.vala:1260 src/Common/LinuxKernel.vala:1307 msgid "Un-install completed" msgstr "Kaldırma tamamlandı" -#: src/Common/LinuxKernel.vala:1304 src/Common/LinuxKernel.vala:1351 +#: src/Common/LinuxKernel.vala:1263 src/Common/LinuxKernel.vala:1310 msgid "Un-install completed with errors" msgstr "Kaldırma hatalarla tamamlandı" -#: src/Common/LinuxKernel.vala:1317 +#: src/Common/LinuxKernel.vala:1276 msgid "" "This kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." diff --git a/po/uk.po b/po/uk.po index e586686c..ee643627 100644 --- a/po/uk.po +++ b/po/uk.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-14 04:48-0400\n" +"POT-Creation-Date: 2020-05-18 07:56-0400\n" "PO-Revision-Date: 2019-07-25 11:00+0300\n" "Last-Translator: Serhii Golovko \n" "Language-Team: Ukranian \n" @@ -33,93 +33,93 @@ msgstr "Індекс є актуальним" msgid "Fetching index..." msgstr "Отримання індекса ..." -#: src/Common/LinuxKernel.vala:382 +#: src/Common/LinuxKernel.vala:380 msgid "Fetching index from kernel.ubuntu.com..." msgstr "Отримання індекса з kernel.ubuntu.com..." -#: src/Common/LinuxKernel.vala:694 +#: src/Common/LinuxKernel.vala:653 msgid "Could not find running kernel in list!" msgstr "Не вдалося знайти запущене ядро у списку!" -#: src/Common/LinuxKernel.vala:700 +#: src/Common/LinuxKernel.vala:659 msgid "Could not find any kernels to remove" msgstr "Не вдалося знайти жодне ядро для вилучення" -#: src/Common/LinuxKernel.vala:709 +#: src/Common/LinuxKernel.vala:668 msgid "The following kernels will be removed:" msgstr "Наступні ядра будуть видалені:" -#: src/Common/LinuxKernel.vala:716 +#: src/Common/LinuxKernel.vala:675 msgid "Continue ?" msgstr "Продовжувати ?" -#: src/Common/LinuxKernel.vala:744 src/Console/AppConsole.vala:302 +#: src/Common/LinuxKernel.vala:703 src/Console/AppConsole.vala:302 msgid "Latest update" msgstr "Останнє оновлення" -#: src/Common/LinuxKernel.vala:755 src/Console/AppConsole.vala:309 +#: src/Common/LinuxKernel.vala:714 src/Console/AppConsole.vala:309 msgid "Latest point update" msgstr "Остання точка оновлення" -#: src/Common/LinuxKernel.vala:763 src/Console/AppConsole.vala:314 +#: src/Common/LinuxKernel.vala:722 src/Console/AppConsole.vala:314 #: src/Console/AppConsole.vala:364 msgid "No updates found" msgstr "Оновлень не знайдено" -#: src/Common/LinuxKernel.vala:773 +#: src/Common/LinuxKernel.vala:732 #, fuzzy, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Встановити Linux v% s? (так/ні): " -#: src/Common/LinuxKernel.vala:1039 +#: src/Common/LinuxKernel.vala:998 msgid "Packages Available" msgstr "Доступні пакети" -#: src/Common/LinuxKernel.vala:1047 +#: src/Common/LinuxKernel.vala:1006 msgid "Packages Installed" msgstr "Встановлені пакети" -#: src/Common/LinuxKernel.vala:1131 +#: src/Common/LinuxKernel.vala:1090 msgid "Available Kernels" msgstr "Доступні ядра" -#: src/Common/LinuxKernel.vala:1148 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1107 src/Gtk/MainWindow.vala:186 msgid "Installed" msgstr "Встановлено" -#: src/Common/LinuxKernel.vala:1148 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1107 src/Gtk/MainWindow.vala:186 #: src/Gtk/MainWindow.vala:628 src/Gtk/MainWindow.vala:642 msgid "Running" msgstr "Використовується" -#: src/Common/LinuxKernel.vala:1182 +#: src/Common/LinuxKernel.vala:1141 msgid "Downloading" msgstr "Завантаження" -#: src/Common/LinuxKernel.vala:1201 +#: src/Common/LinuxKernel.vala:1160 #: src/Utility/Gtk/CustomMessageDialog.vala:148 #: src/Utility/Gtk/CustomMessageDialog.vala:152 msgid "OK" msgstr "Добре" -#: src/Common/LinuxKernel.vala:1206 +#: src/Common/LinuxKernel.vala:1165 msgid "ERROR" msgstr "ПОМИЛКА" -#: src/Common/LinuxKernel.vala:1220 src/Gtk/MainWindow.vala:650 +#: src/Common/LinuxKernel.vala:1179 src/Gtk/MainWindow.vala:650 msgid "This kernel is already installed." msgstr "Це ядро вже встановлено." -#: src/Common/LinuxKernel.vala:1246 +#: src/Common/LinuxKernel.vala:1205 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "Установка завершена. Для використання нового ядра потрібна перезавантаження." -#: src/Common/LinuxKernel.vala:1249 +#: src/Common/LinuxKernel.vala:1208 msgid "Installation completed with errors" msgstr "Установка завершена з помилками" -#: src/Common/LinuxKernel.vala:1265 +#: src/Common/LinuxKernel.vala:1224 msgid "" "Selected kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -127,19 +127,19 @@ msgstr "" "Це ядро зараз працює і не може бути видалено. \n" "Встановіть інше ядро, перш ніж видаляти його." -#: src/Common/LinuxKernel.vala:1270 +#: src/Common/LinuxKernel.vala:1229 msgid "Preparing to remove selected kernels" msgstr "Підготовка до видалення вибраних ядер" -#: src/Common/LinuxKernel.vala:1301 src/Common/LinuxKernel.vala:1348 +#: src/Common/LinuxKernel.vala:1260 src/Common/LinuxKernel.vala:1307 msgid "Un-install completed" msgstr "Видалення завершено" -#: src/Common/LinuxKernel.vala:1304 src/Common/LinuxKernel.vala:1351 +#: src/Common/LinuxKernel.vala:1263 src/Common/LinuxKernel.vala:1310 msgid "Un-install completed with errors" msgstr "Видалення завершено з помилками" -#: src/Common/LinuxKernel.vala:1317 +#: src/Common/LinuxKernel.vala:1276 msgid "" "This kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." diff --git a/src/Common/LinuxKernel.vala b/src/Common/LinuxKernel.vala index 8a60fa59..ed17411b 100644 --- a/src/Common/LinuxKernel.vala +++ b/src/Common/LinuxKernel.vala @@ -356,8 +356,6 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { check_updates(); - //check_available(); // was commented? - task_is_running = false; } @@ -553,45 +551,6 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { log_msg(string.nfill(70, '-')); } - public static void check_available(){ - - log_debug("check_available()"); - - var list = Package.query_available_packages("^linux-image"); - - var pkg_versions = new Gee.ArrayList(); - - foreach(var pkg in list.values){ - if (pkg.pname.contains("linux-image")){ - if (!pkg_versions.contains(pkg.version_installed)){ - - pkg_versions.add(pkg.version_installed); - log_msg("Found upgrade" + ": %s".printf(pkg.version_installed)); - - string kern_name = "%s".printf(pkg.version_installed); - var kern = new LinuxKernel(kern_name, false); - kern.is_installed = false; - - bool found = false; - foreach(var kernel in kernel_list){ - if (kernel.version_main == kern.version_main){ - found = true; - break; - } - } - - if (!found){ - kernel_list.add(kern); - } - } - } - } - - kernel_list.sort((a,b)=>{ - return a.compare_to(b) * -1; - }); - } - public static void check_updates(){ log_debug("check_updates()"); From 13767c720436367e48edfc0b4398220ba741d6e2 Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Mon, 18 May 2020 20:22:30 -0400 Subject: [PATCH 096/567] fix several version string parsing bugs, don't hide any installed even if -rc, track rc ver to properly detect new rc available --- po/es.po | 149 ++++----- po/fr.po | 149 ++++----- po/hr.po | 149 ++++----- po/messages.pot | 149 ++++----- po/nl.po | 149 ++++----- po/pl.po | 149 ++++----- po/ru.po | 149 ++++----- po/sv.po | 149 ++++----- po/tr.po | 149 ++++----- po/uk.po | 149 ++++----- src/Common/DownloadManager.vala | 2 - src/Common/LinuxKernel.vala | 508 +++++++++++++---------------- src/Common/Main.vala | 2 - src/Gtk/MainWindow.vala | 17 +- src/Utility/TeeJee.FileSystem.vala | 39 +-- src/Utility/TeeJee.Process.vala | 38 +-- 16 files changed, 944 insertions(+), 1152 deletions(-) diff --git a/po/es.po b/po/es.po index dce32233..a4a55363 100644 --- a/po/es.po +++ b/po/es.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-18 07:56-0400\n" +"POT-Creation-Date: 2020-05-18 20:12-0400\n" "PO-Revision-Date: 2018-01-03 02:03-0600\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish\n" @@ -21,105 +21,97 @@ msgstr "Distribución" msgid "Architecture" msgstr "Arquitectura del sistema" -#: src/Common/LinuxKernel.vala:231 -msgid "Index is stale" -msgstr "El índice es obsoleto" - -#: src/Common/LinuxKernel.vala:234 -msgid "Index is fresh" -msgstr "El índice está al día" - -#: src/Common/LinuxKernel.vala:339 +#: src/Common/LinuxKernel.vala:305 msgid "Fetching index..." msgstr "Recuperando índice..." -#: src/Common/LinuxKernel.vala:380 +#: src/Common/LinuxKernel.vala:341 msgid "Fetching index from kernel.ubuntu.com..." msgstr "Recuperando índice de kernel.ubuntu.com…" -#: src/Common/LinuxKernel.vala:653 +#: src/Common/LinuxKernel.vala:598 msgid "Could not find running kernel in list!" msgstr "¡No se pudo encontrar el núcleo en ejecución en la lista!" -#: src/Common/LinuxKernel.vala:659 +#: src/Common/LinuxKernel.vala:604 msgid "Could not find any kernels to remove" msgstr "Seleccione los núcleos que se desinstalarán" -#: src/Common/LinuxKernel.vala:668 +#: src/Common/LinuxKernel.vala:613 msgid "The following kernels will be removed:" msgstr "Los siguientes kernels serán eliminados:" -#: src/Common/LinuxKernel.vala:675 +#: src/Common/LinuxKernel.vala:620 msgid "Continue ?" msgstr "¿Continuar?" -#: src/Common/LinuxKernel.vala:703 src/Console/AppConsole.vala:302 +#: src/Common/LinuxKernel.vala:644 src/Console/AppConsole.vala:302 msgid "Latest update" msgstr "" -#: src/Common/LinuxKernel.vala:714 src/Console/AppConsole.vala:309 +#: src/Common/LinuxKernel.vala:655 src/Console/AppConsole.vala:309 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:722 src/Console/AppConsole.vala:314 +#: src/Common/LinuxKernel.vala:663 src/Console/AppConsole.vala:314 #: src/Console/AppConsole.vala:364 msgid "No updates found" msgstr "No se encontró ninguna actualización" -#: src/Common/LinuxKernel.vala:732 +#: src/Common/LinuxKernel.vala:673 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "" -#: src/Common/LinuxKernel.vala:998 +#: src/Common/LinuxKernel.vala:935 msgid "Packages Available" msgstr "Paquetes disponibles" -#: src/Common/LinuxKernel.vala:1006 +#: src/Common/LinuxKernel.vala:943 msgid "Packages Installed" msgstr "Paquetes instalados" -#: src/Common/LinuxKernel.vala:1090 +#: src/Common/LinuxKernel.vala:1026 msgid "Available Kernels" msgstr "Núcleos disponibles" -#: src/Common/LinuxKernel.vala:1107 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1033 src/Gtk/MainWindow.vala:186 msgid "Installed" msgstr "Instalado" -#: src/Common/LinuxKernel.vala:1107 src/Gtk/MainWindow.vala:186 -#: src/Gtk/MainWindow.vala:628 src/Gtk/MainWindow.vala:642 +#: src/Common/LinuxKernel.vala:1033 src/Gtk/MainWindow.vala:186 +#: src/Gtk/MainWindow.vala:625 src/Gtk/MainWindow.vala:639 msgid "Running" msgstr "En ejecución" -#: src/Common/LinuxKernel.vala:1141 +#: src/Common/LinuxKernel.vala:1070 msgid "Downloading" msgstr "Descargando" -#: src/Common/LinuxKernel.vala:1160 +#: src/Common/LinuxKernel.vala:1089 #: src/Utility/Gtk/CustomMessageDialog.vala:148 #: src/Utility/Gtk/CustomMessageDialog.vala:152 msgid "OK" msgstr "Aceptar" -#: src/Common/LinuxKernel.vala:1165 +#: src/Common/LinuxKernel.vala:1094 msgid "ERROR" msgstr "ERROR" -#: src/Common/LinuxKernel.vala:1179 src/Gtk/MainWindow.vala:650 +#: src/Common/LinuxKernel.vala:1108 src/Gtk/MainWindow.vala:647 msgid "This kernel is already installed." msgstr "Este núcleo ya se instaló." -#: src/Common/LinuxKernel.vala:1205 +#: src/Common/LinuxKernel.vala:1134 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "Instalación finalizada. Se necesita reiniciar para utilizar el núcleo nuevo." -#: src/Common/LinuxKernel.vala:1208 +#: src/Common/LinuxKernel.vala:1137 msgid "Installation completed with errors" msgstr "Instalación finalizada con errores" -#: src/Common/LinuxKernel.vala:1224 +#: src/Common/LinuxKernel.vala:1152 msgid "" "Selected kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -127,19 +119,19 @@ msgstr "" "El núcleo seleccionado está en ejecución y no puede desinstalarse.\n" "Instale otro núcleo antes de desinstalar este." -#: src/Common/LinuxKernel.vala:1229 +#: src/Common/LinuxKernel.vala:1157 msgid "Preparing to remove selected kernels" msgstr "Preparándose para desinstalar los núcleos seleccionados" -#: src/Common/LinuxKernel.vala:1260 src/Common/LinuxKernel.vala:1307 +#: src/Common/LinuxKernel.vala:1188 src/Common/LinuxKernel.vala:1235 msgid "Un-install completed" msgstr "Desinstalación finalizada" -#: src/Common/LinuxKernel.vala:1263 src/Common/LinuxKernel.vala:1310 +#: src/Common/LinuxKernel.vala:1191 src/Common/LinuxKernel.vala:1238 msgid "Un-install completed with errors" msgstr "Desinstalación finalizada con errores" -#: src/Common/LinuxKernel.vala:1276 +#: src/Common/LinuxKernel.vala:1204 msgid "" "This kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -147,11 +139,11 @@ msgstr "" "Este núcleo está en ejecución y no se puede desinstalar.\n" "Instale otro núcleo antes de desinstalar este." -#: src/Common/Main.vala:238 +#: src/Common/Main.vala:236 msgid "Called from" msgstr "" -#: src/Common/Main.vala:250 +#: src/Common/Main.vala:248 #, fuzzy msgid "Notifications are disabled" msgstr "Notificación" @@ -202,7 +194,7 @@ msgstr "Instalar núcleo troncal especificado" msgid "Uninstall specified kernels" msgstr "Instalar núcleo troncal especificado" -#: src/Console/AppConsole.vala:74 src/Gtk/MainWindow.vala:395 +#: src/Console/AppConsole.vala:74 src/Gtk/MainWindow.vala:392 msgid "Remove installed kernels older than running kernel" msgstr "" @@ -290,7 +282,7 @@ msgid "Kernel %s Available" msgstr "Paquetes disponibles" #: src/Console/AppConsole.vala:339 src/Console/AppConsole.vala:355 -#: src/Gtk/MainWindow.vala:333 +#: src/Gtk/MainWindow.vala:330 msgid "Install" msgstr "Instalar" @@ -314,92 +306,92 @@ msgstr "Núcleo" msgid "Status" msgstr "Estado" -#: src/Gtk/MainWindow.vala:317 +#: src/Gtk/MainWindow.vala:314 msgid "Refresh" msgstr "Actualizar" -#: src/Gtk/MainWindow.vala:324 src/Utility/TeeJee.System.vala:42 +#: src/Gtk/MainWindow.vala:321 src/Utility/TeeJee.System.vala:42 msgid "Internet connection is not active" msgstr "La conexión a Internet está inactiva" -#: src/Gtk/MainWindow.vala:324 src/Gtk/MainWindow.vala:525 -#: src/Gtk/MainWindow.vala:655 +#: src/Gtk/MainWindow.vala:321 src/Gtk/MainWindow.vala:522 +#: src/Gtk/MainWindow.vala:652 msgid "No Internet" msgstr "No hay Internet" -#: src/Gtk/MainWindow.vala:342 +#: src/Gtk/MainWindow.vala:339 msgid "Multiple Kernels Selected" msgstr "Se seleccionaron varios kernels" -#: src/Gtk/MainWindow.vala:342 +#: src/Gtk/MainWindow.vala:339 msgid "Select a single kernel to install" msgstr "Seleccione un solo núcleo para instalarlo" -#: src/Gtk/MainWindow.vala:345 src/Gtk/MainWindow.vala:356 +#: src/Gtk/MainWindow.vala:342 src/Gtk/MainWindow.vala:353 msgid "Not Selected" msgstr "No seleccionado" -#: src/Gtk/MainWindow.vala:345 +#: src/Gtk/MainWindow.vala:342 msgid "Select the kernel to install" msgstr "Seleccione el núcleo que se instalará" -#: src/Gtk/MainWindow.vala:350 +#: src/Gtk/MainWindow.vala:347 msgid "Remove" msgstr "Quitar" -#: src/Gtk/MainWindow.vala:356 +#: src/Gtk/MainWindow.vala:353 msgid "Select the kernels to remove" msgstr "Seleccione los núcleos que se desinstalarán" -#: src/Gtk/MainWindow.vala:386 src/Gtk/MainWindow.vala:420 -#: src/Gtk/MainWindow.vala:687 +#: src/Gtk/MainWindow.vala:383 src/Gtk/MainWindow.vala:417 +#: src/Gtk/MainWindow.vala:684 msgid "Close window to exit..." msgstr "" -#: src/Gtk/MainWindow.vala:394 +#: src/Gtk/MainWindow.vala:391 msgid "Purge" msgstr "" -#: src/Gtk/MainWindow.vala:427 +#: src/Gtk/MainWindow.vala:424 msgid "Changes" msgstr "Cambios" -#: src/Gtk/MainWindow.vala:438 src/Gtk/SettingsDialog.vala:52 +#: src/Gtk/MainWindow.vala:435 src/Gtk/SettingsDialog.vala:52 msgid "Settings" msgstr "Configuración" -#: src/Gtk/MainWindow.vala:459 +#: src/Gtk/MainWindow.vala:456 msgid "About" msgstr "Acerca de" -#: src/Gtk/MainWindow.vala:503 +#: src/Gtk/MainWindow.vala:500 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "" "Herramienta de renovación de núcleo para distribuciones basadas en Ubuntu" -#: src/Gtk/MainWindow.vala:504 +#: src/Gtk/MainWindow.vala:501 msgid "Forked" msgstr "" -#: src/Gtk/MainWindow.vala:504 +#: src/Gtk/MainWindow.vala:501 msgid "Original" msgstr "" -#: src/Gtk/MainWindow.vala:525 src/Gtk/MainWindow.vala:655 +#: src/Gtk/MainWindow.vala:522 src/Gtk/MainWindow.vala:652 #, fuzzy msgid "Internet connection is not active." msgstr "La conexión a Internet está inactiva" -#: src/Gtk/MainWindow.vala:544 +#: src/Gtk/MainWindow.vala:541 msgid "Refreshing..." msgstr "Actualizando…" -#: src/Gtk/MainWindow.vala:638 +#: src/Gtk/MainWindow.vala:635 #, fuzzy msgid "available" msgstr "Paquetes disponibles" -#: src/Gtk/MainWindow.vala:650 +#: src/Gtk/MainWindow.vala:647 #, fuzzy msgid "Already Installed" msgstr "Instalado" @@ -527,61 +519,58 @@ msgstr "No" msgid "Missing Icon" msgstr "Falta el icono" -#: src/Utility/TeeJee.FileSystem.vala:70 src/Utility/TeeJee.FileSystem.vala:73 +#: src/Utility/TeeJee.FileSystem.vala:71 #, fuzzy msgid "File deleted" msgstr "Se guardó el archivo" -#: src/Utility/TeeJee.FileSystem.vala:79 src/Utility/TeeJee.FileSystem.vala:273 +#: src/Utility/TeeJee.FileSystem.vala:76 src/Utility/TeeJee.FileSystem.vala:256 #, fuzzy msgid "Failed to delete file" msgstr "Falló la escritura del archivo" -#: src/Utility/TeeJee.FileSystem.vala:99 +#: src/Utility/TeeJee.FileSystem.vala:96 msgid "Failed to read file" msgstr "Falló la lectura del archivo" -#: src/Utility/TeeJee.FileSystem.vala:127 -#: src/Utility/TeeJee.FileSystem.vala:130 +#: src/Utility/TeeJee.FileSystem.vala:123 msgid "File saved" msgstr "Se guardó el archivo" -#: src/Utility/TeeJee.FileSystem.vala:137 +#: src/Utility/TeeJee.FileSystem.vala:129 msgid "Failed to write file" msgstr "Falló la escritura del archivo" -#: src/Utility/TeeJee.FileSystem.vala:150 -#: src/Utility/TeeJee.FileSystem.vala:153 +#: src/Utility/TeeJee.FileSystem.vala:141 msgid "File copied" msgstr "Se copió el archivo" -#: src/Utility/TeeJee.FileSystem.vala:161 +#: src/Utility/TeeJee.FileSystem.vala:148 msgid "Failed to copy file" msgstr "Falló la copia del archivo" -#: src/Utility/TeeJee.FileSystem.vala:171 +#: src/Utility/TeeJee.FileSystem.vala:158 msgid "File not found" msgstr "No se encontró el archivo" -#: src/Utility/TeeJee.FileSystem.vala:185 -#: src/Utility/TeeJee.FileSystem.vala:188 +#: src/Utility/TeeJee.FileSystem.vala:171 msgid "File moved" msgstr "Se trasladó el archivo" -#: src/Utility/TeeJee.FileSystem.vala:193 +#: src/Utility/TeeJee.FileSystem.vala:176 msgid "Failed to move file" msgstr "Falló el traslado del archivo" -#: src/Utility/TeeJee.FileSystem.vala:250 -#: src/Utility/TeeJee.FileSystem.vala:253 +#: src/Utility/TeeJee.FileSystem.vala:233 +#: src/Utility/TeeJee.FileSystem.vala:236 msgid "Created directory" msgstr "Se creó el directorio" -#: src/Utility/TeeJee.FileSystem.vala:260 +#: src/Utility/TeeJee.FileSystem.vala:243 msgid "Failed to create dir" msgstr "Falló la creación del directorio" -#: src/Utility/TeeJee.FileSystem.vala:272 +#: src/Utility/TeeJee.FileSystem.vala:255 msgid "Deleted" msgstr "" diff --git a/po/fr.po b/po/fr.po index c2f3082a..cfd29513 100644 --- a/po/fr.po +++ b/po/fr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-18 07:56-0400\n" +"POT-Creation-Date: 2020-05-18 20:12-0400\n" "PO-Revision-Date: 2018-08-05 15:50+0200\n" "Last-Translator: Yolateng0 \n" "Language-Team: French\n" @@ -22,108 +22,100 @@ msgstr "Distribution" msgid "Architecture" msgstr "Architecture du système" -#: src/Common/LinuxKernel.vala:231 -msgid "Index is stale" -msgstr "L'index est obsolète" - -#: src/Common/LinuxKernel.vala:234 -msgid "Index is fresh" -msgstr "L'index est à jour" - -#: src/Common/LinuxKernel.vala:339 +#: src/Common/LinuxKernel.vala:305 msgid "Fetching index..." msgstr "" -#: src/Common/LinuxKernel.vala:380 +#: src/Common/LinuxKernel.vala:341 msgid "Fetching index from kernel.ubuntu.com..." msgstr "Récupération de l'index depuis kernel.ubuntu.com..." -#: src/Common/LinuxKernel.vala:653 +#: src/Common/LinuxKernel.vala:598 #, fuzzy msgid "Could not find running kernel in list!" msgstr "Impossible de trouver la version demandée" -#: src/Common/LinuxKernel.vala:659 +#: src/Common/LinuxKernel.vala:604 #, fuzzy msgid "Could not find any kernels to remove" msgstr "Sélectionnez les noyaux à supprimer" -#: src/Common/LinuxKernel.vala:668 +#: src/Common/LinuxKernel.vala:613 msgid "The following kernels will be removed:" msgstr "" -#: src/Common/LinuxKernel.vala:675 +#: src/Common/LinuxKernel.vala:620 msgid "Continue ?" msgstr "" -#: src/Common/LinuxKernel.vala:703 src/Console/AppConsole.vala:302 +#: src/Common/LinuxKernel.vala:644 src/Console/AppConsole.vala:302 msgid "Latest update" msgstr "" -#: src/Common/LinuxKernel.vala:714 src/Console/AppConsole.vala:309 +#: src/Common/LinuxKernel.vala:655 src/Console/AppConsole.vala:309 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:722 src/Console/AppConsole.vala:314 +#: src/Common/LinuxKernel.vala:663 src/Console/AppConsole.vala:314 #: src/Console/AppConsole.vala:364 msgid "No updates found" msgstr "Aucune mise à jour disponible" -#: src/Common/LinuxKernel.vala:732 +#: src/Common/LinuxKernel.vala:673 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "" -#: src/Common/LinuxKernel.vala:998 +#: src/Common/LinuxKernel.vala:935 msgid "Packages Available" msgstr "Paquets disponibles" -#: src/Common/LinuxKernel.vala:1006 +#: src/Common/LinuxKernel.vala:943 msgid "Packages Installed" msgstr "Paquets installés" -#: src/Common/LinuxKernel.vala:1090 +#: src/Common/LinuxKernel.vala:1026 msgid "Available Kernels" msgstr "Noyaux disponibles" -#: src/Common/LinuxKernel.vala:1107 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1033 src/Gtk/MainWindow.vala:186 msgid "Installed" msgstr "Installé" -#: src/Common/LinuxKernel.vala:1107 src/Gtk/MainWindow.vala:186 -#: src/Gtk/MainWindow.vala:628 src/Gtk/MainWindow.vala:642 +#: src/Common/LinuxKernel.vala:1033 src/Gtk/MainWindow.vala:186 +#: src/Gtk/MainWindow.vala:625 src/Gtk/MainWindow.vala:639 msgid "Running" msgstr "En cours" -#: src/Common/LinuxKernel.vala:1141 +#: src/Common/LinuxKernel.vala:1070 msgid "Downloading" msgstr "Téléchargement" -#: src/Common/LinuxKernel.vala:1160 +#: src/Common/LinuxKernel.vala:1089 #: src/Utility/Gtk/CustomMessageDialog.vala:148 #: src/Utility/Gtk/CustomMessageDialog.vala:152 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:1165 +#: src/Common/LinuxKernel.vala:1094 msgid "ERROR" msgstr "ERREUR" -#: src/Common/LinuxKernel.vala:1179 src/Gtk/MainWindow.vala:650 +#: src/Common/LinuxKernel.vala:1108 src/Gtk/MainWindow.vala:647 msgid "This kernel is already installed." msgstr "Ce noyau est déjà installé." -#: src/Common/LinuxKernel.vala:1205 +#: src/Common/LinuxKernel.vala:1134 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "Installation complétée. Un redémarrage est nécessaire pour utiliser le " "nouveau noyau." -#: src/Common/LinuxKernel.vala:1208 +#: src/Common/LinuxKernel.vala:1137 msgid "Installation completed with errors" msgstr "Installation terminée avec des erreurs" -#: src/Common/LinuxKernel.vala:1224 +#: src/Common/LinuxKernel.vala:1152 msgid "" "Selected kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -131,19 +123,19 @@ msgstr "" "Ce noyau est en cours d'exécution et ne peut pas être supprimé.\n" " Installez un autre noyau avant de retirer celui-ci." -#: src/Common/LinuxKernel.vala:1229 +#: src/Common/LinuxKernel.vala:1157 msgid "Preparing to remove selected kernels" msgstr "Préparation à la suppression des noyaux sélectionnés" -#: src/Common/LinuxKernel.vala:1260 src/Common/LinuxKernel.vala:1307 +#: src/Common/LinuxKernel.vala:1188 src/Common/LinuxKernel.vala:1235 msgid "Un-install completed" msgstr "Désinstallation complète" -#: src/Common/LinuxKernel.vala:1263 src/Common/LinuxKernel.vala:1310 +#: src/Common/LinuxKernel.vala:1191 src/Common/LinuxKernel.vala:1238 msgid "Un-install completed with errors" msgstr "Désinstallation terminée avec des erreurs" -#: src/Common/LinuxKernel.vala:1276 +#: src/Common/LinuxKernel.vala:1204 msgid "" "This kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -151,11 +143,11 @@ msgstr "" "Ce noyau est en cours d'exécution et ne peut pas être supprimé.\n" " Installez un autre noyau avant de retirer celui-ci." -#: src/Common/Main.vala:238 +#: src/Common/Main.vala:236 msgid "Called from" msgstr "" -#: src/Common/Main.vala:250 +#: src/Common/Main.vala:248 #, fuzzy msgid "Notifications are disabled" msgstr "Notification" @@ -209,7 +201,7 @@ msgstr "Installer le noyau principal spécifié" msgid "Uninstall specified kernels" msgstr "Installer le noyau principal spécifié" -#: src/Console/AppConsole.vala:74 src/Gtk/MainWindow.vala:395 +#: src/Console/AppConsole.vala:74 src/Gtk/MainWindow.vala:392 msgid "Remove installed kernels older than running kernel" msgstr "" @@ -301,7 +293,7 @@ msgid "Kernel %s Available" msgstr "Paquets disponibles" #: src/Console/AppConsole.vala:339 src/Console/AppConsole.vala:355 -#: src/Gtk/MainWindow.vala:333 +#: src/Gtk/MainWindow.vala:330 msgid "Install" msgstr "Installer" @@ -325,93 +317,93 @@ msgstr "Noyau" msgid "Status" msgstr "Statut" -#: src/Gtk/MainWindow.vala:317 +#: src/Gtk/MainWindow.vala:314 msgid "Refresh" msgstr "Actualiser" -#: src/Gtk/MainWindow.vala:324 src/Utility/TeeJee.System.vala:42 +#: src/Gtk/MainWindow.vala:321 src/Utility/TeeJee.System.vala:42 msgid "Internet connection is not active" msgstr "Connexion internet inexistante" -#: src/Gtk/MainWindow.vala:324 src/Gtk/MainWindow.vala:525 -#: src/Gtk/MainWindow.vala:655 +#: src/Gtk/MainWindow.vala:321 src/Gtk/MainWindow.vala:522 +#: src/Gtk/MainWindow.vala:652 msgid "No Internet" msgstr "Pas d'Internet" -#: src/Gtk/MainWindow.vala:342 +#: src/Gtk/MainWindow.vala:339 msgid "Multiple Kernels Selected" msgstr "Plusieurs noyaux sélectionnés" -#: src/Gtk/MainWindow.vala:342 +#: src/Gtk/MainWindow.vala:339 msgid "Select a single kernel to install" msgstr "Sélectionnez un seul noyau à installer" -#: src/Gtk/MainWindow.vala:345 src/Gtk/MainWindow.vala:356 +#: src/Gtk/MainWindow.vala:342 src/Gtk/MainWindow.vala:353 msgid "Not Selected" msgstr "Non selectionné" -#: src/Gtk/MainWindow.vala:345 +#: src/Gtk/MainWindow.vala:342 msgid "Select the kernel to install" msgstr "Sélectionnez le noyau à installer" -#: src/Gtk/MainWindow.vala:350 +#: src/Gtk/MainWindow.vala:347 msgid "Remove" msgstr "Supprimer" -#: src/Gtk/MainWindow.vala:356 +#: src/Gtk/MainWindow.vala:353 msgid "Select the kernels to remove" msgstr "Sélectionnez les noyaux à supprimer" -#: src/Gtk/MainWindow.vala:386 src/Gtk/MainWindow.vala:420 -#: src/Gtk/MainWindow.vala:687 +#: src/Gtk/MainWindow.vala:383 src/Gtk/MainWindow.vala:417 +#: src/Gtk/MainWindow.vala:684 msgid "Close window to exit..." msgstr "" -#: src/Gtk/MainWindow.vala:394 +#: src/Gtk/MainWindow.vala:391 msgid "Purge" msgstr "" -#: src/Gtk/MainWindow.vala:427 +#: src/Gtk/MainWindow.vala:424 msgid "Changes" msgstr "Changements" -#: src/Gtk/MainWindow.vala:438 src/Gtk/SettingsDialog.vala:52 +#: src/Gtk/MainWindow.vala:435 src/Gtk/SettingsDialog.vala:52 msgid "Settings" msgstr "Paramètres" -#: src/Gtk/MainWindow.vala:459 +#: src/Gtk/MainWindow.vala:456 msgid "About" msgstr "À propos" -#: src/Gtk/MainWindow.vala:503 +#: src/Gtk/MainWindow.vala:500 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "" "Utilitaire de mise à niveau des noyaux pour les distributions basées pour " "Ubuntu" -#: src/Gtk/MainWindow.vala:504 +#: src/Gtk/MainWindow.vala:501 msgid "Forked" msgstr "" -#: src/Gtk/MainWindow.vala:504 +#: src/Gtk/MainWindow.vala:501 msgid "Original" msgstr "" -#: src/Gtk/MainWindow.vala:525 src/Gtk/MainWindow.vala:655 +#: src/Gtk/MainWindow.vala:522 src/Gtk/MainWindow.vala:652 #, fuzzy msgid "Internet connection is not active." msgstr "Connexion internet inexistante" -#: src/Gtk/MainWindow.vala:544 +#: src/Gtk/MainWindow.vala:541 msgid "Refreshing..." msgstr "Actualisation..." -#: src/Gtk/MainWindow.vala:638 +#: src/Gtk/MainWindow.vala:635 #, fuzzy msgid "available" msgstr "Paquets disponibles" -#: src/Gtk/MainWindow.vala:650 +#: src/Gtk/MainWindow.vala:647 #, fuzzy msgid "Already Installed" msgstr "Installé" @@ -540,61 +532,58 @@ msgstr "Non" msgid "Missing Icon" msgstr "Icône introuvable" -#: src/Utility/TeeJee.FileSystem.vala:70 src/Utility/TeeJee.FileSystem.vala:73 +#: src/Utility/TeeJee.FileSystem.vala:71 #, fuzzy msgid "File deleted" msgstr "Fichier sauvegardé" -#: src/Utility/TeeJee.FileSystem.vala:79 src/Utility/TeeJee.FileSystem.vala:273 +#: src/Utility/TeeJee.FileSystem.vala:76 src/Utility/TeeJee.FileSystem.vala:256 #, fuzzy msgid "Failed to delete file" msgstr "Impossible d'écrire le fichier" -#: src/Utility/TeeJee.FileSystem.vala:99 +#: src/Utility/TeeJee.FileSystem.vala:96 msgid "Failed to read file" msgstr "Impossible de lire le fichier" -#: src/Utility/TeeJee.FileSystem.vala:127 -#: src/Utility/TeeJee.FileSystem.vala:130 +#: src/Utility/TeeJee.FileSystem.vala:123 msgid "File saved" msgstr "Fichier sauvegardé" -#: src/Utility/TeeJee.FileSystem.vala:137 +#: src/Utility/TeeJee.FileSystem.vala:129 msgid "Failed to write file" msgstr "Impossible d'écrire le fichier" -#: src/Utility/TeeJee.FileSystem.vala:150 -#: src/Utility/TeeJee.FileSystem.vala:153 +#: src/Utility/TeeJee.FileSystem.vala:141 msgid "File copied" msgstr "Fichier copié" -#: src/Utility/TeeJee.FileSystem.vala:161 +#: src/Utility/TeeJee.FileSystem.vala:148 msgid "Failed to copy file" msgstr "Impossible de copier le fichier" -#: src/Utility/TeeJee.FileSystem.vala:171 +#: src/Utility/TeeJee.FileSystem.vala:158 msgid "File not found" msgstr "Fichier non trouvé" -#: src/Utility/TeeJee.FileSystem.vala:185 -#: src/Utility/TeeJee.FileSystem.vala:188 +#: src/Utility/TeeJee.FileSystem.vala:171 msgid "File moved" msgstr "Fichier déplacé" -#: src/Utility/TeeJee.FileSystem.vala:193 +#: src/Utility/TeeJee.FileSystem.vala:176 msgid "Failed to move file" msgstr "Impossible de déplacer le fichier" -#: src/Utility/TeeJee.FileSystem.vala:250 -#: src/Utility/TeeJee.FileSystem.vala:253 +#: src/Utility/TeeJee.FileSystem.vala:233 +#: src/Utility/TeeJee.FileSystem.vala:236 msgid "Created directory" msgstr "Dossier créé" -#: src/Utility/TeeJee.FileSystem.vala:260 +#: src/Utility/TeeJee.FileSystem.vala:243 msgid "Failed to create dir" msgstr "Impossible de créer le nouveau dossier" -#: src/Utility/TeeJee.FileSystem.vala:272 +#: src/Utility/TeeJee.FileSystem.vala:255 msgid "Deleted" msgstr "" diff --git a/po/hr.po b/po/hr.po index 4197a4db..2e93e035 100644 --- a/po/hr.po +++ b/po/hr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-18 07:56-0400\n" +"POT-Creation-Date: 2020-05-18 20:12-0400\n" "PO-Revision-Date: 2017-12-24 00:52+0100\n" "Last-Translator: gogo \n" "Language-Team: Croatian \n" @@ -22,108 +22,100 @@ msgstr "Distribucija" msgid "Architecture" msgstr "Arhitektura sustava" -#: src/Common/LinuxKernel.vala:231 -msgid "Index is stale" -msgstr "Sadržaj je zastario" - -#: src/Common/LinuxKernel.vala:234 -msgid "Index is fresh" -msgstr "Sadržaj je osvježen" - -#: src/Common/LinuxKernel.vala:339 +#: src/Common/LinuxKernel.vala:305 msgid "Fetching index..." msgstr "" -#: src/Common/LinuxKernel.vala:380 +#: src/Common/LinuxKernel.vala:341 msgid "Fetching index from kernel.ubuntu.com..." msgstr "Preuzimanje sadržaja sa kernel.ubuntu.com..." -#: src/Common/LinuxKernel.vala:653 +#: src/Common/LinuxKernel.vala:598 #, fuzzy msgid "Could not find running kernel in list!" msgstr "Nemoguće je pronaći zatraženu inačicu" -#: src/Common/LinuxKernel.vala:659 +#: src/Common/LinuxKernel.vala:604 #, fuzzy msgid "Could not find any kernels to remove" msgstr "Odaberi kernele za uklanjanje" -#: src/Common/LinuxKernel.vala:668 +#: src/Common/LinuxKernel.vala:613 msgid "The following kernels will be removed:" msgstr "" -#: src/Common/LinuxKernel.vala:675 +#: src/Common/LinuxKernel.vala:620 msgid "Continue ?" msgstr "" -#: src/Common/LinuxKernel.vala:703 src/Console/AppConsole.vala:302 +#: src/Common/LinuxKernel.vala:644 src/Console/AppConsole.vala:302 msgid "Latest update" msgstr "" -#: src/Common/LinuxKernel.vala:714 src/Console/AppConsole.vala:309 +#: src/Common/LinuxKernel.vala:655 src/Console/AppConsole.vala:309 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:722 src/Console/AppConsole.vala:314 +#: src/Common/LinuxKernel.vala:663 src/Console/AppConsole.vala:314 #: src/Console/AppConsole.vala:364 msgid "No updates found" msgstr "Nema pronađenih nadopuna" -#: src/Common/LinuxKernel.vala:732 +#: src/Common/LinuxKernel.vala:673 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "" -#: src/Common/LinuxKernel.vala:998 +#: src/Common/LinuxKernel.vala:935 msgid "Packages Available" msgstr "Dostupni paketi" -#: src/Common/LinuxKernel.vala:1006 +#: src/Common/LinuxKernel.vala:943 msgid "Packages Installed" msgstr "Instalirani paketi" -#: src/Common/LinuxKernel.vala:1090 +#: src/Common/LinuxKernel.vala:1026 msgid "Available Kernels" msgstr "Dostupni kerneli" -#: src/Common/LinuxKernel.vala:1107 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1033 src/Gtk/MainWindow.vala:186 msgid "Installed" msgstr "Instalirano" -#: src/Common/LinuxKernel.vala:1107 src/Gtk/MainWindow.vala:186 -#: src/Gtk/MainWindow.vala:628 src/Gtk/MainWindow.vala:642 +#: src/Common/LinuxKernel.vala:1033 src/Gtk/MainWindow.vala:186 +#: src/Gtk/MainWindow.vala:625 src/Gtk/MainWindow.vala:639 msgid "Running" msgstr "Pokrenuto" -#: src/Common/LinuxKernel.vala:1141 +#: src/Common/LinuxKernel.vala:1070 msgid "Downloading" msgstr "Preuzimanje" -#: src/Common/LinuxKernel.vala:1160 +#: src/Common/LinuxKernel.vala:1089 #: src/Utility/Gtk/CustomMessageDialog.vala:148 #: src/Utility/Gtk/CustomMessageDialog.vala:152 msgid "OK" msgstr "U redu" -#: src/Common/LinuxKernel.vala:1165 +#: src/Common/LinuxKernel.vala:1094 msgid "ERROR" msgstr "GREŠKA" -#: src/Common/LinuxKernel.vala:1179 src/Gtk/MainWindow.vala:650 +#: src/Common/LinuxKernel.vala:1108 src/Gtk/MainWindow.vala:647 msgid "This kernel is already installed." msgstr "Ovaj kernel je već instaliran." -#: src/Common/LinuxKernel.vala:1205 +#: src/Common/LinuxKernel.vala:1134 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "Instalacija je završena. Potrebno je ponovno pokretanje računala kako bi se " "koristio novi kernel." -#: src/Common/LinuxKernel.vala:1208 +#: src/Common/LinuxKernel.vala:1137 msgid "Installation completed with errors" msgstr "Instalacija je završena s greškama" -#: src/Common/LinuxKernel.vala:1224 +#: src/Common/LinuxKernel.vala:1152 msgid "" "Selected kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -131,19 +123,19 @@ msgstr "" "Odabrani kernel je trenutno pokernut i ne može se ukloniti.\n" " Instalirajte drugi kernel prije uklanjanja trenutnog kernela." -#: src/Common/LinuxKernel.vala:1229 +#: src/Common/LinuxKernel.vala:1157 msgid "Preparing to remove selected kernels" msgstr "Pripremanje uklanjanja odabranih kernela" -#: src/Common/LinuxKernel.vala:1260 src/Common/LinuxKernel.vala:1307 +#: src/Common/LinuxKernel.vala:1188 src/Common/LinuxKernel.vala:1235 msgid "Un-install completed" msgstr "Deinstalacija završena" -#: src/Common/LinuxKernel.vala:1263 src/Common/LinuxKernel.vala:1310 +#: src/Common/LinuxKernel.vala:1191 src/Common/LinuxKernel.vala:1238 msgid "Un-install completed with errors" msgstr "Deinstalacija završena s greškama" -#: src/Common/LinuxKernel.vala:1276 +#: src/Common/LinuxKernel.vala:1204 msgid "" "This kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -151,11 +143,11 @@ msgstr "" "Ovaj kernel je trenutno pokrenut i ne može se ukloniti.\n" " Instalirajte drugi kernel prije uklanjanja trenutnog kernela." -#: src/Common/Main.vala:238 +#: src/Common/Main.vala:236 msgid "Called from" msgstr "" -#: src/Common/Main.vala:250 +#: src/Common/Main.vala:248 #, fuzzy msgid "Notifications are disabled" msgstr "Obavijesti" @@ -209,7 +201,7 @@ msgstr "Instaliraj određeni mainline kernel" msgid "Uninstall specified kernels" msgstr "Instaliraj određeni mainline kernel" -#: src/Console/AppConsole.vala:74 src/Gtk/MainWindow.vala:395 +#: src/Console/AppConsole.vala:74 src/Gtk/MainWindow.vala:392 msgid "Remove installed kernels older than running kernel" msgstr "" @@ -298,7 +290,7 @@ msgid "Kernel %s Available" msgstr "Dostupni paketi" #: src/Console/AppConsole.vala:339 src/Console/AppConsole.vala:355 -#: src/Gtk/MainWindow.vala:333 +#: src/Gtk/MainWindow.vala:330 msgid "Install" msgstr "Instaliraj" @@ -322,91 +314,91 @@ msgstr "Kernel" msgid "Status" msgstr "Stanje" -#: src/Gtk/MainWindow.vala:317 +#: src/Gtk/MainWindow.vala:314 msgid "Refresh" msgstr "Osvježi" -#: src/Gtk/MainWindow.vala:324 src/Utility/TeeJee.System.vala:42 +#: src/Gtk/MainWindow.vala:321 src/Utility/TeeJee.System.vala:42 msgid "Internet connection is not active" msgstr "Internet povezivanje nije aktivno" -#: src/Gtk/MainWindow.vala:324 src/Gtk/MainWindow.vala:525 -#: src/Gtk/MainWindow.vala:655 +#: src/Gtk/MainWindow.vala:321 src/Gtk/MainWindow.vala:522 +#: src/Gtk/MainWindow.vala:652 msgid "No Internet" msgstr "Nema pristupa internetu" -#: src/Gtk/MainWindow.vala:342 +#: src/Gtk/MainWindow.vala:339 msgid "Multiple Kernels Selected" msgstr "Više kernela je odabrano" -#: src/Gtk/MainWindow.vala:342 +#: src/Gtk/MainWindow.vala:339 msgid "Select a single kernel to install" msgstr "Odaberi pojedni kernel za instalaciju" -#: src/Gtk/MainWindow.vala:345 src/Gtk/MainWindow.vala:356 +#: src/Gtk/MainWindow.vala:342 src/Gtk/MainWindow.vala:353 msgid "Not Selected" msgstr "Nije odabrano" -#: src/Gtk/MainWindow.vala:345 +#: src/Gtk/MainWindow.vala:342 msgid "Select the kernel to install" msgstr "Odaberi kernel za instalaciju" -#: src/Gtk/MainWindow.vala:350 +#: src/Gtk/MainWindow.vala:347 msgid "Remove" msgstr "Ukloni" -#: src/Gtk/MainWindow.vala:356 +#: src/Gtk/MainWindow.vala:353 msgid "Select the kernels to remove" msgstr "Odaberi kernele za uklanjanje" -#: src/Gtk/MainWindow.vala:386 src/Gtk/MainWindow.vala:420 -#: src/Gtk/MainWindow.vala:687 +#: src/Gtk/MainWindow.vala:383 src/Gtk/MainWindow.vala:417 +#: src/Gtk/MainWindow.vala:684 msgid "Close window to exit..." msgstr "" -#: src/Gtk/MainWindow.vala:394 +#: src/Gtk/MainWindow.vala:391 msgid "Purge" msgstr "" -#: src/Gtk/MainWindow.vala:427 +#: src/Gtk/MainWindow.vala:424 msgid "Changes" msgstr "Promjene" -#: src/Gtk/MainWindow.vala:438 src/Gtk/SettingsDialog.vala:52 +#: src/Gtk/MainWindow.vala:435 src/Gtk/SettingsDialog.vala:52 msgid "Settings" msgstr "Postavke" -#: src/Gtk/MainWindow.vala:459 +#: src/Gtk/MainWindow.vala:456 msgid "About" msgstr "O programu" -#: src/Gtk/MainWindow.vala:503 +#: src/Gtk/MainWindow.vala:500 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Alat za nadogradnju kernela Ubuntu temeljenih distribucija" -#: src/Gtk/MainWindow.vala:504 +#: src/Gtk/MainWindow.vala:501 msgid "Forked" msgstr "" -#: src/Gtk/MainWindow.vala:504 +#: src/Gtk/MainWindow.vala:501 msgid "Original" msgstr "" -#: src/Gtk/MainWindow.vala:525 src/Gtk/MainWindow.vala:655 +#: src/Gtk/MainWindow.vala:522 src/Gtk/MainWindow.vala:652 #, fuzzy msgid "Internet connection is not active." msgstr "Internet povezivanje nije aktivno" -#: src/Gtk/MainWindow.vala:544 +#: src/Gtk/MainWindow.vala:541 msgid "Refreshing..." msgstr "Osvježavanje..." -#: src/Gtk/MainWindow.vala:638 +#: src/Gtk/MainWindow.vala:635 #, fuzzy msgid "available" msgstr "Dostupni paketi" -#: src/Gtk/MainWindow.vala:650 +#: src/Gtk/MainWindow.vala:647 #, fuzzy msgid "Already Installed" msgstr "Instalirano" @@ -535,61 +527,58 @@ msgstr "Ne" msgid "Missing Icon" msgstr "Ikone koje nedostaju" -#: src/Utility/TeeJee.FileSystem.vala:70 src/Utility/TeeJee.FileSystem.vala:73 +#: src/Utility/TeeJee.FileSystem.vala:71 #, fuzzy msgid "File deleted" msgstr "Datoteka je spremljenja" -#: src/Utility/TeeJee.FileSystem.vala:79 src/Utility/TeeJee.FileSystem.vala:273 +#: src/Utility/TeeJee.FileSystem.vala:76 src/Utility/TeeJee.FileSystem.vala:256 #, fuzzy msgid "Failed to delete file" msgstr "Neuspjelo zapisivanje datoteke" -#: src/Utility/TeeJee.FileSystem.vala:99 +#: src/Utility/TeeJee.FileSystem.vala:96 msgid "Failed to read file" msgstr "Neuspjelo čitanje datoteke" -#: src/Utility/TeeJee.FileSystem.vala:127 -#: src/Utility/TeeJee.FileSystem.vala:130 +#: src/Utility/TeeJee.FileSystem.vala:123 msgid "File saved" msgstr "Datoteka je spremljenja" -#: src/Utility/TeeJee.FileSystem.vala:137 +#: src/Utility/TeeJee.FileSystem.vala:129 msgid "Failed to write file" msgstr "Neuspjelo zapisivanje datoteke" -#: src/Utility/TeeJee.FileSystem.vala:150 -#: src/Utility/TeeJee.FileSystem.vala:153 +#: src/Utility/TeeJee.FileSystem.vala:141 msgid "File copied" msgstr "Datoteka kopirana" -#: src/Utility/TeeJee.FileSystem.vala:161 +#: src/Utility/TeeJee.FileSystem.vala:148 msgid "Failed to copy file" msgstr "Neuspjelo kopiranje datoteke" -#: src/Utility/TeeJee.FileSystem.vala:171 +#: src/Utility/TeeJee.FileSystem.vala:158 msgid "File not found" msgstr "Datoteka nije pronađena" -#: src/Utility/TeeJee.FileSystem.vala:185 -#: src/Utility/TeeJee.FileSystem.vala:188 +#: src/Utility/TeeJee.FileSystem.vala:171 msgid "File moved" msgstr "Datoteka je premještena" -#: src/Utility/TeeJee.FileSystem.vala:193 +#: src/Utility/TeeJee.FileSystem.vala:176 msgid "Failed to move file" msgstr "Neuspjelo premještanje datoteke" -#: src/Utility/TeeJee.FileSystem.vala:250 -#: src/Utility/TeeJee.FileSystem.vala:253 +#: src/Utility/TeeJee.FileSystem.vala:233 +#: src/Utility/TeeJee.FileSystem.vala:236 msgid "Created directory" msgstr "Stvoren direktorij" -#: src/Utility/TeeJee.FileSystem.vala:260 +#: src/Utility/TeeJee.FileSystem.vala:243 msgid "Failed to create dir" msgstr "Neuspjelo stvarnje direktorija" -#: src/Utility/TeeJee.FileSystem.vala:272 +#: src/Utility/TeeJee.FileSystem.vala:255 msgid "Deleted" msgstr "" diff --git a/po/messages.pot b/po/messages.pot index 9c56cb28..40c6ab48 100644 --- a/po/messages.pot +++ b/po/messages.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline 1.0.9\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-18 07:56-0400\n" +"POT-Creation-Date: 2020-05-18 20:12-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -25,132 +25,124 @@ msgstr "" msgid "Architecture" msgstr "" -#: src/Common/LinuxKernel.vala:231 -msgid "Index is stale" -msgstr "" - -#: src/Common/LinuxKernel.vala:234 -msgid "Index is fresh" -msgstr "" - -#: src/Common/LinuxKernel.vala:339 +#: src/Common/LinuxKernel.vala:305 msgid "Fetching index..." msgstr "" -#: src/Common/LinuxKernel.vala:380 +#: src/Common/LinuxKernel.vala:341 msgid "Fetching index from kernel.ubuntu.com..." msgstr "" -#: src/Common/LinuxKernel.vala:653 +#: src/Common/LinuxKernel.vala:598 msgid "Could not find running kernel in list!" msgstr "" -#: src/Common/LinuxKernel.vala:659 +#: src/Common/LinuxKernel.vala:604 msgid "Could not find any kernels to remove" msgstr "" -#: src/Common/LinuxKernel.vala:668 +#: src/Common/LinuxKernel.vala:613 msgid "The following kernels will be removed:" msgstr "" -#: src/Common/LinuxKernel.vala:675 +#: src/Common/LinuxKernel.vala:620 msgid "Continue ?" msgstr "" -#: src/Common/LinuxKernel.vala:703 src/Console/AppConsole.vala:302 +#: src/Common/LinuxKernel.vala:644 src/Console/AppConsole.vala:302 msgid "Latest update" msgstr "" -#: src/Common/LinuxKernel.vala:714 src/Console/AppConsole.vala:309 +#: src/Common/LinuxKernel.vala:655 src/Console/AppConsole.vala:309 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:722 src/Console/AppConsole.vala:314 +#: src/Common/LinuxKernel.vala:663 src/Console/AppConsole.vala:314 #: src/Console/AppConsole.vala:364 msgid "No updates found" msgstr "" -#: src/Common/LinuxKernel.vala:732 +#: src/Common/LinuxKernel.vala:673 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "" -#: src/Common/LinuxKernel.vala:998 +#: src/Common/LinuxKernel.vala:935 msgid "Packages Available" msgstr "" -#: src/Common/LinuxKernel.vala:1006 +#: src/Common/LinuxKernel.vala:943 msgid "Packages Installed" msgstr "" -#: src/Common/LinuxKernel.vala:1090 +#: src/Common/LinuxKernel.vala:1026 msgid "Available Kernels" msgstr "" -#: src/Common/LinuxKernel.vala:1107 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1033 src/Gtk/MainWindow.vala:186 msgid "Installed" msgstr "" -#: src/Common/LinuxKernel.vala:1107 src/Gtk/MainWindow.vala:186 -#: src/Gtk/MainWindow.vala:628 src/Gtk/MainWindow.vala:642 +#: src/Common/LinuxKernel.vala:1033 src/Gtk/MainWindow.vala:186 +#: src/Gtk/MainWindow.vala:625 src/Gtk/MainWindow.vala:639 msgid "Running" msgstr "" -#: src/Common/LinuxKernel.vala:1141 +#: src/Common/LinuxKernel.vala:1070 msgid "Downloading" msgstr "" -#: src/Common/LinuxKernel.vala:1160 +#: src/Common/LinuxKernel.vala:1089 #: src/Utility/Gtk/CustomMessageDialog.vala:148 #: src/Utility/Gtk/CustomMessageDialog.vala:152 msgid "OK" msgstr "" -#: src/Common/LinuxKernel.vala:1165 +#: src/Common/LinuxKernel.vala:1094 msgid "ERROR" msgstr "" -#: src/Common/LinuxKernel.vala:1179 src/Gtk/MainWindow.vala:650 +#: src/Common/LinuxKernel.vala:1108 src/Gtk/MainWindow.vala:647 msgid "This kernel is already installed." msgstr "" -#: src/Common/LinuxKernel.vala:1205 +#: src/Common/LinuxKernel.vala:1134 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" -#: src/Common/LinuxKernel.vala:1208 +#: src/Common/LinuxKernel.vala:1137 msgid "Installation completed with errors" msgstr "" -#: src/Common/LinuxKernel.vala:1224 +#: src/Common/LinuxKernel.vala:1152 msgid "" "Selected kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." msgstr "" -#: src/Common/LinuxKernel.vala:1229 +#: src/Common/LinuxKernel.vala:1157 msgid "Preparing to remove selected kernels" msgstr "" -#: src/Common/LinuxKernel.vala:1260 src/Common/LinuxKernel.vala:1307 +#: src/Common/LinuxKernel.vala:1188 src/Common/LinuxKernel.vala:1235 msgid "Un-install completed" msgstr "" -#: src/Common/LinuxKernel.vala:1263 src/Common/LinuxKernel.vala:1310 +#: src/Common/LinuxKernel.vala:1191 src/Common/LinuxKernel.vala:1238 msgid "Un-install completed with errors" msgstr "" -#: src/Common/LinuxKernel.vala:1276 +#: src/Common/LinuxKernel.vala:1204 msgid "" "This kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." msgstr "" -#: src/Common/Main.vala:238 +#: src/Common/Main.vala:236 msgid "Called from" msgstr "" -#: src/Common/Main.vala:250 +#: src/Common/Main.vala:248 msgid "Notifications are disabled" msgstr "" @@ -199,7 +191,7 @@ msgstr "" msgid "Uninstall specified kernels" msgstr "" -#: src/Console/AppConsole.vala:74 src/Gtk/MainWindow.vala:395 +#: src/Console/AppConsole.vala:74 src/Gtk/MainWindow.vala:392 msgid "Remove installed kernels older than running kernel" msgstr "" @@ -283,7 +275,7 @@ msgid "Kernel %s Available" msgstr "" #: src/Console/AppConsole.vala:339 src/Console/AppConsole.vala:355 -#: src/Gtk/MainWindow.vala:333 +#: src/Gtk/MainWindow.vala:330 msgid "Install" msgstr "" @@ -307,89 +299,89 @@ msgstr "" msgid "Status" msgstr "" -#: src/Gtk/MainWindow.vala:317 +#: src/Gtk/MainWindow.vala:314 msgid "Refresh" msgstr "" -#: src/Gtk/MainWindow.vala:324 src/Utility/TeeJee.System.vala:42 +#: src/Gtk/MainWindow.vala:321 src/Utility/TeeJee.System.vala:42 msgid "Internet connection is not active" msgstr "" -#: src/Gtk/MainWindow.vala:324 src/Gtk/MainWindow.vala:525 -#: src/Gtk/MainWindow.vala:655 +#: src/Gtk/MainWindow.vala:321 src/Gtk/MainWindow.vala:522 +#: src/Gtk/MainWindow.vala:652 msgid "No Internet" msgstr "" -#: src/Gtk/MainWindow.vala:342 +#: src/Gtk/MainWindow.vala:339 msgid "Multiple Kernels Selected" msgstr "" -#: src/Gtk/MainWindow.vala:342 +#: src/Gtk/MainWindow.vala:339 msgid "Select a single kernel to install" msgstr "" -#: src/Gtk/MainWindow.vala:345 src/Gtk/MainWindow.vala:356 +#: src/Gtk/MainWindow.vala:342 src/Gtk/MainWindow.vala:353 msgid "Not Selected" msgstr "" -#: src/Gtk/MainWindow.vala:345 +#: src/Gtk/MainWindow.vala:342 msgid "Select the kernel to install" msgstr "" -#: src/Gtk/MainWindow.vala:350 +#: src/Gtk/MainWindow.vala:347 msgid "Remove" msgstr "" -#: src/Gtk/MainWindow.vala:356 +#: src/Gtk/MainWindow.vala:353 msgid "Select the kernels to remove" msgstr "" -#: src/Gtk/MainWindow.vala:386 src/Gtk/MainWindow.vala:420 -#: src/Gtk/MainWindow.vala:687 +#: src/Gtk/MainWindow.vala:383 src/Gtk/MainWindow.vala:417 +#: src/Gtk/MainWindow.vala:684 msgid "Close window to exit..." msgstr "" -#: src/Gtk/MainWindow.vala:394 +#: src/Gtk/MainWindow.vala:391 msgid "Purge" msgstr "" -#: src/Gtk/MainWindow.vala:427 +#: src/Gtk/MainWindow.vala:424 msgid "Changes" msgstr "" -#: src/Gtk/MainWindow.vala:438 src/Gtk/SettingsDialog.vala:52 +#: src/Gtk/MainWindow.vala:435 src/Gtk/SettingsDialog.vala:52 msgid "Settings" msgstr "" -#: src/Gtk/MainWindow.vala:459 +#: src/Gtk/MainWindow.vala:456 msgid "About" msgstr "" -#: src/Gtk/MainWindow.vala:503 +#: src/Gtk/MainWindow.vala:500 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "" -#: src/Gtk/MainWindow.vala:504 +#: src/Gtk/MainWindow.vala:501 msgid "Forked" msgstr "" -#: src/Gtk/MainWindow.vala:504 +#: src/Gtk/MainWindow.vala:501 msgid "Original" msgstr "" -#: src/Gtk/MainWindow.vala:525 src/Gtk/MainWindow.vala:655 +#: src/Gtk/MainWindow.vala:522 src/Gtk/MainWindow.vala:652 msgid "Internet connection is not active." msgstr "" -#: src/Gtk/MainWindow.vala:544 +#: src/Gtk/MainWindow.vala:541 msgid "Refreshing..." msgstr "" -#: src/Gtk/MainWindow.vala:638 +#: src/Gtk/MainWindow.vala:635 msgid "available" msgstr "" -#: src/Gtk/MainWindow.vala:650 +#: src/Gtk/MainWindow.vala:647 msgid "Already Installed" msgstr "" @@ -514,59 +506,56 @@ msgstr "" msgid "Missing Icon" msgstr "" -#: src/Utility/TeeJee.FileSystem.vala:70 src/Utility/TeeJee.FileSystem.vala:73 +#: src/Utility/TeeJee.FileSystem.vala:71 msgid "File deleted" msgstr "" -#: src/Utility/TeeJee.FileSystem.vala:79 src/Utility/TeeJee.FileSystem.vala:273 +#: src/Utility/TeeJee.FileSystem.vala:76 src/Utility/TeeJee.FileSystem.vala:256 msgid "Failed to delete file" msgstr "" -#: src/Utility/TeeJee.FileSystem.vala:99 +#: src/Utility/TeeJee.FileSystem.vala:96 msgid "Failed to read file" msgstr "" -#: src/Utility/TeeJee.FileSystem.vala:127 -#: src/Utility/TeeJee.FileSystem.vala:130 +#: src/Utility/TeeJee.FileSystem.vala:123 msgid "File saved" msgstr "" -#: src/Utility/TeeJee.FileSystem.vala:137 +#: src/Utility/TeeJee.FileSystem.vala:129 msgid "Failed to write file" msgstr "" -#: src/Utility/TeeJee.FileSystem.vala:150 -#: src/Utility/TeeJee.FileSystem.vala:153 +#: src/Utility/TeeJee.FileSystem.vala:141 msgid "File copied" msgstr "" -#: src/Utility/TeeJee.FileSystem.vala:161 +#: src/Utility/TeeJee.FileSystem.vala:148 msgid "Failed to copy file" msgstr "" -#: src/Utility/TeeJee.FileSystem.vala:171 +#: src/Utility/TeeJee.FileSystem.vala:158 msgid "File not found" msgstr "" -#: src/Utility/TeeJee.FileSystem.vala:185 -#: src/Utility/TeeJee.FileSystem.vala:188 +#: src/Utility/TeeJee.FileSystem.vala:171 msgid "File moved" msgstr "" -#: src/Utility/TeeJee.FileSystem.vala:193 +#: src/Utility/TeeJee.FileSystem.vala:176 msgid "Failed to move file" msgstr "" -#: src/Utility/TeeJee.FileSystem.vala:250 -#: src/Utility/TeeJee.FileSystem.vala:253 +#: src/Utility/TeeJee.FileSystem.vala:233 +#: src/Utility/TeeJee.FileSystem.vala:236 msgid "Created directory" msgstr "" -#: src/Utility/TeeJee.FileSystem.vala:260 +#: src/Utility/TeeJee.FileSystem.vala:243 msgid "Failed to create dir" msgstr "" -#: src/Utility/TeeJee.FileSystem.vala:272 +#: src/Utility/TeeJee.FileSystem.vala:255 msgid "Deleted" msgstr "" diff --git a/po/nl.po b/po/nl.po index 36af2c45..24116139 100644 --- a/po/nl.po +++ b/po/nl.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-18 07:56-0400\n" +"POT-Creation-Date: 2020-05-18 20:12-0400\n" "PO-Revision-Date: 2017-04-30 11:50+0200\n" "Last-Translator: Heimen Stoffels \n" "Language-Team: \n" @@ -22,108 +22,100 @@ msgstr "Distributie" msgid "Architecture" msgstr "Systeemarchitectuur" -#: src/Common/LinuxKernel.vala:231 -msgid "Index is stale" -msgstr "De index is verouderd" - -#: src/Common/LinuxKernel.vala:234 -msgid "Index is fresh" -msgstr "De index is up-to-date" - -#: src/Common/LinuxKernel.vala:339 +#: src/Common/LinuxKernel.vala:305 msgid "Fetching index..." msgstr "" -#: src/Common/LinuxKernel.vala:380 +#: src/Common/LinuxKernel.vala:341 msgid "Fetching index from kernel.ubuntu.com..." msgstr "Bezig met ophalen van index van kernel.ubuntu.com..." -#: src/Common/LinuxKernel.vala:653 +#: src/Common/LinuxKernel.vala:598 #, fuzzy msgid "Could not find running kernel in list!" msgstr "De vereiste versie kan niet worden gevonden" -#: src/Common/LinuxKernel.vala:659 +#: src/Common/LinuxKernel.vala:604 #, fuzzy msgid "Could not find any kernels to remove" msgstr "Selecteer de te verwijderen kernels" -#: src/Common/LinuxKernel.vala:668 +#: src/Common/LinuxKernel.vala:613 msgid "The following kernels will be removed:" msgstr "" -#: src/Common/LinuxKernel.vala:675 +#: src/Common/LinuxKernel.vala:620 msgid "Continue ?" msgstr "" -#: src/Common/LinuxKernel.vala:703 src/Console/AppConsole.vala:302 +#: src/Common/LinuxKernel.vala:644 src/Console/AppConsole.vala:302 msgid "Latest update" msgstr "" -#: src/Common/LinuxKernel.vala:714 src/Console/AppConsole.vala:309 +#: src/Common/LinuxKernel.vala:655 src/Console/AppConsole.vala:309 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:722 src/Console/AppConsole.vala:314 +#: src/Common/LinuxKernel.vala:663 src/Console/AppConsole.vala:314 #: src/Console/AppConsole.vala:364 msgid "No updates found" msgstr "Geen updates gevonden" -#: src/Common/LinuxKernel.vala:732 +#: src/Common/LinuxKernel.vala:673 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "" -#: src/Common/LinuxKernel.vala:998 +#: src/Common/LinuxKernel.vala:935 msgid "Packages Available" msgstr "Beschikbare pakketten" -#: src/Common/LinuxKernel.vala:1006 +#: src/Common/LinuxKernel.vala:943 msgid "Packages Installed" msgstr "Geïnstalleerde pakketten" -#: src/Common/LinuxKernel.vala:1090 +#: src/Common/LinuxKernel.vala:1026 msgid "Available Kernels" msgstr "Beschikbare kernels" -#: src/Common/LinuxKernel.vala:1107 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1033 src/Gtk/MainWindow.vala:186 msgid "Installed" msgstr "Geïnstalleerd" -#: src/Common/LinuxKernel.vala:1107 src/Gtk/MainWindow.vala:186 -#: src/Gtk/MainWindow.vala:628 src/Gtk/MainWindow.vala:642 +#: src/Common/LinuxKernel.vala:1033 src/Gtk/MainWindow.vala:186 +#: src/Gtk/MainWindow.vala:625 src/Gtk/MainWindow.vala:639 msgid "Running" msgstr "Bezig met draaien" -#: src/Common/LinuxKernel.vala:1141 +#: src/Common/LinuxKernel.vala:1070 msgid "Downloading" msgstr "Bezig met downloaden" -#: src/Common/LinuxKernel.vala:1160 +#: src/Common/LinuxKernel.vala:1089 #: src/Utility/Gtk/CustomMessageDialog.vala:148 #: src/Utility/Gtk/CustomMessageDialog.vala:152 msgid "OK" msgstr "Oké" -#: src/Common/LinuxKernel.vala:1165 +#: src/Common/LinuxKernel.vala:1094 msgid "ERROR" msgstr "FOUT" -#: src/Common/LinuxKernel.vala:1179 src/Gtk/MainWindow.vala:650 +#: src/Common/LinuxKernel.vala:1108 src/Gtk/MainWindow.vala:647 msgid "This kernel is already installed." msgstr "Deze kernel is al geïnstalleerd." -#: src/Common/LinuxKernel.vala:1205 +#: src/Common/LinuxKernel.vala:1134 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "De installatie is voltooid. Herstart de computer om de nieuwe kernel te " "gebruiken." -#: src/Common/LinuxKernel.vala:1208 +#: src/Common/LinuxKernel.vala:1137 msgid "Installation completed with errors" msgstr "De installatie is foutloos voltooid" -#: src/Common/LinuxKernel.vala:1224 +#: src/Common/LinuxKernel.vala:1152 msgid "" "Selected kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -132,19 +124,19 @@ msgstr "" "verwijderd.\n" " Installeer een andere kernel voordat u deze verwijdert." -#: src/Common/LinuxKernel.vala:1229 +#: src/Common/LinuxKernel.vala:1157 msgid "Preparing to remove selected kernels" msgstr "Bezig met voorbereiden van verwijderen van geselecteerde kernels" -#: src/Common/LinuxKernel.vala:1260 src/Common/LinuxKernel.vala:1307 +#: src/Common/LinuxKernel.vala:1188 src/Common/LinuxKernel.vala:1235 msgid "Un-install completed" msgstr "Deïnstalleren voltooid" -#: src/Common/LinuxKernel.vala:1263 src/Common/LinuxKernel.vala:1310 +#: src/Common/LinuxKernel.vala:1191 src/Common/LinuxKernel.vala:1238 msgid "Un-install completed with errors" msgstr "Deïnstalleren voltooid, maar met fouten" -#: src/Common/LinuxKernel.vala:1276 +#: src/Common/LinuxKernel.vala:1204 msgid "" "This kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -152,11 +144,11 @@ msgstr "" "Deze kernel is momenteel in gebruik en kan daarom niet worden verwijderd.\n" " Installeer een andere kernel voordat u deze verwijdert." -#: src/Common/Main.vala:238 +#: src/Common/Main.vala:236 msgid "Called from" msgstr "" -#: src/Common/Main.vala:250 +#: src/Common/Main.vala:248 #, fuzzy msgid "Notifications are disabled" msgstr "Melding" @@ -210,7 +202,7 @@ msgstr "Opgegeven mainline-kernel installeren" msgid "Uninstall specified kernels" msgstr "Opgegeven mainline-kernel installeren" -#: src/Console/AppConsole.vala:74 src/Gtk/MainWindow.vala:395 +#: src/Console/AppConsole.vala:74 src/Gtk/MainWindow.vala:392 msgid "Remove installed kernels older than running kernel" msgstr "" @@ -301,7 +293,7 @@ msgid "Kernel %s Available" msgstr "Beschikbare pakketten" #: src/Console/AppConsole.vala:339 src/Console/AppConsole.vala:355 -#: src/Gtk/MainWindow.vala:333 +#: src/Gtk/MainWindow.vala:330 msgid "Install" msgstr "Installeren" @@ -325,91 +317,91 @@ msgstr "Kernel" msgid "Status" msgstr "Status" -#: src/Gtk/MainWindow.vala:317 +#: src/Gtk/MainWindow.vala:314 msgid "Refresh" msgstr "Verversen" -#: src/Gtk/MainWindow.vala:324 src/Utility/TeeJee.System.vala:42 +#: src/Gtk/MainWindow.vala:321 src/Utility/TeeJee.System.vala:42 msgid "Internet connection is not active" msgstr "U bent niet verbonden met het internet" -#: src/Gtk/MainWindow.vala:324 src/Gtk/MainWindow.vala:525 -#: src/Gtk/MainWindow.vala:655 +#: src/Gtk/MainWindow.vala:321 src/Gtk/MainWindow.vala:522 +#: src/Gtk/MainWindow.vala:652 msgid "No Internet" msgstr "Geen internetverbinding" -#: src/Gtk/MainWindow.vala:342 +#: src/Gtk/MainWindow.vala:339 msgid "Multiple Kernels Selected" msgstr "Meerdere kernels geselecteerd" -#: src/Gtk/MainWindow.vala:342 +#: src/Gtk/MainWindow.vala:339 msgid "Select a single kernel to install" msgstr "Selecteer een enkele te installeren kernel" -#: src/Gtk/MainWindow.vala:345 src/Gtk/MainWindow.vala:356 +#: src/Gtk/MainWindow.vala:342 src/Gtk/MainWindow.vala:353 msgid "Not Selected" msgstr "Niet geselecteerd" -#: src/Gtk/MainWindow.vala:345 +#: src/Gtk/MainWindow.vala:342 msgid "Select the kernel to install" msgstr "Selecteer de te installeren kernel" -#: src/Gtk/MainWindow.vala:350 +#: src/Gtk/MainWindow.vala:347 msgid "Remove" msgstr "Verwijderen" -#: src/Gtk/MainWindow.vala:356 +#: src/Gtk/MainWindow.vala:353 msgid "Select the kernels to remove" msgstr "Selecteer de te verwijderen kernels" -#: src/Gtk/MainWindow.vala:386 src/Gtk/MainWindow.vala:420 -#: src/Gtk/MainWindow.vala:687 +#: src/Gtk/MainWindow.vala:383 src/Gtk/MainWindow.vala:417 +#: src/Gtk/MainWindow.vala:684 msgid "Close window to exit..." msgstr "" -#: src/Gtk/MainWindow.vala:394 +#: src/Gtk/MainWindow.vala:391 msgid "Purge" msgstr "" -#: src/Gtk/MainWindow.vala:427 +#: src/Gtk/MainWindow.vala:424 msgid "Changes" msgstr "Wijzigingen" -#: src/Gtk/MainWindow.vala:438 src/Gtk/SettingsDialog.vala:52 +#: src/Gtk/MainWindow.vala:435 src/Gtk/SettingsDialog.vala:52 msgid "Settings" msgstr "Instellingen" -#: src/Gtk/MainWindow.vala:459 +#: src/Gtk/MainWindow.vala:456 msgid "About" msgstr "Over" -#: src/Gtk/MainWindow.vala:503 +#: src/Gtk/MainWindow.vala:500 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Kernel-upgradehulpmiddel voor op Ubuntu-gebaseerde distributies" -#: src/Gtk/MainWindow.vala:504 +#: src/Gtk/MainWindow.vala:501 msgid "Forked" msgstr "" -#: src/Gtk/MainWindow.vala:504 +#: src/Gtk/MainWindow.vala:501 msgid "Original" msgstr "" -#: src/Gtk/MainWindow.vala:525 src/Gtk/MainWindow.vala:655 +#: src/Gtk/MainWindow.vala:522 src/Gtk/MainWindow.vala:652 #, fuzzy msgid "Internet connection is not active." msgstr "U bent niet verbonden met het internet" -#: src/Gtk/MainWindow.vala:544 +#: src/Gtk/MainWindow.vala:541 msgid "Refreshing..." msgstr "Bezig met verversen..." -#: src/Gtk/MainWindow.vala:638 +#: src/Gtk/MainWindow.vala:635 #, fuzzy msgid "available" msgstr "Beschikbare pakketten" -#: src/Gtk/MainWindow.vala:650 +#: src/Gtk/MainWindow.vala:647 #, fuzzy msgid "Already Installed" msgstr "Geïnstalleerd" @@ -538,61 +530,58 @@ msgstr "" msgid "Missing Icon" msgstr "Ontbrekend pictogram" -#: src/Utility/TeeJee.FileSystem.vala:70 src/Utility/TeeJee.FileSystem.vala:73 +#: src/Utility/TeeJee.FileSystem.vala:71 #, fuzzy msgid "File deleted" msgstr "Bestand opgeslagen" -#: src/Utility/TeeJee.FileSystem.vala:79 src/Utility/TeeJee.FileSystem.vala:273 +#: src/Utility/TeeJee.FileSystem.vala:76 src/Utility/TeeJee.FileSystem.vala:256 #, fuzzy msgid "Failed to delete file" msgstr "Schrijven naar bestand is mislukt" -#: src/Utility/TeeJee.FileSystem.vala:99 +#: src/Utility/TeeJee.FileSystem.vala:96 msgid "Failed to read file" msgstr "Lezen van bestand is mislukt" -#: src/Utility/TeeJee.FileSystem.vala:127 -#: src/Utility/TeeJee.FileSystem.vala:130 +#: src/Utility/TeeJee.FileSystem.vala:123 msgid "File saved" msgstr "Bestand opgeslagen" -#: src/Utility/TeeJee.FileSystem.vala:137 +#: src/Utility/TeeJee.FileSystem.vala:129 msgid "Failed to write file" msgstr "Schrijven naar bestand is mislukt" -#: src/Utility/TeeJee.FileSystem.vala:150 -#: src/Utility/TeeJee.FileSystem.vala:153 +#: src/Utility/TeeJee.FileSystem.vala:141 msgid "File copied" msgstr "Bestand gekopieerd" -#: src/Utility/TeeJee.FileSystem.vala:161 +#: src/Utility/TeeJee.FileSystem.vala:148 msgid "Failed to copy file" msgstr "Kopiëren van bestand is mislukt" -#: src/Utility/TeeJee.FileSystem.vala:171 +#: src/Utility/TeeJee.FileSystem.vala:158 msgid "File not found" msgstr "Bestand niet gevonden" -#: src/Utility/TeeJee.FileSystem.vala:185 -#: src/Utility/TeeJee.FileSystem.vala:188 +#: src/Utility/TeeJee.FileSystem.vala:171 msgid "File moved" msgstr "Bestand verplaatst" -#: src/Utility/TeeJee.FileSystem.vala:193 +#: src/Utility/TeeJee.FileSystem.vala:176 msgid "Failed to move file" msgstr "Verplaatsen van bestand is mislukt" -#: src/Utility/TeeJee.FileSystem.vala:250 -#: src/Utility/TeeJee.FileSystem.vala:253 +#: src/Utility/TeeJee.FileSystem.vala:233 +#: src/Utility/TeeJee.FileSystem.vala:236 msgid "Created directory" msgstr "Map gecreëerd" -#: src/Utility/TeeJee.FileSystem.vala:260 +#: src/Utility/TeeJee.FileSystem.vala:243 msgid "Failed to create dir" msgstr "Creëren van map is mislukt" -#: src/Utility/TeeJee.FileSystem.vala:272 +#: src/Utility/TeeJee.FileSystem.vala:255 msgid "Deleted" msgstr "" diff --git a/po/pl.po b/po/pl.po index f26a147c..18abc5bb 100644 --- a/po/pl.po +++ b/po/pl.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-18 07:56-0400\n" +"POT-Creation-Date: 2020-05-18 20:12-0400\n" "PO-Revision-Date: 2017-08-12 15:26+0200\n" "Last-Translator: Waldemar Konik \n" "Language-Team: Polish\n" @@ -21,108 +21,100 @@ msgstr "Dystrybucja" msgid "Architecture" msgstr "Architektura systemu" -#: src/Common/LinuxKernel.vala:231 -msgid "Index is stale" -msgstr "Indeks jest nieaktualny" - -#: src/Common/LinuxKernel.vala:234 -msgid "Index is fresh" -msgstr "Indeks jest aktualny" - -#: src/Common/LinuxKernel.vala:339 +#: src/Common/LinuxKernel.vala:305 msgid "Fetching index..." msgstr "" -#: src/Common/LinuxKernel.vala:380 +#: src/Common/LinuxKernel.vala:341 msgid "Fetching index from kernel.ubuntu.com..." msgstr "Pobieranie indeksu z kernel.ubuntu.com..." -#: src/Common/LinuxKernel.vala:653 +#: src/Common/LinuxKernel.vala:598 #, fuzzy msgid "Could not find running kernel in list!" msgstr "Nie można odnaleźć żądanej wersji" -#: src/Common/LinuxKernel.vala:659 +#: src/Common/LinuxKernel.vala:604 #, fuzzy msgid "Could not find any kernels to remove" msgstr "Wybierz jądro do usunięcia" -#: src/Common/LinuxKernel.vala:668 +#: src/Common/LinuxKernel.vala:613 msgid "The following kernels will be removed:" msgstr "" -#: src/Common/LinuxKernel.vala:675 +#: src/Common/LinuxKernel.vala:620 msgid "Continue ?" msgstr "" -#: src/Common/LinuxKernel.vala:703 src/Console/AppConsole.vala:302 +#: src/Common/LinuxKernel.vala:644 src/Console/AppConsole.vala:302 msgid "Latest update" msgstr "" -#: src/Common/LinuxKernel.vala:714 src/Console/AppConsole.vala:309 +#: src/Common/LinuxKernel.vala:655 src/Console/AppConsole.vala:309 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:722 src/Console/AppConsole.vala:314 +#: src/Common/LinuxKernel.vala:663 src/Console/AppConsole.vala:314 #: src/Console/AppConsole.vala:364 msgid "No updates found" msgstr "Nie znaleziono aktualizacji" -#: src/Common/LinuxKernel.vala:732 +#: src/Common/LinuxKernel.vala:673 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "" -#: src/Common/LinuxKernel.vala:998 +#: src/Common/LinuxKernel.vala:935 msgid "Packages Available" msgstr "Dostępne pakiety" -#: src/Common/LinuxKernel.vala:1006 +#: src/Common/LinuxKernel.vala:943 msgid "Packages Installed" msgstr "Pakiety zainstalowane" -#: src/Common/LinuxKernel.vala:1090 +#: src/Common/LinuxKernel.vala:1026 msgid "Available Kernels" msgstr "Dostępne jądra" -#: src/Common/LinuxKernel.vala:1107 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1033 src/Gtk/MainWindow.vala:186 msgid "Installed" msgstr "Zainstalowany" -#: src/Common/LinuxKernel.vala:1107 src/Gtk/MainWindow.vala:186 -#: src/Gtk/MainWindow.vala:628 src/Gtk/MainWindow.vala:642 +#: src/Common/LinuxKernel.vala:1033 src/Gtk/MainWindow.vala:186 +#: src/Gtk/MainWindow.vala:625 src/Gtk/MainWindow.vala:639 msgid "Running" msgstr "Uruchomiony" -#: src/Common/LinuxKernel.vala:1141 +#: src/Common/LinuxKernel.vala:1070 msgid "Downloading" msgstr "Pobieranie" -#: src/Common/LinuxKernel.vala:1160 +#: src/Common/LinuxKernel.vala:1089 #: src/Utility/Gtk/CustomMessageDialog.vala:148 #: src/Utility/Gtk/CustomMessageDialog.vala:152 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:1165 +#: src/Common/LinuxKernel.vala:1094 msgid "ERROR" msgstr "BŁĄD" -#: src/Common/LinuxKernel.vala:1179 src/Gtk/MainWindow.vala:650 +#: src/Common/LinuxKernel.vala:1108 src/Gtk/MainWindow.vala:647 msgid "This kernel is already installed." msgstr "To jądro jest już zainstalowane." -#: src/Common/LinuxKernel.vala:1205 +#: src/Common/LinuxKernel.vala:1134 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "Instalacja zakończona. Aby korzystać z nowego jądra, konieczne jest ponowne " "uruchomienie." -#: src/Common/LinuxKernel.vala:1208 +#: src/Common/LinuxKernel.vala:1137 msgid "Installation completed with errors" msgstr "Instalacja zakończona z błędami" -#: src/Common/LinuxKernel.vala:1224 +#: src/Common/LinuxKernel.vala:1152 msgid "" "Selected kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -130,19 +122,19 @@ msgstr "" "Wybrane jądro aktualnie działa i nie może zostać usunięte.\n" " Zainstaluj inne jądro przed usunięciem tego." -#: src/Common/LinuxKernel.vala:1229 +#: src/Common/LinuxKernel.vala:1157 msgid "Preparing to remove selected kernels" msgstr "Przygotowanie do usunięcia wybranych jąder" -#: src/Common/LinuxKernel.vala:1260 src/Common/LinuxKernel.vala:1307 +#: src/Common/LinuxKernel.vala:1188 src/Common/LinuxKernel.vala:1235 msgid "Un-install completed" msgstr "De-instalacja zakończona" -#: src/Common/LinuxKernel.vala:1263 src/Common/LinuxKernel.vala:1310 +#: src/Common/LinuxKernel.vala:1191 src/Common/LinuxKernel.vala:1238 msgid "Un-install completed with errors" msgstr "De-instalacja zakończona z błędami" -#: src/Common/LinuxKernel.vala:1276 +#: src/Common/LinuxKernel.vala:1204 msgid "" "This kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -150,11 +142,11 @@ msgstr "" "To jądro aktualnie działa i nie może zostać usunięte.\n" " Zainstaluj inne jądro przed usunięciem tego." -#: src/Common/Main.vala:238 +#: src/Common/Main.vala:236 msgid "Called from" msgstr "" -#: src/Common/Main.vala:250 +#: src/Common/Main.vala:248 #, fuzzy msgid "Notifications are disabled" msgstr "Powiadomienia" @@ -208,7 +200,7 @@ msgstr "Zainstaluj wybrane jądro" msgid "Uninstall specified kernels" msgstr "Zainstaluj wybrane jądro" -#: src/Console/AppConsole.vala:74 src/Gtk/MainWindow.vala:395 +#: src/Console/AppConsole.vala:74 src/Gtk/MainWindow.vala:392 msgid "Remove installed kernels older than running kernel" msgstr "" @@ -297,7 +289,7 @@ msgid "Kernel %s Available" msgstr "Dostępne pakiety" #: src/Console/AppConsole.vala:339 src/Console/AppConsole.vala:355 -#: src/Gtk/MainWindow.vala:333 +#: src/Gtk/MainWindow.vala:330 msgid "Install" msgstr "Zainstaluj" @@ -321,91 +313,91 @@ msgstr "Jądro" msgid "Status" msgstr "Status" -#: src/Gtk/MainWindow.vala:317 +#: src/Gtk/MainWindow.vala:314 msgid "Refresh" msgstr "Odśwież" -#: src/Gtk/MainWindow.vala:324 src/Utility/TeeJee.System.vala:42 +#: src/Gtk/MainWindow.vala:321 src/Utility/TeeJee.System.vala:42 msgid "Internet connection is not active" msgstr "Brak połączenia z internetem" -#: src/Gtk/MainWindow.vala:324 src/Gtk/MainWindow.vala:525 -#: src/Gtk/MainWindow.vala:655 +#: src/Gtk/MainWindow.vala:321 src/Gtk/MainWindow.vala:522 +#: src/Gtk/MainWindow.vala:652 msgid "No Internet" msgstr "Brak internetu" -#: src/Gtk/MainWindow.vala:342 +#: src/Gtk/MainWindow.vala:339 msgid "Multiple Kernels Selected" msgstr "Wybrano kilka jąder" -#: src/Gtk/MainWindow.vala:342 +#: src/Gtk/MainWindow.vala:339 msgid "Select a single kernel to install" msgstr "Wybierz pojedyncze jądro do instalacji" -#: src/Gtk/MainWindow.vala:345 src/Gtk/MainWindow.vala:356 +#: src/Gtk/MainWindow.vala:342 src/Gtk/MainWindow.vala:353 msgid "Not Selected" msgstr "Nie wybrany" -#: src/Gtk/MainWindow.vala:345 +#: src/Gtk/MainWindow.vala:342 msgid "Select the kernel to install" msgstr "Wybierz pojedyncze do instalacji" -#: src/Gtk/MainWindow.vala:350 +#: src/Gtk/MainWindow.vala:347 msgid "Remove" msgstr "Usuń" -#: src/Gtk/MainWindow.vala:356 +#: src/Gtk/MainWindow.vala:353 msgid "Select the kernels to remove" msgstr "Wybierz jądro do usunięcia" -#: src/Gtk/MainWindow.vala:386 src/Gtk/MainWindow.vala:420 -#: src/Gtk/MainWindow.vala:687 +#: src/Gtk/MainWindow.vala:383 src/Gtk/MainWindow.vala:417 +#: src/Gtk/MainWindow.vala:684 msgid "Close window to exit..." msgstr "" -#: src/Gtk/MainWindow.vala:394 +#: src/Gtk/MainWindow.vala:391 msgid "Purge" msgstr "" -#: src/Gtk/MainWindow.vala:427 +#: src/Gtk/MainWindow.vala:424 msgid "Changes" msgstr "Zmiany" -#: src/Gtk/MainWindow.vala:438 src/Gtk/SettingsDialog.vala:52 +#: src/Gtk/MainWindow.vala:435 src/Gtk/SettingsDialog.vala:52 msgid "Settings" msgstr "Ustawienia" -#: src/Gtk/MainWindow.vala:459 +#: src/Gtk/MainWindow.vala:456 msgid "About" msgstr "O programie" -#: src/Gtk/MainWindow.vala:503 +#: src/Gtk/MainWindow.vala:500 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Narzędzie uaktualniania jądra dla dystrybucji z rodziny Ubuntu" -#: src/Gtk/MainWindow.vala:504 +#: src/Gtk/MainWindow.vala:501 msgid "Forked" msgstr "" -#: src/Gtk/MainWindow.vala:504 +#: src/Gtk/MainWindow.vala:501 msgid "Original" msgstr "" -#: src/Gtk/MainWindow.vala:525 src/Gtk/MainWindow.vala:655 +#: src/Gtk/MainWindow.vala:522 src/Gtk/MainWindow.vala:652 #, fuzzy msgid "Internet connection is not active." msgstr "Brak połączenia z internetem" -#: src/Gtk/MainWindow.vala:544 +#: src/Gtk/MainWindow.vala:541 msgid "Refreshing..." msgstr "Odświeżam..." -#: src/Gtk/MainWindow.vala:638 +#: src/Gtk/MainWindow.vala:635 #, fuzzy msgid "available" msgstr "Dostępne pakiety" -#: src/Gtk/MainWindow.vala:650 +#: src/Gtk/MainWindow.vala:647 #, fuzzy msgid "Already Installed" msgstr "Zainstalowany" @@ -534,61 +526,58 @@ msgstr "" msgid "Missing Icon" msgstr "Brakująca ikona" -#: src/Utility/TeeJee.FileSystem.vala:70 src/Utility/TeeJee.FileSystem.vala:73 +#: src/Utility/TeeJee.FileSystem.vala:71 #, fuzzy msgid "File deleted" msgstr "Plik zapisany" -#: src/Utility/TeeJee.FileSystem.vala:79 src/Utility/TeeJee.FileSystem.vala:273 +#: src/Utility/TeeJee.FileSystem.vala:76 src/Utility/TeeJee.FileSystem.vala:256 #, fuzzy msgid "Failed to delete file" msgstr "Nie udało się zapisać pliku" -#: src/Utility/TeeJee.FileSystem.vala:99 +#: src/Utility/TeeJee.FileSystem.vala:96 msgid "Failed to read file" msgstr "Nie udało się odczytać pliku" -#: src/Utility/TeeJee.FileSystem.vala:127 -#: src/Utility/TeeJee.FileSystem.vala:130 +#: src/Utility/TeeJee.FileSystem.vala:123 msgid "File saved" msgstr "Plik zapisany" -#: src/Utility/TeeJee.FileSystem.vala:137 +#: src/Utility/TeeJee.FileSystem.vala:129 msgid "Failed to write file" msgstr "Nie udało się zapisać pliku" -#: src/Utility/TeeJee.FileSystem.vala:150 -#: src/Utility/TeeJee.FileSystem.vala:153 +#: src/Utility/TeeJee.FileSystem.vala:141 msgid "File copied" msgstr "Plik skopiowany" -#: src/Utility/TeeJee.FileSystem.vala:161 +#: src/Utility/TeeJee.FileSystem.vala:148 msgid "Failed to copy file" msgstr "Nie udało się skopiować pliku" -#: src/Utility/TeeJee.FileSystem.vala:171 +#: src/Utility/TeeJee.FileSystem.vala:158 msgid "File not found" msgstr "Nie odnaleziono pliku" -#: src/Utility/TeeJee.FileSystem.vala:185 -#: src/Utility/TeeJee.FileSystem.vala:188 +#: src/Utility/TeeJee.FileSystem.vala:171 msgid "File moved" msgstr "Plik przeniesiony" -#: src/Utility/TeeJee.FileSystem.vala:193 +#: src/Utility/TeeJee.FileSystem.vala:176 msgid "Failed to move file" msgstr "Nie udało się przenieść pliku" -#: src/Utility/TeeJee.FileSystem.vala:250 -#: src/Utility/TeeJee.FileSystem.vala:253 +#: src/Utility/TeeJee.FileSystem.vala:233 +#: src/Utility/TeeJee.FileSystem.vala:236 msgid "Created directory" msgstr "Utworzono katalog" -#: src/Utility/TeeJee.FileSystem.vala:260 +#: src/Utility/TeeJee.FileSystem.vala:243 msgid "Failed to create dir" msgstr "Nie udało się utworzyć katalogu" -#: src/Utility/TeeJee.FileSystem.vala:272 +#: src/Utility/TeeJee.FileSystem.vala:255 msgid "Deleted" msgstr "" diff --git a/po/ru.po b/po/ru.po index c6b6e17e..ce42b39a 100644 --- a/po/ru.po +++ b/po/ru.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-18 07:56-0400\n" +"POT-Creation-Date: 2020-05-18 20:12-0400\n" "PO-Revision-Date: 2016-12-13 16:46+0300\n" "Last-Translator: Faust3000 \n" "Language-Team: Russian \n" @@ -22,110 +22,102 @@ msgstr "Дистрибутив" msgid "Architecture" msgstr "Системная архитектура" -#: src/Common/LinuxKernel.vala:231 -msgid "Index is stale" -msgstr "Сведения устарели" - -#: src/Common/LinuxKernel.vala:234 -msgid "Index is fresh" -msgstr "Сведения актуальны" - -#: src/Common/LinuxKernel.vala:339 +#: src/Common/LinuxKernel.vala:305 msgid "Fetching index..." msgstr "" -#: src/Common/LinuxKernel.vala:380 +#: src/Common/LinuxKernel.vala:341 msgid "Fetching index from kernel.ubuntu.com..." msgstr "Получение сведений с kernel.ubuntu.com..." -#: src/Common/LinuxKernel.vala:653 +#: src/Common/LinuxKernel.vala:598 #, fuzzy msgid "Could not find running kernel in list!" msgstr "Не удалось найти запрошенную версию" -#: src/Common/LinuxKernel.vala:659 +#: src/Common/LinuxKernel.vala:604 #, fuzzy msgid "Could not find any kernels to remove" msgstr "Не удалось найти запрошенную версию" -#: src/Common/LinuxKernel.vala:668 +#: src/Common/LinuxKernel.vala:613 msgid "The following kernels will be removed:" msgstr "" -#: src/Common/LinuxKernel.vala:675 +#: src/Common/LinuxKernel.vala:620 msgid "Continue ?" msgstr "" -#: src/Common/LinuxKernel.vala:703 src/Console/AppConsole.vala:302 +#: src/Common/LinuxKernel.vala:644 src/Console/AppConsole.vala:302 msgid "Latest update" msgstr "" -#: src/Common/LinuxKernel.vala:714 src/Console/AppConsole.vala:309 +#: src/Common/LinuxKernel.vala:655 src/Console/AppConsole.vala:309 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:722 src/Console/AppConsole.vala:314 +#: src/Common/LinuxKernel.vala:663 src/Console/AppConsole.vala:314 #: src/Console/AppConsole.vala:364 msgid "No updates found" msgstr "Обновлений не найдено" -#: src/Common/LinuxKernel.vala:732 +#: src/Common/LinuxKernel.vala:673 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "" -#: src/Common/LinuxKernel.vala:998 +#: src/Common/LinuxKernel.vala:935 #, fuzzy msgid "Packages Available" msgstr "Установлено" -#: src/Common/LinuxKernel.vala:1006 +#: src/Common/LinuxKernel.vala:943 #, fuzzy msgid "Packages Installed" msgstr "Установлено" -#: src/Common/LinuxKernel.vala:1090 +#: src/Common/LinuxKernel.vala:1026 msgid "Available Kernels" msgstr "Доступные ядра" -#: src/Common/LinuxKernel.vala:1107 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1033 src/Gtk/MainWindow.vala:186 msgid "Installed" msgstr "Установлено" -#: src/Common/LinuxKernel.vala:1107 src/Gtk/MainWindow.vala:186 -#: src/Gtk/MainWindow.vala:628 src/Gtk/MainWindow.vala:642 +#: src/Common/LinuxKernel.vala:1033 src/Gtk/MainWindow.vala:186 +#: src/Gtk/MainWindow.vala:625 src/Gtk/MainWindow.vala:639 msgid "Running" msgstr "Используется" -#: src/Common/LinuxKernel.vala:1141 +#: src/Common/LinuxKernel.vala:1070 msgid "Downloading" msgstr "Загрузка" -#: src/Common/LinuxKernel.vala:1160 +#: src/Common/LinuxKernel.vala:1089 #: src/Utility/Gtk/CustomMessageDialog.vala:148 #: src/Utility/Gtk/CustomMessageDialog.vala:152 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:1165 +#: src/Common/LinuxKernel.vala:1094 msgid "ERROR" msgstr "ОШИБКА" -#: src/Common/LinuxKernel.vala:1179 src/Gtk/MainWindow.vala:650 +#: src/Common/LinuxKernel.vala:1108 src/Gtk/MainWindow.vala:647 msgid "This kernel is already installed." msgstr "Это ядро уже установлено." -#: src/Common/LinuxKernel.vala:1205 +#: src/Common/LinuxKernel.vala:1134 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "Установка завершена. Обязательно выполните перезагрузку, чтобы использовать " "новое ядро." -#: src/Common/LinuxKernel.vala:1208 +#: src/Common/LinuxKernel.vala:1137 msgid "Installation completed with errors" msgstr "Установка завершена с ошибками" -#: src/Common/LinuxKernel.vala:1224 +#: src/Common/LinuxKernel.vala:1152 #, fuzzy msgid "" "Selected kernel is currently running and cannot be removed.\n" @@ -134,19 +126,19 @@ msgstr "" "Это ядро в настоящий момент работает и не может быть удалено.\n" " Установите другое ядро, прежде чем удалять его." -#: src/Common/LinuxKernel.vala:1229 +#: src/Common/LinuxKernel.vala:1157 msgid "Preparing to remove selected kernels" msgstr "" -#: src/Common/LinuxKernel.vala:1260 src/Common/LinuxKernel.vala:1307 +#: src/Common/LinuxKernel.vala:1188 src/Common/LinuxKernel.vala:1235 msgid "Un-install completed" msgstr "Удаление завершено" -#: src/Common/LinuxKernel.vala:1263 src/Common/LinuxKernel.vala:1310 +#: src/Common/LinuxKernel.vala:1191 src/Common/LinuxKernel.vala:1238 msgid "Un-install completed with errors" msgstr "Удаление завершено с ошибками" -#: src/Common/LinuxKernel.vala:1276 +#: src/Common/LinuxKernel.vala:1204 msgid "" "This kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -154,11 +146,11 @@ msgstr "" "Это ядро в настоящий момент работает и не может быть удалено.\n" " Установите другое ядро, прежде чем удалять его." -#: src/Common/Main.vala:238 +#: src/Common/Main.vala:236 msgid "Called from" msgstr "" -#: src/Common/Main.vala:250 +#: src/Common/Main.vala:248 #, fuzzy msgid "Notifications are disabled" msgstr "Уведомления" @@ -212,7 +204,7 @@ msgstr "Установить указанную ветку ядра" msgid "Uninstall specified kernels" msgstr "Установить указанную ветку ядра" -#: src/Console/AppConsole.vala:74 src/Gtk/MainWindow.vala:395 +#: src/Console/AppConsole.vala:74 src/Gtk/MainWindow.vala:392 msgid "Remove installed kernels older than running kernel" msgstr "Удалить более старшие установленные ядра, чем используемое" @@ -301,7 +293,7 @@ msgid "Kernel %s Available" msgstr "Установлено" #: src/Console/AppConsole.vala:339 src/Console/AppConsole.vala:355 -#: src/Gtk/MainWindow.vala:333 +#: src/Gtk/MainWindow.vala:330 msgid "Install" msgstr "Установить" @@ -325,91 +317,91 @@ msgstr "Ядро" msgid "Status" msgstr "Состояние" -#: src/Gtk/MainWindow.vala:317 +#: src/Gtk/MainWindow.vala:314 msgid "Refresh" msgstr "Обновить" -#: src/Gtk/MainWindow.vala:324 src/Utility/TeeJee.System.vala:42 +#: src/Gtk/MainWindow.vala:321 src/Utility/TeeJee.System.vala:42 msgid "Internet connection is not active" msgstr "Интернет соединение не активно" -#: src/Gtk/MainWindow.vala:324 src/Gtk/MainWindow.vala:525 -#: src/Gtk/MainWindow.vala:655 +#: src/Gtk/MainWindow.vala:321 src/Gtk/MainWindow.vala:522 +#: src/Gtk/MainWindow.vala:652 msgid "No Internet" msgstr "" -#: src/Gtk/MainWindow.vala:342 +#: src/Gtk/MainWindow.vala:339 msgid "Multiple Kernels Selected" msgstr "" -#: src/Gtk/MainWindow.vala:342 +#: src/Gtk/MainWindow.vala:339 msgid "Select a single kernel to install" msgstr "" -#: src/Gtk/MainWindow.vala:345 src/Gtk/MainWindow.vala:356 +#: src/Gtk/MainWindow.vala:342 src/Gtk/MainWindow.vala:353 msgid "Not Selected" msgstr "" -#: src/Gtk/MainWindow.vala:345 +#: src/Gtk/MainWindow.vala:342 msgid "Select the kernel to install" msgstr "" -#: src/Gtk/MainWindow.vala:350 +#: src/Gtk/MainWindow.vala:347 msgid "Remove" msgstr "Удалить" -#: src/Gtk/MainWindow.vala:356 +#: src/Gtk/MainWindow.vala:353 msgid "Select the kernels to remove" msgstr "" -#: src/Gtk/MainWindow.vala:386 src/Gtk/MainWindow.vala:420 -#: src/Gtk/MainWindow.vala:687 +#: src/Gtk/MainWindow.vala:383 src/Gtk/MainWindow.vala:417 +#: src/Gtk/MainWindow.vala:684 msgid "Close window to exit..." msgstr "" -#: src/Gtk/MainWindow.vala:394 +#: src/Gtk/MainWindow.vala:391 msgid "Purge" msgstr "Очистить" -#: src/Gtk/MainWindow.vala:427 +#: src/Gtk/MainWindow.vala:424 msgid "Changes" msgstr "Изменения" -#: src/Gtk/MainWindow.vala:438 src/Gtk/SettingsDialog.vala:52 +#: src/Gtk/MainWindow.vala:435 src/Gtk/SettingsDialog.vala:52 msgid "Settings" msgstr "Настройки" -#: src/Gtk/MainWindow.vala:459 +#: src/Gtk/MainWindow.vala:456 msgid "About" msgstr "О программе" -#: src/Gtk/MainWindow.vala:503 +#: src/Gtk/MainWindow.vala:500 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Программа обновления ядра для дистрибутивов на базе Ubuntu" -#: src/Gtk/MainWindow.vala:504 +#: src/Gtk/MainWindow.vala:501 msgid "Forked" msgstr "" -#: src/Gtk/MainWindow.vala:504 +#: src/Gtk/MainWindow.vala:501 msgid "Original" msgstr "" -#: src/Gtk/MainWindow.vala:525 src/Gtk/MainWindow.vala:655 +#: src/Gtk/MainWindow.vala:522 src/Gtk/MainWindow.vala:652 #, fuzzy msgid "Internet connection is not active." msgstr "Интернет соединение не активно" -#: src/Gtk/MainWindow.vala:544 +#: src/Gtk/MainWindow.vala:541 msgid "Refreshing..." msgstr "Обновление..." -#: src/Gtk/MainWindow.vala:638 +#: src/Gtk/MainWindow.vala:635 #, fuzzy msgid "available" msgstr "Установлено" -#: src/Gtk/MainWindow.vala:650 +#: src/Gtk/MainWindow.vala:647 #, fuzzy msgid "Already Installed" msgstr "Установлено" @@ -538,65 +530,62 @@ msgstr "" msgid "Missing Icon" msgstr "Значок отсутствует" -#: src/Utility/TeeJee.FileSystem.vala:70 src/Utility/TeeJee.FileSystem.vala:73 +#: src/Utility/TeeJee.FileSystem.vala:71 #, fuzzy msgid "File deleted" msgstr "Файловая система" -#: src/Utility/TeeJee.FileSystem.vala:79 src/Utility/TeeJee.FileSystem.vala:273 +#: src/Utility/TeeJee.FileSystem.vala:76 src/Utility/TeeJee.FileSystem.vala:256 #, fuzzy msgid "Failed to delete file" msgstr "Не удалось записать файл" -#: src/Utility/TeeJee.FileSystem.vala:99 +#: src/Utility/TeeJee.FileSystem.vala:96 msgid "Failed to read file" msgstr "Не удалось прочитать файл" -#: src/Utility/TeeJee.FileSystem.vala:127 -#: src/Utility/TeeJee.FileSystem.vala:130 +#: src/Utility/TeeJee.FileSystem.vala:123 #, fuzzy msgid "File saved" msgstr "Файловая система" -#: src/Utility/TeeJee.FileSystem.vala:137 +#: src/Utility/TeeJee.FileSystem.vala:129 msgid "Failed to write file" msgstr "Не удалось записать файл" -#: src/Utility/TeeJee.FileSystem.vala:150 -#: src/Utility/TeeJee.FileSystem.vala:153 +#: src/Utility/TeeJee.FileSystem.vala:141 #, fuzzy msgid "File copied" msgstr "Не удалось скопировать файл" -#: src/Utility/TeeJee.FileSystem.vala:161 +#: src/Utility/TeeJee.FileSystem.vala:148 msgid "Failed to copy file" msgstr "Не удалось скопировать файл" -#: src/Utility/TeeJee.FileSystem.vala:171 +#: src/Utility/TeeJee.FileSystem.vala:158 msgid "File not found" msgstr "Файл не найден" -#: src/Utility/TeeJee.FileSystem.vala:185 -#: src/Utility/TeeJee.FileSystem.vala:188 +#: src/Utility/TeeJee.FileSystem.vala:171 #, fuzzy msgid "File moved" msgstr "Удалить" -#: src/Utility/TeeJee.FileSystem.vala:193 +#: src/Utility/TeeJee.FileSystem.vala:176 msgid "Failed to move file" msgstr "Не удалось переместить файл" -#: src/Utility/TeeJee.FileSystem.vala:250 -#: src/Utility/TeeJee.FileSystem.vala:253 +#: src/Utility/TeeJee.FileSystem.vala:233 +#: src/Utility/TeeJee.FileSystem.vala:236 #, fuzzy msgid "Created directory" msgstr "Используемая кэш-папка" -#: src/Utility/TeeJee.FileSystem.vala:260 +#: src/Utility/TeeJee.FileSystem.vala:243 msgid "Failed to create dir" msgstr "Не удалось создать папку" -#: src/Utility/TeeJee.FileSystem.vala:272 +#: src/Utility/TeeJee.FileSystem.vala:255 msgid "Deleted" msgstr "" diff --git a/po/sv.po b/po/sv.po index ef549a35..178ecc67 100644 --- a/po/sv.po +++ b/po/sv.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-18 07:56-0400\n" +"POT-Creation-Date: 2020-05-18 20:12-0400\n" "PO-Revision-Date: 2018-01-13 16:56+0100\n" "Last-Translator: Åke Engelbrektson \n" "Language-Team: Svenska Språkfiler \n" @@ -22,107 +22,99 @@ msgstr "Distribution" msgid "Architecture" msgstr "Systemarkitektur" -#: src/Common/LinuxKernel.vala:231 -msgid "Index is stale" -msgstr "Index är inaktuellt" - -#: src/Common/LinuxKernel.vala:234 -msgid "Index is fresh" -msgstr "Index är uppdaterat" - -#: src/Common/LinuxKernel.vala:339 +#: src/Common/LinuxKernel.vala:305 #, fuzzy msgid "Fetching index..." msgstr "Hämtar index för" -#: src/Common/LinuxKernel.vala:380 +#: src/Common/LinuxKernel.vala:341 msgid "Fetching index from kernel.ubuntu.com..." msgstr "Hämtar index från kernel.ubuntu.com ..." -#: src/Common/LinuxKernel.vala:653 +#: src/Common/LinuxKernel.vala:598 #, fuzzy msgid "Could not find running kernel in list!" msgstr "Kunde inte hitta efterfrågad version" -#: src/Common/LinuxKernel.vala:659 +#: src/Common/LinuxKernel.vala:604 #, fuzzy msgid "Could not find any kernels to remove" msgstr "Välj kärnor för borttagning" -#: src/Common/LinuxKernel.vala:668 +#: src/Common/LinuxKernel.vala:613 msgid "The following kernels will be removed:" msgstr "" -#: src/Common/LinuxKernel.vala:675 +#: src/Common/LinuxKernel.vala:620 msgid "Continue ?" msgstr "" -#: src/Common/LinuxKernel.vala:703 src/Console/AppConsole.vala:302 +#: src/Common/LinuxKernel.vala:644 src/Console/AppConsole.vala:302 msgid "Latest update" msgstr "" -#: src/Common/LinuxKernel.vala:714 src/Console/AppConsole.vala:309 +#: src/Common/LinuxKernel.vala:655 src/Console/AppConsole.vala:309 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:722 src/Console/AppConsole.vala:314 +#: src/Common/LinuxKernel.vala:663 src/Console/AppConsole.vala:314 #: src/Console/AppConsole.vala:364 msgid "No updates found" msgstr "Inga uppdateringar hittades" -#: src/Common/LinuxKernel.vala:732 +#: src/Common/LinuxKernel.vala:673 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "" -#: src/Common/LinuxKernel.vala:998 +#: src/Common/LinuxKernel.vala:935 msgid "Packages Available" msgstr "Tillgängliga paket" -#: src/Common/LinuxKernel.vala:1006 +#: src/Common/LinuxKernel.vala:943 msgid "Packages Installed" msgstr "Installerade paket" -#: src/Common/LinuxKernel.vala:1090 +#: src/Common/LinuxKernel.vala:1026 msgid "Available Kernels" msgstr "Tillgängliga kärnor" -#: src/Common/LinuxKernel.vala:1107 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1033 src/Gtk/MainWindow.vala:186 msgid "Installed" msgstr "Installerad" -#: src/Common/LinuxKernel.vala:1107 src/Gtk/MainWindow.vala:186 -#: src/Gtk/MainWindow.vala:628 src/Gtk/MainWindow.vala:642 +#: src/Common/LinuxKernel.vala:1033 src/Gtk/MainWindow.vala:186 +#: src/Gtk/MainWindow.vala:625 src/Gtk/MainWindow.vala:639 msgid "Running" msgstr "Körs" -#: src/Common/LinuxKernel.vala:1141 +#: src/Common/LinuxKernel.vala:1070 msgid "Downloading" msgstr "Laddar ner" -#: src/Common/LinuxKernel.vala:1160 +#: src/Common/LinuxKernel.vala:1089 #: src/Utility/Gtk/CustomMessageDialog.vala:148 #: src/Utility/Gtk/CustomMessageDialog.vala:152 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:1165 +#: src/Common/LinuxKernel.vala:1094 msgid "ERROR" msgstr "FEL" -#: src/Common/LinuxKernel.vala:1179 src/Gtk/MainWindow.vala:650 +#: src/Common/LinuxKernel.vala:1108 src/Gtk/MainWindow.vala:647 msgid "This kernel is already installed." msgstr "Denna kärna är redan installerad" -#: src/Common/LinuxKernel.vala:1205 +#: src/Common/LinuxKernel.vala:1134 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "Installation slutförd. Omstart krävs för att tillämpa den nya kärnan." -#: src/Common/LinuxKernel.vala:1208 +#: src/Common/LinuxKernel.vala:1137 msgid "Installation completed with errors" msgstr "Installation slutförd med fel" -#: src/Common/LinuxKernel.vala:1224 +#: src/Common/LinuxKernel.vala:1152 msgid "" "Selected kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -130,19 +122,19 @@ msgstr "" "Denna kärna används för tillfället och kan inte tas bort.\n" "Installera en annan kärna innan du tar bort den här." -#: src/Common/LinuxKernel.vala:1229 +#: src/Common/LinuxKernel.vala:1157 msgid "Preparing to remove selected kernels" msgstr "Förbereder borttagning av markerade kärnor" -#: src/Common/LinuxKernel.vala:1260 src/Common/LinuxKernel.vala:1307 +#: src/Common/LinuxKernel.vala:1188 src/Common/LinuxKernel.vala:1235 msgid "Un-install completed" msgstr "Avinstallation slutförd" -#: src/Common/LinuxKernel.vala:1263 src/Common/LinuxKernel.vala:1310 +#: src/Common/LinuxKernel.vala:1191 src/Common/LinuxKernel.vala:1238 msgid "Un-install completed with errors" msgstr "Avinstallation slutförd med fel" -#: src/Common/LinuxKernel.vala:1276 +#: src/Common/LinuxKernel.vala:1204 msgid "" "This kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -150,11 +142,11 @@ msgstr "" "Denna kärna används för tillfället och kan inte tas bort.\n" "Installera en annan kärna innan du tar bort den här." -#: src/Common/Main.vala:238 +#: src/Common/Main.vala:236 msgid "Called from" msgstr "" -#: src/Common/Main.vala:250 +#: src/Common/Main.vala:248 #, fuzzy msgid "Notifications are disabled" msgstr "Avisering" @@ -208,7 +200,7 @@ msgstr "Installera specificerad kärna" msgid "Uninstall specified kernels" msgstr "Installera specificerad kärna" -#: src/Console/AppConsole.vala:74 src/Gtk/MainWindow.vala:395 +#: src/Console/AppConsole.vala:74 src/Gtk/MainWindow.vala:392 msgid "Remove installed kernels older than running kernel" msgstr "Ta bort installerade kärnor äldre än den som körs" @@ -297,7 +289,7 @@ msgid "Kernel %s Available" msgstr "Tillgängliga paket" #: src/Console/AppConsole.vala:339 src/Console/AppConsole.vala:355 -#: src/Gtk/MainWindow.vala:333 +#: src/Gtk/MainWindow.vala:330 msgid "Install" msgstr "Installera" @@ -321,91 +313,91 @@ msgstr "Kärna" msgid "Status" msgstr "Status" -#: src/Gtk/MainWindow.vala:317 +#: src/Gtk/MainWindow.vala:314 msgid "Refresh" msgstr "Uppdatera" -#: src/Gtk/MainWindow.vala:324 src/Utility/TeeJee.System.vala:42 +#: src/Gtk/MainWindow.vala:321 src/Utility/TeeJee.System.vala:42 msgid "Internet connection is not active" msgstr "Internetuppkopplingen är inte aktiv" -#: src/Gtk/MainWindow.vala:324 src/Gtk/MainWindow.vala:525 -#: src/Gtk/MainWindow.vala:655 +#: src/Gtk/MainWindow.vala:321 src/Gtk/MainWindow.vala:522 +#: src/Gtk/MainWindow.vala:652 msgid "No Internet" msgstr "Inget internet" -#: src/Gtk/MainWindow.vala:342 +#: src/Gtk/MainWindow.vala:339 msgid "Multiple Kernels Selected" msgstr "Flera kärnor markerade" -#: src/Gtk/MainWindow.vala:342 +#: src/Gtk/MainWindow.vala:339 msgid "Select a single kernel to install" msgstr "Välj en enstaka kärna att installera" -#: src/Gtk/MainWindow.vala:345 src/Gtk/MainWindow.vala:356 +#: src/Gtk/MainWindow.vala:342 src/Gtk/MainWindow.vala:353 msgid "Not Selected" msgstr "Inte vald" -#: src/Gtk/MainWindow.vala:345 +#: src/Gtk/MainWindow.vala:342 msgid "Select the kernel to install" msgstr "Välj kärna för installation" -#: src/Gtk/MainWindow.vala:350 +#: src/Gtk/MainWindow.vala:347 msgid "Remove" msgstr "Ta bort" -#: src/Gtk/MainWindow.vala:356 +#: src/Gtk/MainWindow.vala:353 msgid "Select the kernels to remove" msgstr "Välj kärnor för borttagning" -#: src/Gtk/MainWindow.vala:386 src/Gtk/MainWindow.vala:420 -#: src/Gtk/MainWindow.vala:687 +#: src/Gtk/MainWindow.vala:383 src/Gtk/MainWindow.vala:417 +#: src/Gtk/MainWindow.vala:684 msgid "Close window to exit..." msgstr "" -#: src/Gtk/MainWindow.vala:394 +#: src/Gtk/MainWindow.vala:391 msgid "Purge" msgstr "Rensa" -#: src/Gtk/MainWindow.vala:427 +#: src/Gtk/MainWindow.vala:424 msgid "Changes" msgstr "Ändringar" -#: src/Gtk/MainWindow.vala:438 src/Gtk/SettingsDialog.vala:52 +#: src/Gtk/MainWindow.vala:435 src/Gtk/SettingsDialog.vala:52 msgid "Settings" msgstr "Inställningar" -#: src/Gtk/MainWindow.vala:459 +#: src/Gtk/MainWindow.vala:456 msgid "About" msgstr "Om" -#: src/Gtk/MainWindow.vala:503 +#: src/Gtk/MainWindow.vala:500 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Kärnuppgraderingsverktyg för Ubuntu-baserade distributioner" -#: src/Gtk/MainWindow.vala:504 +#: src/Gtk/MainWindow.vala:501 msgid "Forked" msgstr "" -#: src/Gtk/MainWindow.vala:504 +#: src/Gtk/MainWindow.vala:501 msgid "Original" msgstr "" -#: src/Gtk/MainWindow.vala:525 src/Gtk/MainWindow.vala:655 +#: src/Gtk/MainWindow.vala:522 src/Gtk/MainWindow.vala:652 #, fuzzy msgid "Internet connection is not active." msgstr "Internetuppkopplingen är inte aktiv" -#: src/Gtk/MainWindow.vala:544 +#: src/Gtk/MainWindow.vala:541 msgid "Refreshing..." msgstr "Uppdaterar ..." -#: src/Gtk/MainWindow.vala:638 +#: src/Gtk/MainWindow.vala:635 #, fuzzy msgid "available" msgstr "Tillgängliga paket" -#: src/Gtk/MainWindow.vala:650 +#: src/Gtk/MainWindow.vala:647 #, fuzzy msgid "Already Installed" msgstr "Installerad" @@ -534,61 +526,58 @@ msgstr "Nej" msgid "Missing Icon" msgstr "Saknad ikon" -#: src/Utility/TeeJee.FileSystem.vala:70 src/Utility/TeeJee.FileSystem.vala:73 +#: src/Utility/TeeJee.FileSystem.vala:71 #, fuzzy msgid "File deleted" msgstr "Fil sparad" -#: src/Utility/TeeJee.FileSystem.vala:79 src/Utility/TeeJee.FileSystem.vala:273 +#: src/Utility/TeeJee.FileSystem.vala:76 src/Utility/TeeJee.FileSystem.vala:256 #, fuzzy msgid "Failed to delete file" msgstr "Kunde inte skriva filen" -#: src/Utility/TeeJee.FileSystem.vala:99 +#: src/Utility/TeeJee.FileSystem.vala:96 msgid "Failed to read file" msgstr "Kunde inte läsa filen" -#: src/Utility/TeeJee.FileSystem.vala:127 -#: src/Utility/TeeJee.FileSystem.vala:130 +#: src/Utility/TeeJee.FileSystem.vala:123 msgid "File saved" msgstr "Fil sparad" -#: src/Utility/TeeJee.FileSystem.vala:137 +#: src/Utility/TeeJee.FileSystem.vala:129 msgid "Failed to write file" msgstr "Kunde inte skriva filen" -#: src/Utility/TeeJee.FileSystem.vala:150 -#: src/Utility/TeeJee.FileSystem.vala:153 +#: src/Utility/TeeJee.FileSystem.vala:141 msgid "File copied" msgstr "Kopierade fil" -#: src/Utility/TeeJee.FileSystem.vala:161 +#: src/Utility/TeeJee.FileSystem.vala:148 msgid "Failed to copy file" msgstr "Kunde inte kopiera filen" -#: src/Utility/TeeJee.FileSystem.vala:171 +#: src/Utility/TeeJee.FileSystem.vala:158 msgid "File not found" msgstr "Filen kan inte hittas" -#: src/Utility/TeeJee.FileSystem.vala:185 -#: src/Utility/TeeJee.FileSystem.vala:188 +#: src/Utility/TeeJee.FileSystem.vala:171 msgid "File moved" msgstr "Fil flyttad" -#: src/Utility/TeeJee.FileSystem.vala:193 +#: src/Utility/TeeJee.FileSystem.vala:176 msgid "Failed to move file" msgstr "Kunde inte flytta filen" -#: src/Utility/TeeJee.FileSystem.vala:250 -#: src/Utility/TeeJee.FileSystem.vala:253 +#: src/Utility/TeeJee.FileSystem.vala:233 +#: src/Utility/TeeJee.FileSystem.vala:236 msgid "Created directory" msgstr "Skapade mapp" -#: src/Utility/TeeJee.FileSystem.vala:260 +#: src/Utility/TeeJee.FileSystem.vala:243 msgid "Failed to create dir" msgstr "Kunde inte skapa mappen" -#: src/Utility/TeeJee.FileSystem.vala:272 +#: src/Utility/TeeJee.FileSystem.vala:255 msgid "Deleted" msgstr "" diff --git a/po/tr.po b/po/tr.po index 6181c456..e1d2358a 100644 --- a/po/tr.po +++ b/po/tr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-18 07:56-0400\n" +"POT-Creation-Date: 2020-05-18 20:12-0400\n" "PO-Revision-Date: 2020-03-10 15:59+0300\n" "Last-Translator: Gökhan GÖKKAYA \n" "Language-Team: Turkish\n" @@ -21,105 +21,97 @@ msgstr "Dağıtım" msgid "Architecture" msgstr "Sistem mimarisi" -#: src/Common/LinuxKernel.vala:231 -msgid "Index is stale" -msgstr "İçerik listesi eski" - -#: src/Common/LinuxKernel.vala:234 -msgid "Index is fresh" -msgstr "İçerik listesi güncel" - -#: src/Common/LinuxKernel.vala:339 +#: src/Common/LinuxKernel.vala:305 msgid "Fetching index..." msgstr "İçerik dizini alınıyor..." -#: src/Common/LinuxKernel.vala:380 +#: src/Common/LinuxKernel.vala:341 msgid "Fetching index from kernel.ubuntu.com..." msgstr "İçerik listesi kernel.ubuntu.com alanından alınıyor..." -#: src/Common/LinuxKernel.vala:653 +#: src/Common/LinuxKernel.vala:598 msgid "Could not find running kernel in list!" msgstr "İstenen sürüm bulunamadı!" -#: src/Common/LinuxKernel.vala:659 +#: src/Common/LinuxKernel.vala:604 msgid "Could not find any kernels to remove" msgstr "Kaldırılacak çekirdek bulunamadı" -#: src/Common/LinuxKernel.vala:668 +#: src/Common/LinuxKernel.vala:613 msgid "The following kernels will be removed:" msgstr "Aşağıdaki çekirdekler silinecek:" -#: src/Common/LinuxKernel.vala:675 +#: src/Common/LinuxKernel.vala:620 msgid "Continue ?" msgstr "Devam et ?" -#: src/Common/LinuxKernel.vala:703 src/Console/AppConsole.vala:302 +#: src/Common/LinuxKernel.vala:644 src/Console/AppConsole.vala:302 msgid "Latest update" msgstr "Son güncelleme" -#: src/Common/LinuxKernel.vala:714 src/Console/AppConsole.vala:309 +#: src/Common/LinuxKernel.vala:655 src/Console/AppConsole.vala:309 msgid "Latest point update" msgstr "Son güncelleme noktası" -#: src/Common/LinuxKernel.vala:722 src/Console/AppConsole.vala:314 +#: src/Common/LinuxKernel.vala:663 src/Console/AppConsole.vala:314 #: src/Console/AppConsole.vala:364 msgid "No updates found" msgstr "Güncelleme bulunamadı" -#: src/Common/LinuxKernel.vala:732 +#: src/Common/LinuxKernel.vala:673 #, fuzzy, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Linux v%s Kur ? (e/h): " -#: src/Common/LinuxKernel.vala:998 +#: src/Common/LinuxKernel.vala:935 msgid "Packages Available" msgstr "Mevcut Paketler" -#: src/Common/LinuxKernel.vala:1006 +#: src/Common/LinuxKernel.vala:943 msgid "Packages Installed" msgstr "Kurulu Paketler" -#: src/Common/LinuxKernel.vala:1090 +#: src/Common/LinuxKernel.vala:1026 msgid "Available Kernels" msgstr "Mevcut Çekirdekler" -#: src/Common/LinuxKernel.vala:1107 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1033 src/Gtk/MainWindow.vala:186 msgid "Installed" msgstr "Kurulu" -#: src/Common/LinuxKernel.vala:1107 src/Gtk/MainWindow.vala:186 -#: src/Gtk/MainWindow.vala:628 src/Gtk/MainWindow.vala:642 +#: src/Common/LinuxKernel.vala:1033 src/Gtk/MainWindow.vala:186 +#: src/Gtk/MainWindow.vala:625 src/Gtk/MainWindow.vala:639 msgid "Running" msgstr "Çalışıyor" -#: src/Common/LinuxKernel.vala:1141 +#: src/Common/LinuxKernel.vala:1070 msgid "Downloading" msgstr "İndiriliyor" -#: src/Common/LinuxKernel.vala:1160 +#: src/Common/LinuxKernel.vala:1089 #: src/Utility/Gtk/CustomMessageDialog.vala:148 #: src/Utility/Gtk/CustomMessageDialog.vala:152 msgid "OK" msgstr "TAMAM" -#: src/Common/LinuxKernel.vala:1165 +#: src/Common/LinuxKernel.vala:1094 msgid "ERROR" msgstr "HATA" -#: src/Common/LinuxKernel.vala:1179 src/Gtk/MainWindow.vala:650 +#: src/Common/LinuxKernel.vala:1108 src/Gtk/MainWindow.vala:647 msgid "This kernel is already installed." msgstr "Bu çekirdek zaten kurulu." -#: src/Common/LinuxKernel.vala:1205 +#: src/Common/LinuxKernel.vala:1134 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "Kurulum tamamlandı. Yeni çekirdeği kullanmak için yeniden başlatma gerekiyor." -#: src/Common/LinuxKernel.vala:1208 +#: src/Common/LinuxKernel.vala:1137 msgid "Installation completed with errors" msgstr "Kurulum hatalarla tamamlandı" -#: src/Common/LinuxKernel.vala:1224 +#: src/Common/LinuxKernel.vala:1152 msgid "" "Selected kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -127,19 +119,19 @@ msgstr "" "Seçilen çekirdek şu anda çalışıyor ve kaldırılamıyor.\n" " Bunu kaldırmadan önce başka bir çekirdek yükleyin." -#: src/Common/LinuxKernel.vala:1229 +#: src/Common/LinuxKernel.vala:1157 msgid "Preparing to remove selected kernels" msgstr "Seçilen çekirdekleri kaldırmak için hazırlanıyor" -#: src/Common/LinuxKernel.vala:1260 src/Common/LinuxKernel.vala:1307 +#: src/Common/LinuxKernel.vala:1188 src/Common/LinuxKernel.vala:1235 msgid "Un-install completed" msgstr "Kaldırma tamamlandı" -#: src/Common/LinuxKernel.vala:1263 src/Common/LinuxKernel.vala:1310 +#: src/Common/LinuxKernel.vala:1191 src/Common/LinuxKernel.vala:1238 msgid "Un-install completed with errors" msgstr "Kaldırma hatalarla tamamlandı" -#: src/Common/LinuxKernel.vala:1276 +#: src/Common/LinuxKernel.vala:1204 msgid "" "This kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -147,11 +139,11 @@ msgstr "" "Bu çekirdek şu anda çalışıyor ve bu sebeple kaldırılamaz.\n" "Bunu kaldırmadan önce başka bir çekirdek yükleyin." -#: src/Common/Main.vala:238 +#: src/Common/Main.vala:236 msgid "Called from" msgstr "" -#: src/Common/Main.vala:250 +#: src/Common/Main.vala:248 #, fuzzy msgid "Notifications are disabled" msgstr "Bildirim" @@ -202,7 +194,7 @@ msgstr "Belirtilen mainline çekirdeğini kur" msgid "Uninstall specified kernels" msgstr "Belirtilen mainline çekirdeğini kur" -#: src/Console/AppConsole.vala:74 src/Gtk/MainWindow.vala:395 +#: src/Console/AppConsole.vala:74 src/Gtk/MainWindow.vala:392 msgid "Remove installed kernels older than running kernel" msgstr "Çalışan çekirdekten eski olan kurulu çekirdekleri kaldır" @@ -290,7 +282,7 @@ msgid "Kernel %s Available" msgstr "Mevcut Paketler" #: src/Console/AppConsole.vala:339 src/Console/AppConsole.vala:355 -#: src/Gtk/MainWindow.vala:333 +#: src/Gtk/MainWindow.vala:330 msgid "Install" msgstr "Kur" @@ -314,91 +306,91 @@ msgstr "Çekirdek" msgid "Status" msgstr "Durum" -#: src/Gtk/MainWindow.vala:317 +#: src/Gtk/MainWindow.vala:314 msgid "Refresh" msgstr "Yenile" -#: src/Gtk/MainWindow.vala:324 src/Utility/TeeJee.System.vala:42 +#: src/Gtk/MainWindow.vala:321 src/Utility/TeeJee.System.vala:42 msgid "Internet connection is not active" msgstr "İnternet bağlantısı aktif değil" -#: src/Gtk/MainWindow.vala:324 src/Gtk/MainWindow.vala:525 -#: src/Gtk/MainWindow.vala:655 +#: src/Gtk/MainWindow.vala:321 src/Gtk/MainWindow.vala:522 +#: src/Gtk/MainWindow.vala:652 msgid "No Internet" msgstr "İnternet Yok" -#: src/Gtk/MainWindow.vala:342 +#: src/Gtk/MainWindow.vala:339 msgid "Multiple Kernels Selected" msgstr "Çoklu Çekirdek Seçildi" -#: src/Gtk/MainWindow.vala:342 +#: src/Gtk/MainWindow.vala:339 msgid "Select a single kernel to install" msgstr "Kurulum için tek çekirdek seçin" -#: src/Gtk/MainWindow.vala:345 src/Gtk/MainWindow.vala:356 +#: src/Gtk/MainWindow.vala:342 src/Gtk/MainWindow.vala:353 msgid "Not Selected" msgstr "Seçilen Yok" -#: src/Gtk/MainWindow.vala:345 +#: src/Gtk/MainWindow.vala:342 msgid "Select the kernel to install" msgstr "Kurulum için çekirdek seçin" -#: src/Gtk/MainWindow.vala:350 +#: src/Gtk/MainWindow.vala:347 msgid "Remove" msgstr "Sil" -#: src/Gtk/MainWindow.vala:356 +#: src/Gtk/MainWindow.vala:353 msgid "Select the kernels to remove" msgstr "Kaldırma için çekirdek seçin" -#: src/Gtk/MainWindow.vala:386 src/Gtk/MainWindow.vala:420 -#: src/Gtk/MainWindow.vala:687 +#: src/Gtk/MainWindow.vala:383 src/Gtk/MainWindow.vala:417 +#: src/Gtk/MainWindow.vala:684 msgid "Close window to exit..." msgstr "" -#: src/Gtk/MainWindow.vala:394 +#: src/Gtk/MainWindow.vala:391 msgid "Purge" msgstr "Temizle" -#: src/Gtk/MainWindow.vala:427 +#: src/Gtk/MainWindow.vala:424 msgid "Changes" msgstr "Değişiklikler" -#: src/Gtk/MainWindow.vala:438 src/Gtk/SettingsDialog.vala:52 +#: src/Gtk/MainWindow.vala:435 src/Gtk/SettingsDialog.vala:52 msgid "Settings" msgstr "Ayarlar" -#: src/Gtk/MainWindow.vala:459 +#: src/Gtk/MainWindow.vala:456 msgid "About" msgstr "Hakkında" -#: src/Gtk/MainWindow.vala:503 +#: src/Gtk/MainWindow.vala:500 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Ubuntu tabanlı dağıtımlar için çekirdek güncelleme aracı" -#: src/Gtk/MainWindow.vala:504 +#: src/Gtk/MainWindow.vala:501 msgid "Forked" msgstr "" -#: src/Gtk/MainWindow.vala:504 +#: src/Gtk/MainWindow.vala:501 msgid "Original" msgstr "" -#: src/Gtk/MainWindow.vala:525 src/Gtk/MainWindow.vala:655 +#: src/Gtk/MainWindow.vala:522 src/Gtk/MainWindow.vala:652 #, fuzzy msgid "Internet connection is not active." msgstr "İnternet bağlantısı aktif değil" -#: src/Gtk/MainWindow.vala:544 +#: src/Gtk/MainWindow.vala:541 msgid "Refreshing..." msgstr "Yenileniyor..." -#: src/Gtk/MainWindow.vala:638 +#: src/Gtk/MainWindow.vala:635 #, fuzzy msgid "available" msgstr "Mevcut Paketler" -#: src/Gtk/MainWindow.vala:650 +#: src/Gtk/MainWindow.vala:647 #, fuzzy msgid "Already Installed" msgstr "Kurulu" @@ -526,61 +518,58 @@ msgstr "Hayır" msgid "Missing Icon" msgstr "Eksik Simge" -#: src/Utility/TeeJee.FileSystem.vala:70 src/Utility/TeeJee.FileSystem.vala:73 +#: src/Utility/TeeJee.FileSystem.vala:71 #, fuzzy msgid "File deleted" msgstr "Dosya kaydedildi" -#: src/Utility/TeeJee.FileSystem.vala:79 src/Utility/TeeJee.FileSystem.vala:273 +#: src/Utility/TeeJee.FileSystem.vala:76 src/Utility/TeeJee.FileSystem.vala:256 #, fuzzy msgid "Failed to delete file" msgstr "Dosya yazma başarısız" -#: src/Utility/TeeJee.FileSystem.vala:99 +#: src/Utility/TeeJee.FileSystem.vala:96 msgid "Failed to read file" msgstr "Dosya okuma başarısız" -#: src/Utility/TeeJee.FileSystem.vala:127 -#: src/Utility/TeeJee.FileSystem.vala:130 +#: src/Utility/TeeJee.FileSystem.vala:123 msgid "File saved" msgstr "Dosya kaydedildi" -#: src/Utility/TeeJee.FileSystem.vala:137 +#: src/Utility/TeeJee.FileSystem.vala:129 msgid "Failed to write file" msgstr "Dosya yazma başarısız" -#: src/Utility/TeeJee.FileSystem.vala:150 -#: src/Utility/TeeJee.FileSystem.vala:153 +#: src/Utility/TeeJee.FileSystem.vala:141 msgid "File copied" msgstr "Dosya kopyalandı" -#: src/Utility/TeeJee.FileSystem.vala:161 +#: src/Utility/TeeJee.FileSystem.vala:148 msgid "Failed to copy file" msgstr "Dosya kopyalama başarısız" -#: src/Utility/TeeJee.FileSystem.vala:171 +#: src/Utility/TeeJee.FileSystem.vala:158 msgid "File not found" msgstr "Dosya bulunamadı" -#: src/Utility/TeeJee.FileSystem.vala:185 -#: src/Utility/TeeJee.FileSystem.vala:188 +#: src/Utility/TeeJee.FileSystem.vala:171 msgid "File moved" msgstr "Dosya taşındı" -#: src/Utility/TeeJee.FileSystem.vala:193 +#: src/Utility/TeeJee.FileSystem.vala:176 msgid "Failed to move file" msgstr "Dosya taşıma başarısız" -#: src/Utility/TeeJee.FileSystem.vala:250 -#: src/Utility/TeeJee.FileSystem.vala:253 +#: src/Utility/TeeJee.FileSystem.vala:233 +#: src/Utility/TeeJee.FileSystem.vala:236 msgid "Created directory" msgstr "Dizin oluşturuldu" -#: src/Utility/TeeJee.FileSystem.vala:260 +#: src/Utility/TeeJee.FileSystem.vala:243 msgid "Failed to create dir" msgstr "Dizin oluşturma başarısız" -#: src/Utility/TeeJee.FileSystem.vala:272 +#: src/Utility/TeeJee.FileSystem.vala:255 msgid "Deleted" msgstr "" diff --git a/po/uk.po b/po/uk.po index ee643627..dae9ed4b 100644 --- a/po/uk.po +++ b/po/uk.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-18 07:56-0400\n" +"POT-Creation-Date: 2020-05-18 20:12-0400\n" "PO-Revision-Date: 2019-07-25 11:00+0300\n" "Last-Translator: Serhii Golovko \n" "Language-Team: Ukranian \n" @@ -21,105 +21,97 @@ msgstr "Дистрибутив" msgid "Architecture" msgstr "Системна архитектура" -#: src/Common/LinuxKernel.vala:231 -msgid "Index is stale" -msgstr "Індекс є застарілим" - -#: src/Common/LinuxKernel.vala:234 -msgid "Index is fresh" -msgstr "Індекс є актуальним" - -#: src/Common/LinuxKernel.vala:339 +#: src/Common/LinuxKernel.vala:305 msgid "Fetching index..." msgstr "Отримання індекса ..." -#: src/Common/LinuxKernel.vala:380 +#: src/Common/LinuxKernel.vala:341 msgid "Fetching index from kernel.ubuntu.com..." msgstr "Отримання індекса з kernel.ubuntu.com..." -#: src/Common/LinuxKernel.vala:653 +#: src/Common/LinuxKernel.vala:598 msgid "Could not find running kernel in list!" msgstr "Не вдалося знайти запущене ядро у списку!" -#: src/Common/LinuxKernel.vala:659 +#: src/Common/LinuxKernel.vala:604 msgid "Could not find any kernels to remove" msgstr "Не вдалося знайти жодне ядро для вилучення" -#: src/Common/LinuxKernel.vala:668 +#: src/Common/LinuxKernel.vala:613 msgid "The following kernels will be removed:" msgstr "Наступні ядра будуть видалені:" -#: src/Common/LinuxKernel.vala:675 +#: src/Common/LinuxKernel.vala:620 msgid "Continue ?" msgstr "Продовжувати ?" -#: src/Common/LinuxKernel.vala:703 src/Console/AppConsole.vala:302 +#: src/Common/LinuxKernel.vala:644 src/Console/AppConsole.vala:302 msgid "Latest update" msgstr "Останнє оновлення" -#: src/Common/LinuxKernel.vala:714 src/Console/AppConsole.vala:309 +#: src/Common/LinuxKernel.vala:655 src/Console/AppConsole.vala:309 msgid "Latest point update" msgstr "Остання точка оновлення" -#: src/Common/LinuxKernel.vala:722 src/Console/AppConsole.vala:314 +#: src/Common/LinuxKernel.vala:663 src/Console/AppConsole.vala:314 #: src/Console/AppConsole.vala:364 msgid "No updates found" msgstr "Оновлень не знайдено" -#: src/Common/LinuxKernel.vala:732 +#: src/Common/LinuxKernel.vala:673 #, fuzzy, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Встановити Linux v% s? (так/ні): " -#: src/Common/LinuxKernel.vala:998 +#: src/Common/LinuxKernel.vala:935 msgid "Packages Available" msgstr "Доступні пакети" -#: src/Common/LinuxKernel.vala:1006 +#: src/Common/LinuxKernel.vala:943 msgid "Packages Installed" msgstr "Встановлені пакети" -#: src/Common/LinuxKernel.vala:1090 +#: src/Common/LinuxKernel.vala:1026 msgid "Available Kernels" msgstr "Доступні ядра" -#: src/Common/LinuxKernel.vala:1107 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1033 src/Gtk/MainWindow.vala:186 msgid "Installed" msgstr "Встановлено" -#: src/Common/LinuxKernel.vala:1107 src/Gtk/MainWindow.vala:186 -#: src/Gtk/MainWindow.vala:628 src/Gtk/MainWindow.vala:642 +#: src/Common/LinuxKernel.vala:1033 src/Gtk/MainWindow.vala:186 +#: src/Gtk/MainWindow.vala:625 src/Gtk/MainWindow.vala:639 msgid "Running" msgstr "Використовується" -#: src/Common/LinuxKernel.vala:1141 +#: src/Common/LinuxKernel.vala:1070 msgid "Downloading" msgstr "Завантаження" -#: src/Common/LinuxKernel.vala:1160 +#: src/Common/LinuxKernel.vala:1089 #: src/Utility/Gtk/CustomMessageDialog.vala:148 #: src/Utility/Gtk/CustomMessageDialog.vala:152 msgid "OK" msgstr "Добре" -#: src/Common/LinuxKernel.vala:1165 +#: src/Common/LinuxKernel.vala:1094 msgid "ERROR" msgstr "ПОМИЛКА" -#: src/Common/LinuxKernel.vala:1179 src/Gtk/MainWindow.vala:650 +#: src/Common/LinuxKernel.vala:1108 src/Gtk/MainWindow.vala:647 msgid "This kernel is already installed." msgstr "Це ядро вже встановлено." -#: src/Common/LinuxKernel.vala:1205 +#: src/Common/LinuxKernel.vala:1134 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "Установка завершена. Для використання нового ядра потрібна перезавантаження." -#: src/Common/LinuxKernel.vala:1208 +#: src/Common/LinuxKernel.vala:1137 msgid "Installation completed with errors" msgstr "Установка завершена з помилками" -#: src/Common/LinuxKernel.vala:1224 +#: src/Common/LinuxKernel.vala:1152 msgid "" "Selected kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -127,19 +119,19 @@ msgstr "" "Це ядро зараз працює і не може бути видалено. \n" "Встановіть інше ядро, перш ніж видаляти його." -#: src/Common/LinuxKernel.vala:1229 +#: src/Common/LinuxKernel.vala:1157 msgid "Preparing to remove selected kernels" msgstr "Підготовка до видалення вибраних ядер" -#: src/Common/LinuxKernel.vala:1260 src/Common/LinuxKernel.vala:1307 +#: src/Common/LinuxKernel.vala:1188 src/Common/LinuxKernel.vala:1235 msgid "Un-install completed" msgstr "Видалення завершено" -#: src/Common/LinuxKernel.vala:1263 src/Common/LinuxKernel.vala:1310 +#: src/Common/LinuxKernel.vala:1191 src/Common/LinuxKernel.vala:1238 msgid "Un-install completed with errors" msgstr "Видалення завершено з помилками" -#: src/Common/LinuxKernel.vala:1276 +#: src/Common/LinuxKernel.vala:1204 msgid "" "This kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -147,11 +139,11 @@ msgstr "" "Це ядро наразі працює і його неможливо видалити.\n" " Встановіть інше ядро перед тим, як видалити его." -#: src/Common/Main.vala:238 +#: src/Common/Main.vala:236 msgid "Called from" msgstr "Викликано з" -#: src/Common/Main.vala:250 +#: src/Common/Main.vala:248 #, fuzzy msgid "Notifications are disabled" msgstr "Повідомлення вимкнено" @@ -202,7 +194,7 @@ msgstr "Встановіть конкретне основне ядро" msgid "Uninstall specified kernels" msgstr "Видаліть конкретні ядра" -#: src/Console/AppConsole.vala:74 src/Gtk/MainWindow.vala:395 +#: src/Console/AppConsole.vala:74 src/Gtk/MainWindow.vala:392 msgid "Remove installed kernels older than running kernel" msgstr "Видаліть встановлені ядра, старші за запущене ядро" @@ -292,7 +284,7 @@ msgid "Kernel %s Available" msgstr "Доступні пакети" #: src/Console/AppConsole.vala:339 src/Console/AppConsole.vala:355 -#: src/Gtk/MainWindow.vala:333 +#: src/Gtk/MainWindow.vala:330 msgid "Install" msgstr "Встановити" @@ -316,93 +308,93 @@ msgstr "Ядро" msgid "Status" msgstr "Стан" -#: src/Gtk/MainWindow.vala:317 +#: src/Gtk/MainWindow.vala:314 msgid "Refresh" msgstr "Оновити" -#: src/Gtk/MainWindow.vala:324 src/Utility/TeeJee.System.vala:42 +#: src/Gtk/MainWindow.vala:321 src/Utility/TeeJee.System.vala:42 msgid "Internet connection is not active" msgstr "Інтернет з'єднання не активно" -#: src/Gtk/MainWindow.vala:324 src/Gtk/MainWindow.vala:525 -#: src/Gtk/MainWindow.vala:655 +#: src/Gtk/MainWindow.vala:321 src/Gtk/MainWindow.vala:522 +#: src/Gtk/MainWindow.vala:652 msgid "No Internet" msgstr "Інтернету немає" -#: src/Gtk/MainWindow.vala:342 +#: src/Gtk/MainWindow.vala:339 msgid "Multiple Kernels Selected" msgstr "Вибрано кілька ядер" -#: src/Gtk/MainWindow.vala:342 +#: src/Gtk/MainWindow.vala:339 msgid "Select a single kernel to install" msgstr "Виберіть одне ядро для встановлення" -#: src/Gtk/MainWindow.vala:345 src/Gtk/MainWindow.vala:356 +#: src/Gtk/MainWindow.vala:342 src/Gtk/MainWindow.vala:353 msgid "Not Selected" msgstr "Невибрано" -#: src/Gtk/MainWindow.vala:345 +#: src/Gtk/MainWindow.vala:342 msgid "Select the kernel to install" msgstr "Виберіть ядро для встановлення" -#: src/Gtk/MainWindow.vala:350 +#: src/Gtk/MainWindow.vala:347 msgid "Remove" msgstr "Видалити" -#: src/Gtk/MainWindow.vala:356 +#: src/Gtk/MainWindow.vala:353 msgid "Select the kernels to remove" msgstr "Виберіть ядра для видалення" -#: src/Gtk/MainWindow.vala:386 src/Gtk/MainWindow.vala:420 -#: src/Gtk/MainWindow.vala:687 +#: src/Gtk/MainWindow.vala:383 src/Gtk/MainWindow.vala:417 +#: src/Gtk/MainWindow.vala:684 msgid "Close window to exit..." msgstr "Закрийте вікно, щоб вийти..." -#: src/Gtk/MainWindow.vala:394 +#: src/Gtk/MainWindow.vala:391 msgid "Purge" msgstr "Чистити" -#: src/Gtk/MainWindow.vala:427 +#: src/Gtk/MainWindow.vala:424 msgid "Changes" msgstr "Зміни" -#: src/Gtk/MainWindow.vala:438 src/Gtk/SettingsDialog.vala:52 +#: src/Gtk/MainWindow.vala:435 src/Gtk/SettingsDialog.vala:52 msgid "Settings" msgstr "Налаштування" -#: src/Gtk/MainWindow.vala:459 +#: src/Gtk/MainWindow.vala:456 msgid "About" msgstr "Про программу" -#: src/Gtk/MainWindow.vala:503 +#: src/Gtk/MainWindow.vala:500 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Програма оновлення ядра для дистрибутивів на базі Ubuntu" -#: src/Gtk/MainWindow.vala:504 +#: src/Gtk/MainWindow.vala:501 #, fuzzy msgid "Forked" msgstr "Роздвоєний" -#: src/Gtk/MainWindow.vala:504 +#: src/Gtk/MainWindow.vala:501 #, fuzzy msgid "Original" msgstr "Оригінальний" -#: src/Gtk/MainWindow.vala:525 src/Gtk/MainWindow.vala:655 +#: src/Gtk/MainWindow.vala:522 src/Gtk/MainWindow.vala:652 #, fuzzy msgid "Internet connection is not active." msgstr "Інтернет з'єднання не активно" -#: src/Gtk/MainWindow.vala:544 +#: src/Gtk/MainWindow.vala:541 msgid "Refreshing..." msgstr "Оновлення..." -#: src/Gtk/MainWindow.vala:638 +#: src/Gtk/MainWindow.vala:635 #, fuzzy msgid "available" msgstr "Доступні пакети" -#: src/Gtk/MainWindow.vala:650 +#: src/Gtk/MainWindow.vala:647 #, fuzzy msgid "Already Installed" msgstr "Встановлено" @@ -530,61 +522,58 @@ msgstr "Ні" msgid "Missing Icon" msgstr "Нема значка" -#: src/Utility/TeeJee.FileSystem.vala:70 src/Utility/TeeJee.FileSystem.vala:73 +#: src/Utility/TeeJee.FileSystem.vala:71 #, fuzzy msgid "File deleted" msgstr "Файл збережено" -#: src/Utility/TeeJee.FileSystem.vala:79 src/Utility/TeeJee.FileSystem.vala:273 +#: src/Utility/TeeJee.FileSystem.vala:76 src/Utility/TeeJee.FileSystem.vala:256 #, fuzzy msgid "Failed to delete file" msgstr "Невдалося записати файл" -#: src/Utility/TeeJee.FileSystem.vala:99 +#: src/Utility/TeeJee.FileSystem.vala:96 msgid "Failed to read file" msgstr "Невдалося прочитати файл" -#: src/Utility/TeeJee.FileSystem.vala:127 -#: src/Utility/TeeJee.FileSystem.vala:130 +#: src/Utility/TeeJee.FileSystem.vala:123 msgid "File saved" msgstr "Файл збережено" -#: src/Utility/TeeJee.FileSystem.vala:137 +#: src/Utility/TeeJee.FileSystem.vala:129 msgid "Failed to write file" msgstr "Невдалося записати файл" -#: src/Utility/TeeJee.FileSystem.vala:150 -#: src/Utility/TeeJee.FileSystem.vala:153 +#: src/Utility/TeeJee.FileSystem.vala:141 msgid "File copied" msgstr "Невдалося скопіювати файл" -#: src/Utility/TeeJee.FileSystem.vala:161 +#: src/Utility/TeeJee.FileSystem.vala:148 msgid "Failed to copy file" msgstr "Невдалося скопіювати файл" -#: src/Utility/TeeJee.FileSystem.vala:171 +#: src/Utility/TeeJee.FileSystem.vala:158 msgid "File not found" msgstr "Файл не знайдено" -#: src/Utility/TeeJee.FileSystem.vala:185 -#: src/Utility/TeeJee.FileSystem.vala:188 +#: src/Utility/TeeJee.FileSystem.vala:171 msgid "File moved" msgstr "Файл переміщено" -#: src/Utility/TeeJee.FileSystem.vala:193 +#: src/Utility/TeeJee.FileSystem.vala:176 msgid "Failed to move file" msgstr "Невдалося перемістити файл" -#: src/Utility/TeeJee.FileSystem.vala:250 -#: src/Utility/TeeJee.FileSystem.vala:253 +#: src/Utility/TeeJee.FileSystem.vala:233 +#: src/Utility/TeeJee.FileSystem.vala:236 msgid "Created directory" msgstr "Створений каталог" -#: src/Utility/TeeJee.FileSystem.vala:260 +#: src/Utility/TeeJee.FileSystem.vala:243 msgid "Failed to create dir" msgstr "Невдалося створити теку" -#: src/Utility/TeeJee.FileSystem.vala:272 +#: src/Utility/TeeJee.FileSystem.vala:255 msgid "Deleted" msgstr "" diff --git a/src/Common/DownloadManager.vala b/src/Common/DownloadManager.vala index b4d11acf..a9c14761 100644 --- a/src/Common/DownloadManager.vala +++ b/src/Common/DownloadManager.vala @@ -218,7 +218,6 @@ public class DownloadTask : AsyncTask{ continue; } - //log_msg("status=%s".printf(item.status)); if (item.status == "OK"){ file_move(item.file_path_partial, item.file_path); } @@ -230,7 +229,6 @@ public class DownloadTask : AsyncTask{ } } - public class DownloadItem : GLib.Object { /* File is downloaded to 'partial_dir' and moved to 'download_dir' diff --git a/src/Common/LinuxKernel.vala b/src/Common/LinuxKernel.vala index ed17411b..6173728f 100644 --- a/src/Common/LinuxKernel.vala +++ b/src/Common/LinuxKernel.vala @@ -10,7 +10,6 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { public string kname = ""; public string kver = ""; public string version_main = ""; - public string version_extra = ""; public string version_package = ""; public string type = ""; public string page_uri = ""; @@ -18,6 +17,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { public int version_maj = -1; public int version_min = -1; public int version_point = -1; + public int version_rc = -1; public Gee.HashMap deb_list = new Gee.HashMap(); public Gee.HashMap apt_pkg_list = new Gee.HashMap(); @@ -51,8 +51,9 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { public static LinuxKernel kernel_active; public static LinuxKernel kernel_update_major; public static LinuxKernel kernel_update_minor; - public static LinuxKernel kernel_latest_stable; - + public static LinuxKernel kernel_latest_available; + public static LinuxKernel kernel_latest_installed; + public static Gee.ArrayList kernel_list = new Gee.ArrayList(); public static Regex rex_header = null; @@ -67,7 +68,6 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { public static int64 progress_count; public static bool cancelled; public static bool task_is_running; - public static bool _temp_refresh; public static int highest_maj; // class initialize @@ -77,7 +77,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { LINUX_DISTRO = check_distribution(); NATIVE_ARCH = check_package_architecture(); - RUNNING_KERNEL = check_running_kernel(); + RUNNING_KERNEL = check_running_kernel().replace("-generic",""); initialize_regex(); } @@ -163,35 +163,28 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { } // constructor - public LinuxKernel(string _name, bool _is_mainline){ + // _name, kname includes the leading "v" and everything after the version number + // same as what's in the urls on the kernel ppa index.html - if (_name.has_suffix("/")){ - this.kname = _name[0: _name.length - 1]; - } - else{ - this.kname = _name; - } - - // parse version string --------- + // strip off the trailing "/" + if (_name.has_suffix("/")) this.kname = _name[0: _name.length - 1]; + else this.kname = _name; + // extract version numbers from the name kver = this.kname; - - split_version_string(kver, out version_main, out version_extra); + split_version_string(kver, out version_main); // set page URI ----------- - page_uri = "%s%s".printf(URI_KERNEL_UBUNTU_MAINLINE, _name); + // override is_mainline from split_version_string() is_mainline = _is_mainline; } public LinuxKernel.from_version(string _version){ - kver = _version; - - split_version_string(kver, out version_main, out version_extra); - + split_version_string(kver, out version_main); page_uri = ""; } @@ -223,133 +216,106 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { log_debug("query: hide_unstable: %s".printf(hide_unstable.to_string())); //DownloadManager.reset_counter(); - + + // download main index.html if stale bool refresh = false; var one_hour_before = (new DateTime.now_local()).add_hours(-1); - if (last_refreshed_date.compare(one_hour_before) < 0){ - refresh = true; - log_debug(_("Index is stale")); - } - else{ - log_debug(_("Index is fresh")); - } - + if (last_refreshed_date.compare(one_hour_before) < 0) refresh = true; bool is_connected = check_internet_connectivity(); + if (refresh) download_index(); - if (refresh){ - download_index(); - } - + // read main index.html load_index(); // TODO: Implement locking for multiple download threads // find highest major highest_maj = 0; - foreach(var kern in kernel_list){ - - //log_debug("kern.version_maj = %d".printf(kern.version_maj)); - if (kern.version_maj > highest_maj){ - highest_maj = kern.version_maj; + foreach(var k in kernel_list){ + //log_debug("k.version_maj = %d".printf(k.version_maj)); + if (k.version_maj > highest_maj){ + highest_maj = k.version_maj; log_debug("highest_maj = %d".printf(highest_maj)); } } + // download per-kernel index.html and CHANGES + + // init the progress display status_line = ""; progress_total = 0; progress_count = 0; - foreach(var kern in kernel_list){ - if (kern.version_maj < highest_maj-show_prev_majors){ - continue; - } - - if (hide_unstable && kern.is_unstable){ - continue; - } - - if (kern.is_valid && !kern.cached_page_exists){ - progress_total += 2; + // determine the size of the job for the percent-done display + foreach(var k in kernel_list){ + if(!k.is_installed){ + if (k.version_maj < highest_maj-show_prev_majors) continue; + if (hide_unstable && k.is_unstable) continue; } + if (k.is_valid && !k.cached_page_exists) progress_total += 2; } - - var downloads = new Gee.ArrayList(); + // list of kernels - 1 LinuxKernel object per kernel to update var kernels_to_update = new Gee.ArrayList(); - - foreach(var kern in kernel_list){ - if (cancelled){ - break; - } + // list of files - 1 DownloadItem object per individual file to download + var downloads = new Gee.ArrayList(); - if (kern.cached_page_exists){ - //log_debug("cached page exists: %s".printf(kern.version_main)); - kern.load_cached_page(); - continue; - } + // add files to download list, and add kernels to kernel list + foreach(var k in kernel_list){ + if (cancelled) break; - if (!kern.is_valid){ - //log_debug("invalid: %s".printf(kern.version_main)); + // skip some kernels for various reasons + if (k.cached_page_exists){ + // load the index.html files we already had in cache + k.load_cached_page(); continue; } + if (!k.is_valid) continue; - if (kern.version_maj < highest_maj-show_prev_majors){ - //log_debug("major version: %s".printf(kern.version_maj)); - //log_debug("older than: %s".printf(highest_maj-show_prev_majors)); - continue; + if (!k.is_installed) { + if (k.version_maj < highest_maj-show_prev_majors) continue; + if (hide_unstable && k.is_unstable) continue; } - if (hide_unstable && kern.is_unstable){ - //log_debug("not stable: %s".printf(kern.version_main)); - continue; - } - - if (!kern.cached_page_exists){ + // add index.html to download list + var item = new DownloadItem(k.cached_page_uri, file_parent(k.cached_page), file_basename(k.cached_page)); + downloads.add(item); - var item = new DownloadItem( - kern.cached_page_uri, - file_parent(kern.cached_page), - file_basename(kern.cached_page)); - - downloads.add(item); - - item = new DownloadItem( - kern.changes_file_uri, - file_parent(kern.changes_file), - file_basename(kern.changes_file)); - - downloads.add(item); + // add CHANGES to download list + item = new DownloadItem(k.changes_file_uri, file_parent(k.changes_file), file_basename(k.changes_file)); + downloads.add(item); - kernels_to_update.add(kern); - } + // add kernel to kernel list + kernels_to_update.add(k); } + // process the download list if ((downloads.size > 0) && is_connected){ - var mgr = new DownloadTask(); - foreach(var item in downloads){ - mgr.add_to_queue(item); - } + // add download list to queue + foreach(var item in downloads) mgr.add_to_queue(item); mgr.status_in_kb = true; mgr.prg_count_total = progress_total; + + // start downloading mgr.execute(); print_progress_bar_start(_("Fetching index...")); + // while downloading while (mgr.is_running()){ progress_count = mgr.prg_count; print_progress_bar((progress_count * 1.0) / progress_total); sleep(300); } + // done downloading print_progress_bar_finish(); - foreach(var kern - in kernels_to_update){ - kern.load_cached_page(); - } + // load the index.html files we just added to cache + foreach(var k in kernels_to_update) k.load_cached_page(); } check_installed(); @@ -359,17 +325,12 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { task_is_running = false; } + // download the main index.html listing all mainline kernels private static bool download_index(){ - check_if_initialized(); - - // fetch index.html -------------------------------------- dir_create(file_parent(index_page)); - - if (file_exists(index_page)){ - file_delete(index_page); - } + file_delete(index_page); var item = new DownloadItem(URI_KERNEL_UBUNTU_MAINLINE, CACHE_DIR, "index.html"); var mgr = new DownloadTask(); @@ -381,12 +342,8 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { log_msg(msg); status_line = msg.strip(); - while (mgr.is_running()){ - sleep(500); - } + while (mgr.is_running()) sleep(500); - //log_debug(index_page); - if (file_exists(index_page)){ log_msg("OK"); return true; @@ -397,32 +354,29 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { } } + // read the main index.html listing all kernels + // https://kernel.ubuntu.com/~kernel-ppa/mainline/ private static void load_index(){ + if (!file_exists(index_page)) return; var list = new Gee.ArrayList(); - - if (!file_exists(index_page)){ - return; - } - string txt = file_read(index_page); - - // parse index.html -------------------------- - // https://kernel.ubuntu.com/~kernel-ppa/mainline/v5.6.11/ + try{ - //v3.0.16-oneiric/ + // v3.0.16-oneiric/ var rex = new Regex("""([a-zA-Z0-9\-._]+)[\/]*<\/a>"""); MatchInfo match; + // for each line in the file... foreach(string line in txt.split("\n")){ + // find only the lines with a link if (rex.match(line, 0, out match)){ - if (!match.fetch(2).has_prefix("v")){ - continue; - } - - var kern = new LinuxKernel(match.fetch(1), true); - list.add(kern); + // ignore the links that don't start with "v" + if (!match.fetch(2).has_prefix("v")) continue; + // + var k = new LinuxKernel(match.fetch(1), true); + list.add(k); } } @@ -443,10 +397,10 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { log_msg(string.nfill(70, '-')); - foreach(var kern in kernel_list){ - kern.is_installed = false; - kern.is_running = false; - } +// foreach(var k in kernel_list){ +// k.is_installed = false; +// k.is_running = false; +// } pkg_list_installed = Package.query_installed_packages(); @@ -460,32 +414,28 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { log_msg("Found installed" + ": %s".printf(pkg.version_installed)); - string kern_name = "%s".printf(pkg.version_installed); - var kern = new LinuxKernel(kern_name, false); - kern.is_installed = true; - kern.set_apt_pkg_list(); + string pkern_name = "%s".printf(pkg.version_installed); + var pkern = new LinuxKernel(pkern_name, false); + pkern.is_installed = true; + pkern.set_apt_pkg_list(); bool found = false; - foreach(var kernel in kernel_list){ - if (kernel.version_main == kern.version_main){ + foreach(var k in kernel_list){ + if (k.version_main == pkern.version_main){ found = true; - kernel.apt_pkg_list = kern.apt_pkg_list; + k.apt_pkg_list = pkern.apt_pkg_list; break; } } - if (!found){ - kernel_list.add(kern); - } + if (!found) kernel_list.add(pkern); } } } foreach (string pkg_version in pkg_versions){ - foreach(var kern in kernel_list){ - if (kern.version_package == pkg_version){ - kern.is_installed = true; - } + foreach(var k in kernel_list){ + if (k.version_package == pkg_version) k.is_installed = true; } } @@ -497,48 +447,37 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { // Running: 4.4.0-28-generic // Package: 4.4.0-28.47 - string ver_running = RUNNING_KERNEL.replace("-generic",""); + //string ver_running = RUNNING_KERNEL.replace("-generic",""); + string ver_running = RUNNING_KERNEL; var kern_running = new LinuxKernel.from_version(ver_running); kernel_active = null; - foreach(var kern in kernel_list){ - if (!kern.is_valid){ - continue; - } - - // check mainline kernels only - if (!kern.is_mainline){ - continue; - } - - // compare version_package strings for mainline kernels - if (kern.version_package.length > 0) { - string ver_pkg_short = kern.version_package[0 : kern.version_package.last_index_of(".")]; + // scan mainline kernels + foreach(var k in kernel_list){ + if (!k.is_valid) continue; + if (!k.is_mainline) continue; + if (k.version_package.length > 0) { + string ver_pkg_short = k.version_package[0 : k.version_package.last_index_of(".")]; if (ver_pkg_short == ver_running){ - kern.is_running = true; - kern.is_installed = true; - kernel_active = kern; + k.is_running = true; + k.is_installed = true; + kernel_active = k; break; } } } + // scan ubuntu kernels if (kernel_active == null){ - foreach(var kern in kernel_list){ - if (!kern.is_valid){ - continue; - } - - // check ubuntu kernels only - if (kern.is_mainline){ - continue; - } - - if (kern_running.version_main == kern.version_main){ - kern.is_running = true; - kern.is_installed = true; - kernel_active = kern; + foreach(var k in kernel_list){ + if (!k.is_valid) continue; + if (k.is_mainline) continue; + + if (kern_running.version_main == k.version_main){ + k.is_running = true; + k.is_installed = true; + kernel_active = k; break; } } @@ -549,73 +488,87 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { }); log_msg(string.nfill(70, '-')); + + // find the highest installed version ---------------------- + kernel_latest_installed = null; + foreach(var k in kernel_list){ + if (k.is_installed) { + kernel_latest_installed = k; + break; + } + } + log_msg(string.nfill(70, '-')); } + // scan kernel_list for versions newer than latest installed public static void check_updates(){ - log_debug("check_updates()"); - kernel_update_major = null; kernel_update_minor = null; - kernel_latest_stable = null; - - var kern_running = new LinuxKernel.from_version(LinuxKernel.RUNNING_KERNEL); - foreach(var kern in LinuxKernel.kernel_list){ - // skip invalid - if (!kern.is_valid){ - continue; - } - - // skip unstable - if (hide_unstable && kern.is_unstable){ - continue; - } + kernel_latest_available = null; - if (kernel_latest_stable == null){ - kernel_latest_stable = kern; - log_debug("latest stable kernel -> %s".printf(kern.version_main)); - } - - // skip installed - if (kern.is_installed){ - continue; - } - - //log_msg("check: %s".printf(kern.version_main)); + foreach(var k in LinuxKernel.kernel_list){ + if (!k.is_valid) continue; + if ((hide_unstable && k.is_unstable) && (!k.is_installed)) continue; + if (kernel_latest_available == null) kernel_latest_available = k; + if (k.is_installed) continue; bool major_available = false; bool minor_available = false; - - if (kern.version_maj > kern_running.version_maj){ + //string msg = "\n|tvm:"+k.version_main+"|tvr:%d".printf(k.version_rc)+"|"; + + //if(kernel_latest_installed!=null) msg += "i:"+kernel_latest_installed.version_main+"|"; + + //msg += "\n|" + //+ "i.M:%d|".printf(kernel_latest_installed.version_maj) + //+ "i.m:%d|".printf(kernel_latest_installed.version_min) + //+ "i.p:%d|".printf(kernel_latest_installed.version_point) + //+ "i.r:%d|".printf(kernel_latest_installed.version_rc) + //+ "\n|" + //+ "k.M:%d|".printf(k.version_maj) + //+ "k.m:%d|".printf(k.version_min) + //+ "k.p:%d|".printf(k.version_point) + //+ "k.r:%d|".printf(k.version_rc); + if (k.version_maj > kernel_latest_installed.version_maj) { + //msg += "u:M(M)|"; major_available = true; } - else if (kern.version_maj == kern_running.version_maj){ - if (kern.version_min > kern_running.version_min){ + else if (k.version_maj == kernel_latest_installed.version_maj) { + if (k.version_min > kernel_latest_installed.version_min) { + //msg += "u:M(m)|"; major_available = true; } - else if (kern.version_min == kern_running.version_min){ - if (kern.version_point > kern_running.version_point){ + else if (k.version_min == kernel_latest_installed.version_min) { + if (k.version_point > kernel_latest_installed.version_point) { + //msg += "u:m(p)|"; minor_available = true; } + else if (k.version_point == kernel_latest_installed.version_point) { + if (k.version_rc > kernel_latest_installed.version_rc) { + //msg += "u:m(r)|"; + minor_available = true; + } + } } } - - if (major_available && (kernel_update_major == null)){ - kernel_update_major = kern; - log_debug("major update -> %s".printf(kern.version_main)); - } - - if (minor_available && (kernel_update_minor == null)){ - kernel_update_minor = kern; - log_debug("minor update -> %s".printf(kern.version_main)); + + //msg += "\n|"; + + if (major_available && (kernel_update_major == null)) { + kernel_update_major = k; + //msg += "kuM:"+k.version_main+"|"; } - if ((kernel_update_major != null) - && (kernel_update_minor != null) - && (kernel_latest_stable != null)){ - - break; + if (minor_available && (kernel_update_minor == null)) { + kernel_update_minor = k; + //msg += "kum:"+k.version_main+"|"; } + + //if(kernel_latest_available!=null) msg += "a:"+kernel_latest_available.version_main+"|"; + + //log_debug(msg); + // stop if we have everything possible + if ((kernel_update_major != null) && (kernel_update_minor != null) && (kernel_latest_available != null)) break; } } @@ -625,28 +578,20 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { var list = new Gee.ArrayList(); - var kern_running = new LinuxKernel.from_version(LinuxKernel.RUNNING_KERNEL); + string ver_running = RUNNING_KERNEL; + var kern_running = new LinuxKernel.from_version(ver_running); bool found_running_kernel = false; - foreach(var kern in LinuxKernel.kernel_list){ - - // skip invalid - if (!kern.is_valid){ continue; } - - // skip not installed - if (!kern.is_installed){ continue; } - - // skip running kernel - if (kern.version_main == kern_running.version_main){ + foreach(var k in LinuxKernel.kernel_list){ + if (!k.is_valid) continue; + if (!k.is_installed) continue; + if (k.version_main == kern_running.version_main){ found_running_kernel = true; continue; } - - // skip newer kernels - if (kern.compare_to(kern_running) > 0){ continue; } - - list.add(kern); + if (k.compare_to(kern_running) > 0) continue; // FIXME, compare against highest installed, not current running + list.add(k); } if (!found_running_kernel){ @@ -683,11 +628,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { } // remove -------------------------------- - - foreach(var kern in list){ - - kern.remove(); - } + foreach(var kern in list) kern.remove(); } public static void install_latest(bool point_update, bool confirm){ @@ -743,44 +684,33 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { // helpers - public void split_version_string(string _version_string, out string ver_main, out string ver_extra){ - + public void split_version_string(string _version_string, out string ver_main){ ver_main = ""; - ver_extra = ""; version_maj = 0; version_min = 0; version_point = 0; + version_rc = -1; - if (_version_string.length == 0){ return; } + if (_version_string.length == 0) return; var version_string = _version_string.split("~")[0]; - var match = regex_match("""[v]*([0-9]+|r+c+)""", version_string); - int index = -1; + string version_extra = ""; + bool saw_rc = false; while (match != null){ - string? num = match.fetch(1); if (num != null){ - index++; - if (num == "rc"){ - ver_main += ".0-rc"; - } - else { - - if (num.length <= 3){ - - if ((ver_main.length > 0) && !ver_main.has_suffix("rc")){ - ver_main += "."; - } - - ver_main += num; - } - + if (saw_rc) { + saw_rc = false; + version_rc = int.parse(num); + } else if (num == "rc") { + saw_rc = true; + } else { switch(index){ case 0: version_maj = int.parse(num); @@ -791,14 +721,20 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { case 2: version_point = int.parse(num); break; + case 3: + if ((version_rc<0) && (num.length<3)) version_extra += "."+num; + break; + case 4: + if ((version_rc<0) && (num.length<3)) version_extra += "."+num; + break; } - - if (num.length >= 12){ - is_mainline = true; - } + if (num.length >= 12) is_mainline = true; } } + if (version_rc>-1) version_extra = "-rc%d".printf(version_rc); + ver_main = "%d.%d.%d%s".printf(version_maj,version_min,version_point,version_extra); + try{ if (!match.next()){ break; @@ -809,7 +745,6 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { } } - //log_debug("split: %s, version_main: %s, maj/min/point: %d,%d,%d".printf(version_string, ver_main, version_maj, version_min, version_point)); } public int compare_to(LinuxKernel b){ @@ -837,7 +772,9 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { return (x - y); } else if ((x == 0) && (y == 0)){ + // this one place where -rc# get compared // both are strings + //log_debug("strcmp("+arr_a[i]+","+arr_b[i]+")"); return strcmp(arr_a[i], arr_b[i]); } else{ @@ -1084,46 +1021,38 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { // actions public static void print_list(){ - log_msg(""); log_draw_line(); log_msg(_("Available Kernels")); log_draw_line(); - foreach(var kern in kernel_list){ - if (!kern.is_valid){ - continue; - } - if (hide_unstable && kern.is_unstable){ - continue; - } + foreach(var k in kernel_list){ + if (!k.is_valid) continue; - if (kern.version_maj < highest_maj-show_prev_majors){ - continue; + // check running/installed state before checking for hidden + var desc = k.is_running ? _("Running") : (k.is_installed ? _("Installed") : ""); + + // hide hidden, but don't hide any installed + if (!k.is_installed) { + if (hide_unstable && k.is_unstable) continue; + if (k.version_maj < highest_maj-show_prev_majors) continue; } - - var extra = kern.version_extra; - extra = extra.has_prefix("-") ? extra[1:extra.length] : extra; - var desc = kern.is_running ? _("Running") : (kern.is_installed ? _("Installed") : ""); - + // kern.kname "v5.6.11" -> cache download dir names, needed for --install, --remove // kern.kver or kern.version_main "5.6.11" -> most displays & references //log_msg("%-32s %-32s %s".printf(kern.kname, kern.version_main, desc)); - log_msg("%-32s %s".printf(kern.version_main, desc)); + log_msg("%-32s %s".printf(k.version_main, desc)); } } public static bool download_kernels(Gee.ArrayList selected_kernels){ - foreach(var kern in selected_kernels){ - kern.download_packages(); - } + foreach(var kern in selected_kernels) kern.download_packages(); return true; } // dep: aria2c public bool download_packages(){ bool ok = true; - //log_debug("download_packages(): CURRENT_USER="+CURRENT_USER); check_if_initialized(); @@ -1218,9 +1147,8 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { int status = -1; // check if running - - foreach(var kern in selected_kernels){ - if (kern.is_running){ + foreach(var k in selected_kernels){ + if (k.is_running){ log_error(_("Selected kernel is currently running and cannot be removed.\n Install another kernel before removing this one.")); return false; } diff --git a/src/Common/Main.vala b/src/Common/Main.vala index 87f37f52..483f5516 100644 --- a/src/Common/Main.vala +++ b/src/Common/Main.vala @@ -124,8 +124,6 @@ public class Main : GLib.Object{ LinuxKernel.CURRENT_USER_HOME = user_home; TMP_PREFIX = Environment.get_tmp_dir() + "/." + BRANDING_SHORTNAME; - - //log_debug("CACHE_DIR=%s".printf(LinuxKernel.CACHE_DIR)); } public void save_app_config(){ diff --git a/src/Gtk/MainWindow.vala b/src/Gtk/MainWindow.vala index 80811d57..91c72088 100644 --- a/src/Gtk/MainWindow.vala +++ b/src/Gtk/MainWindow.vala @@ -234,6 +234,7 @@ public class MainWindow : Gtk.Window{ } private void tv_refresh(){ + log_debug("tv_refresh()"); var model = new Gtk.ListStore(4, typeof(LinuxKernel), typeof(Gdk.Pixbuf), typeof(bool), typeof(string)); Gdk.Pixbuf pix_ubuntu = null; @@ -252,14 +253,10 @@ public class MainWindow : Gtk.Window{ TreeIter iter; bool odd_row = false; foreach(var kern in LinuxKernel.kernel_list) { - if (!kern.is_valid){ - continue; - } - if (LinuxKernel.hide_unstable && kern.is_unstable){ - continue; - } - if (kern.version_maj < LinuxKernel.highest_maj-LinuxKernel.show_prev_majors){ - continue; + if (!kern.is_valid) continue; + if (!kern.is_installed) { + if (LinuxKernel.hide_unstable && kern.is_unstable) continue; + if (kern.version_maj < LinuxKernel.highest_maj-LinuxKernel.show_prev_majors) continue; } odd_row = !odd_row; @@ -634,8 +631,8 @@ public class MainWindow : Gtk.Window{ lbl_info.label += " (ubuntu)"; } - if (LinuxKernel.kernel_latest_stable.compare_to(LinuxKernel.kernel_active) > 0){ - lbl_info.label += " ~ %s ".printf(LinuxKernel.kernel_latest_stable.version_main)+_("available"); + if (LinuxKernel.kernel_latest_available.compare_to(LinuxKernel.kernel_latest_installed) > 0){ + lbl_info.label += " ~ %s ".printf(LinuxKernel.kernel_latest_available.version_main)+_("available"); } } else{ diff --git a/src/Utility/TeeJee.FileSystem.vala b/src/Utility/TeeJee.FileSystem.vala index cc8211eb..e52bdd60 100644 --- a/src/Utility/TeeJee.FileSystem.vala +++ b/src/Utility/TeeJee.FileSystem.vala @@ -59,19 +59,16 @@ namespace TeeJee.FileSystem{ && !FileUtils.test(file_path, GLib.FileTest.IS_DIR)); } - public bool file_delete(string file_path, bool show_message = false){ + public bool file_delete(string file_path){ /* Check and delete file */ + if(!file_exists(file_path)) return true; + try { var file = File.new_for_path (file_path); if (file.query_exists ()) { file.delete (); - if (show_message){ - log_msg(_("File deleted") + ": %s".printf(file_path)); - } - else{ - log_debug(_("File deleted") + ": %s".printf(file_path)); - } + log_debug(_("File deleted") + ": %s".printf(file_path)); } return true; } catch (Error e) { @@ -102,7 +99,7 @@ namespace TeeJee.FileSystem{ return null; } - public bool file_write (string f, string contents, bool show_message = false){ + public bool file_write (string f, string contents){ /* Write text to file */ @@ -123,12 +120,7 @@ namespace TeeJee.FileSystem{ data_stream.put_string (contents); data_stream.close(); - if (show_message){ - log_msg(_("File saved") + ":" + f); - } - else{ - log_debug(_("File saved") + ":" + f); - } + log_debug(_("File saved") + ":" + f); return true; } @@ -139,19 +131,14 @@ namespace TeeJee.FileSystem{ } } - public bool file_copy (string src_file, string dest_file, bool show_message = false){ + public bool file_copy (string src_file, string dest_file){ try{ var file_src = File.new_for_path (src_file); if (file_src.query_exists()) { var file_dest = File.new_for_path (dest_file); file_src.copy(file_dest,FileCopyFlags.OVERWRITE,null,null); - if (show_message){ - log_msg(_("File copied") + ": '%s' → '%s'".printf(src_file, dest_file)); - } - else{ - log_debug(_("File copied") + ": '%s' → '%s'".printf(src_file, dest_file)); - } + log_debug(_("File copied") + ": '%s' → '%s'".printf(src_file, dest_file)); return true; } @@ -164,7 +151,7 @@ namespace TeeJee.FileSystem{ return false; } - public void file_move (string src_file, string dest_file, bool show_message = false){ + public void file_move (string src_file, string dest_file){ try{ var file_src = File.new_for_path (src_file); if (!file_src.query_exists()) { @@ -181,12 +168,8 @@ namespace TeeJee.FileSystem{ var file_dest = File.new_for_path (dest_file); file_src.move(file_dest,FileCopyFlags.OVERWRITE,null,null); - if (show_message){ - log_msg(_("File moved") + ": '%s' → '%s'".printf(src_file, dest_file)); - } - else{ - log_debug(_("File moved") + ": '%s' → '%s'".printf(src_file, dest_file)); - } + log_debug(_("File moved") + ": '%s' → '%s'".printf(src_file, dest_file)); + } catch(Error e){ log_error (e.message); diff --git a/src/Utility/TeeJee.Process.vala b/src/Utility/TeeJee.Process.vala index aa310a16..e8c61746 100644 --- a/src/Utility/TeeJee.Process.vala +++ b/src/Utility/TeeJee.Process.vala @@ -31,18 +31,8 @@ namespace TeeJee.ProcessHelper{ // execute process --------------------------------- - public string create_tmp_dir(){ - string d = App.TMP_PREFIX+"_%s".printf(random_string()); - dir_create(d); - return d; - } - + // execute command synchronously public int exec_sync (string cmd, out string? std_out = null, out string? std_err = null){ - - /* Executes single command synchronously. - * Pipes and multiple commands are not supported. - * std_out, std_err can be null. Output will be written to terminal if null. */ - try { int status; Process.spawn_command_line_sync (cmd, out std_out, out std_err, out status); @@ -60,9 +50,24 @@ namespace TeeJee.ProcessHelper{ catch (SpawnError e) {log_error (e.message);} } + // temp files ------------------------------------- + + // create a unique temp dir rooted at App.TMP_PREFIX + // return full path to created dir + public string create_tmp_dir(){ + string d = App.TMP_PREFIX+"_%s".printf(random_string()); + dir_create(d); + return d; + } + + // TODO replace with mkstemp + public string get_temp_file_path(string d){ + return d + "/" + timestamp_numeric() + (new Rand()).next_int().to_string(); + } + + // create a temporary bash script + // return the script file path public string? save_bash_script_temp (string cmds, string? file = null){ - /* Creates a temporary bash script with given commands - * Returns the script file path */ string f = file; if ((file == null) || (file.length == 0)){ @@ -82,13 +87,6 @@ namespace TeeJee.ProcessHelper{ return null; } - public string get_temp_file_path(string d){ - - /* Generates temporary file path */ - - return d + "/" + timestamp_numeric() + (new Rand()).next_int().to_string(); - } - // find process ------------------------------- // dep: ps TODO: Rewrite using /proc From fb081db7f1f726d92621e30fca23d25a4c9a8986 Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Mon, 18 May 2020 20:46:56 -0400 Subject: [PATCH 097/567] update readme & changelog --- .deb_build_number.mak | 2 +- README.md | 2 -- README.md.src | 2 -- debian/changelog | 17 +++++++++++------ 4 files changed, 12 insertions(+), 11 deletions(-) diff --git a/.deb_build_number.mak b/.deb_build_number.mak index 9e4b2788..3c1a921a 100644 --- a/.deb_build_number.mak +++ b/.deb_build_number.mak @@ -1,3 +1,3 @@ # This file is generated by Makefile "make deb_build_number" DEB_PKG_VERSION := 1.0.9 -DEB_BUILD_NUMBER := 0013 +DEB_BUILD_NUMBER := 0017 diff --git a/README.md b/README.md index d85fae4e..e34ae907 100644 --- a/README.md +++ b/README.md @@ -46,10 +46,8 @@ The original author stopped maintaining the original GPL version of ukuu and swi * Better desktop notification behavior ### TODO & WIP -* notifications - buggy pattern matching wrt -rc kernel versions * notifications - if you've seen a notification for a given kernel and dismissed it, don't display it again, at least not in the same login session. * notifications - make the bg process detect when the user logs off and exit itself. * notifications - start/restart/stop the bg process when the user changes settings instead of only at logon/logoff * notifications - you press one of the buttons, also close the notification * temp files - do something less broken when a user runs ex: "sudo mainline --install-latest" -* re-implement the TeeJee utility functions that write shell scripts and spawn a bash to exec them, just to do things like chown() diff --git a/README.md.src b/README.md.src index 1ff75737..1beeb029 100644 --- a/README.md.src +++ b/README.md.src @@ -46,10 +46,8 @@ The original author stopped maintaining the original GPL version of ukuu and swi * Better desktop notification behavior ### TODO & WIP -* notifications - buggy pattern matching wrt -rc kernel versions * notifications - if you've seen a notification for a given kernel and dismissed it, don't display it again, at least not in the same login session. * notifications - make the bg process detect when the user logs off and exit itself. * notifications - start/restart/stop the bg process when the user changes settings instead of only at logon/logoff * notifications - you press one of the buttons, also close the notification * temp files - do something less broken when a user runs ex: "sudo mainline --install-latest" -* re-implement the TeeJee utility functions that write shell scripts and spawn a bash to exec them, just to do things like chown() diff --git a/debian/changelog b/debian/changelog index 82b65308..7969c0c7 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,12 +1,17 @@ mainline (1.0.9) unstable; urgency=medium - * Improve desktop notifications - * Improve temp directories & file permissions - * Removed a bunch more un-used TeeJee util functions + * Slick new desktop notifications with action buttons thanks to https://github.com/vlevit/notify-send.sh + * Fix many bugs wrt temp directories & file permissions * un-hardcode "/usr" in various paths to installed files - * Added some quasi-hidden extra functionality to --debug - - -- Brian K. White Sun, 10 May 2020 22:16:17 -0400 + * Added some quasi-hidden extra functionality in Settings if --debug + * Several fixes to the version string parsing and show/hide behavior + detect correct update available for notifications with -rc kernels enabled + don't hide a -rc kernel if it's installed, even if -rc kernels are disabled + don't notify for an installed kernel, whether it's running or not + for "available", compare highest installed kernel not running kernel + * Refactor much of Utils/*.vala out of existence + + -- Brian K. White Mon, 18 May 2020 20:41:52 -0400 mainline (1.0.8) unstable; urgency=medium From 14db4d2d2fdf4b66629f9833063938a0eb11b876 Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Tue, 19 May 2020 05:20:12 -0400 Subject: [PATCH 098/567] release 1.0.9 --- .deb_build_number.mak | 2 +- po/messages.pot | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.deb_build_number.mak b/.deb_build_number.mak index 3c1a921a..fadd3395 100644 --- a/.deb_build_number.mak +++ b/.deb_build_number.mak @@ -1,3 +1,3 @@ # This file is generated by Makefile "make deb_build_number" DEB_PKG_VERSION := 1.0.9 -DEB_BUILD_NUMBER := 0017 +DEB_BUILD_NUMBER := 0018 diff --git a/po/messages.pot b/po/messages.pot index 40c6ab48..083a6277 100644 --- a/po/messages.pot +++ b/po/messages.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline 1.0.9\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-18 20:12-0400\n" +"POT-Creation-Date: 2020-05-19 05:14-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" From b339fe3dbbf6f8eac4756018e588d5d747d20942 Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Tue, 19 May 2020 17:30:14 -0400 Subject: [PATCH 099/567] suspend further notifactions for a given kernel once seen --- lib/notify-action-debug.sh | 6 +- lib/notify_send/notify-send.sh | 7 +- po/es.po | 136 +++++++++++++------------ po/fr.po | 136 +++++++++++++------------ po/hr.po | 136 +++++++++++++------------ po/messages.pot | 136 +++++++++++++------------ po/nl.po | 136 +++++++++++++------------ po/pl.po | 136 +++++++++++++------------ po/ru.po | 136 +++++++++++++------------ po/sv.po | 136 +++++++++++++------------ po/tr.po | 136 +++++++++++++------------ po/uk.po | 136 +++++++++++++------------ src/Common/DownloadManager.vala | 8 +- src/Common/LinuxKernel.vala | 8 +- src/Common/Main.vala | 15 +-- src/{Console => Common}/OSDNotify.vala | 42 ++++---- src/Console/AppConsole.vala | 60 +++++++---- src/Gtk/AppGtk.vala | 8 +- src/Gtk/SettingsDialog.vala | 25 ++++- src/Utility/TeeJee.System.vala | 2 +- 20 files changed, 817 insertions(+), 724 deletions(-) rename src/{Console => Common}/OSDNotify.vala (70%) diff --git a/lib/notify-action-debug.sh b/lib/notify-action-debug.sh index a37c60ef..85473712 100755 --- a/lib/notify-action-debug.sh +++ b/lib/notify-action-debug.sh @@ -1,5 +1,7 @@ #!/bin/bash printf -v DT "%(%Y%m%d%H%M%S)T_${RANDOM}" -1 LF=/tmp/.mainline_notify_action_${DT}.log -set > ${LF} -mainline-gtk --debug 2>&1 >> ${LF} +echo ${DT} > ${LF} +printf "%s %s\n" "${0}" "${@}" >> ${LF} +set >> ${LF} +${@} 2>&1 >> ${LF} diff --git a/lib/notify_send/notify-send.sh b/lib/notify_send/notify-send.sh index 9f6a5cee..9d20e822 100755 --- a/lib/notify_send/notify-send.sh +++ b/lib/notify_send/notify-send.sh @@ -132,7 +132,7 @@ notify() { maybe_run_action_handler } -notify_close () { +notify_close() { gdbus call "${NOTIFY_ARGS[@]}" --method org.freedesktop.Notifications.CloseNotification "$1" >/dev/null } @@ -285,13 +285,12 @@ while (( $# > 0 )) ; do ;; -R|--replace-file|--replace-file=*) [[ "$1" = --replace-file=* ]] && filename="${1#*=}" || { shift; filename="$1"; } - if [[ -s "$filename" ]]; then - REPLACE_ID="$(< $filename)" - fi + [[ -s "$filename" ]] && read REPLACE_ID < $filename STORE_ID="$filename" ;; -s|--close|--close=*) [[ "$1" = --close=* ]] && close_id="${1#*=}" || { shift; close_id="$1"; } + case "$close_id" in ""|R|replace-file) [[ "${REPLACE_ID}" ]] && close_id=${REPLACE_ID} ;; esac notify_close "$close_id" exit $? ;; diff --git a/po/es.po b/po/es.po index a4a55363..8fe9437b 100644 --- a/po/es.po +++ b/po/es.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-18 20:12-0400\n" +"POT-Creation-Date: 2020-05-19 17:20-0400\n" "PO-Revision-Date: 2018-01-03 02:03-0600\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish\n" @@ -25,93 +25,93 @@ msgstr "Arquitectura del sistema" msgid "Fetching index..." msgstr "Recuperando índice..." -#: src/Common/LinuxKernel.vala:341 +#: src/Common/LinuxKernel.vala:342 msgid "Fetching index from kernel.ubuntu.com..." msgstr "Recuperando índice de kernel.ubuntu.com…" -#: src/Common/LinuxKernel.vala:598 +#: src/Common/LinuxKernel.vala:601 msgid "Could not find running kernel in list!" msgstr "¡No se pudo encontrar el núcleo en ejecución en la lista!" -#: src/Common/LinuxKernel.vala:604 +#: src/Common/LinuxKernel.vala:607 msgid "Could not find any kernels to remove" msgstr "Seleccione los núcleos que se desinstalarán" -#: src/Common/LinuxKernel.vala:613 +#: src/Common/LinuxKernel.vala:616 msgid "The following kernels will be removed:" msgstr "Los siguientes kernels serán eliminados:" -#: src/Common/LinuxKernel.vala:620 +#: src/Common/LinuxKernel.vala:623 msgid "Continue ?" msgstr "¿Continuar?" -#: src/Common/LinuxKernel.vala:644 src/Console/AppConsole.vala:302 +#: src/Common/LinuxKernel.vala:648 src/Console/AppConsole.vala:307 msgid "Latest update" msgstr "" -#: src/Common/LinuxKernel.vala:655 src/Console/AppConsole.vala:309 +#: src/Common/LinuxKernel.vala:659 src/Console/AppConsole.vala:314 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:663 src/Console/AppConsole.vala:314 -#: src/Console/AppConsole.vala:364 +#: src/Common/LinuxKernel.vala:667 src/Console/AppConsole.vala:319 +#: src/Console/AppConsole.vala:384 msgid "No updates found" msgstr "No se encontró ninguna actualización" -#: src/Common/LinuxKernel.vala:673 +#: src/Common/LinuxKernel.vala:677 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "" -#: src/Common/LinuxKernel.vala:935 +#: src/Common/LinuxKernel.vala:939 msgid "Packages Available" msgstr "Paquetes disponibles" -#: src/Common/LinuxKernel.vala:943 +#: src/Common/LinuxKernel.vala:947 msgid "Packages Installed" msgstr "Paquetes instalados" -#: src/Common/LinuxKernel.vala:1026 +#: src/Common/LinuxKernel.vala:1030 msgid "Available Kernels" msgstr "Núcleos disponibles" -#: src/Common/LinuxKernel.vala:1033 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1037 src/Gtk/MainWindow.vala:186 msgid "Installed" msgstr "Instalado" -#: src/Common/LinuxKernel.vala:1033 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1037 src/Gtk/MainWindow.vala:186 #: src/Gtk/MainWindow.vala:625 src/Gtk/MainWindow.vala:639 msgid "Running" msgstr "En ejecución" -#: src/Common/LinuxKernel.vala:1070 +#: src/Common/LinuxKernel.vala:1074 msgid "Downloading" msgstr "Descargando" -#: src/Common/LinuxKernel.vala:1089 +#: src/Common/LinuxKernel.vala:1093 #: src/Utility/Gtk/CustomMessageDialog.vala:148 #: src/Utility/Gtk/CustomMessageDialog.vala:152 msgid "OK" msgstr "Aceptar" -#: src/Common/LinuxKernel.vala:1094 +#: src/Common/LinuxKernel.vala:1098 msgid "ERROR" msgstr "ERROR" -#: src/Common/LinuxKernel.vala:1108 src/Gtk/MainWindow.vala:647 +#: src/Common/LinuxKernel.vala:1112 src/Gtk/MainWindow.vala:647 msgid "This kernel is already installed." msgstr "Este núcleo ya se instaló." -#: src/Common/LinuxKernel.vala:1134 +#: src/Common/LinuxKernel.vala:1138 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "Instalación finalizada. Se necesita reiniciar para utilizar el núcleo nuevo." -#: src/Common/LinuxKernel.vala:1137 +#: src/Common/LinuxKernel.vala:1141 msgid "Installation completed with errors" msgstr "Instalación finalizada con errores" -#: src/Common/LinuxKernel.vala:1152 +#: src/Common/LinuxKernel.vala:1156 msgid "" "Selected kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -119,19 +119,19 @@ msgstr "" "El núcleo seleccionado está en ejecución y no puede desinstalarse.\n" "Instale otro núcleo antes de desinstalar este." -#: src/Common/LinuxKernel.vala:1157 +#: src/Common/LinuxKernel.vala:1161 msgid "Preparing to remove selected kernels" msgstr "Preparándose para desinstalar los núcleos seleccionados" -#: src/Common/LinuxKernel.vala:1188 src/Common/LinuxKernel.vala:1235 +#: src/Common/LinuxKernel.vala:1192 src/Common/LinuxKernel.vala:1239 msgid "Un-install completed" msgstr "Desinstalación finalizada" -#: src/Common/LinuxKernel.vala:1191 src/Common/LinuxKernel.vala:1238 +#: src/Common/LinuxKernel.vala:1195 src/Common/LinuxKernel.vala:1242 msgid "Un-install completed with errors" msgstr "Desinstalación finalizada con errores" -#: src/Common/LinuxKernel.vala:1204 +#: src/Common/LinuxKernel.vala:1208 msgid "" "This kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -139,11 +139,11 @@ msgstr "" "Este núcleo está en ejecución y no se puede desinstalar.\n" "Instale otro núcleo antes de desinstalar este." -#: src/Common/Main.vala:236 +#: src/Common/Main.vala:237 msgid "Called from" msgstr "" -#: src/Common/Main.vala:248 +#: src/Common/Main.vala:249 #, fuzzy msgid "Notifications are disabled" msgstr "Notificación" @@ -153,7 +153,7 @@ msgstr "Notificación" msgid "File not found: %s" msgstr "No se encontró el archivo: %s" -#: src/Console/AppConsole.vala:62 src/Gtk/AppGtk.vala:149 +#: src/Console/AppConsole.vala:62 src/Gtk/AppGtk.vala:154 msgid "Syntax" msgstr "Sintaxis" @@ -211,7 +211,7 @@ msgstr "Quitar archivos de la antememoria de la aplicación" msgid "Show unstable and RC releases" msgstr "Ocultar versiones inestables y RC" -#: src/Console/AppConsole.vala:79 src/Gtk/AppGtk.vala:151 +#: src/Console/AppConsole.vala:79 src/Gtk/AppGtk.vala:156 msgid "Options" msgstr "Opciones" @@ -236,65 +236,65 @@ msgid "" "One or more version strings (comma-separated) taken from the output of --list" msgstr "" -#: src/Console/AppConsole.vala:162 src/Gtk/AppGtk.vala:136 +#: src/Console/AppConsole.vala:166 src/Gtk/AppGtk.vala:141 msgid "Unknown option" msgstr "Opción desconocida" -#: src/Console/AppConsole.vala:164 src/Console/AppConsole.vala:256 -#: src/Console/AppConsole.vala:284 +#: src/Console/AppConsole.vala:168 src/Console/AppConsole.vala:260 +#: src/Console/AppConsole.vala:288 #, fuzzy msgid "Run" msgstr "En ejecución" -#: src/Console/AppConsole.vala:164 +#: src/Console/AppConsole.vala:168 #, fuzzy msgid "to list all options" msgstr "Mostrar todas las opciones" -#: src/Console/AppConsole.vala:229 src/Console/AppConsole.vala:264 +#: src/Console/AppConsole.vala:233 src/Console/AppConsole.vala:268 msgid "No kernels specified" msgstr "" -#: src/Console/AppConsole.vala:235 +#: src/Console/AppConsole.vala:239 msgid "Multiple kernels selected for installation. Select only one." msgstr "Se seleccionaron varios núcleos para su instalación. Elija solo uno." -#: src/Console/AppConsole.vala:253 src/Gtk/MainWindow.vala:100 +#: src/Console/AppConsole.vala:257 src/Gtk/MainWindow.vala:100 msgid "Could not find requested version" msgstr "No se pudo encontrar la versión solicitada" -#: src/Console/AppConsole.vala:256 +#: src/Console/AppConsole.vala:260 msgid "and use a version string listed in first column" msgstr "" -#: src/Console/AppConsole.vala:283 +#: src/Console/AppConsole.vala:287 msgid "Command not specified" msgstr "Coomand no especificado" -#: src/Console/AppConsole.vala:284 +#: src/Console/AppConsole.vala:288 #, fuzzy msgid "to list all commands" msgstr "Mostrar todas las opciones" -#: src/Console/AppConsole.vala:336 src/Console/AppConsole.vala:352 +#: src/Console/AppConsole.vala:349 +msgid "Show" +msgstr "" + +#: src/Console/AppConsole.vala:354 src/Console/AppConsole.vala:373 #, fuzzy, c-format msgid "Kernel %s Available" msgstr "Paquetes disponibles" -#: src/Console/AppConsole.vala:339 src/Console/AppConsole.vala:355 +#: src/Console/AppConsole.vala:356 src/Console/AppConsole.vala:375 #: src/Gtk/MainWindow.vala:330 msgid "Install" msgstr "Instalar" -#: src/Console/OSDNotify.vala:66 -msgid "Show" -msgstr "" - -#: src/Gtk/AppGtk.vala:153 +#: src/Gtk/AppGtk.vala:158 msgid "Print debug information" msgstr "Mostrar información de depuración" -#: src/Gtk/AppGtk.vala:154 +#: src/Gtk/AppGtk.vala:159 msgid "Show all options" msgstr "Mostrar todas las opciones" @@ -356,7 +356,7 @@ msgstr "" msgid "Changes" msgstr "Cambios" -#: src/Gtk/MainWindow.vala:435 src/Gtk/SettingsDialog.vala:52 +#: src/Gtk/MainWindow.vala:435 src/Gtk/SettingsDialog.vala:51 msgid "Settings" msgstr "Configuración" @@ -401,67 +401,67 @@ msgstr "Instalado" msgid "Cancel" msgstr "Cancelar" -#: src/Gtk/SettingsDialog.vala:62 +#: src/Gtk/SettingsDialog.vala:61 msgid "Notification" msgstr "Notificación" -#: src/Gtk/SettingsDialog.vala:69 +#: src/Gtk/SettingsDialog.vala:68 msgid "Notify if a major release is available" msgstr "Notificar si hay una versión importante disponible" -#: src/Gtk/SettingsDialog.vala:80 +#: src/Gtk/SettingsDialog.vala:79 msgid "Notify if a point release is available" msgstr "Notificar si hay una versión puntual disponible" -#: src/Gtk/SettingsDialog.vala:91 +#: src/Gtk/SettingsDialog.vala:90 msgid "Show notification bubble on desktop" msgstr "Mostrar globo de notificación en el escritorio" -#: src/Gtk/SettingsDialog.vala:102 +#: src/Gtk/SettingsDialog.vala:101 msgid "(Allowing intervals in seconds for --debug)" msgstr "" -#: src/Gtk/SettingsDialog.vala:112 +#: src/Gtk/SettingsDialog.vala:111 msgid "Check every" msgstr "Comprobar cada" -#: src/Gtk/SettingsDialog.vala:145 +#: src/Gtk/SettingsDialog.vala:144 msgid "Hour(s)" msgstr "Horas" -#: src/Gtk/SettingsDialog.vala:147 +#: src/Gtk/SettingsDialog.vala:146 msgid "Day(s)" msgstr "Días" -#: src/Gtk/SettingsDialog.vala:149 +#: src/Gtk/SettingsDialog.vala:148 msgid "Week(s)" msgstr "Semanas" -#: src/Gtk/SettingsDialog.vala:152 +#: src/Gtk/SettingsDialog.vala:151 msgid "Second(s)" msgstr "" -#: src/Gtk/SettingsDialog.vala:158 +#: src/Gtk/SettingsDialog.vala:157 msgid "Display" msgstr "Mostrar" -#: src/Gtk/SettingsDialog.vala:166 +#: src/Gtk/SettingsDialog.vala:165 msgid "Hide unstable and RC releases" msgstr "Ocultar versiones inestables y RC" -#: src/Gtk/SettingsDialog.vala:180 +#: src/Gtk/SettingsDialog.vala:179 msgid "Show N previous major versions " msgstr "" -#: src/Gtk/SettingsDialog.vala:195 +#: src/Gtk/SettingsDialog.vala:194 msgid "Other" msgstr "" -#: src/Gtk/SettingsDialog.vala:203 +#: src/Gtk/SettingsDialog.vala:202 msgid "Skip internet connection check" msgstr "La conexión a Internet está inactiva" -#: src/Gtk/SettingsDialog.vala:216 +#: src/Gtk/SettingsDialog.vala:215 #, fuzzy msgid "Internet connection timeout in " msgstr "La conexión a Internet está inactiva" @@ -470,6 +470,10 @@ msgstr "La conexión a Internet está inactiva" msgid "seconds" msgstr "" +#: src/Gtk/SettingsDialog.vala:237 +msgid "Max concurrent downloads" +msgstr "" + #: src/Gtk/TerminalWindow.vala:159 src/Utility/Gtk/AboutWindow.vala:294 msgid "Close" msgstr "Cerrar" diff --git a/po/fr.po b/po/fr.po index cfd29513..9596d8a1 100644 --- a/po/fr.po +++ b/po/fr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-18 20:12-0400\n" +"POT-Creation-Date: 2020-05-19 17:20-0400\n" "PO-Revision-Date: 2018-08-05 15:50+0200\n" "Last-Translator: Yolateng0 \n" "Language-Team: French\n" @@ -26,96 +26,96 @@ msgstr "Architecture du système" msgid "Fetching index..." msgstr "" -#: src/Common/LinuxKernel.vala:341 +#: src/Common/LinuxKernel.vala:342 msgid "Fetching index from kernel.ubuntu.com..." msgstr "Récupération de l'index depuis kernel.ubuntu.com..." -#: src/Common/LinuxKernel.vala:598 +#: src/Common/LinuxKernel.vala:601 #, fuzzy msgid "Could not find running kernel in list!" msgstr "Impossible de trouver la version demandée" -#: src/Common/LinuxKernel.vala:604 +#: src/Common/LinuxKernel.vala:607 #, fuzzy msgid "Could not find any kernels to remove" msgstr "Sélectionnez les noyaux à supprimer" -#: src/Common/LinuxKernel.vala:613 +#: src/Common/LinuxKernel.vala:616 msgid "The following kernels will be removed:" msgstr "" -#: src/Common/LinuxKernel.vala:620 +#: src/Common/LinuxKernel.vala:623 msgid "Continue ?" msgstr "" -#: src/Common/LinuxKernel.vala:644 src/Console/AppConsole.vala:302 +#: src/Common/LinuxKernel.vala:648 src/Console/AppConsole.vala:307 msgid "Latest update" msgstr "" -#: src/Common/LinuxKernel.vala:655 src/Console/AppConsole.vala:309 +#: src/Common/LinuxKernel.vala:659 src/Console/AppConsole.vala:314 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:663 src/Console/AppConsole.vala:314 -#: src/Console/AppConsole.vala:364 +#: src/Common/LinuxKernel.vala:667 src/Console/AppConsole.vala:319 +#: src/Console/AppConsole.vala:384 msgid "No updates found" msgstr "Aucune mise à jour disponible" -#: src/Common/LinuxKernel.vala:673 +#: src/Common/LinuxKernel.vala:677 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "" -#: src/Common/LinuxKernel.vala:935 +#: src/Common/LinuxKernel.vala:939 msgid "Packages Available" msgstr "Paquets disponibles" -#: src/Common/LinuxKernel.vala:943 +#: src/Common/LinuxKernel.vala:947 msgid "Packages Installed" msgstr "Paquets installés" -#: src/Common/LinuxKernel.vala:1026 +#: src/Common/LinuxKernel.vala:1030 msgid "Available Kernels" msgstr "Noyaux disponibles" -#: src/Common/LinuxKernel.vala:1033 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1037 src/Gtk/MainWindow.vala:186 msgid "Installed" msgstr "Installé" -#: src/Common/LinuxKernel.vala:1033 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1037 src/Gtk/MainWindow.vala:186 #: src/Gtk/MainWindow.vala:625 src/Gtk/MainWindow.vala:639 msgid "Running" msgstr "En cours" -#: src/Common/LinuxKernel.vala:1070 +#: src/Common/LinuxKernel.vala:1074 msgid "Downloading" msgstr "Téléchargement" -#: src/Common/LinuxKernel.vala:1089 +#: src/Common/LinuxKernel.vala:1093 #: src/Utility/Gtk/CustomMessageDialog.vala:148 #: src/Utility/Gtk/CustomMessageDialog.vala:152 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:1094 +#: src/Common/LinuxKernel.vala:1098 msgid "ERROR" msgstr "ERREUR" -#: src/Common/LinuxKernel.vala:1108 src/Gtk/MainWindow.vala:647 +#: src/Common/LinuxKernel.vala:1112 src/Gtk/MainWindow.vala:647 msgid "This kernel is already installed." msgstr "Ce noyau est déjà installé." -#: src/Common/LinuxKernel.vala:1134 +#: src/Common/LinuxKernel.vala:1138 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "Installation complétée. Un redémarrage est nécessaire pour utiliser le " "nouveau noyau." -#: src/Common/LinuxKernel.vala:1137 +#: src/Common/LinuxKernel.vala:1141 msgid "Installation completed with errors" msgstr "Installation terminée avec des erreurs" -#: src/Common/LinuxKernel.vala:1152 +#: src/Common/LinuxKernel.vala:1156 msgid "" "Selected kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -123,19 +123,19 @@ msgstr "" "Ce noyau est en cours d'exécution et ne peut pas être supprimé.\n" " Installez un autre noyau avant de retirer celui-ci." -#: src/Common/LinuxKernel.vala:1157 +#: src/Common/LinuxKernel.vala:1161 msgid "Preparing to remove selected kernels" msgstr "Préparation à la suppression des noyaux sélectionnés" -#: src/Common/LinuxKernel.vala:1188 src/Common/LinuxKernel.vala:1235 +#: src/Common/LinuxKernel.vala:1192 src/Common/LinuxKernel.vala:1239 msgid "Un-install completed" msgstr "Désinstallation complète" -#: src/Common/LinuxKernel.vala:1191 src/Common/LinuxKernel.vala:1238 +#: src/Common/LinuxKernel.vala:1195 src/Common/LinuxKernel.vala:1242 msgid "Un-install completed with errors" msgstr "Désinstallation terminée avec des erreurs" -#: src/Common/LinuxKernel.vala:1204 +#: src/Common/LinuxKernel.vala:1208 msgid "" "This kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -143,11 +143,11 @@ msgstr "" "Ce noyau est en cours d'exécution et ne peut pas être supprimé.\n" " Installez un autre noyau avant de retirer celui-ci." -#: src/Common/Main.vala:236 +#: src/Common/Main.vala:237 msgid "Called from" msgstr "" -#: src/Common/Main.vala:248 +#: src/Common/Main.vala:249 #, fuzzy msgid "Notifications are disabled" msgstr "Notification" @@ -157,7 +157,7 @@ msgstr "Notification" msgid "File not found: %s" msgstr "Fichier non trouvé: %s" -#: src/Console/AppConsole.vala:62 src/Gtk/AppGtk.vala:149 +#: src/Console/AppConsole.vala:62 src/Gtk/AppGtk.vala:154 msgid "Syntax" msgstr "Syntaxe" @@ -219,7 +219,7 @@ msgstr "Supprimer les fichiers du cache de l'application" msgid "Show unstable and RC releases" msgstr "Cacher les versions instables et RC" -#: src/Console/AppConsole.vala:79 src/Gtk/AppGtk.vala:151 +#: src/Console/AppConsole.vala:79 src/Gtk/AppGtk.vala:156 msgid "Options" msgstr "Options" @@ -244,68 +244,68 @@ msgid "" "One or more version strings (comma-separated) taken from the output of --list" msgstr "" -#: src/Console/AppConsole.vala:162 src/Gtk/AppGtk.vala:136 +#: src/Console/AppConsole.vala:166 src/Gtk/AppGtk.vala:141 msgid "Unknown option" msgstr "Option inconnue" -#: src/Console/AppConsole.vala:164 src/Console/AppConsole.vala:256 -#: src/Console/AppConsole.vala:284 +#: src/Console/AppConsole.vala:168 src/Console/AppConsole.vala:260 +#: src/Console/AppConsole.vala:288 #, fuzzy msgid "Run" msgstr "En cours" -#: src/Console/AppConsole.vala:164 +#: src/Console/AppConsole.vala:168 #, fuzzy msgid "to list all options" msgstr "Afficher toutes les options" -#: src/Console/AppConsole.vala:229 src/Console/AppConsole.vala:264 +#: src/Console/AppConsole.vala:233 src/Console/AppConsole.vala:268 msgid "No kernels specified" msgstr "" -#: src/Console/AppConsole.vala:235 +#: src/Console/AppConsole.vala:239 msgid "Multiple kernels selected for installation. Select only one." msgstr "" "Plusieurs noyaux sélectionnés pour être installés. Sélectionnez en seulement " "un." -#: src/Console/AppConsole.vala:253 src/Gtk/MainWindow.vala:100 +#: src/Console/AppConsole.vala:257 src/Gtk/MainWindow.vala:100 msgid "Could not find requested version" msgstr "Impossible de trouver la version demandée" -#: src/Console/AppConsole.vala:256 +#: src/Console/AppConsole.vala:260 msgid "and use a version string listed in first column" msgstr "" -#: src/Console/AppConsole.vala:283 +#: src/Console/AppConsole.vala:287 #, fuzzy msgid "Command not specified" msgstr "Impossible de trouver le fichier" -#: src/Console/AppConsole.vala:284 +#: src/Console/AppConsole.vala:288 #, fuzzy msgid "to list all commands" msgstr "Afficher toutes les options" -#: src/Console/AppConsole.vala:336 src/Console/AppConsole.vala:352 +#: src/Console/AppConsole.vala:349 +msgid "Show" +msgstr "" + +#: src/Console/AppConsole.vala:354 src/Console/AppConsole.vala:373 #, fuzzy, c-format msgid "Kernel %s Available" msgstr "Paquets disponibles" -#: src/Console/AppConsole.vala:339 src/Console/AppConsole.vala:355 +#: src/Console/AppConsole.vala:356 src/Console/AppConsole.vala:375 #: src/Gtk/MainWindow.vala:330 msgid "Install" msgstr "Installer" -#: src/Console/OSDNotify.vala:66 -msgid "Show" -msgstr "" - -#: src/Gtk/AppGtk.vala:153 +#: src/Gtk/AppGtk.vala:158 msgid "Print debug information" msgstr "Afficher les informations de débogage" -#: src/Gtk/AppGtk.vala:154 +#: src/Gtk/AppGtk.vala:159 msgid "Show all options" msgstr "Afficher toutes les options" @@ -367,7 +367,7 @@ msgstr "" msgid "Changes" msgstr "Changements" -#: src/Gtk/MainWindow.vala:435 src/Gtk/SettingsDialog.vala:52 +#: src/Gtk/MainWindow.vala:435 src/Gtk/SettingsDialog.vala:51 msgid "Settings" msgstr "Paramètres" @@ -413,68 +413,68 @@ msgstr "Installé" msgid "Cancel" msgstr "Annuler" -#: src/Gtk/SettingsDialog.vala:62 +#: src/Gtk/SettingsDialog.vala:61 msgid "Notification" msgstr "Notification" -#: src/Gtk/SettingsDialog.vala:69 +#: src/Gtk/SettingsDialog.vala:68 msgid "Notify if a major release is available" msgstr "Notifier si une version stable majeure est disponible" -#: src/Gtk/SettingsDialog.vala:80 +#: src/Gtk/SettingsDialog.vala:79 msgid "Notify if a point release is available" msgstr "Notifier si une version stable mineure est disponible" -#: src/Gtk/SettingsDialog.vala:91 +#: src/Gtk/SettingsDialog.vala:90 msgid "Show notification bubble on desktop" msgstr "Afficher la bulle de notification sur le bureau" -#: src/Gtk/SettingsDialog.vala:102 +#: src/Gtk/SettingsDialog.vala:101 msgid "(Allowing intervals in seconds for --debug)" msgstr "" -#: src/Gtk/SettingsDialog.vala:112 +#: src/Gtk/SettingsDialog.vala:111 msgid "Check every" msgstr "Vérifier toutes les" -#: src/Gtk/SettingsDialog.vala:145 +#: src/Gtk/SettingsDialog.vala:144 msgid "Hour(s)" msgstr "Heure(s)" -#: src/Gtk/SettingsDialog.vala:147 +#: src/Gtk/SettingsDialog.vala:146 msgid "Day(s)" msgstr "Jour(s)" -#: src/Gtk/SettingsDialog.vala:149 +#: src/Gtk/SettingsDialog.vala:148 msgid "Week(s)" msgstr "Semaine(s)" -#: src/Gtk/SettingsDialog.vala:152 +#: src/Gtk/SettingsDialog.vala:151 msgid "Second(s)" msgstr "" -#: src/Gtk/SettingsDialog.vala:158 +#: src/Gtk/SettingsDialog.vala:157 msgid "Display" msgstr "Afficher" -#: src/Gtk/SettingsDialog.vala:166 +#: src/Gtk/SettingsDialog.vala:165 msgid "Hide unstable and RC releases" msgstr "Cacher les versions instables et RC" -#: src/Gtk/SettingsDialog.vala:180 +#: src/Gtk/SettingsDialog.vala:179 msgid "Show N previous major versions " msgstr "" -#: src/Gtk/SettingsDialog.vala:195 +#: src/Gtk/SettingsDialog.vala:194 msgid "Other" msgstr "" -#: src/Gtk/SettingsDialog.vala:203 +#: src/Gtk/SettingsDialog.vala:202 #, fuzzy msgid "Skip internet connection check" msgstr "Connexion internet inexistante" -#: src/Gtk/SettingsDialog.vala:216 +#: src/Gtk/SettingsDialog.vala:215 #, fuzzy msgid "Internet connection timeout in " msgstr "Connexion internet inexistante" @@ -483,6 +483,10 @@ msgstr "Connexion internet inexistante" msgid "seconds" msgstr "" +#: src/Gtk/SettingsDialog.vala:237 +msgid "Max concurrent downloads" +msgstr "" + #: src/Gtk/TerminalWindow.vala:159 src/Utility/Gtk/AboutWindow.vala:294 msgid "Close" msgstr "Fermer" diff --git a/po/hr.po b/po/hr.po index 2e93e035..568db32d 100644 --- a/po/hr.po +++ b/po/hr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-18 20:12-0400\n" +"POT-Creation-Date: 2020-05-19 17:20-0400\n" "PO-Revision-Date: 2017-12-24 00:52+0100\n" "Last-Translator: gogo \n" "Language-Team: Croatian \n" @@ -26,96 +26,96 @@ msgstr "Arhitektura sustava" msgid "Fetching index..." msgstr "" -#: src/Common/LinuxKernel.vala:341 +#: src/Common/LinuxKernel.vala:342 msgid "Fetching index from kernel.ubuntu.com..." msgstr "Preuzimanje sadržaja sa kernel.ubuntu.com..." -#: src/Common/LinuxKernel.vala:598 +#: src/Common/LinuxKernel.vala:601 #, fuzzy msgid "Could not find running kernel in list!" msgstr "Nemoguće je pronaći zatraženu inačicu" -#: src/Common/LinuxKernel.vala:604 +#: src/Common/LinuxKernel.vala:607 #, fuzzy msgid "Could not find any kernels to remove" msgstr "Odaberi kernele za uklanjanje" -#: src/Common/LinuxKernel.vala:613 +#: src/Common/LinuxKernel.vala:616 msgid "The following kernels will be removed:" msgstr "" -#: src/Common/LinuxKernel.vala:620 +#: src/Common/LinuxKernel.vala:623 msgid "Continue ?" msgstr "" -#: src/Common/LinuxKernel.vala:644 src/Console/AppConsole.vala:302 +#: src/Common/LinuxKernel.vala:648 src/Console/AppConsole.vala:307 msgid "Latest update" msgstr "" -#: src/Common/LinuxKernel.vala:655 src/Console/AppConsole.vala:309 +#: src/Common/LinuxKernel.vala:659 src/Console/AppConsole.vala:314 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:663 src/Console/AppConsole.vala:314 -#: src/Console/AppConsole.vala:364 +#: src/Common/LinuxKernel.vala:667 src/Console/AppConsole.vala:319 +#: src/Console/AppConsole.vala:384 msgid "No updates found" msgstr "Nema pronađenih nadopuna" -#: src/Common/LinuxKernel.vala:673 +#: src/Common/LinuxKernel.vala:677 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "" -#: src/Common/LinuxKernel.vala:935 +#: src/Common/LinuxKernel.vala:939 msgid "Packages Available" msgstr "Dostupni paketi" -#: src/Common/LinuxKernel.vala:943 +#: src/Common/LinuxKernel.vala:947 msgid "Packages Installed" msgstr "Instalirani paketi" -#: src/Common/LinuxKernel.vala:1026 +#: src/Common/LinuxKernel.vala:1030 msgid "Available Kernels" msgstr "Dostupni kerneli" -#: src/Common/LinuxKernel.vala:1033 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1037 src/Gtk/MainWindow.vala:186 msgid "Installed" msgstr "Instalirano" -#: src/Common/LinuxKernel.vala:1033 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1037 src/Gtk/MainWindow.vala:186 #: src/Gtk/MainWindow.vala:625 src/Gtk/MainWindow.vala:639 msgid "Running" msgstr "Pokrenuto" -#: src/Common/LinuxKernel.vala:1070 +#: src/Common/LinuxKernel.vala:1074 msgid "Downloading" msgstr "Preuzimanje" -#: src/Common/LinuxKernel.vala:1089 +#: src/Common/LinuxKernel.vala:1093 #: src/Utility/Gtk/CustomMessageDialog.vala:148 #: src/Utility/Gtk/CustomMessageDialog.vala:152 msgid "OK" msgstr "U redu" -#: src/Common/LinuxKernel.vala:1094 +#: src/Common/LinuxKernel.vala:1098 msgid "ERROR" msgstr "GREŠKA" -#: src/Common/LinuxKernel.vala:1108 src/Gtk/MainWindow.vala:647 +#: src/Common/LinuxKernel.vala:1112 src/Gtk/MainWindow.vala:647 msgid "This kernel is already installed." msgstr "Ovaj kernel je već instaliran." -#: src/Common/LinuxKernel.vala:1134 +#: src/Common/LinuxKernel.vala:1138 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "Instalacija je završena. Potrebno je ponovno pokretanje računala kako bi se " "koristio novi kernel." -#: src/Common/LinuxKernel.vala:1137 +#: src/Common/LinuxKernel.vala:1141 msgid "Installation completed with errors" msgstr "Instalacija je završena s greškama" -#: src/Common/LinuxKernel.vala:1152 +#: src/Common/LinuxKernel.vala:1156 msgid "" "Selected kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -123,19 +123,19 @@ msgstr "" "Odabrani kernel je trenutno pokernut i ne može se ukloniti.\n" " Instalirajte drugi kernel prije uklanjanja trenutnog kernela." -#: src/Common/LinuxKernel.vala:1157 +#: src/Common/LinuxKernel.vala:1161 msgid "Preparing to remove selected kernels" msgstr "Pripremanje uklanjanja odabranih kernela" -#: src/Common/LinuxKernel.vala:1188 src/Common/LinuxKernel.vala:1235 +#: src/Common/LinuxKernel.vala:1192 src/Common/LinuxKernel.vala:1239 msgid "Un-install completed" msgstr "Deinstalacija završena" -#: src/Common/LinuxKernel.vala:1191 src/Common/LinuxKernel.vala:1238 +#: src/Common/LinuxKernel.vala:1195 src/Common/LinuxKernel.vala:1242 msgid "Un-install completed with errors" msgstr "Deinstalacija završena s greškama" -#: src/Common/LinuxKernel.vala:1204 +#: src/Common/LinuxKernel.vala:1208 msgid "" "This kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -143,11 +143,11 @@ msgstr "" "Ovaj kernel je trenutno pokrenut i ne može se ukloniti.\n" " Instalirajte drugi kernel prije uklanjanja trenutnog kernela." -#: src/Common/Main.vala:236 +#: src/Common/Main.vala:237 msgid "Called from" msgstr "" -#: src/Common/Main.vala:248 +#: src/Common/Main.vala:249 #, fuzzy msgid "Notifications are disabled" msgstr "Obavijesti" @@ -157,7 +157,7 @@ msgstr "Obavijesti" msgid "File not found: %s" msgstr "Datoteka nije pronađena: %s" -#: src/Console/AppConsole.vala:62 src/Gtk/AppGtk.vala:149 +#: src/Console/AppConsole.vala:62 src/Gtk/AppGtk.vala:154 msgid "Syntax" msgstr "Sintaksa" @@ -219,7 +219,7 @@ msgstr "Ukloni datoteke iz predmemorije aplikacije" msgid "Show unstable and RC releases" msgstr "Sakrij nestabilne kernele i predizdanja" -#: src/Console/AppConsole.vala:79 src/Gtk/AppGtk.vala:151 +#: src/Console/AppConsole.vala:79 src/Gtk/AppGtk.vala:156 msgid "Options" msgstr "Mogućnosti" @@ -244,65 +244,65 @@ msgid "" "One or more version strings (comma-separated) taken from the output of --list" msgstr "" -#: src/Console/AppConsole.vala:162 src/Gtk/AppGtk.vala:136 +#: src/Console/AppConsole.vala:166 src/Gtk/AppGtk.vala:141 msgid "Unknown option" msgstr "Nepoznata mogućnost" -#: src/Console/AppConsole.vala:164 src/Console/AppConsole.vala:256 -#: src/Console/AppConsole.vala:284 +#: src/Console/AppConsole.vala:168 src/Console/AppConsole.vala:260 +#: src/Console/AppConsole.vala:288 #, fuzzy msgid "Run" msgstr "Pokrenuto" -#: src/Console/AppConsole.vala:164 +#: src/Console/AppConsole.vala:168 #, fuzzy msgid "to list all options" msgstr "Prikaži sve mogućnosti" -#: src/Console/AppConsole.vala:229 src/Console/AppConsole.vala:264 +#: src/Console/AppConsole.vala:233 src/Console/AppConsole.vala:268 msgid "No kernels specified" msgstr "" -#: src/Console/AppConsole.vala:235 +#: src/Console/AppConsole.vala:239 msgid "Multiple kernels selected for installation. Select only one." msgstr "Više kernela je odabrano za instalaciju. odaberite samo jedan." -#: src/Console/AppConsole.vala:253 src/Gtk/MainWindow.vala:100 +#: src/Console/AppConsole.vala:257 src/Gtk/MainWindow.vala:100 msgid "Could not find requested version" msgstr "Nemoguće je pronaći zatraženu inačicu" -#: src/Console/AppConsole.vala:256 +#: src/Console/AppConsole.vala:260 msgid "and use a version string listed in first column" msgstr "" -#: src/Console/AppConsole.vala:283 +#: src/Console/AppConsole.vala:287 msgid "Command not specified" msgstr "" -#: src/Console/AppConsole.vala:284 +#: src/Console/AppConsole.vala:288 #, fuzzy msgid "to list all commands" msgstr "Prikaži sve mogućnosti" -#: src/Console/AppConsole.vala:336 src/Console/AppConsole.vala:352 +#: src/Console/AppConsole.vala:349 +msgid "Show" +msgstr "" + +#: src/Console/AppConsole.vala:354 src/Console/AppConsole.vala:373 #, fuzzy, c-format msgid "Kernel %s Available" msgstr "Dostupni paketi" -#: src/Console/AppConsole.vala:339 src/Console/AppConsole.vala:355 +#: src/Console/AppConsole.vala:356 src/Console/AppConsole.vala:375 #: src/Gtk/MainWindow.vala:330 msgid "Install" msgstr "Instaliraj" -#: src/Console/OSDNotify.vala:66 -msgid "Show" -msgstr "" - -#: src/Gtk/AppGtk.vala:153 +#: src/Gtk/AppGtk.vala:158 msgid "Print debug information" msgstr "Ispiši informacije otklanjanja grešaka" -#: src/Gtk/AppGtk.vala:154 +#: src/Gtk/AppGtk.vala:159 msgid "Show all options" msgstr "Prikaži sve mogućnosti" @@ -364,7 +364,7 @@ msgstr "" msgid "Changes" msgstr "Promjene" -#: src/Gtk/MainWindow.vala:435 src/Gtk/SettingsDialog.vala:52 +#: src/Gtk/MainWindow.vala:435 src/Gtk/SettingsDialog.vala:51 msgid "Settings" msgstr "Postavke" @@ -408,68 +408,68 @@ msgstr "Instalirano" msgid "Cancel" msgstr "Odustani" -#: src/Gtk/SettingsDialog.vala:62 +#: src/Gtk/SettingsDialog.vala:61 msgid "Notification" msgstr "Obavijesti" -#: src/Gtk/SettingsDialog.vala:69 +#: src/Gtk/SettingsDialog.vala:68 msgid "Notify if a major release is available" msgstr "Obavijesti kada je glavno izdanje dostupno" -#: src/Gtk/SettingsDialog.vala:80 +#: src/Gtk/SettingsDialog.vala:79 msgid "Notify if a point release is available" msgstr "Obavijesti kada je pojedino izdanje dostupno" -#: src/Gtk/SettingsDialog.vala:91 +#: src/Gtk/SettingsDialog.vala:90 msgid "Show notification bubble on desktop" msgstr "Prikaži mjehurić obavijesti radne površine" -#: src/Gtk/SettingsDialog.vala:102 +#: src/Gtk/SettingsDialog.vala:101 msgid "(Allowing intervals in seconds for --debug)" msgstr "" -#: src/Gtk/SettingsDialog.vala:112 +#: src/Gtk/SettingsDialog.vala:111 msgid "Check every" msgstr "Provjeri svaka" -#: src/Gtk/SettingsDialog.vala:145 +#: src/Gtk/SettingsDialog.vala:144 msgid "Hour(s)" msgstr "Sat(a)" -#: src/Gtk/SettingsDialog.vala:147 +#: src/Gtk/SettingsDialog.vala:146 msgid "Day(s)" msgstr "Dan(a)" -#: src/Gtk/SettingsDialog.vala:149 +#: src/Gtk/SettingsDialog.vala:148 msgid "Week(s)" msgstr "Tjedan(a)" -#: src/Gtk/SettingsDialog.vala:152 +#: src/Gtk/SettingsDialog.vala:151 msgid "Second(s)" msgstr "" -#: src/Gtk/SettingsDialog.vala:158 +#: src/Gtk/SettingsDialog.vala:157 msgid "Display" msgstr "Prikaz" -#: src/Gtk/SettingsDialog.vala:166 +#: src/Gtk/SettingsDialog.vala:165 msgid "Hide unstable and RC releases" msgstr "Sakrij nestabilne kernele i predizdanja" -#: src/Gtk/SettingsDialog.vala:180 +#: src/Gtk/SettingsDialog.vala:179 msgid "Show N previous major versions " msgstr "" -#: src/Gtk/SettingsDialog.vala:195 +#: src/Gtk/SettingsDialog.vala:194 msgid "Other" msgstr "" -#: src/Gtk/SettingsDialog.vala:203 +#: src/Gtk/SettingsDialog.vala:202 #, fuzzy msgid "Skip internet connection check" msgstr "Internet povezivanje nije aktivno" -#: src/Gtk/SettingsDialog.vala:216 +#: src/Gtk/SettingsDialog.vala:215 #, fuzzy msgid "Internet connection timeout in " msgstr "Internet povezivanje nije aktivno" @@ -478,6 +478,10 @@ msgstr "Internet povezivanje nije aktivno" msgid "seconds" msgstr "" +#: src/Gtk/SettingsDialog.vala:237 +msgid "Max concurrent downloads" +msgstr "" + #: src/Gtk/TerminalWindow.vala:159 src/Utility/Gtk/AboutWindow.vala:294 msgid "Close" msgstr "Zatvori" diff --git a/po/messages.pot b/po/messages.pot index 083a6277..3e647c05 100644 --- a/po/messages.pot +++ b/po/messages.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline 1.0.9\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-19 05:14-0400\n" +"POT-Creation-Date: 2020-05-19 17:20-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -29,120 +29,120 @@ msgstr "" msgid "Fetching index..." msgstr "" -#: src/Common/LinuxKernel.vala:341 +#: src/Common/LinuxKernel.vala:342 msgid "Fetching index from kernel.ubuntu.com..." msgstr "" -#: src/Common/LinuxKernel.vala:598 +#: src/Common/LinuxKernel.vala:601 msgid "Could not find running kernel in list!" msgstr "" -#: src/Common/LinuxKernel.vala:604 +#: src/Common/LinuxKernel.vala:607 msgid "Could not find any kernels to remove" msgstr "" -#: src/Common/LinuxKernel.vala:613 +#: src/Common/LinuxKernel.vala:616 msgid "The following kernels will be removed:" msgstr "" -#: src/Common/LinuxKernel.vala:620 +#: src/Common/LinuxKernel.vala:623 msgid "Continue ?" msgstr "" -#: src/Common/LinuxKernel.vala:644 src/Console/AppConsole.vala:302 +#: src/Common/LinuxKernel.vala:648 src/Console/AppConsole.vala:307 msgid "Latest update" msgstr "" -#: src/Common/LinuxKernel.vala:655 src/Console/AppConsole.vala:309 +#: src/Common/LinuxKernel.vala:659 src/Console/AppConsole.vala:314 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:663 src/Console/AppConsole.vala:314 -#: src/Console/AppConsole.vala:364 +#: src/Common/LinuxKernel.vala:667 src/Console/AppConsole.vala:319 +#: src/Console/AppConsole.vala:384 msgid "No updates found" msgstr "" -#: src/Common/LinuxKernel.vala:673 +#: src/Common/LinuxKernel.vala:677 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "" -#: src/Common/LinuxKernel.vala:935 +#: src/Common/LinuxKernel.vala:939 msgid "Packages Available" msgstr "" -#: src/Common/LinuxKernel.vala:943 +#: src/Common/LinuxKernel.vala:947 msgid "Packages Installed" msgstr "" -#: src/Common/LinuxKernel.vala:1026 +#: src/Common/LinuxKernel.vala:1030 msgid "Available Kernels" msgstr "" -#: src/Common/LinuxKernel.vala:1033 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1037 src/Gtk/MainWindow.vala:186 msgid "Installed" msgstr "" -#: src/Common/LinuxKernel.vala:1033 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1037 src/Gtk/MainWindow.vala:186 #: src/Gtk/MainWindow.vala:625 src/Gtk/MainWindow.vala:639 msgid "Running" msgstr "" -#: src/Common/LinuxKernel.vala:1070 +#: src/Common/LinuxKernel.vala:1074 msgid "Downloading" msgstr "" -#: src/Common/LinuxKernel.vala:1089 +#: src/Common/LinuxKernel.vala:1093 #: src/Utility/Gtk/CustomMessageDialog.vala:148 #: src/Utility/Gtk/CustomMessageDialog.vala:152 msgid "OK" msgstr "" -#: src/Common/LinuxKernel.vala:1094 +#: src/Common/LinuxKernel.vala:1098 msgid "ERROR" msgstr "" -#: src/Common/LinuxKernel.vala:1108 src/Gtk/MainWindow.vala:647 +#: src/Common/LinuxKernel.vala:1112 src/Gtk/MainWindow.vala:647 msgid "This kernel is already installed." msgstr "" -#: src/Common/LinuxKernel.vala:1134 +#: src/Common/LinuxKernel.vala:1138 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" -#: src/Common/LinuxKernel.vala:1137 +#: src/Common/LinuxKernel.vala:1141 msgid "Installation completed with errors" msgstr "" -#: src/Common/LinuxKernel.vala:1152 +#: src/Common/LinuxKernel.vala:1156 msgid "" "Selected kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." msgstr "" -#: src/Common/LinuxKernel.vala:1157 +#: src/Common/LinuxKernel.vala:1161 msgid "Preparing to remove selected kernels" msgstr "" -#: src/Common/LinuxKernel.vala:1188 src/Common/LinuxKernel.vala:1235 +#: src/Common/LinuxKernel.vala:1192 src/Common/LinuxKernel.vala:1239 msgid "Un-install completed" msgstr "" -#: src/Common/LinuxKernel.vala:1191 src/Common/LinuxKernel.vala:1238 +#: src/Common/LinuxKernel.vala:1195 src/Common/LinuxKernel.vala:1242 msgid "Un-install completed with errors" msgstr "" -#: src/Common/LinuxKernel.vala:1204 +#: src/Common/LinuxKernel.vala:1208 msgid "" "This kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." msgstr "" -#: src/Common/Main.vala:236 +#: src/Common/Main.vala:237 msgid "Called from" msgstr "" -#: src/Common/Main.vala:248 +#: src/Common/Main.vala:249 msgid "Notifications are disabled" msgstr "" @@ -151,7 +151,7 @@ msgstr "" msgid "File not found: %s" msgstr "" -#: src/Console/AppConsole.vala:62 src/Gtk/AppGtk.vala:149 +#: src/Console/AppConsole.vala:62 src/Gtk/AppGtk.vala:154 msgid "Syntax" msgstr "" @@ -207,7 +207,7 @@ msgstr "" msgid "Show unstable and RC releases" msgstr "" -#: src/Console/AppConsole.vala:79 src/Gtk/AppGtk.vala:151 +#: src/Console/AppConsole.vala:79 src/Gtk/AppGtk.vala:156 msgid "Options" msgstr "" @@ -232,62 +232,62 @@ msgid "" "One or more version strings (comma-separated) taken from the output of --list" msgstr "" -#: src/Console/AppConsole.vala:162 src/Gtk/AppGtk.vala:136 +#: src/Console/AppConsole.vala:166 src/Gtk/AppGtk.vala:141 msgid "Unknown option" msgstr "" -#: src/Console/AppConsole.vala:164 src/Console/AppConsole.vala:256 -#: src/Console/AppConsole.vala:284 +#: src/Console/AppConsole.vala:168 src/Console/AppConsole.vala:260 +#: src/Console/AppConsole.vala:288 msgid "Run" msgstr "" -#: src/Console/AppConsole.vala:164 +#: src/Console/AppConsole.vala:168 msgid "to list all options" msgstr "" -#: src/Console/AppConsole.vala:229 src/Console/AppConsole.vala:264 +#: src/Console/AppConsole.vala:233 src/Console/AppConsole.vala:268 msgid "No kernels specified" msgstr "" -#: src/Console/AppConsole.vala:235 +#: src/Console/AppConsole.vala:239 msgid "Multiple kernels selected for installation. Select only one." msgstr "" -#: src/Console/AppConsole.vala:253 src/Gtk/MainWindow.vala:100 +#: src/Console/AppConsole.vala:257 src/Gtk/MainWindow.vala:100 msgid "Could not find requested version" msgstr "" -#: src/Console/AppConsole.vala:256 +#: src/Console/AppConsole.vala:260 msgid "and use a version string listed in first column" msgstr "" -#: src/Console/AppConsole.vala:283 +#: src/Console/AppConsole.vala:287 msgid "Command not specified" msgstr "" -#: src/Console/AppConsole.vala:284 +#: src/Console/AppConsole.vala:288 msgid "to list all commands" msgstr "" -#: src/Console/AppConsole.vala:336 src/Console/AppConsole.vala:352 +#: src/Console/AppConsole.vala:349 +msgid "Show" +msgstr "" + +#: src/Console/AppConsole.vala:354 src/Console/AppConsole.vala:373 #, c-format msgid "Kernel %s Available" msgstr "" -#: src/Console/AppConsole.vala:339 src/Console/AppConsole.vala:355 +#: src/Console/AppConsole.vala:356 src/Console/AppConsole.vala:375 #: src/Gtk/MainWindow.vala:330 msgid "Install" msgstr "" -#: src/Console/OSDNotify.vala:66 -msgid "Show" -msgstr "" - -#: src/Gtk/AppGtk.vala:153 +#: src/Gtk/AppGtk.vala:158 msgid "Print debug information" msgstr "" -#: src/Gtk/AppGtk.vala:154 +#: src/Gtk/AppGtk.vala:159 msgid "Show all options" msgstr "" @@ -349,7 +349,7 @@ msgstr "" msgid "Changes" msgstr "" -#: src/Gtk/MainWindow.vala:435 src/Gtk/SettingsDialog.vala:52 +#: src/Gtk/MainWindow.vala:435 src/Gtk/SettingsDialog.vala:51 msgid "Settings" msgstr "" @@ -390,67 +390,67 @@ msgstr "" msgid "Cancel" msgstr "" -#: src/Gtk/SettingsDialog.vala:62 +#: src/Gtk/SettingsDialog.vala:61 msgid "Notification" msgstr "" -#: src/Gtk/SettingsDialog.vala:69 +#: src/Gtk/SettingsDialog.vala:68 msgid "Notify if a major release is available" msgstr "" -#: src/Gtk/SettingsDialog.vala:80 +#: src/Gtk/SettingsDialog.vala:79 msgid "Notify if a point release is available" msgstr "" -#: src/Gtk/SettingsDialog.vala:91 +#: src/Gtk/SettingsDialog.vala:90 msgid "Show notification bubble on desktop" msgstr "" -#: src/Gtk/SettingsDialog.vala:102 +#: src/Gtk/SettingsDialog.vala:101 msgid "(Allowing intervals in seconds for --debug)" msgstr "" -#: src/Gtk/SettingsDialog.vala:112 +#: src/Gtk/SettingsDialog.vala:111 msgid "Check every" msgstr "" -#: src/Gtk/SettingsDialog.vala:145 +#: src/Gtk/SettingsDialog.vala:144 msgid "Hour(s)" msgstr "" -#: src/Gtk/SettingsDialog.vala:147 +#: src/Gtk/SettingsDialog.vala:146 msgid "Day(s)" msgstr "" -#: src/Gtk/SettingsDialog.vala:149 +#: src/Gtk/SettingsDialog.vala:148 msgid "Week(s)" msgstr "" -#: src/Gtk/SettingsDialog.vala:152 +#: src/Gtk/SettingsDialog.vala:151 msgid "Second(s)" msgstr "" -#: src/Gtk/SettingsDialog.vala:158 +#: src/Gtk/SettingsDialog.vala:157 msgid "Display" msgstr "" -#: src/Gtk/SettingsDialog.vala:166 +#: src/Gtk/SettingsDialog.vala:165 msgid "Hide unstable and RC releases" msgstr "" -#: src/Gtk/SettingsDialog.vala:180 +#: src/Gtk/SettingsDialog.vala:179 msgid "Show N previous major versions " msgstr "" -#: src/Gtk/SettingsDialog.vala:195 +#: src/Gtk/SettingsDialog.vala:194 msgid "Other" msgstr "" -#: src/Gtk/SettingsDialog.vala:203 +#: src/Gtk/SettingsDialog.vala:202 msgid "Skip internet connection check" msgstr "" -#: src/Gtk/SettingsDialog.vala:216 +#: src/Gtk/SettingsDialog.vala:215 msgid "Internet connection timeout in " msgstr "" @@ -458,6 +458,10 @@ msgstr "" msgid "seconds" msgstr "" +#: src/Gtk/SettingsDialog.vala:237 +msgid "Max concurrent downloads" +msgstr "" + #: src/Gtk/TerminalWindow.vala:159 src/Utility/Gtk/AboutWindow.vala:294 msgid "Close" msgstr "" diff --git a/po/nl.po b/po/nl.po index 24116139..1b5706df 100644 --- a/po/nl.po +++ b/po/nl.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-18 20:12-0400\n" +"POT-Creation-Date: 2020-05-19 17:20-0400\n" "PO-Revision-Date: 2017-04-30 11:50+0200\n" "Last-Translator: Heimen Stoffels \n" "Language-Team: \n" @@ -26,96 +26,96 @@ msgstr "Systeemarchitectuur" msgid "Fetching index..." msgstr "" -#: src/Common/LinuxKernel.vala:341 +#: src/Common/LinuxKernel.vala:342 msgid "Fetching index from kernel.ubuntu.com..." msgstr "Bezig met ophalen van index van kernel.ubuntu.com..." -#: src/Common/LinuxKernel.vala:598 +#: src/Common/LinuxKernel.vala:601 #, fuzzy msgid "Could not find running kernel in list!" msgstr "De vereiste versie kan niet worden gevonden" -#: src/Common/LinuxKernel.vala:604 +#: src/Common/LinuxKernel.vala:607 #, fuzzy msgid "Could not find any kernels to remove" msgstr "Selecteer de te verwijderen kernels" -#: src/Common/LinuxKernel.vala:613 +#: src/Common/LinuxKernel.vala:616 msgid "The following kernels will be removed:" msgstr "" -#: src/Common/LinuxKernel.vala:620 +#: src/Common/LinuxKernel.vala:623 msgid "Continue ?" msgstr "" -#: src/Common/LinuxKernel.vala:644 src/Console/AppConsole.vala:302 +#: src/Common/LinuxKernel.vala:648 src/Console/AppConsole.vala:307 msgid "Latest update" msgstr "" -#: src/Common/LinuxKernel.vala:655 src/Console/AppConsole.vala:309 +#: src/Common/LinuxKernel.vala:659 src/Console/AppConsole.vala:314 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:663 src/Console/AppConsole.vala:314 -#: src/Console/AppConsole.vala:364 +#: src/Common/LinuxKernel.vala:667 src/Console/AppConsole.vala:319 +#: src/Console/AppConsole.vala:384 msgid "No updates found" msgstr "Geen updates gevonden" -#: src/Common/LinuxKernel.vala:673 +#: src/Common/LinuxKernel.vala:677 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "" -#: src/Common/LinuxKernel.vala:935 +#: src/Common/LinuxKernel.vala:939 msgid "Packages Available" msgstr "Beschikbare pakketten" -#: src/Common/LinuxKernel.vala:943 +#: src/Common/LinuxKernel.vala:947 msgid "Packages Installed" msgstr "Geïnstalleerde pakketten" -#: src/Common/LinuxKernel.vala:1026 +#: src/Common/LinuxKernel.vala:1030 msgid "Available Kernels" msgstr "Beschikbare kernels" -#: src/Common/LinuxKernel.vala:1033 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1037 src/Gtk/MainWindow.vala:186 msgid "Installed" msgstr "Geïnstalleerd" -#: src/Common/LinuxKernel.vala:1033 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1037 src/Gtk/MainWindow.vala:186 #: src/Gtk/MainWindow.vala:625 src/Gtk/MainWindow.vala:639 msgid "Running" msgstr "Bezig met draaien" -#: src/Common/LinuxKernel.vala:1070 +#: src/Common/LinuxKernel.vala:1074 msgid "Downloading" msgstr "Bezig met downloaden" -#: src/Common/LinuxKernel.vala:1089 +#: src/Common/LinuxKernel.vala:1093 #: src/Utility/Gtk/CustomMessageDialog.vala:148 #: src/Utility/Gtk/CustomMessageDialog.vala:152 msgid "OK" msgstr "Oké" -#: src/Common/LinuxKernel.vala:1094 +#: src/Common/LinuxKernel.vala:1098 msgid "ERROR" msgstr "FOUT" -#: src/Common/LinuxKernel.vala:1108 src/Gtk/MainWindow.vala:647 +#: src/Common/LinuxKernel.vala:1112 src/Gtk/MainWindow.vala:647 msgid "This kernel is already installed." msgstr "Deze kernel is al geïnstalleerd." -#: src/Common/LinuxKernel.vala:1134 +#: src/Common/LinuxKernel.vala:1138 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "De installatie is voltooid. Herstart de computer om de nieuwe kernel te " "gebruiken." -#: src/Common/LinuxKernel.vala:1137 +#: src/Common/LinuxKernel.vala:1141 msgid "Installation completed with errors" msgstr "De installatie is foutloos voltooid" -#: src/Common/LinuxKernel.vala:1152 +#: src/Common/LinuxKernel.vala:1156 msgid "" "Selected kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -124,19 +124,19 @@ msgstr "" "verwijderd.\n" " Installeer een andere kernel voordat u deze verwijdert." -#: src/Common/LinuxKernel.vala:1157 +#: src/Common/LinuxKernel.vala:1161 msgid "Preparing to remove selected kernels" msgstr "Bezig met voorbereiden van verwijderen van geselecteerde kernels" -#: src/Common/LinuxKernel.vala:1188 src/Common/LinuxKernel.vala:1235 +#: src/Common/LinuxKernel.vala:1192 src/Common/LinuxKernel.vala:1239 msgid "Un-install completed" msgstr "Deïnstalleren voltooid" -#: src/Common/LinuxKernel.vala:1191 src/Common/LinuxKernel.vala:1238 +#: src/Common/LinuxKernel.vala:1195 src/Common/LinuxKernel.vala:1242 msgid "Un-install completed with errors" msgstr "Deïnstalleren voltooid, maar met fouten" -#: src/Common/LinuxKernel.vala:1204 +#: src/Common/LinuxKernel.vala:1208 msgid "" "This kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -144,11 +144,11 @@ msgstr "" "Deze kernel is momenteel in gebruik en kan daarom niet worden verwijderd.\n" " Installeer een andere kernel voordat u deze verwijdert." -#: src/Common/Main.vala:236 +#: src/Common/Main.vala:237 msgid "Called from" msgstr "" -#: src/Common/Main.vala:248 +#: src/Common/Main.vala:249 #, fuzzy msgid "Notifications are disabled" msgstr "Melding" @@ -158,7 +158,7 @@ msgstr "Melding" msgid "File not found: %s" msgstr "Bestand niet gevonden: %s" -#: src/Console/AppConsole.vala:62 src/Gtk/AppGtk.vala:149 +#: src/Console/AppConsole.vala:62 src/Gtk/AppGtk.vala:154 msgid "Syntax" msgstr "Syntax" @@ -220,7 +220,7 @@ msgstr "Bestanden verwijderen uit applicatie-cache" msgid "Show unstable and RC releases" msgstr "Instabiele en RC-uitgaven verbergen" -#: src/Console/AppConsole.vala:79 src/Gtk/AppGtk.vala:151 +#: src/Console/AppConsole.vala:79 src/Gtk/AppGtk.vala:156 msgid "Options" msgstr "Opties" @@ -245,67 +245,67 @@ msgid "" "One or more version strings (comma-separated) taken from the output of --list" msgstr "" -#: src/Console/AppConsole.vala:162 src/Gtk/AppGtk.vala:136 +#: src/Console/AppConsole.vala:166 src/Gtk/AppGtk.vala:141 msgid "Unknown option" msgstr "Onbekende optie" -#: src/Console/AppConsole.vala:164 src/Console/AppConsole.vala:256 -#: src/Console/AppConsole.vala:284 +#: src/Console/AppConsole.vala:168 src/Console/AppConsole.vala:260 +#: src/Console/AppConsole.vala:288 #, fuzzy msgid "Run" msgstr "Bezig met draaien" -#: src/Console/AppConsole.vala:164 +#: src/Console/AppConsole.vala:168 #, fuzzy msgid "to list all options" msgstr "Alle opties weergeven" -#: src/Console/AppConsole.vala:229 src/Console/AppConsole.vala:264 +#: src/Console/AppConsole.vala:233 src/Console/AppConsole.vala:268 msgid "No kernels specified" msgstr "" -#: src/Console/AppConsole.vala:235 +#: src/Console/AppConsole.vala:239 msgid "Multiple kernels selected for installation. Select only one." msgstr "" "Er zijn meerdere te installeren kernels geselecteerd. Selecteer er slechts " "één." -#: src/Console/AppConsole.vala:253 src/Gtk/MainWindow.vala:100 +#: src/Console/AppConsole.vala:257 src/Gtk/MainWindow.vala:100 msgid "Could not find requested version" msgstr "De vereiste versie kan niet worden gevonden" -#: src/Console/AppConsole.vala:256 +#: src/Console/AppConsole.vala:260 msgid "and use a version string listed in first column" msgstr "" -#: src/Console/AppConsole.vala:283 +#: src/Console/AppConsole.vala:287 msgid "Command not specified" msgstr "" -#: src/Console/AppConsole.vala:284 +#: src/Console/AppConsole.vala:288 #, fuzzy msgid "to list all commands" msgstr "Alle opties weergeven" -#: src/Console/AppConsole.vala:336 src/Console/AppConsole.vala:352 +#: src/Console/AppConsole.vala:349 +msgid "Show" +msgstr "" + +#: src/Console/AppConsole.vala:354 src/Console/AppConsole.vala:373 #, fuzzy, c-format msgid "Kernel %s Available" msgstr "Beschikbare pakketten" -#: src/Console/AppConsole.vala:339 src/Console/AppConsole.vala:355 +#: src/Console/AppConsole.vala:356 src/Console/AppConsole.vala:375 #: src/Gtk/MainWindow.vala:330 msgid "Install" msgstr "Installeren" -#: src/Console/OSDNotify.vala:66 -msgid "Show" -msgstr "" - -#: src/Gtk/AppGtk.vala:153 +#: src/Gtk/AppGtk.vala:158 msgid "Print debug information" msgstr "Foutopsporingsinformatie printen" -#: src/Gtk/AppGtk.vala:154 +#: src/Gtk/AppGtk.vala:159 msgid "Show all options" msgstr "Alle opties weergeven" @@ -367,7 +367,7 @@ msgstr "" msgid "Changes" msgstr "Wijzigingen" -#: src/Gtk/MainWindow.vala:435 src/Gtk/SettingsDialog.vala:52 +#: src/Gtk/MainWindow.vala:435 src/Gtk/SettingsDialog.vala:51 msgid "Settings" msgstr "Instellingen" @@ -411,68 +411,68 @@ msgstr "Geïnstalleerd" msgid "Cancel" msgstr "Annuleren" -#: src/Gtk/SettingsDialog.vala:62 +#: src/Gtk/SettingsDialog.vala:61 msgid "Notification" msgstr "Melding" -#: src/Gtk/SettingsDialog.vala:69 +#: src/Gtk/SettingsDialog.vala:68 msgid "Notify if a major release is available" msgstr "Melding weergeven als er een grote update beschikbaar is" -#: src/Gtk/SettingsDialog.vala:80 +#: src/Gtk/SettingsDialog.vala:79 msgid "Notify if a point release is available" msgstr "Melding weergeven als er een puntupdate beschikbaar is" -#: src/Gtk/SettingsDialog.vala:91 +#: src/Gtk/SettingsDialog.vala:90 msgid "Show notification bubble on desktop" msgstr "Bureaubladmelding weergeven" -#: src/Gtk/SettingsDialog.vala:102 +#: src/Gtk/SettingsDialog.vala:101 msgid "(Allowing intervals in seconds for --debug)" msgstr "" -#: src/Gtk/SettingsDialog.vala:112 +#: src/Gtk/SettingsDialog.vala:111 msgid "Check every" msgstr "Controleer elke" -#: src/Gtk/SettingsDialog.vala:145 +#: src/Gtk/SettingsDialog.vala:144 msgid "Hour(s)" msgstr "uur" -#: src/Gtk/SettingsDialog.vala:147 +#: src/Gtk/SettingsDialog.vala:146 msgid "Day(s)" msgstr "dag(en)" -#: src/Gtk/SettingsDialog.vala:149 +#: src/Gtk/SettingsDialog.vala:148 msgid "Week(s)" msgstr "we(e)k(en)" -#: src/Gtk/SettingsDialog.vala:152 +#: src/Gtk/SettingsDialog.vala:151 msgid "Second(s)" msgstr "" -#: src/Gtk/SettingsDialog.vala:158 +#: src/Gtk/SettingsDialog.vala:157 msgid "Display" msgstr "Weergave" -#: src/Gtk/SettingsDialog.vala:166 +#: src/Gtk/SettingsDialog.vala:165 msgid "Hide unstable and RC releases" msgstr "Instabiele en RC-uitgaven verbergen" -#: src/Gtk/SettingsDialog.vala:180 +#: src/Gtk/SettingsDialog.vala:179 msgid "Show N previous major versions " msgstr "" -#: src/Gtk/SettingsDialog.vala:195 +#: src/Gtk/SettingsDialog.vala:194 msgid "Other" msgstr "" -#: src/Gtk/SettingsDialog.vala:203 +#: src/Gtk/SettingsDialog.vala:202 #, fuzzy msgid "Skip internet connection check" msgstr "U bent niet verbonden met het internet" -#: src/Gtk/SettingsDialog.vala:216 +#: src/Gtk/SettingsDialog.vala:215 #, fuzzy msgid "Internet connection timeout in " msgstr "U bent niet verbonden met het internet" @@ -481,6 +481,10 @@ msgstr "U bent niet verbonden met het internet" msgid "seconds" msgstr "" +#: src/Gtk/SettingsDialog.vala:237 +msgid "Max concurrent downloads" +msgstr "" + #: src/Gtk/TerminalWindow.vala:159 src/Utility/Gtk/AboutWindow.vala:294 msgid "Close" msgstr "Sluiten" diff --git a/po/pl.po b/po/pl.po index 18abc5bb..33b0325e 100644 --- a/po/pl.po +++ b/po/pl.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-18 20:12-0400\n" +"POT-Creation-Date: 2020-05-19 17:20-0400\n" "PO-Revision-Date: 2017-08-12 15:26+0200\n" "Last-Translator: Waldemar Konik \n" "Language-Team: Polish\n" @@ -25,96 +25,96 @@ msgstr "Architektura systemu" msgid "Fetching index..." msgstr "" -#: src/Common/LinuxKernel.vala:341 +#: src/Common/LinuxKernel.vala:342 msgid "Fetching index from kernel.ubuntu.com..." msgstr "Pobieranie indeksu z kernel.ubuntu.com..." -#: src/Common/LinuxKernel.vala:598 +#: src/Common/LinuxKernel.vala:601 #, fuzzy msgid "Could not find running kernel in list!" msgstr "Nie można odnaleźć żądanej wersji" -#: src/Common/LinuxKernel.vala:604 +#: src/Common/LinuxKernel.vala:607 #, fuzzy msgid "Could not find any kernels to remove" msgstr "Wybierz jądro do usunięcia" -#: src/Common/LinuxKernel.vala:613 +#: src/Common/LinuxKernel.vala:616 msgid "The following kernels will be removed:" msgstr "" -#: src/Common/LinuxKernel.vala:620 +#: src/Common/LinuxKernel.vala:623 msgid "Continue ?" msgstr "" -#: src/Common/LinuxKernel.vala:644 src/Console/AppConsole.vala:302 +#: src/Common/LinuxKernel.vala:648 src/Console/AppConsole.vala:307 msgid "Latest update" msgstr "" -#: src/Common/LinuxKernel.vala:655 src/Console/AppConsole.vala:309 +#: src/Common/LinuxKernel.vala:659 src/Console/AppConsole.vala:314 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:663 src/Console/AppConsole.vala:314 -#: src/Console/AppConsole.vala:364 +#: src/Common/LinuxKernel.vala:667 src/Console/AppConsole.vala:319 +#: src/Console/AppConsole.vala:384 msgid "No updates found" msgstr "Nie znaleziono aktualizacji" -#: src/Common/LinuxKernel.vala:673 +#: src/Common/LinuxKernel.vala:677 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "" -#: src/Common/LinuxKernel.vala:935 +#: src/Common/LinuxKernel.vala:939 msgid "Packages Available" msgstr "Dostępne pakiety" -#: src/Common/LinuxKernel.vala:943 +#: src/Common/LinuxKernel.vala:947 msgid "Packages Installed" msgstr "Pakiety zainstalowane" -#: src/Common/LinuxKernel.vala:1026 +#: src/Common/LinuxKernel.vala:1030 msgid "Available Kernels" msgstr "Dostępne jądra" -#: src/Common/LinuxKernel.vala:1033 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1037 src/Gtk/MainWindow.vala:186 msgid "Installed" msgstr "Zainstalowany" -#: src/Common/LinuxKernel.vala:1033 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1037 src/Gtk/MainWindow.vala:186 #: src/Gtk/MainWindow.vala:625 src/Gtk/MainWindow.vala:639 msgid "Running" msgstr "Uruchomiony" -#: src/Common/LinuxKernel.vala:1070 +#: src/Common/LinuxKernel.vala:1074 msgid "Downloading" msgstr "Pobieranie" -#: src/Common/LinuxKernel.vala:1089 +#: src/Common/LinuxKernel.vala:1093 #: src/Utility/Gtk/CustomMessageDialog.vala:148 #: src/Utility/Gtk/CustomMessageDialog.vala:152 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:1094 +#: src/Common/LinuxKernel.vala:1098 msgid "ERROR" msgstr "BŁĄD" -#: src/Common/LinuxKernel.vala:1108 src/Gtk/MainWindow.vala:647 +#: src/Common/LinuxKernel.vala:1112 src/Gtk/MainWindow.vala:647 msgid "This kernel is already installed." msgstr "To jądro jest już zainstalowane." -#: src/Common/LinuxKernel.vala:1134 +#: src/Common/LinuxKernel.vala:1138 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "Instalacja zakończona. Aby korzystać z nowego jądra, konieczne jest ponowne " "uruchomienie." -#: src/Common/LinuxKernel.vala:1137 +#: src/Common/LinuxKernel.vala:1141 msgid "Installation completed with errors" msgstr "Instalacja zakończona z błędami" -#: src/Common/LinuxKernel.vala:1152 +#: src/Common/LinuxKernel.vala:1156 msgid "" "Selected kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -122,19 +122,19 @@ msgstr "" "Wybrane jądro aktualnie działa i nie może zostać usunięte.\n" " Zainstaluj inne jądro przed usunięciem tego." -#: src/Common/LinuxKernel.vala:1157 +#: src/Common/LinuxKernel.vala:1161 msgid "Preparing to remove selected kernels" msgstr "Przygotowanie do usunięcia wybranych jąder" -#: src/Common/LinuxKernel.vala:1188 src/Common/LinuxKernel.vala:1235 +#: src/Common/LinuxKernel.vala:1192 src/Common/LinuxKernel.vala:1239 msgid "Un-install completed" msgstr "De-instalacja zakończona" -#: src/Common/LinuxKernel.vala:1191 src/Common/LinuxKernel.vala:1238 +#: src/Common/LinuxKernel.vala:1195 src/Common/LinuxKernel.vala:1242 msgid "Un-install completed with errors" msgstr "De-instalacja zakończona z błędami" -#: src/Common/LinuxKernel.vala:1204 +#: src/Common/LinuxKernel.vala:1208 msgid "" "This kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -142,11 +142,11 @@ msgstr "" "To jądro aktualnie działa i nie może zostać usunięte.\n" " Zainstaluj inne jądro przed usunięciem tego." -#: src/Common/Main.vala:236 +#: src/Common/Main.vala:237 msgid "Called from" msgstr "" -#: src/Common/Main.vala:248 +#: src/Common/Main.vala:249 #, fuzzy msgid "Notifications are disabled" msgstr "Powiadomienia" @@ -156,7 +156,7 @@ msgstr "Powiadomienia" msgid "File not found: %s" msgstr "Nie odnaleziono pliku: %s" -#: src/Console/AppConsole.vala:62 src/Gtk/AppGtk.vala:149 +#: src/Console/AppConsole.vala:62 src/Gtk/AppGtk.vala:154 msgid "Syntax" msgstr "Składnia" @@ -218,7 +218,7 @@ msgstr "Usuń pliki z pamięci podręcznej aplikacji" msgid "Show unstable and RC releases" msgstr "Ukryj wydania niestabilne i RC" -#: src/Console/AppConsole.vala:79 src/Gtk/AppGtk.vala:151 +#: src/Console/AppConsole.vala:79 src/Gtk/AppGtk.vala:156 msgid "Options" msgstr "Opcje" @@ -243,65 +243,65 @@ msgid "" "One or more version strings (comma-separated) taken from the output of --list" msgstr "" -#: src/Console/AppConsole.vala:162 src/Gtk/AppGtk.vala:136 +#: src/Console/AppConsole.vala:166 src/Gtk/AppGtk.vala:141 msgid "Unknown option" msgstr "Nieznana opcja" -#: src/Console/AppConsole.vala:164 src/Console/AppConsole.vala:256 -#: src/Console/AppConsole.vala:284 +#: src/Console/AppConsole.vala:168 src/Console/AppConsole.vala:260 +#: src/Console/AppConsole.vala:288 #, fuzzy msgid "Run" msgstr "Uruchomiony" -#: src/Console/AppConsole.vala:164 +#: src/Console/AppConsole.vala:168 #, fuzzy msgid "to list all options" msgstr "Pokaż wszystkie opcje" -#: src/Console/AppConsole.vala:229 src/Console/AppConsole.vala:264 +#: src/Console/AppConsole.vala:233 src/Console/AppConsole.vala:268 msgid "No kernels specified" msgstr "" -#: src/Console/AppConsole.vala:235 +#: src/Console/AppConsole.vala:239 msgid "Multiple kernels selected for installation. Select only one." msgstr "Wybrano kilka jąder do instalacji. Wybierz tylko jedno." -#: src/Console/AppConsole.vala:253 src/Gtk/MainWindow.vala:100 +#: src/Console/AppConsole.vala:257 src/Gtk/MainWindow.vala:100 msgid "Could not find requested version" msgstr "Nie można odnaleźć żądanej wersji" -#: src/Console/AppConsole.vala:256 +#: src/Console/AppConsole.vala:260 msgid "and use a version string listed in first column" msgstr "" -#: src/Console/AppConsole.vala:283 +#: src/Console/AppConsole.vala:287 msgid "Command not specified" msgstr "" -#: src/Console/AppConsole.vala:284 +#: src/Console/AppConsole.vala:288 #, fuzzy msgid "to list all commands" msgstr "Pokaż wszystkie opcje" -#: src/Console/AppConsole.vala:336 src/Console/AppConsole.vala:352 +#: src/Console/AppConsole.vala:349 +msgid "Show" +msgstr "" + +#: src/Console/AppConsole.vala:354 src/Console/AppConsole.vala:373 #, fuzzy, c-format msgid "Kernel %s Available" msgstr "Dostępne pakiety" -#: src/Console/AppConsole.vala:339 src/Console/AppConsole.vala:355 +#: src/Console/AppConsole.vala:356 src/Console/AppConsole.vala:375 #: src/Gtk/MainWindow.vala:330 msgid "Install" msgstr "Zainstaluj" -#: src/Console/OSDNotify.vala:66 -msgid "Show" -msgstr "" - -#: src/Gtk/AppGtk.vala:153 +#: src/Gtk/AppGtk.vala:158 msgid "Print debug information" msgstr "Wypisz informacje debugujące" -#: src/Gtk/AppGtk.vala:154 +#: src/Gtk/AppGtk.vala:159 msgid "Show all options" msgstr "Pokaż wszystkie opcje" @@ -363,7 +363,7 @@ msgstr "" msgid "Changes" msgstr "Zmiany" -#: src/Gtk/MainWindow.vala:435 src/Gtk/SettingsDialog.vala:52 +#: src/Gtk/MainWindow.vala:435 src/Gtk/SettingsDialog.vala:51 msgid "Settings" msgstr "Ustawienia" @@ -407,68 +407,68 @@ msgstr "Zainstalowany" msgid "Cancel" msgstr "Anuluj" -#: src/Gtk/SettingsDialog.vala:62 +#: src/Gtk/SettingsDialog.vala:61 msgid "Notification" msgstr "Powiadomienia" -#: src/Gtk/SettingsDialog.vala:69 +#: src/Gtk/SettingsDialog.vala:68 msgid "Notify if a major release is available" msgstr "Powiadom, jeśli pojawi się główna wersja" -#: src/Gtk/SettingsDialog.vala:80 +#: src/Gtk/SettingsDialog.vala:79 msgid "Notify if a point release is available" msgstr "Powiadom, jeśli pojawi się wersja punktowa" -#: src/Gtk/SettingsDialog.vala:91 +#: src/Gtk/SettingsDialog.vala:90 msgid "Show notification bubble on desktop" msgstr "Pokaż powiadomienia na pulpicie" -#: src/Gtk/SettingsDialog.vala:102 +#: src/Gtk/SettingsDialog.vala:101 msgid "(Allowing intervals in seconds for --debug)" msgstr "" -#: src/Gtk/SettingsDialog.vala:112 +#: src/Gtk/SettingsDialog.vala:111 msgid "Check every" msgstr "Sprawdzaj co" -#: src/Gtk/SettingsDialog.vala:145 +#: src/Gtk/SettingsDialog.vala:144 msgid "Hour(s)" msgstr "Godzin(y)" -#: src/Gtk/SettingsDialog.vala:147 +#: src/Gtk/SettingsDialog.vala:146 msgid "Day(s)" msgstr "Dni" -#: src/Gtk/SettingsDialog.vala:149 +#: src/Gtk/SettingsDialog.vala:148 msgid "Week(s)" msgstr "Tygodni" -#: src/Gtk/SettingsDialog.vala:152 +#: src/Gtk/SettingsDialog.vala:151 msgid "Second(s)" msgstr "" -#: src/Gtk/SettingsDialog.vala:158 +#: src/Gtk/SettingsDialog.vala:157 msgid "Display" msgstr "Pokaż" -#: src/Gtk/SettingsDialog.vala:166 +#: src/Gtk/SettingsDialog.vala:165 msgid "Hide unstable and RC releases" msgstr "Ukryj wydania niestabilne i RC" -#: src/Gtk/SettingsDialog.vala:180 +#: src/Gtk/SettingsDialog.vala:179 msgid "Show N previous major versions " msgstr "" -#: src/Gtk/SettingsDialog.vala:195 +#: src/Gtk/SettingsDialog.vala:194 msgid "Other" msgstr "" -#: src/Gtk/SettingsDialog.vala:203 +#: src/Gtk/SettingsDialog.vala:202 #, fuzzy msgid "Skip internet connection check" msgstr "Brak połączenia z internetem" -#: src/Gtk/SettingsDialog.vala:216 +#: src/Gtk/SettingsDialog.vala:215 #, fuzzy msgid "Internet connection timeout in " msgstr "Brak połączenia z internetem" @@ -477,6 +477,10 @@ msgstr "Brak połączenia z internetem" msgid "seconds" msgstr "" +#: src/Gtk/SettingsDialog.vala:237 +msgid "Max concurrent downloads" +msgstr "" + #: src/Gtk/TerminalWindow.vala:159 src/Utility/Gtk/AboutWindow.vala:294 msgid "Close" msgstr "Zamknij" diff --git a/po/ru.po b/po/ru.po index ce42b39a..a8dc9cb7 100644 --- a/po/ru.po +++ b/po/ru.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-18 20:12-0400\n" +"POT-Creation-Date: 2020-05-19 17:20-0400\n" "PO-Revision-Date: 2016-12-13 16:46+0300\n" "Last-Translator: Faust3000 \n" "Language-Team: Russian \n" @@ -26,98 +26,98 @@ msgstr "Системная архитектура" msgid "Fetching index..." msgstr "" -#: src/Common/LinuxKernel.vala:341 +#: src/Common/LinuxKernel.vala:342 msgid "Fetching index from kernel.ubuntu.com..." msgstr "Получение сведений с kernel.ubuntu.com..." -#: src/Common/LinuxKernel.vala:598 +#: src/Common/LinuxKernel.vala:601 #, fuzzy msgid "Could not find running kernel in list!" msgstr "Не удалось найти запрошенную версию" -#: src/Common/LinuxKernel.vala:604 +#: src/Common/LinuxKernel.vala:607 #, fuzzy msgid "Could not find any kernels to remove" msgstr "Не удалось найти запрошенную версию" -#: src/Common/LinuxKernel.vala:613 +#: src/Common/LinuxKernel.vala:616 msgid "The following kernels will be removed:" msgstr "" -#: src/Common/LinuxKernel.vala:620 +#: src/Common/LinuxKernel.vala:623 msgid "Continue ?" msgstr "" -#: src/Common/LinuxKernel.vala:644 src/Console/AppConsole.vala:302 +#: src/Common/LinuxKernel.vala:648 src/Console/AppConsole.vala:307 msgid "Latest update" msgstr "" -#: src/Common/LinuxKernel.vala:655 src/Console/AppConsole.vala:309 +#: src/Common/LinuxKernel.vala:659 src/Console/AppConsole.vala:314 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:663 src/Console/AppConsole.vala:314 -#: src/Console/AppConsole.vala:364 +#: src/Common/LinuxKernel.vala:667 src/Console/AppConsole.vala:319 +#: src/Console/AppConsole.vala:384 msgid "No updates found" msgstr "Обновлений не найдено" -#: src/Common/LinuxKernel.vala:673 +#: src/Common/LinuxKernel.vala:677 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "" -#: src/Common/LinuxKernel.vala:935 +#: src/Common/LinuxKernel.vala:939 #, fuzzy msgid "Packages Available" msgstr "Установлено" -#: src/Common/LinuxKernel.vala:943 +#: src/Common/LinuxKernel.vala:947 #, fuzzy msgid "Packages Installed" msgstr "Установлено" -#: src/Common/LinuxKernel.vala:1026 +#: src/Common/LinuxKernel.vala:1030 msgid "Available Kernels" msgstr "Доступные ядра" -#: src/Common/LinuxKernel.vala:1033 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1037 src/Gtk/MainWindow.vala:186 msgid "Installed" msgstr "Установлено" -#: src/Common/LinuxKernel.vala:1033 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1037 src/Gtk/MainWindow.vala:186 #: src/Gtk/MainWindow.vala:625 src/Gtk/MainWindow.vala:639 msgid "Running" msgstr "Используется" -#: src/Common/LinuxKernel.vala:1070 +#: src/Common/LinuxKernel.vala:1074 msgid "Downloading" msgstr "Загрузка" -#: src/Common/LinuxKernel.vala:1089 +#: src/Common/LinuxKernel.vala:1093 #: src/Utility/Gtk/CustomMessageDialog.vala:148 #: src/Utility/Gtk/CustomMessageDialog.vala:152 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:1094 +#: src/Common/LinuxKernel.vala:1098 msgid "ERROR" msgstr "ОШИБКА" -#: src/Common/LinuxKernel.vala:1108 src/Gtk/MainWindow.vala:647 +#: src/Common/LinuxKernel.vala:1112 src/Gtk/MainWindow.vala:647 msgid "This kernel is already installed." msgstr "Это ядро уже установлено." -#: src/Common/LinuxKernel.vala:1134 +#: src/Common/LinuxKernel.vala:1138 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "Установка завершена. Обязательно выполните перезагрузку, чтобы использовать " "новое ядро." -#: src/Common/LinuxKernel.vala:1137 +#: src/Common/LinuxKernel.vala:1141 msgid "Installation completed with errors" msgstr "Установка завершена с ошибками" -#: src/Common/LinuxKernel.vala:1152 +#: src/Common/LinuxKernel.vala:1156 #, fuzzy msgid "" "Selected kernel is currently running and cannot be removed.\n" @@ -126,19 +126,19 @@ msgstr "" "Это ядро в настоящий момент работает и не может быть удалено.\n" " Установите другое ядро, прежде чем удалять его." -#: src/Common/LinuxKernel.vala:1157 +#: src/Common/LinuxKernel.vala:1161 msgid "Preparing to remove selected kernels" msgstr "" -#: src/Common/LinuxKernel.vala:1188 src/Common/LinuxKernel.vala:1235 +#: src/Common/LinuxKernel.vala:1192 src/Common/LinuxKernel.vala:1239 msgid "Un-install completed" msgstr "Удаление завершено" -#: src/Common/LinuxKernel.vala:1191 src/Common/LinuxKernel.vala:1238 +#: src/Common/LinuxKernel.vala:1195 src/Common/LinuxKernel.vala:1242 msgid "Un-install completed with errors" msgstr "Удаление завершено с ошибками" -#: src/Common/LinuxKernel.vala:1204 +#: src/Common/LinuxKernel.vala:1208 msgid "" "This kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -146,11 +146,11 @@ msgstr "" "Это ядро в настоящий момент работает и не может быть удалено.\n" " Установите другое ядро, прежде чем удалять его." -#: src/Common/Main.vala:236 +#: src/Common/Main.vala:237 msgid "Called from" msgstr "" -#: src/Common/Main.vala:248 +#: src/Common/Main.vala:249 #, fuzzy msgid "Notifications are disabled" msgstr "Уведомления" @@ -160,7 +160,7 @@ msgstr "Уведомления" msgid "File not found: %s" msgstr "Файл не найден: %s" -#: src/Console/AppConsole.vala:62 src/Gtk/AppGtk.vala:149 +#: src/Console/AppConsole.vala:62 src/Gtk/AppGtk.vala:154 msgid "Syntax" msgstr "Синтаксис" @@ -222,7 +222,7 @@ msgstr "Удалить файлы из кэша программы" msgid "Show unstable and RC releases" msgstr "Скрыть нестабильные и релиз-кандидат версии" -#: src/Console/AppConsole.vala:79 src/Gtk/AppGtk.vala:151 +#: src/Console/AppConsole.vala:79 src/Gtk/AppGtk.vala:156 msgid "Options" msgstr "Параметры" @@ -247,65 +247,65 @@ msgid "" "One or more version strings (comma-separated) taken from the output of --list" msgstr "" -#: src/Console/AppConsole.vala:162 src/Gtk/AppGtk.vala:136 +#: src/Console/AppConsole.vala:166 src/Gtk/AppGtk.vala:141 msgid "Unknown option" msgstr "Неизвестный параметр" -#: src/Console/AppConsole.vala:164 src/Console/AppConsole.vala:256 -#: src/Console/AppConsole.vala:284 +#: src/Console/AppConsole.vala:168 src/Console/AppConsole.vala:260 +#: src/Console/AppConsole.vala:288 #, fuzzy msgid "Run" msgstr "Используется" -#: src/Console/AppConsole.vala:164 +#: src/Console/AppConsole.vala:168 #, fuzzy msgid "to list all options" msgstr "Показать все параметры" -#: src/Console/AppConsole.vala:229 src/Console/AppConsole.vala:264 +#: src/Console/AppConsole.vala:233 src/Console/AppConsole.vala:268 msgid "No kernels specified" msgstr "" -#: src/Console/AppConsole.vala:235 +#: src/Console/AppConsole.vala:239 msgid "Multiple kernels selected for installation. Select only one." msgstr "" -#: src/Console/AppConsole.vala:253 src/Gtk/MainWindow.vala:100 +#: src/Console/AppConsole.vala:257 src/Gtk/MainWindow.vala:100 msgid "Could not find requested version" msgstr "Не удалось найти запрошенную версию" -#: src/Console/AppConsole.vala:256 +#: src/Console/AppConsole.vala:260 msgid "and use a version string listed in first column" msgstr "" -#: src/Console/AppConsole.vala:283 +#: src/Console/AppConsole.vala:287 msgid "Command not specified" msgstr "" -#: src/Console/AppConsole.vala:284 +#: src/Console/AppConsole.vala:288 #, fuzzy msgid "to list all commands" msgstr "Показать все параметры" -#: src/Console/AppConsole.vala:336 src/Console/AppConsole.vala:352 +#: src/Console/AppConsole.vala:349 +msgid "Show" +msgstr "" + +#: src/Console/AppConsole.vala:354 src/Console/AppConsole.vala:373 #, fuzzy, c-format msgid "Kernel %s Available" msgstr "Установлено" -#: src/Console/AppConsole.vala:339 src/Console/AppConsole.vala:355 +#: src/Console/AppConsole.vala:356 src/Console/AppConsole.vala:375 #: src/Gtk/MainWindow.vala:330 msgid "Install" msgstr "Установить" -#: src/Console/OSDNotify.vala:66 -msgid "Show" -msgstr "" - -#: src/Gtk/AppGtk.vala:153 +#: src/Gtk/AppGtk.vala:158 msgid "Print debug information" msgstr "Распечатать отладочную информацию" -#: src/Gtk/AppGtk.vala:154 +#: src/Gtk/AppGtk.vala:159 msgid "Show all options" msgstr "Показать все параметры" @@ -367,7 +367,7 @@ msgstr "Очистить" msgid "Changes" msgstr "Изменения" -#: src/Gtk/MainWindow.vala:435 src/Gtk/SettingsDialog.vala:52 +#: src/Gtk/MainWindow.vala:435 src/Gtk/SettingsDialog.vala:51 msgid "Settings" msgstr "Настройки" @@ -411,68 +411,68 @@ msgstr "Установлено" msgid "Cancel" msgstr "Отмена" -#: src/Gtk/SettingsDialog.vala:62 +#: src/Gtk/SettingsDialog.vala:61 msgid "Notification" msgstr "Уведомления" -#: src/Gtk/SettingsDialog.vala:69 +#: src/Gtk/SettingsDialog.vala:68 msgid "Notify if a major release is available" msgstr "Уведомлять, если доступно крупное обновление" -#: src/Gtk/SettingsDialog.vala:80 +#: src/Gtk/SettingsDialog.vala:79 msgid "Notify if a point release is available" msgstr "Уведомлять, если доступно небольшое обновление" -#: src/Gtk/SettingsDialog.vala:91 +#: src/Gtk/SettingsDialog.vala:90 msgid "Show notification bubble on desktop" msgstr "Показывать окно оповещений на рабочем столе" -#: src/Gtk/SettingsDialog.vala:102 +#: src/Gtk/SettingsDialog.vala:101 msgid "(Allowing intervals in seconds for --debug)" msgstr "" -#: src/Gtk/SettingsDialog.vala:112 +#: src/Gtk/SettingsDialog.vala:111 msgid "Check every" msgstr "Проверять каждые" -#: src/Gtk/SettingsDialog.vala:145 +#: src/Gtk/SettingsDialog.vala:144 msgid "Hour(s)" msgstr "Час(ов)" -#: src/Gtk/SettingsDialog.vala:147 +#: src/Gtk/SettingsDialog.vala:146 msgid "Day(s)" msgstr "День(дней)" -#: src/Gtk/SettingsDialog.vala:149 +#: src/Gtk/SettingsDialog.vala:148 msgid "Week(s)" msgstr "Неделю(ли)" -#: src/Gtk/SettingsDialog.vala:152 +#: src/Gtk/SettingsDialog.vala:151 msgid "Second(s)" msgstr "" -#: src/Gtk/SettingsDialog.vala:158 +#: src/Gtk/SettingsDialog.vala:157 msgid "Display" msgstr "Вид" -#: src/Gtk/SettingsDialog.vala:166 +#: src/Gtk/SettingsDialog.vala:165 msgid "Hide unstable and RC releases" msgstr "Скрыть нестабильные и релиз-кандидат версии" -#: src/Gtk/SettingsDialog.vala:180 +#: src/Gtk/SettingsDialog.vala:179 msgid "Show N previous major versions " msgstr "" -#: src/Gtk/SettingsDialog.vala:195 +#: src/Gtk/SettingsDialog.vala:194 msgid "Other" msgstr "" -#: src/Gtk/SettingsDialog.vala:203 +#: src/Gtk/SettingsDialog.vala:202 #, fuzzy msgid "Skip internet connection check" msgstr "Интернет соединение не активно" -#: src/Gtk/SettingsDialog.vala:216 +#: src/Gtk/SettingsDialog.vala:215 #, fuzzy msgid "Internet connection timeout in " msgstr "Интернет соединение не активно" @@ -481,6 +481,10 @@ msgstr "Интернет соединение не активно" msgid "seconds" msgstr "" +#: src/Gtk/SettingsDialog.vala:237 +msgid "Max concurrent downloads" +msgstr "" + #: src/Gtk/TerminalWindow.vala:159 src/Utility/Gtk/AboutWindow.vala:294 msgid "Close" msgstr "Закрыть" diff --git a/po/sv.po b/po/sv.po index 178ecc67..7e1c76ff 100644 --- a/po/sv.po +++ b/po/sv.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-18 20:12-0400\n" +"POT-Creation-Date: 2020-05-19 17:20-0400\n" "PO-Revision-Date: 2018-01-13 16:56+0100\n" "Last-Translator: Åke Engelbrektson \n" "Language-Team: Svenska Språkfiler \n" @@ -27,94 +27,94 @@ msgstr "Systemarkitektur" msgid "Fetching index..." msgstr "Hämtar index för" -#: src/Common/LinuxKernel.vala:341 +#: src/Common/LinuxKernel.vala:342 msgid "Fetching index from kernel.ubuntu.com..." msgstr "Hämtar index från kernel.ubuntu.com ..." -#: src/Common/LinuxKernel.vala:598 +#: src/Common/LinuxKernel.vala:601 #, fuzzy msgid "Could not find running kernel in list!" msgstr "Kunde inte hitta efterfrågad version" -#: src/Common/LinuxKernel.vala:604 +#: src/Common/LinuxKernel.vala:607 #, fuzzy msgid "Could not find any kernels to remove" msgstr "Välj kärnor för borttagning" -#: src/Common/LinuxKernel.vala:613 +#: src/Common/LinuxKernel.vala:616 msgid "The following kernels will be removed:" msgstr "" -#: src/Common/LinuxKernel.vala:620 +#: src/Common/LinuxKernel.vala:623 msgid "Continue ?" msgstr "" -#: src/Common/LinuxKernel.vala:644 src/Console/AppConsole.vala:302 +#: src/Common/LinuxKernel.vala:648 src/Console/AppConsole.vala:307 msgid "Latest update" msgstr "" -#: src/Common/LinuxKernel.vala:655 src/Console/AppConsole.vala:309 +#: src/Common/LinuxKernel.vala:659 src/Console/AppConsole.vala:314 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:663 src/Console/AppConsole.vala:314 -#: src/Console/AppConsole.vala:364 +#: src/Common/LinuxKernel.vala:667 src/Console/AppConsole.vala:319 +#: src/Console/AppConsole.vala:384 msgid "No updates found" msgstr "Inga uppdateringar hittades" -#: src/Common/LinuxKernel.vala:673 +#: src/Common/LinuxKernel.vala:677 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "" -#: src/Common/LinuxKernel.vala:935 +#: src/Common/LinuxKernel.vala:939 msgid "Packages Available" msgstr "Tillgängliga paket" -#: src/Common/LinuxKernel.vala:943 +#: src/Common/LinuxKernel.vala:947 msgid "Packages Installed" msgstr "Installerade paket" -#: src/Common/LinuxKernel.vala:1026 +#: src/Common/LinuxKernel.vala:1030 msgid "Available Kernels" msgstr "Tillgängliga kärnor" -#: src/Common/LinuxKernel.vala:1033 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1037 src/Gtk/MainWindow.vala:186 msgid "Installed" msgstr "Installerad" -#: src/Common/LinuxKernel.vala:1033 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1037 src/Gtk/MainWindow.vala:186 #: src/Gtk/MainWindow.vala:625 src/Gtk/MainWindow.vala:639 msgid "Running" msgstr "Körs" -#: src/Common/LinuxKernel.vala:1070 +#: src/Common/LinuxKernel.vala:1074 msgid "Downloading" msgstr "Laddar ner" -#: src/Common/LinuxKernel.vala:1089 +#: src/Common/LinuxKernel.vala:1093 #: src/Utility/Gtk/CustomMessageDialog.vala:148 #: src/Utility/Gtk/CustomMessageDialog.vala:152 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:1094 +#: src/Common/LinuxKernel.vala:1098 msgid "ERROR" msgstr "FEL" -#: src/Common/LinuxKernel.vala:1108 src/Gtk/MainWindow.vala:647 +#: src/Common/LinuxKernel.vala:1112 src/Gtk/MainWindow.vala:647 msgid "This kernel is already installed." msgstr "Denna kärna är redan installerad" -#: src/Common/LinuxKernel.vala:1134 +#: src/Common/LinuxKernel.vala:1138 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "Installation slutförd. Omstart krävs för att tillämpa den nya kärnan." -#: src/Common/LinuxKernel.vala:1137 +#: src/Common/LinuxKernel.vala:1141 msgid "Installation completed with errors" msgstr "Installation slutförd med fel" -#: src/Common/LinuxKernel.vala:1152 +#: src/Common/LinuxKernel.vala:1156 msgid "" "Selected kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -122,19 +122,19 @@ msgstr "" "Denna kärna används för tillfället och kan inte tas bort.\n" "Installera en annan kärna innan du tar bort den här." -#: src/Common/LinuxKernel.vala:1157 +#: src/Common/LinuxKernel.vala:1161 msgid "Preparing to remove selected kernels" msgstr "Förbereder borttagning av markerade kärnor" -#: src/Common/LinuxKernel.vala:1188 src/Common/LinuxKernel.vala:1235 +#: src/Common/LinuxKernel.vala:1192 src/Common/LinuxKernel.vala:1239 msgid "Un-install completed" msgstr "Avinstallation slutförd" -#: src/Common/LinuxKernel.vala:1191 src/Common/LinuxKernel.vala:1238 +#: src/Common/LinuxKernel.vala:1195 src/Common/LinuxKernel.vala:1242 msgid "Un-install completed with errors" msgstr "Avinstallation slutförd med fel" -#: src/Common/LinuxKernel.vala:1204 +#: src/Common/LinuxKernel.vala:1208 msgid "" "This kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -142,11 +142,11 @@ msgstr "" "Denna kärna används för tillfället och kan inte tas bort.\n" "Installera en annan kärna innan du tar bort den här." -#: src/Common/Main.vala:236 +#: src/Common/Main.vala:237 msgid "Called from" msgstr "" -#: src/Common/Main.vala:248 +#: src/Common/Main.vala:249 #, fuzzy msgid "Notifications are disabled" msgstr "Avisering" @@ -156,7 +156,7 @@ msgstr "Avisering" msgid "File not found: %s" msgstr "Filen kunde inte hittas: %s" -#: src/Console/AppConsole.vala:62 src/Gtk/AppGtk.vala:149 +#: src/Console/AppConsole.vala:62 src/Gtk/AppGtk.vala:154 msgid "Syntax" msgstr "Syntax" @@ -218,7 +218,7 @@ msgstr "Ta bort filer från program-cachen" msgid "Show unstable and RC releases" msgstr "Dölj instabila- och RC-publiceringar" -#: src/Console/AppConsole.vala:79 src/Gtk/AppGtk.vala:151 +#: src/Console/AppConsole.vala:79 src/Gtk/AppGtk.vala:156 msgid "Options" msgstr "Alternativ" @@ -243,65 +243,65 @@ msgid "" "One or more version strings (comma-separated) taken from the output of --list" msgstr "" -#: src/Console/AppConsole.vala:162 src/Gtk/AppGtk.vala:136 +#: src/Console/AppConsole.vala:166 src/Gtk/AppGtk.vala:141 msgid "Unknown option" msgstr "Okänt alternativ" -#: src/Console/AppConsole.vala:164 src/Console/AppConsole.vala:256 -#: src/Console/AppConsole.vala:284 +#: src/Console/AppConsole.vala:168 src/Console/AppConsole.vala:260 +#: src/Console/AppConsole.vala:288 #, fuzzy msgid "Run" msgstr "Körs" -#: src/Console/AppConsole.vala:164 +#: src/Console/AppConsole.vala:168 #, fuzzy msgid "to list all options" msgstr "Visa alla alternativ" -#: src/Console/AppConsole.vala:229 src/Console/AppConsole.vala:264 +#: src/Console/AppConsole.vala:233 src/Console/AppConsole.vala:268 msgid "No kernels specified" msgstr "" -#: src/Console/AppConsole.vala:235 +#: src/Console/AppConsole.vala:239 msgid "Multiple kernels selected for installation. Select only one." msgstr "Flera kärnor valda för installation. Välj endast en." -#: src/Console/AppConsole.vala:253 src/Gtk/MainWindow.vala:100 +#: src/Console/AppConsole.vala:257 src/Gtk/MainWindow.vala:100 msgid "Could not find requested version" msgstr "Kunde inte hitta efterfrågad version" -#: src/Console/AppConsole.vala:256 +#: src/Console/AppConsole.vala:260 msgid "and use a version string listed in first column" msgstr "" -#: src/Console/AppConsole.vala:283 +#: src/Console/AppConsole.vala:287 msgid "Command not specified" msgstr "" -#: src/Console/AppConsole.vala:284 +#: src/Console/AppConsole.vala:288 #, fuzzy msgid "to list all commands" msgstr "Visa alla alternativ" -#: src/Console/AppConsole.vala:336 src/Console/AppConsole.vala:352 +#: src/Console/AppConsole.vala:349 +msgid "Show" +msgstr "" + +#: src/Console/AppConsole.vala:354 src/Console/AppConsole.vala:373 #, fuzzy, c-format msgid "Kernel %s Available" msgstr "Tillgängliga paket" -#: src/Console/AppConsole.vala:339 src/Console/AppConsole.vala:355 +#: src/Console/AppConsole.vala:356 src/Console/AppConsole.vala:375 #: src/Gtk/MainWindow.vala:330 msgid "Install" msgstr "Installera" -#: src/Console/OSDNotify.vala:66 -msgid "Show" -msgstr "" - -#: src/Gtk/AppGtk.vala:153 +#: src/Gtk/AppGtk.vala:158 msgid "Print debug information" msgstr "Skriv ut felsökningsinformation" -#: src/Gtk/AppGtk.vala:154 +#: src/Gtk/AppGtk.vala:159 msgid "Show all options" msgstr "Visa alla alternativ" @@ -363,7 +363,7 @@ msgstr "Rensa" msgid "Changes" msgstr "Ändringar" -#: src/Gtk/MainWindow.vala:435 src/Gtk/SettingsDialog.vala:52 +#: src/Gtk/MainWindow.vala:435 src/Gtk/SettingsDialog.vala:51 msgid "Settings" msgstr "Inställningar" @@ -407,68 +407,68 @@ msgstr "Installerad" msgid "Cancel" msgstr "Avbryt" -#: src/Gtk/SettingsDialog.vala:62 +#: src/Gtk/SettingsDialog.vala:61 msgid "Notification" msgstr "Avisering" -#: src/Gtk/SettingsDialog.vala:69 +#: src/Gtk/SettingsDialog.vala:68 msgid "Notify if a major release is available" msgstr "Meddela om en ny (stor) uppdatering finns tillgänglig" -#: src/Gtk/SettingsDialog.vala:80 +#: src/Gtk/SettingsDialog.vala:79 msgid "Notify if a point release is available" msgstr "Meddela om en ny (mindre) uppdatering finns tillgänglig" -#: src/Gtk/SettingsDialog.vala:91 +#: src/Gtk/SettingsDialog.vala:90 msgid "Show notification bubble on desktop" msgstr "Visa aviseringsruta på skrivbordet" -#: src/Gtk/SettingsDialog.vala:102 +#: src/Gtk/SettingsDialog.vala:101 msgid "(Allowing intervals in seconds for --debug)" msgstr "" -#: src/Gtk/SettingsDialog.vala:112 +#: src/Gtk/SettingsDialog.vala:111 msgid "Check every" msgstr "Kontrollera varje" -#: src/Gtk/SettingsDialog.vala:145 +#: src/Gtk/SettingsDialog.vala:144 msgid "Hour(s)" msgstr "Timma(r)" -#: src/Gtk/SettingsDialog.vala:147 +#: src/Gtk/SettingsDialog.vala:146 msgid "Day(s)" msgstr "Dag(ar)" -#: src/Gtk/SettingsDialog.vala:149 +#: src/Gtk/SettingsDialog.vala:148 msgid "Week(s)" msgstr "Veckor" -#: src/Gtk/SettingsDialog.vala:152 +#: src/Gtk/SettingsDialog.vala:151 msgid "Second(s)" msgstr "" -#: src/Gtk/SettingsDialog.vala:158 +#: src/Gtk/SettingsDialog.vala:157 msgid "Display" msgstr "Visa" -#: src/Gtk/SettingsDialog.vala:166 +#: src/Gtk/SettingsDialog.vala:165 msgid "Hide unstable and RC releases" msgstr "Dölj instabila- och RC-publiceringar" -#: src/Gtk/SettingsDialog.vala:180 +#: src/Gtk/SettingsDialog.vala:179 msgid "Show N previous major versions " msgstr "" -#: src/Gtk/SettingsDialog.vala:195 +#: src/Gtk/SettingsDialog.vala:194 msgid "Other" msgstr "" -#: src/Gtk/SettingsDialog.vala:203 +#: src/Gtk/SettingsDialog.vala:202 #, fuzzy msgid "Skip internet connection check" msgstr "Internetuppkopplingen är inte aktiv" -#: src/Gtk/SettingsDialog.vala:216 +#: src/Gtk/SettingsDialog.vala:215 #, fuzzy msgid "Internet connection timeout in " msgstr "Internetuppkopplingen är inte aktiv" @@ -477,6 +477,10 @@ msgstr "Internetuppkopplingen är inte aktiv" msgid "seconds" msgstr "" +#: src/Gtk/SettingsDialog.vala:237 +msgid "Max concurrent downloads" +msgstr "" + #: src/Gtk/TerminalWindow.vala:159 src/Utility/Gtk/AboutWindow.vala:294 msgid "Close" msgstr "Stäng" diff --git a/po/tr.po b/po/tr.po index e1d2358a..1e3efa4d 100644 --- a/po/tr.po +++ b/po/tr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-18 20:12-0400\n" +"POT-Creation-Date: 2020-05-19 17:20-0400\n" "PO-Revision-Date: 2020-03-10 15:59+0300\n" "Last-Translator: Gökhan GÖKKAYA \n" "Language-Team: Turkish\n" @@ -25,93 +25,93 @@ msgstr "Sistem mimarisi" msgid "Fetching index..." msgstr "İçerik dizini alınıyor..." -#: src/Common/LinuxKernel.vala:341 +#: src/Common/LinuxKernel.vala:342 msgid "Fetching index from kernel.ubuntu.com..." msgstr "İçerik listesi kernel.ubuntu.com alanından alınıyor..." -#: src/Common/LinuxKernel.vala:598 +#: src/Common/LinuxKernel.vala:601 msgid "Could not find running kernel in list!" msgstr "İstenen sürüm bulunamadı!" -#: src/Common/LinuxKernel.vala:604 +#: src/Common/LinuxKernel.vala:607 msgid "Could not find any kernels to remove" msgstr "Kaldırılacak çekirdek bulunamadı" -#: src/Common/LinuxKernel.vala:613 +#: src/Common/LinuxKernel.vala:616 msgid "The following kernels will be removed:" msgstr "Aşağıdaki çekirdekler silinecek:" -#: src/Common/LinuxKernel.vala:620 +#: src/Common/LinuxKernel.vala:623 msgid "Continue ?" msgstr "Devam et ?" -#: src/Common/LinuxKernel.vala:644 src/Console/AppConsole.vala:302 +#: src/Common/LinuxKernel.vala:648 src/Console/AppConsole.vala:307 msgid "Latest update" msgstr "Son güncelleme" -#: src/Common/LinuxKernel.vala:655 src/Console/AppConsole.vala:309 +#: src/Common/LinuxKernel.vala:659 src/Console/AppConsole.vala:314 msgid "Latest point update" msgstr "Son güncelleme noktası" -#: src/Common/LinuxKernel.vala:663 src/Console/AppConsole.vala:314 -#: src/Console/AppConsole.vala:364 +#: src/Common/LinuxKernel.vala:667 src/Console/AppConsole.vala:319 +#: src/Console/AppConsole.vala:384 msgid "No updates found" msgstr "Güncelleme bulunamadı" -#: src/Common/LinuxKernel.vala:673 +#: src/Common/LinuxKernel.vala:677 #, fuzzy, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Linux v%s Kur ? (e/h): " -#: src/Common/LinuxKernel.vala:935 +#: src/Common/LinuxKernel.vala:939 msgid "Packages Available" msgstr "Mevcut Paketler" -#: src/Common/LinuxKernel.vala:943 +#: src/Common/LinuxKernel.vala:947 msgid "Packages Installed" msgstr "Kurulu Paketler" -#: src/Common/LinuxKernel.vala:1026 +#: src/Common/LinuxKernel.vala:1030 msgid "Available Kernels" msgstr "Mevcut Çekirdekler" -#: src/Common/LinuxKernel.vala:1033 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1037 src/Gtk/MainWindow.vala:186 msgid "Installed" msgstr "Kurulu" -#: src/Common/LinuxKernel.vala:1033 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1037 src/Gtk/MainWindow.vala:186 #: src/Gtk/MainWindow.vala:625 src/Gtk/MainWindow.vala:639 msgid "Running" msgstr "Çalışıyor" -#: src/Common/LinuxKernel.vala:1070 +#: src/Common/LinuxKernel.vala:1074 msgid "Downloading" msgstr "İndiriliyor" -#: src/Common/LinuxKernel.vala:1089 +#: src/Common/LinuxKernel.vala:1093 #: src/Utility/Gtk/CustomMessageDialog.vala:148 #: src/Utility/Gtk/CustomMessageDialog.vala:152 msgid "OK" msgstr "TAMAM" -#: src/Common/LinuxKernel.vala:1094 +#: src/Common/LinuxKernel.vala:1098 msgid "ERROR" msgstr "HATA" -#: src/Common/LinuxKernel.vala:1108 src/Gtk/MainWindow.vala:647 +#: src/Common/LinuxKernel.vala:1112 src/Gtk/MainWindow.vala:647 msgid "This kernel is already installed." msgstr "Bu çekirdek zaten kurulu." -#: src/Common/LinuxKernel.vala:1134 +#: src/Common/LinuxKernel.vala:1138 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "Kurulum tamamlandı. Yeni çekirdeği kullanmak için yeniden başlatma gerekiyor." -#: src/Common/LinuxKernel.vala:1137 +#: src/Common/LinuxKernel.vala:1141 msgid "Installation completed with errors" msgstr "Kurulum hatalarla tamamlandı" -#: src/Common/LinuxKernel.vala:1152 +#: src/Common/LinuxKernel.vala:1156 msgid "" "Selected kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -119,19 +119,19 @@ msgstr "" "Seçilen çekirdek şu anda çalışıyor ve kaldırılamıyor.\n" " Bunu kaldırmadan önce başka bir çekirdek yükleyin." -#: src/Common/LinuxKernel.vala:1157 +#: src/Common/LinuxKernel.vala:1161 msgid "Preparing to remove selected kernels" msgstr "Seçilen çekirdekleri kaldırmak için hazırlanıyor" -#: src/Common/LinuxKernel.vala:1188 src/Common/LinuxKernel.vala:1235 +#: src/Common/LinuxKernel.vala:1192 src/Common/LinuxKernel.vala:1239 msgid "Un-install completed" msgstr "Kaldırma tamamlandı" -#: src/Common/LinuxKernel.vala:1191 src/Common/LinuxKernel.vala:1238 +#: src/Common/LinuxKernel.vala:1195 src/Common/LinuxKernel.vala:1242 msgid "Un-install completed with errors" msgstr "Kaldırma hatalarla tamamlandı" -#: src/Common/LinuxKernel.vala:1204 +#: src/Common/LinuxKernel.vala:1208 msgid "" "This kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -139,11 +139,11 @@ msgstr "" "Bu çekirdek şu anda çalışıyor ve bu sebeple kaldırılamaz.\n" "Bunu kaldırmadan önce başka bir çekirdek yükleyin." -#: src/Common/Main.vala:236 +#: src/Common/Main.vala:237 msgid "Called from" msgstr "" -#: src/Common/Main.vala:248 +#: src/Common/Main.vala:249 #, fuzzy msgid "Notifications are disabled" msgstr "Bildirim" @@ -153,7 +153,7 @@ msgstr "Bildirim" msgid "File not found: %s" msgstr "Şu dosya bulunamadı: %s" -#: src/Console/AppConsole.vala:62 src/Gtk/AppGtk.vala:149 +#: src/Console/AppConsole.vala:62 src/Gtk/AppGtk.vala:154 msgid "Syntax" msgstr "Sözdizimi" @@ -211,7 +211,7 @@ msgstr "Dosyaları uygulama önbelleğinden sil" msgid "Show unstable and RC releases" msgstr "Kararsız ve RC sürümleri göster" -#: src/Console/AppConsole.vala:79 src/Gtk/AppGtk.vala:151 +#: src/Console/AppConsole.vala:79 src/Gtk/AppGtk.vala:156 msgid "Options" msgstr "Seçenekler" @@ -236,65 +236,65 @@ msgid "" "One or more version strings (comma-separated) taken from the output of --list" msgstr "" -#: src/Console/AppConsole.vala:162 src/Gtk/AppGtk.vala:136 +#: src/Console/AppConsole.vala:166 src/Gtk/AppGtk.vala:141 msgid "Unknown option" msgstr "Bilinmeyen seçenek" -#: src/Console/AppConsole.vala:164 src/Console/AppConsole.vala:256 -#: src/Console/AppConsole.vala:284 +#: src/Console/AppConsole.vala:168 src/Console/AppConsole.vala:260 +#: src/Console/AppConsole.vala:288 #, fuzzy msgid "Run" msgstr "Çalıştır '" -#: src/Console/AppConsole.vala:164 +#: src/Console/AppConsole.vala:168 #, fuzzy msgid "to list all options" msgstr "Tüm seçenekleri göster" -#: src/Console/AppConsole.vala:229 src/Console/AppConsole.vala:264 +#: src/Console/AppConsole.vala:233 src/Console/AppConsole.vala:268 msgid "No kernels specified" msgstr "Belirtilen çekirdek yok" -#: src/Console/AppConsole.vala:235 +#: src/Console/AppConsole.vala:239 msgid "Multiple kernels selected for installation. Select only one." msgstr "Kurulum için çoklu çekirdek seçildi. Sadece bir tane seçiniz." -#: src/Console/AppConsole.vala:253 src/Gtk/MainWindow.vala:100 +#: src/Console/AppConsole.vala:257 src/Gtk/MainWindow.vala:100 msgid "Could not find requested version" msgstr "İstenen sürüm bulunamadı" -#: src/Console/AppConsole.vala:256 +#: src/Console/AppConsole.vala:260 msgid "and use a version string listed in first column" msgstr "" -#: src/Console/AppConsole.vala:283 +#: src/Console/AppConsole.vala:287 msgid "Command not specified" msgstr "Komut belirtilmedi" -#: src/Console/AppConsole.vala:284 +#: src/Console/AppConsole.vala:288 #, fuzzy msgid "to list all commands" msgstr "Tüm seçenekleri göster" -#: src/Console/AppConsole.vala:336 src/Console/AppConsole.vala:352 +#: src/Console/AppConsole.vala:349 +msgid "Show" +msgstr "" + +#: src/Console/AppConsole.vala:354 src/Console/AppConsole.vala:373 #, fuzzy, c-format msgid "Kernel %s Available" msgstr "Mevcut Paketler" -#: src/Console/AppConsole.vala:339 src/Console/AppConsole.vala:355 +#: src/Console/AppConsole.vala:356 src/Console/AppConsole.vala:375 #: src/Gtk/MainWindow.vala:330 msgid "Install" msgstr "Kur" -#: src/Console/OSDNotify.vala:66 -msgid "Show" -msgstr "" - -#: src/Gtk/AppGtk.vala:153 +#: src/Gtk/AppGtk.vala:158 msgid "Print debug information" msgstr "Hata ayıklama bilgisini yazdır" -#: src/Gtk/AppGtk.vala:154 +#: src/Gtk/AppGtk.vala:159 msgid "Show all options" msgstr "Tüm seçenekleri göster" @@ -356,7 +356,7 @@ msgstr "Temizle" msgid "Changes" msgstr "Değişiklikler" -#: src/Gtk/MainWindow.vala:435 src/Gtk/SettingsDialog.vala:52 +#: src/Gtk/MainWindow.vala:435 src/Gtk/SettingsDialog.vala:51 msgid "Settings" msgstr "Ayarlar" @@ -400,68 +400,68 @@ msgstr "Kurulu" msgid "Cancel" msgstr "İptal" -#: src/Gtk/SettingsDialog.vala:62 +#: src/Gtk/SettingsDialog.vala:61 msgid "Notification" msgstr "Bildirim" -#: src/Gtk/SettingsDialog.vala:69 +#: src/Gtk/SettingsDialog.vala:68 msgid "Notify if a major release is available" msgstr "Ana sürüm mevcutsa bildir" -#: src/Gtk/SettingsDialog.vala:80 +#: src/Gtk/SettingsDialog.vala:79 msgid "Notify if a point release is available" msgstr "Ara sürüm mevcutsa bildir" -#: src/Gtk/SettingsDialog.vala:91 +#: src/Gtk/SettingsDialog.vala:90 msgid "Show notification bubble on desktop" msgstr "Masaüstünde bildirim baloncuğu göster" -#: src/Gtk/SettingsDialog.vala:102 +#: src/Gtk/SettingsDialog.vala:101 msgid "(Allowing intervals in seconds for --debug)" msgstr "" -#: src/Gtk/SettingsDialog.vala:112 +#: src/Gtk/SettingsDialog.vala:111 msgid "Check every" msgstr "Kontrol aralığı" -#: src/Gtk/SettingsDialog.vala:145 +#: src/Gtk/SettingsDialog.vala:144 msgid "Hour(s)" msgstr "Saat" -#: src/Gtk/SettingsDialog.vala:147 +#: src/Gtk/SettingsDialog.vala:146 msgid "Day(s)" msgstr "Gün" -#: src/Gtk/SettingsDialog.vala:149 +#: src/Gtk/SettingsDialog.vala:148 msgid "Week(s)" msgstr "Hafta" -#: src/Gtk/SettingsDialog.vala:152 +#: src/Gtk/SettingsDialog.vala:151 #, fuzzy msgid "Second(s)" msgstr "saniye" -#: src/Gtk/SettingsDialog.vala:158 +#: src/Gtk/SettingsDialog.vala:157 msgid "Display" msgstr "Gösterim" -#: src/Gtk/SettingsDialog.vala:166 +#: src/Gtk/SettingsDialog.vala:165 msgid "Hide unstable and RC releases" msgstr "Kararsız ve RC sürümleri gizle" -#: src/Gtk/SettingsDialog.vala:180 +#: src/Gtk/SettingsDialog.vala:179 msgid "Show N previous major versions " msgstr "Önceki ana sürümleri gösterme sayısı " -#: src/Gtk/SettingsDialog.vala:195 +#: src/Gtk/SettingsDialog.vala:194 msgid "Other" msgstr "Diğer" -#: src/Gtk/SettingsDialog.vala:203 +#: src/Gtk/SettingsDialog.vala:202 msgid "Skip internet connection check" msgstr "İnternet bağlantı kontrolünü atla" -#: src/Gtk/SettingsDialog.vala:216 +#: src/Gtk/SettingsDialog.vala:215 msgid "Internet connection timeout in " msgstr "İnternet bağlantısı zaman aşımı " @@ -469,6 +469,10 @@ msgstr "İnternet bağlantısı zaman aşımı " msgid "seconds" msgstr "saniye" +#: src/Gtk/SettingsDialog.vala:237 +msgid "Max concurrent downloads" +msgstr "" + #: src/Gtk/TerminalWindow.vala:159 src/Utility/Gtk/AboutWindow.vala:294 msgid "Close" msgstr "Kapat" diff --git a/po/uk.po b/po/uk.po index d44d7a95..8791f492 100644 --- a/po/uk.po +++ b/po/uk.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-18 20:12-0400\n" +"POT-Creation-Date: 2020-05-19 17:20-0400\n" "PO-Revision-Date: 2019-07-25 11:00+0300\n" "Last-Translator: Serhii Golovko \n" "Language-Team: Ukranian \n" @@ -25,93 +25,93 @@ msgstr "Системна архитектура" msgid "Fetching index..." msgstr "Отримання індекса ..." -#: src/Common/LinuxKernel.vala:341 +#: src/Common/LinuxKernel.vala:342 msgid "Fetching index from kernel.ubuntu.com..." msgstr "Отримання індекса з kernel.ubuntu.com..." -#: src/Common/LinuxKernel.vala:598 +#: src/Common/LinuxKernel.vala:601 msgid "Could not find running kernel in list!" msgstr "Не вдалося знайти запущене ядро у списку!" -#: src/Common/LinuxKernel.vala:604 +#: src/Common/LinuxKernel.vala:607 msgid "Could not find any kernels to remove" msgstr "Не вдалося знайти жодне ядро для вилучення" -#: src/Common/LinuxKernel.vala:613 +#: src/Common/LinuxKernel.vala:616 msgid "The following kernels will be removed:" msgstr "Наступні ядра будуть видалені:" -#: src/Common/LinuxKernel.vala:620 +#: src/Common/LinuxKernel.vala:623 msgid "Continue ?" msgstr "Продовжувати ?" -#: src/Common/LinuxKernel.vala:644 src/Console/AppConsole.vala:302 +#: src/Common/LinuxKernel.vala:648 src/Console/AppConsole.vala:307 msgid "Latest update" msgstr "Останнє оновлення" -#: src/Common/LinuxKernel.vala:655 src/Console/AppConsole.vala:309 +#: src/Common/LinuxKernel.vala:659 src/Console/AppConsole.vala:314 msgid "Latest point update" msgstr "Остання точка оновлення" -#: src/Common/LinuxKernel.vala:663 src/Console/AppConsole.vala:314 -#: src/Console/AppConsole.vala:364 +#: src/Common/LinuxKernel.vala:667 src/Console/AppConsole.vala:319 +#: src/Console/AppConsole.vala:384 msgid "No updates found" msgstr "Оновлень не знайдено" -#: src/Common/LinuxKernel.vala:673 +#: src/Common/LinuxKernel.vala:677 #, fuzzy, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Встановити Linux v% s? (так/ні): " -#: src/Common/LinuxKernel.vala:935 +#: src/Common/LinuxKernel.vala:939 msgid "Packages Available" msgstr "Доступні пакети" -#: src/Common/LinuxKernel.vala:943 +#: src/Common/LinuxKernel.vala:947 msgid "Packages Installed" msgstr "Встановлені пакети" -#: src/Common/LinuxKernel.vala:1026 +#: src/Common/LinuxKernel.vala:1030 msgid "Available Kernels" msgstr "Доступні ядра" -#: src/Common/LinuxKernel.vala:1033 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1037 src/Gtk/MainWindow.vala:186 msgid "Installed" msgstr "Встановлено" -#: src/Common/LinuxKernel.vala:1033 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1037 src/Gtk/MainWindow.vala:186 #: src/Gtk/MainWindow.vala:625 src/Gtk/MainWindow.vala:639 msgid "Running" msgstr "Використовується" -#: src/Common/LinuxKernel.vala:1070 +#: src/Common/LinuxKernel.vala:1074 msgid "Downloading" msgstr "Завантаження" -#: src/Common/LinuxKernel.vala:1089 +#: src/Common/LinuxKernel.vala:1093 #: src/Utility/Gtk/CustomMessageDialog.vala:148 #: src/Utility/Gtk/CustomMessageDialog.vala:152 msgid "OK" msgstr "Добре" -#: src/Common/LinuxKernel.vala:1094 +#: src/Common/LinuxKernel.vala:1098 msgid "ERROR" msgstr "ПОМИЛКА" -#: src/Common/LinuxKernel.vala:1108 src/Gtk/MainWindow.vala:647 +#: src/Common/LinuxKernel.vala:1112 src/Gtk/MainWindow.vala:647 msgid "This kernel is already installed." msgstr "Це ядро вже встановлено." -#: src/Common/LinuxKernel.vala:1134 +#: src/Common/LinuxKernel.vala:1138 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "Установка завершена. Для використання нового ядра потрібна перезавантаження." -#: src/Common/LinuxKernel.vala:1137 +#: src/Common/LinuxKernel.vala:1141 msgid "Installation completed with errors" msgstr "Установка завершена з помилками" -#: src/Common/LinuxKernel.vala:1152 +#: src/Common/LinuxKernel.vala:1156 msgid "" "Selected kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -119,19 +119,19 @@ msgstr "" "Це ядро зараз працює і не може бути видалено. \n" "Встановіть інше ядро, перш ніж видаляти його." -#: src/Common/LinuxKernel.vala:1157 +#: src/Common/LinuxKernel.vala:1161 msgid "Preparing to remove selected kernels" msgstr "Підготовка до видалення вибраних ядер" -#: src/Common/LinuxKernel.vala:1188 src/Common/LinuxKernel.vala:1235 +#: src/Common/LinuxKernel.vala:1192 src/Common/LinuxKernel.vala:1239 msgid "Un-install completed" msgstr "Видалення завершено" -#: src/Common/LinuxKernel.vala:1191 src/Common/LinuxKernel.vala:1238 +#: src/Common/LinuxKernel.vala:1195 src/Common/LinuxKernel.vala:1242 msgid "Un-install completed with errors" msgstr "Видалення завершено з помилками" -#: src/Common/LinuxKernel.vala:1204 +#: src/Common/LinuxKernel.vala:1208 msgid "" "This kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -139,11 +139,11 @@ msgstr "" "Це ядро наразі працює і його неможливо видалити.\n" " Встановіть інше ядро перед тим, як видалити его." -#: src/Common/Main.vala:236 +#: src/Common/Main.vala:237 msgid "Called from" msgstr "Викликано з" -#: src/Common/Main.vala:248 +#: src/Common/Main.vala:249 #, fuzzy msgid "Notifications are disabled" msgstr "Повідомлення вимкнено" @@ -153,7 +153,7 @@ msgstr "Повідомлення вимкнено" msgid "File not found: %s" msgstr "Файл не знайдено: %s" -#: src/Console/AppConsole.vala:62 src/Gtk/AppGtk.vala:149 +#: src/Console/AppConsole.vala:62 src/Gtk/AppGtk.vala:154 msgid "Syntax" msgstr "Синтаксис" @@ -211,7 +211,7 @@ msgstr "Видалити файли з кешу програми" msgid "Show unstable and RC releases" msgstr "Приховати нестабільні і реліз-кандидат версії" -#: src/Console/AppConsole.vala:79 src/Gtk/AppGtk.vala:151 +#: src/Console/AppConsole.vala:79 src/Gtk/AppGtk.vala:156 msgid "Options" msgstr "Параметри" @@ -238,65 +238,65 @@ msgid "" msgstr "" "Одна або кілька рядків версії (розділені комами), взяті з виводу --list" -#: src/Console/AppConsole.vala:162 src/Gtk/AppGtk.vala:136 +#: src/Console/AppConsole.vala:166 src/Gtk/AppGtk.vala:141 msgid "Unknown option" msgstr "Невідомий параметр" -#: src/Console/AppConsole.vala:164 src/Console/AppConsole.vala:256 -#: src/Console/AppConsole.vala:284 +#: src/Console/AppConsole.vala:168 src/Console/AppConsole.vala:260 +#: src/Console/AppConsole.vala:288 #, fuzzy msgid "Run" msgstr "Запуск" -#: src/Console/AppConsole.vala:164 +#: src/Console/AppConsole.vala:168 #, fuzzy msgid "to list all options" msgstr "Показати усі параметри" -#: src/Console/AppConsole.vala:229 src/Console/AppConsole.vala:264 +#: src/Console/AppConsole.vala:233 src/Console/AppConsole.vala:268 msgid "No kernels specified" msgstr "Ядра не вказані" -#: src/Console/AppConsole.vala:235 +#: src/Console/AppConsole.vala:239 msgid "Multiple kernels selected for installation. Select only one." msgstr "Для встановлення вибрано кілька ядер. Виберіть лише одну." -#: src/Console/AppConsole.vala:253 src/Gtk/MainWindow.vala:100 +#: src/Console/AppConsole.vala:257 src/Gtk/MainWindow.vala:100 msgid "Could not find requested version" msgstr "Не вдалося знайти запитувану версію" -#: src/Console/AppConsole.vala:256 +#: src/Console/AppConsole.vala:260 msgid "and use a version string listed in first column" msgstr "і використовувати рядок версій, вказаний у першому стовпці" -#: src/Console/AppConsole.vala:283 +#: src/Console/AppConsole.vala:287 msgid "Command not specified" msgstr "Команда не вказана" -#: src/Console/AppConsole.vala:284 +#: src/Console/AppConsole.vala:288 #, fuzzy msgid "to list all commands" msgstr "Показати усі параметри" -#: src/Console/AppConsole.vala:336 src/Console/AppConsole.vala:352 +#: src/Console/AppConsole.vala:349 +msgid "Show" +msgstr "Показати" + +#: src/Console/AppConsole.vala:354 src/Console/AppConsole.vala:373 #, fuzzy, c-format msgid "Kernel %s Available" msgstr "Доступні пакети" -#: src/Console/AppConsole.vala:339 src/Console/AppConsole.vala:355 +#: src/Console/AppConsole.vala:356 src/Console/AppConsole.vala:375 #: src/Gtk/MainWindow.vala:330 msgid "Install" msgstr "Встановити" -#: src/Console/OSDNotify.vala:66 -msgid "Show" -msgstr "Показати" - -#: src/Gtk/AppGtk.vala:153 +#: src/Gtk/AppGtk.vala:158 msgid "Print debug information" msgstr "Роздрукувати зневадження" -#: src/Gtk/AppGtk.vala:154 +#: src/Gtk/AppGtk.vala:159 msgid "Show all options" msgstr "Показати усі параметри" @@ -358,7 +358,7 @@ msgstr "Чистити" msgid "Changes" msgstr "Зміни" -#: src/Gtk/MainWindow.vala:435 src/Gtk/SettingsDialog.vala:52 +#: src/Gtk/MainWindow.vala:435 src/Gtk/SettingsDialog.vala:51 msgid "Settings" msgstr "Налаштування" @@ -404,68 +404,68 @@ msgstr "Встановлено" msgid "Cancel" msgstr "Відміна" -#: src/Gtk/SettingsDialog.vala:62 +#: src/Gtk/SettingsDialog.vala:61 msgid "Notification" msgstr "Повідомлення" -#: src/Gtk/SettingsDialog.vala:69 +#: src/Gtk/SettingsDialog.vala:68 msgid "Notify if a major release is available" msgstr "Повідомити, чи доступний великий випуск" -#: src/Gtk/SettingsDialog.vala:80 +#: src/Gtk/SettingsDialog.vala:79 msgid "Notify if a point release is available" msgstr "Повідомити, чи доступний невеликий випуск" -#: src/Gtk/SettingsDialog.vala:91 +#: src/Gtk/SettingsDialog.vala:90 msgid "Show notification bubble on desktop" msgstr "Показувати вікно сповіщень на робочому столі" -#: src/Gtk/SettingsDialog.vala:102 +#: src/Gtk/SettingsDialog.vala:101 msgid "(Allowing intervals in seconds for --debug)" msgstr "(Дозволити інтервали в секундах для --debug)" -#: src/Gtk/SettingsDialog.vala:112 +#: src/Gtk/SettingsDialog.vala:111 msgid "Check every" msgstr "Перевіряти кожні" -#: src/Gtk/SettingsDialog.vala:145 +#: src/Gtk/SettingsDialog.vala:144 msgid "Hour(s)" msgstr "Година(Годин)" -#: src/Gtk/SettingsDialog.vala:147 +#: src/Gtk/SettingsDialog.vala:146 msgid "Day(s)" msgstr "День(Днів)" -#: src/Gtk/SettingsDialog.vala:149 +#: src/Gtk/SettingsDialog.vala:148 msgid "Week(s)" msgstr "Тиждень(ні)" -#: src/Gtk/SettingsDialog.vala:152 +#: src/Gtk/SettingsDialog.vala:151 #, fuzzy msgid "Second(s)" msgstr "Секунда(и)" -#: src/Gtk/SettingsDialog.vala:158 +#: src/Gtk/SettingsDialog.vala:157 msgid "Display" msgstr "Показ" -#: src/Gtk/SettingsDialog.vala:166 +#: src/Gtk/SettingsDialog.vala:165 msgid "Hide unstable and RC releases" msgstr "Приховати нестабільні і реліз-кандидат версії" -#: src/Gtk/SettingsDialog.vala:180 +#: src/Gtk/SettingsDialog.vala:179 msgid "Show N previous major versions " msgstr "Показати N попередніх основних версій" -#: src/Gtk/SettingsDialog.vala:195 +#: src/Gtk/SettingsDialog.vala:194 msgid "Other" msgstr "Інший" -#: src/Gtk/SettingsDialog.vala:203 +#: src/Gtk/SettingsDialog.vala:202 msgid "Skip internet connection check" msgstr "Пропустити перевірку підключення до Інтернету" -#: src/Gtk/SettingsDialog.vala:216 +#: src/Gtk/SettingsDialog.vala:215 msgid "Internet connection timeout in " msgstr "Час очікування підключення до Інтернету в " @@ -473,6 +473,10 @@ msgstr "Час очікування підключення до Інтернет msgid "seconds" msgstr "секунди" +#: src/Gtk/SettingsDialog.vala:237 +msgid "Max concurrent downloads" +msgstr "" + #: src/Gtk/TerminalWindow.vala:159 src/Utility/Gtk/AboutWindow.vala:294 msgid "Close" msgstr "Закрити" diff --git a/src/Common/DownloadManager.vala b/src/Common/DownloadManager.vala index a9c14761..00eccade 100644 --- a/src/Common/DownloadManager.vala +++ b/src/Common/DownloadManager.vala @@ -9,9 +9,9 @@ public class DownloadTask : AsyncTask{ // settings public bool status_in_kb = false; - public int connect_timeout_secs = 60; public int timeout_secs = 60; - public int concurrent_downloads = 20; + public int connect_timeout = App.connect_timeout_seconds; + public int max_concurrent = App.concurrent_downloads; // download lists private Gee.ArrayList downloads; @@ -106,9 +106,9 @@ public class DownloadTask : AsyncTask{ + " --human-readable=false" + " --enable-color=false" + " --allow-overwrite" - + " --connect-timeout=%d".printf(connect_timeout_secs) + + " --connect-timeout=%d".printf(connect_timeout) + " --timeout=%d".printf(timeout_secs) - + " --max-concurrent-downloads=%d".printf(concurrent_downloads) + + " --max-concurrent-downloads=%d".printf(max_concurrent) + " --max-file-not-found=3" + " --retry-wait=2"; diff --git a/src/Common/LinuxKernel.vala b/src/Common/LinuxKernel.vala index 6173728f..bffca4fa 100644 --- a/src/Common/LinuxKernel.vala +++ b/src/Common/LinuxKernel.vala @@ -320,6 +320,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { check_installed(); + //check_updates("query_thread()"); check_updates(); task_is_running = false; @@ -501,7 +502,9 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { } // scan kernel_list for versions newer than latest installed + //public static void check_updates(string from = ""){ public static void check_updates(){ + //log_debug("check_updates("+from+")"); log_debug("check_updates()"); kernel_update_major = null; kernel_update_minor = null; @@ -635,7 +638,8 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { query(true); - check_updates(); + // already done in query() -> query_tread() ? + //check_updates("install_latest()"); var kern_major = LinuxKernel.kernel_update_major; @@ -772,7 +776,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { return (x - y); } else if ((x == 0) && (y == 0)){ - // this one place where -rc# get compared + // BKW - this is one place where "-rc3" gets compared to "-rc4" etc // both are strings //log_debug("strcmp("+arr_a[i]+","+arr_b[i]+")"); return strcmp(arr_a[i], arr_b[i]); diff --git a/src/Common/Main.vala b/src/Common/Main.vala index 483f5516..9029ea31 100644 --- a/src/Common/Main.vala +++ b/src/Common/Main.vala @@ -79,8 +79,9 @@ public class Main : GLib.Object{ public bool notify_bubble = true; public int notify_interval_unit = 0; public int notify_interval_value = 2; + public int connect_timeout_seconds = 15; + public int concurrent_downloads = 4; public bool skip_connection_check = false; - public int connection_timeout_seconds = 15; public bool confirm = true; // constructors ------------ @@ -136,7 +137,8 @@ public class Main : GLib.Object{ config.set_string_member("show_prev_majors", LinuxKernel.show_prev_majors.to_string()); config.set_string_member("notify_interval_unit", notify_interval_unit.to_string()); config.set_string_member("notify_interval_value", notify_interval_value.to_string()); - config.set_string_member("connection_timeout_seconds", connection_timeout_seconds.to_string()); + config.set_string_member("connect_timeout_seconds", connect_timeout_seconds.to_string()); + config.set_string_member("concurrent_downloads", concurrent_downloads.to_string()); config.set_string_member("skip_connection_check", skip_connection_check.to_string()); var json = new Json.Generator(); @@ -189,7 +191,8 @@ public class Main : GLib.Object{ notify_bubble = json_get_bool(config, "notify_bubble", true); notify_interval_unit = json_get_int(config, "notify_interval_unit", 0); notify_interval_value = json_get_int(config, "notify_interval_value", 2); - connection_timeout_seconds = json_get_int(config, "connection_timeout_seconds", 15); + connect_timeout_seconds = json_get_int(config, "connect_timeout_seconds", 15); + concurrent_downloads = json_get_int(config, "concurrent_downloads", 4); skip_connection_check = json_get_bool(config, "skip_connection_check", false); LinuxKernel.hide_unstable = json_get_bool(config, "hide_unstable", true); @@ -226,10 +229,8 @@ public class Main : GLib.Object{ count = App.notify_interval_value; break; } - - if (file_exists(STARTUP_SCRIPT_FILE)){ - file_delete(STARTUP_SCRIPT_FILE); - } + + file_delete(STARTUP_SCRIPT_FILE); // see OSDNotify.vala notify-send.sh -R string s = diff --git a/src/Console/OSDNotify.vala b/src/Common/OSDNotify.vala similarity index 70% rename from src/Console/OSDNotify.vala rename to src/Common/OSDNotify.vala index 850fe64a..97985881 100644 --- a/src/Console/OSDNotify.vala +++ b/src/Common/OSDNotify.vala @@ -31,10 +31,9 @@ public class OSDNotify : GLib.Object { private static DateTime dt_last_notification = null; public const int MIN_NOTIFICATION_INTERVAL = 3; - public static int notify_send (string summary = "", string _body = "", string extra_action = ""){ - - /* Displays notification bubble on the desktop */ - + // send a desktop notification + // re-use the notification id for subsequent re-sends/updates + public static int notify_send (string summary = "", string body = "", Gee.ArrayList actions = new Gee.ArrayList(), string close_action = ""){ int retVal = 0; long seconds = 9999; @@ -46,30 +45,23 @@ public class OSDNotify : GLib.Object { if (seconds > MIN_NOTIFICATION_INTERVAL){ - string action = BRANDING_SHORTNAME+"-gtk"; - string body = _body; - - if (LOG_DEBUG) { - action = APP_LIB_DIR+"/notify-action-debug.sh"; - if (body!="") body += "\\n\\n"; - body += "("+action+")"; - } - string s = APP_LIB_DIR+"/notify_send/notify-send.sh" + + " -R "+App.NOTIFICATION_ID_FILE + " -u low" + " -c info" + " -a "+BRANDING_SHORTNAME + " -i "+BRANDING_SHORTNAME - + " -t 0" - + " -R "+App.NOTIFICATION_ID_FILE - + " -o \""+_("Show")+":"+action+"\""; - if (extra_action!="") s += " -o \""+extra_action+"\""; + + " -t 0"; + + if (close_action != "") s += " -l \""+close_action+"\""; + + foreach (string a in actions) s += " -o \""+a+"\""; + s += " \""+summary+"\"" + " \""+body+"\""; - log_debug(s); - + log_debug (s); exec_async (s); dt_last_notification = new DateTime.now_local(); @@ -79,4 +71,16 @@ public class OSDNotify : GLib.Object { return retVal; } + // closes a previously sent notification + // modified version of notify-send.sh + // to let -s option get ID from -R file + public static void notify_close () { + string s = + APP_LIB_DIR+"/notify_send/notify-send.sh" + + " -R "+App.NOTIFICATION_ID_FILE + + " -s"; + log_debug (s); + exec_async (s); + } + } diff --git a/src/Console/AppConsole.vala b/src/Console/AppConsole.vala index 1c472c36..a6b731e4 100644 --- a/src/Console/AppConsole.vala +++ b/src/Console/AppConsole.vala @@ -117,7 +117,11 @@ public class AppConsole : GLib.Object { case "--yes": App.confirm = false; break; - + + case "--close-notification": + OSDNotify.notify_close(); + break; + case "--user": if (++k < args.length){ string custom_user_login = args[k]; @@ -294,7 +298,8 @@ public class AppConsole : GLib.Object { LinuxKernel.query(true); - LinuxKernel.check_updates(); + // already done in query() -> query_thread() + // LinuxKernel.check_updates("print_updates()"); var kern_major = LinuxKernel.kernel_update_major; @@ -323,41 +328,56 @@ public class AppConsole : GLib.Object { LinuxKernel.query(true); - LinuxKernel.check_updates(); + // already done in query() -> query_thread() + //LinuxKernel.check_updates("notify_user()"); string seen = ""; - if (file_exists(App.NOTIFICATION_SEEN_FILE)) seen = file_read(App.NOTIFICATION_SEEN_FILE); - log_debug("seen:\""+seen+"\""); + if (file_exists(App.NOTIFICATION_SEEN_FILE)) seen = file_read(App.NOTIFICATION_SEEN_FILE).strip(); + log_msg("seen:\""+seen+"\""); + + string debug_action = ""; + string close_action = ""; + string body = ""; + var alist = new Gee.ArrayList (); // notification action buttons: "buttonlabel:command line to run" + + if (App.notify_bubble) { + if (LOG_DEBUG) { + debug_action = APP_LIB_DIR+"/notify-action-debug.sh"; + body = debug_action; + debug_action += " "; + } + alist.add(_("Show")+":"+debug_action+BRANDING_SHORTNAME+"-gtk --close-notification"); + } var kern = LinuxKernel.kernel_update_major; - if (App.notify_major && (kern!=null) && (seen!=kern.version_main)){ - var title = _("Kernel %s Available").printf(kern.version_main); - if (App.notify_bubble){ - string extra_action = _("Install")+":"+BRANDING_SHORTNAME+"-gtk --install "+kern.version_main; - OSDNotify.notify_send(title,"",extra_action); + alist.add(_("Install")+":"+debug_action+BRANDING_SHORTNAME+"-gtk --close-notification --install "+kern.version_main); + // close_action is working, as far as it goes. The command is executed when the user closes the notification. + // But it doesn't run when the user presses one of the action buttons. + // To handle the action buttons, we'd need to pass the kernel version along as a new commandline arg + // so that "--close-notification" could write the "seen" file. + // All that is unecessarily complicated. It's good enough to just write the seen file right here + // when we send the notification in the first place. Then we don't need any close_action. + //close_action = "echo "+kern.version_main+" >"+App.NOTIFICATION_SEEN_FILE; + file_write(App.NOTIFICATION_SEEN_FILE,kern.version_main); + OSDNotify.notify_send(title,body,alist,close_action); } - log_msg(title); - return; } kern = LinuxKernel.kernel_update_minor; - if (App.notify_minor && (kern!=null) && (seen!=kern.version_main)){ - var title = _("Kernel %s Available").printf(kern.version_main); - - if (App.notify_bubble){ - string extra_action = _("Install")+":"+BRANDING_SHORTNAME+"-gtk --install "+kern.version_main; - OSDNotify.notify_send(title,"",extra_action); + if (App.notify_bubble) { + alist.add(_("Install")+":"+debug_action+BRANDING_SHORTNAME+"-gtk --close-notification --install "+kern.version_main); + //close_action = "echo "+kern.version_main+" >"+App.NOTIFICATION_SEEN_FILE; + file_write(App.NOTIFICATION_SEEN_FILE,kern.version_main); + OSDNotify.notify_send(title,body,alist,close_action); } - log_msg(title); - return; } diff --git a/src/Gtk/AppGtk.vala b/src/Gtk/AppGtk.vala index ec7a4dcf..2ecea4f0 100644 --- a/src/Gtk/AppGtk.vala +++ b/src/Gtk/AppGtk.vala @@ -95,6 +95,10 @@ public class AppGtk : GLib.Object { LOG_DEBUG = true; break; + case "--close-notification": + OSDNotify.notify_close(); + break; + case "--help": case "--h": case "-h": @@ -114,13 +118,14 @@ public class AppGtk : GLib.Object { App.command = "install"; App.requested_version = args[++k]; break; - + // options without argument -------------------------- case "--help": case "--h": case "-h": case "--debug": + case "--close-notification": // already handled - do nothing break; @@ -156,4 +161,3 @@ public class AppGtk : GLib.Object { return msg; } } - diff --git a/src/Gtk/SettingsDialog.vala b/src/Gtk/SettingsDialog.vala index ab39073e..c44acbe5 100644 --- a/src/Gtk/SettingsDialog.vala +++ b/src/Gtk/SettingsDialog.vala @@ -21,7 +21,6 @@ * */ - using Gtk; using Gee; @@ -218,18 +217,38 @@ public class SettingsDialog : Gtk.Dialog { label.margin_start = 6; hbox.add (label); - adjustment = new Gtk.Adjustment(App.connection_timeout_seconds, 1, 20, 1, 1, 0); + adjustment = new Gtk.Adjustment(App.connect_timeout_seconds, 1, 60, 1, 1, 0); spin = new Gtk.SpinButton (adjustment, 1, 0); spin.xalign = (float) 0.5; hbox.add(spin); + var spin_timeout = spin; spin.changed.connect(()=>{ - App.connection_timeout_seconds = (int) spin.get_value(); + App.connect_timeout_seconds = (int) spin_timeout.get_value(); }); label = new Label(_("seconds")); hbox.add(label); + // concurrent downloads + hbox = new Gtk.Box(Orientation.HORIZONTAL, 6); + vbox_main.add (hbox); + + label = new Label(_("Max concurrent downloads")); + label.xalign = (float) 0.0; + label.margin_start = 6; + hbox.add (label); + + adjustment = new Gtk.Adjustment(App.concurrent_downloads, 1, 25, 1, 1, 0); + spin = new Gtk.SpinButton (adjustment, 1, 0); + spin.xalign = (float) 0.5; + hbox.add(spin); + var spin_concurrent = spin; + + spin.changed.connect(()=>{ + App.concurrent_downloads = (int) spin_concurrent.get_value(); + }); + // actions ------------------------- // ok diff --git a/src/Utility/TeeJee.System.vala b/src/Utility/TeeJee.System.vala index 89860c9c..1d9d3fde 100644 --- a/src/Utility/TeeJee.System.vala +++ b/src/Utility/TeeJee.System.vala @@ -34,7 +34,7 @@ namespace TeeJee.System{ if (App.skip_connection_check) return true; string std_err, std_out; - string cmd = "aria2c --no-netrc --no-conf --connect-timeout="+App.connection_timeout_seconds.to_string()+" --max-file-not-found=3 --retry-wait=2 --max-tries=3 --dry-run --quiet https://www.google.com/"; + string cmd = "aria2c --no-netrc --no-conf --connect-timeout="+App.connect_timeout_seconds.to_string()+" --max-file-not-found=3 --retry-wait=2 --max-tries=3 --dry-run --quiet https://www.google.com/"; int status = exec_sync(cmd, out std_out, out std_err); From 6ed894bebfd5099026733d8ee9ed894cd97409e3 Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Tue, 19 May 2020 17:44:00 -0400 Subject: [PATCH 100/567] readme & changelog, release 1.0.10 --- .deb_build_number.mak | 4 ++-- BRANDING.mak | 2 +- README.md | 2 -- README.md.src | 2 -- debian/changelog | 10 ++++++++++ po/messages.pot | 2 +- 6 files changed, 14 insertions(+), 8 deletions(-) diff --git a/.deb_build_number.mak b/.deb_build_number.mak index fadd3395..b60a70f6 100644 --- a/.deb_build_number.mak +++ b/.deb_build_number.mak @@ -1,3 +1,3 @@ # This file is generated by Makefile "make deb_build_number" -DEB_PKG_VERSION := 1.0.9 -DEB_BUILD_NUMBER := 0018 +DEB_PKG_VERSION := 1.0.10 +DEB_BUILD_NUMBER := 0000 diff --git a/BRANDING.mak b/BRANDING.mak index ce8fdf15..e8f3f7b4 100644 --- a/BRANDING.mak +++ b/BRANDING.mak @@ -3,7 +3,7 @@ VERSION_MAJOR = 1 VERSION_MINOR = 0 -VERSION_MICRO = 9 +VERSION_MICRO = 10 BRANDING_SHORTNAME = mainline BRANDING_LONGNAME = Ubuntu Mainline Kernel Installer BRANDING_AUTHORNAME = Brian K. White diff --git a/README.md b/README.md index e34ae907..7ee27bbe 100644 --- a/README.md +++ b/README.md @@ -46,8 +46,6 @@ The original author stopped maintaining the original GPL version of ukuu and swi * Better desktop notification behavior ### TODO & WIP -* notifications - if you've seen a notification for a given kernel and dismissed it, don't display it again, at least not in the same login session. * notifications - make the bg process detect when the user logs off and exit itself. * notifications - start/restart/stop the bg process when the user changes settings instead of only at logon/logoff -* notifications - you press one of the buttons, also close the notification * temp files - do something less broken when a user runs ex: "sudo mainline --install-latest" diff --git a/README.md.src b/README.md.src index 1beeb029..40a131eb 100644 --- a/README.md.src +++ b/README.md.src @@ -46,8 +46,6 @@ The original author stopped maintaining the original GPL version of ukuu and swi * Better desktop notification behavior ### TODO & WIP -* notifications - if you've seen a notification for a given kernel and dismissed it, don't display it again, at least not in the same login session. * notifications - make the bg process detect when the user logs off and exit itself. * notifications - start/restart/stop the bg process when the user changes settings instead of only at logon/logoff -* notifications - you press one of the buttons, also close the notification * temp files - do something less broken when a user runs ex: "sudo mainline --install-latest" diff --git a/debian/changelog b/debian/changelog index 7969c0c7..a83a5f63 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,13 @@ +mainline (1.0.10) unstable; urgency=medium + + * Notifications + When any action button pressed, close the notification + Once a notification for a given kernel has been sent, don't notify for that kernel again during the same login session + * Don't run check_updates() twice for no reason + * Expose concurrent_downloads as a configurable setting + + -- Brian K. White Tue, 19 May 2020 17:32:48 -0400 + mainline (1.0.9) unstable; urgency=medium * Slick new desktop notifications with action buttons thanks to https://github.com/vlevit/notify-send.sh diff --git a/po/messages.pot b/po/messages.pot index 3e647c05..0e26fb06 100644 --- a/po/messages.pot +++ b/po/messages.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline 1.0.9\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-19 17:20-0400\n" +"POT-Creation-Date: 2020-05-19 17:31-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" From e85d8dc6471a41f9640d88a26e91800179f36459 Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Sat, 23 May 2020 00:29:50 -0400 Subject: [PATCH 101/567] resolve many notifications issues --- .deb_build_number.mak | 2 +- BRANDING.mak | 2 +- debian/changelog | 14 ++ lib/notify_send/AUTHORS | 1 + lib/notify_send/README.md | 5 + lib/notify_send/notify-action.sh | 126 ++++++------ lib/notify_send/notify-send.sh | 324 +++++++++++++------------------ po/es.po | 122 ++++++------ po/fr.po | 122 ++++++------ po/hr.po | 122 ++++++------ po/messages.pot | 124 ++++++------ po/nl.po | 122 ++++++------ po/pl.po | 122 ++++++------ po/ru.po | 122 ++++++------ po/sv.po | 122 ++++++------ po/tr.po | 122 ++++++------ po/uk.po | 122 ++++++------ src/Common/LinuxKernel.vala | 3 +- src/Common/Main.vala | 54 ++++-- src/Common/OSDNotify.vala | 12 -- src/Console/AppConsole.vala | 34 ++-- src/Gtk/AppGtk.vala | 7 +- src/Gtk/SettingsDialog.vala | 31 ++- 23 files changed, 883 insertions(+), 954 deletions(-) diff --git a/.deb_build_number.mak b/.deb_build_number.mak index b60a70f6..6fb61c09 100644 --- a/.deb_build_number.mak +++ b/.deb_build_number.mak @@ -1,3 +1,3 @@ # This file is generated by Makefile "make deb_build_number" -DEB_PKG_VERSION := 1.0.10 +DEB_PKG_VERSION := 1.0.11 DEB_BUILD_NUMBER := 0000 diff --git a/BRANDING.mak b/BRANDING.mak index e8f3f7b4..036e429f 100644 --- a/BRANDING.mak +++ b/BRANDING.mak @@ -3,7 +3,7 @@ VERSION_MAJOR = 1 VERSION_MINOR = 0 -VERSION_MICRO = 10 +VERSION_MICRO = 11 BRANDING_SHORTNAME = mainline BRANDING_LONGNAME = Ubuntu Mainline Kernel Installer BRANDING_AUTHORNAME = Brian K. White diff --git a/debian/changelog b/debian/changelog index a83a5f63..d993e34a 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,17 @@ +mainline (1.0.11) unstable; urgency=medium + + * Resolved several issues with notifications bacground processes and temp files + * Removed redundant notification setting, since now the desktop notifications are the only kind + * The background notification loop is restarted any time settings are saved in the app + so the settings now take effect immediately. + * When a new notifications is sent which replaces an existing notification, + it no longer adds more dbus monitor processes with each new update. + * Logging out and back in no longer adds more notify.sh processes. It still doesn't exit when you log out, + but at least it kills it's old instance when starting a new instance at logon. + * notify-send.sh and notify-action.sh are completely re-written and refactored to be more efficient and more reliable. + + -- Brian K. White Sat, 23 May 2020 00:05:21 -0400 + mainline (1.0.10) unstable; urgency=medium * Notifications diff --git a/lib/notify_send/AUTHORS b/lib/notify_send/AUTHORS index b33fb06d..2848bce0 100644 --- a/lib/notify_send/AUTHORS +++ b/lib/notify_send/AUTHORS @@ -1,3 +1,4 @@ +Brian K. White Vyacheslav Levit Max Weller bsilvereagle diff --git a/lib/notify_send/README.md b/lib/notify_send/README.md index ce18d576..db33401b 100644 --- a/lib/notify_send/README.md +++ b/lib/notify_send/README.md @@ -1,5 +1,10 @@ # notify-send.sh +---- +**This copy has been modified for https://github.com/bkw777/mainline** + +---- + notify-send.sh is a drop-in replacement for notify-send (from libnotify) with ability to update and close existing notifications. diff --git a/lib/notify_send/notify-action.sh b/lib/notify_send/notify-action.sh index 7b8dbb01..f4fedbcd 100755 --- a/lib/notify_send/notify-action.sh +++ b/lib/notify_send/notify-action.sh @@ -1,68 +1,76 @@ -#!/usr/bin/env bash +#!/bin/bash -GDBUS_MONITOR_PID=/tmp/notify-action-dbus-monitor.$$.pid -GDBUS_MONITOR=(gdbus monitor --session --dest org.freedesktop.Notifications --object-path /org/freedesktop/Notifications) +### 20200520 b.kenyon.w@gmail.com +# This is completely re-written for https://github.com/bkw777/mainline +# +# * If REPLACE_ID then find the PID of any previous monitor for the same NOTIFICATION_ID +# and kill that process and replace it, rather than add more and more monitor processes. +# * Run gdbus in {} instead of () +# * Parse gdbus output without $(sed ...) +# * Close notifcation after receiving any action. +# * Robust pid file and old-job processing +# * Robust cleanup on exit +# * Vastly refactored to use all bash built-in features +# and no child processes except gdbus and the invoked actions +# no more sed to parse output or foo=$(command ...) to collect output etc +# * Use APP_NAME (if present) in place of $0 in pid filename +# * setsid to free ourself from the invoved action process -NOTIFICATION_ID="$1" -if [[ -z "$NOTIFICATION_ID" ]]; then - echo "no notification id passed: $@" - exit 1; -fi -shift +NOTIFY_SEND=${0%/*}/notify-send.sh +GDBUS_ARGS=(monitor --session --dest org.freedesktop.Notifications --object-path /org/freedesktop/Notifications) +SELF=${0##*/} +GDBUS_PIDF=/tmp/${APP_NAME:=${SELF}}.${$}.p -ACTION_COMMANDS=("$@") -if [[ -z "$ACTION_COMMANDS" ]]; then - echo "no action commands passed: $@" - exit 1; -fi +set +H +shopt -s extglob -cleanup() { - rm -f "$GDBUS_MONITOR_PID" -} +abrt () { echo "${0}: ${@}" >&2 ; exit 1 ; } -create_pid_file(){ - rm -f "$GDBUS_MONITOR_PID" - umask 077 - touch "$GDBUS_MONITOR_PID" -} +# consume the command line +typeset -i ID="${1}" ;shift +[[ ${ID} -gt 0 ]] || abrt "no notification id" +declare -A a ;while [[ "${1}" ]] ;do a[${1}]=${2} ;shift 2 ;done +[[ ${#a[@]} -gt 0 ]] || abrt "no actions" -invoke_action() { - invoked_action_id="$1" - local action="" cmd="" - for index in "${!ACTION_COMMANDS[@]}"; do - if [[ $((index % 2)) == 0 ]]; then - action="${ACTION_COMMANDS[$index]}" - else - cmd="${ACTION_COMMANDS[$index]}" - if [[ "$action" == "$invoked_action_id" ]]; then - bash -c "${cmd}" & - fi - fi - done -} +[[ "${DISPLAY}" ]] || abrt "no DISPLAY" +typeset -i i=0 p=0 +# start the pid file, no PID or linefeed yet +echo -n "${DISPLAY} ${ID} " > ${GDBUS_PIDF} -monitor() { +# kill any duplicate jobs older than ourself +for f in /tmp/${APP_NAME}.+([0-9]).p ;do + [[ -s "${f}" ]] || continue + [[ ${f} -ot ${GDBUS_PIDF} ]] || continue + read d i p x < "${f}" + [[ "${d}" == "${DISPLAY}" ]] || continue + [[ ${i} == ${ID} ]] || continue + [[ ${p} -gt 0 ]] || continue + rm -f "${f}" + kill ${p} +done - create_pid_file - ( "${GDBUS_MONITOR[@]}" & echo $! >&3 ) 3>"$GDBUS_MONITOR_PID" | while read -r line - do - local closed_notification_id="$(sed '/^\/org\/freedesktop\/Notifications: org.freedesktop.Notifications.NotificationClosed (uint32 \([0-9]\+\), uint32 [0-9]\+)$/!d;s//\1/' <<< "$line")" - if [[ -n "$closed_notification_id" ]]; then - if [[ "$closed_notification_id" == "$NOTIFICATION_ID" ]]; then - invoke_action close - break - fi - else - local action_invoked="$(sed '/\/org\/freedesktop\/Notifications: org.freedesktop.Notifications.ActionInvoked (uint32 \([0-9]\+\), '\''\(.*\)'\'')$/!d;s//\1:\2/' <<< "$line")" - IFS=: read invoked_id action_id <<< "$action_invoked" - if [[ "$invoked_id" == "$NOTIFICATION_ID" ]]; then - invoke_action "$action_id" - break - fi - fi - done - kill $(<"$GDBUS_MONITOR_PID") - cleanup -} +# start the dbus monitor +{ + gdbus ${GDBUS_ARGS[@]} & echo "${!}" >> ${GDBUS_PIDF} +} |while IFS+=":.()," read x x x x e x i k x ;do + [[ ${i} == ${ID} ]] || continue + k=${k:1} k=${k:0:-1} + case "${e}" in + "NotificationClosed") k="close" ;; + "ActionInvoked") "${NOTIFY_SEND}" -s ${ID} ;; + esac + setsid -f bash -c "${a[${k}]}" >/dev/null 2>&1 & + break +done -monitor +# kill the dbus monitor +# Our gdbus process might be killed by a new instance of ourself (see above) +# while we wait forever for a dbus event that never came. So here, don't treat +# a missing file as an alarming error. Above, we will delete the file before we +# kill the gdbus process so that here, we can't end up trying to kill a random +# unrelated new process that happened to get the same PID after it was freed. +[[ -s ${GDBUS_PIDF} ]] || exit +read d i p x < ${GDBUS_PIDF} +rm -f ${GDBUS_PIDF} +[[ ${p} -gt 0 ]] || exit +kill ${p} diff --git a/lib/notify_send/notify-send.sh b/lib/notify_send/notify-send.sh index 9d20e822..04a66b0e 100755 --- a/lib/notify_send/notify-send.sh +++ b/lib/notify_send/notify-send.sh @@ -19,16 +19,39 @@ # Desktop Notifications Specification # https://developer.gnome.org/notification-spec/ -VERSION=1.1 -NOTIFY_ARGS=(--session - --dest org.freedesktop.Notifications - --object-path /org/freedesktop/Notifications) -EXPIRE_TIME=-1 -APP_NAME="${0##*/}" -REPLACE_ID=0 +### 20200520 b.kenyon.w@gmail.com +### This copy is significantly modified for https://github.com/bkw777/mainline +### The associated notifty-action.sh is completely re-written +# +# * If expire time is 0, then ignore --force and don't try to calculate sleep time (divide by 0) +# * Derive sleep time from expire time without "bc" and without $(...) +# * Refactor to avoid unecessary child shells (still more could be done) +# * --close without ID gets ID from --replace-file +# * Fix quoting of action pairs so that -d default action, or any -o action with no label, +# produces a blank button insted of a button with '' +# * Allow empty SUMMARY & BODY, treat missing as empty instead of error +# * Typeset -i to prevent ID from ever being '', +# even if --replace-file is bad. +# * Export APP_NAME to notify-action.sh child process +# * setsid to free ourself from the action handler process + +SELF=${0##*/} +VERSION="1.1-mainline" +ACTION_HANDLER=${0%/*}/notify-action.sh + +NOTIFY_ARGS=(--session --dest org.freedesktop.Notifications --object-path /org/freedesktop/Notifications) +typeset -i EXPIRE_TIME=-1 +typeset -i ID=0 URGENCY=1 HINTS=() -SUMMARY_SET=n +APP_NAME=${SELF} +PRINT_ID=false +FORCE_EXPIRE=false +unset ID_FILE +positional=false +SUMMARY_SET=false +SUMMARY="" +BODY="" help() { cat <&2 ; exit 1 ; } + +convert_type () { + case "${1}" in int) echo int32 ;; - double|string|byte) echo "$1" ;; + double|string|byte) echo "${1}" ;; *) echo error; return 1 ;; esac } -make_action_key() { - echo "$(tr -dc _A-Z-a-z-0-9 <<< \"$1\")${RANDOM}" -} - -make_action() { - local action_key="$1" - printf -v text "%q" "$2" - echo "\"$action_key\", \"$text\"" -} - -make_hint() { +make_hint () { type=$(convert_type "$1") - [[ ! $? = 0 ]] && return 1 - name="$2" + [[ $? = 0 ]] || return 1 + name=${2} [[ "$type" = string ]] && command="\"$3\"" || command="$3" echo "\"$name\": <$type $command>" } -concat_actions() { - local result="$1" - shift - for s in "$@"; do - result="$result, $s" - done - echo "[$result]" -} - -concat_hints() { - local result="$1" - shift - for s in "$@"; do - result="$result, $s" - done - echo "{$result}" -} - -parse_notification_id(){ - sed 's/(uint32 \([0-9]\+\),)/\1/g' +concat_actions () { + local r=${1} ;shift + while [[ "${1}" ]] ;do r+=",${1}" ;shift ;done + echo "[${r}]" } -notify() { - local actions="$(concat_actions "${ACTIONS[@]}")" - local hints="$(concat_hints "${HINTS[@]}")" - - NOTIFICATION_ID=$(gdbus call "${NOTIFY_ARGS[@]}" \ - --method org.freedesktop.Notifications.Notify \ - "$APP_NAME" "$REPLACE_ID" "$ICON" "$SUMMARY" "$BODY" \ - "${actions}" "${hints}" "int32 $EXPIRE_TIME" \ - | parse_notification_id) - - if [[ -n "$STORE_ID" ]] ; then - echo "$NOTIFICATION_ID" > $STORE_ID - fi - if [[ -n "$PRINT_ID" ]] ; then - echo "$NOTIFICATION_ID" - fi - - if [[ -n "$FORCE_EXPIRE" ]] ; then - type bc &> /dev/null || { echo "bc command not found. Please install bc package."; exit 1; } - SLEEP_TIME="$(bc <<< "scale=3; $EXPIRE_TIME / 1000")" - ( sleep "$SLEEP_TIME" ; notify_close "$NOTIFICATION_ID" ) & - fi - - maybe_run_action_handler +concat_hints () { + local r=${1} ;shift + while [[ "${1}" ]] ;do r+=",${1}" ;shift ;done + echo "{${r}}" } -notify_close() { - gdbus call "${NOTIFY_ARGS[@]}" --method org.freedesktop.Notifications.CloseNotification "$1" >/dev/null +notify_close () { + gdbus call ${NOTIFY_ARGS[@]} --method org.freedesktop.Notifications.CloseNotification "${1}" >&- } -process_urgency() { - case "$1" in +process_urgency () { + case "${1}" in low) URGENCY=0 ;; normal) URGENCY=1 ;; critical) URGENCY=2 ;; - *) echo "Unknown urgency $URGENCY specified. Known urgency levels: low, normal, critical." - exit 1 - ;; + *) abrt "Invalid urgency \"${URGENCY}\". Valid values: low normal critical" ;; esac } -process_category() { - IFS=, read -a categories <<< "$1" - for category in "${categories[@]}"; do - hint="$(make_hint string category "$category")" - HINTS=("${HINTS[@]}" "$hint") +process_category () { + local a c + IFS=, a=(${1}) + for c in "${a[@]}"; do + HINTS+=("$(make_hint string category "${c}")") done } -process_hint() { - IFS=: read type name command <<< "$1" - if [[ -z "$name" ]] || [[ -z "$command" ]] ; then - echo "Invalid hint syntax specified. Use TYPE:NAME:VALUE." - exit 1 - fi - hint="$(make_hint "$type" "$name" "$command")" - if [[ ! $? = 0 ]] ; then - echo "Invalid hint type \"$type\". Valid types are int, double, string and byte." - exit 1 - fi - HINTS=("${HINTS[@]}" "$hint") +process_hint () { + local a t n c h + IFS=: a=(${1}) + t=${a[0]} n=${a[1]} c=${a[2]} + [[ "${n}" ]] && [[ "${c}" ]] || abrt "Invalid hint syntax specified. Use TYPE:NAME:VALUE." + h="$(make_hint "${t}" "${n}" "${c}")" + [[ $? = 0 ]] || abrt "Invalid hint type \"${t}\". Valid types are int, double, string and byte." + HINTS+=("${h}") } -maybe_run_action_handler() { - if [[ -n "$NOTIFICATION_ID" ]] && [[ -n "$ACTION_COMMANDS" ]]; then - local notify_action="$(dirname ${BASH_SOURCE[0]})/notify-action.sh" - if [[ -x "$notify_action" ]] ; then - "$notify_action" "$NOTIFICATION_ID" "${ACTION_COMMANDS[@]}" & - exit 0 - else - echo "executable file not found: $notify_action" - exit 1 - fi - fi +process_action () { + local x n c k + IFS=: x=(${1}) + n=${x[0]} c=${x[1]} + [[ "${n}" ]] && [[ "${c}" ]] || abrt "Invalid action syntax specified. Use NAME:COMMAND." + k=${APP_NAME}_${n} + ACTION_COMMANDS+=("${k}" "${c}") + ACTIONS+=("\"${k}\",\"${n}\"") } -process_action() { - IFS=: read name command <<<"$1" - if [[ -z "$name" ]] || [[ -z "$command" ]]; then - echo "Invalid action syntax specified. Use NAME:COMMAND." - exit 1 - fi - - local action_key="$(make_action_key "$name")" - ACTION_COMMANDS=("${ACTION_COMMANDS[@]}" "$action_key" "$command") - - local action="$(make_action "$action_key" "$name")" - ACTIONS=("${ACTIONS[@]}" "$action") +process_special_action () { + local k="${1}" c="${2}" + [[ "${c}" ]] || abrt "Command must not be empty" + ACTION_COMMANDS+=("${k}" "${c}") + [[ "${k}" != "close" ]] && ACTIONS+=("\"${k}\",\"\"") } -process_special_action() { - action_key="$1" - command="$2" - - if [[ -z "$action_key" ]] || [[ -z "$command" ]]; then - echo "Command must not be empty" - exit 1 - fi - - ACTION_COMMANDS=("${ACTION_COMMANDS[@]}" "$action_key" "$command") - - if [[ "$action_key" != close ]]; then - local action="$(make_action "$action_key" "$name")" - ACTIONS=("${ACTIONS[@]}" "$action") - fi +process_posargs () { + [[ "${1}" = -* ]] && ! ${positional} && abrt "Unknown option ${1}" + ${SUMMARY_SET} && BODY=${1} || SUMMARY=${1} SUMMARY_SET=true } -process_posargs() { - if [[ "$1" = -* ]] && ! [[ "$positional" = yes ]] ; then - echo "Unknown option $1" - exit 1 - else - if [[ "$SUMMARY_SET" = n ]]; then - SUMMARY="$1" - SUMMARY_SET=y - else - BODY="$1" - fi - fi -} - -while (( $# > 0 )) ; do - case "$1" in +while (( ${#} > 0 )) ; do + case "${1}" in -\?|--help) help exit 0 ;; -v|--version) - echo "${0##*/} $VERSION" + echo "${SELF} ${VERSION}" exit 0 ;; -u|--urgency|--urgency=*) - [[ "$1" = --urgency=* ]] && urgency="${1#*=}" || { shift; urgency="$1"; } - process_urgency "$urgency" + [[ "${1}" = --urgency=* ]] && urgency="${1#*=}" || { shift; urgency="${1}"; } + process_urgency "${urgency}" ;; -t|--expire-time|--expire-time=*) - [[ "$1" = --expire-time=* ]] && EXPIRE_TIME="${1#*=}" || { shift; EXPIRE_TIME="$1"; } - if ! [[ "$EXPIRE_TIME" =~ ^-?[0-9]+$ ]]; then - echo "Invalid expire time: ${EXPIRE_TIME}" - exit 1; - fi + [[ "${1}" = --expire-time=* ]] && EXPIRE_TIME="${1#*=}" || { shift; EXPIRE_TIME="${1}"; } + [[ "${EXPIRE_TIME}" =~ ^-?[0-9]+$ ]] || abrt "Invalid expire time: ${EXPIRE_TIME}" ;; -f|--force-expire) - FORCE_EXPIRE=yes + FORCE_EXPIRE=true ;; -a|--app-name|--app-name=*) - [[ "$1" = --app-name=* ]] && APP_NAME="${1#*=}" || { shift; APP_NAME="$1"; } + [[ "${1}" = --app-name=* ]] && APP_NAME="${1#*=}" || { shift; APP_NAME="${1}"; } + export APP_NAME ;; -i|--icon|--icon=*) - [[ "$1" = --icon=* ]] && ICON="${1#*=}" || { shift; ICON="$1"; } + [[ "${1}" = --icon=* ]] && ICON="${1#*=}" || { shift; ICON="${1}"; } ;; -c|--category|--category=*) - [[ "$1" = --category=* ]] && category="${1#*=}" || { shift; category="$1"; } - process_category "$category" + [[ "${1}" = --category=* ]] && category="${1#*=}" || { shift; category="${1}"; } + process_category "${category}" ;; -h|--hint|--hint=*) - [[ "$1" = --hint=* ]] && hint="${1#*=}" || { shift; hint="$1"; } - process_hint "$hint" + [[ "${1}" = --hint=* ]] && hint="${1#*=}" || { shift; hint="${1}"; } + process_hint "${hint}" ;; -o | --action | --action=*) - [[ "$1" == --action=* ]] && action="${1#*=}" || { shift; action="$1"; } - process_action "$action" + [[ "${1}" == --action=* ]] && action="${1#*=}" || { shift; action="${1}"; } + process_action "${action}" ;; -d | --default-action | --default-action=*) - [[ "$1" == --default-action=* ]] && default_action="${1#*=}" || { shift; default_action="$1"; } - process_special_action default "$default_action" + [[ "${1}" == --default-action=* ]] && default_action="${1#*=}" || { shift; default_action="${1}"; } + process_special_action default "${default_action}" ;; -l | --close-action | --close-action=*) - [[ "$1" == --close-action=* ]] && close_action="${1#*=}" || { shift; close_action="$1"; } - process_special_action close "$close_action" + [[ "${1}" == --close-action=* ]] && close_action="${1#*=}" || { shift; close_action="${1}"; } + process_special_action close "${close_action}" ;; -p|--print-id) - PRINT_ID=yes + PRINT_ID=true ;; -r|--replace|--replace=*) - [[ "$1" = --replace=* ]] && REPLACE_ID="${1#*=}" || { shift; REPLACE_ID="$1"; } + [[ "${1}" = --replace=* ]] && ID=${1#*=} || { shift ;ID=${1} ; } ;; -R|--replace-file|--replace-file=*) - [[ "$1" = --replace-file=* ]] && filename="${1#*=}" || { shift; filename="$1"; } - [[ -s "$filename" ]] && read REPLACE_ID < $filename - STORE_ID="$filename" + [[ "${1}" = --replace-file=* ]] && filename="${1#*=}" || { shift; filename="${1}"; } + [[ -s "${filename}" ]] && read ID < "${filename}" + ID_FILE=${filename} ;; -s|--close|--close=*) - [[ "$1" = --close=* ]] && close_id="${1#*=}" || { shift; close_id="$1"; } - case "$close_id" in ""|R|replace-file) [[ "${REPLACE_ID}" ]] && close_id=${REPLACE_ID} ;; esac - notify_close "$close_id" + [[ "${1}" = --close=* ]] && close_id="${1#*=}" || { shift; close_id="${1}"; } + case "${close_id}" in ""|R|replace-file) [[ ${ID} -gt 0 ]] && close_id=${ID} ;; esac + notify_close "${close_id}" exit $? ;; --) - positional=yes + positional=true ;; *) - process_posargs "$1" + process_posargs "${1}" ;; esac shift done -# urgency is always set -HINTS=("$(make_hint byte urgency "$URGENCY")" "${HINTS[@]}") - -if [[ "$SUMMARY_SET" = n ]] ; then - help - exit 1 -else - notify -fi +# build the special strings +actions="$(concat_actions "${ACTIONS[@]}")" +HINTS=("$(make_hint byte urgency "${URGENCY}")" "${HINTS[@]}") +hints="$(concat_hints "${HINTS[@]}")" +typeset -i OLD_ID=${ID} NEW_ID=0 + +# send the dbus message, collect the notification ID +NEW_ID=$(gdbus call ${NOTIFY_ARGS[@]} \ + --method org.freedesktop.Notifications.Notify \ + "${APP_NAME}" "${ID}" "${ICON}" "${SUMMARY}" "${BODY}" \ + "${actions}" "${hints}" "int32 ${EXPIRE_TIME}" \ + |sed 's/(uint32 \([0-9]\+\),)/\1/g' ) + +# process the ID +[[ ${NEW_ID} -gt 0 ]] || abrt "invalid notification ID from gdbus" +[[ ${OLD_ID} = 0 ]] && ID=${NEW_ID} +[[ "${ID_FILE}" ]] && [[ ${OLD_ID} = 0 ]] && echo ${ID} > "${ID_FILE}" +${PRINT_ID} && echo ${ID} + +# launch the action handler +[[ ${#ACTION_COMMANDS[@]} -gt 0 ]] && setsid -f "${ACTION_HANDLER}" "${ID}" "${ACTION_COMMANDS[@]}" >/dev/null 2>&1 & + +# bg task to wait and then close notification +${FORCE_EXPIRE} && [[ ${EXPIRE_TIME} -gt 0 ]] && ( sleep ${EXPIRE_TIME:0:-3} ; notify_close ${ID} ) & diff --git a/po/es.po b/po/es.po index 8fe9437b..d27b5813 100644 --- a/po/es.po +++ b/po/es.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-19 17:20-0400\n" +"POT-Creation-Date: 2020-05-22 23:42-0400\n" "PO-Revision-Date: 2018-01-03 02:03-0600\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish\n" @@ -45,73 +45,73 @@ msgstr "Los siguientes kernels serán eliminados:" msgid "Continue ?" msgstr "¿Continuar?" -#: src/Common/LinuxKernel.vala:648 src/Console/AppConsole.vala:307 +#: src/Common/LinuxKernel.vala:649 src/Console/AppConsole.vala:304 msgid "Latest update" msgstr "" -#: src/Common/LinuxKernel.vala:659 src/Console/AppConsole.vala:314 +#: src/Common/LinuxKernel.vala:660 src/Console/AppConsole.vala:311 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:667 src/Console/AppConsole.vala:319 -#: src/Console/AppConsole.vala:384 +#: src/Common/LinuxKernel.vala:668 src/Console/AppConsole.vala:316 +#: src/Console/AppConsole.vala:374 msgid "No updates found" msgstr "No se encontró ninguna actualización" -#: src/Common/LinuxKernel.vala:677 +#: src/Common/LinuxKernel.vala:678 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "" -#: src/Common/LinuxKernel.vala:939 +#: src/Common/LinuxKernel.vala:940 msgid "Packages Available" msgstr "Paquetes disponibles" -#: src/Common/LinuxKernel.vala:947 +#: src/Common/LinuxKernel.vala:948 msgid "Packages Installed" msgstr "Paquetes instalados" -#: src/Common/LinuxKernel.vala:1030 +#: src/Common/LinuxKernel.vala:1031 msgid "Available Kernels" msgstr "Núcleos disponibles" -#: src/Common/LinuxKernel.vala:1037 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1038 src/Gtk/MainWindow.vala:186 msgid "Installed" msgstr "Instalado" -#: src/Common/LinuxKernel.vala:1037 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1038 src/Gtk/MainWindow.vala:186 #: src/Gtk/MainWindow.vala:625 src/Gtk/MainWindow.vala:639 msgid "Running" msgstr "En ejecución" -#: src/Common/LinuxKernel.vala:1074 +#: src/Common/LinuxKernel.vala:1075 msgid "Downloading" msgstr "Descargando" -#: src/Common/LinuxKernel.vala:1093 +#: src/Common/LinuxKernel.vala:1094 #: src/Utility/Gtk/CustomMessageDialog.vala:148 #: src/Utility/Gtk/CustomMessageDialog.vala:152 msgid "OK" msgstr "Aceptar" -#: src/Common/LinuxKernel.vala:1098 +#: src/Common/LinuxKernel.vala:1099 msgid "ERROR" msgstr "ERROR" -#: src/Common/LinuxKernel.vala:1112 src/Gtk/MainWindow.vala:647 +#: src/Common/LinuxKernel.vala:1113 src/Gtk/MainWindow.vala:647 msgid "This kernel is already installed." msgstr "Este núcleo ya se instaló." -#: src/Common/LinuxKernel.vala:1138 +#: src/Common/LinuxKernel.vala:1139 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "Instalación finalizada. Se necesita reiniciar para utilizar el núcleo nuevo." -#: src/Common/LinuxKernel.vala:1141 +#: src/Common/LinuxKernel.vala:1142 msgid "Installation completed with errors" msgstr "Instalación finalizada con errores" -#: src/Common/LinuxKernel.vala:1156 +#: src/Common/LinuxKernel.vala:1157 msgid "" "Selected kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -119,19 +119,19 @@ msgstr "" "El núcleo seleccionado está en ejecución y no puede desinstalarse.\n" "Instale otro núcleo antes de desinstalar este." -#: src/Common/LinuxKernel.vala:1161 +#: src/Common/LinuxKernel.vala:1162 msgid "Preparing to remove selected kernels" msgstr "Preparándose para desinstalar los núcleos seleccionados" -#: src/Common/LinuxKernel.vala:1192 src/Common/LinuxKernel.vala:1239 +#: src/Common/LinuxKernel.vala:1193 src/Common/LinuxKernel.vala:1240 msgid "Un-install completed" msgstr "Desinstalación finalizada" -#: src/Common/LinuxKernel.vala:1195 src/Common/LinuxKernel.vala:1242 +#: src/Common/LinuxKernel.vala:1196 src/Common/LinuxKernel.vala:1243 msgid "Un-install completed with errors" msgstr "Desinstalación finalizada con errores" -#: src/Common/LinuxKernel.vala:1208 +#: src/Common/LinuxKernel.vala:1209 msgid "" "This kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -139,11 +139,11 @@ msgstr "" "Este núcleo está en ejecución y no se puede desinstalar.\n" "Instale otro núcleo antes de desinstalar este." -#: src/Common/Main.vala:237 +#: src/Common/Main.vala:235 msgid "Called from" msgstr "" -#: src/Common/Main.vala:249 +#: src/Common/Main.vala:267 #, fuzzy msgid "Notifications are disabled" msgstr "Notificación" @@ -153,7 +153,7 @@ msgstr "Notificación" msgid "File not found: %s" msgstr "No se encontró el archivo: %s" -#: src/Console/AppConsole.vala:62 src/Gtk/AppGtk.vala:154 +#: src/Console/AppConsole.vala:62 src/Gtk/AppGtk.vala:149 msgid "Syntax" msgstr "Sintaxis" @@ -211,7 +211,7 @@ msgstr "Quitar archivos de la antememoria de la aplicación" msgid "Show unstable and RC releases" msgstr "Ocultar versiones inestables y RC" -#: src/Console/AppConsole.vala:79 src/Gtk/AppGtk.vala:156 +#: src/Console/AppConsole.vala:79 src/Gtk/AppGtk.vala:151 msgid "Options" msgstr "Opciones" @@ -236,65 +236,65 @@ msgid "" "One or more version strings (comma-separated) taken from the output of --list" msgstr "" -#: src/Console/AppConsole.vala:166 src/Gtk/AppGtk.vala:141 +#: src/Console/AppConsole.vala:162 src/Gtk/AppGtk.vala:136 msgid "Unknown option" msgstr "Opción desconocida" -#: src/Console/AppConsole.vala:168 src/Console/AppConsole.vala:260 -#: src/Console/AppConsole.vala:288 +#: src/Console/AppConsole.vala:164 src/Console/AppConsole.vala:256 +#: src/Console/AppConsole.vala:284 #, fuzzy msgid "Run" msgstr "En ejecución" -#: src/Console/AppConsole.vala:168 +#: src/Console/AppConsole.vala:164 #, fuzzy msgid "to list all options" msgstr "Mostrar todas las opciones" -#: src/Console/AppConsole.vala:233 src/Console/AppConsole.vala:268 +#: src/Console/AppConsole.vala:229 src/Console/AppConsole.vala:264 msgid "No kernels specified" msgstr "" -#: src/Console/AppConsole.vala:239 +#: src/Console/AppConsole.vala:235 msgid "Multiple kernels selected for installation. Select only one." msgstr "Se seleccionaron varios núcleos para su instalación. Elija solo uno." -#: src/Console/AppConsole.vala:257 src/Gtk/MainWindow.vala:100 +#: src/Console/AppConsole.vala:253 src/Gtk/MainWindow.vala:100 msgid "Could not find requested version" msgstr "No se pudo encontrar la versión solicitada" -#: src/Console/AppConsole.vala:260 +#: src/Console/AppConsole.vala:256 msgid "and use a version string listed in first column" msgstr "" -#: src/Console/AppConsole.vala:287 +#: src/Console/AppConsole.vala:283 msgid "Command not specified" msgstr "Coomand no especificado" -#: src/Console/AppConsole.vala:288 +#: src/Console/AppConsole.vala:284 #, fuzzy msgid "to list all commands" msgstr "Mostrar todas las opciones" -#: src/Console/AppConsole.vala:349 +#: src/Console/AppConsole.vala:347 msgid "Show" msgstr "" -#: src/Console/AppConsole.vala:354 src/Console/AppConsole.vala:373 +#: src/Console/AppConsole.vala:352 src/Console/AppConsole.vala:364 #, fuzzy, c-format msgid "Kernel %s Available" msgstr "Paquetes disponibles" -#: src/Console/AppConsole.vala:356 src/Console/AppConsole.vala:375 +#: src/Console/AppConsole.vala:354 src/Console/AppConsole.vala:366 #: src/Gtk/MainWindow.vala:330 msgid "Install" msgstr "Instalar" -#: src/Gtk/AppGtk.vala:158 +#: src/Gtk/AppGtk.vala:153 msgid "Print debug information" msgstr "Mostrar información de depuración" -#: src/Gtk/AppGtk.vala:159 +#: src/Gtk/AppGtk.vala:154 msgid "Show all options" msgstr "Mostrar todas las opciones" @@ -356,7 +356,7 @@ msgstr "" msgid "Changes" msgstr "Cambios" -#: src/Gtk/MainWindow.vala:435 src/Gtk/SettingsDialog.vala:51 +#: src/Gtk/MainWindow.vala:435 src/Gtk/SettingsDialog.vala:50 msgid "Settings" msgstr "Configuración" @@ -401,76 +401,72 @@ msgstr "Instalado" msgid "Cancel" msgstr "Cancelar" -#: src/Gtk/SettingsDialog.vala:61 +#: src/Gtk/SettingsDialog.vala:60 msgid "Notification" msgstr "Notificación" -#: src/Gtk/SettingsDialog.vala:68 +#: src/Gtk/SettingsDialog.vala:67 msgid "Notify if a major release is available" msgstr "Notificar si hay una versión importante disponible" -#: src/Gtk/SettingsDialog.vala:79 +#: src/Gtk/SettingsDialog.vala:78 msgid "Notify if a point release is available" msgstr "Notificar si hay una versión puntual disponible" -#: src/Gtk/SettingsDialog.vala:90 -msgid "Show notification bubble on desktop" -msgstr "Mostrar globo de notificación en el escritorio" - -#: src/Gtk/SettingsDialog.vala:101 +#: src/Gtk/SettingsDialog.vala:89 msgid "(Allowing intervals in seconds for --debug)" msgstr "" -#: src/Gtk/SettingsDialog.vala:111 +#: src/Gtk/SettingsDialog.vala:112 msgid "Check every" msgstr "Comprobar cada" -#: src/Gtk/SettingsDialog.vala:144 +#: src/Gtk/SettingsDialog.vala:143 msgid "Hour(s)" msgstr "Horas" -#: src/Gtk/SettingsDialog.vala:146 +#: src/Gtk/SettingsDialog.vala:145 msgid "Day(s)" msgstr "Días" -#: src/Gtk/SettingsDialog.vala:148 +#: src/Gtk/SettingsDialog.vala:147 msgid "Week(s)" msgstr "Semanas" -#: src/Gtk/SettingsDialog.vala:151 +#: src/Gtk/SettingsDialog.vala:150 msgid "Second(s)" msgstr "" -#: src/Gtk/SettingsDialog.vala:157 +#: src/Gtk/SettingsDialog.vala:156 msgid "Display" msgstr "Mostrar" -#: src/Gtk/SettingsDialog.vala:165 +#: src/Gtk/SettingsDialog.vala:164 msgid "Hide unstable and RC releases" msgstr "Ocultar versiones inestables y RC" -#: src/Gtk/SettingsDialog.vala:179 +#: src/Gtk/SettingsDialog.vala:178 msgid "Show N previous major versions " msgstr "" -#: src/Gtk/SettingsDialog.vala:194 +#: src/Gtk/SettingsDialog.vala:193 msgid "Other" msgstr "" -#: src/Gtk/SettingsDialog.vala:202 +#: src/Gtk/SettingsDialog.vala:201 msgid "Skip internet connection check" msgstr "La conexión a Internet está inactiva" -#: src/Gtk/SettingsDialog.vala:215 +#: src/Gtk/SettingsDialog.vala:214 #, fuzzy msgid "Internet connection timeout in " msgstr "La conexión a Internet está inactiva" -#: src/Gtk/SettingsDialog.vala:230 +#: src/Gtk/SettingsDialog.vala:229 msgid "seconds" msgstr "" -#: src/Gtk/SettingsDialog.vala:237 +#: src/Gtk/SettingsDialog.vala:236 msgid "Max concurrent downloads" msgstr "" diff --git a/po/fr.po b/po/fr.po index 9596d8a1..073caaff 100644 --- a/po/fr.po +++ b/po/fr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-19 17:20-0400\n" +"POT-Creation-Date: 2020-05-22 23:42-0400\n" "PO-Revision-Date: 2018-08-05 15:50+0200\n" "Last-Translator: Yolateng0 \n" "Language-Team: French\n" @@ -48,74 +48,74 @@ msgstr "" msgid "Continue ?" msgstr "" -#: src/Common/LinuxKernel.vala:648 src/Console/AppConsole.vala:307 +#: src/Common/LinuxKernel.vala:649 src/Console/AppConsole.vala:304 msgid "Latest update" msgstr "" -#: src/Common/LinuxKernel.vala:659 src/Console/AppConsole.vala:314 +#: src/Common/LinuxKernel.vala:660 src/Console/AppConsole.vala:311 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:667 src/Console/AppConsole.vala:319 -#: src/Console/AppConsole.vala:384 +#: src/Common/LinuxKernel.vala:668 src/Console/AppConsole.vala:316 +#: src/Console/AppConsole.vala:374 msgid "No updates found" msgstr "Aucune mise à jour disponible" -#: src/Common/LinuxKernel.vala:677 +#: src/Common/LinuxKernel.vala:678 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "" -#: src/Common/LinuxKernel.vala:939 +#: src/Common/LinuxKernel.vala:940 msgid "Packages Available" msgstr "Paquets disponibles" -#: src/Common/LinuxKernel.vala:947 +#: src/Common/LinuxKernel.vala:948 msgid "Packages Installed" msgstr "Paquets installés" -#: src/Common/LinuxKernel.vala:1030 +#: src/Common/LinuxKernel.vala:1031 msgid "Available Kernels" msgstr "Noyaux disponibles" -#: src/Common/LinuxKernel.vala:1037 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1038 src/Gtk/MainWindow.vala:186 msgid "Installed" msgstr "Installé" -#: src/Common/LinuxKernel.vala:1037 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1038 src/Gtk/MainWindow.vala:186 #: src/Gtk/MainWindow.vala:625 src/Gtk/MainWindow.vala:639 msgid "Running" msgstr "En cours" -#: src/Common/LinuxKernel.vala:1074 +#: src/Common/LinuxKernel.vala:1075 msgid "Downloading" msgstr "Téléchargement" -#: src/Common/LinuxKernel.vala:1093 +#: src/Common/LinuxKernel.vala:1094 #: src/Utility/Gtk/CustomMessageDialog.vala:148 #: src/Utility/Gtk/CustomMessageDialog.vala:152 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:1098 +#: src/Common/LinuxKernel.vala:1099 msgid "ERROR" msgstr "ERREUR" -#: src/Common/LinuxKernel.vala:1112 src/Gtk/MainWindow.vala:647 +#: src/Common/LinuxKernel.vala:1113 src/Gtk/MainWindow.vala:647 msgid "This kernel is already installed." msgstr "Ce noyau est déjà installé." -#: src/Common/LinuxKernel.vala:1138 +#: src/Common/LinuxKernel.vala:1139 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "Installation complétée. Un redémarrage est nécessaire pour utiliser le " "nouveau noyau." -#: src/Common/LinuxKernel.vala:1141 +#: src/Common/LinuxKernel.vala:1142 msgid "Installation completed with errors" msgstr "Installation terminée avec des erreurs" -#: src/Common/LinuxKernel.vala:1156 +#: src/Common/LinuxKernel.vala:1157 msgid "" "Selected kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -123,19 +123,19 @@ msgstr "" "Ce noyau est en cours d'exécution et ne peut pas être supprimé.\n" " Installez un autre noyau avant de retirer celui-ci." -#: src/Common/LinuxKernel.vala:1161 +#: src/Common/LinuxKernel.vala:1162 msgid "Preparing to remove selected kernels" msgstr "Préparation à la suppression des noyaux sélectionnés" -#: src/Common/LinuxKernel.vala:1192 src/Common/LinuxKernel.vala:1239 +#: src/Common/LinuxKernel.vala:1193 src/Common/LinuxKernel.vala:1240 msgid "Un-install completed" msgstr "Désinstallation complète" -#: src/Common/LinuxKernel.vala:1195 src/Common/LinuxKernel.vala:1242 +#: src/Common/LinuxKernel.vala:1196 src/Common/LinuxKernel.vala:1243 msgid "Un-install completed with errors" msgstr "Désinstallation terminée avec des erreurs" -#: src/Common/LinuxKernel.vala:1208 +#: src/Common/LinuxKernel.vala:1209 msgid "" "This kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -143,11 +143,11 @@ msgstr "" "Ce noyau est en cours d'exécution et ne peut pas être supprimé.\n" " Installez un autre noyau avant de retirer celui-ci." -#: src/Common/Main.vala:237 +#: src/Common/Main.vala:235 msgid "Called from" msgstr "" -#: src/Common/Main.vala:249 +#: src/Common/Main.vala:267 #, fuzzy msgid "Notifications are disabled" msgstr "Notification" @@ -157,7 +157,7 @@ msgstr "Notification" msgid "File not found: %s" msgstr "Fichier non trouvé: %s" -#: src/Console/AppConsole.vala:62 src/Gtk/AppGtk.vala:154 +#: src/Console/AppConsole.vala:62 src/Gtk/AppGtk.vala:149 msgid "Syntax" msgstr "Syntaxe" @@ -219,7 +219,7 @@ msgstr "Supprimer les fichiers du cache de l'application" msgid "Show unstable and RC releases" msgstr "Cacher les versions instables et RC" -#: src/Console/AppConsole.vala:79 src/Gtk/AppGtk.vala:156 +#: src/Console/AppConsole.vala:79 src/Gtk/AppGtk.vala:151 msgid "Options" msgstr "Options" @@ -244,68 +244,68 @@ msgid "" "One or more version strings (comma-separated) taken from the output of --list" msgstr "" -#: src/Console/AppConsole.vala:166 src/Gtk/AppGtk.vala:141 +#: src/Console/AppConsole.vala:162 src/Gtk/AppGtk.vala:136 msgid "Unknown option" msgstr "Option inconnue" -#: src/Console/AppConsole.vala:168 src/Console/AppConsole.vala:260 -#: src/Console/AppConsole.vala:288 +#: src/Console/AppConsole.vala:164 src/Console/AppConsole.vala:256 +#: src/Console/AppConsole.vala:284 #, fuzzy msgid "Run" msgstr "En cours" -#: src/Console/AppConsole.vala:168 +#: src/Console/AppConsole.vala:164 #, fuzzy msgid "to list all options" msgstr "Afficher toutes les options" -#: src/Console/AppConsole.vala:233 src/Console/AppConsole.vala:268 +#: src/Console/AppConsole.vala:229 src/Console/AppConsole.vala:264 msgid "No kernels specified" msgstr "" -#: src/Console/AppConsole.vala:239 +#: src/Console/AppConsole.vala:235 msgid "Multiple kernels selected for installation. Select only one." msgstr "" "Plusieurs noyaux sélectionnés pour être installés. Sélectionnez en seulement " "un." -#: src/Console/AppConsole.vala:257 src/Gtk/MainWindow.vala:100 +#: src/Console/AppConsole.vala:253 src/Gtk/MainWindow.vala:100 msgid "Could not find requested version" msgstr "Impossible de trouver la version demandée" -#: src/Console/AppConsole.vala:260 +#: src/Console/AppConsole.vala:256 msgid "and use a version string listed in first column" msgstr "" -#: src/Console/AppConsole.vala:287 +#: src/Console/AppConsole.vala:283 #, fuzzy msgid "Command not specified" msgstr "Impossible de trouver le fichier" -#: src/Console/AppConsole.vala:288 +#: src/Console/AppConsole.vala:284 #, fuzzy msgid "to list all commands" msgstr "Afficher toutes les options" -#: src/Console/AppConsole.vala:349 +#: src/Console/AppConsole.vala:347 msgid "Show" msgstr "" -#: src/Console/AppConsole.vala:354 src/Console/AppConsole.vala:373 +#: src/Console/AppConsole.vala:352 src/Console/AppConsole.vala:364 #, fuzzy, c-format msgid "Kernel %s Available" msgstr "Paquets disponibles" -#: src/Console/AppConsole.vala:356 src/Console/AppConsole.vala:375 +#: src/Console/AppConsole.vala:354 src/Console/AppConsole.vala:366 #: src/Gtk/MainWindow.vala:330 msgid "Install" msgstr "Installer" -#: src/Gtk/AppGtk.vala:158 +#: src/Gtk/AppGtk.vala:153 msgid "Print debug information" msgstr "Afficher les informations de débogage" -#: src/Gtk/AppGtk.vala:159 +#: src/Gtk/AppGtk.vala:154 msgid "Show all options" msgstr "Afficher toutes les options" @@ -367,7 +367,7 @@ msgstr "" msgid "Changes" msgstr "Changements" -#: src/Gtk/MainWindow.vala:435 src/Gtk/SettingsDialog.vala:51 +#: src/Gtk/MainWindow.vala:435 src/Gtk/SettingsDialog.vala:50 msgid "Settings" msgstr "Paramètres" @@ -413,77 +413,73 @@ msgstr "Installé" msgid "Cancel" msgstr "Annuler" -#: src/Gtk/SettingsDialog.vala:61 +#: src/Gtk/SettingsDialog.vala:60 msgid "Notification" msgstr "Notification" -#: src/Gtk/SettingsDialog.vala:68 +#: src/Gtk/SettingsDialog.vala:67 msgid "Notify if a major release is available" msgstr "Notifier si une version stable majeure est disponible" -#: src/Gtk/SettingsDialog.vala:79 +#: src/Gtk/SettingsDialog.vala:78 msgid "Notify if a point release is available" msgstr "Notifier si une version stable mineure est disponible" -#: src/Gtk/SettingsDialog.vala:90 -msgid "Show notification bubble on desktop" -msgstr "Afficher la bulle de notification sur le bureau" - -#: src/Gtk/SettingsDialog.vala:101 +#: src/Gtk/SettingsDialog.vala:89 msgid "(Allowing intervals in seconds for --debug)" msgstr "" -#: src/Gtk/SettingsDialog.vala:111 +#: src/Gtk/SettingsDialog.vala:112 msgid "Check every" msgstr "Vérifier toutes les" -#: src/Gtk/SettingsDialog.vala:144 +#: src/Gtk/SettingsDialog.vala:143 msgid "Hour(s)" msgstr "Heure(s)" -#: src/Gtk/SettingsDialog.vala:146 +#: src/Gtk/SettingsDialog.vala:145 msgid "Day(s)" msgstr "Jour(s)" -#: src/Gtk/SettingsDialog.vala:148 +#: src/Gtk/SettingsDialog.vala:147 msgid "Week(s)" msgstr "Semaine(s)" -#: src/Gtk/SettingsDialog.vala:151 +#: src/Gtk/SettingsDialog.vala:150 msgid "Second(s)" msgstr "" -#: src/Gtk/SettingsDialog.vala:157 +#: src/Gtk/SettingsDialog.vala:156 msgid "Display" msgstr "Afficher" -#: src/Gtk/SettingsDialog.vala:165 +#: src/Gtk/SettingsDialog.vala:164 msgid "Hide unstable and RC releases" msgstr "Cacher les versions instables et RC" -#: src/Gtk/SettingsDialog.vala:179 +#: src/Gtk/SettingsDialog.vala:178 msgid "Show N previous major versions " msgstr "" -#: src/Gtk/SettingsDialog.vala:194 +#: src/Gtk/SettingsDialog.vala:193 msgid "Other" msgstr "" -#: src/Gtk/SettingsDialog.vala:202 +#: src/Gtk/SettingsDialog.vala:201 #, fuzzy msgid "Skip internet connection check" msgstr "Connexion internet inexistante" -#: src/Gtk/SettingsDialog.vala:215 +#: src/Gtk/SettingsDialog.vala:214 #, fuzzy msgid "Internet connection timeout in " msgstr "Connexion internet inexistante" -#: src/Gtk/SettingsDialog.vala:230 +#: src/Gtk/SettingsDialog.vala:229 msgid "seconds" msgstr "" -#: src/Gtk/SettingsDialog.vala:237 +#: src/Gtk/SettingsDialog.vala:236 msgid "Max concurrent downloads" msgstr "" diff --git a/po/hr.po b/po/hr.po index 568db32d..b51a281f 100644 --- a/po/hr.po +++ b/po/hr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-19 17:20-0400\n" +"POT-Creation-Date: 2020-05-22 23:42-0400\n" "PO-Revision-Date: 2017-12-24 00:52+0100\n" "Last-Translator: gogo \n" "Language-Team: Croatian \n" @@ -48,74 +48,74 @@ msgstr "" msgid "Continue ?" msgstr "" -#: src/Common/LinuxKernel.vala:648 src/Console/AppConsole.vala:307 +#: src/Common/LinuxKernel.vala:649 src/Console/AppConsole.vala:304 msgid "Latest update" msgstr "" -#: src/Common/LinuxKernel.vala:659 src/Console/AppConsole.vala:314 +#: src/Common/LinuxKernel.vala:660 src/Console/AppConsole.vala:311 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:667 src/Console/AppConsole.vala:319 -#: src/Console/AppConsole.vala:384 +#: src/Common/LinuxKernel.vala:668 src/Console/AppConsole.vala:316 +#: src/Console/AppConsole.vala:374 msgid "No updates found" msgstr "Nema pronađenih nadopuna" -#: src/Common/LinuxKernel.vala:677 +#: src/Common/LinuxKernel.vala:678 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "" -#: src/Common/LinuxKernel.vala:939 +#: src/Common/LinuxKernel.vala:940 msgid "Packages Available" msgstr "Dostupni paketi" -#: src/Common/LinuxKernel.vala:947 +#: src/Common/LinuxKernel.vala:948 msgid "Packages Installed" msgstr "Instalirani paketi" -#: src/Common/LinuxKernel.vala:1030 +#: src/Common/LinuxKernel.vala:1031 msgid "Available Kernels" msgstr "Dostupni kerneli" -#: src/Common/LinuxKernel.vala:1037 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1038 src/Gtk/MainWindow.vala:186 msgid "Installed" msgstr "Instalirano" -#: src/Common/LinuxKernel.vala:1037 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1038 src/Gtk/MainWindow.vala:186 #: src/Gtk/MainWindow.vala:625 src/Gtk/MainWindow.vala:639 msgid "Running" msgstr "Pokrenuto" -#: src/Common/LinuxKernel.vala:1074 +#: src/Common/LinuxKernel.vala:1075 msgid "Downloading" msgstr "Preuzimanje" -#: src/Common/LinuxKernel.vala:1093 +#: src/Common/LinuxKernel.vala:1094 #: src/Utility/Gtk/CustomMessageDialog.vala:148 #: src/Utility/Gtk/CustomMessageDialog.vala:152 msgid "OK" msgstr "U redu" -#: src/Common/LinuxKernel.vala:1098 +#: src/Common/LinuxKernel.vala:1099 msgid "ERROR" msgstr "GREŠKA" -#: src/Common/LinuxKernel.vala:1112 src/Gtk/MainWindow.vala:647 +#: src/Common/LinuxKernel.vala:1113 src/Gtk/MainWindow.vala:647 msgid "This kernel is already installed." msgstr "Ovaj kernel je već instaliran." -#: src/Common/LinuxKernel.vala:1138 +#: src/Common/LinuxKernel.vala:1139 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "Instalacija je završena. Potrebno je ponovno pokretanje računala kako bi se " "koristio novi kernel." -#: src/Common/LinuxKernel.vala:1141 +#: src/Common/LinuxKernel.vala:1142 msgid "Installation completed with errors" msgstr "Instalacija je završena s greškama" -#: src/Common/LinuxKernel.vala:1156 +#: src/Common/LinuxKernel.vala:1157 msgid "" "Selected kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -123,19 +123,19 @@ msgstr "" "Odabrani kernel je trenutno pokernut i ne može se ukloniti.\n" " Instalirajte drugi kernel prije uklanjanja trenutnog kernela." -#: src/Common/LinuxKernel.vala:1161 +#: src/Common/LinuxKernel.vala:1162 msgid "Preparing to remove selected kernels" msgstr "Pripremanje uklanjanja odabranih kernela" -#: src/Common/LinuxKernel.vala:1192 src/Common/LinuxKernel.vala:1239 +#: src/Common/LinuxKernel.vala:1193 src/Common/LinuxKernel.vala:1240 msgid "Un-install completed" msgstr "Deinstalacija završena" -#: src/Common/LinuxKernel.vala:1195 src/Common/LinuxKernel.vala:1242 +#: src/Common/LinuxKernel.vala:1196 src/Common/LinuxKernel.vala:1243 msgid "Un-install completed with errors" msgstr "Deinstalacija završena s greškama" -#: src/Common/LinuxKernel.vala:1208 +#: src/Common/LinuxKernel.vala:1209 msgid "" "This kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -143,11 +143,11 @@ msgstr "" "Ovaj kernel je trenutno pokrenut i ne može se ukloniti.\n" " Instalirajte drugi kernel prije uklanjanja trenutnog kernela." -#: src/Common/Main.vala:237 +#: src/Common/Main.vala:235 msgid "Called from" msgstr "" -#: src/Common/Main.vala:249 +#: src/Common/Main.vala:267 #, fuzzy msgid "Notifications are disabled" msgstr "Obavijesti" @@ -157,7 +157,7 @@ msgstr "Obavijesti" msgid "File not found: %s" msgstr "Datoteka nije pronađena: %s" -#: src/Console/AppConsole.vala:62 src/Gtk/AppGtk.vala:154 +#: src/Console/AppConsole.vala:62 src/Gtk/AppGtk.vala:149 msgid "Syntax" msgstr "Sintaksa" @@ -219,7 +219,7 @@ msgstr "Ukloni datoteke iz predmemorije aplikacije" msgid "Show unstable and RC releases" msgstr "Sakrij nestabilne kernele i predizdanja" -#: src/Console/AppConsole.vala:79 src/Gtk/AppGtk.vala:156 +#: src/Console/AppConsole.vala:79 src/Gtk/AppGtk.vala:151 msgid "Options" msgstr "Mogućnosti" @@ -244,65 +244,65 @@ msgid "" "One or more version strings (comma-separated) taken from the output of --list" msgstr "" -#: src/Console/AppConsole.vala:166 src/Gtk/AppGtk.vala:141 +#: src/Console/AppConsole.vala:162 src/Gtk/AppGtk.vala:136 msgid "Unknown option" msgstr "Nepoznata mogućnost" -#: src/Console/AppConsole.vala:168 src/Console/AppConsole.vala:260 -#: src/Console/AppConsole.vala:288 +#: src/Console/AppConsole.vala:164 src/Console/AppConsole.vala:256 +#: src/Console/AppConsole.vala:284 #, fuzzy msgid "Run" msgstr "Pokrenuto" -#: src/Console/AppConsole.vala:168 +#: src/Console/AppConsole.vala:164 #, fuzzy msgid "to list all options" msgstr "Prikaži sve mogućnosti" -#: src/Console/AppConsole.vala:233 src/Console/AppConsole.vala:268 +#: src/Console/AppConsole.vala:229 src/Console/AppConsole.vala:264 msgid "No kernels specified" msgstr "" -#: src/Console/AppConsole.vala:239 +#: src/Console/AppConsole.vala:235 msgid "Multiple kernels selected for installation. Select only one." msgstr "Više kernela je odabrano za instalaciju. odaberite samo jedan." -#: src/Console/AppConsole.vala:257 src/Gtk/MainWindow.vala:100 +#: src/Console/AppConsole.vala:253 src/Gtk/MainWindow.vala:100 msgid "Could not find requested version" msgstr "Nemoguće je pronaći zatraženu inačicu" -#: src/Console/AppConsole.vala:260 +#: src/Console/AppConsole.vala:256 msgid "and use a version string listed in first column" msgstr "" -#: src/Console/AppConsole.vala:287 +#: src/Console/AppConsole.vala:283 msgid "Command not specified" msgstr "" -#: src/Console/AppConsole.vala:288 +#: src/Console/AppConsole.vala:284 #, fuzzy msgid "to list all commands" msgstr "Prikaži sve mogućnosti" -#: src/Console/AppConsole.vala:349 +#: src/Console/AppConsole.vala:347 msgid "Show" msgstr "" -#: src/Console/AppConsole.vala:354 src/Console/AppConsole.vala:373 +#: src/Console/AppConsole.vala:352 src/Console/AppConsole.vala:364 #, fuzzy, c-format msgid "Kernel %s Available" msgstr "Dostupni paketi" -#: src/Console/AppConsole.vala:356 src/Console/AppConsole.vala:375 +#: src/Console/AppConsole.vala:354 src/Console/AppConsole.vala:366 #: src/Gtk/MainWindow.vala:330 msgid "Install" msgstr "Instaliraj" -#: src/Gtk/AppGtk.vala:158 +#: src/Gtk/AppGtk.vala:153 msgid "Print debug information" msgstr "Ispiši informacije otklanjanja grešaka" -#: src/Gtk/AppGtk.vala:159 +#: src/Gtk/AppGtk.vala:154 msgid "Show all options" msgstr "Prikaži sve mogućnosti" @@ -364,7 +364,7 @@ msgstr "" msgid "Changes" msgstr "Promjene" -#: src/Gtk/MainWindow.vala:435 src/Gtk/SettingsDialog.vala:51 +#: src/Gtk/MainWindow.vala:435 src/Gtk/SettingsDialog.vala:50 msgid "Settings" msgstr "Postavke" @@ -408,77 +408,73 @@ msgstr "Instalirano" msgid "Cancel" msgstr "Odustani" -#: src/Gtk/SettingsDialog.vala:61 +#: src/Gtk/SettingsDialog.vala:60 msgid "Notification" msgstr "Obavijesti" -#: src/Gtk/SettingsDialog.vala:68 +#: src/Gtk/SettingsDialog.vala:67 msgid "Notify if a major release is available" msgstr "Obavijesti kada je glavno izdanje dostupno" -#: src/Gtk/SettingsDialog.vala:79 +#: src/Gtk/SettingsDialog.vala:78 msgid "Notify if a point release is available" msgstr "Obavijesti kada je pojedino izdanje dostupno" -#: src/Gtk/SettingsDialog.vala:90 -msgid "Show notification bubble on desktop" -msgstr "Prikaži mjehurić obavijesti radne površine" - -#: src/Gtk/SettingsDialog.vala:101 +#: src/Gtk/SettingsDialog.vala:89 msgid "(Allowing intervals in seconds for --debug)" msgstr "" -#: src/Gtk/SettingsDialog.vala:111 +#: src/Gtk/SettingsDialog.vala:112 msgid "Check every" msgstr "Provjeri svaka" -#: src/Gtk/SettingsDialog.vala:144 +#: src/Gtk/SettingsDialog.vala:143 msgid "Hour(s)" msgstr "Sat(a)" -#: src/Gtk/SettingsDialog.vala:146 +#: src/Gtk/SettingsDialog.vala:145 msgid "Day(s)" msgstr "Dan(a)" -#: src/Gtk/SettingsDialog.vala:148 +#: src/Gtk/SettingsDialog.vala:147 msgid "Week(s)" msgstr "Tjedan(a)" -#: src/Gtk/SettingsDialog.vala:151 +#: src/Gtk/SettingsDialog.vala:150 msgid "Second(s)" msgstr "" -#: src/Gtk/SettingsDialog.vala:157 +#: src/Gtk/SettingsDialog.vala:156 msgid "Display" msgstr "Prikaz" -#: src/Gtk/SettingsDialog.vala:165 +#: src/Gtk/SettingsDialog.vala:164 msgid "Hide unstable and RC releases" msgstr "Sakrij nestabilne kernele i predizdanja" -#: src/Gtk/SettingsDialog.vala:179 +#: src/Gtk/SettingsDialog.vala:178 msgid "Show N previous major versions " msgstr "" -#: src/Gtk/SettingsDialog.vala:194 +#: src/Gtk/SettingsDialog.vala:193 msgid "Other" msgstr "" -#: src/Gtk/SettingsDialog.vala:202 +#: src/Gtk/SettingsDialog.vala:201 #, fuzzy msgid "Skip internet connection check" msgstr "Internet povezivanje nije aktivno" -#: src/Gtk/SettingsDialog.vala:215 +#: src/Gtk/SettingsDialog.vala:214 #, fuzzy msgid "Internet connection timeout in " msgstr "Internet povezivanje nije aktivno" -#: src/Gtk/SettingsDialog.vala:230 +#: src/Gtk/SettingsDialog.vala:229 msgid "seconds" msgstr "" -#: src/Gtk/SettingsDialog.vala:237 +#: src/Gtk/SettingsDialog.vala:236 msgid "Max concurrent downloads" msgstr "" diff --git a/po/messages.pot b/po/messages.pot index 0e26fb06..ef7f3845 100644 --- a/po/messages.pot +++ b/po/messages.pot @@ -6,9 +6,9 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: mainline 1.0.9\n" +"Project-Id-Version: mainline 1.0.11\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-19 17:31-0400\n" +"POT-Creation-Date: 2020-05-23 00:04-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -49,100 +49,100 @@ msgstr "" msgid "Continue ?" msgstr "" -#: src/Common/LinuxKernel.vala:648 src/Console/AppConsole.vala:307 +#: src/Common/LinuxKernel.vala:649 src/Console/AppConsole.vala:304 msgid "Latest update" msgstr "" -#: src/Common/LinuxKernel.vala:659 src/Console/AppConsole.vala:314 +#: src/Common/LinuxKernel.vala:660 src/Console/AppConsole.vala:311 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:667 src/Console/AppConsole.vala:319 -#: src/Console/AppConsole.vala:384 +#: src/Common/LinuxKernel.vala:668 src/Console/AppConsole.vala:316 +#: src/Console/AppConsole.vala:374 msgid "No updates found" msgstr "" -#: src/Common/LinuxKernel.vala:677 +#: src/Common/LinuxKernel.vala:678 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "" -#: src/Common/LinuxKernel.vala:939 +#: src/Common/LinuxKernel.vala:940 msgid "Packages Available" msgstr "" -#: src/Common/LinuxKernel.vala:947 +#: src/Common/LinuxKernel.vala:948 msgid "Packages Installed" msgstr "" -#: src/Common/LinuxKernel.vala:1030 +#: src/Common/LinuxKernel.vala:1031 msgid "Available Kernels" msgstr "" -#: src/Common/LinuxKernel.vala:1037 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1038 src/Gtk/MainWindow.vala:186 msgid "Installed" msgstr "" -#: src/Common/LinuxKernel.vala:1037 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1038 src/Gtk/MainWindow.vala:186 #: src/Gtk/MainWindow.vala:625 src/Gtk/MainWindow.vala:639 msgid "Running" msgstr "" -#: src/Common/LinuxKernel.vala:1074 +#: src/Common/LinuxKernel.vala:1075 msgid "Downloading" msgstr "" -#: src/Common/LinuxKernel.vala:1093 +#: src/Common/LinuxKernel.vala:1094 #: src/Utility/Gtk/CustomMessageDialog.vala:148 #: src/Utility/Gtk/CustomMessageDialog.vala:152 msgid "OK" msgstr "" -#: src/Common/LinuxKernel.vala:1098 +#: src/Common/LinuxKernel.vala:1099 msgid "ERROR" msgstr "" -#: src/Common/LinuxKernel.vala:1112 src/Gtk/MainWindow.vala:647 +#: src/Common/LinuxKernel.vala:1113 src/Gtk/MainWindow.vala:647 msgid "This kernel is already installed." msgstr "" -#: src/Common/LinuxKernel.vala:1138 +#: src/Common/LinuxKernel.vala:1139 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" -#: src/Common/LinuxKernel.vala:1141 +#: src/Common/LinuxKernel.vala:1142 msgid "Installation completed with errors" msgstr "" -#: src/Common/LinuxKernel.vala:1156 +#: src/Common/LinuxKernel.vala:1157 msgid "" "Selected kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." msgstr "" -#: src/Common/LinuxKernel.vala:1161 +#: src/Common/LinuxKernel.vala:1162 msgid "Preparing to remove selected kernels" msgstr "" -#: src/Common/LinuxKernel.vala:1192 src/Common/LinuxKernel.vala:1239 +#: src/Common/LinuxKernel.vala:1193 src/Common/LinuxKernel.vala:1240 msgid "Un-install completed" msgstr "" -#: src/Common/LinuxKernel.vala:1195 src/Common/LinuxKernel.vala:1242 +#: src/Common/LinuxKernel.vala:1196 src/Common/LinuxKernel.vala:1243 msgid "Un-install completed with errors" msgstr "" -#: src/Common/LinuxKernel.vala:1208 +#: src/Common/LinuxKernel.vala:1209 msgid "" "This kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." msgstr "" -#: src/Common/Main.vala:237 +#: src/Common/Main.vala:235 msgid "Called from" msgstr "" -#: src/Common/Main.vala:249 +#: src/Common/Main.vala:267 msgid "Notifications are disabled" msgstr "" @@ -151,7 +151,7 @@ msgstr "" msgid "File not found: %s" msgstr "" -#: src/Console/AppConsole.vala:62 src/Gtk/AppGtk.vala:154 +#: src/Console/AppConsole.vala:62 src/Gtk/AppGtk.vala:149 msgid "Syntax" msgstr "" @@ -207,7 +207,7 @@ msgstr "" msgid "Show unstable and RC releases" msgstr "" -#: src/Console/AppConsole.vala:79 src/Gtk/AppGtk.vala:156 +#: src/Console/AppConsole.vala:79 src/Gtk/AppGtk.vala:151 msgid "Options" msgstr "" @@ -232,62 +232,62 @@ msgid "" "One or more version strings (comma-separated) taken from the output of --list" msgstr "" -#: src/Console/AppConsole.vala:166 src/Gtk/AppGtk.vala:141 +#: src/Console/AppConsole.vala:162 src/Gtk/AppGtk.vala:136 msgid "Unknown option" msgstr "" -#: src/Console/AppConsole.vala:168 src/Console/AppConsole.vala:260 -#: src/Console/AppConsole.vala:288 +#: src/Console/AppConsole.vala:164 src/Console/AppConsole.vala:256 +#: src/Console/AppConsole.vala:284 msgid "Run" msgstr "" -#: src/Console/AppConsole.vala:168 +#: src/Console/AppConsole.vala:164 msgid "to list all options" msgstr "" -#: src/Console/AppConsole.vala:233 src/Console/AppConsole.vala:268 +#: src/Console/AppConsole.vala:229 src/Console/AppConsole.vala:264 msgid "No kernels specified" msgstr "" -#: src/Console/AppConsole.vala:239 +#: src/Console/AppConsole.vala:235 msgid "Multiple kernels selected for installation. Select only one." msgstr "" -#: src/Console/AppConsole.vala:257 src/Gtk/MainWindow.vala:100 +#: src/Console/AppConsole.vala:253 src/Gtk/MainWindow.vala:100 msgid "Could not find requested version" msgstr "" -#: src/Console/AppConsole.vala:260 +#: src/Console/AppConsole.vala:256 msgid "and use a version string listed in first column" msgstr "" -#: src/Console/AppConsole.vala:287 +#: src/Console/AppConsole.vala:283 msgid "Command not specified" msgstr "" -#: src/Console/AppConsole.vala:288 +#: src/Console/AppConsole.vala:284 msgid "to list all commands" msgstr "" -#: src/Console/AppConsole.vala:349 +#: src/Console/AppConsole.vala:347 msgid "Show" msgstr "" -#: src/Console/AppConsole.vala:354 src/Console/AppConsole.vala:373 +#: src/Console/AppConsole.vala:352 src/Console/AppConsole.vala:364 #, c-format msgid "Kernel %s Available" msgstr "" -#: src/Console/AppConsole.vala:356 src/Console/AppConsole.vala:375 +#: src/Console/AppConsole.vala:354 src/Console/AppConsole.vala:366 #: src/Gtk/MainWindow.vala:330 msgid "Install" msgstr "" -#: src/Gtk/AppGtk.vala:158 +#: src/Gtk/AppGtk.vala:153 msgid "Print debug information" msgstr "" -#: src/Gtk/AppGtk.vala:159 +#: src/Gtk/AppGtk.vala:154 msgid "Show all options" msgstr "" @@ -349,7 +349,7 @@ msgstr "" msgid "Changes" msgstr "" -#: src/Gtk/MainWindow.vala:435 src/Gtk/SettingsDialog.vala:51 +#: src/Gtk/MainWindow.vala:435 src/Gtk/SettingsDialog.vala:50 msgid "Settings" msgstr "" @@ -390,75 +390,71 @@ msgstr "" msgid "Cancel" msgstr "" -#: src/Gtk/SettingsDialog.vala:61 +#: src/Gtk/SettingsDialog.vala:60 msgid "Notification" msgstr "" -#: src/Gtk/SettingsDialog.vala:68 +#: src/Gtk/SettingsDialog.vala:67 msgid "Notify if a major release is available" msgstr "" -#: src/Gtk/SettingsDialog.vala:79 +#: src/Gtk/SettingsDialog.vala:78 msgid "Notify if a point release is available" msgstr "" -#: src/Gtk/SettingsDialog.vala:90 -msgid "Show notification bubble on desktop" -msgstr "" - -#: src/Gtk/SettingsDialog.vala:101 +#: src/Gtk/SettingsDialog.vala:89 msgid "(Allowing intervals in seconds for --debug)" msgstr "" -#: src/Gtk/SettingsDialog.vala:111 +#: src/Gtk/SettingsDialog.vala:112 msgid "Check every" msgstr "" -#: src/Gtk/SettingsDialog.vala:144 +#: src/Gtk/SettingsDialog.vala:143 msgid "Hour(s)" msgstr "" -#: src/Gtk/SettingsDialog.vala:146 +#: src/Gtk/SettingsDialog.vala:145 msgid "Day(s)" msgstr "" -#: src/Gtk/SettingsDialog.vala:148 +#: src/Gtk/SettingsDialog.vala:147 msgid "Week(s)" msgstr "" -#: src/Gtk/SettingsDialog.vala:151 +#: src/Gtk/SettingsDialog.vala:150 msgid "Second(s)" msgstr "" -#: src/Gtk/SettingsDialog.vala:157 +#: src/Gtk/SettingsDialog.vala:156 msgid "Display" msgstr "" -#: src/Gtk/SettingsDialog.vala:165 +#: src/Gtk/SettingsDialog.vala:164 msgid "Hide unstable and RC releases" msgstr "" -#: src/Gtk/SettingsDialog.vala:179 +#: src/Gtk/SettingsDialog.vala:178 msgid "Show N previous major versions " msgstr "" -#: src/Gtk/SettingsDialog.vala:194 +#: src/Gtk/SettingsDialog.vala:193 msgid "Other" msgstr "" -#: src/Gtk/SettingsDialog.vala:202 +#: src/Gtk/SettingsDialog.vala:201 msgid "Skip internet connection check" msgstr "" -#: src/Gtk/SettingsDialog.vala:215 +#: src/Gtk/SettingsDialog.vala:214 msgid "Internet connection timeout in " msgstr "" -#: src/Gtk/SettingsDialog.vala:230 +#: src/Gtk/SettingsDialog.vala:229 msgid "seconds" msgstr "" -#: src/Gtk/SettingsDialog.vala:237 +#: src/Gtk/SettingsDialog.vala:236 msgid "Max concurrent downloads" msgstr "" diff --git a/po/nl.po b/po/nl.po index 1b5706df..f659fc74 100644 --- a/po/nl.po +++ b/po/nl.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-19 17:20-0400\n" +"POT-Creation-Date: 2020-05-22 23:42-0400\n" "PO-Revision-Date: 2017-04-30 11:50+0200\n" "Last-Translator: Heimen Stoffels \n" "Language-Team: \n" @@ -48,74 +48,74 @@ msgstr "" msgid "Continue ?" msgstr "" -#: src/Common/LinuxKernel.vala:648 src/Console/AppConsole.vala:307 +#: src/Common/LinuxKernel.vala:649 src/Console/AppConsole.vala:304 msgid "Latest update" msgstr "" -#: src/Common/LinuxKernel.vala:659 src/Console/AppConsole.vala:314 +#: src/Common/LinuxKernel.vala:660 src/Console/AppConsole.vala:311 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:667 src/Console/AppConsole.vala:319 -#: src/Console/AppConsole.vala:384 +#: src/Common/LinuxKernel.vala:668 src/Console/AppConsole.vala:316 +#: src/Console/AppConsole.vala:374 msgid "No updates found" msgstr "Geen updates gevonden" -#: src/Common/LinuxKernel.vala:677 +#: src/Common/LinuxKernel.vala:678 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "" -#: src/Common/LinuxKernel.vala:939 +#: src/Common/LinuxKernel.vala:940 msgid "Packages Available" msgstr "Beschikbare pakketten" -#: src/Common/LinuxKernel.vala:947 +#: src/Common/LinuxKernel.vala:948 msgid "Packages Installed" msgstr "Geïnstalleerde pakketten" -#: src/Common/LinuxKernel.vala:1030 +#: src/Common/LinuxKernel.vala:1031 msgid "Available Kernels" msgstr "Beschikbare kernels" -#: src/Common/LinuxKernel.vala:1037 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1038 src/Gtk/MainWindow.vala:186 msgid "Installed" msgstr "Geïnstalleerd" -#: src/Common/LinuxKernel.vala:1037 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1038 src/Gtk/MainWindow.vala:186 #: src/Gtk/MainWindow.vala:625 src/Gtk/MainWindow.vala:639 msgid "Running" msgstr "Bezig met draaien" -#: src/Common/LinuxKernel.vala:1074 +#: src/Common/LinuxKernel.vala:1075 msgid "Downloading" msgstr "Bezig met downloaden" -#: src/Common/LinuxKernel.vala:1093 +#: src/Common/LinuxKernel.vala:1094 #: src/Utility/Gtk/CustomMessageDialog.vala:148 #: src/Utility/Gtk/CustomMessageDialog.vala:152 msgid "OK" msgstr "Oké" -#: src/Common/LinuxKernel.vala:1098 +#: src/Common/LinuxKernel.vala:1099 msgid "ERROR" msgstr "FOUT" -#: src/Common/LinuxKernel.vala:1112 src/Gtk/MainWindow.vala:647 +#: src/Common/LinuxKernel.vala:1113 src/Gtk/MainWindow.vala:647 msgid "This kernel is already installed." msgstr "Deze kernel is al geïnstalleerd." -#: src/Common/LinuxKernel.vala:1138 +#: src/Common/LinuxKernel.vala:1139 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "De installatie is voltooid. Herstart de computer om de nieuwe kernel te " "gebruiken." -#: src/Common/LinuxKernel.vala:1141 +#: src/Common/LinuxKernel.vala:1142 msgid "Installation completed with errors" msgstr "De installatie is foutloos voltooid" -#: src/Common/LinuxKernel.vala:1156 +#: src/Common/LinuxKernel.vala:1157 msgid "" "Selected kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -124,19 +124,19 @@ msgstr "" "verwijderd.\n" " Installeer een andere kernel voordat u deze verwijdert." -#: src/Common/LinuxKernel.vala:1161 +#: src/Common/LinuxKernel.vala:1162 msgid "Preparing to remove selected kernels" msgstr "Bezig met voorbereiden van verwijderen van geselecteerde kernels" -#: src/Common/LinuxKernel.vala:1192 src/Common/LinuxKernel.vala:1239 +#: src/Common/LinuxKernel.vala:1193 src/Common/LinuxKernel.vala:1240 msgid "Un-install completed" msgstr "Deïnstalleren voltooid" -#: src/Common/LinuxKernel.vala:1195 src/Common/LinuxKernel.vala:1242 +#: src/Common/LinuxKernel.vala:1196 src/Common/LinuxKernel.vala:1243 msgid "Un-install completed with errors" msgstr "Deïnstalleren voltooid, maar met fouten" -#: src/Common/LinuxKernel.vala:1208 +#: src/Common/LinuxKernel.vala:1209 msgid "" "This kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -144,11 +144,11 @@ msgstr "" "Deze kernel is momenteel in gebruik en kan daarom niet worden verwijderd.\n" " Installeer een andere kernel voordat u deze verwijdert." -#: src/Common/Main.vala:237 +#: src/Common/Main.vala:235 msgid "Called from" msgstr "" -#: src/Common/Main.vala:249 +#: src/Common/Main.vala:267 #, fuzzy msgid "Notifications are disabled" msgstr "Melding" @@ -158,7 +158,7 @@ msgstr "Melding" msgid "File not found: %s" msgstr "Bestand niet gevonden: %s" -#: src/Console/AppConsole.vala:62 src/Gtk/AppGtk.vala:154 +#: src/Console/AppConsole.vala:62 src/Gtk/AppGtk.vala:149 msgid "Syntax" msgstr "Syntax" @@ -220,7 +220,7 @@ msgstr "Bestanden verwijderen uit applicatie-cache" msgid "Show unstable and RC releases" msgstr "Instabiele en RC-uitgaven verbergen" -#: src/Console/AppConsole.vala:79 src/Gtk/AppGtk.vala:156 +#: src/Console/AppConsole.vala:79 src/Gtk/AppGtk.vala:151 msgid "Options" msgstr "Opties" @@ -245,67 +245,67 @@ msgid "" "One or more version strings (comma-separated) taken from the output of --list" msgstr "" -#: src/Console/AppConsole.vala:166 src/Gtk/AppGtk.vala:141 +#: src/Console/AppConsole.vala:162 src/Gtk/AppGtk.vala:136 msgid "Unknown option" msgstr "Onbekende optie" -#: src/Console/AppConsole.vala:168 src/Console/AppConsole.vala:260 -#: src/Console/AppConsole.vala:288 +#: src/Console/AppConsole.vala:164 src/Console/AppConsole.vala:256 +#: src/Console/AppConsole.vala:284 #, fuzzy msgid "Run" msgstr "Bezig met draaien" -#: src/Console/AppConsole.vala:168 +#: src/Console/AppConsole.vala:164 #, fuzzy msgid "to list all options" msgstr "Alle opties weergeven" -#: src/Console/AppConsole.vala:233 src/Console/AppConsole.vala:268 +#: src/Console/AppConsole.vala:229 src/Console/AppConsole.vala:264 msgid "No kernels specified" msgstr "" -#: src/Console/AppConsole.vala:239 +#: src/Console/AppConsole.vala:235 msgid "Multiple kernels selected for installation. Select only one." msgstr "" "Er zijn meerdere te installeren kernels geselecteerd. Selecteer er slechts " "één." -#: src/Console/AppConsole.vala:257 src/Gtk/MainWindow.vala:100 +#: src/Console/AppConsole.vala:253 src/Gtk/MainWindow.vala:100 msgid "Could not find requested version" msgstr "De vereiste versie kan niet worden gevonden" -#: src/Console/AppConsole.vala:260 +#: src/Console/AppConsole.vala:256 msgid "and use a version string listed in first column" msgstr "" -#: src/Console/AppConsole.vala:287 +#: src/Console/AppConsole.vala:283 msgid "Command not specified" msgstr "" -#: src/Console/AppConsole.vala:288 +#: src/Console/AppConsole.vala:284 #, fuzzy msgid "to list all commands" msgstr "Alle opties weergeven" -#: src/Console/AppConsole.vala:349 +#: src/Console/AppConsole.vala:347 msgid "Show" msgstr "" -#: src/Console/AppConsole.vala:354 src/Console/AppConsole.vala:373 +#: src/Console/AppConsole.vala:352 src/Console/AppConsole.vala:364 #, fuzzy, c-format msgid "Kernel %s Available" msgstr "Beschikbare pakketten" -#: src/Console/AppConsole.vala:356 src/Console/AppConsole.vala:375 +#: src/Console/AppConsole.vala:354 src/Console/AppConsole.vala:366 #: src/Gtk/MainWindow.vala:330 msgid "Install" msgstr "Installeren" -#: src/Gtk/AppGtk.vala:158 +#: src/Gtk/AppGtk.vala:153 msgid "Print debug information" msgstr "Foutopsporingsinformatie printen" -#: src/Gtk/AppGtk.vala:159 +#: src/Gtk/AppGtk.vala:154 msgid "Show all options" msgstr "Alle opties weergeven" @@ -367,7 +367,7 @@ msgstr "" msgid "Changes" msgstr "Wijzigingen" -#: src/Gtk/MainWindow.vala:435 src/Gtk/SettingsDialog.vala:51 +#: src/Gtk/MainWindow.vala:435 src/Gtk/SettingsDialog.vala:50 msgid "Settings" msgstr "Instellingen" @@ -411,77 +411,73 @@ msgstr "Geïnstalleerd" msgid "Cancel" msgstr "Annuleren" -#: src/Gtk/SettingsDialog.vala:61 +#: src/Gtk/SettingsDialog.vala:60 msgid "Notification" msgstr "Melding" -#: src/Gtk/SettingsDialog.vala:68 +#: src/Gtk/SettingsDialog.vala:67 msgid "Notify if a major release is available" msgstr "Melding weergeven als er een grote update beschikbaar is" -#: src/Gtk/SettingsDialog.vala:79 +#: src/Gtk/SettingsDialog.vala:78 msgid "Notify if a point release is available" msgstr "Melding weergeven als er een puntupdate beschikbaar is" -#: src/Gtk/SettingsDialog.vala:90 -msgid "Show notification bubble on desktop" -msgstr "Bureaubladmelding weergeven" - -#: src/Gtk/SettingsDialog.vala:101 +#: src/Gtk/SettingsDialog.vala:89 msgid "(Allowing intervals in seconds for --debug)" msgstr "" -#: src/Gtk/SettingsDialog.vala:111 +#: src/Gtk/SettingsDialog.vala:112 msgid "Check every" msgstr "Controleer elke" -#: src/Gtk/SettingsDialog.vala:144 +#: src/Gtk/SettingsDialog.vala:143 msgid "Hour(s)" msgstr "uur" -#: src/Gtk/SettingsDialog.vala:146 +#: src/Gtk/SettingsDialog.vala:145 msgid "Day(s)" msgstr "dag(en)" -#: src/Gtk/SettingsDialog.vala:148 +#: src/Gtk/SettingsDialog.vala:147 msgid "Week(s)" msgstr "we(e)k(en)" -#: src/Gtk/SettingsDialog.vala:151 +#: src/Gtk/SettingsDialog.vala:150 msgid "Second(s)" msgstr "" -#: src/Gtk/SettingsDialog.vala:157 +#: src/Gtk/SettingsDialog.vala:156 msgid "Display" msgstr "Weergave" -#: src/Gtk/SettingsDialog.vala:165 +#: src/Gtk/SettingsDialog.vala:164 msgid "Hide unstable and RC releases" msgstr "Instabiele en RC-uitgaven verbergen" -#: src/Gtk/SettingsDialog.vala:179 +#: src/Gtk/SettingsDialog.vala:178 msgid "Show N previous major versions " msgstr "" -#: src/Gtk/SettingsDialog.vala:194 +#: src/Gtk/SettingsDialog.vala:193 msgid "Other" msgstr "" -#: src/Gtk/SettingsDialog.vala:202 +#: src/Gtk/SettingsDialog.vala:201 #, fuzzy msgid "Skip internet connection check" msgstr "U bent niet verbonden met het internet" -#: src/Gtk/SettingsDialog.vala:215 +#: src/Gtk/SettingsDialog.vala:214 #, fuzzy msgid "Internet connection timeout in " msgstr "U bent niet verbonden met het internet" -#: src/Gtk/SettingsDialog.vala:230 +#: src/Gtk/SettingsDialog.vala:229 msgid "seconds" msgstr "" -#: src/Gtk/SettingsDialog.vala:237 +#: src/Gtk/SettingsDialog.vala:236 msgid "Max concurrent downloads" msgstr "" diff --git a/po/pl.po b/po/pl.po index 33b0325e..cb3a8408 100644 --- a/po/pl.po +++ b/po/pl.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-19 17:20-0400\n" +"POT-Creation-Date: 2020-05-22 23:42-0400\n" "PO-Revision-Date: 2017-08-12 15:26+0200\n" "Last-Translator: Waldemar Konik \n" "Language-Team: Polish\n" @@ -47,74 +47,74 @@ msgstr "" msgid "Continue ?" msgstr "" -#: src/Common/LinuxKernel.vala:648 src/Console/AppConsole.vala:307 +#: src/Common/LinuxKernel.vala:649 src/Console/AppConsole.vala:304 msgid "Latest update" msgstr "" -#: src/Common/LinuxKernel.vala:659 src/Console/AppConsole.vala:314 +#: src/Common/LinuxKernel.vala:660 src/Console/AppConsole.vala:311 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:667 src/Console/AppConsole.vala:319 -#: src/Console/AppConsole.vala:384 +#: src/Common/LinuxKernel.vala:668 src/Console/AppConsole.vala:316 +#: src/Console/AppConsole.vala:374 msgid "No updates found" msgstr "Nie znaleziono aktualizacji" -#: src/Common/LinuxKernel.vala:677 +#: src/Common/LinuxKernel.vala:678 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "" -#: src/Common/LinuxKernel.vala:939 +#: src/Common/LinuxKernel.vala:940 msgid "Packages Available" msgstr "Dostępne pakiety" -#: src/Common/LinuxKernel.vala:947 +#: src/Common/LinuxKernel.vala:948 msgid "Packages Installed" msgstr "Pakiety zainstalowane" -#: src/Common/LinuxKernel.vala:1030 +#: src/Common/LinuxKernel.vala:1031 msgid "Available Kernels" msgstr "Dostępne jądra" -#: src/Common/LinuxKernel.vala:1037 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1038 src/Gtk/MainWindow.vala:186 msgid "Installed" msgstr "Zainstalowany" -#: src/Common/LinuxKernel.vala:1037 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1038 src/Gtk/MainWindow.vala:186 #: src/Gtk/MainWindow.vala:625 src/Gtk/MainWindow.vala:639 msgid "Running" msgstr "Uruchomiony" -#: src/Common/LinuxKernel.vala:1074 +#: src/Common/LinuxKernel.vala:1075 msgid "Downloading" msgstr "Pobieranie" -#: src/Common/LinuxKernel.vala:1093 +#: src/Common/LinuxKernel.vala:1094 #: src/Utility/Gtk/CustomMessageDialog.vala:148 #: src/Utility/Gtk/CustomMessageDialog.vala:152 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:1098 +#: src/Common/LinuxKernel.vala:1099 msgid "ERROR" msgstr "BŁĄD" -#: src/Common/LinuxKernel.vala:1112 src/Gtk/MainWindow.vala:647 +#: src/Common/LinuxKernel.vala:1113 src/Gtk/MainWindow.vala:647 msgid "This kernel is already installed." msgstr "To jądro jest już zainstalowane." -#: src/Common/LinuxKernel.vala:1138 +#: src/Common/LinuxKernel.vala:1139 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "Instalacja zakończona. Aby korzystać z nowego jądra, konieczne jest ponowne " "uruchomienie." -#: src/Common/LinuxKernel.vala:1141 +#: src/Common/LinuxKernel.vala:1142 msgid "Installation completed with errors" msgstr "Instalacja zakończona z błędami" -#: src/Common/LinuxKernel.vala:1156 +#: src/Common/LinuxKernel.vala:1157 msgid "" "Selected kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -122,19 +122,19 @@ msgstr "" "Wybrane jądro aktualnie działa i nie może zostać usunięte.\n" " Zainstaluj inne jądro przed usunięciem tego." -#: src/Common/LinuxKernel.vala:1161 +#: src/Common/LinuxKernel.vala:1162 msgid "Preparing to remove selected kernels" msgstr "Przygotowanie do usunięcia wybranych jąder" -#: src/Common/LinuxKernel.vala:1192 src/Common/LinuxKernel.vala:1239 +#: src/Common/LinuxKernel.vala:1193 src/Common/LinuxKernel.vala:1240 msgid "Un-install completed" msgstr "De-instalacja zakończona" -#: src/Common/LinuxKernel.vala:1195 src/Common/LinuxKernel.vala:1242 +#: src/Common/LinuxKernel.vala:1196 src/Common/LinuxKernel.vala:1243 msgid "Un-install completed with errors" msgstr "De-instalacja zakończona z błędami" -#: src/Common/LinuxKernel.vala:1208 +#: src/Common/LinuxKernel.vala:1209 msgid "" "This kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -142,11 +142,11 @@ msgstr "" "To jądro aktualnie działa i nie może zostać usunięte.\n" " Zainstaluj inne jądro przed usunięciem tego." -#: src/Common/Main.vala:237 +#: src/Common/Main.vala:235 msgid "Called from" msgstr "" -#: src/Common/Main.vala:249 +#: src/Common/Main.vala:267 #, fuzzy msgid "Notifications are disabled" msgstr "Powiadomienia" @@ -156,7 +156,7 @@ msgstr "Powiadomienia" msgid "File not found: %s" msgstr "Nie odnaleziono pliku: %s" -#: src/Console/AppConsole.vala:62 src/Gtk/AppGtk.vala:154 +#: src/Console/AppConsole.vala:62 src/Gtk/AppGtk.vala:149 msgid "Syntax" msgstr "Składnia" @@ -218,7 +218,7 @@ msgstr "Usuń pliki z pamięci podręcznej aplikacji" msgid "Show unstable and RC releases" msgstr "Ukryj wydania niestabilne i RC" -#: src/Console/AppConsole.vala:79 src/Gtk/AppGtk.vala:156 +#: src/Console/AppConsole.vala:79 src/Gtk/AppGtk.vala:151 msgid "Options" msgstr "Opcje" @@ -243,65 +243,65 @@ msgid "" "One or more version strings (comma-separated) taken from the output of --list" msgstr "" -#: src/Console/AppConsole.vala:166 src/Gtk/AppGtk.vala:141 +#: src/Console/AppConsole.vala:162 src/Gtk/AppGtk.vala:136 msgid "Unknown option" msgstr "Nieznana opcja" -#: src/Console/AppConsole.vala:168 src/Console/AppConsole.vala:260 -#: src/Console/AppConsole.vala:288 +#: src/Console/AppConsole.vala:164 src/Console/AppConsole.vala:256 +#: src/Console/AppConsole.vala:284 #, fuzzy msgid "Run" msgstr "Uruchomiony" -#: src/Console/AppConsole.vala:168 +#: src/Console/AppConsole.vala:164 #, fuzzy msgid "to list all options" msgstr "Pokaż wszystkie opcje" -#: src/Console/AppConsole.vala:233 src/Console/AppConsole.vala:268 +#: src/Console/AppConsole.vala:229 src/Console/AppConsole.vala:264 msgid "No kernels specified" msgstr "" -#: src/Console/AppConsole.vala:239 +#: src/Console/AppConsole.vala:235 msgid "Multiple kernels selected for installation. Select only one." msgstr "Wybrano kilka jąder do instalacji. Wybierz tylko jedno." -#: src/Console/AppConsole.vala:257 src/Gtk/MainWindow.vala:100 +#: src/Console/AppConsole.vala:253 src/Gtk/MainWindow.vala:100 msgid "Could not find requested version" msgstr "Nie można odnaleźć żądanej wersji" -#: src/Console/AppConsole.vala:260 +#: src/Console/AppConsole.vala:256 msgid "and use a version string listed in first column" msgstr "" -#: src/Console/AppConsole.vala:287 +#: src/Console/AppConsole.vala:283 msgid "Command not specified" msgstr "" -#: src/Console/AppConsole.vala:288 +#: src/Console/AppConsole.vala:284 #, fuzzy msgid "to list all commands" msgstr "Pokaż wszystkie opcje" -#: src/Console/AppConsole.vala:349 +#: src/Console/AppConsole.vala:347 msgid "Show" msgstr "" -#: src/Console/AppConsole.vala:354 src/Console/AppConsole.vala:373 +#: src/Console/AppConsole.vala:352 src/Console/AppConsole.vala:364 #, fuzzy, c-format msgid "Kernel %s Available" msgstr "Dostępne pakiety" -#: src/Console/AppConsole.vala:356 src/Console/AppConsole.vala:375 +#: src/Console/AppConsole.vala:354 src/Console/AppConsole.vala:366 #: src/Gtk/MainWindow.vala:330 msgid "Install" msgstr "Zainstaluj" -#: src/Gtk/AppGtk.vala:158 +#: src/Gtk/AppGtk.vala:153 msgid "Print debug information" msgstr "Wypisz informacje debugujące" -#: src/Gtk/AppGtk.vala:159 +#: src/Gtk/AppGtk.vala:154 msgid "Show all options" msgstr "Pokaż wszystkie opcje" @@ -363,7 +363,7 @@ msgstr "" msgid "Changes" msgstr "Zmiany" -#: src/Gtk/MainWindow.vala:435 src/Gtk/SettingsDialog.vala:51 +#: src/Gtk/MainWindow.vala:435 src/Gtk/SettingsDialog.vala:50 msgid "Settings" msgstr "Ustawienia" @@ -407,77 +407,73 @@ msgstr "Zainstalowany" msgid "Cancel" msgstr "Anuluj" -#: src/Gtk/SettingsDialog.vala:61 +#: src/Gtk/SettingsDialog.vala:60 msgid "Notification" msgstr "Powiadomienia" -#: src/Gtk/SettingsDialog.vala:68 +#: src/Gtk/SettingsDialog.vala:67 msgid "Notify if a major release is available" msgstr "Powiadom, jeśli pojawi się główna wersja" -#: src/Gtk/SettingsDialog.vala:79 +#: src/Gtk/SettingsDialog.vala:78 msgid "Notify if a point release is available" msgstr "Powiadom, jeśli pojawi się wersja punktowa" -#: src/Gtk/SettingsDialog.vala:90 -msgid "Show notification bubble on desktop" -msgstr "Pokaż powiadomienia na pulpicie" - -#: src/Gtk/SettingsDialog.vala:101 +#: src/Gtk/SettingsDialog.vala:89 msgid "(Allowing intervals in seconds for --debug)" msgstr "" -#: src/Gtk/SettingsDialog.vala:111 +#: src/Gtk/SettingsDialog.vala:112 msgid "Check every" msgstr "Sprawdzaj co" -#: src/Gtk/SettingsDialog.vala:144 +#: src/Gtk/SettingsDialog.vala:143 msgid "Hour(s)" msgstr "Godzin(y)" -#: src/Gtk/SettingsDialog.vala:146 +#: src/Gtk/SettingsDialog.vala:145 msgid "Day(s)" msgstr "Dni" -#: src/Gtk/SettingsDialog.vala:148 +#: src/Gtk/SettingsDialog.vala:147 msgid "Week(s)" msgstr "Tygodni" -#: src/Gtk/SettingsDialog.vala:151 +#: src/Gtk/SettingsDialog.vala:150 msgid "Second(s)" msgstr "" -#: src/Gtk/SettingsDialog.vala:157 +#: src/Gtk/SettingsDialog.vala:156 msgid "Display" msgstr "Pokaż" -#: src/Gtk/SettingsDialog.vala:165 +#: src/Gtk/SettingsDialog.vala:164 msgid "Hide unstable and RC releases" msgstr "Ukryj wydania niestabilne i RC" -#: src/Gtk/SettingsDialog.vala:179 +#: src/Gtk/SettingsDialog.vala:178 msgid "Show N previous major versions " msgstr "" -#: src/Gtk/SettingsDialog.vala:194 +#: src/Gtk/SettingsDialog.vala:193 msgid "Other" msgstr "" -#: src/Gtk/SettingsDialog.vala:202 +#: src/Gtk/SettingsDialog.vala:201 #, fuzzy msgid "Skip internet connection check" msgstr "Brak połączenia z internetem" -#: src/Gtk/SettingsDialog.vala:215 +#: src/Gtk/SettingsDialog.vala:214 #, fuzzy msgid "Internet connection timeout in " msgstr "Brak połączenia z internetem" -#: src/Gtk/SettingsDialog.vala:230 +#: src/Gtk/SettingsDialog.vala:229 msgid "seconds" msgstr "" -#: src/Gtk/SettingsDialog.vala:237 +#: src/Gtk/SettingsDialog.vala:236 msgid "Max concurrent downloads" msgstr "" diff --git a/po/ru.po b/po/ru.po index a8dc9cb7..4445895a 100644 --- a/po/ru.po +++ b/po/ru.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-19 17:20-0400\n" +"POT-Creation-Date: 2020-05-22 23:42-0400\n" "PO-Revision-Date: 2016-12-13 16:46+0300\n" "Last-Translator: Faust3000 \n" "Language-Team: Russian \n" @@ -48,76 +48,76 @@ msgstr "" msgid "Continue ?" msgstr "" -#: src/Common/LinuxKernel.vala:648 src/Console/AppConsole.vala:307 +#: src/Common/LinuxKernel.vala:649 src/Console/AppConsole.vala:304 msgid "Latest update" msgstr "" -#: src/Common/LinuxKernel.vala:659 src/Console/AppConsole.vala:314 +#: src/Common/LinuxKernel.vala:660 src/Console/AppConsole.vala:311 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:667 src/Console/AppConsole.vala:319 -#: src/Console/AppConsole.vala:384 +#: src/Common/LinuxKernel.vala:668 src/Console/AppConsole.vala:316 +#: src/Console/AppConsole.vala:374 msgid "No updates found" msgstr "Обновлений не найдено" -#: src/Common/LinuxKernel.vala:677 +#: src/Common/LinuxKernel.vala:678 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "" -#: src/Common/LinuxKernel.vala:939 +#: src/Common/LinuxKernel.vala:940 #, fuzzy msgid "Packages Available" msgstr "Установлено" -#: src/Common/LinuxKernel.vala:947 +#: src/Common/LinuxKernel.vala:948 #, fuzzy msgid "Packages Installed" msgstr "Установлено" -#: src/Common/LinuxKernel.vala:1030 +#: src/Common/LinuxKernel.vala:1031 msgid "Available Kernels" msgstr "Доступные ядра" -#: src/Common/LinuxKernel.vala:1037 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1038 src/Gtk/MainWindow.vala:186 msgid "Installed" msgstr "Установлено" -#: src/Common/LinuxKernel.vala:1037 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1038 src/Gtk/MainWindow.vala:186 #: src/Gtk/MainWindow.vala:625 src/Gtk/MainWindow.vala:639 msgid "Running" msgstr "Используется" -#: src/Common/LinuxKernel.vala:1074 +#: src/Common/LinuxKernel.vala:1075 msgid "Downloading" msgstr "Загрузка" -#: src/Common/LinuxKernel.vala:1093 +#: src/Common/LinuxKernel.vala:1094 #: src/Utility/Gtk/CustomMessageDialog.vala:148 #: src/Utility/Gtk/CustomMessageDialog.vala:152 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:1098 +#: src/Common/LinuxKernel.vala:1099 msgid "ERROR" msgstr "ОШИБКА" -#: src/Common/LinuxKernel.vala:1112 src/Gtk/MainWindow.vala:647 +#: src/Common/LinuxKernel.vala:1113 src/Gtk/MainWindow.vala:647 msgid "This kernel is already installed." msgstr "Это ядро уже установлено." -#: src/Common/LinuxKernel.vala:1138 +#: src/Common/LinuxKernel.vala:1139 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "Установка завершена. Обязательно выполните перезагрузку, чтобы использовать " "новое ядро." -#: src/Common/LinuxKernel.vala:1141 +#: src/Common/LinuxKernel.vala:1142 msgid "Installation completed with errors" msgstr "Установка завершена с ошибками" -#: src/Common/LinuxKernel.vala:1156 +#: src/Common/LinuxKernel.vala:1157 #, fuzzy msgid "" "Selected kernel is currently running and cannot be removed.\n" @@ -126,19 +126,19 @@ msgstr "" "Это ядро в настоящий момент работает и не может быть удалено.\n" " Установите другое ядро, прежде чем удалять его." -#: src/Common/LinuxKernel.vala:1161 +#: src/Common/LinuxKernel.vala:1162 msgid "Preparing to remove selected kernels" msgstr "" -#: src/Common/LinuxKernel.vala:1192 src/Common/LinuxKernel.vala:1239 +#: src/Common/LinuxKernel.vala:1193 src/Common/LinuxKernel.vala:1240 msgid "Un-install completed" msgstr "Удаление завершено" -#: src/Common/LinuxKernel.vala:1195 src/Common/LinuxKernel.vala:1242 +#: src/Common/LinuxKernel.vala:1196 src/Common/LinuxKernel.vala:1243 msgid "Un-install completed with errors" msgstr "Удаление завершено с ошибками" -#: src/Common/LinuxKernel.vala:1208 +#: src/Common/LinuxKernel.vala:1209 msgid "" "This kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -146,11 +146,11 @@ msgstr "" "Это ядро в настоящий момент работает и не может быть удалено.\n" " Установите другое ядро, прежде чем удалять его." -#: src/Common/Main.vala:237 +#: src/Common/Main.vala:235 msgid "Called from" msgstr "" -#: src/Common/Main.vala:249 +#: src/Common/Main.vala:267 #, fuzzy msgid "Notifications are disabled" msgstr "Уведомления" @@ -160,7 +160,7 @@ msgstr "Уведомления" msgid "File not found: %s" msgstr "Файл не найден: %s" -#: src/Console/AppConsole.vala:62 src/Gtk/AppGtk.vala:154 +#: src/Console/AppConsole.vala:62 src/Gtk/AppGtk.vala:149 msgid "Syntax" msgstr "Синтаксис" @@ -222,7 +222,7 @@ msgstr "Удалить файлы из кэша программы" msgid "Show unstable and RC releases" msgstr "Скрыть нестабильные и релиз-кандидат версии" -#: src/Console/AppConsole.vala:79 src/Gtk/AppGtk.vala:156 +#: src/Console/AppConsole.vala:79 src/Gtk/AppGtk.vala:151 msgid "Options" msgstr "Параметры" @@ -247,65 +247,65 @@ msgid "" "One or more version strings (comma-separated) taken from the output of --list" msgstr "" -#: src/Console/AppConsole.vala:166 src/Gtk/AppGtk.vala:141 +#: src/Console/AppConsole.vala:162 src/Gtk/AppGtk.vala:136 msgid "Unknown option" msgstr "Неизвестный параметр" -#: src/Console/AppConsole.vala:168 src/Console/AppConsole.vala:260 -#: src/Console/AppConsole.vala:288 +#: src/Console/AppConsole.vala:164 src/Console/AppConsole.vala:256 +#: src/Console/AppConsole.vala:284 #, fuzzy msgid "Run" msgstr "Используется" -#: src/Console/AppConsole.vala:168 +#: src/Console/AppConsole.vala:164 #, fuzzy msgid "to list all options" msgstr "Показать все параметры" -#: src/Console/AppConsole.vala:233 src/Console/AppConsole.vala:268 +#: src/Console/AppConsole.vala:229 src/Console/AppConsole.vala:264 msgid "No kernels specified" msgstr "" -#: src/Console/AppConsole.vala:239 +#: src/Console/AppConsole.vala:235 msgid "Multiple kernels selected for installation. Select only one." msgstr "" -#: src/Console/AppConsole.vala:257 src/Gtk/MainWindow.vala:100 +#: src/Console/AppConsole.vala:253 src/Gtk/MainWindow.vala:100 msgid "Could not find requested version" msgstr "Не удалось найти запрошенную версию" -#: src/Console/AppConsole.vala:260 +#: src/Console/AppConsole.vala:256 msgid "and use a version string listed in first column" msgstr "" -#: src/Console/AppConsole.vala:287 +#: src/Console/AppConsole.vala:283 msgid "Command not specified" msgstr "" -#: src/Console/AppConsole.vala:288 +#: src/Console/AppConsole.vala:284 #, fuzzy msgid "to list all commands" msgstr "Показать все параметры" -#: src/Console/AppConsole.vala:349 +#: src/Console/AppConsole.vala:347 msgid "Show" msgstr "" -#: src/Console/AppConsole.vala:354 src/Console/AppConsole.vala:373 +#: src/Console/AppConsole.vala:352 src/Console/AppConsole.vala:364 #, fuzzy, c-format msgid "Kernel %s Available" msgstr "Установлено" -#: src/Console/AppConsole.vala:356 src/Console/AppConsole.vala:375 +#: src/Console/AppConsole.vala:354 src/Console/AppConsole.vala:366 #: src/Gtk/MainWindow.vala:330 msgid "Install" msgstr "Установить" -#: src/Gtk/AppGtk.vala:158 +#: src/Gtk/AppGtk.vala:153 msgid "Print debug information" msgstr "Распечатать отладочную информацию" -#: src/Gtk/AppGtk.vala:159 +#: src/Gtk/AppGtk.vala:154 msgid "Show all options" msgstr "Показать все параметры" @@ -367,7 +367,7 @@ msgstr "Очистить" msgid "Changes" msgstr "Изменения" -#: src/Gtk/MainWindow.vala:435 src/Gtk/SettingsDialog.vala:51 +#: src/Gtk/MainWindow.vala:435 src/Gtk/SettingsDialog.vala:50 msgid "Settings" msgstr "Настройки" @@ -411,77 +411,73 @@ msgstr "Установлено" msgid "Cancel" msgstr "Отмена" -#: src/Gtk/SettingsDialog.vala:61 +#: src/Gtk/SettingsDialog.vala:60 msgid "Notification" msgstr "Уведомления" -#: src/Gtk/SettingsDialog.vala:68 +#: src/Gtk/SettingsDialog.vala:67 msgid "Notify if a major release is available" msgstr "Уведомлять, если доступно крупное обновление" -#: src/Gtk/SettingsDialog.vala:79 +#: src/Gtk/SettingsDialog.vala:78 msgid "Notify if a point release is available" msgstr "Уведомлять, если доступно небольшое обновление" -#: src/Gtk/SettingsDialog.vala:90 -msgid "Show notification bubble on desktop" -msgstr "Показывать окно оповещений на рабочем столе" - -#: src/Gtk/SettingsDialog.vala:101 +#: src/Gtk/SettingsDialog.vala:89 msgid "(Allowing intervals in seconds for --debug)" msgstr "" -#: src/Gtk/SettingsDialog.vala:111 +#: src/Gtk/SettingsDialog.vala:112 msgid "Check every" msgstr "Проверять каждые" -#: src/Gtk/SettingsDialog.vala:144 +#: src/Gtk/SettingsDialog.vala:143 msgid "Hour(s)" msgstr "Час(ов)" -#: src/Gtk/SettingsDialog.vala:146 +#: src/Gtk/SettingsDialog.vala:145 msgid "Day(s)" msgstr "День(дней)" -#: src/Gtk/SettingsDialog.vala:148 +#: src/Gtk/SettingsDialog.vala:147 msgid "Week(s)" msgstr "Неделю(ли)" -#: src/Gtk/SettingsDialog.vala:151 +#: src/Gtk/SettingsDialog.vala:150 msgid "Second(s)" msgstr "" -#: src/Gtk/SettingsDialog.vala:157 +#: src/Gtk/SettingsDialog.vala:156 msgid "Display" msgstr "Вид" -#: src/Gtk/SettingsDialog.vala:165 +#: src/Gtk/SettingsDialog.vala:164 msgid "Hide unstable and RC releases" msgstr "Скрыть нестабильные и релиз-кандидат версии" -#: src/Gtk/SettingsDialog.vala:179 +#: src/Gtk/SettingsDialog.vala:178 msgid "Show N previous major versions " msgstr "" -#: src/Gtk/SettingsDialog.vala:194 +#: src/Gtk/SettingsDialog.vala:193 msgid "Other" msgstr "" -#: src/Gtk/SettingsDialog.vala:202 +#: src/Gtk/SettingsDialog.vala:201 #, fuzzy msgid "Skip internet connection check" msgstr "Интернет соединение не активно" -#: src/Gtk/SettingsDialog.vala:215 +#: src/Gtk/SettingsDialog.vala:214 #, fuzzy msgid "Internet connection timeout in " msgstr "Интернет соединение не активно" -#: src/Gtk/SettingsDialog.vala:230 +#: src/Gtk/SettingsDialog.vala:229 msgid "seconds" msgstr "" -#: src/Gtk/SettingsDialog.vala:237 +#: src/Gtk/SettingsDialog.vala:236 msgid "Max concurrent downloads" msgstr "" diff --git a/po/sv.po b/po/sv.po index 7e1c76ff..38375462 100644 --- a/po/sv.po +++ b/po/sv.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-19 17:20-0400\n" +"POT-Creation-Date: 2020-05-22 23:42-0400\n" "PO-Revision-Date: 2018-01-13 16:56+0100\n" "Last-Translator: Åke Engelbrektson \n" "Language-Team: Svenska Språkfiler \n" @@ -49,72 +49,72 @@ msgstr "" msgid "Continue ?" msgstr "" -#: src/Common/LinuxKernel.vala:648 src/Console/AppConsole.vala:307 +#: src/Common/LinuxKernel.vala:649 src/Console/AppConsole.vala:304 msgid "Latest update" msgstr "" -#: src/Common/LinuxKernel.vala:659 src/Console/AppConsole.vala:314 +#: src/Common/LinuxKernel.vala:660 src/Console/AppConsole.vala:311 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:667 src/Console/AppConsole.vala:319 -#: src/Console/AppConsole.vala:384 +#: src/Common/LinuxKernel.vala:668 src/Console/AppConsole.vala:316 +#: src/Console/AppConsole.vala:374 msgid "No updates found" msgstr "Inga uppdateringar hittades" -#: src/Common/LinuxKernel.vala:677 +#: src/Common/LinuxKernel.vala:678 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "" -#: src/Common/LinuxKernel.vala:939 +#: src/Common/LinuxKernel.vala:940 msgid "Packages Available" msgstr "Tillgängliga paket" -#: src/Common/LinuxKernel.vala:947 +#: src/Common/LinuxKernel.vala:948 msgid "Packages Installed" msgstr "Installerade paket" -#: src/Common/LinuxKernel.vala:1030 +#: src/Common/LinuxKernel.vala:1031 msgid "Available Kernels" msgstr "Tillgängliga kärnor" -#: src/Common/LinuxKernel.vala:1037 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1038 src/Gtk/MainWindow.vala:186 msgid "Installed" msgstr "Installerad" -#: src/Common/LinuxKernel.vala:1037 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1038 src/Gtk/MainWindow.vala:186 #: src/Gtk/MainWindow.vala:625 src/Gtk/MainWindow.vala:639 msgid "Running" msgstr "Körs" -#: src/Common/LinuxKernel.vala:1074 +#: src/Common/LinuxKernel.vala:1075 msgid "Downloading" msgstr "Laddar ner" -#: src/Common/LinuxKernel.vala:1093 +#: src/Common/LinuxKernel.vala:1094 #: src/Utility/Gtk/CustomMessageDialog.vala:148 #: src/Utility/Gtk/CustomMessageDialog.vala:152 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:1098 +#: src/Common/LinuxKernel.vala:1099 msgid "ERROR" msgstr "FEL" -#: src/Common/LinuxKernel.vala:1112 src/Gtk/MainWindow.vala:647 +#: src/Common/LinuxKernel.vala:1113 src/Gtk/MainWindow.vala:647 msgid "This kernel is already installed." msgstr "Denna kärna är redan installerad" -#: src/Common/LinuxKernel.vala:1138 +#: src/Common/LinuxKernel.vala:1139 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "Installation slutförd. Omstart krävs för att tillämpa den nya kärnan." -#: src/Common/LinuxKernel.vala:1141 +#: src/Common/LinuxKernel.vala:1142 msgid "Installation completed with errors" msgstr "Installation slutförd med fel" -#: src/Common/LinuxKernel.vala:1156 +#: src/Common/LinuxKernel.vala:1157 msgid "" "Selected kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -122,19 +122,19 @@ msgstr "" "Denna kärna används för tillfället och kan inte tas bort.\n" "Installera en annan kärna innan du tar bort den här." -#: src/Common/LinuxKernel.vala:1161 +#: src/Common/LinuxKernel.vala:1162 msgid "Preparing to remove selected kernels" msgstr "Förbereder borttagning av markerade kärnor" -#: src/Common/LinuxKernel.vala:1192 src/Common/LinuxKernel.vala:1239 +#: src/Common/LinuxKernel.vala:1193 src/Common/LinuxKernel.vala:1240 msgid "Un-install completed" msgstr "Avinstallation slutförd" -#: src/Common/LinuxKernel.vala:1195 src/Common/LinuxKernel.vala:1242 +#: src/Common/LinuxKernel.vala:1196 src/Common/LinuxKernel.vala:1243 msgid "Un-install completed with errors" msgstr "Avinstallation slutförd med fel" -#: src/Common/LinuxKernel.vala:1208 +#: src/Common/LinuxKernel.vala:1209 msgid "" "This kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -142,11 +142,11 @@ msgstr "" "Denna kärna används för tillfället och kan inte tas bort.\n" "Installera en annan kärna innan du tar bort den här." -#: src/Common/Main.vala:237 +#: src/Common/Main.vala:235 msgid "Called from" msgstr "" -#: src/Common/Main.vala:249 +#: src/Common/Main.vala:267 #, fuzzy msgid "Notifications are disabled" msgstr "Avisering" @@ -156,7 +156,7 @@ msgstr "Avisering" msgid "File not found: %s" msgstr "Filen kunde inte hittas: %s" -#: src/Console/AppConsole.vala:62 src/Gtk/AppGtk.vala:154 +#: src/Console/AppConsole.vala:62 src/Gtk/AppGtk.vala:149 msgid "Syntax" msgstr "Syntax" @@ -218,7 +218,7 @@ msgstr "Ta bort filer från program-cachen" msgid "Show unstable and RC releases" msgstr "Dölj instabila- och RC-publiceringar" -#: src/Console/AppConsole.vala:79 src/Gtk/AppGtk.vala:156 +#: src/Console/AppConsole.vala:79 src/Gtk/AppGtk.vala:151 msgid "Options" msgstr "Alternativ" @@ -243,65 +243,65 @@ msgid "" "One or more version strings (comma-separated) taken from the output of --list" msgstr "" -#: src/Console/AppConsole.vala:166 src/Gtk/AppGtk.vala:141 +#: src/Console/AppConsole.vala:162 src/Gtk/AppGtk.vala:136 msgid "Unknown option" msgstr "Okänt alternativ" -#: src/Console/AppConsole.vala:168 src/Console/AppConsole.vala:260 -#: src/Console/AppConsole.vala:288 +#: src/Console/AppConsole.vala:164 src/Console/AppConsole.vala:256 +#: src/Console/AppConsole.vala:284 #, fuzzy msgid "Run" msgstr "Körs" -#: src/Console/AppConsole.vala:168 +#: src/Console/AppConsole.vala:164 #, fuzzy msgid "to list all options" msgstr "Visa alla alternativ" -#: src/Console/AppConsole.vala:233 src/Console/AppConsole.vala:268 +#: src/Console/AppConsole.vala:229 src/Console/AppConsole.vala:264 msgid "No kernels specified" msgstr "" -#: src/Console/AppConsole.vala:239 +#: src/Console/AppConsole.vala:235 msgid "Multiple kernels selected for installation. Select only one." msgstr "Flera kärnor valda för installation. Välj endast en." -#: src/Console/AppConsole.vala:257 src/Gtk/MainWindow.vala:100 +#: src/Console/AppConsole.vala:253 src/Gtk/MainWindow.vala:100 msgid "Could not find requested version" msgstr "Kunde inte hitta efterfrågad version" -#: src/Console/AppConsole.vala:260 +#: src/Console/AppConsole.vala:256 msgid "and use a version string listed in first column" msgstr "" -#: src/Console/AppConsole.vala:287 +#: src/Console/AppConsole.vala:283 msgid "Command not specified" msgstr "" -#: src/Console/AppConsole.vala:288 +#: src/Console/AppConsole.vala:284 #, fuzzy msgid "to list all commands" msgstr "Visa alla alternativ" -#: src/Console/AppConsole.vala:349 +#: src/Console/AppConsole.vala:347 msgid "Show" msgstr "" -#: src/Console/AppConsole.vala:354 src/Console/AppConsole.vala:373 +#: src/Console/AppConsole.vala:352 src/Console/AppConsole.vala:364 #, fuzzy, c-format msgid "Kernel %s Available" msgstr "Tillgängliga paket" -#: src/Console/AppConsole.vala:356 src/Console/AppConsole.vala:375 +#: src/Console/AppConsole.vala:354 src/Console/AppConsole.vala:366 #: src/Gtk/MainWindow.vala:330 msgid "Install" msgstr "Installera" -#: src/Gtk/AppGtk.vala:158 +#: src/Gtk/AppGtk.vala:153 msgid "Print debug information" msgstr "Skriv ut felsökningsinformation" -#: src/Gtk/AppGtk.vala:159 +#: src/Gtk/AppGtk.vala:154 msgid "Show all options" msgstr "Visa alla alternativ" @@ -363,7 +363,7 @@ msgstr "Rensa" msgid "Changes" msgstr "Ändringar" -#: src/Gtk/MainWindow.vala:435 src/Gtk/SettingsDialog.vala:51 +#: src/Gtk/MainWindow.vala:435 src/Gtk/SettingsDialog.vala:50 msgid "Settings" msgstr "Inställningar" @@ -407,77 +407,73 @@ msgstr "Installerad" msgid "Cancel" msgstr "Avbryt" -#: src/Gtk/SettingsDialog.vala:61 +#: src/Gtk/SettingsDialog.vala:60 msgid "Notification" msgstr "Avisering" -#: src/Gtk/SettingsDialog.vala:68 +#: src/Gtk/SettingsDialog.vala:67 msgid "Notify if a major release is available" msgstr "Meddela om en ny (stor) uppdatering finns tillgänglig" -#: src/Gtk/SettingsDialog.vala:79 +#: src/Gtk/SettingsDialog.vala:78 msgid "Notify if a point release is available" msgstr "Meddela om en ny (mindre) uppdatering finns tillgänglig" -#: src/Gtk/SettingsDialog.vala:90 -msgid "Show notification bubble on desktop" -msgstr "Visa aviseringsruta på skrivbordet" - -#: src/Gtk/SettingsDialog.vala:101 +#: src/Gtk/SettingsDialog.vala:89 msgid "(Allowing intervals in seconds for --debug)" msgstr "" -#: src/Gtk/SettingsDialog.vala:111 +#: src/Gtk/SettingsDialog.vala:112 msgid "Check every" msgstr "Kontrollera varje" -#: src/Gtk/SettingsDialog.vala:144 +#: src/Gtk/SettingsDialog.vala:143 msgid "Hour(s)" msgstr "Timma(r)" -#: src/Gtk/SettingsDialog.vala:146 +#: src/Gtk/SettingsDialog.vala:145 msgid "Day(s)" msgstr "Dag(ar)" -#: src/Gtk/SettingsDialog.vala:148 +#: src/Gtk/SettingsDialog.vala:147 msgid "Week(s)" msgstr "Veckor" -#: src/Gtk/SettingsDialog.vala:151 +#: src/Gtk/SettingsDialog.vala:150 msgid "Second(s)" msgstr "" -#: src/Gtk/SettingsDialog.vala:157 +#: src/Gtk/SettingsDialog.vala:156 msgid "Display" msgstr "Visa" -#: src/Gtk/SettingsDialog.vala:165 +#: src/Gtk/SettingsDialog.vala:164 msgid "Hide unstable and RC releases" msgstr "Dölj instabila- och RC-publiceringar" -#: src/Gtk/SettingsDialog.vala:179 +#: src/Gtk/SettingsDialog.vala:178 msgid "Show N previous major versions " msgstr "" -#: src/Gtk/SettingsDialog.vala:194 +#: src/Gtk/SettingsDialog.vala:193 msgid "Other" msgstr "" -#: src/Gtk/SettingsDialog.vala:202 +#: src/Gtk/SettingsDialog.vala:201 #, fuzzy msgid "Skip internet connection check" msgstr "Internetuppkopplingen är inte aktiv" -#: src/Gtk/SettingsDialog.vala:215 +#: src/Gtk/SettingsDialog.vala:214 #, fuzzy msgid "Internet connection timeout in " msgstr "Internetuppkopplingen är inte aktiv" -#: src/Gtk/SettingsDialog.vala:230 +#: src/Gtk/SettingsDialog.vala:229 msgid "seconds" msgstr "" -#: src/Gtk/SettingsDialog.vala:237 +#: src/Gtk/SettingsDialog.vala:236 msgid "Max concurrent downloads" msgstr "" diff --git a/po/tr.po b/po/tr.po index 1e3efa4d..e124481b 100644 --- a/po/tr.po +++ b/po/tr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-19 17:20-0400\n" +"POT-Creation-Date: 2020-05-22 23:42-0400\n" "PO-Revision-Date: 2020-03-10 15:59+0300\n" "Last-Translator: Gökhan GÖKKAYA \n" "Language-Team: Turkish\n" @@ -45,73 +45,73 @@ msgstr "Aşağıdaki çekirdekler silinecek:" msgid "Continue ?" msgstr "Devam et ?" -#: src/Common/LinuxKernel.vala:648 src/Console/AppConsole.vala:307 +#: src/Common/LinuxKernel.vala:649 src/Console/AppConsole.vala:304 msgid "Latest update" msgstr "Son güncelleme" -#: src/Common/LinuxKernel.vala:659 src/Console/AppConsole.vala:314 +#: src/Common/LinuxKernel.vala:660 src/Console/AppConsole.vala:311 msgid "Latest point update" msgstr "Son güncelleme noktası" -#: src/Common/LinuxKernel.vala:667 src/Console/AppConsole.vala:319 -#: src/Console/AppConsole.vala:384 +#: src/Common/LinuxKernel.vala:668 src/Console/AppConsole.vala:316 +#: src/Console/AppConsole.vala:374 msgid "No updates found" msgstr "Güncelleme bulunamadı" -#: src/Common/LinuxKernel.vala:677 +#: src/Common/LinuxKernel.vala:678 #, fuzzy, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Linux v%s Kur ? (e/h): " -#: src/Common/LinuxKernel.vala:939 +#: src/Common/LinuxKernel.vala:940 msgid "Packages Available" msgstr "Mevcut Paketler" -#: src/Common/LinuxKernel.vala:947 +#: src/Common/LinuxKernel.vala:948 msgid "Packages Installed" msgstr "Kurulu Paketler" -#: src/Common/LinuxKernel.vala:1030 +#: src/Common/LinuxKernel.vala:1031 msgid "Available Kernels" msgstr "Mevcut Çekirdekler" -#: src/Common/LinuxKernel.vala:1037 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1038 src/Gtk/MainWindow.vala:186 msgid "Installed" msgstr "Kurulu" -#: src/Common/LinuxKernel.vala:1037 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1038 src/Gtk/MainWindow.vala:186 #: src/Gtk/MainWindow.vala:625 src/Gtk/MainWindow.vala:639 msgid "Running" msgstr "Çalışıyor" -#: src/Common/LinuxKernel.vala:1074 +#: src/Common/LinuxKernel.vala:1075 msgid "Downloading" msgstr "İndiriliyor" -#: src/Common/LinuxKernel.vala:1093 +#: src/Common/LinuxKernel.vala:1094 #: src/Utility/Gtk/CustomMessageDialog.vala:148 #: src/Utility/Gtk/CustomMessageDialog.vala:152 msgid "OK" msgstr "TAMAM" -#: src/Common/LinuxKernel.vala:1098 +#: src/Common/LinuxKernel.vala:1099 msgid "ERROR" msgstr "HATA" -#: src/Common/LinuxKernel.vala:1112 src/Gtk/MainWindow.vala:647 +#: src/Common/LinuxKernel.vala:1113 src/Gtk/MainWindow.vala:647 msgid "This kernel is already installed." msgstr "Bu çekirdek zaten kurulu." -#: src/Common/LinuxKernel.vala:1138 +#: src/Common/LinuxKernel.vala:1139 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "Kurulum tamamlandı. Yeni çekirdeği kullanmak için yeniden başlatma gerekiyor." -#: src/Common/LinuxKernel.vala:1141 +#: src/Common/LinuxKernel.vala:1142 msgid "Installation completed with errors" msgstr "Kurulum hatalarla tamamlandı" -#: src/Common/LinuxKernel.vala:1156 +#: src/Common/LinuxKernel.vala:1157 msgid "" "Selected kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -119,19 +119,19 @@ msgstr "" "Seçilen çekirdek şu anda çalışıyor ve kaldırılamıyor.\n" " Bunu kaldırmadan önce başka bir çekirdek yükleyin." -#: src/Common/LinuxKernel.vala:1161 +#: src/Common/LinuxKernel.vala:1162 msgid "Preparing to remove selected kernels" msgstr "Seçilen çekirdekleri kaldırmak için hazırlanıyor" -#: src/Common/LinuxKernel.vala:1192 src/Common/LinuxKernel.vala:1239 +#: src/Common/LinuxKernel.vala:1193 src/Common/LinuxKernel.vala:1240 msgid "Un-install completed" msgstr "Kaldırma tamamlandı" -#: src/Common/LinuxKernel.vala:1195 src/Common/LinuxKernel.vala:1242 +#: src/Common/LinuxKernel.vala:1196 src/Common/LinuxKernel.vala:1243 msgid "Un-install completed with errors" msgstr "Kaldırma hatalarla tamamlandı" -#: src/Common/LinuxKernel.vala:1208 +#: src/Common/LinuxKernel.vala:1209 msgid "" "This kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -139,11 +139,11 @@ msgstr "" "Bu çekirdek şu anda çalışıyor ve bu sebeple kaldırılamaz.\n" "Bunu kaldırmadan önce başka bir çekirdek yükleyin." -#: src/Common/Main.vala:237 +#: src/Common/Main.vala:235 msgid "Called from" msgstr "" -#: src/Common/Main.vala:249 +#: src/Common/Main.vala:267 #, fuzzy msgid "Notifications are disabled" msgstr "Bildirim" @@ -153,7 +153,7 @@ msgstr "Bildirim" msgid "File not found: %s" msgstr "Şu dosya bulunamadı: %s" -#: src/Console/AppConsole.vala:62 src/Gtk/AppGtk.vala:154 +#: src/Console/AppConsole.vala:62 src/Gtk/AppGtk.vala:149 msgid "Syntax" msgstr "Sözdizimi" @@ -211,7 +211,7 @@ msgstr "Dosyaları uygulama önbelleğinden sil" msgid "Show unstable and RC releases" msgstr "Kararsız ve RC sürümleri göster" -#: src/Console/AppConsole.vala:79 src/Gtk/AppGtk.vala:156 +#: src/Console/AppConsole.vala:79 src/Gtk/AppGtk.vala:151 msgid "Options" msgstr "Seçenekler" @@ -236,65 +236,65 @@ msgid "" "One or more version strings (comma-separated) taken from the output of --list" msgstr "" -#: src/Console/AppConsole.vala:166 src/Gtk/AppGtk.vala:141 +#: src/Console/AppConsole.vala:162 src/Gtk/AppGtk.vala:136 msgid "Unknown option" msgstr "Bilinmeyen seçenek" -#: src/Console/AppConsole.vala:168 src/Console/AppConsole.vala:260 -#: src/Console/AppConsole.vala:288 +#: src/Console/AppConsole.vala:164 src/Console/AppConsole.vala:256 +#: src/Console/AppConsole.vala:284 #, fuzzy msgid "Run" msgstr "Çalıştır '" -#: src/Console/AppConsole.vala:168 +#: src/Console/AppConsole.vala:164 #, fuzzy msgid "to list all options" msgstr "Tüm seçenekleri göster" -#: src/Console/AppConsole.vala:233 src/Console/AppConsole.vala:268 +#: src/Console/AppConsole.vala:229 src/Console/AppConsole.vala:264 msgid "No kernels specified" msgstr "Belirtilen çekirdek yok" -#: src/Console/AppConsole.vala:239 +#: src/Console/AppConsole.vala:235 msgid "Multiple kernels selected for installation. Select only one." msgstr "Kurulum için çoklu çekirdek seçildi. Sadece bir tane seçiniz." -#: src/Console/AppConsole.vala:257 src/Gtk/MainWindow.vala:100 +#: src/Console/AppConsole.vala:253 src/Gtk/MainWindow.vala:100 msgid "Could not find requested version" msgstr "İstenen sürüm bulunamadı" -#: src/Console/AppConsole.vala:260 +#: src/Console/AppConsole.vala:256 msgid "and use a version string listed in first column" msgstr "" -#: src/Console/AppConsole.vala:287 +#: src/Console/AppConsole.vala:283 msgid "Command not specified" msgstr "Komut belirtilmedi" -#: src/Console/AppConsole.vala:288 +#: src/Console/AppConsole.vala:284 #, fuzzy msgid "to list all commands" msgstr "Tüm seçenekleri göster" -#: src/Console/AppConsole.vala:349 +#: src/Console/AppConsole.vala:347 msgid "Show" msgstr "" -#: src/Console/AppConsole.vala:354 src/Console/AppConsole.vala:373 +#: src/Console/AppConsole.vala:352 src/Console/AppConsole.vala:364 #, fuzzy, c-format msgid "Kernel %s Available" msgstr "Mevcut Paketler" -#: src/Console/AppConsole.vala:356 src/Console/AppConsole.vala:375 +#: src/Console/AppConsole.vala:354 src/Console/AppConsole.vala:366 #: src/Gtk/MainWindow.vala:330 msgid "Install" msgstr "Kur" -#: src/Gtk/AppGtk.vala:158 +#: src/Gtk/AppGtk.vala:153 msgid "Print debug information" msgstr "Hata ayıklama bilgisini yazdır" -#: src/Gtk/AppGtk.vala:159 +#: src/Gtk/AppGtk.vala:154 msgid "Show all options" msgstr "Tüm seçenekleri göster" @@ -356,7 +356,7 @@ msgstr "Temizle" msgid "Changes" msgstr "Değişiklikler" -#: src/Gtk/MainWindow.vala:435 src/Gtk/SettingsDialog.vala:51 +#: src/Gtk/MainWindow.vala:435 src/Gtk/SettingsDialog.vala:50 msgid "Settings" msgstr "Ayarlar" @@ -400,76 +400,72 @@ msgstr "Kurulu" msgid "Cancel" msgstr "İptal" -#: src/Gtk/SettingsDialog.vala:61 +#: src/Gtk/SettingsDialog.vala:60 msgid "Notification" msgstr "Bildirim" -#: src/Gtk/SettingsDialog.vala:68 +#: src/Gtk/SettingsDialog.vala:67 msgid "Notify if a major release is available" msgstr "Ana sürüm mevcutsa bildir" -#: src/Gtk/SettingsDialog.vala:79 +#: src/Gtk/SettingsDialog.vala:78 msgid "Notify if a point release is available" msgstr "Ara sürüm mevcutsa bildir" -#: src/Gtk/SettingsDialog.vala:90 -msgid "Show notification bubble on desktop" -msgstr "Masaüstünde bildirim baloncuğu göster" - -#: src/Gtk/SettingsDialog.vala:101 +#: src/Gtk/SettingsDialog.vala:89 msgid "(Allowing intervals in seconds for --debug)" msgstr "" -#: src/Gtk/SettingsDialog.vala:111 +#: src/Gtk/SettingsDialog.vala:112 msgid "Check every" msgstr "Kontrol aralığı" -#: src/Gtk/SettingsDialog.vala:144 +#: src/Gtk/SettingsDialog.vala:143 msgid "Hour(s)" msgstr "Saat" -#: src/Gtk/SettingsDialog.vala:146 +#: src/Gtk/SettingsDialog.vala:145 msgid "Day(s)" msgstr "Gün" -#: src/Gtk/SettingsDialog.vala:148 +#: src/Gtk/SettingsDialog.vala:147 msgid "Week(s)" msgstr "Hafta" -#: src/Gtk/SettingsDialog.vala:151 +#: src/Gtk/SettingsDialog.vala:150 #, fuzzy msgid "Second(s)" msgstr "saniye" -#: src/Gtk/SettingsDialog.vala:157 +#: src/Gtk/SettingsDialog.vala:156 msgid "Display" msgstr "Gösterim" -#: src/Gtk/SettingsDialog.vala:165 +#: src/Gtk/SettingsDialog.vala:164 msgid "Hide unstable and RC releases" msgstr "Kararsız ve RC sürümleri gizle" -#: src/Gtk/SettingsDialog.vala:179 +#: src/Gtk/SettingsDialog.vala:178 msgid "Show N previous major versions " msgstr "Önceki ana sürümleri gösterme sayısı " -#: src/Gtk/SettingsDialog.vala:194 +#: src/Gtk/SettingsDialog.vala:193 msgid "Other" msgstr "Diğer" -#: src/Gtk/SettingsDialog.vala:202 +#: src/Gtk/SettingsDialog.vala:201 msgid "Skip internet connection check" msgstr "İnternet bağlantı kontrolünü atla" -#: src/Gtk/SettingsDialog.vala:215 +#: src/Gtk/SettingsDialog.vala:214 msgid "Internet connection timeout in " msgstr "İnternet bağlantısı zaman aşımı " -#: src/Gtk/SettingsDialog.vala:230 +#: src/Gtk/SettingsDialog.vala:229 msgid "seconds" msgstr "saniye" -#: src/Gtk/SettingsDialog.vala:237 +#: src/Gtk/SettingsDialog.vala:236 msgid "Max concurrent downloads" msgstr "" diff --git a/po/uk.po b/po/uk.po index 8791f492..3f1f10e8 100644 --- a/po/uk.po +++ b/po/uk.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-19 17:20-0400\n" +"POT-Creation-Date: 2020-05-22 23:42-0400\n" "PO-Revision-Date: 2019-07-25 11:00+0300\n" "Last-Translator: Serhii Golovko \n" "Language-Team: Ukranian \n" @@ -45,73 +45,73 @@ msgstr "Наступні ядра будуть видалені:" msgid "Continue ?" msgstr "Продовжувати ?" -#: src/Common/LinuxKernel.vala:648 src/Console/AppConsole.vala:307 +#: src/Common/LinuxKernel.vala:649 src/Console/AppConsole.vala:304 msgid "Latest update" msgstr "Останнє оновлення" -#: src/Common/LinuxKernel.vala:659 src/Console/AppConsole.vala:314 +#: src/Common/LinuxKernel.vala:660 src/Console/AppConsole.vala:311 msgid "Latest point update" msgstr "Остання точка оновлення" -#: src/Common/LinuxKernel.vala:667 src/Console/AppConsole.vala:319 -#: src/Console/AppConsole.vala:384 +#: src/Common/LinuxKernel.vala:668 src/Console/AppConsole.vala:316 +#: src/Console/AppConsole.vala:374 msgid "No updates found" msgstr "Оновлень не знайдено" -#: src/Common/LinuxKernel.vala:677 +#: src/Common/LinuxKernel.vala:678 #, fuzzy, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Встановити Linux v% s? (так/ні): " -#: src/Common/LinuxKernel.vala:939 +#: src/Common/LinuxKernel.vala:940 msgid "Packages Available" msgstr "Доступні пакети" -#: src/Common/LinuxKernel.vala:947 +#: src/Common/LinuxKernel.vala:948 msgid "Packages Installed" msgstr "Встановлені пакети" -#: src/Common/LinuxKernel.vala:1030 +#: src/Common/LinuxKernel.vala:1031 msgid "Available Kernels" msgstr "Доступні ядра" -#: src/Common/LinuxKernel.vala:1037 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1038 src/Gtk/MainWindow.vala:186 msgid "Installed" msgstr "Встановлено" -#: src/Common/LinuxKernel.vala:1037 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1038 src/Gtk/MainWindow.vala:186 #: src/Gtk/MainWindow.vala:625 src/Gtk/MainWindow.vala:639 msgid "Running" msgstr "Використовується" -#: src/Common/LinuxKernel.vala:1074 +#: src/Common/LinuxKernel.vala:1075 msgid "Downloading" msgstr "Завантаження" -#: src/Common/LinuxKernel.vala:1093 +#: src/Common/LinuxKernel.vala:1094 #: src/Utility/Gtk/CustomMessageDialog.vala:148 #: src/Utility/Gtk/CustomMessageDialog.vala:152 msgid "OK" msgstr "Добре" -#: src/Common/LinuxKernel.vala:1098 +#: src/Common/LinuxKernel.vala:1099 msgid "ERROR" msgstr "ПОМИЛКА" -#: src/Common/LinuxKernel.vala:1112 src/Gtk/MainWindow.vala:647 +#: src/Common/LinuxKernel.vala:1113 src/Gtk/MainWindow.vala:647 msgid "This kernel is already installed." msgstr "Це ядро вже встановлено." -#: src/Common/LinuxKernel.vala:1138 +#: src/Common/LinuxKernel.vala:1139 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "Установка завершена. Для використання нового ядра потрібна перезавантаження." -#: src/Common/LinuxKernel.vala:1141 +#: src/Common/LinuxKernel.vala:1142 msgid "Installation completed with errors" msgstr "Установка завершена з помилками" -#: src/Common/LinuxKernel.vala:1156 +#: src/Common/LinuxKernel.vala:1157 msgid "" "Selected kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -119,19 +119,19 @@ msgstr "" "Це ядро зараз працює і не може бути видалено. \n" "Встановіть інше ядро, перш ніж видаляти його." -#: src/Common/LinuxKernel.vala:1161 +#: src/Common/LinuxKernel.vala:1162 msgid "Preparing to remove selected kernels" msgstr "Підготовка до видалення вибраних ядер" -#: src/Common/LinuxKernel.vala:1192 src/Common/LinuxKernel.vala:1239 +#: src/Common/LinuxKernel.vala:1193 src/Common/LinuxKernel.vala:1240 msgid "Un-install completed" msgstr "Видалення завершено" -#: src/Common/LinuxKernel.vala:1195 src/Common/LinuxKernel.vala:1242 +#: src/Common/LinuxKernel.vala:1196 src/Common/LinuxKernel.vala:1243 msgid "Un-install completed with errors" msgstr "Видалення завершено з помилками" -#: src/Common/LinuxKernel.vala:1208 +#: src/Common/LinuxKernel.vala:1209 msgid "" "This kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -139,11 +139,11 @@ msgstr "" "Це ядро наразі працює і його неможливо видалити.\n" " Встановіть інше ядро перед тим, як видалити его." -#: src/Common/Main.vala:237 +#: src/Common/Main.vala:235 msgid "Called from" msgstr "Викликано з" -#: src/Common/Main.vala:249 +#: src/Common/Main.vala:267 #, fuzzy msgid "Notifications are disabled" msgstr "Повідомлення вимкнено" @@ -153,7 +153,7 @@ msgstr "Повідомлення вимкнено" msgid "File not found: %s" msgstr "Файл не знайдено: %s" -#: src/Console/AppConsole.vala:62 src/Gtk/AppGtk.vala:154 +#: src/Console/AppConsole.vala:62 src/Gtk/AppGtk.vala:149 msgid "Syntax" msgstr "Синтаксис" @@ -211,7 +211,7 @@ msgstr "Видалити файли з кешу програми" msgid "Show unstable and RC releases" msgstr "Приховати нестабільні і реліз-кандидат версії" -#: src/Console/AppConsole.vala:79 src/Gtk/AppGtk.vala:156 +#: src/Console/AppConsole.vala:79 src/Gtk/AppGtk.vala:151 msgid "Options" msgstr "Параметри" @@ -238,65 +238,65 @@ msgid "" msgstr "" "Одна або кілька рядків версії (розділені комами), взяті з виводу --list" -#: src/Console/AppConsole.vala:166 src/Gtk/AppGtk.vala:141 +#: src/Console/AppConsole.vala:162 src/Gtk/AppGtk.vala:136 msgid "Unknown option" msgstr "Невідомий параметр" -#: src/Console/AppConsole.vala:168 src/Console/AppConsole.vala:260 -#: src/Console/AppConsole.vala:288 +#: src/Console/AppConsole.vala:164 src/Console/AppConsole.vala:256 +#: src/Console/AppConsole.vala:284 #, fuzzy msgid "Run" msgstr "Запуск" -#: src/Console/AppConsole.vala:168 +#: src/Console/AppConsole.vala:164 #, fuzzy msgid "to list all options" msgstr "Показати усі параметри" -#: src/Console/AppConsole.vala:233 src/Console/AppConsole.vala:268 +#: src/Console/AppConsole.vala:229 src/Console/AppConsole.vala:264 msgid "No kernels specified" msgstr "Ядра не вказані" -#: src/Console/AppConsole.vala:239 +#: src/Console/AppConsole.vala:235 msgid "Multiple kernels selected for installation. Select only one." msgstr "Для встановлення вибрано кілька ядер. Виберіть лише одну." -#: src/Console/AppConsole.vala:257 src/Gtk/MainWindow.vala:100 +#: src/Console/AppConsole.vala:253 src/Gtk/MainWindow.vala:100 msgid "Could not find requested version" msgstr "Не вдалося знайти запитувану версію" -#: src/Console/AppConsole.vala:260 +#: src/Console/AppConsole.vala:256 msgid "and use a version string listed in first column" msgstr "і використовувати рядок версій, вказаний у першому стовпці" -#: src/Console/AppConsole.vala:287 +#: src/Console/AppConsole.vala:283 msgid "Command not specified" msgstr "Команда не вказана" -#: src/Console/AppConsole.vala:288 +#: src/Console/AppConsole.vala:284 #, fuzzy msgid "to list all commands" msgstr "Показати усі параметри" -#: src/Console/AppConsole.vala:349 +#: src/Console/AppConsole.vala:347 msgid "Show" msgstr "Показати" -#: src/Console/AppConsole.vala:354 src/Console/AppConsole.vala:373 +#: src/Console/AppConsole.vala:352 src/Console/AppConsole.vala:364 #, fuzzy, c-format msgid "Kernel %s Available" msgstr "Доступні пакети" -#: src/Console/AppConsole.vala:356 src/Console/AppConsole.vala:375 +#: src/Console/AppConsole.vala:354 src/Console/AppConsole.vala:366 #: src/Gtk/MainWindow.vala:330 msgid "Install" msgstr "Встановити" -#: src/Gtk/AppGtk.vala:158 +#: src/Gtk/AppGtk.vala:153 msgid "Print debug information" msgstr "Роздрукувати зневадження" -#: src/Gtk/AppGtk.vala:159 +#: src/Gtk/AppGtk.vala:154 msgid "Show all options" msgstr "Показати усі параметри" @@ -358,7 +358,7 @@ msgstr "Чистити" msgid "Changes" msgstr "Зміни" -#: src/Gtk/MainWindow.vala:435 src/Gtk/SettingsDialog.vala:51 +#: src/Gtk/MainWindow.vala:435 src/Gtk/SettingsDialog.vala:50 msgid "Settings" msgstr "Налаштування" @@ -404,76 +404,72 @@ msgstr "Встановлено" msgid "Cancel" msgstr "Відміна" -#: src/Gtk/SettingsDialog.vala:61 +#: src/Gtk/SettingsDialog.vala:60 msgid "Notification" msgstr "Повідомлення" -#: src/Gtk/SettingsDialog.vala:68 +#: src/Gtk/SettingsDialog.vala:67 msgid "Notify if a major release is available" msgstr "Повідомити, чи доступний великий випуск" -#: src/Gtk/SettingsDialog.vala:79 +#: src/Gtk/SettingsDialog.vala:78 msgid "Notify if a point release is available" msgstr "Повідомити, чи доступний невеликий випуск" -#: src/Gtk/SettingsDialog.vala:90 -msgid "Show notification bubble on desktop" -msgstr "Показувати вікно сповіщень на робочому столі" - -#: src/Gtk/SettingsDialog.vala:101 +#: src/Gtk/SettingsDialog.vala:89 msgid "(Allowing intervals in seconds for --debug)" msgstr "(Дозволити інтервали в секундах для --debug)" -#: src/Gtk/SettingsDialog.vala:111 +#: src/Gtk/SettingsDialog.vala:112 msgid "Check every" msgstr "Перевіряти кожні" -#: src/Gtk/SettingsDialog.vala:144 +#: src/Gtk/SettingsDialog.vala:143 msgid "Hour(s)" msgstr "Година(Годин)" -#: src/Gtk/SettingsDialog.vala:146 +#: src/Gtk/SettingsDialog.vala:145 msgid "Day(s)" msgstr "День(Днів)" -#: src/Gtk/SettingsDialog.vala:148 +#: src/Gtk/SettingsDialog.vala:147 msgid "Week(s)" msgstr "Тиждень(ні)" -#: src/Gtk/SettingsDialog.vala:151 +#: src/Gtk/SettingsDialog.vala:150 #, fuzzy msgid "Second(s)" msgstr "Секунда(и)" -#: src/Gtk/SettingsDialog.vala:157 +#: src/Gtk/SettingsDialog.vala:156 msgid "Display" msgstr "Показ" -#: src/Gtk/SettingsDialog.vala:165 +#: src/Gtk/SettingsDialog.vala:164 msgid "Hide unstable and RC releases" msgstr "Приховати нестабільні і реліз-кандидат версії" -#: src/Gtk/SettingsDialog.vala:179 +#: src/Gtk/SettingsDialog.vala:178 msgid "Show N previous major versions " msgstr "Показати N попередніх основних версій" -#: src/Gtk/SettingsDialog.vala:194 +#: src/Gtk/SettingsDialog.vala:193 msgid "Other" msgstr "Інший" -#: src/Gtk/SettingsDialog.vala:202 +#: src/Gtk/SettingsDialog.vala:201 msgid "Skip internet connection check" msgstr "Пропустити перевірку підключення до Інтернету" -#: src/Gtk/SettingsDialog.vala:215 +#: src/Gtk/SettingsDialog.vala:214 msgid "Internet connection timeout in " msgstr "Час очікування підключення до Інтернету в " -#: src/Gtk/SettingsDialog.vala:230 +#: src/Gtk/SettingsDialog.vala:229 msgid "seconds" msgstr "секунди" -#: src/Gtk/SettingsDialog.vala:237 +#: src/Gtk/SettingsDialog.vala:236 msgid "Max concurrent downloads" msgstr "" diff --git a/src/Common/LinuxKernel.vala b/src/Common/LinuxKernel.vala index bffca4fa..4f6d0e02 100644 --- a/src/Common/LinuxKernel.vala +++ b/src/Common/LinuxKernel.vala @@ -638,8 +638,9 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { query(true); - // already done in query() -> query_tread() ? + // already done in query() -> query_thread() ? //check_updates("install_latest()"); + //check_updates(); var kern_major = LinuxKernel.kernel_update_major; diff --git a/src/Common/Main.vala b/src/Common/Main.vala index 9029ea31..368e9069 100644 --- a/src/Common/Main.vala +++ b/src/Common/Main.vala @@ -76,7 +76,6 @@ public class Main : GLib.Object{ public bool notify_major = true; public bool notify_minor = true; - public bool notify_bubble = true; public int notify_interval_unit = 0; public int notify_interval_value = 2; public int connect_timeout_seconds = 15; @@ -118,7 +117,7 @@ public class Main : GLib.Object{ STARTUP_SCRIPT_FILE = APP_CONF_DIR + "/notify.sh"; STARTUP_DESKTOP_FILE = user_home + "/.config/autostart/" + BRANDING_SHORTNAME + ".desktop"; NOTIFICATION_ID_FILE = APP_CONF_DIR + "/notification_id"; - NOTIFICATION_SEEN_FILE = APP_CONF_DIR + "/seen"; + NOTIFICATION_SEEN_FILE = APP_CONF_DIR + "/notification_seen"; LinuxKernel.CACHE_DIR = user_home + "/.cache/" + BRANDING_SHORTNAME; LinuxKernel.CURRENT_USER = user_login; @@ -132,7 +131,6 @@ public class Main : GLib.Object{ var config = new Json.Object(); config.set_string_member("notify_major", notify_major.to_string()); config.set_string_member("notify_minor", notify_minor.to_string()); - config.set_string_member("notify_bubble", notify_bubble.to_string()); config.set_string_member("hide_unstable", LinuxKernel.hide_unstable.to_string()); config.set_string_member("show_prev_majors", LinuxKernel.show_prev_majors.to_string()); config.set_string_member("notify_interval_unit", notify_interval_unit.to_string()); @@ -188,7 +186,6 @@ public class Main : GLib.Object{ notify_major = json_get_bool(config, "notify_major", true); notify_minor = json_get_bool(config, "notify_minor", true); - notify_bubble = json_get_bool(config, "notify_bubble", true); notify_interval_unit = json_get_int(config, "notify_interval_unit", 0); notify_interval_value = json_get_int(config, "notify_interval_value", 2); connect_timeout_seconds = json_get_int(config, "connect_timeout_seconds", 15); @@ -202,7 +199,7 @@ public class Main : GLib.Object{ } public void exit_app(int exit_code){ - save_app_config(); + // save_app_config(); exit(exit_code); } @@ -232,18 +229,39 @@ public class Main : GLib.Object{ file_delete(STARTUP_SCRIPT_FILE); - // see OSDNotify.vala notify-send.sh -R - string s = - "# " +_("Called from") + " " + STARTUP_DESKTOP_FILE + "\n" - + "rm -f " + NOTIFICATION_ID_FILE + "\n" - + "rm -f " + NOTIFICATION_SEEN_FILE + "\n"; - + // TODO, ID file should not assume single DISPLAY + // ID and SEEN should probably be in /var/run ? + string s = "#!/bin/bash\n" + + "# " +_("Called from")+" "+STARTUP_DESKTOP_FILE+" at logon.\n" + + "# This file is over-written and executed again whenever settings are saved in "+BRANDING_SHORTNAME+"-gtk\n" + + "[[ \"${1}\" = \"--new-session\" ]] && rm -f "+NOTIFICATION_ID_FILE+" "+NOTIFICATION_SEEN_FILE+"\n" + + "F=\"/tmp/"+BRANDING_SHORTNAME+"-notify-loop.${$}.p\"\n" + + "trap \"rm -f ${F}\" 0\n" + //+ "trap \"exit\" 1 2 3 4 5 6 7 8 10 11 12 13 14 15\n" + + "echo -n \"${DISPLAY} ${$}\" > ${F}\n" + + "typeset -i p\n" + + "shopt -s extglob\n" + + "\n" + + "# clear previous state (kill previous instance)\n" + + "for f in /tmp/"+BRANDING_SHORTNAME+"-notify-loop.+([0-9]).p ;do\n" + + "\t[[ -s \"${f}\" ]] || continue\n" + + "\t[[ ${f} -ot ${F} ]] || continue\n" + + "\tread d p x < ${f}\n" + + "\t[[ \"${d}\" == \"${DISPLAY}\" ]] || continue\n" + + "\t[[ ${p} -gt 0 ]] || continue\n" + + "\trm -f ${f}\n" + + "\tkill ${p}\n" + + "done\n" + + "unset F f p d x\n" + + "\n" + + "# run current state\n"; if (notify_minor || notify_major){ - s += "while : ;do\n" - + BRANDING_SHORTNAME+" --notify"; + s += "while gdbus call --session --dest org.freedesktop.DBus --object-path /org/freedesktop/DBus --method org.freedesktop.DBus.GetId 2>&- >&- ;do\n" + + "\t"+BRANDING_SHORTNAME+" --notify"; if (LOG_DEBUG) s += " --debug"; s += "\n" - + "sleep %d%s\n".printf(count,suffix) + + "\tsleep %d%s &\n".printf(count,suffix) + + "\twait $!\n" // respond to signals during sleep + "done\n"; } else { s += "# " + _("Notifications are disabled") + "\n" @@ -251,7 +269,7 @@ public class Main : GLib.Object{ } file_write(STARTUP_SCRIPT_FILE,s); - + exec_async("bash "+STARTUP_SCRIPT_FILE); } private void update_startup_desktop_file(){ @@ -259,12 +277,12 @@ public class Main : GLib.Object{ string txt = "[Desktop Entry]\n" + "Type=Application\n" - + "Exec=sh \"" + STARTUP_SCRIPT_FILE + "\"\n" + + "Exec=bash \""+STARTUP_SCRIPT_FILE+"\" --new-session\n" + "Hidden=false\n" + "NoDisplay=false\n" + "X-GNOME-Autostart-enabled=true\n" - + "Name=" + BRANDING_SHORTNAME + " notification\n" - + "Comment=" + BRANDING_SHORTNAME + " notification\n"; + + "Name="+BRANDING_SHORTNAME+" notification\n" + + "Comment="+BRANDING_SHORTNAME+" notification\n"; file_write(STARTUP_DESKTOP_FILE, txt); diff --git a/src/Common/OSDNotify.vala b/src/Common/OSDNotify.vala index 97985881..8da609c1 100644 --- a/src/Common/OSDNotify.vala +++ b/src/Common/OSDNotify.vala @@ -71,16 +71,4 @@ public class OSDNotify : GLib.Object { return retVal; } - // closes a previously sent notification - // modified version of notify-send.sh - // to let -s option get ID from -R file - public static void notify_close () { - string s = - APP_LIB_DIR+"/notify_send/notify-send.sh" - + " -R "+App.NOTIFICATION_ID_FILE - + " -s"; - log_debug (s); - exec_async (s); - } - } diff --git a/src/Console/AppConsole.vala b/src/Console/AppConsole.vala index a6b731e4..9d8e7181 100644 --- a/src/Console/AppConsole.vala +++ b/src/Console/AppConsole.vala @@ -118,10 +118,6 @@ public class AppConsole : GLib.Object { App.confirm = false; break; - case "--close-notification": - OSDNotify.notify_close(); - break; - case "--user": if (++k < args.length){ string custom_user_login = args[k]; @@ -298,8 +294,9 @@ public class AppConsole : GLib.Object { LinuxKernel.query(true); - // already done in query() -> query_thread() - // LinuxKernel.check_updates("print_updates()"); + // already done in query() -> query_thread() ? + //LinuxKernel.check_updates("print_updates()"); + //LinuxKernel.check_updates(); var kern_major = LinuxKernel.kernel_update_major; @@ -328,39 +325,33 @@ public class AppConsole : GLib.Object { LinuxKernel.query(true); - // already done in query() -> query_thread() + // already done in query() -> query_thread() ? //LinuxKernel.check_updates("notify_user()"); + //LinuxKernel.check_updates(); string seen = ""; if (file_exists(App.NOTIFICATION_SEEN_FILE)) seen = file_read(App.NOTIFICATION_SEEN_FILE).strip(); log_msg("seen:\""+seen+"\""); string debug_action = ""; - string close_action = ""; + string close_action = ""; // command to run when user closes notification instead of pressing any action button string body = ""; var alist = new Gee.ArrayList (); // notification action buttons: "buttonlabel:command line to run" - if (App.notify_bubble) { + if (App.notify_major || App.notify_minor) { if (LOG_DEBUG) { debug_action = APP_LIB_DIR+"/notify-action-debug.sh"; body = debug_action; debug_action += " "; } - alist.add(_("Show")+":"+debug_action+BRANDING_SHORTNAME+"-gtk --close-notification"); + alist.add(_("Show")+":"+debug_action+BRANDING_SHORTNAME+"-gtk"); } var kern = LinuxKernel.kernel_update_major; if (App.notify_major && (kern!=null) && (seen!=kern.version_main)){ var title = _("Kernel %s Available").printf(kern.version_main); - if (App.notify_bubble){ - alist.add(_("Install")+":"+debug_action+BRANDING_SHORTNAME+"-gtk --close-notification --install "+kern.version_main); - // close_action is working, as far as it goes. The command is executed when the user closes the notification. - // But it doesn't run when the user presses one of the action buttons. - // To handle the action buttons, we'd need to pass the kernel version along as a new commandline arg - // so that "--close-notification" could write the "seen" file. - // All that is unecessarily complicated. It's good enough to just write the seen file right here - // when we send the notification in the first place. Then we don't need any close_action. - //close_action = "echo "+kern.version_main+" >"+App.NOTIFICATION_SEEN_FILE; + if (App.notify_major || App.notify_minor){ + alist.add(_("Install")+":"+debug_action+BRANDING_SHORTNAME+"-gtk --install "+kern.version_main); file_write(App.NOTIFICATION_SEEN_FILE,kern.version_main); OSDNotify.notify_send(title,body,alist,close_action); } @@ -371,9 +362,8 @@ public class AppConsole : GLib.Object { kern = LinuxKernel.kernel_update_minor; if (App.notify_minor && (kern!=null) && (seen!=kern.version_main)){ var title = _("Kernel %s Available").printf(kern.version_main); - if (App.notify_bubble) { - alist.add(_("Install")+":"+debug_action+BRANDING_SHORTNAME+"-gtk --close-notification --install "+kern.version_main); - //close_action = "echo "+kern.version_main+" >"+App.NOTIFICATION_SEEN_FILE; + if (App.notify_major || App.notify_minor) { + alist.add(_("Install")+":"+debug_action+BRANDING_SHORTNAME+"-gtk --install "+kern.version_main); file_write(App.NOTIFICATION_SEEN_FILE,kern.version_main); OSDNotify.notify_send(title,body,alist,close_action); } diff --git a/src/Gtk/AppGtk.vala b/src/Gtk/AppGtk.vala index 2ecea4f0..40c96fb2 100644 --- a/src/Gtk/AppGtk.vala +++ b/src/Gtk/AppGtk.vala @@ -70,7 +70,7 @@ public class AppGtk : GLib.Object { Gtk.main(); - App.save_app_config(); + //App.save_app_config(); return 0; } @@ -95,10 +95,6 @@ public class AppGtk : GLib.Object { LOG_DEBUG = true; break; - case "--close-notification": - OSDNotify.notify_close(); - break; - case "--help": case "--h": case "-h": @@ -125,7 +121,6 @@ public class AppGtk : GLib.Object { case "--h": case "-h": case "--debug": - case "--close-notification": // already handled - do nothing break; diff --git a/src/Gtk/SettingsDialog.vala b/src/Gtk/SettingsDialog.vala index c44acbe5..e4617bac 100644 --- a/src/Gtk/SettingsDialog.vala +++ b/src/Gtk/SettingsDialog.vala @@ -36,7 +36,6 @@ public class SettingsDialog : Gtk.Dialog { private Gtk.CheckButton chk_notify_major; private Gtk.CheckButton chk_notify_minor; - private Gtk.CheckButton chk_notify_bubble; private Gtk.CheckButton chk_hide_unstable; public SettingsDialog.with_parent(Window parent) { @@ -63,7 +62,7 @@ public class SettingsDialog : Gtk.Dialog { label.xalign = (float) 0.0; label.margin_bottom = 6; vbox_main.add (label); - + // chk_notify_major var chk = new Gtk.CheckButton.with_label(_("Notify if a major release is available")); chk.active = App.notify_major; @@ -86,17 +85,6 @@ public class SettingsDialog : Gtk.Dialog { App.notify_minor = chk_notify_minor.active; }); - // show bubble - chk = new Gtk.CheckButton.with_label(_("Show notification bubble on desktop")); - chk.active = App.notify_bubble; - chk.margin_start = 6; - vbox_main.add(chk); - chk_notify_bubble = chk; - - chk.toggled.connect(()=>{ - App.notify_bubble = chk_notify_bubble.active; - }); - if (LOG_DEBUG) { label = new Label(_("(Allowing intervals in seconds for --debug)")); label.xalign = (float) 0.0; @@ -105,6 +93,19 @@ public class SettingsDialog : Gtk.Dialog { } // notification interval + + // replace invalid debug-only values with valid values + int max_intervals = 52; + if (LOG_DEBUG) { + // debug allows seconds, so allow up to 1 hour of seconds + max_intervals = 3600; + } else { + if (App.notify_interval_unit == 3) { + App.notify_interval_value = 1; + App.notify_interval_unit = 0; + } + } + var hbox = new Gtk.Box(Orientation.HORIZONTAL, 6); vbox_main.add (hbox); @@ -113,14 +114,12 @@ public class SettingsDialog : Gtk.Dialog { label.margin_start = 6; hbox.add (label); - int max_intervals = 52; - if (LOG_DEBUG) max_intervals = 3600; // allow up to 1hr in seconds var adjustment = new Gtk.Adjustment(App.notify_interval_value, 1, max_intervals, 1, 1, 0); var spin = new Gtk.SpinButton (adjustment, 1, 0); spin.xalign = (float) 0.5; hbox.add(spin); var spin_notify = spin; - + spin.changed.connect(()=>{ App.notify_interval_value = (int) spin_notify.get_value(); }); From 80c4d6211cdf8999bce8aa9fd445a07e996cb862 Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Sat, 23 May 2020 21:20:51 -0400 Subject: [PATCH 102/567] slight improvements to notify-send.sh and notify-action.sh --- lib/notify-action-debug.sh | 9 +- lib/notify_send/mainline_changes.txt | 207 +++++++++++++++++++++++++++ lib/notify_send/notify-action.sh | 87 ++++++----- lib/notify_send/notify-send.sh | 125 ++++++++-------- po/es.po | 4 +- po/fr.po | 4 +- po/hr.po | 4 +- po/messages.pot | 4 +- po/nl.po | 4 +- po/pl.po | 4 +- po/ru.po | 4 +- po/sv.po | 4 +- po/tr.po | 4 +- po/uk.po | 4 +- src/Common/Main.vala | 9 +- src/Common/OSDNotify.vala | 3 +- 16 files changed, 342 insertions(+), 138 deletions(-) create mode 100644 lib/notify_send/mainline_changes.txt diff --git a/lib/notify-action-debug.sh b/lib/notify-action-debug.sh index 85473712..d39d7652 100755 --- a/lib/notify-action-debug.sh +++ b/lib/notify-action-debug.sh @@ -1,7 +1,8 @@ #!/bin/bash printf -v DT "%(%Y%m%d%H%M%S)T_${RANDOM}" -1 LF=/tmp/.mainline_notify_action_${DT}.log -echo ${DT} > ${LF} -printf "%s %s\n" "${0}" "${@}" >> ${LF} -set >> ${LF} -${@} 2>&1 >> ${LF} +exec 2>${LF} >&2 +ARGS=(${0} ${@}) +set -x +set +${@} diff --git a/lib/notify_send/mainline_changes.txt b/lib/notify_send/mainline_changes.txt new file mode 100644 index 00000000..24da8bcf --- /dev/null +++ b/lib/notify_send/mainline_changes.txt @@ -0,0 +1,207 @@ +notify-send.sh and notify-action.sh originally came from https://github.com/vlevit/notify-send.sh + +But this version largely re-written from that. +Some changes are for efficiency, removing unnecessary dependencies, external tools, forks, etc. +Some changes are fixing or making more reliable the original functionality. +Some changes are changing the original functionality. +Some of the functionality changes would be generically useful, ie to the original project. +Some of the functionality changes are probably not desireable in general, but +it's what we need or want for use by "mainline". + +Changes to notify-send.sh + + * --force option changed to more generally mean "explicit close", whether that's + after an expire time or immediately on processing any action. This includes after + processing a NotificationClosed event, IE, send a close command even though we + just received a message that the notification was closed. Because you can get + a Closed message when a notification is merely moved to history, and then get + one *again* when it is viewed in history and the closed again. But if you actively + close it, that removes it from history too, which you want to do because the + action buttons won't work for that notification, because it's listener is gone. + + The normal functionality when en expire time > 0 is given is still the same. + + * Derive sleep time from expire time without "bc" and without $(...) + You don't need a child process and "bc" just to insert a decimal point 3 characters from the end of a string. + + * Refactor to avoid unecessary child shells. More could still be done. + There are still some sub-shells that could be replaced with + direct operations on global variables. + + * --close without ID gets ID from --replace-file + So the app code can specify the ID the same way for both creating and closing + send: notify-send.sh -R file ... + close: notify-send.sh -R file -s + Note, this was only briefly used and now we close the notification by a change in + notify-action.sh itself instead, but no reason to remove this handy behavior. + + * Fix quoting of action pairs so that -d default action, or any -o action with no label, + produces a blank button (or no button, depending on the particular behavior + of different notification daemons) insted of a button with a '' label + that looks like [ '' ] + + * Allow empty SUMMARY & BODY, treat missing as empty instead of error. + We don't use it, but it's valid and there's no reason the script should + treat it as an error. An empty notification with no title and no body + and even no icon, still has an app-name, which can possibly be be all + the information needed. + + * Typeset -i to prevent ID from ever being '', + even if given invalid or missing value via -r or -R. + + * Export APP_NAME to notify-action.sh child process. + This allows to avoid hard-coding the name "mainline" into either + script, and yet the notifications still say "mainline" + and the temp files still say "mainline", yet the same scripts still + work on their own outside of mainline too. + + * "setsid" to free ourself from the action handler process, so that + we can exit and leave one less unneccessary background process + waiting around the whole time the dbus monitor process is waiting for + a button press or notification-closed event which may never come. + + * Prevent child process from spamming the terminal. This just clears up + a harmless cosmetic glitch that made it *look* like the process had hung + and never returned to a new shell prompt unless you pressed "enter". + Really all it was was the background process wrote a blank line to the terminal, + clobbering the currently displayed prompt. But it's just a display thing. + The shell was still waiting for input at a prompt, you just couldn't + see the prompt. When you press enter after notify-send.sh finises, + it's just drawing a new prompt like any other time your press enter. + +=== + +Changes to notify-action.sh + +* When replacing an ID, kill any previous monitor for the same ID first. + +* Run gdbus in {} instead of (), though this seems to make no + functional difference when the {} comes before a pipe, the {} + ends up being a child process anyway. + +* Parse gdbus output without $(sed ...) + +* Close notifcation after receiving any action. + +* Robust pid file and obsolete monitor cleanup processing + +* Robust cleanup on exit + +* Refactored to use all bash built-in features + and no child processes except gdbus and the invoked action + No more sed to parse output or foo=$(command ...) to collect output etc + More use of bash features to do the job in fewer steps. + +* Use APP_NAME (if present) in place of $0 in pid filename + +* "setsid" to free ourself from the invoked action process so we can exit + +* Prevent bg processes from spamming the terminal + clears up the false impression that the command didn't end and return to a new shell prompt + +* Execute the action command directly instead of 'bash -c "command ..."' + +There is a lot to explain about the temp file and gdbus child process handling. +The two sections, "kill obsolete monitors" and "kill current monitor" +must orchestrate with each other, and with other instances of ourself. +Basically it's normal for our gdbus process to be killed from outside by another +instance of ourself, and it's likewise normal for us to have to kill other +instances of ourself. + +=== kill obsolete monitors === + +This has to orchestrate with the "kill current monitor" section. +It's not an error to find one or more old pid files, with or without matching +still-active processes. + +Notification events are not predictable, so when setting up these monitors, +you never know how long you'll wait for an event, or if an event will ever come, +or if a monitor will be killed ungracefully by a shutdown leaving a pid file behind, +or if a monitor will be left running after the user logs out of the desktop session +but doesn't reboot, and then logs in again... It's also possible to get +a NotificationClosed event *more than once* for the same notification. A lot +of this depends on the particular quirks of how various notification daemons +are written. + +For example in Lubuntu, using LXQT desktop, lxqt-notificationd sends a +NotificationClosed when it expires a notification to it's history, and then +it sends the same event a 2nd time when the user views and closes the +notification from history. + +But it does not send a 2nd Closed message when a notification rolls off the +end of the history stack without ever being re-opened, or if the user +hits the clear-all button. + +Normally our dbus monitor would have exited when it got the first +NotificationClosed, and so it's no longer around to respond to more button +presses from the same notification viewed from history. That's annoying +bad ux. So this version adds to the --force option, to always send a +close command after processing any action, even a close, even when +no expire time given or when expire time is explicitly set to 0, aside from the +delayed close sent when there is an expire time given. That causes +the notification to be removed from history in case it was there. +Then there is never a non-working button. Either a notification is new and +and has a monitor watching for events from it, or it's gone. + +And the -r and -R options for sending a new notification to update/replace an +existing notification means that often, one or more of these existing monitor processes +is now "obsolete" because we are replacing it. But they have no way to know that. +They will never end gracefully on their own, because they are waiting +for something that never came, and now never will come (a dbus event matching +either a button press or a notification-close for the notification ID they are watching). +So before starting the new/current monitor, we need to find any obsolete monitors, +and/or just their left over tmp files, and clean up whatever we find. + +"Obsolete" is defined as matching all of the following criteria: + +* Pid file with the same APP_NAME already exists + +* Older than ourself + Just use [[ file -ot file ]] to compare relative ages to get a proper + comparison even for sub-second differences, without needing to record and compare + timestamps and without needing to spwan a child just to run "date" just to + get sub-second times which you can't get from bash's built-in printf %()T + +* From the same desktop session + DISPLAY from pid file is same as ours + This avoids clobbering another session. IE, say you have multiple + desktop sessions on multiple virtual consoles, or remote desktop sessions. + They will each have different DISPLAY values. So if we record that in the pid file + we can safely tell whether it's OK to consider killing the PID. + +* Watching the same notification ID we are about to watch. + +If all of those are true at the same time for a given PID, +then that's a monitor we should kill because we are it's replacement. + +And when we kill it, remove the pid file *before* killing the PID. + +The pid is for a child gdbus process, not it's parent notify-action.sh bash process. + +When we kill it, it's parent notify-action.sh breaks out of it's +"while loop" and proceeds to try to do it's own clean-up. +But we have already killed the PID that it would normally expect to kill. +So here, remove the pid file before killing, so that the related +notify-action.sh can't pick up the same PID and try to kill it after it's +already been freed and might already belong to some other process. + +The first [[ -s file ]] catches the case when the globbing pattern +didn't match any files and the variable contains the globbing pattern itself. + +=== kill current monitor === + +This has to orchestrate with the "kill obsolete monitors" section. +Not an error if the pid file is already missing. + +IE: While we have been waiting for a dbus event which never came, +another new instance of ourself may have started up, found our +pid file, and killed our gdbus child process. When that happens, +the while loop above ends and we fall through to here, +and the pid file we wrote will be missing. This is intentional. +When the gdbus process is killed, the PID we wrote into the pid file +is no longer valid and we should NOT just indiscriminately +try to kill that PID any more, because some other random +unrelated process may now occupy that PID. So during "kill obsolete", +we remove the pid file before killing the pid, so that it's impossible +to pick up an invalid PID here. So here, if the file doesn't exist, +just exit without error. diff --git a/lib/notify_send/notify-action.sh b/lib/notify_send/notify-action.sh index f4fedbcd..86823ba5 100755 --- a/lib/notify_send/notify-action.sh +++ b/lib/notify_send/notify-action.sh @@ -1,26 +1,20 @@ #!/bin/bash - -### 20200520 b.kenyon.w@gmail.com -# This is completely re-written for https://github.com/bkw777/mainline -# -# * If REPLACE_ID then find the PID of any previous monitor for the same NOTIFICATION_ID -# and kill that process and replace it, rather than add more and more monitor processes. -# * Run gdbus in {} instead of () -# * Parse gdbus output without $(sed ...) -# * Close notifcation after receiving any action. -# * Robust pid file and old-job processing -# * Robust cleanup on exit -# * Vastly refactored to use all bash built-in features -# and no child processes except gdbus and the invoked actions -# no more sed to parse output or foo=$(command ...) to collect output etc -# * Use APP_NAME (if present) in place of $0 in pid filename -# * setsid to free ourself from the invoved action process +# 20200520 b.kenyon.w@gmail.com +# This is a complete re-write & replacement of notify-action.sh from +# https://github.com/vlevit/notify-send.sh +# for https://github.com/bkw777/mainline +# See mainline_changes.txt before changing "kill obsolete" or "kill current" NOTIFY_SEND=${0%/*}/notify-send.sh GDBUS_ARGS=(monitor --session --dest org.freedesktop.Notifications --object-path /org/freedesktop/Notifications) SELF=${0##*/} GDBUS_PIDF=/tmp/${APP_NAME:=${SELF}}.${$}.p +${DEBUG_NOTIFY_SEND:=false} && { + exec 2>/tmp/.${SELF}.${$}.e + set -x +} + set +H shopt -s extglob @@ -28,49 +22,54 @@ abrt () { echo "${0}: ${@}" >&2 ; exit 1 ; } # consume the command line typeset -i ID="${1}" ;shift -[[ ${ID} -gt 0 ]] || abrt "no notification id" -declare -A a ;while [[ "${1}" ]] ;do a[${1}]=${2} ;shift 2 ;done -[[ ${#a[@]} -gt 0 ]] || abrt "no actions" +((${ID}>0)) || abrt "no notification id" +declare -A a ;while ((${#})) ;do a[${1}]=${2} ;shift 2 ;done +((${#a[@]})) || abrt "no actions" [[ "${DISPLAY}" ]] || abrt "no DISPLAY" typeset -i i=0 p=0 -# start the pid file, no PID or linefeed yet +# only starting the pid file, no PID or linefeed yet echo -n "${DISPLAY} ${ID} " > ${GDBUS_PIDF} -# kill any duplicate jobs older than ourself +# kill obsolete monitors for f in /tmp/${APP_NAME}.+([0-9]).p ;do [[ -s "${f}" ]] || continue [[ ${f} -ot ${GDBUS_PIDF} ]] || continue - read d i p x < "${f}" + read d i p x < ${f} [[ "${d}" == "${DISPLAY}" ]] || continue - [[ ${i} == ${ID} ]] || continue - [[ ${p} -gt 0 ]] || continue - rm -f "${f}" + ((${i}==${ID})) || continue + ((${p}>1)) || continue + rm -f ${f} kill ${p} done -# start the dbus monitor +# set trap to kill the monitor on exit +trap "conclude" 0 +conclude () { + [[ -s ${GDBUS_PIDF} ]] || exit 0 + read d i p x < ${GDBUS_PIDF} + rm -f ${GDBUS_PIDF} + ((${p}>1)) || exit 0 + kill ${p} + exit 0 +} + +# execute an invoked command +doit () { + setsid -f ${a[${1}]} >&- 2>&- <&- & + ${EXPLICIT_CLOSE:-false} && "${NOTIFY_SEND}" -s ${ID} +} + +# start current monitor { - gdbus ${GDBUS_ARGS[@]} & echo "${!}" >> ${GDBUS_PIDF} -} |while IFS+=":.()," read x x x x e x i k x ;do - [[ ${i} == ${ID} ]] || continue - k=${k:1} k=${k:0:-1} + gdbus ${GDBUS_ARGS[@]} & echo ${!} >> ${GDBUS_PIDF} +} |while IFS=" :.(),'" read x x x x e x i x k x ;do + ((${i}==${ID})) || continue case "${e}" in - "NotificationClosed") k="close" ;; - "ActionInvoked") "${NOTIFY_SEND}" -s ${ID} ;; + "NotificationClosed") doit "close" ;; + "ActionInvoked") doit "${k}" ;; esac - setsid -f bash -c "${a[${k}]}" >/dev/null 2>&1 & break done -# kill the dbus monitor -# Our gdbus process might be killed by a new instance of ourself (see above) -# while we wait forever for a dbus event that never came. So here, don't treat -# a missing file as an alarming error. Above, we will delete the file before we -# kill the gdbus process so that here, we can't end up trying to kill a random -# unrelated new process that happened to get the same PID after it was freed. -[[ -s ${GDBUS_PIDF} ]] || exit -read d i p x < ${GDBUS_PIDF} -rm -f ${GDBUS_PIDF} -[[ ${p} -gt 0 ]] || exit -kill ${p} +${DEBUG_NOTIFY_SEND} && set >&2 diff --git a/lib/notify_send/notify-send.sh b/lib/notify_send/notify-send.sh index 04a66b0e..63148ad1 100755 --- a/lib/notify_send/notify-send.sh +++ b/lib/notify_send/notify-send.sh @@ -3,6 +3,11 @@ # notify-send.sh - drop-in replacement for notify-send with more features # Copyright (C) 2015-2020 notify-send.sh authors (see AUTHORS file) +# 20200520 b.kenyon.w@gmail.com +# Originally from https://github.com/vlevit/notify-send.sh +# This copy is significantly re-written for https://github.com/bkw777/mainline +# See mainline_changes.txt + # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or @@ -19,39 +24,28 @@ # Desktop Notifications Specification # https://developer.gnome.org/notification-spec/ -### 20200520 b.kenyon.w@gmail.com -### This copy is significantly modified for https://github.com/bkw777/mainline -### The associated notifty-action.sh is completely re-written -# -# * If expire time is 0, then ignore --force and don't try to calculate sleep time (divide by 0) -# * Derive sleep time from expire time without "bc" and without $(...) -# * Refactor to avoid unecessary child shells (still more could be done) -# * --close without ID gets ID from --replace-file -# * Fix quoting of action pairs so that -d default action, or any -o action with no label, -# produces a blank button insted of a button with '' -# * Allow empty SUMMARY & BODY, treat missing as empty instead of error -# * Typeset -i to prevent ID from ever being '', -# even if --replace-file is bad. -# * Export APP_NAME to notify-action.sh child process -# * setsid to free ourself from the action handler process - SELF=${0##*/} VERSION="1.1-mainline" ACTION_HANDLER=${0%/*}/notify-action.sh +${DEBUG_NOTIFY_SEND:=false} && { + exec 2>/tmp/.${SELF}.${$}.e + set -x +} + NOTIFY_ARGS=(--session --dest org.freedesktop.Notifications --object-path /org/freedesktop/Notifications) -typeset -i EXPIRE_TIME=-1 -typeset -i ID=0 +typeset -i i=0 ID=0 EXPIRE_TIME=-1 URGENCY=1 HINTS=() APP_NAME=${SELF} PRINT_ID=false -FORCE_EXPIRE=false +EXPLICIT_CLOSE=false unset ID_FILE positional=false SUMMARY_SET=false SUMMARY="" BODY="" +set +H help() { cat <" } concat_actions () { - local r=${1} ;shift - while [[ "${1}" ]] ;do r+=",${1}" ;shift ;done - echo "[${r}]" + local s=${1} ;shift + while ((${#})) ;do s+=",${1}" ;shift ;done + echo "[${s}]" } concat_hints () { - local r=${1} ;shift - while [[ "${1}" ]] ;do r+=",${1}" ;shift ;done - echo "{${r}}" + local s=${1} ;shift + while ((${#})) ;do s+=",${1}" ;shift ;done + echo "{${s}}" } notify_close () { + typeset -i i="${2}" + ((${i}>0)) && sleep ${i:0:-3}.${i:$((${#i}-3))} gdbus call ${NOTIFY_ARGS[@]} --method org.freedesktop.Notifications.CloseNotification "${1}" >&- } @@ -138,7 +134,7 @@ process_hint () { t=${a[0]} n=${a[1]} c=${a[2]} [[ "${n}" ]] && [[ "${c}" ]] || abrt "Invalid hint syntax specified. Use TYPE:NAME:VALUE." h="$(make_hint "${t}" "${n}" "${c}")" - [[ $? = 0 ]] || abrt "Invalid hint type \"${t}\". Valid types are int, double, string and byte." + ((${?})) && abrt "Invalid hint type \"${t}\". Valid types are int, double, string and byte." HINTS+=("${h}") } @@ -153,7 +149,7 @@ process_action () { } process_special_action () { - local k="${1}" c="${2}" + local k=${1} c=${2} [[ "${c}" ]] || abrt "Command must not be empty" ACTION_COMMANDS+=("${k}" "${c}") [[ "${k}" != "close" ]] && ACTIONS+=("\"${k}\",\"\"") @@ -164,7 +160,8 @@ process_posargs () { ${SUMMARY_SET} && BODY=${1} || SUMMARY=${1} SUMMARY_SET=true } -while (( ${#} > 0 )) ; do +while ((${#})) ; do + s= i=0 case "${1}" in -\?|--help) help @@ -175,42 +172,41 @@ while (( ${#} > 0 )) ; do exit 0 ;; -u|--urgency|--urgency=*) - [[ "${1}" = --urgency=* ]] && urgency="${1#*=}" || { shift; urgency="${1}"; } - process_urgency "${urgency}" + [[ "${1}" = --urgency=* ]] && s=${1#*=} || { shift ;s=${1} ; } + process_urgency "${s}" ;; -t|--expire-time|--expire-time=*) - [[ "${1}" = --expire-time=* ]] && EXPIRE_TIME="${1#*=}" || { shift; EXPIRE_TIME="${1}"; } - [[ "${EXPIRE_TIME}" =~ ^-?[0-9]+$ ]] || abrt "Invalid expire time: ${EXPIRE_TIME}" + [[ "${1}" = --expire-time=* ]] && EXPIRE_TIME=${1#*=} || { shift ;EXPIRE_TIME=${1} ; } ;; -f|--force-expire) - FORCE_EXPIRE=true + export EXPLICIT_CLOSE=true # only export if explicitly set ;; -a|--app-name|--app-name=*) - [[ "${1}" = --app-name=* ]] && APP_NAME="${1#*=}" || { shift; APP_NAME="${1}"; } - export APP_NAME + [[ "${1}" = --app-name=* ]] && APP_NAME=${1#*=} || { shift ;APP_NAME=${1} ; } + export APP_NAME # only export if explicitly set ;; -i|--icon|--icon=*) - [[ "${1}" = --icon=* ]] && ICON="${1#*=}" || { shift; ICON="${1}"; } + [[ "${1}" = --icon=* ]] && ICON=${1#*=} || { shift ;ICON=${1} ; } ;; -c|--category|--category=*) - [[ "${1}" = --category=* ]] && category="${1#*=}" || { shift; category="${1}"; } - process_category "${category}" + [[ "${1}" = --category=* ]] && s=${1#*=} || { shift ;s=${1} ; } + process_category "${s}" ;; -h|--hint|--hint=*) - [[ "${1}" = --hint=* ]] && hint="${1#*=}" || { shift; hint="${1}"; } - process_hint "${hint}" + [[ "${1}" = --hint=* ]] && s=${1#*=} || { shift ;s=${1} ; } + process_hint "${s}" ;; -o | --action | --action=*) - [[ "${1}" == --action=* ]] && action="${1#*=}" || { shift; action="${1}"; } - process_action "${action}" + [[ "${1}" == --action=* ]] && s=${1#*=} || { shift ;s=${1} ; } + process_action "${s}" ;; -d | --default-action | --default-action=*) - [[ "${1}" == --default-action=* ]] && default_action="${1#*=}" || { shift; default_action="${1}"; } - process_special_action default "${default_action}" + [[ "${1}" == --default-action=* ]] && s=${1#*=} || { shift ;s=${1} ; } + process_special_action default "${s}" ;; -l | --close-action | --close-action=*) - [[ "${1}" == --close-action=* ]] && close_action="${1#*=}" || { shift; close_action="${1}"; } - process_special_action close "${close_action}" + [[ "${1}" == --close-action=* ]] && s=${1#*=} || { shift ;s=${1} ; } + process_special_action close "${s}" ;; -p|--print-id) PRINT_ID=true @@ -219,15 +215,14 @@ while (( ${#} > 0 )) ; do [[ "${1}" = --replace=* ]] && ID=${1#*=} || { shift ;ID=${1} ; } ;; -R|--replace-file|--replace-file=*) - [[ "${1}" = --replace-file=* ]] && filename="${1#*=}" || { shift; filename="${1}"; } - [[ -s "${filename}" ]] && read ID < "${filename}" - ID_FILE=${filename} + [[ "${1}" = --replace-file=* ]] && ID_FILE=${1#*=} || { shift ;ID_FILE=${1} ; } + [[ -s "${ID_FILE}" ]] && read ID < "${ID_FILE}" ;; -s|--close|--close=*) - [[ "${1}" = --close=* ]] && close_id="${1#*=}" || { shift; close_id="${1}"; } - case "${close_id}" in ""|R|replace-file) [[ ${ID} -gt 0 ]] && close_id=${ID} ;; esac - notify_close "${close_id}" - exit $? + [[ "${1}" = --close=* ]] && i=${1#*=} || { shift ;i=${1} ; } + ((${i}<1)) && ((${ID}>0)) && i=${ID} + ((${i}>0)) && notify_close ${i} ${EXPIRE_TIME} + exit ${?} ;; --) positional=true @@ -246,20 +241,22 @@ hints="$(concat_hints "${HINTS[@]}")" typeset -i OLD_ID=${ID} NEW_ID=0 # send the dbus message, collect the notification ID -NEW_ID=$(gdbus call ${NOTIFY_ARGS[@]} \ +s=$(gdbus call ${NOTIFY_ARGS[@]} \ --method org.freedesktop.Notifications.Notify \ - "${APP_NAME}" "${ID}" "${ICON}" "${SUMMARY}" "${BODY}" \ - "${actions}" "${hints}" "int32 ${EXPIRE_TIME}" \ - |sed 's/(uint32 \([0-9]\+\),)/\1/g' ) + "${APP_NAME}" ${ID} "${ICON}" "${SUMMARY}" "${BODY}" \ + "${actions}" "${hints}" "int32 ${EXPIRE_TIME}") # process the ID -[[ ${NEW_ID} -gt 0 ]] || abrt "invalid notification ID from gdbus" -[[ ${OLD_ID} = 0 ]] && ID=${NEW_ID} -[[ "${ID_FILE}" ]] && [[ ${OLD_ID} = 0 ]] && echo ${ID} > "${ID_FILE}" +s=${s%,*} NEW_ID=${s#* } +((${NEW_ID}>0)) || abrt "invalid notification ID from gdbus" +((${OLD_ID}>0)) || ID=${NEW_ID} +[[ "${ID_FILE}" ]] && ((${OLD_ID}<1)) && echo ${ID} > "${ID_FILE}" ${PRINT_ID} && echo ${ID} # launch the action handler -[[ ${#ACTION_COMMANDS[@]} -gt 0 ]] && setsid -f "${ACTION_HANDLER}" "${ID}" "${ACTION_COMMANDS[@]}" >/dev/null 2>&1 & +((${#ACTION_COMMANDS[@]}>0)) && setsid -f "${ACTION_HANDLER}" ${ID} "${ACTION_COMMANDS[@]}" >&- 2>&- & # bg task to wait and then close notification -${FORCE_EXPIRE} && [[ ${EXPIRE_TIME} -gt 0 ]] && ( sleep ${EXPIRE_TIME:0:-3} ; notify_close ${ID} ) & +${EXPLICIT_CLOSE} && ((${EXPIRE_TIME}>0)) && setsid -f ${0} -t ${EXPIRE_TIME} -s ${ID} >&- 2>&- <&- & + +${DEBUG_NOTIFY_SEND} && set >&2 diff --git a/po/es.po b/po/es.po index d27b5813..06dbcef5 100644 --- a/po/es.po +++ b/po/es.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-22 23:42-0400\n" +"POT-Creation-Date: 2020-05-23 20:06-0400\n" "PO-Revision-Date: 2018-01-03 02:03-0600\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish\n" @@ -143,7 +143,7 @@ msgstr "" msgid "Called from" msgstr "" -#: src/Common/Main.vala:267 +#: src/Common/Main.vala:266 #, fuzzy msgid "Notifications are disabled" msgstr "Notificación" diff --git a/po/fr.po b/po/fr.po index 073caaff..cd33ff97 100644 --- a/po/fr.po +++ b/po/fr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-22 23:42-0400\n" +"POT-Creation-Date: 2020-05-23 20:06-0400\n" "PO-Revision-Date: 2018-08-05 15:50+0200\n" "Last-Translator: Yolateng0 \n" "Language-Team: French\n" @@ -147,7 +147,7 @@ msgstr "" msgid "Called from" msgstr "" -#: src/Common/Main.vala:267 +#: src/Common/Main.vala:266 #, fuzzy msgid "Notifications are disabled" msgstr "Notification" diff --git a/po/hr.po b/po/hr.po index b51a281f..bd91a2aa 100644 --- a/po/hr.po +++ b/po/hr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-22 23:42-0400\n" +"POT-Creation-Date: 2020-05-23 20:06-0400\n" "PO-Revision-Date: 2017-12-24 00:52+0100\n" "Last-Translator: gogo \n" "Language-Team: Croatian \n" @@ -147,7 +147,7 @@ msgstr "" msgid "Called from" msgstr "" -#: src/Common/Main.vala:267 +#: src/Common/Main.vala:266 #, fuzzy msgid "Notifications are disabled" msgstr "Obavijesti" diff --git a/po/messages.pot b/po/messages.pot index ef7f3845..6c05c0f4 100644 --- a/po/messages.pot +++ b/po/messages.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline 1.0.11\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-23 00:04-0400\n" +"POT-Creation-Date: 2020-05-23 21:04-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -142,7 +142,7 @@ msgstr "" msgid "Called from" msgstr "" -#: src/Common/Main.vala:267 +#: src/Common/Main.vala:266 msgid "Notifications are disabled" msgstr "" diff --git a/po/nl.po b/po/nl.po index f659fc74..08b508cd 100644 --- a/po/nl.po +++ b/po/nl.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-22 23:42-0400\n" +"POT-Creation-Date: 2020-05-23 20:06-0400\n" "PO-Revision-Date: 2017-04-30 11:50+0200\n" "Last-Translator: Heimen Stoffels \n" "Language-Team: \n" @@ -148,7 +148,7 @@ msgstr "" msgid "Called from" msgstr "" -#: src/Common/Main.vala:267 +#: src/Common/Main.vala:266 #, fuzzy msgid "Notifications are disabled" msgstr "Melding" diff --git a/po/pl.po b/po/pl.po index cb3a8408..ba1e6856 100644 --- a/po/pl.po +++ b/po/pl.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-22 23:42-0400\n" +"POT-Creation-Date: 2020-05-23 20:06-0400\n" "PO-Revision-Date: 2017-08-12 15:26+0200\n" "Last-Translator: Waldemar Konik \n" "Language-Team: Polish\n" @@ -146,7 +146,7 @@ msgstr "" msgid "Called from" msgstr "" -#: src/Common/Main.vala:267 +#: src/Common/Main.vala:266 #, fuzzy msgid "Notifications are disabled" msgstr "Powiadomienia" diff --git a/po/ru.po b/po/ru.po index 4445895a..ecde7cdb 100644 --- a/po/ru.po +++ b/po/ru.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-22 23:42-0400\n" +"POT-Creation-Date: 2020-05-23 20:06-0400\n" "PO-Revision-Date: 2016-12-13 16:46+0300\n" "Last-Translator: Faust3000 \n" "Language-Team: Russian \n" @@ -150,7 +150,7 @@ msgstr "" msgid "Called from" msgstr "" -#: src/Common/Main.vala:267 +#: src/Common/Main.vala:266 #, fuzzy msgid "Notifications are disabled" msgstr "Уведомления" diff --git a/po/sv.po b/po/sv.po index 38375462..0a574f3b 100644 --- a/po/sv.po +++ b/po/sv.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-22 23:42-0400\n" +"POT-Creation-Date: 2020-05-23 20:06-0400\n" "PO-Revision-Date: 2018-01-13 16:56+0100\n" "Last-Translator: Åke Engelbrektson \n" "Language-Team: Svenska Språkfiler \n" @@ -146,7 +146,7 @@ msgstr "" msgid "Called from" msgstr "" -#: src/Common/Main.vala:267 +#: src/Common/Main.vala:266 #, fuzzy msgid "Notifications are disabled" msgstr "Avisering" diff --git a/po/tr.po b/po/tr.po index e124481b..22bcdaee 100644 --- a/po/tr.po +++ b/po/tr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-22 23:42-0400\n" +"POT-Creation-Date: 2020-05-23 20:06-0400\n" "PO-Revision-Date: 2020-03-10 15:59+0300\n" "Last-Translator: Gökhan GÖKKAYA \n" "Language-Team: Turkish\n" @@ -143,7 +143,7 @@ msgstr "" msgid "Called from" msgstr "" -#: src/Common/Main.vala:267 +#: src/Common/Main.vala:266 #, fuzzy msgid "Notifications are disabled" msgstr "Bildirim" diff --git a/po/uk.po b/po/uk.po index 3f1f10e8..1652091f 100644 --- a/po/uk.po +++ b/po/uk.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-22 23:42-0400\n" +"POT-Creation-Date: 2020-05-23 20:06-0400\n" "PO-Revision-Date: 2019-07-25 11:00+0300\n" "Last-Translator: Serhii Golovko \n" "Language-Team: Ukranian \n" @@ -143,7 +143,7 @@ msgstr "" msgid "Called from" msgstr "Викликано з" -#: src/Common/Main.vala:267 +#: src/Common/Main.vala:266 #, fuzzy msgid "Notifications are disabled" msgstr "Повідомлення вимкнено" diff --git a/src/Common/Main.vala b/src/Common/Main.vala index 368e9069..96027004 100644 --- a/src/Common/Main.vala +++ b/src/Common/Main.vala @@ -114,7 +114,7 @@ public class Main : GLib.Object{ APP_CONF_DIR = user_home + "/.config/" + BRANDING_SHORTNAME; APP_CONFIG_FILE = APP_CONF_DIR + "/config.json"; - STARTUP_SCRIPT_FILE = APP_CONF_DIR + "/notify.sh"; + STARTUP_SCRIPT_FILE = APP_CONF_DIR + "/notify-loop.sh"; STARTUP_DESKTOP_FILE = user_home + "/.config/autostart/" + BRANDING_SHORTNAME + ".desktop"; NOTIFICATION_ID_FILE = APP_CONF_DIR + "/notification_id"; NOTIFICATION_SEEN_FILE = APP_CONF_DIR + "/notification_seen"; @@ -234,10 +234,9 @@ public class Main : GLib.Object{ string s = "#!/bin/bash\n" + "# " +_("Called from")+" "+STARTUP_DESKTOP_FILE+" at logon.\n" + "# This file is over-written and executed again whenever settings are saved in "+BRANDING_SHORTNAME+"-gtk\n" - + "[[ \"${1}\" = \"--new-session\" ]] && rm -f "+NOTIFICATION_ID_FILE+" "+NOTIFICATION_SEEN_FILE+"\n" + + "[[ \"${1}\" = \"--autostart\" ]] && rm -f "+NOTIFICATION_ID_FILE+" "+NOTIFICATION_SEEN_FILE+"\n" + "F=\"/tmp/"+BRANDING_SHORTNAME+"-notify-loop.${$}.p\"\n" + "trap \"rm -f ${F}\" 0\n" - //+ "trap \"exit\" 1 2 3 4 5 6 7 8 10 11 12 13 14 15\n" + "echo -n \"${DISPLAY} ${$}\" > ${F}\n" + "typeset -i p\n" + "shopt -s extglob\n" @@ -248,7 +247,7 @@ public class Main : GLib.Object{ + "\t[[ ${f} -ot ${F} ]] || continue\n" + "\tread d p x < ${f}\n" + "\t[[ \"${d}\" == \"${DISPLAY}\" ]] || continue\n" - + "\t[[ ${p} -gt 0 ]] || continue\n" + + "\t((${p}>1)) || continue\n" + "\trm -f ${f}\n" + "\tkill ${p}\n" + "done\n" @@ -277,7 +276,7 @@ public class Main : GLib.Object{ string txt = "[Desktop Entry]\n" + "Type=Application\n" - + "Exec=bash \""+STARTUP_SCRIPT_FILE+"\" --new-session\n" + + "Exec=bash \""+STARTUP_SCRIPT_FILE+"\" --autostart\n" + "Hidden=false\n" + "NoDisplay=false\n" + "X-GNOME-Autostart-enabled=true\n" diff --git a/src/Common/OSDNotify.vala b/src/Common/OSDNotify.vala index 8da609c1..c1958729 100644 --- a/src/Common/OSDNotify.vala +++ b/src/Common/OSDNotify.vala @@ -52,7 +52,8 @@ public class OSDNotify : GLib.Object { + " -c info" + " -a "+BRANDING_SHORTNAME + " -i "+BRANDING_SHORTNAME - + " -t 0"; + + " -t 0" + + " -f "; if (close_action != "") s += " -l \""+close_action+"\""; From 9bcaa38c9df833fe5e6e2b8c0a423f89263be0f2 Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Sat, 23 May 2020 21:30:38 -0400 Subject: [PATCH 103/567] build number --- .deb_build_number.mak | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.deb_build_number.mak b/.deb_build_number.mak index 6fb61c09..952ffd46 100644 --- a/.deb_build_number.mak +++ b/.deb_build_number.mak @@ -1,3 +1,3 @@ # This file is generated by Makefile "make deb_build_number" DEB_PKG_VERSION := 1.0.11 -DEB_BUILD_NUMBER := 0000 +DEB_BUILD_NUMBER := 0001 From a39f90b3e2546a65331db9e659bfc7ab5f8a27e4 Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Sun, 24 May 2020 18:19:44 -0400 Subject: [PATCH 104/567] Optimize notify-*.sh even more. Use XDG_RUNTIME_DIR if available. --- .deb_build_number.mak | 4 +- BRANDING.mak | 2 +- debian/changelog | 9 + lib/notify_send/mainline_changes.txt | 249 ++++++++++++------------ lib/notify_send/notify-action.sh | 44 ++--- lib/notify_send/notify-send.sh | 277 ++++++++++++--------------- po/es.po | 6 +- po/fr.po | 6 +- po/hr.po | 6 +- po/messages.pot | 8 +- po/nl.po | 6 +- po/pl.po | 6 +- po/ru.po | 6 +- po/sv.po | 6 +- po/tr.po | 6 +- po/uk.po | 6 +- src/Common/Main.vala | 21 +- 17 files changed, 326 insertions(+), 342 deletions(-) diff --git a/.deb_build_number.mak b/.deb_build_number.mak index 952ffd46..1f169263 100644 --- a/.deb_build_number.mak +++ b/.deb_build_number.mak @@ -1,3 +1,3 @@ # This file is generated by Makefile "make deb_build_number" -DEB_PKG_VERSION := 1.0.11 -DEB_BUILD_NUMBER := 0001 +DEB_PKG_VERSION := 1.0.12 +DEB_BUILD_NUMBER := 0000 diff --git a/BRANDING.mak b/BRANDING.mak index 036e429f..a919592a 100644 --- a/BRANDING.mak +++ b/BRANDING.mak @@ -3,7 +3,7 @@ VERSION_MAJOR = 1 VERSION_MINOR = 0 -VERSION_MICRO = 11 +VERSION_MICRO = 12 BRANDING_SHORTNAME = mainline BRANDING_LONGNAME = Ubuntu Mainline Kernel Installer BRANDING_AUTHORNAME = Brian K. White diff --git a/debian/changelog b/debian/changelog index d993e34a..98c67020 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,12 @@ +mainline (1.0.12) unstable; urgency=medium + + * Improve notify-send.sh, notify-action.sh, and notify-loop.sh some more + Replaced all remaining unecessary shubshells with direct varible operations + Went over all the quoting of variables, filenames, and globbing patterns + Use $XDG_RUNTIME_DIR instead of /tmp if available + + -- Brian K. White Sun, 24 May 2020 18:08:31 -0400 + mainline (1.0.11) unstable; urgency=medium * Resolved several issues with notifications bacground processes and temp files diff --git a/lib/notify_send/mainline_changes.txt b/lib/notify_send/mainline_changes.txt index 24da8bcf..d55fe52e 100644 --- a/lib/notify_send/mainline_changes.txt +++ b/lib/notify_send/mainline_changes.txt @@ -8,100 +8,89 @@ Some of the functionality changes would be generically useful, ie to the origina Some of the functionality changes are probably not desireable in general, but it's what we need or want for use by "mainline". +-------------------------------------------------------------------------------- + Changes to notify-send.sh - * --force option changed to more generally mean "explicit close", whether that's - after an expire time or immediately on processing any action. This includes after - processing a NotificationClosed event, IE, send a close command even though we - just received a message that the notification was closed. Because you can get - a Closed message when a notification is merely moved to history, and then get - one *again* when it is viewed in history and the closed again. But if you actively - close it, that removes it from history too, which you want to do because the - action buttons won't work for that notification, because it's listener is gone. + * --force-close option changed to more generally mean just "explicitly close" + + Previously it just meant to start a timer in the background to send a close + command after the same amount of time as the --expire-time, IE in case the + notification daemon doesn't impliment timeouts, or ignores the requested + timeout becauseof user settings, actively send a close command ourselves + after the same amount of time. - The normal functionality when en expire time > 0 is given is still the same. + Now it still does that, but it also sends a close command immediately + when processing any event, whether ActionInvoked or NotificationClosed, + as well as after the requested timeout (if any). - * Derive sleep time from expire time without "bc" and without $(...) - You don't need a child process and "bc" just to insert a decimal point 3 characters from the end of a string. + This is most useful in concert with --expire-time=0 - * Refactor to avoid unecessary child shells. More could still be done. - There are still some sub-shells that could be replaced with - direct operations on global variables. + * Refactor to avoid unecessary forks for external tools and subshells, + and optimize the code generally, aside from forks. + This replaced essentially everything. + Although the overall structure is still mostly the the same. * --close without ID gets ID from --replace-file So the app code can specify the ID the same way for both creating and closing send: notify-send.sh -R file ... close: notify-send.sh -R file -s - Note, this was only briefly used and now we close the notification by a change in - notify-action.sh itself instead, but no reason to remove this handy behavior. - * Fix quoting of action pairs so that -d default action, or any -o action with no label, - produces a blank button (or no button, depending on the particular behavior - of different notification daemons) insted of a button with a '' label - that looks like [ '' ] + We only used this option briefly, now we use the new --force-close behavior + instead, but it's free and potentially handy so no reason to remove it. + + * Fix quoting of action pairs so that the -d default action, + or any other -o action with no label, produces a blank button (or no button, + depending on the particular behavior of different notification daemons) + insted of a button with a label that looks like [ '' ] * Allow empty SUMMARY & BODY, treat missing as empty instead of error. We don't use it, but it's valid and there's no reason the script should treat it as an error. An empty notification with no title and no body - and even no icon, still has an app-name, which can possibly be be all - the information needed. - - * Typeset -i to prevent ID from ever being '', - even if given invalid or missing value via -r or -R. - - * Export APP_NAME to notify-action.sh child process. - This allows to avoid hard-coding the name "mainline" into either - script, and yet the notifications still say "mainline" - and the temp files still say "mainline", yet the same scripts still - work on their own outside of mainline too. - - * "setsid" to free ourself from the action handler process, so that - we can exit and leave one less unneccessary background process - waiting around the whole time the dbus monitor process is waiting for - a button press or notification-closed event which may never come. - - * Prevent child process from spamming the terminal. This just clears up - a harmless cosmetic glitch that made it *look* like the process had hung - and never returned to a new shell prompt unless you pressed "enter". - Really all it was was the background process wrote a blank line to the terminal, - clobbering the currently displayed prompt. But it's just a display thing. - The shell was still waiting for input at a prompt, you just couldn't - see the prompt. When you press enter after notify-send.sh finises, - it's just drawing a new prompt like any other time your press enter. - -=== - -Changes to notify-action.sh - -* When replacing an ID, kill any previous monitor for the same ID first. + and even no icon, still has an app-name, which can possibly be all + the information the sender needed to deliver. -* Run gdbus in {} instead of (), though this seems to make no - functional difference when the {} comes before a pipe, the {} - ends up being a child process anyway. + * If --app-name is supplied, then export APP_NAME to the notify-action.sh + child process. This allows to avoid hard-coding the name "mainline" into + either script, and yet the notifications still say "mainline" and the temp + files still say "mainline", yet the same scripts still work as a generic + tool outside of mainline too. -* Parse gdbus output without $(sed ...) + * "setsid" to free ourself from the action handler and explicit close child + processes, so that we can exit and leave one less unneccessary background + process waiting around the whole time the dbus monitor process is waiting + for a ActionInvoked or NotificationClosed event, which may never come. -* Close notifcation after receiving any action. + * Prevent child/bg processes from spamming the terminal except some errors. + Clears up the mistaken appearance that the command didn't end and return + to the prompt, whne really it was just that a bg process wrote to the tty + and clobbered the prompt. Some errors still allowed through. -* Robust pid file and obsolete monitor cleanup processing +-------------------------------------------------------------------------------- -* Robust cleanup on exit +Changes to notify-action.sh -* Refactored to use all bash built-in features - and no child processes except gdbus and the invoked action - No more sed to parse output or foo=$(command ...) to collect output etc - More use of bash features to do the job in fewer steps. + * When replacing an ID, kill any previous monitor for the same ID first. + See lengthy discussion of "kill obsolete monitors" and "kill current monitor" + below for why this is needed and how it works. -* Use APP_NAME (if present) in place of $0 in pid filename + * Refactor to avoid unecessary forks for external tools and subshells, + and optimize the code generally, aside from forks. + This replaced essentially everything. + Although the overall structure is still mostly the the same. -* "setsid" to free ourself from the invoked action process so we can exit + * "setsid" to free ourself from the invoked action process so we can exit -* Prevent bg processes from spamming the terminal - clears up the false impression that the command didn't end and return to a new shell prompt + * Prevent child/bg processes from spamming the terminal except some errors. + Clears up the mistaken appearance that the command didn't end and return + to the prompt, whne really it was just that a bg process wrote to the tty + and clobbered the prompt. -* Execute the action command directly instead of 'bash -c "command ..."' + * Execute the action command directly instead of 'bash -c "command ..."' + You can specify a shell as the command if you need to, and this way you + get the shell of your choice with the flags of your choice, instead of "bash -c". -There is a lot to explain about the temp file and gdbus child process handling. +There is a bit to explain about the temp file and gdbus child process handling. The two sections, "kill obsolete monitors" and "kill current monitor" must orchestrate with each other, and with other instances of ourself. Basically it's normal for our gdbus process to be killed from outside by another @@ -111,65 +100,67 @@ instances of ourself. === kill obsolete monitors === This has to orchestrate with the "kill current monitor" section. -It's not an error to find one or more old pid files, with or without matching -still-active processes. - -Notification events are not predictable, so when setting up these monitors, -you never know how long you'll wait for an event, or if an event will ever come, -or if a monitor will be killed ungracefully by a shutdown leaving a pid file behind, -or if a monitor will be left running after the user logs out of the desktop session -but doesn't reboot, and then logs in again... It's also possible to get -a NotificationClosed event *more than once* for the same notification. A lot -of this depends on the particular quirks of how various notification daemons -are written. - -For example in Lubuntu, using LXQT desktop, lxqt-notificationd sends a -NotificationClosed when it expires a notification to it's history, and then -it sends the same event a 2nd time when the user views and closes the -notification from history. - -But it does not send a 2nd Closed message when a notification rolls off the -end of the history stack without ever being re-opened, or if the user -hits the clear-all button. - -Normally our dbus monitor would have exited when it got the first -NotificationClosed, and so it's no longer around to respond to more button -presses from the same notification viewed from history. That's annoying -bad ux. So this version adds to the --force option, to always send a -close command after processing any action, even a close, even when -no expire time given or when expire time is explicitly set to 0, aside from the -delayed close sent when there is an expire time given. That causes -the notification to be removed from history in case it was there. -Then there is never a non-working button. Either a notification is new and -and has a monitor watching for events from it, or it's gone. - -And the -r and -R options for sending a new notification to update/replace an -existing notification means that often, one or more of these existing monitor processes -is now "obsolete" because we are replacing it. But they have no way to know that. +It's not an error to find one or more old pid files, +with or without matching processes still active. + +Notification events are not predictable, so when setting up a monitor to catch +an event (button press or notification closed), you never know how long you'll +wait for the event, or if the event will ever come. + +You may never get a button press, you may never get a notification-closed, +the notification may never expire. + +The converse is also true. The notification may be re-opened from the +notification daemon's history, and so both action events and on-close +events can be sent multiple times, and sent after we have exited and are no +longer around to respond to them. +Different desktop environments have different notification daemon programs +which all behave differently from each other in various ways. + +And the --replace-id and --replace-file options for sending a new notification +to update an existing notification means that often, one or more of these +existing monitor processes is now "obsolete" because we are replacing it. +But they have no way to know that their job is done and should exit. They will never end gracefully on their own, because they are waiting for something that never came, and now never will come (a dbus event matching -either a button press or a notification-close for the notification ID they are watching). -So before starting the new/current monitor, we need to find any obsolete monitors, -and/or just their left over tmp files, and clean up whatever we find. +either a button press or a notification-close for the notification ID they are +watching). So every time we start up, before starting the new/current monitor, +we need to find any obsolete monitors and close them. "Obsolete" is defined as matching all of the following criteria: -* Pid file with the same APP_NAME already exists + * Pid file with the same APP_NAME as us + + * Older than ourself -* Older than ourself - Just use [[ file -ot file ]] to compare relative ages to get a proper - comparison even for sub-second differences, without needing to record and compare - timestamps and without needing to spwan a child just to run "date" just to - get sub-second times which you can't get from bash's built-in printf %()T + Using [[ file -ot file ]] to compare relative ages of our pid files + to get reliable comparison even for sub-second differences, without + needing to record and compare timestamps and without needing to spwan + a child just to run "date" just to get sub-second times which you can't + get from bash's built-in printf %()T -* From the same desktop session - DISPLAY from pid file is same as ours - This avoids clobbering another session. IE, say you have multiple - desktop sessions on multiple virtual consoles, or remote desktop sessions. - They will each have different DISPLAY values. So if we record that in the pid file - we can safely tell whether it's OK to consider killing the PID. + * From the same desktop session + + Using $DISPLAY from the pid file to compare with ours. + + This avoids clobbering processes form another session. + IE, you can have multiple desktop sessions on multiple virtual consoles, + or remote desktop sessions, all for the same user on the same machine at + the same time. All concurrent sessions will have different $DISPLAY values. + So if we record $DISPLAY in the pid file we can safely tell whether it's OK + to consider killing the PID. + + DISPLAY values are like PIDs in that they are only unique at any given moment. + They get re-used and are not unique over time. That means it's possible + to pick up a pid file with a matching $DISPLAY, but really the pid is from + some other past session rather than our current one. That's OK. + Any monitor from a logged out session is automatically and by definition + obsolete because it's an orphan. + + * Watching the same notification ID we are about to watch. + + The notification ID is recorded in the pid file along with PID and DISPLAY -* Watching the same notification ID we are about to watch. If all of those are true at the same time for a given PID, then that's a monitor we should kill because we are it's replacement. @@ -178,22 +169,28 @@ And when we kill it, remove the pid file *before* killing the PID. The pid is for a child gdbus process, not it's parent notify-action.sh bash process. -When we kill it, it's parent notify-action.sh breaks out of it's -"while loop" and proceeds to try to do it's own clean-up. +When we kill a gdbus process, it's parent notify-action.sh breaks out of it's +"while loop" and proceeds to try to do it's own clean-up, the same as if it had +concluded normally by processing an event. But we have already killed the PID that it would normally expect to kill. -So here, remove the pid file before killing, so that the related -notify-action.sh can't pick up the same PID and try to kill it after it's -already been freed and might already belong to some other process. +That PID either no longer exists, or if it exists, it's some other unrelated +process that we should NOT kill. + +So here, remove the pid file before killing, so that it's impossible +for the related notify-action.sh to pick up an invalid PID and try to kill it. The first [[ -s file ]] catches the case when the globbing pattern didn't match any files and the variable contains the globbing pattern itself. === kill current monitor === +This is already described above, but just to go over it from *this* parts +point of view... + This has to orchestrate with the "kill obsolete monitors" section. -Not an error if the pid file is already missing. +It's not an error if the pid file we know we wrote is missing. -IE: While we have been waiting for a dbus event which never came, +While we have been waiting for a dbus event which never came, another new instance of ourself may have started up, found our pid file, and killed our gdbus child process. When that happens, the while loop above ends and we fall through to here, diff --git a/lib/notify_send/notify-action.sh b/lib/notify_send/notify-action.sh index 86823ba5..a524813c 100755 --- a/lib/notify_send/notify-action.sh +++ b/lib/notify_send/notify-action.sh @@ -1,22 +1,21 @@ #!/bin/bash # 20200520 b.kenyon.w@gmail.com -# This is a complete re-write & replacement of notify-action.sh from +# This is a complete re-write of notify-action.sh from # https://github.com/vlevit/notify-send.sh # for https://github.com/bkw777/mainline # See mainline_changes.txt before changing "kill obsolete" or "kill current" -NOTIFY_SEND=${0%/*}/notify-send.sh -GDBUS_ARGS=(monitor --session --dest org.freedesktop.Notifications --object-path /org/freedesktop/Notifications) SELF=${0##*/} -GDBUS_PIDF=/tmp/${APP_NAME:=${SELF}}.${$}.p - +TMP=${XDG_RUNTIME_DIR:-/tmp} ${DEBUG_NOTIFY_SEND:=false} && { - exec 2>/tmp/.${SELF}.${$}.e + exec 2>"${TMP}/.${SELF}.${$}.e" set -x + trap "set >&2" 0 } -set +H -shopt -s extglob +SEND_SH=${0%/*}/notify-send.sh +GDBUS_ARGS=(monitor --session --dest org.freedesktop.Notifications --object-path /org/freedesktop/Notifications) +GDBUS_PIDF=${TMP}/${APP_NAME:=${SELF}}.${$}.p abrt () { echo "${0}: ${@}" >&2 ; exit 1 ; } @@ -28,41 +27,42 @@ declare -A a ;while ((${#})) ;do a[${1}]=${2} ;shift 2 ;done [[ "${DISPLAY}" ]] || abrt "no DISPLAY" typeset -i i=0 p=0 -# only starting the pid file, no PID or linefeed yet -echo -n "${DISPLAY} ${ID} " > ${GDBUS_PIDF} +set +H +shopt -s extglob -# kill obsolete monitors -for f in /tmp/${APP_NAME}.+([0-9]).p ;do - [[ -s "${f}" ]] || continue +# kill obsolete monitors (now) +echo -n "${DISPLAY} ${ID} " > "${GDBUS_PIDF}" +for f in ${TMP}/${APP_NAME}.+([0-9]).p ;do + [[ -s ${f} ]] || continue [[ ${f} -ot ${GDBUS_PIDF} ]] || continue read d i p x < ${f} [[ "${d}" == "${DISPLAY}" ]] || continue ((${i}==${ID})) || continue ((${p}>1)) || continue - rm -f ${f} + rm -f "${f}" kill ${p} done -# set trap to kill the monitor on exit +# kill current monitor (on exit) trap "conclude" 0 conclude () { + ${DEBUG_NOTIFY_SEND} && set >&2 [[ -s ${GDBUS_PIDF} ]] || exit 0 - read d i p x < ${GDBUS_PIDF} - rm -f ${GDBUS_PIDF} - ((${p}>1)) || exit 0 + read d i p x < "${GDBUS_PIDF}" + rm -f "${GDBUS_PIDF}" + ((${p}>1)) || exit kill ${p} - exit 0 } # execute an invoked command doit () { setsid -f ${a[${1}]} >&- 2>&- <&- & - ${EXPLICIT_CLOSE:-false} && "${NOTIFY_SEND}" -s ${ID} + ${EXPLICIT_CLOSE:-false} && "${SEND_SH}" -s ${ID} } # start current monitor { - gdbus ${GDBUS_ARGS[@]} & echo ${!} >> ${GDBUS_PIDF} + gdbus ${GDBUS_ARGS[@]} & echo ${!} >> "${GDBUS_PIDF}" } |while IFS=" :.(),'" read x x x x e x i x k x ;do ((${i}==${ID})) || continue case "${e}" in @@ -71,5 +71,3 @@ doit () { esac break done - -${DEBUG_NOTIFY_SEND} && set >&2 diff --git a/lib/notify_send/notify-send.sh b/lib/notify_send/notify-send.sh index 63148ad1..931a549e 100755 --- a/lib/notify_send/notify-send.sh +++ b/lib/notify_send/notify-send.sh @@ -1,4 +1,4 @@ -#!/usr/bin/env bash +#!/bin/bash # notify-send.sh - drop-in replacement for notify-send with more features # Copyright (C) 2015-2020 notify-send.sh authors (see AUTHORS file) @@ -25,26 +25,30 @@ # https://developer.gnome.org/notification-spec/ SELF=${0##*/} -VERSION="1.1-mainline" -ACTION_HANDLER=${0%/*}/notify-action.sh - +TMP=${XDG_RUNTIME_DIR:-/tmp} ${DEBUG_NOTIFY_SEND:=false} && { - exec 2>/tmp/.${SELF}.${$}.e + exec 2>${TMP}/.${SELF}.${$}.e set -x + trap "set >&2" 0 } +VERSION="1.1-bkw777" +ACTION_SH=${0%/*}/notify-action.sh NOTIFY_ARGS=(--session --dest org.freedesktop.Notifications --object-path /org/freedesktop/Notifications) -typeset -i i=0 ID=0 EXPIRE_TIME=-1 -URGENCY=1 + +typeset -i i=0 ID=0 EXPIRE_TIME=-1 URGENCY=1 +unset ID_FILE +AKEYS=() +ACMDS=() HINTS=() APP_NAME=${SELF} PRINT_ID=false EXPLICIT_CLOSE=false -unset ID_FILE +SUMMARY= +BODY= positional=false -SUMMARY_SET=false -SUMMARY="" -BODY="" +summary_set=false +_r= set +H help() { @@ -77,174 +81,147 @@ EOF abrt () { echo "${SELF}: $@" >&2 ; exit 1 ; } -convert_type () { - case "${1}" in - int) echo int32 ;; - double|string|byte) echo "${1}" ;; - *) echo error; return 1 ;; - esac -} - make_hint () { - type=$(convert_type "$1") - ((${?})) && return 1 - name=${2} - [[ "$type" = string ]] && command="\"$3\"" || command="$3" - echo "\"$name\": <$type $command>" -} - -concat_actions () { - local s=${1} ;shift - while ((${#})) ;do s+=",${1}" ;shift ;done - echo "[${s}]" -} - -concat_hints () { - local s=${1} ;shift - while ((${#})) ;do s+=",${1}" ;shift ;done - echo "{${s}}" + _r="" ;local t=${1} n=${2} c=${3} + [[ ${t} =~ ^(byte|int32|double|string)$ ]] || abrt "Hint types: byte int32 double string" + [[ ${t} = string ]] && c="\"${3}\"" + _r="\"${n}\": <${t} ${c}>" } notify_close () { - typeset -i i="${2}" + typeset -i i=${2} ((${i}>0)) && sleep ${i:0:-3}.${i:$((${#i}-3))} - gdbus call ${NOTIFY_ARGS[@]} --method org.freedesktop.Notifications.CloseNotification "${1}" >&- + gdbus call ${NOTIFY_ARGS[@]} --method org.freedesktop.Notifications.CloseNotification "${1}" >&- } process_urgency () { - case "${1}" in - low) URGENCY=0 ;; - normal) URGENCY=1 ;; - critical) URGENCY=2 ;; - *) abrt "Invalid urgency \"${URGENCY}\". Valid values: low normal critical" ;; - esac + case "${1}" in + 0|low) URGENCY=0 ;; + 1|normal) URGENCY=1 ;; + 2|critical) URGENCY=2 ;; + *) abrt "Urgency values: 0 low 1 normal 2 critical" ;; + esac } process_category () { - local a c - IFS=, a=(${1}) - for c in "${a[@]}"; do - HINTS+=("$(make_hint string category "${c}")") - done + local a c ;IFS=, a=(${1}) + for c in "${a[@]}"; do + make_hint string category "${c}" && HINTS+=(${_r}) + done } process_hint () { - local a t n c h - IFS=: a=(${1}) - t=${a[0]} n=${a[1]} c=${a[2]} - [[ "${n}" ]] && [[ "${c}" ]] || abrt "Invalid hint syntax specified. Use TYPE:NAME:VALUE." - h="$(make_hint "${t}" "${n}" "${c}")" - ((${?})) && abrt "Invalid hint type \"${t}\". Valid types are int, double, string and byte." - HINTS+=("${h}") + local a ;IFS=: a=(${1}) + ((${#a[@]}==3)) || abrt "Hint syntax: \"TYPE:NAME:VALUE\"" + make_hint "${a[0]}" "${a[1]}" "${a[2]}" && HINTS+=(${_r}) } process_action () { - local x n c k - IFS=: x=(${1}) - n=${x[0]} c=${x[1]} - [[ "${n}" ]] && [[ "${c}" ]] || abrt "Invalid action syntax specified. Use NAME:COMMAND." - k=${APP_NAME}_${n} - ACTION_COMMANDS+=("${k}" "${c}") - ACTIONS+=("\"${k}\",\"${n}\"") + local a k ;IFS=: a=(${1}) + ((${#a[@]}==2)) || abrt "Action syntax: \"NAME:COMMAND\"" + k=${#AKEYS[@]} + AKEYS+=("\"${k}\",\"${a[0]}\"") + ACMDS+=("${k}" "${a[1]}") } +# key=default: key:command and key:label, with empty label +# key=close: key:command, no key:label (no button for the on-close event) process_special_action () { - local k=${1} c=${2} - [[ "${c}" ]] || abrt "Command must not be empty" - ACTION_COMMANDS+=("${k}" "${c}") - [[ "${k}" != "close" ]] && ACTIONS+=("\"${k}\",\"\"") + [[ "${2}" ]] || abrt "Command must not be empty" + [[ "${1}" != "close" ]] && AKEYS+=("\"${1}\",\"\"") + ACMDS+=("${1}" "${2}") } process_posargs () { - [[ "${1}" = -* ]] && ! ${positional} && abrt "Unknown option ${1}" - ${SUMMARY_SET} && BODY=${1} || SUMMARY=${1} SUMMARY_SET=true + [[ "${1}" = -* ]] && ! ${positional} && abrt "Unknown option ${1}" + ${summary_set} && BODY=${1} || SUMMARY=${1} summary_set=true } while ((${#})) ; do s= i=0 - case "${1}" in - -\?|--help) - help - exit 0 - ;; - -v|--version) - echo "${SELF} ${VERSION}" - exit 0 - ;; - -u|--urgency|--urgency=*) - [[ "${1}" = --urgency=* ]] && s=${1#*=} || { shift ;s=${1} ; } - process_urgency "${s}" - ;; - -t|--expire-time|--expire-time=*) - [[ "${1}" = --expire-time=* ]] && EXPIRE_TIME=${1#*=} || { shift ;EXPIRE_TIME=${1} ; } - ;; - -f|--force-expire) - export EXPLICIT_CLOSE=true # only export if explicitly set - ;; - -a|--app-name|--app-name=*) - [[ "${1}" = --app-name=* ]] && APP_NAME=${1#*=} || { shift ;APP_NAME=${1} ; } - export APP_NAME # only export if explicitly set - ;; - -i|--icon|--icon=*) - [[ "${1}" = --icon=* ]] && ICON=${1#*=} || { shift ;ICON=${1} ; } - ;; - -c|--category|--category=*) - [[ "${1}" = --category=* ]] && s=${1#*=} || { shift ;s=${1} ; } - process_category "${s}" - ;; - -h|--hint|--hint=*) - [[ "${1}" = --hint=* ]] && s=${1#*=} || { shift ;s=${1} ; } - process_hint "${s}" - ;; - -o | --action | --action=*) - [[ "${1}" == --action=* ]] && s=${1#*=} || { shift ;s=${1} ; } - process_action "${s}" - ;; - -d | --default-action | --default-action=*) - [[ "${1}" == --default-action=* ]] && s=${1#*=} || { shift ;s=${1} ; } - process_special_action default "${s}" - ;; - -l | --close-action | --close-action=*) - [[ "${1}" == --close-action=* ]] && s=${1#*=} || { shift ;s=${1} ; } - process_special_action close "${s}" - ;; - -p|--print-id) - PRINT_ID=true - ;; - -r|--replace|--replace=*) - [[ "${1}" = --replace=* ]] && ID=${1#*=} || { shift ;ID=${1} ; } - ;; - -R|--replace-file|--replace-file=*) - [[ "${1}" = --replace-file=* ]] && ID_FILE=${1#*=} || { shift ;ID_FILE=${1} ; } - [[ -s "${ID_FILE}" ]] && read ID < "${ID_FILE}" - ;; - -s|--close|--close=*) - [[ "${1}" = --close=* ]] && i=${1#*=} || { shift ;i=${1} ; } - ((${i}<1)) && ((${ID}>0)) && i=${ID} - ((${i}>0)) && notify_close ${i} ${EXPIRE_TIME} - exit ${?} - ;; - --) - positional=true - ;; - *) - process_posargs "${1}" - ;; - esac - shift + case "${1}" in + -\?|--help) + help + exit 0 + ;; + -v|--version) + echo "${SELF} ${VERSION}" + exit 0 + ;; + -u|--urgency|--urgency=*) + [[ "${1}" = --urgency=* ]] && s=${1#*=} || { shift ;s=${1} ; } + process_urgency "${s}" + ;; + -t|--expire-time|--expire-time=*) + [[ "${1}" = --expire-time=* ]] && EXPIRE_TIME=${1#*=} || { shift ;EXPIRE_TIME=${1} ; } + ;; + -f|--force-expire) + export EXPLICIT_CLOSE=true # only export if explicitly set + ;; + -a|--app-name|--app-name=*) + [[ "${1}" = --app-name=* ]] && APP_NAME=${1#*=} || { shift ;APP_NAME=${1} ; } + export APP_NAME # only export if explicitly set + ;; + -i|--icon|--icon=*) + [[ "${1}" = --icon=* ]] && ICON=${1#*=} || { shift ;ICON=${1} ; } + ;; + -c|--category|--category=*) + [[ "${1}" = --category=* ]] && s=${1#*=} || { shift ;s=${1} ; } + process_category "${s}" + ;; + -h|--hint|--hint=*) + [[ "${1}" = --hint=* ]] && s=${1#*=} || { shift ;s=${1} ; } + process_hint "${s}" + ;; + -o|--action|--action=*) + [[ "${1}" == --action=* ]] && s=${1#*=} || { shift ;s=${1} ; } + process_action "${s}" + ;; + -d|--default-action|--default-action=*) + [[ "${1}" == --default-action=* ]] && s=${1#*=} || { shift ;s=${1} ; } + process_special_action default "${s}" + ;; + -l|--close-action|--close-action=*) + [[ "${1}" == --close-action=* ]] && s=${1#*=} || { shift ;s=${1} ; } + process_special_action close "${s}" + ;; + -p|--print-id) + PRINT_ID=true + ;; + -r|--replace|--replace=*) + [[ "${1}" = --replace=* ]] && ID=${1#*=} || { shift ;ID=${1} ; } + ;; + -R|--replace-file|--replace-file=*) + [[ "${1}" = --replace-file=* ]] && ID_FILE=${1#*=} || { shift ;ID_FILE=${1} ; } + [[ -s ${ID_FILE} ]] && read ID < "${ID_FILE}" + ;; + -s|--close|--close=*) + [[ "${1}" = --close=* ]] && i=${1#*=} || { shift ;i=${1} ; } + ((${i}<1)) && ((${ID}>0)) && i=${ID} + ((${i}>0)) && notify_close ${i} ${EXPIRE_TIME} + exit ${?} + ;; + --) + positional=true + ;; + *) + process_posargs "${1}" + ;; + esac + shift done -# build the special strings -actions="$(concat_actions "${ACTIONS[@]}")" -HINTS=("$(make_hint byte urgency "${URGENCY}")" "${HINTS[@]}") -hints="$(concat_hints "${HINTS[@]}")" -typeset -i OLD_ID=${ID} NEW_ID=0 +# build the actions & hints strings +a= ;for s in "${AKEYS[@]}" ;do a+=,${s} ;done ;a=${a:1} +make_hint byte urgency "${URGENCY}" ;h=${_r} +for s in "${HINTS[@]}" ;do h+=,${s} ;done # send the dbus message, collect the notification ID +typeset -i OLD_ID=${ID} NEW_ID=0 s=$(gdbus call ${NOTIFY_ARGS[@]} \ --method org.freedesktop.Notifications.Notify \ "${APP_NAME}" ${ID} "${ICON}" "${SUMMARY}" "${BODY}" \ - "${actions}" "${hints}" "int32 ${EXPIRE_TIME}") + "[${a}]" "{${h}}" "int32 ${EXPIRE_TIME}") # process the ID s=${s%,*} NEW_ID=${s#* } @@ -253,10 +230,8 @@ s=${s%,*} NEW_ID=${s#* } [[ "${ID_FILE}" ]] && ((${OLD_ID}<1)) && echo ${ID} > "${ID_FILE}" ${PRINT_ID} && echo ${ID} -# launch the action handler -((${#ACTION_COMMANDS[@]}>0)) && setsid -f "${ACTION_HANDLER}" ${ID} "${ACTION_COMMANDS[@]}" >&- 2>&- & - -# bg task to wait and then close notification -${EXPLICIT_CLOSE} && ((${EXPIRE_TIME}>0)) && setsid -f ${0} -t ${EXPIRE_TIME} -s ${ID} >&- 2>&- <&- & +# bg task to monitor dbus and perform the actions +((${#ACMDS[@]}>0)) && setsid -f "${ACTION_SH}" ${ID} "${ACMDS[@]}" >&- 2>&- & -${DEBUG_NOTIFY_SEND} && set >&2 +# bg task to wait expire time and then actively close notification +${EXPLICIT_CLOSE} && ((${EXPIRE_TIME}>0)) && setsid -f "${0}" -t ${EXPIRE_TIME} -s ${ID} >&- 2>&- <&- & diff --git a/po/es.po b/po/es.po index 06dbcef5..4adf8c5b 100644 --- a/po/es.po +++ b/po/es.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-23 20:06-0400\n" +"POT-Creation-Date: 2020-05-24 18:05-0400\n" "PO-Revision-Date: 2018-01-03 02:03-0600\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish\n" @@ -139,11 +139,11 @@ msgstr "" "Este núcleo está en ejecución y no se puede desinstalar.\n" "Instale otro núcleo antes de desinstalar este." -#: src/Common/Main.vala:235 +#: src/Common/Main.vala:237 msgid "Called from" msgstr "" -#: src/Common/Main.vala:266 +#: src/Common/Main.vala:271 #, fuzzy msgid "Notifications are disabled" msgstr "Notificación" diff --git a/po/fr.po b/po/fr.po index cd33ff97..3dc49dd8 100644 --- a/po/fr.po +++ b/po/fr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-23 20:06-0400\n" +"POT-Creation-Date: 2020-05-24 18:05-0400\n" "PO-Revision-Date: 2018-08-05 15:50+0200\n" "Last-Translator: Yolateng0 \n" "Language-Team: French\n" @@ -143,11 +143,11 @@ msgstr "" "Ce noyau est en cours d'exécution et ne peut pas être supprimé.\n" " Installez un autre noyau avant de retirer celui-ci." -#: src/Common/Main.vala:235 +#: src/Common/Main.vala:237 msgid "Called from" msgstr "" -#: src/Common/Main.vala:266 +#: src/Common/Main.vala:271 #, fuzzy msgid "Notifications are disabled" msgstr "Notification" diff --git a/po/hr.po b/po/hr.po index bd91a2aa..5c2fadab 100644 --- a/po/hr.po +++ b/po/hr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-23 20:06-0400\n" +"POT-Creation-Date: 2020-05-24 18:05-0400\n" "PO-Revision-Date: 2017-12-24 00:52+0100\n" "Last-Translator: gogo \n" "Language-Team: Croatian \n" @@ -143,11 +143,11 @@ msgstr "" "Ovaj kernel je trenutno pokrenut i ne može se ukloniti.\n" " Instalirajte drugi kernel prije uklanjanja trenutnog kernela." -#: src/Common/Main.vala:235 +#: src/Common/Main.vala:237 msgid "Called from" msgstr "" -#: src/Common/Main.vala:266 +#: src/Common/Main.vala:271 #, fuzzy msgid "Notifications are disabled" msgstr "Obavijesti" diff --git a/po/messages.pot b/po/messages.pot index 6c05c0f4..5fd9ae38 100644 --- a/po/messages.pot +++ b/po/messages.pot @@ -6,9 +6,9 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: mainline 1.0.11\n" +"Project-Id-Version: mainline 1.0.12\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-23 21:04-0400\n" +"POT-Creation-Date: 2020-05-24 18:05-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -138,11 +138,11 @@ msgid "" " Install another kernel before removing this one." msgstr "" -#: src/Common/Main.vala:235 +#: src/Common/Main.vala:237 msgid "Called from" msgstr "" -#: src/Common/Main.vala:266 +#: src/Common/Main.vala:271 msgid "Notifications are disabled" msgstr "" diff --git a/po/nl.po b/po/nl.po index 08b508cd..2c19579e 100644 --- a/po/nl.po +++ b/po/nl.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-23 20:06-0400\n" +"POT-Creation-Date: 2020-05-24 18:05-0400\n" "PO-Revision-Date: 2017-04-30 11:50+0200\n" "Last-Translator: Heimen Stoffels \n" "Language-Team: \n" @@ -144,11 +144,11 @@ msgstr "" "Deze kernel is momenteel in gebruik en kan daarom niet worden verwijderd.\n" " Installeer een andere kernel voordat u deze verwijdert." -#: src/Common/Main.vala:235 +#: src/Common/Main.vala:237 msgid "Called from" msgstr "" -#: src/Common/Main.vala:266 +#: src/Common/Main.vala:271 #, fuzzy msgid "Notifications are disabled" msgstr "Melding" diff --git a/po/pl.po b/po/pl.po index ba1e6856..a269c075 100644 --- a/po/pl.po +++ b/po/pl.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-23 20:06-0400\n" +"POT-Creation-Date: 2020-05-24 18:05-0400\n" "PO-Revision-Date: 2017-08-12 15:26+0200\n" "Last-Translator: Waldemar Konik \n" "Language-Team: Polish\n" @@ -142,11 +142,11 @@ msgstr "" "To jądro aktualnie działa i nie może zostać usunięte.\n" " Zainstaluj inne jądro przed usunięciem tego." -#: src/Common/Main.vala:235 +#: src/Common/Main.vala:237 msgid "Called from" msgstr "" -#: src/Common/Main.vala:266 +#: src/Common/Main.vala:271 #, fuzzy msgid "Notifications are disabled" msgstr "Powiadomienia" diff --git a/po/ru.po b/po/ru.po index ecde7cdb..15388ff2 100644 --- a/po/ru.po +++ b/po/ru.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-23 20:06-0400\n" +"POT-Creation-Date: 2020-05-24 18:05-0400\n" "PO-Revision-Date: 2016-12-13 16:46+0300\n" "Last-Translator: Faust3000 \n" "Language-Team: Russian \n" @@ -146,11 +146,11 @@ msgstr "" "Это ядро в настоящий момент работает и не может быть удалено.\n" " Установите другое ядро, прежде чем удалять его." -#: src/Common/Main.vala:235 +#: src/Common/Main.vala:237 msgid "Called from" msgstr "" -#: src/Common/Main.vala:266 +#: src/Common/Main.vala:271 #, fuzzy msgid "Notifications are disabled" msgstr "Уведомления" diff --git a/po/sv.po b/po/sv.po index 0a574f3b..358af727 100644 --- a/po/sv.po +++ b/po/sv.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-23 20:06-0400\n" +"POT-Creation-Date: 2020-05-24 18:05-0400\n" "PO-Revision-Date: 2018-01-13 16:56+0100\n" "Last-Translator: Åke Engelbrektson \n" "Language-Team: Svenska Språkfiler \n" @@ -142,11 +142,11 @@ msgstr "" "Denna kärna används för tillfället och kan inte tas bort.\n" "Installera en annan kärna innan du tar bort den här." -#: src/Common/Main.vala:235 +#: src/Common/Main.vala:237 msgid "Called from" msgstr "" -#: src/Common/Main.vala:266 +#: src/Common/Main.vala:271 #, fuzzy msgid "Notifications are disabled" msgstr "Avisering" diff --git a/po/tr.po b/po/tr.po index 22bcdaee..3167c1e3 100644 --- a/po/tr.po +++ b/po/tr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-23 20:06-0400\n" +"POT-Creation-Date: 2020-05-24 18:05-0400\n" "PO-Revision-Date: 2020-03-10 15:59+0300\n" "Last-Translator: Gökhan GÖKKAYA \n" "Language-Team: Turkish\n" @@ -139,11 +139,11 @@ msgstr "" "Bu çekirdek şu anda çalışıyor ve bu sebeple kaldırılamaz.\n" "Bunu kaldırmadan önce başka bir çekirdek yükleyin." -#: src/Common/Main.vala:235 +#: src/Common/Main.vala:237 msgid "Called from" msgstr "" -#: src/Common/Main.vala:266 +#: src/Common/Main.vala:271 #, fuzzy msgid "Notifications are disabled" msgstr "Bildirim" diff --git a/po/uk.po b/po/uk.po index 1652091f..624dd686 100644 --- a/po/uk.po +++ b/po/uk.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-23 20:06-0400\n" +"POT-Creation-Date: 2020-05-24 18:05-0400\n" "PO-Revision-Date: 2019-07-25 11:00+0300\n" "Last-Translator: Serhii Golovko \n" "Language-Team: Ukranian \n" @@ -139,11 +139,11 @@ msgstr "" "Це ядро наразі працює і його неможливо видалити.\n" " Встановіть інше ядро перед тим, як видалити его." -#: src/Common/Main.vala:235 +#: src/Common/Main.vala:237 msgid "Called from" msgstr "Викликано з" -#: src/Common/Main.vala:266 +#: src/Common/Main.vala:271 #, fuzzy msgid "Notifications are disabled" msgstr "Повідомлення вимкнено" diff --git a/src/Common/Main.vala b/src/Common/Main.vala index 96027004..a7d164a8 100644 --- a/src/Common/Main.vala +++ b/src/Common/Main.vala @@ -123,7 +123,9 @@ public class Main : GLib.Object{ LinuxKernel.CURRENT_USER = user_login; LinuxKernel.CURRENT_USER_HOME = user_home; + // todo: consider get_user_runtime_dir() or get_user_cache_dir() TMP_PREFIX = Environment.get_tmp_dir() + "/." + BRANDING_SHORTNAME; + } public void save_app_config(){ @@ -235,32 +237,35 @@ public class Main : GLib.Object{ + "# " +_("Called from")+" "+STARTUP_DESKTOP_FILE+" at logon.\n" + "# This file is over-written and executed again whenever settings are saved in "+BRANDING_SHORTNAME+"-gtk\n" + "[[ \"${1}\" = \"--autostart\" ]] && rm -f "+NOTIFICATION_ID_FILE+" "+NOTIFICATION_SEEN_FILE+"\n" - + "F=\"/tmp/"+BRANDING_SHORTNAME+"-notify-loop.${$}.p\"\n" - + "trap \"rm -f ${F}\" 0\n" - + "echo -n \"${DISPLAY} ${$}\" > ${F}\n" + + "TMP=${XDG_RUNTIME_DIR:-/tmp}\n" + + "F=\"${TMP}/"+BRANDING_SHORTNAME+"-notify-loop.${$}.p\"\n" + + "trap \"rm -f \\\"${F}\\\"\" 0\n" + + "echo -n \"${DISPLAY} ${$}\" > \"${F}\"\n" + "typeset -i p\n" + "shopt -s extglob\n" + "\n" + "# clear previous state (kill previous instance)\n" - + "for f in /tmp/"+BRANDING_SHORTNAME+"-notify-loop.+([0-9]).p ;do\n" - + "\t[[ -s \"${f}\" ]] || continue\n" + + "for f in ${TMP}/"+BRANDING_SHORTNAME+"-notify-loop.+([0-9]).p ;do\n" + + "\t[[ -s ${f} ]] || continue\n" + "\t[[ ${f} -ot ${F} ]] || continue\n" - + "\tread d p x < ${f}\n" + + "\tread d p x < \"${f}\"\n" + "\t[[ \"${d}\" == \"${DISPLAY}\" ]] || continue\n" + "\t((${p}>1)) || continue\n" - + "\trm -f ${f}\n" + + "\trm -f \"${f}\"\n" + "\tkill ${p}\n" + "done\n" + "unset F f p d x\n" + "\n" + "# run current state\n"; if (notify_minor || notify_major){ + // This gdbus check doesn't do what I'd hoped. + // Still succeeds while logged out but sitting at a display manager login screen. s += "while gdbus call --session --dest org.freedesktop.DBus --object-path /org/freedesktop/DBus --method org.freedesktop.DBus.GetId 2>&- >&- ;do\n" + "\t"+BRANDING_SHORTNAME+" --notify"; if (LOG_DEBUG) s += " --debug"; s += "\n" + "\tsleep %d%s &\n".printf(count,suffix) - + "\twait $!\n" // respond to signals during sleep + + "\twait ${!}\n" // respond to signals during sleep + "done\n"; } else { s += "# " + _("Notifications are disabled") + "\n" From 60e78dff604b6f51181ecea8e6b6fffb99975478 Mon Sep 17 00:00:00 2001 From: "Brian K. White" <54458165+bkw777@users.noreply.github.com> Date: Sun, 24 May 2020 18:42:35 -0400 Subject: [PATCH 105/567] Update README.md --- README.md | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index 7ee27bbe..739c71f1 100644 --- a/README.md +++ b/README.md @@ -18,16 +18,16 @@ mainline is written using Vala and GTK3. Source code and binaries are available [cappelikan](https://github.com/cappelikan) maintains a PPA at: - sudo add-apt-repository ppa:cappelikan/ppa - sudo apt update - sudo apt install mainline + sudo add-apt-repository ppa:cappelikan/ppa + sudo apt update + sudo apt install mainline ### Build - sudo apt install libgee-0.8-dev libjson-glib-dev libvte-2.91-dev valac aria2 lsb-release aptitude - git clone https://github.com/bkw777/mainline.git - cd mainline - make - sudo make install + sudo apt install libgee-0.8-dev libjson-glib-dev libvte-2.91-dev valac aria2 lsb-release aptitude + git clone https://github.com/bkw777/mainline.git + cd mainline + make + sudo make install ### About mainline is a fork of [ukuu](https://github.com/teejee2008/ukuu) @@ -46,6 +46,6 @@ The original author stopped maintaining the original GPL version of ukuu and swi * Better desktop notification behavior ### TODO & WIP -* notifications - make the bg process detect when the user logs off and exit itself. -* notifications - start/restart/stop the bg process when the user changes settings instead of only at logon/logoff -* temp files - do something less broken when a user runs ex: "sudo mainline --install-latest" +* Make the notification bg process detect when the user logs off and exit itself. +* Save & restore window dimensions. +* Move the notification/dbus code into the app and make an "applet mode" From 4041e92161b241362af4fea303a8ea98acc28107 Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Sun, 24 May 2020 18:47:10 -0400 Subject: [PATCH 106/567] readme --- README.md | 4 ---- README.md.src | 26 +++++++++++--------------- 2 files changed, 11 insertions(+), 19 deletions(-) diff --git a/README.md b/README.md index 739c71f1..245939be 100644 --- a/README.md +++ b/README.md @@ -1,11 +1,9 @@ ### Ubuntu Mainline Kernel Installer - This is a tool for installing the latest mainline Linux kernel on Ubuntu-based distributions. ![Main window screenshot](main_window.png) ### Features - * Fetches list of available kernels from [Ubuntu Mainline PPA](http://kernel.ubuntu.com/~kernel-ppa/mainline/) * Optionally watches and displays notifications when a new kernel update is available * Downloads and installs packages automatically @@ -17,7 +15,6 @@ This is a tool for installing the latest mainline Linux kernel on Ubuntu-based d mainline is written using Vala and GTK3. Source code and binaries are available from the [GitHub project page](https://github.com/bkw777/mainline). [cappelikan](https://github.com/cappelikan) maintains a PPA at: - sudo add-apt-repository ppa:cappelikan/ppa sudo apt update sudo apt install mainline @@ -35,7 +32,6 @@ mainline is a fork of [ukuu](https://github.com/teejee2008/ukuu) The original author stopped maintaining the original GPL version of ukuu and switched to a [paid license](https://teejeetech.in/tag/ukuu/) for future versions. ### Enhancements / Deviations from the original author's final GPL version - * (from [stevenpowerd](https://github.com/stevenpowered/ukuu)) Options controlling the internet connection check * (from [cloyce](https://github.com/cloyce/ukuu)) Option to include or hide pre-release kernels * Changed name from "ukuu" to "mainline" diff --git a/README.md.src b/README.md.src index 40a131eb..bbbda17f 100644 --- a/README.md.src +++ b/README.md.src @@ -1,11 +1,9 @@ ### BRANDING_LONGNAME - This is a tool for installing the latest mainline Linux kernel on Ubuntu-based distributions. ![Main window screenshot](main_window.png) ### Features - * Fetches list of available kernels from [Ubuntu Mainline PPA](http://kernel.ubuntu.com/~kernel-ppa/mainline/) * Optionally watches and displays notifications when a new kernel update is available * Downloads and installs packages automatically @@ -17,17 +15,16 @@ This is a tool for installing the latest mainline Linux kernel on Ubuntu-based d BRANDING_SHORTNAME is written using Vala and GTK3. Source code and binaries are available from the [GitHub project page](BRANDING_WEBSITE). [cappelikan](https://github.com/cappelikan) maintains a PPA at: - - sudo add-apt-repository ppa:cappelikan/ppa - sudo apt update - sudo apt install mainline + sudo add-apt-repository ppa:cappelikan/ppa + sudo apt update + sudo apt install mainline ### Build - sudo apt install libgee-0.8-dev libjson-glib-dev libvte-2.91-dev valac aria2 lsb-release aptitude - git clone BRANDING_GITREPO - cd BRANDING_SHORTNAME - make - sudo make install + sudo apt install libgee-0.8-dev libjson-glib-dev libvte-2.91-dev valac aria2 lsb-release aptitude + git clone BRANDING_GITREPO + cd BRANDING_SHORTNAME + make + sudo make install ### About BRANDING_SHORTNAME is a fork of [ukuu](https://github.com/teejee2008/ukuu) @@ -35,7 +32,6 @@ BRANDING_SHORTNAME is a fork of [ukuu](https://github.com/teejee2008/ukuu) The original author stopped maintaining the original GPL version of ukuu and switched to a [paid license](https://teejeetech.in/tag/ukuu/) for future versions. ### Enhancements / Deviations from the original author's final GPL version - * (from [stevenpowerd](https://github.com/stevenpowered/ukuu)) Options controlling the internet connection check * (from [cloyce](https://github.com/cloyce/ukuu)) Option to include or hide pre-release kernels * Changed name from "ukuu" to "BRANDING_SHORTNAME" @@ -46,6 +42,6 @@ The original author stopped maintaining the original GPL version of ukuu and swi * Better desktop notification behavior ### TODO & WIP -* notifications - make the bg process detect when the user logs off and exit itself. -* notifications - start/restart/stop the bg process when the user changes settings instead of only at logon/logoff -* temp files - do something less broken when a user runs ex: "sudo mainline --install-latest" +* Make the notification bg process detect when the user logs off and exit itself. +* Save & restore window dimensions. +* Move the notification/dbus code into the app and make an "applet mode" From f9e9d8142f1ef608a3b000f17d03ebfc2b7e626e Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Sun, 24 May 2020 18:48:56 -0400 Subject: [PATCH 107/567] readme --- README.md | 2 +- README.md.src | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 245939be..5088d3bb 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ This is a tool for installing the latest mainline Linux kernel on Ubuntu-based d ### Downloads & Source Code mainline is written using Vala and GTK3. Source code and binaries are available from the [GitHub project page](https://github.com/bkw777/mainline). -[cappelikan](https://github.com/cappelikan) maintains a PPA at: +[cappelikan](https://github.com/cappelikan) maintains a PPA at: sudo add-apt-repository ppa:cappelikan/ppa sudo apt update sudo apt install mainline diff --git a/README.md.src b/README.md.src index bbbda17f..4e38e004 100644 --- a/README.md.src +++ b/README.md.src @@ -14,7 +14,7 @@ This is a tool for installing the latest mainline Linux kernel on Ubuntu-based d ### Downloads & Source Code BRANDING_SHORTNAME is written using Vala and GTK3. Source code and binaries are available from the [GitHub project page](BRANDING_WEBSITE). -[cappelikan](https://github.com/cappelikan) maintains a PPA at: +[cappelikan](https://github.com/cappelikan) maintains a PPA at: sudo add-apt-repository ppa:cappelikan/ppa sudo apt update sudo apt install mainline From 57aa6bdff6812a81b85df136525c17a01de4a365 Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Sun, 24 May 2020 18:49:37 -0400 Subject: [PATCH 108/567] readme --- README.md | 3 ++- README.md.src | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 5088d3bb..8b41bcee 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,8 @@ This is a tool for installing the latest mainline Linux kernel on Ubuntu-based d ### Downloads & Source Code mainline is written using Vala and GTK3. Source code and binaries are available from the [GitHub project page](https://github.com/bkw777/mainline). -[cappelikan](https://github.com/cappelikan) maintains a PPA at: +[cappelikan](https://github.com/cappelikan) maintains a PPA at: + sudo add-apt-repository ppa:cappelikan/ppa sudo apt update sudo apt install mainline diff --git a/README.md.src b/README.md.src index 4e38e004..27d35bac 100644 --- a/README.md.src +++ b/README.md.src @@ -14,7 +14,8 @@ This is a tool for installing the latest mainline Linux kernel on Ubuntu-based d ### Downloads & Source Code BRANDING_SHORTNAME is written using Vala and GTK3. Source code and binaries are available from the [GitHub project page](BRANDING_WEBSITE). -[cappelikan](https://github.com/cappelikan) maintains a PPA at: +[cappelikan](https://github.com/cappelikan) maintains a PPA at: + sudo add-apt-repository ppa:cappelikan/ppa sudo apt update sudo apt install mainline From 3dd7cd48c0290ab229010bbda04236223d9ed5de Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Mon, 25 May 2020 17:14:05 -0400 Subject: [PATCH 109/567] nothing --- lib/notify_send/notify-action.sh | 6 +++--- lib/notify_send/notify-send.sh | 26 ++++++++++++-------------- 2 files changed, 15 insertions(+), 17 deletions(-) diff --git a/lib/notify_send/notify-action.sh b/lib/notify_send/notify-action.sh index a524813c..114e8385 100755 --- a/lib/notify_send/notify-action.sh +++ b/lib/notify_send/notify-action.sh @@ -14,10 +14,10 @@ ${DEBUG_NOTIFY_SEND:=false} && { } SEND_SH=${0%/*}/notify-send.sh -GDBUS_ARGS=(monitor --session --dest org.freedesktop.Notifications --object-path /org/freedesktop/Notifications) GDBUS_PIDF=${TMP}/${APP_NAME:=${SELF}}.${$}.p +GDBUS_ARGS=(monitor --session --dest org.freedesktop.Notifications --object-path /org/freedesktop/Notifications) -abrt () { echo "${0}: ${@}" >&2 ; exit 1 ; } +abrt () { echo "${SELF}: ${@}" >&2 ; exit 1 ; } # consume the command line typeset -i ID="${1}" ;shift @@ -60,7 +60,7 @@ doit () { ${EXPLICIT_CLOSE:-false} && "${SEND_SH}" -s ${ID} } -# start current monitor +# start the monitor { gdbus ${GDBUS_ARGS[@]} & echo ${!} >> "${GDBUS_PIDF}" } |while IFS=" :.(),'" read x x x x e x i x k x ;do diff --git a/lib/notify_send/notify-send.sh b/lib/notify_send/notify-send.sh index 931a549e..1c00b96a 100755 --- a/lib/notify_send/notify-send.sh +++ b/lib/notify_send/notify-send.sh @@ -49,10 +49,9 @@ BODY= positional=false summary_set=false _r= -set +H -help() { - cat < [BODY] - create a notification @@ -73,24 +72,16 @@ Application Options: -p, --print-id Print the notification ID to the standard output. -r, --replace=ID Replace existing notification. -R, --replace-file=FILE Store and load notification replace ID to/from this file. - -s, --close=ID Close notification. With -R, get ID from -R file. + -s, --close=ID Close notification. With -R, get ID from -R file. -v, --version Version of the package. EOF } -abrt () { echo "${SELF}: $@" >&2 ; exit 1 ; } - -make_hint () { - _r="" ;local t=${1} n=${2} c=${3} - [[ ${t} =~ ^(byte|int32|double|string)$ ]] || abrt "Hint types: byte int32 double string" - [[ ${t} = string ]] && c="\"${3}\"" - _r="\"${n}\": <${t} ${c}>" -} +abrt () { echo "${SELF}: ${@}" >&2 ; exit 1 ; } notify_close () { - typeset -i i=${2} - ((${i}>0)) && sleep ${i:0:-3}.${i:$((${#i}-3))} + i=${2} ;((${i}>0)) && sleep ${i:0:-3}.${i:$((${#i}-3))} gdbus call ${NOTIFY_ARGS[@]} --method org.freedesktop.Notifications.CloseNotification "${1}" >&- } @@ -110,6 +101,13 @@ process_category () { done } +make_hint () { + _r= ;local t=${1} n=${2} c=${3} + [[ ${t} =~ ^(byte|int32|double|string)$ ]] || abrt "Hint types: byte int32 double string" + [[ ${t} = string ]] && c="\"${3}\"" + _r="\"${n}\":<${t} ${c}>" +} + process_hint () { local a ;IFS=: a=(${1}) ((${#a[@]}==3)) || abrt "Hint syntax: \"TYPE:NAME:VALUE\"" From f6eea15dc8b9149c878be5c38f1fb0b454c19c65 Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Fri, 29 May 2020 13:15:12 -0400 Subject: [PATCH 110/567] fix some App state was stored as LinuxKernel state, track major & minor update notifications individually, remove more un-used bits, remove age threshhold from Makefile --- Makefile | 3 - po/es.po | 118 ++++++++++++++++++------------------ po/fr.po | 118 ++++++++++++++++++------------------ po/hr.po | 118 ++++++++++++++++++------------------ po/messages.pot | 118 ++++++++++++++++++------------------ po/nl.po | 118 ++++++++++++++++++------------------ po/pl.po | 118 ++++++++++++++++++------------------ po/ru.po | 118 ++++++++++++++++++------------------ po/sv.po | 118 ++++++++++++++++++------------------ po/tr.po | 118 ++++++++++++++++++------------------ po/uk.po | 118 ++++++++++++++++++------------------ src/Common/LinuxKernel.vala | 84 ++++++++----------------- src/Common/Main.vala | 32 +++++----- src/Console/AppConsole.vala | 19 +++--- src/Gtk/MainWindow.vala | 14 +++-- src/Gtk/SettingsDialog.vala | 27 ++++----- 16 files changed, 665 insertions(+), 694 deletions(-) diff --git a/Makefile b/Makefile index 04198280..3f1b16f6 100644 --- a/Makefile +++ b/Makefile @@ -2,8 +2,6 @@ # url to ubuntu mainline kernels URI_KERNEL_UBUNTU_MAINLINE := http://kernel.ubuntu.com/~kernel-ppa/mainline/ -# number of previous major kernel version numbers to show by default -DEFAULT_SHOW_PREV_MAJORS := 0 SHELL := /bin/bash CFLAGS := --std=c99 @@ -35,7 +33,6 @@ build_symbols := -X -D'INSTALL_PREFIX="$(prefix)"' \ -X -D'BRANDING_AUTHOREMAIL="$(BRANDING_AUTHOREMAIL)"' \ -X -D'BRANDING_WEBSITE="$(BRANDING_WEBSITE)"' \ -X -D'GETTEXT_PACKAGE="$(BRANDING_SHORTNAME)"' \ - -X -D'DEFAULT_SHOW_PREV_MAJORS="$(DEFAULT_SHOW_PREV_MAJORS)"' \ -X -D'URI_KERNEL_UBUNTU_MAINLINE="$(URI_KERNEL_UBUNTU_MAINLINE)"' misc_files := README.md \ diff --git a/po/es.po b/po/es.po index 4adf8c5b..7d4ce56a 100644 --- a/po/es.po +++ b/po/es.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-24 18:05-0400\n" +"POT-Creation-Date: 2020-05-29 13:05-0400\n" "PO-Revision-Date: 2018-01-03 02:03-0600\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish\n" @@ -13,105 +13,105 @@ msgstr "" "X-Launchpad-Export-Date: 2017-04-13 11:48+0000\n" "X-Generator: Poedit 2.0.5\n" -#: src/Common/LinuxKernel.vala:92 +#: src/Common/LinuxKernel.vala:88 msgid "Distribution" msgstr "Distribución" -#: src/Common/LinuxKernel.vala:106 +#: src/Common/LinuxKernel.vala:102 msgid "Architecture" msgstr "Arquitectura del sistema" -#: src/Common/LinuxKernel.vala:305 +#: src/Common/LinuxKernel.vala:301 msgid "Fetching index..." msgstr "Recuperando índice..." -#: src/Common/LinuxKernel.vala:342 +#: src/Common/LinuxKernel.vala:338 msgid "Fetching index from kernel.ubuntu.com..." msgstr "Recuperando índice de kernel.ubuntu.com…" -#: src/Common/LinuxKernel.vala:601 +#: src/Common/LinuxKernel.vala:594 msgid "Could not find running kernel in list!" msgstr "¡No se pudo encontrar el núcleo en ejecución en la lista!" -#: src/Common/LinuxKernel.vala:607 +#: src/Common/LinuxKernel.vala:600 msgid "Could not find any kernels to remove" msgstr "Seleccione los núcleos que se desinstalarán" -#: src/Common/LinuxKernel.vala:616 +#: src/Common/LinuxKernel.vala:609 msgid "The following kernels will be removed:" msgstr "Los siguientes kernels serán eliminados:" -#: src/Common/LinuxKernel.vala:623 +#: src/Common/LinuxKernel.vala:616 msgid "Continue ?" msgstr "¿Continuar?" -#: src/Common/LinuxKernel.vala:649 src/Console/AppConsole.vala:304 +#: src/Common/LinuxKernel.vala:642 src/Console/AppConsole.vala:304 msgid "Latest update" msgstr "" -#: src/Common/LinuxKernel.vala:660 src/Console/AppConsole.vala:311 +#: src/Common/LinuxKernel.vala:653 src/Console/AppConsole.vala:311 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:668 src/Console/AppConsole.vala:316 -#: src/Console/AppConsole.vala:374 +#: src/Common/LinuxKernel.vala:661 src/Console/AppConsole.vala:316 +#: src/Console/AppConsole.vala:377 msgid "No updates found" msgstr "No se encontró ninguna actualización" -#: src/Common/LinuxKernel.vala:678 +#: src/Common/LinuxKernel.vala:671 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "" -#: src/Common/LinuxKernel.vala:940 +#: src/Common/LinuxKernel.vala:908 msgid "Packages Available" msgstr "Paquetes disponibles" -#: src/Common/LinuxKernel.vala:948 +#: src/Common/LinuxKernel.vala:916 msgid "Packages Installed" msgstr "Paquetes instalados" -#: src/Common/LinuxKernel.vala:1031 +#: src/Common/LinuxKernel.vala:997 msgid "Available Kernels" msgstr "Núcleos disponibles" -#: src/Common/LinuxKernel.vala:1038 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1004 src/Gtk/MainWindow.vala:186 msgid "Installed" msgstr "Instalado" -#: src/Common/LinuxKernel.vala:1038 src/Gtk/MainWindow.vala:186 -#: src/Gtk/MainWindow.vala:625 src/Gtk/MainWindow.vala:639 +#: src/Common/LinuxKernel.vala:1004 src/Gtk/MainWindow.vala:186 +#: src/Gtk/MainWindow.vala:627 src/Gtk/MainWindow.vala:641 msgid "Running" msgstr "En ejecución" -#: src/Common/LinuxKernel.vala:1075 +#: src/Common/LinuxKernel.vala:1041 msgid "Downloading" msgstr "Descargando" -#: src/Common/LinuxKernel.vala:1094 +#: src/Common/LinuxKernel.vala:1060 #: src/Utility/Gtk/CustomMessageDialog.vala:148 #: src/Utility/Gtk/CustomMessageDialog.vala:152 msgid "OK" msgstr "Aceptar" -#: src/Common/LinuxKernel.vala:1099 +#: src/Common/LinuxKernel.vala:1065 msgid "ERROR" msgstr "ERROR" -#: src/Common/LinuxKernel.vala:1113 src/Gtk/MainWindow.vala:647 +#: src/Common/LinuxKernel.vala:1079 src/Gtk/MainWindow.vala:649 msgid "This kernel is already installed." msgstr "Este núcleo ya se instaló." -#: src/Common/LinuxKernel.vala:1139 +#: src/Common/LinuxKernel.vala:1105 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "Instalación finalizada. Se necesita reiniciar para utilizar el núcleo nuevo." -#: src/Common/LinuxKernel.vala:1142 +#: src/Common/LinuxKernel.vala:1108 msgid "Installation completed with errors" msgstr "Instalación finalizada con errores" -#: src/Common/LinuxKernel.vala:1157 +#: src/Common/LinuxKernel.vala:1123 msgid "" "Selected kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -119,19 +119,19 @@ msgstr "" "El núcleo seleccionado está en ejecución y no puede desinstalarse.\n" "Instale otro núcleo antes de desinstalar este." -#: src/Common/LinuxKernel.vala:1162 +#: src/Common/LinuxKernel.vala:1128 msgid "Preparing to remove selected kernels" msgstr "Preparándose para desinstalar los núcleos seleccionados" -#: src/Common/LinuxKernel.vala:1193 src/Common/LinuxKernel.vala:1240 +#: src/Common/LinuxKernel.vala:1159 src/Common/LinuxKernel.vala:1206 msgid "Un-install completed" msgstr "Desinstalación finalizada" -#: src/Common/LinuxKernel.vala:1196 src/Common/LinuxKernel.vala:1243 +#: src/Common/LinuxKernel.vala:1162 src/Common/LinuxKernel.vala:1209 msgid "Un-install completed with errors" msgstr "Desinstalación finalizada con errores" -#: src/Common/LinuxKernel.vala:1209 +#: src/Common/LinuxKernel.vala:1175 msgid "" "This kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -139,11 +139,11 @@ msgstr "" "Este núcleo está en ejecución y no se puede desinstalar.\n" "Instale otro núcleo antes de desinstalar este." -#: src/Common/Main.vala:237 +#: src/Common/Main.vala:241 msgid "Called from" msgstr "" -#: src/Common/Main.vala:271 +#: src/Common/Main.vala:275 #, fuzzy msgid "Notifications are disabled" msgstr "Notificación" @@ -276,16 +276,16 @@ msgstr "Coomand no especificado" msgid "to list all commands" msgstr "Mostrar todas las opciones" -#: src/Console/AppConsole.vala:347 +#: src/Console/AppConsole.vala:350 msgid "Show" msgstr "" -#: src/Console/AppConsole.vala:352 src/Console/AppConsole.vala:364 +#: src/Console/AppConsole.vala:355 src/Console/AppConsole.vala:367 #, fuzzy, c-format msgid "Kernel %s Available" msgstr "Paquetes disponibles" -#: src/Console/AppConsole.vala:354 src/Console/AppConsole.vala:366 +#: src/Console/AppConsole.vala:357 src/Console/AppConsole.vala:369 #: src/Gtk/MainWindow.vala:330 msgid "Install" msgstr "Instalar" @@ -314,8 +314,8 @@ msgstr "Actualizar" msgid "Internet connection is not active" msgstr "La conexión a Internet está inactiva" -#: src/Gtk/MainWindow.vala:321 src/Gtk/MainWindow.vala:522 -#: src/Gtk/MainWindow.vala:652 +#: src/Gtk/MainWindow.vala:321 src/Gtk/MainWindow.vala:524 +#: src/Gtk/MainWindow.vala:654 msgid "No Internet" msgstr "No hay Internet" @@ -344,7 +344,7 @@ msgid "Select the kernels to remove" msgstr "Seleccione los núcleos que se desinstalarán" #: src/Gtk/MainWindow.vala:383 src/Gtk/MainWindow.vala:417 -#: src/Gtk/MainWindow.vala:684 +#: src/Gtk/MainWindow.vala:686 msgid "Close window to exit..." msgstr "" @@ -360,38 +360,38 @@ msgstr "Cambios" msgid "Settings" msgstr "Configuración" -#: src/Gtk/MainWindow.vala:456 +#: src/Gtk/MainWindow.vala:458 msgid "About" msgstr "Acerca de" -#: src/Gtk/MainWindow.vala:500 +#: src/Gtk/MainWindow.vala:502 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "" "Herramienta de renovación de núcleo para distribuciones basadas en Ubuntu" -#: src/Gtk/MainWindow.vala:501 +#: src/Gtk/MainWindow.vala:503 msgid "Forked" msgstr "" -#: src/Gtk/MainWindow.vala:501 +#: src/Gtk/MainWindow.vala:503 msgid "Original" msgstr "" -#: src/Gtk/MainWindow.vala:522 src/Gtk/MainWindow.vala:652 +#: src/Gtk/MainWindow.vala:524 src/Gtk/MainWindow.vala:654 #, fuzzy msgid "Internet connection is not active." msgstr "La conexión a Internet está inactiva" -#: src/Gtk/MainWindow.vala:541 +#: src/Gtk/MainWindow.vala:543 msgid "Refreshing..." msgstr "Actualizando…" -#: src/Gtk/MainWindow.vala:635 +#: src/Gtk/MainWindow.vala:637 #, fuzzy msgid "available" msgstr "Paquetes disponibles" -#: src/Gtk/MainWindow.vala:647 +#: src/Gtk/MainWindow.vala:649 #, fuzzy msgid "Already Installed" msgstr "Instalado" @@ -421,52 +421,52 @@ msgstr "" msgid "Check every" msgstr "Comprobar cada" -#: src/Gtk/SettingsDialog.vala:143 +#: src/Gtk/SettingsDialog.vala:142 msgid "Hour(s)" msgstr "Horas" -#: src/Gtk/SettingsDialog.vala:145 +#: src/Gtk/SettingsDialog.vala:144 msgid "Day(s)" msgstr "Días" -#: src/Gtk/SettingsDialog.vala:147 +#: src/Gtk/SettingsDialog.vala:146 msgid "Week(s)" msgstr "Semanas" -#: src/Gtk/SettingsDialog.vala:150 +#: src/Gtk/SettingsDialog.vala:149 msgid "Second(s)" msgstr "" -#: src/Gtk/SettingsDialog.vala:156 +#: src/Gtk/SettingsDialog.vala:155 msgid "Display" msgstr "Mostrar" -#: src/Gtk/SettingsDialog.vala:164 +#: src/Gtk/SettingsDialog.vala:163 msgid "Hide unstable and RC releases" msgstr "Ocultar versiones inestables y RC" -#: src/Gtk/SettingsDialog.vala:178 +#: src/Gtk/SettingsDialog.vala:177 msgid "Show N previous major versions " msgstr "" -#: src/Gtk/SettingsDialog.vala:193 +#: src/Gtk/SettingsDialog.vala:192 msgid "Other" msgstr "" -#: src/Gtk/SettingsDialog.vala:201 +#: src/Gtk/SettingsDialog.vala:200 msgid "Skip internet connection check" msgstr "La conexión a Internet está inactiva" -#: src/Gtk/SettingsDialog.vala:214 +#: src/Gtk/SettingsDialog.vala:213 #, fuzzy msgid "Internet connection timeout in " msgstr "La conexión a Internet está inactiva" -#: src/Gtk/SettingsDialog.vala:229 +#: src/Gtk/SettingsDialog.vala:228 msgid "seconds" msgstr "" -#: src/Gtk/SettingsDialog.vala:236 +#: src/Gtk/SettingsDialog.vala:235 msgid "Max concurrent downloads" msgstr "" diff --git a/po/fr.po b/po/fr.po index 3dc49dd8..8bac7cca 100644 --- a/po/fr.po +++ b/po/fr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-24 18:05-0400\n" +"POT-Creation-Date: 2020-05-29 13:05-0400\n" "PO-Revision-Date: 2018-08-05 15:50+0200\n" "Last-Translator: Yolateng0 \n" "Language-Team: French\n" @@ -13,109 +13,109 @@ msgstr "" "X-Launchpad-Export-Date: 2017-04-13 11:48+0000\n" "X-Generator: Poedit 2.0.6\n" -#: src/Common/LinuxKernel.vala:92 +#: src/Common/LinuxKernel.vala:88 msgid "Distribution" msgstr "Distribution" -#: src/Common/LinuxKernel.vala:106 +#: src/Common/LinuxKernel.vala:102 #, fuzzy msgid "Architecture" msgstr "Architecture du système" -#: src/Common/LinuxKernel.vala:305 +#: src/Common/LinuxKernel.vala:301 msgid "Fetching index..." msgstr "" -#: src/Common/LinuxKernel.vala:342 +#: src/Common/LinuxKernel.vala:338 msgid "Fetching index from kernel.ubuntu.com..." msgstr "Récupération de l'index depuis kernel.ubuntu.com..." -#: src/Common/LinuxKernel.vala:601 +#: src/Common/LinuxKernel.vala:594 #, fuzzy msgid "Could not find running kernel in list!" msgstr "Impossible de trouver la version demandée" -#: src/Common/LinuxKernel.vala:607 +#: src/Common/LinuxKernel.vala:600 #, fuzzy msgid "Could not find any kernels to remove" msgstr "Sélectionnez les noyaux à supprimer" -#: src/Common/LinuxKernel.vala:616 +#: src/Common/LinuxKernel.vala:609 msgid "The following kernels will be removed:" msgstr "" -#: src/Common/LinuxKernel.vala:623 +#: src/Common/LinuxKernel.vala:616 msgid "Continue ?" msgstr "" -#: src/Common/LinuxKernel.vala:649 src/Console/AppConsole.vala:304 +#: src/Common/LinuxKernel.vala:642 src/Console/AppConsole.vala:304 msgid "Latest update" msgstr "" -#: src/Common/LinuxKernel.vala:660 src/Console/AppConsole.vala:311 +#: src/Common/LinuxKernel.vala:653 src/Console/AppConsole.vala:311 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:668 src/Console/AppConsole.vala:316 -#: src/Console/AppConsole.vala:374 +#: src/Common/LinuxKernel.vala:661 src/Console/AppConsole.vala:316 +#: src/Console/AppConsole.vala:377 msgid "No updates found" msgstr "Aucune mise à jour disponible" -#: src/Common/LinuxKernel.vala:678 +#: src/Common/LinuxKernel.vala:671 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "" -#: src/Common/LinuxKernel.vala:940 +#: src/Common/LinuxKernel.vala:908 msgid "Packages Available" msgstr "Paquets disponibles" -#: src/Common/LinuxKernel.vala:948 +#: src/Common/LinuxKernel.vala:916 msgid "Packages Installed" msgstr "Paquets installés" -#: src/Common/LinuxKernel.vala:1031 +#: src/Common/LinuxKernel.vala:997 msgid "Available Kernels" msgstr "Noyaux disponibles" -#: src/Common/LinuxKernel.vala:1038 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1004 src/Gtk/MainWindow.vala:186 msgid "Installed" msgstr "Installé" -#: src/Common/LinuxKernel.vala:1038 src/Gtk/MainWindow.vala:186 -#: src/Gtk/MainWindow.vala:625 src/Gtk/MainWindow.vala:639 +#: src/Common/LinuxKernel.vala:1004 src/Gtk/MainWindow.vala:186 +#: src/Gtk/MainWindow.vala:627 src/Gtk/MainWindow.vala:641 msgid "Running" msgstr "En cours" -#: src/Common/LinuxKernel.vala:1075 +#: src/Common/LinuxKernel.vala:1041 msgid "Downloading" msgstr "Téléchargement" -#: src/Common/LinuxKernel.vala:1094 +#: src/Common/LinuxKernel.vala:1060 #: src/Utility/Gtk/CustomMessageDialog.vala:148 #: src/Utility/Gtk/CustomMessageDialog.vala:152 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:1099 +#: src/Common/LinuxKernel.vala:1065 msgid "ERROR" msgstr "ERREUR" -#: src/Common/LinuxKernel.vala:1113 src/Gtk/MainWindow.vala:647 +#: src/Common/LinuxKernel.vala:1079 src/Gtk/MainWindow.vala:649 msgid "This kernel is already installed." msgstr "Ce noyau est déjà installé." -#: src/Common/LinuxKernel.vala:1139 +#: src/Common/LinuxKernel.vala:1105 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "Installation complétée. Un redémarrage est nécessaire pour utiliser le " "nouveau noyau." -#: src/Common/LinuxKernel.vala:1142 +#: src/Common/LinuxKernel.vala:1108 msgid "Installation completed with errors" msgstr "Installation terminée avec des erreurs" -#: src/Common/LinuxKernel.vala:1157 +#: src/Common/LinuxKernel.vala:1123 msgid "" "Selected kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -123,19 +123,19 @@ msgstr "" "Ce noyau est en cours d'exécution et ne peut pas être supprimé.\n" " Installez un autre noyau avant de retirer celui-ci." -#: src/Common/LinuxKernel.vala:1162 +#: src/Common/LinuxKernel.vala:1128 msgid "Preparing to remove selected kernels" msgstr "Préparation à la suppression des noyaux sélectionnés" -#: src/Common/LinuxKernel.vala:1193 src/Common/LinuxKernel.vala:1240 +#: src/Common/LinuxKernel.vala:1159 src/Common/LinuxKernel.vala:1206 msgid "Un-install completed" msgstr "Désinstallation complète" -#: src/Common/LinuxKernel.vala:1196 src/Common/LinuxKernel.vala:1243 +#: src/Common/LinuxKernel.vala:1162 src/Common/LinuxKernel.vala:1209 msgid "Un-install completed with errors" msgstr "Désinstallation terminée avec des erreurs" -#: src/Common/LinuxKernel.vala:1209 +#: src/Common/LinuxKernel.vala:1175 msgid "" "This kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -143,11 +143,11 @@ msgstr "" "Ce noyau est en cours d'exécution et ne peut pas être supprimé.\n" " Installez un autre noyau avant de retirer celui-ci." -#: src/Common/Main.vala:237 +#: src/Common/Main.vala:241 msgid "Called from" msgstr "" -#: src/Common/Main.vala:271 +#: src/Common/Main.vala:275 #, fuzzy msgid "Notifications are disabled" msgstr "Notification" @@ -287,16 +287,16 @@ msgstr "Impossible de trouver le fichier" msgid "to list all commands" msgstr "Afficher toutes les options" -#: src/Console/AppConsole.vala:347 +#: src/Console/AppConsole.vala:350 msgid "Show" msgstr "" -#: src/Console/AppConsole.vala:352 src/Console/AppConsole.vala:364 +#: src/Console/AppConsole.vala:355 src/Console/AppConsole.vala:367 #, fuzzy, c-format msgid "Kernel %s Available" msgstr "Paquets disponibles" -#: src/Console/AppConsole.vala:354 src/Console/AppConsole.vala:366 +#: src/Console/AppConsole.vala:357 src/Console/AppConsole.vala:369 #: src/Gtk/MainWindow.vala:330 msgid "Install" msgstr "Installer" @@ -325,8 +325,8 @@ msgstr "Actualiser" msgid "Internet connection is not active" msgstr "Connexion internet inexistante" -#: src/Gtk/MainWindow.vala:321 src/Gtk/MainWindow.vala:522 -#: src/Gtk/MainWindow.vala:652 +#: src/Gtk/MainWindow.vala:321 src/Gtk/MainWindow.vala:524 +#: src/Gtk/MainWindow.vala:654 msgid "No Internet" msgstr "Pas d'Internet" @@ -355,7 +355,7 @@ msgid "Select the kernels to remove" msgstr "Sélectionnez les noyaux à supprimer" #: src/Gtk/MainWindow.vala:383 src/Gtk/MainWindow.vala:417 -#: src/Gtk/MainWindow.vala:684 +#: src/Gtk/MainWindow.vala:686 msgid "Close window to exit..." msgstr "" @@ -371,39 +371,39 @@ msgstr "Changements" msgid "Settings" msgstr "Paramètres" -#: src/Gtk/MainWindow.vala:456 +#: src/Gtk/MainWindow.vala:458 msgid "About" msgstr "À propos" -#: src/Gtk/MainWindow.vala:500 +#: src/Gtk/MainWindow.vala:502 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "" "Utilitaire de mise à niveau des noyaux pour les distributions basées pour " "Ubuntu" -#: src/Gtk/MainWindow.vala:501 +#: src/Gtk/MainWindow.vala:503 msgid "Forked" msgstr "" -#: src/Gtk/MainWindow.vala:501 +#: src/Gtk/MainWindow.vala:503 msgid "Original" msgstr "" -#: src/Gtk/MainWindow.vala:522 src/Gtk/MainWindow.vala:652 +#: src/Gtk/MainWindow.vala:524 src/Gtk/MainWindow.vala:654 #, fuzzy msgid "Internet connection is not active." msgstr "Connexion internet inexistante" -#: src/Gtk/MainWindow.vala:541 +#: src/Gtk/MainWindow.vala:543 msgid "Refreshing..." msgstr "Actualisation..." -#: src/Gtk/MainWindow.vala:635 +#: src/Gtk/MainWindow.vala:637 #, fuzzy msgid "available" msgstr "Paquets disponibles" -#: src/Gtk/MainWindow.vala:647 +#: src/Gtk/MainWindow.vala:649 #, fuzzy msgid "Already Installed" msgstr "Installé" @@ -433,53 +433,53 @@ msgstr "" msgid "Check every" msgstr "Vérifier toutes les" -#: src/Gtk/SettingsDialog.vala:143 +#: src/Gtk/SettingsDialog.vala:142 msgid "Hour(s)" msgstr "Heure(s)" -#: src/Gtk/SettingsDialog.vala:145 +#: src/Gtk/SettingsDialog.vala:144 msgid "Day(s)" msgstr "Jour(s)" -#: src/Gtk/SettingsDialog.vala:147 +#: src/Gtk/SettingsDialog.vala:146 msgid "Week(s)" msgstr "Semaine(s)" -#: src/Gtk/SettingsDialog.vala:150 +#: src/Gtk/SettingsDialog.vala:149 msgid "Second(s)" msgstr "" -#: src/Gtk/SettingsDialog.vala:156 +#: src/Gtk/SettingsDialog.vala:155 msgid "Display" msgstr "Afficher" -#: src/Gtk/SettingsDialog.vala:164 +#: src/Gtk/SettingsDialog.vala:163 msgid "Hide unstable and RC releases" msgstr "Cacher les versions instables et RC" -#: src/Gtk/SettingsDialog.vala:178 +#: src/Gtk/SettingsDialog.vala:177 msgid "Show N previous major versions " msgstr "" -#: src/Gtk/SettingsDialog.vala:193 +#: src/Gtk/SettingsDialog.vala:192 msgid "Other" msgstr "" -#: src/Gtk/SettingsDialog.vala:201 +#: src/Gtk/SettingsDialog.vala:200 #, fuzzy msgid "Skip internet connection check" msgstr "Connexion internet inexistante" -#: src/Gtk/SettingsDialog.vala:214 +#: src/Gtk/SettingsDialog.vala:213 #, fuzzy msgid "Internet connection timeout in " msgstr "Connexion internet inexistante" -#: src/Gtk/SettingsDialog.vala:229 +#: src/Gtk/SettingsDialog.vala:228 msgid "seconds" msgstr "" -#: src/Gtk/SettingsDialog.vala:236 +#: src/Gtk/SettingsDialog.vala:235 msgid "Max concurrent downloads" msgstr "" diff --git a/po/hr.po b/po/hr.po index 5c2fadab..3b91f0ba 100644 --- a/po/hr.po +++ b/po/hr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-24 18:05-0400\n" +"POT-Creation-Date: 2020-05-29 13:05-0400\n" "PO-Revision-Date: 2017-12-24 00:52+0100\n" "Last-Translator: gogo \n" "Language-Team: Croatian \n" @@ -13,109 +13,109 @@ msgstr "" "X-Launchpad-Export-Date: 2017-12-23 23:36+0000\n" "X-Generator: Poedit 1.8.7.1\n" -#: src/Common/LinuxKernel.vala:92 +#: src/Common/LinuxKernel.vala:88 msgid "Distribution" msgstr "Distribucija" -#: src/Common/LinuxKernel.vala:106 +#: src/Common/LinuxKernel.vala:102 #, fuzzy msgid "Architecture" msgstr "Arhitektura sustava" -#: src/Common/LinuxKernel.vala:305 +#: src/Common/LinuxKernel.vala:301 msgid "Fetching index..." msgstr "" -#: src/Common/LinuxKernel.vala:342 +#: src/Common/LinuxKernel.vala:338 msgid "Fetching index from kernel.ubuntu.com..." msgstr "Preuzimanje sadržaja sa kernel.ubuntu.com..." -#: src/Common/LinuxKernel.vala:601 +#: src/Common/LinuxKernel.vala:594 #, fuzzy msgid "Could not find running kernel in list!" msgstr "Nemoguće je pronaći zatraženu inačicu" -#: src/Common/LinuxKernel.vala:607 +#: src/Common/LinuxKernel.vala:600 #, fuzzy msgid "Could not find any kernels to remove" msgstr "Odaberi kernele za uklanjanje" -#: src/Common/LinuxKernel.vala:616 +#: src/Common/LinuxKernel.vala:609 msgid "The following kernels will be removed:" msgstr "" -#: src/Common/LinuxKernel.vala:623 +#: src/Common/LinuxKernel.vala:616 msgid "Continue ?" msgstr "" -#: src/Common/LinuxKernel.vala:649 src/Console/AppConsole.vala:304 +#: src/Common/LinuxKernel.vala:642 src/Console/AppConsole.vala:304 msgid "Latest update" msgstr "" -#: src/Common/LinuxKernel.vala:660 src/Console/AppConsole.vala:311 +#: src/Common/LinuxKernel.vala:653 src/Console/AppConsole.vala:311 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:668 src/Console/AppConsole.vala:316 -#: src/Console/AppConsole.vala:374 +#: src/Common/LinuxKernel.vala:661 src/Console/AppConsole.vala:316 +#: src/Console/AppConsole.vala:377 msgid "No updates found" msgstr "Nema pronađenih nadopuna" -#: src/Common/LinuxKernel.vala:678 +#: src/Common/LinuxKernel.vala:671 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "" -#: src/Common/LinuxKernel.vala:940 +#: src/Common/LinuxKernel.vala:908 msgid "Packages Available" msgstr "Dostupni paketi" -#: src/Common/LinuxKernel.vala:948 +#: src/Common/LinuxKernel.vala:916 msgid "Packages Installed" msgstr "Instalirani paketi" -#: src/Common/LinuxKernel.vala:1031 +#: src/Common/LinuxKernel.vala:997 msgid "Available Kernels" msgstr "Dostupni kerneli" -#: src/Common/LinuxKernel.vala:1038 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1004 src/Gtk/MainWindow.vala:186 msgid "Installed" msgstr "Instalirano" -#: src/Common/LinuxKernel.vala:1038 src/Gtk/MainWindow.vala:186 -#: src/Gtk/MainWindow.vala:625 src/Gtk/MainWindow.vala:639 +#: src/Common/LinuxKernel.vala:1004 src/Gtk/MainWindow.vala:186 +#: src/Gtk/MainWindow.vala:627 src/Gtk/MainWindow.vala:641 msgid "Running" msgstr "Pokrenuto" -#: src/Common/LinuxKernel.vala:1075 +#: src/Common/LinuxKernel.vala:1041 msgid "Downloading" msgstr "Preuzimanje" -#: src/Common/LinuxKernel.vala:1094 +#: src/Common/LinuxKernel.vala:1060 #: src/Utility/Gtk/CustomMessageDialog.vala:148 #: src/Utility/Gtk/CustomMessageDialog.vala:152 msgid "OK" msgstr "U redu" -#: src/Common/LinuxKernel.vala:1099 +#: src/Common/LinuxKernel.vala:1065 msgid "ERROR" msgstr "GREŠKA" -#: src/Common/LinuxKernel.vala:1113 src/Gtk/MainWindow.vala:647 +#: src/Common/LinuxKernel.vala:1079 src/Gtk/MainWindow.vala:649 msgid "This kernel is already installed." msgstr "Ovaj kernel je već instaliran." -#: src/Common/LinuxKernel.vala:1139 +#: src/Common/LinuxKernel.vala:1105 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "Instalacija je završena. Potrebno je ponovno pokretanje računala kako bi se " "koristio novi kernel." -#: src/Common/LinuxKernel.vala:1142 +#: src/Common/LinuxKernel.vala:1108 msgid "Installation completed with errors" msgstr "Instalacija je završena s greškama" -#: src/Common/LinuxKernel.vala:1157 +#: src/Common/LinuxKernel.vala:1123 msgid "" "Selected kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -123,19 +123,19 @@ msgstr "" "Odabrani kernel je trenutno pokernut i ne može se ukloniti.\n" " Instalirajte drugi kernel prije uklanjanja trenutnog kernela." -#: src/Common/LinuxKernel.vala:1162 +#: src/Common/LinuxKernel.vala:1128 msgid "Preparing to remove selected kernels" msgstr "Pripremanje uklanjanja odabranih kernela" -#: src/Common/LinuxKernel.vala:1193 src/Common/LinuxKernel.vala:1240 +#: src/Common/LinuxKernel.vala:1159 src/Common/LinuxKernel.vala:1206 msgid "Un-install completed" msgstr "Deinstalacija završena" -#: src/Common/LinuxKernel.vala:1196 src/Common/LinuxKernel.vala:1243 +#: src/Common/LinuxKernel.vala:1162 src/Common/LinuxKernel.vala:1209 msgid "Un-install completed with errors" msgstr "Deinstalacija završena s greškama" -#: src/Common/LinuxKernel.vala:1209 +#: src/Common/LinuxKernel.vala:1175 msgid "" "This kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -143,11 +143,11 @@ msgstr "" "Ovaj kernel je trenutno pokrenut i ne može se ukloniti.\n" " Instalirajte drugi kernel prije uklanjanja trenutnog kernela." -#: src/Common/Main.vala:237 +#: src/Common/Main.vala:241 msgid "Called from" msgstr "" -#: src/Common/Main.vala:271 +#: src/Common/Main.vala:275 #, fuzzy msgid "Notifications are disabled" msgstr "Obavijesti" @@ -284,16 +284,16 @@ msgstr "" msgid "to list all commands" msgstr "Prikaži sve mogućnosti" -#: src/Console/AppConsole.vala:347 +#: src/Console/AppConsole.vala:350 msgid "Show" msgstr "" -#: src/Console/AppConsole.vala:352 src/Console/AppConsole.vala:364 +#: src/Console/AppConsole.vala:355 src/Console/AppConsole.vala:367 #, fuzzy, c-format msgid "Kernel %s Available" msgstr "Dostupni paketi" -#: src/Console/AppConsole.vala:354 src/Console/AppConsole.vala:366 +#: src/Console/AppConsole.vala:357 src/Console/AppConsole.vala:369 #: src/Gtk/MainWindow.vala:330 msgid "Install" msgstr "Instaliraj" @@ -322,8 +322,8 @@ msgstr "Osvježi" msgid "Internet connection is not active" msgstr "Internet povezivanje nije aktivno" -#: src/Gtk/MainWindow.vala:321 src/Gtk/MainWindow.vala:522 -#: src/Gtk/MainWindow.vala:652 +#: src/Gtk/MainWindow.vala:321 src/Gtk/MainWindow.vala:524 +#: src/Gtk/MainWindow.vala:654 msgid "No Internet" msgstr "Nema pristupa internetu" @@ -352,7 +352,7 @@ msgid "Select the kernels to remove" msgstr "Odaberi kernele za uklanjanje" #: src/Gtk/MainWindow.vala:383 src/Gtk/MainWindow.vala:417 -#: src/Gtk/MainWindow.vala:684 +#: src/Gtk/MainWindow.vala:686 msgid "Close window to exit..." msgstr "" @@ -368,37 +368,37 @@ msgstr "Promjene" msgid "Settings" msgstr "Postavke" -#: src/Gtk/MainWindow.vala:456 +#: src/Gtk/MainWindow.vala:458 msgid "About" msgstr "O programu" -#: src/Gtk/MainWindow.vala:500 +#: src/Gtk/MainWindow.vala:502 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Alat za nadogradnju kernela Ubuntu temeljenih distribucija" -#: src/Gtk/MainWindow.vala:501 +#: src/Gtk/MainWindow.vala:503 msgid "Forked" msgstr "" -#: src/Gtk/MainWindow.vala:501 +#: src/Gtk/MainWindow.vala:503 msgid "Original" msgstr "" -#: src/Gtk/MainWindow.vala:522 src/Gtk/MainWindow.vala:652 +#: src/Gtk/MainWindow.vala:524 src/Gtk/MainWindow.vala:654 #, fuzzy msgid "Internet connection is not active." msgstr "Internet povezivanje nije aktivno" -#: src/Gtk/MainWindow.vala:541 +#: src/Gtk/MainWindow.vala:543 msgid "Refreshing..." msgstr "Osvježavanje..." -#: src/Gtk/MainWindow.vala:635 +#: src/Gtk/MainWindow.vala:637 #, fuzzy msgid "available" msgstr "Dostupni paketi" -#: src/Gtk/MainWindow.vala:647 +#: src/Gtk/MainWindow.vala:649 #, fuzzy msgid "Already Installed" msgstr "Instalirano" @@ -428,53 +428,53 @@ msgstr "" msgid "Check every" msgstr "Provjeri svaka" -#: src/Gtk/SettingsDialog.vala:143 +#: src/Gtk/SettingsDialog.vala:142 msgid "Hour(s)" msgstr "Sat(a)" -#: src/Gtk/SettingsDialog.vala:145 +#: src/Gtk/SettingsDialog.vala:144 msgid "Day(s)" msgstr "Dan(a)" -#: src/Gtk/SettingsDialog.vala:147 +#: src/Gtk/SettingsDialog.vala:146 msgid "Week(s)" msgstr "Tjedan(a)" -#: src/Gtk/SettingsDialog.vala:150 +#: src/Gtk/SettingsDialog.vala:149 msgid "Second(s)" msgstr "" -#: src/Gtk/SettingsDialog.vala:156 +#: src/Gtk/SettingsDialog.vala:155 msgid "Display" msgstr "Prikaz" -#: src/Gtk/SettingsDialog.vala:164 +#: src/Gtk/SettingsDialog.vala:163 msgid "Hide unstable and RC releases" msgstr "Sakrij nestabilne kernele i predizdanja" -#: src/Gtk/SettingsDialog.vala:178 +#: src/Gtk/SettingsDialog.vala:177 msgid "Show N previous major versions " msgstr "" -#: src/Gtk/SettingsDialog.vala:193 +#: src/Gtk/SettingsDialog.vala:192 msgid "Other" msgstr "" -#: src/Gtk/SettingsDialog.vala:201 +#: src/Gtk/SettingsDialog.vala:200 #, fuzzy msgid "Skip internet connection check" msgstr "Internet povezivanje nije aktivno" -#: src/Gtk/SettingsDialog.vala:214 +#: src/Gtk/SettingsDialog.vala:213 #, fuzzy msgid "Internet connection timeout in " msgstr "Internet povezivanje nije aktivno" -#: src/Gtk/SettingsDialog.vala:229 +#: src/Gtk/SettingsDialog.vala:228 msgid "seconds" msgstr "" -#: src/Gtk/SettingsDialog.vala:236 +#: src/Gtk/SettingsDialog.vala:235 msgid "Max concurrent downloads" msgstr "" diff --git a/po/messages.pot b/po/messages.pot index 5fd9ae38..385a30c7 100644 --- a/po/messages.pot +++ b/po/messages.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline 1.0.12\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-24 18:05-0400\n" +"POT-Creation-Date: 2020-05-29 13:05-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,132 +17,132 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" -#: src/Common/LinuxKernel.vala:92 +#: src/Common/LinuxKernel.vala:88 msgid "Distribution" msgstr "" -#: src/Common/LinuxKernel.vala:106 +#: src/Common/LinuxKernel.vala:102 msgid "Architecture" msgstr "" -#: src/Common/LinuxKernel.vala:305 +#: src/Common/LinuxKernel.vala:301 msgid "Fetching index..." msgstr "" -#: src/Common/LinuxKernel.vala:342 +#: src/Common/LinuxKernel.vala:338 msgid "Fetching index from kernel.ubuntu.com..." msgstr "" -#: src/Common/LinuxKernel.vala:601 +#: src/Common/LinuxKernel.vala:594 msgid "Could not find running kernel in list!" msgstr "" -#: src/Common/LinuxKernel.vala:607 +#: src/Common/LinuxKernel.vala:600 msgid "Could not find any kernels to remove" msgstr "" -#: src/Common/LinuxKernel.vala:616 +#: src/Common/LinuxKernel.vala:609 msgid "The following kernels will be removed:" msgstr "" -#: src/Common/LinuxKernel.vala:623 +#: src/Common/LinuxKernel.vala:616 msgid "Continue ?" msgstr "" -#: src/Common/LinuxKernel.vala:649 src/Console/AppConsole.vala:304 +#: src/Common/LinuxKernel.vala:642 src/Console/AppConsole.vala:304 msgid "Latest update" msgstr "" -#: src/Common/LinuxKernel.vala:660 src/Console/AppConsole.vala:311 +#: src/Common/LinuxKernel.vala:653 src/Console/AppConsole.vala:311 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:668 src/Console/AppConsole.vala:316 -#: src/Console/AppConsole.vala:374 +#: src/Common/LinuxKernel.vala:661 src/Console/AppConsole.vala:316 +#: src/Console/AppConsole.vala:377 msgid "No updates found" msgstr "" -#: src/Common/LinuxKernel.vala:678 +#: src/Common/LinuxKernel.vala:671 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "" -#: src/Common/LinuxKernel.vala:940 +#: src/Common/LinuxKernel.vala:908 msgid "Packages Available" msgstr "" -#: src/Common/LinuxKernel.vala:948 +#: src/Common/LinuxKernel.vala:916 msgid "Packages Installed" msgstr "" -#: src/Common/LinuxKernel.vala:1031 +#: src/Common/LinuxKernel.vala:997 msgid "Available Kernels" msgstr "" -#: src/Common/LinuxKernel.vala:1038 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1004 src/Gtk/MainWindow.vala:186 msgid "Installed" msgstr "" -#: src/Common/LinuxKernel.vala:1038 src/Gtk/MainWindow.vala:186 -#: src/Gtk/MainWindow.vala:625 src/Gtk/MainWindow.vala:639 +#: src/Common/LinuxKernel.vala:1004 src/Gtk/MainWindow.vala:186 +#: src/Gtk/MainWindow.vala:627 src/Gtk/MainWindow.vala:641 msgid "Running" msgstr "" -#: src/Common/LinuxKernel.vala:1075 +#: src/Common/LinuxKernel.vala:1041 msgid "Downloading" msgstr "" -#: src/Common/LinuxKernel.vala:1094 +#: src/Common/LinuxKernel.vala:1060 #: src/Utility/Gtk/CustomMessageDialog.vala:148 #: src/Utility/Gtk/CustomMessageDialog.vala:152 msgid "OK" msgstr "" -#: src/Common/LinuxKernel.vala:1099 +#: src/Common/LinuxKernel.vala:1065 msgid "ERROR" msgstr "" -#: src/Common/LinuxKernel.vala:1113 src/Gtk/MainWindow.vala:647 +#: src/Common/LinuxKernel.vala:1079 src/Gtk/MainWindow.vala:649 msgid "This kernel is already installed." msgstr "" -#: src/Common/LinuxKernel.vala:1139 +#: src/Common/LinuxKernel.vala:1105 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" -#: src/Common/LinuxKernel.vala:1142 +#: src/Common/LinuxKernel.vala:1108 msgid "Installation completed with errors" msgstr "" -#: src/Common/LinuxKernel.vala:1157 +#: src/Common/LinuxKernel.vala:1123 msgid "" "Selected kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." msgstr "" -#: src/Common/LinuxKernel.vala:1162 +#: src/Common/LinuxKernel.vala:1128 msgid "Preparing to remove selected kernels" msgstr "" -#: src/Common/LinuxKernel.vala:1193 src/Common/LinuxKernel.vala:1240 +#: src/Common/LinuxKernel.vala:1159 src/Common/LinuxKernel.vala:1206 msgid "Un-install completed" msgstr "" -#: src/Common/LinuxKernel.vala:1196 src/Common/LinuxKernel.vala:1243 +#: src/Common/LinuxKernel.vala:1162 src/Common/LinuxKernel.vala:1209 msgid "Un-install completed with errors" msgstr "" -#: src/Common/LinuxKernel.vala:1209 +#: src/Common/LinuxKernel.vala:1175 msgid "" "This kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." msgstr "" -#: src/Common/Main.vala:237 +#: src/Common/Main.vala:241 msgid "Called from" msgstr "" -#: src/Common/Main.vala:271 +#: src/Common/Main.vala:275 msgid "Notifications are disabled" msgstr "" @@ -269,16 +269,16 @@ msgstr "" msgid "to list all commands" msgstr "" -#: src/Console/AppConsole.vala:347 +#: src/Console/AppConsole.vala:350 msgid "Show" msgstr "" -#: src/Console/AppConsole.vala:352 src/Console/AppConsole.vala:364 +#: src/Console/AppConsole.vala:355 src/Console/AppConsole.vala:367 #, c-format msgid "Kernel %s Available" msgstr "" -#: src/Console/AppConsole.vala:354 src/Console/AppConsole.vala:366 +#: src/Console/AppConsole.vala:357 src/Console/AppConsole.vala:369 #: src/Gtk/MainWindow.vala:330 msgid "Install" msgstr "" @@ -307,8 +307,8 @@ msgstr "" msgid "Internet connection is not active" msgstr "" -#: src/Gtk/MainWindow.vala:321 src/Gtk/MainWindow.vala:522 -#: src/Gtk/MainWindow.vala:652 +#: src/Gtk/MainWindow.vala:321 src/Gtk/MainWindow.vala:524 +#: src/Gtk/MainWindow.vala:654 msgid "No Internet" msgstr "" @@ -337,7 +337,7 @@ msgid "Select the kernels to remove" msgstr "" #: src/Gtk/MainWindow.vala:383 src/Gtk/MainWindow.vala:417 -#: src/Gtk/MainWindow.vala:684 +#: src/Gtk/MainWindow.vala:686 msgid "Close window to exit..." msgstr "" @@ -353,35 +353,35 @@ msgstr "" msgid "Settings" msgstr "" -#: src/Gtk/MainWindow.vala:456 +#: src/Gtk/MainWindow.vala:458 msgid "About" msgstr "" -#: src/Gtk/MainWindow.vala:500 +#: src/Gtk/MainWindow.vala:502 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "" -#: src/Gtk/MainWindow.vala:501 +#: src/Gtk/MainWindow.vala:503 msgid "Forked" msgstr "" -#: src/Gtk/MainWindow.vala:501 +#: src/Gtk/MainWindow.vala:503 msgid "Original" msgstr "" -#: src/Gtk/MainWindow.vala:522 src/Gtk/MainWindow.vala:652 +#: src/Gtk/MainWindow.vala:524 src/Gtk/MainWindow.vala:654 msgid "Internet connection is not active." msgstr "" -#: src/Gtk/MainWindow.vala:541 +#: src/Gtk/MainWindow.vala:543 msgid "Refreshing..." msgstr "" -#: src/Gtk/MainWindow.vala:635 +#: src/Gtk/MainWindow.vala:637 msgid "available" msgstr "" -#: src/Gtk/MainWindow.vala:647 +#: src/Gtk/MainWindow.vala:649 msgid "Already Installed" msgstr "" @@ -410,51 +410,51 @@ msgstr "" msgid "Check every" msgstr "" -#: src/Gtk/SettingsDialog.vala:143 +#: src/Gtk/SettingsDialog.vala:142 msgid "Hour(s)" msgstr "" -#: src/Gtk/SettingsDialog.vala:145 +#: src/Gtk/SettingsDialog.vala:144 msgid "Day(s)" msgstr "" -#: src/Gtk/SettingsDialog.vala:147 +#: src/Gtk/SettingsDialog.vala:146 msgid "Week(s)" msgstr "" -#: src/Gtk/SettingsDialog.vala:150 +#: src/Gtk/SettingsDialog.vala:149 msgid "Second(s)" msgstr "" -#: src/Gtk/SettingsDialog.vala:156 +#: src/Gtk/SettingsDialog.vala:155 msgid "Display" msgstr "" -#: src/Gtk/SettingsDialog.vala:164 +#: src/Gtk/SettingsDialog.vala:163 msgid "Hide unstable and RC releases" msgstr "" -#: src/Gtk/SettingsDialog.vala:178 +#: src/Gtk/SettingsDialog.vala:177 msgid "Show N previous major versions " msgstr "" -#: src/Gtk/SettingsDialog.vala:193 +#: src/Gtk/SettingsDialog.vala:192 msgid "Other" msgstr "" -#: src/Gtk/SettingsDialog.vala:201 +#: src/Gtk/SettingsDialog.vala:200 msgid "Skip internet connection check" msgstr "" -#: src/Gtk/SettingsDialog.vala:214 +#: src/Gtk/SettingsDialog.vala:213 msgid "Internet connection timeout in " msgstr "" -#: src/Gtk/SettingsDialog.vala:229 +#: src/Gtk/SettingsDialog.vala:228 msgid "seconds" msgstr "" -#: src/Gtk/SettingsDialog.vala:236 +#: src/Gtk/SettingsDialog.vala:235 msgid "Max concurrent downloads" msgstr "" diff --git a/po/nl.po b/po/nl.po index 2c19579e..0965b08f 100644 --- a/po/nl.po +++ b/po/nl.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-24 18:05-0400\n" +"POT-Creation-Date: 2020-05-29 13:05-0400\n" "PO-Revision-Date: 2017-04-30 11:50+0200\n" "Last-Translator: Heimen Stoffels \n" "Language-Team: \n" @@ -13,109 +13,109 @@ msgstr "" "X-Generator: Poedit 2.0.1\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: src/Common/LinuxKernel.vala:92 +#: src/Common/LinuxKernel.vala:88 msgid "Distribution" msgstr "Distributie" -#: src/Common/LinuxKernel.vala:106 +#: src/Common/LinuxKernel.vala:102 #, fuzzy msgid "Architecture" msgstr "Systeemarchitectuur" -#: src/Common/LinuxKernel.vala:305 +#: src/Common/LinuxKernel.vala:301 msgid "Fetching index..." msgstr "" -#: src/Common/LinuxKernel.vala:342 +#: src/Common/LinuxKernel.vala:338 msgid "Fetching index from kernel.ubuntu.com..." msgstr "Bezig met ophalen van index van kernel.ubuntu.com..." -#: src/Common/LinuxKernel.vala:601 +#: src/Common/LinuxKernel.vala:594 #, fuzzy msgid "Could not find running kernel in list!" msgstr "De vereiste versie kan niet worden gevonden" -#: src/Common/LinuxKernel.vala:607 +#: src/Common/LinuxKernel.vala:600 #, fuzzy msgid "Could not find any kernels to remove" msgstr "Selecteer de te verwijderen kernels" -#: src/Common/LinuxKernel.vala:616 +#: src/Common/LinuxKernel.vala:609 msgid "The following kernels will be removed:" msgstr "" -#: src/Common/LinuxKernel.vala:623 +#: src/Common/LinuxKernel.vala:616 msgid "Continue ?" msgstr "" -#: src/Common/LinuxKernel.vala:649 src/Console/AppConsole.vala:304 +#: src/Common/LinuxKernel.vala:642 src/Console/AppConsole.vala:304 msgid "Latest update" msgstr "" -#: src/Common/LinuxKernel.vala:660 src/Console/AppConsole.vala:311 +#: src/Common/LinuxKernel.vala:653 src/Console/AppConsole.vala:311 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:668 src/Console/AppConsole.vala:316 -#: src/Console/AppConsole.vala:374 +#: src/Common/LinuxKernel.vala:661 src/Console/AppConsole.vala:316 +#: src/Console/AppConsole.vala:377 msgid "No updates found" msgstr "Geen updates gevonden" -#: src/Common/LinuxKernel.vala:678 +#: src/Common/LinuxKernel.vala:671 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "" -#: src/Common/LinuxKernel.vala:940 +#: src/Common/LinuxKernel.vala:908 msgid "Packages Available" msgstr "Beschikbare pakketten" -#: src/Common/LinuxKernel.vala:948 +#: src/Common/LinuxKernel.vala:916 msgid "Packages Installed" msgstr "Geïnstalleerde pakketten" -#: src/Common/LinuxKernel.vala:1031 +#: src/Common/LinuxKernel.vala:997 msgid "Available Kernels" msgstr "Beschikbare kernels" -#: src/Common/LinuxKernel.vala:1038 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1004 src/Gtk/MainWindow.vala:186 msgid "Installed" msgstr "Geïnstalleerd" -#: src/Common/LinuxKernel.vala:1038 src/Gtk/MainWindow.vala:186 -#: src/Gtk/MainWindow.vala:625 src/Gtk/MainWindow.vala:639 +#: src/Common/LinuxKernel.vala:1004 src/Gtk/MainWindow.vala:186 +#: src/Gtk/MainWindow.vala:627 src/Gtk/MainWindow.vala:641 msgid "Running" msgstr "Bezig met draaien" -#: src/Common/LinuxKernel.vala:1075 +#: src/Common/LinuxKernel.vala:1041 msgid "Downloading" msgstr "Bezig met downloaden" -#: src/Common/LinuxKernel.vala:1094 +#: src/Common/LinuxKernel.vala:1060 #: src/Utility/Gtk/CustomMessageDialog.vala:148 #: src/Utility/Gtk/CustomMessageDialog.vala:152 msgid "OK" msgstr "Oké" -#: src/Common/LinuxKernel.vala:1099 +#: src/Common/LinuxKernel.vala:1065 msgid "ERROR" msgstr "FOUT" -#: src/Common/LinuxKernel.vala:1113 src/Gtk/MainWindow.vala:647 +#: src/Common/LinuxKernel.vala:1079 src/Gtk/MainWindow.vala:649 msgid "This kernel is already installed." msgstr "Deze kernel is al geïnstalleerd." -#: src/Common/LinuxKernel.vala:1139 +#: src/Common/LinuxKernel.vala:1105 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "De installatie is voltooid. Herstart de computer om de nieuwe kernel te " "gebruiken." -#: src/Common/LinuxKernel.vala:1142 +#: src/Common/LinuxKernel.vala:1108 msgid "Installation completed with errors" msgstr "De installatie is foutloos voltooid" -#: src/Common/LinuxKernel.vala:1157 +#: src/Common/LinuxKernel.vala:1123 msgid "" "Selected kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -124,19 +124,19 @@ msgstr "" "verwijderd.\n" " Installeer een andere kernel voordat u deze verwijdert." -#: src/Common/LinuxKernel.vala:1162 +#: src/Common/LinuxKernel.vala:1128 msgid "Preparing to remove selected kernels" msgstr "Bezig met voorbereiden van verwijderen van geselecteerde kernels" -#: src/Common/LinuxKernel.vala:1193 src/Common/LinuxKernel.vala:1240 +#: src/Common/LinuxKernel.vala:1159 src/Common/LinuxKernel.vala:1206 msgid "Un-install completed" msgstr "Deïnstalleren voltooid" -#: src/Common/LinuxKernel.vala:1196 src/Common/LinuxKernel.vala:1243 +#: src/Common/LinuxKernel.vala:1162 src/Common/LinuxKernel.vala:1209 msgid "Un-install completed with errors" msgstr "Deïnstalleren voltooid, maar met fouten" -#: src/Common/LinuxKernel.vala:1209 +#: src/Common/LinuxKernel.vala:1175 msgid "" "This kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -144,11 +144,11 @@ msgstr "" "Deze kernel is momenteel in gebruik en kan daarom niet worden verwijderd.\n" " Installeer een andere kernel voordat u deze verwijdert." -#: src/Common/Main.vala:237 +#: src/Common/Main.vala:241 msgid "Called from" msgstr "" -#: src/Common/Main.vala:271 +#: src/Common/Main.vala:275 #, fuzzy msgid "Notifications are disabled" msgstr "Melding" @@ -287,16 +287,16 @@ msgstr "" msgid "to list all commands" msgstr "Alle opties weergeven" -#: src/Console/AppConsole.vala:347 +#: src/Console/AppConsole.vala:350 msgid "Show" msgstr "" -#: src/Console/AppConsole.vala:352 src/Console/AppConsole.vala:364 +#: src/Console/AppConsole.vala:355 src/Console/AppConsole.vala:367 #, fuzzy, c-format msgid "Kernel %s Available" msgstr "Beschikbare pakketten" -#: src/Console/AppConsole.vala:354 src/Console/AppConsole.vala:366 +#: src/Console/AppConsole.vala:357 src/Console/AppConsole.vala:369 #: src/Gtk/MainWindow.vala:330 msgid "Install" msgstr "Installeren" @@ -325,8 +325,8 @@ msgstr "Verversen" msgid "Internet connection is not active" msgstr "U bent niet verbonden met het internet" -#: src/Gtk/MainWindow.vala:321 src/Gtk/MainWindow.vala:522 -#: src/Gtk/MainWindow.vala:652 +#: src/Gtk/MainWindow.vala:321 src/Gtk/MainWindow.vala:524 +#: src/Gtk/MainWindow.vala:654 msgid "No Internet" msgstr "Geen internetverbinding" @@ -355,7 +355,7 @@ msgid "Select the kernels to remove" msgstr "Selecteer de te verwijderen kernels" #: src/Gtk/MainWindow.vala:383 src/Gtk/MainWindow.vala:417 -#: src/Gtk/MainWindow.vala:684 +#: src/Gtk/MainWindow.vala:686 msgid "Close window to exit..." msgstr "" @@ -371,37 +371,37 @@ msgstr "Wijzigingen" msgid "Settings" msgstr "Instellingen" -#: src/Gtk/MainWindow.vala:456 +#: src/Gtk/MainWindow.vala:458 msgid "About" msgstr "Over" -#: src/Gtk/MainWindow.vala:500 +#: src/Gtk/MainWindow.vala:502 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Kernel-upgradehulpmiddel voor op Ubuntu-gebaseerde distributies" -#: src/Gtk/MainWindow.vala:501 +#: src/Gtk/MainWindow.vala:503 msgid "Forked" msgstr "" -#: src/Gtk/MainWindow.vala:501 +#: src/Gtk/MainWindow.vala:503 msgid "Original" msgstr "" -#: src/Gtk/MainWindow.vala:522 src/Gtk/MainWindow.vala:652 +#: src/Gtk/MainWindow.vala:524 src/Gtk/MainWindow.vala:654 #, fuzzy msgid "Internet connection is not active." msgstr "U bent niet verbonden met het internet" -#: src/Gtk/MainWindow.vala:541 +#: src/Gtk/MainWindow.vala:543 msgid "Refreshing..." msgstr "Bezig met verversen..." -#: src/Gtk/MainWindow.vala:635 +#: src/Gtk/MainWindow.vala:637 #, fuzzy msgid "available" msgstr "Beschikbare pakketten" -#: src/Gtk/MainWindow.vala:647 +#: src/Gtk/MainWindow.vala:649 #, fuzzy msgid "Already Installed" msgstr "Geïnstalleerd" @@ -431,53 +431,53 @@ msgstr "" msgid "Check every" msgstr "Controleer elke" -#: src/Gtk/SettingsDialog.vala:143 +#: src/Gtk/SettingsDialog.vala:142 msgid "Hour(s)" msgstr "uur" -#: src/Gtk/SettingsDialog.vala:145 +#: src/Gtk/SettingsDialog.vala:144 msgid "Day(s)" msgstr "dag(en)" -#: src/Gtk/SettingsDialog.vala:147 +#: src/Gtk/SettingsDialog.vala:146 msgid "Week(s)" msgstr "we(e)k(en)" -#: src/Gtk/SettingsDialog.vala:150 +#: src/Gtk/SettingsDialog.vala:149 msgid "Second(s)" msgstr "" -#: src/Gtk/SettingsDialog.vala:156 +#: src/Gtk/SettingsDialog.vala:155 msgid "Display" msgstr "Weergave" -#: src/Gtk/SettingsDialog.vala:164 +#: src/Gtk/SettingsDialog.vala:163 msgid "Hide unstable and RC releases" msgstr "Instabiele en RC-uitgaven verbergen" -#: src/Gtk/SettingsDialog.vala:178 +#: src/Gtk/SettingsDialog.vala:177 msgid "Show N previous major versions " msgstr "" -#: src/Gtk/SettingsDialog.vala:193 +#: src/Gtk/SettingsDialog.vala:192 msgid "Other" msgstr "" -#: src/Gtk/SettingsDialog.vala:201 +#: src/Gtk/SettingsDialog.vala:200 #, fuzzy msgid "Skip internet connection check" msgstr "U bent niet verbonden met het internet" -#: src/Gtk/SettingsDialog.vala:214 +#: src/Gtk/SettingsDialog.vala:213 #, fuzzy msgid "Internet connection timeout in " msgstr "U bent niet verbonden met het internet" -#: src/Gtk/SettingsDialog.vala:229 +#: src/Gtk/SettingsDialog.vala:228 msgid "seconds" msgstr "" -#: src/Gtk/SettingsDialog.vala:236 +#: src/Gtk/SettingsDialog.vala:235 msgid "Max concurrent downloads" msgstr "" diff --git a/po/pl.po b/po/pl.po index a269c075..d65a2cdc 100644 --- a/po/pl.po +++ b/po/pl.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-24 18:05-0400\n" +"POT-Creation-Date: 2020-05-29 13:05-0400\n" "PO-Revision-Date: 2017-08-12 15:26+0200\n" "Last-Translator: Waldemar Konik \n" "Language-Team: Polish\n" @@ -12,109 +12,109 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Poedit 1.8.7.1\n" -#: src/Common/LinuxKernel.vala:92 +#: src/Common/LinuxKernel.vala:88 msgid "Distribution" msgstr "Dystrybucja" -#: src/Common/LinuxKernel.vala:106 +#: src/Common/LinuxKernel.vala:102 #, fuzzy msgid "Architecture" msgstr "Architektura systemu" -#: src/Common/LinuxKernel.vala:305 +#: src/Common/LinuxKernel.vala:301 msgid "Fetching index..." msgstr "" -#: src/Common/LinuxKernel.vala:342 +#: src/Common/LinuxKernel.vala:338 msgid "Fetching index from kernel.ubuntu.com..." msgstr "Pobieranie indeksu z kernel.ubuntu.com..." -#: src/Common/LinuxKernel.vala:601 +#: src/Common/LinuxKernel.vala:594 #, fuzzy msgid "Could not find running kernel in list!" msgstr "Nie można odnaleźć żądanej wersji" -#: src/Common/LinuxKernel.vala:607 +#: src/Common/LinuxKernel.vala:600 #, fuzzy msgid "Could not find any kernels to remove" msgstr "Wybierz jądro do usunięcia" -#: src/Common/LinuxKernel.vala:616 +#: src/Common/LinuxKernel.vala:609 msgid "The following kernels will be removed:" msgstr "" -#: src/Common/LinuxKernel.vala:623 +#: src/Common/LinuxKernel.vala:616 msgid "Continue ?" msgstr "" -#: src/Common/LinuxKernel.vala:649 src/Console/AppConsole.vala:304 +#: src/Common/LinuxKernel.vala:642 src/Console/AppConsole.vala:304 msgid "Latest update" msgstr "" -#: src/Common/LinuxKernel.vala:660 src/Console/AppConsole.vala:311 +#: src/Common/LinuxKernel.vala:653 src/Console/AppConsole.vala:311 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:668 src/Console/AppConsole.vala:316 -#: src/Console/AppConsole.vala:374 +#: src/Common/LinuxKernel.vala:661 src/Console/AppConsole.vala:316 +#: src/Console/AppConsole.vala:377 msgid "No updates found" msgstr "Nie znaleziono aktualizacji" -#: src/Common/LinuxKernel.vala:678 +#: src/Common/LinuxKernel.vala:671 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "" -#: src/Common/LinuxKernel.vala:940 +#: src/Common/LinuxKernel.vala:908 msgid "Packages Available" msgstr "Dostępne pakiety" -#: src/Common/LinuxKernel.vala:948 +#: src/Common/LinuxKernel.vala:916 msgid "Packages Installed" msgstr "Pakiety zainstalowane" -#: src/Common/LinuxKernel.vala:1031 +#: src/Common/LinuxKernel.vala:997 msgid "Available Kernels" msgstr "Dostępne jądra" -#: src/Common/LinuxKernel.vala:1038 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1004 src/Gtk/MainWindow.vala:186 msgid "Installed" msgstr "Zainstalowany" -#: src/Common/LinuxKernel.vala:1038 src/Gtk/MainWindow.vala:186 -#: src/Gtk/MainWindow.vala:625 src/Gtk/MainWindow.vala:639 +#: src/Common/LinuxKernel.vala:1004 src/Gtk/MainWindow.vala:186 +#: src/Gtk/MainWindow.vala:627 src/Gtk/MainWindow.vala:641 msgid "Running" msgstr "Uruchomiony" -#: src/Common/LinuxKernel.vala:1075 +#: src/Common/LinuxKernel.vala:1041 msgid "Downloading" msgstr "Pobieranie" -#: src/Common/LinuxKernel.vala:1094 +#: src/Common/LinuxKernel.vala:1060 #: src/Utility/Gtk/CustomMessageDialog.vala:148 #: src/Utility/Gtk/CustomMessageDialog.vala:152 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:1099 +#: src/Common/LinuxKernel.vala:1065 msgid "ERROR" msgstr "BŁĄD" -#: src/Common/LinuxKernel.vala:1113 src/Gtk/MainWindow.vala:647 +#: src/Common/LinuxKernel.vala:1079 src/Gtk/MainWindow.vala:649 msgid "This kernel is already installed." msgstr "To jądro jest już zainstalowane." -#: src/Common/LinuxKernel.vala:1139 +#: src/Common/LinuxKernel.vala:1105 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "Instalacja zakończona. Aby korzystać z nowego jądra, konieczne jest ponowne " "uruchomienie." -#: src/Common/LinuxKernel.vala:1142 +#: src/Common/LinuxKernel.vala:1108 msgid "Installation completed with errors" msgstr "Instalacja zakończona z błędami" -#: src/Common/LinuxKernel.vala:1157 +#: src/Common/LinuxKernel.vala:1123 msgid "" "Selected kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -122,19 +122,19 @@ msgstr "" "Wybrane jądro aktualnie działa i nie może zostać usunięte.\n" " Zainstaluj inne jądro przed usunięciem tego." -#: src/Common/LinuxKernel.vala:1162 +#: src/Common/LinuxKernel.vala:1128 msgid "Preparing to remove selected kernels" msgstr "Przygotowanie do usunięcia wybranych jąder" -#: src/Common/LinuxKernel.vala:1193 src/Common/LinuxKernel.vala:1240 +#: src/Common/LinuxKernel.vala:1159 src/Common/LinuxKernel.vala:1206 msgid "Un-install completed" msgstr "De-instalacja zakończona" -#: src/Common/LinuxKernel.vala:1196 src/Common/LinuxKernel.vala:1243 +#: src/Common/LinuxKernel.vala:1162 src/Common/LinuxKernel.vala:1209 msgid "Un-install completed with errors" msgstr "De-instalacja zakończona z błędami" -#: src/Common/LinuxKernel.vala:1209 +#: src/Common/LinuxKernel.vala:1175 msgid "" "This kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -142,11 +142,11 @@ msgstr "" "To jądro aktualnie działa i nie może zostać usunięte.\n" " Zainstaluj inne jądro przed usunięciem tego." -#: src/Common/Main.vala:237 +#: src/Common/Main.vala:241 msgid "Called from" msgstr "" -#: src/Common/Main.vala:271 +#: src/Common/Main.vala:275 #, fuzzy msgid "Notifications are disabled" msgstr "Powiadomienia" @@ -283,16 +283,16 @@ msgstr "" msgid "to list all commands" msgstr "Pokaż wszystkie opcje" -#: src/Console/AppConsole.vala:347 +#: src/Console/AppConsole.vala:350 msgid "Show" msgstr "" -#: src/Console/AppConsole.vala:352 src/Console/AppConsole.vala:364 +#: src/Console/AppConsole.vala:355 src/Console/AppConsole.vala:367 #, fuzzy, c-format msgid "Kernel %s Available" msgstr "Dostępne pakiety" -#: src/Console/AppConsole.vala:354 src/Console/AppConsole.vala:366 +#: src/Console/AppConsole.vala:357 src/Console/AppConsole.vala:369 #: src/Gtk/MainWindow.vala:330 msgid "Install" msgstr "Zainstaluj" @@ -321,8 +321,8 @@ msgstr "Odśwież" msgid "Internet connection is not active" msgstr "Brak połączenia z internetem" -#: src/Gtk/MainWindow.vala:321 src/Gtk/MainWindow.vala:522 -#: src/Gtk/MainWindow.vala:652 +#: src/Gtk/MainWindow.vala:321 src/Gtk/MainWindow.vala:524 +#: src/Gtk/MainWindow.vala:654 msgid "No Internet" msgstr "Brak internetu" @@ -351,7 +351,7 @@ msgid "Select the kernels to remove" msgstr "Wybierz jądro do usunięcia" #: src/Gtk/MainWindow.vala:383 src/Gtk/MainWindow.vala:417 -#: src/Gtk/MainWindow.vala:684 +#: src/Gtk/MainWindow.vala:686 msgid "Close window to exit..." msgstr "" @@ -367,37 +367,37 @@ msgstr "Zmiany" msgid "Settings" msgstr "Ustawienia" -#: src/Gtk/MainWindow.vala:456 +#: src/Gtk/MainWindow.vala:458 msgid "About" msgstr "O programie" -#: src/Gtk/MainWindow.vala:500 +#: src/Gtk/MainWindow.vala:502 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Narzędzie uaktualniania jądra dla dystrybucji z rodziny Ubuntu" -#: src/Gtk/MainWindow.vala:501 +#: src/Gtk/MainWindow.vala:503 msgid "Forked" msgstr "" -#: src/Gtk/MainWindow.vala:501 +#: src/Gtk/MainWindow.vala:503 msgid "Original" msgstr "" -#: src/Gtk/MainWindow.vala:522 src/Gtk/MainWindow.vala:652 +#: src/Gtk/MainWindow.vala:524 src/Gtk/MainWindow.vala:654 #, fuzzy msgid "Internet connection is not active." msgstr "Brak połączenia z internetem" -#: src/Gtk/MainWindow.vala:541 +#: src/Gtk/MainWindow.vala:543 msgid "Refreshing..." msgstr "Odświeżam..." -#: src/Gtk/MainWindow.vala:635 +#: src/Gtk/MainWindow.vala:637 #, fuzzy msgid "available" msgstr "Dostępne pakiety" -#: src/Gtk/MainWindow.vala:647 +#: src/Gtk/MainWindow.vala:649 #, fuzzy msgid "Already Installed" msgstr "Zainstalowany" @@ -427,53 +427,53 @@ msgstr "" msgid "Check every" msgstr "Sprawdzaj co" -#: src/Gtk/SettingsDialog.vala:143 +#: src/Gtk/SettingsDialog.vala:142 msgid "Hour(s)" msgstr "Godzin(y)" -#: src/Gtk/SettingsDialog.vala:145 +#: src/Gtk/SettingsDialog.vala:144 msgid "Day(s)" msgstr "Dni" -#: src/Gtk/SettingsDialog.vala:147 +#: src/Gtk/SettingsDialog.vala:146 msgid "Week(s)" msgstr "Tygodni" -#: src/Gtk/SettingsDialog.vala:150 +#: src/Gtk/SettingsDialog.vala:149 msgid "Second(s)" msgstr "" -#: src/Gtk/SettingsDialog.vala:156 +#: src/Gtk/SettingsDialog.vala:155 msgid "Display" msgstr "Pokaż" -#: src/Gtk/SettingsDialog.vala:164 +#: src/Gtk/SettingsDialog.vala:163 msgid "Hide unstable and RC releases" msgstr "Ukryj wydania niestabilne i RC" -#: src/Gtk/SettingsDialog.vala:178 +#: src/Gtk/SettingsDialog.vala:177 msgid "Show N previous major versions " msgstr "" -#: src/Gtk/SettingsDialog.vala:193 +#: src/Gtk/SettingsDialog.vala:192 msgid "Other" msgstr "" -#: src/Gtk/SettingsDialog.vala:201 +#: src/Gtk/SettingsDialog.vala:200 #, fuzzy msgid "Skip internet connection check" msgstr "Brak połączenia z internetem" -#: src/Gtk/SettingsDialog.vala:214 +#: src/Gtk/SettingsDialog.vala:213 #, fuzzy msgid "Internet connection timeout in " msgstr "Brak połączenia z internetem" -#: src/Gtk/SettingsDialog.vala:229 +#: src/Gtk/SettingsDialog.vala:228 msgid "seconds" msgstr "" -#: src/Gtk/SettingsDialog.vala:236 +#: src/Gtk/SettingsDialog.vala:235 msgid "Max concurrent downloads" msgstr "" diff --git a/po/ru.po b/po/ru.po index 15388ff2..d3a0e46f 100644 --- a/po/ru.po +++ b/po/ru.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-24 18:05-0400\n" +"POT-Creation-Date: 2020-05-29 13:05-0400\n" "PO-Revision-Date: 2016-12-13 16:46+0300\n" "Last-Translator: Faust3000 \n" "Language-Team: Russian \n" @@ -13,111 +13,111 @@ msgstr "" "X-Launchpad-Export-Date: 2016-12-13 11:48+0000\n" "X-Generator: Poedit 1.8.7.1\n" -#: src/Common/LinuxKernel.vala:92 +#: src/Common/LinuxKernel.vala:88 msgid "Distribution" msgstr "Дистрибутив" -#: src/Common/LinuxKernel.vala:106 +#: src/Common/LinuxKernel.vala:102 #, fuzzy msgid "Architecture" msgstr "Системная архитектура" -#: src/Common/LinuxKernel.vala:305 +#: src/Common/LinuxKernel.vala:301 msgid "Fetching index..." msgstr "" -#: src/Common/LinuxKernel.vala:342 +#: src/Common/LinuxKernel.vala:338 msgid "Fetching index from kernel.ubuntu.com..." msgstr "Получение сведений с kernel.ubuntu.com..." -#: src/Common/LinuxKernel.vala:601 +#: src/Common/LinuxKernel.vala:594 #, fuzzy msgid "Could not find running kernel in list!" msgstr "Не удалось найти запрошенную версию" -#: src/Common/LinuxKernel.vala:607 +#: src/Common/LinuxKernel.vala:600 #, fuzzy msgid "Could not find any kernels to remove" msgstr "Не удалось найти запрошенную версию" -#: src/Common/LinuxKernel.vala:616 +#: src/Common/LinuxKernel.vala:609 msgid "The following kernels will be removed:" msgstr "" -#: src/Common/LinuxKernel.vala:623 +#: src/Common/LinuxKernel.vala:616 msgid "Continue ?" msgstr "" -#: src/Common/LinuxKernel.vala:649 src/Console/AppConsole.vala:304 +#: src/Common/LinuxKernel.vala:642 src/Console/AppConsole.vala:304 msgid "Latest update" msgstr "" -#: src/Common/LinuxKernel.vala:660 src/Console/AppConsole.vala:311 +#: src/Common/LinuxKernel.vala:653 src/Console/AppConsole.vala:311 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:668 src/Console/AppConsole.vala:316 -#: src/Console/AppConsole.vala:374 +#: src/Common/LinuxKernel.vala:661 src/Console/AppConsole.vala:316 +#: src/Console/AppConsole.vala:377 msgid "No updates found" msgstr "Обновлений не найдено" -#: src/Common/LinuxKernel.vala:678 +#: src/Common/LinuxKernel.vala:671 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "" -#: src/Common/LinuxKernel.vala:940 +#: src/Common/LinuxKernel.vala:908 #, fuzzy msgid "Packages Available" msgstr "Установлено" -#: src/Common/LinuxKernel.vala:948 +#: src/Common/LinuxKernel.vala:916 #, fuzzy msgid "Packages Installed" msgstr "Установлено" -#: src/Common/LinuxKernel.vala:1031 +#: src/Common/LinuxKernel.vala:997 msgid "Available Kernels" msgstr "Доступные ядра" -#: src/Common/LinuxKernel.vala:1038 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1004 src/Gtk/MainWindow.vala:186 msgid "Installed" msgstr "Установлено" -#: src/Common/LinuxKernel.vala:1038 src/Gtk/MainWindow.vala:186 -#: src/Gtk/MainWindow.vala:625 src/Gtk/MainWindow.vala:639 +#: src/Common/LinuxKernel.vala:1004 src/Gtk/MainWindow.vala:186 +#: src/Gtk/MainWindow.vala:627 src/Gtk/MainWindow.vala:641 msgid "Running" msgstr "Используется" -#: src/Common/LinuxKernel.vala:1075 +#: src/Common/LinuxKernel.vala:1041 msgid "Downloading" msgstr "Загрузка" -#: src/Common/LinuxKernel.vala:1094 +#: src/Common/LinuxKernel.vala:1060 #: src/Utility/Gtk/CustomMessageDialog.vala:148 #: src/Utility/Gtk/CustomMessageDialog.vala:152 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:1099 +#: src/Common/LinuxKernel.vala:1065 msgid "ERROR" msgstr "ОШИБКА" -#: src/Common/LinuxKernel.vala:1113 src/Gtk/MainWindow.vala:647 +#: src/Common/LinuxKernel.vala:1079 src/Gtk/MainWindow.vala:649 msgid "This kernel is already installed." msgstr "Это ядро уже установлено." -#: src/Common/LinuxKernel.vala:1139 +#: src/Common/LinuxKernel.vala:1105 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "Установка завершена. Обязательно выполните перезагрузку, чтобы использовать " "новое ядро." -#: src/Common/LinuxKernel.vala:1142 +#: src/Common/LinuxKernel.vala:1108 msgid "Installation completed with errors" msgstr "Установка завершена с ошибками" -#: src/Common/LinuxKernel.vala:1157 +#: src/Common/LinuxKernel.vala:1123 #, fuzzy msgid "" "Selected kernel is currently running and cannot be removed.\n" @@ -126,19 +126,19 @@ msgstr "" "Это ядро в настоящий момент работает и не может быть удалено.\n" " Установите другое ядро, прежде чем удалять его." -#: src/Common/LinuxKernel.vala:1162 +#: src/Common/LinuxKernel.vala:1128 msgid "Preparing to remove selected kernels" msgstr "" -#: src/Common/LinuxKernel.vala:1193 src/Common/LinuxKernel.vala:1240 +#: src/Common/LinuxKernel.vala:1159 src/Common/LinuxKernel.vala:1206 msgid "Un-install completed" msgstr "Удаление завершено" -#: src/Common/LinuxKernel.vala:1196 src/Common/LinuxKernel.vala:1243 +#: src/Common/LinuxKernel.vala:1162 src/Common/LinuxKernel.vala:1209 msgid "Un-install completed with errors" msgstr "Удаление завершено с ошибками" -#: src/Common/LinuxKernel.vala:1209 +#: src/Common/LinuxKernel.vala:1175 msgid "" "This kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -146,11 +146,11 @@ msgstr "" "Это ядро в настоящий момент работает и не может быть удалено.\n" " Установите другое ядро, прежде чем удалять его." -#: src/Common/Main.vala:237 +#: src/Common/Main.vala:241 msgid "Called from" msgstr "" -#: src/Common/Main.vala:271 +#: src/Common/Main.vala:275 #, fuzzy msgid "Notifications are disabled" msgstr "Уведомления" @@ -287,16 +287,16 @@ msgstr "" msgid "to list all commands" msgstr "Показать все параметры" -#: src/Console/AppConsole.vala:347 +#: src/Console/AppConsole.vala:350 msgid "Show" msgstr "" -#: src/Console/AppConsole.vala:352 src/Console/AppConsole.vala:364 +#: src/Console/AppConsole.vala:355 src/Console/AppConsole.vala:367 #, fuzzy, c-format msgid "Kernel %s Available" msgstr "Установлено" -#: src/Console/AppConsole.vala:354 src/Console/AppConsole.vala:366 +#: src/Console/AppConsole.vala:357 src/Console/AppConsole.vala:369 #: src/Gtk/MainWindow.vala:330 msgid "Install" msgstr "Установить" @@ -325,8 +325,8 @@ msgstr "Обновить" msgid "Internet connection is not active" msgstr "Интернет соединение не активно" -#: src/Gtk/MainWindow.vala:321 src/Gtk/MainWindow.vala:522 -#: src/Gtk/MainWindow.vala:652 +#: src/Gtk/MainWindow.vala:321 src/Gtk/MainWindow.vala:524 +#: src/Gtk/MainWindow.vala:654 msgid "No Internet" msgstr "" @@ -355,7 +355,7 @@ msgid "Select the kernels to remove" msgstr "" #: src/Gtk/MainWindow.vala:383 src/Gtk/MainWindow.vala:417 -#: src/Gtk/MainWindow.vala:684 +#: src/Gtk/MainWindow.vala:686 msgid "Close window to exit..." msgstr "" @@ -371,37 +371,37 @@ msgstr "Изменения" msgid "Settings" msgstr "Настройки" -#: src/Gtk/MainWindow.vala:456 +#: src/Gtk/MainWindow.vala:458 msgid "About" msgstr "О программе" -#: src/Gtk/MainWindow.vala:500 +#: src/Gtk/MainWindow.vala:502 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Программа обновления ядра для дистрибутивов на базе Ubuntu" -#: src/Gtk/MainWindow.vala:501 +#: src/Gtk/MainWindow.vala:503 msgid "Forked" msgstr "" -#: src/Gtk/MainWindow.vala:501 +#: src/Gtk/MainWindow.vala:503 msgid "Original" msgstr "" -#: src/Gtk/MainWindow.vala:522 src/Gtk/MainWindow.vala:652 +#: src/Gtk/MainWindow.vala:524 src/Gtk/MainWindow.vala:654 #, fuzzy msgid "Internet connection is not active." msgstr "Интернет соединение не активно" -#: src/Gtk/MainWindow.vala:541 +#: src/Gtk/MainWindow.vala:543 msgid "Refreshing..." msgstr "Обновление..." -#: src/Gtk/MainWindow.vala:635 +#: src/Gtk/MainWindow.vala:637 #, fuzzy msgid "available" msgstr "Установлено" -#: src/Gtk/MainWindow.vala:647 +#: src/Gtk/MainWindow.vala:649 #, fuzzy msgid "Already Installed" msgstr "Установлено" @@ -431,53 +431,53 @@ msgstr "" msgid "Check every" msgstr "Проверять каждые" -#: src/Gtk/SettingsDialog.vala:143 +#: src/Gtk/SettingsDialog.vala:142 msgid "Hour(s)" msgstr "Час(ов)" -#: src/Gtk/SettingsDialog.vala:145 +#: src/Gtk/SettingsDialog.vala:144 msgid "Day(s)" msgstr "День(дней)" -#: src/Gtk/SettingsDialog.vala:147 +#: src/Gtk/SettingsDialog.vala:146 msgid "Week(s)" msgstr "Неделю(ли)" -#: src/Gtk/SettingsDialog.vala:150 +#: src/Gtk/SettingsDialog.vala:149 msgid "Second(s)" msgstr "" -#: src/Gtk/SettingsDialog.vala:156 +#: src/Gtk/SettingsDialog.vala:155 msgid "Display" msgstr "Вид" -#: src/Gtk/SettingsDialog.vala:164 +#: src/Gtk/SettingsDialog.vala:163 msgid "Hide unstable and RC releases" msgstr "Скрыть нестабильные и релиз-кандидат версии" -#: src/Gtk/SettingsDialog.vala:178 +#: src/Gtk/SettingsDialog.vala:177 msgid "Show N previous major versions " msgstr "" -#: src/Gtk/SettingsDialog.vala:193 +#: src/Gtk/SettingsDialog.vala:192 msgid "Other" msgstr "" -#: src/Gtk/SettingsDialog.vala:201 +#: src/Gtk/SettingsDialog.vala:200 #, fuzzy msgid "Skip internet connection check" msgstr "Интернет соединение не активно" -#: src/Gtk/SettingsDialog.vala:214 +#: src/Gtk/SettingsDialog.vala:213 #, fuzzy msgid "Internet connection timeout in " msgstr "Интернет соединение не активно" -#: src/Gtk/SettingsDialog.vala:229 +#: src/Gtk/SettingsDialog.vala:228 msgid "seconds" msgstr "" -#: src/Gtk/SettingsDialog.vala:236 +#: src/Gtk/SettingsDialog.vala:235 msgid "Max concurrent downloads" msgstr "" diff --git a/po/sv.po b/po/sv.po index 358af727..7f600bac 100644 --- a/po/sv.po +++ b/po/sv.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-24 18:05-0400\n" +"POT-Creation-Date: 2020-05-29 13:05-0400\n" "PO-Revision-Date: 2018-01-13 16:56+0100\n" "Last-Translator: Åke Engelbrektson \n" "Language-Team: Svenska Språkfiler \n" @@ -13,108 +13,108 @@ msgstr "" "X-Generator: Poedit 1.8.7.1\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: src/Common/LinuxKernel.vala:92 +#: src/Common/LinuxKernel.vala:88 msgid "Distribution" msgstr "Distribution" -#: src/Common/LinuxKernel.vala:106 +#: src/Common/LinuxKernel.vala:102 #, fuzzy msgid "Architecture" msgstr "Systemarkitektur" -#: src/Common/LinuxKernel.vala:305 +#: src/Common/LinuxKernel.vala:301 #, fuzzy msgid "Fetching index..." msgstr "Hämtar index för" -#: src/Common/LinuxKernel.vala:342 +#: src/Common/LinuxKernel.vala:338 msgid "Fetching index from kernel.ubuntu.com..." msgstr "Hämtar index från kernel.ubuntu.com ..." -#: src/Common/LinuxKernel.vala:601 +#: src/Common/LinuxKernel.vala:594 #, fuzzy msgid "Could not find running kernel in list!" msgstr "Kunde inte hitta efterfrågad version" -#: src/Common/LinuxKernel.vala:607 +#: src/Common/LinuxKernel.vala:600 #, fuzzy msgid "Could not find any kernels to remove" msgstr "Välj kärnor för borttagning" -#: src/Common/LinuxKernel.vala:616 +#: src/Common/LinuxKernel.vala:609 msgid "The following kernels will be removed:" msgstr "" -#: src/Common/LinuxKernel.vala:623 +#: src/Common/LinuxKernel.vala:616 msgid "Continue ?" msgstr "" -#: src/Common/LinuxKernel.vala:649 src/Console/AppConsole.vala:304 +#: src/Common/LinuxKernel.vala:642 src/Console/AppConsole.vala:304 msgid "Latest update" msgstr "" -#: src/Common/LinuxKernel.vala:660 src/Console/AppConsole.vala:311 +#: src/Common/LinuxKernel.vala:653 src/Console/AppConsole.vala:311 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:668 src/Console/AppConsole.vala:316 -#: src/Console/AppConsole.vala:374 +#: src/Common/LinuxKernel.vala:661 src/Console/AppConsole.vala:316 +#: src/Console/AppConsole.vala:377 msgid "No updates found" msgstr "Inga uppdateringar hittades" -#: src/Common/LinuxKernel.vala:678 +#: src/Common/LinuxKernel.vala:671 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "" -#: src/Common/LinuxKernel.vala:940 +#: src/Common/LinuxKernel.vala:908 msgid "Packages Available" msgstr "Tillgängliga paket" -#: src/Common/LinuxKernel.vala:948 +#: src/Common/LinuxKernel.vala:916 msgid "Packages Installed" msgstr "Installerade paket" -#: src/Common/LinuxKernel.vala:1031 +#: src/Common/LinuxKernel.vala:997 msgid "Available Kernels" msgstr "Tillgängliga kärnor" -#: src/Common/LinuxKernel.vala:1038 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1004 src/Gtk/MainWindow.vala:186 msgid "Installed" msgstr "Installerad" -#: src/Common/LinuxKernel.vala:1038 src/Gtk/MainWindow.vala:186 -#: src/Gtk/MainWindow.vala:625 src/Gtk/MainWindow.vala:639 +#: src/Common/LinuxKernel.vala:1004 src/Gtk/MainWindow.vala:186 +#: src/Gtk/MainWindow.vala:627 src/Gtk/MainWindow.vala:641 msgid "Running" msgstr "Körs" -#: src/Common/LinuxKernel.vala:1075 +#: src/Common/LinuxKernel.vala:1041 msgid "Downloading" msgstr "Laddar ner" -#: src/Common/LinuxKernel.vala:1094 +#: src/Common/LinuxKernel.vala:1060 #: src/Utility/Gtk/CustomMessageDialog.vala:148 #: src/Utility/Gtk/CustomMessageDialog.vala:152 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:1099 +#: src/Common/LinuxKernel.vala:1065 msgid "ERROR" msgstr "FEL" -#: src/Common/LinuxKernel.vala:1113 src/Gtk/MainWindow.vala:647 +#: src/Common/LinuxKernel.vala:1079 src/Gtk/MainWindow.vala:649 msgid "This kernel is already installed." msgstr "Denna kärna är redan installerad" -#: src/Common/LinuxKernel.vala:1139 +#: src/Common/LinuxKernel.vala:1105 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "Installation slutförd. Omstart krävs för att tillämpa den nya kärnan." -#: src/Common/LinuxKernel.vala:1142 +#: src/Common/LinuxKernel.vala:1108 msgid "Installation completed with errors" msgstr "Installation slutförd med fel" -#: src/Common/LinuxKernel.vala:1157 +#: src/Common/LinuxKernel.vala:1123 msgid "" "Selected kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -122,19 +122,19 @@ msgstr "" "Denna kärna används för tillfället och kan inte tas bort.\n" "Installera en annan kärna innan du tar bort den här." -#: src/Common/LinuxKernel.vala:1162 +#: src/Common/LinuxKernel.vala:1128 msgid "Preparing to remove selected kernels" msgstr "Förbereder borttagning av markerade kärnor" -#: src/Common/LinuxKernel.vala:1193 src/Common/LinuxKernel.vala:1240 +#: src/Common/LinuxKernel.vala:1159 src/Common/LinuxKernel.vala:1206 msgid "Un-install completed" msgstr "Avinstallation slutförd" -#: src/Common/LinuxKernel.vala:1196 src/Common/LinuxKernel.vala:1243 +#: src/Common/LinuxKernel.vala:1162 src/Common/LinuxKernel.vala:1209 msgid "Un-install completed with errors" msgstr "Avinstallation slutförd med fel" -#: src/Common/LinuxKernel.vala:1209 +#: src/Common/LinuxKernel.vala:1175 msgid "" "This kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -142,11 +142,11 @@ msgstr "" "Denna kärna används för tillfället och kan inte tas bort.\n" "Installera en annan kärna innan du tar bort den här." -#: src/Common/Main.vala:237 +#: src/Common/Main.vala:241 msgid "Called from" msgstr "" -#: src/Common/Main.vala:271 +#: src/Common/Main.vala:275 #, fuzzy msgid "Notifications are disabled" msgstr "Avisering" @@ -283,16 +283,16 @@ msgstr "" msgid "to list all commands" msgstr "Visa alla alternativ" -#: src/Console/AppConsole.vala:347 +#: src/Console/AppConsole.vala:350 msgid "Show" msgstr "" -#: src/Console/AppConsole.vala:352 src/Console/AppConsole.vala:364 +#: src/Console/AppConsole.vala:355 src/Console/AppConsole.vala:367 #, fuzzy, c-format msgid "Kernel %s Available" msgstr "Tillgängliga paket" -#: src/Console/AppConsole.vala:354 src/Console/AppConsole.vala:366 +#: src/Console/AppConsole.vala:357 src/Console/AppConsole.vala:369 #: src/Gtk/MainWindow.vala:330 msgid "Install" msgstr "Installera" @@ -321,8 +321,8 @@ msgstr "Uppdatera" msgid "Internet connection is not active" msgstr "Internetuppkopplingen är inte aktiv" -#: src/Gtk/MainWindow.vala:321 src/Gtk/MainWindow.vala:522 -#: src/Gtk/MainWindow.vala:652 +#: src/Gtk/MainWindow.vala:321 src/Gtk/MainWindow.vala:524 +#: src/Gtk/MainWindow.vala:654 msgid "No Internet" msgstr "Inget internet" @@ -351,7 +351,7 @@ msgid "Select the kernels to remove" msgstr "Välj kärnor för borttagning" #: src/Gtk/MainWindow.vala:383 src/Gtk/MainWindow.vala:417 -#: src/Gtk/MainWindow.vala:684 +#: src/Gtk/MainWindow.vala:686 msgid "Close window to exit..." msgstr "" @@ -367,37 +367,37 @@ msgstr "Ändringar" msgid "Settings" msgstr "Inställningar" -#: src/Gtk/MainWindow.vala:456 +#: src/Gtk/MainWindow.vala:458 msgid "About" msgstr "Om" -#: src/Gtk/MainWindow.vala:500 +#: src/Gtk/MainWindow.vala:502 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Kärnuppgraderingsverktyg för Ubuntu-baserade distributioner" -#: src/Gtk/MainWindow.vala:501 +#: src/Gtk/MainWindow.vala:503 msgid "Forked" msgstr "" -#: src/Gtk/MainWindow.vala:501 +#: src/Gtk/MainWindow.vala:503 msgid "Original" msgstr "" -#: src/Gtk/MainWindow.vala:522 src/Gtk/MainWindow.vala:652 +#: src/Gtk/MainWindow.vala:524 src/Gtk/MainWindow.vala:654 #, fuzzy msgid "Internet connection is not active." msgstr "Internetuppkopplingen är inte aktiv" -#: src/Gtk/MainWindow.vala:541 +#: src/Gtk/MainWindow.vala:543 msgid "Refreshing..." msgstr "Uppdaterar ..." -#: src/Gtk/MainWindow.vala:635 +#: src/Gtk/MainWindow.vala:637 #, fuzzy msgid "available" msgstr "Tillgängliga paket" -#: src/Gtk/MainWindow.vala:647 +#: src/Gtk/MainWindow.vala:649 #, fuzzy msgid "Already Installed" msgstr "Installerad" @@ -427,53 +427,53 @@ msgstr "" msgid "Check every" msgstr "Kontrollera varje" -#: src/Gtk/SettingsDialog.vala:143 +#: src/Gtk/SettingsDialog.vala:142 msgid "Hour(s)" msgstr "Timma(r)" -#: src/Gtk/SettingsDialog.vala:145 +#: src/Gtk/SettingsDialog.vala:144 msgid "Day(s)" msgstr "Dag(ar)" -#: src/Gtk/SettingsDialog.vala:147 +#: src/Gtk/SettingsDialog.vala:146 msgid "Week(s)" msgstr "Veckor" -#: src/Gtk/SettingsDialog.vala:150 +#: src/Gtk/SettingsDialog.vala:149 msgid "Second(s)" msgstr "" -#: src/Gtk/SettingsDialog.vala:156 +#: src/Gtk/SettingsDialog.vala:155 msgid "Display" msgstr "Visa" -#: src/Gtk/SettingsDialog.vala:164 +#: src/Gtk/SettingsDialog.vala:163 msgid "Hide unstable and RC releases" msgstr "Dölj instabila- och RC-publiceringar" -#: src/Gtk/SettingsDialog.vala:178 +#: src/Gtk/SettingsDialog.vala:177 msgid "Show N previous major versions " msgstr "" -#: src/Gtk/SettingsDialog.vala:193 +#: src/Gtk/SettingsDialog.vala:192 msgid "Other" msgstr "" -#: src/Gtk/SettingsDialog.vala:201 +#: src/Gtk/SettingsDialog.vala:200 #, fuzzy msgid "Skip internet connection check" msgstr "Internetuppkopplingen är inte aktiv" -#: src/Gtk/SettingsDialog.vala:214 +#: src/Gtk/SettingsDialog.vala:213 #, fuzzy msgid "Internet connection timeout in " msgstr "Internetuppkopplingen är inte aktiv" -#: src/Gtk/SettingsDialog.vala:229 +#: src/Gtk/SettingsDialog.vala:228 msgid "seconds" msgstr "" -#: src/Gtk/SettingsDialog.vala:236 +#: src/Gtk/SettingsDialog.vala:235 msgid "Max concurrent downloads" msgstr "" diff --git a/po/tr.po b/po/tr.po index 3167c1e3..44c91ef9 100644 --- a/po/tr.po +++ b/po/tr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-24 18:05-0400\n" +"POT-Creation-Date: 2020-05-29 13:05-0400\n" "PO-Revision-Date: 2020-03-10 15:59+0300\n" "Last-Translator: Gökhan GÖKKAYA \n" "Language-Team: Turkish\n" @@ -13,105 +13,105 @@ msgstr "" "X-Generator: Poedit 2.0.6\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: src/Common/LinuxKernel.vala:92 +#: src/Common/LinuxKernel.vala:88 msgid "Distribution" msgstr "Dağıtım" -#: src/Common/LinuxKernel.vala:106 +#: src/Common/LinuxKernel.vala:102 msgid "Architecture" msgstr "Sistem mimarisi" -#: src/Common/LinuxKernel.vala:305 +#: src/Common/LinuxKernel.vala:301 msgid "Fetching index..." msgstr "İçerik dizini alınıyor..." -#: src/Common/LinuxKernel.vala:342 +#: src/Common/LinuxKernel.vala:338 msgid "Fetching index from kernel.ubuntu.com..." msgstr "İçerik listesi kernel.ubuntu.com alanından alınıyor..." -#: src/Common/LinuxKernel.vala:601 +#: src/Common/LinuxKernel.vala:594 msgid "Could not find running kernel in list!" msgstr "İstenen sürüm bulunamadı!" -#: src/Common/LinuxKernel.vala:607 +#: src/Common/LinuxKernel.vala:600 msgid "Could not find any kernels to remove" msgstr "Kaldırılacak çekirdek bulunamadı" -#: src/Common/LinuxKernel.vala:616 +#: src/Common/LinuxKernel.vala:609 msgid "The following kernels will be removed:" msgstr "Aşağıdaki çekirdekler silinecek:" -#: src/Common/LinuxKernel.vala:623 +#: src/Common/LinuxKernel.vala:616 msgid "Continue ?" msgstr "Devam et ?" -#: src/Common/LinuxKernel.vala:649 src/Console/AppConsole.vala:304 +#: src/Common/LinuxKernel.vala:642 src/Console/AppConsole.vala:304 msgid "Latest update" msgstr "Son güncelleme" -#: src/Common/LinuxKernel.vala:660 src/Console/AppConsole.vala:311 +#: src/Common/LinuxKernel.vala:653 src/Console/AppConsole.vala:311 msgid "Latest point update" msgstr "Son güncelleme noktası" -#: src/Common/LinuxKernel.vala:668 src/Console/AppConsole.vala:316 -#: src/Console/AppConsole.vala:374 +#: src/Common/LinuxKernel.vala:661 src/Console/AppConsole.vala:316 +#: src/Console/AppConsole.vala:377 msgid "No updates found" msgstr "Güncelleme bulunamadı" -#: src/Common/LinuxKernel.vala:678 +#: src/Common/LinuxKernel.vala:671 #, fuzzy, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Linux v%s Kur ? (e/h): " -#: src/Common/LinuxKernel.vala:940 +#: src/Common/LinuxKernel.vala:908 msgid "Packages Available" msgstr "Mevcut Paketler" -#: src/Common/LinuxKernel.vala:948 +#: src/Common/LinuxKernel.vala:916 msgid "Packages Installed" msgstr "Kurulu Paketler" -#: src/Common/LinuxKernel.vala:1031 +#: src/Common/LinuxKernel.vala:997 msgid "Available Kernels" msgstr "Mevcut Çekirdekler" -#: src/Common/LinuxKernel.vala:1038 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1004 src/Gtk/MainWindow.vala:186 msgid "Installed" msgstr "Kurulu" -#: src/Common/LinuxKernel.vala:1038 src/Gtk/MainWindow.vala:186 -#: src/Gtk/MainWindow.vala:625 src/Gtk/MainWindow.vala:639 +#: src/Common/LinuxKernel.vala:1004 src/Gtk/MainWindow.vala:186 +#: src/Gtk/MainWindow.vala:627 src/Gtk/MainWindow.vala:641 msgid "Running" msgstr "Çalışıyor" -#: src/Common/LinuxKernel.vala:1075 +#: src/Common/LinuxKernel.vala:1041 msgid "Downloading" msgstr "İndiriliyor" -#: src/Common/LinuxKernel.vala:1094 +#: src/Common/LinuxKernel.vala:1060 #: src/Utility/Gtk/CustomMessageDialog.vala:148 #: src/Utility/Gtk/CustomMessageDialog.vala:152 msgid "OK" msgstr "TAMAM" -#: src/Common/LinuxKernel.vala:1099 +#: src/Common/LinuxKernel.vala:1065 msgid "ERROR" msgstr "HATA" -#: src/Common/LinuxKernel.vala:1113 src/Gtk/MainWindow.vala:647 +#: src/Common/LinuxKernel.vala:1079 src/Gtk/MainWindow.vala:649 msgid "This kernel is already installed." msgstr "Bu çekirdek zaten kurulu." -#: src/Common/LinuxKernel.vala:1139 +#: src/Common/LinuxKernel.vala:1105 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "Kurulum tamamlandı. Yeni çekirdeği kullanmak için yeniden başlatma gerekiyor." -#: src/Common/LinuxKernel.vala:1142 +#: src/Common/LinuxKernel.vala:1108 msgid "Installation completed with errors" msgstr "Kurulum hatalarla tamamlandı" -#: src/Common/LinuxKernel.vala:1157 +#: src/Common/LinuxKernel.vala:1123 msgid "" "Selected kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -119,19 +119,19 @@ msgstr "" "Seçilen çekirdek şu anda çalışıyor ve kaldırılamıyor.\n" " Bunu kaldırmadan önce başka bir çekirdek yükleyin." -#: src/Common/LinuxKernel.vala:1162 +#: src/Common/LinuxKernel.vala:1128 msgid "Preparing to remove selected kernels" msgstr "Seçilen çekirdekleri kaldırmak için hazırlanıyor" -#: src/Common/LinuxKernel.vala:1193 src/Common/LinuxKernel.vala:1240 +#: src/Common/LinuxKernel.vala:1159 src/Common/LinuxKernel.vala:1206 msgid "Un-install completed" msgstr "Kaldırma tamamlandı" -#: src/Common/LinuxKernel.vala:1196 src/Common/LinuxKernel.vala:1243 +#: src/Common/LinuxKernel.vala:1162 src/Common/LinuxKernel.vala:1209 msgid "Un-install completed with errors" msgstr "Kaldırma hatalarla tamamlandı" -#: src/Common/LinuxKernel.vala:1209 +#: src/Common/LinuxKernel.vala:1175 msgid "" "This kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -139,11 +139,11 @@ msgstr "" "Bu çekirdek şu anda çalışıyor ve bu sebeple kaldırılamaz.\n" "Bunu kaldırmadan önce başka bir çekirdek yükleyin." -#: src/Common/Main.vala:237 +#: src/Common/Main.vala:241 msgid "Called from" msgstr "" -#: src/Common/Main.vala:271 +#: src/Common/Main.vala:275 #, fuzzy msgid "Notifications are disabled" msgstr "Bildirim" @@ -276,16 +276,16 @@ msgstr "Komut belirtilmedi" msgid "to list all commands" msgstr "Tüm seçenekleri göster" -#: src/Console/AppConsole.vala:347 +#: src/Console/AppConsole.vala:350 msgid "Show" msgstr "" -#: src/Console/AppConsole.vala:352 src/Console/AppConsole.vala:364 +#: src/Console/AppConsole.vala:355 src/Console/AppConsole.vala:367 #, fuzzy, c-format msgid "Kernel %s Available" msgstr "Mevcut Paketler" -#: src/Console/AppConsole.vala:354 src/Console/AppConsole.vala:366 +#: src/Console/AppConsole.vala:357 src/Console/AppConsole.vala:369 #: src/Gtk/MainWindow.vala:330 msgid "Install" msgstr "Kur" @@ -314,8 +314,8 @@ msgstr "Yenile" msgid "Internet connection is not active" msgstr "İnternet bağlantısı aktif değil" -#: src/Gtk/MainWindow.vala:321 src/Gtk/MainWindow.vala:522 -#: src/Gtk/MainWindow.vala:652 +#: src/Gtk/MainWindow.vala:321 src/Gtk/MainWindow.vala:524 +#: src/Gtk/MainWindow.vala:654 msgid "No Internet" msgstr "İnternet Yok" @@ -344,7 +344,7 @@ msgid "Select the kernels to remove" msgstr "Kaldırma için çekirdek seçin" #: src/Gtk/MainWindow.vala:383 src/Gtk/MainWindow.vala:417 -#: src/Gtk/MainWindow.vala:684 +#: src/Gtk/MainWindow.vala:686 msgid "Close window to exit..." msgstr "" @@ -360,37 +360,37 @@ msgstr "Değişiklikler" msgid "Settings" msgstr "Ayarlar" -#: src/Gtk/MainWindow.vala:456 +#: src/Gtk/MainWindow.vala:458 msgid "About" msgstr "Hakkında" -#: src/Gtk/MainWindow.vala:500 +#: src/Gtk/MainWindow.vala:502 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Ubuntu tabanlı dağıtımlar için çekirdek güncelleme aracı" -#: src/Gtk/MainWindow.vala:501 +#: src/Gtk/MainWindow.vala:503 msgid "Forked" msgstr "" -#: src/Gtk/MainWindow.vala:501 +#: src/Gtk/MainWindow.vala:503 msgid "Original" msgstr "" -#: src/Gtk/MainWindow.vala:522 src/Gtk/MainWindow.vala:652 +#: src/Gtk/MainWindow.vala:524 src/Gtk/MainWindow.vala:654 #, fuzzy msgid "Internet connection is not active." msgstr "İnternet bağlantısı aktif değil" -#: src/Gtk/MainWindow.vala:541 +#: src/Gtk/MainWindow.vala:543 msgid "Refreshing..." msgstr "Yenileniyor..." -#: src/Gtk/MainWindow.vala:635 +#: src/Gtk/MainWindow.vala:637 #, fuzzy msgid "available" msgstr "Mevcut Paketler" -#: src/Gtk/MainWindow.vala:647 +#: src/Gtk/MainWindow.vala:649 #, fuzzy msgid "Already Installed" msgstr "Kurulu" @@ -420,52 +420,52 @@ msgstr "" msgid "Check every" msgstr "Kontrol aralığı" -#: src/Gtk/SettingsDialog.vala:143 +#: src/Gtk/SettingsDialog.vala:142 msgid "Hour(s)" msgstr "Saat" -#: src/Gtk/SettingsDialog.vala:145 +#: src/Gtk/SettingsDialog.vala:144 msgid "Day(s)" msgstr "Gün" -#: src/Gtk/SettingsDialog.vala:147 +#: src/Gtk/SettingsDialog.vala:146 msgid "Week(s)" msgstr "Hafta" -#: src/Gtk/SettingsDialog.vala:150 +#: src/Gtk/SettingsDialog.vala:149 #, fuzzy msgid "Second(s)" msgstr "saniye" -#: src/Gtk/SettingsDialog.vala:156 +#: src/Gtk/SettingsDialog.vala:155 msgid "Display" msgstr "Gösterim" -#: src/Gtk/SettingsDialog.vala:164 +#: src/Gtk/SettingsDialog.vala:163 msgid "Hide unstable and RC releases" msgstr "Kararsız ve RC sürümleri gizle" -#: src/Gtk/SettingsDialog.vala:178 +#: src/Gtk/SettingsDialog.vala:177 msgid "Show N previous major versions " msgstr "Önceki ana sürümleri gösterme sayısı " -#: src/Gtk/SettingsDialog.vala:193 +#: src/Gtk/SettingsDialog.vala:192 msgid "Other" msgstr "Diğer" -#: src/Gtk/SettingsDialog.vala:201 +#: src/Gtk/SettingsDialog.vala:200 msgid "Skip internet connection check" msgstr "İnternet bağlantı kontrolünü atla" -#: src/Gtk/SettingsDialog.vala:214 +#: src/Gtk/SettingsDialog.vala:213 msgid "Internet connection timeout in " msgstr "İnternet bağlantısı zaman aşımı " -#: src/Gtk/SettingsDialog.vala:229 +#: src/Gtk/SettingsDialog.vala:228 msgid "seconds" msgstr "saniye" -#: src/Gtk/SettingsDialog.vala:236 +#: src/Gtk/SettingsDialog.vala:235 msgid "Max concurrent downloads" msgstr "" diff --git a/po/uk.po b/po/uk.po index 624dd686..83e762c7 100644 --- a/po/uk.po +++ b/po/uk.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-24 18:05-0400\n" +"POT-Creation-Date: 2020-05-29 13:05-0400\n" "PO-Revision-Date: 2019-07-25 11:00+0300\n" "Last-Translator: Serhii Golovko \n" "Language-Team: Ukranian \n" @@ -13,105 +13,105 @@ msgstr "" "X-Launchpad-Export-Date: 2016-12-13 11:48+0000\n" "X-Generator: Poedit 2.2.1\n" -#: src/Common/LinuxKernel.vala:92 +#: src/Common/LinuxKernel.vala:88 msgid "Distribution" msgstr "Дистрибутив" -#: src/Common/LinuxKernel.vala:106 +#: src/Common/LinuxKernel.vala:102 msgid "Architecture" msgstr "Системна архитектура" -#: src/Common/LinuxKernel.vala:305 +#: src/Common/LinuxKernel.vala:301 msgid "Fetching index..." msgstr "Отримання індекса ..." -#: src/Common/LinuxKernel.vala:342 +#: src/Common/LinuxKernel.vala:338 msgid "Fetching index from kernel.ubuntu.com..." msgstr "Отримання індекса з kernel.ubuntu.com..." -#: src/Common/LinuxKernel.vala:601 +#: src/Common/LinuxKernel.vala:594 msgid "Could not find running kernel in list!" msgstr "Не вдалося знайти запущене ядро у списку!" -#: src/Common/LinuxKernel.vala:607 +#: src/Common/LinuxKernel.vala:600 msgid "Could not find any kernels to remove" msgstr "Не вдалося знайти жодне ядро для вилучення" -#: src/Common/LinuxKernel.vala:616 +#: src/Common/LinuxKernel.vala:609 msgid "The following kernels will be removed:" msgstr "Наступні ядра будуть видалені:" -#: src/Common/LinuxKernel.vala:623 +#: src/Common/LinuxKernel.vala:616 msgid "Continue ?" msgstr "Продовжувати ?" -#: src/Common/LinuxKernel.vala:649 src/Console/AppConsole.vala:304 +#: src/Common/LinuxKernel.vala:642 src/Console/AppConsole.vala:304 msgid "Latest update" msgstr "Останнє оновлення" -#: src/Common/LinuxKernel.vala:660 src/Console/AppConsole.vala:311 +#: src/Common/LinuxKernel.vala:653 src/Console/AppConsole.vala:311 msgid "Latest point update" msgstr "Остання точка оновлення" -#: src/Common/LinuxKernel.vala:668 src/Console/AppConsole.vala:316 -#: src/Console/AppConsole.vala:374 +#: src/Common/LinuxKernel.vala:661 src/Console/AppConsole.vala:316 +#: src/Console/AppConsole.vala:377 msgid "No updates found" msgstr "Оновлень не знайдено" -#: src/Common/LinuxKernel.vala:678 +#: src/Common/LinuxKernel.vala:671 #, fuzzy, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Встановити Linux v% s? (так/ні): " -#: src/Common/LinuxKernel.vala:940 +#: src/Common/LinuxKernel.vala:908 msgid "Packages Available" msgstr "Доступні пакети" -#: src/Common/LinuxKernel.vala:948 +#: src/Common/LinuxKernel.vala:916 msgid "Packages Installed" msgstr "Встановлені пакети" -#: src/Common/LinuxKernel.vala:1031 +#: src/Common/LinuxKernel.vala:997 msgid "Available Kernels" msgstr "Доступні ядра" -#: src/Common/LinuxKernel.vala:1038 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1004 src/Gtk/MainWindow.vala:186 msgid "Installed" msgstr "Встановлено" -#: src/Common/LinuxKernel.vala:1038 src/Gtk/MainWindow.vala:186 -#: src/Gtk/MainWindow.vala:625 src/Gtk/MainWindow.vala:639 +#: src/Common/LinuxKernel.vala:1004 src/Gtk/MainWindow.vala:186 +#: src/Gtk/MainWindow.vala:627 src/Gtk/MainWindow.vala:641 msgid "Running" msgstr "Використовується" -#: src/Common/LinuxKernel.vala:1075 +#: src/Common/LinuxKernel.vala:1041 msgid "Downloading" msgstr "Завантаження" -#: src/Common/LinuxKernel.vala:1094 +#: src/Common/LinuxKernel.vala:1060 #: src/Utility/Gtk/CustomMessageDialog.vala:148 #: src/Utility/Gtk/CustomMessageDialog.vala:152 msgid "OK" msgstr "Добре" -#: src/Common/LinuxKernel.vala:1099 +#: src/Common/LinuxKernel.vala:1065 msgid "ERROR" msgstr "ПОМИЛКА" -#: src/Common/LinuxKernel.vala:1113 src/Gtk/MainWindow.vala:647 +#: src/Common/LinuxKernel.vala:1079 src/Gtk/MainWindow.vala:649 msgid "This kernel is already installed." msgstr "Це ядро вже встановлено." -#: src/Common/LinuxKernel.vala:1139 +#: src/Common/LinuxKernel.vala:1105 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "Установка завершена. Для використання нового ядра потрібна перезавантаження." -#: src/Common/LinuxKernel.vala:1142 +#: src/Common/LinuxKernel.vala:1108 msgid "Installation completed with errors" msgstr "Установка завершена з помилками" -#: src/Common/LinuxKernel.vala:1157 +#: src/Common/LinuxKernel.vala:1123 msgid "" "Selected kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -119,19 +119,19 @@ msgstr "" "Це ядро зараз працює і не може бути видалено. \n" "Встановіть інше ядро, перш ніж видаляти його." -#: src/Common/LinuxKernel.vala:1162 +#: src/Common/LinuxKernel.vala:1128 msgid "Preparing to remove selected kernels" msgstr "Підготовка до видалення вибраних ядер" -#: src/Common/LinuxKernel.vala:1193 src/Common/LinuxKernel.vala:1240 +#: src/Common/LinuxKernel.vala:1159 src/Common/LinuxKernel.vala:1206 msgid "Un-install completed" msgstr "Видалення завершено" -#: src/Common/LinuxKernel.vala:1196 src/Common/LinuxKernel.vala:1243 +#: src/Common/LinuxKernel.vala:1162 src/Common/LinuxKernel.vala:1209 msgid "Un-install completed with errors" msgstr "Видалення завершено з помилками" -#: src/Common/LinuxKernel.vala:1209 +#: src/Common/LinuxKernel.vala:1175 msgid "" "This kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -139,11 +139,11 @@ msgstr "" "Це ядро наразі працює і його неможливо видалити.\n" " Встановіть інше ядро перед тим, як видалити его." -#: src/Common/Main.vala:237 +#: src/Common/Main.vala:241 msgid "Called from" msgstr "Викликано з" -#: src/Common/Main.vala:271 +#: src/Common/Main.vala:275 #, fuzzy msgid "Notifications are disabled" msgstr "Повідомлення вимкнено" @@ -278,16 +278,16 @@ msgstr "Команда не вказана" msgid "to list all commands" msgstr "Показати усі параметри" -#: src/Console/AppConsole.vala:347 +#: src/Console/AppConsole.vala:350 msgid "Show" msgstr "Показати" -#: src/Console/AppConsole.vala:352 src/Console/AppConsole.vala:364 +#: src/Console/AppConsole.vala:355 src/Console/AppConsole.vala:367 #, fuzzy, c-format msgid "Kernel %s Available" msgstr "Доступні пакети" -#: src/Console/AppConsole.vala:354 src/Console/AppConsole.vala:366 +#: src/Console/AppConsole.vala:357 src/Console/AppConsole.vala:369 #: src/Gtk/MainWindow.vala:330 msgid "Install" msgstr "Встановити" @@ -316,8 +316,8 @@ msgstr "Оновити" msgid "Internet connection is not active" msgstr "Інтернет з'єднання не активно" -#: src/Gtk/MainWindow.vala:321 src/Gtk/MainWindow.vala:522 -#: src/Gtk/MainWindow.vala:652 +#: src/Gtk/MainWindow.vala:321 src/Gtk/MainWindow.vala:524 +#: src/Gtk/MainWindow.vala:654 msgid "No Internet" msgstr "Інтернету немає" @@ -346,7 +346,7 @@ msgid "Select the kernels to remove" msgstr "Виберіть ядра для видалення" #: src/Gtk/MainWindow.vala:383 src/Gtk/MainWindow.vala:417 -#: src/Gtk/MainWindow.vala:684 +#: src/Gtk/MainWindow.vala:686 msgid "Close window to exit..." msgstr "Закрийте вікно, щоб вийти..." @@ -362,39 +362,39 @@ msgstr "Зміни" msgid "Settings" msgstr "Налаштування" -#: src/Gtk/MainWindow.vala:456 +#: src/Gtk/MainWindow.vala:458 msgid "About" msgstr "Про программу" -#: src/Gtk/MainWindow.vala:500 +#: src/Gtk/MainWindow.vala:502 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Програма оновлення ядра для дистрибутивів на базі Ubuntu" -#: src/Gtk/MainWindow.vala:501 +#: src/Gtk/MainWindow.vala:503 #, fuzzy msgid "Forked" msgstr "Роздвоєний" -#: src/Gtk/MainWindow.vala:501 +#: src/Gtk/MainWindow.vala:503 #, fuzzy msgid "Original" msgstr "Оригінальний" -#: src/Gtk/MainWindow.vala:522 src/Gtk/MainWindow.vala:652 +#: src/Gtk/MainWindow.vala:524 src/Gtk/MainWindow.vala:654 #, fuzzy msgid "Internet connection is not active." msgstr "Інтернет з'єднання не активно" -#: src/Gtk/MainWindow.vala:541 +#: src/Gtk/MainWindow.vala:543 msgid "Refreshing..." msgstr "Оновлення..." -#: src/Gtk/MainWindow.vala:635 +#: src/Gtk/MainWindow.vala:637 #, fuzzy msgid "available" msgstr "Доступні пакети" -#: src/Gtk/MainWindow.vala:647 +#: src/Gtk/MainWindow.vala:649 #, fuzzy msgid "Already Installed" msgstr "Встановлено" @@ -424,52 +424,52 @@ msgstr "(Дозволити інтервали в секундах для --debu msgid "Check every" msgstr "Перевіряти кожні" -#: src/Gtk/SettingsDialog.vala:143 +#: src/Gtk/SettingsDialog.vala:142 msgid "Hour(s)" msgstr "Година(Годин)" -#: src/Gtk/SettingsDialog.vala:145 +#: src/Gtk/SettingsDialog.vala:144 msgid "Day(s)" msgstr "День(Днів)" -#: src/Gtk/SettingsDialog.vala:147 +#: src/Gtk/SettingsDialog.vala:146 msgid "Week(s)" msgstr "Тиждень(ні)" -#: src/Gtk/SettingsDialog.vala:150 +#: src/Gtk/SettingsDialog.vala:149 #, fuzzy msgid "Second(s)" msgstr "Секунда(и)" -#: src/Gtk/SettingsDialog.vala:156 +#: src/Gtk/SettingsDialog.vala:155 msgid "Display" msgstr "Показ" -#: src/Gtk/SettingsDialog.vala:164 +#: src/Gtk/SettingsDialog.vala:163 msgid "Hide unstable and RC releases" msgstr "Приховати нестабільні і реліз-кандидат версії" -#: src/Gtk/SettingsDialog.vala:178 +#: src/Gtk/SettingsDialog.vala:177 msgid "Show N previous major versions " msgstr "Показати N попередніх основних версій" -#: src/Gtk/SettingsDialog.vala:193 +#: src/Gtk/SettingsDialog.vala:192 msgid "Other" msgstr "Інший" -#: src/Gtk/SettingsDialog.vala:201 +#: src/Gtk/SettingsDialog.vala:200 msgid "Skip internet connection check" msgstr "Пропустити перевірку підключення до Інтернету" -#: src/Gtk/SettingsDialog.vala:214 +#: src/Gtk/SettingsDialog.vala:213 msgid "Internet connection timeout in " msgstr "Час очікування підключення до Інтернету в " -#: src/Gtk/SettingsDialog.vala:229 +#: src/Gtk/SettingsDialog.vala:228 msgid "seconds" msgstr "секунди" -#: src/Gtk/SettingsDialog.vala:236 +#: src/Gtk/SettingsDialog.vala:235 msgid "Max concurrent downloads" msgstr "" diff --git a/src/Common/LinuxKernel.vala b/src/Common/LinuxKernel.vala index 4f6d0e02..63626048 100644 --- a/src/Common/LinuxKernel.vala +++ b/src/Common/LinuxKernel.vala @@ -11,14 +11,13 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { public string kver = ""; public string version_main = ""; public string version_package = ""; - public string type = ""; public string page_uri = ""; public int version_maj = -1; public int version_min = -1; public int version_point = -1; public int version_rc = -1; - + public Gee.HashMap deb_list = new Gee.HashMap(); public Gee.HashMap apt_pkg_list = new Gee.HashMap(); @@ -44,9 +43,6 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { public static string RUNNING_KERNEL; public static string CURRENT_USER; public static string CURRENT_USER_HOME; - - public static int show_prev_majors; - public static bool hide_unstable; public static LinuxKernel kernel_active; public static LinuxKernel kernel_update_major; @@ -71,7 +67,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { public static int highest_maj; // class initialize - + public static void initialize(){ new LinuxKernel("", false); // instance must be created before setting static members @@ -84,7 +80,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { // dep: lsb_release public static string check_distribution(){ string dist = ""; - + string std_out, std_err; int status = exec_sync("lsb_release -sd", out std_out, out std_err); if ((status == 0) && (std_out != null)){ @@ -98,7 +94,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { // dep: dpkg public static string check_package_architecture(){ string arch = ""; - + string std_out, std_err; int status = exec_sync("dpkg --print-architecture", out std_out, out std_err); if ((status == 0) && (std_out != null)){ @@ -126,19 +122,19 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { public static void initialize_regex(){ try{ //linux-headers-3.4.75-030475-generic_3.4.75-030475.201312201255_amd64.deb - rex_header = new Regex("""linux-headers-[a-zA-Z0-9.\-_]*generic_[a-zA-Z0-9.\-]*_""" + NATIVE_ARCH + ".deb"); + rex_header = new Regex("""linux-headers-[a-zA-Z0-9.\-_]*-generic_[a-zA-Z0-9.\-]*_""" + NATIVE_ARCH + ".deb"); //linux-headers-3.4.75-030475_3.4.75-030475.201312201255_all.deb rex_header_all = new Regex("""linux-headers-[a-zA-Z0-9.\-_]*_all.deb"""); //linux-image-3.4.75-030475-generic_3.4.75-030475.201312201255_amd64.deb - rex_image = new Regex("""linux-image-[a-zA-Z0-9.\-_]*generic_([a-zA-Z0-9.\-]*)_""" + NATIVE_ARCH + ".deb"); + rex_image = new Regex("""linux-image-[a-zA-Z0-9.\-_]*-generic_([a-zA-Z0-9.\-]*)_""" + NATIVE_ARCH + ".deb"); //linux-image-extra-3.4.75-030475-generic_3.4.75-030475.201312201255_amd64.deb - rex_image_extra = new Regex("""linux-image-extra-[a-zA-Z0-9.\-_]*generic_[a-zA-Z0-9.\-]*_""" + NATIVE_ARCH + ".deb"); + rex_image_extra = new Regex("""linux-image-extra-[a-zA-Z0-9.\-_]*-generic_[a-zA-Z0-9.\-]*_""" + NATIVE_ARCH + ".deb"); //linux-image-extra-3.4.75-030475-generic_3.4.75-030475.201312201255_amd64.deb - rex_modules = new Regex("""linux-modules-[a-zA-Z0-9.\-_]*generic_[a-zA-Z0-9.\-]*_""" + NATIVE_ARCH + ".deb"); + rex_modules = new Regex("""linux-modules-[a-zA-Z0-9.\-_]*-generic_[a-zA-Z0-9.\-]*_""" + NATIVE_ARCH + ".deb"); } catch (Error e) { log_error (e.message); @@ -212,8 +208,8 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { private static void query_thread() { - log_debug("query: show_prev_majors: %s".printf(show_prev_majors.to_string())); - log_debug("query: hide_unstable: %s".printf(hide_unstable.to_string())); + log_debug("query_thread() App.show_prev_majors: %d".printf(App.show_prev_majors)); + log_debug("query_thread() App.hide_unstable: "+App.hide_unstable.to_string()); //DownloadManager.reset_counter(); @@ -249,8 +245,8 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { // determine the size of the job for the percent-done display foreach(var k in kernel_list){ if(!k.is_installed){ - if (k.version_maj < highest_maj-show_prev_majors) continue; - if (hide_unstable && k.is_unstable) continue; + if (k.version_maj < highest_maj-App.show_prev_majors) continue; + if (App.hide_unstable && k.is_unstable) continue; } if (k.is_valid && !k.cached_page_exists) progress_total += 2; } @@ -273,8 +269,8 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { if (!k.is_valid) continue; if (!k.is_installed) { - if (k.version_maj < highest_maj-show_prev_majors) continue; - if (hide_unstable && k.is_unstable) continue; + if (k.version_maj < highest_maj-App.show_prev_majors) continue; + if (App.hide_unstable && k.is_unstable) continue; } // add index.html to download list @@ -448,9 +444,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { // Running: 4.4.0-28-generic // Package: 4.4.0-28.47 - //string ver_running = RUNNING_KERNEL.replace("-generic",""); - string ver_running = RUNNING_KERNEL; - var kern_running = new LinuxKernel.from_version(ver_running); + var kern_running = new LinuxKernel.from_version(RUNNING_KERNEL); kernel_active = null; // scan mainline kernels @@ -460,7 +454,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { if (k.version_package.length > 0) { string ver_pkg_short = k.version_package[0 : k.version_package.last_index_of(".")]; - if (ver_pkg_short == ver_running){ + if (ver_pkg_short == RUNNING_KERNEL){ k.is_running = true; k.is_installed = true; kernel_active = k; @@ -512,7 +506,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { foreach(var k in LinuxKernel.kernel_list){ if (!k.is_valid) continue; - if ((hide_unstable && k.is_unstable) && (!k.is_installed)) continue; + if ((App.hide_unstable && k.is_unstable) && (!k.is_installed)) continue; if (kernel_latest_available == null) kernel_latest_available = k; if (k.is_installed) continue; @@ -581,8 +575,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { var list = new Gee.ArrayList(); - string ver_running = RUNNING_KERNEL; - var kern_running = new LinuxKernel.from_version(ver_running); + var kern_running = new LinuxKernel.from_version(RUNNING_KERNEL); bool found_running_kernel = false; @@ -593,7 +586,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { found_running_kernel = true; continue; } - if (k.compare_to(kern_running) > 0) continue; // FIXME, compare against highest installed, not current running + if (k.compare_to(kern_running) > 0) continue; // FIXME, compare kernel_latest_installed list.add(k); } @@ -777,7 +770,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { return (x - y); } else if ((x == 0) && (y == 0)){ - // BKW - this is one place where "-rc3" gets compared to "-rc4" etc + // BKW - this is one place where "-rc3" gets compared to "-rc4" // both are strings //log_debug("strcmp("+arr_a[i]+","+arr_b[i]+")"); return strcmp(arr_a[i], arr_b[i]); @@ -838,12 +831,6 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { // properties - public bool is_rc{ - get { - return kver.contains("-rc"); - } - } - public bool is_unstable{ get { return kver.contains("-rc") || kver.contains("-unstable"); @@ -909,26 +896,6 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { } } - public string major_version{ - owned get { - string[] parts = version_main.split("."); - if (parts.length >= 2){ - return "%s.%s".printf(parts[0],parts[1]); - } - return version_main; - } - } - - public string minor_version{ - owned get { - string[] parts = version_main.split("."); - if (parts.length >= 3){ - return "%s.%s.%s".printf(parts[0],parts[1],parts[2]); - } - return version_main; - } - } - public string tooltip_text(){ string txt = ""; @@ -936,6 +903,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { foreach(string deb in deb_list.keys){ list += "\n%s".printf(deb); } + if (list.length > 0){ txt += "%s\n%s".printf(_("Packages Available"), list); } @@ -975,9 +943,8 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { if (rex.match(line, 0, out match)){ string file_name = match.fetch(2); string file_uri = "%s%s".printf(page_uri, match.fetch(1)); - bool add = false; - + if (rex_header.match(file_name, 0, out match)){ deb_header = file_name; add = true; @@ -990,9 +957,8 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { if (rex_image.match(file_name, 0, out match)){ deb_image = file_name; - add = true; - version_package = match.fetch(1); + add = true; } if (rex_image_extra.match(file_name, 0, out match)){ @@ -1039,8 +1005,8 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { // hide hidden, but don't hide any installed if (!k.is_installed) { - if (hide_unstable && k.is_unstable) continue; - if (k.version_maj < highest_maj-show_prev_majors) continue; + if (App.hide_unstable && k.is_unstable) continue; + if (k.version_maj < highest_maj-App.show_prev_majors) continue; } // kern.kname "v5.6.11" -> cache download dir names, needed for --install, --remove diff --git a/src/Common/Main.vala b/src/Common/Main.vala index a7d164a8..e5c15b96 100644 --- a/src/Common/Main.vala +++ b/src/Common/Main.vala @@ -39,7 +39,6 @@ using TeeJee.Misc; [CCode(cname="BRANDING_AUTHOREMAIL")] extern const string BRANDING_AUTHOREMAIL; [CCode(cname="BRANDING_WEBSITE")] extern const string BRANDING_WEBSITE; [CCode(cname="INSTALL_PREFIX")] extern const string INSTALL_PREFIX; -[CCode(cname="DEFAULT_SHOW_PREV_MAJORS")] extern const string DEFAULT_SHOW_PREV_MAJORS; public const string LOCALE_DIR = INSTALL_PREFIX + "/share/locale"; public const string APP_LIB_DIR = INSTALL_PREFIX + "/lib/" + BRANDING_SHORTNAME; @@ -56,7 +55,8 @@ public class Main : GLib.Object{ public string STARTUP_SCRIPT_FILE = ""; public string STARTUP_DESKTOP_FILE = ""; public string NOTIFICATION_ID_FILE = ""; - public string NOTIFICATION_SEEN_FILE = ""; + public string MAJ_SEEN_FILE = ""; + public string MIN_SEEN_FILE = ""; public string user_login = ""; public string user_home = ""; @@ -76,6 +76,8 @@ public class Main : GLib.Object{ public bool notify_major = true; public bool notify_minor = true; + public bool hide_unstable = true; + public int show_prev_majors = 0; public int notify_interval_unit = 0; public int notify_interval_value = 2; public int connect_timeout_seconds = 15; @@ -90,13 +92,14 @@ public class Main : GLib.Object{ GUI_MODE = _gui_mode; + init_paths(); + + load_app_config(); + Package.initialize(); LinuxKernel.initialize(); - init_paths(); - - load_app_config(); } // helpers ------------ @@ -117,7 +120,8 @@ public class Main : GLib.Object{ STARTUP_SCRIPT_FILE = APP_CONF_DIR + "/notify-loop.sh"; STARTUP_DESKTOP_FILE = user_home + "/.config/autostart/" + BRANDING_SHORTNAME + ".desktop"; NOTIFICATION_ID_FILE = APP_CONF_DIR + "/notification_id"; - NOTIFICATION_SEEN_FILE = APP_CONF_DIR + "/notification_seen"; + MAJ_SEEN_FILE = APP_CONF_DIR + "/notification_seen.major"; + MIN_SEEN_FILE = APP_CONF_DIR + "/notification_seen.minor"; LinuxKernel.CACHE_DIR = user_home + "/.cache/" + BRANDING_SHORTNAME; LinuxKernel.CURRENT_USER = user_login; @@ -133,8 +137,8 @@ public class Main : GLib.Object{ var config = new Json.Object(); config.set_string_member("notify_major", notify_major.to_string()); config.set_string_member("notify_minor", notify_minor.to_string()); - config.set_string_member("hide_unstable", LinuxKernel.hide_unstable.to_string()); - config.set_string_member("show_prev_majors", LinuxKernel.show_prev_majors.to_string()); + config.set_string_member("hide_unstable", hide_unstable.to_string()); + config.set_string_member("show_prev_majors", show_prev_majors.to_string()); config.set_string_member("notify_interval_unit", notify_interval_unit.to_string()); config.set_string_member("notify_interval_value", notify_interval_value.to_string()); config.set_string_member("connect_timeout_seconds", connect_timeout_seconds.to_string()); @@ -170,8 +174,8 @@ public class Main : GLib.Object{ if (!f.query_exists()) { // initialize static - LinuxKernel.hide_unstable = true; - LinuxKernel.show_prev_majors = int.parse(DEFAULT_SHOW_PREV_MAJORS); + hide_unstable = true; + show_prev_majors = 0; return; } @@ -194,8 +198,8 @@ public class Main : GLib.Object{ concurrent_downloads = json_get_int(config, "concurrent_downloads", 4); skip_connection_check = json_get_bool(config, "skip_connection_check", false); - LinuxKernel.hide_unstable = json_get_bool(config, "hide_unstable", true); - LinuxKernel.show_prev_majors = json_get_int(config, "show_prev_majors", int.parse(DEFAULT_SHOW_PREV_MAJORS)); + hide_unstable = json_get_bool(config, "hide_unstable", true); + show_prev_majors = json_get_int(config, "show_prev_majors", 0); log_debug("Load config file: %s".printf(APP_CONFIG_FILE)); } @@ -236,7 +240,7 @@ public class Main : GLib.Object{ string s = "#!/bin/bash\n" + "# " +_("Called from")+" "+STARTUP_DESKTOP_FILE+" at logon.\n" + "# This file is over-written and executed again whenever settings are saved in "+BRANDING_SHORTNAME+"-gtk\n" - + "[[ \"${1}\" = \"--autostart\" ]] && rm -f "+NOTIFICATION_ID_FILE+" "+NOTIFICATION_SEEN_FILE+"\n" + + "[[ \"${1}\" = \"--autostart\" ]] && rm -f "+NOTIFICATION_ID_FILE+" "+MAJ_SEEN_FILE+" "+MIN_SEEN_FILE+"\n" + "TMP=${XDG_RUNTIME_DIR:-/tmp}\n" + "F=\"${TMP}/"+BRANDING_SHORTNAME+"-notify-loop.${$}.p\"\n" + "trap \"rm -f \\\"${F}\\\"\" 0\n" @@ -278,7 +282,7 @@ public class Main : GLib.Object{ private void update_startup_desktop_file(){ if (notify_minor || notify_major){ - + string txt = "[Desktop Entry]\n" + "Type=Application\n" + "Exec=bash \""+STARTUP_SCRIPT_FILE+"\" --autostart\n" diff --git a/src/Console/AppConsole.vala b/src/Console/AppConsole.vala index 9d8e7181..67867055 100644 --- a/src/Console/AppConsole.vala +++ b/src/Console/AppConsole.vala @@ -138,7 +138,7 @@ public class AppConsole : GLib.Object { break; case "--show-unstable": - LinuxKernel.hide_unstable = false; + App.hide_unstable = false; break; case "--download": @@ -329,9 +329,12 @@ public class AppConsole : GLib.Object { //LinuxKernel.check_updates("notify_user()"); //LinuxKernel.check_updates(); - string seen = ""; - if (file_exists(App.NOTIFICATION_SEEN_FILE)) seen = file_read(App.NOTIFICATION_SEEN_FILE).strip(); - log_msg("seen:\""+seen+"\""); + string seen_maj = ""; + string seen_min = ""; + if (file_exists(App.MAJ_SEEN_FILE)) seen_maj = file_read(App.MAJ_SEEN_FILE).strip(); + if (file_exists(App.MIN_SEEN_FILE)) seen_min = file_read(App.MIN_SEEN_FILE).strip(); + log_msg("seen_maj:\""+seen_maj+"\""); + log_msg("seen_min:\""+seen_min+"\""); string debug_action = ""; string close_action = ""; // command to run when user closes notification instead of pressing any action button @@ -348,11 +351,11 @@ public class AppConsole : GLib.Object { } var kern = LinuxKernel.kernel_update_major; - if (App.notify_major && (kern!=null) && (seen!=kern.version_main)){ + if (App.notify_major && (kern!=null) && (seen_maj!=kern.version_main)){ var title = _("Kernel %s Available").printf(kern.version_main); if (App.notify_major || App.notify_minor){ alist.add(_("Install")+":"+debug_action+BRANDING_SHORTNAME+"-gtk --install "+kern.version_main); - file_write(App.NOTIFICATION_SEEN_FILE,kern.version_main); + file_write(App.MAJ_SEEN_FILE,kern.version_main); OSDNotify.notify_send(title,body,alist,close_action); } log_msg(title); @@ -360,11 +363,11 @@ public class AppConsole : GLib.Object { } kern = LinuxKernel.kernel_update_minor; - if (App.notify_minor && (kern!=null) && (seen!=kern.version_main)){ + if (App.notify_minor && (kern!=null) && (seen_min!=kern.version_main)){ var title = _("Kernel %s Available").printf(kern.version_main); if (App.notify_major || App.notify_minor) { alist.add(_("Install")+":"+debug_action+BRANDING_SHORTNAME+"-gtk --install "+kern.version_main); - file_write(App.NOTIFICATION_SEEN_FILE,kern.version_main); + file_write(App.MIN_SEEN_FILE,kern.version_main); OSDNotify.notify_send(title,body,alist,close_action); } log_msg(title); diff --git a/src/Gtk/MainWindow.vala b/src/Gtk/MainWindow.vala index 91c72088..c7680a30 100644 --- a/src/Gtk/MainWindow.vala +++ b/src/Gtk/MainWindow.vala @@ -255,8 +255,8 @@ public class MainWindow : Gtk.Window{ foreach(var kern in LinuxKernel.kernel_list) { if (!kern.is_valid) continue; if (!kern.is_installed) { - if (LinuxKernel.hide_unstable && kern.is_unstable) continue; - if (kern.version_maj < LinuxKernel.highest_maj-LinuxKernel.show_prev_majors) continue; + if (App.hide_unstable && kern.is_unstable) continue; + if (kern.version_maj < LinuxKernel.highest_maj-App.show_prev_majors) continue; } odd_row = !odd_row; @@ -437,15 +437,17 @@ public class MainWindow : Gtk.Window{ button.clicked.connect(() => { - int prev_spm = LinuxKernel.show_prev_majors; - bool prev_hide_unstable = LinuxKernel.hide_unstable; + int _show_prev_majors = App.show_prev_majors; + bool _hide_unstable = App.hide_unstable; var dlg = new SettingsDialog.with_parent(this); dlg.run(); dlg.destroy(); - if ((prev_spm != LinuxKernel.show_prev_majors) - || (prev_hide_unstable != LinuxKernel.hide_unstable)){ + if ( + (_show_prev_majors != App.show_prev_majors) + || (_hide_unstable != App.hide_unstable) + ) { refresh_cache(); } diff --git a/src/Gtk/SettingsDialog.vala b/src/Gtk/SettingsDialog.vala index e4617bac..bae0b64c 100644 --- a/src/Gtk/SettingsDialog.vala +++ b/src/Gtk/SettingsDialog.vala @@ -92,7 +92,7 @@ public class SettingsDialog : Gtk.Dialog { vbox_main.add (label); } - // notification interval + // notification interval value // replace invalid debug-only values with valid values int max_intervals = 52; @@ -124,7 +124,7 @@ public class SettingsDialog : Gtk.Dialog { App.notify_interval_value = (int) spin_notify.get_value(); }); - // combo + // notify interval unit var combo = new Gtk.ComboBox(); var cell_text = new Gtk.CellRendererText(); combo.pack_start(cell_text, false); @@ -136,23 +136,22 @@ public class SettingsDialog : Gtk.Dialog { //log_debug("combo: %lf".printf(combo.active)); }); - //populate TreeIter iter; - var model = new Gtk.ListStore (2, typeof (string), typeof (string)); + var model = new Gtk.ListStore (1, typeof (string)); model.append (out iter); - model.set (iter,0,_("Hour(s)"),1,"hour"); + model.set (iter,0,_("Hour(s)")); model.append (out iter); - model.set (iter,0,_("Day(s)"),1,"day"); + model.set (iter,0,_("Day(s)")); model.append (out iter); - model.set (iter,0,_("Week(s)"),1,"week"); + model.set (iter,0,_("Week(s)")); if (LOG_DEBUG) { model.append (out iter); - model.set (iter,0,_("Second(s)"),1,"second"); + model.set (iter,0,_("Second(s)")); } combo.set_model(model); combo.set_active(App.notify_interval_unit); - // display + // _Display_ label = new Label("" + _("Display") + ""); label.set_use_markup(true); label.xalign = (float) 0.0; @@ -162,13 +161,13 @@ public class SettingsDialog : Gtk.Dialog { // chk_hide_unstable chk = new CheckButton.with_label(_("Hide unstable and RC releases")); - chk.active = LinuxKernel.hide_unstable; + chk.active = App.hide_unstable; chk.margin_start = 6; vbox_main.add(chk); chk_hide_unstable = chk; chk.toggled.connect(()=>{ - LinuxKernel.hide_unstable = chk_hide_unstable.active; + App.hide_unstable = chk_hide_unstable.active; }); // kernel version threshold @@ -180,15 +179,15 @@ public class SettingsDialog : Gtk.Dialog { label.margin_start = 6; hbox.add (label); - var spm_adj = new Gtk.Adjustment(LinuxKernel.show_prev_majors, 0, 99, 1, 1, 0); + var spm_adj = new Gtk.Adjustment(App.show_prev_majors, 0, 99, 1, 1, 0); var spm_spin = new Gtk.SpinButton (spm_adj, 1, 0); spm_spin.xalign = (float) 0.5; hbox.add(spm_spin); spm_spin.changed.connect(()=>{ - LinuxKernel.show_prev_majors = (int) spm_spin.get_value(); + App.show_prev_majors = (int) spm_spin.get_value(); }); - + // other label = new Label("" + _("Other") + ""); label.set_use_markup(true); From b3365ea8e9423c95edf6b77fce8e615d63e5d0c0 Mon Sep 17 00:00:00 2001 From: cappelikan Date: Sun, 31 May 2020 05:54:36 +0300 Subject: [PATCH 111/567] Update uk.po --- po/uk.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/uk.po b/po/uk.po index 83e762c7..fb9986ba 100644 --- a/po/uk.po +++ b/po/uk.po @@ -471,7 +471,7 @@ msgstr "секунди" #: src/Gtk/SettingsDialog.vala:235 msgid "Max concurrent downloads" -msgstr "" +msgstr "Максимальна кількість завантажень" #: src/Gtk/TerminalWindow.vala:159 src/Utility/Gtk/AboutWindow.vala:294 msgid "Close" From 5f9e226e7a775f6815568ad5c9a4a7f419273422 Mon Sep 17 00:00:00 2001 From: tovam Date: Sun, 28 Jun 2020 15:51:38 +0200 Subject: [PATCH 112/567] Fix link parsing for new versions see bkw777/mainline#43 --- src/Common/LinuxKernel.vala | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/Common/LinuxKernel.vala b/src/Common/LinuxKernel.vala index 63626048..4ce2d73c 100644 --- a/src/Common/LinuxKernel.vala +++ b/src/Common/LinuxKernel.vala @@ -122,19 +122,19 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { public static void initialize_regex(){ try{ //linux-headers-3.4.75-030475-generic_3.4.75-030475.201312201255_amd64.deb - rex_header = new Regex("""linux-headers-[a-zA-Z0-9.\-_]*-generic_[a-zA-Z0-9.\-]*_""" + NATIVE_ARCH + ".deb"); + rex_header = new Regex("(?:" + NATIVE_ARCH + """/|>)?linux-headers-[a-zA-Z0-9.\-_]*-generic_[a-zA-Z0-9.\-]*_""" + NATIVE_ARCH + ".deb"); //linux-headers-3.4.75-030475_3.4.75-030475.201312201255_all.deb - rex_header_all = new Regex("""linux-headers-[a-zA-Z0-9.\-_]*_all.deb"""); + rex_header_all = new Regex("(?:" + NATIVE_ARCH + """/|>)?linux-headers-[a-zA-Z0-9.\-_]*_all.deb"""); //linux-image-3.4.75-030475-generic_3.4.75-030475.201312201255_amd64.deb - rex_image = new Regex("""linux-image-[a-zA-Z0-9.\-_]*-generic_([a-zA-Z0-9.\-]*)_""" + NATIVE_ARCH + ".deb"); + rex_image = new Regex("(?:" + NATIVE_ARCH + """/|>)?linux-image-[a-zA-Z0-9.\-_]*-generic_([a-zA-Z0-9.\-]*)_""" + NATIVE_ARCH + ".deb"); //linux-image-extra-3.4.75-030475-generic_3.4.75-030475.201312201255_amd64.deb - rex_image_extra = new Regex("""linux-image-extra-[a-zA-Z0-9.\-_]*-generic_[a-zA-Z0-9.\-]*_""" + NATIVE_ARCH + ".deb"); + rex_image_extra = new Regex("(?:" + NATIVE_ARCH + """/|>)?linux-image-extra-[a-zA-Z0-9.\-_]*-generic_[a-zA-Z0-9.\-]*_""" + NATIVE_ARCH + ".deb"); //linux-image-extra-3.4.75-030475-generic_3.4.75-030475.201312201255_amd64.deb - rex_modules = new Regex("""linux-modules-[a-zA-Z0-9.\-_]*-generic_[a-zA-Z0-9.\-]*_""" + NATIVE_ARCH + ".deb"); + rex_modules = new Regex("(?:" + NATIVE_ARCH + """/|>)?linux-modules-[a-zA-Z0-9.\-_]*-generic_[a-zA-Z0-9.\-]*_""" + NATIVE_ARCH + ".deb"); } catch (Error e) { log_error (e.message); @@ -936,7 +936,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { try{ ////same deb name// - var rex = new Regex("""([a-zA-Z0-9\-._]+)<\/a>"""); + var rex = new Regex("""([a-zA-Z0-9\-._/]+)<\/a>"""); MatchInfo match; foreach(string line in txt.split("\n")){ From e17e76ed1b4531bf1604bbc443b64a8aa86f1ec4 Mon Sep 17 00:00:00 2001 From: tovam Date: Sun, 28 Jun 2020 20:15:04 +0200 Subject: [PATCH 113/567] Add Mainline version in 'invalid' files --- Makefile | 2 ++ src/Common/LinuxKernel.vala | 6 ++++-- src/Common/Main.vala | 2 ++ 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 3f1b16f6..120b31cb 100644 --- a/Makefile +++ b/Makefile @@ -25,10 +25,12 @@ gee := gee-0.8 include BRANDING.mak BRANDING_VERSION := $(VERSION_MAJOR).$(VERSION_MINOR).$(VERSION_MICRO) +BRANDING_VERSION_INT := $(shell echo ${VERSION_MAJOR}*10000+${VERSION_MINOR}*100+$(VERSION_MICRO) | bc) build_symbols := -X -D'INSTALL_PREFIX="$(prefix)"' \ -X -D'BRANDING_SHORTNAME="$(BRANDING_SHORTNAME)"' \ -X -D'BRANDING_LONGNAME="$(BRANDING_LONGNAME)"' \ -X -D'BRANDING_VERSION="$(BRANDING_VERSION)"' \ + -X -D'BRANDING_VERSION_INT="$(BRANDING_VERSION_INT)"' \ -X -D'BRANDING_AUTHORNAME="$(BRANDING_AUTHORNAME)"' \ -X -D'BRANDING_AUTHOREMAIL="$(BRANDING_AUTHOREMAIL)"' \ -X -D'BRANDING_WEBSITE="$(BRANDING_WEBSITE)"' \ diff --git a/src/Common/LinuxKernel.vala b/src/Common/LinuxKernel.vala index 4ce2d73c..65f783e7 100644 --- a/src/Common/LinuxKernel.vala +++ b/src/Common/LinuxKernel.vala @@ -43,6 +43,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { public static string RUNNING_KERNEL; public static string CURRENT_USER; public static string CURRENT_USER_HOME; + public static int VERSION_INT; public static LinuxKernel kernel_active; public static LinuxKernel kernel_update_major; @@ -813,7 +814,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { public void mark_invalid(){ string f = cache_subdir+"/invalid"; if (!file_exists(f)){ - file_write(f, "1"); + file_write(f, VERSION_INT.to_string()); } } @@ -839,7 +840,8 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { public bool is_valid { get { - return !file_exists("%s/invalid".printf(cache_subdir)); + string invalid_file_path = "%s/invalid".printf(cache_subdir); + return !file_exists(invalid_file_path); } } diff --git a/src/Common/Main.vala b/src/Common/Main.vala index e5c15b96..5a7a12ed 100644 --- a/src/Common/Main.vala +++ b/src/Common/Main.vala @@ -35,6 +35,7 @@ using TeeJee.Misc; [CCode(cname="BRANDING_SHORTNAME")] extern const string BRANDING_SHORTNAME; [CCode(cname="BRANDING_LONGNAME")] extern const string BRANDING_LONGNAME; [CCode(cname="BRANDING_VERSION")] extern const string BRANDING_VERSION; +[CCode(cname="BRANDING_VERSION_INT")] extern const string BRANDING_VERSION_INT; [CCode(cname="BRANDING_AUTHORNAME")] extern const string BRANDING_AUTHORNAME; [CCode(cname="BRANDING_AUTHOREMAIL")] extern const string BRANDING_AUTHOREMAIL; [CCode(cname="BRANDING_WEBSITE")] extern const string BRANDING_WEBSITE; @@ -126,6 +127,7 @@ public class Main : GLib.Object{ LinuxKernel.CACHE_DIR = user_home + "/.cache/" + BRANDING_SHORTNAME; LinuxKernel.CURRENT_USER = user_login; LinuxKernel.CURRENT_USER_HOME = user_home; + LinuxKernel.VERSION_INT = int.parse(BRANDING_VERSION_INT); // todo: consider get_user_runtime_dir() or get_user_cache_dir() TMP_PREFIX = Environment.get_tmp_dir() + "/." + BRANDING_SHORTNAME; From c43375500fd2031da4c6f049d55345fed1202dd6 Mon Sep 17 00:00:00 2001 From: tovam Date: Sun, 28 Jun 2020 20:20:41 +0200 Subject: [PATCH 114/567] Invalidate 'invalid' files when version <= 1 --- src/Common/LinuxKernel.vala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Common/LinuxKernel.vala b/src/Common/LinuxKernel.vala index 65f783e7..31eb61b3 100644 --- a/src/Common/LinuxKernel.vala +++ b/src/Common/LinuxKernel.vala @@ -841,7 +841,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { public bool is_valid { get { string invalid_file_path = "%s/invalid".printf(cache_subdir); - return !file_exists(invalid_file_path); + return !file_exists(invalid_file_path) || int.parse(file_read(invalid_file_path)) <= 1; } } From 80ddf06d503940777a1b04b0e337d2607a66f3fc Mon Sep 17 00:00:00 2001 From: noasakurajin Date: Tue, 7 Jul 2020 10:02:29 +0200 Subject: [PATCH 115/567] Create c-cpp.yml --- .github/workflows/c-cpp.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/c-cpp.yml diff --git a/.github/workflows/c-cpp.yml b/.github/workflows/c-cpp.yml new file mode 100644 index 00000000..c58d28b1 --- /dev/null +++ b/.github/workflows/c-cpp.yml @@ -0,0 +1,19 @@ +name: C/C++ CI + +on: + push: + branches: [ master ] + pull_request: + branches: [ master ] + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + - name: install dependencies + run: sudo apt install debhelper valac libgtk-3-dev libgee-0.8-dev libjson-glib-dev libvte-2.91-dev lsb-release + - name: automatic debuild + run: debuild From 2e3d1ecdd896a97b38ed8832f8a2b0d9934330c5 Mon Sep 17 00:00:00 2001 From: noasakurajin Date: Tue, 7 Jul 2020 10:06:57 +0200 Subject: [PATCH 116/567] added missing dependencies --- .github/workflows/c-cpp.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/c-cpp.yml b/.github/workflows/c-cpp.yml index c58d28b1..ac2657d9 100644 --- a/.github/workflows/c-cpp.yml +++ b/.github/workflows/c-cpp.yml @@ -14,6 +14,6 @@ jobs: steps: - uses: actions/checkout@v2 - name: install dependencies - run: sudo apt install debhelper valac libgtk-3-dev libgee-0.8-dev libjson-glib-dev libvte-2.91-dev lsb-release + run: sudo apt install debhelper valac libgtk-3-dev libgee-0.8-dev libjson-glib-dev libvte-2.91-dev lsb-release dh-make devscripts build-essential - name: automatic debuild run: debuild From 75d17407b991e69798a9f511b58736e6ce7dc946 Mon Sep 17 00:00:00 2001 From: noasakurajin Date: Tue, 7 Jul 2020 10:10:56 +0200 Subject: [PATCH 117/567] not signing built packages --- .github/workflows/c-cpp.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/c-cpp.yml b/.github/workflows/c-cpp.yml index ac2657d9..cf502298 100644 --- a/.github/workflows/c-cpp.yml +++ b/.github/workflows/c-cpp.yml @@ -16,4 +16,4 @@ jobs: - name: install dependencies run: sudo apt install debhelper valac libgtk-3-dev libgee-0.8-dev libjson-glib-dev libvte-2.91-dev lsb-release dh-make devscripts build-essential - name: automatic debuild - run: debuild + run: debuild -uc -us From 1e72e7a4cefee6c2c129a2e0e590baa4786970ac Mon Sep 17 00:00:00 2001 From: noasakurajin Date: Tue, 7 Jul 2020 10:15:24 +0200 Subject: [PATCH 118/567] added build for focal --- .github/workflows/c-cpp.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/c-cpp.yml b/.github/workflows/c-cpp.yml index cf502298..65b1c99a 100644 --- a/.github/workflows/c-cpp.yml +++ b/.github/workflows/c-cpp.yml @@ -9,7 +9,7 @@ on: jobs: build: - runs-on: ubuntu-latest + runs-on: [ubuntu-18.04, ubuntu-20.04] steps: - uses: actions/checkout@v2 From e2b31f7b3640056a64c1c6fa6e16c4c3f6937c4b Mon Sep 17 00:00:00 2001 From: noasakurajin Date: Tue, 7 Jul 2020 10:20:42 +0200 Subject: [PATCH 119/567] properly added focal and bionic build --- .github/workflows/c-cpp.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/c-cpp.yml b/.github/workflows/c-cpp.yml index 65b1c99a..d5b3b310 100644 --- a/.github/workflows/c-cpp.yml +++ b/.github/workflows/c-cpp.yml @@ -8,8 +8,11 @@ on: jobs: build: - - runs-on: [ubuntu-18.04, ubuntu-20.04] + runs-on: ${{ matrix.os }} + strategy: + fail-fast: false + matrix: + os: [ubuntu-20.04, ubuntu-18.04] steps: - uses: actions/checkout@v2 From 8c07b8daa1f944cc128cca4e2a425fbb46ad69ff Mon Sep 17 00:00:00 2001 From: noasakurajin Date: Tue, 7 Jul 2020 10:26:38 +0200 Subject: [PATCH 120/567] running apt update before installing dependencies --- .github/workflows/c-cpp.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/c-cpp.yml b/.github/workflows/c-cpp.yml index d5b3b310..ee588242 100644 --- a/.github/workflows/c-cpp.yml +++ b/.github/workflows/c-cpp.yml @@ -17,6 +17,6 @@ jobs: steps: - uses: actions/checkout@v2 - name: install dependencies - run: sudo apt install debhelper valac libgtk-3-dev libgee-0.8-dev libjson-glib-dev libvte-2.91-dev lsb-release dh-make devscripts build-essential + run: sudo apt-get update && sudo apt-get install debhelper valac libgtk-3-dev libgee-0.8-dev libjson-glib-dev libvte-2.91-dev lsb-release dh-make devscripts build-essential - name: automatic debuild run: debuild -uc -us From 04ead60202ce1f76fc67e76fbd05b72a4b7e6fbe Mon Sep 17 00:00:00 2001 From: Brishen Hawkins Date: Wed, 29 Jul 2020 19:23:25 -0600 Subject: [PATCH 121/567] Switch to HTTPS URL's --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 120b31cb..2ce2a484 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ # Makefile for "mainline" # url to ubuntu mainline kernels -URI_KERNEL_UBUNTU_MAINLINE := http://kernel.ubuntu.com/~kernel-ppa/mainline/ +URI_KERNEL_UBUNTU_MAINLINE := https://kernel.ubuntu.com/~kernel-ppa/mainline/ SHELL := /bin/bash CFLAGS := --std=c99 From d32d813b9e8d9cab1846c320c1e53a7f6c3b8de7 Mon Sep 17 00:00:00 2001 From: antonincms <9219052+antonincms@users.noreply.github.com> Date: Mon, 17 Aug 2020 22:03:19 +0200 Subject: [PATCH 122/567] Updated / fixed french translations --- po/fr.po | 133 +++++++++++++++++++++++-------------------------------- 1 file changed, 56 insertions(+), 77 deletions(-) diff --git a/po/fr.po b/po/fr.po index 8bac7cca..adf87a78 100644 --- a/po/fr.po +++ b/po/fr.po @@ -18,43 +18,40 @@ msgid "Distribution" msgstr "Distribution" #: src/Common/LinuxKernel.vala:102 -#, fuzzy msgid "Architecture" -msgstr "Architecture du système" +msgstr "Architecture" #: src/Common/LinuxKernel.vala:301 msgid "Fetching index..." -msgstr "" +msgstr "Récupération de l'index..." #: src/Common/LinuxKernel.vala:338 msgid "Fetching index from kernel.ubuntu.com..." msgstr "Récupération de l'index depuis kernel.ubuntu.com..." #: src/Common/LinuxKernel.vala:594 -#, fuzzy msgid "Could not find running kernel in list!" -msgstr "Impossible de trouver la version demandée" +msgstr "Impossible de trouver la version courante dans la liste!" #: src/Common/LinuxKernel.vala:600 -#, fuzzy msgid "Could not find any kernels to remove" -msgstr "Sélectionnez les noyaux à supprimer" +msgstr "Impossible de trouver de noyaux à supprimer" #: src/Common/LinuxKernel.vala:609 msgid "The following kernels will be removed:" -msgstr "" +msgstr "Les noyaux suivants seront supprimés:" #: src/Common/LinuxKernel.vala:616 msgid "Continue ?" -msgstr "" +msgstr "Reprendre ?" #: src/Common/LinuxKernel.vala:642 src/Console/AppConsole.vala:304 msgid "Latest update" -msgstr "" +msgstr "Dernière mise à jour" #: src/Common/LinuxKernel.vala:653 src/Console/AppConsole.vala:311 msgid "Latest point update" -msgstr "" +msgstr "Dernière mise à jour mineure" #: src/Common/LinuxKernel.vala:661 src/Console/AppConsole.vala:316 #: src/Console/AppConsole.vala:377 @@ -64,19 +61,19 @@ msgstr "Aucune mise à jour disponible" #: src/Common/LinuxKernel.vala:671 #, c-format msgid "Install Kernel Version %s ? (y/n): " -msgstr "" +msgstr "Installer le noyau en version %s ? (y/n): " #: src/Common/LinuxKernel.vala:908 msgid "Packages Available" -msgstr "Paquets disponibles" +msgstr "Paquets Disponibles" #: src/Common/LinuxKernel.vala:916 msgid "Packages Installed" -msgstr "Paquets installés" +msgstr "Paquets Installés" #: src/Common/LinuxKernel.vala:997 msgid "Available Kernels" -msgstr "Noyaux disponibles" +msgstr "Noyaux Disponibles" #: src/Common/LinuxKernel.vala:1004 src/Gtk/MainWindow.vala:186 msgid "Installed" @@ -85,7 +82,7 @@ msgstr "Installé" #: src/Common/LinuxKernel.vala:1004 src/Gtk/MainWindow.vala:186 #: src/Gtk/MainWindow.vala:627 src/Gtk/MainWindow.vala:641 msgid "Running" -msgstr "En cours" +msgstr "Actuel" #: src/Common/LinuxKernel.vala:1041 msgid "Downloading" @@ -148,9 +145,8 @@ msgid "Called from" msgstr "" #: src/Common/Main.vala:275 -#, fuzzy msgid "Notifications are disabled" -msgstr "Notification" +msgstr "Les notifications sont désactivées" #: src/Common/Package.vala:134 src/Common/Package.vala:198 #, c-format @@ -163,61 +159,55 @@ msgstr "Syntaxe" #: src/Console/AppConsole.vala:64 msgid "Commands" -msgstr "" +msgstr "Commandes" #: src/Console/AppConsole.vala:66 msgid "Check for kernel updates" -msgstr "Vérifier les mises à jour des noyaux" +msgstr "Vérifier les mises à jour de noyau" #: src/Console/AppConsole.vala:67 -#, fuzzy msgid "Check for kernel updates and notify current user" -msgstr "Vérifier les mises à jour des noyaux" +msgstr "Vérifier les mises à jour de noyau et notifier l'utilisateur" #: src/Console/AppConsole.vala:68 msgid "List all available mainline kernels" msgstr "Lister tous les noyaux mainline disponibles" #: src/Console/AppConsole.vala:69 -#, fuzzy msgid "List installed kernels" -msgstr "Lister les noyaux disponibles" +msgstr "Lister les noyaux installés" #: src/Console/AppConsole.vala:70 -#, fuzzy msgid "Install latest mainline kernel" -msgstr "Installer le noyau principal spécifié" +msgstr "Installer le dernier noyau mainline" #: src/Console/AppConsole.vala:71 msgid "Install latest point update for current series" -msgstr "" +msgstr "Installer la dernière version mineure pour la série courante" #: src/Console/AppConsole.vala:72 msgid "Install specified mainline kernel" -msgstr "Installer le noyau principal spécifié" +msgstr "Installer le noyau mainline spécifié" #: src/Console/AppConsole.vala:73 -#, fuzzy msgid "Uninstall specified kernels" -msgstr "Installer le noyau principal spécifié" +msgstr "Installer les noyaux spécifiés" #: src/Console/AppConsole.vala:74 src/Gtk/MainWindow.vala:392 msgid "Remove installed kernels older than running kernel" -msgstr "" +msgstr "Désinstalle les noyaux plus anciens que le noyau courant" #: src/Console/AppConsole.vala:75 -#, fuzzy msgid "Download specified kernels" -msgstr "Télécharger les paquets pour des noyaux spécifiques" +msgstr "Télécharger les noyaux spécifiés" #: src/Console/AppConsole.vala:76 msgid "Remove files from application cache" msgstr "Supprimer les fichiers du cache de l'application" #: src/Console/AppConsole.vala:77 -#, fuzzy msgid "Show unstable and RC releases" -msgstr "Cacher les versions instables et RC" +msgstr "Montrer les versions instables et RC" #: src/Console/AppConsole.vala:79 src/Gtk/AppGtk.vala:151 msgid "Options" @@ -225,7 +215,7 @@ msgstr "Options" #: src/Console/AppConsole.vala:81 msgid "Enable verbose debugging output" -msgstr "" +msgstr "Active la sortie verbeuse de débogage" #: src/Console/AppConsole.vala:82 msgid "Assume Yes for all prompts (non-interactive mode)" @@ -233,16 +223,17 @@ msgstr "" #: src/Console/AppConsole.vala:83 msgid "Override user" -msgstr "" +msgstr "Surcharge l'utilisateur" #: src/Console/AppConsole.vala:86 msgid "A version string taken from the output of --list" -msgstr "" +msgstr "Une version prise du resultat de --list" #: src/Console/AppConsole.vala:87 msgid "" "One or more version strings (comma-separated) taken from the output of --list" msgstr "" +"Une ou plusieurs versions (séparées par des virgules) prises du résultat de --list" #: src/Console/AppConsole.vala:162 src/Gtk/AppGtk.vala:136 msgid "Unknown option" @@ -250,18 +241,16 @@ msgstr "Option inconnue" #: src/Console/AppConsole.vala:164 src/Console/AppConsole.vala:256 #: src/Console/AppConsole.vala:284 -#, fuzzy msgid "Run" -msgstr "En cours" +msgstr "Executez" #: src/Console/AppConsole.vala:164 -#, fuzzy msgid "to list all options" -msgstr "Afficher toutes les options" +msgstr "pour afficher toutes les options" #: src/Console/AppConsole.vala:229 src/Console/AppConsole.vala:264 msgid "No kernels specified" -msgstr "" +msgstr "Aucun noyau spécifié" #: src/Console/AppConsole.vala:235 msgid "Multiple kernels selected for installation. Select only one." @@ -278,23 +267,21 @@ msgid "and use a version string listed in first column" msgstr "" #: src/Console/AppConsole.vala:283 -#, fuzzy msgid "Command not specified" -msgstr "Impossible de trouver le fichier" +msgstr "Pas de commande fournie" #: src/Console/AppConsole.vala:284 -#, fuzzy msgid "to list all commands" -msgstr "Afficher toutes les options" +msgstr "pour afficher toutes les commandes" #: src/Console/AppConsole.vala:350 msgid "Show" -msgstr "" +msgstr "Montrer" #: src/Console/AppConsole.vala:355 src/Console/AppConsole.vala:367 -#, fuzzy, c-format +#, c-format msgid "Kernel %s Available" -msgstr "Paquets disponibles" +msgstr "Paquet %s disponibles" #: src/Console/AppConsole.vala:357 src/Console/AppConsole.vala:369 #: src/Gtk/MainWindow.vala:330 @@ -357,11 +344,11 @@ msgstr "Sélectionnez les noyaux à supprimer" #: src/Gtk/MainWindow.vala:383 src/Gtk/MainWindow.vala:417 #: src/Gtk/MainWindow.vala:686 msgid "Close window to exit..." -msgstr "" +msgstr "Fermer la fenêtre pour quitter..." #: src/Gtk/MainWindow.vala:391 msgid "Purge" -msgstr "" +msgstr "Nettoyer" #: src/Gtk/MainWindow.vala:424 msgid "Changes" @@ -378,19 +365,18 @@ msgstr "À propos" #: src/Gtk/MainWindow.vala:502 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "" -"Utilitaire de mise à niveau des noyaux pour les distributions basées pour " +"Utilitaire de mise à niveau des noyaux pour les distributions basées sur " "Ubuntu" #: src/Gtk/MainWindow.vala:503 msgid "Forked" -msgstr "" +msgstr "Version forkée :" #: src/Gtk/MainWindow.vala:503 msgid "Original" -msgstr "" +msgstr "Version originale :" #: src/Gtk/MainWindow.vala:524 src/Gtk/MainWindow.vala:654 -#, fuzzy msgid "Internet connection is not active." msgstr "Connexion internet inexistante" @@ -399,14 +385,12 @@ msgid "Refreshing..." msgstr "Actualisation..." #: src/Gtk/MainWindow.vala:637 -#, fuzzy msgid "available" -msgstr "Paquets disponibles" +msgstr "disponible" #: src/Gtk/MainWindow.vala:649 -#, fuzzy msgid "Already Installed" -msgstr "Installé" +msgstr "Déjà Installé" #: src/Gtk/ProgressWindow.vala:144 src/Gtk/TerminalWindow.vala:149 #: src/Utility/Gtk/CustomMessageDialog.vala:153 @@ -447,11 +431,11 @@ msgstr "Semaine(s)" #: src/Gtk/SettingsDialog.vala:149 msgid "Second(s)" -msgstr "" +msgstr "Seconde(s)" #: src/Gtk/SettingsDialog.vala:155 msgid "Display" -msgstr "Afficher" +msgstr "Affichage" #: src/Gtk/SettingsDialog.vala:163 msgid "Hide unstable and RC releases" @@ -459,29 +443,27 @@ msgstr "Cacher les versions instables et RC" #: src/Gtk/SettingsDialog.vala:177 msgid "Show N previous major versions " -msgstr "" +msgstr "Montrer les N dernières versions majeures" #: src/Gtk/SettingsDialog.vala:192 msgid "Other" -msgstr "" +msgstr "Autre" #: src/Gtk/SettingsDialog.vala:200 -#, fuzzy msgid "Skip internet connection check" -msgstr "Connexion internet inexistante" +msgstr "Sauter la vérification de connexion internet" #: src/Gtk/SettingsDialog.vala:213 -#, fuzzy msgid "Internet connection timeout in " -msgstr "Connexion internet inexistante" +msgstr "Attendre la connection internet " #: src/Gtk/SettingsDialog.vala:228 msgid "seconds" -msgstr "" +msgstr "secondes" #: src/Gtk/SettingsDialog.vala:235 msgid "Max concurrent downloads" -msgstr "" +msgstr "Nombre maximum de téléchargements parallèles" #: src/Gtk/TerminalWindow.vala:159 src/Utility/Gtk/AboutWindow.vala:294 msgid "Close" @@ -516,9 +498,8 @@ msgid "Documenters" msgstr "Documentalistes" #: src/Utility/Gtk/AboutWindow.vala:353 -#, fuzzy msgid "Third Party Inclusions" -msgstr "Outils tiers" +msgstr "Dépendances Tierces" #: src/Utility/Gtk/CustomMessageDialog.vala:157 msgid "Yes" @@ -533,12 +514,10 @@ msgid "Missing Icon" msgstr "Icône introuvable" #: src/Utility/TeeJee.FileSystem.vala:71 -#, fuzzy msgid "File deleted" -msgstr "Fichier sauvegardé" +msgstr "Fichier supprimé" #: src/Utility/TeeJee.FileSystem.vala:76 src/Utility/TeeJee.FileSystem.vala:256 -#, fuzzy msgid "Failed to delete file" msgstr "Impossible d'écrire le fichier" @@ -585,7 +564,7 @@ msgstr "Impossible de créer le nouveau dossier" #: src/Utility/TeeJee.FileSystem.vala:255 msgid "Deleted" -msgstr "" +msgstr "Supprimé" #: src/Utility/TeeJee.Logging.vala:59 msgid "E" @@ -593,4 +572,4 @@ msgstr "E" #: src/Utility/TeeJee.Logging.vala:84 msgid "D" -msgstr "" +msgstr "D" From 684af9213d5a06c479cf72eaea1f6d9ba86508a8 Mon Sep 17 00:00:00 2001 From: albanobattistella <34811668+albanobattistella@users.noreply.github.com> Date: Sat, 22 Aug 2020 16:29:50 +0200 Subject: [PATCH 123/567] Create it.po --- po/it.po | 573 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 573 insertions(+) create mode 100644 po/it.po diff --git a/po/it.po b/po/it.po new file mode 100644 index 00000000..beb91b29 --- /dev/null +++ b/po/it.po @@ -0,0 +1,573 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the mainline package. +# ALBANO BATTISTELLA , 2020. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: mainline 1.0.12\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-05-29 13:05-0400\n" +"PO-Revision-Date: 2020-08-22 15:35+0100\n" +"Last-Translator: Albano Battistella \n" +"Language-Team: LANGUAGE \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=CHARSET\n" +"Content-Transfer-Encoding: 8bit\n" + +#: src/Common/LinuxKernel.vala:88 +msgid "Distribution" +msgstr "Distribuzione" + +#: src/Common/LinuxKernel.vala:102 +msgid "Architecture" +msgstr Architettura"" + +#: src/Common/LinuxKernel.vala:301 +msgid "Fetching index..." +msgstr "Recupero indice in corso..." + +#: src/Common/LinuxKernel.vala:338 +msgid "Fetching index from kernel.ubuntu.com..." +msgstr "Recupero dell'indice da kernel.ubuntu.com..." + +#: src/Common/LinuxKernel.vala:594 +msgid "Could not find running kernel in list!" +msgstr "Impossibile trovare il kernel in esecuzione nell'elenco!" + +#: src/Common/LinuxKernel.vala:600 +msgid "Could not find any kernels to remove" +msgstr "Impossibile trovare alcun kernel da rimuovere" + +#: src/Common/LinuxKernel.vala:609 +msgid "The following kernels will be removed:" +msgstr "I seguenti kernel verranno rimossi:" + +#: src/Common/LinuxKernel.vala:616 +msgid "Continue ?" +msgstr "Continuare ?" + +#: src/Common/LinuxKernel.vala:642 src/Console/AppConsole.vala:304 +msgid "Latest update" +msgstr "Ultimo aggiornamento" + +#: src/Common/LinuxKernel.vala:653 src/Console/AppConsole.vala:311 +msgid "Latest point update" +msgstr "Ultimo aggiornamento del punto" + +#: src/Common/LinuxKernel.vala:661 src/Console/AppConsole.vala:316 +#: src/Console/AppConsole.vala:377 +msgid "No updates found" +msgstr "Nessun aggiornamento trovato" + +#: src/Common/LinuxKernel.vala:671 +#, c-format +msgid "Install Kernel Version %s ? (y/n): " +msgstr "Installare la versione del kernel %s ? (y/n): " + +#: src/Common/LinuxKernel.vala:908 +msgid "Packages Available" +msgstr "Pacchetti disponibili" + +#: src/Common/LinuxKernel.vala:916 +msgid "Packages Installed" +msgstr "Pacchetti installati" + +#: src/Common/LinuxKernel.vala:997 +msgid "Available Kernels" +msgstr "Kernel disponibili" + +#: src/Common/LinuxKernel.vala:1004 src/Gtk/MainWindow.vala:186 +msgid "Installed" +msgstr "Installato" + +#: src/Common/LinuxKernel.vala:1004 src/Gtk/MainWindow.vala:186 +#: src/Gtk/MainWindow.vala:627 src/Gtk/MainWindow.vala:641 +msgid "Running" +msgstr "In esecuzione" + +#: src/Common/LinuxKernel.vala:1041 +msgid "Downloading" +msgstr "Download in corso" + +#: src/Common/LinuxKernel.vala:1060 +#: src/Utility/Gtk/CustomMessageDialog.vala:148 +#: src/Utility/Gtk/CustomMessageDialog.vala:152 +msgid "OK" +msgstr "OK" + +#: src/Common/LinuxKernel.vala:1065 +msgid "ERROR" +msgstr "ERRORE" + +#: src/Common/LinuxKernel.vala:1079 src/Gtk/MainWindow.vala:649 +msgid "This kernel is already installed." +msgstr "Questo kernel è già installato" + +#: src/Common/LinuxKernel.vala:1105 +msgid "Installation completed. A reboot is required to use the new kernel." +msgstr "Installazione completata. È necessario riavviare per utilizzare il nuovo kernel." + +#: src/Common/LinuxKernel.vala:1108 +msgid "Installation completed with errors" +msgstr "Installazione completata con errori" + +#: src/Common/LinuxKernel.vala:1123 +msgid "" +"Selected kernel is currently running and cannot be removed.\n" +" Install another kernel before removing this one." +msgstr "" +"Il kernel selezionato è attualmente in esecuzione e non può essere rimosso.\n" +"Installa un altro kernel prima di rimuovere questo." + +#: src/Common/LinuxKernel.vala:1128 +msgid "Preparing to remove selected kernels" +msgstr "Preparazione per rimuovere i kernel selezionati" + +#: src/Common/LinuxKernel.vala:1159 src/Common/LinuxKernel.vala:1206 +msgid "Un-install completed" +msgstr "Disinstallazione completata" + +#: src/Common/LinuxKernel.vala:1162 src/Common/LinuxKernel.vala:1209 +msgid "Un-install completed with errors" +msgstr "Disinstallazione completata con errori" + +#: src/Common/LinuxKernel.vala:1175 +msgid "" +"This kernel is currently running and cannot be removed.\n" +" Install another kernel before removing this one." +msgstr "" +"Questo kernel è attualmente in esecuzione e non può essere rimosso.\n" +"Installa un altro kernel prima di rimuovere questo." + +#: src/Common/Main.vala:241 +msgid "Called from" +msgstr "Chiamata da" + +#: src/Common/Main.vala:275 +msgid "Notifications are disabled" +msgstr "Le notifiche sono disabilitate" + +#: src/Common/Package.vala:134 src/Common/Package.vala:198 +#, c-format +msgid "File not found: %s" +msgstr "File non trovato: %s" + +#: src/Console/AppConsole.vala:62 src/Gtk/AppGtk.vala:149 +msgid "Syntax" +msgstr "Sintassi" + +#: src/Console/AppConsole.vala:64 +msgid "Commands" +msgstr "Comandi" + +#: src/Console/AppConsole.vala:66 +msgid "Check for kernel updates" +msgstr "Verifica aggiornamenti per il kernel" + +#: src/Console/AppConsole.vala:67 +msgid "Check for kernel updates and notify current user" +msgstr "Verifica la disponibilità di aggiornamenti del kernel e avvisare l'utente corrente" + +#: src/Console/AppConsole.vala:68 +msgid "List all available mainline kernels" +msgstr "Elenca tutti i kernel mainline disponibili" + +#: src/Console/AppConsole.vala:69 +msgid "List installed kernels" +msgstr "Elenca i kernel installati" + +#: src/Console/AppConsole.vala:70 +msgid "Install latest mainline kernel" +msgstr "Installa ultimo kernel mainline" + +#: src/Console/AppConsole.vala:71 +msgid "Install latest point update for current series" +msgstr "installa l'ultimo aggiornamento del punto per le serie attuali" + +#: src/Console/AppConsole.vala:72 +msgid "Install specified mainline kernel" +msgstr "Installa kernel mainline specificato" + +#: src/Console/AppConsole.vala:73 +msgid "Uninstall specified kernels" +msgstr "Disinstalla i kernel specificati" + +#: src/Console/AppConsole.vala:74 src/Gtk/MainWindow.vala:392 +msgid "Remove installed kernels older than running kernel" +msgstr "Rimuovere i kernel installati più vecchi del kernel in esecuzione" + +#: src/Console/AppConsole.vala:75 +msgid "Download specified kernels" +msgstr "Scarica i kernel specificati" + +#: src/Console/AppConsole.vala:76 +msgid "Remove files from application cache" +msgstr "Rimuovi i file dalla cache dell'applicazione" + +#: src/Console/AppConsole.vala:77 +msgid "Show unstable and RC releases" +msgstr "Mostra versioni instabili e RC" + +#: src/Console/AppConsole.vala:79 src/Gtk/AppGtk.vala:151 +msgid "Options" +msgstr "Opzioni" + +#: src/Console/AppConsole.vala:81 +msgid "Enable verbose debugging output" +msgstr "Abilita l'output di debug dettagliato" + +#: src/Console/AppConsole.vala:82 +msgid "Assume Yes for all prompts (non-interactive mode)" +msgstr "Assicura Sì per tutte le richieste (modalità non interattiva)" + +#: src/Console/AppConsole.vala:83 +msgid "Override user" +msgstr "Sovrascrivi utente" + +#: src/Console/AppConsole.vala:86 +msgid "A version string taken from the output of --list" +msgstr "Una stringa di versione presa dall'output di --list" + +#: src/Console/AppConsole.vala:87 +msgid "" +"One or more version strings (comma-separated) taken from the output of --list" +msgstr "" +"Una o più stringhe di versione (separate da virgole) prese dall'output di --list" + +#: src/Console/AppConsole.vala:162 src/Gtk/AppGtk.vala:136 +msgid "Unknown option" +msgstr "Opzione sconosciuta" + +#: src/Console/AppConsole.vala:164 src/Console/AppConsole.vala:256 +#: src/Console/AppConsole.vala:284 +msgid "Run" +msgstr "In corso" + +#: src/Console/AppConsole.vala:164 +msgid "to list all options" +msgstr "Elencare tutte le opzioni" + +#: src/Console/AppConsole.vala:229 src/Console/AppConsole.vala:264 +msgid "No kernels specified" +msgstr "Nessun kernel specificato" + +#: src/Console/AppConsole.vala:235 +msgid "Multiple kernels selected for installation. Select only one." +msgstr "Più kernel selezionati per l'installazione. Selezionare uno solo." + +#: src/Console/AppConsole.vala:253 src/Gtk/MainWindow.vala:100 +msgid "Could not find requested version" +msgstr "Impossibile trovare la versione richiesta" + +#: src/Console/AppConsole.vala:256 +msgid "and use a version string listed in first column" +msgstr "e usa una stringa di versione elencata nella prima colonna" + +#: src/Console/AppConsole.vala:283 +msgid "Command not specified" +msgstr "Comando non specificato" + +#: src/Console/AppConsole.vala:284 +msgid "to list all commands" +msgstr "Elencare tutti i comandi" + +#: src/Console/AppConsole.vala:350 +msgid "Show" +msgstr "Mostra" + +#: src/Console/AppConsole.vala:355 src/Console/AppConsole.vala:367 +#, c-format +msgid "Kernel %s Available" +msgstr "Kernel %s Disponibile" + +#: src/Console/AppConsole.vala:357 src/Console/AppConsole.vala:369 +#: src/Gtk/MainWindow.vala:330 +msgid "Install" +msgstr "Installa" + +#: src/Gtk/AppGtk.vala:153 +msgid "Print debug information" +msgstr "Stampa le informazioni di debug" + +#: src/Gtk/AppGtk.vala:154 +msgid "Show all options" +msgstr "Mostra tutte le opzioni" + +#: src/Gtk/MainWindow.vala:146 +msgid "Kernel" +msgstr "Kernel" + +#: src/Gtk/MainWindow.vala:174 +msgid "Status" +msgstr "Stato" + +#: src/Gtk/MainWindow.vala:314 +msgid "Refresh" +msgstr "Aggiorna" + +#: src/Gtk/MainWindow.vala:321 src/Utility/TeeJee.System.vala:42 +msgid "Internet connection is not active" +msgstr "La connessione Internet non è attiva" + +#: src/Gtk/MainWindow.vala:321 src/Gtk/MainWindow.vala:524 +#: src/Gtk/MainWindow.vala:654 +msgid "No Internet" +msgstr "Nessuna connessione internet" + +#: src/Gtk/MainWindow.vala:339 +msgid "Multiple Kernels Selected" +msgstr "Più kernel selezionati" + +#: src/Gtk/MainWindow.vala:339 +msgid "Select a single kernel to install" +msgstr "Seleziona un singolo kernel da installare" + +#: src/Gtk/MainWindow.vala:342 src/Gtk/MainWindow.vala:353 +msgid "Not Selected" +msgstr "Non selezionato" + +#: src/Gtk/MainWindow.vala:342 +msgid "Select the kernel to install" +msgstr "Seleziona il kernel da installare" + +#: src/Gtk/MainWindow.vala:347 +msgid "Remove" +msgstr "Rimuovi" + +#: src/Gtk/MainWindow.vala:353 +msgid "Select the kernels to remove" +msgstr "Seleziona i kernel da rimuovere" + +#: src/Gtk/MainWindow.vala:383 src/Gtk/MainWindow.vala:417 +#: src/Gtk/MainWindow.vala:686 +msgid "Close window to exit..." +msgstr "Chiudere la finestra per uscire..." + +#: src/Gtk/MainWindow.vala:391 +msgid "Purge" +msgstr "Purge" + +#: src/Gtk/MainWindow.vala:424 +msgid "Changes" +msgstr "Modifiche" + +#: src/Gtk/MainWindow.vala:435 src/Gtk/SettingsDialog.vala:50 +msgid "Settings" +msgstr "Impostazioni" + +#: src/Gtk/MainWindow.vala:458 +msgid "About" +msgstr "Informazioni" + +#: src/Gtk/MainWindow.vala:502 +msgid "Kernel upgrade utility for Ubuntu-based distributions" +msgstr "Utilità di aggiornamento del kernel per distribuzioni basate su Ubuntu" + +#: src/Gtk/MainWindow.vala:503 +msgid "Forked" +msgstr "Forked" + +#: src/Gtk/MainWindow.vala:503 +msgid "Original" +msgstr "Originale" + +#: src/Gtk/MainWindow.vala:524 src/Gtk/MainWindow.vala:654 +msgid "Internet connection is not active." +msgstr "La connessione Internet non è attiva." + +#: src/Gtk/MainWindow.vala:543 +msgid "Refreshing..." +msgstr "Aggiornamento..." + +#: src/Gtk/MainWindow.vala:637 +msgid "available" +msgstr "disponibile" + +#: src/Gtk/MainWindow.vala:649 +msgid "Already Installed" +msgstr "Già Installato" + +#: src/Gtk/ProgressWindow.vala:144 src/Gtk/TerminalWindow.vala:149 +#: src/Utility/Gtk/CustomMessageDialog.vala:153 +msgid "Cancel" +msgstr "Cancella" + +#: src/Gtk/SettingsDialog.vala:60 +msgid "Notification" +msgstr "Notifica" + +#: src/Gtk/SettingsDialog.vala:67 +msgid "Notify if a major release is available" +msgstr "Avvisa se è disponibile una versione principale" + +#: src/Gtk/SettingsDialog.vala:78 +msgid "Notify if a point release is available" +msgstr "Avvisa se è disponibile un rilascio parziale" + +#: src/Gtk/SettingsDialog.vala:89 +msgid "(Allowing intervals in seconds for --debug)" +msgstr "(Consentire intervalli in secondi per --debug)" + +#: src/Gtk/SettingsDialog.vala:112 +msgid "Check every" +msgstr "Controlla ogni" + +#: src/Gtk/SettingsDialog.vala:142 +msgid "Hour(s)" +msgstr "Ora(e)" + +#: src/Gtk/SettingsDialog.vala:144 +msgid "Day(s)" +msgstr "Giorno(i)" + +#: src/Gtk/SettingsDialog.vala:146 +msgid "Week(s)" +msgstr "Settimana(e)" + +#: src/Gtk/SettingsDialog.vala:149 +msgid "Second(s)" +msgstr "Secondo(i)" + +#: src/Gtk/SettingsDialog.vala:155 +msgid "Display" +msgstr "Visualizza" + +#: src/Gtk/SettingsDialog.vala:163 +msgid "Hide unstable and RC releases" +msgstr "Nascondi versioni instabili e RC" + +#: src/Gtk/SettingsDialog.vala:177 +msgid "Show N previous major versions " +msgstr "Mostra N versioni principali precedenti" + +#: src/Gtk/SettingsDialog.vala:192 +msgid "Other" +msgstr "Altro" + +#: src/Gtk/SettingsDialog.vala:200 +msgid "Skip internet connection check" +msgstr "Salta il controllo della connessione a Internet" + +#: src/Gtk/SettingsDialog.vala:213 +msgid "Internet connection timeout in " +msgstr "Timeout connessione Internet in" + +#: src/Gtk/SettingsDialog.vala:228 +msgid "seconds" +msgstr "secondi" + +#: src/Gtk/SettingsDialog.vala:235 +msgid "Max concurrent downloads" +msgstr "Numero massimo di download simultanei" + +#: src/Gtk/TerminalWindow.vala:159 src/Utility/Gtk/AboutWindow.vala:294 +msgid "Close" +msgstr "Chiudi" + +#: src/Utility/Gtk/AboutWindow.vala:271 src/Utility/Gtk/AboutWindow.vala:288 +msgid "Credits" +msgstr "Crediti" + +#: src/Utility/Gtk/AboutWindow.vala:284 +msgid "Back" +msgstr "Indietro" + +#: src/Utility/Gtk/AboutWindow.vala:313 +msgid "Authors" +msgstr "Autori" + +#: src/Utility/Gtk/AboutWindow.vala:321 +msgid "Contributions" +msgstr "Contributori" + +#: src/Utility/Gtk/AboutWindow.vala:329 +msgid "Artists" +msgstr "Artisti" + +#: src/Utility/Gtk/AboutWindow.vala:337 +msgid "Translators" +msgstr "Albano Battistella" + +#: src/Utility/Gtk/AboutWindow.vala:345 +msgid "Documenters" +msgstr "Documentatori" + +#: src/Utility/Gtk/AboutWindow.vala:353 +msgid "Third Party Inclusions" +msgstr "Inclusioni di terze parti" + +#: src/Utility/Gtk/CustomMessageDialog.vala:157 +msgid "Yes" +msgstr "Si" + +#: src/Utility/Gtk/CustomMessageDialog.vala:158 +msgid "No" +msgstr "No" + +#: src/Utility/Gtk/GtkHelper.vala:67 +msgid "Missing Icon" +msgstr "Icona mancante" + +#: src/Utility/TeeJee.FileSystem.vala:71 +msgid "File deleted" +msgstr "File eliminato" + +#: src/Utility/TeeJee.FileSystem.vala:76 src/Utility/TeeJee.FileSystem.vala:256 +msgid "Failed to delete file" +msgstr "Impossibile eliminare il file" + +#: src/Utility/TeeJee.FileSystem.vala:96 +msgid "Failed to read file" +msgstr "Impossibile leggere il file" + +#: src/Utility/TeeJee.FileSystem.vala:123 +msgid "File saved" +msgstr "File salvato" + +#: src/Utility/TeeJee.FileSystem.vala:129 +msgid "Failed to write file" +msgstr "Impossibile scrivere il file" + +#: src/Utility/TeeJee.FileSystem.vala:141 +msgid "File copied" +msgstr "File copiato" + +#: src/Utility/TeeJee.FileSystem.vala:148 +msgid "Failed to copy file" +msgstr "Impossibile copiare il file" + +#: src/Utility/TeeJee.FileSystem.vala:158 +msgid "File not found" +msgstr "File non trovato" + +#: src/Utility/TeeJee.FileSystem.vala:171 +msgid "File moved" +msgstr "File spostato" + +#: src/Utility/TeeJee.FileSystem.vala:176 +msgid "Failed to move file" +msgstr "Impossibile spostare il file" + +#: src/Utility/TeeJee.FileSystem.vala:233 +#: src/Utility/TeeJee.FileSystem.vala:236 +msgid "Created directory" +msgstr "Directory creata" + +#: src/Utility/TeeJee.FileSystem.vala:243 +msgid "Failed to create dir" +msgstr "Impossibile creare la directory" + +#: src/Utility/TeeJee.FileSystem.vala:255 +msgid "Deleted" +msgstr "Cancellato" + +#: src/Utility/TeeJee.Logging.vala:59 +msgid "E" +msgstr "E" + +#: src/Utility/TeeJee.Logging.vala:84 +msgid "D" +msgstr "D" From 0176d8dd5fe941dc3c92027839cbe27797cef4c2 Mon Sep 17 00:00:00 2001 From: albanobattistella <34811668+albanobattistella@users.noreply.github.com> Date: Sat, 22 Aug 2020 16:38:11 +0200 Subject: [PATCH 124/567] Update it.po --- po/it.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/it.po b/po/it.po index beb91b29..618825da 100644 --- a/po/it.po +++ b/po/it.po @@ -11,8 +11,8 @@ msgstr "" "POT-Creation-Date: 2020-05-29 13:05-0400\n" "PO-Revision-Date: 2020-08-22 15:35+0100\n" "Last-Translator: Albano Battistella \n" -"Language-Team: LANGUAGE \n" -"Language: \n" +"Language-Team: Italian \n" +"Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" From 366faa728b480cb6f8579f94224a2cd43e3534b5 Mon Sep 17 00:00:00 2001 From: Heimen Stoffels Date: Sun, 23 Aug 2020 13:56:05 +0200 Subject: [PATCH 125/567] Updated Dutch translation --- po/nl.po | 202 +++++++++++++++++++++++++------------------------------ 1 file changed, 91 insertions(+), 111 deletions(-) diff --git a/po/nl.po b/po/nl.po index 0965b08f..87e07472 100644 --- a/po/nl.po +++ b/po/nl.po @@ -3,14 +3,14 @@ msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2020-05-29 13:05-0400\n" -"PO-Revision-Date: 2017-04-30 11:50+0200\n" +"PO-Revision-Date: 2020-08-23 13:55+0200\n" "Last-Translator: Heimen Stoffels \n" "Language-Team: \n" "Language: nl_NL\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Poedit 2.0.1\n" +"X-Generator: Poedit 2.4.1\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: src/Common/LinuxKernel.vala:88 @@ -18,43 +18,40 @@ msgid "Distribution" msgstr "Distributie" #: src/Common/LinuxKernel.vala:102 -#, fuzzy msgid "Architecture" -msgstr "Systeemarchitectuur" +msgstr "Architectuur" #: src/Common/LinuxKernel.vala:301 msgid "Fetching index..." -msgstr "" +msgstr "Bezig met ophalen van index..." #: src/Common/LinuxKernel.vala:338 msgid "Fetching index from kernel.ubuntu.com..." msgstr "Bezig met ophalen van index van kernel.ubuntu.com..." #: src/Common/LinuxKernel.vala:594 -#, fuzzy msgid "Could not find running kernel in list!" -msgstr "De vereiste versie kan niet worden gevonden" +msgstr "De in gebruik zijnde kernel staat niet op de lijst!" #: src/Common/LinuxKernel.vala:600 -#, fuzzy msgid "Could not find any kernels to remove" -msgstr "Selecteer de te verwijderen kernels" +msgstr "Er zijn geen te verwijderen kernels" #: src/Common/LinuxKernel.vala:609 msgid "The following kernels will be removed:" -msgstr "" +msgstr "De volgende kernels worden verwijderd:" #: src/Common/LinuxKernel.vala:616 msgid "Continue ?" -msgstr "" +msgstr "Wil je doorgaan?" #: src/Common/LinuxKernel.vala:642 src/Console/AppConsole.vala:304 msgid "Latest update" -msgstr "" +msgstr "Recentste update" #: src/Common/LinuxKernel.vala:653 src/Console/AppConsole.vala:311 msgid "Latest point update" -msgstr "" +msgstr "Recentste puntupdate" #: src/Common/LinuxKernel.vala:661 src/Console/AppConsole.vala:316 #: src/Console/AppConsole.vala:377 @@ -64,7 +61,7 @@ msgstr "Geen updates gevonden" #: src/Common/LinuxKernel.vala:671 #, c-format msgid "Install Kernel Version %s ? (y/n): " -msgstr "" +msgstr "Wil je versie %s installeren? (j/n): " #: src/Common/LinuxKernel.vala:908 msgid "Packages Available" @@ -85,7 +82,7 @@ msgstr "Geïnstalleerd" #: src/Common/LinuxKernel.vala:1004 src/Gtk/MainWindow.vala:186 #: src/Gtk/MainWindow.vala:627 src/Gtk/MainWindow.vala:641 msgid "Running" -msgstr "Bezig met draaien" +msgstr "In gebruik" #: src/Common/LinuxKernel.vala:1041 msgid "Downloading" @@ -122,11 +119,11 @@ msgid "" msgstr "" "De geselecteerde kernel is momenteel in gebruik en kan daarom niet worden " "verwijderd.\n" -" Installeer een andere kernel voordat u deze verwijdert." +" Installeer eerst een andere kernel." #: src/Common/LinuxKernel.vala:1128 msgid "Preparing to remove selected kernels" -msgstr "Bezig met voorbereiden van verwijderen van geselecteerde kernels" +msgstr "Bezig met voorbereiden van verwijdering" #: src/Common/LinuxKernel.vala:1159 src/Common/LinuxKernel.vala:1206 msgid "Un-install completed" @@ -142,16 +139,15 @@ msgid "" " Install another kernel before removing this one." msgstr "" "Deze kernel is momenteel in gebruik en kan daarom niet worden verwijderd.\n" -" Installeer een andere kernel voordat u deze verwijdert." +" Installeer eerst een andere kernel." #: src/Common/Main.vala:241 msgid "Called from" -msgstr "" +msgstr "Aangeroepen door" #: src/Common/Main.vala:275 -#, fuzzy msgid "Notifications are disabled" -msgstr "Melding" +msgstr "Meldingen zijn uitgeschakeld" #: src/Common/Package.vala:134 src/Common/Package.vala:198 #, c-format @@ -164,61 +160,55 @@ msgstr "Syntax" #: src/Console/AppConsole.vala:64 msgid "Commands" -msgstr "" +msgstr "Opdrachten" #: src/Console/AppConsole.vala:66 msgid "Check for kernel updates" -msgstr "Controleren op kernel-updates" +msgstr "Controleren op kernelupdates" #: src/Console/AppConsole.vala:67 -#, fuzzy msgid "Check for kernel updates and notify current user" -msgstr "Controleren op kernel-updates" +msgstr "Controleren op kernelupdates en gebruiker op de hoogte brengen" #: src/Console/AppConsole.vala:68 msgid "List all available mainline kernels" -msgstr "Alle beschikbare mainline-kernels weergeven" +msgstr "Alle beschikbare mainline-kernels tonen" #: src/Console/AppConsole.vala:69 -#, fuzzy msgid "List installed kernels" -msgstr "Alle beschikbare mainline-kernels weergeven" +msgstr "Alle geïnstalleerde kernels tonen" #: src/Console/AppConsole.vala:70 -#, fuzzy msgid "Install latest mainline kernel" -msgstr "Opgegeven mainline-kernel installeren" +msgstr "Recentste mainline-kernel installeren" #: src/Console/AppConsole.vala:71 msgid "Install latest point update for current series" -msgstr "" +msgstr "Recentste puntupdate uit huidige editie installeren" #: src/Console/AppConsole.vala:72 msgid "Install specified mainline kernel" msgstr "Opgegeven mainline-kernel installeren" #: src/Console/AppConsole.vala:73 -#, fuzzy msgid "Uninstall specified kernels" -msgstr "Opgegeven mainline-kernel installeren" +msgstr "Opgegeven kernels deïnstalleren" #: src/Console/AppConsole.vala:74 src/Gtk/MainWindow.vala:392 msgid "Remove installed kernels older than running kernel" -msgstr "" +msgstr "Geïnstalleerde kernels verwijderen die ouder zijn dan de huidige" #: src/Console/AppConsole.vala:75 -#, fuzzy msgid "Download specified kernels" -msgstr "Pakketten downloaden voor opgegeven kernel" +msgstr "Opgegeven kernels downloaden" #: src/Console/AppConsole.vala:76 msgid "Remove files from application cache" -msgstr "Bestanden verwijderen uit applicatie-cache" +msgstr "Bestanden verwijderen uit programmacache" #: src/Console/AppConsole.vala:77 -#, fuzzy msgid "Show unstable and RC releases" -msgstr "Instabiele en RC-uitgaven verbergen" +msgstr "Instabiele en rc-uitgaven tonen" #: src/Console/AppConsole.vala:79 src/Gtk/AppGtk.vala:151 msgid "Options" @@ -226,24 +216,26 @@ msgstr "Opties" #: src/Console/AppConsole.vala:81 msgid "Enable verbose debugging output" -msgstr "" +msgstr "Foutopsporingsinformatie vastleggen" #: src/Console/AppConsole.vala:82 msgid "Assume Yes for all prompts (non-interactive mode)" -msgstr "" +msgstr "Ja op alles (in de niet-interactieve modus)" #: src/Console/AppConsole.vala:83 msgid "Override user" -msgstr "" +msgstr "Gebruiker overmeesteren" #: src/Console/AppConsole.vala:86 msgid "A version string taken from the output of --list" -msgstr "" +msgstr "Een versietekenreeks uit de uitvoer van --list" #: src/Console/AppConsole.vala:87 msgid "" "One or more version strings (comma-separated) taken from the output of --list" msgstr "" +"Eén of meerdere versietekenreeksen (kommagescheiden) uit de uitvoer van --" +"list" #: src/Console/AppConsole.vala:162 src/Gtk/AppGtk.vala:136 msgid "Unknown option" @@ -251,24 +243,21 @@ msgstr "Onbekende optie" #: src/Console/AppConsole.vala:164 src/Console/AppConsole.vala:256 #: src/Console/AppConsole.vala:284 -#, fuzzy msgid "Run" -msgstr "Bezig met draaien" +msgstr "Uitvoeren" #: src/Console/AppConsole.vala:164 -#, fuzzy msgid "to list all options" -msgstr "Alle opties weergeven" +msgstr "om alle opties te tonen" #: src/Console/AppConsole.vala:229 src/Console/AppConsole.vala:264 msgid "No kernels specified" -msgstr "" +msgstr "Geen kernels opgegeven" #: src/Console/AppConsole.vala:235 msgid "Multiple kernels selected for installation. Select only one." msgstr "" -"Er zijn meerdere te installeren kernels geselecteerd. Selecteer er slechts " -"één." +"Er zijn meerdere te installeren kernels geselecteerd. Selecteer er één." #: src/Console/AppConsole.vala:253 src/Gtk/MainWindow.vala:100 msgid "Could not find requested version" @@ -276,25 +265,24 @@ msgstr "De vereiste versie kan niet worden gevonden" #: src/Console/AppConsole.vala:256 msgid "and use a version string listed in first column" -msgstr "" +msgstr "en gebruik een versietekenreeks in de eerste kolom" #: src/Console/AppConsole.vala:283 msgid "Command not specified" -msgstr "" +msgstr "Geen opdracht opgegeven" #: src/Console/AppConsole.vala:284 -#, fuzzy msgid "to list all commands" -msgstr "Alle opties weergeven" +msgstr "om alle opdrachten te tonen" #: src/Console/AppConsole.vala:350 msgid "Show" -msgstr "" +msgstr "Tonen" #: src/Console/AppConsole.vala:355 src/Console/AppConsole.vala:367 -#, fuzzy, c-format +#, c-format msgid "Kernel %s Available" -msgstr "Beschikbare pakketten" +msgstr "Kernel %s is beschikbaar" #: src/Console/AppConsole.vala:357 src/Console/AppConsole.vala:369 #: src/Gtk/MainWindow.vala:330 @@ -303,11 +291,11 @@ msgstr "Installeren" #: src/Gtk/AppGtk.vala:153 msgid "Print debug information" -msgstr "Foutopsporingsinformatie printen" +msgstr "Foutopsporingsinformatie tonen" #: src/Gtk/AppGtk.vala:154 msgid "Show all options" -msgstr "Alle opties weergeven" +msgstr "Alle opties tonen" #: src/Gtk/MainWindow.vala:146 msgid "Kernel" @@ -323,7 +311,7 @@ msgstr "Verversen" #: src/Gtk/MainWindow.vala:321 src/Utility/TeeJee.System.vala:42 msgid "Internet connection is not active" -msgstr "U bent niet verbonden met het internet" +msgstr "Je bent niet verbonden met het internet" #: src/Gtk/MainWindow.vala:321 src/Gtk/MainWindow.vala:524 #: src/Gtk/MainWindow.vala:654 @@ -336,7 +324,7 @@ msgstr "Meerdere kernels geselecteerd" #: src/Gtk/MainWindow.vala:339 msgid "Select a single kernel to install" -msgstr "Selecteer een enkele te installeren kernel" +msgstr "Selecteer één te installeren kernel" #: src/Gtk/MainWindow.vala:342 src/Gtk/MainWindow.vala:353 msgid "Not Selected" @@ -348,20 +336,20 @@ msgstr "Selecteer de te installeren kernel" #: src/Gtk/MainWindow.vala:347 msgid "Remove" -msgstr "Verwijderen" +msgstr "Deïnstalleren" #: src/Gtk/MainWindow.vala:353 msgid "Select the kernels to remove" -msgstr "Selecteer de te verwijderen kernels" +msgstr "Selecteer de te deïnstalleren kernels" #: src/Gtk/MainWindow.vala:383 src/Gtk/MainWindow.vala:417 #: src/Gtk/MainWindow.vala:686 msgid "Close window to exit..." -msgstr "" +msgstr "Sluit het venster..." #: src/Gtk/MainWindow.vala:391 msgid "Purge" -msgstr "" +msgstr "Vernietigen" #: src/Gtk/MainWindow.vala:424 msgid "Changes" @@ -377,34 +365,31 @@ msgstr "Over" #: src/Gtk/MainWindow.vala:502 msgid "Kernel upgrade utility for Ubuntu-based distributions" -msgstr "Kernel-upgradehulpmiddel voor op Ubuntu-gebaseerde distributies" +msgstr "Een kernelupgradehulpmiddel voor op Ubuntu gebaseerde distributies" #: src/Gtk/MainWindow.vala:503 msgid "Forked" -msgstr "" +msgstr "Geforkt" #: src/Gtk/MainWindow.vala:503 msgid "Original" -msgstr "" +msgstr "Origineel" #: src/Gtk/MainWindow.vala:524 src/Gtk/MainWindow.vala:654 -#, fuzzy msgid "Internet connection is not active." -msgstr "U bent niet verbonden met het internet" +msgstr "Je bent niet verbonden met het internet." #: src/Gtk/MainWindow.vala:543 msgid "Refreshing..." msgstr "Bezig met verversen..." #: src/Gtk/MainWindow.vala:637 -#, fuzzy msgid "available" -msgstr "Beschikbare pakketten" +msgstr "beschikbaar" #: src/Gtk/MainWindow.vala:649 -#, fuzzy msgid "Already Installed" -msgstr "Geïnstalleerd" +msgstr "Reeds geïnstalleerd" #: src/Gtk/ProgressWindow.vala:144 src/Gtk/TerminalWindow.vala:149 #: src/Utility/Gtk/CustomMessageDialog.vala:153 @@ -417,19 +402,19 @@ msgstr "Melding" #: src/Gtk/SettingsDialog.vala:67 msgid "Notify if a major release is available" -msgstr "Melding weergeven als er een grote update beschikbaar is" +msgstr "Melding tonen als er een grote update beschikbaar is" #: src/Gtk/SettingsDialog.vala:78 msgid "Notify if a point release is available" -msgstr "Melding weergeven als er een puntupdate beschikbaar is" +msgstr "Melding tonen als er een puntupdate beschikbaar is" #: src/Gtk/SettingsDialog.vala:89 msgid "(Allowing intervals in seconds for --debug)" -msgstr "" +msgstr "(staat tussenpozen in seconden toe voor --debug)" #: src/Gtk/SettingsDialog.vala:112 msgid "Check every" -msgstr "Controleer elke" +msgstr "Controleren, elke" #: src/Gtk/SettingsDialog.vala:142 msgid "Hour(s)" @@ -441,11 +426,11 @@ msgstr "dag(en)" #: src/Gtk/SettingsDialog.vala:146 msgid "Week(s)" -msgstr "we(e)k(en)" +msgstr "week/weken" #: src/Gtk/SettingsDialog.vala:149 msgid "Second(s)" -msgstr "" +msgstr "seconde(n)" #: src/Gtk/SettingsDialog.vala:155 msgid "Display" @@ -453,33 +438,31 @@ msgstr "Weergave" #: src/Gtk/SettingsDialog.vala:163 msgid "Hide unstable and RC releases" -msgstr "Instabiele en RC-uitgaven verbergen" +msgstr "Instabiele en rc-uitgaven verbergen" #: src/Gtk/SettingsDialog.vala:177 msgid "Show N previous major versions " -msgstr "" +msgstr "X aantal grote updates tonen " #: src/Gtk/SettingsDialog.vala:192 msgid "Other" -msgstr "" +msgstr "Overig" #: src/Gtk/SettingsDialog.vala:200 -#, fuzzy msgid "Skip internet connection check" -msgstr "U bent niet verbonden met het internet" +msgstr "Verbindingscontrole overslaan" #: src/Gtk/SettingsDialog.vala:213 -#, fuzzy msgid "Internet connection timeout in " -msgstr "U bent niet verbonden met het internet" +msgstr "Verbindingstime-out na " #: src/Gtk/SettingsDialog.vala:228 msgid "seconds" -msgstr "" +msgstr "seconden" #: src/Gtk/SettingsDialog.vala:235 msgid "Max concurrent downloads" -msgstr "" +msgstr "Max. aantal gelijktijdige downloads" #: src/Gtk/TerminalWindow.vala:159 src/Utility/Gtk/AboutWindow.vala:294 msgid "Close" @@ -495,11 +478,11 @@ msgstr "Terug" #: src/Utility/Gtk/AboutWindow.vala:313 msgid "Authors" -msgstr "Auteurs" +msgstr "Makers" #: src/Utility/Gtk/AboutWindow.vala:321 msgid "Contributions" -msgstr "Bijdragen" +msgstr "Bijdragers" #: src/Utility/Gtk/AboutWindow.vala:329 msgid "Artists" @@ -514,76 +497,73 @@ msgid "Documenters" msgstr "Documenteerders" #: src/Utility/Gtk/AboutWindow.vala:353 -#, fuzzy msgid "Third Party Inclusions" -msgstr "Externe hulpmiddelen" +msgstr "Externe code" #: src/Utility/Gtk/CustomMessageDialog.vala:157 msgid "Yes" -msgstr "" +msgstr "Ja" #: src/Utility/Gtk/CustomMessageDialog.vala:158 msgid "No" -msgstr "" +msgstr "Nee" #: src/Utility/Gtk/GtkHelper.vala:67 msgid "Missing Icon" msgstr "Ontbrekend pictogram" #: src/Utility/TeeJee.FileSystem.vala:71 -#, fuzzy msgid "File deleted" -msgstr "Bestand opgeslagen" +msgstr "Het bestand is verwijderd" #: src/Utility/TeeJee.FileSystem.vala:76 src/Utility/TeeJee.FileSystem.vala:256 -#, fuzzy msgid "Failed to delete file" -msgstr "Schrijven naar bestand is mislukt" +msgstr "Het bestand kan niet worden verwijderd" #: src/Utility/TeeJee.FileSystem.vala:96 msgid "Failed to read file" -msgstr "Lezen van bestand is mislukt" +msgstr "Het bestand kan niet worden uitgelezen" #: src/Utility/TeeJee.FileSystem.vala:123 msgid "File saved" -msgstr "Bestand opgeslagen" +msgstr "Het bestand is opgeslagen" #: src/Utility/TeeJee.FileSystem.vala:129 msgid "Failed to write file" -msgstr "Schrijven naar bestand is mislukt" +msgstr "Het bestand kan niet worden weggeschreven" #: src/Utility/TeeJee.FileSystem.vala:141 msgid "File copied" -msgstr "Bestand gekopieerd" +msgstr "Het bestand is gekopieerd" #: src/Utility/TeeJee.FileSystem.vala:148 msgid "Failed to copy file" -msgstr "Kopiëren van bestand is mislukt" +msgstr "Het bestand kan niet worden gekopieerd" #: src/Utility/TeeJee.FileSystem.vala:158 msgid "File not found" -msgstr "Bestand niet gevonden" +msgstr "Het bestand is niet gevonden" #: src/Utility/TeeJee.FileSystem.vala:171 msgid "File moved" -msgstr "Bestand verplaatst" +msgstr "Het bestand is verplaatst" #: src/Utility/TeeJee.FileSystem.vala:176 msgid "Failed to move file" -msgstr "Verplaatsen van bestand is mislukt" +msgstr "Het bestand kan niet worden verplaatst" #: src/Utility/TeeJee.FileSystem.vala:233 #: src/Utility/TeeJee.FileSystem.vala:236 msgid "Created directory" -msgstr "Map gecreëerd" +msgstr "De map is aangemaakt" #: src/Utility/TeeJee.FileSystem.vala:243 msgid "Failed to create dir" -msgstr "Creëren van map is mislukt" +msgstr "De map kan niet worden aangemaakt" #: src/Utility/TeeJee.FileSystem.vala:255 msgid "Deleted" -msgstr "" +msgstr "Verwijderd" #: src/Utility/TeeJee.Logging.vala:59 msgid "E" @@ -591,4 +571,4 @@ msgstr "E" #: src/Utility/TeeJee.Logging.vala:84 msgid "D" -msgstr "" +msgstr "D" From edc051ee3520be567f3c9c9fe0224cf18a4e3d84 Mon Sep 17 00:00:00 2001 From: albanobattistella <34811668+albanobattistella@users.noreply.github.com> Date: Mon, 24 Aug 2020 13:59:11 +0200 Subject: [PATCH 126/567] Update it.po --- po/it.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/it.po b/po/it.po index 618825da..2cb8d102 100644 --- a/po/it.po +++ b/po/it.po @@ -14,7 +14,7 @@ msgstr "" "Language-Team: Italian \n" "Language: it\n" "MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=CHARSET\n" +"Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #: src/Common/LinuxKernel.vala:88 From 41caa3bb1b61cff95571464a985f2af8506e33ab Mon Sep 17 00:00:00 2001 From: albanobattistella <34811668+albanobattistella@users.noreply.github.com> Date: Mon, 24 Aug 2020 14:39:49 +0200 Subject: [PATCH 127/567] Update it.po --- po/it.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/it.po b/po/it.po index 2cb8d102..cd31924e 100644 --- a/po/it.po +++ b/po/it.po @@ -3,7 +3,6 @@ # This file is distributed under the same license as the mainline package. # ALBANO BATTISTELLA , 2020. # -#, fuzzy msgid "" msgstr "" "Project-Id-Version: mainline 1.0.12\n" @@ -23,7 +22,7 @@ msgstr "Distribuzione" #: src/Common/LinuxKernel.vala:102 msgid "Architecture" -msgstr Architettura"" +msgstr "Architettura" #: src/Common/LinuxKernel.vala:301 msgid "Fetching index..." From 4b43529bde0a39440747816b2ce3c830aebb1009 Mon Sep 17 00:00:00 2001 From: albanobattistella <34811668+albanobattistella@users.noreply.github.com> Date: Mon, 24 Aug 2020 14:52:09 +0200 Subject: [PATCH 128/567] Update it.po From 093b9734d58a2b2fc6520101af085250599e2643 Mon Sep 17 00:00:00 2001 From: Dan Dascalescu Date: Sat, 12 Dec 2020 22:49:13 -1000 Subject: [PATCH 129/567] Mention mainline-gtk --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index 8b41bcee..cf587565 100644 --- a/README.md +++ b/README.md @@ -27,6 +27,10 @@ mainline is written using Vala and GTK3. Source code and binaries are available make sudo make install +### Run + +Run `mainline` for the command line version, and `mainline-gtk` for the grpahical interface. + ### About mainline is a fork of [ukuu](https://github.com/teejee2008/ukuu) From e1c5146045ad0198e463393a798f4a105a185659 Mon Sep 17 00:00:00 2001 From: Dan Dascalescu Date: Thu, 17 Dec 2020 10:45:29 -1000 Subject: [PATCH 130/567] Mention mainline-gtk Co-authored-by: Stefan van Essen --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index cf587565..6e372977 100644 --- a/README.md +++ b/README.md @@ -29,7 +29,7 @@ mainline is written using Vala and GTK3. Source code and binaries are available ### Run -Run `mainline` for the command line version, and `mainline-gtk` for the grpahical interface. +Run `mainline` for the command line version, and `mainline-gtk` for the graphical interface. ### About mainline is a fork of [ukuu](https://github.com/teejee2008/ukuu) From 0697a36fa4cf9eadd2c7b56f6664ebd30c7c1d5d Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Fri, 18 Dec 2020 14:52:56 -0500 Subject: [PATCH 131/567] 1.0.13 --- BRANDING.mak | 2 +- README.md | 4 -- TRANSLATORS | 1 + po/es.po | 84 ++++++++++++++++++------------------ po/fr.po | 87 ++++++++++++++++++------------------- po/hr.po | 84 ++++++++++++++++++------------------ po/it.po | 95 ++++++++++++++++++++++------------------- po/messages.pot | 86 ++++++++++++++++++------------------- po/nl.po | 84 ++++++++++++++++++------------------ po/pl.po | 84 ++++++++++++++++++------------------ po/ru.po | 84 ++++++++++++++++++------------------ po/sv.po | 84 ++++++++++++++++++------------------ po/tr.po | 84 ++++++++++++++++++------------------ po/uk.po | 84 ++++++++++++++++++------------------ src/Gtk/MainWindow.vala | 3 +- 15 files changed, 477 insertions(+), 473 deletions(-) diff --git a/BRANDING.mak b/BRANDING.mak index a919592a..d13b38f8 100644 --- a/BRANDING.mak +++ b/BRANDING.mak @@ -3,7 +3,7 @@ VERSION_MAJOR = 1 VERSION_MINOR = 0 -VERSION_MICRO = 12 +VERSION_MICRO = 13 BRANDING_SHORTNAME = mainline BRANDING_LONGNAME = Ubuntu Mainline Kernel Installer BRANDING_AUTHORNAME = Brian K. White diff --git a/README.md b/README.md index 6e372977..8b41bcee 100644 --- a/README.md +++ b/README.md @@ -27,10 +27,6 @@ mainline is written using Vala and GTK3. Source code and binaries are available make sudo make install -### Run - -Run `mainline` for the command line version, and `mainline-gtk` for the graphical interface. - ### About mainline is a fork of [ukuu](https://github.com/teejee2008/ukuu) diff --git a/TRANSLATORS b/TRANSLATORS index 2a68793d..3e48f18b 100644 --- a/TRANSLATORS +++ b/TRANSLATORS @@ -1,6 +1,7 @@ es: Adolfo Jayme Barrientos fr: Yolateng0 hr: gogo +it: Albano Battistella nl: Heimen Stoffels pl: Waldemar Konik ru: Faust3000 diff --git a/po/es.po b/po/es.po index 7d4ce56a..9703bcd4 100644 --- a/po/es.po +++ b/po/es.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-29 13:05-0400\n" +"POT-Creation-Date: 2020-12-18 14:46-0500\n" "PO-Revision-Date: 2018-01-03 02:03-0600\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish\n" @@ -13,105 +13,105 @@ msgstr "" "X-Launchpad-Export-Date: 2017-04-13 11:48+0000\n" "X-Generator: Poedit 2.0.5\n" -#: src/Common/LinuxKernel.vala:88 +#: src/Common/LinuxKernel.vala:89 msgid "Distribution" msgstr "Distribución" -#: src/Common/LinuxKernel.vala:102 +#: src/Common/LinuxKernel.vala:103 msgid "Architecture" msgstr "Arquitectura del sistema" -#: src/Common/LinuxKernel.vala:301 +#: src/Common/LinuxKernel.vala:302 msgid "Fetching index..." msgstr "Recuperando índice..." -#: src/Common/LinuxKernel.vala:338 +#: src/Common/LinuxKernel.vala:339 msgid "Fetching index from kernel.ubuntu.com..." msgstr "Recuperando índice de kernel.ubuntu.com…" -#: src/Common/LinuxKernel.vala:594 +#: src/Common/LinuxKernel.vala:595 msgid "Could not find running kernel in list!" msgstr "¡No se pudo encontrar el núcleo en ejecución en la lista!" -#: src/Common/LinuxKernel.vala:600 +#: src/Common/LinuxKernel.vala:601 msgid "Could not find any kernels to remove" msgstr "Seleccione los núcleos que se desinstalarán" -#: src/Common/LinuxKernel.vala:609 +#: src/Common/LinuxKernel.vala:610 msgid "The following kernels will be removed:" msgstr "Los siguientes kernels serán eliminados:" -#: src/Common/LinuxKernel.vala:616 +#: src/Common/LinuxKernel.vala:617 msgid "Continue ?" msgstr "¿Continuar?" -#: src/Common/LinuxKernel.vala:642 src/Console/AppConsole.vala:304 +#: src/Common/LinuxKernel.vala:643 src/Console/AppConsole.vala:304 msgid "Latest update" msgstr "" -#: src/Common/LinuxKernel.vala:653 src/Console/AppConsole.vala:311 +#: src/Common/LinuxKernel.vala:654 src/Console/AppConsole.vala:311 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:661 src/Console/AppConsole.vala:316 +#: src/Common/LinuxKernel.vala:662 src/Console/AppConsole.vala:316 #: src/Console/AppConsole.vala:377 msgid "No updates found" msgstr "No se encontró ninguna actualización" -#: src/Common/LinuxKernel.vala:671 +#: src/Common/LinuxKernel.vala:672 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "" -#: src/Common/LinuxKernel.vala:908 +#: src/Common/LinuxKernel.vala:910 msgid "Packages Available" msgstr "Paquetes disponibles" -#: src/Common/LinuxKernel.vala:916 +#: src/Common/LinuxKernel.vala:918 msgid "Packages Installed" msgstr "Paquetes instalados" -#: src/Common/LinuxKernel.vala:997 +#: src/Common/LinuxKernel.vala:999 msgid "Available Kernels" msgstr "Núcleos disponibles" -#: src/Common/LinuxKernel.vala:1004 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1006 src/Gtk/MainWindow.vala:186 msgid "Installed" msgstr "Instalado" -#: src/Common/LinuxKernel.vala:1004 src/Gtk/MainWindow.vala:186 -#: src/Gtk/MainWindow.vala:627 src/Gtk/MainWindow.vala:641 +#: src/Common/LinuxKernel.vala:1006 src/Gtk/MainWindow.vala:186 +#: src/Gtk/MainWindow.vala:628 src/Gtk/MainWindow.vala:642 msgid "Running" msgstr "En ejecución" -#: src/Common/LinuxKernel.vala:1041 +#: src/Common/LinuxKernel.vala:1043 msgid "Downloading" msgstr "Descargando" -#: src/Common/LinuxKernel.vala:1060 +#: src/Common/LinuxKernel.vala:1062 #: src/Utility/Gtk/CustomMessageDialog.vala:148 #: src/Utility/Gtk/CustomMessageDialog.vala:152 msgid "OK" msgstr "Aceptar" -#: src/Common/LinuxKernel.vala:1065 +#: src/Common/LinuxKernel.vala:1067 msgid "ERROR" msgstr "ERROR" -#: src/Common/LinuxKernel.vala:1079 src/Gtk/MainWindow.vala:649 +#: src/Common/LinuxKernel.vala:1081 src/Gtk/MainWindow.vala:650 msgid "This kernel is already installed." msgstr "Este núcleo ya se instaló." -#: src/Common/LinuxKernel.vala:1105 +#: src/Common/LinuxKernel.vala:1107 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "Instalación finalizada. Se necesita reiniciar para utilizar el núcleo nuevo." -#: src/Common/LinuxKernel.vala:1108 +#: src/Common/LinuxKernel.vala:1110 msgid "Installation completed with errors" msgstr "Instalación finalizada con errores" -#: src/Common/LinuxKernel.vala:1123 +#: src/Common/LinuxKernel.vala:1125 msgid "" "Selected kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -119,19 +119,19 @@ msgstr "" "El núcleo seleccionado está en ejecución y no puede desinstalarse.\n" "Instale otro núcleo antes de desinstalar este." -#: src/Common/LinuxKernel.vala:1128 +#: src/Common/LinuxKernel.vala:1130 msgid "Preparing to remove selected kernels" msgstr "Preparándose para desinstalar los núcleos seleccionados" -#: src/Common/LinuxKernel.vala:1159 src/Common/LinuxKernel.vala:1206 +#: src/Common/LinuxKernel.vala:1161 src/Common/LinuxKernel.vala:1208 msgid "Un-install completed" msgstr "Desinstalación finalizada" -#: src/Common/LinuxKernel.vala:1162 src/Common/LinuxKernel.vala:1209 +#: src/Common/LinuxKernel.vala:1164 src/Common/LinuxKernel.vala:1211 msgid "Un-install completed with errors" msgstr "Desinstalación finalizada con errores" -#: src/Common/LinuxKernel.vala:1175 +#: src/Common/LinuxKernel.vala:1177 msgid "" "This kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -139,11 +139,11 @@ msgstr "" "Este núcleo está en ejecución y no se puede desinstalar.\n" "Instale otro núcleo antes de desinstalar este." -#: src/Common/Main.vala:241 +#: src/Common/Main.vala:243 msgid "Called from" msgstr "" -#: src/Common/Main.vala:275 +#: src/Common/Main.vala:277 #, fuzzy msgid "Notifications are disabled" msgstr "Notificación" @@ -314,8 +314,8 @@ msgstr "Actualizar" msgid "Internet connection is not active" msgstr "La conexión a Internet está inactiva" -#: src/Gtk/MainWindow.vala:321 src/Gtk/MainWindow.vala:524 -#: src/Gtk/MainWindow.vala:654 +#: src/Gtk/MainWindow.vala:321 src/Gtk/MainWindow.vala:525 +#: src/Gtk/MainWindow.vala:655 msgid "No Internet" msgstr "No hay Internet" @@ -344,7 +344,7 @@ msgid "Select the kernels to remove" msgstr "Seleccione los núcleos que se desinstalarán" #: src/Gtk/MainWindow.vala:383 src/Gtk/MainWindow.vala:417 -#: src/Gtk/MainWindow.vala:686 +#: src/Gtk/MainWindow.vala:687 msgid "Close window to exit..." msgstr "" @@ -364,34 +364,34 @@ msgstr "Configuración" msgid "About" msgstr "Acerca de" -#: src/Gtk/MainWindow.vala:502 +#: src/Gtk/MainWindow.vala:503 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "" "Herramienta de renovación de núcleo para distribuciones basadas en Ubuntu" -#: src/Gtk/MainWindow.vala:503 +#: src/Gtk/MainWindow.vala:504 msgid "Forked" msgstr "" -#: src/Gtk/MainWindow.vala:503 +#: src/Gtk/MainWindow.vala:504 msgid "Original" msgstr "" -#: src/Gtk/MainWindow.vala:524 src/Gtk/MainWindow.vala:654 +#: src/Gtk/MainWindow.vala:525 src/Gtk/MainWindow.vala:655 #, fuzzy msgid "Internet connection is not active." msgstr "La conexión a Internet está inactiva" -#: src/Gtk/MainWindow.vala:543 +#: src/Gtk/MainWindow.vala:544 msgid "Refreshing..." msgstr "Actualizando…" -#: src/Gtk/MainWindow.vala:637 +#: src/Gtk/MainWindow.vala:638 #, fuzzy msgid "available" msgstr "Paquetes disponibles" -#: src/Gtk/MainWindow.vala:649 +#: src/Gtk/MainWindow.vala:650 #, fuzzy msgid "Already Installed" msgstr "Instalado" diff --git a/po/fr.po b/po/fr.po index adf87a78..cfd833fb 100644 --- a/po/fr.po +++ b/po/fr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-29 13:05-0400\n" +"POT-Creation-Date: 2020-12-18 14:46-0500\n" "PO-Revision-Date: 2018-08-05 15:50+0200\n" "Last-Translator: Yolateng0 \n" "Language-Team: French\n" @@ -13,106 +13,106 @@ msgstr "" "X-Launchpad-Export-Date: 2017-04-13 11:48+0000\n" "X-Generator: Poedit 2.0.6\n" -#: src/Common/LinuxKernel.vala:88 +#: src/Common/LinuxKernel.vala:89 msgid "Distribution" msgstr "Distribution" -#: src/Common/LinuxKernel.vala:102 +#: src/Common/LinuxKernel.vala:103 msgid "Architecture" msgstr "Architecture" -#: src/Common/LinuxKernel.vala:301 +#: src/Common/LinuxKernel.vala:302 msgid "Fetching index..." msgstr "Récupération de l'index..." -#: src/Common/LinuxKernel.vala:338 +#: src/Common/LinuxKernel.vala:339 msgid "Fetching index from kernel.ubuntu.com..." msgstr "Récupération de l'index depuis kernel.ubuntu.com..." -#: src/Common/LinuxKernel.vala:594 +#: src/Common/LinuxKernel.vala:595 msgid "Could not find running kernel in list!" msgstr "Impossible de trouver la version courante dans la liste!" -#: src/Common/LinuxKernel.vala:600 +#: src/Common/LinuxKernel.vala:601 msgid "Could not find any kernels to remove" msgstr "Impossible de trouver de noyaux à supprimer" -#: src/Common/LinuxKernel.vala:609 +#: src/Common/LinuxKernel.vala:610 msgid "The following kernels will be removed:" msgstr "Les noyaux suivants seront supprimés:" -#: src/Common/LinuxKernel.vala:616 +#: src/Common/LinuxKernel.vala:617 msgid "Continue ?" msgstr "Reprendre ?" -#: src/Common/LinuxKernel.vala:642 src/Console/AppConsole.vala:304 +#: src/Common/LinuxKernel.vala:643 src/Console/AppConsole.vala:304 msgid "Latest update" msgstr "Dernière mise à jour" -#: src/Common/LinuxKernel.vala:653 src/Console/AppConsole.vala:311 +#: src/Common/LinuxKernel.vala:654 src/Console/AppConsole.vala:311 msgid "Latest point update" msgstr "Dernière mise à jour mineure" -#: src/Common/LinuxKernel.vala:661 src/Console/AppConsole.vala:316 +#: src/Common/LinuxKernel.vala:662 src/Console/AppConsole.vala:316 #: src/Console/AppConsole.vala:377 msgid "No updates found" msgstr "Aucune mise à jour disponible" -#: src/Common/LinuxKernel.vala:671 +#: src/Common/LinuxKernel.vala:672 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Installer le noyau en version %s ? (y/n): " -#: src/Common/LinuxKernel.vala:908 +#: src/Common/LinuxKernel.vala:910 msgid "Packages Available" msgstr "Paquets Disponibles" -#: src/Common/LinuxKernel.vala:916 +#: src/Common/LinuxKernel.vala:918 msgid "Packages Installed" msgstr "Paquets Installés" -#: src/Common/LinuxKernel.vala:997 +#: src/Common/LinuxKernel.vala:999 msgid "Available Kernels" msgstr "Noyaux Disponibles" -#: src/Common/LinuxKernel.vala:1004 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1006 src/Gtk/MainWindow.vala:186 msgid "Installed" msgstr "Installé" -#: src/Common/LinuxKernel.vala:1004 src/Gtk/MainWindow.vala:186 -#: src/Gtk/MainWindow.vala:627 src/Gtk/MainWindow.vala:641 +#: src/Common/LinuxKernel.vala:1006 src/Gtk/MainWindow.vala:186 +#: src/Gtk/MainWindow.vala:628 src/Gtk/MainWindow.vala:642 msgid "Running" msgstr "Actuel" -#: src/Common/LinuxKernel.vala:1041 +#: src/Common/LinuxKernel.vala:1043 msgid "Downloading" msgstr "Téléchargement" -#: src/Common/LinuxKernel.vala:1060 +#: src/Common/LinuxKernel.vala:1062 #: src/Utility/Gtk/CustomMessageDialog.vala:148 #: src/Utility/Gtk/CustomMessageDialog.vala:152 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:1065 +#: src/Common/LinuxKernel.vala:1067 msgid "ERROR" msgstr "ERREUR" -#: src/Common/LinuxKernel.vala:1079 src/Gtk/MainWindow.vala:649 +#: src/Common/LinuxKernel.vala:1081 src/Gtk/MainWindow.vala:650 msgid "This kernel is already installed." msgstr "Ce noyau est déjà installé." -#: src/Common/LinuxKernel.vala:1105 +#: src/Common/LinuxKernel.vala:1107 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "Installation complétée. Un redémarrage est nécessaire pour utiliser le " "nouveau noyau." -#: src/Common/LinuxKernel.vala:1108 +#: src/Common/LinuxKernel.vala:1110 msgid "Installation completed with errors" msgstr "Installation terminée avec des erreurs" -#: src/Common/LinuxKernel.vala:1123 +#: src/Common/LinuxKernel.vala:1125 msgid "" "Selected kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -120,19 +120,19 @@ msgstr "" "Ce noyau est en cours d'exécution et ne peut pas être supprimé.\n" " Installez un autre noyau avant de retirer celui-ci." -#: src/Common/LinuxKernel.vala:1128 +#: src/Common/LinuxKernel.vala:1130 msgid "Preparing to remove selected kernels" msgstr "Préparation à la suppression des noyaux sélectionnés" -#: src/Common/LinuxKernel.vala:1159 src/Common/LinuxKernel.vala:1206 +#: src/Common/LinuxKernel.vala:1161 src/Common/LinuxKernel.vala:1208 msgid "Un-install completed" msgstr "Désinstallation complète" -#: src/Common/LinuxKernel.vala:1162 src/Common/LinuxKernel.vala:1209 +#: src/Common/LinuxKernel.vala:1164 src/Common/LinuxKernel.vala:1211 msgid "Un-install completed with errors" msgstr "Désinstallation terminée avec des erreurs" -#: src/Common/LinuxKernel.vala:1175 +#: src/Common/LinuxKernel.vala:1177 msgid "" "This kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -140,11 +140,11 @@ msgstr "" "Ce noyau est en cours d'exécution et ne peut pas être supprimé.\n" " Installez un autre noyau avant de retirer celui-ci." -#: src/Common/Main.vala:241 +#: src/Common/Main.vala:243 msgid "Called from" msgstr "" -#: src/Common/Main.vala:275 +#: src/Common/Main.vala:277 msgid "Notifications are disabled" msgstr "Les notifications sont désactivées" @@ -233,7 +233,8 @@ msgstr "Une version prise du resultat de --list" msgid "" "One or more version strings (comma-separated) taken from the output of --list" msgstr "" -"Une ou plusieurs versions (séparées par des virgules) prises du résultat de --list" +"Une ou plusieurs versions (séparées par des virgules) prises du résultat de " +"--list" #: src/Console/AppConsole.vala:162 src/Gtk/AppGtk.vala:136 msgid "Unknown option" @@ -312,8 +313,8 @@ msgstr "Actualiser" msgid "Internet connection is not active" msgstr "Connexion internet inexistante" -#: src/Gtk/MainWindow.vala:321 src/Gtk/MainWindow.vala:524 -#: src/Gtk/MainWindow.vala:654 +#: src/Gtk/MainWindow.vala:321 src/Gtk/MainWindow.vala:525 +#: src/Gtk/MainWindow.vala:655 msgid "No Internet" msgstr "Pas d'Internet" @@ -342,7 +343,7 @@ msgid "Select the kernels to remove" msgstr "Sélectionnez les noyaux à supprimer" #: src/Gtk/MainWindow.vala:383 src/Gtk/MainWindow.vala:417 -#: src/Gtk/MainWindow.vala:686 +#: src/Gtk/MainWindow.vala:687 msgid "Close window to exit..." msgstr "Fermer la fenêtre pour quitter..." @@ -362,33 +363,33 @@ msgstr "Paramètres" msgid "About" msgstr "À propos" -#: src/Gtk/MainWindow.vala:502 +#: src/Gtk/MainWindow.vala:503 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "" "Utilitaire de mise à niveau des noyaux pour les distributions basées sur " "Ubuntu" -#: src/Gtk/MainWindow.vala:503 +#: src/Gtk/MainWindow.vala:504 msgid "Forked" msgstr "Version forkée :" -#: src/Gtk/MainWindow.vala:503 +#: src/Gtk/MainWindow.vala:504 msgid "Original" msgstr "Version originale :" -#: src/Gtk/MainWindow.vala:524 src/Gtk/MainWindow.vala:654 +#: src/Gtk/MainWindow.vala:525 src/Gtk/MainWindow.vala:655 msgid "Internet connection is not active." msgstr "Connexion internet inexistante" -#: src/Gtk/MainWindow.vala:543 +#: src/Gtk/MainWindow.vala:544 msgid "Refreshing..." msgstr "Actualisation..." -#: src/Gtk/MainWindow.vala:637 +#: src/Gtk/MainWindow.vala:638 msgid "available" msgstr "disponible" -#: src/Gtk/MainWindow.vala:649 +#: src/Gtk/MainWindow.vala:650 msgid "Already Installed" msgstr "Déjà Installé" diff --git a/po/hr.po b/po/hr.po index 3b91f0ba..b33f0726 100644 --- a/po/hr.po +++ b/po/hr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-29 13:05-0400\n" +"POT-Creation-Date: 2020-12-18 14:46-0500\n" "PO-Revision-Date: 2017-12-24 00:52+0100\n" "Last-Translator: gogo \n" "Language-Team: Croatian \n" @@ -13,109 +13,109 @@ msgstr "" "X-Launchpad-Export-Date: 2017-12-23 23:36+0000\n" "X-Generator: Poedit 1.8.7.1\n" -#: src/Common/LinuxKernel.vala:88 +#: src/Common/LinuxKernel.vala:89 msgid "Distribution" msgstr "Distribucija" -#: src/Common/LinuxKernel.vala:102 +#: src/Common/LinuxKernel.vala:103 #, fuzzy msgid "Architecture" msgstr "Arhitektura sustava" -#: src/Common/LinuxKernel.vala:301 +#: src/Common/LinuxKernel.vala:302 msgid "Fetching index..." msgstr "" -#: src/Common/LinuxKernel.vala:338 +#: src/Common/LinuxKernel.vala:339 msgid "Fetching index from kernel.ubuntu.com..." msgstr "Preuzimanje sadržaja sa kernel.ubuntu.com..." -#: src/Common/LinuxKernel.vala:594 +#: src/Common/LinuxKernel.vala:595 #, fuzzy msgid "Could not find running kernel in list!" msgstr "Nemoguće je pronaći zatraženu inačicu" -#: src/Common/LinuxKernel.vala:600 +#: src/Common/LinuxKernel.vala:601 #, fuzzy msgid "Could not find any kernels to remove" msgstr "Odaberi kernele za uklanjanje" -#: src/Common/LinuxKernel.vala:609 +#: src/Common/LinuxKernel.vala:610 msgid "The following kernels will be removed:" msgstr "" -#: src/Common/LinuxKernel.vala:616 +#: src/Common/LinuxKernel.vala:617 msgid "Continue ?" msgstr "" -#: src/Common/LinuxKernel.vala:642 src/Console/AppConsole.vala:304 +#: src/Common/LinuxKernel.vala:643 src/Console/AppConsole.vala:304 msgid "Latest update" msgstr "" -#: src/Common/LinuxKernel.vala:653 src/Console/AppConsole.vala:311 +#: src/Common/LinuxKernel.vala:654 src/Console/AppConsole.vala:311 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:661 src/Console/AppConsole.vala:316 +#: src/Common/LinuxKernel.vala:662 src/Console/AppConsole.vala:316 #: src/Console/AppConsole.vala:377 msgid "No updates found" msgstr "Nema pronađenih nadopuna" -#: src/Common/LinuxKernel.vala:671 +#: src/Common/LinuxKernel.vala:672 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "" -#: src/Common/LinuxKernel.vala:908 +#: src/Common/LinuxKernel.vala:910 msgid "Packages Available" msgstr "Dostupni paketi" -#: src/Common/LinuxKernel.vala:916 +#: src/Common/LinuxKernel.vala:918 msgid "Packages Installed" msgstr "Instalirani paketi" -#: src/Common/LinuxKernel.vala:997 +#: src/Common/LinuxKernel.vala:999 msgid "Available Kernels" msgstr "Dostupni kerneli" -#: src/Common/LinuxKernel.vala:1004 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1006 src/Gtk/MainWindow.vala:186 msgid "Installed" msgstr "Instalirano" -#: src/Common/LinuxKernel.vala:1004 src/Gtk/MainWindow.vala:186 -#: src/Gtk/MainWindow.vala:627 src/Gtk/MainWindow.vala:641 +#: src/Common/LinuxKernel.vala:1006 src/Gtk/MainWindow.vala:186 +#: src/Gtk/MainWindow.vala:628 src/Gtk/MainWindow.vala:642 msgid "Running" msgstr "Pokrenuto" -#: src/Common/LinuxKernel.vala:1041 +#: src/Common/LinuxKernel.vala:1043 msgid "Downloading" msgstr "Preuzimanje" -#: src/Common/LinuxKernel.vala:1060 +#: src/Common/LinuxKernel.vala:1062 #: src/Utility/Gtk/CustomMessageDialog.vala:148 #: src/Utility/Gtk/CustomMessageDialog.vala:152 msgid "OK" msgstr "U redu" -#: src/Common/LinuxKernel.vala:1065 +#: src/Common/LinuxKernel.vala:1067 msgid "ERROR" msgstr "GREŠKA" -#: src/Common/LinuxKernel.vala:1079 src/Gtk/MainWindow.vala:649 +#: src/Common/LinuxKernel.vala:1081 src/Gtk/MainWindow.vala:650 msgid "This kernel is already installed." msgstr "Ovaj kernel je već instaliran." -#: src/Common/LinuxKernel.vala:1105 +#: src/Common/LinuxKernel.vala:1107 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "Instalacija je završena. Potrebno je ponovno pokretanje računala kako bi se " "koristio novi kernel." -#: src/Common/LinuxKernel.vala:1108 +#: src/Common/LinuxKernel.vala:1110 msgid "Installation completed with errors" msgstr "Instalacija je završena s greškama" -#: src/Common/LinuxKernel.vala:1123 +#: src/Common/LinuxKernel.vala:1125 msgid "" "Selected kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -123,19 +123,19 @@ msgstr "" "Odabrani kernel je trenutno pokernut i ne može se ukloniti.\n" " Instalirajte drugi kernel prije uklanjanja trenutnog kernela." -#: src/Common/LinuxKernel.vala:1128 +#: src/Common/LinuxKernel.vala:1130 msgid "Preparing to remove selected kernels" msgstr "Pripremanje uklanjanja odabranih kernela" -#: src/Common/LinuxKernel.vala:1159 src/Common/LinuxKernel.vala:1206 +#: src/Common/LinuxKernel.vala:1161 src/Common/LinuxKernel.vala:1208 msgid "Un-install completed" msgstr "Deinstalacija završena" -#: src/Common/LinuxKernel.vala:1162 src/Common/LinuxKernel.vala:1209 +#: src/Common/LinuxKernel.vala:1164 src/Common/LinuxKernel.vala:1211 msgid "Un-install completed with errors" msgstr "Deinstalacija završena s greškama" -#: src/Common/LinuxKernel.vala:1175 +#: src/Common/LinuxKernel.vala:1177 msgid "" "This kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -143,11 +143,11 @@ msgstr "" "Ovaj kernel je trenutno pokrenut i ne može se ukloniti.\n" " Instalirajte drugi kernel prije uklanjanja trenutnog kernela." -#: src/Common/Main.vala:241 +#: src/Common/Main.vala:243 msgid "Called from" msgstr "" -#: src/Common/Main.vala:275 +#: src/Common/Main.vala:277 #, fuzzy msgid "Notifications are disabled" msgstr "Obavijesti" @@ -322,8 +322,8 @@ msgstr "Osvježi" msgid "Internet connection is not active" msgstr "Internet povezivanje nije aktivno" -#: src/Gtk/MainWindow.vala:321 src/Gtk/MainWindow.vala:524 -#: src/Gtk/MainWindow.vala:654 +#: src/Gtk/MainWindow.vala:321 src/Gtk/MainWindow.vala:525 +#: src/Gtk/MainWindow.vala:655 msgid "No Internet" msgstr "Nema pristupa internetu" @@ -352,7 +352,7 @@ msgid "Select the kernels to remove" msgstr "Odaberi kernele za uklanjanje" #: src/Gtk/MainWindow.vala:383 src/Gtk/MainWindow.vala:417 -#: src/Gtk/MainWindow.vala:686 +#: src/Gtk/MainWindow.vala:687 msgid "Close window to exit..." msgstr "" @@ -372,33 +372,33 @@ msgstr "Postavke" msgid "About" msgstr "O programu" -#: src/Gtk/MainWindow.vala:502 +#: src/Gtk/MainWindow.vala:503 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Alat za nadogradnju kernela Ubuntu temeljenih distribucija" -#: src/Gtk/MainWindow.vala:503 +#: src/Gtk/MainWindow.vala:504 msgid "Forked" msgstr "" -#: src/Gtk/MainWindow.vala:503 +#: src/Gtk/MainWindow.vala:504 msgid "Original" msgstr "" -#: src/Gtk/MainWindow.vala:524 src/Gtk/MainWindow.vala:654 +#: src/Gtk/MainWindow.vala:525 src/Gtk/MainWindow.vala:655 #, fuzzy msgid "Internet connection is not active." msgstr "Internet povezivanje nije aktivno" -#: src/Gtk/MainWindow.vala:543 +#: src/Gtk/MainWindow.vala:544 msgid "Refreshing..." msgstr "Osvježavanje..." -#: src/Gtk/MainWindow.vala:637 +#: src/Gtk/MainWindow.vala:638 #, fuzzy msgid "available" msgstr "Dostupni paketi" -#: src/Gtk/MainWindow.vala:649 +#: src/Gtk/MainWindow.vala:650 #, fuzzy msgid "Already Installed" msgstr "Instalirano" diff --git a/po/it.po b/po/it.po index cd31924e..12c54e0c 100644 --- a/po/it.po +++ b/po/it.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline 1.0.12\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-29 13:05-0400\n" +"POT-Creation-Date: 2020-12-18 14:46-0500\n" "PO-Revision-Date: 2020-08-22 15:35+0100\n" "Last-Translator: Albano Battistella \n" "Language-Team: Italian \n" @@ -16,104 +16,106 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: src/Common/LinuxKernel.vala:88 +#: src/Common/LinuxKernel.vala:89 msgid "Distribution" msgstr "Distribuzione" -#: src/Common/LinuxKernel.vala:102 +#: src/Common/LinuxKernel.vala:103 msgid "Architecture" msgstr "Architettura" -#: src/Common/LinuxKernel.vala:301 +#: src/Common/LinuxKernel.vala:302 msgid "Fetching index..." msgstr "Recupero indice in corso..." -#: src/Common/LinuxKernel.vala:338 +#: src/Common/LinuxKernel.vala:339 msgid "Fetching index from kernel.ubuntu.com..." msgstr "Recupero dell'indice da kernel.ubuntu.com..." -#: src/Common/LinuxKernel.vala:594 +#: src/Common/LinuxKernel.vala:595 msgid "Could not find running kernel in list!" msgstr "Impossibile trovare il kernel in esecuzione nell'elenco!" -#: src/Common/LinuxKernel.vala:600 +#: src/Common/LinuxKernel.vala:601 msgid "Could not find any kernels to remove" msgstr "Impossibile trovare alcun kernel da rimuovere" -#: src/Common/LinuxKernel.vala:609 +#: src/Common/LinuxKernel.vala:610 msgid "The following kernels will be removed:" msgstr "I seguenti kernel verranno rimossi:" -#: src/Common/LinuxKernel.vala:616 +#: src/Common/LinuxKernel.vala:617 msgid "Continue ?" msgstr "Continuare ?" -#: src/Common/LinuxKernel.vala:642 src/Console/AppConsole.vala:304 +#: src/Common/LinuxKernel.vala:643 src/Console/AppConsole.vala:304 msgid "Latest update" msgstr "Ultimo aggiornamento" -#: src/Common/LinuxKernel.vala:653 src/Console/AppConsole.vala:311 +#: src/Common/LinuxKernel.vala:654 src/Console/AppConsole.vala:311 msgid "Latest point update" msgstr "Ultimo aggiornamento del punto" -#: src/Common/LinuxKernel.vala:661 src/Console/AppConsole.vala:316 +#: src/Common/LinuxKernel.vala:662 src/Console/AppConsole.vala:316 #: src/Console/AppConsole.vala:377 msgid "No updates found" msgstr "Nessun aggiornamento trovato" -#: src/Common/LinuxKernel.vala:671 +#: src/Common/LinuxKernel.vala:672 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Installare la versione del kernel %s ? (y/n): " -#: src/Common/LinuxKernel.vala:908 +#: src/Common/LinuxKernel.vala:910 msgid "Packages Available" msgstr "Pacchetti disponibili" -#: src/Common/LinuxKernel.vala:916 +#: src/Common/LinuxKernel.vala:918 msgid "Packages Installed" msgstr "Pacchetti installati" -#: src/Common/LinuxKernel.vala:997 +#: src/Common/LinuxKernel.vala:999 msgid "Available Kernels" msgstr "Kernel disponibili" -#: src/Common/LinuxKernel.vala:1004 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1006 src/Gtk/MainWindow.vala:186 msgid "Installed" msgstr "Installato" -#: src/Common/LinuxKernel.vala:1004 src/Gtk/MainWindow.vala:186 -#: src/Gtk/MainWindow.vala:627 src/Gtk/MainWindow.vala:641 +#: src/Common/LinuxKernel.vala:1006 src/Gtk/MainWindow.vala:186 +#: src/Gtk/MainWindow.vala:628 src/Gtk/MainWindow.vala:642 msgid "Running" msgstr "In esecuzione" -#: src/Common/LinuxKernel.vala:1041 +#: src/Common/LinuxKernel.vala:1043 msgid "Downloading" msgstr "Download in corso" -#: src/Common/LinuxKernel.vala:1060 +#: src/Common/LinuxKernel.vala:1062 #: src/Utility/Gtk/CustomMessageDialog.vala:148 #: src/Utility/Gtk/CustomMessageDialog.vala:152 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:1065 +#: src/Common/LinuxKernel.vala:1067 msgid "ERROR" msgstr "ERRORE" -#: src/Common/LinuxKernel.vala:1079 src/Gtk/MainWindow.vala:649 +#: src/Common/LinuxKernel.vala:1081 src/Gtk/MainWindow.vala:650 msgid "This kernel is already installed." msgstr "Questo kernel è già installato" -#: src/Common/LinuxKernel.vala:1105 +#: src/Common/LinuxKernel.vala:1107 msgid "Installation completed. A reboot is required to use the new kernel." -msgstr "Installazione completata. È necessario riavviare per utilizzare il nuovo kernel." +msgstr "" +"Installazione completata. È necessario riavviare per utilizzare il nuovo " +"kernel." -#: src/Common/LinuxKernel.vala:1108 +#: src/Common/LinuxKernel.vala:1110 msgid "Installation completed with errors" msgstr "Installazione completata con errori" -#: src/Common/LinuxKernel.vala:1123 +#: src/Common/LinuxKernel.vala:1125 msgid "" "Selected kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -121,19 +123,19 @@ msgstr "" "Il kernel selezionato è attualmente in esecuzione e non può essere rimosso.\n" "Installa un altro kernel prima di rimuovere questo." -#: src/Common/LinuxKernel.vala:1128 +#: src/Common/LinuxKernel.vala:1130 msgid "Preparing to remove selected kernels" msgstr "Preparazione per rimuovere i kernel selezionati" -#: src/Common/LinuxKernel.vala:1159 src/Common/LinuxKernel.vala:1206 +#: src/Common/LinuxKernel.vala:1161 src/Common/LinuxKernel.vala:1208 msgid "Un-install completed" msgstr "Disinstallazione completata" -#: src/Common/LinuxKernel.vala:1162 src/Common/LinuxKernel.vala:1209 +#: src/Common/LinuxKernel.vala:1164 src/Common/LinuxKernel.vala:1211 msgid "Un-install completed with errors" msgstr "Disinstallazione completata con errori" -#: src/Common/LinuxKernel.vala:1175 +#: src/Common/LinuxKernel.vala:1177 msgid "" "This kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -141,11 +143,11 @@ msgstr "" "Questo kernel è attualmente in esecuzione e non può essere rimosso.\n" "Installa un altro kernel prima di rimuovere questo." -#: src/Common/Main.vala:241 +#: src/Common/Main.vala:243 msgid "Called from" msgstr "Chiamata da" -#: src/Common/Main.vala:275 +#: src/Common/Main.vala:277 msgid "Notifications are disabled" msgstr "Le notifiche sono disabilitate" @@ -168,7 +170,9 @@ msgstr "Verifica aggiornamenti per il kernel" #: src/Console/AppConsole.vala:67 msgid "Check for kernel updates and notify current user" -msgstr "Verifica la disponibilità di aggiornamenti del kernel e avvisare l'utente corrente" +msgstr "" +"Verifica la disponibilità di aggiornamenti del kernel e avvisare l'utente " +"corrente" #: src/Console/AppConsole.vala:68 msgid "List all available mainline kernels" @@ -234,7 +238,8 @@ msgstr "Una stringa di versione presa dall'output di --list" msgid "" "One or more version strings (comma-separated) taken from the output of --list" msgstr "" -"Una o più stringhe di versione (separate da virgole) prese dall'output di --list" +"Una o più stringhe di versione (separate da virgole) prese dall'output di --" +"list" #: src/Console/AppConsole.vala:162 src/Gtk/AppGtk.vala:136 msgid "Unknown option" @@ -311,8 +316,8 @@ msgstr "Aggiorna" msgid "Internet connection is not active" msgstr "La connessione Internet non è attiva" -#: src/Gtk/MainWindow.vala:321 src/Gtk/MainWindow.vala:524 -#: src/Gtk/MainWindow.vala:654 +#: src/Gtk/MainWindow.vala:321 src/Gtk/MainWindow.vala:525 +#: src/Gtk/MainWindow.vala:655 msgid "No Internet" msgstr "Nessuna connessione internet" @@ -341,7 +346,7 @@ msgid "Select the kernels to remove" msgstr "Seleziona i kernel da rimuovere" #: src/Gtk/MainWindow.vala:383 src/Gtk/MainWindow.vala:417 -#: src/Gtk/MainWindow.vala:686 +#: src/Gtk/MainWindow.vala:687 msgid "Close window to exit..." msgstr "Chiudere la finestra per uscire..." @@ -361,31 +366,31 @@ msgstr "Impostazioni" msgid "About" msgstr "Informazioni" -#: src/Gtk/MainWindow.vala:502 +#: src/Gtk/MainWindow.vala:503 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Utilità di aggiornamento del kernel per distribuzioni basate su Ubuntu" -#: src/Gtk/MainWindow.vala:503 +#: src/Gtk/MainWindow.vala:504 msgid "Forked" msgstr "Forked" -#: src/Gtk/MainWindow.vala:503 +#: src/Gtk/MainWindow.vala:504 msgid "Original" msgstr "Originale" -#: src/Gtk/MainWindow.vala:524 src/Gtk/MainWindow.vala:654 +#: src/Gtk/MainWindow.vala:525 src/Gtk/MainWindow.vala:655 msgid "Internet connection is not active." msgstr "La connessione Internet non è attiva." -#: src/Gtk/MainWindow.vala:543 +#: src/Gtk/MainWindow.vala:544 msgid "Refreshing..." msgstr "Aggiornamento..." -#: src/Gtk/MainWindow.vala:637 +#: src/Gtk/MainWindow.vala:638 msgid "available" msgstr "disponibile" -#: src/Gtk/MainWindow.vala:649 +#: src/Gtk/MainWindow.vala:650 msgid "Already Installed" msgstr "Già Installato" diff --git a/po/messages.pot b/po/messages.pot index 385a30c7..e714bc5e 100644 --- a/po/messages.pot +++ b/po/messages.pot @@ -6,9 +6,9 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: mainline 1.0.12\n" +"Project-Id-Version: mainline 1.0.13\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-29 13:05-0400\n" +"POT-Creation-Date: 2020-12-18 14:46-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,132 +17,132 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" -#: src/Common/LinuxKernel.vala:88 +#: src/Common/LinuxKernel.vala:89 msgid "Distribution" msgstr "" -#: src/Common/LinuxKernel.vala:102 +#: src/Common/LinuxKernel.vala:103 msgid "Architecture" msgstr "" -#: src/Common/LinuxKernel.vala:301 +#: src/Common/LinuxKernel.vala:302 msgid "Fetching index..." msgstr "" -#: src/Common/LinuxKernel.vala:338 +#: src/Common/LinuxKernel.vala:339 msgid "Fetching index from kernel.ubuntu.com..." msgstr "" -#: src/Common/LinuxKernel.vala:594 +#: src/Common/LinuxKernel.vala:595 msgid "Could not find running kernel in list!" msgstr "" -#: src/Common/LinuxKernel.vala:600 +#: src/Common/LinuxKernel.vala:601 msgid "Could not find any kernels to remove" msgstr "" -#: src/Common/LinuxKernel.vala:609 +#: src/Common/LinuxKernel.vala:610 msgid "The following kernels will be removed:" msgstr "" -#: src/Common/LinuxKernel.vala:616 +#: src/Common/LinuxKernel.vala:617 msgid "Continue ?" msgstr "" -#: src/Common/LinuxKernel.vala:642 src/Console/AppConsole.vala:304 +#: src/Common/LinuxKernel.vala:643 src/Console/AppConsole.vala:304 msgid "Latest update" msgstr "" -#: src/Common/LinuxKernel.vala:653 src/Console/AppConsole.vala:311 +#: src/Common/LinuxKernel.vala:654 src/Console/AppConsole.vala:311 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:661 src/Console/AppConsole.vala:316 +#: src/Common/LinuxKernel.vala:662 src/Console/AppConsole.vala:316 #: src/Console/AppConsole.vala:377 msgid "No updates found" msgstr "" -#: src/Common/LinuxKernel.vala:671 +#: src/Common/LinuxKernel.vala:672 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "" -#: src/Common/LinuxKernel.vala:908 +#: src/Common/LinuxKernel.vala:910 msgid "Packages Available" msgstr "" -#: src/Common/LinuxKernel.vala:916 +#: src/Common/LinuxKernel.vala:918 msgid "Packages Installed" msgstr "" -#: src/Common/LinuxKernel.vala:997 +#: src/Common/LinuxKernel.vala:999 msgid "Available Kernels" msgstr "" -#: src/Common/LinuxKernel.vala:1004 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1006 src/Gtk/MainWindow.vala:186 msgid "Installed" msgstr "" -#: src/Common/LinuxKernel.vala:1004 src/Gtk/MainWindow.vala:186 -#: src/Gtk/MainWindow.vala:627 src/Gtk/MainWindow.vala:641 +#: src/Common/LinuxKernel.vala:1006 src/Gtk/MainWindow.vala:186 +#: src/Gtk/MainWindow.vala:628 src/Gtk/MainWindow.vala:642 msgid "Running" msgstr "" -#: src/Common/LinuxKernel.vala:1041 +#: src/Common/LinuxKernel.vala:1043 msgid "Downloading" msgstr "" -#: src/Common/LinuxKernel.vala:1060 +#: src/Common/LinuxKernel.vala:1062 #: src/Utility/Gtk/CustomMessageDialog.vala:148 #: src/Utility/Gtk/CustomMessageDialog.vala:152 msgid "OK" msgstr "" -#: src/Common/LinuxKernel.vala:1065 +#: src/Common/LinuxKernel.vala:1067 msgid "ERROR" msgstr "" -#: src/Common/LinuxKernel.vala:1079 src/Gtk/MainWindow.vala:649 +#: src/Common/LinuxKernel.vala:1081 src/Gtk/MainWindow.vala:650 msgid "This kernel is already installed." msgstr "" -#: src/Common/LinuxKernel.vala:1105 +#: src/Common/LinuxKernel.vala:1107 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" -#: src/Common/LinuxKernel.vala:1108 +#: src/Common/LinuxKernel.vala:1110 msgid "Installation completed with errors" msgstr "" -#: src/Common/LinuxKernel.vala:1123 +#: src/Common/LinuxKernel.vala:1125 msgid "" "Selected kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." msgstr "" -#: src/Common/LinuxKernel.vala:1128 +#: src/Common/LinuxKernel.vala:1130 msgid "Preparing to remove selected kernels" msgstr "" -#: src/Common/LinuxKernel.vala:1159 src/Common/LinuxKernel.vala:1206 +#: src/Common/LinuxKernel.vala:1161 src/Common/LinuxKernel.vala:1208 msgid "Un-install completed" msgstr "" -#: src/Common/LinuxKernel.vala:1162 src/Common/LinuxKernel.vala:1209 +#: src/Common/LinuxKernel.vala:1164 src/Common/LinuxKernel.vala:1211 msgid "Un-install completed with errors" msgstr "" -#: src/Common/LinuxKernel.vala:1175 +#: src/Common/LinuxKernel.vala:1177 msgid "" "This kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." msgstr "" -#: src/Common/Main.vala:241 +#: src/Common/Main.vala:243 msgid "Called from" msgstr "" -#: src/Common/Main.vala:275 +#: src/Common/Main.vala:277 msgid "Notifications are disabled" msgstr "" @@ -307,8 +307,8 @@ msgstr "" msgid "Internet connection is not active" msgstr "" -#: src/Gtk/MainWindow.vala:321 src/Gtk/MainWindow.vala:524 -#: src/Gtk/MainWindow.vala:654 +#: src/Gtk/MainWindow.vala:321 src/Gtk/MainWindow.vala:525 +#: src/Gtk/MainWindow.vala:655 msgid "No Internet" msgstr "" @@ -337,7 +337,7 @@ msgid "Select the kernels to remove" msgstr "" #: src/Gtk/MainWindow.vala:383 src/Gtk/MainWindow.vala:417 -#: src/Gtk/MainWindow.vala:686 +#: src/Gtk/MainWindow.vala:687 msgid "Close window to exit..." msgstr "" @@ -357,31 +357,31 @@ msgstr "" msgid "About" msgstr "" -#: src/Gtk/MainWindow.vala:502 +#: src/Gtk/MainWindow.vala:503 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "" -#: src/Gtk/MainWindow.vala:503 +#: src/Gtk/MainWindow.vala:504 msgid "Forked" msgstr "" -#: src/Gtk/MainWindow.vala:503 +#: src/Gtk/MainWindow.vala:504 msgid "Original" msgstr "" -#: src/Gtk/MainWindow.vala:524 src/Gtk/MainWindow.vala:654 +#: src/Gtk/MainWindow.vala:525 src/Gtk/MainWindow.vala:655 msgid "Internet connection is not active." msgstr "" -#: src/Gtk/MainWindow.vala:543 +#: src/Gtk/MainWindow.vala:544 msgid "Refreshing..." msgstr "" -#: src/Gtk/MainWindow.vala:637 +#: src/Gtk/MainWindow.vala:638 msgid "available" msgstr "" -#: src/Gtk/MainWindow.vala:649 +#: src/Gtk/MainWindow.vala:650 msgid "Already Installed" msgstr "" diff --git a/po/nl.po b/po/nl.po index 87e07472..7fd4935e 100644 --- a/po/nl.po +++ b/po/nl.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-29 13:05-0400\n" +"POT-Creation-Date: 2020-12-18 14:46-0500\n" "PO-Revision-Date: 2020-08-23 13:55+0200\n" "Last-Translator: Heimen Stoffels \n" "Language-Team: \n" @@ -13,106 +13,106 @@ msgstr "" "X-Generator: Poedit 2.4.1\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: src/Common/LinuxKernel.vala:88 +#: src/Common/LinuxKernel.vala:89 msgid "Distribution" msgstr "Distributie" -#: src/Common/LinuxKernel.vala:102 +#: src/Common/LinuxKernel.vala:103 msgid "Architecture" msgstr "Architectuur" -#: src/Common/LinuxKernel.vala:301 +#: src/Common/LinuxKernel.vala:302 msgid "Fetching index..." msgstr "Bezig met ophalen van index..." -#: src/Common/LinuxKernel.vala:338 +#: src/Common/LinuxKernel.vala:339 msgid "Fetching index from kernel.ubuntu.com..." msgstr "Bezig met ophalen van index van kernel.ubuntu.com..." -#: src/Common/LinuxKernel.vala:594 +#: src/Common/LinuxKernel.vala:595 msgid "Could not find running kernel in list!" msgstr "De in gebruik zijnde kernel staat niet op de lijst!" -#: src/Common/LinuxKernel.vala:600 +#: src/Common/LinuxKernel.vala:601 msgid "Could not find any kernels to remove" msgstr "Er zijn geen te verwijderen kernels" -#: src/Common/LinuxKernel.vala:609 +#: src/Common/LinuxKernel.vala:610 msgid "The following kernels will be removed:" msgstr "De volgende kernels worden verwijderd:" -#: src/Common/LinuxKernel.vala:616 +#: src/Common/LinuxKernel.vala:617 msgid "Continue ?" msgstr "Wil je doorgaan?" -#: src/Common/LinuxKernel.vala:642 src/Console/AppConsole.vala:304 +#: src/Common/LinuxKernel.vala:643 src/Console/AppConsole.vala:304 msgid "Latest update" msgstr "Recentste update" -#: src/Common/LinuxKernel.vala:653 src/Console/AppConsole.vala:311 +#: src/Common/LinuxKernel.vala:654 src/Console/AppConsole.vala:311 msgid "Latest point update" msgstr "Recentste puntupdate" -#: src/Common/LinuxKernel.vala:661 src/Console/AppConsole.vala:316 +#: src/Common/LinuxKernel.vala:662 src/Console/AppConsole.vala:316 #: src/Console/AppConsole.vala:377 msgid "No updates found" msgstr "Geen updates gevonden" -#: src/Common/LinuxKernel.vala:671 +#: src/Common/LinuxKernel.vala:672 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Wil je versie %s installeren? (j/n): " -#: src/Common/LinuxKernel.vala:908 +#: src/Common/LinuxKernel.vala:910 msgid "Packages Available" msgstr "Beschikbare pakketten" -#: src/Common/LinuxKernel.vala:916 +#: src/Common/LinuxKernel.vala:918 msgid "Packages Installed" msgstr "Geïnstalleerde pakketten" -#: src/Common/LinuxKernel.vala:997 +#: src/Common/LinuxKernel.vala:999 msgid "Available Kernels" msgstr "Beschikbare kernels" -#: src/Common/LinuxKernel.vala:1004 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1006 src/Gtk/MainWindow.vala:186 msgid "Installed" msgstr "Geïnstalleerd" -#: src/Common/LinuxKernel.vala:1004 src/Gtk/MainWindow.vala:186 -#: src/Gtk/MainWindow.vala:627 src/Gtk/MainWindow.vala:641 +#: src/Common/LinuxKernel.vala:1006 src/Gtk/MainWindow.vala:186 +#: src/Gtk/MainWindow.vala:628 src/Gtk/MainWindow.vala:642 msgid "Running" msgstr "In gebruik" -#: src/Common/LinuxKernel.vala:1041 +#: src/Common/LinuxKernel.vala:1043 msgid "Downloading" msgstr "Bezig met downloaden" -#: src/Common/LinuxKernel.vala:1060 +#: src/Common/LinuxKernel.vala:1062 #: src/Utility/Gtk/CustomMessageDialog.vala:148 #: src/Utility/Gtk/CustomMessageDialog.vala:152 msgid "OK" msgstr "Oké" -#: src/Common/LinuxKernel.vala:1065 +#: src/Common/LinuxKernel.vala:1067 msgid "ERROR" msgstr "FOUT" -#: src/Common/LinuxKernel.vala:1079 src/Gtk/MainWindow.vala:649 +#: src/Common/LinuxKernel.vala:1081 src/Gtk/MainWindow.vala:650 msgid "This kernel is already installed." msgstr "Deze kernel is al geïnstalleerd." -#: src/Common/LinuxKernel.vala:1105 +#: src/Common/LinuxKernel.vala:1107 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "De installatie is voltooid. Herstart de computer om de nieuwe kernel te " "gebruiken." -#: src/Common/LinuxKernel.vala:1108 +#: src/Common/LinuxKernel.vala:1110 msgid "Installation completed with errors" msgstr "De installatie is foutloos voltooid" -#: src/Common/LinuxKernel.vala:1123 +#: src/Common/LinuxKernel.vala:1125 msgid "" "Selected kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -121,19 +121,19 @@ msgstr "" "verwijderd.\n" " Installeer eerst een andere kernel." -#: src/Common/LinuxKernel.vala:1128 +#: src/Common/LinuxKernel.vala:1130 msgid "Preparing to remove selected kernels" msgstr "Bezig met voorbereiden van verwijdering" -#: src/Common/LinuxKernel.vala:1159 src/Common/LinuxKernel.vala:1206 +#: src/Common/LinuxKernel.vala:1161 src/Common/LinuxKernel.vala:1208 msgid "Un-install completed" msgstr "Deïnstalleren voltooid" -#: src/Common/LinuxKernel.vala:1162 src/Common/LinuxKernel.vala:1209 +#: src/Common/LinuxKernel.vala:1164 src/Common/LinuxKernel.vala:1211 msgid "Un-install completed with errors" msgstr "Deïnstalleren voltooid, maar met fouten" -#: src/Common/LinuxKernel.vala:1175 +#: src/Common/LinuxKernel.vala:1177 msgid "" "This kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -141,11 +141,11 @@ msgstr "" "Deze kernel is momenteel in gebruik en kan daarom niet worden verwijderd.\n" " Installeer eerst een andere kernel." -#: src/Common/Main.vala:241 +#: src/Common/Main.vala:243 msgid "Called from" msgstr "Aangeroepen door" -#: src/Common/Main.vala:275 +#: src/Common/Main.vala:277 msgid "Notifications are disabled" msgstr "Meldingen zijn uitgeschakeld" @@ -313,8 +313,8 @@ msgstr "Verversen" msgid "Internet connection is not active" msgstr "Je bent niet verbonden met het internet" -#: src/Gtk/MainWindow.vala:321 src/Gtk/MainWindow.vala:524 -#: src/Gtk/MainWindow.vala:654 +#: src/Gtk/MainWindow.vala:321 src/Gtk/MainWindow.vala:525 +#: src/Gtk/MainWindow.vala:655 msgid "No Internet" msgstr "Geen internetverbinding" @@ -343,7 +343,7 @@ msgid "Select the kernels to remove" msgstr "Selecteer de te deïnstalleren kernels" #: src/Gtk/MainWindow.vala:383 src/Gtk/MainWindow.vala:417 -#: src/Gtk/MainWindow.vala:686 +#: src/Gtk/MainWindow.vala:687 msgid "Close window to exit..." msgstr "Sluit het venster..." @@ -363,31 +363,31 @@ msgstr "Instellingen" msgid "About" msgstr "Over" -#: src/Gtk/MainWindow.vala:502 +#: src/Gtk/MainWindow.vala:503 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Een kernelupgradehulpmiddel voor op Ubuntu gebaseerde distributies" -#: src/Gtk/MainWindow.vala:503 +#: src/Gtk/MainWindow.vala:504 msgid "Forked" msgstr "Geforkt" -#: src/Gtk/MainWindow.vala:503 +#: src/Gtk/MainWindow.vala:504 msgid "Original" msgstr "Origineel" -#: src/Gtk/MainWindow.vala:524 src/Gtk/MainWindow.vala:654 +#: src/Gtk/MainWindow.vala:525 src/Gtk/MainWindow.vala:655 msgid "Internet connection is not active." msgstr "Je bent niet verbonden met het internet." -#: src/Gtk/MainWindow.vala:543 +#: src/Gtk/MainWindow.vala:544 msgid "Refreshing..." msgstr "Bezig met verversen..." -#: src/Gtk/MainWindow.vala:637 +#: src/Gtk/MainWindow.vala:638 msgid "available" msgstr "beschikbaar" -#: src/Gtk/MainWindow.vala:649 +#: src/Gtk/MainWindow.vala:650 msgid "Already Installed" msgstr "Reeds geïnstalleerd" diff --git a/po/pl.po b/po/pl.po index d65a2cdc..3354a2b4 100644 --- a/po/pl.po +++ b/po/pl.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-29 13:05-0400\n" +"POT-Creation-Date: 2020-12-18 14:46-0500\n" "PO-Revision-Date: 2017-08-12 15:26+0200\n" "Last-Translator: Waldemar Konik \n" "Language-Team: Polish\n" @@ -12,109 +12,109 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Poedit 1.8.7.1\n" -#: src/Common/LinuxKernel.vala:88 +#: src/Common/LinuxKernel.vala:89 msgid "Distribution" msgstr "Dystrybucja" -#: src/Common/LinuxKernel.vala:102 +#: src/Common/LinuxKernel.vala:103 #, fuzzy msgid "Architecture" msgstr "Architektura systemu" -#: src/Common/LinuxKernel.vala:301 +#: src/Common/LinuxKernel.vala:302 msgid "Fetching index..." msgstr "" -#: src/Common/LinuxKernel.vala:338 +#: src/Common/LinuxKernel.vala:339 msgid "Fetching index from kernel.ubuntu.com..." msgstr "Pobieranie indeksu z kernel.ubuntu.com..." -#: src/Common/LinuxKernel.vala:594 +#: src/Common/LinuxKernel.vala:595 #, fuzzy msgid "Could not find running kernel in list!" msgstr "Nie można odnaleźć żądanej wersji" -#: src/Common/LinuxKernel.vala:600 +#: src/Common/LinuxKernel.vala:601 #, fuzzy msgid "Could not find any kernels to remove" msgstr "Wybierz jądro do usunięcia" -#: src/Common/LinuxKernel.vala:609 +#: src/Common/LinuxKernel.vala:610 msgid "The following kernels will be removed:" msgstr "" -#: src/Common/LinuxKernel.vala:616 +#: src/Common/LinuxKernel.vala:617 msgid "Continue ?" msgstr "" -#: src/Common/LinuxKernel.vala:642 src/Console/AppConsole.vala:304 +#: src/Common/LinuxKernel.vala:643 src/Console/AppConsole.vala:304 msgid "Latest update" msgstr "" -#: src/Common/LinuxKernel.vala:653 src/Console/AppConsole.vala:311 +#: src/Common/LinuxKernel.vala:654 src/Console/AppConsole.vala:311 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:661 src/Console/AppConsole.vala:316 +#: src/Common/LinuxKernel.vala:662 src/Console/AppConsole.vala:316 #: src/Console/AppConsole.vala:377 msgid "No updates found" msgstr "Nie znaleziono aktualizacji" -#: src/Common/LinuxKernel.vala:671 +#: src/Common/LinuxKernel.vala:672 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "" -#: src/Common/LinuxKernel.vala:908 +#: src/Common/LinuxKernel.vala:910 msgid "Packages Available" msgstr "Dostępne pakiety" -#: src/Common/LinuxKernel.vala:916 +#: src/Common/LinuxKernel.vala:918 msgid "Packages Installed" msgstr "Pakiety zainstalowane" -#: src/Common/LinuxKernel.vala:997 +#: src/Common/LinuxKernel.vala:999 msgid "Available Kernels" msgstr "Dostępne jądra" -#: src/Common/LinuxKernel.vala:1004 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1006 src/Gtk/MainWindow.vala:186 msgid "Installed" msgstr "Zainstalowany" -#: src/Common/LinuxKernel.vala:1004 src/Gtk/MainWindow.vala:186 -#: src/Gtk/MainWindow.vala:627 src/Gtk/MainWindow.vala:641 +#: src/Common/LinuxKernel.vala:1006 src/Gtk/MainWindow.vala:186 +#: src/Gtk/MainWindow.vala:628 src/Gtk/MainWindow.vala:642 msgid "Running" msgstr "Uruchomiony" -#: src/Common/LinuxKernel.vala:1041 +#: src/Common/LinuxKernel.vala:1043 msgid "Downloading" msgstr "Pobieranie" -#: src/Common/LinuxKernel.vala:1060 +#: src/Common/LinuxKernel.vala:1062 #: src/Utility/Gtk/CustomMessageDialog.vala:148 #: src/Utility/Gtk/CustomMessageDialog.vala:152 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:1065 +#: src/Common/LinuxKernel.vala:1067 msgid "ERROR" msgstr "BŁĄD" -#: src/Common/LinuxKernel.vala:1079 src/Gtk/MainWindow.vala:649 +#: src/Common/LinuxKernel.vala:1081 src/Gtk/MainWindow.vala:650 msgid "This kernel is already installed." msgstr "To jądro jest już zainstalowane." -#: src/Common/LinuxKernel.vala:1105 +#: src/Common/LinuxKernel.vala:1107 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "Instalacja zakończona. Aby korzystać z nowego jądra, konieczne jest ponowne " "uruchomienie." -#: src/Common/LinuxKernel.vala:1108 +#: src/Common/LinuxKernel.vala:1110 msgid "Installation completed with errors" msgstr "Instalacja zakończona z błędami" -#: src/Common/LinuxKernel.vala:1123 +#: src/Common/LinuxKernel.vala:1125 msgid "" "Selected kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -122,19 +122,19 @@ msgstr "" "Wybrane jądro aktualnie działa i nie może zostać usunięte.\n" " Zainstaluj inne jądro przed usunięciem tego." -#: src/Common/LinuxKernel.vala:1128 +#: src/Common/LinuxKernel.vala:1130 msgid "Preparing to remove selected kernels" msgstr "Przygotowanie do usunięcia wybranych jąder" -#: src/Common/LinuxKernel.vala:1159 src/Common/LinuxKernel.vala:1206 +#: src/Common/LinuxKernel.vala:1161 src/Common/LinuxKernel.vala:1208 msgid "Un-install completed" msgstr "De-instalacja zakończona" -#: src/Common/LinuxKernel.vala:1162 src/Common/LinuxKernel.vala:1209 +#: src/Common/LinuxKernel.vala:1164 src/Common/LinuxKernel.vala:1211 msgid "Un-install completed with errors" msgstr "De-instalacja zakończona z błędami" -#: src/Common/LinuxKernel.vala:1175 +#: src/Common/LinuxKernel.vala:1177 msgid "" "This kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -142,11 +142,11 @@ msgstr "" "To jądro aktualnie działa i nie może zostać usunięte.\n" " Zainstaluj inne jądro przed usunięciem tego." -#: src/Common/Main.vala:241 +#: src/Common/Main.vala:243 msgid "Called from" msgstr "" -#: src/Common/Main.vala:275 +#: src/Common/Main.vala:277 #, fuzzy msgid "Notifications are disabled" msgstr "Powiadomienia" @@ -321,8 +321,8 @@ msgstr "Odśwież" msgid "Internet connection is not active" msgstr "Brak połączenia z internetem" -#: src/Gtk/MainWindow.vala:321 src/Gtk/MainWindow.vala:524 -#: src/Gtk/MainWindow.vala:654 +#: src/Gtk/MainWindow.vala:321 src/Gtk/MainWindow.vala:525 +#: src/Gtk/MainWindow.vala:655 msgid "No Internet" msgstr "Brak internetu" @@ -351,7 +351,7 @@ msgid "Select the kernels to remove" msgstr "Wybierz jądro do usunięcia" #: src/Gtk/MainWindow.vala:383 src/Gtk/MainWindow.vala:417 -#: src/Gtk/MainWindow.vala:686 +#: src/Gtk/MainWindow.vala:687 msgid "Close window to exit..." msgstr "" @@ -371,33 +371,33 @@ msgstr "Ustawienia" msgid "About" msgstr "O programie" -#: src/Gtk/MainWindow.vala:502 +#: src/Gtk/MainWindow.vala:503 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Narzędzie uaktualniania jądra dla dystrybucji z rodziny Ubuntu" -#: src/Gtk/MainWindow.vala:503 +#: src/Gtk/MainWindow.vala:504 msgid "Forked" msgstr "" -#: src/Gtk/MainWindow.vala:503 +#: src/Gtk/MainWindow.vala:504 msgid "Original" msgstr "" -#: src/Gtk/MainWindow.vala:524 src/Gtk/MainWindow.vala:654 +#: src/Gtk/MainWindow.vala:525 src/Gtk/MainWindow.vala:655 #, fuzzy msgid "Internet connection is not active." msgstr "Brak połączenia z internetem" -#: src/Gtk/MainWindow.vala:543 +#: src/Gtk/MainWindow.vala:544 msgid "Refreshing..." msgstr "Odświeżam..." -#: src/Gtk/MainWindow.vala:637 +#: src/Gtk/MainWindow.vala:638 #, fuzzy msgid "available" msgstr "Dostępne pakiety" -#: src/Gtk/MainWindow.vala:649 +#: src/Gtk/MainWindow.vala:650 #, fuzzy msgid "Already Installed" msgstr "Zainstalowany" diff --git a/po/ru.po b/po/ru.po index d3a0e46f..f216335b 100644 --- a/po/ru.po +++ b/po/ru.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-29 13:05-0400\n" +"POT-Creation-Date: 2020-12-18 14:46-0500\n" "PO-Revision-Date: 2016-12-13 16:46+0300\n" "Last-Translator: Faust3000 \n" "Language-Team: Russian \n" @@ -13,111 +13,111 @@ msgstr "" "X-Launchpad-Export-Date: 2016-12-13 11:48+0000\n" "X-Generator: Poedit 1.8.7.1\n" -#: src/Common/LinuxKernel.vala:88 +#: src/Common/LinuxKernel.vala:89 msgid "Distribution" msgstr "Дистрибутив" -#: src/Common/LinuxKernel.vala:102 +#: src/Common/LinuxKernel.vala:103 #, fuzzy msgid "Architecture" msgstr "Системная архитектура" -#: src/Common/LinuxKernel.vala:301 +#: src/Common/LinuxKernel.vala:302 msgid "Fetching index..." msgstr "" -#: src/Common/LinuxKernel.vala:338 +#: src/Common/LinuxKernel.vala:339 msgid "Fetching index from kernel.ubuntu.com..." msgstr "Получение сведений с kernel.ubuntu.com..." -#: src/Common/LinuxKernel.vala:594 +#: src/Common/LinuxKernel.vala:595 #, fuzzy msgid "Could not find running kernel in list!" msgstr "Не удалось найти запрошенную версию" -#: src/Common/LinuxKernel.vala:600 +#: src/Common/LinuxKernel.vala:601 #, fuzzy msgid "Could not find any kernels to remove" msgstr "Не удалось найти запрошенную версию" -#: src/Common/LinuxKernel.vala:609 +#: src/Common/LinuxKernel.vala:610 msgid "The following kernels will be removed:" msgstr "" -#: src/Common/LinuxKernel.vala:616 +#: src/Common/LinuxKernel.vala:617 msgid "Continue ?" msgstr "" -#: src/Common/LinuxKernel.vala:642 src/Console/AppConsole.vala:304 +#: src/Common/LinuxKernel.vala:643 src/Console/AppConsole.vala:304 msgid "Latest update" msgstr "" -#: src/Common/LinuxKernel.vala:653 src/Console/AppConsole.vala:311 +#: src/Common/LinuxKernel.vala:654 src/Console/AppConsole.vala:311 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:661 src/Console/AppConsole.vala:316 +#: src/Common/LinuxKernel.vala:662 src/Console/AppConsole.vala:316 #: src/Console/AppConsole.vala:377 msgid "No updates found" msgstr "Обновлений не найдено" -#: src/Common/LinuxKernel.vala:671 +#: src/Common/LinuxKernel.vala:672 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "" -#: src/Common/LinuxKernel.vala:908 +#: src/Common/LinuxKernel.vala:910 #, fuzzy msgid "Packages Available" msgstr "Установлено" -#: src/Common/LinuxKernel.vala:916 +#: src/Common/LinuxKernel.vala:918 #, fuzzy msgid "Packages Installed" msgstr "Установлено" -#: src/Common/LinuxKernel.vala:997 +#: src/Common/LinuxKernel.vala:999 msgid "Available Kernels" msgstr "Доступные ядра" -#: src/Common/LinuxKernel.vala:1004 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1006 src/Gtk/MainWindow.vala:186 msgid "Installed" msgstr "Установлено" -#: src/Common/LinuxKernel.vala:1004 src/Gtk/MainWindow.vala:186 -#: src/Gtk/MainWindow.vala:627 src/Gtk/MainWindow.vala:641 +#: src/Common/LinuxKernel.vala:1006 src/Gtk/MainWindow.vala:186 +#: src/Gtk/MainWindow.vala:628 src/Gtk/MainWindow.vala:642 msgid "Running" msgstr "Используется" -#: src/Common/LinuxKernel.vala:1041 +#: src/Common/LinuxKernel.vala:1043 msgid "Downloading" msgstr "Загрузка" -#: src/Common/LinuxKernel.vala:1060 +#: src/Common/LinuxKernel.vala:1062 #: src/Utility/Gtk/CustomMessageDialog.vala:148 #: src/Utility/Gtk/CustomMessageDialog.vala:152 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:1065 +#: src/Common/LinuxKernel.vala:1067 msgid "ERROR" msgstr "ОШИБКА" -#: src/Common/LinuxKernel.vala:1079 src/Gtk/MainWindow.vala:649 +#: src/Common/LinuxKernel.vala:1081 src/Gtk/MainWindow.vala:650 msgid "This kernel is already installed." msgstr "Это ядро уже установлено." -#: src/Common/LinuxKernel.vala:1105 +#: src/Common/LinuxKernel.vala:1107 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "Установка завершена. Обязательно выполните перезагрузку, чтобы использовать " "новое ядро." -#: src/Common/LinuxKernel.vala:1108 +#: src/Common/LinuxKernel.vala:1110 msgid "Installation completed with errors" msgstr "Установка завершена с ошибками" -#: src/Common/LinuxKernel.vala:1123 +#: src/Common/LinuxKernel.vala:1125 #, fuzzy msgid "" "Selected kernel is currently running and cannot be removed.\n" @@ -126,19 +126,19 @@ msgstr "" "Это ядро в настоящий момент работает и не может быть удалено.\n" " Установите другое ядро, прежде чем удалять его." -#: src/Common/LinuxKernel.vala:1128 +#: src/Common/LinuxKernel.vala:1130 msgid "Preparing to remove selected kernels" msgstr "" -#: src/Common/LinuxKernel.vala:1159 src/Common/LinuxKernel.vala:1206 +#: src/Common/LinuxKernel.vala:1161 src/Common/LinuxKernel.vala:1208 msgid "Un-install completed" msgstr "Удаление завершено" -#: src/Common/LinuxKernel.vala:1162 src/Common/LinuxKernel.vala:1209 +#: src/Common/LinuxKernel.vala:1164 src/Common/LinuxKernel.vala:1211 msgid "Un-install completed with errors" msgstr "Удаление завершено с ошибками" -#: src/Common/LinuxKernel.vala:1175 +#: src/Common/LinuxKernel.vala:1177 msgid "" "This kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -146,11 +146,11 @@ msgstr "" "Это ядро в настоящий момент работает и не может быть удалено.\n" " Установите другое ядро, прежде чем удалять его." -#: src/Common/Main.vala:241 +#: src/Common/Main.vala:243 msgid "Called from" msgstr "" -#: src/Common/Main.vala:275 +#: src/Common/Main.vala:277 #, fuzzy msgid "Notifications are disabled" msgstr "Уведомления" @@ -325,8 +325,8 @@ msgstr "Обновить" msgid "Internet connection is not active" msgstr "Интернет соединение не активно" -#: src/Gtk/MainWindow.vala:321 src/Gtk/MainWindow.vala:524 -#: src/Gtk/MainWindow.vala:654 +#: src/Gtk/MainWindow.vala:321 src/Gtk/MainWindow.vala:525 +#: src/Gtk/MainWindow.vala:655 msgid "No Internet" msgstr "" @@ -355,7 +355,7 @@ msgid "Select the kernels to remove" msgstr "" #: src/Gtk/MainWindow.vala:383 src/Gtk/MainWindow.vala:417 -#: src/Gtk/MainWindow.vala:686 +#: src/Gtk/MainWindow.vala:687 msgid "Close window to exit..." msgstr "" @@ -375,33 +375,33 @@ msgstr "Настройки" msgid "About" msgstr "О программе" -#: src/Gtk/MainWindow.vala:502 +#: src/Gtk/MainWindow.vala:503 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Программа обновления ядра для дистрибутивов на базе Ubuntu" -#: src/Gtk/MainWindow.vala:503 +#: src/Gtk/MainWindow.vala:504 msgid "Forked" msgstr "" -#: src/Gtk/MainWindow.vala:503 +#: src/Gtk/MainWindow.vala:504 msgid "Original" msgstr "" -#: src/Gtk/MainWindow.vala:524 src/Gtk/MainWindow.vala:654 +#: src/Gtk/MainWindow.vala:525 src/Gtk/MainWindow.vala:655 #, fuzzy msgid "Internet connection is not active." msgstr "Интернет соединение не активно" -#: src/Gtk/MainWindow.vala:543 +#: src/Gtk/MainWindow.vala:544 msgid "Refreshing..." msgstr "Обновление..." -#: src/Gtk/MainWindow.vala:637 +#: src/Gtk/MainWindow.vala:638 #, fuzzy msgid "available" msgstr "Установлено" -#: src/Gtk/MainWindow.vala:649 +#: src/Gtk/MainWindow.vala:650 #, fuzzy msgid "Already Installed" msgstr "Установлено" diff --git a/po/sv.po b/po/sv.po index 7f600bac..c782366c 100644 --- a/po/sv.po +++ b/po/sv.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-29 13:05-0400\n" +"POT-Creation-Date: 2020-12-18 14:46-0500\n" "PO-Revision-Date: 2018-01-13 16:56+0100\n" "Last-Translator: Åke Engelbrektson \n" "Language-Team: Svenska Språkfiler \n" @@ -13,108 +13,108 @@ msgstr "" "X-Generator: Poedit 1.8.7.1\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: src/Common/LinuxKernel.vala:88 +#: src/Common/LinuxKernel.vala:89 msgid "Distribution" msgstr "Distribution" -#: src/Common/LinuxKernel.vala:102 +#: src/Common/LinuxKernel.vala:103 #, fuzzy msgid "Architecture" msgstr "Systemarkitektur" -#: src/Common/LinuxKernel.vala:301 +#: src/Common/LinuxKernel.vala:302 #, fuzzy msgid "Fetching index..." msgstr "Hämtar index för" -#: src/Common/LinuxKernel.vala:338 +#: src/Common/LinuxKernel.vala:339 msgid "Fetching index from kernel.ubuntu.com..." msgstr "Hämtar index från kernel.ubuntu.com ..." -#: src/Common/LinuxKernel.vala:594 +#: src/Common/LinuxKernel.vala:595 #, fuzzy msgid "Could not find running kernel in list!" msgstr "Kunde inte hitta efterfrågad version" -#: src/Common/LinuxKernel.vala:600 +#: src/Common/LinuxKernel.vala:601 #, fuzzy msgid "Could not find any kernels to remove" msgstr "Välj kärnor för borttagning" -#: src/Common/LinuxKernel.vala:609 +#: src/Common/LinuxKernel.vala:610 msgid "The following kernels will be removed:" msgstr "" -#: src/Common/LinuxKernel.vala:616 +#: src/Common/LinuxKernel.vala:617 msgid "Continue ?" msgstr "" -#: src/Common/LinuxKernel.vala:642 src/Console/AppConsole.vala:304 +#: src/Common/LinuxKernel.vala:643 src/Console/AppConsole.vala:304 msgid "Latest update" msgstr "" -#: src/Common/LinuxKernel.vala:653 src/Console/AppConsole.vala:311 +#: src/Common/LinuxKernel.vala:654 src/Console/AppConsole.vala:311 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:661 src/Console/AppConsole.vala:316 +#: src/Common/LinuxKernel.vala:662 src/Console/AppConsole.vala:316 #: src/Console/AppConsole.vala:377 msgid "No updates found" msgstr "Inga uppdateringar hittades" -#: src/Common/LinuxKernel.vala:671 +#: src/Common/LinuxKernel.vala:672 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "" -#: src/Common/LinuxKernel.vala:908 +#: src/Common/LinuxKernel.vala:910 msgid "Packages Available" msgstr "Tillgängliga paket" -#: src/Common/LinuxKernel.vala:916 +#: src/Common/LinuxKernel.vala:918 msgid "Packages Installed" msgstr "Installerade paket" -#: src/Common/LinuxKernel.vala:997 +#: src/Common/LinuxKernel.vala:999 msgid "Available Kernels" msgstr "Tillgängliga kärnor" -#: src/Common/LinuxKernel.vala:1004 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1006 src/Gtk/MainWindow.vala:186 msgid "Installed" msgstr "Installerad" -#: src/Common/LinuxKernel.vala:1004 src/Gtk/MainWindow.vala:186 -#: src/Gtk/MainWindow.vala:627 src/Gtk/MainWindow.vala:641 +#: src/Common/LinuxKernel.vala:1006 src/Gtk/MainWindow.vala:186 +#: src/Gtk/MainWindow.vala:628 src/Gtk/MainWindow.vala:642 msgid "Running" msgstr "Körs" -#: src/Common/LinuxKernel.vala:1041 +#: src/Common/LinuxKernel.vala:1043 msgid "Downloading" msgstr "Laddar ner" -#: src/Common/LinuxKernel.vala:1060 +#: src/Common/LinuxKernel.vala:1062 #: src/Utility/Gtk/CustomMessageDialog.vala:148 #: src/Utility/Gtk/CustomMessageDialog.vala:152 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:1065 +#: src/Common/LinuxKernel.vala:1067 msgid "ERROR" msgstr "FEL" -#: src/Common/LinuxKernel.vala:1079 src/Gtk/MainWindow.vala:649 +#: src/Common/LinuxKernel.vala:1081 src/Gtk/MainWindow.vala:650 msgid "This kernel is already installed." msgstr "Denna kärna är redan installerad" -#: src/Common/LinuxKernel.vala:1105 +#: src/Common/LinuxKernel.vala:1107 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "Installation slutförd. Omstart krävs för att tillämpa den nya kärnan." -#: src/Common/LinuxKernel.vala:1108 +#: src/Common/LinuxKernel.vala:1110 msgid "Installation completed with errors" msgstr "Installation slutförd med fel" -#: src/Common/LinuxKernel.vala:1123 +#: src/Common/LinuxKernel.vala:1125 msgid "" "Selected kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -122,19 +122,19 @@ msgstr "" "Denna kärna används för tillfället och kan inte tas bort.\n" "Installera en annan kärna innan du tar bort den här." -#: src/Common/LinuxKernel.vala:1128 +#: src/Common/LinuxKernel.vala:1130 msgid "Preparing to remove selected kernels" msgstr "Förbereder borttagning av markerade kärnor" -#: src/Common/LinuxKernel.vala:1159 src/Common/LinuxKernel.vala:1206 +#: src/Common/LinuxKernel.vala:1161 src/Common/LinuxKernel.vala:1208 msgid "Un-install completed" msgstr "Avinstallation slutförd" -#: src/Common/LinuxKernel.vala:1162 src/Common/LinuxKernel.vala:1209 +#: src/Common/LinuxKernel.vala:1164 src/Common/LinuxKernel.vala:1211 msgid "Un-install completed with errors" msgstr "Avinstallation slutförd med fel" -#: src/Common/LinuxKernel.vala:1175 +#: src/Common/LinuxKernel.vala:1177 msgid "" "This kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -142,11 +142,11 @@ msgstr "" "Denna kärna används för tillfället och kan inte tas bort.\n" "Installera en annan kärna innan du tar bort den här." -#: src/Common/Main.vala:241 +#: src/Common/Main.vala:243 msgid "Called from" msgstr "" -#: src/Common/Main.vala:275 +#: src/Common/Main.vala:277 #, fuzzy msgid "Notifications are disabled" msgstr "Avisering" @@ -321,8 +321,8 @@ msgstr "Uppdatera" msgid "Internet connection is not active" msgstr "Internetuppkopplingen är inte aktiv" -#: src/Gtk/MainWindow.vala:321 src/Gtk/MainWindow.vala:524 -#: src/Gtk/MainWindow.vala:654 +#: src/Gtk/MainWindow.vala:321 src/Gtk/MainWindow.vala:525 +#: src/Gtk/MainWindow.vala:655 msgid "No Internet" msgstr "Inget internet" @@ -351,7 +351,7 @@ msgid "Select the kernels to remove" msgstr "Välj kärnor för borttagning" #: src/Gtk/MainWindow.vala:383 src/Gtk/MainWindow.vala:417 -#: src/Gtk/MainWindow.vala:686 +#: src/Gtk/MainWindow.vala:687 msgid "Close window to exit..." msgstr "" @@ -371,33 +371,33 @@ msgstr "Inställningar" msgid "About" msgstr "Om" -#: src/Gtk/MainWindow.vala:502 +#: src/Gtk/MainWindow.vala:503 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Kärnuppgraderingsverktyg för Ubuntu-baserade distributioner" -#: src/Gtk/MainWindow.vala:503 +#: src/Gtk/MainWindow.vala:504 msgid "Forked" msgstr "" -#: src/Gtk/MainWindow.vala:503 +#: src/Gtk/MainWindow.vala:504 msgid "Original" msgstr "" -#: src/Gtk/MainWindow.vala:524 src/Gtk/MainWindow.vala:654 +#: src/Gtk/MainWindow.vala:525 src/Gtk/MainWindow.vala:655 #, fuzzy msgid "Internet connection is not active." msgstr "Internetuppkopplingen är inte aktiv" -#: src/Gtk/MainWindow.vala:543 +#: src/Gtk/MainWindow.vala:544 msgid "Refreshing..." msgstr "Uppdaterar ..." -#: src/Gtk/MainWindow.vala:637 +#: src/Gtk/MainWindow.vala:638 #, fuzzy msgid "available" msgstr "Tillgängliga paket" -#: src/Gtk/MainWindow.vala:649 +#: src/Gtk/MainWindow.vala:650 #, fuzzy msgid "Already Installed" msgstr "Installerad" diff --git a/po/tr.po b/po/tr.po index 44c91ef9..89befead 100644 --- a/po/tr.po +++ b/po/tr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-29 13:05-0400\n" +"POT-Creation-Date: 2020-12-18 14:46-0500\n" "PO-Revision-Date: 2020-03-10 15:59+0300\n" "Last-Translator: Gökhan GÖKKAYA \n" "Language-Team: Turkish\n" @@ -13,105 +13,105 @@ msgstr "" "X-Generator: Poedit 2.0.6\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: src/Common/LinuxKernel.vala:88 +#: src/Common/LinuxKernel.vala:89 msgid "Distribution" msgstr "Dağıtım" -#: src/Common/LinuxKernel.vala:102 +#: src/Common/LinuxKernel.vala:103 msgid "Architecture" msgstr "Sistem mimarisi" -#: src/Common/LinuxKernel.vala:301 +#: src/Common/LinuxKernel.vala:302 msgid "Fetching index..." msgstr "İçerik dizini alınıyor..." -#: src/Common/LinuxKernel.vala:338 +#: src/Common/LinuxKernel.vala:339 msgid "Fetching index from kernel.ubuntu.com..." msgstr "İçerik listesi kernel.ubuntu.com alanından alınıyor..." -#: src/Common/LinuxKernel.vala:594 +#: src/Common/LinuxKernel.vala:595 msgid "Could not find running kernel in list!" msgstr "İstenen sürüm bulunamadı!" -#: src/Common/LinuxKernel.vala:600 +#: src/Common/LinuxKernel.vala:601 msgid "Could not find any kernels to remove" msgstr "Kaldırılacak çekirdek bulunamadı" -#: src/Common/LinuxKernel.vala:609 +#: src/Common/LinuxKernel.vala:610 msgid "The following kernels will be removed:" msgstr "Aşağıdaki çekirdekler silinecek:" -#: src/Common/LinuxKernel.vala:616 +#: src/Common/LinuxKernel.vala:617 msgid "Continue ?" msgstr "Devam et ?" -#: src/Common/LinuxKernel.vala:642 src/Console/AppConsole.vala:304 +#: src/Common/LinuxKernel.vala:643 src/Console/AppConsole.vala:304 msgid "Latest update" msgstr "Son güncelleme" -#: src/Common/LinuxKernel.vala:653 src/Console/AppConsole.vala:311 +#: src/Common/LinuxKernel.vala:654 src/Console/AppConsole.vala:311 msgid "Latest point update" msgstr "Son güncelleme noktası" -#: src/Common/LinuxKernel.vala:661 src/Console/AppConsole.vala:316 +#: src/Common/LinuxKernel.vala:662 src/Console/AppConsole.vala:316 #: src/Console/AppConsole.vala:377 msgid "No updates found" msgstr "Güncelleme bulunamadı" -#: src/Common/LinuxKernel.vala:671 +#: src/Common/LinuxKernel.vala:672 #, fuzzy, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Linux v%s Kur ? (e/h): " -#: src/Common/LinuxKernel.vala:908 +#: src/Common/LinuxKernel.vala:910 msgid "Packages Available" msgstr "Mevcut Paketler" -#: src/Common/LinuxKernel.vala:916 +#: src/Common/LinuxKernel.vala:918 msgid "Packages Installed" msgstr "Kurulu Paketler" -#: src/Common/LinuxKernel.vala:997 +#: src/Common/LinuxKernel.vala:999 msgid "Available Kernels" msgstr "Mevcut Çekirdekler" -#: src/Common/LinuxKernel.vala:1004 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1006 src/Gtk/MainWindow.vala:186 msgid "Installed" msgstr "Kurulu" -#: src/Common/LinuxKernel.vala:1004 src/Gtk/MainWindow.vala:186 -#: src/Gtk/MainWindow.vala:627 src/Gtk/MainWindow.vala:641 +#: src/Common/LinuxKernel.vala:1006 src/Gtk/MainWindow.vala:186 +#: src/Gtk/MainWindow.vala:628 src/Gtk/MainWindow.vala:642 msgid "Running" msgstr "Çalışıyor" -#: src/Common/LinuxKernel.vala:1041 +#: src/Common/LinuxKernel.vala:1043 msgid "Downloading" msgstr "İndiriliyor" -#: src/Common/LinuxKernel.vala:1060 +#: src/Common/LinuxKernel.vala:1062 #: src/Utility/Gtk/CustomMessageDialog.vala:148 #: src/Utility/Gtk/CustomMessageDialog.vala:152 msgid "OK" msgstr "TAMAM" -#: src/Common/LinuxKernel.vala:1065 +#: src/Common/LinuxKernel.vala:1067 msgid "ERROR" msgstr "HATA" -#: src/Common/LinuxKernel.vala:1079 src/Gtk/MainWindow.vala:649 +#: src/Common/LinuxKernel.vala:1081 src/Gtk/MainWindow.vala:650 msgid "This kernel is already installed." msgstr "Bu çekirdek zaten kurulu." -#: src/Common/LinuxKernel.vala:1105 +#: src/Common/LinuxKernel.vala:1107 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "Kurulum tamamlandı. Yeni çekirdeği kullanmak için yeniden başlatma gerekiyor." -#: src/Common/LinuxKernel.vala:1108 +#: src/Common/LinuxKernel.vala:1110 msgid "Installation completed with errors" msgstr "Kurulum hatalarla tamamlandı" -#: src/Common/LinuxKernel.vala:1123 +#: src/Common/LinuxKernel.vala:1125 msgid "" "Selected kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -119,19 +119,19 @@ msgstr "" "Seçilen çekirdek şu anda çalışıyor ve kaldırılamıyor.\n" " Bunu kaldırmadan önce başka bir çekirdek yükleyin." -#: src/Common/LinuxKernel.vala:1128 +#: src/Common/LinuxKernel.vala:1130 msgid "Preparing to remove selected kernels" msgstr "Seçilen çekirdekleri kaldırmak için hazırlanıyor" -#: src/Common/LinuxKernel.vala:1159 src/Common/LinuxKernel.vala:1206 +#: src/Common/LinuxKernel.vala:1161 src/Common/LinuxKernel.vala:1208 msgid "Un-install completed" msgstr "Kaldırma tamamlandı" -#: src/Common/LinuxKernel.vala:1162 src/Common/LinuxKernel.vala:1209 +#: src/Common/LinuxKernel.vala:1164 src/Common/LinuxKernel.vala:1211 msgid "Un-install completed with errors" msgstr "Kaldırma hatalarla tamamlandı" -#: src/Common/LinuxKernel.vala:1175 +#: src/Common/LinuxKernel.vala:1177 msgid "" "This kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -139,11 +139,11 @@ msgstr "" "Bu çekirdek şu anda çalışıyor ve bu sebeple kaldırılamaz.\n" "Bunu kaldırmadan önce başka bir çekirdek yükleyin." -#: src/Common/Main.vala:241 +#: src/Common/Main.vala:243 msgid "Called from" msgstr "" -#: src/Common/Main.vala:275 +#: src/Common/Main.vala:277 #, fuzzy msgid "Notifications are disabled" msgstr "Bildirim" @@ -314,8 +314,8 @@ msgstr "Yenile" msgid "Internet connection is not active" msgstr "İnternet bağlantısı aktif değil" -#: src/Gtk/MainWindow.vala:321 src/Gtk/MainWindow.vala:524 -#: src/Gtk/MainWindow.vala:654 +#: src/Gtk/MainWindow.vala:321 src/Gtk/MainWindow.vala:525 +#: src/Gtk/MainWindow.vala:655 msgid "No Internet" msgstr "İnternet Yok" @@ -344,7 +344,7 @@ msgid "Select the kernels to remove" msgstr "Kaldırma için çekirdek seçin" #: src/Gtk/MainWindow.vala:383 src/Gtk/MainWindow.vala:417 -#: src/Gtk/MainWindow.vala:686 +#: src/Gtk/MainWindow.vala:687 msgid "Close window to exit..." msgstr "" @@ -364,33 +364,33 @@ msgstr "Ayarlar" msgid "About" msgstr "Hakkında" -#: src/Gtk/MainWindow.vala:502 +#: src/Gtk/MainWindow.vala:503 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Ubuntu tabanlı dağıtımlar için çekirdek güncelleme aracı" -#: src/Gtk/MainWindow.vala:503 +#: src/Gtk/MainWindow.vala:504 msgid "Forked" msgstr "" -#: src/Gtk/MainWindow.vala:503 +#: src/Gtk/MainWindow.vala:504 msgid "Original" msgstr "" -#: src/Gtk/MainWindow.vala:524 src/Gtk/MainWindow.vala:654 +#: src/Gtk/MainWindow.vala:525 src/Gtk/MainWindow.vala:655 #, fuzzy msgid "Internet connection is not active." msgstr "İnternet bağlantısı aktif değil" -#: src/Gtk/MainWindow.vala:543 +#: src/Gtk/MainWindow.vala:544 msgid "Refreshing..." msgstr "Yenileniyor..." -#: src/Gtk/MainWindow.vala:637 +#: src/Gtk/MainWindow.vala:638 #, fuzzy msgid "available" msgstr "Mevcut Paketler" -#: src/Gtk/MainWindow.vala:649 +#: src/Gtk/MainWindow.vala:650 #, fuzzy msgid "Already Installed" msgstr "Kurulu" diff --git a/po/uk.po b/po/uk.po index fb9986ba..df79f887 100644 --- a/po/uk.po +++ b/po/uk.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-05-29 13:05-0400\n" +"POT-Creation-Date: 2020-12-18 14:46-0500\n" "PO-Revision-Date: 2019-07-25 11:00+0300\n" "Last-Translator: Serhii Golovko \n" "Language-Team: Ukranian \n" @@ -13,105 +13,105 @@ msgstr "" "X-Launchpad-Export-Date: 2016-12-13 11:48+0000\n" "X-Generator: Poedit 2.2.1\n" -#: src/Common/LinuxKernel.vala:88 +#: src/Common/LinuxKernel.vala:89 msgid "Distribution" msgstr "Дистрибутив" -#: src/Common/LinuxKernel.vala:102 +#: src/Common/LinuxKernel.vala:103 msgid "Architecture" msgstr "Системна архитектура" -#: src/Common/LinuxKernel.vala:301 +#: src/Common/LinuxKernel.vala:302 msgid "Fetching index..." msgstr "Отримання індекса ..." -#: src/Common/LinuxKernel.vala:338 +#: src/Common/LinuxKernel.vala:339 msgid "Fetching index from kernel.ubuntu.com..." msgstr "Отримання індекса з kernel.ubuntu.com..." -#: src/Common/LinuxKernel.vala:594 +#: src/Common/LinuxKernel.vala:595 msgid "Could not find running kernel in list!" msgstr "Не вдалося знайти запущене ядро у списку!" -#: src/Common/LinuxKernel.vala:600 +#: src/Common/LinuxKernel.vala:601 msgid "Could not find any kernels to remove" msgstr "Не вдалося знайти жодне ядро для вилучення" -#: src/Common/LinuxKernel.vala:609 +#: src/Common/LinuxKernel.vala:610 msgid "The following kernels will be removed:" msgstr "Наступні ядра будуть видалені:" -#: src/Common/LinuxKernel.vala:616 +#: src/Common/LinuxKernel.vala:617 msgid "Continue ?" msgstr "Продовжувати ?" -#: src/Common/LinuxKernel.vala:642 src/Console/AppConsole.vala:304 +#: src/Common/LinuxKernel.vala:643 src/Console/AppConsole.vala:304 msgid "Latest update" msgstr "Останнє оновлення" -#: src/Common/LinuxKernel.vala:653 src/Console/AppConsole.vala:311 +#: src/Common/LinuxKernel.vala:654 src/Console/AppConsole.vala:311 msgid "Latest point update" msgstr "Остання точка оновлення" -#: src/Common/LinuxKernel.vala:661 src/Console/AppConsole.vala:316 +#: src/Common/LinuxKernel.vala:662 src/Console/AppConsole.vala:316 #: src/Console/AppConsole.vala:377 msgid "No updates found" msgstr "Оновлень не знайдено" -#: src/Common/LinuxKernel.vala:671 +#: src/Common/LinuxKernel.vala:672 #, fuzzy, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Встановити Linux v% s? (так/ні): " -#: src/Common/LinuxKernel.vala:908 +#: src/Common/LinuxKernel.vala:910 msgid "Packages Available" msgstr "Доступні пакети" -#: src/Common/LinuxKernel.vala:916 +#: src/Common/LinuxKernel.vala:918 msgid "Packages Installed" msgstr "Встановлені пакети" -#: src/Common/LinuxKernel.vala:997 +#: src/Common/LinuxKernel.vala:999 msgid "Available Kernels" msgstr "Доступні ядра" -#: src/Common/LinuxKernel.vala:1004 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1006 src/Gtk/MainWindow.vala:186 msgid "Installed" msgstr "Встановлено" -#: src/Common/LinuxKernel.vala:1004 src/Gtk/MainWindow.vala:186 -#: src/Gtk/MainWindow.vala:627 src/Gtk/MainWindow.vala:641 +#: src/Common/LinuxKernel.vala:1006 src/Gtk/MainWindow.vala:186 +#: src/Gtk/MainWindow.vala:628 src/Gtk/MainWindow.vala:642 msgid "Running" msgstr "Використовується" -#: src/Common/LinuxKernel.vala:1041 +#: src/Common/LinuxKernel.vala:1043 msgid "Downloading" msgstr "Завантаження" -#: src/Common/LinuxKernel.vala:1060 +#: src/Common/LinuxKernel.vala:1062 #: src/Utility/Gtk/CustomMessageDialog.vala:148 #: src/Utility/Gtk/CustomMessageDialog.vala:152 msgid "OK" msgstr "Добре" -#: src/Common/LinuxKernel.vala:1065 +#: src/Common/LinuxKernel.vala:1067 msgid "ERROR" msgstr "ПОМИЛКА" -#: src/Common/LinuxKernel.vala:1079 src/Gtk/MainWindow.vala:649 +#: src/Common/LinuxKernel.vala:1081 src/Gtk/MainWindow.vala:650 msgid "This kernel is already installed." msgstr "Це ядро вже встановлено." -#: src/Common/LinuxKernel.vala:1105 +#: src/Common/LinuxKernel.vala:1107 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "Установка завершена. Для використання нового ядра потрібна перезавантаження." -#: src/Common/LinuxKernel.vala:1108 +#: src/Common/LinuxKernel.vala:1110 msgid "Installation completed with errors" msgstr "Установка завершена з помилками" -#: src/Common/LinuxKernel.vala:1123 +#: src/Common/LinuxKernel.vala:1125 msgid "" "Selected kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -119,19 +119,19 @@ msgstr "" "Це ядро зараз працює і не може бути видалено. \n" "Встановіть інше ядро, перш ніж видаляти його." -#: src/Common/LinuxKernel.vala:1128 +#: src/Common/LinuxKernel.vala:1130 msgid "Preparing to remove selected kernels" msgstr "Підготовка до видалення вибраних ядер" -#: src/Common/LinuxKernel.vala:1159 src/Common/LinuxKernel.vala:1206 +#: src/Common/LinuxKernel.vala:1161 src/Common/LinuxKernel.vala:1208 msgid "Un-install completed" msgstr "Видалення завершено" -#: src/Common/LinuxKernel.vala:1162 src/Common/LinuxKernel.vala:1209 +#: src/Common/LinuxKernel.vala:1164 src/Common/LinuxKernel.vala:1211 msgid "Un-install completed with errors" msgstr "Видалення завершено з помилками" -#: src/Common/LinuxKernel.vala:1175 +#: src/Common/LinuxKernel.vala:1177 msgid "" "This kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -139,11 +139,11 @@ msgstr "" "Це ядро наразі працює і його неможливо видалити.\n" " Встановіть інше ядро перед тим, як видалити его." -#: src/Common/Main.vala:241 +#: src/Common/Main.vala:243 msgid "Called from" msgstr "Викликано з" -#: src/Common/Main.vala:275 +#: src/Common/Main.vala:277 #, fuzzy msgid "Notifications are disabled" msgstr "Повідомлення вимкнено" @@ -316,8 +316,8 @@ msgstr "Оновити" msgid "Internet connection is not active" msgstr "Інтернет з'єднання не активно" -#: src/Gtk/MainWindow.vala:321 src/Gtk/MainWindow.vala:524 -#: src/Gtk/MainWindow.vala:654 +#: src/Gtk/MainWindow.vala:321 src/Gtk/MainWindow.vala:525 +#: src/Gtk/MainWindow.vala:655 msgid "No Internet" msgstr "Інтернету немає" @@ -346,7 +346,7 @@ msgid "Select the kernels to remove" msgstr "Виберіть ядра для видалення" #: src/Gtk/MainWindow.vala:383 src/Gtk/MainWindow.vala:417 -#: src/Gtk/MainWindow.vala:686 +#: src/Gtk/MainWindow.vala:687 msgid "Close window to exit..." msgstr "Закрийте вікно, щоб вийти..." @@ -366,35 +366,35 @@ msgstr "Налаштування" msgid "About" msgstr "Про программу" -#: src/Gtk/MainWindow.vala:502 +#: src/Gtk/MainWindow.vala:503 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Програма оновлення ядра для дистрибутивів на базі Ubuntu" -#: src/Gtk/MainWindow.vala:503 +#: src/Gtk/MainWindow.vala:504 #, fuzzy msgid "Forked" msgstr "Роздвоєний" -#: src/Gtk/MainWindow.vala:503 +#: src/Gtk/MainWindow.vala:504 #, fuzzy msgid "Original" msgstr "Оригінальний" -#: src/Gtk/MainWindow.vala:524 src/Gtk/MainWindow.vala:654 +#: src/Gtk/MainWindow.vala:525 src/Gtk/MainWindow.vala:655 #, fuzzy msgid "Internet connection is not active." msgstr "Інтернет з'єднання не активно" -#: src/Gtk/MainWindow.vala:543 +#: src/Gtk/MainWindow.vala:544 msgid "Refreshing..." msgstr "Оновлення..." -#: src/Gtk/MainWindow.vala:637 +#: src/Gtk/MainWindow.vala:638 #, fuzzy msgid "available" msgstr "Доступні пакети" -#: src/Gtk/MainWindow.vala:649 +#: src/Gtk/MainWindow.vala:650 #, fuzzy msgid "Already Installed" msgstr "Встановлено" diff --git a/src/Gtk/MainWindow.vala b/src/Gtk/MainWindow.vala index c7680a30..ee209e5a 100644 --- a/src/Gtk/MainWindow.vala +++ b/src/Gtk/MainWindow.vala @@ -487,12 +487,13 @@ public class MainWindow : Gtk.Window{ "es: Adolfo Jayme Barrientos ", "fr: Yolateng0 ", "hr: gogo ", + "it: Albano Battistella ", "nl: Heimen Stoffels ", "pl: Waldemar Konik ", "ru: Faust3000 ", "sv: Åke Engelbrektson ", "tr: Gökhan GÖKKAYA ", - "uk: Serhii Golovko " + "uk: Serhii Golovko ", }; dialog.documenters = null; From 1d0a9d43bdce3b51f7c5e3156b4c94ad88864014 Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Fri, 18 Dec 2020 15:14:26 -0500 Subject: [PATCH 132/567] 1.0.13 --- debian/changelog | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/debian/changelog b/debian/changelog index 98c67020..318657fe 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,13 @@ +mainline (1.0.13) unstable; urgency=medium + +* Improve some kernel and/or package version number string handling and comparison logic +* Improve tracking which update notifications have been seen/acknowledged, track major & minor updates separately +* https downloads +* New Italian translation. Updated French, Dutch, Ukranian, Turkish +* Temporarily disabled the "Changes" button. The ubuntu kernel-ppa site changed the way they provide changelog info. + + -- Brian K. White Fri, 18 Dec 2020 14:54:22 -0500 + mainline (1.0.12) unstable; urgency=medium * Improve notify-send.sh, notify-action.sh, and notify-loop.sh some more From aa259e18c608cdc664466fb9758ddbb372a46f11 Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Sat, 19 Dec 2020 01:08:28 -0500 Subject: [PATCH 133/567] debian/changelog formatting --- debian/changelog | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/debian/changelog b/debian/changelog index 318657fe..164d6fde 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,10 +1,10 @@ mainline (1.0.13) unstable; urgency=medium -* Improve some kernel and/or package version number string handling and comparison logic -* Improve tracking which update notifications have been seen/acknowledged, track major & minor updates separately -* https downloads -* New Italian translation. Updated French, Dutch, Ukranian, Turkish -* Temporarily disabled the "Changes" button. The ubuntu kernel-ppa site changed the way they provide changelog info. + * Improve some kernel and/or package version number string handling and comparison logic + * Improve tracking which update notifications have been seen/acknowledged, track major & minor updates separately + * https downloads + * New Italian translation. Updated French, Dutch, Ukranian, Turkish + * Temporarily disabled the "Changes" button. The ubuntu kernel-ppa site changed the way they provide changelog info. -- Brian K. White Fri, 18 Dec 2020 14:54:22 -0500 From b9304da1cf30fe782a2869b33352540f88b4397f Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Mon, 21 Dec 2020 05:09:59 -0500 Subject: [PATCH 134/567] remove BRANDING_VERSION_INT, remove build dep for bc --- .deb_build_number.mak | 4 +- BRANDING.mak | 2 +- Makefile | 2 - debian/changelog | 6 ++ po/es.po | 62 +++++++++--------- po/fr.po | 62 +++++++++--------- po/hr.po | 62 +++++++++--------- po/it.po | 62 +++++++++--------- po/messages.pot | 64 +++++++++---------- po/nl.po | 62 +++++++++--------- po/pl.po | 62 +++++++++--------- po/ru.po | 62 +++++++++--------- po/sv.po | 62 +++++++++--------- po/tr.po | 62 +++++++++--------- po/uk.po | 62 +++++++++--------- src/Common/LinuxKernel.vala | 7 +- src/Common/Main.vala | 2 - ...eeJee.Json.vala => TeeJee.JsonHelper.vala} | 0 ...Process.vala => TeeJee.ProcessHelper.vala} | 0 19 files changed, 354 insertions(+), 353 deletions(-) rename src/Utility/{TeeJee.Json.vala => TeeJee.JsonHelper.vala} (100%) rename src/Utility/{TeeJee.Process.vala => TeeJee.ProcessHelper.vala} (100%) diff --git a/.deb_build_number.mak b/.deb_build_number.mak index 1f169263..76c80cfe 100644 --- a/.deb_build_number.mak +++ b/.deb_build_number.mak @@ -1,3 +1,3 @@ # This file is generated by Makefile "make deb_build_number" -DEB_PKG_VERSION := 1.0.12 -DEB_BUILD_NUMBER := 0000 +DEB_PKG_VERSION := 1.0.14 +DEB_BUILD_NUMBER := 0002 diff --git a/BRANDING.mak b/BRANDING.mak index d13b38f8..fa2863d3 100644 --- a/BRANDING.mak +++ b/BRANDING.mak @@ -3,7 +3,7 @@ VERSION_MAJOR = 1 VERSION_MINOR = 0 -VERSION_MICRO = 13 +VERSION_MICRO = 14 BRANDING_SHORTNAME = mainline BRANDING_LONGNAME = Ubuntu Mainline Kernel Installer BRANDING_AUTHORNAME = Brian K. White diff --git a/Makefile b/Makefile index 2ce2a484..a9311743 100644 --- a/Makefile +++ b/Makefile @@ -25,12 +25,10 @@ gee := gee-0.8 include BRANDING.mak BRANDING_VERSION := $(VERSION_MAJOR).$(VERSION_MINOR).$(VERSION_MICRO) -BRANDING_VERSION_INT := $(shell echo ${VERSION_MAJOR}*10000+${VERSION_MINOR}*100+$(VERSION_MICRO) | bc) build_symbols := -X -D'INSTALL_PREFIX="$(prefix)"' \ -X -D'BRANDING_SHORTNAME="$(BRANDING_SHORTNAME)"' \ -X -D'BRANDING_LONGNAME="$(BRANDING_LONGNAME)"' \ -X -D'BRANDING_VERSION="$(BRANDING_VERSION)"' \ - -X -D'BRANDING_VERSION_INT="$(BRANDING_VERSION_INT)"' \ -X -D'BRANDING_AUTHORNAME="$(BRANDING_AUTHORNAME)"' \ -X -D'BRANDING_AUTHOREMAIL="$(BRANDING_AUTHOREMAIL)"' \ -X -D'BRANDING_WEBSITE="$(BRANDING_WEBSITE)"' \ diff --git a/debian/changelog b/debian/changelog index 164d6fde..3d1bb4af 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +mainline (1.0.14) UNRELEASED; urgency=medium + + * Remove unnecessary VERSION_INT and build-time dependency for "bc" + + -- Brian K. White Mon, 21 Dec 2020 05:00:22 -0500 + mainline (1.0.13) unstable; urgency=medium * Improve some kernel and/or package version number string handling and comparison logic diff --git a/po/es.po b/po/es.po index 9703bcd4..57f87f70 100644 --- a/po/es.po +++ b/po/es.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-12-18 14:46-0500\n" +"POT-Creation-Date: 2020-12-21 05:01-0500\n" "PO-Revision-Date: 2018-01-03 02:03-0600\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish\n" @@ -13,105 +13,105 @@ msgstr "" "X-Launchpad-Export-Date: 2017-04-13 11:48+0000\n" "X-Generator: Poedit 2.0.5\n" -#: src/Common/LinuxKernel.vala:89 +#: src/Common/LinuxKernel.vala:88 msgid "Distribution" msgstr "Distribución" -#: src/Common/LinuxKernel.vala:103 +#: src/Common/LinuxKernel.vala:102 msgid "Architecture" msgstr "Arquitectura del sistema" -#: src/Common/LinuxKernel.vala:302 +#: src/Common/LinuxKernel.vala:301 msgid "Fetching index..." msgstr "Recuperando índice..." -#: src/Common/LinuxKernel.vala:339 +#: src/Common/LinuxKernel.vala:338 msgid "Fetching index from kernel.ubuntu.com..." msgstr "Recuperando índice de kernel.ubuntu.com…" -#: src/Common/LinuxKernel.vala:595 +#: src/Common/LinuxKernel.vala:594 msgid "Could not find running kernel in list!" msgstr "¡No se pudo encontrar el núcleo en ejecución en la lista!" -#: src/Common/LinuxKernel.vala:601 +#: src/Common/LinuxKernel.vala:600 msgid "Could not find any kernels to remove" msgstr "Seleccione los núcleos que se desinstalarán" -#: src/Common/LinuxKernel.vala:610 +#: src/Common/LinuxKernel.vala:609 msgid "The following kernels will be removed:" msgstr "Los siguientes kernels serán eliminados:" -#: src/Common/LinuxKernel.vala:617 +#: src/Common/LinuxKernel.vala:616 msgid "Continue ?" msgstr "¿Continuar?" -#: src/Common/LinuxKernel.vala:643 src/Console/AppConsole.vala:304 +#: src/Common/LinuxKernel.vala:642 src/Console/AppConsole.vala:304 msgid "Latest update" msgstr "" -#: src/Common/LinuxKernel.vala:654 src/Console/AppConsole.vala:311 +#: src/Common/LinuxKernel.vala:653 src/Console/AppConsole.vala:311 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:662 src/Console/AppConsole.vala:316 +#: src/Common/LinuxKernel.vala:661 src/Console/AppConsole.vala:316 #: src/Console/AppConsole.vala:377 msgid "No updates found" msgstr "No se encontró ninguna actualización" -#: src/Common/LinuxKernel.vala:672 +#: src/Common/LinuxKernel.vala:671 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "" -#: src/Common/LinuxKernel.vala:910 +#: src/Common/LinuxKernel.vala:909 msgid "Packages Available" msgstr "Paquetes disponibles" -#: src/Common/LinuxKernel.vala:918 +#: src/Common/LinuxKernel.vala:917 msgid "Packages Installed" msgstr "Paquetes instalados" -#: src/Common/LinuxKernel.vala:999 +#: src/Common/LinuxKernel.vala:998 msgid "Available Kernels" msgstr "Núcleos disponibles" -#: src/Common/LinuxKernel.vala:1006 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1005 src/Gtk/MainWindow.vala:186 msgid "Installed" msgstr "Instalado" -#: src/Common/LinuxKernel.vala:1006 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1005 src/Gtk/MainWindow.vala:186 #: src/Gtk/MainWindow.vala:628 src/Gtk/MainWindow.vala:642 msgid "Running" msgstr "En ejecución" -#: src/Common/LinuxKernel.vala:1043 +#: src/Common/LinuxKernel.vala:1042 msgid "Downloading" msgstr "Descargando" -#: src/Common/LinuxKernel.vala:1062 +#: src/Common/LinuxKernel.vala:1061 #: src/Utility/Gtk/CustomMessageDialog.vala:148 #: src/Utility/Gtk/CustomMessageDialog.vala:152 msgid "OK" msgstr "Aceptar" -#: src/Common/LinuxKernel.vala:1067 +#: src/Common/LinuxKernel.vala:1066 msgid "ERROR" msgstr "ERROR" -#: src/Common/LinuxKernel.vala:1081 src/Gtk/MainWindow.vala:650 +#: src/Common/LinuxKernel.vala:1080 src/Gtk/MainWindow.vala:650 msgid "This kernel is already installed." msgstr "Este núcleo ya se instaló." -#: src/Common/LinuxKernel.vala:1107 +#: src/Common/LinuxKernel.vala:1106 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "Instalación finalizada. Se necesita reiniciar para utilizar el núcleo nuevo." -#: src/Common/LinuxKernel.vala:1110 +#: src/Common/LinuxKernel.vala:1109 msgid "Installation completed with errors" msgstr "Instalación finalizada con errores" -#: src/Common/LinuxKernel.vala:1125 +#: src/Common/LinuxKernel.vala:1124 msgid "" "Selected kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -119,19 +119,19 @@ msgstr "" "El núcleo seleccionado está en ejecución y no puede desinstalarse.\n" "Instale otro núcleo antes de desinstalar este." -#: src/Common/LinuxKernel.vala:1130 +#: src/Common/LinuxKernel.vala:1129 msgid "Preparing to remove selected kernels" msgstr "Preparándose para desinstalar los núcleos seleccionados" -#: src/Common/LinuxKernel.vala:1161 src/Common/LinuxKernel.vala:1208 +#: src/Common/LinuxKernel.vala:1160 src/Common/LinuxKernel.vala:1207 msgid "Un-install completed" msgstr "Desinstalación finalizada" -#: src/Common/LinuxKernel.vala:1164 src/Common/LinuxKernel.vala:1211 +#: src/Common/LinuxKernel.vala:1163 src/Common/LinuxKernel.vala:1210 msgid "Un-install completed with errors" msgstr "Desinstalación finalizada con errores" -#: src/Common/LinuxKernel.vala:1177 +#: src/Common/LinuxKernel.vala:1176 msgid "" "This kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -139,11 +139,11 @@ msgstr "" "Este núcleo está en ejecución y no se puede desinstalar.\n" "Instale otro núcleo antes de desinstalar este." -#: src/Common/Main.vala:243 +#: src/Common/Main.vala:241 msgid "Called from" msgstr "" -#: src/Common/Main.vala:277 +#: src/Common/Main.vala:275 #, fuzzy msgid "Notifications are disabled" msgstr "Notificación" diff --git a/po/fr.po b/po/fr.po index cfd833fb..7fe03b84 100644 --- a/po/fr.po +++ b/po/fr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-12-18 14:46-0500\n" +"POT-Creation-Date: 2020-12-21 05:01-0500\n" "PO-Revision-Date: 2018-08-05 15:50+0200\n" "Last-Translator: Yolateng0 \n" "Language-Team: French\n" @@ -13,106 +13,106 @@ msgstr "" "X-Launchpad-Export-Date: 2017-04-13 11:48+0000\n" "X-Generator: Poedit 2.0.6\n" -#: src/Common/LinuxKernel.vala:89 +#: src/Common/LinuxKernel.vala:88 msgid "Distribution" msgstr "Distribution" -#: src/Common/LinuxKernel.vala:103 +#: src/Common/LinuxKernel.vala:102 msgid "Architecture" msgstr "Architecture" -#: src/Common/LinuxKernel.vala:302 +#: src/Common/LinuxKernel.vala:301 msgid "Fetching index..." msgstr "Récupération de l'index..." -#: src/Common/LinuxKernel.vala:339 +#: src/Common/LinuxKernel.vala:338 msgid "Fetching index from kernel.ubuntu.com..." msgstr "Récupération de l'index depuis kernel.ubuntu.com..." -#: src/Common/LinuxKernel.vala:595 +#: src/Common/LinuxKernel.vala:594 msgid "Could not find running kernel in list!" msgstr "Impossible de trouver la version courante dans la liste!" -#: src/Common/LinuxKernel.vala:601 +#: src/Common/LinuxKernel.vala:600 msgid "Could not find any kernels to remove" msgstr "Impossible de trouver de noyaux à supprimer" -#: src/Common/LinuxKernel.vala:610 +#: src/Common/LinuxKernel.vala:609 msgid "The following kernels will be removed:" msgstr "Les noyaux suivants seront supprimés:" -#: src/Common/LinuxKernel.vala:617 +#: src/Common/LinuxKernel.vala:616 msgid "Continue ?" msgstr "Reprendre ?" -#: src/Common/LinuxKernel.vala:643 src/Console/AppConsole.vala:304 +#: src/Common/LinuxKernel.vala:642 src/Console/AppConsole.vala:304 msgid "Latest update" msgstr "Dernière mise à jour" -#: src/Common/LinuxKernel.vala:654 src/Console/AppConsole.vala:311 +#: src/Common/LinuxKernel.vala:653 src/Console/AppConsole.vala:311 msgid "Latest point update" msgstr "Dernière mise à jour mineure" -#: src/Common/LinuxKernel.vala:662 src/Console/AppConsole.vala:316 +#: src/Common/LinuxKernel.vala:661 src/Console/AppConsole.vala:316 #: src/Console/AppConsole.vala:377 msgid "No updates found" msgstr "Aucune mise à jour disponible" -#: src/Common/LinuxKernel.vala:672 +#: src/Common/LinuxKernel.vala:671 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Installer le noyau en version %s ? (y/n): " -#: src/Common/LinuxKernel.vala:910 +#: src/Common/LinuxKernel.vala:909 msgid "Packages Available" msgstr "Paquets Disponibles" -#: src/Common/LinuxKernel.vala:918 +#: src/Common/LinuxKernel.vala:917 msgid "Packages Installed" msgstr "Paquets Installés" -#: src/Common/LinuxKernel.vala:999 +#: src/Common/LinuxKernel.vala:998 msgid "Available Kernels" msgstr "Noyaux Disponibles" -#: src/Common/LinuxKernel.vala:1006 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1005 src/Gtk/MainWindow.vala:186 msgid "Installed" msgstr "Installé" -#: src/Common/LinuxKernel.vala:1006 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1005 src/Gtk/MainWindow.vala:186 #: src/Gtk/MainWindow.vala:628 src/Gtk/MainWindow.vala:642 msgid "Running" msgstr "Actuel" -#: src/Common/LinuxKernel.vala:1043 +#: src/Common/LinuxKernel.vala:1042 msgid "Downloading" msgstr "Téléchargement" -#: src/Common/LinuxKernel.vala:1062 +#: src/Common/LinuxKernel.vala:1061 #: src/Utility/Gtk/CustomMessageDialog.vala:148 #: src/Utility/Gtk/CustomMessageDialog.vala:152 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:1067 +#: src/Common/LinuxKernel.vala:1066 msgid "ERROR" msgstr "ERREUR" -#: src/Common/LinuxKernel.vala:1081 src/Gtk/MainWindow.vala:650 +#: src/Common/LinuxKernel.vala:1080 src/Gtk/MainWindow.vala:650 msgid "This kernel is already installed." msgstr "Ce noyau est déjà installé." -#: src/Common/LinuxKernel.vala:1107 +#: src/Common/LinuxKernel.vala:1106 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "Installation complétée. Un redémarrage est nécessaire pour utiliser le " "nouveau noyau." -#: src/Common/LinuxKernel.vala:1110 +#: src/Common/LinuxKernel.vala:1109 msgid "Installation completed with errors" msgstr "Installation terminée avec des erreurs" -#: src/Common/LinuxKernel.vala:1125 +#: src/Common/LinuxKernel.vala:1124 msgid "" "Selected kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -120,19 +120,19 @@ msgstr "" "Ce noyau est en cours d'exécution et ne peut pas être supprimé.\n" " Installez un autre noyau avant de retirer celui-ci." -#: src/Common/LinuxKernel.vala:1130 +#: src/Common/LinuxKernel.vala:1129 msgid "Preparing to remove selected kernels" msgstr "Préparation à la suppression des noyaux sélectionnés" -#: src/Common/LinuxKernel.vala:1161 src/Common/LinuxKernel.vala:1208 +#: src/Common/LinuxKernel.vala:1160 src/Common/LinuxKernel.vala:1207 msgid "Un-install completed" msgstr "Désinstallation complète" -#: src/Common/LinuxKernel.vala:1164 src/Common/LinuxKernel.vala:1211 +#: src/Common/LinuxKernel.vala:1163 src/Common/LinuxKernel.vala:1210 msgid "Un-install completed with errors" msgstr "Désinstallation terminée avec des erreurs" -#: src/Common/LinuxKernel.vala:1177 +#: src/Common/LinuxKernel.vala:1176 msgid "" "This kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -140,11 +140,11 @@ msgstr "" "Ce noyau est en cours d'exécution et ne peut pas être supprimé.\n" " Installez un autre noyau avant de retirer celui-ci." -#: src/Common/Main.vala:243 +#: src/Common/Main.vala:241 msgid "Called from" msgstr "" -#: src/Common/Main.vala:277 +#: src/Common/Main.vala:275 msgid "Notifications are disabled" msgstr "Les notifications sont désactivées" diff --git a/po/hr.po b/po/hr.po index b33f0726..a2c5d432 100644 --- a/po/hr.po +++ b/po/hr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-12-18 14:46-0500\n" +"POT-Creation-Date: 2020-12-21 05:01-0500\n" "PO-Revision-Date: 2017-12-24 00:52+0100\n" "Last-Translator: gogo \n" "Language-Team: Croatian \n" @@ -13,109 +13,109 @@ msgstr "" "X-Launchpad-Export-Date: 2017-12-23 23:36+0000\n" "X-Generator: Poedit 1.8.7.1\n" -#: src/Common/LinuxKernel.vala:89 +#: src/Common/LinuxKernel.vala:88 msgid "Distribution" msgstr "Distribucija" -#: src/Common/LinuxKernel.vala:103 +#: src/Common/LinuxKernel.vala:102 #, fuzzy msgid "Architecture" msgstr "Arhitektura sustava" -#: src/Common/LinuxKernel.vala:302 +#: src/Common/LinuxKernel.vala:301 msgid "Fetching index..." msgstr "" -#: src/Common/LinuxKernel.vala:339 +#: src/Common/LinuxKernel.vala:338 msgid "Fetching index from kernel.ubuntu.com..." msgstr "Preuzimanje sadržaja sa kernel.ubuntu.com..." -#: src/Common/LinuxKernel.vala:595 +#: src/Common/LinuxKernel.vala:594 #, fuzzy msgid "Could not find running kernel in list!" msgstr "Nemoguće je pronaći zatraženu inačicu" -#: src/Common/LinuxKernel.vala:601 +#: src/Common/LinuxKernel.vala:600 #, fuzzy msgid "Could not find any kernels to remove" msgstr "Odaberi kernele za uklanjanje" -#: src/Common/LinuxKernel.vala:610 +#: src/Common/LinuxKernel.vala:609 msgid "The following kernels will be removed:" msgstr "" -#: src/Common/LinuxKernel.vala:617 +#: src/Common/LinuxKernel.vala:616 msgid "Continue ?" msgstr "" -#: src/Common/LinuxKernel.vala:643 src/Console/AppConsole.vala:304 +#: src/Common/LinuxKernel.vala:642 src/Console/AppConsole.vala:304 msgid "Latest update" msgstr "" -#: src/Common/LinuxKernel.vala:654 src/Console/AppConsole.vala:311 +#: src/Common/LinuxKernel.vala:653 src/Console/AppConsole.vala:311 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:662 src/Console/AppConsole.vala:316 +#: src/Common/LinuxKernel.vala:661 src/Console/AppConsole.vala:316 #: src/Console/AppConsole.vala:377 msgid "No updates found" msgstr "Nema pronađenih nadopuna" -#: src/Common/LinuxKernel.vala:672 +#: src/Common/LinuxKernel.vala:671 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "" -#: src/Common/LinuxKernel.vala:910 +#: src/Common/LinuxKernel.vala:909 msgid "Packages Available" msgstr "Dostupni paketi" -#: src/Common/LinuxKernel.vala:918 +#: src/Common/LinuxKernel.vala:917 msgid "Packages Installed" msgstr "Instalirani paketi" -#: src/Common/LinuxKernel.vala:999 +#: src/Common/LinuxKernel.vala:998 msgid "Available Kernels" msgstr "Dostupni kerneli" -#: src/Common/LinuxKernel.vala:1006 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1005 src/Gtk/MainWindow.vala:186 msgid "Installed" msgstr "Instalirano" -#: src/Common/LinuxKernel.vala:1006 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1005 src/Gtk/MainWindow.vala:186 #: src/Gtk/MainWindow.vala:628 src/Gtk/MainWindow.vala:642 msgid "Running" msgstr "Pokrenuto" -#: src/Common/LinuxKernel.vala:1043 +#: src/Common/LinuxKernel.vala:1042 msgid "Downloading" msgstr "Preuzimanje" -#: src/Common/LinuxKernel.vala:1062 +#: src/Common/LinuxKernel.vala:1061 #: src/Utility/Gtk/CustomMessageDialog.vala:148 #: src/Utility/Gtk/CustomMessageDialog.vala:152 msgid "OK" msgstr "U redu" -#: src/Common/LinuxKernel.vala:1067 +#: src/Common/LinuxKernel.vala:1066 msgid "ERROR" msgstr "GREŠKA" -#: src/Common/LinuxKernel.vala:1081 src/Gtk/MainWindow.vala:650 +#: src/Common/LinuxKernel.vala:1080 src/Gtk/MainWindow.vala:650 msgid "This kernel is already installed." msgstr "Ovaj kernel je već instaliran." -#: src/Common/LinuxKernel.vala:1107 +#: src/Common/LinuxKernel.vala:1106 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "Instalacija je završena. Potrebno je ponovno pokretanje računala kako bi se " "koristio novi kernel." -#: src/Common/LinuxKernel.vala:1110 +#: src/Common/LinuxKernel.vala:1109 msgid "Installation completed with errors" msgstr "Instalacija je završena s greškama" -#: src/Common/LinuxKernel.vala:1125 +#: src/Common/LinuxKernel.vala:1124 msgid "" "Selected kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -123,19 +123,19 @@ msgstr "" "Odabrani kernel je trenutno pokernut i ne može se ukloniti.\n" " Instalirajte drugi kernel prije uklanjanja trenutnog kernela." -#: src/Common/LinuxKernel.vala:1130 +#: src/Common/LinuxKernel.vala:1129 msgid "Preparing to remove selected kernels" msgstr "Pripremanje uklanjanja odabranih kernela" -#: src/Common/LinuxKernel.vala:1161 src/Common/LinuxKernel.vala:1208 +#: src/Common/LinuxKernel.vala:1160 src/Common/LinuxKernel.vala:1207 msgid "Un-install completed" msgstr "Deinstalacija završena" -#: src/Common/LinuxKernel.vala:1164 src/Common/LinuxKernel.vala:1211 +#: src/Common/LinuxKernel.vala:1163 src/Common/LinuxKernel.vala:1210 msgid "Un-install completed with errors" msgstr "Deinstalacija završena s greškama" -#: src/Common/LinuxKernel.vala:1177 +#: src/Common/LinuxKernel.vala:1176 msgid "" "This kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -143,11 +143,11 @@ msgstr "" "Ovaj kernel je trenutno pokrenut i ne može se ukloniti.\n" " Instalirajte drugi kernel prije uklanjanja trenutnog kernela." -#: src/Common/Main.vala:243 +#: src/Common/Main.vala:241 msgid "Called from" msgstr "" -#: src/Common/Main.vala:277 +#: src/Common/Main.vala:275 #, fuzzy msgid "Notifications are disabled" msgstr "Obavijesti" diff --git a/po/it.po b/po/it.po index 12c54e0c..6fd2eeaf 100644 --- a/po/it.po +++ b/po/it.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline 1.0.12\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-12-18 14:46-0500\n" +"POT-Creation-Date: 2020-12-21 05:01-0500\n" "PO-Revision-Date: 2020-08-22 15:35+0100\n" "Last-Translator: Albano Battistella \n" "Language-Team: Italian \n" @@ -16,106 +16,106 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: src/Common/LinuxKernel.vala:89 +#: src/Common/LinuxKernel.vala:88 msgid "Distribution" msgstr "Distribuzione" -#: src/Common/LinuxKernel.vala:103 +#: src/Common/LinuxKernel.vala:102 msgid "Architecture" msgstr "Architettura" -#: src/Common/LinuxKernel.vala:302 +#: src/Common/LinuxKernel.vala:301 msgid "Fetching index..." msgstr "Recupero indice in corso..." -#: src/Common/LinuxKernel.vala:339 +#: src/Common/LinuxKernel.vala:338 msgid "Fetching index from kernel.ubuntu.com..." msgstr "Recupero dell'indice da kernel.ubuntu.com..." -#: src/Common/LinuxKernel.vala:595 +#: src/Common/LinuxKernel.vala:594 msgid "Could not find running kernel in list!" msgstr "Impossibile trovare il kernel in esecuzione nell'elenco!" -#: src/Common/LinuxKernel.vala:601 +#: src/Common/LinuxKernel.vala:600 msgid "Could not find any kernels to remove" msgstr "Impossibile trovare alcun kernel da rimuovere" -#: src/Common/LinuxKernel.vala:610 +#: src/Common/LinuxKernel.vala:609 msgid "The following kernels will be removed:" msgstr "I seguenti kernel verranno rimossi:" -#: src/Common/LinuxKernel.vala:617 +#: src/Common/LinuxKernel.vala:616 msgid "Continue ?" msgstr "Continuare ?" -#: src/Common/LinuxKernel.vala:643 src/Console/AppConsole.vala:304 +#: src/Common/LinuxKernel.vala:642 src/Console/AppConsole.vala:304 msgid "Latest update" msgstr "Ultimo aggiornamento" -#: src/Common/LinuxKernel.vala:654 src/Console/AppConsole.vala:311 +#: src/Common/LinuxKernel.vala:653 src/Console/AppConsole.vala:311 msgid "Latest point update" msgstr "Ultimo aggiornamento del punto" -#: src/Common/LinuxKernel.vala:662 src/Console/AppConsole.vala:316 +#: src/Common/LinuxKernel.vala:661 src/Console/AppConsole.vala:316 #: src/Console/AppConsole.vala:377 msgid "No updates found" msgstr "Nessun aggiornamento trovato" -#: src/Common/LinuxKernel.vala:672 +#: src/Common/LinuxKernel.vala:671 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Installare la versione del kernel %s ? (y/n): " -#: src/Common/LinuxKernel.vala:910 +#: src/Common/LinuxKernel.vala:909 msgid "Packages Available" msgstr "Pacchetti disponibili" -#: src/Common/LinuxKernel.vala:918 +#: src/Common/LinuxKernel.vala:917 msgid "Packages Installed" msgstr "Pacchetti installati" -#: src/Common/LinuxKernel.vala:999 +#: src/Common/LinuxKernel.vala:998 msgid "Available Kernels" msgstr "Kernel disponibili" -#: src/Common/LinuxKernel.vala:1006 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1005 src/Gtk/MainWindow.vala:186 msgid "Installed" msgstr "Installato" -#: src/Common/LinuxKernel.vala:1006 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1005 src/Gtk/MainWindow.vala:186 #: src/Gtk/MainWindow.vala:628 src/Gtk/MainWindow.vala:642 msgid "Running" msgstr "In esecuzione" -#: src/Common/LinuxKernel.vala:1043 +#: src/Common/LinuxKernel.vala:1042 msgid "Downloading" msgstr "Download in corso" -#: src/Common/LinuxKernel.vala:1062 +#: src/Common/LinuxKernel.vala:1061 #: src/Utility/Gtk/CustomMessageDialog.vala:148 #: src/Utility/Gtk/CustomMessageDialog.vala:152 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:1067 +#: src/Common/LinuxKernel.vala:1066 msgid "ERROR" msgstr "ERRORE" -#: src/Common/LinuxKernel.vala:1081 src/Gtk/MainWindow.vala:650 +#: src/Common/LinuxKernel.vala:1080 src/Gtk/MainWindow.vala:650 msgid "This kernel is already installed." msgstr "Questo kernel è già installato" -#: src/Common/LinuxKernel.vala:1107 +#: src/Common/LinuxKernel.vala:1106 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "Installazione completata. È necessario riavviare per utilizzare il nuovo " "kernel." -#: src/Common/LinuxKernel.vala:1110 +#: src/Common/LinuxKernel.vala:1109 msgid "Installation completed with errors" msgstr "Installazione completata con errori" -#: src/Common/LinuxKernel.vala:1125 +#: src/Common/LinuxKernel.vala:1124 msgid "" "Selected kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -123,19 +123,19 @@ msgstr "" "Il kernel selezionato è attualmente in esecuzione e non può essere rimosso.\n" "Installa un altro kernel prima di rimuovere questo." -#: src/Common/LinuxKernel.vala:1130 +#: src/Common/LinuxKernel.vala:1129 msgid "Preparing to remove selected kernels" msgstr "Preparazione per rimuovere i kernel selezionati" -#: src/Common/LinuxKernel.vala:1161 src/Common/LinuxKernel.vala:1208 +#: src/Common/LinuxKernel.vala:1160 src/Common/LinuxKernel.vala:1207 msgid "Un-install completed" msgstr "Disinstallazione completata" -#: src/Common/LinuxKernel.vala:1164 src/Common/LinuxKernel.vala:1211 +#: src/Common/LinuxKernel.vala:1163 src/Common/LinuxKernel.vala:1210 msgid "Un-install completed with errors" msgstr "Disinstallazione completata con errori" -#: src/Common/LinuxKernel.vala:1177 +#: src/Common/LinuxKernel.vala:1176 msgid "" "This kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -143,11 +143,11 @@ msgstr "" "Questo kernel è attualmente in esecuzione e non può essere rimosso.\n" "Installa un altro kernel prima di rimuovere questo." -#: src/Common/Main.vala:243 +#: src/Common/Main.vala:241 msgid "Called from" msgstr "Chiamata da" -#: src/Common/Main.vala:277 +#: src/Common/Main.vala:275 msgid "Notifications are disabled" msgstr "Le notifiche sono disabilitate" diff --git a/po/messages.pot b/po/messages.pot index e714bc5e..8a2379b9 100644 --- a/po/messages.pot +++ b/po/messages.pot @@ -6,9 +6,9 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: mainline 1.0.13\n" +"Project-Id-Version: mainline 1.0.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-12-18 14:46-0500\n" +"POT-Creation-Date: 2020-12-21 05:01-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,132 +17,132 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" -#: src/Common/LinuxKernel.vala:89 +#: src/Common/LinuxKernel.vala:88 msgid "Distribution" msgstr "" -#: src/Common/LinuxKernel.vala:103 +#: src/Common/LinuxKernel.vala:102 msgid "Architecture" msgstr "" -#: src/Common/LinuxKernel.vala:302 +#: src/Common/LinuxKernel.vala:301 msgid "Fetching index..." msgstr "" -#: src/Common/LinuxKernel.vala:339 +#: src/Common/LinuxKernel.vala:338 msgid "Fetching index from kernel.ubuntu.com..." msgstr "" -#: src/Common/LinuxKernel.vala:595 +#: src/Common/LinuxKernel.vala:594 msgid "Could not find running kernel in list!" msgstr "" -#: src/Common/LinuxKernel.vala:601 +#: src/Common/LinuxKernel.vala:600 msgid "Could not find any kernels to remove" msgstr "" -#: src/Common/LinuxKernel.vala:610 +#: src/Common/LinuxKernel.vala:609 msgid "The following kernels will be removed:" msgstr "" -#: src/Common/LinuxKernel.vala:617 +#: src/Common/LinuxKernel.vala:616 msgid "Continue ?" msgstr "" -#: src/Common/LinuxKernel.vala:643 src/Console/AppConsole.vala:304 +#: src/Common/LinuxKernel.vala:642 src/Console/AppConsole.vala:304 msgid "Latest update" msgstr "" -#: src/Common/LinuxKernel.vala:654 src/Console/AppConsole.vala:311 +#: src/Common/LinuxKernel.vala:653 src/Console/AppConsole.vala:311 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:662 src/Console/AppConsole.vala:316 +#: src/Common/LinuxKernel.vala:661 src/Console/AppConsole.vala:316 #: src/Console/AppConsole.vala:377 msgid "No updates found" msgstr "" -#: src/Common/LinuxKernel.vala:672 +#: src/Common/LinuxKernel.vala:671 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "" -#: src/Common/LinuxKernel.vala:910 +#: src/Common/LinuxKernel.vala:909 msgid "Packages Available" msgstr "" -#: src/Common/LinuxKernel.vala:918 +#: src/Common/LinuxKernel.vala:917 msgid "Packages Installed" msgstr "" -#: src/Common/LinuxKernel.vala:999 +#: src/Common/LinuxKernel.vala:998 msgid "Available Kernels" msgstr "" -#: src/Common/LinuxKernel.vala:1006 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1005 src/Gtk/MainWindow.vala:186 msgid "Installed" msgstr "" -#: src/Common/LinuxKernel.vala:1006 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1005 src/Gtk/MainWindow.vala:186 #: src/Gtk/MainWindow.vala:628 src/Gtk/MainWindow.vala:642 msgid "Running" msgstr "" -#: src/Common/LinuxKernel.vala:1043 +#: src/Common/LinuxKernel.vala:1042 msgid "Downloading" msgstr "" -#: src/Common/LinuxKernel.vala:1062 +#: src/Common/LinuxKernel.vala:1061 #: src/Utility/Gtk/CustomMessageDialog.vala:148 #: src/Utility/Gtk/CustomMessageDialog.vala:152 msgid "OK" msgstr "" -#: src/Common/LinuxKernel.vala:1067 +#: src/Common/LinuxKernel.vala:1066 msgid "ERROR" msgstr "" -#: src/Common/LinuxKernel.vala:1081 src/Gtk/MainWindow.vala:650 +#: src/Common/LinuxKernel.vala:1080 src/Gtk/MainWindow.vala:650 msgid "This kernel is already installed." msgstr "" -#: src/Common/LinuxKernel.vala:1107 +#: src/Common/LinuxKernel.vala:1106 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" -#: src/Common/LinuxKernel.vala:1110 +#: src/Common/LinuxKernel.vala:1109 msgid "Installation completed with errors" msgstr "" -#: src/Common/LinuxKernel.vala:1125 +#: src/Common/LinuxKernel.vala:1124 msgid "" "Selected kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." msgstr "" -#: src/Common/LinuxKernel.vala:1130 +#: src/Common/LinuxKernel.vala:1129 msgid "Preparing to remove selected kernels" msgstr "" -#: src/Common/LinuxKernel.vala:1161 src/Common/LinuxKernel.vala:1208 +#: src/Common/LinuxKernel.vala:1160 src/Common/LinuxKernel.vala:1207 msgid "Un-install completed" msgstr "" -#: src/Common/LinuxKernel.vala:1164 src/Common/LinuxKernel.vala:1211 +#: src/Common/LinuxKernel.vala:1163 src/Common/LinuxKernel.vala:1210 msgid "Un-install completed with errors" msgstr "" -#: src/Common/LinuxKernel.vala:1177 +#: src/Common/LinuxKernel.vala:1176 msgid "" "This kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." msgstr "" -#: src/Common/Main.vala:243 +#: src/Common/Main.vala:241 msgid "Called from" msgstr "" -#: src/Common/Main.vala:277 +#: src/Common/Main.vala:275 msgid "Notifications are disabled" msgstr "" diff --git a/po/nl.po b/po/nl.po index 7fd4935e..e7d49abe 100644 --- a/po/nl.po +++ b/po/nl.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-12-18 14:46-0500\n" +"POT-Creation-Date: 2020-12-21 05:01-0500\n" "PO-Revision-Date: 2020-08-23 13:55+0200\n" "Last-Translator: Heimen Stoffels \n" "Language-Team: \n" @@ -13,106 +13,106 @@ msgstr "" "X-Generator: Poedit 2.4.1\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: src/Common/LinuxKernel.vala:89 +#: src/Common/LinuxKernel.vala:88 msgid "Distribution" msgstr "Distributie" -#: src/Common/LinuxKernel.vala:103 +#: src/Common/LinuxKernel.vala:102 msgid "Architecture" msgstr "Architectuur" -#: src/Common/LinuxKernel.vala:302 +#: src/Common/LinuxKernel.vala:301 msgid "Fetching index..." msgstr "Bezig met ophalen van index..." -#: src/Common/LinuxKernel.vala:339 +#: src/Common/LinuxKernel.vala:338 msgid "Fetching index from kernel.ubuntu.com..." msgstr "Bezig met ophalen van index van kernel.ubuntu.com..." -#: src/Common/LinuxKernel.vala:595 +#: src/Common/LinuxKernel.vala:594 msgid "Could not find running kernel in list!" msgstr "De in gebruik zijnde kernel staat niet op de lijst!" -#: src/Common/LinuxKernel.vala:601 +#: src/Common/LinuxKernel.vala:600 msgid "Could not find any kernels to remove" msgstr "Er zijn geen te verwijderen kernels" -#: src/Common/LinuxKernel.vala:610 +#: src/Common/LinuxKernel.vala:609 msgid "The following kernels will be removed:" msgstr "De volgende kernels worden verwijderd:" -#: src/Common/LinuxKernel.vala:617 +#: src/Common/LinuxKernel.vala:616 msgid "Continue ?" msgstr "Wil je doorgaan?" -#: src/Common/LinuxKernel.vala:643 src/Console/AppConsole.vala:304 +#: src/Common/LinuxKernel.vala:642 src/Console/AppConsole.vala:304 msgid "Latest update" msgstr "Recentste update" -#: src/Common/LinuxKernel.vala:654 src/Console/AppConsole.vala:311 +#: src/Common/LinuxKernel.vala:653 src/Console/AppConsole.vala:311 msgid "Latest point update" msgstr "Recentste puntupdate" -#: src/Common/LinuxKernel.vala:662 src/Console/AppConsole.vala:316 +#: src/Common/LinuxKernel.vala:661 src/Console/AppConsole.vala:316 #: src/Console/AppConsole.vala:377 msgid "No updates found" msgstr "Geen updates gevonden" -#: src/Common/LinuxKernel.vala:672 +#: src/Common/LinuxKernel.vala:671 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Wil je versie %s installeren? (j/n): " -#: src/Common/LinuxKernel.vala:910 +#: src/Common/LinuxKernel.vala:909 msgid "Packages Available" msgstr "Beschikbare pakketten" -#: src/Common/LinuxKernel.vala:918 +#: src/Common/LinuxKernel.vala:917 msgid "Packages Installed" msgstr "Geïnstalleerde pakketten" -#: src/Common/LinuxKernel.vala:999 +#: src/Common/LinuxKernel.vala:998 msgid "Available Kernels" msgstr "Beschikbare kernels" -#: src/Common/LinuxKernel.vala:1006 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1005 src/Gtk/MainWindow.vala:186 msgid "Installed" msgstr "Geïnstalleerd" -#: src/Common/LinuxKernel.vala:1006 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1005 src/Gtk/MainWindow.vala:186 #: src/Gtk/MainWindow.vala:628 src/Gtk/MainWindow.vala:642 msgid "Running" msgstr "In gebruik" -#: src/Common/LinuxKernel.vala:1043 +#: src/Common/LinuxKernel.vala:1042 msgid "Downloading" msgstr "Bezig met downloaden" -#: src/Common/LinuxKernel.vala:1062 +#: src/Common/LinuxKernel.vala:1061 #: src/Utility/Gtk/CustomMessageDialog.vala:148 #: src/Utility/Gtk/CustomMessageDialog.vala:152 msgid "OK" msgstr "Oké" -#: src/Common/LinuxKernel.vala:1067 +#: src/Common/LinuxKernel.vala:1066 msgid "ERROR" msgstr "FOUT" -#: src/Common/LinuxKernel.vala:1081 src/Gtk/MainWindow.vala:650 +#: src/Common/LinuxKernel.vala:1080 src/Gtk/MainWindow.vala:650 msgid "This kernel is already installed." msgstr "Deze kernel is al geïnstalleerd." -#: src/Common/LinuxKernel.vala:1107 +#: src/Common/LinuxKernel.vala:1106 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "De installatie is voltooid. Herstart de computer om de nieuwe kernel te " "gebruiken." -#: src/Common/LinuxKernel.vala:1110 +#: src/Common/LinuxKernel.vala:1109 msgid "Installation completed with errors" msgstr "De installatie is foutloos voltooid" -#: src/Common/LinuxKernel.vala:1125 +#: src/Common/LinuxKernel.vala:1124 msgid "" "Selected kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -121,19 +121,19 @@ msgstr "" "verwijderd.\n" " Installeer eerst een andere kernel." -#: src/Common/LinuxKernel.vala:1130 +#: src/Common/LinuxKernel.vala:1129 msgid "Preparing to remove selected kernels" msgstr "Bezig met voorbereiden van verwijdering" -#: src/Common/LinuxKernel.vala:1161 src/Common/LinuxKernel.vala:1208 +#: src/Common/LinuxKernel.vala:1160 src/Common/LinuxKernel.vala:1207 msgid "Un-install completed" msgstr "Deïnstalleren voltooid" -#: src/Common/LinuxKernel.vala:1164 src/Common/LinuxKernel.vala:1211 +#: src/Common/LinuxKernel.vala:1163 src/Common/LinuxKernel.vala:1210 msgid "Un-install completed with errors" msgstr "Deïnstalleren voltooid, maar met fouten" -#: src/Common/LinuxKernel.vala:1177 +#: src/Common/LinuxKernel.vala:1176 msgid "" "This kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -141,11 +141,11 @@ msgstr "" "Deze kernel is momenteel in gebruik en kan daarom niet worden verwijderd.\n" " Installeer eerst een andere kernel." -#: src/Common/Main.vala:243 +#: src/Common/Main.vala:241 msgid "Called from" msgstr "Aangeroepen door" -#: src/Common/Main.vala:277 +#: src/Common/Main.vala:275 msgid "Notifications are disabled" msgstr "Meldingen zijn uitgeschakeld" diff --git a/po/pl.po b/po/pl.po index 3354a2b4..c38a7540 100644 --- a/po/pl.po +++ b/po/pl.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-12-18 14:46-0500\n" +"POT-Creation-Date: 2020-12-21 05:01-0500\n" "PO-Revision-Date: 2017-08-12 15:26+0200\n" "Last-Translator: Waldemar Konik \n" "Language-Team: Polish\n" @@ -12,109 +12,109 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Poedit 1.8.7.1\n" -#: src/Common/LinuxKernel.vala:89 +#: src/Common/LinuxKernel.vala:88 msgid "Distribution" msgstr "Dystrybucja" -#: src/Common/LinuxKernel.vala:103 +#: src/Common/LinuxKernel.vala:102 #, fuzzy msgid "Architecture" msgstr "Architektura systemu" -#: src/Common/LinuxKernel.vala:302 +#: src/Common/LinuxKernel.vala:301 msgid "Fetching index..." msgstr "" -#: src/Common/LinuxKernel.vala:339 +#: src/Common/LinuxKernel.vala:338 msgid "Fetching index from kernel.ubuntu.com..." msgstr "Pobieranie indeksu z kernel.ubuntu.com..." -#: src/Common/LinuxKernel.vala:595 +#: src/Common/LinuxKernel.vala:594 #, fuzzy msgid "Could not find running kernel in list!" msgstr "Nie można odnaleźć żądanej wersji" -#: src/Common/LinuxKernel.vala:601 +#: src/Common/LinuxKernel.vala:600 #, fuzzy msgid "Could not find any kernels to remove" msgstr "Wybierz jądro do usunięcia" -#: src/Common/LinuxKernel.vala:610 +#: src/Common/LinuxKernel.vala:609 msgid "The following kernels will be removed:" msgstr "" -#: src/Common/LinuxKernel.vala:617 +#: src/Common/LinuxKernel.vala:616 msgid "Continue ?" msgstr "" -#: src/Common/LinuxKernel.vala:643 src/Console/AppConsole.vala:304 +#: src/Common/LinuxKernel.vala:642 src/Console/AppConsole.vala:304 msgid "Latest update" msgstr "" -#: src/Common/LinuxKernel.vala:654 src/Console/AppConsole.vala:311 +#: src/Common/LinuxKernel.vala:653 src/Console/AppConsole.vala:311 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:662 src/Console/AppConsole.vala:316 +#: src/Common/LinuxKernel.vala:661 src/Console/AppConsole.vala:316 #: src/Console/AppConsole.vala:377 msgid "No updates found" msgstr "Nie znaleziono aktualizacji" -#: src/Common/LinuxKernel.vala:672 +#: src/Common/LinuxKernel.vala:671 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "" -#: src/Common/LinuxKernel.vala:910 +#: src/Common/LinuxKernel.vala:909 msgid "Packages Available" msgstr "Dostępne pakiety" -#: src/Common/LinuxKernel.vala:918 +#: src/Common/LinuxKernel.vala:917 msgid "Packages Installed" msgstr "Pakiety zainstalowane" -#: src/Common/LinuxKernel.vala:999 +#: src/Common/LinuxKernel.vala:998 msgid "Available Kernels" msgstr "Dostępne jądra" -#: src/Common/LinuxKernel.vala:1006 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1005 src/Gtk/MainWindow.vala:186 msgid "Installed" msgstr "Zainstalowany" -#: src/Common/LinuxKernel.vala:1006 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1005 src/Gtk/MainWindow.vala:186 #: src/Gtk/MainWindow.vala:628 src/Gtk/MainWindow.vala:642 msgid "Running" msgstr "Uruchomiony" -#: src/Common/LinuxKernel.vala:1043 +#: src/Common/LinuxKernel.vala:1042 msgid "Downloading" msgstr "Pobieranie" -#: src/Common/LinuxKernel.vala:1062 +#: src/Common/LinuxKernel.vala:1061 #: src/Utility/Gtk/CustomMessageDialog.vala:148 #: src/Utility/Gtk/CustomMessageDialog.vala:152 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:1067 +#: src/Common/LinuxKernel.vala:1066 msgid "ERROR" msgstr "BŁĄD" -#: src/Common/LinuxKernel.vala:1081 src/Gtk/MainWindow.vala:650 +#: src/Common/LinuxKernel.vala:1080 src/Gtk/MainWindow.vala:650 msgid "This kernel is already installed." msgstr "To jądro jest już zainstalowane." -#: src/Common/LinuxKernel.vala:1107 +#: src/Common/LinuxKernel.vala:1106 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "Instalacja zakończona. Aby korzystać z nowego jądra, konieczne jest ponowne " "uruchomienie." -#: src/Common/LinuxKernel.vala:1110 +#: src/Common/LinuxKernel.vala:1109 msgid "Installation completed with errors" msgstr "Instalacja zakończona z błędami" -#: src/Common/LinuxKernel.vala:1125 +#: src/Common/LinuxKernel.vala:1124 msgid "" "Selected kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -122,19 +122,19 @@ msgstr "" "Wybrane jądro aktualnie działa i nie może zostać usunięte.\n" " Zainstaluj inne jądro przed usunięciem tego." -#: src/Common/LinuxKernel.vala:1130 +#: src/Common/LinuxKernel.vala:1129 msgid "Preparing to remove selected kernels" msgstr "Przygotowanie do usunięcia wybranych jąder" -#: src/Common/LinuxKernel.vala:1161 src/Common/LinuxKernel.vala:1208 +#: src/Common/LinuxKernel.vala:1160 src/Common/LinuxKernel.vala:1207 msgid "Un-install completed" msgstr "De-instalacja zakończona" -#: src/Common/LinuxKernel.vala:1164 src/Common/LinuxKernel.vala:1211 +#: src/Common/LinuxKernel.vala:1163 src/Common/LinuxKernel.vala:1210 msgid "Un-install completed with errors" msgstr "De-instalacja zakończona z błędami" -#: src/Common/LinuxKernel.vala:1177 +#: src/Common/LinuxKernel.vala:1176 msgid "" "This kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -142,11 +142,11 @@ msgstr "" "To jądro aktualnie działa i nie może zostać usunięte.\n" " Zainstaluj inne jądro przed usunięciem tego." -#: src/Common/Main.vala:243 +#: src/Common/Main.vala:241 msgid "Called from" msgstr "" -#: src/Common/Main.vala:277 +#: src/Common/Main.vala:275 #, fuzzy msgid "Notifications are disabled" msgstr "Powiadomienia" diff --git a/po/ru.po b/po/ru.po index f216335b..22b0b244 100644 --- a/po/ru.po +++ b/po/ru.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-12-18 14:46-0500\n" +"POT-Creation-Date: 2020-12-21 05:01-0500\n" "PO-Revision-Date: 2016-12-13 16:46+0300\n" "Last-Translator: Faust3000 \n" "Language-Team: Russian \n" @@ -13,111 +13,111 @@ msgstr "" "X-Launchpad-Export-Date: 2016-12-13 11:48+0000\n" "X-Generator: Poedit 1.8.7.1\n" -#: src/Common/LinuxKernel.vala:89 +#: src/Common/LinuxKernel.vala:88 msgid "Distribution" msgstr "Дистрибутив" -#: src/Common/LinuxKernel.vala:103 +#: src/Common/LinuxKernel.vala:102 #, fuzzy msgid "Architecture" msgstr "Системная архитектура" -#: src/Common/LinuxKernel.vala:302 +#: src/Common/LinuxKernel.vala:301 msgid "Fetching index..." msgstr "" -#: src/Common/LinuxKernel.vala:339 +#: src/Common/LinuxKernel.vala:338 msgid "Fetching index from kernel.ubuntu.com..." msgstr "Получение сведений с kernel.ubuntu.com..." -#: src/Common/LinuxKernel.vala:595 +#: src/Common/LinuxKernel.vala:594 #, fuzzy msgid "Could not find running kernel in list!" msgstr "Не удалось найти запрошенную версию" -#: src/Common/LinuxKernel.vala:601 +#: src/Common/LinuxKernel.vala:600 #, fuzzy msgid "Could not find any kernels to remove" msgstr "Не удалось найти запрошенную версию" -#: src/Common/LinuxKernel.vala:610 +#: src/Common/LinuxKernel.vala:609 msgid "The following kernels will be removed:" msgstr "" -#: src/Common/LinuxKernel.vala:617 +#: src/Common/LinuxKernel.vala:616 msgid "Continue ?" msgstr "" -#: src/Common/LinuxKernel.vala:643 src/Console/AppConsole.vala:304 +#: src/Common/LinuxKernel.vala:642 src/Console/AppConsole.vala:304 msgid "Latest update" msgstr "" -#: src/Common/LinuxKernel.vala:654 src/Console/AppConsole.vala:311 +#: src/Common/LinuxKernel.vala:653 src/Console/AppConsole.vala:311 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:662 src/Console/AppConsole.vala:316 +#: src/Common/LinuxKernel.vala:661 src/Console/AppConsole.vala:316 #: src/Console/AppConsole.vala:377 msgid "No updates found" msgstr "Обновлений не найдено" -#: src/Common/LinuxKernel.vala:672 +#: src/Common/LinuxKernel.vala:671 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "" -#: src/Common/LinuxKernel.vala:910 +#: src/Common/LinuxKernel.vala:909 #, fuzzy msgid "Packages Available" msgstr "Установлено" -#: src/Common/LinuxKernel.vala:918 +#: src/Common/LinuxKernel.vala:917 #, fuzzy msgid "Packages Installed" msgstr "Установлено" -#: src/Common/LinuxKernel.vala:999 +#: src/Common/LinuxKernel.vala:998 msgid "Available Kernels" msgstr "Доступные ядра" -#: src/Common/LinuxKernel.vala:1006 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1005 src/Gtk/MainWindow.vala:186 msgid "Installed" msgstr "Установлено" -#: src/Common/LinuxKernel.vala:1006 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1005 src/Gtk/MainWindow.vala:186 #: src/Gtk/MainWindow.vala:628 src/Gtk/MainWindow.vala:642 msgid "Running" msgstr "Используется" -#: src/Common/LinuxKernel.vala:1043 +#: src/Common/LinuxKernel.vala:1042 msgid "Downloading" msgstr "Загрузка" -#: src/Common/LinuxKernel.vala:1062 +#: src/Common/LinuxKernel.vala:1061 #: src/Utility/Gtk/CustomMessageDialog.vala:148 #: src/Utility/Gtk/CustomMessageDialog.vala:152 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:1067 +#: src/Common/LinuxKernel.vala:1066 msgid "ERROR" msgstr "ОШИБКА" -#: src/Common/LinuxKernel.vala:1081 src/Gtk/MainWindow.vala:650 +#: src/Common/LinuxKernel.vala:1080 src/Gtk/MainWindow.vala:650 msgid "This kernel is already installed." msgstr "Это ядро уже установлено." -#: src/Common/LinuxKernel.vala:1107 +#: src/Common/LinuxKernel.vala:1106 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "Установка завершена. Обязательно выполните перезагрузку, чтобы использовать " "новое ядро." -#: src/Common/LinuxKernel.vala:1110 +#: src/Common/LinuxKernel.vala:1109 msgid "Installation completed with errors" msgstr "Установка завершена с ошибками" -#: src/Common/LinuxKernel.vala:1125 +#: src/Common/LinuxKernel.vala:1124 #, fuzzy msgid "" "Selected kernel is currently running and cannot be removed.\n" @@ -126,19 +126,19 @@ msgstr "" "Это ядро в настоящий момент работает и не может быть удалено.\n" " Установите другое ядро, прежде чем удалять его." -#: src/Common/LinuxKernel.vala:1130 +#: src/Common/LinuxKernel.vala:1129 msgid "Preparing to remove selected kernels" msgstr "" -#: src/Common/LinuxKernel.vala:1161 src/Common/LinuxKernel.vala:1208 +#: src/Common/LinuxKernel.vala:1160 src/Common/LinuxKernel.vala:1207 msgid "Un-install completed" msgstr "Удаление завершено" -#: src/Common/LinuxKernel.vala:1164 src/Common/LinuxKernel.vala:1211 +#: src/Common/LinuxKernel.vala:1163 src/Common/LinuxKernel.vala:1210 msgid "Un-install completed with errors" msgstr "Удаление завершено с ошибками" -#: src/Common/LinuxKernel.vala:1177 +#: src/Common/LinuxKernel.vala:1176 msgid "" "This kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -146,11 +146,11 @@ msgstr "" "Это ядро в настоящий момент работает и не может быть удалено.\n" " Установите другое ядро, прежде чем удалять его." -#: src/Common/Main.vala:243 +#: src/Common/Main.vala:241 msgid "Called from" msgstr "" -#: src/Common/Main.vala:277 +#: src/Common/Main.vala:275 #, fuzzy msgid "Notifications are disabled" msgstr "Уведомления" diff --git a/po/sv.po b/po/sv.po index c782366c..a8296822 100644 --- a/po/sv.po +++ b/po/sv.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-12-18 14:46-0500\n" +"POT-Creation-Date: 2020-12-21 05:01-0500\n" "PO-Revision-Date: 2018-01-13 16:56+0100\n" "Last-Translator: Åke Engelbrektson \n" "Language-Team: Svenska Språkfiler \n" @@ -13,108 +13,108 @@ msgstr "" "X-Generator: Poedit 1.8.7.1\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: src/Common/LinuxKernel.vala:89 +#: src/Common/LinuxKernel.vala:88 msgid "Distribution" msgstr "Distribution" -#: src/Common/LinuxKernel.vala:103 +#: src/Common/LinuxKernel.vala:102 #, fuzzy msgid "Architecture" msgstr "Systemarkitektur" -#: src/Common/LinuxKernel.vala:302 +#: src/Common/LinuxKernel.vala:301 #, fuzzy msgid "Fetching index..." msgstr "Hämtar index för" -#: src/Common/LinuxKernel.vala:339 +#: src/Common/LinuxKernel.vala:338 msgid "Fetching index from kernel.ubuntu.com..." msgstr "Hämtar index från kernel.ubuntu.com ..." -#: src/Common/LinuxKernel.vala:595 +#: src/Common/LinuxKernel.vala:594 #, fuzzy msgid "Could not find running kernel in list!" msgstr "Kunde inte hitta efterfrågad version" -#: src/Common/LinuxKernel.vala:601 +#: src/Common/LinuxKernel.vala:600 #, fuzzy msgid "Could not find any kernels to remove" msgstr "Välj kärnor för borttagning" -#: src/Common/LinuxKernel.vala:610 +#: src/Common/LinuxKernel.vala:609 msgid "The following kernels will be removed:" msgstr "" -#: src/Common/LinuxKernel.vala:617 +#: src/Common/LinuxKernel.vala:616 msgid "Continue ?" msgstr "" -#: src/Common/LinuxKernel.vala:643 src/Console/AppConsole.vala:304 +#: src/Common/LinuxKernel.vala:642 src/Console/AppConsole.vala:304 msgid "Latest update" msgstr "" -#: src/Common/LinuxKernel.vala:654 src/Console/AppConsole.vala:311 +#: src/Common/LinuxKernel.vala:653 src/Console/AppConsole.vala:311 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:662 src/Console/AppConsole.vala:316 +#: src/Common/LinuxKernel.vala:661 src/Console/AppConsole.vala:316 #: src/Console/AppConsole.vala:377 msgid "No updates found" msgstr "Inga uppdateringar hittades" -#: src/Common/LinuxKernel.vala:672 +#: src/Common/LinuxKernel.vala:671 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "" -#: src/Common/LinuxKernel.vala:910 +#: src/Common/LinuxKernel.vala:909 msgid "Packages Available" msgstr "Tillgängliga paket" -#: src/Common/LinuxKernel.vala:918 +#: src/Common/LinuxKernel.vala:917 msgid "Packages Installed" msgstr "Installerade paket" -#: src/Common/LinuxKernel.vala:999 +#: src/Common/LinuxKernel.vala:998 msgid "Available Kernels" msgstr "Tillgängliga kärnor" -#: src/Common/LinuxKernel.vala:1006 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1005 src/Gtk/MainWindow.vala:186 msgid "Installed" msgstr "Installerad" -#: src/Common/LinuxKernel.vala:1006 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1005 src/Gtk/MainWindow.vala:186 #: src/Gtk/MainWindow.vala:628 src/Gtk/MainWindow.vala:642 msgid "Running" msgstr "Körs" -#: src/Common/LinuxKernel.vala:1043 +#: src/Common/LinuxKernel.vala:1042 msgid "Downloading" msgstr "Laddar ner" -#: src/Common/LinuxKernel.vala:1062 +#: src/Common/LinuxKernel.vala:1061 #: src/Utility/Gtk/CustomMessageDialog.vala:148 #: src/Utility/Gtk/CustomMessageDialog.vala:152 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:1067 +#: src/Common/LinuxKernel.vala:1066 msgid "ERROR" msgstr "FEL" -#: src/Common/LinuxKernel.vala:1081 src/Gtk/MainWindow.vala:650 +#: src/Common/LinuxKernel.vala:1080 src/Gtk/MainWindow.vala:650 msgid "This kernel is already installed." msgstr "Denna kärna är redan installerad" -#: src/Common/LinuxKernel.vala:1107 +#: src/Common/LinuxKernel.vala:1106 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "Installation slutförd. Omstart krävs för att tillämpa den nya kärnan." -#: src/Common/LinuxKernel.vala:1110 +#: src/Common/LinuxKernel.vala:1109 msgid "Installation completed with errors" msgstr "Installation slutförd med fel" -#: src/Common/LinuxKernel.vala:1125 +#: src/Common/LinuxKernel.vala:1124 msgid "" "Selected kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -122,19 +122,19 @@ msgstr "" "Denna kärna används för tillfället och kan inte tas bort.\n" "Installera en annan kärna innan du tar bort den här." -#: src/Common/LinuxKernel.vala:1130 +#: src/Common/LinuxKernel.vala:1129 msgid "Preparing to remove selected kernels" msgstr "Förbereder borttagning av markerade kärnor" -#: src/Common/LinuxKernel.vala:1161 src/Common/LinuxKernel.vala:1208 +#: src/Common/LinuxKernel.vala:1160 src/Common/LinuxKernel.vala:1207 msgid "Un-install completed" msgstr "Avinstallation slutförd" -#: src/Common/LinuxKernel.vala:1164 src/Common/LinuxKernel.vala:1211 +#: src/Common/LinuxKernel.vala:1163 src/Common/LinuxKernel.vala:1210 msgid "Un-install completed with errors" msgstr "Avinstallation slutförd med fel" -#: src/Common/LinuxKernel.vala:1177 +#: src/Common/LinuxKernel.vala:1176 msgid "" "This kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -142,11 +142,11 @@ msgstr "" "Denna kärna används för tillfället och kan inte tas bort.\n" "Installera en annan kärna innan du tar bort den här." -#: src/Common/Main.vala:243 +#: src/Common/Main.vala:241 msgid "Called from" msgstr "" -#: src/Common/Main.vala:277 +#: src/Common/Main.vala:275 #, fuzzy msgid "Notifications are disabled" msgstr "Avisering" diff --git a/po/tr.po b/po/tr.po index 89befead..a02efb89 100644 --- a/po/tr.po +++ b/po/tr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-12-18 14:46-0500\n" +"POT-Creation-Date: 2020-12-21 05:01-0500\n" "PO-Revision-Date: 2020-03-10 15:59+0300\n" "Last-Translator: Gökhan GÖKKAYA \n" "Language-Team: Turkish\n" @@ -13,105 +13,105 @@ msgstr "" "X-Generator: Poedit 2.0.6\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: src/Common/LinuxKernel.vala:89 +#: src/Common/LinuxKernel.vala:88 msgid "Distribution" msgstr "Dağıtım" -#: src/Common/LinuxKernel.vala:103 +#: src/Common/LinuxKernel.vala:102 msgid "Architecture" msgstr "Sistem mimarisi" -#: src/Common/LinuxKernel.vala:302 +#: src/Common/LinuxKernel.vala:301 msgid "Fetching index..." msgstr "İçerik dizini alınıyor..." -#: src/Common/LinuxKernel.vala:339 +#: src/Common/LinuxKernel.vala:338 msgid "Fetching index from kernel.ubuntu.com..." msgstr "İçerik listesi kernel.ubuntu.com alanından alınıyor..." -#: src/Common/LinuxKernel.vala:595 +#: src/Common/LinuxKernel.vala:594 msgid "Could not find running kernel in list!" msgstr "İstenen sürüm bulunamadı!" -#: src/Common/LinuxKernel.vala:601 +#: src/Common/LinuxKernel.vala:600 msgid "Could not find any kernels to remove" msgstr "Kaldırılacak çekirdek bulunamadı" -#: src/Common/LinuxKernel.vala:610 +#: src/Common/LinuxKernel.vala:609 msgid "The following kernels will be removed:" msgstr "Aşağıdaki çekirdekler silinecek:" -#: src/Common/LinuxKernel.vala:617 +#: src/Common/LinuxKernel.vala:616 msgid "Continue ?" msgstr "Devam et ?" -#: src/Common/LinuxKernel.vala:643 src/Console/AppConsole.vala:304 +#: src/Common/LinuxKernel.vala:642 src/Console/AppConsole.vala:304 msgid "Latest update" msgstr "Son güncelleme" -#: src/Common/LinuxKernel.vala:654 src/Console/AppConsole.vala:311 +#: src/Common/LinuxKernel.vala:653 src/Console/AppConsole.vala:311 msgid "Latest point update" msgstr "Son güncelleme noktası" -#: src/Common/LinuxKernel.vala:662 src/Console/AppConsole.vala:316 +#: src/Common/LinuxKernel.vala:661 src/Console/AppConsole.vala:316 #: src/Console/AppConsole.vala:377 msgid "No updates found" msgstr "Güncelleme bulunamadı" -#: src/Common/LinuxKernel.vala:672 +#: src/Common/LinuxKernel.vala:671 #, fuzzy, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Linux v%s Kur ? (e/h): " -#: src/Common/LinuxKernel.vala:910 +#: src/Common/LinuxKernel.vala:909 msgid "Packages Available" msgstr "Mevcut Paketler" -#: src/Common/LinuxKernel.vala:918 +#: src/Common/LinuxKernel.vala:917 msgid "Packages Installed" msgstr "Kurulu Paketler" -#: src/Common/LinuxKernel.vala:999 +#: src/Common/LinuxKernel.vala:998 msgid "Available Kernels" msgstr "Mevcut Çekirdekler" -#: src/Common/LinuxKernel.vala:1006 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1005 src/Gtk/MainWindow.vala:186 msgid "Installed" msgstr "Kurulu" -#: src/Common/LinuxKernel.vala:1006 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1005 src/Gtk/MainWindow.vala:186 #: src/Gtk/MainWindow.vala:628 src/Gtk/MainWindow.vala:642 msgid "Running" msgstr "Çalışıyor" -#: src/Common/LinuxKernel.vala:1043 +#: src/Common/LinuxKernel.vala:1042 msgid "Downloading" msgstr "İndiriliyor" -#: src/Common/LinuxKernel.vala:1062 +#: src/Common/LinuxKernel.vala:1061 #: src/Utility/Gtk/CustomMessageDialog.vala:148 #: src/Utility/Gtk/CustomMessageDialog.vala:152 msgid "OK" msgstr "TAMAM" -#: src/Common/LinuxKernel.vala:1067 +#: src/Common/LinuxKernel.vala:1066 msgid "ERROR" msgstr "HATA" -#: src/Common/LinuxKernel.vala:1081 src/Gtk/MainWindow.vala:650 +#: src/Common/LinuxKernel.vala:1080 src/Gtk/MainWindow.vala:650 msgid "This kernel is already installed." msgstr "Bu çekirdek zaten kurulu." -#: src/Common/LinuxKernel.vala:1107 +#: src/Common/LinuxKernel.vala:1106 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "Kurulum tamamlandı. Yeni çekirdeği kullanmak için yeniden başlatma gerekiyor." -#: src/Common/LinuxKernel.vala:1110 +#: src/Common/LinuxKernel.vala:1109 msgid "Installation completed with errors" msgstr "Kurulum hatalarla tamamlandı" -#: src/Common/LinuxKernel.vala:1125 +#: src/Common/LinuxKernel.vala:1124 msgid "" "Selected kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -119,19 +119,19 @@ msgstr "" "Seçilen çekirdek şu anda çalışıyor ve kaldırılamıyor.\n" " Bunu kaldırmadan önce başka bir çekirdek yükleyin." -#: src/Common/LinuxKernel.vala:1130 +#: src/Common/LinuxKernel.vala:1129 msgid "Preparing to remove selected kernels" msgstr "Seçilen çekirdekleri kaldırmak için hazırlanıyor" -#: src/Common/LinuxKernel.vala:1161 src/Common/LinuxKernel.vala:1208 +#: src/Common/LinuxKernel.vala:1160 src/Common/LinuxKernel.vala:1207 msgid "Un-install completed" msgstr "Kaldırma tamamlandı" -#: src/Common/LinuxKernel.vala:1164 src/Common/LinuxKernel.vala:1211 +#: src/Common/LinuxKernel.vala:1163 src/Common/LinuxKernel.vala:1210 msgid "Un-install completed with errors" msgstr "Kaldırma hatalarla tamamlandı" -#: src/Common/LinuxKernel.vala:1177 +#: src/Common/LinuxKernel.vala:1176 msgid "" "This kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -139,11 +139,11 @@ msgstr "" "Bu çekirdek şu anda çalışıyor ve bu sebeple kaldırılamaz.\n" "Bunu kaldırmadan önce başka bir çekirdek yükleyin." -#: src/Common/Main.vala:243 +#: src/Common/Main.vala:241 msgid "Called from" msgstr "" -#: src/Common/Main.vala:277 +#: src/Common/Main.vala:275 #, fuzzy msgid "Notifications are disabled" msgstr "Bildirim" diff --git a/po/uk.po b/po/uk.po index df79f887..fb20f3a9 100644 --- a/po/uk.po +++ b/po/uk.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-12-18 14:46-0500\n" +"POT-Creation-Date: 2020-12-21 05:01-0500\n" "PO-Revision-Date: 2019-07-25 11:00+0300\n" "Last-Translator: Serhii Golovko \n" "Language-Team: Ukranian \n" @@ -13,105 +13,105 @@ msgstr "" "X-Launchpad-Export-Date: 2016-12-13 11:48+0000\n" "X-Generator: Poedit 2.2.1\n" -#: src/Common/LinuxKernel.vala:89 +#: src/Common/LinuxKernel.vala:88 msgid "Distribution" msgstr "Дистрибутив" -#: src/Common/LinuxKernel.vala:103 +#: src/Common/LinuxKernel.vala:102 msgid "Architecture" msgstr "Системна архитектура" -#: src/Common/LinuxKernel.vala:302 +#: src/Common/LinuxKernel.vala:301 msgid "Fetching index..." msgstr "Отримання індекса ..." -#: src/Common/LinuxKernel.vala:339 +#: src/Common/LinuxKernel.vala:338 msgid "Fetching index from kernel.ubuntu.com..." msgstr "Отримання індекса з kernel.ubuntu.com..." -#: src/Common/LinuxKernel.vala:595 +#: src/Common/LinuxKernel.vala:594 msgid "Could not find running kernel in list!" msgstr "Не вдалося знайти запущене ядро у списку!" -#: src/Common/LinuxKernel.vala:601 +#: src/Common/LinuxKernel.vala:600 msgid "Could not find any kernels to remove" msgstr "Не вдалося знайти жодне ядро для вилучення" -#: src/Common/LinuxKernel.vala:610 +#: src/Common/LinuxKernel.vala:609 msgid "The following kernels will be removed:" msgstr "Наступні ядра будуть видалені:" -#: src/Common/LinuxKernel.vala:617 +#: src/Common/LinuxKernel.vala:616 msgid "Continue ?" msgstr "Продовжувати ?" -#: src/Common/LinuxKernel.vala:643 src/Console/AppConsole.vala:304 +#: src/Common/LinuxKernel.vala:642 src/Console/AppConsole.vala:304 msgid "Latest update" msgstr "Останнє оновлення" -#: src/Common/LinuxKernel.vala:654 src/Console/AppConsole.vala:311 +#: src/Common/LinuxKernel.vala:653 src/Console/AppConsole.vala:311 msgid "Latest point update" msgstr "Остання точка оновлення" -#: src/Common/LinuxKernel.vala:662 src/Console/AppConsole.vala:316 +#: src/Common/LinuxKernel.vala:661 src/Console/AppConsole.vala:316 #: src/Console/AppConsole.vala:377 msgid "No updates found" msgstr "Оновлень не знайдено" -#: src/Common/LinuxKernel.vala:672 +#: src/Common/LinuxKernel.vala:671 #, fuzzy, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Встановити Linux v% s? (так/ні): " -#: src/Common/LinuxKernel.vala:910 +#: src/Common/LinuxKernel.vala:909 msgid "Packages Available" msgstr "Доступні пакети" -#: src/Common/LinuxKernel.vala:918 +#: src/Common/LinuxKernel.vala:917 msgid "Packages Installed" msgstr "Встановлені пакети" -#: src/Common/LinuxKernel.vala:999 +#: src/Common/LinuxKernel.vala:998 msgid "Available Kernels" msgstr "Доступні ядра" -#: src/Common/LinuxKernel.vala:1006 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1005 src/Gtk/MainWindow.vala:186 msgid "Installed" msgstr "Встановлено" -#: src/Common/LinuxKernel.vala:1006 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1005 src/Gtk/MainWindow.vala:186 #: src/Gtk/MainWindow.vala:628 src/Gtk/MainWindow.vala:642 msgid "Running" msgstr "Використовується" -#: src/Common/LinuxKernel.vala:1043 +#: src/Common/LinuxKernel.vala:1042 msgid "Downloading" msgstr "Завантаження" -#: src/Common/LinuxKernel.vala:1062 +#: src/Common/LinuxKernel.vala:1061 #: src/Utility/Gtk/CustomMessageDialog.vala:148 #: src/Utility/Gtk/CustomMessageDialog.vala:152 msgid "OK" msgstr "Добре" -#: src/Common/LinuxKernel.vala:1067 +#: src/Common/LinuxKernel.vala:1066 msgid "ERROR" msgstr "ПОМИЛКА" -#: src/Common/LinuxKernel.vala:1081 src/Gtk/MainWindow.vala:650 +#: src/Common/LinuxKernel.vala:1080 src/Gtk/MainWindow.vala:650 msgid "This kernel is already installed." msgstr "Це ядро вже встановлено." -#: src/Common/LinuxKernel.vala:1107 +#: src/Common/LinuxKernel.vala:1106 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "Установка завершена. Для використання нового ядра потрібна перезавантаження." -#: src/Common/LinuxKernel.vala:1110 +#: src/Common/LinuxKernel.vala:1109 msgid "Installation completed with errors" msgstr "Установка завершена з помилками" -#: src/Common/LinuxKernel.vala:1125 +#: src/Common/LinuxKernel.vala:1124 msgid "" "Selected kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -119,19 +119,19 @@ msgstr "" "Це ядро зараз працює і не може бути видалено. \n" "Встановіть інше ядро, перш ніж видаляти його." -#: src/Common/LinuxKernel.vala:1130 +#: src/Common/LinuxKernel.vala:1129 msgid "Preparing to remove selected kernels" msgstr "Підготовка до видалення вибраних ядер" -#: src/Common/LinuxKernel.vala:1161 src/Common/LinuxKernel.vala:1208 +#: src/Common/LinuxKernel.vala:1160 src/Common/LinuxKernel.vala:1207 msgid "Un-install completed" msgstr "Видалення завершено" -#: src/Common/LinuxKernel.vala:1164 src/Common/LinuxKernel.vala:1211 +#: src/Common/LinuxKernel.vala:1163 src/Common/LinuxKernel.vala:1210 msgid "Un-install completed with errors" msgstr "Видалення завершено з помилками" -#: src/Common/LinuxKernel.vala:1177 +#: src/Common/LinuxKernel.vala:1176 msgid "" "This kernel is currently running and cannot be removed.\n" " Install another kernel before removing this one." @@ -139,11 +139,11 @@ msgstr "" "Це ядро наразі працює і його неможливо видалити.\n" " Встановіть інше ядро перед тим, як видалити его." -#: src/Common/Main.vala:243 +#: src/Common/Main.vala:241 msgid "Called from" msgstr "Викликано з" -#: src/Common/Main.vala:277 +#: src/Common/Main.vala:275 #, fuzzy msgid "Notifications are disabled" msgstr "Повідомлення вимкнено" diff --git a/src/Common/LinuxKernel.vala b/src/Common/LinuxKernel.vala index 31eb61b3..4adf29e0 100644 --- a/src/Common/LinuxKernel.vala +++ b/src/Common/LinuxKernel.vala @@ -43,8 +43,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { public static string RUNNING_KERNEL; public static string CURRENT_USER; public static string CURRENT_USER_HOME; - public static int VERSION_INT; - + public static LinuxKernel kernel_active; public static LinuxKernel kernel_update_major; public static LinuxKernel kernel_update_minor; @@ -814,7 +813,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { public void mark_invalid(){ string f = cache_subdir+"/invalid"; if (!file_exists(f)){ - file_write(f, VERSION_INT.to_string()); + file_write(f, ""); } } @@ -841,7 +840,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { public bool is_valid { get { string invalid_file_path = "%s/invalid".printf(cache_subdir); - return !file_exists(invalid_file_path) || int.parse(file_read(invalid_file_path)) <= 1; + return !file_exists(invalid_file_path); } } diff --git a/src/Common/Main.vala b/src/Common/Main.vala index 5a7a12ed..e5c15b96 100644 --- a/src/Common/Main.vala +++ b/src/Common/Main.vala @@ -35,7 +35,6 @@ using TeeJee.Misc; [CCode(cname="BRANDING_SHORTNAME")] extern const string BRANDING_SHORTNAME; [CCode(cname="BRANDING_LONGNAME")] extern const string BRANDING_LONGNAME; [CCode(cname="BRANDING_VERSION")] extern const string BRANDING_VERSION; -[CCode(cname="BRANDING_VERSION_INT")] extern const string BRANDING_VERSION_INT; [CCode(cname="BRANDING_AUTHORNAME")] extern const string BRANDING_AUTHORNAME; [CCode(cname="BRANDING_AUTHOREMAIL")] extern const string BRANDING_AUTHOREMAIL; [CCode(cname="BRANDING_WEBSITE")] extern const string BRANDING_WEBSITE; @@ -127,7 +126,6 @@ public class Main : GLib.Object{ LinuxKernel.CACHE_DIR = user_home + "/.cache/" + BRANDING_SHORTNAME; LinuxKernel.CURRENT_USER = user_login; LinuxKernel.CURRENT_USER_HOME = user_home; - LinuxKernel.VERSION_INT = int.parse(BRANDING_VERSION_INT); // todo: consider get_user_runtime_dir() or get_user_cache_dir() TMP_PREFIX = Environment.get_tmp_dir() + "/." + BRANDING_SHORTNAME; diff --git a/src/Utility/TeeJee.Json.vala b/src/Utility/TeeJee.JsonHelper.vala similarity index 100% rename from src/Utility/TeeJee.Json.vala rename to src/Utility/TeeJee.JsonHelper.vala diff --git a/src/Utility/TeeJee.Process.vala b/src/Utility/TeeJee.ProcessHelper.vala similarity index 100% rename from src/Utility/TeeJee.Process.vala rename to src/Utility/TeeJee.ProcessHelper.vala From ce66bbea63c80b4c28b40591ba5b0b7d4e15e9e9 Mon Sep 17 00:00:00 2001 From: muzena Date: Wed, 7 Apr 2021 17:58:53 +0200 Subject: [PATCH 135/567] Update Croatian language --- po/hr.po | 132 +++++++++++++++++++++++-------------------------------- 1 file changed, 56 insertions(+), 76 deletions(-) diff --git a/po/hr.po b/po/hr.po index a2c5d432..4c3edc34 100644 --- a/po/hr.po +++ b/po/hr.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2020-12-21 05:01-0500\n" -"PO-Revision-Date: 2017-12-24 00:52+0100\n" +"PO-Revision-Date: 2021-04-07 17:58+0200\n" "Last-Translator: gogo \n" "Language-Team: Croatian \n" "Language: hr\n" @@ -11,50 +11,47 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2017-12-23 23:36+0000\n" -"X-Generator: Poedit 1.8.7.1\n" +"X-Generator: Poedit 2.3\n" #: src/Common/LinuxKernel.vala:88 msgid "Distribution" msgstr "Distribucija" #: src/Common/LinuxKernel.vala:102 -#, fuzzy msgid "Architecture" -msgstr "Arhitektura sustava" +msgstr "Arhitektura" #: src/Common/LinuxKernel.vala:301 msgid "Fetching index..." -msgstr "" +msgstr "Preuzimanje sadržaja..." #: src/Common/LinuxKernel.vala:338 msgid "Fetching index from kernel.ubuntu.com..." msgstr "Preuzimanje sadržaja sa kernel.ubuntu.com..." #: src/Common/LinuxKernel.vala:594 -#, fuzzy msgid "Could not find running kernel in list!" -msgstr "Nemoguće je pronaći zatraženu inačicu" +msgstr "Nemoguće je pronaći pokrenuti kernel na popisu!" #: src/Common/LinuxKernel.vala:600 -#, fuzzy msgid "Could not find any kernels to remove" -msgstr "Odaberi kernele za uklanjanje" +msgstr "Nema pronađenih kernela za uklanjanje" #: src/Common/LinuxKernel.vala:609 msgid "The following kernels will be removed:" -msgstr "" +msgstr "Sljedeći kerneli će biti uklonjeni:" #: src/Common/LinuxKernel.vala:616 msgid "Continue ?" -msgstr "" +msgstr "Nastavi?" #: src/Common/LinuxKernel.vala:642 src/Console/AppConsole.vala:304 msgid "Latest update" -msgstr "" +msgstr "Najnovija nadopuna" #: src/Common/LinuxKernel.vala:653 src/Console/AppConsole.vala:311 msgid "Latest point update" -msgstr "" +msgstr "Najnovija ciljana nadopuna" #: src/Common/LinuxKernel.vala:661 src/Console/AppConsole.vala:316 #: src/Console/AppConsole.vala:377 @@ -64,7 +61,7 @@ msgstr "Nema pronađenih nadopuna" #: src/Common/LinuxKernel.vala:671 #, c-format msgid "Install Kernel Version %s ? (y/n): " -msgstr "" +msgstr "Instaliraj kernel inačice %s ? (d/n): " #: src/Common/LinuxKernel.vala:909 msgid "Packages Available" @@ -145,12 +142,11 @@ msgstr "" #: src/Common/Main.vala:241 msgid "Called from" -msgstr "" +msgstr "Pozvano od" #: src/Common/Main.vala:275 -#, fuzzy msgid "Notifications are disabled" -msgstr "Obavijesti" +msgstr "Obavijesti su onemogućene" #: src/Common/Package.vala:134 src/Common/Package.vala:198 #, c-format @@ -163,61 +159,55 @@ msgstr "Sintaksa" #: src/Console/AppConsole.vala:64 msgid "Commands" -msgstr "" +msgstr "Naredbe" #: src/Console/AppConsole.vala:66 msgid "Check for kernel updates" msgstr "Provjeri nadopune kernela" #: src/Console/AppConsole.vala:67 -#, fuzzy msgid "Check for kernel updates and notify current user" -msgstr "Provjeri nadopune kernela" +msgstr "Provjeri nadopune kernela i obavijesti trenutnog korisnika" #: src/Console/AppConsole.vala:68 msgid "List all available mainline kernels" msgstr "Prikaži sve mainline kernele" #: src/Console/AppConsole.vala:69 -#, fuzzy msgid "List installed kernels" -msgstr "Prikaži sve kernele" +msgstr "Prikaži instalirane kernele" #: src/Console/AppConsole.vala:70 -#, fuzzy msgid "Install latest mainline kernel" -msgstr "Instaliraj određeni mainline kernel" +msgstr "Instaliraj najnoviji mainline kernel" #: src/Console/AppConsole.vala:71 msgid "Install latest point update for current series" -msgstr "" +msgstr "Instaliraj najnoviju ciljanu nadopunu za trenutnu seriju" #: src/Console/AppConsole.vala:72 msgid "Install specified mainline kernel" msgstr "Instaliraj određeni mainline kernel" #: src/Console/AppConsole.vala:73 -#, fuzzy msgid "Uninstall specified kernels" -msgstr "Instaliraj određeni mainline kernel" +msgstr "Ukloni određene kernele" #: src/Console/AppConsole.vala:74 src/Gtk/MainWindow.vala:392 msgid "Remove installed kernels older than running kernel" -msgstr "" +msgstr "Ukloni instalirane kernele starije od pokrenutog krenela" #: src/Console/AppConsole.vala:75 -#, fuzzy msgid "Download specified kernels" -msgstr "Preuzmi pakete za određeni kernel" +msgstr "Preuzmi određene kernele" #: src/Console/AppConsole.vala:76 msgid "Remove files from application cache" msgstr "Ukloni datoteke iz predmemorije aplikacije" #: src/Console/AppConsole.vala:77 -#, fuzzy msgid "Show unstable and RC releases" -msgstr "Sakrij nestabilne kernele i predizdanja" +msgstr "Prikaži nestabilna izdanja i predizdanja" #: src/Console/AppConsole.vala:79 src/Gtk/AppGtk.vala:151 msgid "Options" @@ -225,24 +215,25 @@ msgstr "Mogućnosti" #: src/Console/AppConsole.vala:81 msgid "Enable verbose debugging output" -msgstr "" +msgstr "Omogući opširnije zapisivanje" #: src/Console/AppConsole.vala:82 msgid "Assume Yes for all prompts (non-interactive mode)" -msgstr "" +msgstr "Pretpostavi Da za sve upite (neinteraktivan način rada)" #: src/Console/AppConsole.vala:83 msgid "Override user" -msgstr "" +msgstr "Zaobiđi korisnika" #: src/Console/AppConsole.vala:86 msgid "A version string taken from the output of --list" -msgstr "" +msgstr "Izraz inačice uzet iz zapisa --list" #: src/Console/AppConsole.vala:87 msgid "" "One or more version strings (comma-separated) taken from the output of --list" msgstr "" +"Jedan ili više izraza inačice (zarezom odvojeni) uzetih iz zapisa --list" #: src/Console/AppConsole.vala:162 src/Gtk/AppGtk.vala:136 msgid "Unknown option" @@ -250,18 +241,16 @@ msgstr "Nepoznata mogućnost" #: src/Console/AppConsole.vala:164 src/Console/AppConsole.vala:256 #: src/Console/AppConsole.vala:284 -#, fuzzy msgid "Run" -msgstr "Pokrenuto" +msgstr "Pokreni" #: src/Console/AppConsole.vala:164 -#, fuzzy msgid "to list all options" -msgstr "Prikaži sve mogućnosti" +msgstr "za prikaz svih mogućnosti" #: src/Console/AppConsole.vala:229 src/Console/AppConsole.vala:264 msgid "No kernels specified" -msgstr "" +msgstr "Nema određenih kernela" #: src/Console/AppConsole.vala:235 msgid "Multiple kernels selected for installation. Select only one." @@ -273,25 +262,24 @@ msgstr "Nemoguće je pronaći zatraženu inačicu" #: src/Console/AppConsole.vala:256 msgid "and use a version string listed in first column" -msgstr "" +msgstr "i koristite izraz inačice prikazan u prvom stupcu" #: src/Console/AppConsole.vala:283 msgid "Command not specified" -msgstr "" +msgstr "Naredba nije navedena" #: src/Console/AppConsole.vala:284 -#, fuzzy msgid "to list all commands" -msgstr "Prikaži sve mogućnosti" +msgstr "za prikaz svih mogućnosti" #: src/Console/AppConsole.vala:350 msgid "Show" -msgstr "" +msgstr "Prikaži" #: src/Console/AppConsole.vala:355 src/Console/AppConsole.vala:367 -#, fuzzy, c-format +#, c-format msgid "Kernel %s Available" -msgstr "Dostupni paketi" +msgstr "Kernel %s je dostupan" #: src/Console/AppConsole.vala:357 src/Console/AppConsole.vala:369 #: src/Gtk/MainWindow.vala:330 @@ -354,11 +342,11 @@ msgstr "Odaberi kernele za uklanjanje" #: src/Gtk/MainWindow.vala:383 src/Gtk/MainWindow.vala:417 #: src/Gtk/MainWindow.vala:687 msgid "Close window to exit..." -msgstr "" +msgstr "Zatvori prozor i izađi..." #: src/Gtk/MainWindow.vala:391 msgid "Purge" -msgstr "" +msgstr "Potpuno ukloni" #: src/Gtk/MainWindow.vala:424 msgid "Changes" @@ -378,30 +366,27 @@ msgstr "Alat za nadogradnju kernela Ubuntu temeljenih distribucija" #: src/Gtk/MainWindow.vala:504 msgid "Forked" -msgstr "" +msgstr "Forkano" #: src/Gtk/MainWindow.vala:504 msgid "Original" -msgstr "" +msgstr "Izvornik" #: src/Gtk/MainWindow.vala:525 src/Gtk/MainWindow.vala:655 -#, fuzzy msgid "Internet connection is not active." -msgstr "Internet povezivanje nije aktivno" +msgstr "Internet povezivanje nije aktivno." #: src/Gtk/MainWindow.vala:544 msgid "Refreshing..." msgstr "Osvježavanje..." #: src/Gtk/MainWindow.vala:638 -#, fuzzy msgid "available" -msgstr "Dostupni paketi" +msgstr "dostupno" #: src/Gtk/MainWindow.vala:650 -#, fuzzy msgid "Already Installed" -msgstr "Instalirano" +msgstr "Već instalirano" #: src/Gtk/ProgressWindow.vala:144 src/Gtk/TerminalWindow.vala:149 #: src/Utility/Gtk/CustomMessageDialog.vala:153 @@ -422,7 +407,7 @@ msgstr "Obavijesti kada je pojedino izdanje dostupno" #: src/Gtk/SettingsDialog.vala:89 msgid "(Allowing intervals in seconds for --debug)" -msgstr "" +msgstr "(Dopuštena razdoblja u sekundama za --debug)" #: src/Gtk/SettingsDialog.vala:112 msgid "Check every" @@ -442,7 +427,7 @@ msgstr "Tjedan(a)" #: src/Gtk/SettingsDialog.vala:149 msgid "Second(s)" -msgstr "" +msgstr "Sekund(e)" #: src/Gtk/SettingsDialog.vala:155 msgid "Display" @@ -454,29 +439,27 @@ msgstr "Sakrij nestabilne kernele i predizdanja" #: src/Gtk/SettingsDialog.vala:177 msgid "Show N previous major versions " -msgstr "" +msgstr "Prikaži N prijašnjih glavnih izdanja " #: src/Gtk/SettingsDialog.vala:192 msgid "Other" -msgstr "" +msgstr "Ostalo" #: src/Gtk/SettingsDialog.vala:200 -#, fuzzy msgid "Skip internet connection check" -msgstr "Internet povezivanje nije aktivno" +msgstr "Preskoči provjeru internet povezivosti" #: src/Gtk/SettingsDialog.vala:213 -#, fuzzy msgid "Internet connection timeout in " -msgstr "Internet povezivanje nije aktivno" +msgstr "Istek internet povezivanja za " #: src/Gtk/SettingsDialog.vala:228 msgid "seconds" -msgstr "" +msgstr "sekunde" #: src/Gtk/SettingsDialog.vala:235 msgid "Max concurrent downloads" -msgstr "" +msgstr "Najviše istodobnih preuzimanja" #: src/Gtk/TerminalWindow.vala:159 src/Utility/Gtk/AboutWindow.vala:294 msgid "Close" @@ -511,9 +494,8 @@ msgid "Documenters" msgstr "Autori dokumentacije" #: src/Utility/Gtk/AboutWindow.vala:353 -#, fuzzy msgid "Third Party Inclusions" -msgstr "Alati treće strane" +msgstr "Uklučene treće strane" #: src/Utility/Gtk/CustomMessageDialog.vala:157 msgid "Yes" @@ -528,14 +510,12 @@ msgid "Missing Icon" msgstr "Ikone koje nedostaju" #: src/Utility/TeeJee.FileSystem.vala:71 -#, fuzzy msgid "File deleted" -msgstr "Datoteka je spremljenja" +msgstr "Datoteka je obrisana" #: src/Utility/TeeJee.FileSystem.vala:76 src/Utility/TeeJee.FileSystem.vala:256 -#, fuzzy msgid "Failed to delete file" -msgstr "Neuspjelo zapisivanje datoteke" +msgstr "Neuspjelo brisanje datoteke" #: src/Utility/TeeJee.FileSystem.vala:96 msgid "Failed to read file" @@ -580,7 +560,7 @@ msgstr "Neuspjelo stvarnje direktorija" #: src/Utility/TeeJee.FileSystem.vala:255 msgid "Deleted" -msgstr "" +msgstr "Obrisano" #: src/Utility/TeeJee.Logging.vala:59 msgid "E" @@ -588,4 +568,4 @@ msgstr "G" #: src/Utility/TeeJee.Logging.vala:84 msgid "D" -msgstr "" +msgstr "D" From 712e3f84b513755625139a07903bf7a32ec58736 Mon Sep 17 00:00:00 2001 From: gogogogi Date: Wed, 7 Apr 2021 18:02:49 +0200 Subject: [PATCH 136/567] Update hr.po --- po/hr.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/hr.po b/po/hr.po index 4c3edc34..117f5415 100644 --- a/po/hr.po +++ b/po/hr.po @@ -495,7 +495,7 @@ msgstr "Autori dokumentacije" #: src/Utility/Gtk/AboutWindow.vala:353 msgid "Third Party Inclusions" -msgstr "Uklučene treće strane" +msgstr "Uključene treće strane" #: src/Utility/Gtk/CustomMessageDialog.vala:157 msgid "Yes" From 9596908c023ddecef8dd37f8ad4404732fb7ba78 Mon Sep 17 00:00:00 2001 From: Kevin Kim Date: Tue, 1 Jun 2021 15:32:27 +0900 Subject: [PATCH 137/567] Add Korean translation --- TRANSLATORS | 1 + po/ko.po | 573 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 574 insertions(+) create mode 100644 po/ko.po diff --git a/TRANSLATORS b/TRANSLATORS index 3e48f18b..3716ec61 100644 --- a/TRANSLATORS +++ b/TRANSLATORS @@ -2,6 +2,7 @@ es: Adolfo Jayme Barrientos fr: Yolateng0 hr: gogo it: Albano Battistella +ko: Kevin Kim nl: Heimen Stoffels pl: Waldemar Konik ru: Faust3000 diff --git a/po/ko.po b/po/ko.po new file mode 100644 index 00000000..3145b5fa --- /dev/null +++ b/po/ko.po @@ -0,0 +1,573 @@ +# Korean translations for mainline package. +# Copyright (C) 2021 THE mainline'S COPYRIGHT HOLDER +# This file is distributed under the same license as the mainline package. +# Kevin Kim , 2021. +# +msgid "" +msgstr "" +"Project-Id-Version: mainline 1.0.14\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-12-21 05:01-0500\n" +"PO-Revision-Date: 2021-06-01 14:57+0900\n" +"Last-Translator: Kevin Kim \n" +"Language-Team: Korean\n" +"Language: ko\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: Poedit 2.3\n" + +#: src/Common/LinuxKernel.vala:88 +msgid "Distribution" +msgstr "배포판" + +#: src/Common/LinuxKernel.vala:102 +msgid "Architecture" +msgstr "아키텍처" + +#: src/Common/LinuxKernel.vala:301 +msgid "Fetching index..." +msgstr "목록 가져오기..." + +#: src/Common/LinuxKernel.vala:338 +msgid "Fetching index from kernel.ubuntu.com..." +msgstr "kernel.ubuntu.com 에서 목록을 가져오는 중입니다..." + +#: src/Common/LinuxKernel.vala:594 +msgid "Could not find running kernel in list!" +msgstr "목록에서 사용중인 커널을 찾을 수 없습니다!" + +#: src/Common/LinuxKernel.vala:600 +msgid "Could not find any kernels to remove" +msgstr "삭제할 커널을 찾을 수 없습니다" + +#: src/Common/LinuxKernel.vala:609 +msgid "The following kernels will be removed:" +msgstr "아래 커널이 삭제됩니다:" + +#: src/Common/LinuxKernel.vala:616 +msgid "Continue ?" +msgstr "계속하시겠습니까?" + +#: src/Common/LinuxKernel.vala:642 src/Console/AppConsole.vala:304 +msgid "Latest update" +msgstr "최신 업데이트" + +#: src/Common/LinuxKernel.vala:653 src/Console/AppConsole.vala:311 +msgid "Latest point update" +msgstr "최신 포인트 업데이트" + +#: src/Common/LinuxKernel.vala:661 src/Console/AppConsole.vala:316 +#: src/Console/AppConsole.vala:377 +msgid "No updates found" +msgstr "업데이트를 찾을 수 없습니다" + +#: src/Common/LinuxKernel.vala:671 +#, c-format +msgid "Install Kernel Version %s ? (y/n): " +msgstr "커널 %s 버전을 설치하시겠습니까? (y/n): " + +#: src/Common/LinuxKernel.vala:909 +msgid "Packages Available" +msgstr "설치 가능한 패키지" + +#: src/Common/LinuxKernel.vala:917 +msgid "Packages Installed" +msgstr "설치된 패키지" + +#: src/Common/LinuxKernel.vala:998 +msgid "Available Kernels" +msgstr "설치 가능한 커널" + +#: src/Common/LinuxKernel.vala:1005 src/Gtk/MainWindow.vala:186 +msgid "Installed" +msgstr "설치 됨" + +#: src/Common/LinuxKernel.vala:1005 src/Gtk/MainWindow.vala:186 +#: src/Gtk/MainWindow.vala:628 src/Gtk/MainWindow.vala:642 +msgid "Running" +msgstr "구동 중" + +#: src/Common/LinuxKernel.vala:1042 +msgid "Downloading" +msgstr "다운로드 중" + +#: src/Common/LinuxKernel.vala:1061 +#: src/Utility/Gtk/CustomMessageDialog.vala:148 +#: src/Utility/Gtk/CustomMessageDialog.vala:152 +msgid "OK" +msgstr "확인" + +#: src/Common/LinuxKernel.vala:1066 +msgid "ERROR" +msgstr "오류" + +#: src/Common/LinuxKernel.vala:1080 src/Gtk/MainWindow.vala:650 +msgid "This kernel is already installed." +msgstr "이 커널은 이미 설치되었습니다." + +#: src/Common/LinuxKernel.vala:1106 +msgid "Installation completed. A reboot is required to use the new kernel." +msgstr "설치가 완료되었습닌다. 새 커널을 사용하려면 시스템을 재시작 하세요." + +#: src/Common/LinuxKernel.vala:1109 +msgid "Installation completed with errors" +msgstr "오류가 있으나 설치가 완료되었습니다" + +#: src/Common/LinuxKernel.vala:1124 +msgid "" +"Selected kernel is currently running and cannot be removed.\n" +" Install another kernel before removing this one." +msgstr "" +"선택된 커널은 현재 사용 중이므로 삭제할 수 없습니다.\n" +" 이 커널을 삭제하려면 다른 커널을 먼저 설치하세요." + +#: src/Common/LinuxKernel.vala:1129 +msgid "Preparing to remove selected kernels" +msgstr "선택한 커널을 삭제하기 위해 준비중입니다" + +#: src/Common/LinuxKernel.vala:1160 src/Common/LinuxKernel.vala:1207 +msgid "Un-install completed" +msgstr "삭제가 완료되었습니다" + +#: src/Common/LinuxKernel.vala:1163 src/Common/LinuxKernel.vala:1210 +msgid "Un-install completed with errors" +msgstr "오류가 있으나 삭제가 완료되었습니다" + +#: src/Common/LinuxKernel.vala:1176 +msgid "" +"This kernel is currently running and cannot be removed.\n" +" Install another kernel before removing this one." +msgstr "" +"이 커널은 현재 사용 중이므로 삭제할 수 없습니다.\n" +" 이 커널을 삭제하려면 다른 커널을 먼저 설치하세요." + +#: src/Common/Main.vala:241 +msgid "Called from" +msgstr "에서 호출" + +#: src/Common/Main.vala:275 +msgid "Notifications are disabled" +msgstr "알림이 비활성화 되었습니다" + +#: src/Common/Package.vala:134 src/Common/Package.vala:198 +#, c-format +msgid "File not found: %s" +msgstr "%s 파일을 찾을 수 없습니다" + +#: src/Console/AppConsole.vala:62 src/Gtk/AppGtk.vala:149 +msgid "Syntax" +msgstr "문법" + +#: src/Console/AppConsole.vala:64 +msgid "Commands" +msgstr "명령어" + +#: src/Console/AppConsole.vala:66 +msgid "Check for kernel updates" +msgstr "커널 업데이트 확인" + +#: src/Console/AppConsole.vala:67 +msgid "Check for kernel updates and notify current user" +msgstr "커널 업데이트를 확인하고 현재 사용자에게 알림" + +#: src/Console/AppConsole.vala:68 +msgid "List all available mainline kernels" +msgstr "사용 가능한 모든 메인라인 커널 보기" + +#: src/Console/AppConsole.vala:69 +msgid "List installed kernels" +msgstr "설치된 커널 보기" + +#: src/Console/AppConsole.vala:70 +msgid "Install latest mainline kernel" +msgstr "최신 메인라인 커널 설치" + +#: src/Console/AppConsole.vala:71 +msgid "Install latest point update for current series" +msgstr "현재 사용중인 배포판을 위한 최신 포인트 업데이트 설치" + +#: src/Console/AppConsole.vala:72 +msgid "Install specified mainline kernel" +msgstr "지정한 메인라인 커널 설치" + +#: src/Console/AppConsole.vala:73 +msgid "Uninstall specified kernels" +msgstr "지정한 커널 삭제" + +#: src/Console/AppConsole.vala:74 src/Gtk/MainWindow.vala:392 +msgid "Remove installed kernels older than running kernel" +msgstr "현재 사용중인 커널보다 이전 버전의 설치된 커널을 제거" + +#: src/Console/AppConsole.vala:75 +msgid "Download specified kernels" +msgstr "지정한 커널 다운로드" + +#: src/Console/AppConsole.vala:76 +msgid "Remove files from application cache" +msgstr "프로그램 캐시에서 파일 제거" + +#: src/Console/AppConsole.vala:77 +msgid "Show unstable and RC releases" +msgstr "RC, unstable 버전의 커널 보기" + +#: src/Console/AppConsole.vala:79 src/Gtk/AppGtk.vala:151 +msgid "Options" +msgstr "옵션" + +#: src/Console/AppConsole.vala:81 +msgid "Enable verbose debugging output" +msgstr "디버깅을 위한 진행 과정 보이기 활성화" + +#: src/Console/AppConsole.vala:82 +msgid "Assume Yes for all prompts (non-interactive mode)" +msgstr "모든 물음에 자동으로 \"예\"라고 가정 (비 대화형 모드)" + +#: src/Console/AppConsole.vala:83 +msgid "Override user" +msgstr "사용자 무시" + +#: src/Console/AppConsole.vala:86 +msgid "A version string taken from the output of --list" +msgstr "--list 의 출력에서 가져온 버전 문자열" + +#: src/Console/AppConsole.vala:87 +msgid "" +"One or more version strings (comma-separated) taken from the output of --list" +msgstr "--list 의 출력에서 가져온 하나 이상의 버전 문자열 (쉼표로 구분)" + +#: src/Console/AppConsole.vala:162 src/Gtk/AppGtk.vala:136 +msgid "Unknown option" +msgstr "알 수 없는 옵션" + +#: src/Console/AppConsole.vala:164 src/Console/AppConsole.vala:256 +#: src/Console/AppConsole.vala:284 +msgid "Run" +msgstr "실행" + +#: src/Console/AppConsole.vala:164 +msgid "to list all options" +msgstr "모든 옵션을 나열" + +#: src/Console/AppConsole.vala:229 src/Console/AppConsole.vala:264 +msgid "No kernels specified" +msgstr "지정한 커널이 없습니다" + +#: src/Console/AppConsole.vala:235 +msgid "Multiple kernels selected for installation. Select only one." +msgstr "설치할 커널이 여러개 선택되었습니다. 하나의 커널만 선택하세요." + +#: src/Console/AppConsole.vala:253 src/Gtk/MainWindow.vala:100 +msgid "Could not find requested version" +msgstr "요청한 버전을 찾을 수 없습니다" + +#: src/Console/AppConsole.vala:256 +msgid "and use a version string listed in first column" +msgstr "첫 번째 열에 나열된 버전 문자열을 사용" + +#: src/Console/AppConsole.vala:283 +msgid "Command not specified" +msgstr "지정한 명령어가 없습니다" + +#: src/Console/AppConsole.vala:284 +msgid "to list all commands" +msgstr "모든 명령어 나열" + +#: src/Console/AppConsole.vala:350 +msgid "Show" +msgstr "보이기" + +#: src/Console/AppConsole.vala:355 src/Console/AppConsole.vala:367 +#, c-format +msgid "Kernel %s Available" +msgstr "커널 %s 사용 가능" + +#: src/Console/AppConsole.vala:357 src/Console/AppConsole.vala:369 +#: src/Gtk/MainWindow.vala:330 +msgid "Install" +msgstr "설치" + +#: src/Gtk/AppGtk.vala:153 +msgid "Print debug information" +msgstr "디버그 정보 출력" + +#: src/Gtk/AppGtk.vala:154 +msgid "Show all options" +msgstr "모든 옵션 보기" + +#: src/Gtk/MainWindow.vala:146 +msgid "Kernel" +msgstr "커널" + +#: src/Gtk/MainWindow.vala:174 +msgid "Status" +msgstr "상태" + +#: src/Gtk/MainWindow.vala:314 +msgid "Refresh" +msgstr "새로고침" + +#: src/Gtk/MainWindow.vala:321 src/Utility/TeeJee.System.vala:42 +msgid "Internet connection is not active" +msgstr "인터넷 연결을 확인하세요" + +#: src/Gtk/MainWindow.vala:321 src/Gtk/MainWindow.vala:525 +#: src/Gtk/MainWindow.vala:655 +msgid "No Internet" +msgstr "인터넷이 연결되지 않았습니다" + +#: src/Gtk/MainWindow.vala:339 +msgid "Multiple Kernels Selected" +msgstr "다수의 커널이 선택되었습니다" + +#: src/Gtk/MainWindow.vala:339 +msgid "Select a single kernel to install" +msgstr "설치할 단일 커널 선택" + +#: src/Gtk/MainWindow.vala:342 src/Gtk/MainWindow.vala:353 +msgid "Not Selected" +msgstr "선택하지 않음" + +#: src/Gtk/MainWindow.vala:342 +msgid "Select the kernel to install" +msgstr "설치할 커널 선택" + +#: src/Gtk/MainWindow.vala:347 +msgid "Remove" +msgstr "삭제" + +#: src/Gtk/MainWindow.vala:353 +msgid "Select the kernels to remove" +msgstr "삭제할 커널 선택" + +#: src/Gtk/MainWindow.vala:383 src/Gtk/MainWindow.vala:417 +#: src/Gtk/MainWindow.vala:687 +msgid "Close window to exit..." +msgstr "창을 닫고 종료..." + +#: src/Gtk/MainWindow.vala:391 +msgid "Purge" +msgstr "제거(Purge)" + +#: src/Gtk/MainWindow.vala:424 +msgid "Changes" +msgstr "변경사항" + +#: src/Gtk/MainWindow.vala:435 src/Gtk/SettingsDialog.vala:50 +msgid "Settings" +msgstr "설정" + +#: src/Gtk/MainWindow.vala:458 +msgid "About" +msgstr "정보" + +#: src/Gtk/MainWindow.vala:503 +msgid "Kernel upgrade utility for Ubuntu-based distributions" +msgstr "우분투 기반 배포판의 커널 업그레이드 도구" + +#: src/Gtk/MainWindow.vala:504 +msgid "Forked" +msgstr "" + +#: src/Gtk/MainWindow.vala:504 +msgid "Original" +msgstr "" + +#: src/Gtk/MainWindow.vala:525 src/Gtk/MainWindow.vala:655 +msgid "Internet connection is not active." +msgstr "인터넷 연결을 확인하세요" + +#: src/Gtk/MainWindow.vala:544 +msgid "Refreshing..." +msgstr "새로 고침..." + +#: src/Gtk/MainWindow.vala:638 +msgid "available" +msgstr "사용가능" + +#: src/Gtk/MainWindow.vala:650 +msgid "Already Installed" +msgstr "이미 설치되었습니다" + +#: src/Gtk/ProgressWindow.vala:144 src/Gtk/TerminalWindow.vala:149 +#: src/Utility/Gtk/CustomMessageDialog.vala:153 +msgid "Cancel" +msgstr "취소" + +#: src/Gtk/SettingsDialog.vala:60 +msgid "Notification" +msgstr "알림" + +#: src/Gtk/SettingsDialog.vala:67 +msgid "Notify if a major release is available" +msgstr "메이저 릴리즈가 있으면 알림" + +#: src/Gtk/SettingsDialog.vala:78 +msgid "Notify if a point release is available" +msgstr "포인트 릴리즈가 있으면 알림" + +#: src/Gtk/SettingsDialog.vala:89 +msgid "(Allowing intervals in seconds for --debug)" +msgstr "(--debug 를 위한 몇초간 지연 허용)" + +#: src/Gtk/SettingsDialog.vala:112 +msgid "Check every" +msgstr "확인 주기" + +#: src/Gtk/SettingsDialog.vala:142 +msgid "Hour(s)" +msgstr "시간" + +#: src/Gtk/SettingsDialog.vala:144 +msgid "Day(s)" +msgstr "일" + +#: src/Gtk/SettingsDialog.vala:146 +msgid "Week(s)" +msgstr "주" + +#: src/Gtk/SettingsDialog.vala:149 +msgid "Second(s)" +msgstr "초" + +#: src/Gtk/SettingsDialog.vala:155 +msgid "Display" +msgstr "보이기" + +#: src/Gtk/SettingsDialog.vala:163 +msgid "Hide unstable and RC releases" +msgstr "unstable, RC 릴리즈 숨김" + +#: src/Gtk/SettingsDialog.vala:177 +msgid "Show N previous major versions " +msgstr "보여질 이전 메이저 버전 수" + +#: src/Gtk/SettingsDialog.vala:192 +msgid "Other" +msgstr "기타" + +#: src/Gtk/SettingsDialog.vala:200 +msgid "Skip internet connection check" +msgstr "인터넷 연결 확인 하지 않기" + +#: src/Gtk/SettingsDialog.vala:213 +msgid "Internet connection timeout in " +msgstr "인터넷 연결 타임아웃 시간 " + +#: src/Gtk/SettingsDialog.vala:228 +msgid "seconds" +msgstr "초" + +#: src/Gtk/SettingsDialog.vala:235 +msgid "Max concurrent downloads" +msgstr "동시 다운로드 최대 수" + +#: src/Gtk/TerminalWindow.vala:159 src/Utility/Gtk/AboutWindow.vala:294 +msgid "Close" +msgstr "닫기" + +#: src/Utility/Gtk/AboutWindow.vala:271 src/Utility/Gtk/AboutWindow.vala:288 +msgid "Credits" +msgstr "" + +#: src/Utility/Gtk/AboutWindow.vala:284 +msgid "Back" +msgstr "뒤로" + +#: src/Utility/Gtk/AboutWindow.vala:313 +msgid "Authors" +msgstr "개발자" + +#: src/Utility/Gtk/AboutWindow.vala:321 +msgid "Contributions" +msgstr "기여자" + +#: src/Utility/Gtk/AboutWindow.vala:329 +msgid "Artists" +msgstr "아티스트" + +#: src/Utility/Gtk/AboutWindow.vala:337 +msgid "Translators" +msgstr "번역자" + +#: src/Utility/Gtk/AboutWindow.vala:345 +msgid "Documenters" +msgstr "문서작성" + +#: src/Utility/Gtk/AboutWindow.vala:353 +msgid "Third Party Inclusions" +msgstr "" + +#: src/Utility/Gtk/CustomMessageDialog.vala:157 +msgid "Yes" +msgstr "예" + +#: src/Utility/Gtk/CustomMessageDialog.vala:158 +msgid "No" +msgstr "아니오" + +#: src/Utility/Gtk/GtkHelper.vala:67 +msgid "Missing Icon" +msgstr "아이콘을 찾을 수 없습니다" + +#: src/Utility/TeeJee.FileSystem.vala:71 +msgid "File deleted" +msgstr "파일이 삭제되었습니다" + +#: src/Utility/TeeJee.FileSystem.vala:76 src/Utility/TeeJee.FileSystem.vala:256 +msgid "Failed to delete file" +msgstr "파일 삭제를 실패했습니다" + +#: src/Utility/TeeJee.FileSystem.vala:96 +msgid "Failed to read file" +msgstr "파일 읽기를 실패했습니다" + +#: src/Utility/TeeJee.FileSystem.vala:123 +msgid "File saved" +msgstr "파일을 저장했습니다" + +#: src/Utility/TeeJee.FileSystem.vala:129 +msgid "Failed to write file" +msgstr "파일 쓰기를 실패했습니다" + +#: src/Utility/TeeJee.FileSystem.vala:141 +msgid "File copied" +msgstr "파일을 복사했습니다" + +#: src/Utility/TeeJee.FileSystem.vala:148 +msgid "Failed to copy file" +msgstr "파일 복사를 실패했습니다" + +#: src/Utility/TeeJee.FileSystem.vala:158 +msgid "File not found" +msgstr "파일을 찾을 수 없습니다" + +#: src/Utility/TeeJee.FileSystem.vala:171 +msgid "File moved" +msgstr "파일이 이동되었습니다" + +#: src/Utility/TeeJee.FileSystem.vala:176 +msgid "Failed to move file" +msgstr "파일 이동을 실패했습니다" + +#: src/Utility/TeeJee.FileSystem.vala:233 +#: src/Utility/TeeJee.FileSystem.vala:236 +msgid "Created directory" +msgstr "폴더를 생성했습니다" + +#: src/Utility/TeeJee.FileSystem.vala:243 +msgid "Failed to create dir" +msgstr "폴더 생성을 실패했습니다" + +#: src/Utility/TeeJee.FileSystem.vala:255 +msgid "Deleted" +msgstr "삭제되었습니다" + +#: src/Utility/TeeJee.Logging.vala:59 +msgid "E" +msgstr "" + +#: src/Utility/TeeJee.Logging.vala:84 +msgid "D" +msgstr "" From 938981a201cff93553d19dcebfa494b7d32d2899 Mon Sep 17 00:00:00 2001 From: Kevin Kim Date: Wed, 2 Jun 2021 14:41:07 +0900 Subject: [PATCH 138/567] Update po/ko.po --- po/ko.po | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/po/ko.po b/po/ko.po index 3145b5fa..fce1de47 100644 --- a/po/ko.po +++ b/po/ko.po @@ -335,11 +335,11 @@ msgstr "설치할 커널 선택" #: src/Gtk/MainWindow.vala:347 msgid "Remove" -msgstr "삭제" +msgstr "제거" #: src/Gtk/MainWindow.vala:353 msgid "Select the kernels to remove" -msgstr "삭제할 커널 선택" +msgstr "제거할 커널 선택" #: src/Gtk/MainWindow.vala:383 src/Gtk/MainWindow.vala:417 #: src/Gtk/MainWindow.vala:687 @@ -348,7 +348,7 @@ msgstr "창을 닫고 종료..." #: src/Gtk/MainWindow.vala:391 msgid "Purge" -msgstr "제거(Purge)" +msgstr "오래된 커널 제거" #: src/Gtk/MainWindow.vala:424 msgid "Changes" From 2bcf0ac925cba808e0bed92cbf9a69c32fd48383 Mon Sep 17 00:00:00 2001 From: "m.akristiniy" Date: Thu, 15 Jul 2021 07:05:53 +0300 Subject: [PATCH 139/567] bugfix with check internet connection - google don't like anymore empty requests --- src/Utility/TeeJee.System.vala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Utility/TeeJee.System.vala b/src/Utility/TeeJee.System.vala index 1d9d3fde..5356f547 100644 --- a/src/Utility/TeeJee.System.vala +++ b/src/Utility/TeeJee.System.vala @@ -34,7 +34,7 @@ namespace TeeJee.System{ if (App.skip_connection_check) return true; string std_err, std_out; - string cmd = "aria2c --no-netrc --no-conf --connect-timeout="+App.connect_timeout_seconds.to_string()+" --max-file-not-found=3 --retry-wait=2 --max-tries=3 --dry-run --quiet https://www.google.com/"; + string cmd = "aria2c --no-netrc --no-conf --connect-timeout="+App.connect_timeout_seconds.to_string()+" --max-file-not-found=3 --retry-wait=2 --max-tries=3 --dry-run --quiet https://www.google.com/search?q=test"; int status = exec_sync(cmd, out std_out, out std_err); From a4516a3930bbe1c9d2b08e7572c5a81b4645614b Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Sat, 7 Aug 2021 13:27:37 -0400 Subject: [PATCH 140/567] AsyncTask exec "sh script" instead of "script" to allow /tmp mounted with noexec --- po/messages.pot | 2 +- src/Utility/AsyncTask.vala | 6 ++---- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/po/messages.pot b/po/messages.pot index 8a2379b9..08041753 100644 --- a/po/messages.pot +++ b/po/messages.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline 1.0.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-12-21 05:01-0500\n" +"POT-Creation-Date: 2021-08-07 13:19-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/src/Utility/AsyncTask.vala b/src/Utility/AsyncTask.vala index 4f04f977..f04a4792 100644 --- a/src/Utility/AsyncTask.vala +++ b/src/Utility/AsyncTask.vala @@ -90,11 +90,9 @@ public abstract class AsyncTask : GLib.Object{ prg_count = 0; error_msg = ""; - string[] spawn_args = new string[1]; - spawn_args[0] = script_file; - + string[] spawn_args = {"sh", script_file}; string[] spawn_env = Environ.get(); - + try { // start timer timer = new GLib.Timer(); From d3b91b092bc470afcdadf8d316559c576dbfad45 Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Sat, 7 Aug 2021 15:49:57 -0400 Subject: [PATCH 141/567] don't segfault if no mainline kernels installed --- po/messages.pot | 2 +- src/Common/LinuxKernel.vala | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/po/messages.pot b/po/messages.pot index 08041753..4a829c77 100644 --- a/po/messages.pot +++ b/po/messages.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline 1.0.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-08-07 13:19-0400\n" +"POT-Creation-Date: 2021-08-07 15:39-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/src/Common/LinuxKernel.vala b/src/Common/LinuxKernel.vala index 4adf29e0..86e2de72 100644 --- a/src/Common/LinuxKernel.vala +++ b/src/Common/LinuxKernel.vala @@ -485,7 +485,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { log_msg(string.nfill(70, '-')); // find the highest installed version ---------------------- - kernel_latest_installed = null; + kernel_latest_installed = new LinuxKernel.from_version("0"); foreach(var k in kernel_list){ if (k.is_installed) { kernel_latest_installed = k; From 06081aaafd025e36b886ea04a788d28a317fc81a Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Sun, 8 Aug 2021 04:47:26 -0400 Subject: [PATCH 142/567] simplify downloads, remove all the partial_dir stuff --- po/es.po | 4 +-- po/fr.po | 4 +-- po/hr.po | 4 +-- po/it.po | 4 +-- po/ko.po | 4 +-- po/messages.pot | 4 +-- po/nl.po | 4 +-- po/pl.po | 4 +-- po/ru.po | 4 +-- po/sv.po | 4 +-- po/tr.po | 4 +-- po/uk.po | 4 +-- src/Common/DownloadManager.vala | 41 +++--------------------------- src/Common/LinuxKernel.vala | 12 ++++----- src/Utility/TeeJee.FileSystem.vala | 4 +-- 15 files changed, 35 insertions(+), 70 deletions(-) diff --git a/po/es.po b/po/es.po index 57f87f70..e2f223c9 100644 --- a/po/es.po +++ b/po/es.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-12-21 05:01-0500\n" +"POT-Creation-Date: 2021-08-08 04:43-0400\n" "PO-Revision-Date: 2018-01-03 02:03-0600\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish\n" @@ -549,7 +549,7 @@ msgstr "Se copió el archivo" msgid "Failed to copy file" msgstr "Falló la copia del archivo" -#: src/Utility/TeeJee.FileSystem.vala:158 +#: src/Utility/TeeJee.FileSystem.vala:157 msgid "File not found" msgstr "No se encontró el archivo" diff --git a/po/fr.po b/po/fr.po index 7fe03b84..993c7c74 100644 --- a/po/fr.po +++ b/po/fr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-12-21 05:01-0500\n" +"POT-Creation-Date: 2021-08-08 04:43-0400\n" "PO-Revision-Date: 2018-08-05 15:50+0200\n" "Last-Translator: Yolateng0 \n" "Language-Team: French\n" @@ -542,7 +542,7 @@ msgstr "Fichier copié" msgid "Failed to copy file" msgstr "Impossible de copier le fichier" -#: src/Utility/TeeJee.FileSystem.vala:158 +#: src/Utility/TeeJee.FileSystem.vala:157 msgid "File not found" msgstr "Fichier non trouvé" diff --git a/po/hr.po b/po/hr.po index 117f5415..ad68622a 100644 --- a/po/hr.po +++ b/po/hr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-12-21 05:01-0500\n" +"POT-Creation-Date: 2021-08-08 04:43-0400\n" "PO-Revision-Date: 2021-04-07 17:58+0200\n" "Last-Translator: gogo \n" "Language-Team: Croatian \n" @@ -537,7 +537,7 @@ msgstr "Datoteka kopirana" msgid "Failed to copy file" msgstr "Neuspjelo kopiranje datoteke" -#: src/Utility/TeeJee.FileSystem.vala:158 +#: src/Utility/TeeJee.FileSystem.vala:157 msgid "File not found" msgstr "Datoteka nije pronađena" diff --git a/po/it.po b/po/it.po index 6fd2eeaf..df3843e6 100644 --- a/po/it.po +++ b/po/it.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline 1.0.12\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-12-21 05:01-0500\n" +"POT-Creation-Date: 2021-08-08 04:43-0400\n" "PO-Revision-Date: 2020-08-22 15:35+0100\n" "Last-Translator: Albano Battistella \n" "Language-Team: Italian \n" @@ -543,7 +543,7 @@ msgstr "File copiato" msgid "Failed to copy file" msgstr "Impossibile copiare il file" -#: src/Utility/TeeJee.FileSystem.vala:158 +#: src/Utility/TeeJee.FileSystem.vala:157 msgid "File not found" msgstr "File non trovato" diff --git a/po/ko.po b/po/ko.po index fce1de47..6fb5c167 100644 --- a/po/ko.po +++ b/po/ko.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline 1.0.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-12-21 05:01-0500\n" +"POT-Creation-Date: 2021-08-08 04:43-0400\n" "PO-Revision-Date: 2021-06-01 14:57+0900\n" "Last-Translator: Kevin Kim \n" "Language-Team: Korean\n" @@ -539,7 +539,7 @@ msgstr "파일을 복사했습니다" msgid "Failed to copy file" msgstr "파일 복사를 실패했습니다" -#: src/Utility/TeeJee.FileSystem.vala:158 +#: src/Utility/TeeJee.FileSystem.vala:157 msgid "File not found" msgstr "파일을 찾을 수 없습니다" diff --git a/po/messages.pot b/po/messages.pot index 4a829c77..2ac23cb3 100644 --- a/po/messages.pot +++ b/po/messages.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline 1.0.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-08-07 15:39-0400\n" +"POT-Creation-Date: 2021-08-08 04:43-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -534,7 +534,7 @@ msgstr "" msgid "Failed to copy file" msgstr "" -#: src/Utility/TeeJee.FileSystem.vala:158 +#: src/Utility/TeeJee.FileSystem.vala:157 msgid "File not found" msgstr "" diff --git a/po/nl.po b/po/nl.po index e7d49abe..75e98db9 100644 --- a/po/nl.po +++ b/po/nl.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-12-21 05:01-0500\n" +"POT-Creation-Date: 2021-08-08 04:43-0400\n" "PO-Revision-Date: 2020-08-23 13:55+0200\n" "Last-Translator: Heimen Stoffels \n" "Language-Team: \n" @@ -540,7 +540,7 @@ msgstr "Het bestand is gekopieerd" msgid "Failed to copy file" msgstr "Het bestand kan niet worden gekopieerd" -#: src/Utility/TeeJee.FileSystem.vala:158 +#: src/Utility/TeeJee.FileSystem.vala:157 msgid "File not found" msgstr "Het bestand is niet gevonden" diff --git a/po/pl.po b/po/pl.po index c38a7540..2b615f3c 100644 --- a/po/pl.po +++ b/po/pl.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-12-21 05:01-0500\n" +"POT-Creation-Date: 2021-08-08 04:43-0400\n" "PO-Revision-Date: 2017-08-12 15:26+0200\n" "Last-Translator: Waldemar Konik \n" "Language-Team: Polish\n" @@ -556,7 +556,7 @@ msgstr "Plik skopiowany" msgid "Failed to copy file" msgstr "Nie udało się skopiować pliku" -#: src/Utility/TeeJee.FileSystem.vala:158 +#: src/Utility/TeeJee.FileSystem.vala:157 msgid "File not found" msgstr "Nie odnaleziono pliku" diff --git a/po/ru.po b/po/ru.po index 22b0b244..dd78cd23 100644 --- a/po/ru.po +++ b/po/ru.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-12-21 05:01-0500\n" +"POT-Creation-Date: 2021-08-08 04:43-0400\n" "PO-Revision-Date: 2016-12-13 16:46+0300\n" "Last-Translator: Faust3000 \n" "Language-Team: Russian \n" @@ -562,7 +562,7 @@ msgstr "Не удалось скопировать файл" msgid "Failed to copy file" msgstr "Не удалось скопировать файл" -#: src/Utility/TeeJee.FileSystem.vala:158 +#: src/Utility/TeeJee.FileSystem.vala:157 msgid "File not found" msgstr "Файл не найден" diff --git a/po/sv.po b/po/sv.po index a8296822..a67812f0 100644 --- a/po/sv.po +++ b/po/sv.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-12-21 05:01-0500\n" +"POT-Creation-Date: 2021-08-08 04:43-0400\n" "PO-Revision-Date: 2018-01-13 16:56+0100\n" "Last-Translator: Åke Engelbrektson \n" "Language-Team: Svenska Språkfiler \n" @@ -556,7 +556,7 @@ msgstr "Kopierade fil" msgid "Failed to copy file" msgstr "Kunde inte kopiera filen" -#: src/Utility/TeeJee.FileSystem.vala:158 +#: src/Utility/TeeJee.FileSystem.vala:157 msgid "File not found" msgstr "Filen kan inte hittas" diff --git a/po/tr.po b/po/tr.po index a02efb89..23a706a6 100644 --- a/po/tr.po +++ b/po/tr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-12-21 05:01-0500\n" +"POT-Creation-Date: 2021-08-08 04:43-0400\n" "PO-Revision-Date: 2020-03-10 15:59+0300\n" "Last-Translator: Gökhan GÖKKAYA \n" "Language-Team: Turkish\n" @@ -548,7 +548,7 @@ msgstr "Dosya kopyalandı" msgid "Failed to copy file" msgstr "Dosya kopyalama başarısız" -#: src/Utility/TeeJee.FileSystem.vala:158 +#: src/Utility/TeeJee.FileSystem.vala:157 msgid "File not found" msgstr "Dosya bulunamadı" diff --git a/po/uk.po b/po/uk.po index fb20f3a9..3e258a9e 100644 --- a/po/uk.po +++ b/po/uk.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-12-21 05:01-0500\n" +"POT-Creation-Date: 2021-08-08 04:43-0400\n" "PO-Revision-Date: 2019-07-25 11:00+0300\n" "Last-Translator: Serhii Golovko \n" "Language-Team: Ukranian \n" @@ -552,7 +552,7 @@ msgstr "Невдалося скопіювати файл" msgid "Failed to copy file" msgstr "Невдалося скопіювати файл" -#: src/Utility/TeeJee.FileSystem.vala:158 +#: src/Utility/TeeJee.FileSystem.vala:157 msgid "File not found" msgstr "Файл не знайдено" diff --git a/src/Common/DownloadManager.vala b/src/Common/DownloadManager.vala index 00eccade..0c7349e9 100644 --- a/src/Common/DownloadManager.vala +++ b/src/Common/DownloadManager.vala @@ -92,7 +92,7 @@ public class DownloadTask : AsyncTask{ foreach(var item in downloads){ list += item.source_uri + "\n" + " gid=" + item.gid + "\n" - + " dir=" + item.partial_dir + "\n" + + " dir=" + item.download_dir + "\n" + " out=" + item.file_name + "\n"; } file_write(list_file, list); @@ -201,44 +201,16 @@ public class DownloadTask : AsyncTask{ } protected override void finish_task(){ - mv_partials_to_finals(); - log_debug("DownloadTask():finish_task():dir_delete("+working_dir+"):"); - dir_delete(working_dir); - } - - private void mv_partials_to_finals() { - - log_debug("mv_partials_to_finals()"); - - foreach(var item in downloads){ - string d = file_parent(item.file_path_partial); - - if (!file_exists(item.file_path_partial)){ - log_debug("file_path_partial not found: %s".printf(item.file_path_partial)); - continue; - } - - if (item.status == "OK"){ - file_move(item.file_path_partial, item.file_path); - } - else{ - file_delete(item.file_path_partial); - } - dir_delete(d); - } } } public class DownloadItem : GLib.Object { - /* File is downloaded to 'partial_dir' and moved to 'download_dir' - * after successful completion. File will always be saved with - * the specified name 'file_name' instead of the source file name. - * */ + /* File is saved as 'file_name' not the source file name. + */ public string file_name = ""; public string download_dir = ""; - public string partial_dir = ""; public string source_uri = ""; public string gid = ""; // ID @@ -256,12 +228,6 @@ public class DownloadItem : GLib.Object } } - public string file_path_partial{ - owned get{ - return partial_dir+"/"+file_name; - } - } - public string gid_key{ owned get{ return gid.substring(0,6);; @@ -272,7 +238,6 @@ public class DownloadItem : GLib.Object file_name = _file_name; download_dir = _download_dir; - partial_dir = create_tmp_dir(); source_uri = _source_uri; } diff --git a/src/Common/LinuxKernel.vala b/src/Common/LinuxKernel.vala index 86e2de72..91e3bded 100644 --- a/src/Common/LinuxKernel.vala +++ b/src/Common/LinuxKernel.vala @@ -1029,8 +1029,8 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { check_if_initialized(); foreach(string file_name in deb_list.keys){ - - string dl_dir = "%s/%s".printf(cache_subdir, NATIVE_ARCH); + + string dl_dir = cache_subdir; string file_path = "%s/%s".printf(dl_dir, file_name); if (file_exists(file_path) && !file_exists(file_path + ".aria2c")){ @@ -1043,7 +1043,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { stdout.flush(); var item = new DownloadItem(deb_list[file_name], file_parent(file_path), file_basename(file_path)); - + var mgr = new DownloadTask(); mgr.add_to_queue(item); mgr.status_in_kb = true; @@ -1092,11 +1092,11 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { foreach(string file_name in deb_list.keys){ flist += " '%s'".printf(file_name); + log_msg("install() flist += %s".printf(file_name)); } - string d = cache_subdir+"/"+NATIVE_ARCH; - string cmd = "pkexec env -C "+d+" DISPLAY=${DISPLAY} XAUTHORITY=${XAUTHORITY} dpkg -i "+flist - + " && cd "+d + string cmd = "cd "+cache_subdir + + " && pkexec env -C "+cache_subdir+" DISPLAY=${DISPLAY} XAUTHORITY=${XAUTHORITY} dpkg -i "+flist + " && rm "+flist; status = Posix.system(cmd); diff --git a/src/Utility/TeeJee.FileSystem.vala b/src/Utility/TeeJee.FileSystem.vala index e52bdd60..821e8623 100644 --- a/src/Utility/TeeJee.FileSystem.vala +++ b/src/Utility/TeeJee.FileSystem.vala @@ -153,8 +153,7 @@ namespace TeeJee.FileSystem{ public void file_move (string src_file, string dest_file){ try{ - var file_src = File.new_for_path (src_file); - if (!file_src.query_exists()) { + if (!file_exists(src_file)) { log_error(_("File not found") + ": '%s'".printf(src_file)); return; } @@ -165,6 +164,7 @@ namespace TeeJee.FileSystem{ file_delete(dest_file); } + var file_src = File.new_for_path (src_file); var file_dest = File.new_for_path (dest_file); file_src.move(file_dest,FileCopyFlags.OVERWRITE,null,null); From 008b61e2ca182123a188d36b62efefadac33fb1b Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Sun, 8 Aug 2021 05:35:19 -0400 Subject: [PATCH 143/567] allow /tmp to be mounted with noexec --- po/es.po | 2 +- po/fr.po | 2 +- po/hr.po | 2 +- po/it.po | 2 +- po/ko.po | 2 +- po/messages.pot | 2 +- po/nl.po | 2 +- po/pl.po | 2 +- po/ru.po | 2 +- po/sv.po | 2 +- po/tr.po | 2 +- po/uk.po | 2 +- src/Gtk/TerminalWindow.vala | 3 +-- 13 files changed, 13 insertions(+), 14 deletions(-) diff --git a/po/es.po b/po/es.po index e2f223c9..77c828d1 100644 --- a/po/es.po +++ b/po/es.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-08-08 04:43-0400\n" +"POT-Creation-Date: 2021-08-08 05:32-0400\n" "PO-Revision-Date: 2018-01-03 02:03-0600\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish\n" diff --git a/po/fr.po b/po/fr.po index 993c7c74..30e08f10 100644 --- a/po/fr.po +++ b/po/fr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-08-08 04:43-0400\n" +"POT-Creation-Date: 2021-08-08 05:32-0400\n" "PO-Revision-Date: 2018-08-05 15:50+0200\n" "Last-Translator: Yolateng0 \n" "Language-Team: French\n" diff --git a/po/hr.po b/po/hr.po index ad68622a..ed86b655 100644 --- a/po/hr.po +++ b/po/hr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-08-08 04:43-0400\n" +"POT-Creation-Date: 2021-08-08 05:32-0400\n" "PO-Revision-Date: 2021-04-07 17:58+0200\n" "Last-Translator: gogo \n" "Language-Team: Croatian \n" diff --git a/po/it.po b/po/it.po index df3843e6..c2946c69 100644 --- a/po/it.po +++ b/po/it.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline 1.0.12\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-08-08 04:43-0400\n" +"POT-Creation-Date: 2021-08-08 05:32-0400\n" "PO-Revision-Date: 2020-08-22 15:35+0100\n" "Last-Translator: Albano Battistella \n" "Language-Team: Italian \n" diff --git a/po/ko.po b/po/ko.po index 6fb5c167..234b8831 100644 --- a/po/ko.po +++ b/po/ko.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline 1.0.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-08-08 04:43-0400\n" +"POT-Creation-Date: 2021-08-08 05:32-0400\n" "PO-Revision-Date: 2021-06-01 14:57+0900\n" "Last-Translator: Kevin Kim \n" "Language-Team: Korean\n" diff --git a/po/messages.pot b/po/messages.pot index 2ac23cb3..e659f18b 100644 --- a/po/messages.pot +++ b/po/messages.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline 1.0.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-08-08 04:43-0400\n" +"POT-Creation-Date: 2021-08-08 05:32-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/po/nl.po b/po/nl.po index 75e98db9..463b8426 100644 --- a/po/nl.po +++ b/po/nl.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-08-08 04:43-0400\n" +"POT-Creation-Date: 2021-08-08 05:32-0400\n" "PO-Revision-Date: 2020-08-23 13:55+0200\n" "Last-Translator: Heimen Stoffels \n" "Language-Team: \n" diff --git a/po/pl.po b/po/pl.po index 2b615f3c..6b85fccc 100644 --- a/po/pl.po +++ b/po/pl.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-08-08 04:43-0400\n" +"POT-Creation-Date: 2021-08-08 05:32-0400\n" "PO-Revision-Date: 2017-08-12 15:26+0200\n" "Last-Translator: Waldemar Konik \n" "Language-Team: Polish\n" diff --git a/po/ru.po b/po/ru.po index dd78cd23..931a6407 100644 --- a/po/ru.po +++ b/po/ru.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-08-08 04:43-0400\n" +"POT-Creation-Date: 2021-08-08 05:32-0400\n" "PO-Revision-Date: 2016-12-13 16:46+0300\n" "Last-Translator: Faust3000 \n" "Language-Team: Russian \n" diff --git a/po/sv.po b/po/sv.po index a67812f0..8b496e56 100644 --- a/po/sv.po +++ b/po/sv.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-08-08 04:43-0400\n" +"POT-Creation-Date: 2021-08-08 05:32-0400\n" "PO-Revision-Date: 2018-01-13 16:56+0100\n" "Last-Translator: Åke Engelbrektson \n" "Language-Team: Svenska Språkfiler \n" diff --git a/po/tr.po b/po/tr.po index 23a706a6..4d4b2798 100644 --- a/po/tr.po +++ b/po/tr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-08-08 04:43-0400\n" +"POT-Creation-Date: 2021-08-08 05:32-0400\n" "PO-Revision-Date: 2020-03-10 15:59+0300\n" "Last-Translator: Gökhan GÖKKAYA \n" "Language-Team: Turkish\n" diff --git a/po/uk.po b/po/uk.po index 3e258a9e..8062c28e 100644 --- a/po/uk.po +++ b/po/uk.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-08-08 04:43-0400\n" +"POT-Creation-Date: 2021-08-08 05:32-0400\n" "PO-Revision-Date: 2019-07-25 11:00+0300\n" "Last-Translator: Serhii Golovko \n" "Language-Team: Ukranian \n" diff --git a/src/Gtk/TerminalWindow.vala b/src/Gtk/TerminalWindow.vala index f6dc5601..b6169a3b 100644 --- a/src/Gtk/TerminalWindow.vala +++ b/src/Gtk/TerminalWindow.vala @@ -177,8 +177,7 @@ public class TerminalWindow : Gtk.Window { } public void execute_script(string f, string d, bool wait = false){ - string[] argv = new string[1]; - argv[0] = f; + string[] argv = {"sh", f}; string[] env = Environ.get(); From 091a1fb730be26d12a5e32c79d41324f828fe7e6 Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Sun, 8 Aug 2021 05:38:33 -0400 Subject: [PATCH 144/567] check_internet_connectivity() might as well check the only server we're actually going to touch --- po/messages.pot | 2 +- src/Utility/TeeJee.System.vala | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/po/messages.pot b/po/messages.pot index e659f18b..f03c6607 100644 --- a/po/messages.pot +++ b/po/messages.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline 1.0.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-08-08 05:32-0400\n" +"POT-Creation-Date: 2021-08-08 05:35-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/src/Utility/TeeJee.System.vala b/src/Utility/TeeJee.System.vala index 5356f547..3716ec56 100644 --- a/src/Utility/TeeJee.System.vala +++ b/src/Utility/TeeJee.System.vala @@ -34,7 +34,7 @@ namespace TeeJee.System{ if (App.skip_connection_check) return true; string std_err, std_out; - string cmd = "aria2c --no-netrc --no-conf --connect-timeout="+App.connect_timeout_seconds.to_string()+" --max-file-not-found=3 --retry-wait=2 --max-tries=3 --dry-run --quiet https://www.google.com/search?q=test"; + string cmd = "aria2c --no-netrc --no-conf --connect-timeout="+App.connect_timeout_seconds.to_string()+" --max-file-not-found=3 --retry-wait=2 --max-tries=3 --dry-run --quiet 'https://kernel.ubuntu.com'"; int status = exec_sync(cmd, out std_out, out std_err); From e831a9ba5001984724be985e2110b5c8fe6632fa Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Thu, 12 Aug 2021 21:20:47 -0400 Subject: [PATCH 145/567] better cmdline opts & help for include/hide unstable --- debian/changelog | 5 ++- po/es.po | 65 ++++++++++++++------------- po/fr.po | 65 ++++++++++++++------------- po/hr.po | 65 ++++++++++++++------------- po/it.po | 65 ++++++++++++++------------- po/ko.po | 65 ++++++++++++++------------- po/messages.pot | 62 ++++++++++++------------- po/nl.po | 65 ++++++++++++++------------- po/pl.po | 64 +++++++++++++------------- po/ru.po | 64 +++++++++++++------------- po/sv.po | 64 +++++++++++++------------- po/tr.po | 65 ++++++++++++++------------- po/uk.po | 65 ++++++++++++++------------- src/Common/LinuxKernel.vala | 2 +- src/Console/AppConsole.vala | 15 ++++--- src/Utility/TeeJee.ProcessHelper.vala | 2 +- 16 files changed, 407 insertions(+), 391 deletions(-) diff --git a/debian/changelog b/debian/changelog index 3d1bb4af..359744c0 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,8 +1,11 @@ mainline (1.0.14) UNRELEASED; urgency=medium * Remove unnecessary VERSION_INT and build-time dependency for "bc" + * Fix a segfault if no mainline kernels installed + * Allow /tmp to be mounted with noexec + * Replace --show-unstable with --include-unstable and --hide-unstable, and correct --help - -- Brian K. White Mon, 21 Dec 2020 05:00:22 -0500 + -- Brian K. White Mon, 09 Aug 2021 20:56:07 -0400 mainline (1.0.13) unstable; urgency=medium diff --git a/po/es.po b/po/es.po index 77c828d1..cc0b61b9 100644 --- a/po/es.po +++ b/po/es.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-08-08 05:32-0400\n" +"POT-Creation-Date: 2021-08-12 21:13-0400\n" "PO-Revision-Date: 2018-01-03 02:03-0600\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish\n" @@ -45,16 +45,16 @@ msgstr "Los siguientes kernels serán eliminados:" msgid "Continue ?" msgstr "¿Continuar?" -#: src/Common/LinuxKernel.vala:642 src/Console/AppConsole.vala:304 +#: src/Common/LinuxKernel.vala:642 src/Console/AppConsole.vala:309 msgid "Latest update" msgstr "" -#: src/Common/LinuxKernel.vala:653 src/Console/AppConsole.vala:311 +#: src/Common/LinuxKernel.vala:653 src/Console/AppConsole.vala:316 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:661 src/Console/AppConsole.vala:316 -#: src/Console/AppConsole.vala:377 +#: src/Common/LinuxKernel.vala:661 src/Console/AppConsole.vala:321 +#: src/Console/AppConsole.vala:382 msgid "No updates found" msgstr "No se encontró ninguna actualización" @@ -207,85 +207,90 @@ msgstr "Descargar paquetes del núcleo especificado" msgid "Remove files from application cache" msgstr "Quitar archivos de la antememoria de la aplicación" -#: src/Console/AppConsole.vala:77 -msgid "Show unstable and RC releases" -msgstr "Ocultar versiones inestables y RC" - -#: src/Console/AppConsole.vala:79 src/Gtk/AppGtk.vala:151 +#: src/Console/AppConsole.vala:78 src/Gtk/AppGtk.vala:151 msgid "Options" msgstr "Opciones" -#: src/Console/AppConsole.vala:81 +#: src/Console/AppConsole.vala:80 +#, fuzzy +msgid "Include unstable and RC releases" +msgstr "Ocultar versiones inestables y RC" + +#: src/Console/AppConsole.vala:81 src/Gtk/SettingsDialog.vala:163 +msgid "Hide unstable and RC releases" +msgstr "Ocultar versiones inestables y RC" + +#: src/Console/AppConsole.vala:82 msgid "Enable verbose debugging output" msgstr "" -#: src/Console/AppConsole.vala:82 +#: src/Console/AppConsole.vala:83 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "Asumir Sí para todas las solicitudes (modo no interactivo)" -#: src/Console/AppConsole.vala:83 +#: src/Console/AppConsole.vala:84 msgid "Override user" msgstr "" -#: src/Console/AppConsole.vala:86 +#: src/Console/AppConsole.vala:87 msgid "A version string taken from the output of --list" msgstr "" -#: src/Console/AppConsole.vala:87 +#: src/Console/AppConsole.vala:88 msgid "" "One or more version strings (comma-separated) taken from the output of --list" msgstr "" -#: src/Console/AppConsole.vala:162 src/Gtk/AppGtk.vala:136 +#: src/Console/AppConsole.vala:167 src/Gtk/AppGtk.vala:136 msgid "Unknown option" msgstr "Opción desconocida" -#: src/Console/AppConsole.vala:164 src/Console/AppConsole.vala:256 -#: src/Console/AppConsole.vala:284 +#: src/Console/AppConsole.vala:169 src/Console/AppConsole.vala:261 +#: src/Console/AppConsole.vala:289 #, fuzzy msgid "Run" msgstr "En ejecución" -#: src/Console/AppConsole.vala:164 +#: src/Console/AppConsole.vala:169 #, fuzzy msgid "to list all options" msgstr "Mostrar todas las opciones" -#: src/Console/AppConsole.vala:229 src/Console/AppConsole.vala:264 +#: src/Console/AppConsole.vala:234 src/Console/AppConsole.vala:269 msgid "No kernels specified" msgstr "" -#: src/Console/AppConsole.vala:235 +#: src/Console/AppConsole.vala:240 msgid "Multiple kernels selected for installation. Select only one." msgstr "Se seleccionaron varios núcleos para su instalación. Elija solo uno." -#: src/Console/AppConsole.vala:253 src/Gtk/MainWindow.vala:100 +#: src/Console/AppConsole.vala:258 src/Gtk/MainWindow.vala:100 msgid "Could not find requested version" msgstr "No se pudo encontrar la versión solicitada" -#: src/Console/AppConsole.vala:256 +#: src/Console/AppConsole.vala:261 msgid "and use a version string listed in first column" msgstr "" -#: src/Console/AppConsole.vala:283 +#: src/Console/AppConsole.vala:288 msgid "Command not specified" msgstr "Coomand no especificado" -#: src/Console/AppConsole.vala:284 +#: src/Console/AppConsole.vala:289 #, fuzzy msgid "to list all commands" msgstr "Mostrar todas las opciones" -#: src/Console/AppConsole.vala:350 +#: src/Console/AppConsole.vala:355 msgid "Show" msgstr "" -#: src/Console/AppConsole.vala:355 src/Console/AppConsole.vala:367 +#: src/Console/AppConsole.vala:360 src/Console/AppConsole.vala:372 #, fuzzy, c-format msgid "Kernel %s Available" msgstr "Paquetes disponibles" -#: src/Console/AppConsole.vala:357 src/Console/AppConsole.vala:369 +#: src/Console/AppConsole.vala:362 src/Console/AppConsole.vala:374 #: src/Gtk/MainWindow.vala:330 msgid "Install" msgstr "Instalar" @@ -441,10 +446,6 @@ msgstr "" msgid "Display" msgstr "Mostrar" -#: src/Gtk/SettingsDialog.vala:163 -msgid "Hide unstable and RC releases" -msgstr "Ocultar versiones inestables y RC" - #: src/Gtk/SettingsDialog.vala:177 msgid "Show N previous major versions " msgstr "" diff --git a/po/fr.po b/po/fr.po index 30e08f10..96a46151 100644 --- a/po/fr.po +++ b/po/fr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-08-08 05:32-0400\n" +"POT-Creation-Date: 2021-08-12 21:13-0400\n" "PO-Revision-Date: 2018-08-05 15:50+0200\n" "Last-Translator: Yolateng0 \n" "Language-Team: French\n" @@ -45,16 +45,16 @@ msgstr "Les noyaux suivants seront supprimés:" msgid "Continue ?" msgstr "Reprendre ?" -#: src/Common/LinuxKernel.vala:642 src/Console/AppConsole.vala:304 +#: src/Common/LinuxKernel.vala:642 src/Console/AppConsole.vala:309 msgid "Latest update" msgstr "Dernière mise à jour" -#: src/Common/LinuxKernel.vala:653 src/Console/AppConsole.vala:311 +#: src/Common/LinuxKernel.vala:653 src/Console/AppConsole.vala:316 msgid "Latest point update" msgstr "Dernière mise à jour mineure" -#: src/Common/LinuxKernel.vala:661 src/Console/AppConsole.vala:316 -#: src/Console/AppConsole.vala:377 +#: src/Common/LinuxKernel.vala:661 src/Console/AppConsole.vala:321 +#: src/Console/AppConsole.vala:382 msgid "No updates found" msgstr "Aucune mise à jour disponible" @@ -205,86 +205,91 @@ msgstr "Télécharger les noyaux spécifiés" msgid "Remove files from application cache" msgstr "Supprimer les fichiers du cache de l'application" -#: src/Console/AppConsole.vala:77 -msgid "Show unstable and RC releases" -msgstr "Montrer les versions instables et RC" - -#: src/Console/AppConsole.vala:79 src/Gtk/AppGtk.vala:151 +#: src/Console/AppConsole.vala:78 src/Gtk/AppGtk.vala:151 msgid "Options" msgstr "Options" -#: src/Console/AppConsole.vala:81 +#: src/Console/AppConsole.vala:80 +#, fuzzy +msgid "Include unstable and RC releases" +msgstr "Cacher les versions instables et RC" + +#: src/Console/AppConsole.vala:81 src/Gtk/SettingsDialog.vala:163 +msgid "Hide unstable and RC releases" +msgstr "Cacher les versions instables et RC" + +#: src/Console/AppConsole.vala:82 msgid "Enable verbose debugging output" msgstr "Active la sortie verbeuse de débogage" -#: src/Console/AppConsole.vala:82 +#: src/Console/AppConsole.vala:83 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "" -#: src/Console/AppConsole.vala:83 +#: src/Console/AppConsole.vala:84 msgid "Override user" msgstr "Surcharge l'utilisateur" -#: src/Console/AppConsole.vala:86 +#: src/Console/AppConsole.vala:87 msgid "A version string taken from the output of --list" msgstr "Une version prise du resultat de --list" -#: src/Console/AppConsole.vala:87 +#: src/Console/AppConsole.vala:88 msgid "" "One or more version strings (comma-separated) taken from the output of --list" msgstr "" "Une ou plusieurs versions (séparées par des virgules) prises du résultat de " "--list" -#: src/Console/AppConsole.vala:162 src/Gtk/AppGtk.vala:136 +#: src/Console/AppConsole.vala:167 src/Gtk/AppGtk.vala:136 msgid "Unknown option" msgstr "Option inconnue" -#: src/Console/AppConsole.vala:164 src/Console/AppConsole.vala:256 -#: src/Console/AppConsole.vala:284 +#: src/Console/AppConsole.vala:169 src/Console/AppConsole.vala:261 +#: src/Console/AppConsole.vala:289 msgid "Run" msgstr "Executez" -#: src/Console/AppConsole.vala:164 +#: src/Console/AppConsole.vala:169 msgid "to list all options" msgstr "pour afficher toutes les options" -#: src/Console/AppConsole.vala:229 src/Console/AppConsole.vala:264 +#: src/Console/AppConsole.vala:234 src/Console/AppConsole.vala:269 msgid "No kernels specified" msgstr "Aucun noyau spécifié" -#: src/Console/AppConsole.vala:235 +#: src/Console/AppConsole.vala:240 msgid "Multiple kernels selected for installation. Select only one." msgstr "" "Plusieurs noyaux sélectionnés pour être installés. Sélectionnez en seulement " "un." -#: src/Console/AppConsole.vala:253 src/Gtk/MainWindow.vala:100 +#: src/Console/AppConsole.vala:258 src/Gtk/MainWindow.vala:100 msgid "Could not find requested version" msgstr "Impossible de trouver la version demandée" -#: src/Console/AppConsole.vala:256 +#: src/Console/AppConsole.vala:261 msgid "and use a version string listed in first column" msgstr "" -#: src/Console/AppConsole.vala:283 +#: src/Console/AppConsole.vala:288 msgid "Command not specified" msgstr "Pas de commande fournie" -#: src/Console/AppConsole.vala:284 +#: src/Console/AppConsole.vala:289 msgid "to list all commands" msgstr "pour afficher toutes les commandes" -#: src/Console/AppConsole.vala:350 +#: src/Console/AppConsole.vala:355 msgid "Show" msgstr "Montrer" -#: src/Console/AppConsole.vala:355 src/Console/AppConsole.vala:367 +#: src/Console/AppConsole.vala:360 src/Console/AppConsole.vala:372 #, c-format msgid "Kernel %s Available" msgstr "Paquet %s disponibles" -#: src/Console/AppConsole.vala:357 src/Console/AppConsole.vala:369 +#: src/Console/AppConsole.vala:362 src/Console/AppConsole.vala:374 #: src/Gtk/MainWindow.vala:330 msgid "Install" msgstr "Installer" @@ -438,10 +443,6 @@ msgstr "Seconde(s)" msgid "Display" msgstr "Affichage" -#: src/Gtk/SettingsDialog.vala:163 -msgid "Hide unstable and RC releases" -msgstr "Cacher les versions instables et RC" - #: src/Gtk/SettingsDialog.vala:177 msgid "Show N previous major versions " msgstr "Montrer les N dernières versions majeures" diff --git a/po/hr.po b/po/hr.po index ed86b655..a974e7ed 100644 --- a/po/hr.po +++ b/po/hr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-08-08 05:32-0400\n" +"POT-Creation-Date: 2021-08-12 21:13-0400\n" "PO-Revision-Date: 2021-04-07 17:58+0200\n" "Last-Translator: gogo \n" "Language-Team: Croatian \n" @@ -45,16 +45,16 @@ msgstr "Sljedeći kerneli će biti uklonjeni:" msgid "Continue ?" msgstr "Nastavi?" -#: src/Common/LinuxKernel.vala:642 src/Console/AppConsole.vala:304 +#: src/Common/LinuxKernel.vala:642 src/Console/AppConsole.vala:309 msgid "Latest update" msgstr "Najnovija nadopuna" -#: src/Common/LinuxKernel.vala:653 src/Console/AppConsole.vala:311 +#: src/Common/LinuxKernel.vala:653 src/Console/AppConsole.vala:316 msgid "Latest point update" msgstr "Najnovija ciljana nadopuna" -#: src/Common/LinuxKernel.vala:661 src/Console/AppConsole.vala:316 -#: src/Console/AppConsole.vala:377 +#: src/Common/LinuxKernel.vala:661 src/Console/AppConsole.vala:321 +#: src/Console/AppConsole.vala:382 msgid "No updates found" msgstr "Nema pronađenih nadopuna" @@ -205,83 +205,88 @@ msgstr "Preuzmi određene kernele" msgid "Remove files from application cache" msgstr "Ukloni datoteke iz predmemorije aplikacije" -#: src/Console/AppConsole.vala:77 -msgid "Show unstable and RC releases" -msgstr "Prikaži nestabilna izdanja i predizdanja" - -#: src/Console/AppConsole.vala:79 src/Gtk/AppGtk.vala:151 +#: src/Console/AppConsole.vala:78 src/Gtk/AppGtk.vala:151 msgid "Options" msgstr "Mogućnosti" -#: src/Console/AppConsole.vala:81 +#: src/Console/AppConsole.vala:80 +#, fuzzy +msgid "Include unstable and RC releases" +msgstr "Sakrij nestabilne kernele i predizdanja" + +#: src/Console/AppConsole.vala:81 src/Gtk/SettingsDialog.vala:163 +msgid "Hide unstable and RC releases" +msgstr "Sakrij nestabilne kernele i predizdanja" + +#: src/Console/AppConsole.vala:82 msgid "Enable verbose debugging output" msgstr "Omogući opširnije zapisivanje" -#: src/Console/AppConsole.vala:82 +#: src/Console/AppConsole.vala:83 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "Pretpostavi Da za sve upite (neinteraktivan način rada)" -#: src/Console/AppConsole.vala:83 +#: src/Console/AppConsole.vala:84 msgid "Override user" msgstr "Zaobiđi korisnika" -#: src/Console/AppConsole.vala:86 +#: src/Console/AppConsole.vala:87 msgid "A version string taken from the output of --list" msgstr "Izraz inačice uzet iz zapisa --list" -#: src/Console/AppConsole.vala:87 +#: src/Console/AppConsole.vala:88 msgid "" "One or more version strings (comma-separated) taken from the output of --list" msgstr "" "Jedan ili više izraza inačice (zarezom odvojeni) uzetih iz zapisa --list" -#: src/Console/AppConsole.vala:162 src/Gtk/AppGtk.vala:136 +#: src/Console/AppConsole.vala:167 src/Gtk/AppGtk.vala:136 msgid "Unknown option" msgstr "Nepoznata mogućnost" -#: src/Console/AppConsole.vala:164 src/Console/AppConsole.vala:256 -#: src/Console/AppConsole.vala:284 +#: src/Console/AppConsole.vala:169 src/Console/AppConsole.vala:261 +#: src/Console/AppConsole.vala:289 msgid "Run" msgstr "Pokreni" -#: src/Console/AppConsole.vala:164 +#: src/Console/AppConsole.vala:169 msgid "to list all options" msgstr "za prikaz svih mogućnosti" -#: src/Console/AppConsole.vala:229 src/Console/AppConsole.vala:264 +#: src/Console/AppConsole.vala:234 src/Console/AppConsole.vala:269 msgid "No kernels specified" msgstr "Nema određenih kernela" -#: src/Console/AppConsole.vala:235 +#: src/Console/AppConsole.vala:240 msgid "Multiple kernels selected for installation. Select only one." msgstr "Više kernela je odabrano za instalaciju. odaberite samo jedan." -#: src/Console/AppConsole.vala:253 src/Gtk/MainWindow.vala:100 +#: src/Console/AppConsole.vala:258 src/Gtk/MainWindow.vala:100 msgid "Could not find requested version" msgstr "Nemoguće je pronaći zatraženu inačicu" -#: src/Console/AppConsole.vala:256 +#: src/Console/AppConsole.vala:261 msgid "and use a version string listed in first column" msgstr "i koristite izraz inačice prikazan u prvom stupcu" -#: src/Console/AppConsole.vala:283 +#: src/Console/AppConsole.vala:288 msgid "Command not specified" msgstr "Naredba nije navedena" -#: src/Console/AppConsole.vala:284 +#: src/Console/AppConsole.vala:289 msgid "to list all commands" msgstr "za prikaz svih mogućnosti" -#: src/Console/AppConsole.vala:350 +#: src/Console/AppConsole.vala:355 msgid "Show" msgstr "Prikaži" -#: src/Console/AppConsole.vala:355 src/Console/AppConsole.vala:367 +#: src/Console/AppConsole.vala:360 src/Console/AppConsole.vala:372 #, c-format msgid "Kernel %s Available" msgstr "Kernel %s je dostupan" -#: src/Console/AppConsole.vala:357 src/Console/AppConsole.vala:369 +#: src/Console/AppConsole.vala:362 src/Console/AppConsole.vala:374 #: src/Gtk/MainWindow.vala:330 msgid "Install" msgstr "Instaliraj" @@ -433,10 +438,6 @@ msgstr "Sekund(e)" msgid "Display" msgstr "Prikaz" -#: src/Gtk/SettingsDialog.vala:163 -msgid "Hide unstable and RC releases" -msgstr "Sakrij nestabilne kernele i predizdanja" - #: src/Gtk/SettingsDialog.vala:177 msgid "Show N previous major versions " msgstr "Prikaži N prijašnjih glavnih izdanja " diff --git a/po/it.po b/po/it.po index c2946c69..4b9b59e7 100644 --- a/po/it.po +++ b/po/it.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline 1.0.12\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-08-08 05:32-0400\n" +"POT-Creation-Date: 2021-08-12 21:13-0400\n" "PO-Revision-Date: 2020-08-22 15:35+0100\n" "Last-Translator: Albano Battistella \n" "Language-Team: Italian \n" @@ -48,16 +48,16 @@ msgstr "I seguenti kernel verranno rimossi:" msgid "Continue ?" msgstr "Continuare ?" -#: src/Common/LinuxKernel.vala:642 src/Console/AppConsole.vala:304 +#: src/Common/LinuxKernel.vala:642 src/Console/AppConsole.vala:309 msgid "Latest update" msgstr "Ultimo aggiornamento" -#: src/Common/LinuxKernel.vala:653 src/Console/AppConsole.vala:311 +#: src/Common/LinuxKernel.vala:653 src/Console/AppConsole.vala:316 msgid "Latest point update" msgstr "Ultimo aggiornamento del punto" -#: src/Common/LinuxKernel.vala:661 src/Console/AppConsole.vala:316 -#: src/Console/AppConsole.vala:377 +#: src/Common/LinuxKernel.vala:661 src/Console/AppConsole.vala:321 +#: src/Console/AppConsole.vala:382 msgid "No updates found" msgstr "Nessun aggiornamento trovato" @@ -210,84 +210,89 @@ msgstr "Scarica i kernel specificati" msgid "Remove files from application cache" msgstr "Rimuovi i file dalla cache dell'applicazione" -#: src/Console/AppConsole.vala:77 -msgid "Show unstable and RC releases" -msgstr "Mostra versioni instabili e RC" - -#: src/Console/AppConsole.vala:79 src/Gtk/AppGtk.vala:151 +#: src/Console/AppConsole.vala:78 src/Gtk/AppGtk.vala:151 msgid "Options" msgstr "Opzioni" -#: src/Console/AppConsole.vala:81 +#: src/Console/AppConsole.vala:80 +#, fuzzy +msgid "Include unstable and RC releases" +msgstr "Nascondi versioni instabili e RC" + +#: src/Console/AppConsole.vala:81 src/Gtk/SettingsDialog.vala:163 +msgid "Hide unstable and RC releases" +msgstr "Nascondi versioni instabili e RC" + +#: src/Console/AppConsole.vala:82 msgid "Enable verbose debugging output" msgstr "Abilita l'output di debug dettagliato" -#: src/Console/AppConsole.vala:82 +#: src/Console/AppConsole.vala:83 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "Assicura Sì per tutte le richieste (modalità non interattiva)" -#: src/Console/AppConsole.vala:83 +#: src/Console/AppConsole.vala:84 msgid "Override user" msgstr "Sovrascrivi utente" -#: src/Console/AppConsole.vala:86 +#: src/Console/AppConsole.vala:87 msgid "A version string taken from the output of --list" msgstr "Una stringa di versione presa dall'output di --list" -#: src/Console/AppConsole.vala:87 +#: src/Console/AppConsole.vala:88 msgid "" "One or more version strings (comma-separated) taken from the output of --list" msgstr "" "Una o più stringhe di versione (separate da virgole) prese dall'output di --" "list" -#: src/Console/AppConsole.vala:162 src/Gtk/AppGtk.vala:136 +#: src/Console/AppConsole.vala:167 src/Gtk/AppGtk.vala:136 msgid "Unknown option" msgstr "Opzione sconosciuta" -#: src/Console/AppConsole.vala:164 src/Console/AppConsole.vala:256 -#: src/Console/AppConsole.vala:284 +#: src/Console/AppConsole.vala:169 src/Console/AppConsole.vala:261 +#: src/Console/AppConsole.vala:289 msgid "Run" msgstr "In corso" -#: src/Console/AppConsole.vala:164 +#: src/Console/AppConsole.vala:169 msgid "to list all options" msgstr "Elencare tutte le opzioni" -#: src/Console/AppConsole.vala:229 src/Console/AppConsole.vala:264 +#: src/Console/AppConsole.vala:234 src/Console/AppConsole.vala:269 msgid "No kernels specified" msgstr "Nessun kernel specificato" -#: src/Console/AppConsole.vala:235 +#: src/Console/AppConsole.vala:240 msgid "Multiple kernels selected for installation. Select only one." msgstr "Più kernel selezionati per l'installazione. Selezionare uno solo." -#: src/Console/AppConsole.vala:253 src/Gtk/MainWindow.vala:100 +#: src/Console/AppConsole.vala:258 src/Gtk/MainWindow.vala:100 msgid "Could not find requested version" msgstr "Impossibile trovare la versione richiesta" -#: src/Console/AppConsole.vala:256 +#: src/Console/AppConsole.vala:261 msgid "and use a version string listed in first column" msgstr "e usa una stringa di versione elencata nella prima colonna" -#: src/Console/AppConsole.vala:283 +#: src/Console/AppConsole.vala:288 msgid "Command not specified" msgstr "Comando non specificato" -#: src/Console/AppConsole.vala:284 +#: src/Console/AppConsole.vala:289 msgid "to list all commands" msgstr "Elencare tutti i comandi" -#: src/Console/AppConsole.vala:350 +#: src/Console/AppConsole.vala:355 msgid "Show" msgstr "Mostra" -#: src/Console/AppConsole.vala:355 src/Console/AppConsole.vala:367 +#: src/Console/AppConsole.vala:360 src/Console/AppConsole.vala:372 #, c-format msgid "Kernel %s Available" msgstr "Kernel %s Disponibile" -#: src/Console/AppConsole.vala:357 src/Console/AppConsole.vala:369 +#: src/Console/AppConsole.vala:362 src/Console/AppConsole.vala:374 #: src/Gtk/MainWindow.vala:330 msgid "Install" msgstr "Installa" @@ -439,10 +444,6 @@ msgstr "Secondo(i)" msgid "Display" msgstr "Visualizza" -#: src/Gtk/SettingsDialog.vala:163 -msgid "Hide unstable and RC releases" -msgstr "Nascondi versioni instabili e RC" - #: src/Gtk/SettingsDialog.vala:177 msgid "Show N previous major versions " msgstr "Mostra N versioni principali precedenti" diff --git a/po/ko.po b/po/ko.po index 234b8831..da3393a4 100644 --- a/po/ko.po +++ b/po/ko.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline 1.0.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-08-08 05:32-0400\n" +"POT-Creation-Date: 2021-08-12 21:13-0400\n" "PO-Revision-Date: 2021-06-01 14:57+0900\n" "Last-Translator: Kevin Kim \n" "Language-Team: Korean\n" @@ -50,16 +50,16 @@ msgstr "아래 커널이 삭제됩니다:" msgid "Continue ?" msgstr "계속하시겠습니까?" -#: src/Common/LinuxKernel.vala:642 src/Console/AppConsole.vala:304 +#: src/Common/LinuxKernel.vala:642 src/Console/AppConsole.vala:309 msgid "Latest update" msgstr "최신 업데이트" -#: src/Common/LinuxKernel.vala:653 src/Console/AppConsole.vala:311 +#: src/Common/LinuxKernel.vala:653 src/Console/AppConsole.vala:316 msgid "Latest point update" msgstr "최신 포인트 업데이트" -#: src/Common/LinuxKernel.vala:661 src/Console/AppConsole.vala:316 -#: src/Console/AppConsole.vala:377 +#: src/Common/LinuxKernel.vala:661 src/Console/AppConsole.vala:321 +#: src/Console/AppConsole.vala:382 msgid "No updates found" msgstr "업데이트를 찾을 수 없습니다" @@ -208,82 +208,87 @@ msgstr "지정한 커널 다운로드" msgid "Remove files from application cache" msgstr "프로그램 캐시에서 파일 제거" -#: src/Console/AppConsole.vala:77 -msgid "Show unstable and RC releases" -msgstr "RC, unstable 버전의 커널 보기" - -#: src/Console/AppConsole.vala:79 src/Gtk/AppGtk.vala:151 +#: src/Console/AppConsole.vala:78 src/Gtk/AppGtk.vala:151 msgid "Options" msgstr "옵션" -#: src/Console/AppConsole.vala:81 +#: src/Console/AppConsole.vala:80 +#, fuzzy +msgid "Include unstable and RC releases" +msgstr "unstable, RC 릴리즈 숨김" + +#: src/Console/AppConsole.vala:81 src/Gtk/SettingsDialog.vala:163 +msgid "Hide unstable and RC releases" +msgstr "unstable, RC 릴리즈 숨김" + +#: src/Console/AppConsole.vala:82 msgid "Enable verbose debugging output" msgstr "디버깅을 위한 진행 과정 보이기 활성화" -#: src/Console/AppConsole.vala:82 +#: src/Console/AppConsole.vala:83 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "모든 물음에 자동으로 \"예\"라고 가정 (비 대화형 모드)" -#: src/Console/AppConsole.vala:83 +#: src/Console/AppConsole.vala:84 msgid "Override user" msgstr "사용자 무시" -#: src/Console/AppConsole.vala:86 +#: src/Console/AppConsole.vala:87 msgid "A version string taken from the output of --list" msgstr "--list 의 출력에서 가져온 버전 문자열" -#: src/Console/AppConsole.vala:87 +#: src/Console/AppConsole.vala:88 msgid "" "One or more version strings (comma-separated) taken from the output of --list" msgstr "--list 의 출력에서 가져온 하나 이상의 버전 문자열 (쉼표로 구분)" -#: src/Console/AppConsole.vala:162 src/Gtk/AppGtk.vala:136 +#: src/Console/AppConsole.vala:167 src/Gtk/AppGtk.vala:136 msgid "Unknown option" msgstr "알 수 없는 옵션" -#: src/Console/AppConsole.vala:164 src/Console/AppConsole.vala:256 -#: src/Console/AppConsole.vala:284 +#: src/Console/AppConsole.vala:169 src/Console/AppConsole.vala:261 +#: src/Console/AppConsole.vala:289 msgid "Run" msgstr "실행" -#: src/Console/AppConsole.vala:164 +#: src/Console/AppConsole.vala:169 msgid "to list all options" msgstr "모든 옵션을 나열" -#: src/Console/AppConsole.vala:229 src/Console/AppConsole.vala:264 +#: src/Console/AppConsole.vala:234 src/Console/AppConsole.vala:269 msgid "No kernels specified" msgstr "지정한 커널이 없습니다" -#: src/Console/AppConsole.vala:235 +#: src/Console/AppConsole.vala:240 msgid "Multiple kernels selected for installation. Select only one." msgstr "설치할 커널이 여러개 선택되었습니다. 하나의 커널만 선택하세요." -#: src/Console/AppConsole.vala:253 src/Gtk/MainWindow.vala:100 +#: src/Console/AppConsole.vala:258 src/Gtk/MainWindow.vala:100 msgid "Could not find requested version" msgstr "요청한 버전을 찾을 수 없습니다" -#: src/Console/AppConsole.vala:256 +#: src/Console/AppConsole.vala:261 msgid "and use a version string listed in first column" msgstr "첫 번째 열에 나열된 버전 문자열을 사용" -#: src/Console/AppConsole.vala:283 +#: src/Console/AppConsole.vala:288 msgid "Command not specified" msgstr "지정한 명령어가 없습니다" -#: src/Console/AppConsole.vala:284 +#: src/Console/AppConsole.vala:289 msgid "to list all commands" msgstr "모든 명령어 나열" -#: src/Console/AppConsole.vala:350 +#: src/Console/AppConsole.vala:355 msgid "Show" msgstr "보이기" -#: src/Console/AppConsole.vala:355 src/Console/AppConsole.vala:367 +#: src/Console/AppConsole.vala:360 src/Console/AppConsole.vala:372 #, c-format msgid "Kernel %s Available" msgstr "커널 %s 사용 가능" -#: src/Console/AppConsole.vala:357 src/Console/AppConsole.vala:369 +#: src/Console/AppConsole.vala:362 src/Console/AppConsole.vala:374 #: src/Gtk/MainWindow.vala:330 msgid "Install" msgstr "설치" @@ -435,10 +440,6 @@ msgstr "초" msgid "Display" msgstr "보이기" -#: src/Gtk/SettingsDialog.vala:163 -msgid "Hide unstable and RC releases" -msgstr "unstable, RC 릴리즈 숨김" - #: src/Gtk/SettingsDialog.vala:177 msgid "Show N previous major versions " msgstr "보여질 이전 메이저 버전 수" diff --git a/po/messages.pot b/po/messages.pot index f03c6607..ce9fb627 100644 --- a/po/messages.pot +++ b/po/messages.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline 1.0.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-08-08 05:35-0400\n" +"POT-Creation-Date: 2021-08-12 21:13-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -49,16 +49,16 @@ msgstr "" msgid "Continue ?" msgstr "" -#: src/Common/LinuxKernel.vala:642 src/Console/AppConsole.vala:304 +#: src/Common/LinuxKernel.vala:642 src/Console/AppConsole.vala:309 msgid "Latest update" msgstr "" -#: src/Common/LinuxKernel.vala:653 src/Console/AppConsole.vala:311 +#: src/Common/LinuxKernel.vala:653 src/Console/AppConsole.vala:316 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:661 src/Console/AppConsole.vala:316 -#: src/Console/AppConsole.vala:377 +#: src/Common/LinuxKernel.vala:661 src/Console/AppConsole.vala:321 +#: src/Console/AppConsole.vala:382 msgid "No updates found" msgstr "" @@ -203,82 +203,86 @@ msgstr "" msgid "Remove files from application cache" msgstr "" -#: src/Console/AppConsole.vala:77 -msgid "Show unstable and RC releases" +#: src/Console/AppConsole.vala:78 src/Gtk/AppGtk.vala:151 +msgid "Options" msgstr "" -#: src/Console/AppConsole.vala:79 src/Gtk/AppGtk.vala:151 -msgid "Options" +#: src/Console/AppConsole.vala:80 +msgid "Include unstable and RC releases" msgstr "" -#: src/Console/AppConsole.vala:81 -msgid "Enable verbose debugging output" +#: src/Console/AppConsole.vala:81 src/Gtk/SettingsDialog.vala:163 +msgid "Hide unstable and RC releases" msgstr "" #: src/Console/AppConsole.vala:82 -msgid "Assume Yes for all prompts (non-interactive mode)" +msgid "Enable verbose debugging output" msgstr "" #: src/Console/AppConsole.vala:83 +msgid "Assume Yes for all prompts (non-interactive mode)" +msgstr "" + +#: src/Console/AppConsole.vala:84 msgid "Override user" msgstr "" -#: src/Console/AppConsole.vala:86 +#: src/Console/AppConsole.vala:87 msgid "A version string taken from the output of --list" msgstr "" -#: src/Console/AppConsole.vala:87 +#: src/Console/AppConsole.vala:88 msgid "" "One or more version strings (comma-separated) taken from the output of --list" msgstr "" -#: src/Console/AppConsole.vala:162 src/Gtk/AppGtk.vala:136 +#: src/Console/AppConsole.vala:167 src/Gtk/AppGtk.vala:136 msgid "Unknown option" msgstr "" -#: src/Console/AppConsole.vala:164 src/Console/AppConsole.vala:256 -#: src/Console/AppConsole.vala:284 +#: src/Console/AppConsole.vala:169 src/Console/AppConsole.vala:261 +#: src/Console/AppConsole.vala:289 msgid "Run" msgstr "" -#: src/Console/AppConsole.vala:164 +#: src/Console/AppConsole.vala:169 msgid "to list all options" msgstr "" -#: src/Console/AppConsole.vala:229 src/Console/AppConsole.vala:264 +#: src/Console/AppConsole.vala:234 src/Console/AppConsole.vala:269 msgid "No kernels specified" msgstr "" -#: src/Console/AppConsole.vala:235 +#: src/Console/AppConsole.vala:240 msgid "Multiple kernels selected for installation. Select only one." msgstr "" -#: src/Console/AppConsole.vala:253 src/Gtk/MainWindow.vala:100 +#: src/Console/AppConsole.vala:258 src/Gtk/MainWindow.vala:100 msgid "Could not find requested version" msgstr "" -#: src/Console/AppConsole.vala:256 +#: src/Console/AppConsole.vala:261 msgid "and use a version string listed in first column" msgstr "" -#: src/Console/AppConsole.vala:283 +#: src/Console/AppConsole.vala:288 msgid "Command not specified" msgstr "" -#: src/Console/AppConsole.vala:284 +#: src/Console/AppConsole.vala:289 msgid "to list all commands" msgstr "" -#: src/Console/AppConsole.vala:350 +#: src/Console/AppConsole.vala:355 msgid "Show" msgstr "" -#: src/Console/AppConsole.vala:355 src/Console/AppConsole.vala:367 +#: src/Console/AppConsole.vala:360 src/Console/AppConsole.vala:372 #, c-format msgid "Kernel %s Available" msgstr "" -#: src/Console/AppConsole.vala:357 src/Console/AppConsole.vala:369 +#: src/Console/AppConsole.vala:362 src/Console/AppConsole.vala:374 #: src/Gtk/MainWindow.vala:330 msgid "Install" msgstr "" @@ -430,10 +434,6 @@ msgstr "" msgid "Display" msgstr "" -#: src/Gtk/SettingsDialog.vala:163 -msgid "Hide unstable and RC releases" -msgstr "" - #: src/Gtk/SettingsDialog.vala:177 msgid "Show N previous major versions " msgstr "" diff --git a/po/nl.po b/po/nl.po index 463b8426..8075af64 100644 --- a/po/nl.po +++ b/po/nl.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-08-08 05:32-0400\n" +"POT-Creation-Date: 2021-08-12 21:13-0400\n" "PO-Revision-Date: 2020-08-23 13:55+0200\n" "Last-Translator: Heimen Stoffels \n" "Language-Team: \n" @@ -45,16 +45,16 @@ msgstr "De volgende kernels worden verwijderd:" msgid "Continue ?" msgstr "Wil je doorgaan?" -#: src/Common/LinuxKernel.vala:642 src/Console/AppConsole.vala:304 +#: src/Common/LinuxKernel.vala:642 src/Console/AppConsole.vala:309 msgid "Latest update" msgstr "Recentste update" -#: src/Common/LinuxKernel.vala:653 src/Console/AppConsole.vala:311 +#: src/Common/LinuxKernel.vala:653 src/Console/AppConsole.vala:316 msgid "Latest point update" msgstr "Recentste puntupdate" -#: src/Common/LinuxKernel.vala:661 src/Console/AppConsole.vala:316 -#: src/Console/AppConsole.vala:377 +#: src/Common/LinuxKernel.vala:661 src/Console/AppConsole.vala:321 +#: src/Console/AppConsole.vala:382 msgid "No updates found" msgstr "Geen updates gevonden" @@ -206,85 +206,90 @@ msgstr "Opgegeven kernels downloaden" msgid "Remove files from application cache" msgstr "Bestanden verwijderen uit programmacache" -#: src/Console/AppConsole.vala:77 -msgid "Show unstable and RC releases" -msgstr "Instabiele en rc-uitgaven tonen" - -#: src/Console/AppConsole.vala:79 src/Gtk/AppGtk.vala:151 +#: src/Console/AppConsole.vala:78 src/Gtk/AppGtk.vala:151 msgid "Options" msgstr "Opties" -#: src/Console/AppConsole.vala:81 +#: src/Console/AppConsole.vala:80 +#, fuzzy +msgid "Include unstable and RC releases" +msgstr "Instabiele en rc-uitgaven verbergen" + +#: src/Console/AppConsole.vala:81 src/Gtk/SettingsDialog.vala:163 +msgid "Hide unstable and RC releases" +msgstr "Instabiele en rc-uitgaven verbergen" + +#: src/Console/AppConsole.vala:82 msgid "Enable verbose debugging output" msgstr "Foutopsporingsinformatie vastleggen" -#: src/Console/AppConsole.vala:82 +#: src/Console/AppConsole.vala:83 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "Ja op alles (in de niet-interactieve modus)" -#: src/Console/AppConsole.vala:83 +#: src/Console/AppConsole.vala:84 msgid "Override user" msgstr "Gebruiker overmeesteren" -#: src/Console/AppConsole.vala:86 +#: src/Console/AppConsole.vala:87 msgid "A version string taken from the output of --list" msgstr "Een versietekenreeks uit de uitvoer van --list" -#: src/Console/AppConsole.vala:87 +#: src/Console/AppConsole.vala:88 msgid "" "One or more version strings (comma-separated) taken from the output of --list" msgstr "" "Eén of meerdere versietekenreeksen (kommagescheiden) uit de uitvoer van --" "list" -#: src/Console/AppConsole.vala:162 src/Gtk/AppGtk.vala:136 +#: src/Console/AppConsole.vala:167 src/Gtk/AppGtk.vala:136 msgid "Unknown option" msgstr "Onbekende optie" -#: src/Console/AppConsole.vala:164 src/Console/AppConsole.vala:256 -#: src/Console/AppConsole.vala:284 +#: src/Console/AppConsole.vala:169 src/Console/AppConsole.vala:261 +#: src/Console/AppConsole.vala:289 msgid "Run" msgstr "Uitvoeren" -#: src/Console/AppConsole.vala:164 +#: src/Console/AppConsole.vala:169 msgid "to list all options" msgstr "om alle opties te tonen" -#: src/Console/AppConsole.vala:229 src/Console/AppConsole.vala:264 +#: src/Console/AppConsole.vala:234 src/Console/AppConsole.vala:269 msgid "No kernels specified" msgstr "Geen kernels opgegeven" -#: src/Console/AppConsole.vala:235 +#: src/Console/AppConsole.vala:240 msgid "Multiple kernels selected for installation. Select only one." msgstr "" "Er zijn meerdere te installeren kernels geselecteerd. Selecteer er één." -#: src/Console/AppConsole.vala:253 src/Gtk/MainWindow.vala:100 +#: src/Console/AppConsole.vala:258 src/Gtk/MainWindow.vala:100 msgid "Could not find requested version" msgstr "De vereiste versie kan niet worden gevonden" -#: src/Console/AppConsole.vala:256 +#: src/Console/AppConsole.vala:261 msgid "and use a version string listed in first column" msgstr "en gebruik een versietekenreeks in de eerste kolom" -#: src/Console/AppConsole.vala:283 +#: src/Console/AppConsole.vala:288 msgid "Command not specified" msgstr "Geen opdracht opgegeven" -#: src/Console/AppConsole.vala:284 +#: src/Console/AppConsole.vala:289 msgid "to list all commands" msgstr "om alle opdrachten te tonen" -#: src/Console/AppConsole.vala:350 +#: src/Console/AppConsole.vala:355 msgid "Show" msgstr "Tonen" -#: src/Console/AppConsole.vala:355 src/Console/AppConsole.vala:367 +#: src/Console/AppConsole.vala:360 src/Console/AppConsole.vala:372 #, c-format msgid "Kernel %s Available" msgstr "Kernel %s is beschikbaar" -#: src/Console/AppConsole.vala:357 src/Console/AppConsole.vala:369 +#: src/Console/AppConsole.vala:362 src/Console/AppConsole.vala:374 #: src/Gtk/MainWindow.vala:330 msgid "Install" msgstr "Installeren" @@ -436,10 +441,6 @@ msgstr "seconde(n)" msgid "Display" msgstr "Weergave" -#: src/Gtk/SettingsDialog.vala:163 -msgid "Hide unstable and RC releases" -msgstr "Instabiele en rc-uitgaven verbergen" - #: src/Gtk/SettingsDialog.vala:177 msgid "Show N previous major versions " msgstr "X aantal grote updates tonen " diff --git a/po/pl.po b/po/pl.po index 6b85fccc..108a0e68 100644 --- a/po/pl.po +++ b/po/pl.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-08-08 05:32-0400\n" +"POT-Creation-Date: 2021-08-12 21:13-0400\n" "PO-Revision-Date: 2017-08-12 15:26+0200\n" "Last-Translator: Waldemar Konik \n" "Language-Team: Polish\n" @@ -47,16 +47,16 @@ msgstr "" msgid "Continue ?" msgstr "" -#: src/Common/LinuxKernel.vala:642 src/Console/AppConsole.vala:304 +#: src/Common/LinuxKernel.vala:642 src/Console/AppConsole.vala:309 msgid "Latest update" msgstr "" -#: src/Common/LinuxKernel.vala:653 src/Console/AppConsole.vala:311 +#: src/Common/LinuxKernel.vala:653 src/Console/AppConsole.vala:316 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:661 src/Console/AppConsole.vala:316 -#: src/Console/AppConsole.vala:377 +#: src/Common/LinuxKernel.vala:661 src/Console/AppConsole.vala:321 +#: src/Console/AppConsole.vala:382 msgid "No updates found" msgstr "Nie znaleziono aktualizacji" @@ -213,86 +213,90 @@ msgstr "Pobierz pakiety dla wybranego jądra" msgid "Remove files from application cache" msgstr "Usuń pliki z pamięci podręcznej aplikacji" -#: src/Console/AppConsole.vala:77 +#: src/Console/AppConsole.vala:78 src/Gtk/AppGtk.vala:151 +msgid "Options" +msgstr "Opcje" + +#: src/Console/AppConsole.vala:80 #, fuzzy -msgid "Show unstable and RC releases" +msgid "Include unstable and RC releases" msgstr "Ukryj wydania niestabilne i RC" -#: src/Console/AppConsole.vala:79 src/Gtk/AppGtk.vala:151 -msgid "Options" -msgstr "Opcje" +#: src/Console/AppConsole.vala:81 src/Gtk/SettingsDialog.vala:163 +msgid "Hide unstable and RC releases" +msgstr "Ukryj wydania niestabilne i RC" -#: src/Console/AppConsole.vala:81 +#: src/Console/AppConsole.vala:82 msgid "Enable verbose debugging output" msgstr "" -#: src/Console/AppConsole.vala:82 +#: src/Console/AppConsole.vala:83 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "" -#: src/Console/AppConsole.vala:83 +#: src/Console/AppConsole.vala:84 msgid "Override user" msgstr "" -#: src/Console/AppConsole.vala:86 +#: src/Console/AppConsole.vala:87 msgid "A version string taken from the output of --list" msgstr "" -#: src/Console/AppConsole.vala:87 +#: src/Console/AppConsole.vala:88 msgid "" "One or more version strings (comma-separated) taken from the output of --list" msgstr "" -#: src/Console/AppConsole.vala:162 src/Gtk/AppGtk.vala:136 +#: src/Console/AppConsole.vala:167 src/Gtk/AppGtk.vala:136 msgid "Unknown option" msgstr "Nieznana opcja" -#: src/Console/AppConsole.vala:164 src/Console/AppConsole.vala:256 -#: src/Console/AppConsole.vala:284 +#: src/Console/AppConsole.vala:169 src/Console/AppConsole.vala:261 +#: src/Console/AppConsole.vala:289 #, fuzzy msgid "Run" msgstr "Uruchomiony" -#: src/Console/AppConsole.vala:164 +#: src/Console/AppConsole.vala:169 #, fuzzy msgid "to list all options" msgstr "Pokaż wszystkie opcje" -#: src/Console/AppConsole.vala:229 src/Console/AppConsole.vala:264 +#: src/Console/AppConsole.vala:234 src/Console/AppConsole.vala:269 msgid "No kernels specified" msgstr "" -#: src/Console/AppConsole.vala:235 +#: src/Console/AppConsole.vala:240 msgid "Multiple kernels selected for installation. Select only one." msgstr "Wybrano kilka jąder do instalacji. Wybierz tylko jedno." -#: src/Console/AppConsole.vala:253 src/Gtk/MainWindow.vala:100 +#: src/Console/AppConsole.vala:258 src/Gtk/MainWindow.vala:100 msgid "Could not find requested version" msgstr "Nie można odnaleźć żądanej wersji" -#: src/Console/AppConsole.vala:256 +#: src/Console/AppConsole.vala:261 msgid "and use a version string listed in first column" msgstr "" -#: src/Console/AppConsole.vala:283 +#: src/Console/AppConsole.vala:288 msgid "Command not specified" msgstr "" -#: src/Console/AppConsole.vala:284 +#: src/Console/AppConsole.vala:289 #, fuzzy msgid "to list all commands" msgstr "Pokaż wszystkie opcje" -#: src/Console/AppConsole.vala:350 +#: src/Console/AppConsole.vala:355 msgid "Show" msgstr "" -#: src/Console/AppConsole.vala:355 src/Console/AppConsole.vala:367 +#: src/Console/AppConsole.vala:360 src/Console/AppConsole.vala:372 #, fuzzy, c-format msgid "Kernel %s Available" msgstr "Dostępne pakiety" -#: src/Console/AppConsole.vala:357 src/Console/AppConsole.vala:369 +#: src/Console/AppConsole.vala:362 src/Console/AppConsole.vala:374 #: src/Gtk/MainWindow.vala:330 msgid "Install" msgstr "Zainstaluj" @@ -447,10 +451,6 @@ msgstr "" msgid "Display" msgstr "Pokaż" -#: src/Gtk/SettingsDialog.vala:163 -msgid "Hide unstable and RC releases" -msgstr "Ukryj wydania niestabilne i RC" - #: src/Gtk/SettingsDialog.vala:177 msgid "Show N previous major versions " msgstr "" diff --git a/po/ru.po b/po/ru.po index 931a6407..d81d481c 100644 --- a/po/ru.po +++ b/po/ru.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-08-08 05:32-0400\n" +"POT-Creation-Date: 2021-08-12 21:13-0400\n" "PO-Revision-Date: 2016-12-13 16:46+0300\n" "Last-Translator: Faust3000 \n" "Language-Team: Russian \n" @@ -48,16 +48,16 @@ msgstr "" msgid "Continue ?" msgstr "" -#: src/Common/LinuxKernel.vala:642 src/Console/AppConsole.vala:304 +#: src/Common/LinuxKernel.vala:642 src/Console/AppConsole.vala:309 msgid "Latest update" msgstr "" -#: src/Common/LinuxKernel.vala:653 src/Console/AppConsole.vala:311 +#: src/Common/LinuxKernel.vala:653 src/Console/AppConsole.vala:316 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:661 src/Console/AppConsole.vala:316 -#: src/Console/AppConsole.vala:377 +#: src/Common/LinuxKernel.vala:661 src/Console/AppConsole.vala:321 +#: src/Console/AppConsole.vala:382 msgid "No updates found" msgstr "Обновлений не найдено" @@ -217,86 +217,90 @@ msgstr "Скачать пакеты для указанного ядра" msgid "Remove files from application cache" msgstr "Удалить файлы из кэша программы" -#: src/Console/AppConsole.vala:77 +#: src/Console/AppConsole.vala:78 src/Gtk/AppGtk.vala:151 +msgid "Options" +msgstr "Параметры" + +#: src/Console/AppConsole.vala:80 #, fuzzy -msgid "Show unstable and RC releases" +msgid "Include unstable and RC releases" msgstr "Скрыть нестабильные и релиз-кандидат версии" -#: src/Console/AppConsole.vala:79 src/Gtk/AppGtk.vala:151 -msgid "Options" -msgstr "Параметры" +#: src/Console/AppConsole.vala:81 src/Gtk/SettingsDialog.vala:163 +msgid "Hide unstable and RC releases" +msgstr "Скрыть нестабильные и релиз-кандидат версии" -#: src/Console/AppConsole.vala:81 +#: src/Console/AppConsole.vala:82 msgid "Enable verbose debugging output" msgstr "" -#: src/Console/AppConsole.vala:82 +#: src/Console/AppConsole.vala:83 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "" -#: src/Console/AppConsole.vala:83 +#: src/Console/AppConsole.vala:84 msgid "Override user" msgstr "" -#: src/Console/AppConsole.vala:86 +#: src/Console/AppConsole.vala:87 msgid "A version string taken from the output of --list" msgstr "" -#: src/Console/AppConsole.vala:87 +#: src/Console/AppConsole.vala:88 msgid "" "One or more version strings (comma-separated) taken from the output of --list" msgstr "" -#: src/Console/AppConsole.vala:162 src/Gtk/AppGtk.vala:136 +#: src/Console/AppConsole.vala:167 src/Gtk/AppGtk.vala:136 msgid "Unknown option" msgstr "Неизвестный параметр" -#: src/Console/AppConsole.vala:164 src/Console/AppConsole.vala:256 -#: src/Console/AppConsole.vala:284 +#: src/Console/AppConsole.vala:169 src/Console/AppConsole.vala:261 +#: src/Console/AppConsole.vala:289 #, fuzzy msgid "Run" msgstr "Используется" -#: src/Console/AppConsole.vala:164 +#: src/Console/AppConsole.vala:169 #, fuzzy msgid "to list all options" msgstr "Показать все параметры" -#: src/Console/AppConsole.vala:229 src/Console/AppConsole.vala:264 +#: src/Console/AppConsole.vala:234 src/Console/AppConsole.vala:269 msgid "No kernels specified" msgstr "" -#: src/Console/AppConsole.vala:235 +#: src/Console/AppConsole.vala:240 msgid "Multiple kernels selected for installation. Select only one." msgstr "" -#: src/Console/AppConsole.vala:253 src/Gtk/MainWindow.vala:100 +#: src/Console/AppConsole.vala:258 src/Gtk/MainWindow.vala:100 msgid "Could not find requested version" msgstr "Не удалось найти запрошенную версию" -#: src/Console/AppConsole.vala:256 +#: src/Console/AppConsole.vala:261 msgid "and use a version string listed in first column" msgstr "" -#: src/Console/AppConsole.vala:283 +#: src/Console/AppConsole.vala:288 msgid "Command not specified" msgstr "" -#: src/Console/AppConsole.vala:284 +#: src/Console/AppConsole.vala:289 #, fuzzy msgid "to list all commands" msgstr "Показать все параметры" -#: src/Console/AppConsole.vala:350 +#: src/Console/AppConsole.vala:355 msgid "Show" msgstr "" -#: src/Console/AppConsole.vala:355 src/Console/AppConsole.vala:367 +#: src/Console/AppConsole.vala:360 src/Console/AppConsole.vala:372 #, fuzzy, c-format msgid "Kernel %s Available" msgstr "Установлено" -#: src/Console/AppConsole.vala:357 src/Console/AppConsole.vala:369 +#: src/Console/AppConsole.vala:362 src/Console/AppConsole.vala:374 #: src/Gtk/MainWindow.vala:330 msgid "Install" msgstr "Установить" @@ -451,10 +455,6 @@ msgstr "" msgid "Display" msgstr "Вид" -#: src/Gtk/SettingsDialog.vala:163 -msgid "Hide unstable and RC releases" -msgstr "Скрыть нестабильные и релиз-кандидат версии" - #: src/Gtk/SettingsDialog.vala:177 msgid "Show N previous major versions " msgstr "" diff --git a/po/sv.po b/po/sv.po index 8b496e56..f081adfc 100644 --- a/po/sv.po +++ b/po/sv.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-08-08 05:32-0400\n" +"POT-Creation-Date: 2021-08-12 21:13-0400\n" "PO-Revision-Date: 2018-01-13 16:56+0100\n" "Last-Translator: Åke Engelbrektson \n" "Language-Team: Svenska Språkfiler \n" @@ -49,16 +49,16 @@ msgstr "" msgid "Continue ?" msgstr "" -#: src/Common/LinuxKernel.vala:642 src/Console/AppConsole.vala:304 +#: src/Common/LinuxKernel.vala:642 src/Console/AppConsole.vala:309 msgid "Latest update" msgstr "" -#: src/Common/LinuxKernel.vala:653 src/Console/AppConsole.vala:311 +#: src/Common/LinuxKernel.vala:653 src/Console/AppConsole.vala:316 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:661 src/Console/AppConsole.vala:316 -#: src/Console/AppConsole.vala:377 +#: src/Common/LinuxKernel.vala:661 src/Console/AppConsole.vala:321 +#: src/Console/AppConsole.vala:382 msgid "No updates found" msgstr "Inga uppdateringar hittades" @@ -213,86 +213,90 @@ msgstr "Ladda ner paket för specificerad kärna" msgid "Remove files from application cache" msgstr "Ta bort filer från program-cachen" -#: src/Console/AppConsole.vala:77 +#: src/Console/AppConsole.vala:78 src/Gtk/AppGtk.vala:151 +msgid "Options" +msgstr "Alternativ" + +#: src/Console/AppConsole.vala:80 #, fuzzy -msgid "Show unstable and RC releases" +msgid "Include unstable and RC releases" msgstr "Dölj instabila- och RC-publiceringar" -#: src/Console/AppConsole.vala:79 src/Gtk/AppGtk.vala:151 -msgid "Options" -msgstr "Alternativ" +#: src/Console/AppConsole.vala:81 src/Gtk/SettingsDialog.vala:163 +msgid "Hide unstable and RC releases" +msgstr "Dölj instabila- och RC-publiceringar" -#: src/Console/AppConsole.vala:81 +#: src/Console/AppConsole.vala:82 msgid "Enable verbose debugging output" msgstr "" -#: src/Console/AppConsole.vala:82 +#: src/Console/AppConsole.vala:83 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "" -#: src/Console/AppConsole.vala:83 +#: src/Console/AppConsole.vala:84 msgid "Override user" msgstr "" -#: src/Console/AppConsole.vala:86 +#: src/Console/AppConsole.vala:87 msgid "A version string taken from the output of --list" msgstr "" -#: src/Console/AppConsole.vala:87 +#: src/Console/AppConsole.vala:88 msgid "" "One or more version strings (comma-separated) taken from the output of --list" msgstr "" -#: src/Console/AppConsole.vala:162 src/Gtk/AppGtk.vala:136 +#: src/Console/AppConsole.vala:167 src/Gtk/AppGtk.vala:136 msgid "Unknown option" msgstr "Okänt alternativ" -#: src/Console/AppConsole.vala:164 src/Console/AppConsole.vala:256 -#: src/Console/AppConsole.vala:284 +#: src/Console/AppConsole.vala:169 src/Console/AppConsole.vala:261 +#: src/Console/AppConsole.vala:289 #, fuzzy msgid "Run" msgstr "Körs" -#: src/Console/AppConsole.vala:164 +#: src/Console/AppConsole.vala:169 #, fuzzy msgid "to list all options" msgstr "Visa alla alternativ" -#: src/Console/AppConsole.vala:229 src/Console/AppConsole.vala:264 +#: src/Console/AppConsole.vala:234 src/Console/AppConsole.vala:269 msgid "No kernels specified" msgstr "" -#: src/Console/AppConsole.vala:235 +#: src/Console/AppConsole.vala:240 msgid "Multiple kernels selected for installation. Select only one." msgstr "Flera kärnor valda för installation. Välj endast en." -#: src/Console/AppConsole.vala:253 src/Gtk/MainWindow.vala:100 +#: src/Console/AppConsole.vala:258 src/Gtk/MainWindow.vala:100 msgid "Could not find requested version" msgstr "Kunde inte hitta efterfrågad version" -#: src/Console/AppConsole.vala:256 +#: src/Console/AppConsole.vala:261 msgid "and use a version string listed in first column" msgstr "" -#: src/Console/AppConsole.vala:283 +#: src/Console/AppConsole.vala:288 msgid "Command not specified" msgstr "" -#: src/Console/AppConsole.vala:284 +#: src/Console/AppConsole.vala:289 #, fuzzy msgid "to list all commands" msgstr "Visa alla alternativ" -#: src/Console/AppConsole.vala:350 +#: src/Console/AppConsole.vala:355 msgid "Show" msgstr "" -#: src/Console/AppConsole.vala:355 src/Console/AppConsole.vala:367 +#: src/Console/AppConsole.vala:360 src/Console/AppConsole.vala:372 #, fuzzy, c-format msgid "Kernel %s Available" msgstr "Tillgängliga paket" -#: src/Console/AppConsole.vala:357 src/Console/AppConsole.vala:369 +#: src/Console/AppConsole.vala:362 src/Console/AppConsole.vala:374 #: src/Gtk/MainWindow.vala:330 msgid "Install" msgstr "Installera" @@ -447,10 +451,6 @@ msgstr "" msgid "Display" msgstr "Visa" -#: src/Gtk/SettingsDialog.vala:163 -msgid "Hide unstable and RC releases" -msgstr "Dölj instabila- och RC-publiceringar" - #: src/Gtk/SettingsDialog.vala:177 msgid "Show N previous major versions " msgstr "" diff --git a/po/tr.po b/po/tr.po index 4d4b2798..ed33f631 100644 --- a/po/tr.po +++ b/po/tr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-08-08 05:32-0400\n" +"POT-Creation-Date: 2021-08-12 21:13-0400\n" "PO-Revision-Date: 2020-03-10 15:59+0300\n" "Last-Translator: Gökhan GÖKKAYA \n" "Language-Team: Turkish\n" @@ -45,16 +45,16 @@ msgstr "Aşağıdaki çekirdekler silinecek:" msgid "Continue ?" msgstr "Devam et ?" -#: src/Common/LinuxKernel.vala:642 src/Console/AppConsole.vala:304 +#: src/Common/LinuxKernel.vala:642 src/Console/AppConsole.vala:309 msgid "Latest update" msgstr "Son güncelleme" -#: src/Common/LinuxKernel.vala:653 src/Console/AppConsole.vala:311 +#: src/Common/LinuxKernel.vala:653 src/Console/AppConsole.vala:316 msgid "Latest point update" msgstr "Son güncelleme noktası" -#: src/Common/LinuxKernel.vala:661 src/Console/AppConsole.vala:316 -#: src/Console/AppConsole.vala:377 +#: src/Common/LinuxKernel.vala:661 src/Console/AppConsole.vala:321 +#: src/Console/AppConsole.vala:382 msgid "No updates found" msgstr "Güncelleme bulunamadı" @@ -207,85 +207,90 @@ msgstr "Belirtilen çekirdek için paketleri indir" msgid "Remove files from application cache" msgstr "Dosyaları uygulama önbelleğinden sil" -#: src/Console/AppConsole.vala:77 -msgid "Show unstable and RC releases" -msgstr "Kararsız ve RC sürümleri göster" - -#: src/Console/AppConsole.vala:79 src/Gtk/AppGtk.vala:151 +#: src/Console/AppConsole.vala:78 src/Gtk/AppGtk.vala:151 msgid "Options" msgstr "Seçenekler" -#: src/Console/AppConsole.vala:81 +#: src/Console/AppConsole.vala:80 +#, fuzzy +msgid "Include unstable and RC releases" +msgstr "Kararsız ve RC sürümleri gizle" + +#: src/Console/AppConsole.vala:81 src/Gtk/SettingsDialog.vala:163 +msgid "Hide unstable and RC releases" +msgstr "Kararsız ve RC sürümleri gizle" + +#: src/Console/AppConsole.vala:82 msgid "Enable verbose debugging output" msgstr "Ayrıntılı hata ayıklama çıktısını etkinleştir" -#: src/Console/AppConsole.vala:82 +#: src/Console/AppConsole.vala:83 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "Tüm istemler için Evet'i kabul edin (etkileşimsiz kip)" -#: src/Console/AppConsole.vala:83 +#: src/Console/AppConsole.vala:84 msgid "Override user" msgstr "Kullanıcıyı geçersiz kıl" -#: src/Console/AppConsole.vala:86 +#: src/Console/AppConsole.vala:87 msgid "A version string taken from the output of --list" msgstr "" -#: src/Console/AppConsole.vala:87 +#: src/Console/AppConsole.vala:88 msgid "" "One or more version strings (comma-separated) taken from the output of --list" msgstr "" -#: src/Console/AppConsole.vala:162 src/Gtk/AppGtk.vala:136 +#: src/Console/AppConsole.vala:167 src/Gtk/AppGtk.vala:136 msgid "Unknown option" msgstr "Bilinmeyen seçenek" -#: src/Console/AppConsole.vala:164 src/Console/AppConsole.vala:256 -#: src/Console/AppConsole.vala:284 +#: src/Console/AppConsole.vala:169 src/Console/AppConsole.vala:261 +#: src/Console/AppConsole.vala:289 #, fuzzy msgid "Run" msgstr "Çalıştır '" -#: src/Console/AppConsole.vala:164 +#: src/Console/AppConsole.vala:169 #, fuzzy msgid "to list all options" msgstr "Tüm seçenekleri göster" -#: src/Console/AppConsole.vala:229 src/Console/AppConsole.vala:264 +#: src/Console/AppConsole.vala:234 src/Console/AppConsole.vala:269 msgid "No kernels specified" msgstr "Belirtilen çekirdek yok" -#: src/Console/AppConsole.vala:235 +#: src/Console/AppConsole.vala:240 msgid "Multiple kernels selected for installation. Select only one." msgstr "Kurulum için çoklu çekirdek seçildi. Sadece bir tane seçiniz." -#: src/Console/AppConsole.vala:253 src/Gtk/MainWindow.vala:100 +#: src/Console/AppConsole.vala:258 src/Gtk/MainWindow.vala:100 msgid "Could not find requested version" msgstr "İstenen sürüm bulunamadı" -#: src/Console/AppConsole.vala:256 +#: src/Console/AppConsole.vala:261 msgid "and use a version string listed in first column" msgstr "" -#: src/Console/AppConsole.vala:283 +#: src/Console/AppConsole.vala:288 msgid "Command not specified" msgstr "Komut belirtilmedi" -#: src/Console/AppConsole.vala:284 +#: src/Console/AppConsole.vala:289 #, fuzzy msgid "to list all commands" msgstr "Tüm seçenekleri göster" -#: src/Console/AppConsole.vala:350 +#: src/Console/AppConsole.vala:355 msgid "Show" msgstr "" -#: src/Console/AppConsole.vala:355 src/Console/AppConsole.vala:367 +#: src/Console/AppConsole.vala:360 src/Console/AppConsole.vala:372 #, fuzzy, c-format msgid "Kernel %s Available" msgstr "Mevcut Paketler" -#: src/Console/AppConsole.vala:357 src/Console/AppConsole.vala:369 +#: src/Console/AppConsole.vala:362 src/Console/AppConsole.vala:374 #: src/Gtk/MainWindow.vala:330 msgid "Install" msgstr "Kur" @@ -441,10 +446,6 @@ msgstr "saniye" msgid "Display" msgstr "Gösterim" -#: src/Gtk/SettingsDialog.vala:163 -msgid "Hide unstable and RC releases" -msgstr "Kararsız ve RC sürümleri gizle" - #: src/Gtk/SettingsDialog.vala:177 msgid "Show N previous major versions " msgstr "Önceki ana sürümleri gösterme sayısı " diff --git a/po/uk.po b/po/uk.po index 8062c28e..4600d6be 100644 --- a/po/uk.po +++ b/po/uk.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-08-08 05:32-0400\n" +"POT-Creation-Date: 2021-08-12 21:13-0400\n" "PO-Revision-Date: 2019-07-25 11:00+0300\n" "Last-Translator: Serhii Golovko \n" "Language-Team: Ukranian \n" @@ -45,16 +45,16 @@ msgstr "Наступні ядра будуть видалені:" msgid "Continue ?" msgstr "Продовжувати ?" -#: src/Common/LinuxKernel.vala:642 src/Console/AppConsole.vala:304 +#: src/Common/LinuxKernel.vala:642 src/Console/AppConsole.vala:309 msgid "Latest update" msgstr "Останнє оновлення" -#: src/Common/LinuxKernel.vala:653 src/Console/AppConsole.vala:311 +#: src/Common/LinuxKernel.vala:653 src/Console/AppConsole.vala:316 msgid "Latest point update" msgstr "Остання точка оновлення" -#: src/Common/LinuxKernel.vala:661 src/Console/AppConsole.vala:316 -#: src/Console/AppConsole.vala:377 +#: src/Common/LinuxKernel.vala:661 src/Console/AppConsole.vala:321 +#: src/Console/AppConsole.vala:382 msgid "No updates found" msgstr "Оновлень не знайдено" @@ -207,87 +207,92 @@ msgstr "Завантажте конкретні ядра" msgid "Remove files from application cache" msgstr "Видалити файли з кешу програми" -#: src/Console/AppConsole.vala:77 -msgid "Show unstable and RC releases" -msgstr "Приховати нестабільні і реліз-кандидат версії" - -#: src/Console/AppConsole.vala:79 src/Gtk/AppGtk.vala:151 +#: src/Console/AppConsole.vala:78 src/Gtk/AppGtk.vala:151 msgid "Options" msgstr "Параметри" -#: src/Console/AppConsole.vala:81 +#: src/Console/AppConsole.vala:80 +#, fuzzy +msgid "Include unstable and RC releases" +msgstr "Приховати нестабільні і реліз-кандидат версії" + +#: src/Console/AppConsole.vala:81 src/Gtk/SettingsDialog.vala:163 +msgid "Hide unstable and RC releases" +msgstr "Приховати нестабільні і реліз-кандидат версії" + +#: src/Console/AppConsole.vala:82 msgid "Enable verbose debugging output" msgstr "Увімкнути багатослівний вихід налагодження" -#: src/Console/AppConsole.vala:82 +#: src/Console/AppConsole.vala:83 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "Припустимо, Так для всіх підказок (неінтерактивний режим)" -#: src/Console/AppConsole.vala:83 +#: src/Console/AppConsole.vala:84 msgid "Override user" msgstr "Перевизначення користувача" -#: src/Console/AppConsole.vala:86 +#: src/Console/AppConsole.vala:87 msgid "A version string taken from the output of --list" msgstr "Рядок версій, взятий з виводу --list" -#: src/Console/AppConsole.vala:87 +#: src/Console/AppConsole.vala:88 #, fuzzy msgid "" "One or more version strings (comma-separated) taken from the output of --list" msgstr "" "Одна або кілька рядків версії (розділені комами), взяті з виводу --list" -#: src/Console/AppConsole.vala:162 src/Gtk/AppGtk.vala:136 +#: src/Console/AppConsole.vala:167 src/Gtk/AppGtk.vala:136 msgid "Unknown option" msgstr "Невідомий параметр" -#: src/Console/AppConsole.vala:164 src/Console/AppConsole.vala:256 -#: src/Console/AppConsole.vala:284 +#: src/Console/AppConsole.vala:169 src/Console/AppConsole.vala:261 +#: src/Console/AppConsole.vala:289 #, fuzzy msgid "Run" msgstr "Запуск" -#: src/Console/AppConsole.vala:164 +#: src/Console/AppConsole.vala:169 #, fuzzy msgid "to list all options" msgstr "Показати усі параметри" -#: src/Console/AppConsole.vala:229 src/Console/AppConsole.vala:264 +#: src/Console/AppConsole.vala:234 src/Console/AppConsole.vala:269 msgid "No kernels specified" msgstr "Ядра не вказані" -#: src/Console/AppConsole.vala:235 +#: src/Console/AppConsole.vala:240 msgid "Multiple kernels selected for installation. Select only one." msgstr "Для встановлення вибрано кілька ядер. Виберіть лише одну." -#: src/Console/AppConsole.vala:253 src/Gtk/MainWindow.vala:100 +#: src/Console/AppConsole.vala:258 src/Gtk/MainWindow.vala:100 msgid "Could not find requested version" msgstr "Не вдалося знайти запитувану версію" -#: src/Console/AppConsole.vala:256 +#: src/Console/AppConsole.vala:261 msgid "and use a version string listed in first column" msgstr "і використовувати рядок версій, вказаний у першому стовпці" -#: src/Console/AppConsole.vala:283 +#: src/Console/AppConsole.vala:288 msgid "Command not specified" msgstr "Команда не вказана" -#: src/Console/AppConsole.vala:284 +#: src/Console/AppConsole.vala:289 #, fuzzy msgid "to list all commands" msgstr "Показати усі параметри" -#: src/Console/AppConsole.vala:350 +#: src/Console/AppConsole.vala:355 msgid "Show" msgstr "Показати" -#: src/Console/AppConsole.vala:355 src/Console/AppConsole.vala:367 +#: src/Console/AppConsole.vala:360 src/Console/AppConsole.vala:372 #, fuzzy, c-format msgid "Kernel %s Available" msgstr "Доступні пакети" -#: src/Console/AppConsole.vala:357 src/Console/AppConsole.vala:369 +#: src/Console/AppConsole.vala:362 src/Console/AppConsole.vala:374 #: src/Gtk/MainWindow.vala:330 msgid "Install" msgstr "Встановити" @@ -445,10 +450,6 @@ msgstr "Секунда(и)" msgid "Display" msgstr "Показ" -#: src/Gtk/SettingsDialog.vala:163 -msgid "Hide unstable and RC releases" -msgstr "Приховати нестабільні і реліз-кандидат версії" - #: src/Gtk/SettingsDialog.vala:177 msgid "Show N previous major versions " msgstr "Показати N попередніх основних версій" diff --git a/src/Common/LinuxKernel.vala b/src/Common/LinuxKernel.vala index 91e3bded..894a22ee 100644 --- a/src/Common/LinuxKernel.vala +++ b/src/Common/LinuxKernel.vala @@ -411,7 +411,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { log_msg("Found installed" + ": %s".printf(pkg.version_installed)); - string pkern_name = "%s".printf(pkg.version_installed); + string pkern_name = pkg.version_installed; var pkern = new LinuxKernel(pkern_name, false); pkern.is_installed = true; pkern.set_apt_pkg_list(); diff --git a/src/Console/AppConsole.vala b/src/Console/AppConsole.vala index 67867055..a58e52b1 100644 --- a/src/Console/AppConsole.vala +++ b/src/Console/AppConsole.vala @@ -74,10 +74,11 @@ public class AppConsole : GLib.Object { + " --purge-old-kernels " + _("Remove installed kernels older than running kernel") + "\n" + " --download " + _("Download specified kernels") + "(2)\n" + " --clean-cache " + _("Remove files from application cache") + "\n" - + " --show-unstable " + _("Show unstable and RC releases") + "\n" + "\n" + _("Options") + ":\n" + "\n" + + " --include-unstable " + _("Include unstable and RC releases") + "\n" + + " --hide-unstable " + _("Hide unstable and RC releases") + "\n" + " --debug " + _("Enable verbose debugging output") + "\n" + " --yes " + _("Assume Yes for all prompts (non-interactive mode)") + "\n" + " --user " + _("Override user") + "\n" @@ -126,6 +127,14 @@ public class AppConsole : GLib.Object { } break; + case "--show-unstable": // backwards compatibility + case "--include-unstable": + App.hide_unstable = false; + break; + case "--hide-unstable": + App.hide_unstable = true; + break; + case "--list": case "--list-installed": case "--check": @@ -136,10 +145,6 @@ public class AppConsole : GLib.Object { case "--clean-cache": cmd = args[k].down(); break; - - case "--show-unstable": - App.hide_unstable = false; - break; case "--download": case "--install": diff --git a/src/Utility/TeeJee.ProcessHelper.vala b/src/Utility/TeeJee.ProcessHelper.vala index e8c61746..5c64890e 100644 --- a/src/Utility/TeeJee.ProcessHelper.vala +++ b/src/Utility/TeeJee.ProcessHelper.vala @@ -138,7 +138,7 @@ namespace TeeJee.ProcessHelper{ } // manage process --------------------------------- - + public void process_quit(Pid process_pid, bool killChildren = true){ /* Kills specified process and its children (optional). From c28d8919acab80421e2d12a028b0ceec75548650 Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Fri, 13 Aug 2021 15:34:06 -0400 Subject: [PATCH 146/567] support building with valac < 0.40 (xenial) --- debian/control | 2 +- debian/control.src | 2 +- po/messages.pot | 2 +- src/Gtk/TerminalWindow.vala | 2 +- src/Utility/TeeJee.ProcessHelper.vala | 5 +++++ 5 files changed, 9 insertions(+), 4 deletions(-) diff --git a/debian/control b/debian/control index 8dff0d8a..352b4827 100644 --- a/debian/control +++ b/debian/control @@ -2,7 +2,7 @@ Source: mainline Section: utils Priority: extra Maintainer: Brian K. White -Build-Depends: debhelper, valac (>= 0.40), libgtk-3-dev, libgee-0.8-dev, libjson-glib-dev, libvte-2.91-dev, lsb-release +Build-Depends: debhelper, valac, libgtk-3-dev, libgee-0.8-dev, libjson-glib-dev, libvte-2.91-dev, lsb-release Standards-Version: 4.3.0 Homepage: https://github.com/bkw777/mainline diff --git a/debian/control.src b/debian/control.src index d1a3369d..735768c8 100644 --- a/debian/control.src +++ b/debian/control.src @@ -2,7 +2,7 @@ Source: BRANDING_SHORTNAME Section: utils Priority: extra Maintainer: BRANDING_AUTHORNAME -Build-Depends: debhelper, valac (>= 0.40), libgtk-3-dev, libgee-0.8-dev, libjson-glib-dev, libvte-2.91-dev, lsb-release +Build-Depends: debhelper, valac, libgtk-3-dev, libgee-0.8-dev, libjson-glib-dev, libvte-2.91-dev, lsb-release Standards-Version: 4.3.0 Homepage: BRANDING_WEBSITE diff --git a/po/messages.pot b/po/messages.pot index ce9fb627..77d9d708 100644 --- a/po/messages.pot +++ b/po/messages.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline 1.0.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-08-12 21:13-0400\n" +"POT-Creation-Date: 2021-08-13 15:28-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/src/Gtk/TerminalWindow.vala b/src/Gtk/TerminalWindow.vala index b6169a3b..823c9cf2 100644 --- a/src/Gtk/TerminalWindow.vala +++ b/src/Gtk/TerminalWindow.vala @@ -190,7 +190,7 @@ public class TerminalWindow : Gtk.Window { d, //working_directory argv, //argv env, //env - GLib.SpawnFlags.SEARCH_PATH | GLib.SpawnFlags.DO_NOT_REAP_CHILD, //spawn_flags + GLib.SpawnFlags.SEARCH_PATH, //spawn_flags null, //child_setup out child_pid, null diff --git a/src/Utility/TeeJee.ProcessHelper.vala b/src/Utility/TeeJee.ProcessHelper.vala index 5c64890e..967ce22b 100644 --- a/src/Utility/TeeJee.ProcessHelper.vala +++ b/src/Utility/TeeJee.ProcessHelper.vala @@ -146,7 +146,12 @@ namespace TeeJee.ProcessHelper{ * */ int[] child_pids = get_process_children (process_pid); + +#if VALA_0_40 Posix.kill (process_pid, Posix.Signal.TERM); +#else + Posix.kill (process_pid, Posix.SIGTERM); +#endif if (killChildren){ Pid childPid; From 4bf12b3c0214cf59c1c7d7de6ded1a2ba604ecf6 Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Fri, 13 Aug 2021 16:29:42 -0400 Subject: [PATCH 147/567] support valac < 0.40 (xenial), no really this time --- debian/changelog | 3 ++- po/messages.pot | 2 +- src/Utility/TeeJee.ProcessHelper.vala | 4 ++++ 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/debian/changelog b/debian/changelog index 359744c0..ba973b36 100644 --- a/debian/changelog +++ b/debian/changelog @@ -4,8 +4,9 @@ mainline (1.0.14) UNRELEASED; urgency=medium * Fix a segfault if no mainline kernels installed * Allow /tmp to be mounted with noexec * Replace --show-unstable with --include-unstable and --hide-unstable, and correct --help + * Support building on valac < 0.40 (xenial) - -- Brian K. White Mon, 09 Aug 2021 20:56:07 -0400 + -- Brian K. White Fri, 13 Aug 2021 15:39:15 -0400 mainline (1.0.13) unstable; urgency=medium diff --git a/po/messages.pot b/po/messages.pot index 77d9d708..dd058aee 100644 --- a/po/messages.pot +++ b/po/messages.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline 1.0.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-08-13 15:28-0400\n" +"POT-Creation-Date: 2021-08-13 16:24-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/src/Utility/TeeJee.ProcessHelper.vala b/src/Utility/TeeJee.ProcessHelper.vala index 967ce22b..e51b876e 100644 --- a/src/Utility/TeeJee.ProcessHelper.vala +++ b/src/Utility/TeeJee.ProcessHelper.vala @@ -157,7 +157,11 @@ namespace TeeJee.ProcessHelper{ Pid childPid; foreach (long pid in child_pids){ childPid = (Pid) pid; +#if VALA_0_40 Posix.kill (childPid, Posix.Signal.TERM); +#else + Posix.kill (childPid, Posix.SIGTERM); +#endif } } } From 93c05df5e73087bc6665adad1bcdbd89c55bc72c Mon Sep 17 00:00:00 2001 From: Viktor Sokyrko Date: Tue, 24 Aug 2021 23:36:47 +0200 Subject: [PATCH 148/567] Update pl.po Missing translations strings added; Few previous translations fixed; --- po/pl.po | 42 ++++++++++++++++++++---------------------- 1 file changed, 20 insertions(+), 22 deletions(-) diff --git a/po/pl.po b/po/pl.po index 108a0e68..7487da45 100644 --- a/po/pl.po +++ b/po/pl.po @@ -4,7 +4,7 @@ msgstr "" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2021-08-12 21:13-0400\n" "PO-Revision-Date: 2017-08-12 15:26+0200\n" -"Last-Translator: Waldemar Konik \n" +"Last-Translator: Viktor Sokyrko \n" "Language-Team: Polish\n" "Language: pl\n" "MIME-Version: 1.0\n" @@ -23,7 +23,7 @@ msgstr "Architektura systemu" #: src/Common/LinuxKernel.vala:301 msgid "Fetching index..." -msgstr "" +msgstr "Pobieranie indeksu..." #: src/Common/LinuxKernel.vala:338 msgid "Fetching index from kernel.ubuntu.com..." @@ -45,7 +45,7 @@ msgstr "" #: src/Common/LinuxKernel.vala:616 msgid "Continue ?" -msgstr "" +msgstr "Kontynuowac?" #: src/Common/LinuxKernel.vala:642 src/Console/AppConsole.vala:309 msgid "Latest update" @@ -63,7 +63,7 @@ msgstr "Nie znaleziono aktualizacji" #: src/Common/LinuxKernel.vala:671 #, c-format msgid "Install Kernel Version %s ? (y/n): " -msgstr "" +msgstr "Instaluj wersję jądra %s ? (t/n): " #: src/Common/LinuxKernel.vala:909 msgid "Packages Available" @@ -147,9 +147,8 @@ msgid "Called from" msgstr "" #: src/Common/Main.vala:275 -#, fuzzy msgid "Notifications are disabled" -msgstr "Powiadomienia" +msgstr "Powiadomienia są wyłączone" #: src/Common/Package.vala:134 src/Common/Package.vala:198 #, c-format @@ -162,7 +161,7 @@ msgstr "Składnia" #: src/Console/AppConsole.vala:64 msgid "Commands" -msgstr "" +msgstr "Polecenia" #: src/Console/AppConsole.vala:66 msgid "Check for kernel updates" @@ -289,12 +288,12 @@ msgstr "Pokaż wszystkie opcje" #: src/Console/AppConsole.vala:355 msgid "Show" -msgstr "" +msgstr "Pokaż" #: src/Console/AppConsole.vala:360 src/Console/AppConsole.vala:372 -#, fuzzy, c-format +#, c-format msgid "Kernel %s Available" -msgstr "Dostępne pakiety" +msgstr "Dostępne jądro %s" #: src/Console/AppConsole.vala:362 src/Console/AppConsole.vala:374 #: src/Gtk/MainWindow.vala:330 @@ -357,7 +356,7 @@ msgstr "Wybierz jądro do usunięcia" #: src/Gtk/MainWindow.vala:383 src/Gtk/MainWindow.vala:417 #: src/Gtk/MainWindow.vala:687 msgid "Close window to exit..." -msgstr "" +msgstr "Zamknij okno żeby wyjść..." #: src/Gtk/MainWindow.vala:391 msgid "Purge" @@ -445,7 +444,7 @@ msgstr "Tygodni" #: src/Gtk/SettingsDialog.vala:149 msgid "Second(s)" -msgstr "" +msgstr "Sekund(a)" #: src/Gtk/SettingsDialog.vala:155 msgid "Display" @@ -457,12 +456,11 @@ msgstr "" #: src/Gtk/SettingsDialog.vala:192 msgid "Other" -msgstr "" +msgstr "Inne" #: src/Gtk/SettingsDialog.vala:200 -#, fuzzy msgid "Skip internet connection check" -msgstr "Brak połączenia z internetem" +msgstr "Pomiń sprawdzenie połączenia z internetem" #: src/Gtk/SettingsDialog.vala:213 #, fuzzy @@ -471,7 +469,7 @@ msgstr "Brak połączenia z internetem" #: src/Gtk/SettingsDialog.vala:228 msgid "seconds" -msgstr "" +msgstr "sekund" #: src/Gtk/SettingsDialog.vala:235 msgid "Max concurrent downloads" @@ -516,11 +514,11 @@ msgstr "Narzędzia osób trzecich" #: src/Utility/Gtk/CustomMessageDialog.vala:157 msgid "Yes" -msgstr "" +msgstr "Tak" #: src/Utility/Gtk/CustomMessageDialog.vala:158 msgid "No" -msgstr "" +msgstr "Nie" #: src/Utility/Gtk/GtkHelper.vala:67 msgid "Missing Icon" @@ -529,12 +527,12 @@ msgstr "Brakująca ikona" #: src/Utility/TeeJee.FileSystem.vala:71 #, fuzzy msgid "File deleted" -msgstr "Plik zapisany" +msgstr "Plik usunięty" #: src/Utility/TeeJee.FileSystem.vala:76 src/Utility/TeeJee.FileSystem.vala:256 #, fuzzy msgid "Failed to delete file" -msgstr "Nie udało się zapisać pliku" +msgstr "Nie udało się usunąć pliku" #: src/Utility/TeeJee.FileSystem.vala:96 msgid "Failed to read file" @@ -579,7 +577,7 @@ msgstr "Nie udało się utworzyć katalogu" #: src/Utility/TeeJee.FileSystem.vala:255 msgid "Deleted" -msgstr "" +msgstr "Usunięto" #: src/Utility/TeeJee.Logging.vala:59 msgid "E" @@ -587,4 +585,4 @@ msgstr "E" #: src/Utility/TeeJee.Logging.vala:84 msgid "D" -msgstr "" +msgstr "D" From bf1e64fa66328029ffda7ed53e66569bc0107181 Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Sat, 4 Sep 2021 01:20:53 -0400 Subject: [PATCH 149/567] link for notify_send.sh --- AUTHORS | 2 +- src/Gtk/MainWindow.vala | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/AUTHORS b/AUTHORS index 6ff098d1..d9816706 100644 --- a/AUTHORS +++ b/AUTHORS @@ -4,4 +4,4 @@ Cloyce D. Spradling revisions to LinuxKernel.vala AppConsole.vala Brian K. White revisions to many files 3rd party inclusions: - notify-send.sh https://github.com/vlevit/notify-send.sh + notify-send.sh https://github.com/bkw777/notify-send.sh diff --git a/src/Gtk/MainWindow.vala b/src/Gtk/MainWindow.vala index ee209e5a..ac16b13e 100644 --- a/src/Gtk/MainWindow.vala +++ b/src/Gtk/MainWindow.vala @@ -512,7 +512,7 @@ public class MainWindow : Gtk.Window{ dialog.third_party = { "Elementary project (various icons):github.com/elementary/icons", "Tango project (various icons):tango.freedesktop.org/Tango_Desktop_Project", - "notify-send.sh:github.com/vlevit/notify-send.sh" + "notify-send.sh:github.com/bkw777/notify-send.sh" }; dialog.initialize(); From 29dcea31cd4067455980f793504fb73dc12f7159 Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Tue, 14 Sep 2021 15:50:14 -0400 Subject: [PATCH 150/567] rename remove and purge to uninstall and uninstall old --- BRANDING.mak | 2 +- README.md | 4 +- README.md.src | 4 +- po/es.po | 78 +++++++++++++++++++--------------- po/fr.po | 83 ++++++++++++++++++++++--------------- po/hr.po | 83 ++++++++++++++++++++++--------------- po/it.po | 83 ++++++++++++++++++++++--------------- po/ko.po | 83 ++++++++++++++++++++++--------------- po/messages.pot | 68 ++++++++++++++++-------------- po/nl.po | 83 ++++++++++++++++++++++--------------- po/pl.po | 79 ++++++++++++++++++++--------------- po/ru.po | 81 ++++++++++++++++++++---------------- po/sv.po | 83 +++++++++++++++++++++---------------- po/tr.po | 82 +++++++++++++++++++++--------------- po/uk.po | 82 +++++++++++++++++++++--------------- src/Common/LinuxKernel.vala | 42 +++++++++---------- src/Console/AppConsole.vala | 29 +++++++------ src/Gtk/MainWindow.vala | 38 ++++++++--------- 18 files changed, 623 insertions(+), 464 deletions(-) diff --git a/BRANDING.mak b/BRANDING.mak index fa2863d3..6622be71 100644 --- a/BRANDING.mak +++ b/BRANDING.mak @@ -3,7 +3,7 @@ VERSION_MAJOR = 1 VERSION_MINOR = 0 -VERSION_MICRO = 14 +VERSION_MICRO = 15 BRANDING_SHORTNAME = mainline BRANDING_LONGNAME = Ubuntu Mainline Kernel Installer BRANDING_AUTHORNAME = Brian K. White diff --git a/README.md b/README.md index 8b41bcee..9f8884f2 100644 --- a/README.md +++ b/README.md @@ -8,8 +8,8 @@ This is a tool for installing the latest mainline Linux kernel on Ubuntu-based d * Optionally watches and displays notifications when a new kernel update is available * Downloads and installs packages automatically * Display available and installed kernels conveniently -* Install/remove kernels from gui -* For each kernel, the related packages (headers & modules) are installed or removed at the same time +* Install/Uninstall kernels from gui +* For each kernel, the related packages (headers & modules) are installed or uninstalled at the same time ### Downloads & Source Code mainline is written using Vala and GTK3. Source code and binaries are available from the [GitHub project page](https://github.com/bkw777/mainline). diff --git a/README.md.src b/README.md.src index 27d35bac..fa79a52a 100644 --- a/README.md.src +++ b/README.md.src @@ -8,8 +8,8 @@ This is a tool for installing the latest mainline Linux kernel on Ubuntu-based d * Optionally watches and displays notifications when a new kernel update is available * Downloads and installs packages automatically * Display available and installed kernels conveniently -* Install/remove kernels from gui -* For each kernel, the related packages (headers & modules) are installed or removed at the same time +* Install/Uninstall kernels from gui +* For each kernel, the related packages (headers & modules) are installed or uninstalled at the same time ### Downloads & Source Code BRANDING_SHORTNAME is written using Vala and GTK3. Source code and binaries are available from the [GitHub project page](BRANDING_WEBSITE). diff --git a/po/es.po b/po/es.po index cc0b61b9..5767eea1 100644 --- a/po/es.po +++ b/po/es.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-08-12 21:13-0400\n" +"POT-Creation-Date: 2021-09-14 13:48-0400\n" "PO-Revision-Date: 2018-01-03 02:03-0600\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish\n" @@ -34,27 +34,29 @@ msgid "Could not find running kernel in list!" msgstr "¡No se pudo encontrar el núcleo en ejecución en la lista!" #: src/Common/LinuxKernel.vala:600 -msgid "Could not find any kernels to remove" +#, fuzzy +msgid "Could not find any kernels to uninstall" msgstr "Seleccione los núcleos que se desinstalarán" #: src/Common/LinuxKernel.vala:609 -msgid "The following kernels will be removed:" +#, fuzzy +msgid "The following kernels will be uninstalled:" msgstr "Los siguientes kernels serán eliminados:" #: src/Common/LinuxKernel.vala:616 msgid "Continue ?" msgstr "¿Continuar?" -#: src/Common/LinuxKernel.vala:642 src/Console/AppConsole.vala:309 +#: src/Common/LinuxKernel.vala:642 src/Console/AppConsole.vala:314 msgid "Latest update" msgstr "" -#: src/Common/LinuxKernel.vala:653 src/Console/AppConsole.vala:316 +#: src/Common/LinuxKernel.vala:653 src/Console/AppConsole.vala:321 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:661 src/Console/AppConsole.vala:321 -#: src/Console/AppConsole.vala:382 +#: src/Common/LinuxKernel.vala:661 src/Console/AppConsole.vala:326 +#: src/Console/AppConsole.vala:387 msgid "No updates found" msgstr "No se encontró ninguna actualización" @@ -112,15 +114,17 @@ msgid "Installation completed with errors" msgstr "Instalación finalizada con errores" #: src/Common/LinuxKernel.vala:1124 +#, fuzzy msgid "" -"Selected kernel is currently running and cannot be removed.\n" -" Install another kernel before removing this one." +"Selected kernel is currently running and cannot be un-installed.\n" +" Install another kernel before un-installing this one." msgstr "" "El núcleo seleccionado está en ejecución y no puede desinstalarse.\n" "Instale otro núcleo antes de desinstalar este." #: src/Common/LinuxKernel.vala:1129 -msgid "Preparing to remove selected kernels" +#, fuzzy +msgid "Preparing to uninstall selected kernels" msgstr "Preparándose para desinstalar los núcleos seleccionados" #: src/Common/LinuxKernel.vala:1160 src/Common/LinuxKernel.vala:1207 @@ -132,9 +136,10 @@ msgid "Un-install completed with errors" msgstr "Desinstalación finalizada con errores" #: src/Common/LinuxKernel.vala:1176 +#, fuzzy msgid "" -"This kernel is currently running and cannot be removed.\n" -" Install another kernel before removing this one." +"This kernel is currently running and cannot be un-installed.\n" +" Install another kernel before un-installing this one." msgstr "" "Este núcleo está en ejecución y no se puede desinstalar.\n" "Instale otro núcleo antes de desinstalar este." @@ -191,11 +196,11 @@ msgstr "Instalar núcleo troncal especificado" #: src/Console/AppConsole.vala:73 #, fuzzy -msgid "Uninstall specified kernels" +msgid "Uninstall specified kernel" msgstr "Instalar núcleo troncal especificado" -#: src/Console/AppConsole.vala:74 src/Gtk/MainWindow.vala:392 -msgid "Remove installed kernels older than running kernel" +#: src/Console/AppConsole.vala:74 +msgid "Uninstall kernels older than the running kernel" msgstr "" #: src/Console/AppConsole.vala:75 @@ -241,56 +246,56 @@ msgid "" "One or more version strings (comma-separated) taken from the output of --list" msgstr "" -#: src/Console/AppConsole.vala:167 src/Gtk/AppGtk.vala:136 +#: src/Console/AppConsole.vala:169 src/Gtk/AppGtk.vala:136 msgid "Unknown option" msgstr "Opción desconocida" -#: src/Console/AppConsole.vala:169 src/Console/AppConsole.vala:261 -#: src/Console/AppConsole.vala:289 +#: src/Console/AppConsole.vala:171 src/Console/AppConsole.vala:265 +#: src/Console/AppConsole.vala:294 #, fuzzy msgid "Run" msgstr "En ejecución" -#: src/Console/AppConsole.vala:169 +#: src/Console/AppConsole.vala:171 #, fuzzy msgid "to list all options" msgstr "Mostrar todas las opciones" -#: src/Console/AppConsole.vala:234 src/Console/AppConsole.vala:269 +#: src/Console/AppConsole.vala:238 src/Console/AppConsole.vala:273 msgid "No kernels specified" msgstr "" -#: src/Console/AppConsole.vala:240 +#: src/Console/AppConsole.vala:244 msgid "Multiple kernels selected for installation. Select only one." msgstr "Se seleccionaron varios núcleos para su instalación. Elija solo uno." -#: src/Console/AppConsole.vala:258 src/Gtk/MainWindow.vala:100 +#: src/Console/AppConsole.vala:262 src/Gtk/MainWindow.vala:100 msgid "Could not find requested version" msgstr "No se pudo encontrar la versión solicitada" -#: src/Console/AppConsole.vala:261 +#: src/Console/AppConsole.vala:265 msgid "and use a version string listed in first column" msgstr "" -#: src/Console/AppConsole.vala:288 +#: src/Console/AppConsole.vala:293 msgid "Command not specified" msgstr "Coomand no especificado" -#: src/Console/AppConsole.vala:289 +#: src/Console/AppConsole.vala:294 #, fuzzy msgid "to list all commands" msgstr "Mostrar todas las opciones" -#: src/Console/AppConsole.vala:355 +#: src/Console/AppConsole.vala:360 msgid "Show" msgstr "" -#: src/Console/AppConsole.vala:360 src/Console/AppConsole.vala:372 +#: src/Console/AppConsole.vala:365 src/Console/AppConsole.vala:377 #, fuzzy, c-format msgid "Kernel %s Available" msgstr "Paquetes disponibles" -#: src/Console/AppConsole.vala:362 src/Console/AppConsole.vala:374 +#: src/Console/AppConsole.vala:367 src/Console/AppConsole.vala:379 #: src/Gtk/MainWindow.vala:330 msgid "Install" msgstr "Instalar" @@ -341,12 +346,14 @@ msgid "Select the kernel to install" msgstr "Seleccione el núcleo que se instalará" #: src/Gtk/MainWindow.vala:347 -msgid "Remove" -msgstr "Quitar" +#, fuzzy +msgid "Uninstall" +msgstr "Instalar" #: src/Gtk/MainWindow.vala:353 -msgid "Select the kernels to remove" -msgstr "Seleccione los núcleos que se desinstalarán" +#, fuzzy +msgid "Select the kernels to uninstall" +msgstr "Seleccione el núcleo que se instalará" #: src/Gtk/MainWindow.vala:383 src/Gtk/MainWindow.vala:417 #: src/Gtk/MainWindow.vala:687 @@ -354,7 +361,12 @@ msgid "Close window to exit..." msgstr "" #: src/Gtk/MainWindow.vala:391 -msgid "Purge" +#, fuzzy +msgid "Uninstall Old" +msgstr "Desinstalación finalizada" + +#: src/Gtk/MainWindow.vala:392 +msgid "Uninstall kernels older than running kernel" msgstr "" #: src/Gtk/MainWindow.vala:424 diff --git a/po/fr.po b/po/fr.po index 96a46151..5c5e1e8e 100644 --- a/po/fr.po +++ b/po/fr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-08-12 21:13-0400\n" +"POT-Creation-Date: 2021-09-14 13:48-0400\n" "PO-Revision-Date: 2018-08-05 15:50+0200\n" "Last-Translator: Yolateng0 \n" "Language-Team: French\n" @@ -34,27 +34,29 @@ msgid "Could not find running kernel in list!" msgstr "Impossible de trouver la version courante dans la liste!" #: src/Common/LinuxKernel.vala:600 -msgid "Could not find any kernels to remove" +#, fuzzy +msgid "Could not find any kernels to uninstall" msgstr "Impossible de trouver de noyaux à supprimer" #: src/Common/LinuxKernel.vala:609 -msgid "The following kernels will be removed:" +#, fuzzy +msgid "The following kernels will be uninstalled:" msgstr "Les noyaux suivants seront supprimés:" #: src/Common/LinuxKernel.vala:616 msgid "Continue ?" msgstr "Reprendre ?" -#: src/Common/LinuxKernel.vala:642 src/Console/AppConsole.vala:309 +#: src/Common/LinuxKernel.vala:642 src/Console/AppConsole.vala:314 msgid "Latest update" msgstr "Dernière mise à jour" -#: src/Common/LinuxKernel.vala:653 src/Console/AppConsole.vala:316 +#: src/Common/LinuxKernel.vala:653 src/Console/AppConsole.vala:321 msgid "Latest point update" msgstr "Dernière mise à jour mineure" -#: src/Common/LinuxKernel.vala:661 src/Console/AppConsole.vala:321 -#: src/Console/AppConsole.vala:382 +#: src/Common/LinuxKernel.vala:661 src/Console/AppConsole.vala:326 +#: src/Console/AppConsole.vala:387 msgid "No updates found" msgstr "Aucune mise à jour disponible" @@ -113,15 +115,17 @@ msgid "Installation completed with errors" msgstr "Installation terminée avec des erreurs" #: src/Common/LinuxKernel.vala:1124 +#, fuzzy msgid "" -"Selected kernel is currently running and cannot be removed.\n" -" Install another kernel before removing this one." +"Selected kernel is currently running and cannot be un-installed.\n" +" Install another kernel before un-installing this one." msgstr "" "Ce noyau est en cours d'exécution et ne peut pas être supprimé.\n" " Installez un autre noyau avant de retirer celui-ci." #: src/Common/LinuxKernel.vala:1129 -msgid "Preparing to remove selected kernels" +#, fuzzy +msgid "Preparing to uninstall selected kernels" msgstr "Préparation à la suppression des noyaux sélectionnés" #: src/Common/LinuxKernel.vala:1160 src/Common/LinuxKernel.vala:1207 @@ -133,9 +137,10 @@ msgid "Un-install completed with errors" msgstr "Désinstallation terminée avec des erreurs" #: src/Common/LinuxKernel.vala:1176 +#, fuzzy msgid "" -"This kernel is currently running and cannot be removed.\n" -" Install another kernel before removing this one." +"This kernel is currently running and cannot be un-installed.\n" +" Install another kernel before un-installing this one." msgstr "" "Ce noyau est en cours d'exécution et ne peut pas être supprimé.\n" " Installez un autre noyau avant de retirer celui-ci." @@ -190,11 +195,13 @@ msgid "Install specified mainline kernel" msgstr "Installer le noyau mainline spécifié" #: src/Console/AppConsole.vala:73 -msgid "Uninstall specified kernels" +#, fuzzy +msgid "Uninstall specified kernel" msgstr "Installer les noyaux spécifiés" -#: src/Console/AppConsole.vala:74 src/Gtk/MainWindow.vala:392 -msgid "Remove installed kernels older than running kernel" +#: src/Console/AppConsole.vala:74 +#, fuzzy +msgid "Uninstall kernels older than the running kernel" msgstr "Désinstalle les noyaux plus anciens que le noyau courant" #: src/Console/AppConsole.vala:75 @@ -241,55 +248,55 @@ msgstr "" "Une ou plusieurs versions (séparées par des virgules) prises du résultat de " "--list" -#: src/Console/AppConsole.vala:167 src/Gtk/AppGtk.vala:136 +#: src/Console/AppConsole.vala:169 src/Gtk/AppGtk.vala:136 msgid "Unknown option" msgstr "Option inconnue" -#: src/Console/AppConsole.vala:169 src/Console/AppConsole.vala:261 -#: src/Console/AppConsole.vala:289 +#: src/Console/AppConsole.vala:171 src/Console/AppConsole.vala:265 +#: src/Console/AppConsole.vala:294 msgid "Run" msgstr "Executez" -#: src/Console/AppConsole.vala:169 +#: src/Console/AppConsole.vala:171 msgid "to list all options" msgstr "pour afficher toutes les options" -#: src/Console/AppConsole.vala:234 src/Console/AppConsole.vala:269 +#: src/Console/AppConsole.vala:238 src/Console/AppConsole.vala:273 msgid "No kernels specified" msgstr "Aucun noyau spécifié" -#: src/Console/AppConsole.vala:240 +#: src/Console/AppConsole.vala:244 msgid "Multiple kernels selected for installation. Select only one." msgstr "" "Plusieurs noyaux sélectionnés pour être installés. Sélectionnez en seulement " "un." -#: src/Console/AppConsole.vala:258 src/Gtk/MainWindow.vala:100 +#: src/Console/AppConsole.vala:262 src/Gtk/MainWindow.vala:100 msgid "Could not find requested version" msgstr "Impossible de trouver la version demandée" -#: src/Console/AppConsole.vala:261 +#: src/Console/AppConsole.vala:265 msgid "and use a version string listed in first column" msgstr "" -#: src/Console/AppConsole.vala:288 +#: src/Console/AppConsole.vala:293 msgid "Command not specified" msgstr "Pas de commande fournie" -#: src/Console/AppConsole.vala:289 +#: src/Console/AppConsole.vala:294 msgid "to list all commands" msgstr "pour afficher toutes les commandes" -#: src/Console/AppConsole.vala:355 +#: src/Console/AppConsole.vala:360 msgid "Show" msgstr "Montrer" -#: src/Console/AppConsole.vala:360 src/Console/AppConsole.vala:372 +#: src/Console/AppConsole.vala:365 src/Console/AppConsole.vala:377 #, c-format msgid "Kernel %s Available" msgstr "Paquet %s disponibles" -#: src/Console/AppConsole.vala:362 src/Console/AppConsole.vala:374 +#: src/Console/AppConsole.vala:367 src/Console/AppConsole.vala:379 #: src/Gtk/MainWindow.vala:330 msgid "Install" msgstr "Installer" @@ -340,12 +347,14 @@ msgid "Select the kernel to install" msgstr "Sélectionnez le noyau à installer" #: src/Gtk/MainWindow.vala:347 -msgid "Remove" -msgstr "Supprimer" +#, fuzzy +msgid "Uninstall" +msgstr "Installer" #: src/Gtk/MainWindow.vala:353 -msgid "Select the kernels to remove" -msgstr "Sélectionnez les noyaux à supprimer" +#, fuzzy +msgid "Select the kernels to uninstall" +msgstr "Sélectionnez le noyau à installer" #: src/Gtk/MainWindow.vala:383 src/Gtk/MainWindow.vala:417 #: src/Gtk/MainWindow.vala:687 @@ -353,8 +362,14 @@ msgid "Close window to exit..." msgstr "Fermer la fenêtre pour quitter..." #: src/Gtk/MainWindow.vala:391 -msgid "Purge" -msgstr "Nettoyer" +#, fuzzy +msgid "Uninstall Old" +msgstr "Désinstallation complète" + +#: src/Gtk/MainWindow.vala:392 +#, fuzzy +msgid "Uninstall kernels older than running kernel" +msgstr "Désinstalle les noyaux plus anciens que le noyau courant" #: src/Gtk/MainWindow.vala:424 msgid "Changes" diff --git a/po/hr.po b/po/hr.po index a974e7ed..84712b4b 100644 --- a/po/hr.po +++ b/po/hr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-08-12 21:13-0400\n" +"POT-Creation-Date: 2021-09-14 13:48-0400\n" "PO-Revision-Date: 2021-04-07 17:58+0200\n" "Last-Translator: gogo \n" "Language-Team: Croatian \n" @@ -34,27 +34,29 @@ msgid "Could not find running kernel in list!" msgstr "Nemoguće je pronaći pokrenuti kernel na popisu!" #: src/Common/LinuxKernel.vala:600 -msgid "Could not find any kernels to remove" +#, fuzzy +msgid "Could not find any kernels to uninstall" msgstr "Nema pronađenih kernela za uklanjanje" #: src/Common/LinuxKernel.vala:609 -msgid "The following kernels will be removed:" +#, fuzzy +msgid "The following kernels will be uninstalled:" msgstr "Sljedeći kerneli će biti uklonjeni:" #: src/Common/LinuxKernel.vala:616 msgid "Continue ?" msgstr "Nastavi?" -#: src/Common/LinuxKernel.vala:642 src/Console/AppConsole.vala:309 +#: src/Common/LinuxKernel.vala:642 src/Console/AppConsole.vala:314 msgid "Latest update" msgstr "Najnovija nadopuna" -#: src/Common/LinuxKernel.vala:653 src/Console/AppConsole.vala:316 +#: src/Common/LinuxKernel.vala:653 src/Console/AppConsole.vala:321 msgid "Latest point update" msgstr "Najnovija ciljana nadopuna" -#: src/Common/LinuxKernel.vala:661 src/Console/AppConsole.vala:321 -#: src/Console/AppConsole.vala:382 +#: src/Common/LinuxKernel.vala:661 src/Console/AppConsole.vala:326 +#: src/Console/AppConsole.vala:387 msgid "No updates found" msgstr "Nema pronađenih nadopuna" @@ -113,15 +115,17 @@ msgid "Installation completed with errors" msgstr "Instalacija je završena s greškama" #: src/Common/LinuxKernel.vala:1124 +#, fuzzy msgid "" -"Selected kernel is currently running and cannot be removed.\n" -" Install another kernel before removing this one." +"Selected kernel is currently running and cannot be un-installed.\n" +" Install another kernel before un-installing this one." msgstr "" "Odabrani kernel je trenutno pokernut i ne može se ukloniti.\n" " Instalirajte drugi kernel prije uklanjanja trenutnog kernela." #: src/Common/LinuxKernel.vala:1129 -msgid "Preparing to remove selected kernels" +#, fuzzy +msgid "Preparing to uninstall selected kernels" msgstr "Pripremanje uklanjanja odabranih kernela" #: src/Common/LinuxKernel.vala:1160 src/Common/LinuxKernel.vala:1207 @@ -133,9 +137,10 @@ msgid "Un-install completed with errors" msgstr "Deinstalacija završena s greškama" #: src/Common/LinuxKernel.vala:1176 +#, fuzzy msgid "" -"This kernel is currently running and cannot be removed.\n" -" Install another kernel before removing this one." +"This kernel is currently running and cannot be un-installed.\n" +" Install another kernel before un-installing this one." msgstr "" "Ovaj kernel je trenutno pokrenut i ne može se ukloniti.\n" " Instalirajte drugi kernel prije uklanjanja trenutnog kernela." @@ -190,11 +195,13 @@ msgid "Install specified mainline kernel" msgstr "Instaliraj određeni mainline kernel" #: src/Console/AppConsole.vala:73 -msgid "Uninstall specified kernels" +#, fuzzy +msgid "Uninstall specified kernel" msgstr "Ukloni određene kernele" -#: src/Console/AppConsole.vala:74 src/Gtk/MainWindow.vala:392 -msgid "Remove installed kernels older than running kernel" +#: src/Console/AppConsole.vala:74 +#, fuzzy +msgid "Uninstall kernels older than the running kernel" msgstr "Ukloni instalirane kernele starije od pokrenutog krenela" #: src/Console/AppConsole.vala:75 @@ -240,53 +247,53 @@ msgid "" msgstr "" "Jedan ili više izraza inačice (zarezom odvojeni) uzetih iz zapisa --list" -#: src/Console/AppConsole.vala:167 src/Gtk/AppGtk.vala:136 +#: src/Console/AppConsole.vala:169 src/Gtk/AppGtk.vala:136 msgid "Unknown option" msgstr "Nepoznata mogućnost" -#: src/Console/AppConsole.vala:169 src/Console/AppConsole.vala:261 -#: src/Console/AppConsole.vala:289 +#: src/Console/AppConsole.vala:171 src/Console/AppConsole.vala:265 +#: src/Console/AppConsole.vala:294 msgid "Run" msgstr "Pokreni" -#: src/Console/AppConsole.vala:169 +#: src/Console/AppConsole.vala:171 msgid "to list all options" msgstr "za prikaz svih mogućnosti" -#: src/Console/AppConsole.vala:234 src/Console/AppConsole.vala:269 +#: src/Console/AppConsole.vala:238 src/Console/AppConsole.vala:273 msgid "No kernels specified" msgstr "Nema određenih kernela" -#: src/Console/AppConsole.vala:240 +#: src/Console/AppConsole.vala:244 msgid "Multiple kernels selected for installation. Select only one." msgstr "Više kernela je odabrano za instalaciju. odaberite samo jedan." -#: src/Console/AppConsole.vala:258 src/Gtk/MainWindow.vala:100 +#: src/Console/AppConsole.vala:262 src/Gtk/MainWindow.vala:100 msgid "Could not find requested version" msgstr "Nemoguće je pronaći zatraženu inačicu" -#: src/Console/AppConsole.vala:261 +#: src/Console/AppConsole.vala:265 msgid "and use a version string listed in first column" msgstr "i koristite izraz inačice prikazan u prvom stupcu" -#: src/Console/AppConsole.vala:288 +#: src/Console/AppConsole.vala:293 msgid "Command not specified" msgstr "Naredba nije navedena" -#: src/Console/AppConsole.vala:289 +#: src/Console/AppConsole.vala:294 msgid "to list all commands" msgstr "za prikaz svih mogućnosti" -#: src/Console/AppConsole.vala:355 +#: src/Console/AppConsole.vala:360 msgid "Show" msgstr "Prikaži" -#: src/Console/AppConsole.vala:360 src/Console/AppConsole.vala:372 +#: src/Console/AppConsole.vala:365 src/Console/AppConsole.vala:377 #, c-format msgid "Kernel %s Available" msgstr "Kernel %s je dostupan" -#: src/Console/AppConsole.vala:362 src/Console/AppConsole.vala:374 +#: src/Console/AppConsole.vala:367 src/Console/AppConsole.vala:379 #: src/Gtk/MainWindow.vala:330 msgid "Install" msgstr "Instaliraj" @@ -337,12 +344,14 @@ msgid "Select the kernel to install" msgstr "Odaberi kernel za instalaciju" #: src/Gtk/MainWindow.vala:347 -msgid "Remove" -msgstr "Ukloni" +#, fuzzy +msgid "Uninstall" +msgstr "Instaliraj" #: src/Gtk/MainWindow.vala:353 -msgid "Select the kernels to remove" -msgstr "Odaberi kernele za uklanjanje" +#, fuzzy +msgid "Select the kernels to uninstall" +msgstr "Odaberi kernel za instalaciju" #: src/Gtk/MainWindow.vala:383 src/Gtk/MainWindow.vala:417 #: src/Gtk/MainWindow.vala:687 @@ -350,8 +359,14 @@ msgid "Close window to exit..." msgstr "Zatvori prozor i izađi..." #: src/Gtk/MainWindow.vala:391 -msgid "Purge" -msgstr "Potpuno ukloni" +#, fuzzy +msgid "Uninstall Old" +msgstr "Deinstalacija završena" + +#: src/Gtk/MainWindow.vala:392 +#, fuzzy +msgid "Uninstall kernels older than running kernel" +msgstr "Ukloni instalirane kernele starije od pokrenutog krenela" #: src/Gtk/MainWindow.vala:424 msgid "Changes" diff --git a/po/it.po b/po/it.po index 4b9b59e7..02205c8b 100644 --- a/po/it.po +++ b/po/it.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline 1.0.12\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-08-12 21:13-0400\n" +"POT-Creation-Date: 2021-09-14 13:48-0400\n" "PO-Revision-Date: 2020-08-22 15:35+0100\n" "Last-Translator: Albano Battistella \n" "Language-Team: Italian \n" @@ -37,27 +37,29 @@ msgid "Could not find running kernel in list!" msgstr "Impossibile trovare il kernel in esecuzione nell'elenco!" #: src/Common/LinuxKernel.vala:600 -msgid "Could not find any kernels to remove" +#, fuzzy +msgid "Could not find any kernels to uninstall" msgstr "Impossibile trovare alcun kernel da rimuovere" #: src/Common/LinuxKernel.vala:609 -msgid "The following kernels will be removed:" +#, fuzzy +msgid "The following kernels will be uninstalled:" msgstr "I seguenti kernel verranno rimossi:" #: src/Common/LinuxKernel.vala:616 msgid "Continue ?" msgstr "Continuare ?" -#: src/Common/LinuxKernel.vala:642 src/Console/AppConsole.vala:309 +#: src/Common/LinuxKernel.vala:642 src/Console/AppConsole.vala:314 msgid "Latest update" msgstr "Ultimo aggiornamento" -#: src/Common/LinuxKernel.vala:653 src/Console/AppConsole.vala:316 +#: src/Common/LinuxKernel.vala:653 src/Console/AppConsole.vala:321 msgid "Latest point update" msgstr "Ultimo aggiornamento del punto" -#: src/Common/LinuxKernel.vala:661 src/Console/AppConsole.vala:321 -#: src/Console/AppConsole.vala:382 +#: src/Common/LinuxKernel.vala:661 src/Console/AppConsole.vala:326 +#: src/Console/AppConsole.vala:387 msgid "No updates found" msgstr "Nessun aggiornamento trovato" @@ -116,15 +118,17 @@ msgid "Installation completed with errors" msgstr "Installazione completata con errori" #: src/Common/LinuxKernel.vala:1124 +#, fuzzy msgid "" -"Selected kernel is currently running and cannot be removed.\n" -" Install another kernel before removing this one." +"Selected kernel is currently running and cannot be un-installed.\n" +" Install another kernel before un-installing this one." msgstr "" "Il kernel selezionato è attualmente in esecuzione e non può essere rimosso.\n" "Installa un altro kernel prima di rimuovere questo." #: src/Common/LinuxKernel.vala:1129 -msgid "Preparing to remove selected kernels" +#, fuzzy +msgid "Preparing to uninstall selected kernels" msgstr "Preparazione per rimuovere i kernel selezionati" #: src/Common/LinuxKernel.vala:1160 src/Common/LinuxKernel.vala:1207 @@ -136,9 +140,10 @@ msgid "Un-install completed with errors" msgstr "Disinstallazione completata con errori" #: src/Common/LinuxKernel.vala:1176 +#, fuzzy msgid "" -"This kernel is currently running and cannot be removed.\n" -" Install another kernel before removing this one." +"This kernel is currently running and cannot be un-installed.\n" +" Install another kernel before un-installing this one." msgstr "" "Questo kernel è attualmente in esecuzione e non può essere rimosso.\n" "Installa un altro kernel prima di rimuovere questo." @@ -195,11 +200,13 @@ msgid "Install specified mainline kernel" msgstr "Installa kernel mainline specificato" #: src/Console/AppConsole.vala:73 -msgid "Uninstall specified kernels" +#, fuzzy +msgid "Uninstall specified kernel" msgstr "Disinstalla i kernel specificati" -#: src/Console/AppConsole.vala:74 src/Gtk/MainWindow.vala:392 -msgid "Remove installed kernels older than running kernel" +#: src/Console/AppConsole.vala:74 +#, fuzzy +msgid "Uninstall kernels older than the running kernel" msgstr "Rimuovere i kernel installati più vecchi del kernel in esecuzione" #: src/Console/AppConsole.vala:75 @@ -246,53 +253,53 @@ msgstr "" "Una o più stringhe di versione (separate da virgole) prese dall'output di --" "list" -#: src/Console/AppConsole.vala:167 src/Gtk/AppGtk.vala:136 +#: src/Console/AppConsole.vala:169 src/Gtk/AppGtk.vala:136 msgid "Unknown option" msgstr "Opzione sconosciuta" -#: src/Console/AppConsole.vala:169 src/Console/AppConsole.vala:261 -#: src/Console/AppConsole.vala:289 +#: src/Console/AppConsole.vala:171 src/Console/AppConsole.vala:265 +#: src/Console/AppConsole.vala:294 msgid "Run" msgstr "In corso" -#: src/Console/AppConsole.vala:169 +#: src/Console/AppConsole.vala:171 msgid "to list all options" msgstr "Elencare tutte le opzioni" -#: src/Console/AppConsole.vala:234 src/Console/AppConsole.vala:269 +#: src/Console/AppConsole.vala:238 src/Console/AppConsole.vala:273 msgid "No kernels specified" msgstr "Nessun kernel specificato" -#: src/Console/AppConsole.vala:240 +#: src/Console/AppConsole.vala:244 msgid "Multiple kernels selected for installation. Select only one." msgstr "Più kernel selezionati per l'installazione. Selezionare uno solo." -#: src/Console/AppConsole.vala:258 src/Gtk/MainWindow.vala:100 +#: src/Console/AppConsole.vala:262 src/Gtk/MainWindow.vala:100 msgid "Could not find requested version" msgstr "Impossibile trovare la versione richiesta" -#: src/Console/AppConsole.vala:261 +#: src/Console/AppConsole.vala:265 msgid "and use a version string listed in first column" msgstr "e usa una stringa di versione elencata nella prima colonna" -#: src/Console/AppConsole.vala:288 +#: src/Console/AppConsole.vala:293 msgid "Command not specified" msgstr "Comando non specificato" -#: src/Console/AppConsole.vala:289 +#: src/Console/AppConsole.vala:294 msgid "to list all commands" msgstr "Elencare tutti i comandi" -#: src/Console/AppConsole.vala:355 +#: src/Console/AppConsole.vala:360 msgid "Show" msgstr "Mostra" -#: src/Console/AppConsole.vala:360 src/Console/AppConsole.vala:372 +#: src/Console/AppConsole.vala:365 src/Console/AppConsole.vala:377 #, c-format msgid "Kernel %s Available" msgstr "Kernel %s Disponibile" -#: src/Console/AppConsole.vala:362 src/Console/AppConsole.vala:374 +#: src/Console/AppConsole.vala:367 src/Console/AppConsole.vala:379 #: src/Gtk/MainWindow.vala:330 msgid "Install" msgstr "Installa" @@ -343,12 +350,14 @@ msgid "Select the kernel to install" msgstr "Seleziona il kernel da installare" #: src/Gtk/MainWindow.vala:347 -msgid "Remove" -msgstr "Rimuovi" +#, fuzzy +msgid "Uninstall" +msgstr "Installa" #: src/Gtk/MainWindow.vala:353 -msgid "Select the kernels to remove" -msgstr "Seleziona i kernel da rimuovere" +#, fuzzy +msgid "Select the kernels to uninstall" +msgstr "Seleziona il kernel da installare" #: src/Gtk/MainWindow.vala:383 src/Gtk/MainWindow.vala:417 #: src/Gtk/MainWindow.vala:687 @@ -356,8 +365,14 @@ msgid "Close window to exit..." msgstr "Chiudere la finestra per uscire..." #: src/Gtk/MainWindow.vala:391 -msgid "Purge" -msgstr "Purge" +#, fuzzy +msgid "Uninstall Old" +msgstr "Disinstallazione completata" + +#: src/Gtk/MainWindow.vala:392 +#, fuzzy +msgid "Uninstall kernels older than running kernel" +msgstr "Rimuovere i kernel installati più vecchi del kernel in esecuzione" #: src/Gtk/MainWindow.vala:424 msgid "Changes" diff --git a/po/ko.po b/po/ko.po index da3393a4..aa39cb33 100644 --- a/po/ko.po +++ b/po/ko.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline 1.0.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-08-12 21:13-0400\n" +"POT-Creation-Date: 2021-09-14 13:48-0400\n" "PO-Revision-Date: 2021-06-01 14:57+0900\n" "Last-Translator: Kevin Kim \n" "Language-Team: Korean\n" @@ -39,27 +39,29 @@ msgid "Could not find running kernel in list!" msgstr "목록에서 사용중인 커널을 찾을 수 없습니다!" #: src/Common/LinuxKernel.vala:600 -msgid "Could not find any kernels to remove" +#, fuzzy +msgid "Could not find any kernels to uninstall" msgstr "삭제할 커널을 찾을 수 없습니다" #: src/Common/LinuxKernel.vala:609 -msgid "The following kernels will be removed:" +#, fuzzy +msgid "The following kernels will be uninstalled:" msgstr "아래 커널이 삭제됩니다:" #: src/Common/LinuxKernel.vala:616 msgid "Continue ?" msgstr "계속하시겠습니까?" -#: src/Common/LinuxKernel.vala:642 src/Console/AppConsole.vala:309 +#: src/Common/LinuxKernel.vala:642 src/Console/AppConsole.vala:314 msgid "Latest update" msgstr "최신 업데이트" -#: src/Common/LinuxKernel.vala:653 src/Console/AppConsole.vala:316 +#: src/Common/LinuxKernel.vala:653 src/Console/AppConsole.vala:321 msgid "Latest point update" msgstr "최신 포인트 업데이트" -#: src/Common/LinuxKernel.vala:661 src/Console/AppConsole.vala:321 -#: src/Console/AppConsole.vala:382 +#: src/Common/LinuxKernel.vala:661 src/Console/AppConsole.vala:326 +#: src/Console/AppConsole.vala:387 msgid "No updates found" msgstr "업데이트를 찾을 수 없습니다" @@ -116,15 +118,17 @@ msgid "Installation completed with errors" msgstr "오류가 있으나 설치가 완료되었습니다" #: src/Common/LinuxKernel.vala:1124 +#, fuzzy msgid "" -"Selected kernel is currently running and cannot be removed.\n" -" Install another kernel before removing this one." +"Selected kernel is currently running and cannot be un-installed.\n" +" Install another kernel before un-installing this one." msgstr "" "선택된 커널은 현재 사용 중이므로 삭제할 수 없습니다.\n" " 이 커널을 삭제하려면 다른 커널을 먼저 설치하세요." #: src/Common/LinuxKernel.vala:1129 -msgid "Preparing to remove selected kernels" +#, fuzzy +msgid "Preparing to uninstall selected kernels" msgstr "선택한 커널을 삭제하기 위해 준비중입니다" #: src/Common/LinuxKernel.vala:1160 src/Common/LinuxKernel.vala:1207 @@ -136,9 +140,10 @@ msgid "Un-install completed with errors" msgstr "오류가 있으나 삭제가 완료되었습니다" #: src/Common/LinuxKernel.vala:1176 +#, fuzzy msgid "" -"This kernel is currently running and cannot be removed.\n" -" Install another kernel before removing this one." +"This kernel is currently running and cannot be un-installed.\n" +" Install another kernel before un-installing this one." msgstr "" "이 커널은 현재 사용 중이므로 삭제할 수 없습니다.\n" " 이 커널을 삭제하려면 다른 커널을 먼저 설치하세요." @@ -193,11 +198,13 @@ msgid "Install specified mainline kernel" msgstr "지정한 메인라인 커널 설치" #: src/Console/AppConsole.vala:73 -msgid "Uninstall specified kernels" +#, fuzzy +msgid "Uninstall specified kernel" msgstr "지정한 커널 삭제" -#: src/Console/AppConsole.vala:74 src/Gtk/MainWindow.vala:392 -msgid "Remove installed kernels older than running kernel" +#: src/Console/AppConsole.vala:74 +#, fuzzy +msgid "Uninstall kernels older than the running kernel" msgstr "현재 사용중인 커널보다 이전 버전의 설치된 커널을 제거" #: src/Console/AppConsole.vala:75 @@ -242,53 +249,53 @@ msgid "" "One or more version strings (comma-separated) taken from the output of --list" msgstr "--list 의 출력에서 가져온 하나 이상의 버전 문자열 (쉼표로 구분)" -#: src/Console/AppConsole.vala:167 src/Gtk/AppGtk.vala:136 +#: src/Console/AppConsole.vala:169 src/Gtk/AppGtk.vala:136 msgid "Unknown option" msgstr "알 수 없는 옵션" -#: src/Console/AppConsole.vala:169 src/Console/AppConsole.vala:261 -#: src/Console/AppConsole.vala:289 +#: src/Console/AppConsole.vala:171 src/Console/AppConsole.vala:265 +#: src/Console/AppConsole.vala:294 msgid "Run" msgstr "실행" -#: src/Console/AppConsole.vala:169 +#: src/Console/AppConsole.vala:171 msgid "to list all options" msgstr "모든 옵션을 나열" -#: src/Console/AppConsole.vala:234 src/Console/AppConsole.vala:269 +#: src/Console/AppConsole.vala:238 src/Console/AppConsole.vala:273 msgid "No kernels specified" msgstr "지정한 커널이 없습니다" -#: src/Console/AppConsole.vala:240 +#: src/Console/AppConsole.vala:244 msgid "Multiple kernels selected for installation. Select only one." msgstr "설치할 커널이 여러개 선택되었습니다. 하나의 커널만 선택하세요." -#: src/Console/AppConsole.vala:258 src/Gtk/MainWindow.vala:100 +#: src/Console/AppConsole.vala:262 src/Gtk/MainWindow.vala:100 msgid "Could not find requested version" msgstr "요청한 버전을 찾을 수 없습니다" -#: src/Console/AppConsole.vala:261 +#: src/Console/AppConsole.vala:265 msgid "and use a version string listed in first column" msgstr "첫 번째 열에 나열된 버전 문자열을 사용" -#: src/Console/AppConsole.vala:288 +#: src/Console/AppConsole.vala:293 msgid "Command not specified" msgstr "지정한 명령어가 없습니다" -#: src/Console/AppConsole.vala:289 +#: src/Console/AppConsole.vala:294 msgid "to list all commands" msgstr "모든 명령어 나열" -#: src/Console/AppConsole.vala:355 +#: src/Console/AppConsole.vala:360 msgid "Show" msgstr "보이기" -#: src/Console/AppConsole.vala:360 src/Console/AppConsole.vala:372 +#: src/Console/AppConsole.vala:365 src/Console/AppConsole.vala:377 #, c-format msgid "Kernel %s Available" msgstr "커널 %s 사용 가능" -#: src/Console/AppConsole.vala:362 src/Console/AppConsole.vala:374 +#: src/Console/AppConsole.vala:367 src/Console/AppConsole.vala:379 #: src/Gtk/MainWindow.vala:330 msgid "Install" msgstr "설치" @@ -339,12 +346,14 @@ msgid "Select the kernel to install" msgstr "설치할 커널 선택" #: src/Gtk/MainWindow.vala:347 -msgid "Remove" -msgstr "제거" +#, fuzzy +msgid "Uninstall" +msgstr "설치" #: src/Gtk/MainWindow.vala:353 -msgid "Select the kernels to remove" -msgstr "제거할 커널 선택" +#, fuzzy +msgid "Select the kernels to uninstall" +msgstr "설치할 커널 선택" #: src/Gtk/MainWindow.vala:383 src/Gtk/MainWindow.vala:417 #: src/Gtk/MainWindow.vala:687 @@ -352,8 +361,14 @@ msgid "Close window to exit..." msgstr "창을 닫고 종료..." #: src/Gtk/MainWindow.vala:391 -msgid "Purge" -msgstr "오래된 커널 제거" +#, fuzzy +msgid "Uninstall Old" +msgstr "삭제가 완료되었습니다" + +#: src/Gtk/MainWindow.vala:392 +#, fuzzy +msgid "Uninstall kernels older than running kernel" +msgstr "현재 사용중인 커널보다 이전 버전의 설치된 커널을 제거" #: src/Gtk/MainWindow.vala:424 msgid "Changes" diff --git a/po/messages.pot b/po/messages.pot index dd058aee..7c0de92b 100644 --- a/po/messages.pot +++ b/po/messages.pot @@ -6,9 +6,9 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: mainline 1.0.14\n" +"Project-Id-Version: mainline 1.0.15\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-08-13 16:24-0400\n" +"POT-Creation-Date: 2021-09-14 15:39-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -38,27 +38,27 @@ msgid "Could not find running kernel in list!" msgstr "" #: src/Common/LinuxKernel.vala:600 -msgid "Could not find any kernels to remove" +msgid "Could not find any kernels to uninstall" msgstr "" #: src/Common/LinuxKernel.vala:609 -msgid "The following kernels will be removed:" +msgid "The following kernels will be uninstalled:" msgstr "" #: src/Common/LinuxKernel.vala:616 msgid "Continue ?" msgstr "" -#: src/Common/LinuxKernel.vala:642 src/Console/AppConsole.vala:309 +#: src/Common/LinuxKernel.vala:642 src/Console/AppConsole.vala:314 msgid "Latest update" msgstr "" -#: src/Common/LinuxKernel.vala:653 src/Console/AppConsole.vala:316 +#: src/Common/LinuxKernel.vala:653 src/Console/AppConsole.vala:321 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:661 src/Console/AppConsole.vala:321 -#: src/Console/AppConsole.vala:382 +#: src/Common/LinuxKernel.vala:661 src/Console/AppConsole.vala:326 +#: src/Console/AppConsole.vala:387 msgid "No updates found" msgstr "" @@ -116,12 +116,12 @@ msgstr "" #: src/Common/LinuxKernel.vala:1124 msgid "" -"Selected kernel is currently running and cannot be removed.\n" -" Install another kernel before removing this one." +"Selected kernel is currently running and cannot be un-installed.\n" +" Install another kernel before un-installing this one." msgstr "" #: src/Common/LinuxKernel.vala:1129 -msgid "Preparing to remove selected kernels" +msgid "Preparing to uninstall selected kernels" msgstr "" #: src/Common/LinuxKernel.vala:1160 src/Common/LinuxKernel.vala:1207 @@ -134,8 +134,8 @@ msgstr "" #: src/Common/LinuxKernel.vala:1176 msgid "" -"This kernel is currently running and cannot be removed.\n" -" Install another kernel before removing this one." +"This kernel is currently running and cannot be un-installed.\n" +" Install another kernel before un-installing this one." msgstr "" #: src/Common/Main.vala:241 @@ -188,11 +188,11 @@ msgid "Install specified mainline kernel" msgstr "" #: src/Console/AppConsole.vala:73 -msgid "Uninstall specified kernels" +msgid "Uninstall specified kernel" msgstr "" -#: src/Console/AppConsole.vala:74 src/Gtk/MainWindow.vala:392 -msgid "Remove installed kernels older than running kernel" +#: src/Console/AppConsole.vala:74 +msgid "Uninstall kernels older than the running kernel" msgstr "" #: src/Console/AppConsole.vala:75 @@ -236,53 +236,53 @@ msgid "" "One or more version strings (comma-separated) taken from the output of --list" msgstr "" -#: src/Console/AppConsole.vala:167 src/Gtk/AppGtk.vala:136 +#: src/Console/AppConsole.vala:169 src/Gtk/AppGtk.vala:136 msgid "Unknown option" msgstr "" -#: src/Console/AppConsole.vala:169 src/Console/AppConsole.vala:261 -#: src/Console/AppConsole.vala:289 +#: src/Console/AppConsole.vala:171 src/Console/AppConsole.vala:265 +#: src/Console/AppConsole.vala:294 msgid "Run" msgstr "" -#: src/Console/AppConsole.vala:169 +#: src/Console/AppConsole.vala:171 msgid "to list all options" msgstr "" -#: src/Console/AppConsole.vala:234 src/Console/AppConsole.vala:269 +#: src/Console/AppConsole.vala:238 src/Console/AppConsole.vala:273 msgid "No kernels specified" msgstr "" -#: src/Console/AppConsole.vala:240 +#: src/Console/AppConsole.vala:244 msgid "Multiple kernels selected for installation. Select only one." msgstr "" -#: src/Console/AppConsole.vala:258 src/Gtk/MainWindow.vala:100 +#: src/Console/AppConsole.vala:262 src/Gtk/MainWindow.vala:100 msgid "Could not find requested version" msgstr "" -#: src/Console/AppConsole.vala:261 +#: src/Console/AppConsole.vala:265 msgid "and use a version string listed in first column" msgstr "" -#: src/Console/AppConsole.vala:288 +#: src/Console/AppConsole.vala:293 msgid "Command not specified" msgstr "" -#: src/Console/AppConsole.vala:289 +#: src/Console/AppConsole.vala:294 msgid "to list all commands" msgstr "" -#: src/Console/AppConsole.vala:355 +#: src/Console/AppConsole.vala:360 msgid "Show" msgstr "" -#: src/Console/AppConsole.vala:360 src/Console/AppConsole.vala:372 +#: src/Console/AppConsole.vala:365 src/Console/AppConsole.vala:377 #, c-format msgid "Kernel %s Available" msgstr "" -#: src/Console/AppConsole.vala:362 src/Console/AppConsole.vala:374 +#: src/Console/AppConsole.vala:367 src/Console/AppConsole.vala:379 #: src/Gtk/MainWindow.vala:330 msgid "Install" msgstr "" @@ -333,11 +333,11 @@ msgid "Select the kernel to install" msgstr "" #: src/Gtk/MainWindow.vala:347 -msgid "Remove" +msgid "Uninstall" msgstr "" #: src/Gtk/MainWindow.vala:353 -msgid "Select the kernels to remove" +msgid "Select the kernels to uninstall" msgstr "" #: src/Gtk/MainWindow.vala:383 src/Gtk/MainWindow.vala:417 @@ -346,7 +346,11 @@ msgid "Close window to exit..." msgstr "" #: src/Gtk/MainWindow.vala:391 -msgid "Purge" +msgid "Uninstall Old" +msgstr "" + +#: src/Gtk/MainWindow.vala:392 +msgid "Uninstall kernels older than running kernel" msgstr "" #: src/Gtk/MainWindow.vala:424 diff --git a/po/nl.po b/po/nl.po index 8075af64..96e84e9c 100644 --- a/po/nl.po +++ b/po/nl.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-08-12 21:13-0400\n" +"POT-Creation-Date: 2021-09-14 13:48-0400\n" "PO-Revision-Date: 2020-08-23 13:55+0200\n" "Last-Translator: Heimen Stoffels \n" "Language-Team: \n" @@ -34,27 +34,29 @@ msgid "Could not find running kernel in list!" msgstr "De in gebruik zijnde kernel staat niet op de lijst!" #: src/Common/LinuxKernel.vala:600 -msgid "Could not find any kernels to remove" +#, fuzzy +msgid "Could not find any kernels to uninstall" msgstr "Er zijn geen te verwijderen kernels" #: src/Common/LinuxKernel.vala:609 -msgid "The following kernels will be removed:" +#, fuzzy +msgid "The following kernels will be uninstalled:" msgstr "De volgende kernels worden verwijderd:" #: src/Common/LinuxKernel.vala:616 msgid "Continue ?" msgstr "Wil je doorgaan?" -#: src/Common/LinuxKernel.vala:642 src/Console/AppConsole.vala:309 +#: src/Common/LinuxKernel.vala:642 src/Console/AppConsole.vala:314 msgid "Latest update" msgstr "Recentste update" -#: src/Common/LinuxKernel.vala:653 src/Console/AppConsole.vala:316 +#: src/Common/LinuxKernel.vala:653 src/Console/AppConsole.vala:321 msgid "Latest point update" msgstr "Recentste puntupdate" -#: src/Common/LinuxKernel.vala:661 src/Console/AppConsole.vala:321 -#: src/Console/AppConsole.vala:382 +#: src/Common/LinuxKernel.vala:661 src/Console/AppConsole.vala:326 +#: src/Console/AppConsole.vala:387 msgid "No updates found" msgstr "Geen updates gevonden" @@ -113,16 +115,18 @@ msgid "Installation completed with errors" msgstr "De installatie is foutloos voltooid" #: src/Common/LinuxKernel.vala:1124 +#, fuzzy msgid "" -"Selected kernel is currently running and cannot be removed.\n" -" Install another kernel before removing this one." +"Selected kernel is currently running and cannot be un-installed.\n" +" Install another kernel before un-installing this one." msgstr "" "De geselecteerde kernel is momenteel in gebruik en kan daarom niet worden " "verwijderd.\n" " Installeer eerst een andere kernel." #: src/Common/LinuxKernel.vala:1129 -msgid "Preparing to remove selected kernels" +#, fuzzy +msgid "Preparing to uninstall selected kernels" msgstr "Bezig met voorbereiden van verwijdering" #: src/Common/LinuxKernel.vala:1160 src/Common/LinuxKernel.vala:1207 @@ -134,9 +138,10 @@ msgid "Un-install completed with errors" msgstr "Deïnstalleren voltooid, maar met fouten" #: src/Common/LinuxKernel.vala:1176 +#, fuzzy msgid "" -"This kernel is currently running and cannot be removed.\n" -" Install another kernel before removing this one." +"This kernel is currently running and cannot be un-installed.\n" +" Install another kernel before un-installing this one." msgstr "" "Deze kernel is momenteel in gebruik en kan daarom niet worden verwijderd.\n" " Installeer eerst een andere kernel." @@ -191,11 +196,13 @@ msgid "Install specified mainline kernel" msgstr "Opgegeven mainline-kernel installeren" #: src/Console/AppConsole.vala:73 -msgid "Uninstall specified kernels" +#, fuzzy +msgid "Uninstall specified kernel" msgstr "Opgegeven kernels deïnstalleren" -#: src/Console/AppConsole.vala:74 src/Gtk/MainWindow.vala:392 -msgid "Remove installed kernels older than running kernel" +#: src/Console/AppConsole.vala:74 +#, fuzzy +msgid "Uninstall kernels older than the running kernel" msgstr "Geïnstalleerde kernels verwijderen die ouder zijn dan de huidige" #: src/Console/AppConsole.vala:75 @@ -242,54 +249,54 @@ msgstr "" "Eén of meerdere versietekenreeksen (kommagescheiden) uit de uitvoer van --" "list" -#: src/Console/AppConsole.vala:167 src/Gtk/AppGtk.vala:136 +#: src/Console/AppConsole.vala:169 src/Gtk/AppGtk.vala:136 msgid "Unknown option" msgstr "Onbekende optie" -#: src/Console/AppConsole.vala:169 src/Console/AppConsole.vala:261 -#: src/Console/AppConsole.vala:289 +#: src/Console/AppConsole.vala:171 src/Console/AppConsole.vala:265 +#: src/Console/AppConsole.vala:294 msgid "Run" msgstr "Uitvoeren" -#: src/Console/AppConsole.vala:169 +#: src/Console/AppConsole.vala:171 msgid "to list all options" msgstr "om alle opties te tonen" -#: src/Console/AppConsole.vala:234 src/Console/AppConsole.vala:269 +#: src/Console/AppConsole.vala:238 src/Console/AppConsole.vala:273 msgid "No kernels specified" msgstr "Geen kernels opgegeven" -#: src/Console/AppConsole.vala:240 +#: src/Console/AppConsole.vala:244 msgid "Multiple kernels selected for installation. Select only one." msgstr "" "Er zijn meerdere te installeren kernels geselecteerd. Selecteer er één." -#: src/Console/AppConsole.vala:258 src/Gtk/MainWindow.vala:100 +#: src/Console/AppConsole.vala:262 src/Gtk/MainWindow.vala:100 msgid "Could not find requested version" msgstr "De vereiste versie kan niet worden gevonden" -#: src/Console/AppConsole.vala:261 +#: src/Console/AppConsole.vala:265 msgid "and use a version string listed in first column" msgstr "en gebruik een versietekenreeks in de eerste kolom" -#: src/Console/AppConsole.vala:288 +#: src/Console/AppConsole.vala:293 msgid "Command not specified" msgstr "Geen opdracht opgegeven" -#: src/Console/AppConsole.vala:289 +#: src/Console/AppConsole.vala:294 msgid "to list all commands" msgstr "om alle opdrachten te tonen" -#: src/Console/AppConsole.vala:355 +#: src/Console/AppConsole.vala:360 msgid "Show" msgstr "Tonen" -#: src/Console/AppConsole.vala:360 src/Console/AppConsole.vala:372 +#: src/Console/AppConsole.vala:365 src/Console/AppConsole.vala:377 #, c-format msgid "Kernel %s Available" msgstr "Kernel %s is beschikbaar" -#: src/Console/AppConsole.vala:362 src/Console/AppConsole.vala:374 +#: src/Console/AppConsole.vala:367 src/Console/AppConsole.vala:379 #: src/Gtk/MainWindow.vala:330 msgid "Install" msgstr "Installeren" @@ -340,12 +347,14 @@ msgid "Select the kernel to install" msgstr "Selecteer de te installeren kernel" #: src/Gtk/MainWindow.vala:347 -msgid "Remove" -msgstr "Deïnstalleren" +#, fuzzy +msgid "Uninstall" +msgstr "Installeren" #: src/Gtk/MainWindow.vala:353 -msgid "Select the kernels to remove" -msgstr "Selecteer de te deïnstalleren kernels" +#, fuzzy +msgid "Select the kernels to uninstall" +msgstr "Selecteer de te installeren kernel" #: src/Gtk/MainWindow.vala:383 src/Gtk/MainWindow.vala:417 #: src/Gtk/MainWindow.vala:687 @@ -353,8 +362,14 @@ msgid "Close window to exit..." msgstr "Sluit het venster..." #: src/Gtk/MainWindow.vala:391 -msgid "Purge" -msgstr "Vernietigen" +#, fuzzy +msgid "Uninstall Old" +msgstr "Deïnstalleren voltooid" + +#: src/Gtk/MainWindow.vala:392 +#, fuzzy +msgid "Uninstall kernels older than running kernel" +msgstr "Geïnstalleerde kernels verwijderen die ouder zijn dan de huidige" #: src/Gtk/MainWindow.vala:424 msgid "Changes" diff --git a/po/pl.po b/po/pl.po index 7487da45..c266f2d5 100644 --- a/po/pl.po +++ b/po/pl.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-08-12 21:13-0400\n" +"POT-Creation-Date: 2021-09-14 13:48-0400\n" "PO-Revision-Date: 2017-08-12 15:26+0200\n" "Last-Translator: Viktor Sokyrko \n" "Language-Team: Polish\n" @@ -36,27 +36,28 @@ msgstr "Nie można odnaleźć żądanej wersji" #: src/Common/LinuxKernel.vala:600 #, fuzzy -msgid "Could not find any kernels to remove" +msgid "Could not find any kernels to uninstall" msgstr "Wybierz jądro do usunięcia" #: src/Common/LinuxKernel.vala:609 -msgid "The following kernels will be removed:" -msgstr "" +#, fuzzy +msgid "The following kernels will be uninstalled:" +msgstr "To jądro jest już zainstalowane." #: src/Common/LinuxKernel.vala:616 msgid "Continue ?" msgstr "Kontynuowac?" -#: src/Common/LinuxKernel.vala:642 src/Console/AppConsole.vala:309 +#: src/Common/LinuxKernel.vala:642 src/Console/AppConsole.vala:314 msgid "Latest update" msgstr "" -#: src/Common/LinuxKernel.vala:653 src/Console/AppConsole.vala:316 +#: src/Common/LinuxKernel.vala:653 src/Console/AppConsole.vala:321 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:661 src/Console/AppConsole.vala:321 -#: src/Console/AppConsole.vala:382 +#: src/Common/LinuxKernel.vala:661 src/Console/AppConsole.vala:326 +#: src/Console/AppConsole.vala:387 msgid "No updates found" msgstr "Nie znaleziono aktualizacji" @@ -115,15 +116,17 @@ msgid "Installation completed with errors" msgstr "Instalacja zakończona z błędami" #: src/Common/LinuxKernel.vala:1124 +#, fuzzy msgid "" -"Selected kernel is currently running and cannot be removed.\n" -" Install another kernel before removing this one." +"Selected kernel is currently running and cannot be un-installed.\n" +" Install another kernel before un-installing this one." msgstr "" "Wybrane jądro aktualnie działa i nie może zostać usunięte.\n" " Zainstaluj inne jądro przed usunięciem tego." #: src/Common/LinuxKernel.vala:1129 -msgid "Preparing to remove selected kernels" +#, fuzzy +msgid "Preparing to uninstall selected kernels" msgstr "Przygotowanie do usunięcia wybranych jąder" #: src/Common/LinuxKernel.vala:1160 src/Common/LinuxKernel.vala:1207 @@ -135,9 +138,10 @@ msgid "Un-install completed with errors" msgstr "De-instalacja zakończona z błędami" #: src/Common/LinuxKernel.vala:1176 +#, fuzzy msgid "" -"This kernel is currently running and cannot be removed.\n" -" Install another kernel before removing this one." +"This kernel is currently running and cannot be un-installed.\n" +" Install another kernel before un-installing this one." msgstr "" "To jądro aktualnie działa i nie może zostać usunięte.\n" " Zainstaluj inne jądro przed usunięciem tego." @@ -196,11 +200,11 @@ msgstr "Zainstaluj wybrane jądro" #: src/Console/AppConsole.vala:73 #, fuzzy -msgid "Uninstall specified kernels" +msgid "Uninstall specified kernel" msgstr "Zainstaluj wybrane jądro" -#: src/Console/AppConsole.vala:74 src/Gtk/MainWindow.vala:392 -msgid "Remove installed kernels older than running kernel" +#: src/Console/AppConsole.vala:74 +msgid "Uninstall kernels older than the running kernel" msgstr "" #: src/Console/AppConsole.vala:75 @@ -246,56 +250,56 @@ msgid "" "One or more version strings (comma-separated) taken from the output of --list" msgstr "" -#: src/Console/AppConsole.vala:167 src/Gtk/AppGtk.vala:136 +#: src/Console/AppConsole.vala:169 src/Gtk/AppGtk.vala:136 msgid "Unknown option" msgstr "Nieznana opcja" -#: src/Console/AppConsole.vala:169 src/Console/AppConsole.vala:261 -#: src/Console/AppConsole.vala:289 +#: src/Console/AppConsole.vala:171 src/Console/AppConsole.vala:265 +#: src/Console/AppConsole.vala:294 #, fuzzy msgid "Run" msgstr "Uruchomiony" -#: src/Console/AppConsole.vala:169 +#: src/Console/AppConsole.vala:171 #, fuzzy msgid "to list all options" msgstr "Pokaż wszystkie opcje" -#: src/Console/AppConsole.vala:234 src/Console/AppConsole.vala:269 +#: src/Console/AppConsole.vala:238 src/Console/AppConsole.vala:273 msgid "No kernels specified" msgstr "" -#: src/Console/AppConsole.vala:240 +#: src/Console/AppConsole.vala:244 msgid "Multiple kernels selected for installation. Select only one." msgstr "Wybrano kilka jąder do instalacji. Wybierz tylko jedno." -#: src/Console/AppConsole.vala:258 src/Gtk/MainWindow.vala:100 +#: src/Console/AppConsole.vala:262 src/Gtk/MainWindow.vala:100 msgid "Could not find requested version" msgstr "Nie można odnaleźć żądanej wersji" -#: src/Console/AppConsole.vala:261 +#: src/Console/AppConsole.vala:265 msgid "and use a version string listed in first column" msgstr "" -#: src/Console/AppConsole.vala:288 +#: src/Console/AppConsole.vala:293 msgid "Command not specified" msgstr "" -#: src/Console/AppConsole.vala:289 +#: src/Console/AppConsole.vala:294 #, fuzzy msgid "to list all commands" msgstr "Pokaż wszystkie opcje" -#: src/Console/AppConsole.vala:355 +#: src/Console/AppConsole.vala:360 msgid "Show" msgstr "Pokaż" -#: src/Console/AppConsole.vala:360 src/Console/AppConsole.vala:372 +#: src/Console/AppConsole.vala:365 src/Console/AppConsole.vala:377 #, c-format msgid "Kernel %s Available" msgstr "Dostępne jądro %s" -#: src/Console/AppConsole.vala:362 src/Console/AppConsole.vala:374 +#: src/Console/AppConsole.vala:367 src/Console/AppConsole.vala:379 #: src/Gtk/MainWindow.vala:330 msgid "Install" msgstr "Zainstaluj" @@ -346,12 +350,14 @@ msgid "Select the kernel to install" msgstr "Wybierz pojedyncze do instalacji" #: src/Gtk/MainWindow.vala:347 -msgid "Remove" -msgstr "Usuń" +#, fuzzy +msgid "Uninstall" +msgstr "Zainstaluj" #: src/Gtk/MainWindow.vala:353 -msgid "Select the kernels to remove" -msgstr "Wybierz jądro do usunięcia" +#, fuzzy +msgid "Select the kernels to uninstall" +msgstr "Wybierz pojedyncze do instalacji" #: src/Gtk/MainWindow.vala:383 src/Gtk/MainWindow.vala:417 #: src/Gtk/MainWindow.vala:687 @@ -359,7 +365,12 @@ msgid "Close window to exit..." msgstr "Zamknij okno żeby wyjść..." #: src/Gtk/MainWindow.vala:391 -msgid "Purge" +#, fuzzy +msgid "Uninstall Old" +msgstr "De-instalacja zakończona" + +#: src/Gtk/MainWindow.vala:392 +msgid "Uninstall kernels older than running kernel" msgstr "" #: src/Gtk/MainWindow.vala:424 diff --git a/po/ru.po b/po/ru.po index d81d481c..87ea9014 100644 --- a/po/ru.po +++ b/po/ru.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-08-12 21:13-0400\n" +"POT-Creation-Date: 2021-09-14 13:48-0400\n" "PO-Revision-Date: 2016-12-13 16:46+0300\n" "Last-Translator: Faust3000 \n" "Language-Team: Russian \n" @@ -37,27 +37,28 @@ msgstr "Не удалось найти запрошенную версию" #: src/Common/LinuxKernel.vala:600 #, fuzzy -msgid "Could not find any kernels to remove" +msgid "Could not find any kernels to uninstall" msgstr "Не удалось найти запрошенную версию" #: src/Common/LinuxKernel.vala:609 -msgid "The following kernels will be removed:" -msgstr "" +#, fuzzy +msgid "The following kernels will be uninstalled:" +msgstr "Это ядро уже установлено." #: src/Common/LinuxKernel.vala:616 msgid "Continue ?" msgstr "" -#: src/Common/LinuxKernel.vala:642 src/Console/AppConsole.vala:309 +#: src/Common/LinuxKernel.vala:642 src/Console/AppConsole.vala:314 msgid "Latest update" msgstr "" -#: src/Common/LinuxKernel.vala:653 src/Console/AppConsole.vala:316 +#: src/Common/LinuxKernel.vala:653 src/Console/AppConsole.vala:321 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:661 src/Console/AppConsole.vala:321 -#: src/Console/AppConsole.vala:382 +#: src/Common/LinuxKernel.vala:661 src/Console/AppConsole.vala:326 +#: src/Console/AppConsole.vala:387 msgid "No updates found" msgstr "Обновлений не найдено" @@ -120,15 +121,16 @@ msgstr "Установка завершена с ошибками" #: src/Common/LinuxKernel.vala:1124 #, fuzzy msgid "" -"Selected kernel is currently running and cannot be removed.\n" -" Install another kernel before removing this one." +"Selected kernel is currently running and cannot be un-installed.\n" +" Install another kernel before un-installing this one." msgstr "" "Это ядро в настоящий момент работает и не может быть удалено.\n" " Установите другое ядро, прежде чем удалять его." #: src/Common/LinuxKernel.vala:1129 -msgid "Preparing to remove selected kernels" -msgstr "" +#, fuzzy +msgid "Preparing to uninstall selected kernels" +msgstr "Установить указанную ветку ядра" #: src/Common/LinuxKernel.vala:1160 src/Common/LinuxKernel.vala:1207 msgid "Un-install completed" @@ -139,9 +141,10 @@ msgid "Un-install completed with errors" msgstr "Удаление завершено с ошибками" #: src/Common/LinuxKernel.vala:1176 +#, fuzzy msgid "" -"This kernel is currently running and cannot be removed.\n" -" Install another kernel before removing this one." +"This kernel is currently running and cannot be un-installed.\n" +" Install another kernel before un-installing this one." msgstr "" "Это ядро в настоящий момент работает и не может быть удалено.\n" " Установите другое ядро, прежде чем удалять его." @@ -201,11 +204,12 @@ msgstr "Установить указанную ветку ядра" #: src/Console/AppConsole.vala:73 #, fuzzy -msgid "Uninstall specified kernels" +msgid "Uninstall specified kernel" msgstr "Установить указанную ветку ядра" -#: src/Console/AppConsole.vala:74 src/Gtk/MainWindow.vala:392 -msgid "Remove installed kernels older than running kernel" +#: src/Console/AppConsole.vala:74 +#, fuzzy +msgid "Uninstall kernels older than the running kernel" msgstr "Удалить более старшие установленные ядра, чем используемое" #: src/Console/AppConsole.vala:75 @@ -251,56 +255,56 @@ msgid "" "One or more version strings (comma-separated) taken from the output of --list" msgstr "" -#: src/Console/AppConsole.vala:167 src/Gtk/AppGtk.vala:136 +#: src/Console/AppConsole.vala:169 src/Gtk/AppGtk.vala:136 msgid "Unknown option" msgstr "Неизвестный параметр" -#: src/Console/AppConsole.vala:169 src/Console/AppConsole.vala:261 -#: src/Console/AppConsole.vala:289 +#: src/Console/AppConsole.vala:171 src/Console/AppConsole.vala:265 +#: src/Console/AppConsole.vala:294 #, fuzzy msgid "Run" msgstr "Используется" -#: src/Console/AppConsole.vala:169 +#: src/Console/AppConsole.vala:171 #, fuzzy msgid "to list all options" msgstr "Показать все параметры" -#: src/Console/AppConsole.vala:234 src/Console/AppConsole.vala:269 +#: src/Console/AppConsole.vala:238 src/Console/AppConsole.vala:273 msgid "No kernels specified" msgstr "" -#: src/Console/AppConsole.vala:240 +#: src/Console/AppConsole.vala:244 msgid "Multiple kernels selected for installation. Select only one." msgstr "" -#: src/Console/AppConsole.vala:258 src/Gtk/MainWindow.vala:100 +#: src/Console/AppConsole.vala:262 src/Gtk/MainWindow.vala:100 msgid "Could not find requested version" msgstr "Не удалось найти запрошенную версию" -#: src/Console/AppConsole.vala:261 +#: src/Console/AppConsole.vala:265 msgid "and use a version string listed in first column" msgstr "" -#: src/Console/AppConsole.vala:288 +#: src/Console/AppConsole.vala:293 msgid "Command not specified" msgstr "" -#: src/Console/AppConsole.vala:289 +#: src/Console/AppConsole.vala:294 #, fuzzy msgid "to list all commands" msgstr "Показать все параметры" -#: src/Console/AppConsole.vala:355 +#: src/Console/AppConsole.vala:360 msgid "Show" msgstr "" -#: src/Console/AppConsole.vala:360 src/Console/AppConsole.vala:372 +#: src/Console/AppConsole.vala:365 src/Console/AppConsole.vala:377 #, fuzzy, c-format msgid "Kernel %s Available" msgstr "Установлено" -#: src/Console/AppConsole.vala:362 src/Console/AppConsole.vala:374 +#: src/Console/AppConsole.vala:367 src/Console/AppConsole.vala:379 #: src/Gtk/MainWindow.vala:330 msgid "Install" msgstr "Установить" @@ -351,11 +355,12 @@ msgid "Select the kernel to install" msgstr "" #: src/Gtk/MainWindow.vala:347 -msgid "Remove" -msgstr "Удалить" +#, fuzzy +msgid "Uninstall" +msgstr "Установить" #: src/Gtk/MainWindow.vala:353 -msgid "Select the kernels to remove" +msgid "Select the kernels to uninstall" msgstr "" #: src/Gtk/MainWindow.vala:383 src/Gtk/MainWindow.vala:417 @@ -364,8 +369,14 @@ msgid "Close window to exit..." msgstr "" #: src/Gtk/MainWindow.vala:391 -msgid "Purge" -msgstr "Очистить" +#, fuzzy +msgid "Uninstall Old" +msgstr "Удаление завершено" + +#: src/Gtk/MainWindow.vala:392 +#, fuzzy +msgid "Uninstall kernels older than running kernel" +msgstr "Удалить более старшие установленные ядра, чем используемое" #: src/Gtk/MainWindow.vala:424 msgid "Changes" diff --git a/po/sv.po b/po/sv.po index f081adfc..0c7f3fa2 100644 --- a/po/sv.po +++ b/po/sv.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-08-12 21:13-0400\n" +"POT-Creation-Date: 2021-09-14 13:48-0400\n" "PO-Revision-Date: 2018-01-13 16:56+0100\n" "Last-Translator: Åke Engelbrektson \n" "Language-Team: Svenska Språkfiler \n" @@ -38,27 +38,28 @@ msgstr "Kunde inte hitta efterfrågad version" #: src/Common/LinuxKernel.vala:600 #, fuzzy -msgid "Could not find any kernels to remove" +msgid "Could not find any kernels to uninstall" msgstr "Välj kärnor för borttagning" #: src/Common/LinuxKernel.vala:609 -msgid "The following kernels will be removed:" -msgstr "" +#, fuzzy +msgid "The following kernels will be uninstalled:" +msgstr "Denna kärna är redan installerad" #: src/Common/LinuxKernel.vala:616 msgid "Continue ?" msgstr "" -#: src/Common/LinuxKernel.vala:642 src/Console/AppConsole.vala:309 +#: src/Common/LinuxKernel.vala:642 src/Console/AppConsole.vala:314 msgid "Latest update" msgstr "" -#: src/Common/LinuxKernel.vala:653 src/Console/AppConsole.vala:316 +#: src/Common/LinuxKernel.vala:653 src/Console/AppConsole.vala:321 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:661 src/Console/AppConsole.vala:321 -#: src/Console/AppConsole.vala:382 +#: src/Common/LinuxKernel.vala:661 src/Console/AppConsole.vala:326 +#: src/Console/AppConsole.vala:387 msgid "No updates found" msgstr "Inga uppdateringar hittades" @@ -115,15 +116,17 @@ msgid "Installation completed with errors" msgstr "Installation slutförd med fel" #: src/Common/LinuxKernel.vala:1124 +#, fuzzy msgid "" -"Selected kernel is currently running and cannot be removed.\n" -" Install another kernel before removing this one." +"Selected kernel is currently running and cannot be un-installed.\n" +" Install another kernel before un-installing this one." msgstr "" "Denna kärna används för tillfället och kan inte tas bort.\n" "Installera en annan kärna innan du tar bort den här." #: src/Common/LinuxKernel.vala:1129 -msgid "Preparing to remove selected kernels" +#, fuzzy +msgid "Preparing to uninstall selected kernels" msgstr "Förbereder borttagning av markerade kärnor" #: src/Common/LinuxKernel.vala:1160 src/Common/LinuxKernel.vala:1207 @@ -135,9 +138,10 @@ msgid "Un-install completed with errors" msgstr "Avinstallation slutförd med fel" #: src/Common/LinuxKernel.vala:1176 +#, fuzzy msgid "" -"This kernel is currently running and cannot be removed.\n" -" Install another kernel before removing this one." +"This kernel is currently running and cannot be un-installed.\n" +" Install another kernel before un-installing this one." msgstr "" "Denna kärna används för tillfället och kan inte tas bort.\n" "Installera en annan kärna innan du tar bort den här." @@ -197,11 +201,12 @@ msgstr "Installera specificerad kärna" #: src/Console/AppConsole.vala:73 #, fuzzy -msgid "Uninstall specified kernels" +msgid "Uninstall specified kernel" msgstr "Installera specificerad kärna" -#: src/Console/AppConsole.vala:74 src/Gtk/MainWindow.vala:392 -msgid "Remove installed kernels older than running kernel" +#: src/Console/AppConsole.vala:74 +#, fuzzy +msgid "Uninstall kernels older than the running kernel" msgstr "Ta bort installerade kärnor äldre än den som körs" #: src/Console/AppConsole.vala:75 @@ -247,56 +252,56 @@ msgid "" "One or more version strings (comma-separated) taken from the output of --list" msgstr "" -#: src/Console/AppConsole.vala:167 src/Gtk/AppGtk.vala:136 +#: src/Console/AppConsole.vala:169 src/Gtk/AppGtk.vala:136 msgid "Unknown option" msgstr "Okänt alternativ" -#: src/Console/AppConsole.vala:169 src/Console/AppConsole.vala:261 -#: src/Console/AppConsole.vala:289 +#: src/Console/AppConsole.vala:171 src/Console/AppConsole.vala:265 +#: src/Console/AppConsole.vala:294 #, fuzzy msgid "Run" msgstr "Körs" -#: src/Console/AppConsole.vala:169 +#: src/Console/AppConsole.vala:171 #, fuzzy msgid "to list all options" msgstr "Visa alla alternativ" -#: src/Console/AppConsole.vala:234 src/Console/AppConsole.vala:269 +#: src/Console/AppConsole.vala:238 src/Console/AppConsole.vala:273 msgid "No kernels specified" msgstr "" -#: src/Console/AppConsole.vala:240 +#: src/Console/AppConsole.vala:244 msgid "Multiple kernels selected for installation. Select only one." msgstr "Flera kärnor valda för installation. Välj endast en." -#: src/Console/AppConsole.vala:258 src/Gtk/MainWindow.vala:100 +#: src/Console/AppConsole.vala:262 src/Gtk/MainWindow.vala:100 msgid "Could not find requested version" msgstr "Kunde inte hitta efterfrågad version" -#: src/Console/AppConsole.vala:261 +#: src/Console/AppConsole.vala:265 msgid "and use a version string listed in first column" msgstr "" -#: src/Console/AppConsole.vala:288 +#: src/Console/AppConsole.vala:293 msgid "Command not specified" msgstr "" -#: src/Console/AppConsole.vala:289 +#: src/Console/AppConsole.vala:294 #, fuzzy msgid "to list all commands" msgstr "Visa alla alternativ" -#: src/Console/AppConsole.vala:355 +#: src/Console/AppConsole.vala:360 msgid "Show" msgstr "" -#: src/Console/AppConsole.vala:360 src/Console/AppConsole.vala:372 +#: src/Console/AppConsole.vala:365 src/Console/AppConsole.vala:377 #, fuzzy, c-format msgid "Kernel %s Available" msgstr "Tillgängliga paket" -#: src/Console/AppConsole.vala:362 src/Console/AppConsole.vala:374 +#: src/Console/AppConsole.vala:367 src/Console/AppConsole.vala:379 #: src/Gtk/MainWindow.vala:330 msgid "Install" msgstr "Installera" @@ -347,12 +352,14 @@ msgid "Select the kernel to install" msgstr "Välj kärna för installation" #: src/Gtk/MainWindow.vala:347 -msgid "Remove" -msgstr "Ta bort" +#, fuzzy +msgid "Uninstall" +msgstr "Installera" #: src/Gtk/MainWindow.vala:353 -msgid "Select the kernels to remove" -msgstr "Välj kärnor för borttagning" +#, fuzzy +msgid "Select the kernels to uninstall" +msgstr "Välj kärna för installation" #: src/Gtk/MainWindow.vala:383 src/Gtk/MainWindow.vala:417 #: src/Gtk/MainWindow.vala:687 @@ -360,8 +367,14 @@ msgid "Close window to exit..." msgstr "" #: src/Gtk/MainWindow.vala:391 -msgid "Purge" -msgstr "Rensa" +#, fuzzy +msgid "Uninstall Old" +msgstr "Avinstallation slutförd" + +#: src/Gtk/MainWindow.vala:392 +#, fuzzy +msgid "Uninstall kernels older than running kernel" +msgstr "Ta bort installerade kärnor äldre än den som körs" #: src/Gtk/MainWindow.vala:424 msgid "Changes" diff --git a/po/tr.po b/po/tr.po index ed33f631..29c4ef97 100644 --- a/po/tr.po +++ b/po/tr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-08-12 21:13-0400\n" +"POT-Creation-Date: 2021-09-14 13:48-0400\n" "PO-Revision-Date: 2020-03-10 15:59+0300\n" "Last-Translator: Gökhan GÖKKAYA \n" "Language-Team: Turkish\n" @@ -34,27 +34,29 @@ msgid "Could not find running kernel in list!" msgstr "İstenen sürüm bulunamadı!" #: src/Common/LinuxKernel.vala:600 -msgid "Could not find any kernels to remove" +#, fuzzy +msgid "Could not find any kernels to uninstall" msgstr "Kaldırılacak çekirdek bulunamadı" #: src/Common/LinuxKernel.vala:609 -msgid "The following kernels will be removed:" +#, fuzzy +msgid "The following kernels will be uninstalled:" msgstr "Aşağıdaki çekirdekler silinecek:" #: src/Common/LinuxKernel.vala:616 msgid "Continue ?" msgstr "Devam et ?" -#: src/Common/LinuxKernel.vala:642 src/Console/AppConsole.vala:309 +#: src/Common/LinuxKernel.vala:642 src/Console/AppConsole.vala:314 msgid "Latest update" msgstr "Son güncelleme" -#: src/Common/LinuxKernel.vala:653 src/Console/AppConsole.vala:316 +#: src/Common/LinuxKernel.vala:653 src/Console/AppConsole.vala:321 msgid "Latest point update" msgstr "Son güncelleme noktası" -#: src/Common/LinuxKernel.vala:661 src/Console/AppConsole.vala:321 -#: src/Console/AppConsole.vala:382 +#: src/Common/LinuxKernel.vala:661 src/Console/AppConsole.vala:326 +#: src/Console/AppConsole.vala:387 msgid "No updates found" msgstr "Güncelleme bulunamadı" @@ -112,15 +114,17 @@ msgid "Installation completed with errors" msgstr "Kurulum hatalarla tamamlandı" #: src/Common/LinuxKernel.vala:1124 +#, fuzzy msgid "" -"Selected kernel is currently running and cannot be removed.\n" -" Install another kernel before removing this one." +"Selected kernel is currently running and cannot be un-installed.\n" +" Install another kernel before un-installing this one." msgstr "" "Seçilen çekirdek şu anda çalışıyor ve kaldırılamıyor.\n" " Bunu kaldırmadan önce başka bir çekirdek yükleyin." #: src/Common/LinuxKernel.vala:1129 -msgid "Preparing to remove selected kernels" +#, fuzzy +msgid "Preparing to uninstall selected kernels" msgstr "Seçilen çekirdekleri kaldırmak için hazırlanıyor" #: src/Common/LinuxKernel.vala:1160 src/Common/LinuxKernel.vala:1207 @@ -132,9 +136,10 @@ msgid "Un-install completed with errors" msgstr "Kaldırma hatalarla tamamlandı" #: src/Common/LinuxKernel.vala:1176 +#, fuzzy msgid "" -"This kernel is currently running and cannot be removed.\n" -" Install another kernel before removing this one." +"This kernel is currently running and cannot be un-installed.\n" +" Install another kernel before un-installing this one." msgstr "" "Bu çekirdek şu anda çalışıyor ve bu sebeple kaldırılamaz.\n" "Bunu kaldırmadan önce başka bir çekirdek yükleyin." @@ -191,11 +196,12 @@ msgstr "Belirtilen mainline çekirdeğini kur" #: src/Console/AppConsole.vala:73 #, fuzzy -msgid "Uninstall specified kernels" +msgid "Uninstall specified kernel" msgstr "Belirtilen mainline çekirdeğini kur" -#: src/Console/AppConsole.vala:74 src/Gtk/MainWindow.vala:392 -msgid "Remove installed kernels older than running kernel" +#: src/Console/AppConsole.vala:74 +#, fuzzy +msgid "Uninstall kernels older than the running kernel" msgstr "Çalışan çekirdekten eski olan kurulu çekirdekleri kaldır" #: src/Console/AppConsole.vala:75 @@ -241,56 +247,56 @@ msgid "" "One or more version strings (comma-separated) taken from the output of --list" msgstr "" -#: src/Console/AppConsole.vala:167 src/Gtk/AppGtk.vala:136 +#: src/Console/AppConsole.vala:169 src/Gtk/AppGtk.vala:136 msgid "Unknown option" msgstr "Bilinmeyen seçenek" -#: src/Console/AppConsole.vala:169 src/Console/AppConsole.vala:261 -#: src/Console/AppConsole.vala:289 +#: src/Console/AppConsole.vala:171 src/Console/AppConsole.vala:265 +#: src/Console/AppConsole.vala:294 #, fuzzy msgid "Run" msgstr "Çalıştır '" -#: src/Console/AppConsole.vala:169 +#: src/Console/AppConsole.vala:171 #, fuzzy msgid "to list all options" msgstr "Tüm seçenekleri göster" -#: src/Console/AppConsole.vala:234 src/Console/AppConsole.vala:269 +#: src/Console/AppConsole.vala:238 src/Console/AppConsole.vala:273 msgid "No kernels specified" msgstr "Belirtilen çekirdek yok" -#: src/Console/AppConsole.vala:240 +#: src/Console/AppConsole.vala:244 msgid "Multiple kernels selected for installation. Select only one." msgstr "Kurulum için çoklu çekirdek seçildi. Sadece bir tane seçiniz." -#: src/Console/AppConsole.vala:258 src/Gtk/MainWindow.vala:100 +#: src/Console/AppConsole.vala:262 src/Gtk/MainWindow.vala:100 msgid "Could not find requested version" msgstr "İstenen sürüm bulunamadı" -#: src/Console/AppConsole.vala:261 +#: src/Console/AppConsole.vala:265 msgid "and use a version string listed in first column" msgstr "" -#: src/Console/AppConsole.vala:288 +#: src/Console/AppConsole.vala:293 msgid "Command not specified" msgstr "Komut belirtilmedi" -#: src/Console/AppConsole.vala:289 +#: src/Console/AppConsole.vala:294 #, fuzzy msgid "to list all commands" msgstr "Tüm seçenekleri göster" -#: src/Console/AppConsole.vala:355 +#: src/Console/AppConsole.vala:360 msgid "Show" msgstr "" -#: src/Console/AppConsole.vala:360 src/Console/AppConsole.vala:372 +#: src/Console/AppConsole.vala:365 src/Console/AppConsole.vala:377 #, fuzzy, c-format msgid "Kernel %s Available" msgstr "Mevcut Paketler" -#: src/Console/AppConsole.vala:362 src/Console/AppConsole.vala:374 +#: src/Console/AppConsole.vala:367 src/Console/AppConsole.vala:379 #: src/Gtk/MainWindow.vala:330 msgid "Install" msgstr "Kur" @@ -341,12 +347,14 @@ msgid "Select the kernel to install" msgstr "Kurulum için çekirdek seçin" #: src/Gtk/MainWindow.vala:347 -msgid "Remove" -msgstr "Sil" +#, fuzzy +msgid "Uninstall" +msgstr "Kur" #: src/Gtk/MainWindow.vala:353 -msgid "Select the kernels to remove" -msgstr "Kaldırma için çekirdek seçin" +#, fuzzy +msgid "Select the kernels to uninstall" +msgstr "Kurulum için çekirdek seçin" #: src/Gtk/MainWindow.vala:383 src/Gtk/MainWindow.vala:417 #: src/Gtk/MainWindow.vala:687 @@ -354,8 +362,14 @@ msgid "Close window to exit..." msgstr "" #: src/Gtk/MainWindow.vala:391 -msgid "Purge" -msgstr "Temizle" +#, fuzzy +msgid "Uninstall Old" +msgstr "Kaldırma tamamlandı" + +#: src/Gtk/MainWindow.vala:392 +#, fuzzy +msgid "Uninstall kernels older than running kernel" +msgstr "Çalışan çekirdekten eski olan kurulu çekirdekleri kaldır" #: src/Gtk/MainWindow.vala:424 msgid "Changes" diff --git a/po/uk.po b/po/uk.po index 4600d6be..f0822db9 100644 --- a/po/uk.po +++ b/po/uk.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-08-12 21:13-0400\n" +"POT-Creation-Date: 2021-09-14 13:48-0400\n" "PO-Revision-Date: 2019-07-25 11:00+0300\n" "Last-Translator: Serhii Golovko \n" "Language-Team: Ukranian \n" @@ -34,27 +34,29 @@ msgid "Could not find running kernel in list!" msgstr "Не вдалося знайти запущене ядро у списку!" #: src/Common/LinuxKernel.vala:600 -msgid "Could not find any kernels to remove" +#, fuzzy +msgid "Could not find any kernels to uninstall" msgstr "Не вдалося знайти жодне ядро для вилучення" #: src/Common/LinuxKernel.vala:609 -msgid "The following kernels will be removed:" +#, fuzzy +msgid "The following kernels will be uninstalled:" msgstr "Наступні ядра будуть видалені:" #: src/Common/LinuxKernel.vala:616 msgid "Continue ?" msgstr "Продовжувати ?" -#: src/Common/LinuxKernel.vala:642 src/Console/AppConsole.vala:309 +#: src/Common/LinuxKernel.vala:642 src/Console/AppConsole.vala:314 msgid "Latest update" msgstr "Останнє оновлення" -#: src/Common/LinuxKernel.vala:653 src/Console/AppConsole.vala:316 +#: src/Common/LinuxKernel.vala:653 src/Console/AppConsole.vala:321 msgid "Latest point update" msgstr "Остання точка оновлення" -#: src/Common/LinuxKernel.vala:661 src/Console/AppConsole.vala:321 -#: src/Console/AppConsole.vala:382 +#: src/Common/LinuxKernel.vala:661 src/Console/AppConsole.vala:326 +#: src/Console/AppConsole.vala:387 msgid "No updates found" msgstr "Оновлень не знайдено" @@ -112,15 +114,17 @@ msgid "Installation completed with errors" msgstr "Установка завершена з помилками" #: src/Common/LinuxKernel.vala:1124 +#, fuzzy msgid "" -"Selected kernel is currently running and cannot be removed.\n" -" Install another kernel before removing this one." +"Selected kernel is currently running and cannot be un-installed.\n" +" Install another kernel before un-installing this one." msgstr "" "Це ядро зараз працює і не може бути видалено. \n" "Встановіть інше ядро, перш ніж видаляти його." #: src/Common/LinuxKernel.vala:1129 -msgid "Preparing to remove selected kernels" +#, fuzzy +msgid "Preparing to uninstall selected kernels" msgstr "Підготовка до видалення вибраних ядер" #: src/Common/LinuxKernel.vala:1160 src/Common/LinuxKernel.vala:1207 @@ -132,9 +136,10 @@ msgid "Un-install completed with errors" msgstr "Видалення завершено з помилками" #: src/Common/LinuxKernel.vala:1176 +#, fuzzy msgid "" -"This kernel is currently running and cannot be removed.\n" -" Install another kernel before removing this one." +"This kernel is currently running and cannot be un-installed.\n" +" Install another kernel before un-installing this one." msgstr "" "Це ядро наразі працює і його неможливо видалити.\n" " Встановіть інше ядро перед тим, як видалити его." @@ -191,11 +196,12 @@ msgstr "Встановіть конкретне основне ядро" #: src/Console/AppConsole.vala:73 #, fuzzy -msgid "Uninstall specified kernels" +msgid "Uninstall specified kernel" msgstr "Видаліть конкретні ядра" -#: src/Console/AppConsole.vala:74 src/Gtk/MainWindow.vala:392 -msgid "Remove installed kernels older than running kernel" +#: src/Console/AppConsole.vala:74 +#, fuzzy +msgid "Uninstall kernels older than the running kernel" msgstr "Видаліть встановлені ядра, старші за запущене ядро" #: src/Console/AppConsole.vala:75 @@ -243,56 +249,56 @@ msgid "" msgstr "" "Одна або кілька рядків версії (розділені комами), взяті з виводу --list" -#: src/Console/AppConsole.vala:167 src/Gtk/AppGtk.vala:136 +#: src/Console/AppConsole.vala:169 src/Gtk/AppGtk.vala:136 msgid "Unknown option" msgstr "Невідомий параметр" -#: src/Console/AppConsole.vala:169 src/Console/AppConsole.vala:261 -#: src/Console/AppConsole.vala:289 +#: src/Console/AppConsole.vala:171 src/Console/AppConsole.vala:265 +#: src/Console/AppConsole.vala:294 #, fuzzy msgid "Run" msgstr "Запуск" -#: src/Console/AppConsole.vala:169 +#: src/Console/AppConsole.vala:171 #, fuzzy msgid "to list all options" msgstr "Показати усі параметри" -#: src/Console/AppConsole.vala:234 src/Console/AppConsole.vala:269 +#: src/Console/AppConsole.vala:238 src/Console/AppConsole.vala:273 msgid "No kernels specified" msgstr "Ядра не вказані" -#: src/Console/AppConsole.vala:240 +#: src/Console/AppConsole.vala:244 msgid "Multiple kernels selected for installation. Select only one." msgstr "Для встановлення вибрано кілька ядер. Виберіть лише одну." -#: src/Console/AppConsole.vala:258 src/Gtk/MainWindow.vala:100 +#: src/Console/AppConsole.vala:262 src/Gtk/MainWindow.vala:100 msgid "Could not find requested version" msgstr "Не вдалося знайти запитувану версію" -#: src/Console/AppConsole.vala:261 +#: src/Console/AppConsole.vala:265 msgid "and use a version string listed in first column" msgstr "і використовувати рядок версій, вказаний у першому стовпці" -#: src/Console/AppConsole.vala:288 +#: src/Console/AppConsole.vala:293 msgid "Command not specified" msgstr "Команда не вказана" -#: src/Console/AppConsole.vala:289 +#: src/Console/AppConsole.vala:294 #, fuzzy msgid "to list all commands" msgstr "Показати усі параметри" -#: src/Console/AppConsole.vala:355 +#: src/Console/AppConsole.vala:360 msgid "Show" msgstr "Показати" -#: src/Console/AppConsole.vala:360 src/Console/AppConsole.vala:372 +#: src/Console/AppConsole.vala:365 src/Console/AppConsole.vala:377 #, fuzzy, c-format msgid "Kernel %s Available" msgstr "Доступні пакети" -#: src/Console/AppConsole.vala:362 src/Console/AppConsole.vala:374 +#: src/Console/AppConsole.vala:367 src/Console/AppConsole.vala:379 #: src/Gtk/MainWindow.vala:330 msgid "Install" msgstr "Встановити" @@ -343,12 +349,14 @@ msgid "Select the kernel to install" msgstr "Виберіть ядро для встановлення" #: src/Gtk/MainWindow.vala:347 -msgid "Remove" -msgstr "Видалити" +#, fuzzy +msgid "Uninstall" +msgstr "Встановити" #: src/Gtk/MainWindow.vala:353 -msgid "Select the kernels to remove" -msgstr "Виберіть ядра для видалення" +#, fuzzy +msgid "Select the kernels to uninstall" +msgstr "Виберіть ядро для встановлення" #: src/Gtk/MainWindow.vala:383 src/Gtk/MainWindow.vala:417 #: src/Gtk/MainWindow.vala:687 @@ -356,8 +364,14 @@ msgid "Close window to exit..." msgstr "Закрийте вікно, щоб вийти..." #: src/Gtk/MainWindow.vala:391 -msgid "Purge" -msgstr "Чистити" +#, fuzzy +msgid "Uninstall Old" +msgstr "Видалення завершено" + +#: src/Gtk/MainWindow.vala:392 +#, fuzzy +msgid "Uninstall kernels older than running kernel" +msgstr "Видаліть встановлені ядра, старші за запущене ядро" #: src/Gtk/MainWindow.vala:424 msgid "Changes" diff --git a/src/Common/LinuxKernel.vala b/src/Common/LinuxKernel.vala index 894a22ee..2f163d4a 100644 --- a/src/Common/LinuxKernel.vala +++ b/src/Common/LinuxKernel.vala @@ -569,7 +569,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { } } - public static void purge_old_kernels(bool confirm){ + public static void kunin_old(bool confirm){ check_installed(); @@ -597,7 +597,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { } if (list.size == 0){ - log_msg(_("Could not find any kernels to remove")); + log_msg(_("Could not find any kernels to uninstall")); log_msg(string.nfill(70, '-')); return; } @@ -606,7 +606,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { if (confirm){ - var message = "\n%s:\n".printf(_("The following kernels will be removed:")); + var message = "\n%s:\n".printf(_("The following kernels will be uninstalled:")); foreach(var kern in list){ @@ -623,16 +623,16 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { if (ch != 'y'){ return; } } - // remove -------------------------------- - foreach(var kern in list) kern.remove(); + // uninstall -------------------------------- + foreach(var kern in list) kern.kunin(); } - public static void install_latest(bool point_update, bool confirm){ + public static void kinst_latest(bool point_update, bool confirm){ query(true); // already done in query() -> query_thread() ? - //check_updates("install_latest()"); + //check_updates("kinst_latest()"); //check_updates(); var kern_major = LinuxKernel.kernel_update_major; @@ -642,7 +642,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { var message = "%s: %s".printf(_("Latest update"), kern_major.version_main); log_msg(message); - install_update(kern_major, confirm); + kinst_update(kern_major, confirm); return; } @@ -653,7 +653,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { var message = "%s: %s".printf(_("Latest point update"), kern_minor.version_main); log_msg(message); - install_update(kern_minor, confirm); + kinst_update(kern_minor, confirm); return; } @@ -664,7 +664,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { log_msg(string.nfill(70, '-')); } - public static void install_update(LinuxKernel kern, bool confirm){ + public static void kinst_update(LinuxKernel kern, bool confirm){ if (confirm){ @@ -677,7 +677,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { if (ch != 'y'){ return; } } - kern.install(); + kern.kinst(); } // helpers @@ -1073,7 +1073,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { } // dep: dpkg - public bool install(){ + public bool kinst(){ // check if installed if (is_installed){ @@ -1092,7 +1092,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { foreach(string file_name in deb_list.keys){ flist += " '%s'".printf(file_name); - log_msg("install() flist += %s".printf(file_name)); + log_msg("kinst() flist += %s".printf(file_name)); } string cmd = "cd "+cache_subdir @@ -1114,19 +1114,19 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { } // dep: dpkg - public static bool remove_kernels(Gee.ArrayList selected_kernels){ + public static bool kunin_list(Gee.ArrayList selected_kernels){ bool ok = true; int status = -1; // check if running foreach(var k in selected_kernels){ if (k.is_running){ - log_error(_("Selected kernel is currently running and cannot be removed.\n Install another kernel before removing this one.")); + log_error(_("Selected kernel is currently running and cannot be un-installed.\n Install another kernel before un-installing this one.")); return false; } } - log_msg(_("Preparing to remove selected kernels")); + log_msg(_("Preparing to uninstall selected kernels")); string cmd = "pkexec env DISPLAY=${DISPLAY} XAUTHORITY=${XAUTHORITY} dpkg -r"; @@ -1148,7 +1148,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { } } else{ - log_error("Could not find the packages to remove!"); + log_error("Could not find the packages to un-install!"); return false; } } @@ -1167,17 +1167,17 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { } // dep: dpkg - public bool remove(){ + public bool kunin(){ bool ok = true; int status = -1; // check if running if (is_running){ - log_error(_("This kernel is currently running and cannot be removed.\n Install another kernel before removing this one.")); + log_error(_("This kernel is currently running and cannot be un-installed.\n Install another kernel before un-installing this one.")); return false; } - log_msg("Preparing to remove '%s'".printf(version_main)); + log_msg("Preparing to un-install '%s'".printf(version_main)); string cmd = "pkexec env DISPLAY=${DISPLAY} XAUTHORITY=${XAUTHORITY} dpkg -r"; @@ -1196,7 +1196,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { } } else{ - log_error("Could not find the packages to remove!"); + log_error("Could not find the packages to un-install!"); return false; } diff --git a/src/Console/AppConsole.vala b/src/Console/AppConsole.vala index a58e52b1..994c694e 100644 --- a/src/Console/AppConsole.vala +++ b/src/Console/AppConsole.vala @@ -70,8 +70,8 @@ public class AppConsole : GLib.Object { + " --install-latest " + _("Install latest mainline kernel") + "\n" + " --install-point " + _("Install latest point update for current series") + "\n" + " --install " + _("Install specified mainline kernel") + "(1)\n" - + " --remove " + _("Uninstall specified kernels") + "(2)\n" - + " --purge-old-kernels " + _("Remove installed kernels older than running kernel") + "\n" + + " --uninstall " + _("Uninstall specified kernel") + "(2)\n" + + " --uninstall-old " + _("Uninstall kernels older than the running kernel") + "\n" + " --download " + _("Download specified kernels") + "(2)\n" + " --clean-cache " + _("Remove files from application cache") + "\n" + "\n" @@ -127,7 +127,7 @@ public class AppConsole : GLib.Object { } break; - case "--show-unstable": // backwards compatibility + case "--show-unstable": // back compat case "--include-unstable": App.hide_unstable = false; break; @@ -141,14 +141,16 @@ public class AppConsole : GLib.Object { case "--notify": case "--install-latest": case "--install-point": - case "--purge-old-kernels": + case "--purge-old-kernels": // back compat + case "--uninstall-old": case "--clean-cache": cmd = args[k].down(); break; case "--download": case "--install": - case "--remove": + case "--remove": // back compat + case "--uninstall": cmd = args[k].down(); if (++k < args.length){ @@ -207,13 +209,14 @@ public class AppConsole : GLib.Object { check_if_internet_is_active(true); - LinuxKernel.install_latest(false, App.confirm); + LinuxKernel.kinst_latest(false, App.confirm); break; - case "--purge-old-kernels": + case "--purge-old-kernels": // back compat + case "--uninstall-old": - LinuxKernel.purge_old_kernels(App.confirm); + LinuxKernel.kunin_old(App.confirm); break; @@ -225,7 +228,8 @@ public class AppConsole : GLib.Object { case "--download": case "--install": - case "--remove": + case "--remove": // back compat + case "--uninstall": if (cmd=="--download") check_if_internet_is_active(); LinuxKernel.query(true); @@ -274,11 +278,12 @@ public class AppConsole : GLib.Object { case "--download": return LinuxKernel.download_kernels(list); - case "--remove": - return LinuxKernel.remove_kernels(list); + case "--remove": // back compat + case "--uninstall": + return LinuxKernel.kunin_list(list); case "--install": - return list[0].install(); + return list[0].kinst(); } break; diff --git a/src/Gtk/MainWindow.vala b/src/Gtk/MainWindow.vala index ac16b13e..efa3d532 100644 --- a/src/Gtk/MainWindow.vala +++ b/src/Gtk/MainWindow.vala @@ -40,8 +40,8 @@ public class MainWindow : Gtk.Window{ private Gtk.TreeView tv; private Gtk.Button btn_refresh; private Gtk.Button btn_install; - private Gtk.Button btn_remove; - private Gtk.Button btn_purge; + private Gtk.Button btn_uninstall; + private Gtk.Button btn_uninstall_old; private Gtk.Button btn_changes; private Gtk.Label lbl_info; @@ -103,7 +103,7 @@ public class MainWindow : Gtk.Window{ exit(1); } else{ - install(kern_requested); + kinst(kern_requested); } break; @@ -293,14 +293,14 @@ public class MainWindow : Gtk.Window{ private void set_button_state(){ if (selected_kernels.size == 0){ btn_install.sensitive = false; - btn_remove.sensitive = false; - btn_purge.sensitive = true; + btn_uninstall.sensitive = false; + btn_uninstall_old.sensitive = true; btn_changes.sensitive = false; } else{ btn_install.sensitive = (selected_kernels.size == 1) && !selected_kernels[0].is_installed; - btn_remove.sensitive = selected_kernels[0].is_installed && !selected_kernels[0].is_running; - btn_purge.sensitive = true; + btn_uninstall.sensitive = selected_kernels[0].is_installed && !selected_kernels[0].is_running; + btn_uninstall_old.sensitive = true; btn_changes.sensitive = (selected_kernels.size == 1) && file_exists(selected_kernels[0].changes_file); } } @@ -333,7 +333,7 @@ public class MainWindow : Gtk.Window{ button.clicked.connect(() => { if (selected_kernels.size == 1){ - install(selected_kernels[0]); + kinst(selected_kernels[0]); } else if (selected_kernels.size > 1){ gtk_messagebox(_("Multiple Kernels Selected"),_("Select a single kernel to install"), this, true); @@ -343,14 +343,14 @@ public class MainWindow : Gtk.Window{ } }); - // remove - button = new Gtk.Button.with_label (_("Remove")); + // uninstall + button = new Gtk.Button.with_label (_("Uninstall")); hbox.pack_start (button, true, true, 0); - btn_remove = button; + btn_uninstall = button; button.clicked.connect(() => { if (selected_kernels.size == 0){ - gtk_messagebox(_("Not Selected"),_("Select the kernels to remove"), this, true); + gtk_messagebox(_("Not Selected"),_("Select the kernels to uninstall"), this, true); } else if (selected_kernels.size > 0){ @@ -378,7 +378,7 @@ public class MainWindow : Gtk.Window{ string sh = BRANDING_SHORTNAME; if (LOG_DEBUG) sh += " --debug"; - sh += " --remove %s\n".printf(names) + sh += " --uninstall %s\n".printf(names) + "echo \n" + "echo '"+_("Close window to exit...")+"'\n"; @@ -387,11 +387,11 @@ public class MainWindow : Gtk.Window{ } }); - // purge - button = new Gtk.Button.with_label (_("Purge")); - button.set_tooltip_text(_("Remove installed kernels older than running kernel")); + // uninstall-old + button = new Gtk.Button.with_label (_("Uninstall Old")); + button.set_tooltip_text(_("Uninstall kernels older than running kernel")); hbox.pack_start (button, true, true, 0); - btn_purge = button; + btn_uninstall_old = button; button.clicked.connect(() => { @@ -411,7 +411,7 @@ public class MainWindow : Gtk.Window{ tv_refresh(); }); - string sh = BRANDING_SHORTNAME+" --purge-old-kernels"; + string sh = BRANDING_SHORTNAME+" --uninstall-old"; if (LOG_DEBUG) sh += " --debug"; sh += "\necho \n" + "echo '"+_("Close window to exit...")+"'\n"; @@ -643,7 +643,7 @@ public class MainWindow : Gtk.Window{ } } - public void install(LinuxKernel kern){ + public void kinst(LinuxKernel kern){ // check if installed if (kern.is_installed){ From 6412181584638440ed74d21ad579714f91d482b8 Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Tue, 14 Sep 2021 16:35:37 -0400 Subject: [PATCH 151/567] uninstall with --purge instead of --remove, use kunin_list() for --uninstall-old to avoid redundant password propmpts --- po/messages.pot | 2 +- src/Common/LinuxKernel.vala | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/po/messages.pot b/po/messages.pot index 7c0de92b..a2ecf28f 100644 --- a/po/messages.pot +++ b/po/messages.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline 1.0.15\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-09-14 15:39-0400\n" +"POT-Creation-Date: 2021-09-14 16:23-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/src/Common/LinuxKernel.vala b/src/Common/LinuxKernel.vala index 2f163d4a..cca2de8a 100644 --- a/src/Common/LinuxKernel.vala +++ b/src/Common/LinuxKernel.vala @@ -624,7 +624,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { } // uninstall -------------------------------- - foreach(var kern in list) kern.kunin(); + kunin_list(list); } public static void kinst_latest(bool point_update, bool confirm){ @@ -1096,7 +1096,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { } string cmd = "cd "+cache_subdir - + " && pkexec env -C "+cache_subdir+" DISPLAY=${DISPLAY} XAUTHORITY=${XAUTHORITY} dpkg -i "+flist + + " && pkexec env -C "+cache_subdir+" DISPLAY=${DISPLAY} XAUTHORITY=${XAUTHORITY} dpkg --install "+flist + " && rm "+flist; status = Posix.system(cmd); @@ -1128,7 +1128,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { log_msg(_("Preparing to uninstall selected kernels")); - string cmd = "pkexec env DISPLAY=${DISPLAY} XAUTHORITY=${XAUTHORITY} dpkg -r"; + string cmd = "pkexec env DISPLAY=${DISPLAY} XAUTHORITY=${XAUTHORITY} dpkg --purge"; foreach(var kern in selected_kernels){ @@ -1179,7 +1179,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { log_msg("Preparing to un-install '%s'".printf(version_main)); - string cmd = "pkexec env DISPLAY=${DISPLAY} XAUTHORITY=${XAUTHORITY} dpkg -r"; + string cmd = "pkexec env DISPLAY=${DISPLAY} XAUTHORITY=${XAUTHORITY} dpkg --purge"; if (apt_pkg_list.size > 0){ foreach(var pkg_name in apt_pkg_list.values){ From 911a35bdb84d6543a94b95ad20c0f06bc3f03e2a Mon Sep 17 00:00:00 2001 From: cappelikan Date: Wed, 15 Sep 2021 20:06:07 +0300 Subject: [PATCH 152/567] Update uk.po --- po/uk.po | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/po/uk.po b/po/uk.po index f0822db9..b4b5b559 100644 --- a/po/uk.po +++ b/po/uk.po @@ -351,7 +351,7 @@ msgstr "Виберіть ядро для встановлення" #: src/Gtk/MainWindow.vala:347 #, fuzzy msgid "Uninstall" -msgstr "Встановити" +msgstr "Видалити" #: src/Gtk/MainWindow.vala:353 #, fuzzy @@ -366,12 +366,12 @@ msgstr "Закрийте вікно, щоб вийти..." #: src/Gtk/MainWindow.vala:391 #, fuzzy msgid "Uninstall Old" -msgstr "Видалення завершено" +msgstr "Видалити встановлені ядра старіши за встановлене" #: src/Gtk/MainWindow.vala:392 #, fuzzy msgid "Uninstall kernels older than running kernel" -msgstr "Видаліть встановлені ядра, старші за запущене ядро" +msgstr "Видалити встановлені ядра, старші за запущене ядро" #: src/Gtk/MainWindow.vala:424 msgid "Changes" From aa2d2f37ee17a2e805f2a64b75bfdffc0dab1836 Mon Sep 17 00:00:00 2001 From: Viktor Sokyrko Date: Fri, 17 Sep 2021 10:31:39 +0200 Subject: [PATCH 153/567] Polish translation update. Includes changes in release v1.0.15 --- po/pl.po | 110 +++++++++++++++++++++++++------------------------------ 1 file changed, 49 insertions(+), 61 deletions(-) diff --git a/po/pl.po b/po/pl.po index c266f2d5..2bf44e17 100644 --- a/po/pl.po +++ b/po/pl.po @@ -3,14 +3,14 @@ msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2021-09-14 13:48-0400\n" -"PO-Revision-Date: 2017-08-12 15:26+0200\n" -"Last-Translator: Viktor Sokyrko \n" +"PO-Revision-Date: 2021-09-17 10:29+0200\n" +"Last-Translator: Viktor Sokyrko \n" "Language-Team: Polish\n" "Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Poedit 1.8.7.1\n" +"X-Generator: Poedit 2.4.2\n" #: src/Common/LinuxKernel.vala:88 msgid "Distribution" @@ -30,19 +30,16 @@ msgid "Fetching index from kernel.ubuntu.com..." msgstr "Pobieranie indeksu z kernel.ubuntu.com..." #: src/Common/LinuxKernel.vala:594 -#, fuzzy msgid "Could not find running kernel in list!" -msgstr "Nie można odnaleźć żądanej wersji" +msgstr "Nie można znaleźć uruchomionego jądra na liście!" #: src/Common/LinuxKernel.vala:600 -#, fuzzy msgid "Could not find any kernels to uninstall" -msgstr "Wybierz jądro do usunięcia" +msgstr "Nie udało się odnaleźć żadnych jąder do odinstalowania" #: src/Common/LinuxKernel.vala:609 -#, fuzzy msgid "The following kernels will be uninstalled:" -msgstr "To jądro jest już zainstalowane." +msgstr "Następujące jądra zostaną odinstalowane:" #: src/Common/LinuxKernel.vala:616 msgid "Continue ?" @@ -50,7 +47,7 @@ msgstr "Kontynuowac?" #: src/Common/LinuxKernel.vala:642 src/Console/AppConsole.vala:314 msgid "Latest update" -msgstr "" +msgstr "Najnowsza aktualizacja" #: src/Common/LinuxKernel.vala:653 src/Console/AppConsole.vala:321 msgid "Latest point update" @@ -116,39 +113,37 @@ msgid "Installation completed with errors" msgstr "Instalacja zakończona z błędami" #: src/Common/LinuxKernel.vala:1124 -#, fuzzy msgid "" "Selected kernel is currently running and cannot be un-installed.\n" " Install another kernel before un-installing this one." msgstr "" -"Wybrane jądro aktualnie działa i nie może zostać usunięte.\n" -" Zainstaluj inne jądro przed usunięciem tego." +"Wybrane jądro aktualnie działa i nie może zostać odinstalowane.\n" +" Zainstaluj inne jądro przed odinstalowaniem tego." #: src/Common/LinuxKernel.vala:1129 -#, fuzzy msgid "Preparing to uninstall selected kernels" -msgstr "Przygotowanie do usunięcia wybranych jąder" +msgstr "Przygotowanie do odinstalowania wybranych jąder" #: src/Common/LinuxKernel.vala:1160 src/Common/LinuxKernel.vala:1207 msgid "Un-install completed" -msgstr "De-instalacja zakończona" +msgstr "Deinstalacja zakończona" #: src/Common/LinuxKernel.vala:1163 src/Common/LinuxKernel.vala:1210 msgid "Un-install completed with errors" msgstr "De-instalacja zakończona z błędami" #: src/Common/LinuxKernel.vala:1176 -#, fuzzy msgid "" "This kernel is currently running and cannot be un-installed.\n" " Install another kernel before un-installing this one." msgstr "" -"To jądro aktualnie działa i nie może zostać usunięte.\n" -" Zainstaluj inne jądro przed usunięciem tego." +"To jądro aktualnie działa i nie może zostać odinstalowane.\n" +" Zainstaluj inne jądro przed odinstalowaniem tego." #: src/Common/Main.vala:241 +#, fuzzy msgid "Called from" -msgstr "" +msgstr "Wywołane z" #: src/Common/Main.vala:275 msgid "Notifications are disabled" @@ -169,21 +164,19 @@ msgstr "Polecenia" #: src/Console/AppConsole.vala:66 msgid "Check for kernel updates" -msgstr "Sprawdź nowe wersje jądra" +msgstr "Sprawdź aktualizacje jądra" #: src/Console/AppConsole.vala:67 -#, fuzzy msgid "Check for kernel updates and notify current user" -msgstr "Sprawdź nowe wersje jądra" +msgstr "Sprawdź aktualizacje jądra i powiadom bieżącego użytkownika" #: src/Console/AppConsole.vala:68 msgid "List all available mainline kernels" msgstr "Pokaż wszystkie dostępne jądra" #: src/Console/AppConsole.vala:69 -#, fuzzy msgid "List installed kernels" -msgstr "Pokaż wszystkie dostępne jądra" +msgstr "Wyświetl listę zainstalowanych jąder" #: src/Console/AppConsole.vala:70 #, fuzzy @@ -199,18 +192,16 @@ msgid "Install specified mainline kernel" msgstr "Zainstaluj wybrane jądro" #: src/Console/AppConsole.vala:73 -#, fuzzy msgid "Uninstall specified kernel" -msgstr "Zainstaluj wybrane jądro" +msgstr "Odinstaluj wybrane jądro" #: src/Console/AppConsole.vala:74 msgid "Uninstall kernels older than the running kernel" -msgstr "" +msgstr "Odinstaluj jądra starsze niż działające jądro" #: src/Console/AppConsole.vala:75 -#, fuzzy msgid "Download specified kernels" -msgstr "Pobierz pakiety dla wybranego jądra" +msgstr "Pobierz wybrane jądra" #: src/Console/AppConsole.vala:76 msgid "Remove files from application cache" @@ -221,9 +212,8 @@ msgid "Options" msgstr "Opcje" #: src/Console/AppConsole.vala:80 -#, fuzzy msgid "Include unstable and RC releases" -msgstr "Ukryj wydania niestabilne i RC" +msgstr "Uwzględnij wydania niestabilne i RC" #: src/Console/AppConsole.vala:81 src/Gtk/SettingsDialog.vala:163 msgid "Hide unstable and RC releases" @@ -231,24 +221,29 @@ msgstr "Ukryj wydania niestabilne i RC" #: src/Console/AppConsole.vala:82 msgid "Enable verbose debugging output" -msgstr "" +msgstr "Włącz szczegółowe wyjście debugowania" #: src/Console/AppConsole.vala:83 +#, fuzzy msgid "Assume Yes for all prompts (non-interactive mode)" -msgstr "" +msgstr "Załóż Tak dla wszystkich monitów (tryb nieinteraktywny) " #: src/Console/AppConsole.vala:84 msgid "Override user" msgstr "" #: src/Console/AppConsole.vala:87 +#, fuzzy msgid "A version string taken from the output of --list" -msgstr "" +msgstr "Ciąg wersji pobrany z wyjścia --list" #: src/Console/AppConsole.vala:88 +#, fuzzy msgid "" "One or more version strings (comma-separated) taken from the output of --list" msgstr "" +"Jeden lub więcej ciągów wersji (oddzielonych przecinkami) pobranych z " +"wyjścia --list" #: src/Console/AppConsole.vala:169 src/Gtk/AppGtk.vala:136 msgid "Unknown option" @@ -256,18 +251,16 @@ msgstr "Nieznana opcja" #: src/Console/AppConsole.vala:171 src/Console/AppConsole.vala:265 #: src/Console/AppConsole.vala:294 -#, fuzzy msgid "Run" -msgstr "Uruchomiony" +msgstr "Uruchom" #: src/Console/AppConsole.vala:171 -#, fuzzy msgid "to list all options" -msgstr "Pokaż wszystkie opcje" +msgstr "żeby pokazać wszystkie opcje" #: src/Console/AppConsole.vala:238 src/Console/AppConsole.vala:273 msgid "No kernels specified" -msgstr "" +msgstr "Nie podano żadnego jądra" #: src/Console/AppConsole.vala:244 msgid "Multiple kernels selected for installation. Select only one." @@ -278,17 +271,17 @@ msgid "Could not find requested version" msgstr "Nie można odnaleźć żądanej wersji" #: src/Console/AppConsole.vala:265 +#, fuzzy msgid "and use a version string listed in first column" -msgstr "" +msgstr "i użyj ciągu wersji wymienionego w pierwszej kolumnie" #: src/Console/AppConsole.vala:293 msgid "Command not specified" -msgstr "" +msgstr "Nie podano polecenia" #: src/Console/AppConsole.vala:294 -#, fuzzy msgid "to list all commands" -msgstr "Pokaż wszystkie opcje" +msgstr "żeby pokazać wszystkie polecenia" #: src/Console/AppConsole.vala:360 msgid "Show" @@ -347,17 +340,15 @@ msgstr "Nie wybrany" #: src/Gtk/MainWindow.vala:342 msgid "Select the kernel to install" -msgstr "Wybierz pojedyncze do instalacji" +msgstr "Wybierz jądro do instalacji" #: src/Gtk/MainWindow.vala:347 -#, fuzzy msgid "Uninstall" -msgstr "Zainstaluj" +msgstr "Odinstaluj" #: src/Gtk/MainWindow.vala:353 -#, fuzzy msgid "Select the kernels to uninstall" -msgstr "Wybierz pojedyncze do instalacji" +msgstr "Wybierz jądra do deinstalacji" #: src/Gtk/MainWindow.vala:383 src/Gtk/MainWindow.vala:417 #: src/Gtk/MainWindow.vala:687 @@ -365,13 +356,12 @@ msgid "Close window to exit..." msgstr "Zamknij okno żeby wyjść..." #: src/Gtk/MainWindow.vala:391 -#, fuzzy msgid "Uninstall Old" -msgstr "De-instalacja zakończona" +msgstr "Odinstaluj Stare" #: src/Gtk/MainWindow.vala:392 msgid "Uninstall kernels older than running kernel" -msgstr "" +msgstr "Odinstaluj jądra starsze niż uruchomione" #: src/Gtk/MainWindow.vala:424 msgid "Changes" @@ -406,15 +396,15 @@ msgstr "Brak połączenia z internetem" msgid "Refreshing..." msgstr "Odświeżam..." +# Should be a single word at the end of the line. +# For example: "5.13.16 available" #: src/Gtk/MainWindow.vala:638 -#, fuzzy msgid "available" -msgstr "Dostępne pakiety" +msgstr "dostępne" #: src/Gtk/MainWindow.vala:650 -#, fuzzy msgid "Already Installed" -msgstr "Zainstalowany" +msgstr "Już zainstalowane" #: src/Gtk/ProgressWindow.vala:144 src/Gtk/TerminalWindow.vala:149 #: src/Utility/Gtk/CustomMessageDialog.vala:153 @@ -463,7 +453,7 @@ msgstr "Pokaż" #: src/Gtk/SettingsDialog.vala:177 msgid "Show N previous major versions " -msgstr "" +msgstr "Pokaż N poprzednich głównych wersji " #: src/Gtk/SettingsDialog.vala:192 msgid "Other" @@ -476,7 +466,7 @@ msgstr "Pomiń sprawdzenie połączenia z internetem" #: src/Gtk/SettingsDialog.vala:213 #, fuzzy msgid "Internet connection timeout in " -msgstr "Brak połączenia z internetem" +msgstr "Limit czasu połączenia z Internetem za" #: src/Gtk/SettingsDialog.vala:228 msgid "seconds" @@ -484,7 +474,7 @@ msgstr "sekund" #: src/Gtk/SettingsDialog.vala:235 msgid "Max concurrent downloads" -msgstr "" +msgstr "Maksymalna liczba jednoczesnych pobrań" #: src/Gtk/TerminalWindow.vala:159 src/Utility/Gtk/AboutWindow.vala:294 msgid "Close" @@ -536,12 +526,10 @@ msgid "Missing Icon" msgstr "Brakująca ikona" #: src/Utility/TeeJee.FileSystem.vala:71 -#, fuzzy msgid "File deleted" msgstr "Plik usunięty" #: src/Utility/TeeJee.FileSystem.vala:76 src/Utility/TeeJee.FileSystem.vala:256 -#, fuzzy msgid "Failed to delete file" msgstr "Nie udało się usunąć pliku" From bdddc4ed8b2848214d67b4ccefc5230698d683ee Mon Sep 17 00:00:00 2001 From: Viktor Sokyrko Date: Fri, 17 Sep 2021 12:23:18 +0200 Subject: [PATCH 154/567] added Viktor as pl translator --- TRANSLATORS | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/TRANSLATORS b/TRANSLATORS index 3716ec61..dd6ddf86 100644 --- a/TRANSLATORS +++ b/TRANSLATORS @@ -4,7 +4,7 @@ hr: gogo it: Albano Battistella ko: Kevin Kim nl: Heimen Stoffels -pl: Waldemar Konik +pl: Waldemar Konik , Viktor Sokyrko ru: Faust3000 sv: Åke Engelbrektson tr: Gökhan GÖKKAYA From f5a952e22187f3bff0eca6c81314a8da1b5d0df4 Mon Sep 17 00:00:00 2001 From: venerdi2 Date: Mon, 20 Sep 2021 08:42:49 +0200 Subject: [PATCH 155/567] Update it.po Realigned translation and corrected some small errors --- po/it.po | 47 +++++++++++++++++------------------------------ 1 file changed, 17 insertions(+), 30 deletions(-) diff --git a/po/it.po b/po/it.po index 02205c8b..a7608dfc 100644 --- a/po/it.po +++ b/po/it.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the mainline package. # ALBANO BATTISTELLA , 2020. # +#, fuzzy msgid "" msgstr "" -"Project-Id-Version: mainline 1.0.12\n" +"Project-Id-Version: mainline 1.0.15\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-09-14 13:48-0400\n" +"POT-Creation-Date: 2021-09-20 08:48-0400\n" "PO-Revision-Date: 2020-08-22 15:35+0100\n" -"Last-Translator: Albano Battistella \n" +"Last-Translator: Demetrio Mendozzi\n" "Language-Team: Italian \n" "Language: it\n" "MIME-Version: 1.0\n" @@ -37,12 +38,10 @@ msgid "Could not find running kernel in list!" msgstr "Impossibile trovare il kernel in esecuzione nell'elenco!" #: src/Common/LinuxKernel.vala:600 -#, fuzzy msgid "Could not find any kernels to uninstall" msgstr "Impossibile trovare alcun kernel da rimuovere" #: src/Common/LinuxKernel.vala:609 -#, fuzzy msgid "The following kernels will be uninstalled:" msgstr "I seguenti kernel verranno rimossi:" @@ -109,16 +108,14 @@ msgstr "Questo kernel è già installato" #: src/Common/LinuxKernel.vala:1106 msgid "Installation completed. A reboot is required to use the new kernel." -msgstr "" -"Installazione completata. È necessario riavviare per utilizzare il nuovo " -"kernel." +msgstr "Installazione completata. È necessario riavviare per utilizzare il" +"nuovo kernel." #: src/Common/LinuxKernel.vala:1109 msgid "Installation completed with errors" msgstr "Installazione completata con errori" #: src/Common/LinuxKernel.vala:1124 -#, fuzzy msgid "" "Selected kernel is currently running and cannot be un-installed.\n" " Install another kernel before un-installing this one." @@ -127,7 +124,6 @@ msgstr "" "Installa un altro kernel prima di rimuovere questo." #: src/Common/LinuxKernel.vala:1129 -#, fuzzy msgid "Preparing to uninstall selected kernels" msgstr "Preparazione per rimuovere i kernel selezionati" @@ -140,13 +136,12 @@ msgid "Un-install completed with errors" msgstr "Disinstallazione completata con errori" #: src/Common/LinuxKernel.vala:1176 -#, fuzzy msgid "" "This kernel is currently running and cannot be un-installed.\n" " Install another kernel before un-installing this one." msgstr "" "Questo kernel è attualmente in esecuzione e non può essere rimosso.\n" -"Installa un altro kernel prima di rimuovere questo." +" Installa un altro kernel prima di rimuovere questo." #: src/Common/Main.vala:241 msgid "Called from" @@ -175,9 +170,8 @@ msgstr "Verifica aggiornamenti per il kernel" #: src/Console/AppConsole.vala:67 msgid "Check for kernel updates and notify current user" -msgstr "" -"Verifica la disponibilità di aggiornamenti del kernel e avvisare l'utente " -"corrente" +msgstr "Verifica la disponibilità di aggiornamenti del kernel" +"ed avvisa l'utente corrente" #: src/Console/AppConsole.vala:68 msgid "List all available mainline kernels" @@ -193,19 +187,17 @@ msgstr "Installa ultimo kernel mainline" #: src/Console/AppConsole.vala:71 msgid "Install latest point update for current series" -msgstr "installa l'ultimo aggiornamento del punto per le serie attuali" +msgstr "installa l'ultimo rilascio parziale per le serie attuali" #: src/Console/AppConsole.vala:72 msgid "Install specified mainline kernel" msgstr "Installa kernel mainline specificato" #: src/Console/AppConsole.vala:73 -#, fuzzy msgid "Uninstall specified kernel" msgstr "Disinstalla i kernel specificati" #: src/Console/AppConsole.vala:74 -#, fuzzy msgid "Uninstall kernels older than the running kernel" msgstr "Rimuovere i kernel installati più vecchi del kernel in esecuzione" @@ -222,9 +214,8 @@ msgid "Options" msgstr "Opzioni" #: src/Console/AppConsole.vala:80 -#, fuzzy msgid "Include unstable and RC releases" -msgstr "Nascondi versioni instabili e RC" +msgstr "Includi versioni instabili e RC" #: src/Console/AppConsole.vala:81 src/Gtk/SettingsDialog.vala:163 msgid "Hide unstable and RC releases" @@ -236,11 +227,11 @@ msgstr "Abilita l'output di debug dettagliato" #: src/Console/AppConsole.vala:83 msgid "Assume Yes for all prompts (non-interactive mode)" -msgstr "Assicura Sì per tutte le richieste (modalità non interattiva)" +msgstr "Imposta Sì per tutte le richieste (modalità non interattiva)" #: src/Console/AppConsole.vala:84 msgid "Override user" -msgstr "Sovrascrivi utente" +msgstr "Ignora utente" #: src/Console/AppConsole.vala:87 msgid "A version string taken from the output of --list" @@ -350,14 +341,12 @@ msgid "Select the kernel to install" msgstr "Seleziona il kernel da installare" #: src/Gtk/MainWindow.vala:347 -#, fuzzy msgid "Uninstall" -msgstr "Installa" +msgstr "Disinstalla" #: src/Gtk/MainWindow.vala:353 -#, fuzzy msgid "Select the kernels to uninstall" -msgstr "Seleziona il kernel da installare" +msgstr "Seleziona i kernel da disinstallare" #: src/Gtk/MainWindow.vala:383 src/Gtk/MainWindow.vala:417 #: src/Gtk/MainWindow.vala:687 @@ -365,12 +354,10 @@ msgid "Close window to exit..." msgstr "Chiudere la finestra per uscire..." #: src/Gtk/MainWindow.vala:391 -#, fuzzy msgid "Uninstall Old" -msgstr "Disinstallazione completata" +msgstr "Disinstalla i vecchi" #: src/Gtk/MainWindow.vala:392 -#, fuzzy msgid "Uninstall kernels older than running kernel" msgstr "Rimuovere i kernel installati più vecchi del kernel in esecuzione" @@ -509,7 +496,7 @@ msgstr "Artisti" #: src/Utility/Gtk/AboutWindow.vala:337 msgid "Translators" -msgstr "Albano Battistella" +msgstr "Albano Battistella, Demetrio Mendozzi" #: src/Utility/Gtk/AboutWindow.vala:345 msgid "Documenters" From bed2eae7a8398b8f3eece8fce389bb79b4424662 Mon Sep 17 00:00:00 2001 From: cappelikan Date: Tue, 21 Sep 2021 03:54:33 +0300 Subject: [PATCH 156/567] Update uk.po minor fixes Includes changes in release v1.0.15 --- po/uk.po | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/po/uk.po b/po/uk.po index b4b5b559..df6ad1fe 100644 --- a/po/uk.po +++ b/po/uk.po @@ -287,7 +287,7 @@ msgstr "Команда не вказана" #: src/Console/AppConsole.vala:294 #, fuzzy msgid "to list all commands" -msgstr "Показати усі параметри" +msgstr "щоб відобразити всі команди" #: src/Console/AppConsole.vala:360 msgid "Show" @@ -296,7 +296,7 @@ msgstr "Показати" #: src/Console/AppConsole.vala:365 src/Console/AppConsole.vala:377 #, fuzzy, c-format msgid "Kernel %s Available" -msgstr "Доступні пакети" +msgstr "Доступне ядро %s" #: src/Console/AppConsole.vala:367 src/Console/AppConsole.vala:379 #: src/Gtk/MainWindow.vala:330 @@ -325,12 +325,12 @@ msgstr "Оновити" #: src/Gtk/MainWindow.vala:321 src/Utility/TeeJee.System.vala:42 msgid "Internet connection is not active" -msgstr "Інтернет з'єднання не активно" +msgstr "Інтернет з'єднання не активне" #: src/Gtk/MainWindow.vala:321 src/Gtk/MainWindow.vala:525 #: src/Gtk/MainWindow.vala:655 msgid "No Internet" -msgstr "Інтернету немає" +msgstr "Інтернет з'єднання відсутнє" #: src/Gtk/MainWindow.vala:339 msgid "Multiple Kernels Selected" @@ -366,12 +366,12 @@ msgstr "Закрийте вікно, щоб вийти..." #: src/Gtk/MainWindow.vala:391 #, fuzzy msgid "Uninstall Old" -msgstr "Видалити встановлені ядра старіши за встановлене" +msgstr "Видалити встановлені ядра старіші за встановлене ядро" #: src/Gtk/MainWindow.vala:392 #, fuzzy msgid "Uninstall kernels older than running kernel" -msgstr "Видалити встановлені ядра, старші за запущене ядро" +msgstr "Видалити встановлені ядра, старіші за запущене ядро" #: src/Gtk/MainWindow.vala:424 msgid "Changes" @@ -411,12 +411,12 @@ msgstr "Оновлення..." #: src/Gtk/MainWindow.vala:638 #, fuzzy msgid "available" -msgstr "Доступні пакети" +msgstr "доступний" #: src/Gtk/MainWindow.vala:650 #, fuzzy msgid "Already Installed" -msgstr "Встановлено" +msgstr "Вже встановлено" #: src/Gtk/ProgressWindow.vala:144 src/Gtk/TerminalWindow.vala:149 #: src/Utility/Gtk/CustomMessageDialog.vala:153 From ee7422feb48214fbb724bf405ac2eedb097cdcfd Mon Sep 17 00:00:00 2001 From: cappelikan Date: Wed, 22 Sep 2021 12:09:41 +0300 Subject: [PATCH 157/567] Update uk.po corrected inaccuracy --- po/uk.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/uk.po b/po/uk.po index df6ad1fe..266b5c27 100644 --- a/po/uk.po +++ b/po/uk.po @@ -63,7 +63,7 @@ msgstr "Оновлень не знайдено" #: src/Common/LinuxKernel.vala:671 #, fuzzy, c-format msgid "Install Kernel Version %s ? (y/n): " -msgstr "Встановити Linux v% s? (так/ні): " +msgstr "Встановити Ядро Версії %s ? (так/ні): " #: src/Common/LinuxKernel.vala:909 msgid "Packages Available" From def2acea74f082562070b81d52331baabf8fc8bb Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Wed, 22 Sep 2021 13:47:47 -0400 Subject: [PATCH 158/567] v1.0.15 --- .deb_build_number.mak | 4 ++-- debian/changelog | 11 +++++++++-- 2 files changed, 11 insertions(+), 4 deletions(-) diff --git a/.deb_build_number.mak b/.deb_build_number.mak index 76c80cfe..d63170ae 100644 --- a/.deb_build_number.mak +++ b/.deb_build_number.mak @@ -1,3 +1,3 @@ # This file is generated by Makefile "make deb_build_number" -DEB_PKG_VERSION := 1.0.14 -DEB_BUILD_NUMBER := 0002 +DEB_PKG_VERSION := 1.0.15 +DEB_BUILD_NUMBER := 0000 diff --git a/debian/changelog b/debian/changelog index ba973b36..0ea63e29 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,4 +1,11 @@ -mainline (1.0.14) UNRELEASED; urgency=medium +mainline (1.0.15) unstable; urgency=medium + + * Rename "Purge" to "Uninstall Old" + * Avoid redundant password prompts when uninstalling multiple + + -- Brian K. White Tue, 14 Sep 2021 16:46:07 -0400 + +mainline (1.0.14) unstable; urgency=medium * Remove unnecessary VERSION_INT and build-time dependency for "bc" * Fix a segfault if no mainline kernels installed @@ -6,7 +13,7 @@ mainline (1.0.14) UNRELEASED; urgency=medium * Replace --show-unstable with --include-unstable and --hide-unstable, and correct --help * Support building on valac < 0.40 (xenial) - -- Brian K. White Fri, 13 Aug 2021 15:39:15 -0400 + -- Brian K. White Fri, 13 Aug 2021 15:39:15 -0400 mainline (1.0.13) unstable; urgency=medium From aba9a88798a01948201f8d3710eb14df1521c6a7 Mon Sep 17 00:00:00 2001 From: cappelikan Date: Sat, 25 Sep 2021 23:57:21 +0300 Subject: [PATCH 159/567] Update uk.po Fixes agreed with Brown on fuzzy --- po/uk.po | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/po/uk.po b/po/uk.po index 266b5c27..ad1be5a7 100644 --- a/po/uk.po +++ b/po/uk.po @@ -202,7 +202,7 @@ msgstr "Видаліть конкретні ядра" #: src/Console/AppConsole.vala:74 #, fuzzy msgid "Uninstall kernels older than the running kernel" -msgstr "Видаліть встановлені ядра, старші за запущене ядро" +msgstr "Видаліть ядра, старші за запущене ядро" #: src/Console/AppConsole.vala:75 #, fuzzy @@ -220,19 +220,19 @@ msgstr "Параметри" #: src/Console/AppConsole.vala:80 #, fuzzy msgid "Include unstable and RC releases" -msgstr "Приховати нестабільні і реліз-кандидат версії" +msgstr "Включати нестабільні і RC" #: src/Console/AppConsole.vala:81 src/Gtk/SettingsDialog.vala:163 msgid "Hide unstable and RC releases" -msgstr "Приховати нестабільні і реліз-кандидат версії" +msgstr "Приховати нестабільні і RC" #: src/Console/AppConsole.vala:82 msgid "Enable verbose debugging output" -msgstr "Увімкнути багатослівний вихід налагодження" +msgstr "Увімкнути вивід налагодження" #: src/Console/AppConsole.vala:83 msgid "Assume Yes for all prompts (non-interactive mode)" -msgstr "Припустимо, Так для всіх підказок (неінтерактивний режим)" +msgstr "Так для всіх підказок (неінтерактивний режим)" #: src/Console/AppConsole.vala:84 msgid "Override user" @@ -247,7 +247,7 @@ msgstr "Рядок версій, взятий з виводу --list" msgid "" "One or more version strings (comma-separated) taken from the output of --list" msgstr "" -"Одна або кілька рядків версії (розділені комами), взяті з виводу --list" +"Одна або кілька рядків версії (розділені комами) з виводу --list" #: src/Console/AppConsole.vala:169 src/Gtk/AppGtk.vala:136 msgid "Unknown option" @@ -366,12 +366,12 @@ msgstr "Закрийте вікно, щоб вийти..." #: src/Gtk/MainWindow.vala:391 #, fuzzy msgid "Uninstall Old" -msgstr "Видалити встановлені ядра старіші за встановлене ядро" +msgstr "Видалити старе" #: src/Gtk/MainWindow.vala:392 #, fuzzy msgid "Uninstall kernels older than running kernel" -msgstr "Видалити встановлені ядра, старіші за запущене ядро" +msgstr "Видалити ядра, старіші за запущене ядро" #: src/Gtk/MainWindow.vala:424 msgid "Changes" @@ -392,17 +392,17 @@ msgstr "Програма оновлення ядра для дистрибути #: src/Gtk/MainWindow.vala:504 #, fuzzy msgid "Forked" -msgstr "Роздвоєний" +msgstr "Двоєний" #: src/Gtk/MainWindow.vala:504 #, fuzzy msgid "Original" -msgstr "Оригінальний" +msgstr "Оригінал" #: src/Gtk/MainWindow.vala:525 src/Gtk/MainWindow.vala:655 #, fuzzy msgid "Internet connection is not active." -msgstr "Інтернет з'єднання не активно" +msgstr "Інтернет з'єднання не активно." #: src/Gtk/MainWindow.vala:544 msgid "Refreshing..." @@ -523,7 +523,7 @@ msgstr "Документатори" #: src/Utility/Gtk/AboutWindow.vala:353 #, fuzzy msgid "Third Party Inclusions" -msgstr "Інструменти Сторонніх Розробників" +msgstr "Сторонні Розробники" #: src/Utility/Gtk/CustomMessageDialog.vala:157 msgid "Yes" @@ -540,12 +540,12 @@ msgstr "Нема значка" #: src/Utility/TeeJee.FileSystem.vala:71 #, fuzzy msgid "File deleted" -msgstr "Файл збережено" +msgstr "Файл видалено" #: src/Utility/TeeJee.FileSystem.vala:76 src/Utility/TeeJee.FileSystem.vala:256 #, fuzzy msgid "Failed to delete file" -msgstr "Невдалося записати файл" +msgstr "Невдалося видалити файл" #: src/Utility/TeeJee.FileSystem.vala:96 msgid "Failed to read file" From be5e9eff9367f266dee26c4b76bf0a279065a88d Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Tue, 28 Sep 2021 01:35:59 -0400 Subject: [PATCH 160/567] 1.0.15.2 --- .deb_build_number.mak | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.deb_build_number.mak b/.deb_build_number.mak index d63170ae..7262e922 100644 --- a/.deb_build_number.mak +++ b/.deb_build_number.mak @@ -1,3 +1,3 @@ # This file is generated by Makefile "make deb_build_number" DEB_PKG_VERSION := 1.0.15 -DEB_BUILD_NUMBER := 0000 +DEB_BUILD_NUMBER := 0002 From 940ce9ece646eafd372372eef5e5681be214932a Mon Sep 17 00:00:00 2001 From: Sander Jonkers Date: Sun, 17 Oct 2021 11:50:52 +0200 Subject: [PATCH 161/567] Add usage to README.md.src --- README.md | 7 +++++++ README.md.src | 7 +++++++ 2 files changed, 14 insertions(+) diff --git a/README.md b/README.md index 9f8884f2..b12d5f94 100644 --- a/README.md +++ b/README.md @@ -27,6 +27,13 @@ mainline is written using Vala and GTK3. Source code and binaries are available make sudo make install +### Usage commandline version + mainline + mainline --help + +### Usage GUI version + mainline-gtk + ### About mainline is a fork of [ukuu](https://github.com/teejee2008/ukuu) diff --git a/README.md.src b/README.md.src index fa79a52a..8bc06518 100644 --- a/README.md.src +++ b/README.md.src @@ -27,6 +27,13 @@ BRANDING_SHORTNAME is written using Vala and GTK3. Source code and binaries are make sudo make install +### Usage commandline version + mainline + mainline --help + +### Usage GUI version + mainline-gtk + ### About BRANDING_SHORTNAME is a fork of [ukuu](https://github.com/teejee2008/ukuu) From 4bd37e01613bb850a16e425aaf97c39987a6b8ef Mon Sep 17 00:00:00 2001 From: "Brian K. White" <54458165+bkw777@users.noreply.github.com> Date: Tue, 19 Oct 2021 08:24:06 -0400 Subject: [PATCH 162/567] Update README.md --- README.md | 50 ++++++++++++++++++++++++++++---------------------- 1 file changed, 28 insertions(+), 22 deletions(-) diff --git a/README.md b/README.md index b12d5f94..9be0fa69 100644 --- a/README.md +++ b/README.md @@ -1,38 +1,44 @@ ### Ubuntu Mainline Kernel Installer -This is a tool for installing the latest mainline Linux kernel on Ubuntu-based distributions. +A tool for installing the latest Linux kernels on Ubuntu-based distributions. ![Main window screenshot](main_window.png) ### Features -* Fetches list of available kernels from [Ubuntu Mainline PPA](http://kernel.ubuntu.com/~kernel-ppa/mainline/) +* Fetches the list of available kernels from the [Ubuntu Mainline PPA](http://kernel.ubuntu.com/~kernel-ppa/mainline/) * Optionally watches and displays notifications when a new kernel update is available * Downloads and installs packages automatically * Display available and installed kernels conveniently * Install/Uninstall kernels from gui * For each kernel, the related packages (headers & modules) are installed or uninstalled at the same time -### Downloads & Source Code -mainline is written using Vala and GTK3. Source code and binaries are available from the [GitHub project page](https://github.com/bkw777/mainline). - -[cappelikan](https://github.com/cappelikan) maintains a PPA at: - - sudo add-apt-repository ppa:cappelikan/ppa - sudo apt update - sudo apt install mainline +### Install +Minimal .deb packages are in [releases](../../releases/latest). (Usually just a single deb for any given release). +Better: [cappelikan](https://github.com/cappelikan) maintains a [PPA](https://code.launchpad.net/~cappelikan/+archive/ubuntu/ppa) +``` +sudo add-apt-repository ppa:cappelikan/ppa +sudo apt update +sudo apt install mainline +``` ### Build - sudo apt install libgee-0.8-dev libjson-glib-dev libvte-2.91-dev valac aria2 lsb-release aptitude - git clone https://github.com/bkw777/mainline.git - cd mainline - make - sudo make install - -### Usage commandline version - mainline - mainline --help - -### Usage GUI version - mainline-gtk +``` +sudo apt install libgee-0.8-dev libjson-glib-dev libvte-2.91-dev valac aria2 lsb-release aptitude +git clone https://github.com/bkw777/mainline.git +cd mainline +make +sudo make install +``` +### Usage +CLI +``` +mainline --help +mainline +``` + +GUI +``` +mainline-gtk +``` ### About mainline is a fork of [ukuu](https://github.com/teejee2008/ukuu) From aed87db0e579dddc4dddc41ddcb018ce09874736 Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Tue, 19 Oct 2021 08:38:56 -0400 Subject: [PATCH 163/567] readme --- README.md | 11 ++++++++--- README.md.src | 51 +++++++++++++++++++++++++++++++-------------------- 2 files changed, 39 insertions(+), 23 deletions(-) diff --git a/README.md b/README.md index 9be0fa69..7ac14367 100644 --- a/README.md +++ b/README.md @@ -20,6 +20,7 @@ sudo add-apt-repository ppa:cappelikan/ppa sudo apt update sudo apt install mainline ``` + ### Build ``` sudo apt install libgee-0.8-dev libjson-glib-dev libvte-2.91-dev valac aria2 lsb-release aptitude @@ -28,21 +29,25 @@ cd mainline make sudo make install ``` + ### Usage +Look for System -> Ubuntu Mainline Kernel Installer in your desktop's Applications/Start menu. + +Otherwise: CLI ``` mainline --help mainline ``` - -GUI +GUI ``` mainline-gtk ``` ### About -mainline is a fork of [ukuu](https://github.com/teejee2008/ukuu) +Written using Vala and GTK3. +mainline is a fork of [ukuu](https://github.com/teejee2008/ukuu) The original author stopped maintaining the original GPL version of ukuu and switched to a [paid license](https://teejeetech.in/tag/ukuu/) for future versions. ### Enhancements / Deviations from the original author's final GPL version diff --git a/README.md.src b/README.md.src index 8bc06518..fa393257 100644 --- a/README.md.src +++ b/README.md.src @@ -1,42 +1,53 @@ ### BRANDING_LONGNAME -This is a tool for installing the latest mainline Linux kernel on Ubuntu-based distributions. +A tool for installing the latest Linux kernels on Ubuntu-based distributions. ![Main window screenshot](main_window.png) ### Features -* Fetches list of available kernels from [Ubuntu Mainline PPA](http://kernel.ubuntu.com/~kernel-ppa/mainline/) +* Fetches the list of available kernels from the [Ubuntu Mainline PPA](http://kernel.ubuntu.com/~kernel-ppa/mainline/) * Optionally watches and displays notifications when a new kernel update is available * Downloads and installs packages automatically * Display available and installed kernels conveniently * Install/Uninstall kernels from gui * For each kernel, the related packages (headers & modules) are installed or uninstalled at the same time -### Downloads & Source Code -BRANDING_SHORTNAME is written using Vala and GTK3. Source code and binaries are available from the [GitHub project page](BRANDING_WEBSITE). +### Install +Minimal .deb packages are in [releases](../../releases/latest). (Usually just a single deb for any given release). -[cappelikan](https://github.com/cappelikan) maintains a PPA at: - - sudo add-apt-repository ppa:cappelikan/ppa - sudo apt update - sudo apt install mainline +Better: [cappelikan](https://github.com/cappelikan) maintains a [PPA](https://code.launchpad.net/~cappelikan/+archive/ubuntu/ppa) +``` +sudo add-apt-repository ppa:cappelikan/ppa +sudo apt update +sudo apt install mainline +``` ### Build - sudo apt install libgee-0.8-dev libjson-glib-dev libvte-2.91-dev valac aria2 lsb-release aptitude - git clone BRANDING_GITREPO - cd BRANDING_SHORTNAME - make - sudo make install +``` +sudo apt install libgee-0.8-dev libjson-glib-dev libvte-2.91-dev valac aria2 lsb-release aptitude +git clone BRANDING_GITREPO +cd BRANDING_SHORTNAME +make +sudo make install +``` -### Usage commandline version - mainline - mainline --help +### Usage +Look for System -> Ubuntu Mainline Kernel Installer in your desktop's Applications/Start menu. -### Usage GUI version - mainline-gtk +Otherwise: +CLI +``` +mainline --help +mainline +``` +GUI +``` +mainline-gtk +``` ### About -BRANDING_SHORTNAME is a fork of [ukuu](https://github.com/teejee2008/ukuu) +Written using Vala and GTK3. +BRANDING_SHORTNAME is a fork of [ukuu](https://github.com/teejee2008/ukuu) The original author stopped maintaining the original GPL version of ukuu and switched to a [paid license](https://teejeetech.in/tag/ukuu/) for future versions. ### Enhancements / Deviations from the original author's final GPL version From 7145d8ae1a516ae3c0b93e878512a0c38873703d Mon Sep 17 00:00:00 2001 From: Danik2343 <38865696+Danik2343@users.noreply.github.com> Date: Thu, 24 Feb 2022 16:05:53 +0300 Subject: [PATCH 164/567] Update Russian Translation (Full) Update Russian Translation (Full) --- po/ru.po | 186 +++++++++++++++++++++++-------------------------------- 1 file changed, 77 insertions(+), 109 deletions(-) diff --git a/po/ru.po b/po/ru.po index 87ea9014..45bc1350 100644 --- a/po/ru.po +++ b/po/ru.po @@ -3,59 +3,56 @@ msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2021-09-14 13:48-0400\n" -"PO-Revision-Date: 2016-12-13 16:46+0300\n" -"Last-Translator: Faust3000 \n" +"PO-Revision-Date: 2022-02-24 16:05+0300\n" +"Last-Translator: Faust3000 (Original) | Danik2343 (Update Transaltion) " +"\n" "Language-Team: Russian \n" "Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2016-12-13 11:48+0000\n" -"X-Generator: Poedit 1.8.7.1\n" +"X-Generator: Poedit 2.3\n" #: src/Common/LinuxKernel.vala:88 msgid "Distribution" msgstr "Дистрибутив" #: src/Common/LinuxKernel.vala:102 -#, fuzzy msgid "Architecture" -msgstr "Системная архитектура" +msgstr "Архитектура" #: src/Common/LinuxKernel.vala:301 msgid "Fetching index..." -msgstr "" +msgstr "Получение сведений..." #: src/Common/LinuxKernel.vala:338 msgid "Fetching index from kernel.ubuntu.com..." msgstr "Получение сведений с kernel.ubuntu.com..." #: src/Common/LinuxKernel.vala:594 -#, fuzzy msgid "Could not find running kernel in list!" -msgstr "Не удалось найти запрошенную версию" +msgstr "Не удалось найти запущенное ядро в списке!" #: src/Common/LinuxKernel.vala:600 -#, fuzzy msgid "Could not find any kernels to uninstall" -msgstr "Не удалось найти запрошенную версию" +msgstr "Не удалось найти ядра для деинсталляции" #: src/Common/LinuxKernel.vala:609 -#, fuzzy msgid "The following kernels will be uninstalled:" -msgstr "Это ядро уже установлено." +msgstr "Следующие ядра будут деинсталлированы:" #: src/Common/LinuxKernel.vala:616 msgid "Continue ?" -msgstr "" +msgstr "Продолжить ?" #: src/Common/LinuxKernel.vala:642 src/Console/AppConsole.vala:314 msgid "Latest update" -msgstr "" +msgstr "Последнее обновление" #: src/Common/LinuxKernel.vala:653 src/Console/AppConsole.vala:321 msgid "Latest point update" -msgstr "" +msgstr "Последнее обновление пунктов" #: src/Common/LinuxKernel.vala:661 src/Console/AppConsole.vala:326 #: src/Console/AppConsole.vala:387 @@ -65,17 +62,15 @@ msgstr "Обновлений не найдено" #: src/Common/LinuxKernel.vala:671 #, c-format msgid "Install Kernel Version %s ? (y/n): " -msgstr "" +msgstr "Установить версию ядра %s ? (y/n): " #: src/Common/LinuxKernel.vala:909 -#, fuzzy msgid "Packages Available" -msgstr "Установлено" +msgstr "Доступные пакеты" #: src/Common/LinuxKernel.vala:917 -#, fuzzy msgid "Packages Installed" -msgstr "Установлено" +msgstr "Установленные пакеты" #: src/Common/LinuxKernel.vala:998 msgid "Available Kernels" @@ -119,7 +114,6 @@ msgid "Installation completed with errors" msgstr "Установка завершена с ошибками" #: src/Common/LinuxKernel.vala:1124 -#, fuzzy msgid "" "Selected kernel is currently running and cannot be un-installed.\n" " Install another kernel before un-installing this one." @@ -128,9 +122,8 @@ msgstr "" " Установите другое ядро, прежде чем удалять его." #: src/Common/LinuxKernel.vala:1129 -#, fuzzy msgid "Preparing to uninstall selected kernels" -msgstr "Установить указанную ветку ядра" +msgstr "Подготовка к деинсталляции выбранных ядер" #: src/Common/LinuxKernel.vala:1160 src/Common/LinuxKernel.vala:1207 msgid "Un-install completed" @@ -141,7 +134,6 @@ msgid "Un-install completed with errors" msgstr "Удаление завершено с ошибками" #: src/Common/LinuxKernel.vala:1176 -#, fuzzy msgid "" "This kernel is currently running and cannot be un-installed.\n" " Install another kernel before un-installing this one." @@ -151,12 +143,11 @@ msgstr "" #: src/Common/Main.vala:241 msgid "Called from" -msgstr "" +msgstr "Вызван из" #: src/Common/Main.vala:275 -#, fuzzy msgid "Notifications are disabled" -msgstr "Уведомления" +msgstr "Уведомления отключены" #: src/Common/Package.vala:134 src/Common/Package.vala:198 #, c-format @@ -169,53 +160,47 @@ msgstr "Синтаксис" #: src/Console/AppConsole.vala:64 msgid "Commands" -msgstr "" +msgstr "Комманды" #: src/Console/AppConsole.vala:66 msgid "Check for kernel updates" msgstr "Проверить обновления ядра" #: src/Console/AppConsole.vala:67 -#, fuzzy msgid "Check for kernel updates and notify current user" -msgstr "Проверить обновления ядра" +msgstr "Проверить обновления ядра и уведомить текущего пользователя" #: src/Console/AppConsole.vala:68 msgid "List all available mainline kernels" msgstr "Список всех доступных основных ядер" #: src/Console/AppConsole.vala:69 -#, fuzzy msgid "List installed kernels" -msgstr "Список всех доступных основных ядер" +msgstr "Список установленных ядер" #: src/Console/AppConsole.vala:70 -#, fuzzy msgid "Install latest mainline kernel" -msgstr "Установить указанную ветку ядра" +msgstr "Установите последнюю версию основного ядра" #: src/Console/AppConsole.vala:71 msgid "Install latest point update for current series" -msgstr "" +msgstr "Установить последнее обновление точек для текущей серии" #: src/Console/AppConsole.vala:72 msgid "Install specified mainline kernel" -msgstr "Установить указанную ветку ядра" +msgstr "Установить указанную ветку основного ядра" #: src/Console/AppConsole.vala:73 -#, fuzzy msgid "Uninstall specified kernel" -msgstr "Установить указанную ветку ядра" +msgstr "Установить указанное ядро" #: src/Console/AppConsole.vala:74 -#, fuzzy msgid "Uninstall kernels older than the running kernel" -msgstr "Удалить более старшие установленные ядра, чем используемое" +msgstr "Удалить более старшие установленные ядра, чем используемое ядро" #: src/Console/AppConsole.vala:75 -#, fuzzy msgid "Download specified kernels" -msgstr "Скачать пакеты для указанного ядра" +msgstr "Скачать указанные ядра" #: src/Console/AppConsole.vala:76 msgid "Remove files from application cache" @@ -226,9 +211,8 @@ msgid "Options" msgstr "Параметры" #: src/Console/AppConsole.vala:80 -#, fuzzy msgid "Include unstable and RC releases" -msgstr "Скрыть нестабильные и релиз-кандидат версии" +msgstr "Включать нестабильные и релиз-кандидат-версии" #: src/Console/AppConsole.vala:81 src/Gtk/SettingsDialog.vala:163 msgid "Hide unstable and RC releases" @@ -236,24 +220,26 @@ msgstr "Скрыть нестабильные и релиз-кандидат в #: src/Console/AppConsole.vala:82 msgid "Enable verbose debugging output" -msgstr "" +msgstr "Включить подробный отладочный вывод" #: src/Console/AppConsole.vala:83 msgid "Assume Yes for all prompts (non-interactive mode)" -msgstr "" +msgstr "Предполагать \"Да\" для всех запросов (неинтерактивный режим)" #: src/Console/AppConsole.vala:84 msgid "Override user" -msgstr "" +msgstr "Переопределить пользователя" #: src/Console/AppConsole.vala:87 msgid "A version string taken from the output of --list" -msgstr "" +msgstr "Строка версии, взятая из вывода --list" #: src/Console/AppConsole.vala:88 msgid "" "One or more version strings (comma-separated) taken from the output of --list" msgstr "" +"Одна или несколько строк версий (разделенных запятыми), взятых из вывода --" +"list" #: src/Console/AppConsole.vala:169 src/Gtk/AppGtk.vala:136 msgid "Unknown option" @@ -261,22 +247,20 @@ msgstr "Неизвестный параметр" #: src/Console/AppConsole.vala:171 src/Console/AppConsole.vala:265 #: src/Console/AppConsole.vala:294 -#, fuzzy msgid "Run" msgstr "Используется" #: src/Console/AppConsole.vala:171 -#, fuzzy msgid "to list all options" -msgstr "Показать все параметры" +msgstr "чтобы перечислить все параметры" #: src/Console/AppConsole.vala:238 src/Console/AppConsole.vala:273 msgid "No kernels specified" -msgstr "" +msgstr "Ядра не указаны" #: src/Console/AppConsole.vala:244 msgid "Multiple kernels selected for installation. Select only one." -msgstr "" +msgstr "Для установки выбрано несколько ядер. Выберите только одно." #: src/Console/AppConsole.vala:262 src/Gtk/MainWindow.vala:100 msgid "Could not find requested version" @@ -284,25 +268,24 @@ msgstr "Не удалось найти запрошенную версию" #: src/Console/AppConsole.vala:265 msgid "and use a version string listed in first column" -msgstr "" +msgstr "и использовать строку версии, указанную в первом столбце" #: src/Console/AppConsole.vala:293 msgid "Command not specified" -msgstr "" +msgstr "Команда не указана" #: src/Console/AppConsole.vala:294 -#, fuzzy msgid "to list all commands" -msgstr "Показать все параметры" +msgstr "чтобы перечислить все команды" #: src/Console/AppConsole.vala:360 msgid "Show" -msgstr "" +msgstr "Показать" #: src/Console/AppConsole.vala:365 src/Console/AppConsole.vala:377 -#, fuzzy, c-format +#, c-format msgid "Kernel %s Available" -msgstr "Установлено" +msgstr "Доступно ядро %s" #: src/Console/AppConsole.vala:367 src/Console/AppConsole.vala:379 #: src/Gtk/MainWindow.vala:330 @@ -336,45 +319,42 @@ msgstr "Интернет соединение не активно" #: src/Gtk/MainWindow.vala:321 src/Gtk/MainWindow.vala:525 #: src/Gtk/MainWindow.vala:655 msgid "No Internet" -msgstr "" +msgstr "Нет интернет соединения" #: src/Gtk/MainWindow.vala:339 msgid "Multiple Kernels Selected" -msgstr "" +msgstr "Выбрано несколько ядер" #: src/Gtk/MainWindow.vala:339 msgid "Select a single kernel to install" -msgstr "" +msgstr "Выберите одно ядро для установки" #: src/Gtk/MainWindow.vala:342 src/Gtk/MainWindow.vala:353 msgid "Not Selected" -msgstr "" +msgstr "Не выбрано" #: src/Gtk/MainWindow.vala:342 msgid "Select the kernel to install" -msgstr "" +msgstr "Выберите ядро для установки" #: src/Gtk/MainWindow.vala:347 -#, fuzzy msgid "Uninstall" -msgstr "Установить" +msgstr "Удалить" #: src/Gtk/MainWindow.vala:353 msgid "Select the kernels to uninstall" -msgstr "" +msgstr "Выберите ядра для деинсталляции" #: src/Gtk/MainWindow.vala:383 src/Gtk/MainWindow.vala:417 #: src/Gtk/MainWindow.vala:687 msgid "Close window to exit..." -msgstr "" +msgstr "Закройте окно, чтобы выйти..." #: src/Gtk/MainWindow.vala:391 -#, fuzzy msgid "Uninstall Old" -msgstr "Удаление завершено" +msgstr "Удалить старые" #: src/Gtk/MainWindow.vala:392 -#, fuzzy msgid "Uninstall kernels older than running kernel" msgstr "Удалить более старшие установленные ядра, чем используемое" @@ -396,30 +376,27 @@ msgstr "Программа обновления ядра для дистрибу #: src/Gtk/MainWindow.vala:504 msgid "Forked" -msgstr "" +msgstr "Форк" #: src/Gtk/MainWindow.vala:504 msgid "Original" -msgstr "" +msgstr "Оригинал" #: src/Gtk/MainWindow.vala:525 src/Gtk/MainWindow.vala:655 -#, fuzzy msgid "Internet connection is not active." -msgstr "Интернет соединение не активно" +msgstr "Интернет соединение не активно." #: src/Gtk/MainWindow.vala:544 msgid "Refreshing..." msgstr "Обновление..." #: src/Gtk/MainWindow.vala:638 -#, fuzzy msgid "available" -msgstr "Установлено" +msgstr "доступно" #: src/Gtk/MainWindow.vala:650 -#, fuzzy msgid "Already Installed" -msgstr "Установлено" +msgstr "Уже установлено" #: src/Gtk/ProgressWindow.vala:144 src/Gtk/TerminalWindow.vala:149 #: src/Utility/Gtk/CustomMessageDialog.vala:153 @@ -440,7 +417,7 @@ msgstr "Уведомлять, если доступно небольшое об #: src/Gtk/SettingsDialog.vala:89 msgid "(Allowing intervals in seconds for --debug)" -msgstr "" +msgstr "(Разрешение интервалов в секундах для --debug)" #: src/Gtk/SettingsDialog.vala:112 msgid "Check every" @@ -460,37 +437,35 @@ msgstr "Неделю(ли)" #: src/Gtk/SettingsDialog.vala:149 msgid "Second(s)" -msgstr "" +msgstr "Секунду(ды)" #: src/Gtk/SettingsDialog.vala:155 msgid "Display" -msgstr "Вид" +msgstr "Отображение" #: src/Gtk/SettingsDialog.vala:177 msgid "Show N previous major versions " -msgstr "" +msgstr "Показать N предыдущих основных версий " #: src/Gtk/SettingsDialog.vala:192 msgid "Other" -msgstr "" +msgstr "Прочее" #: src/Gtk/SettingsDialog.vala:200 -#, fuzzy msgid "Skip internet connection check" -msgstr "Интернет соединение не активно" +msgstr "Пропустить проверку подключения к Интернету" #: src/Gtk/SettingsDialog.vala:213 -#, fuzzy msgid "Internet connection timeout in " -msgstr "Интернет соединение не активно" +msgstr "Таймаут подключения к Интернету в " #: src/Gtk/SettingsDialog.vala:228 msgid "seconds" -msgstr "" +msgstr "секунд" #: src/Gtk/SettingsDialog.vala:235 msgid "Max concurrent downloads" -msgstr "" +msgstr "Максимальное количество одновременных загрузок" #: src/Gtk/TerminalWindow.vala:159 src/Utility/Gtk/AboutWindow.vala:294 msgid "Close" @@ -525,49 +500,44 @@ msgid "Documenters" msgstr "Составители документации" #: src/Utility/Gtk/AboutWindow.vala:353 -#, fuzzy msgid "Third Party Inclusions" -msgstr "Сторонние инструменты" +msgstr "Включая сторонние инструменты" #: src/Utility/Gtk/CustomMessageDialog.vala:157 msgid "Yes" -msgstr "" +msgstr "Да" #: src/Utility/Gtk/CustomMessageDialog.vala:158 msgid "No" -msgstr "" +msgstr "Нет" #: src/Utility/Gtk/GtkHelper.vala:67 msgid "Missing Icon" msgstr "Значок отсутствует" #: src/Utility/TeeJee.FileSystem.vala:71 -#, fuzzy msgid "File deleted" -msgstr "Файловая система" +msgstr "Файл удалён" #: src/Utility/TeeJee.FileSystem.vala:76 src/Utility/TeeJee.FileSystem.vala:256 -#, fuzzy msgid "Failed to delete file" -msgstr "Не удалось записать файл" +msgstr "Не удалось удалить файл" #: src/Utility/TeeJee.FileSystem.vala:96 msgid "Failed to read file" msgstr "Не удалось прочитать файл" #: src/Utility/TeeJee.FileSystem.vala:123 -#, fuzzy msgid "File saved" -msgstr "Файловая система" +msgstr "Файл сохранён" #: src/Utility/TeeJee.FileSystem.vala:129 msgid "Failed to write file" msgstr "Не удалось записать файл" #: src/Utility/TeeJee.FileSystem.vala:141 -#, fuzzy msgid "File copied" -msgstr "Не удалось скопировать файл" +msgstr "Файл скопирован" #: src/Utility/TeeJee.FileSystem.vala:148 msgid "Failed to copy file" @@ -578,9 +548,8 @@ msgid "File not found" msgstr "Файл не найден" #: src/Utility/TeeJee.FileSystem.vala:171 -#, fuzzy msgid "File moved" -msgstr "Удалить" +msgstr "Файл перемещён" #: src/Utility/TeeJee.FileSystem.vala:176 msgid "Failed to move file" @@ -588,9 +557,8 @@ msgstr "Не удалось переместить файл" #: src/Utility/TeeJee.FileSystem.vala:233 #: src/Utility/TeeJee.FileSystem.vala:236 -#, fuzzy msgid "Created directory" -msgstr "Используемая кэш-папка" +msgstr "Создана директория" #: src/Utility/TeeJee.FileSystem.vala:243 msgid "Failed to create dir" @@ -598,7 +566,7 @@ msgstr "Не удалось создать папку" #: src/Utility/TeeJee.FileSystem.vala:255 msgid "Deleted" -msgstr "" +msgstr "Удалено" #: src/Utility/TeeJee.Logging.vala:59 msgid "E" @@ -606,4 +574,4 @@ msgstr "E" #: src/Utility/TeeJee.Logging.vala:84 msgid "D" -msgstr "" +msgstr "D" From f4efca843d61396d8ec52b0c8019772f2a74e94b Mon Sep 17 00:00:00 2001 From: "Brian K. White" <54458165+bkw777@users.noreply.github.com> Date: Fri, 11 Mar 2022 21:30:03 -0500 Subject: [PATCH 165/567] Update README.md --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index 7ac14367..224959a6 100644 --- a/README.md +++ b/README.md @@ -44,6 +44,9 @@ GUI mainline-gtk ``` +### Help +* Kernel versions 5.15.7+ and libssl3 -> [Install libssl3](../../wiki/Install-libssl3) + ### About Written using Vala and GTK3. From e74aaad56b6b01123f6cde499ebb7083e33979c7 Mon Sep 17 00:00:00 2001 From: "Lvv.me" Date: Fri, 1 Apr 2022 09:58:29 +0800 Subject: [PATCH 166/567] Add missing dependencies: make gettext dpkg-dev --- README.md | 2 +- README.md.src | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 224959a6..63a9cf88 100644 --- a/README.md +++ b/README.md @@ -23,7 +23,7 @@ sudo apt install mainline ### Build ``` -sudo apt install libgee-0.8-dev libjson-glib-dev libvte-2.91-dev valac aria2 lsb-release aptitude +sudo apt install libgee-0.8-dev libjson-glib-dev libvte-2.91-dev valac aria2 lsb-release aptitude make gettext dpkg-dev git clone https://github.com/bkw777/mainline.git cd mainline make diff --git a/README.md.src b/README.md.src index fa393257..4c74a32f 100644 --- a/README.md.src +++ b/README.md.src @@ -23,7 +23,7 @@ sudo apt install mainline ### Build ``` -sudo apt install libgee-0.8-dev libjson-glib-dev libvte-2.91-dev valac aria2 lsb-release aptitude +sudo apt install libgee-0.8-dev libjson-glib-dev libvte-2.91-dev valac aria2 lsb-release aptitude make gettext dpkg-dev git clone BRANDING_GITREPO cd BRANDING_SHORTNAME make From c2a5d77ce09251e363cfa7073dd3cbc578b28dfb Mon Sep 17 00:00:00 2001 From: "Lvv.me" Date: Fri, 1 Apr 2022 11:20:43 +0800 Subject: [PATCH 167/567] Correct action of installing `pbuilder-dist` in Makefile --- Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index a9311743..351aab22 100644 --- a/Makefile +++ b/Makefile @@ -153,7 +153,8 @@ $(dsc_file): debian/changelog $(misc_files) $(po_files) deb: $(deb_file) # To create the deb build env -#sudo apt intsall pbuilder-dist +# `pbuilder-dist` provided by `ubuntu-dev-tools` +#sudo apt intsall ubuntu-dev-tools #pbuilder-dist `lsb_release -sc` create # To update the deb build env #pbuilder-dist `lsb_release -sc` update From 49fe94b2869233bf0c1dabaebba516fe260c8db0 Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Thu, 7 Jul 2022 01:56:30 -0400 Subject: [PATCH 168/567] mollify vala 0.52+ --- Makefile | 6 +++--- po/es.po | 2 +- po/fr.po | 2 +- po/hr.po | 2 +- po/it.po | 12 +++++++----- po/ko.po | 2 +- po/messages.pot | 2 +- po/nl.po | 2 +- po/pl.po | 2 +- po/ru.po | 2 +- po/sv.po | 2 +- po/tr.po | 2 +- po/uk.po | 5 ++--- src/Common/Main.vala | 4 ++-- 14 files changed, 24 insertions(+), 23 deletions(-) diff --git a/Makefile b/Makefile index 351aab22..d740e03a 100644 --- a/Makefile +++ b/Makefile @@ -4,7 +4,7 @@ URI_KERNEL_UBUNTU_MAINLINE := https://kernel.ubuntu.com/~kernel-ppa/mainline/ SHELL := /bin/bash -CFLAGS := --std=c99 +CFLAGS := -O2 prefix := /usr bindir := $(prefix)/bin @@ -62,12 +62,12 @@ deb_file = release/deb/$(BRANDING_SHORTNAME)_$(pkg_version).$(DEB_BUILD_NUMBER)_ all: $(BRANDING_SHORTNAME) $(BRANDING_SHORTNAME)-gtk $(BRANDING_SHORTNAME)-gtk: $(misc_files) $(common_vala_files) $(gui_vala_files) $(po_files) - valac -X -w $(build_symbols) --Xcc="-lm" \ + valac --enable-deprecated -X -w $(build_symbols) --Xcc="-lm" \ --pkg $(glib) --pkg $(gio-unix) --pkg posix --pkg $(gee) --pkg $(json-glib) --pkg $(gtk+) --pkg $(vte) \ $(common_vala_files) $(gui_vala_files) -o $(@) $(BRANDING_SHORTNAME): $(misc_files) $(common_vala_files) $(tui_vala_files) $(po_files) - valac -X -w $(build_symbols) --Xcc="-lm" \ + valac --enable-deprecated -X -w $(build_symbols) --Xcc="-lm" \ --pkg $(glib) --pkg $(gio-unix) --pkg posix --pkg $(gee) --pkg $(json-glib) \ $(common_vala_files) $(tui_vala_files) -o $(@) diff --git a/po/es.po b/po/es.po index 5767eea1..597ec63e 100644 --- a/po/es.po +++ b/po/es.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-09-14 13:48-0400\n" +"POT-Creation-Date: 2022-07-07 01:48-0400\n" "PO-Revision-Date: 2018-01-03 02:03-0600\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish\n" diff --git a/po/fr.po b/po/fr.po index 5c5e1e8e..aed542c7 100644 --- a/po/fr.po +++ b/po/fr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-09-14 13:48-0400\n" +"POT-Creation-Date: 2022-07-07 01:48-0400\n" "PO-Revision-Date: 2018-08-05 15:50+0200\n" "Last-Translator: Yolateng0 \n" "Language-Team: French\n" diff --git a/po/hr.po b/po/hr.po index 84712b4b..929b1c27 100644 --- a/po/hr.po +++ b/po/hr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-09-14 13:48-0400\n" +"POT-Creation-Date: 2022-07-07 01:48-0400\n" "PO-Revision-Date: 2021-04-07 17:58+0200\n" "Last-Translator: gogo \n" "Language-Team: Croatian \n" diff --git a/po/it.po b/po/it.po index a7608dfc..ce759153 100644 --- a/po/it.po +++ b/po/it.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline 1.0.15\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-09-20 08:48-0400\n" +"POT-Creation-Date: 2022-07-07 01:48-0400\n" "PO-Revision-Date: 2020-08-22 15:35+0100\n" "Last-Translator: Demetrio Mendozzi\n" "Language-Team: Italian \n" @@ -108,8 +108,9 @@ msgstr "Questo kernel è già installato" #: src/Common/LinuxKernel.vala:1106 msgid "Installation completed. A reboot is required to use the new kernel." -msgstr "Installazione completata. È necessario riavviare per utilizzare il" -"nuovo kernel." +msgstr "" +"Installazione completata. È necessario riavviare per utilizzare ilnuovo " +"kernel." #: src/Common/LinuxKernel.vala:1109 msgid "Installation completed with errors" @@ -170,8 +171,9 @@ msgstr "Verifica aggiornamenti per il kernel" #: src/Console/AppConsole.vala:67 msgid "Check for kernel updates and notify current user" -msgstr "Verifica la disponibilità di aggiornamenti del kernel" -"ed avvisa l'utente corrente" +msgstr "" +"Verifica la disponibilità di aggiornamenti del kerneled avvisa l'utente " +"corrente" #: src/Console/AppConsole.vala:68 msgid "List all available mainline kernels" diff --git a/po/ko.po b/po/ko.po index aa39cb33..a93bab92 100644 --- a/po/ko.po +++ b/po/ko.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline 1.0.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-09-14 13:48-0400\n" +"POT-Creation-Date: 2022-07-07 01:48-0400\n" "PO-Revision-Date: 2021-06-01 14:57+0900\n" "Last-Translator: Kevin Kim \n" "Language-Team: Korean\n" diff --git a/po/messages.pot b/po/messages.pot index a2ecf28f..f005e28e 100644 --- a/po/messages.pot +++ b/po/messages.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline 1.0.15\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-09-14 16:23-0400\n" +"POT-Creation-Date: 2022-07-07 01:48-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/po/nl.po b/po/nl.po index 96e84e9c..2ce1a284 100644 --- a/po/nl.po +++ b/po/nl.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-09-14 13:48-0400\n" +"POT-Creation-Date: 2022-07-07 01:48-0400\n" "PO-Revision-Date: 2020-08-23 13:55+0200\n" "Last-Translator: Heimen Stoffels \n" "Language-Team: \n" diff --git a/po/pl.po b/po/pl.po index 2bf44e17..7a3ee90c 100644 --- a/po/pl.po +++ b/po/pl.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-09-14 13:48-0400\n" +"POT-Creation-Date: 2022-07-07 01:48-0400\n" "PO-Revision-Date: 2021-09-17 10:29+0200\n" "Last-Translator: Viktor Sokyrko \n" "Language-Team: Polish\n" diff --git a/po/ru.po b/po/ru.po index 45bc1350..94ec6cf5 100644 --- a/po/ru.po +++ b/po/ru.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-09-14 13:48-0400\n" +"POT-Creation-Date: 2022-07-07 01:48-0400\n" "PO-Revision-Date: 2022-02-24 16:05+0300\n" "Last-Translator: Faust3000 (Original) | Danik2343 (Update Transaltion) " "\n" diff --git a/po/sv.po b/po/sv.po index 0c7f3fa2..81760ab1 100644 --- a/po/sv.po +++ b/po/sv.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-09-14 13:48-0400\n" +"POT-Creation-Date: 2022-07-07 01:48-0400\n" "PO-Revision-Date: 2018-01-13 16:56+0100\n" "Last-Translator: Åke Engelbrektson \n" "Language-Team: Svenska Språkfiler \n" diff --git a/po/tr.po b/po/tr.po index 29c4ef97..8730b916 100644 --- a/po/tr.po +++ b/po/tr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-09-14 13:48-0400\n" +"POT-Creation-Date: 2022-07-07 01:48-0400\n" "PO-Revision-Date: 2020-03-10 15:59+0300\n" "Last-Translator: Gökhan GÖKKAYA \n" "Language-Team: Turkish\n" diff --git a/po/uk.po b/po/uk.po index ad1be5a7..778d32e9 100644 --- a/po/uk.po +++ b/po/uk.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-09-14 13:48-0400\n" +"POT-Creation-Date: 2022-07-07 01:48-0400\n" "PO-Revision-Date: 2019-07-25 11:00+0300\n" "Last-Translator: Serhii Golovko \n" "Language-Team: Ukranian \n" @@ -246,8 +246,7 @@ msgstr "Рядок версій, взятий з виводу --list" #, fuzzy msgid "" "One or more version strings (comma-separated) taken from the output of --list" -msgstr "" -"Одна або кілька рядків версії (розділені комами) з виводу --list" +msgstr "Одна або кілька рядків версії (розділені комами) з виводу --list" #: src/Console/AppConsole.vala:169 src/Gtk/AppGtk.vala:136 msgid "Unknown option" diff --git a/src/Common/Main.vala b/src/Common/Main.vala index e5c15b96..bfa9fedb 100644 --- a/src/Common/Main.vala +++ b/src/Common/Main.vala @@ -40,8 +40,8 @@ using TeeJee.Misc; [CCode(cname="BRANDING_WEBSITE")] extern const string BRANDING_WEBSITE; [CCode(cname="INSTALL_PREFIX")] extern const string INSTALL_PREFIX; -public const string LOCALE_DIR = INSTALL_PREFIX + "/share/locale"; -public const string APP_LIB_DIR = INSTALL_PREFIX + "/lib/" + BRANDING_SHORTNAME; +private const string LOCALE_DIR = INSTALL_PREFIX + "/share/locale"; +private const string APP_LIB_DIR = INSTALL_PREFIX + "/lib/" + BRANDING_SHORTNAME; extern void exit(int exit_code); From 75e193a5d8e83790edaa9ae62ec4b4923dfd98d4 Mon Sep 17 00:00:00 2001 From: sabriunal Date: Sat, 6 Aug 2022 16:57:07 +0300 Subject: [PATCH 169/567] Update Turkish translatlation --- po/tr.po | 166 +++++++++++++++++++++++++------------------------------ 1 file changed, 74 insertions(+), 92 deletions(-) diff --git a/po/tr.po b/po/tr.po index 8730b916..ca15174b 100644 --- a/po/tr.po +++ b/po/tr.po @@ -1,17 +1,24 @@ +# Turkish translation for mainline. +# Copyright (C) 2018-2022 mainline's COPYRIGHT HOLDER +# This file is distributed under the same license as the mainline package. +# +# Gökhan Gökkaya , 2018. +# Sabri Ünal , 2022 +# msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-07-07 01:48-0400\n" -"PO-Revision-Date: 2020-03-10 15:59+0300\n" -"Last-Translator: Gökhan GÖKKAYA \n" -"Language-Team: Turkish\n" +"POT-Creation-Date: 2022-08-06 16:01+0300\n" +"PO-Revision-Date: 2022-08-06 16:48+0300\n" +"Last-Translator: Sabri Ünal \n" +"Language-Team: Türkçe \n" "Language: tr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Poedit 2.0.6\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: Poedit 3.1.1\n" #: src/Common/LinuxKernel.vala:88 msgid "Distribution" @@ -27,33 +34,32 @@ msgstr "İçerik dizini alınıyor..." #: src/Common/LinuxKernel.vala:338 msgid "Fetching index from kernel.ubuntu.com..." -msgstr "İçerik listesi kernel.ubuntu.com alanından alınıyor..." +msgstr "İçerik dizini kernel.ubuntu.com alanından alınıyor..." #: src/Common/LinuxKernel.vala:594 msgid "Could not find running kernel in list!" -msgstr "İstenen sürüm bulunamadı!" +msgstr "Çalışan sürüm listede bulunamadı!" #: src/Common/LinuxKernel.vala:600 -#, fuzzy msgid "Could not find any kernels to uninstall" msgstr "Kaldırılacak çekirdek bulunamadı" #: src/Common/LinuxKernel.vala:609 -#, fuzzy msgid "The following kernels will be uninstalled:" -msgstr "Aşağıdaki çekirdekler silinecek:" +msgstr "Aşağıdaki çekirdekler kaldırılacak:" #: src/Common/LinuxKernel.vala:616 msgid "Continue ?" -msgstr "Devam et ?" +msgstr "Devam edilsin mi?" #: src/Common/LinuxKernel.vala:642 src/Console/AppConsole.vala:314 msgid "Latest update" msgstr "Son güncelleme" +# Point burada point release anlamında kullanılıyor. Örneğin 5.10.x sayısının en sonundaki x rakamı point release/nokta sürüm oluyor. #: src/Common/LinuxKernel.vala:653 src/Console/AppConsole.vala:321 msgid "Latest point update" -msgstr "Son güncelleme noktası" +msgstr "Son nokta güncellemesi" #: src/Common/LinuxKernel.vala:661 src/Console/AppConsole.vala:326 #: src/Console/AppConsole.vala:387 @@ -61,9 +67,9 @@ msgid "No updates found" msgstr "Güncelleme bulunamadı" #: src/Common/LinuxKernel.vala:671 -#, fuzzy, c-format +#, c-format msgid "Install Kernel Version %s ? (y/n): " -msgstr "Linux v%s Kur ? (e/h): " +msgstr "Linux Çekirdek Sürümü %s Kurulsun mu? (e/h): " #: src/Common/LinuxKernel.vala:909 msgid "Packages Available" @@ -94,7 +100,7 @@ msgstr "İndiriliyor" #: src/Utility/Gtk/CustomMessageDialog.vala:148 #: src/Utility/Gtk/CustomMessageDialog.vala:152 msgid "OK" -msgstr "TAMAM" +msgstr "Tamam" #: src/Common/LinuxKernel.vala:1066 msgid "ERROR" @@ -106,26 +112,23 @@ msgstr "Bu çekirdek zaten kurulu." #: src/Common/LinuxKernel.vala:1106 msgid "Installation completed. A reboot is required to use the new kernel." -msgstr "" -"Kurulum tamamlandı. Yeni çekirdeği kullanmak için yeniden başlatma gerekiyor." +msgstr "Kurulum tamamlandı. Yeni çekirdeği kullanmak için yeniden başlatma gerekiyor." #: src/Common/LinuxKernel.vala:1109 msgid "Installation completed with errors" msgstr "Kurulum hatalarla tamamlandı" #: src/Common/LinuxKernel.vala:1124 -#, fuzzy msgid "" "Selected kernel is currently running and cannot be un-installed.\n" " Install another kernel before un-installing this one." msgstr "" -"Seçilen çekirdek şu anda çalışıyor ve kaldırılamıyor.\n" +"Seçilen çekirdek şu anda çalışıyor ve kaldırılamaz.\n" " Bunu kaldırmadan önce başka bir çekirdek yükleyin." #: src/Common/LinuxKernel.vala:1129 -#, fuzzy msgid "Preparing to uninstall selected kernels" -msgstr "Seçilen çekirdekleri kaldırmak için hazırlanıyor" +msgstr "Seçilen çekirdekleri kaldırmaya hazırlanıyor" #: src/Common/LinuxKernel.vala:1160 src/Common/LinuxKernel.vala:1207 msgid "Un-install completed" @@ -136,27 +139,25 @@ msgid "Un-install completed with errors" msgstr "Kaldırma hatalarla tamamlandı" #: src/Common/LinuxKernel.vala:1176 -#, fuzzy msgid "" "This kernel is currently running and cannot be un-installed.\n" " Install another kernel before un-installing this one." msgstr "" -"Bu çekirdek şu anda çalışıyor ve bu sebeple kaldırılamaz.\n" +"Bu çekirdek şu anda çalışıyor ve kaldırılamaz.\n" "Bunu kaldırmadan önce başka bir çekirdek yükleyin." #: src/Common/Main.vala:241 msgid "Called from" -msgstr "" +msgstr "Çağrı konumu" #: src/Common/Main.vala:275 -#, fuzzy msgid "Notifications are disabled" -msgstr "Bildirim" +msgstr "Bildirimler devre dışı bırakılmış" #: src/Common/Package.vala:134 src/Common/Package.vala:198 #, c-format msgid "File not found: %s" -msgstr "Şu dosya bulunamadı: %s" +msgstr "%s dosyası bulunamadı" #: src/Console/AppConsole.vala:62 src/Gtk/AppGtk.vala:149 msgid "Syntax" @@ -188,26 +189,23 @@ msgstr "En son mainline çekirdeğini kur" #: src/Console/AppConsole.vala:71 msgid "Install latest point update for current series" -msgstr "Mevcut çekirdek serisi için en güncelleme noktasını kur" +msgstr "Mevcut çekirdek serisi için en son nokta güncellemesini kur" #: src/Console/AppConsole.vala:72 msgid "Install specified mainline kernel" msgstr "Belirtilen mainline çekirdeğini kur" #: src/Console/AppConsole.vala:73 -#, fuzzy msgid "Uninstall specified kernel" -msgstr "Belirtilen mainline çekirdeğini kur" +msgstr "Belirtilen çekirdeğini kaldır" #: src/Console/AppConsole.vala:74 -#, fuzzy msgid "Uninstall kernels older than the running kernel" -msgstr "Çalışan çekirdekten eski olan kurulu çekirdekleri kaldır" +msgstr "Çalışan çekirdekten daha eski çekirdekleri kaldır" #: src/Console/AppConsole.vala:75 -#, fuzzy msgid "Download specified kernels" -msgstr "Belirtilen çekirdek için paketleri indir" +msgstr "Belirtilen çekirdekleri indir" #: src/Console/AppConsole.vala:76 msgid "Remove files from application cache" @@ -218,9 +216,8 @@ msgid "Options" msgstr "Seçenekler" #: src/Console/AppConsole.vala:80 -#, fuzzy msgid "Include unstable and RC releases" -msgstr "Kararsız ve RC sürümleri gizle" +msgstr "Kararsız ve RC sürümleri dahil et" #: src/Console/AppConsole.vala:81 src/Gtk/SettingsDialog.vala:163 msgid "Hide unstable and RC releases" @@ -240,12 +237,11 @@ msgstr "Kullanıcıyı geçersiz kıl" #: src/Console/AppConsole.vala:87 msgid "A version string taken from the output of --list" -msgstr "" +msgstr "--list çıktısından alınan sürüm dizgesi" #: src/Console/AppConsole.vala:88 -msgid "" -"One or more version strings (comma-separated) taken from the output of --list" -msgstr "" +msgid "One or more version strings (comma-separated) taken from the output of --list" +msgstr "--list çıktısından alınan bir veya daha fazla sürüm dizgesi (virgülle ayrılmış)" #: src/Console/AppConsole.vala:169 src/Gtk/AppGtk.vala:136 msgid "Unknown option" @@ -253,22 +249,20 @@ msgstr "Bilinmeyen seçenek" #: src/Console/AppConsole.vala:171 src/Console/AppConsole.vala:265 #: src/Console/AppConsole.vala:294 -#, fuzzy msgid "Run" -msgstr "Çalıştır '" +msgstr "Çalıştır" #: src/Console/AppConsole.vala:171 -#, fuzzy msgid "to list all options" -msgstr "Tüm seçenekleri göster" +msgstr "tüm seçenekleri listele" #: src/Console/AppConsole.vala:238 src/Console/AppConsole.vala:273 msgid "No kernels specified" -msgstr "Belirtilen çekirdek yok" +msgstr "Çekirdek belirtilmedi" #: src/Console/AppConsole.vala:244 msgid "Multiple kernels selected for installation. Select only one." -msgstr "Kurulum için çoklu çekirdek seçildi. Sadece bir tane seçiniz." +msgstr "Kurulum için birden fazla çekirdek seçildi. Sadece bir tane seçiniz." #: src/Console/AppConsole.vala:262 src/Gtk/MainWindow.vala:100 msgid "Could not find requested version" @@ -276,25 +270,24 @@ msgstr "İstenen sürüm bulunamadı" #: src/Console/AppConsole.vala:265 msgid "and use a version string listed in first column" -msgstr "" +msgstr "ve ilk sütunda listelenen bir sürüm dizgesini kullanın" #: src/Console/AppConsole.vala:293 msgid "Command not specified" msgstr "Komut belirtilmedi" #: src/Console/AppConsole.vala:294 -#, fuzzy msgid "to list all commands" -msgstr "Tüm seçenekleri göster" +msgstr "tüm komutları listele" #: src/Console/AppConsole.vala:360 msgid "Show" -msgstr "" +msgstr "Göster" #: src/Console/AppConsole.vala:365 src/Console/AppConsole.vala:377 -#, fuzzy, c-format +#, c-format msgid "Kernel %s Available" -msgstr "Mevcut Paketler" +msgstr "Çekirdek %s Kullanılabilir" #: src/Console/AppConsole.vala:367 src/Console/AppConsole.vala:379 #: src/Gtk/MainWindow.vala:330 @@ -332,7 +325,7 @@ msgstr "İnternet Yok" #: src/Gtk/MainWindow.vala:339 msgid "Multiple Kernels Selected" -msgstr "Çoklu Çekirdek Seçildi" +msgstr "Birden Fazla Çekirdek Seçildi" #: src/Gtk/MainWindow.vala:339 msgid "Select a single kernel to install" @@ -340,36 +333,32 @@ msgstr "Kurulum için tek çekirdek seçin" #: src/Gtk/MainWindow.vala:342 src/Gtk/MainWindow.vala:353 msgid "Not Selected" -msgstr "Seçilen Yok" +msgstr "Seçilmedi" #: src/Gtk/MainWindow.vala:342 msgid "Select the kernel to install" msgstr "Kurulum için çekirdek seçin" #: src/Gtk/MainWindow.vala:347 -#, fuzzy msgid "Uninstall" -msgstr "Kur" +msgstr "Kaldır" #: src/Gtk/MainWindow.vala:353 -#, fuzzy msgid "Select the kernels to uninstall" -msgstr "Kurulum için çekirdek seçin" +msgstr "Kaldırmak için çekirdek seçin" #: src/Gtk/MainWindow.vala:383 src/Gtk/MainWindow.vala:417 #: src/Gtk/MainWindow.vala:687 msgid "Close window to exit..." -msgstr "" +msgstr "Çıkış için pencereyi kapat..." #: src/Gtk/MainWindow.vala:391 -#, fuzzy msgid "Uninstall Old" -msgstr "Kaldırma tamamlandı" +msgstr "Eskileri Kaldır" #: src/Gtk/MainWindow.vala:392 -#, fuzzy msgid "Uninstall kernels older than running kernel" -msgstr "Çalışan çekirdekten eski olan kurulu çekirdekleri kaldır" +msgstr "Çalışan çekirdekten daha eski çekirdekleri kaldır" #: src/Gtk/MainWindow.vala:424 msgid "Changes" @@ -389,35 +378,32 @@ msgstr "Ubuntu tabanlı dağıtımlar için çekirdek güncelleme aracı" #: src/Gtk/MainWindow.vala:504 msgid "Forked" -msgstr "" +msgstr "Çatallandı" #: src/Gtk/MainWindow.vala:504 msgid "Original" -msgstr "" +msgstr "Özgün" #: src/Gtk/MainWindow.vala:525 src/Gtk/MainWindow.vala:655 -#, fuzzy msgid "Internet connection is not active." -msgstr "İnternet bağlantısı aktif değil" +msgstr "İnternet bağlantısı aktif değil." #: src/Gtk/MainWindow.vala:544 msgid "Refreshing..." msgstr "Yenileniyor..." #: src/Gtk/MainWindow.vala:638 -#, fuzzy msgid "available" -msgstr "Mevcut Paketler" +msgstr "mevcut" #: src/Gtk/MainWindow.vala:650 -#, fuzzy msgid "Already Installed" -msgstr "Kurulu" +msgstr "Zaten Kurulu" #: src/Gtk/ProgressWindow.vala:144 src/Gtk/TerminalWindow.vala:149 #: src/Utility/Gtk/CustomMessageDialog.vala:153 msgid "Cancel" -msgstr "İptal" +msgstr "İptal Et" #: src/Gtk/SettingsDialog.vala:60 msgid "Notification" @@ -429,11 +415,11 @@ msgstr "Ana sürüm mevcutsa bildir" #: src/Gtk/SettingsDialog.vala:78 msgid "Notify if a point release is available" -msgstr "Ara sürüm mevcutsa bildir" +msgstr "Nokta sürüm mevcutsa bildir" #: src/Gtk/SettingsDialog.vala:89 msgid "(Allowing intervals in seconds for --debug)" -msgstr "" +msgstr "(--debug için saniye cinsinden aralıklara izin verir)" #: src/Gtk/SettingsDialog.vala:112 msgid "Check every" @@ -452,9 +438,8 @@ msgid "Week(s)" msgstr "Hafta" #: src/Gtk/SettingsDialog.vala:149 -#, fuzzy msgid "Second(s)" -msgstr "saniye" +msgstr "Saniye" #: src/Gtk/SettingsDialog.vala:155 msgid "Display" @@ -482,7 +467,7 @@ msgstr "saniye" #: src/Gtk/SettingsDialog.vala:235 msgid "Max concurrent downloads" -msgstr "" +msgstr "Azami eşzamanlı indirme" #: src/Gtk/TerminalWindow.vala:159 src/Utility/Gtk/AboutWindow.vala:294 msgid "Close" @@ -490,7 +475,7 @@ msgstr "Kapat" #: src/Utility/Gtk/AboutWindow.vala:271 src/Utility/Gtk/AboutWindow.vala:288 msgid "Credits" -msgstr "Katkı sağlayanlar" +msgstr "Hazırlayanlar" #: src/Utility/Gtk/AboutWindow.vala:284 msgid "Back" @@ -517,9 +502,8 @@ msgid "Documenters" msgstr "Belgelendirenler" #: src/Utility/Gtk/AboutWindow.vala:353 -#, fuzzy msgid "Third Party Inclusions" -msgstr "Üçüncü Parti Araçlar" +msgstr "Üçüncü Taraf Eklemeler" #: src/Utility/Gtk/CustomMessageDialog.vala:157 msgid "Yes" @@ -534,18 +518,16 @@ msgid "Missing Icon" msgstr "Eksik Simge" #: src/Utility/TeeJee.FileSystem.vala:71 -#, fuzzy msgid "File deleted" -msgstr "Dosya kaydedildi" +msgstr "Dosya silindi" #: src/Utility/TeeJee.FileSystem.vala:76 src/Utility/TeeJee.FileSystem.vala:256 -#, fuzzy msgid "Failed to delete file" -msgstr "Dosya yazma başarısız" +msgstr "Dosya silinemedi" #: src/Utility/TeeJee.FileSystem.vala:96 msgid "Failed to read file" -msgstr "Dosya okuma başarısız" +msgstr "Dosya okunamadı" #: src/Utility/TeeJee.FileSystem.vala:123 msgid "File saved" @@ -553,7 +535,7 @@ msgstr "Dosya kaydedildi" #: src/Utility/TeeJee.FileSystem.vala:129 msgid "Failed to write file" -msgstr "Dosya yazma başarısız" +msgstr "Dosya yazılamadı" #: src/Utility/TeeJee.FileSystem.vala:141 msgid "File copied" @@ -561,7 +543,7 @@ msgstr "Dosya kopyalandı" #: src/Utility/TeeJee.FileSystem.vala:148 msgid "Failed to copy file" -msgstr "Dosya kopyalama başarısız" +msgstr "Dosya kopyalanamadı" #: src/Utility/TeeJee.FileSystem.vala:157 msgid "File not found" @@ -573,7 +555,7 @@ msgstr "Dosya taşındı" #: src/Utility/TeeJee.FileSystem.vala:176 msgid "Failed to move file" -msgstr "Dosya taşıma başarısız" +msgstr "Dosya taşınamadı" #: src/Utility/TeeJee.FileSystem.vala:233 #: src/Utility/TeeJee.FileSystem.vala:236 @@ -582,11 +564,11 @@ msgstr "Dizin oluşturuldu" #: src/Utility/TeeJee.FileSystem.vala:243 msgid "Failed to create dir" -msgstr "Dizin oluşturma başarısız" +msgstr "Dizin oluşturulamadı" #: src/Utility/TeeJee.FileSystem.vala:255 msgid "Deleted" -msgstr "" +msgstr "Silindi" #: src/Utility/TeeJee.Logging.vala:59 msgid "E" @@ -594,4 +576,4 @@ msgstr "H" #: src/Utility/TeeJee.Logging.vala:84 msgid "D" -msgstr "" +msgstr "S" From d0a506fcea2056ac30e39cbc3754c0f69aadbfd4 Mon Sep 17 00:00:00 2001 From: sabriunal Date: Sat, 6 Aug 2022 16:57:41 +0300 Subject: [PATCH 170/567] Update translator information --- TRANSLATORS | 2 +- src/Gtk/MainWindow.vala | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/TRANSLATORS b/TRANSLATORS index dd6ddf86..e8ca02d1 100644 --- a/TRANSLATORS +++ b/TRANSLATORS @@ -7,5 +7,5 @@ nl: Heimen Stoffels pl: Waldemar Konik , Viktor Sokyrko ru: Faust3000 sv: Åke Engelbrektson -tr: Gökhan GÖKKAYA +tr: Gökhan GÖKKAYA , Sabri Ünal uk: Serhii Golovko diff --git a/src/Gtk/MainWindow.vala b/src/Gtk/MainWindow.vala index efa3d532..088de138 100644 --- a/src/Gtk/MainWindow.vala +++ b/src/Gtk/MainWindow.vala @@ -492,7 +492,7 @@ public class MainWindow : Gtk.Window{ "pl: Waldemar Konik ", "ru: Faust3000 ", "sv: Åke Engelbrektson ", - "tr: Gökhan GÖKKAYA ", + "tr: Gökhan GÖKKAYA , Sabri Ünal ", "uk: Serhii Golovko ", }; From 6dc3b10d1fe6aa50d03b0f79a8bcf4b5432f0912 Mon Sep 17 00:00:00 2001 From: Richard Eklycke Date: Sat, 20 Aug 2022 16:55:28 +0200 Subject: [PATCH 171/567] LinuxKernel: Don't make invalid kernels determine highest version In case there are only invalid versions for the kernel having the highest version number, no other versions will get displayed. In the same vein, in the case where we haven't asked to display any unstable versions, don't make those determine the highest kernel version. This should fix #147. --- src/Common/LinuxKernel.vala | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/Common/LinuxKernel.vala b/src/Common/LinuxKernel.vala index cca2de8a..66324160 100644 --- a/src/Common/LinuxKernel.vala +++ b/src/Common/LinuxKernel.vala @@ -229,6 +229,9 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { highest_maj = 0; foreach(var k in kernel_list){ //log_debug("k.version_maj = %d".printf(k.version_maj)); + if (!k.is_valid) continue; + if (App.hide_unstable && k.is_unstable) continue; + if (k.version_maj > highest_maj){ highest_maj = k.version_maj; log_debug("highest_maj = %d".printf(highest_maj)); From c2104d635209a9f4dbde1777568ae6d80a0db7b6 Mon Sep 17 00:00:00 2001 From: "Brian K. White" <54458165+bkw777@users.noreply.github.com> Date: Sun, 21 Aug 2022 15:42:10 -0400 Subject: [PATCH 172/567] Update README.md --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 63a9cf88..327eeb4e 100644 --- a/README.md +++ b/README.md @@ -45,6 +45,7 @@ mainline-gtk ``` ### Help +* Secure Boot -> https://github.com/M-P-P-C/Signing-a-Linux-Kernel-for-Secure-Boot * Kernel versions 5.15.7+ and libssl3 -> [Install libssl3](../../wiki/Install-libssl3) ### About From 396314d311d6e015617c1d78fd611fff58c2fde4 Mon Sep 17 00:00:00 2001 From: "Brian K. White" <54458165+bkw777@users.noreply.github.com> Date: Sun, 21 Aug 2022 15:43:30 -0400 Subject: [PATCH 173/567] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 327eeb4e..da5ec795 100644 --- a/README.md +++ b/README.md @@ -45,7 +45,7 @@ mainline-gtk ``` ### Help -* Secure Boot -> https://github.com/M-P-P-C/Signing-a-Linux-Kernel-for-Secure-Boot +* Secure Boot -> Possibly useful, I have not tried: https://github.com/M-P-P-C/Signing-a-Linux-Kernel-for-Secure-Boot * Kernel versions 5.15.7+ and libssl3 -> [Install libssl3](../../wiki/Install-libssl3) ### About From 3c1894452ae8a4024f97b5b0c91ca887f40809b6 Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Tue, 23 Aug 2022 18:28:16 -0400 Subject: [PATCH 174/567] 1.0.16 - don't count a new major if it has no successful builds yet --- .deb_build_number.mak | 4 +-- BRANDING.mak | 2 +- README.md | 4 --- debian/changelog | 6 ++++ po/es.po | 54 +++++++++++++++---------------- po/fr.po | 54 +++++++++++++++---------------- po/hr.po | 54 +++++++++++++++---------------- po/it.po | 54 +++++++++++++++---------------- po/ko.po | 54 +++++++++++++++---------------- po/messages.pot | 56 ++++++++++++++++---------------- po/nl.po | 54 +++++++++++++++---------------- po/pl.po | 54 +++++++++++++++---------------- po/ru.po | 54 +++++++++++++++---------------- po/sv.po | 54 +++++++++++++++---------------- po/tr.po | 64 ++++++++++++++++++++----------------- po/uk.po | 54 +++++++++++++++---------------- src/Common/LinuxKernel.vala | 34 ++++++++++++++------ 17 files changed, 365 insertions(+), 345 deletions(-) diff --git a/.deb_build_number.mak b/.deb_build_number.mak index 7262e922..051a976f 100644 --- a/.deb_build_number.mak +++ b/.deb_build_number.mak @@ -1,3 +1,3 @@ # This file is generated by Makefile "make deb_build_number" -DEB_PKG_VERSION := 1.0.15 -DEB_BUILD_NUMBER := 0002 +DEB_PKG_VERSION := 1.0.16 +DEB_BUILD_NUMBER := 0000 diff --git a/BRANDING.mak b/BRANDING.mak index 6622be71..7bdbe2ca 100644 --- a/BRANDING.mak +++ b/BRANDING.mak @@ -3,7 +3,7 @@ VERSION_MAJOR = 1 VERSION_MINOR = 0 -VERSION_MICRO = 15 +VERSION_MICRO = 16 BRANDING_SHORTNAME = mainline BRANDING_LONGNAME = Ubuntu Mainline Kernel Installer BRANDING_AUTHORNAME = Brian K. White diff --git a/README.md b/README.md index da5ec795..4651b81a 100644 --- a/README.md +++ b/README.md @@ -44,10 +44,6 @@ GUI mainline-gtk ``` -### Help -* Secure Boot -> Possibly useful, I have not tried: https://github.com/M-P-P-C/Signing-a-Linux-Kernel-for-Secure-Boot -* Kernel versions 5.15.7+ and libssl3 -> [Install libssl3](../../wiki/Install-libssl3) - ### About Written using Vala and GTK3. diff --git a/debian/changelog b/debian/changelog index 0ea63e29..eac4acf5 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +mainline (1.0.16) unstable; urgency=medium + + * Don't consider a new major kernel version to exist yet if there are no successful builds in it yet. + + -- Brian K. White Tue, 23 Aug 2022 18:07:53 -0400 + mainline (1.0.15) unstable; urgency=medium * Rename "Purge" to "Uninstall Old" diff --git a/po/es.po b/po/es.po index 597ec63e..72361bb5 100644 --- a/po/es.po +++ b/po/es.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-07-07 01:48-0400\n" +"POT-Creation-Date: 2022-08-23 18:06-0400\n" "PO-Revision-Date: 2018-01-03 02:03-0600\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish\n" @@ -21,99 +21,99 @@ msgstr "Distribución" msgid "Architecture" msgstr "Arquitectura del sistema" -#: src/Common/LinuxKernel.vala:301 +#: src/Common/LinuxKernel.vala:304 msgid "Fetching index..." msgstr "Recuperando índice..." -#: src/Common/LinuxKernel.vala:338 +#: src/Common/LinuxKernel.vala:355 msgid "Fetching index from kernel.ubuntu.com..." msgstr "Recuperando índice de kernel.ubuntu.com…" -#: src/Common/LinuxKernel.vala:594 +#: src/Common/LinuxKernel.vala:611 msgid "Could not find running kernel in list!" msgstr "¡No se pudo encontrar el núcleo en ejecución en la lista!" -#: src/Common/LinuxKernel.vala:600 +#: src/Common/LinuxKernel.vala:617 #, fuzzy msgid "Could not find any kernels to uninstall" msgstr "Seleccione los núcleos que se desinstalarán" -#: src/Common/LinuxKernel.vala:609 +#: src/Common/LinuxKernel.vala:626 #, fuzzy msgid "The following kernels will be uninstalled:" msgstr "Los siguientes kernels serán eliminados:" -#: src/Common/LinuxKernel.vala:616 +#: src/Common/LinuxKernel.vala:633 msgid "Continue ?" msgstr "¿Continuar?" -#: src/Common/LinuxKernel.vala:642 src/Console/AppConsole.vala:314 +#: src/Common/LinuxKernel.vala:659 src/Console/AppConsole.vala:314 msgid "Latest update" msgstr "" -#: src/Common/LinuxKernel.vala:653 src/Console/AppConsole.vala:321 +#: src/Common/LinuxKernel.vala:670 src/Console/AppConsole.vala:321 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:661 src/Console/AppConsole.vala:326 +#: src/Common/LinuxKernel.vala:678 src/Console/AppConsole.vala:326 #: src/Console/AppConsole.vala:387 msgid "No updates found" msgstr "No se encontró ninguna actualización" -#: src/Common/LinuxKernel.vala:671 +#: src/Common/LinuxKernel.vala:688 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "" -#: src/Common/LinuxKernel.vala:909 +#: src/Common/LinuxKernel.vala:926 msgid "Packages Available" msgstr "Paquetes disponibles" -#: src/Common/LinuxKernel.vala:917 +#: src/Common/LinuxKernel.vala:934 msgid "Packages Installed" msgstr "Paquetes instalados" -#: src/Common/LinuxKernel.vala:998 +#: src/Common/LinuxKernel.vala:1015 msgid "Available Kernels" msgstr "Núcleos disponibles" -#: src/Common/LinuxKernel.vala:1005 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1022 src/Gtk/MainWindow.vala:186 msgid "Installed" msgstr "Instalado" -#: src/Common/LinuxKernel.vala:1005 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1022 src/Gtk/MainWindow.vala:186 #: src/Gtk/MainWindow.vala:628 src/Gtk/MainWindow.vala:642 msgid "Running" msgstr "En ejecución" -#: src/Common/LinuxKernel.vala:1042 +#: src/Common/LinuxKernel.vala:1059 msgid "Downloading" msgstr "Descargando" -#: src/Common/LinuxKernel.vala:1061 +#: src/Common/LinuxKernel.vala:1078 #: src/Utility/Gtk/CustomMessageDialog.vala:148 #: src/Utility/Gtk/CustomMessageDialog.vala:152 msgid "OK" msgstr "Aceptar" -#: src/Common/LinuxKernel.vala:1066 +#: src/Common/LinuxKernel.vala:1083 msgid "ERROR" msgstr "ERROR" -#: src/Common/LinuxKernel.vala:1080 src/Gtk/MainWindow.vala:650 +#: src/Common/LinuxKernel.vala:1097 src/Gtk/MainWindow.vala:650 msgid "This kernel is already installed." msgstr "Este núcleo ya se instaló." -#: src/Common/LinuxKernel.vala:1106 +#: src/Common/LinuxKernel.vala:1123 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "Instalación finalizada. Se necesita reiniciar para utilizar el núcleo nuevo." -#: src/Common/LinuxKernel.vala:1109 +#: src/Common/LinuxKernel.vala:1126 msgid "Installation completed with errors" msgstr "Instalación finalizada con errores" -#: src/Common/LinuxKernel.vala:1124 +#: src/Common/LinuxKernel.vala:1141 #, fuzzy msgid "" "Selected kernel is currently running and cannot be un-installed.\n" @@ -122,20 +122,20 @@ msgstr "" "El núcleo seleccionado está en ejecución y no puede desinstalarse.\n" "Instale otro núcleo antes de desinstalar este." -#: src/Common/LinuxKernel.vala:1129 +#: src/Common/LinuxKernel.vala:1146 #, fuzzy msgid "Preparing to uninstall selected kernels" msgstr "Preparándose para desinstalar los núcleos seleccionados" -#: src/Common/LinuxKernel.vala:1160 src/Common/LinuxKernel.vala:1207 +#: src/Common/LinuxKernel.vala:1177 src/Common/LinuxKernel.vala:1224 msgid "Un-install completed" msgstr "Desinstalación finalizada" -#: src/Common/LinuxKernel.vala:1163 src/Common/LinuxKernel.vala:1210 +#: src/Common/LinuxKernel.vala:1180 src/Common/LinuxKernel.vala:1227 msgid "Un-install completed with errors" msgstr "Desinstalación finalizada con errores" -#: src/Common/LinuxKernel.vala:1176 +#: src/Common/LinuxKernel.vala:1193 #, fuzzy msgid "" "This kernel is currently running and cannot be un-installed.\n" diff --git a/po/fr.po b/po/fr.po index aed542c7..7adda8be 100644 --- a/po/fr.po +++ b/po/fr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-07-07 01:48-0400\n" +"POT-Creation-Date: 2022-08-23 18:06-0400\n" "PO-Revision-Date: 2018-08-05 15:50+0200\n" "Last-Translator: Yolateng0 \n" "Language-Team: French\n" @@ -21,100 +21,100 @@ msgstr "Distribution" msgid "Architecture" msgstr "Architecture" -#: src/Common/LinuxKernel.vala:301 +#: src/Common/LinuxKernel.vala:304 msgid "Fetching index..." msgstr "Récupération de l'index..." -#: src/Common/LinuxKernel.vala:338 +#: src/Common/LinuxKernel.vala:355 msgid "Fetching index from kernel.ubuntu.com..." msgstr "Récupération de l'index depuis kernel.ubuntu.com..." -#: src/Common/LinuxKernel.vala:594 +#: src/Common/LinuxKernel.vala:611 msgid "Could not find running kernel in list!" msgstr "Impossible de trouver la version courante dans la liste!" -#: src/Common/LinuxKernel.vala:600 +#: src/Common/LinuxKernel.vala:617 #, fuzzy msgid "Could not find any kernels to uninstall" msgstr "Impossible de trouver de noyaux à supprimer" -#: src/Common/LinuxKernel.vala:609 +#: src/Common/LinuxKernel.vala:626 #, fuzzy msgid "The following kernels will be uninstalled:" msgstr "Les noyaux suivants seront supprimés:" -#: src/Common/LinuxKernel.vala:616 +#: src/Common/LinuxKernel.vala:633 msgid "Continue ?" msgstr "Reprendre ?" -#: src/Common/LinuxKernel.vala:642 src/Console/AppConsole.vala:314 +#: src/Common/LinuxKernel.vala:659 src/Console/AppConsole.vala:314 msgid "Latest update" msgstr "Dernière mise à jour" -#: src/Common/LinuxKernel.vala:653 src/Console/AppConsole.vala:321 +#: src/Common/LinuxKernel.vala:670 src/Console/AppConsole.vala:321 msgid "Latest point update" msgstr "Dernière mise à jour mineure" -#: src/Common/LinuxKernel.vala:661 src/Console/AppConsole.vala:326 +#: src/Common/LinuxKernel.vala:678 src/Console/AppConsole.vala:326 #: src/Console/AppConsole.vala:387 msgid "No updates found" msgstr "Aucune mise à jour disponible" -#: src/Common/LinuxKernel.vala:671 +#: src/Common/LinuxKernel.vala:688 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Installer le noyau en version %s ? (y/n): " -#: src/Common/LinuxKernel.vala:909 +#: src/Common/LinuxKernel.vala:926 msgid "Packages Available" msgstr "Paquets Disponibles" -#: src/Common/LinuxKernel.vala:917 +#: src/Common/LinuxKernel.vala:934 msgid "Packages Installed" msgstr "Paquets Installés" -#: src/Common/LinuxKernel.vala:998 +#: src/Common/LinuxKernel.vala:1015 msgid "Available Kernels" msgstr "Noyaux Disponibles" -#: src/Common/LinuxKernel.vala:1005 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1022 src/Gtk/MainWindow.vala:186 msgid "Installed" msgstr "Installé" -#: src/Common/LinuxKernel.vala:1005 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1022 src/Gtk/MainWindow.vala:186 #: src/Gtk/MainWindow.vala:628 src/Gtk/MainWindow.vala:642 msgid "Running" msgstr "Actuel" -#: src/Common/LinuxKernel.vala:1042 +#: src/Common/LinuxKernel.vala:1059 msgid "Downloading" msgstr "Téléchargement" -#: src/Common/LinuxKernel.vala:1061 +#: src/Common/LinuxKernel.vala:1078 #: src/Utility/Gtk/CustomMessageDialog.vala:148 #: src/Utility/Gtk/CustomMessageDialog.vala:152 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:1066 +#: src/Common/LinuxKernel.vala:1083 msgid "ERROR" msgstr "ERREUR" -#: src/Common/LinuxKernel.vala:1080 src/Gtk/MainWindow.vala:650 +#: src/Common/LinuxKernel.vala:1097 src/Gtk/MainWindow.vala:650 msgid "This kernel is already installed." msgstr "Ce noyau est déjà installé." -#: src/Common/LinuxKernel.vala:1106 +#: src/Common/LinuxKernel.vala:1123 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "Installation complétée. Un redémarrage est nécessaire pour utiliser le " "nouveau noyau." -#: src/Common/LinuxKernel.vala:1109 +#: src/Common/LinuxKernel.vala:1126 msgid "Installation completed with errors" msgstr "Installation terminée avec des erreurs" -#: src/Common/LinuxKernel.vala:1124 +#: src/Common/LinuxKernel.vala:1141 #, fuzzy msgid "" "Selected kernel is currently running and cannot be un-installed.\n" @@ -123,20 +123,20 @@ msgstr "" "Ce noyau est en cours d'exécution et ne peut pas être supprimé.\n" " Installez un autre noyau avant de retirer celui-ci." -#: src/Common/LinuxKernel.vala:1129 +#: src/Common/LinuxKernel.vala:1146 #, fuzzy msgid "Preparing to uninstall selected kernels" msgstr "Préparation à la suppression des noyaux sélectionnés" -#: src/Common/LinuxKernel.vala:1160 src/Common/LinuxKernel.vala:1207 +#: src/Common/LinuxKernel.vala:1177 src/Common/LinuxKernel.vala:1224 msgid "Un-install completed" msgstr "Désinstallation complète" -#: src/Common/LinuxKernel.vala:1163 src/Common/LinuxKernel.vala:1210 +#: src/Common/LinuxKernel.vala:1180 src/Common/LinuxKernel.vala:1227 msgid "Un-install completed with errors" msgstr "Désinstallation terminée avec des erreurs" -#: src/Common/LinuxKernel.vala:1176 +#: src/Common/LinuxKernel.vala:1193 #, fuzzy msgid "" "This kernel is currently running and cannot be un-installed.\n" diff --git a/po/hr.po b/po/hr.po index 929b1c27..7934028f 100644 --- a/po/hr.po +++ b/po/hr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-07-07 01:48-0400\n" +"POT-Creation-Date: 2022-08-23 18:06-0400\n" "PO-Revision-Date: 2021-04-07 17:58+0200\n" "Last-Translator: gogo \n" "Language-Team: Croatian \n" @@ -21,100 +21,100 @@ msgstr "Distribucija" msgid "Architecture" msgstr "Arhitektura" -#: src/Common/LinuxKernel.vala:301 +#: src/Common/LinuxKernel.vala:304 msgid "Fetching index..." msgstr "Preuzimanje sadržaja..." -#: src/Common/LinuxKernel.vala:338 +#: src/Common/LinuxKernel.vala:355 msgid "Fetching index from kernel.ubuntu.com..." msgstr "Preuzimanje sadržaja sa kernel.ubuntu.com..." -#: src/Common/LinuxKernel.vala:594 +#: src/Common/LinuxKernel.vala:611 msgid "Could not find running kernel in list!" msgstr "Nemoguće je pronaći pokrenuti kernel na popisu!" -#: src/Common/LinuxKernel.vala:600 +#: src/Common/LinuxKernel.vala:617 #, fuzzy msgid "Could not find any kernels to uninstall" msgstr "Nema pronađenih kernela za uklanjanje" -#: src/Common/LinuxKernel.vala:609 +#: src/Common/LinuxKernel.vala:626 #, fuzzy msgid "The following kernels will be uninstalled:" msgstr "Sljedeći kerneli će biti uklonjeni:" -#: src/Common/LinuxKernel.vala:616 +#: src/Common/LinuxKernel.vala:633 msgid "Continue ?" msgstr "Nastavi?" -#: src/Common/LinuxKernel.vala:642 src/Console/AppConsole.vala:314 +#: src/Common/LinuxKernel.vala:659 src/Console/AppConsole.vala:314 msgid "Latest update" msgstr "Najnovija nadopuna" -#: src/Common/LinuxKernel.vala:653 src/Console/AppConsole.vala:321 +#: src/Common/LinuxKernel.vala:670 src/Console/AppConsole.vala:321 msgid "Latest point update" msgstr "Najnovija ciljana nadopuna" -#: src/Common/LinuxKernel.vala:661 src/Console/AppConsole.vala:326 +#: src/Common/LinuxKernel.vala:678 src/Console/AppConsole.vala:326 #: src/Console/AppConsole.vala:387 msgid "No updates found" msgstr "Nema pronađenih nadopuna" -#: src/Common/LinuxKernel.vala:671 +#: src/Common/LinuxKernel.vala:688 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Instaliraj kernel inačice %s ? (d/n): " -#: src/Common/LinuxKernel.vala:909 +#: src/Common/LinuxKernel.vala:926 msgid "Packages Available" msgstr "Dostupni paketi" -#: src/Common/LinuxKernel.vala:917 +#: src/Common/LinuxKernel.vala:934 msgid "Packages Installed" msgstr "Instalirani paketi" -#: src/Common/LinuxKernel.vala:998 +#: src/Common/LinuxKernel.vala:1015 msgid "Available Kernels" msgstr "Dostupni kerneli" -#: src/Common/LinuxKernel.vala:1005 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1022 src/Gtk/MainWindow.vala:186 msgid "Installed" msgstr "Instalirano" -#: src/Common/LinuxKernel.vala:1005 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1022 src/Gtk/MainWindow.vala:186 #: src/Gtk/MainWindow.vala:628 src/Gtk/MainWindow.vala:642 msgid "Running" msgstr "Pokrenuto" -#: src/Common/LinuxKernel.vala:1042 +#: src/Common/LinuxKernel.vala:1059 msgid "Downloading" msgstr "Preuzimanje" -#: src/Common/LinuxKernel.vala:1061 +#: src/Common/LinuxKernel.vala:1078 #: src/Utility/Gtk/CustomMessageDialog.vala:148 #: src/Utility/Gtk/CustomMessageDialog.vala:152 msgid "OK" msgstr "U redu" -#: src/Common/LinuxKernel.vala:1066 +#: src/Common/LinuxKernel.vala:1083 msgid "ERROR" msgstr "GREŠKA" -#: src/Common/LinuxKernel.vala:1080 src/Gtk/MainWindow.vala:650 +#: src/Common/LinuxKernel.vala:1097 src/Gtk/MainWindow.vala:650 msgid "This kernel is already installed." msgstr "Ovaj kernel je već instaliran." -#: src/Common/LinuxKernel.vala:1106 +#: src/Common/LinuxKernel.vala:1123 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "Instalacija je završena. Potrebno je ponovno pokretanje računala kako bi se " "koristio novi kernel." -#: src/Common/LinuxKernel.vala:1109 +#: src/Common/LinuxKernel.vala:1126 msgid "Installation completed with errors" msgstr "Instalacija je završena s greškama" -#: src/Common/LinuxKernel.vala:1124 +#: src/Common/LinuxKernel.vala:1141 #, fuzzy msgid "" "Selected kernel is currently running and cannot be un-installed.\n" @@ -123,20 +123,20 @@ msgstr "" "Odabrani kernel je trenutno pokernut i ne može se ukloniti.\n" " Instalirajte drugi kernel prije uklanjanja trenutnog kernela." -#: src/Common/LinuxKernel.vala:1129 +#: src/Common/LinuxKernel.vala:1146 #, fuzzy msgid "Preparing to uninstall selected kernels" msgstr "Pripremanje uklanjanja odabranih kernela" -#: src/Common/LinuxKernel.vala:1160 src/Common/LinuxKernel.vala:1207 +#: src/Common/LinuxKernel.vala:1177 src/Common/LinuxKernel.vala:1224 msgid "Un-install completed" msgstr "Deinstalacija završena" -#: src/Common/LinuxKernel.vala:1163 src/Common/LinuxKernel.vala:1210 +#: src/Common/LinuxKernel.vala:1180 src/Common/LinuxKernel.vala:1227 msgid "Un-install completed with errors" msgstr "Deinstalacija završena s greškama" -#: src/Common/LinuxKernel.vala:1176 +#: src/Common/LinuxKernel.vala:1193 #, fuzzy msgid "" "This kernel is currently running and cannot be un-installed.\n" diff --git a/po/it.po b/po/it.po index ce759153..31113eab 100644 --- a/po/it.po +++ b/po/it.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline 1.0.15\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-07-07 01:48-0400\n" +"POT-Creation-Date: 2022-08-23 18:06-0400\n" "PO-Revision-Date: 2020-08-22 15:35+0100\n" "Last-Translator: Demetrio Mendozzi\n" "Language-Team: Italian \n" @@ -25,98 +25,98 @@ msgstr "Distribuzione" msgid "Architecture" msgstr "Architettura" -#: src/Common/LinuxKernel.vala:301 +#: src/Common/LinuxKernel.vala:304 msgid "Fetching index..." msgstr "Recupero indice in corso..." -#: src/Common/LinuxKernel.vala:338 +#: src/Common/LinuxKernel.vala:355 msgid "Fetching index from kernel.ubuntu.com..." msgstr "Recupero dell'indice da kernel.ubuntu.com..." -#: src/Common/LinuxKernel.vala:594 +#: src/Common/LinuxKernel.vala:611 msgid "Could not find running kernel in list!" msgstr "Impossibile trovare il kernel in esecuzione nell'elenco!" -#: src/Common/LinuxKernel.vala:600 +#: src/Common/LinuxKernel.vala:617 msgid "Could not find any kernels to uninstall" msgstr "Impossibile trovare alcun kernel da rimuovere" -#: src/Common/LinuxKernel.vala:609 +#: src/Common/LinuxKernel.vala:626 msgid "The following kernels will be uninstalled:" msgstr "I seguenti kernel verranno rimossi:" -#: src/Common/LinuxKernel.vala:616 +#: src/Common/LinuxKernel.vala:633 msgid "Continue ?" msgstr "Continuare ?" -#: src/Common/LinuxKernel.vala:642 src/Console/AppConsole.vala:314 +#: src/Common/LinuxKernel.vala:659 src/Console/AppConsole.vala:314 msgid "Latest update" msgstr "Ultimo aggiornamento" -#: src/Common/LinuxKernel.vala:653 src/Console/AppConsole.vala:321 +#: src/Common/LinuxKernel.vala:670 src/Console/AppConsole.vala:321 msgid "Latest point update" msgstr "Ultimo aggiornamento del punto" -#: src/Common/LinuxKernel.vala:661 src/Console/AppConsole.vala:326 +#: src/Common/LinuxKernel.vala:678 src/Console/AppConsole.vala:326 #: src/Console/AppConsole.vala:387 msgid "No updates found" msgstr "Nessun aggiornamento trovato" -#: src/Common/LinuxKernel.vala:671 +#: src/Common/LinuxKernel.vala:688 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Installare la versione del kernel %s ? (y/n): " -#: src/Common/LinuxKernel.vala:909 +#: src/Common/LinuxKernel.vala:926 msgid "Packages Available" msgstr "Pacchetti disponibili" -#: src/Common/LinuxKernel.vala:917 +#: src/Common/LinuxKernel.vala:934 msgid "Packages Installed" msgstr "Pacchetti installati" -#: src/Common/LinuxKernel.vala:998 +#: src/Common/LinuxKernel.vala:1015 msgid "Available Kernels" msgstr "Kernel disponibili" -#: src/Common/LinuxKernel.vala:1005 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1022 src/Gtk/MainWindow.vala:186 msgid "Installed" msgstr "Installato" -#: src/Common/LinuxKernel.vala:1005 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1022 src/Gtk/MainWindow.vala:186 #: src/Gtk/MainWindow.vala:628 src/Gtk/MainWindow.vala:642 msgid "Running" msgstr "In esecuzione" -#: src/Common/LinuxKernel.vala:1042 +#: src/Common/LinuxKernel.vala:1059 msgid "Downloading" msgstr "Download in corso" -#: src/Common/LinuxKernel.vala:1061 +#: src/Common/LinuxKernel.vala:1078 #: src/Utility/Gtk/CustomMessageDialog.vala:148 #: src/Utility/Gtk/CustomMessageDialog.vala:152 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:1066 +#: src/Common/LinuxKernel.vala:1083 msgid "ERROR" msgstr "ERRORE" -#: src/Common/LinuxKernel.vala:1080 src/Gtk/MainWindow.vala:650 +#: src/Common/LinuxKernel.vala:1097 src/Gtk/MainWindow.vala:650 msgid "This kernel is already installed." msgstr "Questo kernel è già installato" -#: src/Common/LinuxKernel.vala:1106 +#: src/Common/LinuxKernel.vala:1123 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "Installazione completata. È necessario riavviare per utilizzare ilnuovo " "kernel." -#: src/Common/LinuxKernel.vala:1109 +#: src/Common/LinuxKernel.vala:1126 msgid "Installation completed with errors" msgstr "Installazione completata con errori" -#: src/Common/LinuxKernel.vala:1124 +#: src/Common/LinuxKernel.vala:1141 msgid "" "Selected kernel is currently running and cannot be un-installed.\n" " Install another kernel before un-installing this one." @@ -124,19 +124,19 @@ msgstr "" "Il kernel selezionato è attualmente in esecuzione e non può essere rimosso.\n" "Installa un altro kernel prima di rimuovere questo." -#: src/Common/LinuxKernel.vala:1129 +#: src/Common/LinuxKernel.vala:1146 msgid "Preparing to uninstall selected kernels" msgstr "Preparazione per rimuovere i kernel selezionati" -#: src/Common/LinuxKernel.vala:1160 src/Common/LinuxKernel.vala:1207 +#: src/Common/LinuxKernel.vala:1177 src/Common/LinuxKernel.vala:1224 msgid "Un-install completed" msgstr "Disinstallazione completata" -#: src/Common/LinuxKernel.vala:1163 src/Common/LinuxKernel.vala:1210 +#: src/Common/LinuxKernel.vala:1180 src/Common/LinuxKernel.vala:1227 msgid "Un-install completed with errors" msgstr "Disinstallazione completata con errori" -#: src/Common/LinuxKernel.vala:1176 +#: src/Common/LinuxKernel.vala:1193 msgid "" "This kernel is currently running and cannot be un-installed.\n" " Install another kernel before un-installing this one." diff --git a/po/ko.po b/po/ko.po index a93bab92..b65f511b 100644 --- a/po/ko.po +++ b/po/ko.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline 1.0.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-07-07 01:48-0400\n" +"POT-Creation-Date: 2022-08-23 18:06-0400\n" "PO-Revision-Date: 2021-06-01 14:57+0900\n" "Last-Translator: Kevin Kim \n" "Language-Team: Korean\n" @@ -26,98 +26,98 @@ msgstr "배포판" msgid "Architecture" msgstr "아키텍처" -#: src/Common/LinuxKernel.vala:301 +#: src/Common/LinuxKernel.vala:304 msgid "Fetching index..." msgstr "목록 가져오기..." -#: src/Common/LinuxKernel.vala:338 +#: src/Common/LinuxKernel.vala:355 msgid "Fetching index from kernel.ubuntu.com..." msgstr "kernel.ubuntu.com 에서 목록을 가져오는 중입니다..." -#: src/Common/LinuxKernel.vala:594 +#: src/Common/LinuxKernel.vala:611 msgid "Could not find running kernel in list!" msgstr "목록에서 사용중인 커널을 찾을 수 없습니다!" -#: src/Common/LinuxKernel.vala:600 +#: src/Common/LinuxKernel.vala:617 #, fuzzy msgid "Could not find any kernels to uninstall" msgstr "삭제할 커널을 찾을 수 없습니다" -#: src/Common/LinuxKernel.vala:609 +#: src/Common/LinuxKernel.vala:626 #, fuzzy msgid "The following kernels will be uninstalled:" msgstr "아래 커널이 삭제됩니다:" -#: src/Common/LinuxKernel.vala:616 +#: src/Common/LinuxKernel.vala:633 msgid "Continue ?" msgstr "계속하시겠습니까?" -#: src/Common/LinuxKernel.vala:642 src/Console/AppConsole.vala:314 +#: src/Common/LinuxKernel.vala:659 src/Console/AppConsole.vala:314 msgid "Latest update" msgstr "최신 업데이트" -#: src/Common/LinuxKernel.vala:653 src/Console/AppConsole.vala:321 +#: src/Common/LinuxKernel.vala:670 src/Console/AppConsole.vala:321 msgid "Latest point update" msgstr "최신 포인트 업데이트" -#: src/Common/LinuxKernel.vala:661 src/Console/AppConsole.vala:326 +#: src/Common/LinuxKernel.vala:678 src/Console/AppConsole.vala:326 #: src/Console/AppConsole.vala:387 msgid "No updates found" msgstr "업데이트를 찾을 수 없습니다" -#: src/Common/LinuxKernel.vala:671 +#: src/Common/LinuxKernel.vala:688 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "커널 %s 버전을 설치하시겠습니까? (y/n): " -#: src/Common/LinuxKernel.vala:909 +#: src/Common/LinuxKernel.vala:926 msgid "Packages Available" msgstr "설치 가능한 패키지" -#: src/Common/LinuxKernel.vala:917 +#: src/Common/LinuxKernel.vala:934 msgid "Packages Installed" msgstr "설치된 패키지" -#: src/Common/LinuxKernel.vala:998 +#: src/Common/LinuxKernel.vala:1015 msgid "Available Kernels" msgstr "설치 가능한 커널" -#: src/Common/LinuxKernel.vala:1005 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1022 src/Gtk/MainWindow.vala:186 msgid "Installed" msgstr "설치 됨" -#: src/Common/LinuxKernel.vala:1005 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1022 src/Gtk/MainWindow.vala:186 #: src/Gtk/MainWindow.vala:628 src/Gtk/MainWindow.vala:642 msgid "Running" msgstr "구동 중" -#: src/Common/LinuxKernel.vala:1042 +#: src/Common/LinuxKernel.vala:1059 msgid "Downloading" msgstr "다운로드 중" -#: src/Common/LinuxKernel.vala:1061 +#: src/Common/LinuxKernel.vala:1078 #: src/Utility/Gtk/CustomMessageDialog.vala:148 #: src/Utility/Gtk/CustomMessageDialog.vala:152 msgid "OK" msgstr "확인" -#: src/Common/LinuxKernel.vala:1066 +#: src/Common/LinuxKernel.vala:1083 msgid "ERROR" msgstr "오류" -#: src/Common/LinuxKernel.vala:1080 src/Gtk/MainWindow.vala:650 +#: src/Common/LinuxKernel.vala:1097 src/Gtk/MainWindow.vala:650 msgid "This kernel is already installed." msgstr "이 커널은 이미 설치되었습니다." -#: src/Common/LinuxKernel.vala:1106 +#: src/Common/LinuxKernel.vala:1123 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "설치가 완료되었습닌다. 새 커널을 사용하려면 시스템을 재시작 하세요." -#: src/Common/LinuxKernel.vala:1109 +#: src/Common/LinuxKernel.vala:1126 msgid "Installation completed with errors" msgstr "오류가 있으나 설치가 완료되었습니다" -#: src/Common/LinuxKernel.vala:1124 +#: src/Common/LinuxKernel.vala:1141 #, fuzzy msgid "" "Selected kernel is currently running and cannot be un-installed.\n" @@ -126,20 +126,20 @@ msgstr "" "선택된 커널은 현재 사용 중이므로 삭제할 수 없습니다.\n" " 이 커널을 삭제하려면 다른 커널을 먼저 설치하세요." -#: src/Common/LinuxKernel.vala:1129 +#: src/Common/LinuxKernel.vala:1146 #, fuzzy msgid "Preparing to uninstall selected kernels" msgstr "선택한 커널을 삭제하기 위해 준비중입니다" -#: src/Common/LinuxKernel.vala:1160 src/Common/LinuxKernel.vala:1207 +#: src/Common/LinuxKernel.vala:1177 src/Common/LinuxKernel.vala:1224 msgid "Un-install completed" msgstr "삭제가 완료되었습니다" -#: src/Common/LinuxKernel.vala:1163 src/Common/LinuxKernel.vala:1210 +#: src/Common/LinuxKernel.vala:1180 src/Common/LinuxKernel.vala:1227 msgid "Un-install completed with errors" msgstr "오류가 있으나 삭제가 완료되었습니다" -#: src/Common/LinuxKernel.vala:1176 +#: src/Common/LinuxKernel.vala:1193 #, fuzzy msgid "" "This kernel is currently running and cannot be un-installed.\n" diff --git a/po/messages.pot b/po/messages.pot index f005e28e..3ce641fe 100644 --- a/po/messages.pot +++ b/po/messages.pot @@ -6,9 +6,9 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: mainline 1.0.15\n" +"Project-Id-Version: mainline 1.0.16\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-07-07 01:48-0400\n" +"POT-Creation-Date: 2022-08-23 18:06-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -25,114 +25,114 @@ msgstr "" msgid "Architecture" msgstr "" -#: src/Common/LinuxKernel.vala:301 +#: src/Common/LinuxKernel.vala:304 msgid "Fetching index..." msgstr "" -#: src/Common/LinuxKernel.vala:338 +#: src/Common/LinuxKernel.vala:355 msgid "Fetching index from kernel.ubuntu.com..." msgstr "" -#: src/Common/LinuxKernel.vala:594 +#: src/Common/LinuxKernel.vala:611 msgid "Could not find running kernel in list!" msgstr "" -#: src/Common/LinuxKernel.vala:600 +#: src/Common/LinuxKernel.vala:617 msgid "Could not find any kernels to uninstall" msgstr "" -#: src/Common/LinuxKernel.vala:609 +#: src/Common/LinuxKernel.vala:626 msgid "The following kernels will be uninstalled:" msgstr "" -#: src/Common/LinuxKernel.vala:616 +#: src/Common/LinuxKernel.vala:633 msgid "Continue ?" msgstr "" -#: src/Common/LinuxKernel.vala:642 src/Console/AppConsole.vala:314 +#: src/Common/LinuxKernel.vala:659 src/Console/AppConsole.vala:314 msgid "Latest update" msgstr "" -#: src/Common/LinuxKernel.vala:653 src/Console/AppConsole.vala:321 +#: src/Common/LinuxKernel.vala:670 src/Console/AppConsole.vala:321 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:661 src/Console/AppConsole.vala:326 +#: src/Common/LinuxKernel.vala:678 src/Console/AppConsole.vala:326 #: src/Console/AppConsole.vala:387 msgid "No updates found" msgstr "" -#: src/Common/LinuxKernel.vala:671 +#: src/Common/LinuxKernel.vala:688 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "" -#: src/Common/LinuxKernel.vala:909 +#: src/Common/LinuxKernel.vala:926 msgid "Packages Available" msgstr "" -#: src/Common/LinuxKernel.vala:917 +#: src/Common/LinuxKernel.vala:934 msgid "Packages Installed" msgstr "" -#: src/Common/LinuxKernel.vala:998 +#: src/Common/LinuxKernel.vala:1015 msgid "Available Kernels" msgstr "" -#: src/Common/LinuxKernel.vala:1005 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1022 src/Gtk/MainWindow.vala:186 msgid "Installed" msgstr "" -#: src/Common/LinuxKernel.vala:1005 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1022 src/Gtk/MainWindow.vala:186 #: src/Gtk/MainWindow.vala:628 src/Gtk/MainWindow.vala:642 msgid "Running" msgstr "" -#: src/Common/LinuxKernel.vala:1042 +#: src/Common/LinuxKernel.vala:1059 msgid "Downloading" msgstr "" -#: src/Common/LinuxKernel.vala:1061 +#: src/Common/LinuxKernel.vala:1078 #: src/Utility/Gtk/CustomMessageDialog.vala:148 #: src/Utility/Gtk/CustomMessageDialog.vala:152 msgid "OK" msgstr "" -#: src/Common/LinuxKernel.vala:1066 +#: src/Common/LinuxKernel.vala:1083 msgid "ERROR" msgstr "" -#: src/Common/LinuxKernel.vala:1080 src/Gtk/MainWindow.vala:650 +#: src/Common/LinuxKernel.vala:1097 src/Gtk/MainWindow.vala:650 msgid "This kernel is already installed." msgstr "" -#: src/Common/LinuxKernel.vala:1106 +#: src/Common/LinuxKernel.vala:1123 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" -#: src/Common/LinuxKernel.vala:1109 +#: src/Common/LinuxKernel.vala:1126 msgid "Installation completed with errors" msgstr "" -#: src/Common/LinuxKernel.vala:1124 +#: src/Common/LinuxKernel.vala:1141 msgid "" "Selected kernel is currently running and cannot be un-installed.\n" " Install another kernel before un-installing this one." msgstr "" -#: src/Common/LinuxKernel.vala:1129 +#: src/Common/LinuxKernel.vala:1146 msgid "Preparing to uninstall selected kernels" msgstr "" -#: src/Common/LinuxKernel.vala:1160 src/Common/LinuxKernel.vala:1207 +#: src/Common/LinuxKernel.vala:1177 src/Common/LinuxKernel.vala:1224 msgid "Un-install completed" msgstr "" -#: src/Common/LinuxKernel.vala:1163 src/Common/LinuxKernel.vala:1210 +#: src/Common/LinuxKernel.vala:1180 src/Common/LinuxKernel.vala:1227 msgid "Un-install completed with errors" msgstr "" -#: src/Common/LinuxKernel.vala:1176 +#: src/Common/LinuxKernel.vala:1193 msgid "" "This kernel is currently running and cannot be un-installed.\n" " Install another kernel before un-installing this one." diff --git a/po/nl.po b/po/nl.po index 2ce1a284..88ff4d77 100644 --- a/po/nl.po +++ b/po/nl.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-07-07 01:48-0400\n" +"POT-Creation-Date: 2022-08-23 18:06-0400\n" "PO-Revision-Date: 2020-08-23 13:55+0200\n" "Last-Translator: Heimen Stoffels \n" "Language-Team: \n" @@ -21,100 +21,100 @@ msgstr "Distributie" msgid "Architecture" msgstr "Architectuur" -#: src/Common/LinuxKernel.vala:301 +#: src/Common/LinuxKernel.vala:304 msgid "Fetching index..." msgstr "Bezig met ophalen van index..." -#: src/Common/LinuxKernel.vala:338 +#: src/Common/LinuxKernel.vala:355 msgid "Fetching index from kernel.ubuntu.com..." msgstr "Bezig met ophalen van index van kernel.ubuntu.com..." -#: src/Common/LinuxKernel.vala:594 +#: src/Common/LinuxKernel.vala:611 msgid "Could not find running kernel in list!" msgstr "De in gebruik zijnde kernel staat niet op de lijst!" -#: src/Common/LinuxKernel.vala:600 +#: src/Common/LinuxKernel.vala:617 #, fuzzy msgid "Could not find any kernels to uninstall" msgstr "Er zijn geen te verwijderen kernels" -#: src/Common/LinuxKernel.vala:609 +#: src/Common/LinuxKernel.vala:626 #, fuzzy msgid "The following kernels will be uninstalled:" msgstr "De volgende kernels worden verwijderd:" -#: src/Common/LinuxKernel.vala:616 +#: src/Common/LinuxKernel.vala:633 msgid "Continue ?" msgstr "Wil je doorgaan?" -#: src/Common/LinuxKernel.vala:642 src/Console/AppConsole.vala:314 +#: src/Common/LinuxKernel.vala:659 src/Console/AppConsole.vala:314 msgid "Latest update" msgstr "Recentste update" -#: src/Common/LinuxKernel.vala:653 src/Console/AppConsole.vala:321 +#: src/Common/LinuxKernel.vala:670 src/Console/AppConsole.vala:321 msgid "Latest point update" msgstr "Recentste puntupdate" -#: src/Common/LinuxKernel.vala:661 src/Console/AppConsole.vala:326 +#: src/Common/LinuxKernel.vala:678 src/Console/AppConsole.vala:326 #: src/Console/AppConsole.vala:387 msgid "No updates found" msgstr "Geen updates gevonden" -#: src/Common/LinuxKernel.vala:671 +#: src/Common/LinuxKernel.vala:688 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Wil je versie %s installeren? (j/n): " -#: src/Common/LinuxKernel.vala:909 +#: src/Common/LinuxKernel.vala:926 msgid "Packages Available" msgstr "Beschikbare pakketten" -#: src/Common/LinuxKernel.vala:917 +#: src/Common/LinuxKernel.vala:934 msgid "Packages Installed" msgstr "Geïnstalleerde pakketten" -#: src/Common/LinuxKernel.vala:998 +#: src/Common/LinuxKernel.vala:1015 msgid "Available Kernels" msgstr "Beschikbare kernels" -#: src/Common/LinuxKernel.vala:1005 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1022 src/Gtk/MainWindow.vala:186 msgid "Installed" msgstr "Geïnstalleerd" -#: src/Common/LinuxKernel.vala:1005 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1022 src/Gtk/MainWindow.vala:186 #: src/Gtk/MainWindow.vala:628 src/Gtk/MainWindow.vala:642 msgid "Running" msgstr "In gebruik" -#: src/Common/LinuxKernel.vala:1042 +#: src/Common/LinuxKernel.vala:1059 msgid "Downloading" msgstr "Bezig met downloaden" -#: src/Common/LinuxKernel.vala:1061 +#: src/Common/LinuxKernel.vala:1078 #: src/Utility/Gtk/CustomMessageDialog.vala:148 #: src/Utility/Gtk/CustomMessageDialog.vala:152 msgid "OK" msgstr "Oké" -#: src/Common/LinuxKernel.vala:1066 +#: src/Common/LinuxKernel.vala:1083 msgid "ERROR" msgstr "FOUT" -#: src/Common/LinuxKernel.vala:1080 src/Gtk/MainWindow.vala:650 +#: src/Common/LinuxKernel.vala:1097 src/Gtk/MainWindow.vala:650 msgid "This kernel is already installed." msgstr "Deze kernel is al geïnstalleerd." -#: src/Common/LinuxKernel.vala:1106 +#: src/Common/LinuxKernel.vala:1123 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "De installatie is voltooid. Herstart de computer om de nieuwe kernel te " "gebruiken." -#: src/Common/LinuxKernel.vala:1109 +#: src/Common/LinuxKernel.vala:1126 msgid "Installation completed with errors" msgstr "De installatie is foutloos voltooid" -#: src/Common/LinuxKernel.vala:1124 +#: src/Common/LinuxKernel.vala:1141 #, fuzzy msgid "" "Selected kernel is currently running and cannot be un-installed.\n" @@ -124,20 +124,20 @@ msgstr "" "verwijderd.\n" " Installeer eerst een andere kernel." -#: src/Common/LinuxKernel.vala:1129 +#: src/Common/LinuxKernel.vala:1146 #, fuzzy msgid "Preparing to uninstall selected kernels" msgstr "Bezig met voorbereiden van verwijdering" -#: src/Common/LinuxKernel.vala:1160 src/Common/LinuxKernel.vala:1207 +#: src/Common/LinuxKernel.vala:1177 src/Common/LinuxKernel.vala:1224 msgid "Un-install completed" msgstr "Deïnstalleren voltooid" -#: src/Common/LinuxKernel.vala:1163 src/Common/LinuxKernel.vala:1210 +#: src/Common/LinuxKernel.vala:1180 src/Common/LinuxKernel.vala:1227 msgid "Un-install completed with errors" msgstr "Deïnstalleren voltooid, maar met fouten" -#: src/Common/LinuxKernel.vala:1176 +#: src/Common/LinuxKernel.vala:1193 #, fuzzy msgid "" "This kernel is currently running and cannot be un-installed.\n" diff --git a/po/pl.po b/po/pl.po index 7a3ee90c..1b726d40 100644 --- a/po/pl.po +++ b/po/pl.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-07-07 01:48-0400\n" +"POT-Creation-Date: 2022-08-23 18:06-0400\n" "PO-Revision-Date: 2021-09-17 10:29+0200\n" "Last-Translator: Viktor Sokyrko \n" "Language-Team: Polish\n" @@ -21,98 +21,98 @@ msgstr "Dystrybucja" msgid "Architecture" msgstr "Architektura systemu" -#: src/Common/LinuxKernel.vala:301 +#: src/Common/LinuxKernel.vala:304 msgid "Fetching index..." msgstr "Pobieranie indeksu..." -#: src/Common/LinuxKernel.vala:338 +#: src/Common/LinuxKernel.vala:355 msgid "Fetching index from kernel.ubuntu.com..." msgstr "Pobieranie indeksu z kernel.ubuntu.com..." -#: src/Common/LinuxKernel.vala:594 +#: src/Common/LinuxKernel.vala:611 msgid "Could not find running kernel in list!" msgstr "Nie można znaleźć uruchomionego jądra na liście!" -#: src/Common/LinuxKernel.vala:600 +#: src/Common/LinuxKernel.vala:617 msgid "Could not find any kernels to uninstall" msgstr "Nie udało się odnaleźć żadnych jąder do odinstalowania" -#: src/Common/LinuxKernel.vala:609 +#: src/Common/LinuxKernel.vala:626 msgid "The following kernels will be uninstalled:" msgstr "Następujące jądra zostaną odinstalowane:" -#: src/Common/LinuxKernel.vala:616 +#: src/Common/LinuxKernel.vala:633 msgid "Continue ?" msgstr "Kontynuowac?" -#: src/Common/LinuxKernel.vala:642 src/Console/AppConsole.vala:314 +#: src/Common/LinuxKernel.vala:659 src/Console/AppConsole.vala:314 msgid "Latest update" msgstr "Najnowsza aktualizacja" -#: src/Common/LinuxKernel.vala:653 src/Console/AppConsole.vala:321 +#: src/Common/LinuxKernel.vala:670 src/Console/AppConsole.vala:321 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:661 src/Console/AppConsole.vala:326 +#: src/Common/LinuxKernel.vala:678 src/Console/AppConsole.vala:326 #: src/Console/AppConsole.vala:387 msgid "No updates found" msgstr "Nie znaleziono aktualizacji" -#: src/Common/LinuxKernel.vala:671 +#: src/Common/LinuxKernel.vala:688 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Instaluj wersję jądra %s ? (t/n): " -#: src/Common/LinuxKernel.vala:909 +#: src/Common/LinuxKernel.vala:926 msgid "Packages Available" msgstr "Dostępne pakiety" -#: src/Common/LinuxKernel.vala:917 +#: src/Common/LinuxKernel.vala:934 msgid "Packages Installed" msgstr "Pakiety zainstalowane" -#: src/Common/LinuxKernel.vala:998 +#: src/Common/LinuxKernel.vala:1015 msgid "Available Kernels" msgstr "Dostępne jądra" -#: src/Common/LinuxKernel.vala:1005 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1022 src/Gtk/MainWindow.vala:186 msgid "Installed" msgstr "Zainstalowany" -#: src/Common/LinuxKernel.vala:1005 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1022 src/Gtk/MainWindow.vala:186 #: src/Gtk/MainWindow.vala:628 src/Gtk/MainWindow.vala:642 msgid "Running" msgstr "Uruchomiony" -#: src/Common/LinuxKernel.vala:1042 +#: src/Common/LinuxKernel.vala:1059 msgid "Downloading" msgstr "Pobieranie" -#: src/Common/LinuxKernel.vala:1061 +#: src/Common/LinuxKernel.vala:1078 #: src/Utility/Gtk/CustomMessageDialog.vala:148 #: src/Utility/Gtk/CustomMessageDialog.vala:152 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:1066 +#: src/Common/LinuxKernel.vala:1083 msgid "ERROR" msgstr "BŁĄD" -#: src/Common/LinuxKernel.vala:1080 src/Gtk/MainWindow.vala:650 +#: src/Common/LinuxKernel.vala:1097 src/Gtk/MainWindow.vala:650 msgid "This kernel is already installed." msgstr "To jądro jest już zainstalowane." -#: src/Common/LinuxKernel.vala:1106 +#: src/Common/LinuxKernel.vala:1123 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "Instalacja zakończona. Aby korzystać z nowego jądra, konieczne jest ponowne " "uruchomienie." -#: src/Common/LinuxKernel.vala:1109 +#: src/Common/LinuxKernel.vala:1126 msgid "Installation completed with errors" msgstr "Instalacja zakończona z błędami" -#: src/Common/LinuxKernel.vala:1124 +#: src/Common/LinuxKernel.vala:1141 msgid "" "Selected kernel is currently running and cannot be un-installed.\n" " Install another kernel before un-installing this one." @@ -120,19 +120,19 @@ msgstr "" "Wybrane jądro aktualnie działa i nie może zostać odinstalowane.\n" " Zainstaluj inne jądro przed odinstalowaniem tego." -#: src/Common/LinuxKernel.vala:1129 +#: src/Common/LinuxKernel.vala:1146 msgid "Preparing to uninstall selected kernels" msgstr "Przygotowanie do odinstalowania wybranych jąder" -#: src/Common/LinuxKernel.vala:1160 src/Common/LinuxKernel.vala:1207 +#: src/Common/LinuxKernel.vala:1177 src/Common/LinuxKernel.vala:1224 msgid "Un-install completed" msgstr "Deinstalacja zakończona" -#: src/Common/LinuxKernel.vala:1163 src/Common/LinuxKernel.vala:1210 +#: src/Common/LinuxKernel.vala:1180 src/Common/LinuxKernel.vala:1227 msgid "Un-install completed with errors" msgstr "De-instalacja zakończona z błędami" -#: src/Common/LinuxKernel.vala:1176 +#: src/Common/LinuxKernel.vala:1193 msgid "" "This kernel is currently running and cannot be un-installed.\n" " Install another kernel before un-installing this one." diff --git a/po/ru.po b/po/ru.po index 94ec6cf5..25caa161 100644 --- a/po/ru.po +++ b/po/ru.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-07-07 01:48-0400\n" +"POT-Creation-Date: 2022-08-23 18:06-0400\n" "PO-Revision-Date: 2022-02-24 16:05+0300\n" "Last-Translator: Faust3000 (Original) | Danik2343 (Update Transaltion) " "\n" @@ -22,98 +22,98 @@ msgstr "Дистрибутив" msgid "Architecture" msgstr "Архитектура" -#: src/Common/LinuxKernel.vala:301 +#: src/Common/LinuxKernel.vala:304 msgid "Fetching index..." msgstr "Получение сведений..." -#: src/Common/LinuxKernel.vala:338 +#: src/Common/LinuxKernel.vala:355 msgid "Fetching index from kernel.ubuntu.com..." msgstr "Получение сведений с kernel.ubuntu.com..." -#: src/Common/LinuxKernel.vala:594 +#: src/Common/LinuxKernel.vala:611 msgid "Could not find running kernel in list!" msgstr "Не удалось найти запущенное ядро в списке!" -#: src/Common/LinuxKernel.vala:600 +#: src/Common/LinuxKernel.vala:617 msgid "Could not find any kernels to uninstall" msgstr "Не удалось найти ядра для деинсталляции" -#: src/Common/LinuxKernel.vala:609 +#: src/Common/LinuxKernel.vala:626 msgid "The following kernels will be uninstalled:" msgstr "Следующие ядра будут деинсталлированы:" -#: src/Common/LinuxKernel.vala:616 +#: src/Common/LinuxKernel.vala:633 msgid "Continue ?" msgstr "Продолжить ?" -#: src/Common/LinuxKernel.vala:642 src/Console/AppConsole.vala:314 +#: src/Common/LinuxKernel.vala:659 src/Console/AppConsole.vala:314 msgid "Latest update" msgstr "Последнее обновление" -#: src/Common/LinuxKernel.vala:653 src/Console/AppConsole.vala:321 +#: src/Common/LinuxKernel.vala:670 src/Console/AppConsole.vala:321 msgid "Latest point update" msgstr "Последнее обновление пунктов" -#: src/Common/LinuxKernel.vala:661 src/Console/AppConsole.vala:326 +#: src/Common/LinuxKernel.vala:678 src/Console/AppConsole.vala:326 #: src/Console/AppConsole.vala:387 msgid "No updates found" msgstr "Обновлений не найдено" -#: src/Common/LinuxKernel.vala:671 +#: src/Common/LinuxKernel.vala:688 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Установить версию ядра %s ? (y/n): " -#: src/Common/LinuxKernel.vala:909 +#: src/Common/LinuxKernel.vala:926 msgid "Packages Available" msgstr "Доступные пакеты" -#: src/Common/LinuxKernel.vala:917 +#: src/Common/LinuxKernel.vala:934 msgid "Packages Installed" msgstr "Установленные пакеты" -#: src/Common/LinuxKernel.vala:998 +#: src/Common/LinuxKernel.vala:1015 msgid "Available Kernels" msgstr "Доступные ядра" -#: src/Common/LinuxKernel.vala:1005 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1022 src/Gtk/MainWindow.vala:186 msgid "Installed" msgstr "Установлено" -#: src/Common/LinuxKernel.vala:1005 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1022 src/Gtk/MainWindow.vala:186 #: src/Gtk/MainWindow.vala:628 src/Gtk/MainWindow.vala:642 msgid "Running" msgstr "Используется" -#: src/Common/LinuxKernel.vala:1042 +#: src/Common/LinuxKernel.vala:1059 msgid "Downloading" msgstr "Загрузка" -#: src/Common/LinuxKernel.vala:1061 +#: src/Common/LinuxKernel.vala:1078 #: src/Utility/Gtk/CustomMessageDialog.vala:148 #: src/Utility/Gtk/CustomMessageDialog.vala:152 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:1066 +#: src/Common/LinuxKernel.vala:1083 msgid "ERROR" msgstr "ОШИБКА" -#: src/Common/LinuxKernel.vala:1080 src/Gtk/MainWindow.vala:650 +#: src/Common/LinuxKernel.vala:1097 src/Gtk/MainWindow.vala:650 msgid "This kernel is already installed." msgstr "Это ядро уже установлено." -#: src/Common/LinuxKernel.vala:1106 +#: src/Common/LinuxKernel.vala:1123 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "Установка завершена. Обязательно выполните перезагрузку, чтобы использовать " "новое ядро." -#: src/Common/LinuxKernel.vala:1109 +#: src/Common/LinuxKernel.vala:1126 msgid "Installation completed with errors" msgstr "Установка завершена с ошибками" -#: src/Common/LinuxKernel.vala:1124 +#: src/Common/LinuxKernel.vala:1141 msgid "" "Selected kernel is currently running and cannot be un-installed.\n" " Install another kernel before un-installing this one." @@ -121,19 +121,19 @@ msgstr "" "Это ядро в настоящий момент работает и не может быть удалено.\n" " Установите другое ядро, прежде чем удалять его." -#: src/Common/LinuxKernel.vala:1129 +#: src/Common/LinuxKernel.vala:1146 msgid "Preparing to uninstall selected kernels" msgstr "Подготовка к деинсталляции выбранных ядер" -#: src/Common/LinuxKernel.vala:1160 src/Common/LinuxKernel.vala:1207 +#: src/Common/LinuxKernel.vala:1177 src/Common/LinuxKernel.vala:1224 msgid "Un-install completed" msgstr "Удаление завершено" -#: src/Common/LinuxKernel.vala:1163 src/Common/LinuxKernel.vala:1210 +#: src/Common/LinuxKernel.vala:1180 src/Common/LinuxKernel.vala:1227 msgid "Un-install completed with errors" msgstr "Удаление завершено с ошибками" -#: src/Common/LinuxKernel.vala:1176 +#: src/Common/LinuxKernel.vala:1193 msgid "" "This kernel is currently running and cannot be un-installed.\n" " Install another kernel before un-installing this one." diff --git a/po/sv.po b/po/sv.po index 81760ab1..66d0a73f 100644 --- a/po/sv.po +++ b/po/sv.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-07-07 01:48-0400\n" +"POT-Creation-Date: 2022-08-23 18:06-0400\n" "PO-Revision-Date: 2018-01-13 16:56+0100\n" "Last-Translator: Åke Engelbrektson \n" "Language-Team: Svenska Språkfiler \n" @@ -22,100 +22,100 @@ msgstr "Distribution" msgid "Architecture" msgstr "Systemarkitektur" -#: src/Common/LinuxKernel.vala:301 +#: src/Common/LinuxKernel.vala:304 #, fuzzy msgid "Fetching index..." msgstr "Hämtar index för" -#: src/Common/LinuxKernel.vala:338 +#: src/Common/LinuxKernel.vala:355 msgid "Fetching index from kernel.ubuntu.com..." msgstr "Hämtar index från kernel.ubuntu.com ..." -#: src/Common/LinuxKernel.vala:594 +#: src/Common/LinuxKernel.vala:611 #, fuzzy msgid "Could not find running kernel in list!" msgstr "Kunde inte hitta efterfrågad version" -#: src/Common/LinuxKernel.vala:600 +#: src/Common/LinuxKernel.vala:617 #, fuzzy msgid "Could not find any kernels to uninstall" msgstr "Välj kärnor för borttagning" -#: src/Common/LinuxKernel.vala:609 +#: src/Common/LinuxKernel.vala:626 #, fuzzy msgid "The following kernels will be uninstalled:" msgstr "Denna kärna är redan installerad" -#: src/Common/LinuxKernel.vala:616 +#: src/Common/LinuxKernel.vala:633 msgid "Continue ?" msgstr "" -#: src/Common/LinuxKernel.vala:642 src/Console/AppConsole.vala:314 +#: src/Common/LinuxKernel.vala:659 src/Console/AppConsole.vala:314 msgid "Latest update" msgstr "" -#: src/Common/LinuxKernel.vala:653 src/Console/AppConsole.vala:321 +#: src/Common/LinuxKernel.vala:670 src/Console/AppConsole.vala:321 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:661 src/Console/AppConsole.vala:326 +#: src/Common/LinuxKernel.vala:678 src/Console/AppConsole.vala:326 #: src/Console/AppConsole.vala:387 msgid "No updates found" msgstr "Inga uppdateringar hittades" -#: src/Common/LinuxKernel.vala:671 +#: src/Common/LinuxKernel.vala:688 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "" -#: src/Common/LinuxKernel.vala:909 +#: src/Common/LinuxKernel.vala:926 msgid "Packages Available" msgstr "Tillgängliga paket" -#: src/Common/LinuxKernel.vala:917 +#: src/Common/LinuxKernel.vala:934 msgid "Packages Installed" msgstr "Installerade paket" -#: src/Common/LinuxKernel.vala:998 +#: src/Common/LinuxKernel.vala:1015 msgid "Available Kernels" msgstr "Tillgängliga kärnor" -#: src/Common/LinuxKernel.vala:1005 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1022 src/Gtk/MainWindow.vala:186 msgid "Installed" msgstr "Installerad" -#: src/Common/LinuxKernel.vala:1005 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1022 src/Gtk/MainWindow.vala:186 #: src/Gtk/MainWindow.vala:628 src/Gtk/MainWindow.vala:642 msgid "Running" msgstr "Körs" -#: src/Common/LinuxKernel.vala:1042 +#: src/Common/LinuxKernel.vala:1059 msgid "Downloading" msgstr "Laddar ner" -#: src/Common/LinuxKernel.vala:1061 +#: src/Common/LinuxKernel.vala:1078 #: src/Utility/Gtk/CustomMessageDialog.vala:148 #: src/Utility/Gtk/CustomMessageDialog.vala:152 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:1066 +#: src/Common/LinuxKernel.vala:1083 msgid "ERROR" msgstr "FEL" -#: src/Common/LinuxKernel.vala:1080 src/Gtk/MainWindow.vala:650 +#: src/Common/LinuxKernel.vala:1097 src/Gtk/MainWindow.vala:650 msgid "This kernel is already installed." msgstr "Denna kärna är redan installerad" -#: src/Common/LinuxKernel.vala:1106 +#: src/Common/LinuxKernel.vala:1123 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "Installation slutförd. Omstart krävs för att tillämpa den nya kärnan." -#: src/Common/LinuxKernel.vala:1109 +#: src/Common/LinuxKernel.vala:1126 msgid "Installation completed with errors" msgstr "Installation slutförd med fel" -#: src/Common/LinuxKernel.vala:1124 +#: src/Common/LinuxKernel.vala:1141 #, fuzzy msgid "" "Selected kernel is currently running and cannot be un-installed.\n" @@ -124,20 +124,20 @@ msgstr "" "Denna kärna används för tillfället och kan inte tas bort.\n" "Installera en annan kärna innan du tar bort den här." -#: src/Common/LinuxKernel.vala:1129 +#: src/Common/LinuxKernel.vala:1146 #, fuzzy msgid "Preparing to uninstall selected kernels" msgstr "Förbereder borttagning av markerade kärnor" -#: src/Common/LinuxKernel.vala:1160 src/Common/LinuxKernel.vala:1207 +#: src/Common/LinuxKernel.vala:1177 src/Common/LinuxKernel.vala:1224 msgid "Un-install completed" msgstr "Avinstallation slutförd" -#: src/Common/LinuxKernel.vala:1163 src/Common/LinuxKernel.vala:1210 +#: src/Common/LinuxKernel.vala:1180 src/Common/LinuxKernel.vala:1227 msgid "Un-install completed with errors" msgstr "Avinstallation slutförd med fel" -#: src/Common/LinuxKernel.vala:1176 +#: src/Common/LinuxKernel.vala:1193 #, fuzzy msgid "" "This kernel is currently running and cannot be un-installed.\n" diff --git a/po/tr.po b/po/tr.po index ca15174b..3f0c9304 100644 --- a/po/tr.po +++ b/po/tr.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-08-06 16:01+0300\n" +"POT-Creation-Date: 2022-08-23 18:06-0400\n" "PO-Revision-Date: 2022-08-06 16:48+0300\n" "Last-Translator: Sabri Ünal \n" "Language-Team: Türkçe \n" @@ -28,97 +28,98 @@ msgstr "Dağıtım" msgid "Architecture" msgstr "Sistem mimarisi" -#: src/Common/LinuxKernel.vala:301 +#: src/Common/LinuxKernel.vala:304 msgid "Fetching index..." msgstr "İçerik dizini alınıyor..." -#: src/Common/LinuxKernel.vala:338 +#: src/Common/LinuxKernel.vala:355 msgid "Fetching index from kernel.ubuntu.com..." msgstr "İçerik dizini kernel.ubuntu.com alanından alınıyor..." -#: src/Common/LinuxKernel.vala:594 +#: src/Common/LinuxKernel.vala:611 msgid "Could not find running kernel in list!" msgstr "Çalışan sürüm listede bulunamadı!" -#: src/Common/LinuxKernel.vala:600 +#: src/Common/LinuxKernel.vala:617 msgid "Could not find any kernels to uninstall" msgstr "Kaldırılacak çekirdek bulunamadı" -#: src/Common/LinuxKernel.vala:609 +#: src/Common/LinuxKernel.vala:626 msgid "The following kernels will be uninstalled:" msgstr "Aşağıdaki çekirdekler kaldırılacak:" -#: src/Common/LinuxKernel.vala:616 +#: src/Common/LinuxKernel.vala:633 msgid "Continue ?" msgstr "Devam edilsin mi?" -#: src/Common/LinuxKernel.vala:642 src/Console/AppConsole.vala:314 +#: src/Common/LinuxKernel.vala:659 src/Console/AppConsole.vala:314 msgid "Latest update" msgstr "Son güncelleme" # Point burada point release anlamında kullanılıyor. Örneğin 5.10.x sayısının en sonundaki x rakamı point release/nokta sürüm oluyor. -#: src/Common/LinuxKernel.vala:653 src/Console/AppConsole.vala:321 +#: src/Common/LinuxKernel.vala:670 src/Console/AppConsole.vala:321 msgid "Latest point update" msgstr "Son nokta güncellemesi" -#: src/Common/LinuxKernel.vala:661 src/Console/AppConsole.vala:326 +#: src/Common/LinuxKernel.vala:678 src/Console/AppConsole.vala:326 #: src/Console/AppConsole.vala:387 msgid "No updates found" msgstr "Güncelleme bulunamadı" -#: src/Common/LinuxKernel.vala:671 +#: src/Common/LinuxKernel.vala:688 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Linux Çekirdek Sürümü %s Kurulsun mu? (e/h): " -#: src/Common/LinuxKernel.vala:909 +#: src/Common/LinuxKernel.vala:926 msgid "Packages Available" msgstr "Mevcut Paketler" -#: src/Common/LinuxKernel.vala:917 +#: src/Common/LinuxKernel.vala:934 msgid "Packages Installed" msgstr "Kurulu Paketler" -#: src/Common/LinuxKernel.vala:998 +#: src/Common/LinuxKernel.vala:1015 msgid "Available Kernels" msgstr "Mevcut Çekirdekler" -#: src/Common/LinuxKernel.vala:1005 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1022 src/Gtk/MainWindow.vala:186 msgid "Installed" msgstr "Kurulu" -#: src/Common/LinuxKernel.vala:1005 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1022 src/Gtk/MainWindow.vala:186 #: src/Gtk/MainWindow.vala:628 src/Gtk/MainWindow.vala:642 msgid "Running" msgstr "Çalışıyor" -#: src/Common/LinuxKernel.vala:1042 +#: src/Common/LinuxKernel.vala:1059 msgid "Downloading" msgstr "İndiriliyor" -#: src/Common/LinuxKernel.vala:1061 +#: src/Common/LinuxKernel.vala:1078 #: src/Utility/Gtk/CustomMessageDialog.vala:148 #: src/Utility/Gtk/CustomMessageDialog.vala:152 msgid "OK" msgstr "Tamam" -#: src/Common/LinuxKernel.vala:1066 +#: src/Common/LinuxKernel.vala:1083 msgid "ERROR" msgstr "HATA" -#: src/Common/LinuxKernel.vala:1080 src/Gtk/MainWindow.vala:650 +#: src/Common/LinuxKernel.vala:1097 src/Gtk/MainWindow.vala:650 msgid "This kernel is already installed." msgstr "Bu çekirdek zaten kurulu." -#: src/Common/LinuxKernel.vala:1106 +#: src/Common/LinuxKernel.vala:1123 msgid "Installation completed. A reboot is required to use the new kernel." -msgstr "Kurulum tamamlandı. Yeni çekirdeği kullanmak için yeniden başlatma gerekiyor." +msgstr "" +"Kurulum tamamlandı. Yeni çekirdeği kullanmak için yeniden başlatma gerekiyor." -#: src/Common/LinuxKernel.vala:1109 +#: src/Common/LinuxKernel.vala:1126 msgid "Installation completed with errors" msgstr "Kurulum hatalarla tamamlandı" -#: src/Common/LinuxKernel.vala:1124 +#: src/Common/LinuxKernel.vala:1141 msgid "" "Selected kernel is currently running and cannot be un-installed.\n" " Install another kernel before un-installing this one." @@ -126,19 +127,19 @@ msgstr "" "Seçilen çekirdek şu anda çalışıyor ve kaldırılamaz.\n" " Bunu kaldırmadan önce başka bir çekirdek yükleyin." -#: src/Common/LinuxKernel.vala:1129 +#: src/Common/LinuxKernel.vala:1146 msgid "Preparing to uninstall selected kernels" msgstr "Seçilen çekirdekleri kaldırmaya hazırlanıyor" -#: src/Common/LinuxKernel.vala:1160 src/Common/LinuxKernel.vala:1207 +#: src/Common/LinuxKernel.vala:1177 src/Common/LinuxKernel.vala:1224 msgid "Un-install completed" msgstr "Kaldırma tamamlandı" -#: src/Common/LinuxKernel.vala:1163 src/Common/LinuxKernel.vala:1210 +#: src/Common/LinuxKernel.vala:1180 src/Common/LinuxKernel.vala:1227 msgid "Un-install completed with errors" msgstr "Kaldırma hatalarla tamamlandı" -#: src/Common/LinuxKernel.vala:1176 +#: src/Common/LinuxKernel.vala:1193 msgid "" "This kernel is currently running and cannot be un-installed.\n" " Install another kernel before un-installing this one." @@ -240,8 +241,11 @@ msgid "A version string taken from the output of --list" msgstr "--list çıktısından alınan sürüm dizgesi" #: src/Console/AppConsole.vala:88 -msgid "One or more version strings (comma-separated) taken from the output of --list" -msgstr "--list çıktısından alınan bir veya daha fazla sürüm dizgesi (virgülle ayrılmış)" +msgid "" +"One or more version strings (comma-separated) taken from the output of --list" +msgstr "" +"--list çıktısından alınan bir veya daha fazla sürüm dizgesi (virgülle " +"ayrılmış)" #: src/Console/AppConsole.vala:169 src/Gtk/AppGtk.vala:136 msgid "Unknown option" diff --git a/po/uk.po b/po/uk.po index 778d32e9..75ec93c2 100644 --- a/po/uk.po +++ b/po/uk.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-07-07 01:48-0400\n" +"POT-Creation-Date: 2022-08-23 18:06-0400\n" "PO-Revision-Date: 2019-07-25 11:00+0300\n" "Last-Translator: Serhii Golovko \n" "Language-Team: Ukranian \n" @@ -21,99 +21,99 @@ msgstr "Дистрибутив" msgid "Architecture" msgstr "Системна архитектура" -#: src/Common/LinuxKernel.vala:301 +#: src/Common/LinuxKernel.vala:304 msgid "Fetching index..." msgstr "Отримання індекса ..." -#: src/Common/LinuxKernel.vala:338 +#: src/Common/LinuxKernel.vala:355 msgid "Fetching index from kernel.ubuntu.com..." msgstr "Отримання індекса з kernel.ubuntu.com..." -#: src/Common/LinuxKernel.vala:594 +#: src/Common/LinuxKernel.vala:611 msgid "Could not find running kernel in list!" msgstr "Не вдалося знайти запущене ядро у списку!" -#: src/Common/LinuxKernel.vala:600 +#: src/Common/LinuxKernel.vala:617 #, fuzzy msgid "Could not find any kernels to uninstall" msgstr "Не вдалося знайти жодне ядро для вилучення" -#: src/Common/LinuxKernel.vala:609 +#: src/Common/LinuxKernel.vala:626 #, fuzzy msgid "The following kernels will be uninstalled:" msgstr "Наступні ядра будуть видалені:" -#: src/Common/LinuxKernel.vala:616 +#: src/Common/LinuxKernel.vala:633 msgid "Continue ?" msgstr "Продовжувати ?" -#: src/Common/LinuxKernel.vala:642 src/Console/AppConsole.vala:314 +#: src/Common/LinuxKernel.vala:659 src/Console/AppConsole.vala:314 msgid "Latest update" msgstr "Останнє оновлення" -#: src/Common/LinuxKernel.vala:653 src/Console/AppConsole.vala:321 +#: src/Common/LinuxKernel.vala:670 src/Console/AppConsole.vala:321 msgid "Latest point update" msgstr "Остання точка оновлення" -#: src/Common/LinuxKernel.vala:661 src/Console/AppConsole.vala:326 +#: src/Common/LinuxKernel.vala:678 src/Console/AppConsole.vala:326 #: src/Console/AppConsole.vala:387 msgid "No updates found" msgstr "Оновлень не знайдено" -#: src/Common/LinuxKernel.vala:671 +#: src/Common/LinuxKernel.vala:688 #, fuzzy, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Встановити Ядро Версії %s ? (так/ні): " -#: src/Common/LinuxKernel.vala:909 +#: src/Common/LinuxKernel.vala:926 msgid "Packages Available" msgstr "Доступні пакети" -#: src/Common/LinuxKernel.vala:917 +#: src/Common/LinuxKernel.vala:934 msgid "Packages Installed" msgstr "Встановлені пакети" -#: src/Common/LinuxKernel.vala:998 +#: src/Common/LinuxKernel.vala:1015 msgid "Available Kernels" msgstr "Доступні ядра" -#: src/Common/LinuxKernel.vala:1005 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1022 src/Gtk/MainWindow.vala:186 msgid "Installed" msgstr "Встановлено" -#: src/Common/LinuxKernel.vala:1005 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1022 src/Gtk/MainWindow.vala:186 #: src/Gtk/MainWindow.vala:628 src/Gtk/MainWindow.vala:642 msgid "Running" msgstr "Використовується" -#: src/Common/LinuxKernel.vala:1042 +#: src/Common/LinuxKernel.vala:1059 msgid "Downloading" msgstr "Завантаження" -#: src/Common/LinuxKernel.vala:1061 +#: src/Common/LinuxKernel.vala:1078 #: src/Utility/Gtk/CustomMessageDialog.vala:148 #: src/Utility/Gtk/CustomMessageDialog.vala:152 msgid "OK" msgstr "Добре" -#: src/Common/LinuxKernel.vala:1066 +#: src/Common/LinuxKernel.vala:1083 msgid "ERROR" msgstr "ПОМИЛКА" -#: src/Common/LinuxKernel.vala:1080 src/Gtk/MainWindow.vala:650 +#: src/Common/LinuxKernel.vala:1097 src/Gtk/MainWindow.vala:650 msgid "This kernel is already installed." msgstr "Це ядро вже встановлено." -#: src/Common/LinuxKernel.vala:1106 +#: src/Common/LinuxKernel.vala:1123 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "Установка завершена. Для використання нового ядра потрібна перезавантаження." -#: src/Common/LinuxKernel.vala:1109 +#: src/Common/LinuxKernel.vala:1126 msgid "Installation completed with errors" msgstr "Установка завершена з помилками" -#: src/Common/LinuxKernel.vala:1124 +#: src/Common/LinuxKernel.vala:1141 #, fuzzy msgid "" "Selected kernel is currently running and cannot be un-installed.\n" @@ -122,20 +122,20 @@ msgstr "" "Це ядро зараз працює і не може бути видалено. \n" "Встановіть інше ядро, перш ніж видаляти його." -#: src/Common/LinuxKernel.vala:1129 +#: src/Common/LinuxKernel.vala:1146 #, fuzzy msgid "Preparing to uninstall selected kernels" msgstr "Підготовка до видалення вибраних ядер" -#: src/Common/LinuxKernel.vala:1160 src/Common/LinuxKernel.vala:1207 +#: src/Common/LinuxKernel.vala:1177 src/Common/LinuxKernel.vala:1224 msgid "Un-install completed" msgstr "Видалення завершено" -#: src/Common/LinuxKernel.vala:1163 src/Common/LinuxKernel.vala:1210 +#: src/Common/LinuxKernel.vala:1180 src/Common/LinuxKernel.vala:1227 msgid "Un-install completed with errors" msgstr "Видалення завершено з помилками" -#: src/Common/LinuxKernel.vala:1176 +#: src/Common/LinuxKernel.vala:1193 #, fuzzy msgid "" "This kernel is currently running and cannot be un-installed.\n" diff --git a/src/Common/LinuxKernel.vala b/src/Common/LinuxKernel.vala index 66324160..0f6eecc4 100644 --- a/src/Common/LinuxKernel.vala +++ b/src/Common/LinuxKernel.vala @@ -225,26 +225,26 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { // TODO: Implement locking for multiple download threads - // find highest major + // download per-kernel index.html and CHANGES + + // init the progress display + status_line = ""; + progress_total = 0; + progress_count = 0; + + // scan for highest major + // this is only preliminary because we have to re-scan after the downloads to account for failed builds highest_maj = 0; foreach(var k in kernel_list){ //log_debug("k.version_maj = %d".printf(k.version_maj)); - if (!k.is_valid) continue; + if (!k.is_valid) continue; // we don't actually know this for sure at this point, but go ahead and check it because it might be cached if (App.hide_unstable && k.is_unstable) continue; - if (k.version_maj > highest_maj){ highest_maj = k.version_maj; log_debug("highest_maj = %d".printf(highest_maj)); } } - // download per-kernel index.html and CHANGES - - // init the progress display - status_line = ""; - progress_total = 0; - progress_count = 0; - // determine the size of the job for the percent-done display foreach(var k in kernel_list){ if(!k.is_installed){ @@ -317,6 +317,20 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { foreach(var k in kernels_to_update) k.load_cached_page(); } + // Rescan for highest major after fetching the per-kernel index.htmls, because k.is_valid was unknown until now. (might or might not have been cached) + // "show previous N majors = 0" combined with a new major that has only failed builds yet, results in an empty list. + // This re-scan detects that condition and results in displaying the previous major instead of an empty list. + highest_maj = 0; + foreach(var k in kernel_list){ + //log_debug("k.version_maj = %d".printf(k.version_maj)); + if (!k.is_valid) continue; + if (App.hide_unstable && k.is_unstable) continue; + if (k.version_maj > highest_maj){ + highest_maj = k.version_maj; + log_debug("highest_maj = %d".printf(highest_maj)); + } + } + check_installed(); //check_updates("query_thread()"); From 25d750b67b954c250d1803dde6f63cde62c41ce4 Mon Sep 17 00:00:00 2001 From: Toby Date: Tue, 30 Aug 2022 17:59:00 +0200 Subject: [PATCH 175/567] Create de.po Addition of the German language --- po/de.po | 1 + 1 file changed, 1 insertion(+) create mode 100644 po/de.po diff --git a/po/de.po b/po/de.po new file mode 100644 index 00000000..8b137891 --- /dev/null +++ b/po/de.po @@ -0,0 +1 @@ + From ce092d229d89e5d3f982f2e5d6e485791f76599a Mon Sep 17 00:00:00 2001 From: Toby Date: Sat, 10 Sep 2022 18:50:09 +0200 Subject: [PATCH 176/567] German language added --- po/de.po | 577 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 577 insertions(+) diff --git a/po/de.po b/po/de.po index 8b137891..98d69736 100644 --- a/po/de.po +++ b/po/de.po @@ -1 +1,578 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the mainline package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: mainline 1.0.16\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-08-23 18:06-0400\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=CHARSET\n" +"Content-Transfer-Encoding: 8bit\n" +#: src/Common/LinuxKernel.vala:88 +msgid "Distribution" +msgstr "Distribution" + +#: src/Common/LinuxKernel.vala:102 +msgid "Architecture" +msgstr "Architektur" + +#: src/Common/LinuxKernel.vala:304 +msgid "Fetching index..." +msgstr "Index abrufen..." + +#: src/Common/LinuxKernel.vala:355 +msgid "Fetching index from kernel.ubuntu.com..." +msgstr "Holt den Index von kernel.ubuntu.com..." + +#: src/Common/LinuxKernel.vala:611 +msgid "Could not find running kernel in list!" +msgstr "Konnte keinen laufenden Kernel in der Liste finden!" + +#: src/Common/LinuxKernel.vala:617 +msgid "Could not find any kernels to uninstall" +msgstr "Es konnten keine Kernel zum Deinstallieren gefunden werden" + +#: src/Common/LinuxKernel.vala:626 +msgid "The following kernels will be uninstalled:" +msgstr "Die folgenden Kernel werden deinstalliert:" + +#: src/Common/LinuxKernel.vala:633 +msgid "Continue ?" +msgstr "Weiter ?" + +#: src/Common/LinuxKernel.vala:659 src/Console/AppConsole.vala:314 +msgid "Latest update" +msgstr "Neustes Update" + +#: src/Common/LinuxKernel.vala:670 src/Console/AppConsole.vala:321 +msgid "Latest point update" +msgstr "Letzte Punktaktualisierung" + +#: src/Common/LinuxKernel.vala:678 src/Console/AppConsole.vala:326 +#: src/Console/AppConsole.vala:387 +msgid "No updates found" +msgstr "Keine Updates gefunden" + +#: src/Common/LinuxKernel.vala:688 +#, c-format +msgid "Install Kernel Version %s ? (y/n): " +msgstr "Kernel-Version %s installieren? (j/n):" + +#: src/Common/LinuxKernel.vala:926 +msgid "Packages Available" +msgstr "Verfügbare Pakete" + +#: src/Common/LinuxKernel.vala:934 +msgid "Packages Installed" +msgstr "Installierte Packete" + +#: src/Common/LinuxKernel.vala:1015 +msgid "Available Kernels" +msgstr "Verfügbare Kernels" + +#: src/Common/LinuxKernel.vala:1022 src/Gtk/MainWindow.vala:186 +msgid "Installed" +msgstr "Installiert" + +#: src/Common/LinuxKernel.vala:1022 src/Gtk/MainWindow.vala:186 +#: src/Gtk/MainWindow.vala:628 src/Gtk/MainWindow.vala:642 +msgid "Running" +msgstr "Läuft" + +#: src/Common/LinuxKernel.vala:1059 +msgid "Downloading" +msgstr "Downloaded" + +#: src/Common/LinuxKernel.vala:1078 +#: src/Utility/Gtk/CustomMessageDialog.vala:148 +#: src/Utility/Gtk/CustomMessageDialog.vala:152 +msgid "OK" +msgstr "OK" + +#: src/Common/LinuxKernel.vala:1083 +msgid "ERROR" +msgstr "Fehler" + +#: src/Common/LinuxKernel.vala:1097 src/Gtk/MainWindow.vala:650 +msgid "This kernel is already installed." +msgstr "Dieser Kernel ist bereits installiert." + +#: src/Common/LinuxKernel.vala:1123 +msgid "Installation completed. A reboot is required to use the new kernel." +msgstr "Die Installation ist abgeschlossen. Ein Neustart ist erforderlich, um den neuen Kernel zu verwenden." + +#: src/Common/LinuxKernel.vala:1126 +msgid "Installation completed with errors" +msgstr "Installation mit Fehlern abgeschlossen" + +#: src/Common/LinuxKernel.vala:1141 +msgid "" +"Selected kernel is currently running and cannot be un-installed.\n" +" Install another kernel before un-installing this one." +msgstr "" +"Ausgewählter Kernel wird derzeit ausgeführt und kann nicht deinstalliert werden.\n" +" Installieren Sie einen anderen Kernel, bevor Sie diesen deinstallieren." + +#: src/Common/LinuxKernel.vala:1146 +msgid "Preparing to uninstall selected kernels" +msgstr "Vorbereiten der Deinstallation ausgewählter Kernel" + +#: src/Common/LinuxKernel.vala:1177 src/Common/LinuxKernel.vala:1224 +msgid "Un-install completed" +msgstr "Deinstallation abgeschlossen" + +#: src/Common/LinuxKernel.vala:1180 src/Common/LinuxKernel.vala:1227 +msgid "Un-install completed with errors" +msgstr "Deinstallation mit Fehlern abgeschlossen" + +#: src/Common/LinuxKernel.vala:1193 +msgid "" +"This kernel is currently running and cannot be un-installed.\n" +" Install another kernel before un-installing this one." +msgstr "" +"Dieser Kernel wird derzeit ausgeführt und kann nicht deinstalliert werden.\n" +" Installieren Sie einen anderen Kernel, bevor Sie diesen deinstallieren." + +#: src/Common/Main.vala:241 +msgid "Called from" +msgstr "Angerufen von" + +#: src/Common/Main.vala:275 +msgid "Notifications are disabled" +msgstr "Benachrichtigungen sind deaktiviert" + +#: src/Common/Package.vala:134 src/Common/Package.vala:198 +#, c-format +msgid "File not found: %s" +msgstr "Datei nicht gefunden: %s" + +#: src/Console/AppConsole.vala:62 src/Gtk/AppGtk.vala:149 +msgid "Syntax" +msgstr "Syntax" + +#: src/Console/AppConsole.vala:64 +msgid "Commands" +msgstr "Befehle" + +#: src/Console/AppConsole.vala:66 +msgid "Check for kernel updates" +msgstr "Nach Kernel-Updates suchen" + +#: src/Console/AppConsole.vala:67 +msgid "Check for kernel updates and notify current user" +msgstr "Prüfung auf Kernel-Updates und Benachrichtigung des aktuellen Benutzers" + +#: src/Console/AppConsole.vala:68 +msgid "List all available mainline kernels" +msgstr "Alle verfügbaren Mainline-Kernel auflisten" + +#: src/Console/AppConsole.vala:69 +msgid "List installed kernels" +msgstr "Installierte Kernel auflisten" + +#: src/Console/AppConsole.vala:70 +msgid "Install latest mainline kernel" +msgstr "Installieren Sie den neuesten Mainline-Kernel" + +#: src/Console/AppConsole.vala:71 +msgid "Install latest point update for current series" +msgstr "Neueste Punktaktualisierung für die aktuelle Serie installieren" + +#: src/Console/AppConsole.vala:72 +msgid "Install specified mainline kernel" +msgstr "Angegebenen Mainline-Kernel installieren" + +#: src/Console/AppConsole.vala:73 +msgid "Uninstall specified kernel" +msgstr "Deinstallation des angegebenen Kernels" + +#: src/Console/AppConsole.vala:74 +msgid "Uninstall kernels older than the running kernel" +msgstr "Deinstallation von Kerneln, die älter sind als der aktuelle Kernel" + +#: src/Console/AppConsole.vala:75 +msgid "Download specified kernels" +msgstr "Herunterladen bestimmter Kernel" + +#: src/Console/AppConsole.vala:76 +msgid "Remove files from application cache" +msgstr "Dateien aus dem Anwendungscache entfernen" + +#: src/Console/AppConsole.vala:78 src/Gtk/AppGtk.vala:151 +msgid "Options" +msgstr "Optionen" + +#: src/Console/AppConsole.vala:80 +msgid "Include unstable and RC releases" +msgstr "Unstable- und RC-Versionen einbeziehen" + +#: src/Console/AppConsole.vala:81 src/Gtk/SettingsDialog.vala:163 +msgid "Hide unstable and RC releases" +msgstr "Unstable- und RC-Versionen ausblenden" + +#: src/Console/AppConsole.vala:82 +msgid "Enable verbose debugging output" +msgstr "Ausführliche Debugging-Ausgabe einschalten" + +#: src/Console/AppConsole.vala:83 +msgid "Assume Yes for all prompts (non-interactive mode)" +msgstr "Alle Aufforderungen mit Ja beantworten (nicht interaktiver Modus)" + +#: src/Console/AppConsole.vala:84 +msgid "Override user" +msgstr "Benutzer außer Kraft setzen" + +#: src/Console/AppConsole.vala:87 +msgid "A version string taken from the output of --list" +msgstr "Eine Versionszeichenfolge aus der Ausgabe von --list" + +#: src/Console/AppConsole.vala:88 +msgid "" +"One or more version strings (comma-separated) taken from the output of --list" +msgstr "" +"Eine oder mehrere (durch Komma getrennte) Versionszeichenfolgen aus der Ausgabe von --list" + +#: src/Console/AppConsole.vala:169 src/Gtk/AppGtk.vala:136 +msgid "Unknown option" +msgstr "Unbekannte Option" + +#: src/Console/AppConsole.vala:171 src/Console/AppConsole.vala:265 +#: src/Console/AppConsole.vala:294 +msgid "Run" +msgstr "Laufen" + +#: src/Console/AppConsole.vala:171 +msgid "to list all options" +msgstr "um alle Optionen aufzulisten" + +#: src/Console/AppConsole.vala:238 src/Console/AppConsole.vala:273 +msgid "No kernels specified" +msgstr "Keine Kernel angegeben" + +#: src/Console/AppConsole.vala:244 +msgid "Multiple kernels selected for installation. Select only one." +msgstr "Mehrere Kernel für die Installation ausgewählt. Wählen Sie nur einen aus." + +#: src/Console/AppConsole.vala:262 src/Gtk/MainWindow.vala:100 +msgid "Could not find requested version" +msgstr "Die gewünschte Version konnte nicht gefunden werden" + +#: src/Console/AppConsole.vala:265 +msgid "and use a version string listed in first column" +msgstr "und verwenden Sie eine in der ersten Spalte aufgeführte Versionszeichenfolge" + +#: src/Console/AppConsole.vala:293 +msgid "Command not specified" +msgstr "Befehl nicht angegeben" + +#: src/Console/AppConsole.vala:294 +msgid "to list all commands" +msgstr "um alle Befehle aufzulisten" + +#: src/Console/AppConsole.vala:360 +msgid "Show" +msgstr "Zeigen" + +#: src/Console/AppConsole.vala:365 src/Console/AppConsole.vala:377 +#, c-format +msgid "Kernel %s Available" +msgstr "Kernel %s verfügbar" + +#: src/Console/AppConsole.vala:367 src/Console/AppConsole.vala:379 +#: src/Gtk/MainWindow.vala:330 +msgid "Install" +msgstr "Installieren" + +#: src/Gtk/AppGtk.vala:153 +msgid "Print debug information" +msgstr "Zeige Debug Informationen" + +#: src/Gtk/AppGtk.vala:154 +msgid "Show all options" +msgstr "Alle Optionen anzeigen" + +#: src/Gtk/MainWindow.vala:146 +msgid "Kernel" +msgstr "Kernel" + +#: src/Gtk/MainWindow.vala:174 +msgid "Status" +msgstr "Status" + +#: src/Gtk/MainWindow.vala:314 +msgid "Refresh" +msgstr "Auffrischen" + +#: src/Gtk/MainWindow.vala:321 src/Utility/TeeJee.System.vala:42 +msgid "Internet connection is not active" +msgstr "Internetverbindung ist nicht aktiv" + +#: src/Gtk/MainWindow.vala:321 src/Gtk/MainWindow.vala:525 +#: src/Gtk/MainWindow.vala:655 +msgid "No Internet" +msgstr "Kein Internet" + +#: src/Gtk/MainWindow.vala:339 +msgid "Multiple Kernels Selected" +msgstr "Mehrere Kernels Ausgewählt" + +#: src/Gtk/MainWindow.vala:339 +msgid "Select a single kernel to install" +msgstr "Wählen Sie einen einzelnen Kernel zur Installation aus" + +#: src/Gtk/MainWindow.vala:342 src/Gtk/MainWindow.vala:353 +msgid "Not Selected" +msgstr "Nichts Ausgwewählt" + +#: src/Gtk/MainWindow.vala:342 +msgid "Select the kernel to install" +msgstr "Wählen Sie den zu installierenden Kernel" + +#: src/Gtk/MainWindow.vala:347 +msgid "Uninstall" +msgstr "Deinstallieren Sie" + +#: src/Gtk/MainWindow.vala:353 +msgid "Select the kernels to uninstall" +msgstr "Wählen Sie die zu deinstallierenden Kernel aus" + +#: src/Gtk/MainWindow.vala:383 src/Gtk/MainWindow.vala:417 +#: src/Gtk/MainWindow.vala:687 +msgid "Close window to exit..." +msgstr "Fenster schließen zum Verlassen..." + +#: src/Gtk/MainWindow.vala:391 +msgid "Uninstall Old" +msgstr "Alt deinstallieren" + +#: src/Gtk/MainWindow.vala:392 +msgid "Uninstall kernels older than running kernel" +msgstr "Deinstallation von Kerneln, die älter sind als der aktuelle Kernel" + +#: src/Gtk/MainWindow.vala:424 +msgid "Changes" +msgstr "Änderungen" + +#: src/Gtk/MainWindow.vala:435 src/Gtk/SettingsDialog.vala:50 +msgid "Settings" +msgstr "Einstellungen" + +#: src/Gtk/MainWindow.vala:458 +msgid "About" +msgstr "Über" + +#: src/Gtk/MainWindow.vala:503 +msgid "Kernel upgrade utility for Ubuntu-based distributions" +msgstr "Kernel-Upgrade-Dienstprogramm für Ubuntu-basierte Distributionen +" + +#: src/Gtk/MainWindow.vala:504 +msgid "Forked" +msgstr "Gegabelte" + +#: src/Gtk/MainWindow.vala:504 +msgid "Original" +msgstr "Orginal" + +#: src/Gtk/MainWindow.vala:525 src/Gtk/MainWindow.vala:655 +msgid "Internet connection is not active." +msgstr "Die Internetverbindung ist nicht aktiv." + +#: src/Gtk/MainWindow.vala:544 +msgid "Refreshing..." +msgstr "Auffrischen" + +#: src/Gtk/MainWindow.vala:638 +msgid "available" +msgstr "Verfügbar" + +#: src/Gtk/MainWindow.vala:650 +msgid "Already Installed" +msgstr "Bereits Installiert" + +#: src/Gtk/ProgressWindow.vala:144 src/Gtk/TerminalWindow.vala:149 +#: src/Utility/Gtk/CustomMessageDialog.vala:153 +msgid "Cancel" +msgstr "Abbrechen" + +#: src/Gtk/SettingsDialog.vala:60 +msgid "Notification" +msgstr "Benachrichtigung" + +#: src/Gtk/SettingsDialog.vala:67 +msgid "Notify if a major release is available" +msgstr "Benachrichtigen, wenn eine größere Version verfügbar ist" + +#: src/Gtk/SettingsDialog.vala:78 +msgid "Notify if a point release is available" +msgstr "Benachrichtigen, wenn eine Punktfreigabe verfügbar ist" + +#: src/Gtk/SettingsDialog.vala:89 +msgid "(Allowing intervals in seconds for --debug)" +msgstr "(Erlaubt Intervalle in Sekunden für --debug)" + +#: src/Gtk/SettingsDialog.vala:112 +msgid "Check every" +msgstr "Prüfen Sie jede" + +#: src/Gtk/SettingsDialog.vala:142 +msgid "Hour(s)" +msgstr "Stunden" + +#: src/Gtk/SettingsDialog.vala:144 +msgid "Day(s)" +msgstr "Tage" + +#: src/Gtk/SettingsDialog.vala:146 +msgid "Week(s)" +msgstr "Wochen" + +#: src/Gtk/SettingsDialog.vala:149 +msgid "Second(s)" +msgstr "Sekunden" + +#: src/Gtk/SettingsDialog.vala:155 +msgid "Display" +msgstr "Anzeige" + +#: src/Gtk/SettingsDialog.vala:177 +msgid "Show N previous major versions " +msgstr "N frühere Hauptversionen anzeigen" + +#: src/Gtk/SettingsDialog.vala:192 +msgid "Other" +msgstr "Anderes" + +#: src/Gtk/SettingsDialog.vala:200 +msgid "Skip internet connection check" +msgstr "Überprüfung der Internetverbindung überspringen" + +#: src/Gtk/SettingsDialog.vala:213 +msgid "Internet connection timeout in " +msgstr "Zeitüberschreitung der Internetverbindung in" + +#: src/Gtk/SettingsDialog.vala:228 +msgid "seconds" +msgstr "Sekunden" + +#: src/Gtk/SettingsDialog.vala:235 +msgid "Max concurrent downloads" +msgstr "Maximale Anzahl gleichzeitiger Downloads" + +#: src/Gtk/TerminalWindow.vala:159 src/Utility/Gtk/AboutWindow.vala:294 +msgid "Close" +msgstr "Schließen" + +#: src/Utility/Gtk/AboutWindow.vala:271 src/Utility/Gtk/AboutWindow.vala:288 +msgid "Credits" +msgstr "Credits" + +#: src/Utility/Gtk/AboutWindow.vala:284 +msgid "Back" +msgstr "Zurück" + +#: src/Utility/Gtk/AboutWindow.vala:313 +msgid "Authors" +msgstr "Autoren" + +#: src/Utility/Gtk/AboutWindow.vala:321 +msgid "Contributions" +msgstr "Beiträge" + +#: src/Utility/Gtk/AboutWindow.vala:329 +msgid "Artists" +msgstr "Künstler" + +#: src/Utility/Gtk/AboutWindow.vala:337 +msgid "Translators" +msgstr "Übersetzer" + +#: src/Utility/Gtk/AboutWindow.vala:345 +msgid "Documenters" +msgstr "Dokumentierer" + +#: src/Utility/Gtk/AboutWindow.vala:353 +msgid "Third Party Inclusions" +msgstr "Einschlüsse von Drittparteien" + +#: src/Utility/Gtk/CustomMessageDialog.vala:157 +msgid "Yes" +msgstr "Ja" + +#: src/Utility/Gtk/CustomMessageDialog.vala:158 +msgid "No" +msgstr "Nein" + +#: src/Utility/Gtk/GtkHelper.vala:67 +msgid "Missing Icon" +msgstr "Fehlendes Symbol" + +#: src/Utility/TeeJee.FileSystem.vala:71 +msgid "File deleted" +msgstr "Datei Gelöscht" + +#: src/Utility/TeeJee.FileSystem.vala:76 src/Utility/TeeJee.FileSystem.vala:256 +msgid "Failed to delete file" +msgstr "Fehler beim Löschen der Datei" + +#: src/Utility/TeeJee.FileSystem.vala:96 +msgid "Failed to read file" +msgstr "Fehlere bei lesesen der Datei" + +#: src/Utility/TeeJee.FileSystem.vala:123 +msgid "File saved" +msgstr "Datei gespeichert" + +#: src/Utility/TeeJee.FileSystem.vala:129 +msgid "Failed to write file" +msgstr "Fehler beim Schreiben der Datei" + +#: src/Utility/TeeJee.FileSystem.vala:141 +msgid "File copied" +msgstr "Datei kopiert" + +#: src/Utility/TeeJee.FileSystem.vala:148 +msgid "Failed to copy file" +msgstr "Fehler beim Kopieren der Datei" + +#: src/Utility/TeeJee.FileSystem.vala:157 +msgid "File not found" +msgstr "Datei nicht gefunden " + +#: src/Utility/TeeJee.FileSystem.vala:171 +msgid "File moved" +msgstr "Datei Verschoben" + +#: src/Utility/TeeJee.FileSystem.vala:176 +msgid "Failed to move file" +msgstr "Fehler beim Verschieben der Datei" + +#: src/Utility/TeeJee.FileSystem.vala:233 +#: src/Utility/TeeJee.FileSystem.vala:236 +msgid "Created directory" +msgstr "Erstelltes Verzeichnis" + +#: src/Utility/TeeJee.FileSystem.vala:243 +msgid "Failed to create dir" +msgstr "Fehler beim Erstellten Verzeichnis" + +#: src/Utility/TeeJee.FileSystem.vala:255 +msgid "Deleted" +msgstr "Gelöscht" + +#: src/Utility/TeeJee.Logging.vala:59 +msgid "E" +msgstr "" + +#: src/Utility/TeeJee.Logging.vala:84 +msgid "D" +msgstr "" From 9e1525c710062816357529ce37af3fd11e7a8c71 Mon Sep 17 00:00:00 2001 From: Toby Date: Sat, 10 Sep 2022 18:52:12 +0200 Subject: [PATCH 177/567] German language added --- po/de.po | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/po/de.po b/po/de.po index 98d69736..7948eebd 100644 --- a/po/de.po +++ b/po/de.po @@ -10,9 +10,9 @@ msgstr "" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2022-08-23 18:06-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" +"Last-Translator: Tobias w\n" +"Language-Team: * <*>\n" +"Language: DE\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" From e988fd2af7f54c28b94df776a6e4c1acf5452ea3 Mon Sep 17 00:00:00 2001 From: Toby Date: Sat, 10 Sep 2022 18:54:43 +0200 Subject: [PATCH 178/567] German language added German language added --- po/de.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/de.po b/po/de.po index 7948eebd..7e8e93dd 100644 --- a/po/de.po +++ b/po/de.po @@ -11,7 +11,7 @@ msgstr "" "POT-Creation-Date: 2022-08-23 18:06-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Tobias w\n" -"Language-Team: * <*>\n" +"Language-Team: German \n" "Language: DE\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=CHARSET\n" From bb57493b51bd8c9f9fb372324d1bdef1360f6a1c Mon Sep 17 00:00:00 2001 From: Toby Date: Sat, 17 Sep 2022 23:26:04 +0200 Subject: [PATCH 179/567] Update de.po --- po/de.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/de.po b/po/de.po index 7e8e93dd..12499360 100644 --- a/po/de.po +++ b/po/de.po @@ -372,8 +372,7 @@ msgstr "Über" #: src/Gtk/MainWindow.vala:503 msgid "Kernel upgrade utility for Ubuntu-based distributions" -msgstr "Kernel-Upgrade-Dienstprogramm für Ubuntu-basierte Distributionen -" +msgstr "Kernel-Upgrade-Dienstprogramm für Ubuntu-basierte Distributionen" #: src/Gtk/MainWindow.vala:504 msgid "Forked" From 73974c6220c22979e77c5a36f11be9426c64e754 Mon Sep 17 00:00:00 2001 From: Toby Date: Sat, 17 Sep 2022 23:44:52 +0200 Subject: [PATCH 180/567] Line 375 , 376 and Problems with the header were fixed when translating the comma in line 375 slipped into line 376 , I have corrected this error and Problems with the header were fixed --- po/de.po | 20 ++++++++------------ 1 file changed, 8 insertions(+), 12 deletions(-) diff --git a/po/de.po b/po/de.po index 12499360..cfeb4466 100644 --- a/po/de.po +++ b/po/de.po @@ -1,21 +1,17 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the mainline package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy msgid "" msgstr "" -"Project-Id-Version: mainline 1.0.16\n" +"Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2022-08-23 18:06-0400\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: Tobias w\n" -"Language-Team: German \n" -"Language: DE\n" +"PO-Revision-Date: 2018-01-03 02:03-0600\n" +"Last-Translator: Tobias w Date: Sat, 17 Sep 2022 21:07:23 -0400 Subject: [PATCH 181/567] don't require headers to install --- po/es.po | 30 +++++++++++++++--------------- po/fr.po | 30 +++++++++++++++--------------- po/hr.po | 30 +++++++++++++++--------------- po/it.po | 30 +++++++++++++++--------------- po/ko.po | 30 +++++++++++++++--------------- po/messages.pot | 30 +++++++++++++++--------------- po/nl.po | 30 +++++++++++++++--------------- po/pl.po | 30 +++++++++++++++--------------- po/ru.po | 30 +++++++++++++++--------------- po/sv.po | 30 +++++++++++++++--------------- po/tr.po | 30 +++++++++++++++--------------- po/uk.po | 30 +++++++++++++++--------------- src/Common/LinuxKernel.vala | 5 ++--- 13 files changed, 182 insertions(+), 183 deletions(-) diff --git a/po/es.po b/po/es.po index 72361bb5..3e9c4b32 100644 --- a/po/es.po +++ b/po/es.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-08-23 18:06-0400\n" +"POT-Creation-Date: 2022-09-08 04:23-0400\n" "PO-Revision-Date: 2018-01-03 02:03-0600\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish\n" @@ -73,47 +73,47 @@ msgstr "Paquetes disponibles" msgid "Packages Installed" msgstr "Paquetes instalados" -#: src/Common/LinuxKernel.vala:1015 +#: src/Common/LinuxKernel.vala:1014 msgid "Available Kernels" msgstr "Núcleos disponibles" -#: src/Common/LinuxKernel.vala:1022 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1021 src/Gtk/MainWindow.vala:186 msgid "Installed" msgstr "Instalado" -#: src/Common/LinuxKernel.vala:1022 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1021 src/Gtk/MainWindow.vala:186 #: src/Gtk/MainWindow.vala:628 src/Gtk/MainWindow.vala:642 msgid "Running" msgstr "En ejecución" -#: src/Common/LinuxKernel.vala:1059 +#: src/Common/LinuxKernel.vala:1058 msgid "Downloading" msgstr "Descargando" -#: src/Common/LinuxKernel.vala:1078 +#: src/Common/LinuxKernel.vala:1077 #: src/Utility/Gtk/CustomMessageDialog.vala:148 #: src/Utility/Gtk/CustomMessageDialog.vala:152 msgid "OK" msgstr "Aceptar" -#: src/Common/LinuxKernel.vala:1083 +#: src/Common/LinuxKernel.vala:1082 msgid "ERROR" msgstr "ERROR" -#: src/Common/LinuxKernel.vala:1097 src/Gtk/MainWindow.vala:650 +#: src/Common/LinuxKernel.vala:1096 src/Gtk/MainWindow.vala:650 msgid "This kernel is already installed." msgstr "Este núcleo ya se instaló." -#: src/Common/LinuxKernel.vala:1123 +#: src/Common/LinuxKernel.vala:1122 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "Instalación finalizada. Se necesita reiniciar para utilizar el núcleo nuevo." -#: src/Common/LinuxKernel.vala:1126 +#: src/Common/LinuxKernel.vala:1125 msgid "Installation completed with errors" msgstr "Instalación finalizada con errores" -#: src/Common/LinuxKernel.vala:1141 +#: src/Common/LinuxKernel.vala:1140 #, fuzzy msgid "" "Selected kernel is currently running and cannot be un-installed.\n" @@ -122,20 +122,20 @@ msgstr "" "El núcleo seleccionado está en ejecución y no puede desinstalarse.\n" "Instale otro núcleo antes de desinstalar este." -#: src/Common/LinuxKernel.vala:1146 +#: src/Common/LinuxKernel.vala:1145 #, fuzzy msgid "Preparing to uninstall selected kernels" msgstr "Preparándose para desinstalar los núcleos seleccionados" -#: src/Common/LinuxKernel.vala:1177 src/Common/LinuxKernel.vala:1224 +#: src/Common/LinuxKernel.vala:1176 src/Common/LinuxKernel.vala:1223 msgid "Un-install completed" msgstr "Desinstalación finalizada" -#: src/Common/LinuxKernel.vala:1180 src/Common/LinuxKernel.vala:1227 +#: src/Common/LinuxKernel.vala:1179 src/Common/LinuxKernel.vala:1226 msgid "Un-install completed with errors" msgstr "Desinstalación finalizada con errores" -#: src/Common/LinuxKernel.vala:1193 +#: src/Common/LinuxKernel.vala:1192 #, fuzzy msgid "" "This kernel is currently running and cannot be un-installed.\n" diff --git a/po/fr.po b/po/fr.po index 7adda8be..a45575e8 100644 --- a/po/fr.po +++ b/po/fr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-08-23 18:06-0400\n" +"POT-Creation-Date: 2022-09-08 04:23-0400\n" "PO-Revision-Date: 2018-08-05 15:50+0200\n" "Last-Translator: Yolateng0 \n" "Language-Team: French\n" @@ -73,48 +73,48 @@ msgstr "Paquets Disponibles" msgid "Packages Installed" msgstr "Paquets Installés" -#: src/Common/LinuxKernel.vala:1015 +#: src/Common/LinuxKernel.vala:1014 msgid "Available Kernels" msgstr "Noyaux Disponibles" -#: src/Common/LinuxKernel.vala:1022 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1021 src/Gtk/MainWindow.vala:186 msgid "Installed" msgstr "Installé" -#: src/Common/LinuxKernel.vala:1022 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1021 src/Gtk/MainWindow.vala:186 #: src/Gtk/MainWindow.vala:628 src/Gtk/MainWindow.vala:642 msgid "Running" msgstr "Actuel" -#: src/Common/LinuxKernel.vala:1059 +#: src/Common/LinuxKernel.vala:1058 msgid "Downloading" msgstr "Téléchargement" -#: src/Common/LinuxKernel.vala:1078 +#: src/Common/LinuxKernel.vala:1077 #: src/Utility/Gtk/CustomMessageDialog.vala:148 #: src/Utility/Gtk/CustomMessageDialog.vala:152 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:1083 +#: src/Common/LinuxKernel.vala:1082 msgid "ERROR" msgstr "ERREUR" -#: src/Common/LinuxKernel.vala:1097 src/Gtk/MainWindow.vala:650 +#: src/Common/LinuxKernel.vala:1096 src/Gtk/MainWindow.vala:650 msgid "This kernel is already installed." msgstr "Ce noyau est déjà installé." -#: src/Common/LinuxKernel.vala:1123 +#: src/Common/LinuxKernel.vala:1122 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "Installation complétée. Un redémarrage est nécessaire pour utiliser le " "nouveau noyau." -#: src/Common/LinuxKernel.vala:1126 +#: src/Common/LinuxKernel.vala:1125 msgid "Installation completed with errors" msgstr "Installation terminée avec des erreurs" -#: src/Common/LinuxKernel.vala:1141 +#: src/Common/LinuxKernel.vala:1140 #, fuzzy msgid "" "Selected kernel is currently running and cannot be un-installed.\n" @@ -123,20 +123,20 @@ msgstr "" "Ce noyau est en cours d'exécution et ne peut pas être supprimé.\n" " Installez un autre noyau avant de retirer celui-ci." -#: src/Common/LinuxKernel.vala:1146 +#: src/Common/LinuxKernel.vala:1145 #, fuzzy msgid "Preparing to uninstall selected kernels" msgstr "Préparation à la suppression des noyaux sélectionnés" -#: src/Common/LinuxKernel.vala:1177 src/Common/LinuxKernel.vala:1224 +#: src/Common/LinuxKernel.vala:1176 src/Common/LinuxKernel.vala:1223 msgid "Un-install completed" msgstr "Désinstallation complète" -#: src/Common/LinuxKernel.vala:1180 src/Common/LinuxKernel.vala:1227 +#: src/Common/LinuxKernel.vala:1179 src/Common/LinuxKernel.vala:1226 msgid "Un-install completed with errors" msgstr "Désinstallation terminée avec des erreurs" -#: src/Common/LinuxKernel.vala:1193 +#: src/Common/LinuxKernel.vala:1192 #, fuzzy msgid "" "This kernel is currently running and cannot be un-installed.\n" diff --git a/po/hr.po b/po/hr.po index 7934028f..f617cd88 100644 --- a/po/hr.po +++ b/po/hr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-08-23 18:06-0400\n" +"POT-Creation-Date: 2022-09-08 04:23-0400\n" "PO-Revision-Date: 2021-04-07 17:58+0200\n" "Last-Translator: gogo \n" "Language-Team: Croatian \n" @@ -73,48 +73,48 @@ msgstr "Dostupni paketi" msgid "Packages Installed" msgstr "Instalirani paketi" -#: src/Common/LinuxKernel.vala:1015 +#: src/Common/LinuxKernel.vala:1014 msgid "Available Kernels" msgstr "Dostupni kerneli" -#: src/Common/LinuxKernel.vala:1022 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1021 src/Gtk/MainWindow.vala:186 msgid "Installed" msgstr "Instalirano" -#: src/Common/LinuxKernel.vala:1022 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1021 src/Gtk/MainWindow.vala:186 #: src/Gtk/MainWindow.vala:628 src/Gtk/MainWindow.vala:642 msgid "Running" msgstr "Pokrenuto" -#: src/Common/LinuxKernel.vala:1059 +#: src/Common/LinuxKernel.vala:1058 msgid "Downloading" msgstr "Preuzimanje" -#: src/Common/LinuxKernel.vala:1078 +#: src/Common/LinuxKernel.vala:1077 #: src/Utility/Gtk/CustomMessageDialog.vala:148 #: src/Utility/Gtk/CustomMessageDialog.vala:152 msgid "OK" msgstr "U redu" -#: src/Common/LinuxKernel.vala:1083 +#: src/Common/LinuxKernel.vala:1082 msgid "ERROR" msgstr "GREŠKA" -#: src/Common/LinuxKernel.vala:1097 src/Gtk/MainWindow.vala:650 +#: src/Common/LinuxKernel.vala:1096 src/Gtk/MainWindow.vala:650 msgid "This kernel is already installed." msgstr "Ovaj kernel je već instaliran." -#: src/Common/LinuxKernel.vala:1123 +#: src/Common/LinuxKernel.vala:1122 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "Instalacija je završena. Potrebno je ponovno pokretanje računala kako bi se " "koristio novi kernel." -#: src/Common/LinuxKernel.vala:1126 +#: src/Common/LinuxKernel.vala:1125 msgid "Installation completed with errors" msgstr "Instalacija je završena s greškama" -#: src/Common/LinuxKernel.vala:1141 +#: src/Common/LinuxKernel.vala:1140 #, fuzzy msgid "" "Selected kernel is currently running and cannot be un-installed.\n" @@ -123,20 +123,20 @@ msgstr "" "Odabrani kernel je trenutno pokernut i ne može se ukloniti.\n" " Instalirajte drugi kernel prije uklanjanja trenutnog kernela." -#: src/Common/LinuxKernel.vala:1146 +#: src/Common/LinuxKernel.vala:1145 #, fuzzy msgid "Preparing to uninstall selected kernels" msgstr "Pripremanje uklanjanja odabranih kernela" -#: src/Common/LinuxKernel.vala:1177 src/Common/LinuxKernel.vala:1224 +#: src/Common/LinuxKernel.vala:1176 src/Common/LinuxKernel.vala:1223 msgid "Un-install completed" msgstr "Deinstalacija završena" -#: src/Common/LinuxKernel.vala:1180 src/Common/LinuxKernel.vala:1227 +#: src/Common/LinuxKernel.vala:1179 src/Common/LinuxKernel.vala:1226 msgid "Un-install completed with errors" msgstr "Deinstalacija završena s greškama" -#: src/Common/LinuxKernel.vala:1193 +#: src/Common/LinuxKernel.vala:1192 #, fuzzy msgid "" "This kernel is currently running and cannot be un-installed.\n" diff --git a/po/it.po b/po/it.po index 31113eab..0c8337b6 100644 --- a/po/it.po +++ b/po/it.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline 1.0.15\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-08-23 18:06-0400\n" +"POT-Creation-Date: 2022-09-08 04:23-0400\n" "PO-Revision-Date: 2020-08-22 15:35+0100\n" "Last-Translator: Demetrio Mendozzi\n" "Language-Team: Italian \n" @@ -75,48 +75,48 @@ msgstr "Pacchetti disponibili" msgid "Packages Installed" msgstr "Pacchetti installati" -#: src/Common/LinuxKernel.vala:1015 +#: src/Common/LinuxKernel.vala:1014 msgid "Available Kernels" msgstr "Kernel disponibili" -#: src/Common/LinuxKernel.vala:1022 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1021 src/Gtk/MainWindow.vala:186 msgid "Installed" msgstr "Installato" -#: src/Common/LinuxKernel.vala:1022 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1021 src/Gtk/MainWindow.vala:186 #: src/Gtk/MainWindow.vala:628 src/Gtk/MainWindow.vala:642 msgid "Running" msgstr "In esecuzione" -#: src/Common/LinuxKernel.vala:1059 +#: src/Common/LinuxKernel.vala:1058 msgid "Downloading" msgstr "Download in corso" -#: src/Common/LinuxKernel.vala:1078 +#: src/Common/LinuxKernel.vala:1077 #: src/Utility/Gtk/CustomMessageDialog.vala:148 #: src/Utility/Gtk/CustomMessageDialog.vala:152 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:1083 +#: src/Common/LinuxKernel.vala:1082 msgid "ERROR" msgstr "ERRORE" -#: src/Common/LinuxKernel.vala:1097 src/Gtk/MainWindow.vala:650 +#: src/Common/LinuxKernel.vala:1096 src/Gtk/MainWindow.vala:650 msgid "This kernel is already installed." msgstr "Questo kernel è già installato" -#: src/Common/LinuxKernel.vala:1123 +#: src/Common/LinuxKernel.vala:1122 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "Installazione completata. È necessario riavviare per utilizzare ilnuovo " "kernel." -#: src/Common/LinuxKernel.vala:1126 +#: src/Common/LinuxKernel.vala:1125 msgid "Installation completed with errors" msgstr "Installazione completata con errori" -#: src/Common/LinuxKernel.vala:1141 +#: src/Common/LinuxKernel.vala:1140 msgid "" "Selected kernel is currently running and cannot be un-installed.\n" " Install another kernel before un-installing this one." @@ -124,19 +124,19 @@ msgstr "" "Il kernel selezionato è attualmente in esecuzione e non può essere rimosso.\n" "Installa un altro kernel prima di rimuovere questo." -#: src/Common/LinuxKernel.vala:1146 +#: src/Common/LinuxKernel.vala:1145 msgid "Preparing to uninstall selected kernels" msgstr "Preparazione per rimuovere i kernel selezionati" -#: src/Common/LinuxKernel.vala:1177 src/Common/LinuxKernel.vala:1224 +#: src/Common/LinuxKernel.vala:1176 src/Common/LinuxKernel.vala:1223 msgid "Un-install completed" msgstr "Disinstallazione completata" -#: src/Common/LinuxKernel.vala:1180 src/Common/LinuxKernel.vala:1227 +#: src/Common/LinuxKernel.vala:1179 src/Common/LinuxKernel.vala:1226 msgid "Un-install completed with errors" msgstr "Disinstallazione completata con errori" -#: src/Common/LinuxKernel.vala:1193 +#: src/Common/LinuxKernel.vala:1192 msgid "" "This kernel is currently running and cannot be un-installed.\n" " Install another kernel before un-installing this one." diff --git a/po/ko.po b/po/ko.po index b65f511b..ca2cb5ab 100644 --- a/po/ko.po +++ b/po/ko.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline 1.0.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-08-23 18:06-0400\n" +"POT-Creation-Date: 2022-09-08 04:23-0400\n" "PO-Revision-Date: 2021-06-01 14:57+0900\n" "Last-Translator: Kevin Kim \n" "Language-Team: Korean\n" @@ -78,46 +78,46 @@ msgstr "설치 가능한 패키지" msgid "Packages Installed" msgstr "설치된 패키지" -#: src/Common/LinuxKernel.vala:1015 +#: src/Common/LinuxKernel.vala:1014 msgid "Available Kernels" msgstr "설치 가능한 커널" -#: src/Common/LinuxKernel.vala:1022 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1021 src/Gtk/MainWindow.vala:186 msgid "Installed" msgstr "설치 됨" -#: src/Common/LinuxKernel.vala:1022 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1021 src/Gtk/MainWindow.vala:186 #: src/Gtk/MainWindow.vala:628 src/Gtk/MainWindow.vala:642 msgid "Running" msgstr "구동 중" -#: src/Common/LinuxKernel.vala:1059 +#: src/Common/LinuxKernel.vala:1058 msgid "Downloading" msgstr "다운로드 중" -#: src/Common/LinuxKernel.vala:1078 +#: src/Common/LinuxKernel.vala:1077 #: src/Utility/Gtk/CustomMessageDialog.vala:148 #: src/Utility/Gtk/CustomMessageDialog.vala:152 msgid "OK" msgstr "확인" -#: src/Common/LinuxKernel.vala:1083 +#: src/Common/LinuxKernel.vala:1082 msgid "ERROR" msgstr "오류" -#: src/Common/LinuxKernel.vala:1097 src/Gtk/MainWindow.vala:650 +#: src/Common/LinuxKernel.vala:1096 src/Gtk/MainWindow.vala:650 msgid "This kernel is already installed." msgstr "이 커널은 이미 설치되었습니다." -#: src/Common/LinuxKernel.vala:1123 +#: src/Common/LinuxKernel.vala:1122 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "설치가 완료되었습닌다. 새 커널을 사용하려면 시스템을 재시작 하세요." -#: src/Common/LinuxKernel.vala:1126 +#: src/Common/LinuxKernel.vala:1125 msgid "Installation completed with errors" msgstr "오류가 있으나 설치가 완료되었습니다" -#: src/Common/LinuxKernel.vala:1141 +#: src/Common/LinuxKernel.vala:1140 #, fuzzy msgid "" "Selected kernel is currently running and cannot be un-installed.\n" @@ -126,20 +126,20 @@ msgstr "" "선택된 커널은 현재 사용 중이므로 삭제할 수 없습니다.\n" " 이 커널을 삭제하려면 다른 커널을 먼저 설치하세요." -#: src/Common/LinuxKernel.vala:1146 +#: src/Common/LinuxKernel.vala:1145 #, fuzzy msgid "Preparing to uninstall selected kernels" msgstr "선택한 커널을 삭제하기 위해 준비중입니다" -#: src/Common/LinuxKernel.vala:1177 src/Common/LinuxKernel.vala:1224 +#: src/Common/LinuxKernel.vala:1176 src/Common/LinuxKernel.vala:1223 msgid "Un-install completed" msgstr "삭제가 완료되었습니다" -#: src/Common/LinuxKernel.vala:1180 src/Common/LinuxKernel.vala:1227 +#: src/Common/LinuxKernel.vala:1179 src/Common/LinuxKernel.vala:1226 msgid "Un-install completed with errors" msgstr "오류가 있으나 삭제가 완료되었습니다" -#: src/Common/LinuxKernel.vala:1193 +#: src/Common/LinuxKernel.vala:1192 #, fuzzy msgid "" "This kernel is currently running and cannot be un-installed.\n" diff --git a/po/messages.pot b/po/messages.pot index 3ce641fe..33cde051 100644 --- a/po/messages.pot +++ b/po/messages.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline 1.0.16\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-08-23 18:06-0400\n" +"POT-Creation-Date: 2022-09-08 04:23-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -75,64 +75,64 @@ msgstr "" msgid "Packages Installed" msgstr "" -#: src/Common/LinuxKernel.vala:1015 +#: src/Common/LinuxKernel.vala:1014 msgid "Available Kernels" msgstr "" -#: src/Common/LinuxKernel.vala:1022 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1021 src/Gtk/MainWindow.vala:186 msgid "Installed" msgstr "" -#: src/Common/LinuxKernel.vala:1022 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1021 src/Gtk/MainWindow.vala:186 #: src/Gtk/MainWindow.vala:628 src/Gtk/MainWindow.vala:642 msgid "Running" msgstr "" -#: src/Common/LinuxKernel.vala:1059 +#: src/Common/LinuxKernel.vala:1058 msgid "Downloading" msgstr "" -#: src/Common/LinuxKernel.vala:1078 +#: src/Common/LinuxKernel.vala:1077 #: src/Utility/Gtk/CustomMessageDialog.vala:148 #: src/Utility/Gtk/CustomMessageDialog.vala:152 msgid "OK" msgstr "" -#: src/Common/LinuxKernel.vala:1083 +#: src/Common/LinuxKernel.vala:1082 msgid "ERROR" msgstr "" -#: src/Common/LinuxKernel.vala:1097 src/Gtk/MainWindow.vala:650 +#: src/Common/LinuxKernel.vala:1096 src/Gtk/MainWindow.vala:650 msgid "This kernel is already installed." msgstr "" -#: src/Common/LinuxKernel.vala:1123 +#: src/Common/LinuxKernel.vala:1122 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" -#: src/Common/LinuxKernel.vala:1126 +#: src/Common/LinuxKernel.vala:1125 msgid "Installation completed with errors" msgstr "" -#: src/Common/LinuxKernel.vala:1141 +#: src/Common/LinuxKernel.vala:1140 msgid "" "Selected kernel is currently running and cannot be un-installed.\n" " Install another kernel before un-installing this one." msgstr "" -#: src/Common/LinuxKernel.vala:1146 +#: src/Common/LinuxKernel.vala:1145 msgid "Preparing to uninstall selected kernels" msgstr "" -#: src/Common/LinuxKernel.vala:1177 src/Common/LinuxKernel.vala:1224 +#: src/Common/LinuxKernel.vala:1176 src/Common/LinuxKernel.vala:1223 msgid "Un-install completed" msgstr "" -#: src/Common/LinuxKernel.vala:1180 src/Common/LinuxKernel.vala:1227 +#: src/Common/LinuxKernel.vala:1179 src/Common/LinuxKernel.vala:1226 msgid "Un-install completed with errors" msgstr "" -#: src/Common/LinuxKernel.vala:1193 +#: src/Common/LinuxKernel.vala:1192 msgid "" "This kernel is currently running and cannot be un-installed.\n" " Install another kernel before un-installing this one." diff --git a/po/nl.po b/po/nl.po index 88ff4d77..1e8d3ee8 100644 --- a/po/nl.po +++ b/po/nl.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-08-23 18:06-0400\n" +"POT-Creation-Date: 2022-09-08 04:23-0400\n" "PO-Revision-Date: 2020-08-23 13:55+0200\n" "Last-Translator: Heimen Stoffels \n" "Language-Team: \n" @@ -73,48 +73,48 @@ msgstr "Beschikbare pakketten" msgid "Packages Installed" msgstr "Geïnstalleerde pakketten" -#: src/Common/LinuxKernel.vala:1015 +#: src/Common/LinuxKernel.vala:1014 msgid "Available Kernels" msgstr "Beschikbare kernels" -#: src/Common/LinuxKernel.vala:1022 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1021 src/Gtk/MainWindow.vala:186 msgid "Installed" msgstr "Geïnstalleerd" -#: src/Common/LinuxKernel.vala:1022 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1021 src/Gtk/MainWindow.vala:186 #: src/Gtk/MainWindow.vala:628 src/Gtk/MainWindow.vala:642 msgid "Running" msgstr "In gebruik" -#: src/Common/LinuxKernel.vala:1059 +#: src/Common/LinuxKernel.vala:1058 msgid "Downloading" msgstr "Bezig met downloaden" -#: src/Common/LinuxKernel.vala:1078 +#: src/Common/LinuxKernel.vala:1077 #: src/Utility/Gtk/CustomMessageDialog.vala:148 #: src/Utility/Gtk/CustomMessageDialog.vala:152 msgid "OK" msgstr "Oké" -#: src/Common/LinuxKernel.vala:1083 +#: src/Common/LinuxKernel.vala:1082 msgid "ERROR" msgstr "FOUT" -#: src/Common/LinuxKernel.vala:1097 src/Gtk/MainWindow.vala:650 +#: src/Common/LinuxKernel.vala:1096 src/Gtk/MainWindow.vala:650 msgid "This kernel is already installed." msgstr "Deze kernel is al geïnstalleerd." -#: src/Common/LinuxKernel.vala:1123 +#: src/Common/LinuxKernel.vala:1122 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "De installatie is voltooid. Herstart de computer om de nieuwe kernel te " "gebruiken." -#: src/Common/LinuxKernel.vala:1126 +#: src/Common/LinuxKernel.vala:1125 msgid "Installation completed with errors" msgstr "De installatie is foutloos voltooid" -#: src/Common/LinuxKernel.vala:1141 +#: src/Common/LinuxKernel.vala:1140 #, fuzzy msgid "" "Selected kernel is currently running and cannot be un-installed.\n" @@ -124,20 +124,20 @@ msgstr "" "verwijderd.\n" " Installeer eerst een andere kernel." -#: src/Common/LinuxKernel.vala:1146 +#: src/Common/LinuxKernel.vala:1145 #, fuzzy msgid "Preparing to uninstall selected kernels" msgstr "Bezig met voorbereiden van verwijdering" -#: src/Common/LinuxKernel.vala:1177 src/Common/LinuxKernel.vala:1224 +#: src/Common/LinuxKernel.vala:1176 src/Common/LinuxKernel.vala:1223 msgid "Un-install completed" msgstr "Deïnstalleren voltooid" -#: src/Common/LinuxKernel.vala:1180 src/Common/LinuxKernel.vala:1227 +#: src/Common/LinuxKernel.vala:1179 src/Common/LinuxKernel.vala:1226 msgid "Un-install completed with errors" msgstr "Deïnstalleren voltooid, maar met fouten" -#: src/Common/LinuxKernel.vala:1193 +#: src/Common/LinuxKernel.vala:1192 #, fuzzy msgid "" "This kernel is currently running and cannot be un-installed.\n" diff --git a/po/pl.po b/po/pl.po index 1b726d40..65a9e5e3 100644 --- a/po/pl.po +++ b/po/pl.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-08-23 18:06-0400\n" +"POT-Creation-Date: 2022-09-08 04:23-0400\n" "PO-Revision-Date: 2021-09-17 10:29+0200\n" "Last-Translator: Viktor Sokyrko \n" "Language-Team: Polish\n" @@ -71,48 +71,48 @@ msgstr "Dostępne pakiety" msgid "Packages Installed" msgstr "Pakiety zainstalowane" -#: src/Common/LinuxKernel.vala:1015 +#: src/Common/LinuxKernel.vala:1014 msgid "Available Kernels" msgstr "Dostępne jądra" -#: src/Common/LinuxKernel.vala:1022 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1021 src/Gtk/MainWindow.vala:186 msgid "Installed" msgstr "Zainstalowany" -#: src/Common/LinuxKernel.vala:1022 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1021 src/Gtk/MainWindow.vala:186 #: src/Gtk/MainWindow.vala:628 src/Gtk/MainWindow.vala:642 msgid "Running" msgstr "Uruchomiony" -#: src/Common/LinuxKernel.vala:1059 +#: src/Common/LinuxKernel.vala:1058 msgid "Downloading" msgstr "Pobieranie" -#: src/Common/LinuxKernel.vala:1078 +#: src/Common/LinuxKernel.vala:1077 #: src/Utility/Gtk/CustomMessageDialog.vala:148 #: src/Utility/Gtk/CustomMessageDialog.vala:152 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:1083 +#: src/Common/LinuxKernel.vala:1082 msgid "ERROR" msgstr "BŁĄD" -#: src/Common/LinuxKernel.vala:1097 src/Gtk/MainWindow.vala:650 +#: src/Common/LinuxKernel.vala:1096 src/Gtk/MainWindow.vala:650 msgid "This kernel is already installed." msgstr "To jądro jest już zainstalowane." -#: src/Common/LinuxKernel.vala:1123 +#: src/Common/LinuxKernel.vala:1122 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "Instalacja zakończona. Aby korzystać z nowego jądra, konieczne jest ponowne " "uruchomienie." -#: src/Common/LinuxKernel.vala:1126 +#: src/Common/LinuxKernel.vala:1125 msgid "Installation completed with errors" msgstr "Instalacja zakończona z błędami" -#: src/Common/LinuxKernel.vala:1141 +#: src/Common/LinuxKernel.vala:1140 msgid "" "Selected kernel is currently running and cannot be un-installed.\n" " Install another kernel before un-installing this one." @@ -120,19 +120,19 @@ msgstr "" "Wybrane jądro aktualnie działa i nie może zostać odinstalowane.\n" " Zainstaluj inne jądro przed odinstalowaniem tego." -#: src/Common/LinuxKernel.vala:1146 +#: src/Common/LinuxKernel.vala:1145 msgid "Preparing to uninstall selected kernels" msgstr "Przygotowanie do odinstalowania wybranych jąder" -#: src/Common/LinuxKernel.vala:1177 src/Common/LinuxKernel.vala:1224 +#: src/Common/LinuxKernel.vala:1176 src/Common/LinuxKernel.vala:1223 msgid "Un-install completed" msgstr "Deinstalacja zakończona" -#: src/Common/LinuxKernel.vala:1180 src/Common/LinuxKernel.vala:1227 +#: src/Common/LinuxKernel.vala:1179 src/Common/LinuxKernel.vala:1226 msgid "Un-install completed with errors" msgstr "De-instalacja zakończona z błędami" -#: src/Common/LinuxKernel.vala:1193 +#: src/Common/LinuxKernel.vala:1192 msgid "" "This kernel is currently running and cannot be un-installed.\n" " Install another kernel before un-installing this one." diff --git a/po/ru.po b/po/ru.po index 25caa161..f79059ab 100644 --- a/po/ru.po +++ b/po/ru.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-08-23 18:06-0400\n" +"POT-Creation-Date: 2022-09-08 04:23-0400\n" "PO-Revision-Date: 2022-02-24 16:05+0300\n" "Last-Translator: Faust3000 (Original) | Danik2343 (Update Transaltion) " "\n" @@ -72,48 +72,48 @@ msgstr "Доступные пакеты" msgid "Packages Installed" msgstr "Установленные пакеты" -#: src/Common/LinuxKernel.vala:1015 +#: src/Common/LinuxKernel.vala:1014 msgid "Available Kernels" msgstr "Доступные ядра" -#: src/Common/LinuxKernel.vala:1022 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1021 src/Gtk/MainWindow.vala:186 msgid "Installed" msgstr "Установлено" -#: src/Common/LinuxKernel.vala:1022 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1021 src/Gtk/MainWindow.vala:186 #: src/Gtk/MainWindow.vala:628 src/Gtk/MainWindow.vala:642 msgid "Running" msgstr "Используется" -#: src/Common/LinuxKernel.vala:1059 +#: src/Common/LinuxKernel.vala:1058 msgid "Downloading" msgstr "Загрузка" -#: src/Common/LinuxKernel.vala:1078 +#: src/Common/LinuxKernel.vala:1077 #: src/Utility/Gtk/CustomMessageDialog.vala:148 #: src/Utility/Gtk/CustomMessageDialog.vala:152 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:1083 +#: src/Common/LinuxKernel.vala:1082 msgid "ERROR" msgstr "ОШИБКА" -#: src/Common/LinuxKernel.vala:1097 src/Gtk/MainWindow.vala:650 +#: src/Common/LinuxKernel.vala:1096 src/Gtk/MainWindow.vala:650 msgid "This kernel is already installed." msgstr "Это ядро уже установлено." -#: src/Common/LinuxKernel.vala:1123 +#: src/Common/LinuxKernel.vala:1122 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "Установка завершена. Обязательно выполните перезагрузку, чтобы использовать " "новое ядро." -#: src/Common/LinuxKernel.vala:1126 +#: src/Common/LinuxKernel.vala:1125 msgid "Installation completed with errors" msgstr "Установка завершена с ошибками" -#: src/Common/LinuxKernel.vala:1141 +#: src/Common/LinuxKernel.vala:1140 msgid "" "Selected kernel is currently running and cannot be un-installed.\n" " Install another kernel before un-installing this one." @@ -121,19 +121,19 @@ msgstr "" "Это ядро в настоящий момент работает и не может быть удалено.\n" " Установите другое ядро, прежде чем удалять его." -#: src/Common/LinuxKernel.vala:1146 +#: src/Common/LinuxKernel.vala:1145 msgid "Preparing to uninstall selected kernels" msgstr "Подготовка к деинсталляции выбранных ядер" -#: src/Common/LinuxKernel.vala:1177 src/Common/LinuxKernel.vala:1224 +#: src/Common/LinuxKernel.vala:1176 src/Common/LinuxKernel.vala:1223 msgid "Un-install completed" msgstr "Удаление завершено" -#: src/Common/LinuxKernel.vala:1180 src/Common/LinuxKernel.vala:1227 +#: src/Common/LinuxKernel.vala:1179 src/Common/LinuxKernel.vala:1226 msgid "Un-install completed with errors" msgstr "Удаление завершено с ошибками" -#: src/Common/LinuxKernel.vala:1193 +#: src/Common/LinuxKernel.vala:1192 msgid "" "This kernel is currently running and cannot be un-installed.\n" " Install another kernel before un-installing this one." diff --git a/po/sv.po b/po/sv.po index 66d0a73f..ac64dcc3 100644 --- a/po/sv.po +++ b/po/sv.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-08-23 18:06-0400\n" +"POT-Creation-Date: 2022-09-08 04:23-0400\n" "PO-Revision-Date: 2018-01-13 16:56+0100\n" "Last-Translator: Åke Engelbrektson \n" "Language-Team: Svenska Språkfiler \n" @@ -76,46 +76,46 @@ msgstr "Tillgängliga paket" msgid "Packages Installed" msgstr "Installerade paket" -#: src/Common/LinuxKernel.vala:1015 +#: src/Common/LinuxKernel.vala:1014 msgid "Available Kernels" msgstr "Tillgängliga kärnor" -#: src/Common/LinuxKernel.vala:1022 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1021 src/Gtk/MainWindow.vala:186 msgid "Installed" msgstr "Installerad" -#: src/Common/LinuxKernel.vala:1022 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1021 src/Gtk/MainWindow.vala:186 #: src/Gtk/MainWindow.vala:628 src/Gtk/MainWindow.vala:642 msgid "Running" msgstr "Körs" -#: src/Common/LinuxKernel.vala:1059 +#: src/Common/LinuxKernel.vala:1058 msgid "Downloading" msgstr "Laddar ner" -#: src/Common/LinuxKernel.vala:1078 +#: src/Common/LinuxKernel.vala:1077 #: src/Utility/Gtk/CustomMessageDialog.vala:148 #: src/Utility/Gtk/CustomMessageDialog.vala:152 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:1083 +#: src/Common/LinuxKernel.vala:1082 msgid "ERROR" msgstr "FEL" -#: src/Common/LinuxKernel.vala:1097 src/Gtk/MainWindow.vala:650 +#: src/Common/LinuxKernel.vala:1096 src/Gtk/MainWindow.vala:650 msgid "This kernel is already installed." msgstr "Denna kärna är redan installerad" -#: src/Common/LinuxKernel.vala:1123 +#: src/Common/LinuxKernel.vala:1122 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "Installation slutförd. Omstart krävs för att tillämpa den nya kärnan." -#: src/Common/LinuxKernel.vala:1126 +#: src/Common/LinuxKernel.vala:1125 msgid "Installation completed with errors" msgstr "Installation slutförd med fel" -#: src/Common/LinuxKernel.vala:1141 +#: src/Common/LinuxKernel.vala:1140 #, fuzzy msgid "" "Selected kernel is currently running and cannot be un-installed.\n" @@ -124,20 +124,20 @@ msgstr "" "Denna kärna används för tillfället och kan inte tas bort.\n" "Installera en annan kärna innan du tar bort den här." -#: src/Common/LinuxKernel.vala:1146 +#: src/Common/LinuxKernel.vala:1145 #, fuzzy msgid "Preparing to uninstall selected kernels" msgstr "Förbereder borttagning av markerade kärnor" -#: src/Common/LinuxKernel.vala:1177 src/Common/LinuxKernel.vala:1224 +#: src/Common/LinuxKernel.vala:1176 src/Common/LinuxKernel.vala:1223 msgid "Un-install completed" msgstr "Avinstallation slutförd" -#: src/Common/LinuxKernel.vala:1180 src/Common/LinuxKernel.vala:1227 +#: src/Common/LinuxKernel.vala:1179 src/Common/LinuxKernel.vala:1226 msgid "Un-install completed with errors" msgstr "Avinstallation slutförd med fel" -#: src/Common/LinuxKernel.vala:1193 +#: src/Common/LinuxKernel.vala:1192 #, fuzzy msgid "" "This kernel is currently running and cannot be un-installed.\n" diff --git a/po/tr.po b/po/tr.po index 3f0c9304..8d681963 100644 --- a/po/tr.po +++ b/po/tr.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-08-23 18:06-0400\n" +"POT-Creation-Date: 2022-09-08 04:23-0400\n" "PO-Revision-Date: 2022-08-06 16:48+0300\n" "Last-Translator: Sabri Ünal \n" "Language-Team: Türkçe \n" @@ -79,47 +79,47 @@ msgstr "Mevcut Paketler" msgid "Packages Installed" msgstr "Kurulu Paketler" -#: src/Common/LinuxKernel.vala:1015 +#: src/Common/LinuxKernel.vala:1014 msgid "Available Kernels" msgstr "Mevcut Çekirdekler" -#: src/Common/LinuxKernel.vala:1022 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1021 src/Gtk/MainWindow.vala:186 msgid "Installed" msgstr "Kurulu" -#: src/Common/LinuxKernel.vala:1022 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1021 src/Gtk/MainWindow.vala:186 #: src/Gtk/MainWindow.vala:628 src/Gtk/MainWindow.vala:642 msgid "Running" msgstr "Çalışıyor" -#: src/Common/LinuxKernel.vala:1059 +#: src/Common/LinuxKernel.vala:1058 msgid "Downloading" msgstr "İndiriliyor" -#: src/Common/LinuxKernel.vala:1078 +#: src/Common/LinuxKernel.vala:1077 #: src/Utility/Gtk/CustomMessageDialog.vala:148 #: src/Utility/Gtk/CustomMessageDialog.vala:152 msgid "OK" msgstr "Tamam" -#: src/Common/LinuxKernel.vala:1083 +#: src/Common/LinuxKernel.vala:1082 msgid "ERROR" msgstr "HATA" -#: src/Common/LinuxKernel.vala:1097 src/Gtk/MainWindow.vala:650 +#: src/Common/LinuxKernel.vala:1096 src/Gtk/MainWindow.vala:650 msgid "This kernel is already installed." msgstr "Bu çekirdek zaten kurulu." -#: src/Common/LinuxKernel.vala:1123 +#: src/Common/LinuxKernel.vala:1122 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "Kurulum tamamlandı. Yeni çekirdeği kullanmak için yeniden başlatma gerekiyor." -#: src/Common/LinuxKernel.vala:1126 +#: src/Common/LinuxKernel.vala:1125 msgid "Installation completed with errors" msgstr "Kurulum hatalarla tamamlandı" -#: src/Common/LinuxKernel.vala:1141 +#: src/Common/LinuxKernel.vala:1140 msgid "" "Selected kernel is currently running and cannot be un-installed.\n" " Install another kernel before un-installing this one." @@ -127,19 +127,19 @@ msgstr "" "Seçilen çekirdek şu anda çalışıyor ve kaldırılamaz.\n" " Bunu kaldırmadan önce başka bir çekirdek yükleyin." -#: src/Common/LinuxKernel.vala:1146 +#: src/Common/LinuxKernel.vala:1145 msgid "Preparing to uninstall selected kernels" msgstr "Seçilen çekirdekleri kaldırmaya hazırlanıyor" -#: src/Common/LinuxKernel.vala:1177 src/Common/LinuxKernel.vala:1224 +#: src/Common/LinuxKernel.vala:1176 src/Common/LinuxKernel.vala:1223 msgid "Un-install completed" msgstr "Kaldırma tamamlandı" -#: src/Common/LinuxKernel.vala:1180 src/Common/LinuxKernel.vala:1227 +#: src/Common/LinuxKernel.vala:1179 src/Common/LinuxKernel.vala:1226 msgid "Un-install completed with errors" msgstr "Kaldırma hatalarla tamamlandı" -#: src/Common/LinuxKernel.vala:1193 +#: src/Common/LinuxKernel.vala:1192 msgid "" "This kernel is currently running and cannot be un-installed.\n" " Install another kernel before un-installing this one." diff --git a/po/uk.po b/po/uk.po index 75ec93c2..dedecdc1 100644 --- a/po/uk.po +++ b/po/uk.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-08-23 18:06-0400\n" +"POT-Creation-Date: 2022-09-08 04:23-0400\n" "PO-Revision-Date: 2019-07-25 11:00+0300\n" "Last-Translator: Serhii Golovko \n" "Language-Team: Ukranian \n" @@ -73,47 +73,47 @@ msgstr "Доступні пакети" msgid "Packages Installed" msgstr "Встановлені пакети" -#: src/Common/LinuxKernel.vala:1015 +#: src/Common/LinuxKernel.vala:1014 msgid "Available Kernels" msgstr "Доступні ядра" -#: src/Common/LinuxKernel.vala:1022 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1021 src/Gtk/MainWindow.vala:186 msgid "Installed" msgstr "Встановлено" -#: src/Common/LinuxKernel.vala:1022 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1021 src/Gtk/MainWindow.vala:186 #: src/Gtk/MainWindow.vala:628 src/Gtk/MainWindow.vala:642 msgid "Running" msgstr "Використовується" -#: src/Common/LinuxKernel.vala:1059 +#: src/Common/LinuxKernel.vala:1058 msgid "Downloading" msgstr "Завантаження" -#: src/Common/LinuxKernel.vala:1078 +#: src/Common/LinuxKernel.vala:1077 #: src/Utility/Gtk/CustomMessageDialog.vala:148 #: src/Utility/Gtk/CustomMessageDialog.vala:152 msgid "OK" msgstr "Добре" -#: src/Common/LinuxKernel.vala:1083 +#: src/Common/LinuxKernel.vala:1082 msgid "ERROR" msgstr "ПОМИЛКА" -#: src/Common/LinuxKernel.vala:1097 src/Gtk/MainWindow.vala:650 +#: src/Common/LinuxKernel.vala:1096 src/Gtk/MainWindow.vala:650 msgid "This kernel is already installed." msgstr "Це ядро вже встановлено." -#: src/Common/LinuxKernel.vala:1123 +#: src/Common/LinuxKernel.vala:1122 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "Установка завершена. Для використання нового ядра потрібна перезавантаження." -#: src/Common/LinuxKernel.vala:1126 +#: src/Common/LinuxKernel.vala:1125 msgid "Installation completed with errors" msgstr "Установка завершена з помилками" -#: src/Common/LinuxKernel.vala:1141 +#: src/Common/LinuxKernel.vala:1140 #, fuzzy msgid "" "Selected kernel is currently running and cannot be un-installed.\n" @@ -122,20 +122,20 @@ msgstr "" "Це ядро зараз працює і не може бути видалено. \n" "Встановіть інше ядро, перш ніж видаляти його." -#: src/Common/LinuxKernel.vala:1146 +#: src/Common/LinuxKernel.vala:1145 #, fuzzy msgid "Preparing to uninstall selected kernels" msgstr "Підготовка до видалення вибраних ядер" -#: src/Common/LinuxKernel.vala:1177 src/Common/LinuxKernel.vala:1224 +#: src/Common/LinuxKernel.vala:1176 src/Common/LinuxKernel.vala:1223 msgid "Un-install completed" msgstr "Видалення завершено" -#: src/Common/LinuxKernel.vala:1180 src/Common/LinuxKernel.vala:1227 +#: src/Common/LinuxKernel.vala:1179 src/Common/LinuxKernel.vala:1226 msgid "Un-install completed with errors" msgstr "Видалення завершено з помилками" -#: src/Common/LinuxKernel.vala:1193 +#: src/Common/LinuxKernel.vala:1192 #, fuzzy msgid "" "This kernel is currently running and cannot be un-installed.\n" diff --git a/src/Common/LinuxKernel.vala b/src/Common/LinuxKernel.vala index 0f6eecc4..7b716d3b 100644 --- a/src/Common/LinuxKernel.vala +++ b/src/Common/LinuxKernel.vala @@ -995,9 +995,8 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { } } - if ((deb_header.length == 0) || (deb_header_all.length == 0) || (deb_image.length == 0)){ - mark_invalid(); - } + // if ((deb_header.length == 0) || (deb_header_all.length == 0) || (deb_image.length == 0)) + if (deb_image.length == 0) mark_invalid(); } catch (Error e) { log_error (e.message); From a925e8ad71384f8a42a85fbad2f99327aa79bbda Mon Sep 17 00:00:00 2001 From: muzena Date: Thu, 22 Sep 2022 12:09:26 +0200 Subject: [PATCH 182/567] Update Croatian translation --- po/hr.po | 40 ++++++++++++++-------------------------- 1 file changed, 14 insertions(+), 26 deletions(-) diff --git a/po/hr.po b/po/hr.po index f617cd88..042679b1 100644 --- a/po/hr.po +++ b/po/hr.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2022-09-08 04:23-0400\n" -"PO-Revision-Date: 2021-04-07 17:58+0200\n" +"PO-Revision-Date: 2022-09-22 12:07+0200\n" "Last-Translator: gogo \n" "Language-Team: Croatian \n" "Language: hr\n" @@ -11,7 +11,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2017-12-23 23:36+0000\n" -"X-Generator: Poedit 2.3\n" +"X-Generator: Poedit 3.0.1\n" #: src/Common/LinuxKernel.vala:88 msgid "Distribution" @@ -34,14 +34,12 @@ msgid "Could not find running kernel in list!" msgstr "Nemoguće je pronaći pokrenuti kernel na popisu!" #: src/Common/LinuxKernel.vala:617 -#, fuzzy msgid "Could not find any kernels to uninstall" -msgstr "Nema pronađenih kernela za uklanjanje" +msgstr "Nema pronađenih kernela za deinstaliranje" #: src/Common/LinuxKernel.vala:626 -#, fuzzy msgid "The following kernels will be uninstalled:" -msgstr "Sljedeći kerneli će biti uklonjeni:" +msgstr "Sljedeći kerneli će biti deinstalirani:" #: src/Common/LinuxKernel.vala:633 msgid "Continue ?" @@ -115,18 +113,16 @@ msgid "Installation completed with errors" msgstr "Instalacija je završena s greškama" #: src/Common/LinuxKernel.vala:1140 -#, fuzzy msgid "" "Selected kernel is currently running and cannot be un-installed.\n" " Install another kernel before un-installing this one." msgstr "" -"Odabrani kernel je trenutno pokernut i ne može se ukloniti.\n" +"Odabrani kernel je trenutno pokernut i ne može se deinstalirati.\n" " Instalirajte drugi kernel prije uklanjanja trenutnog kernela." #: src/Common/LinuxKernel.vala:1145 -#, fuzzy msgid "Preparing to uninstall selected kernels" -msgstr "Pripremanje uklanjanja odabranih kernela" +msgstr "Pripremanje deinstalacije odabranih kernela" #: src/Common/LinuxKernel.vala:1176 src/Common/LinuxKernel.vala:1223 msgid "Un-install completed" @@ -137,12 +133,11 @@ msgid "Un-install completed with errors" msgstr "Deinstalacija završena s greškama" #: src/Common/LinuxKernel.vala:1192 -#, fuzzy msgid "" "This kernel is currently running and cannot be un-installed.\n" " Install another kernel before un-installing this one." msgstr "" -"Ovaj kernel je trenutno pokrenut i ne može se ukloniti.\n" +"Ovaj kernel je trenutno pokrenut i ne može se deinstalirati.\n" " Instalirajte drugi kernel prije uklanjanja trenutnog kernela." #: src/Common/Main.vala:241 @@ -195,14 +190,12 @@ msgid "Install specified mainline kernel" msgstr "Instaliraj određeni mainline kernel" #: src/Console/AppConsole.vala:73 -#, fuzzy msgid "Uninstall specified kernel" -msgstr "Ukloni određene kernele" +msgstr "Deinstaliraj određene kernele" #: src/Console/AppConsole.vala:74 -#, fuzzy msgid "Uninstall kernels older than the running kernel" -msgstr "Ukloni instalirane kernele starije od pokrenutog krenela" +msgstr "Deinstaliraj starije kernele od trenutno pokrenutog krenela" #: src/Console/AppConsole.vala:75 msgid "Download specified kernels" @@ -217,9 +210,8 @@ msgid "Options" msgstr "Mogućnosti" #: src/Console/AppConsole.vala:80 -#, fuzzy msgid "Include unstable and RC releases" -msgstr "Sakrij nestabilne kernele i predizdanja" +msgstr "Uključi predizdanja i nestabilne kernele" #: src/Console/AppConsole.vala:81 src/Gtk/SettingsDialog.vala:163 msgid "Hide unstable and RC releases" @@ -344,14 +336,12 @@ msgid "Select the kernel to install" msgstr "Odaberi kernel za instalaciju" #: src/Gtk/MainWindow.vala:347 -#, fuzzy msgid "Uninstall" -msgstr "Instaliraj" +msgstr "Ukloni" #: src/Gtk/MainWindow.vala:353 -#, fuzzy msgid "Select the kernels to uninstall" -msgstr "Odaberi kernel za instalaciju" +msgstr "Odaberi kernel za uklanjanje" #: src/Gtk/MainWindow.vala:383 src/Gtk/MainWindow.vala:417 #: src/Gtk/MainWindow.vala:687 @@ -359,14 +349,12 @@ msgid "Close window to exit..." msgstr "Zatvori prozor i izađi..." #: src/Gtk/MainWindow.vala:391 -#, fuzzy msgid "Uninstall Old" -msgstr "Deinstalacija završena" +msgstr "Deinstaliraj stare" #: src/Gtk/MainWindow.vala:392 -#, fuzzy msgid "Uninstall kernels older than running kernel" -msgstr "Ukloni instalirane kernele starije od pokrenutog krenela" +msgstr "Deinstaliraj kernele starije od pokrenutog krenela" #: src/Gtk/MainWindow.vala:424 msgid "Changes" From 49b57eabd47639e52633b9bde49c6da0e7da7227 Mon Sep 17 00:00:00 2001 From: gogogogi Date: Thu, 22 Sep 2022 12:14:03 +0200 Subject: [PATCH 183/567] Add files via upload --- po/hr.po | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/po/hr.po b/po/hr.po index 042679b1..9e0a0976 100644 --- a/po/hr.po +++ b/po/hr.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2022-09-08 04:23-0400\n" -"PO-Revision-Date: 2022-09-22 12:07+0200\n" +"PO-Revision-Date: 2022-09-22 12:13+0200\n" "Last-Translator: gogo \n" "Language-Team: Croatian \n" "Language: hr\n" @@ -337,11 +337,11 @@ msgstr "Odaberi kernel za instalaciju" #: src/Gtk/MainWindow.vala:347 msgid "Uninstall" -msgstr "Ukloni" +msgstr "Deinstaliraj" #: src/Gtk/MainWindow.vala:353 msgid "Select the kernels to uninstall" -msgstr "Odaberi kernel za uklanjanje" +msgstr "Odaberi kernel za deinstalaciju" #: src/Gtk/MainWindow.vala:383 src/Gtk/MainWindow.vala:417 #: src/Gtk/MainWindow.vala:687 @@ -350,7 +350,7 @@ msgstr "Zatvori prozor i izađi..." #: src/Gtk/MainWindow.vala:391 msgid "Uninstall Old" -msgstr "Deinstaliraj stare" +msgstr "Deinstaliraj staro" #: src/Gtk/MainWindow.vala:392 msgid "Uninstall kernels older than running kernel" From ddfb2f3a548d887e17d0ccba8ee14d435165c1b3 Mon Sep 17 00:00:00 2001 From: Kevin Kim Date: Wed, 28 Sep 2022 11:59:23 +0900 Subject: [PATCH 184/567] Update Korean translation --- po/ko.po | 44 ++++++++++++++------------------------------ 1 file changed, 14 insertions(+), 30 deletions(-) diff --git a/po/ko.po b/po/ko.po index ca2cb5ab..5bdf9a38 100644 --- a/po/ko.po +++ b/po/ko.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: mainline 1.0.14\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2022-09-08 04:23-0400\n" -"PO-Revision-Date: 2021-06-01 14:57+0900\n" +"PO-Revision-Date: 2022-09-28 11:48+0900\n" "Last-Translator: Kevin Kim \n" "Language-Team: Korean\n" "Language: ko\n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Poedit 2.3\n" +"X-Generator: Poedit 3.0.1\n" #: src/Common/LinuxKernel.vala:88 msgid "Distribution" @@ -32,19 +32,17 @@ msgstr "목록 가져오기..." #: src/Common/LinuxKernel.vala:355 msgid "Fetching index from kernel.ubuntu.com..." -msgstr "kernel.ubuntu.com 에서 목록을 가져오는 중입니다..." +msgstr "최신 커널 목록을 가져오는 중입니다..." #: src/Common/LinuxKernel.vala:611 msgid "Could not find running kernel in list!" msgstr "목록에서 사용중인 커널을 찾을 수 없습니다!" #: src/Common/LinuxKernel.vala:617 -#, fuzzy msgid "Could not find any kernels to uninstall" msgstr "삭제할 커널을 찾을 수 없습니다" #: src/Common/LinuxKernel.vala:626 -#, fuzzy msgid "The following kernels will be uninstalled:" msgstr "아래 커널이 삭제됩니다:" @@ -66,7 +64,6 @@ msgid "No updates found" msgstr "업데이트를 찾을 수 없습니다" #: src/Common/LinuxKernel.vala:688 -#, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "커널 %s 버전을 설치하시겠습니까? (y/n): " @@ -118,7 +115,6 @@ msgid "Installation completed with errors" msgstr "오류가 있으나 설치가 완료되었습니다" #: src/Common/LinuxKernel.vala:1140 -#, fuzzy msgid "" "Selected kernel is currently running and cannot be un-installed.\n" " Install another kernel before un-installing this one." @@ -127,7 +123,6 @@ msgstr "" " 이 커널을 삭제하려면 다른 커널을 먼저 설치하세요." #: src/Common/LinuxKernel.vala:1145 -#, fuzzy msgid "Preparing to uninstall selected kernels" msgstr "선택한 커널을 삭제하기 위해 준비중입니다" @@ -140,7 +135,6 @@ msgid "Un-install completed with errors" msgstr "오류가 있으나 삭제가 완료되었습니다" #: src/Common/LinuxKernel.vala:1192 -#, fuzzy msgid "" "This kernel is currently running and cannot be un-installed.\n" " Install another kernel before un-installing this one." @@ -157,7 +151,6 @@ msgid "Notifications are disabled" msgstr "알림이 비활성화 되었습니다" #: src/Common/Package.vala:134 src/Common/Package.vala:198 -#, c-format msgid "File not found: %s" msgstr "%s 파일을 찾을 수 없습니다" @@ -198,12 +191,10 @@ msgid "Install specified mainline kernel" msgstr "지정한 메인라인 커널 설치" #: src/Console/AppConsole.vala:73 -#, fuzzy msgid "Uninstall specified kernel" msgstr "지정한 커널 삭제" #: src/Console/AppConsole.vala:74 -#, fuzzy msgid "Uninstall kernels older than the running kernel" msgstr "현재 사용중인 커널보다 이전 버전의 설치된 커널을 제거" @@ -220,13 +211,12 @@ msgid "Options" msgstr "옵션" #: src/Console/AppConsole.vala:80 -#, fuzzy msgid "Include unstable and RC releases" -msgstr "unstable, RC 릴리즈 숨김" +msgstr "목록에서 unstable, RC 버전 포함" #: src/Console/AppConsole.vala:81 src/Gtk/SettingsDialog.vala:163 msgid "Hide unstable and RC releases" -msgstr "unstable, RC 릴리즈 숨김" +msgstr "목록에서 unstable, RC 버전 포함" #: src/Console/AppConsole.vala:82 msgid "Enable verbose debugging output" @@ -245,8 +235,7 @@ msgid "A version string taken from the output of --list" msgstr "--list 의 출력에서 가져온 버전 문자열" #: src/Console/AppConsole.vala:88 -msgid "" -"One or more version strings (comma-separated) taken from the output of --list" +msgid "One or more version strings (comma-separated) taken from the output of --list" msgstr "--list 의 출력에서 가져온 하나 이상의 버전 문자열 (쉼표로 구분)" #: src/Console/AppConsole.vala:169 src/Gtk/AppGtk.vala:136 @@ -291,7 +280,6 @@ msgid "Show" msgstr "보이기" #: src/Console/AppConsole.vala:365 src/Console/AppConsole.vala:377 -#, c-format msgid "Kernel %s Available" msgstr "커널 %s 사용 가능" @@ -346,14 +334,12 @@ msgid "Select the kernel to install" msgstr "설치할 커널 선택" #: src/Gtk/MainWindow.vala:347 -#, fuzzy msgid "Uninstall" -msgstr "설치" +msgstr "삭제" #: src/Gtk/MainWindow.vala:353 -#, fuzzy msgid "Select the kernels to uninstall" -msgstr "설치할 커널 선택" +msgstr "삭제할 커널 선택" #: src/Gtk/MainWindow.vala:383 src/Gtk/MainWindow.vala:417 #: src/Gtk/MainWindow.vala:687 @@ -361,14 +347,12 @@ msgid "Close window to exit..." msgstr "창을 닫고 종료..." #: src/Gtk/MainWindow.vala:391 -#, fuzzy msgid "Uninstall Old" -msgstr "삭제가 완료되었습니다" +msgstr "오래된 커널 제거" #: src/Gtk/MainWindow.vala:392 -#, fuzzy msgid "Uninstall kernels older than running kernel" -msgstr "현재 사용중인 커널보다 이전 버전의 설치된 커널을 제거" +msgstr "현재 사용 중인 커널보다 이전 버전의 커널을 제거" #: src/Gtk/MainWindow.vala:424 msgid "Changes" @@ -396,7 +380,7 @@ msgstr "" #: src/Gtk/MainWindow.vala:525 src/Gtk/MainWindow.vala:655 msgid "Internet connection is not active." -msgstr "인터넷 연결을 확인하세요" +msgstr "인터넷 연결을 확인하세요." #: src/Gtk/MainWindow.vala:544 msgid "Refreshing..." @@ -457,7 +441,7 @@ msgstr "보이기" #: src/Gtk/SettingsDialog.vala:177 msgid "Show N previous major versions " -msgstr "보여질 이전 메이저 버전 수" +msgstr "보여 질 이전 메이저 버전 수 " #: src/Gtk/SettingsDialog.vala:192 msgid "Other" @@ -485,7 +469,7 @@ msgstr "닫기" #: src/Utility/Gtk/AboutWindow.vala:271 src/Utility/Gtk/AboutWindow.vala:288 msgid "Credits" -msgstr "" +msgstr "제작자" #: src/Utility/Gtk/AboutWindow.vala:284 msgid "Back" @@ -513,7 +497,7 @@ msgstr "문서작성" #: src/Utility/Gtk/AboutWindow.vala:353 msgid "Third Party Inclusions" -msgstr "" +msgstr "서드파티 포함" #: src/Utility/Gtk/CustomMessageDialog.vala:157 msgid "Yes" From e6c4ca8bc6202e9b4e618c9cca28e1503704d2f7 Mon Sep 17 00:00:00 2001 From: cappelikan Date: Thu, 20 Oct 2022 06:03:33 +0300 Subject: [PATCH 185/567] Update uk.po update translation uk.po --- po/uk.po | 51 ++++++++++++--------------------------------------- 1 file changed, 12 insertions(+), 39 deletions(-) diff --git a/po/uk.po b/po/uk.po index dedecdc1..84ad795a 100644 --- a/po/uk.po +++ b/po/uk.po @@ -34,12 +34,10 @@ msgid "Could not find running kernel in list!" msgstr "Не вдалося знайти запущене ядро у списку!" #: src/Common/LinuxKernel.vala:617 -#, fuzzy msgid "Could not find any kernels to uninstall" msgstr "Не вдалося знайти жодне ядро для вилучення" #: src/Common/LinuxKernel.vala:626 -#, fuzzy msgid "The following kernels will be uninstalled:" msgstr "Наступні ядра будуть видалені:" @@ -61,7 +59,7 @@ msgid "No updates found" msgstr "Оновлень не знайдено" #: src/Common/LinuxKernel.vala:688 -#, fuzzy, c-format +#, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Встановити Ядро Версії %s ? (так/ні): " @@ -114,7 +112,6 @@ msgid "Installation completed with errors" msgstr "Установка завершена з помилками" #: src/Common/LinuxKernel.vala:1140 -#, fuzzy msgid "" "Selected kernel is currently running and cannot be un-installed.\n" " Install another kernel before un-installing this one." @@ -123,7 +120,6 @@ msgstr "" "Встановіть інше ядро, перш ніж видаляти його." #: src/Common/LinuxKernel.vala:1145 -#, fuzzy msgid "Preparing to uninstall selected kernels" msgstr "Підготовка до видалення вибраних ядер" @@ -136,7 +132,6 @@ msgid "Un-install completed with errors" msgstr "Видалення завершено з помилками" #: src/Common/LinuxKernel.vala:1192 -#, fuzzy msgid "" "This kernel is currently running and cannot be un-installed.\n" " Install another kernel before un-installing this one." @@ -149,7 +144,6 @@ msgid "Called from" msgstr "Викликано з" #: src/Common/Main.vala:275 -#, fuzzy msgid "Notifications are disabled" msgstr "Повідомлення вимкнено" @@ -195,17 +189,14 @@ msgid "Install specified mainline kernel" msgstr "Встановіть конкретне основне ядро" #: src/Console/AppConsole.vala:73 -#, fuzzy msgid "Uninstall specified kernel" msgstr "Видаліть конкретні ядра" #: src/Console/AppConsole.vala:74 -#, fuzzy msgid "Uninstall kernels older than the running kernel" msgstr "Видаліть ядра, старші за запущене ядро" #: src/Console/AppConsole.vala:75 -#, fuzzy msgid "Download specified kernels" msgstr "Завантажте конкретні ядра" @@ -218,7 +209,6 @@ msgid "Options" msgstr "Параметри" #: src/Console/AppConsole.vala:80 -#, fuzzy msgid "Include unstable and RC releases" msgstr "Включати нестабільні і RC" @@ -243,7 +233,6 @@ msgid "A version string taken from the output of --list" msgstr "Рядок версій, взятий з виводу --list" #: src/Console/AppConsole.vala:88 -#, fuzzy msgid "" "One or more version strings (comma-separated) taken from the output of --list" msgstr "Одна або кілька рядків версії (розділені комами) з виводу --list" @@ -254,12 +243,10 @@ msgstr "Невідомий параметр" #: src/Console/AppConsole.vala:171 src/Console/AppConsole.vala:265 #: src/Console/AppConsole.vala:294 -#, fuzzy msgid "Run" msgstr "Запуск" #: src/Console/AppConsole.vala:171 -#, fuzzy msgid "to list all options" msgstr "Показати усі параметри" @@ -284,7 +271,6 @@ msgid "Command not specified" msgstr "Команда не вказана" #: src/Console/AppConsole.vala:294 -#, fuzzy msgid "to list all commands" msgstr "щоб відобразити всі команди" @@ -293,9 +279,9 @@ msgid "Show" msgstr "Показати" #: src/Console/AppConsole.vala:365 src/Console/AppConsole.vala:377 -#, fuzzy, c-format +#, c-format msgid "Kernel %s Available" -msgstr "Доступне ядро %s" +msgstr "Ядро %s Доступне" #: src/Console/AppConsole.vala:367 src/Console/AppConsole.vala:379 #: src/Gtk/MainWindow.vala:330 @@ -348,12 +334,10 @@ msgid "Select the kernel to install" msgstr "Виберіть ядро для встановлення" #: src/Gtk/MainWindow.vala:347 -#, fuzzy msgid "Uninstall" msgstr "Видалити" #: src/Gtk/MainWindow.vala:353 -#, fuzzy msgid "Select the kernels to uninstall" msgstr "Виберіть ядро для встановлення" @@ -363,12 +347,10 @@ msgid "Close window to exit..." msgstr "Закрийте вікно, щоб вийти..." #: src/Gtk/MainWindow.vala:391 -#, fuzzy msgid "Uninstall Old" msgstr "Видалити старе" #: src/Gtk/MainWindow.vala:392 -#, fuzzy msgid "Uninstall kernels older than running kernel" msgstr "Видалити ядра, старіші за запущене ядро" @@ -389,17 +371,14 @@ msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Програма оновлення ядра для дистрибутивів на базі Ubuntu" #: src/Gtk/MainWindow.vala:504 -#, fuzzy msgid "Forked" msgstr "Двоєний" #: src/Gtk/MainWindow.vala:504 -#, fuzzy msgid "Original" msgstr "Оригінал" #: src/Gtk/MainWindow.vala:525 src/Gtk/MainWindow.vala:655 -#, fuzzy msgid "Internet connection is not active." msgstr "Інтернет з'єднання не активно." @@ -408,12 +387,10 @@ msgid "Refreshing..." msgstr "Оновлення..." #: src/Gtk/MainWindow.vala:638 -#, fuzzy msgid "available" msgstr "доступний" #: src/Gtk/MainWindow.vala:650 -#, fuzzy msgid "Already Installed" msgstr "Вже встановлено" @@ -455,7 +432,6 @@ msgid "Week(s)" msgstr "Тиждень(ні)" #: src/Gtk/SettingsDialog.vala:149 -#, fuzzy msgid "Second(s)" msgstr "Секунда(и)" @@ -520,9 +496,8 @@ msgid "Documenters" msgstr "Документатори" #: src/Utility/Gtk/AboutWindow.vala:353 -#, fuzzy msgid "Third Party Inclusions" -msgstr "Сторонні Розробники" +msgstr "Включення третіх осіб" #: src/Utility/Gtk/CustomMessageDialog.vala:157 msgid "Yes" @@ -537,18 +512,16 @@ msgid "Missing Icon" msgstr "Нема значка" #: src/Utility/TeeJee.FileSystem.vala:71 -#, fuzzy msgid "File deleted" msgstr "Файл видалено" #: src/Utility/TeeJee.FileSystem.vala:76 src/Utility/TeeJee.FileSystem.vala:256 -#, fuzzy msgid "Failed to delete file" -msgstr "Невдалося видалити файл" +msgstr "Не вдалося видалити файл" #: src/Utility/TeeJee.FileSystem.vala:96 msgid "Failed to read file" -msgstr "Невдалося прочитати файл" +msgstr "Не вдалося прочитати файл" #: src/Utility/TeeJee.FileSystem.vala:123 msgid "File saved" @@ -556,15 +529,15 @@ msgstr "Файл збережено" #: src/Utility/TeeJee.FileSystem.vala:129 msgid "Failed to write file" -msgstr "Невдалося записати файл" +msgstr "Не вдалося записати файл" #: src/Utility/TeeJee.FileSystem.vala:141 msgid "File copied" -msgstr "Невдалося скопіювати файл" +msgstr "Не вдалося скопіювати файл" #: src/Utility/TeeJee.FileSystem.vala:148 msgid "Failed to copy file" -msgstr "Невдалося скопіювати файл" +msgstr "Не вдалося скопіювати файл" #: src/Utility/TeeJee.FileSystem.vala:157 msgid "File not found" @@ -576,7 +549,7 @@ msgstr "Файл переміщено" #: src/Utility/TeeJee.FileSystem.vala:176 msgid "Failed to move file" -msgstr "Невдалося перемістити файл" +msgstr "Не вдалося перемістити файл" #: src/Utility/TeeJee.FileSystem.vala:233 #: src/Utility/TeeJee.FileSystem.vala:236 @@ -585,7 +558,7 @@ msgstr "Створений каталог" #: src/Utility/TeeJee.FileSystem.vala:243 msgid "Failed to create dir" -msgstr "Невдалося створити теку" +msgstr "Не вдалося створити теку" #: src/Utility/TeeJee.FileSystem.vala:255 msgid "Deleted" @@ -597,4 +570,4 @@ msgstr "E" #: src/Utility/TeeJee.Logging.vala:84 msgid "D" -msgstr "" +msgstr "D" From 396eac8cd94302606150a2551b6d490fbfd454e8 Mon Sep 17 00:00:00 2001 From: cappelikan Date: Thu, 20 Oct 2022 06:16:25 +0300 Subject: [PATCH 186/567] Update uk.po update translate uk.po --- po/uk.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/uk.po b/po/uk.po index dedecdc1..eb0b5df5 100644 --- a/po/uk.po +++ b/po/uk.po @@ -465,7 +465,7 @@ msgstr "Показ" #: src/Gtk/SettingsDialog.vala:177 msgid "Show N previous major versions " -msgstr "Показати N попередніх основних версій" +msgstr "Показати N попередніх основних версій " #: src/Gtk/SettingsDialog.vala:192 msgid "Other" From 782945f9acb292e7c5eb9e99fec5651fd2a148a2 Mon Sep 17 00:00:00 2001 From: Richard Eklycke Date: Sat, 29 Oct 2022 13:56:46 +0200 Subject: [PATCH 187/567] Let major version of oldest installed kernel determine baseline Based on the confusion I've read in recent bug reports, this is an attempt to improve the default behavior of mainline-gtk with respect to what kernel versions it chooses to display by default. The idea here is to let the oldest installed kernel version help determine what range of versions to display by default. For example, if the oldest installed version is 5.4, then it will by default display all versions starting from 5.0 and newer. If you want more versions displayed, you can still use the old option of showing N previous major versions. If the oldest version cannot be determined by querying the packaging manager, the version of the current running kernel will be used. --- src/Common/LinuxKernel.vala | 60 ++++++++++++++++++++----------------- 1 file changed, 33 insertions(+), 27 deletions(-) diff --git a/src/Common/LinuxKernel.vala b/src/Common/LinuxKernel.vala index 7b716d3b..11398b7e 100644 --- a/src/Common/LinuxKernel.vala +++ b/src/Common/LinuxKernel.vala @@ -232,18 +232,8 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { progress_total = 0; progress_count = 0; - // scan for highest major - // this is only preliminary because we have to re-scan after the downloads to account for failed builds - highest_maj = 0; - foreach(var k in kernel_list){ - //log_debug("k.version_maj = %d".printf(k.version_maj)); - if (!k.is_valid) continue; // we don't actually know this for sure at this point, but go ahead and check it because it might be cached - if (App.hide_unstable && k.is_unstable) continue; - if (k.version_maj > highest_maj){ - highest_maj = k.version_maj; - log_debug("highest_maj = %d".printf(highest_maj)); - } - } + // By default, display all kernels belonging to the oldest major version installed and up + highest_maj = find_lowest_major_version_installed(); // determine the size of the job for the percent-done display foreach(var k in kernel_list){ @@ -317,20 +307,6 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { foreach(var k in kernels_to_update) k.load_cached_page(); } - // Rescan for highest major after fetching the per-kernel index.htmls, because k.is_valid was unknown until now. (might or might not have been cached) - // "show previous N majors = 0" combined with a new major that has only failed builds yet, results in an empty list. - // This re-scan detects that condition and results in displaying the previous major instead of an empty list. - highest_maj = 0; - foreach(var k in kernel_list){ - //log_debug("k.version_maj = %d".printf(k.version_maj)); - if (!k.is_valid) continue; - if (App.hide_unstable && k.is_unstable) continue; - if (k.version_maj > highest_maj){ - highest_maj = k.version_maj; - log_debug("highest_maj = %d".printf(highest_maj)); - } - } - check_installed(); //check_updates("query_thread()"); @@ -416,7 +392,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { // k.is_running = false; // } - pkg_list_installed = Package.query_installed_packages(); + fetch_pkg_list_installed(); var pkg_versions = new Gee.ArrayList(); @@ -698,7 +674,37 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { } // helpers + + public static void fetch_pkg_list_installed(){ + if (pkg_list_installed == null){ + pkg_list_installed = Package.query_installed_packages(); + } + } + + public static int find_lowest_major_version_installed(){ + fetch_pkg_list_installed(); + + int? major_version = null; + foreach(var pkg in pkg_list_installed.values){ + if (!pkg.pname.contains("linux-image") || !pkg.is_installed){ + continue; + } + + bool is_mainline = false; // Not important here, just set whatever + var candidate = new LinuxKernel(pkg.version_installed, is_mainline); + if (major_version == null || candidate.version_maj < major_version){ + major_version = candidate.version_maj; + } + } + + if (major_version == null){ + major_version = new LinuxKernel.from_version(RUNNING_KERNEL).version_maj; + } + + return major_version; + } + public void split_version_string(string _version_string, out string ver_main){ ver_main = ""; version_maj = 0; From 158059fbd328682357ebf3851d5638a0bd2f680b Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Fri, 11 Nov 2022 20:51:26 -0500 Subject: [PATCH 188/567] TRANSLATORS file not automatically updating, clean up .po headers & fix translator credits --- AUTHORS | 14 +++++---- Makefile | 7 +++-- TRANSLATORS | 7 +++-- po/de.po | 75 +++++++++++++++++++++++++++---------------------- po/es.po | 54 +++++++++++++++++------------------ po/fr.po | 54 +++++++++++++++++------------------ po/hr.po | 56 ++++++++++++++++++------------------ po/it.po | 64 +++++++++++++++++++---------------------- po/ko.po | 65 +++++++++++++++++++++--------------------- po/messages.pot | 64 +++++++++++++++++++---------------------- po/nl.po | 56 ++++++++++++++++++------------------ po/pl.po | 54 +++++++++++++++++------------------ po/ru.po | 59 +++++++++++++++++++------------------- po/sv.po | 56 ++++++++++++++++++------------------ po/tr.po | 63 ++++++++++++++++++----------------------- po/uk.po | 56 ++++++++++++++++++------------------ 16 files changed, 399 insertions(+), 405 deletions(-) diff --git a/AUTHORS b/AUTHORS index d9816706..b37c4b19 100644 --- a/AUTHORS +++ b/AUTHORS @@ -1,7 +1,11 @@ -Tony George first version of all files -Steven G revisions to SettingsDialog.vala Main.vala TeeJee.System.vala -Cloyce D. Spradling revisions to LinuxKernel.vala AppConsole.vala -Brian K. White revisions to many files +Brian K. White forked "ukuu" to "mainline" 2019-present +Tony George "ukuu" original author +shg8@github net connection check +cloyce@github rc kernels option +sylt@github better lowest displayed version scheme -3rd party inclusions: +Inclusions: notify-send.sh https://github.com/bkw777/notify-send.sh + +Translators: + see file TRANSLATORS diff --git a/Makefile b/Makefile index d740e03a..ef29705c 100644 --- a/Makefile +++ b/Makefile @@ -61,12 +61,12 @@ deb_file = release/deb/$(BRANDING_SHORTNAME)_$(pkg_version).$(DEB_BUILD_NUMBER)_ .PHONY: all all: $(BRANDING_SHORTNAME) $(BRANDING_SHORTNAME)-gtk -$(BRANDING_SHORTNAME)-gtk: $(misc_files) $(common_vala_files) $(gui_vala_files) $(po_files) +$(BRANDING_SHORTNAME)-gtk: $(misc_files) $(common_vala_files) $(gui_vala_files) translations valac --enable-deprecated -X -w $(build_symbols) --Xcc="-lm" \ --pkg $(glib) --pkg $(gio-unix) --pkg posix --pkg $(gee) --pkg $(json-glib) --pkg $(gtk+) --pkg $(vte) \ $(common_vala_files) $(gui_vala_files) -o $(@) -$(BRANDING_SHORTNAME): $(misc_files) $(common_vala_files) $(tui_vala_files) $(po_files) +$(BRANDING_SHORTNAME): $(misc_files) $(common_vala_files) $(tui_vala_files) translations valac --enable-deprecated -X -w $(build_symbols) --Xcc="-lm" \ --pkg $(glib) --pkg $(gio-unix) --pkg posix --pkg $(gee) --pkg $(json-glib) \ $(common_vala_files) $(tui_vala_files) -o $(@) @@ -99,6 +99,9 @@ $(po_files): %: $(pot_file) TRANSLATORS: $(po_files) grep '^"Last-Translator: ' $(po_files) |while IFS='/.:' read x l x x n ;do echo "$${l}:$${n%\n*}" ;done >$(@) +.PHONY: translations +translations: TRANSLATORS + .PHONY: clean clean: rm -rfv release *.c *.o diff --git a/TRANSLATORS b/TRANSLATORS index e8ca02d1..2ca427d8 100644 --- a/TRANSLATORS +++ b/TRANSLATORS @@ -1,11 +1,12 @@ +de: Tobias W es: Adolfo Jayme Barrientos fr: Yolateng0 hr: gogo it: Albano Battistella ko: Kevin Kim nl: Heimen Stoffels -pl: Waldemar Konik , Viktor Sokyrko -ru: Faust3000 +pl: Viktor Sokyrko +ru: Danik2343 sv: Åke Engelbrektson -tr: Gökhan GÖKKAYA , Sabri Ünal +tr: Sabri Ünal uk: Serhii Golovko diff --git a/po/de.po b/po/de.po index cfeb4466..903b1a8a 100644 --- a/po/de.po +++ b/po/de.po @@ -2,9 +2,9 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-08-23 18:06-0400\n" +"POT-Creation-Date: 2022-11-11 18:43-0500\n" "PO-Revision-Date: 2018-01-03 02:03-0600\n" -"Last-Translator: Tobias w \n" "Language-Team: German\n" "Language: de\n" "MIME-Version: 1.0\n" @@ -21,116 +21,119 @@ msgstr "Distribution" msgid "Architecture" msgstr "Architektur" -#: src/Common/LinuxKernel.vala:304 +#: src/Common/LinuxKernel.vala:294 msgid "Fetching index..." msgstr "Index abrufen..." -#: src/Common/LinuxKernel.vala:355 +#: src/Common/LinuxKernel.vala:331 msgid "Fetching index from kernel.ubuntu.com..." msgstr "Holt den Index von kernel.ubuntu.com..." -#: src/Common/LinuxKernel.vala:611 +#: src/Common/LinuxKernel.vala:587 msgid "Could not find running kernel in list!" msgstr "Konnte keinen laufenden Kernel in der Liste finden!" -#: src/Common/LinuxKernel.vala:617 +#: src/Common/LinuxKernel.vala:593 msgid "Could not find any kernels to uninstall" msgstr "Es konnten keine Kernel zum Deinstallieren gefunden werden" -#: src/Common/LinuxKernel.vala:626 +#: src/Common/LinuxKernel.vala:602 msgid "The following kernels will be uninstalled:" msgstr "Die folgenden Kernel werden deinstalliert:" -#: src/Common/LinuxKernel.vala:633 +#: src/Common/LinuxKernel.vala:609 msgid "Continue ?" msgstr "Weiter ?" -#: src/Common/LinuxKernel.vala:659 src/Console/AppConsole.vala:314 +#: src/Common/LinuxKernel.vala:635 src/Console/AppConsole.vala:314 msgid "Latest update" msgstr "Neustes Update" -#: src/Common/LinuxKernel.vala:670 src/Console/AppConsole.vala:321 +#: src/Common/LinuxKernel.vala:646 src/Console/AppConsole.vala:321 msgid "Latest point update" msgstr "Letzte Punktaktualisierung" -#: src/Common/LinuxKernel.vala:678 src/Console/AppConsole.vala:326 +#: src/Common/LinuxKernel.vala:654 src/Console/AppConsole.vala:326 #: src/Console/AppConsole.vala:387 msgid "No updates found" msgstr "Keine Updates gefunden" -#: src/Common/LinuxKernel.vala:688 +#: src/Common/LinuxKernel.vala:664 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Kernel-Version %s installieren? (j/n):" -#: src/Common/LinuxKernel.vala:926 +#: src/Common/LinuxKernel.vala:932 msgid "Packages Available" msgstr "Verfügbare Pakete" -#: src/Common/LinuxKernel.vala:934 +#: src/Common/LinuxKernel.vala:940 msgid "Packages Installed" msgstr "Installierte Packete" -#: src/Common/LinuxKernel.vala:1015 +#: src/Common/LinuxKernel.vala:1020 msgid "Available Kernels" msgstr "Verfügbare Kernels" -#: src/Common/LinuxKernel.vala:1022 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1027 src/Gtk/MainWindow.vala:186 msgid "Installed" msgstr "Installiert" -#: src/Common/LinuxKernel.vala:1022 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1027 src/Gtk/MainWindow.vala:186 #: src/Gtk/MainWindow.vala:628 src/Gtk/MainWindow.vala:642 msgid "Running" msgstr "Läuft" -#: src/Common/LinuxKernel.vala:1059 +#: src/Common/LinuxKernel.vala:1064 msgid "Downloading" msgstr "Downloaded" -#: src/Common/LinuxKernel.vala:1078 +#: src/Common/LinuxKernel.vala:1083 #: src/Utility/Gtk/CustomMessageDialog.vala:148 #: src/Utility/Gtk/CustomMessageDialog.vala:152 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:1083 +#: src/Common/LinuxKernel.vala:1088 msgid "ERROR" msgstr "Fehler" -#: src/Common/LinuxKernel.vala:1097 src/Gtk/MainWindow.vala:650 +#: src/Common/LinuxKernel.vala:1102 src/Gtk/MainWindow.vala:650 msgid "This kernel is already installed." msgstr "Dieser Kernel ist bereits installiert." -#: src/Common/LinuxKernel.vala:1123 +#: src/Common/LinuxKernel.vala:1128 msgid "Installation completed. A reboot is required to use the new kernel." -msgstr "Die Installation ist abgeschlossen. Ein Neustart ist erforderlich, um den neuen Kernel zu verwenden." +msgstr "" +"Die Installation ist abgeschlossen. Ein Neustart ist erforderlich, um den " +"neuen Kernel zu verwenden." -#: src/Common/LinuxKernel.vala:1126 +#: src/Common/LinuxKernel.vala:1131 msgid "Installation completed with errors" msgstr "Installation mit Fehlern abgeschlossen" -#: src/Common/LinuxKernel.vala:1141 +#: src/Common/LinuxKernel.vala:1146 msgid "" "Selected kernel is currently running and cannot be un-installed.\n" " Install another kernel before un-installing this one." msgstr "" -"Ausgewählter Kernel wird derzeit ausgeführt und kann nicht deinstalliert werden.\n" +"Ausgewählter Kernel wird derzeit ausgeführt und kann nicht deinstalliert " +"werden.\n" " Installieren Sie einen anderen Kernel, bevor Sie diesen deinstallieren." -#: src/Common/LinuxKernel.vala:1146 +#: src/Common/LinuxKernel.vala:1151 msgid "Preparing to uninstall selected kernels" msgstr "Vorbereiten der Deinstallation ausgewählter Kernel" -#: src/Common/LinuxKernel.vala:1177 src/Common/LinuxKernel.vala:1224 +#: src/Common/LinuxKernel.vala:1182 src/Common/LinuxKernel.vala:1229 msgid "Un-install completed" msgstr "Deinstallation abgeschlossen" -#: src/Common/LinuxKernel.vala:1180 src/Common/LinuxKernel.vala:1227 +#: src/Common/LinuxKernel.vala:1185 src/Common/LinuxKernel.vala:1232 msgid "Un-install completed with errors" msgstr "Deinstallation mit Fehlern abgeschlossen" -#: src/Common/LinuxKernel.vala:1193 +#: src/Common/LinuxKernel.vala:1198 msgid "" "This kernel is currently running and cannot be un-installed.\n" " Install another kernel before un-installing this one." @@ -165,7 +168,8 @@ msgstr "Nach Kernel-Updates suchen" #: src/Console/AppConsole.vala:67 msgid "Check for kernel updates and notify current user" -msgstr "Prüfung auf Kernel-Updates und Benachrichtigung des aktuellen Benutzers" +msgstr "" +"Prüfung auf Kernel-Updates und Benachrichtigung des aktuellen Benutzers" #: src/Console/AppConsole.vala:68 msgid "List all available mainline kernels" @@ -235,7 +239,8 @@ msgstr "Eine Versionszeichenfolge aus der Ausgabe von --list" msgid "" "One or more version strings (comma-separated) taken from the output of --list" msgstr "" -"Eine oder mehrere (durch Komma getrennte) Versionszeichenfolgen aus der Ausgabe von --list" +"Eine oder mehrere (durch Komma getrennte) Versionszeichenfolgen aus der " +"Ausgabe von --list" #: src/Console/AppConsole.vala:169 src/Gtk/AppGtk.vala:136 msgid "Unknown option" @@ -256,7 +261,8 @@ msgstr "Keine Kernel angegeben" #: src/Console/AppConsole.vala:244 msgid "Multiple kernels selected for installation. Select only one." -msgstr "Mehrere Kernel für die Installation ausgewählt. Wählen Sie nur einen aus." +msgstr "" +"Mehrere Kernel für die Installation ausgewählt. Wählen Sie nur einen aus." #: src/Console/AppConsole.vala:262 src/Gtk/MainWindow.vala:100 msgid "Could not find requested version" @@ -264,7 +270,8 @@ msgstr "Die gewünschte Version konnte nicht gefunden werden" #: src/Console/AppConsole.vala:265 msgid "and use a version string listed in first column" -msgstr "und verwenden Sie eine in der ersten Spalte aufgeführte Versionszeichenfolge" +msgstr "" +"und verwenden Sie eine in der ersten Spalte aufgeführte Versionszeichenfolge" #: src/Console/AppConsole.vala:293 msgid "Command not specified" diff --git a/po/es.po b/po/es.po index 3e9c4b32..adf7f9c0 100644 --- a/po/es.po +++ b/po/es.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-08 04:23-0400\n" +"POT-Creation-Date: 2022-11-11 18:43-0500\n" "PO-Revision-Date: 2018-01-03 02:03-0600\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish\n" @@ -21,99 +21,99 @@ msgstr "Distribución" msgid "Architecture" msgstr "Arquitectura del sistema" -#: src/Common/LinuxKernel.vala:304 +#: src/Common/LinuxKernel.vala:294 msgid "Fetching index..." msgstr "Recuperando índice..." -#: src/Common/LinuxKernel.vala:355 +#: src/Common/LinuxKernel.vala:331 msgid "Fetching index from kernel.ubuntu.com..." msgstr "Recuperando índice de kernel.ubuntu.com…" -#: src/Common/LinuxKernel.vala:611 +#: src/Common/LinuxKernel.vala:587 msgid "Could not find running kernel in list!" msgstr "¡No se pudo encontrar el núcleo en ejecución en la lista!" -#: src/Common/LinuxKernel.vala:617 +#: src/Common/LinuxKernel.vala:593 #, fuzzy msgid "Could not find any kernels to uninstall" msgstr "Seleccione los núcleos que se desinstalarán" -#: src/Common/LinuxKernel.vala:626 +#: src/Common/LinuxKernel.vala:602 #, fuzzy msgid "The following kernels will be uninstalled:" msgstr "Los siguientes kernels serán eliminados:" -#: src/Common/LinuxKernel.vala:633 +#: src/Common/LinuxKernel.vala:609 msgid "Continue ?" msgstr "¿Continuar?" -#: src/Common/LinuxKernel.vala:659 src/Console/AppConsole.vala:314 +#: src/Common/LinuxKernel.vala:635 src/Console/AppConsole.vala:314 msgid "Latest update" msgstr "" -#: src/Common/LinuxKernel.vala:670 src/Console/AppConsole.vala:321 +#: src/Common/LinuxKernel.vala:646 src/Console/AppConsole.vala:321 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:678 src/Console/AppConsole.vala:326 +#: src/Common/LinuxKernel.vala:654 src/Console/AppConsole.vala:326 #: src/Console/AppConsole.vala:387 msgid "No updates found" msgstr "No se encontró ninguna actualización" -#: src/Common/LinuxKernel.vala:688 +#: src/Common/LinuxKernel.vala:664 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "" -#: src/Common/LinuxKernel.vala:926 +#: src/Common/LinuxKernel.vala:932 msgid "Packages Available" msgstr "Paquetes disponibles" -#: src/Common/LinuxKernel.vala:934 +#: src/Common/LinuxKernel.vala:940 msgid "Packages Installed" msgstr "Paquetes instalados" -#: src/Common/LinuxKernel.vala:1014 +#: src/Common/LinuxKernel.vala:1020 msgid "Available Kernels" msgstr "Núcleos disponibles" -#: src/Common/LinuxKernel.vala:1021 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1027 src/Gtk/MainWindow.vala:186 msgid "Installed" msgstr "Instalado" -#: src/Common/LinuxKernel.vala:1021 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1027 src/Gtk/MainWindow.vala:186 #: src/Gtk/MainWindow.vala:628 src/Gtk/MainWindow.vala:642 msgid "Running" msgstr "En ejecución" -#: src/Common/LinuxKernel.vala:1058 +#: src/Common/LinuxKernel.vala:1064 msgid "Downloading" msgstr "Descargando" -#: src/Common/LinuxKernel.vala:1077 +#: src/Common/LinuxKernel.vala:1083 #: src/Utility/Gtk/CustomMessageDialog.vala:148 #: src/Utility/Gtk/CustomMessageDialog.vala:152 msgid "OK" msgstr "Aceptar" -#: src/Common/LinuxKernel.vala:1082 +#: src/Common/LinuxKernel.vala:1088 msgid "ERROR" msgstr "ERROR" -#: src/Common/LinuxKernel.vala:1096 src/Gtk/MainWindow.vala:650 +#: src/Common/LinuxKernel.vala:1102 src/Gtk/MainWindow.vala:650 msgid "This kernel is already installed." msgstr "Este núcleo ya se instaló." -#: src/Common/LinuxKernel.vala:1122 +#: src/Common/LinuxKernel.vala:1128 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "Instalación finalizada. Se necesita reiniciar para utilizar el núcleo nuevo." -#: src/Common/LinuxKernel.vala:1125 +#: src/Common/LinuxKernel.vala:1131 msgid "Installation completed with errors" msgstr "Instalación finalizada con errores" -#: src/Common/LinuxKernel.vala:1140 +#: src/Common/LinuxKernel.vala:1146 #, fuzzy msgid "" "Selected kernel is currently running and cannot be un-installed.\n" @@ -122,20 +122,20 @@ msgstr "" "El núcleo seleccionado está en ejecución y no puede desinstalarse.\n" "Instale otro núcleo antes de desinstalar este." -#: src/Common/LinuxKernel.vala:1145 +#: src/Common/LinuxKernel.vala:1151 #, fuzzy msgid "Preparing to uninstall selected kernels" msgstr "Preparándose para desinstalar los núcleos seleccionados" -#: src/Common/LinuxKernel.vala:1176 src/Common/LinuxKernel.vala:1223 +#: src/Common/LinuxKernel.vala:1182 src/Common/LinuxKernel.vala:1229 msgid "Un-install completed" msgstr "Desinstalación finalizada" -#: src/Common/LinuxKernel.vala:1179 src/Common/LinuxKernel.vala:1226 +#: src/Common/LinuxKernel.vala:1185 src/Common/LinuxKernel.vala:1232 msgid "Un-install completed with errors" msgstr "Desinstalación finalizada con errores" -#: src/Common/LinuxKernel.vala:1192 +#: src/Common/LinuxKernel.vala:1198 #, fuzzy msgid "" "This kernel is currently running and cannot be un-installed.\n" diff --git a/po/fr.po b/po/fr.po index a45575e8..ca63c2e4 100644 --- a/po/fr.po +++ b/po/fr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-08 04:23-0400\n" +"POT-Creation-Date: 2022-11-11 18:43-0500\n" "PO-Revision-Date: 2018-08-05 15:50+0200\n" "Last-Translator: Yolateng0 \n" "Language-Team: French\n" @@ -21,100 +21,100 @@ msgstr "Distribution" msgid "Architecture" msgstr "Architecture" -#: src/Common/LinuxKernel.vala:304 +#: src/Common/LinuxKernel.vala:294 msgid "Fetching index..." msgstr "Récupération de l'index..." -#: src/Common/LinuxKernel.vala:355 +#: src/Common/LinuxKernel.vala:331 msgid "Fetching index from kernel.ubuntu.com..." msgstr "Récupération de l'index depuis kernel.ubuntu.com..." -#: src/Common/LinuxKernel.vala:611 +#: src/Common/LinuxKernel.vala:587 msgid "Could not find running kernel in list!" msgstr "Impossible de trouver la version courante dans la liste!" -#: src/Common/LinuxKernel.vala:617 +#: src/Common/LinuxKernel.vala:593 #, fuzzy msgid "Could not find any kernels to uninstall" msgstr "Impossible de trouver de noyaux à supprimer" -#: src/Common/LinuxKernel.vala:626 +#: src/Common/LinuxKernel.vala:602 #, fuzzy msgid "The following kernels will be uninstalled:" msgstr "Les noyaux suivants seront supprimés:" -#: src/Common/LinuxKernel.vala:633 +#: src/Common/LinuxKernel.vala:609 msgid "Continue ?" msgstr "Reprendre ?" -#: src/Common/LinuxKernel.vala:659 src/Console/AppConsole.vala:314 +#: src/Common/LinuxKernel.vala:635 src/Console/AppConsole.vala:314 msgid "Latest update" msgstr "Dernière mise à jour" -#: src/Common/LinuxKernel.vala:670 src/Console/AppConsole.vala:321 +#: src/Common/LinuxKernel.vala:646 src/Console/AppConsole.vala:321 msgid "Latest point update" msgstr "Dernière mise à jour mineure" -#: src/Common/LinuxKernel.vala:678 src/Console/AppConsole.vala:326 +#: src/Common/LinuxKernel.vala:654 src/Console/AppConsole.vala:326 #: src/Console/AppConsole.vala:387 msgid "No updates found" msgstr "Aucune mise à jour disponible" -#: src/Common/LinuxKernel.vala:688 +#: src/Common/LinuxKernel.vala:664 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Installer le noyau en version %s ? (y/n): " -#: src/Common/LinuxKernel.vala:926 +#: src/Common/LinuxKernel.vala:932 msgid "Packages Available" msgstr "Paquets Disponibles" -#: src/Common/LinuxKernel.vala:934 +#: src/Common/LinuxKernel.vala:940 msgid "Packages Installed" msgstr "Paquets Installés" -#: src/Common/LinuxKernel.vala:1014 +#: src/Common/LinuxKernel.vala:1020 msgid "Available Kernels" msgstr "Noyaux Disponibles" -#: src/Common/LinuxKernel.vala:1021 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1027 src/Gtk/MainWindow.vala:186 msgid "Installed" msgstr "Installé" -#: src/Common/LinuxKernel.vala:1021 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1027 src/Gtk/MainWindow.vala:186 #: src/Gtk/MainWindow.vala:628 src/Gtk/MainWindow.vala:642 msgid "Running" msgstr "Actuel" -#: src/Common/LinuxKernel.vala:1058 +#: src/Common/LinuxKernel.vala:1064 msgid "Downloading" msgstr "Téléchargement" -#: src/Common/LinuxKernel.vala:1077 +#: src/Common/LinuxKernel.vala:1083 #: src/Utility/Gtk/CustomMessageDialog.vala:148 #: src/Utility/Gtk/CustomMessageDialog.vala:152 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:1082 +#: src/Common/LinuxKernel.vala:1088 msgid "ERROR" msgstr "ERREUR" -#: src/Common/LinuxKernel.vala:1096 src/Gtk/MainWindow.vala:650 +#: src/Common/LinuxKernel.vala:1102 src/Gtk/MainWindow.vala:650 msgid "This kernel is already installed." msgstr "Ce noyau est déjà installé." -#: src/Common/LinuxKernel.vala:1122 +#: src/Common/LinuxKernel.vala:1128 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "Installation complétée. Un redémarrage est nécessaire pour utiliser le " "nouveau noyau." -#: src/Common/LinuxKernel.vala:1125 +#: src/Common/LinuxKernel.vala:1131 msgid "Installation completed with errors" msgstr "Installation terminée avec des erreurs" -#: src/Common/LinuxKernel.vala:1140 +#: src/Common/LinuxKernel.vala:1146 #, fuzzy msgid "" "Selected kernel is currently running and cannot be un-installed.\n" @@ -123,20 +123,20 @@ msgstr "" "Ce noyau est en cours d'exécution et ne peut pas être supprimé.\n" " Installez un autre noyau avant de retirer celui-ci." -#: src/Common/LinuxKernel.vala:1145 +#: src/Common/LinuxKernel.vala:1151 #, fuzzy msgid "Preparing to uninstall selected kernels" msgstr "Préparation à la suppression des noyaux sélectionnés" -#: src/Common/LinuxKernel.vala:1176 src/Common/LinuxKernel.vala:1223 +#: src/Common/LinuxKernel.vala:1182 src/Common/LinuxKernel.vala:1229 msgid "Un-install completed" msgstr "Désinstallation complète" -#: src/Common/LinuxKernel.vala:1179 src/Common/LinuxKernel.vala:1226 +#: src/Common/LinuxKernel.vala:1185 src/Common/LinuxKernel.vala:1232 msgid "Un-install completed with errors" msgstr "Désinstallation terminée avec des erreurs" -#: src/Common/LinuxKernel.vala:1192 +#: src/Common/LinuxKernel.vala:1198 #, fuzzy msgid "" "This kernel is currently running and cannot be un-installed.\n" diff --git a/po/hr.po b/po/hr.po index 9e0a0976..c4147301 100644 --- a/po/hr.po +++ b/po/hr.po @@ -2,10 +2,10 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-08 04:23-0400\n" +"POT-Creation-Date: 2022-11-11 18:43-0500\n" "PO-Revision-Date: 2022-09-22 12:13+0200\n" "Last-Translator: gogo \n" -"Language-Team: Croatian \n" +"Language-Team: Croatian\n" "Language: hr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -21,98 +21,98 @@ msgstr "Distribucija" msgid "Architecture" msgstr "Arhitektura" -#: src/Common/LinuxKernel.vala:304 +#: src/Common/LinuxKernel.vala:294 msgid "Fetching index..." msgstr "Preuzimanje sadržaja..." -#: src/Common/LinuxKernel.vala:355 +#: src/Common/LinuxKernel.vala:331 msgid "Fetching index from kernel.ubuntu.com..." msgstr "Preuzimanje sadržaja sa kernel.ubuntu.com..." -#: src/Common/LinuxKernel.vala:611 +#: src/Common/LinuxKernel.vala:587 msgid "Could not find running kernel in list!" msgstr "Nemoguće je pronaći pokrenuti kernel na popisu!" -#: src/Common/LinuxKernel.vala:617 +#: src/Common/LinuxKernel.vala:593 msgid "Could not find any kernels to uninstall" msgstr "Nema pronađenih kernela za deinstaliranje" -#: src/Common/LinuxKernel.vala:626 +#: src/Common/LinuxKernel.vala:602 msgid "The following kernels will be uninstalled:" msgstr "Sljedeći kerneli će biti deinstalirani:" -#: src/Common/LinuxKernel.vala:633 +#: src/Common/LinuxKernel.vala:609 msgid "Continue ?" msgstr "Nastavi?" -#: src/Common/LinuxKernel.vala:659 src/Console/AppConsole.vala:314 +#: src/Common/LinuxKernel.vala:635 src/Console/AppConsole.vala:314 msgid "Latest update" msgstr "Najnovija nadopuna" -#: src/Common/LinuxKernel.vala:670 src/Console/AppConsole.vala:321 +#: src/Common/LinuxKernel.vala:646 src/Console/AppConsole.vala:321 msgid "Latest point update" msgstr "Najnovija ciljana nadopuna" -#: src/Common/LinuxKernel.vala:678 src/Console/AppConsole.vala:326 +#: src/Common/LinuxKernel.vala:654 src/Console/AppConsole.vala:326 #: src/Console/AppConsole.vala:387 msgid "No updates found" msgstr "Nema pronađenih nadopuna" -#: src/Common/LinuxKernel.vala:688 +#: src/Common/LinuxKernel.vala:664 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Instaliraj kernel inačice %s ? (d/n): " -#: src/Common/LinuxKernel.vala:926 +#: src/Common/LinuxKernel.vala:932 msgid "Packages Available" msgstr "Dostupni paketi" -#: src/Common/LinuxKernel.vala:934 +#: src/Common/LinuxKernel.vala:940 msgid "Packages Installed" msgstr "Instalirani paketi" -#: src/Common/LinuxKernel.vala:1014 +#: src/Common/LinuxKernel.vala:1020 msgid "Available Kernels" msgstr "Dostupni kerneli" -#: src/Common/LinuxKernel.vala:1021 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1027 src/Gtk/MainWindow.vala:186 msgid "Installed" msgstr "Instalirano" -#: src/Common/LinuxKernel.vala:1021 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1027 src/Gtk/MainWindow.vala:186 #: src/Gtk/MainWindow.vala:628 src/Gtk/MainWindow.vala:642 msgid "Running" msgstr "Pokrenuto" -#: src/Common/LinuxKernel.vala:1058 +#: src/Common/LinuxKernel.vala:1064 msgid "Downloading" msgstr "Preuzimanje" -#: src/Common/LinuxKernel.vala:1077 +#: src/Common/LinuxKernel.vala:1083 #: src/Utility/Gtk/CustomMessageDialog.vala:148 #: src/Utility/Gtk/CustomMessageDialog.vala:152 msgid "OK" msgstr "U redu" -#: src/Common/LinuxKernel.vala:1082 +#: src/Common/LinuxKernel.vala:1088 msgid "ERROR" msgstr "GREŠKA" -#: src/Common/LinuxKernel.vala:1096 src/Gtk/MainWindow.vala:650 +#: src/Common/LinuxKernel.vala:1102 src/Gtk/MainWindow.vala:650 msgid "This kernel is already installed." msgstr "Ovaj kernel je već instaliran." -#: src/Common/LinuxKernel.vala:1122 +#: src/Common/LinuxKernel.vala:1128 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "Instalacija je završena. Potrebno je ponovno pokretanje računala kako bi se " "koristio novi kernel." -#: src/Common/LinuxKernel.vala:1125 +#: src/Common/LinuxKernel.vala:1131 msgid "Installation completed with errors" msgstr "Instalacija je završena s greškama" -#: src/Common/LinuxKernel.vala:1140 +#: src/Common/LinuxKernel.vala:1146 msgid "" "Selected kernel is currently running and cannot be un-installed.\n" " Install another kernel before un-installing this one." @@ -120,19 +120,19 @@ msgstr "" "Odabrani kernel je trenutno pokernut i ne može se deinstalirati.\n" " Instalirajte drugi kernel prije uklanjanja trenutnog kernela." -#: src/Common/LinuxKernel.vala:1145 +#: src/Common/LinuxKernel.vala:1151 msgid "Preparing to uninstall selected kernels" msgstr "Pripremanje deinstalacije odabranih kernela" -#: src/Common/LinuxKernel.vala:1176 src/Common/LinuxKernel.vala:1223 +#: src/Common/LinuxKernel.vala:1182 src/Common/LinuxKernel.vala:1229 msgid "Un-install completed" msgstr "Deinstalacija završena" -#: src/Common/LinuxKernel.vala:1179 src/Common/LinuxKernel.vala:1226 +#: src/Common/LinuxKernel.vala:1185 src/Common/LinuxKernel.vala:1232 msgid "Un-install completed with errors" msgstr "Deinstalacija završena s greškama" -#: src/Common/LinuxKernel.vala:1192 +#: src/Common/LinuxKernel.vala:1198 msgid "" "This kernel is currently running and cannot be un-installed.\n" " Install another kernel before un-installing this one." diff --git a/po/it.po b/po/it.po index 0c8337b6..ab5321e0 100644 --- a/po/it.po +++ b/po/it.po @@ -1,17 +1,11 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the mainline package. -# ALBANO BATTISTELLA , 2020. -# -#, fuzzy msgid "" msgstr "" "Project-Id-Version: mainline 1.0.15\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-08 04:23-0400\n" +"POT-Creation-Date: 2022-11-11 18:43-0500\n" "PO-Revision-Date: 2020-08-22 15:35+0100\n" -"Last-Translator: Demetrio Mendozzi\n" -"Language-Team: Italian \n" +"Last-Translator: Albano Battistella \n" +"Language-Team: Italian\n" "Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -25,98 +19,98 @@ msgstr "Distribuzione" msgid "Architecture" msgstr "Architettura" -#: src/Common/LinuxKernel.vala:304 +#: src/Common/LinuxKernel.vala:294 msgid "Fetching index..." msgstr "Recupero indice in corso..." -#: src/Common/LinuxKernel.vala:355 +#: src/Common/LinuxKernel.vala:331 msgid "Fetching index from kernel.ubuntu.com..." msgstr "Recupero dell'indice da kernel.ubuntu.com..." -#: src/Common/LinuxKernel.vala:611 +#: src/Common/LinuxKernel.vala:587 msgid "Could not find running kernel in list!" msgstr "Impossibile trovare il kernel in esecuzione nell'elenco!" -#: src/Common/LinuxKernel.vala:617 +#: src/Common/LinuxKernel.vala:593 msgid "Could not find any kernels to uninstall" msgstr "Impossibile trovare alcun kernel da rimuovere" -#: src/Common/LinuxKernel.vala:626 +#: src/Common/LinuxKernel.vala:602 msgid "The following kernels will be uninstalled:" msgstr "I seguenti kernel verranno rimossi:" -#: src/Common/LinuxKernel.vala:633 +#: src/Common/LinuxKernel.vala:609 msgid "Continue ?" msgstr "Continuare ?" -#: src/Common/LinuxKernel.vala:659 src/Console/AppConsole.vala:314 +#: src/Common/LinuxKernel.vala:635 src/Console/AppConsole.vala:314 msgid "Latest update" msgstr "Ultimo aggiornamento" -#: src/Common/LinuxKernel.vala:670 src/Console/AppConsole.vala:321 +#: src/Common/LinuxKernel.vala:646 src/Console/AppConsole.vala:321 msgid "Latest point update" msgstr "Ultimo aggiornamento del punto" -#: src/Common/LinuxKernel.vala:678 src/Console/AppConsole.vala:326 +#: src/Common/LinuxKernel.vala:654 src/Console/AppConsole.vala:326 #: src/Console/AppConsole.vala:387 msgid "No updates found" msgstr "Nessun aggiornamento trovato" -#: src/Common/LinuxKernel.vala:688 +#: src/Common/LinuxKernel.vala:664 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Installare la versione del kernel %s ? (y/n): " -#: src/Common/LinuxKernel.vala:926 +#: src/Common/LinuxKernel.vala:932 msgid "Packages Available" msgstr "Pacchetti disponibili" -#: src/Common/LinuxKernel.vala:934 +#: src/Common/LinuxKernel.vala:940 msgid "Packages Installed" msgstr "Pacchetti installati" -#: src/Common/LinuxKernel.vala:1014 +#: src/Common/LinuxKernel.vala:1020 msgid "Available Kernels" msgstr "Kernel disponibili" -#: src/Common/LinuxKernel.vala:1021 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1027 src/Gtk/MainWindow.vala:186 msgid "Installed" msgstr "Installato" -#: src/Common/LinuxKernel.vala:1021 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1027 src/Gtk/MainWindow.vala:186 #: src/Gtk/MainWindow.vala:628 src/Gtk/MainWindow.vala:642 msgid "Running" msgstr "In esecuzione" -#: src/Common/LinuxKernel.vala:1058 +#: src/Common/LinuxKernel.vala:1064 msgid "Downloading" msgstr "Download in corso" -#: src/Common/LinuxKernel.vala:1077 +#: src/Common/LinuxKernel.vala:1083 #: src/Utility/Gtk/CustomMessageDialog.vala:148 #: src/Utility/Gtk/CustomMessageDialog.vala:152 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:1082 +#: src/Common/LinuxKernel.vala:1088 msgid "ERROR" msgstr "ERRORE" -#: src/Common/LinuxKernel.vala:1096 src/Gtk/MainWindow.vala:650 +#: src/Common/LinuxKernel.vala:1102 src/Gtk/MainWindow.vala:650 msgid "This kernel is already installed." msgstr "Questo kernel è già installato" -#: src/Common/LinuxKernel.vala:1122 +#: src/Common/LinuxKernel.vala:1128 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "Installazione completata. È necessario riavviare per utilizzare ilnuovo " "kernel." -#: src/Common/LinuxKernel.vala:1125 +#: src/Common/LinuxKernel.vala:1131 msgid "Installation completed with errors" msgstr "Installazione completata con errori" -#: src/Common/LinuxKernel.vala:1140 +#: src/Common/LinuxKernel.vala:1146 msgid "" "Selected kernel is currently running and cannot be un-installed.\n" " Install another kernel before un-installing this one." @@ -124,19 +118,19 @@ msgstr "" "Il kernel selezionato è attualmente in esecuzione e non può essere rimosso.\n" "Installa un altro kernel prima di rimuovere questo." -#: src/Common/LinuxKernel.vala:1145 +#: src/Common/LinuxKernel.vala:1151 msgid "Preparing to uninstall selected kernels" msgstr "Preparazione per rimuovere i kernel selezionati" -#: src/Common/LinuxKernel.vala:1176 src/Common/LinuxKernel.vala:1223 +#: src/Common/LinuxKernel.vala:1182 src/Common/LinuxKernel.vala:1229 msgid "Un-install completed" msgstr "Disinstallazione completata" -#: src/Common/LinuxKernel.vala:1179 src/Common/LinuxKernel.vala:1226 +#: src/Common/LinuxKernel.vala:1185 src/Common/LinuxKernel.vala:1232 msgid "Un-install completed with errors" msgstr "Disinstallazione completata con errori" -#: src/Common/LinuxKernel.vala:1192 +#: src/Common/LinuxKernel.vala:1198 msgid "" "This kernel is currently running and cannot be un-installed.\n" " Install another kernel before un-installing this one." diff --git a/po/ko.po b/po/ko.po index 5bdf9a38..85da5685 100644 --- a/po/ko.po +++ b/po/ko.po @@ -1,13 +1,8 @@ -# Korean translations for mainline package. -# Copyright (C) 2021 THE mainline'S COPYRIGHT HOLDER -# This file is distributed under the same license as the mainline package. -# Kevin Kim , 2021. -# msgid "" msgstr "" "Project-Id-Version: mainline 1.0.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-08 04:23-0400\n" +"POT-Creation-Date: 2022-11-11 18:43-0500\n" "PO-Revision-Date: 2022-09-28 11:48+0900\n" "Last-Translator: Kevin Kim \n" "Language-Team: Korean\n" @@ -26,95 +21,96 @@ msgstr "배포판" msgid "Architecture" msgstr "아키텍처" -#: src/Common/LinuxKernel.vala:304 +#: src/Common/LinuxKernel.vala:294 msgid "Fetching index..." msgstr "목록 가져오기..." -#: src/Common/LinuxKernel.vala:355 +#: src/Common/LinuxKernel.vala:331 msgid "Fetching index from kernel.ubuntu.com..." msgstr "최신 커널 목록을 가져오는 중입니다..." -#: src/Common/LinuxKernel.vala:611 +#: src/Common/LinuxKernel.vala:587 msgid "Could not find running kernel in list!" msgstr "목록에서 사용중인 커널을 찾을 수 없습니다!" -#: src/Common/LinuxKernel.vala:617 +#: src/Common/LinuxKernel.vala:593 msgid "Could not find any kernels to uninstall" msgstr "삭제할 커널을 찾을 수 없습니다" -#: src/Common/LinuxKernel.vala:626 +#: src/Common/LinuxKernel.vala:602 msgid "The following kernels will be uninstalled:" msgstr "아래 커널이 삭제됩니다:" -#: src/Common/LinuxKernel.vala:633 +#: src/Common/LinuxKernel.vala:609 msgid "Continue ?" msgstr "계속하시겠습니까?" -#: src/Common/LinuxKernel.vala:659 src/Console/AppConsole.vala:314 +#: src/Common/LinuxKernel.vala:635 src/Console/AppConsole.vala:314 msgid "Latest update" msgstr "최신 업데이트" -#: src/Common/LinuxKernel.vala:670 src/Console/AppConsole.vala:321 +#: src/Common/LinuxKernel.vala:646 src/Console/AppConsole.vala:321 msgid "Latest point update" msgstr "최신 포인트 업데이트" -#: src/Common/LinuxKernel.vala:678 src/Console/AppConsole.vala:326 +#: src/Common/LinuxKernel.vala:654 src/Console/AppConsole.vala:326 #: src/Console/AppConsole.vala:387 msgid "No updates found" msgstr "업데이트를 찾을 수 없습니다" -#: src/Common/LinuxKernel.vala:688 +#: src/Common/LinuxKernel.vala:664 +#, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "커널 %s 버전을 설치하시겠습니까? (y/n): " -#: src/Common/LinuxKernel.vala:926 +#: src/Common/LinuxKernel.vala:932 msgid "Packages Available" msgstr "설치 가능한 패키지" -#: src/Common/LinuxKernel.vala:934 +#: src/Common/LinuxKernel.vala:940 msgid "Packages Installed" msgstr "설치된 패키지" -#: src/Common/LinuxKernel.vala:1014 +#: src/Common/LinuxKernel.vala:1020 msgid "Available Kernels" msgstr "설치 가능한 커널" -#: src/Common/LinuxKernel.vala:1021 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1027 src/Gtk/MainWindow.vala:186 msgid "Installed" msgstr "설치 됨" -#: src/Common/LinuxKernel.vala:1021 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1027 src/Gtk/MainWindow.vala:186 #: src/Gtk/MainWindow.vala:628 src/Gtk/MainWindow.vala:642 msgid "Running" msgstr "구동 중" -#: src/Common/LinuxKernel.vala:1058 +#: src/Common/LinuxKernel.vala:1064 msgid "Downloading" msgstr "다운로드 중" -#: src/Common/LinuxKernel.vala:1077 +#: src/Common/LinuxKernel.vala:1083 #: src/Utility/Gtk/CustomMessageDialog.vala:148 #: src/Utility/Gtk/CustomMessageDialog.vala:152 msgid "OK" msgstr "확인" -#: src/Common/LinuxKernel.vala:1082 +#: src/Common/LinuxKernel.vala:1088 msgid "ERROR" msgstr "오류" -#: src/Common/LinuxKernel.vala:1096 src/Gtk/MainWindow.vala:650 +#: src/Common/LinuxKernel.vala:1102 src/Gtk/MainWindow.vala:650 msgid "This kernel is already installed." msgstr "이 커널은 이미 설치되었습니다." -#: src/Common/LinuxKernel.vala:1122 +#: src/Common/LinuxKernel.vala:1128 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "설치가 완료되었습닌다. 새 커널을 사용하려면 시스템을 재시작 하세요." -#: src/Common/LinuxKernel.vala:1125 +#: src/Common/LinuxKernel.vala:1131 msgid "Installation completed with errors" msgstr "오류가 있으나 설치가 완료되었습니다" -#: src/Common/LinuxKernel.vala:1140 +#: src/Common/LinuxKernel.vala:1146 msgid "" "Selected kernel is currently running and cannot be un-installed.\n" " Install another kernel before un-installing this one." @@ -122,19 +118,19 @@ msgstr "" "선택된 커널은 현재 사용 중이므로 삭제할 수 없습니다.\n" " 이 커널을 삭제하려면 다른 커널을 먼저 설치하세요." -#: src/Common/LinuxKernel.vala:1145 +#: src/Common/LinuxKernel.vala:1151 msgid "Preparing to uninstall selected kernels" msgstr "선택한 커널을 삭제하기 위해 준비중입니다" -#: src/Common/LinuxKernel.vala:1176 src/Common/LinuxKernel.vala:1223 +#: src/Common/LinuxKernel.vala:1182 src/Common/LinuxKernel.vala:1229 msgid "Un-install completed" msgstr "삭제가 완료되었습니다" -#: src/Common/LinuxKernel.vala:1179 src/Common/LinuxKernel.vala:1226 +#: src/Common/LinuxKernel.vala:1185 src/Common/LinuxKernel.vala:1232 msgid "Un-install completed with errors" msgstr "오류가 있으나 삭제가 완료되었습니다" -#: src/Common/LinuxKernel.vala:1192 +#: src/Common/LinuxKernel.vala:1198 msgid "" "This kernel is currently running and cannot be un-installed.\n" " Install another kernel before un-installing this one." @@ -151,6 +147,7 @@ msgid "Notifications are disabled" msgstr "알림이 비활성화 되었습니다" #: src/Common/Package.vala:134 src/Common/Package.vala:198 +#, c-format msgid "File not found: %s" msgstr "%s 파일을 찾을 수 없습니다" @@ -235,7 +232,8 @@ msgid "A version string taken from the output of --list" msgstr "--list 의 출력에서 가져온 버전 문자열" #: src/Console/AppConsole.vala:88 -msgid "One or more version strings (comma-separated) taken from the output of --list" +msgid "" +"One or more version strings (comma-separated) taken from the output of --list" msgstr "--list 의 출력에서 가져온 하나 이상의 버전 문자열 (쉼표로 구분)" #: src/Console/AppConsole.vala:169 src/Gtk/AppGtk.vala:136 @@ -280,6 +278,7 @@ msgid "Show" msgstr "보이기" #: src/Console/AppConsole.vala:365 src/Console/AppConsole.vala:377 +#, c-format msgid "Kernel %s Available" msgstr "커널 %s 사용 가능" diff --git a/po/messages.pot b/po/messages.pot index 33cde051..f69cfd48 100644 --- a/po/messages.pot +++ b/po/messages.pot @@ -1,17 +1,11 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the mainline package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy msgid "" msgstr "" -"Project-Id-Version: mainline 1.0.16\n" +"Project-Id-Version: mainline 1.0.17\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-08 04:23-0400\n" +"POT-Creation-Date: 2022-11-11 18:43-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" +"Language-Team: LANGUAGE \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=CHARSET\n" @@ -25,114 +19,114 @@ msgstr "" msgid "Architecture" msgstr "" -#: src/Common/LinuxKernel.vala:304 +#: src/Common/LinuxKernel.vala:294 msgid "Fetching index..." msgstr "" -#: src/Common/LinuxKernel.vala:355 +#: src/Common/LinuxKernel.vala:331 msgid "Fetching index from kernel.ubuntu.com..." msgstr "" -#: src/Common/LinuxKernel.vala:611 +#: src/Common/LinuxKernel.vala:587 msgid "Could not find running kernel in list!" msgstr "" -#: src/Common/LinuxKernel.vala:617 +#: src/Common/LinuxKernel.vala:593 msgid "Could not find any kernels to uninstall" msgstr "" -#: src/Common/LinuxKernel.vala:626 +#: src/Common/LinuxKernel.vala:602 msgid "The following kernels will be uninstalled:" msgstr "" -#: src/Common/LinuxKernel.vala:633 +#: src/Common/LinuxKernel.vala:609 msgid "Continue ?" msgstr "" -#: src/Common/LinuxKernel.vala:659 src/Console/AppConsole.vala:314 +#: src/Common/LinuxKernel.vala:635 src/Console/AppConsole.vala:314 msgid "Latest update" msgstr "" -#: src/Common/LinuxKernel.vala:670 src/Console/AppConsole.vala:321 +#: src/Common/LinuxKernel.vala:646 src/Console/AppConsole.vala:321 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:678 src/Console/AppConsole.vala:326 +#: src/Common/LinuxKernel.vala:654 src/Console/AppConsole.vala:326 #: src/Console/AppConsole.vala:387 msgid "No updates found" msgstr "" -#: src/Common/LinuxKernel.vala:688 +#: src/Common/LinuxKernel.vala:664 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "" -#: src/Common/LinuxKernel.vala:926 +#: src/Common/LinuxKernel.vala:932 msgid "Packages Available" msgstr "" -#: src/Common/LinuxKernel.vala:934 +#: src/Common/LinuxKernel.vala:940 msgid "Packages Installed" msgstr "" -#: src/Common/LinuxKernel.vala:1014 +#: src/Common/LinuxKernel.vala:1020 msgid "Available Kernels" msgstr "" -#: src/Common/LinuxKernel.vala:1021 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1027 src/Gtk/MainWindow.vala:186 msgid "Installed" msgstr "" -#: src/Common/LinuxKernel.vala:1021 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1027 src/Gtk/MainWindow.vala:186 #: src/Gtk/MainWindow.vala:628 src/Gtk/MainWindow.vala:642 msgid "Running" msgstr "" -#: src/Common/LinuxKernel.vala:1058 +#: src/Common/LinuxKernel.vala:1064 msgid "Downloading" msgstr "" -#: src/Common/LinuxKernel.vala:1077 +#: src/Common/LinuxKernel.vala:1083 #: src/Utility/Gtk/CustomMessageDialog.vala:148 #: src/Utility/Gtk/CustomMessageDialog.vala:152 msgid "OK" msgstr "" -#: src/Common/LinuxKernel.vala:1082 +#: src/Common/LinuxKernel.vala:1088 msgid "ERROR" msgstr "" -#: src/Common/LinuxKernel.vala:1096 src/Gtk/MainWindow.vala:650 +#: src/Common/LinuxKernel.vala:1102 src/Gtk/MainWindow.vala:650 msgid "This kernel is already installed." msgstr "" -#: src/Common/LinuxKernel.vala:1122 +#: src/Common/LinuxKernel.vala:1128 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" -#: src/Common/LinuxKernel.vala:1125 +#: src/Common/LinuxKernel.vala:1131 msgid "Installation completed with errors" msgstr "" -#: src/Common/LinuxKernel.vala:1140 +#: src/Common/LinuxKernel.vala:1146 msgid "" "Selected kernel is currently running and cannot be un-installed.\n" " Install another kernel before un-installing this one." msgstr "" -#: src/Common/LinuxKernel.vala:1145 +#: src/Common/LinuxKernel.vala:1151 msgid "Preparing to uninstall selected kernels" msgstr "" -#: src/Common/LinuxKernel.vala:1176 src/Common/LinuxKernel.vala:1223 +#: src/Common/LinuxKernel.vala:1182 src/Common/LinuxKernel.vala:1229 msgid "Un-install completed" msgstr "" -#: src/Common/LinuxKernel.vala:1179 src/Common/LinuxKernel.vala:1226 +#: src/Common/LinuxKernel.vala:1185 src/Common/LinuxKernel.vala:1232 msgid "Un-install completed with errors" msgstr "" -#: src/Common/LinuxKernel.vala:1192 +#: src/Common/LinuxKernel.vala:1198 msgid "" "This kernel is currently running and cannot be un-installed.\n" " Install another kernel before un-installing this one." diff --git a/po/nl.po b/po/nl.po index 1e8d3ee8..2a424a65 100644 --- a/po/nl.po +++ b/po/nl.po @@ -2,10 +2,10 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-08 04:23-0400\n" +"POT-Creation-Date: 2022-11-11 18:43-0500\n" "PO-Revision-Date: 2020-08-23 13:55+0200\n" "Last-Translator: Heimen Stoffels \n" -"Language-Team: \n" +"Language-Team: Dutch (Netherlands)\n" "Language: nl_NL\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -21,100 +21,100 @@ msgstr "Distributie" msgid "Architecture" msgstr "Architectuur" -#: src/Common/LinuxKernel.vala:304 +#: src/Common/LinuxKernel.vala:294 msgid "Fetching index..." msgstr "Bezig met ophalen van index..." -#: src/Common/LinuxKernel.vala:355 +#: src/Common/LinuxKernel.vala:331 msgid "Fetching index from kernel.ubuntu.com..." msgstr "Bezig met ophalen van index van kernel.ubuntu.com..." -#: src/Common/LinuxKernel.vala:611 +#: src/Common/LinuxKernel.vala:587 msgid "Could not find running kernel in list!" msgstr "De in gebruik zijnde kernel staat niet op de lijst!" -#: src/Common/LinuxKernel.vala:617 +#: src/Common/LinuxKernel.vala:593 #, fuzzy msgid "Could not find any kernels to uninstall" msgstr "Er zijn geen te verwijderen kernels" -#: src/Common/LinuxKernel.vala:626 +#: src/Common/LinuxKernel.vala:602 #, fuzzy msgid "The following kernels will be uninstalled:" msgstr "De volgende kernels worden verwijderd:" -#: src/Common/LinuxKernel.vala:633 +#: src/Common/LinuxKernel.vala:609 msgid "Continue ?" msgstr "Wil je doorgaan?" -#: src/Common/LinuxKernel.vala:659 src/Console/AppConsole.vala:314 +#: src/Common/LinuxKernel.vala:635 src/Console/AppConsole.vala:314 msgid "Latest update" msgstr "Recentste update" -#: src/Common/LinuxKernel.vala:670 src/Console/AppConsole.vala:321 +#: src/Common/LinuxKernel.vala:646 src/Console/AppConsole.vala:321 msgid "Latest point update" msgstr "Recentste puntupdate" -#: src/Common/LinuxKernel.vala:678 src/Console/AppConsole.vala:326 +#: src/Common/LinuxKernel.vala:654 src/Console/AppConsole.vala:326 #: src/Console/AppConsole.vala:387 msgid "No updates found" msgstr "Geen updates gevonden" -#: src/Common/LinuxKernel.vala:688 +#: src/Common/LinuxKernel.vala:664 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Wil je versie %s installeren? (j/n): " -#: src/Common/LinuxKernel.vala:926 +#: src/Common/LinuxKernel.vala:932 msgid "Packages Available" msgstr "Beschikbare pakketten" -#: src/Common/LinuxKernel.vala:934 +#: src/Common/LinuxKernel.vala:940 msgid "Packages Installed" msgstr "Geïnstalleerde pakketten" -#: src/Common/LinuxKernel.vala:1014 +#: src/Common/LinuxKernel.vala:1020 msgid "Available Kernels" msgstr "Beschikbare kernels" -#: src/Common/LinuxKernel.vala:1021 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1027 src/Gtk/MainWindow.vala:186 msgid "Installed" msgstr "Geïnstalleerd" -#: src/Common/LinuxKernel.vala:1021 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1027 src/Gtk/MainWindow.vala:186 #: src/Gtk/MainWindow.vala:628 src/Gtk/MainWindow.vala:642 msgid "Running" msgstr "In gebruik" -#: src/Common/LinuxKernel.vala:1058 +#: src/Common/LinuxKernel.vala:1064 msgid "Downloading" msgstr "Bezig met downloaden" -#: src/Common/LinuxKernel.vala:1077 +#: src/Common/LinuxKernel.vala:1083 #: src/Utility/Gtk/CustomMessageDialog.vala:148 #: src/Utility/Gtk/CustomMessageDialog.vala:152 msgid "OK" msgstr "Oké" -#: src/Common/LinuxKernel.vala:1082 +#: src/Common/LinuxKernel.vala:1088 msgid "ERROR" msgstr "FOUT" -#: src/Common/LinuxKernel.vala:1096 src/Gtk/MainWindow.vala:650 +#: src/Common/LinuxKernel.vala:1102 src/Gtk/MainWindow.vala:650 msgid "This kernel is already installed." msgstr "Deze kernel is al geïnstalleerd." -#: src/Common/LinuxKernel.vala:1122 +#: src/Common/LinuxKernel.vala:1128 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "De installatie is voltooid. Herstart de computer om de nieuwe kernel te " "gebruiken." -#: src/Common/LinuxKernel.vala:1125 +#: src/Common/LinuxKernel.vala:1131 msgid "Installation completed with errors" msgstr "De installatie is foutloos voltooid" -#: src/Common/LinuxKernel.vala:1140 +#: src/Common/LinuxKernel.vala:1146 #, fuzzy msgid "" "Selected kernel is currently running and cannot be un-installed.\n" @@ -124,20 +124,20 @@ msgstr "" "verwijderd.\n" " Installeer eerst een andere kernel." -#: src/Common/LinuxKernel.vala:1145 +#: src/Common/LinuxKernel.vala:1151 #, fuzzy msgid "Preparing to uninstall selected kernels" msgstr "Bezig met voorbereiden van verwijdering" -#: src/Common/LinuxKernel.vala:1176 src/Common/LinuxKernel.vala:1223 +#: src/Common/LinuxKernel.vala:1182 src/Common/LinuxKernel.vala:1229 msgid "Un-install completed" msgstr "Deïnstalleren voltooid" -#: src/Common/LinuxKernel.vala:1179 src/Common/LinuxKernel.vala:1226 +#: src/Common/LinuxKernel.vala:1185 src/Common/LinuxKernel.vala:1232 msgid "Un-install completed with errors" msgstr "Deïnstalleren voltooid, maar met fouten" -#: src/Common/LinuxKernel.vala:1192 +#: src/Common/LinuxKernel.vala:1198 #, fuzzy msgid "" "This kernel is currently running and cannot be un-installed.\n" diff --git a/po/pl.po b/po/pl.po index 65a9e5e3..fb6f4838 100644 --- a/po/pl.po +++ b/po/pl.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-08 04:23-0400\n" +"POT-Creation-Date: 2022-11-11 18:43-0500\n" "PO-Revision-Date: 2021-09-17 10:29+0200\n" "Last-Translator: Viktor Sokyrko \n" "Language-Team: Polish\n" @@ -21,98 +21,98 @@ msgstr "Dystrybucja" msgid "Architecture" msgstr "Architektura systemu" -#: src/Common/LinuxKernel.vala:304 +#: src/Common/LinuxKernel.vala:294 msgid "Fetching index..." msgstr "Pobieranie indeksu..." -#: src/Common/LinuxKernel.vala:355 +#: src/Common/LinuxKernel.vala:331 msgid "Fetching index from kernel.ubuntu.com..." msgstr "Pobieranie indeksu z kernel.ubuntu.com..." -#: src/Common/LinuxKernel.vala:611 +#: src/Common/LinuxKernel.vala:587 msgid "Could not find running kernel in list!" msgstr "Nie można znaleźć uruchomionego jądra na liście!" -#: src/Common/LinuxKernel.vala:617 +#: src/Common/LinuxKernel.vala:593 msgid "Could not find any kernels to uninstall" msgstr "Nie udało się odnaleźć żadnych jąder do odinstalowania" -#: src/Common/LinuxKernel.vala:626 +#: src/Common/LinuxKernel.vala:602 msgid "The following kernels will be uninstalled:" msgstr "Następujące jądra zostaną odinstalowane:" -#: src/Common/LinuxKernel.vala:633 +#: src/Common/LinuxKernel.vala:609 msgid "Continue ?" msgstr "Kontynuowac?" -#: src/Common/LinuxKernel.vala:659 src/Console/AppConsole.vala:314 +#: src/Common/LinuxKernel.vala:635 src/Console/AppConsole.vala:314 msgid "Latest update" msgstr "Najnowsza aktualizacja" -#: src/Common/LinuxKernel.vala:670 src/Console/AppConsole.vala:321 +#: src/Common/LinuxKernel.vala:646 src/Console/AppConsole.vala:321 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:678 src/Console/AppConsole.vala:326 +#: src/Common/LinuxKernel.vala:654 src/Console/AppConsole.vala:326 #: src/Console/AppConsole.vala:387 msgid "No updates found" msgstr "Nie znaleziono aktualizacji" -#: src/Common/LinuxKernel.vala:688 +#: src/Common/LinuxKernel.vala:664 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Instaluj wersję jądra %s ? (t/n): " -#: src/Common/LinuxKernel.vala:926 +#: src/Common/LinuxKernel.vala:932 msgid "Packages Available" msgstr "Dostępne pakiety" -#: src/Common/LinuxKernel.vala:934 +#: src/Common/LinuxKernel.vala:940 msgid "Packages Installed" msgstr "Pakiety zainstalowane" -#: src/Common/LinuxKernel.vala:1014 +#: src/Common/LinuxKernel.vala:1020 msgid "Available Kernels" msgstr "Dostępne jądra" -#: src/Common/LinuxKernel.vala:1021 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1027 src/Gtk/MainWindow.vala:186 msgid "Installed" msgstr "Zainstalowany" -#: src/Common/LinuxKernel.vala:1021 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1027 src/Gtk/MainWindow.vala:186 #: src/Gtk/MainWindow.vala:628 src/Gtk/MainWindow.vala:642 msgid "Running" msgstr "Uruchomiony" -#: src/Common/LinuxKernel.vala:1058 +#: src/Common/LinuxKernel.vala:1064 msgid "Downloading" msgstr "Pobieranie" -#: src/Common/LinuxKernel.vala:1077 +#: src/Common/LinuxKernel.vala:1083 #: src/Utility/Gtk/CustomMessageDialog.vala:148 #: src/Utility/Gtk/CustomMessageDialog.vala:152 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:1082 +#: src/Common/LinuxKernel.vala:1088 msgid "ERROR" msgstr "BŁĄD" -#: src/Common/LinuxKernel.vala:1096 src/Gtk/MainWindow.vala:650 +#: src/Common/LinuxKernel.vala:1102 src/Gtk/MainWindow.vala:650 msgid "This kernel is already installed." msgstr "To jądro jest już zainstalowane." -#: src/Common/LinuxKernel.vala:1122 +#: src/Common/LinuxKernel.vala:1128 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "Instalacja zakończona. Aby korzystać z nowego jądra, konieczne jest ponowne " "uruchomienie." -#: src/Common/LinuxKernel.vala:1125 +#: src/Common/LinuxKernel.vala:1131 msgid "Installation completed with errors" msgstr "Instalacja zakończona z błędami" -#: src/Common/LinuxKernel.vala:1140 +#: src/Common/LinuxKernel.vala:1146 msgid "" "Selected kernel is currently running and cannot be un-installed.\n" " Install another kernel before un-installing this one." @@ -120,19 +120,19 @@ msgstr "" "Wybrane jądro aktualnie działa i nie może zostać odinstalowane.\n" " Zainstaluj inne jądro przed odinstalowaniem tego." -#: src/Common/LinuxKernel.vala:1145 +#: src/Common/LinuxKernel.vala:1151 msgid "Preparing to uninstall selected kernels" msgstr "Przygotowanie do odinstalowania wybranych jąder" -#: src/Common/LinuxKernel.vala:1176 src/Common/LinuxKernel.vala:1223 +#: src/Common/LinuxKernel.vala:1182 src/Common/LinuxKernel.vala:1229 msgid "Un-install completed" msgstr "Deinstalacja zakończona" -#: src/Common/LinuxKernel.vala:1179 src/Common/LinuxKernel.vala:1226 +#: src/Common/LinuxKernel.vala:1185 src/Common/LinuxKernel.vala:1232 msgid "Un-install completed with errors" msgstr "De-instalacja zakończona z błędami" -#: src/Common/LinuxKernel.vala:1192 +#: src/Common/LinuxKernel.vala:1198 msgid "" "This kernel is currently running and cannot be un-installed.\n" " Install another kernel before un-installing this one." diff --git a/po/ru.po b/po/ru.po index f79059ab..c287e2a0 100644 --- a/po/ru.po +++ b/po/ru.po @@ -2,11 +2,10 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-08 04:23-0400\n" +"POT-Creation-Date: 2022-11-11 18:43-0500\n" "PO-Revision-Date: 2022-02-24 16:05+0300\n" -"Last-Translator: Faust3000 (Original) | Danik2343 (Update Transaltion) " -"\n" -"Language-Team: Russian \n" +"Last-Translator: Danik2343 \n" +"Language-Team: Russian\n" "Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -22,98 +21,98 @@ msgstr "Дистрибутив" msgid "Architecture" msgstr "Архитектура" -#: src/Common/LinuxKernel.vala:304 +#: src/Common/LinuxKernel.vala:294 msgid "Fetching index..." msgstr "Получение сведений..." -#: src/Common/LinuxKernel.vala:355 +#: src/Common/LinuxKernel.vala:331 msgid "Fetching index from kernel.ubuntu.com..." msgstr "Получение сведений с kernel.ubuntu.com..." -#: src/Common/LinuxKernel.vala:611 +#: src/Common/LinuxKernel.vala:587 msgid "Could not find running kernel in list!" msgstr "Не удалось найти запущенное ядро в списке!" -#: src/Common/LinuxKernel.vala:617 +#: src/Common/LinuxKernel.vala:593 msgid "Could not find any kernels to uninstall" msgstr "Не удалось найти ядра для деинсталляции" -#: src/Common/LinuxKernel.vala:626 +#: src/Common/LinuxKernel.vala:602 msgid "The following kernels will be uninstalled:" msgstr "Следующие ядра будут деинсталлированы:" -#: src/Common/LinuxKernel.vala:633 +#: src/Common/LinuxKernel.vala:609 msgid "Continue ?" msgstr "Продолжить ?" -#: src/Common/LinuxKernel.vala:659 src/Console/AppConsole.vala:314 +#: src/Common/LinuxKernel.vala:635 src/Console/AppConsole.vala:314 msgid "Latest update" msgstr "Последнее обновление" -#: src/Common/LinuxKernel.vala:670 src/Console/AppConsole.vala:321 +#: src/Common/LinuxKernel.vala:646 src/Console/AppConsole.vala:321 msgid "Latest point update" msgstr "Последнее обновление пунктов" -#: src/Common/LinuxKernel.vala:678 src/Console/AppConsole.vala:326 +#: src/Common/LinuxKernel.vala:654 src/Console/AppConsole.vala:326 #: src/Console/AppConsole.vala:387 msgid "No updates found" msgstr "Обновлений не найдено" -#: src/Common/LinuxKernel.vala:688 +#: src/Common/LinuxKernel.vala:664 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Установить версию ядра %s ? (y/n): " -#: src/Common/LinuxKernel.vala:926 +#: src/Common/LinuxKernel.vala:932 msgid "Packages Available" msgstr "Доступные пакеты" -#: src/Common/LinuxKernel.vala:934 +#: src/Common/LinuxKernel.vala:940 msgid "Packages Installed" msgstr "Установленные пакеты" -#: src/Common/LinuxKernel.vala:1014 +#: src/Common/LinuxKernel.vala:1020 msgid "Available Kernels" msgstr "Доступные ядра" -#: src/Common/LinuxKernel.vala:1021 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1027 src/Gtk/MainWindow.vala:186 msgid "Installed" msgstr "Установлено" -#: src/Common/LinuxKernel.vala:1021 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1027 src/Gtk/MainWindow.vala:186 #: src/Gtk/MainWindow.vala:628 src/Gtk/MainWindow.vala:642 msgid "Running" msgstr "Используется" -#: src/Common/LinuxKernel.vala:1058 +#: src/Common/LinuxKernel.vala:1064 msgid "Downloading" msgstr "Загрузка" -#: src/Common/LinuxKernel.vala:1077 +#: src/Common/LinuxKernel.vala:1083 #: src/Utility/Gtk/CustomMessageDialog.vala:148 #: src/Utility/Gtk/CustomMessageDialog.vala:152 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:1082 +#: src/Common/LinuxKernel.vala:1088 msgid "ERROR" msgstr "ОШИБКА" -#: src/Common/LinuxKernel.vala:1096 src/Gtk/MainWindow.vala:650 +#: src/Common/LinuxKernel.vala:1102 src/Gtk/MainWindow.vala:650 msgid "This kernel is already installed." msgstr "Это ядро уже установлено." -#: src/Common/LinuxKernel.vala:1122 +#: src/Common/LinuxKernel.vala:1128 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "Установка завершена. Обязательно выполните перезагрузку, чтобы использовать " "новое ядро." -#: src/Common/LinuxKernel.vala:1125 +#: src/Common/LinuxKernel.vala:1131 msgid "Installation completed with errors" msgstr "Установка завершена с ошибками" -#: src/Common/LinuxKernel.vala:1140 +#: src/Common/LinuxKernel.vala:1146 msgid "" "Selected kernel is currently running and cannot be un-installed.\n" " Install another kernel before un-installing this one." @@ -121,19 +120,19 @@ msgstr "" "Это ядро в настоящий момент работает и не может быть удалено.\n" " Установите другое ядро, прежде чем удалять его." -#: src/Common/LinuxKernel.vala:1145 +#: src/Common/LinuxKernel.vala:1151 msgid "Preparing to uninstall selected kernels" msgstr "Подготовка к деинсталляции выбранных ядер" -#: src/Common/LinuxKernel.vala:1176 src/Common/LinuxKernel.vala:1223 +#: src/Common/LinuxKernel.vala:1182 src/Common/LinuxKernel.vala:1229 msgid "Un-install completed" msgstr "Удаление завершено" -#: src/Common/LinuxKernel.vala:1179 src/Common/LinuxKernel.vala:1226 +#: src/Common/LinuxKernel.vala:1185 src/Common/LinuxKernel.vala:1232 msgid "Un-install completed with errors" msgstr "Удаление завершено с ошибками" -#: src/Common/LinuxKernel.vala:1192 +#: src/Common/LinuxKernel.vala:1198 msgid "" "This kernel is currently running and cannot be un-installed.\n" " Install another kernel before un-installing this one." diff --git a/po/sv.po b/po/sv.po index ac64dcc3..6cac602e 100644 --- a/po/sv.po +++ b/po/sv.po @@ -2,10 +2,10 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-08 04:23-0400\n" +"POT-Creation-Date: 2022-11-11 18:43-0500\n" "PO-Revision-Date: 2018-01-13 16:56+0100\n" "Last-Translator: Åke Engelbrektson \n" -"Language-Team: Svenska Språkfiler \n" +"Language-Team:Swedish\n" "Language: sv\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -22,100 +22,100 @@ msgstr "Distribution" msgid "Architecture" msgstr "Systemarkitektur" -#: src/Common/LinuxKernel.vala:304 +#: src/Common/LinuxKernel.vala:294 #, fuzzy msgid "Fetching index..." msgstr "Hämtar index för" -#: src/Common/LinuxKernel.vala:355 +#: src/Common/LinuxKernel.vala:331 msgid "Fetching index from kernel.ubuntu.com..." msgstr "Hämtar index från kernel.ubuntu.com ..." -#: src/Common/LinuxKernel.vala:611 +#: src/Common/LinuxKernel.vala:587 #, fuzzy msgid "Could not find running kernel in list!" msgstr "Kunde inte hitta efterfrågad version" -#: src/Common/LinuxKernel.vala:617 +#: src/Common/LinuxKernel.vala:593 #, fuzzy msgid "Could not find any kernels to uninstall" msgstr "Välj kärnor för borttagning" -#: src/Common/LinuxKernel.vala:626 +#: src/Common/LinuxKernel.vala:602 #, fuzzy msgid "The following kernels will be uninstalled:" msgstr "Denna kärna är redan installerad" -#: src/Common/LinuxKernel.vala:633 +#: src/Common/LinuxKernel.vala:609 msgid "Continue ?" msgstr "" -#: src/Common/LinuxKernel.vala:659 src/Console/AppConsole.vala:314 +#: src/Common/LinuxKernel.vala:635 src/Console/AppConsole.vala:314 msgid "Latest update" msgstr "" -#: src/Common/LinuxKernel.vala:670 src/Console/AppConsole.vala:321 +#: src/Common/LinuxKernel.vala:646 src/Console/AppConsole.vala:321 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:678 src/Console/AppConsole.vala:326 +#: src/Common/LinuxKernel.vala:654 src/Console/AppConsole.vala:326 #: src/Console/AppConsole.vala:387 msgid "No updates found" msgstr "Inga uppdateringar hittades" -#: src/Common/LinuxKernel.vala:688 +#: src/Common/LinuxKernel.vala:664 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "" -#: src/Common/LinuxKernel.vala:926 +#: src/Common/LinuxKernel.vala:932 msgid "Packages Available" msgstr "Tillgängliga paket" -#: src/Common/LinuxKernel.vala:934 +#: src/Common/LinuxKernel.vala:940 msgid "Packages Installed" msgstr "Installerade paket" -#: src/Common/LinuxKernel.vala:1014 +#: src/Common/LinuxKernel.vala:1020 msgid "Available Kernels" msgstr "Tillgängliga kärnor" -#: src/Common/LinuxKernel.vala:1021 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1027 src/Gtk/MainWindow.vala:186 msgid "Installed" msgstr "Installerad" -#: src/Common/LinuxKernel.vala:1021 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1027 src/Gtk/MainWindow.vala:186 #: src/Gtk/MainWindow.vala:628 src/Gtk/MainWindow.vala:642 msgid "Running" msgstr "Körs" -#: src/Common/LinuxKernel.vala:1058 +#: src/Common/LinuxKernel.vala:1064 msgid "Downloading" msgstr "Laddar ner" -#: src/Common/LinuxKernel.vala:1077 +#: src/Common/LinuxKernel.vala:1083 #: src/Utility/Gtk/CustomMessageDialog.vala:148 #: src/Utility/Gtk/CustomMessageDialog.vala:152 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:1082 +#: src/Common/LinuxKernel.vala:1088 msgid "ERROR" msgstr "FEL" -#: src/Common/LinuxKernel.vala:1096 src/Gtk/MainWindow.vala:650 +#: src/Common/LinuxKernel.vala:1102 src/Gtk/MainWindow.vala:650 msgid "This kernel is already installed." msgstr "Denna kärna är redan installerad" -#: src/Common/LinuxKernel.vala:1122 +#: src/Common/LinuxKernel.vala:1128 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "Installation slutförd. Omstart krävs för att tillämpa den nya kärnan." -#: src/Common/LinuxKernel.vala:1125 +#: src/Common/LinuxKernel.vala:1131 msgid "Installation completed with errors" msgstr "Installation slutförd med fel" -#: src/Common/LinuxKernel.vala:1140 +#: src/Common/LinuxKernel.vala:1146 #, fuzzy msgid "" "Selected kernel is currently running and cannot be un-installed.\n" @@ -124,20 +124,20 @@ msgstr "" "Denna kärna används för tillfället och kan inte tas bort.\n" "Installera en annan kärna innan du tar bort den här." -#: src/Common/LinuxKernel.vala:1145 +#: src/Common/LinuxKernel.vala:1151 #, fuzzy msgid "Preparing to uninstall selected kernels" msgstr "Förbereder borttagning av markerade kärnor" -#: src/Common/LinuxKernel.vala:1176 src/Common/LinuxKernel.vala:1223 +#: src/Common/LinuxKernel.vala:1182 src/Common/LinuxKernel.vala:1229 msgid "Un-install completed" msgstr "Avinstallation slutförd" -#: src/Common/LinuxKernel.vala:1179 src/Common/LinuxKernel.vala:1226 +#: src/Common/LinuxKernel.vala:1185 src/Common/LinuxKernel.vala:1232 msgid "Un-install completed with errors" msgstr "Avinstallation slutförd med fel" -#: src/Common/LinuxKernel.vala:1192 +#: src/Common/LinuxKernel.vala:1198 #, fuzzy msgid "" "This kernel is currently running and cannot be un-installed.\n" diff --git a/po/tr.po b/po/tr.po index 8d681963..4a9256be 100644 --- a/po/tr.po +++ b/po/tr.po @@ -1,18 +1,11 @@ -# Turkish translation for mainline. -# Copyright (C) 2018-2022 mainline's COPYRIGHT HOLDER -# This file is distributed under the same license as the mainline package. -# -# Gökhan Gökkaya , 2018. -# Sabri Ünal , 2022 -# msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-08 04:23-0400\n" +"POT-Creation-Date: 2022-11-11 18:43-0500\n" "PO-Revision-Date: 2022-08-06 16:48+0300\n" "Last-Translator: Sabri Ünal \n" -"Language-Team: Türkçe \n" +"Language-Team: Turkish\n" "Language: tr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -28,98 +21,98 @@ msgstr "Dağıtım" msgid "Architecture" msgstr "Sistem mimarisi" -#: src/Common/LinuxKernel.vala:304 +#: src/Common/LinuxKernel.vala:294 msgid "Fetching index..." msgstr "İçerik dizini alınıyor..." -#: src/Common/LinuxKernel.vala:355 +#: src/Common/LinuxKernel.vala:331 msgid "Fetching index from kernel.ubuntu.com..." msgstr "İçerik dizini kernel.ubuntu.com alanından alınıyor..." -#: src/Common/LinuxKernel.vala:611 +#: src/Common/LinuxKernel.vala:587 msgid "Could not find running kernel in list!" msgstr "Çalışan sürüm listede bulunamadı!" -#: src/Common/LinuxKernel.vala:617 +#: src/Common/LinuxKernel.vala:593 msgid "Could not find any kernels to uninstall" msgstr "Kaldırılacak çekirdek bulunamadı" -#: src/Common/LinuxKernel.vala:626 +#: src/Common/LinuxKernel.vala:602 msgid "The following kernels will be uninstalled:" msgstr "Aşağıdaki çekirdekler kaldırılacak:" -#: src/Common/LinuxKernel.vala:633 +#: src/Common/LinuxKernel.vala:609 msgid "Continue ?" msgstr "Devam edilsin mi?" -#: src/Common/LinuxKernel.vala:659 src/Console/AppConsole.vala:314 +#: src/Common/LinuxKernel.vala:635 src/Console/AppConsole.vala:314 msgid "Latest update" msgstr "Son güncelleme" # Point burada point release anlamında kullanılıyor. Örneğin 5.10.x sayısının en sonundaki x rakamı point release/nokta sürüm oluyor. -#: src/Common/LinuxKernel.vala:670 src/Console/AppConsole.vala:321 +#: src/Common/LinuxKernel.vala:646 src/Console/AppConsole.vala:321 msgid "Latest point update" msgstr "Son nokta güncellemesi" -#: src/Common/LinuxKernel.vala:678 src/Console/AppConsole.vala:326 +#: src/Common/LinuxKernel.vala:654 src/Console/AppConsole.vala:326 #: src/Console/AppConsole.vala:387 msgid "No updates found" msgstr "Güncelleme bulunamadı" -#: src/Common/LinuxKernel.vala:688 +#: src/Common/LinuxKernel.vala:664 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Linux Çekirdek Sürümü %s Kurulsun mu? (e/h): " -#: src/Common/LinuxKernel.vala:926 +#: src/Common/LinuxKernel.vala:932 msgid "Packages Available" msgstr "Mevcut Paketler" -#: src/Common/LinuxKernel.vala:934 +#: src/Common/LinuxKernel.vala:940 msgid "Packages Installed" msgstr "Kurulu Paketler" -#: src/Common/LinuxKernel.vala:1014 +#: src/Common/LinuxKernel.vala:1020 msgid "Available Kernels" msgstr "Mevcut Çekirdekler" -#: src/Common/LinuxKernel.vala:1021 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1027 src/Gtk/MainWindow.vala:186 msgid "Installed" msgstr "Kurulu" -#: src/Common/LinuxKernel.vala:1021 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1027 src/Gtk/MainWindow.vala:186 #: src/Gtk/MainWindow.vala:628 src/Gtk/MainWindow.vala:642 msgid "Running" msgstr "Çalışıyor" -#: src/Common/LinuxKernel.vala:1058 +#: src/Common/LinuxKernel.vala:1064 msgid "Downloading" msgstr "İndiriliyor" -#: src/Common/LinuxKernel.vala:1077 +#: src/Common/LinuxKernel.vala:1083 #: src/Utility/Gtk/CustomMessageDialog.vala:148 #: src/Utility/Gtk/CustomMessageDialog.vala:152 msgid "OK" msgstr "Tamam" -#: src/Common/LinuxKernel.vala:1082 +#: src/Common/LinuxKernel.vala:1088 msgid "ERROR" msgstr "HATA" -#: src/Common/LinuxKernel.vala:1096 src/Gtk/MainWindow.vala:650 +#: src/Common/LinuxKernel.vala:1102 src/Gtk/MainWindow.vala:650 msgid "This kernel is already installed." msgstr "Bu çekirdek zaten kurulu." -#: src/Common/LinuxKernel.vala:1122 +#: src/Common/LinuxKernel.vala:1128 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "Kurulum tamamlandı. Yeni çekirdeği kullanmak için yeniden başlatma gerekiyor." -#: src/Common/LinuxKernel.vala:1125 +#: src/Common/LinuxKernel.vala:1131 msgid "Installation completed with errors" msgstr "Kurulum hatalarla tamamlandı" -#: src/Common/LinuxKernel.vala:1140 +#: src/Common/LinuxKernel.vala:1146 msgid "" "Selected kernel is currently running and cannot be un-installed.\n" " Install another kernel before un-installing this one." @@ -127,19 +120,19 @@ msgstr "" "Seçilen çekirdek şu anda çalışıyor ve kaldırılamaz.\n" " Bunu kaldırmadan önce başka bir çekirdek yükleyin." -#: src/Common/LinuxKernel.vala:1145 +#: src/Common/LinuxKernel.vala:1151 msgid "Preparing to uninstall selected kernels" msgstr "Seçilen çekirdekleri kaldırmaya hazırlanıyor" -#: src/Common/LinuxKernel.vala:1176 src/Common/LinuxKernel.vala:1223 +#: src/Common/LinuxKernel.vala:1182 src/Common/LinuxKernel.vala:1229 msgid "Un-install completed" msgstr "Kaldırma tamamlandı" -#: src/Common/LinuxKernel.vala:1179 src/Common/LinuxKernel.vala:1226 +#: src/Common/LinuxKernel.vala:1185 src/Common/LinuxKernel.vala:1232 msgid "Un-install completed with errors" msgstr "Kaldırma hatalarla tamamlandı" -#: src/Common/LinuxKernel.vala:1192 +#: src/Common/LinuxKernel.vala:1198 msgid "" "This kernel is currently running and cannot be un-installed.\n" " Install another kernel before un-installing this one." diff --git a/po/uk.po b/po/uk.po index a613ff52..4242c728 100644 --- a/po/uk.po +++ b/po/uk.po @@ -2,10 +2,10 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-09-08 04:23-0400\n" +"POT-Creation-Date: 2022-11-11 18:43-0500\n" "PO-Revision-Date: 2019-07-25 11:00+0300\n" "Last-Translator: Serhii Golovko \n" -"Language-Team: Ukranian \n" +"Language-Team: Ukranian\n" "Language: uk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -21,97 +21,97 @@ msgstr "Дистрибутив" msgid "Architecture" msgstr "Системна архитектура" -#: src/Common/LinuxKernel.vala:304 +#: src/Common/LinuxKernel.vala:294 msgid "Fetching index..." msgstr "Отримання індекса ..." -#: src/Common/LinuxKernel.vala:355 +#: src/Common/LinuxKernel.vala:331 msgid "Fetching index from kernel.ubuntu.com..." msgstr "Отримання індекса з kernel.ubuntu.com..." -#: src/Common/LinuxKernel.vala:611 +#: src/Common/LinuxKernel.vala:587 msgid "Could not find running kernel in list!" msgstr "Не вдалося знайти запущене ядро у списку!" -#: src/Common/LinuxKernel.vala:617 +#: src/Common/LinuxKernel.vala:593 msgid "Could not find any kernels to uninstall" msgstr "Не вдалося знайти жодне ядро для вилучення" -#: src/Common/LinuxKernel.vala:626 +#: src/Common/LinuxKernel.vala:602 msgid "The following kernels will be uninstalled:" msgstr "Наступні ядра будуть видалені:" -#: src/Common/LinuxKernel.vala:633 +#: src/Common/LinuxKernel.vala:609 msgid "Continue ?" msgstr "Продовжувати ?" -#: src/Common/LinuxKernel.vala:659 src/Console/AppConsole.vala:314 +#: src/Common/LinuxKernel.vala:635 src/Console/AppConsole.vala:314 msgid "Latest update" msgstr "Останнє оновлення" -#: src/Common/LinuxKernel.vala:670 src/Console/AppConsole.vala:321 +#: src/Common/LinuxKernel.vala:646 src/Console/AppConsole.vala:321 msgid "Latest point update" msgstr "Остання точка оновлення" -#: src/Common/LinuxKernel.vala:678 src/Console/AppConsole.vala:326 +#: src/Common/LinuxKernel.vala:654 src/Console/AppConsole.vala:326 #: src/Console/AppConsole.vala:387 msgid "No updates found" msgstr "Оновлень не знайдено" -#: src/Common/LinuxKernel.vala:688 +#: src/Common/LinuxKernel.vala:664 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Встановити Ядро Версії %s ? (так/ні): " -#: src/Common/LinuxKernel.vala:926 +#: src/Common/LinuxKernel.vala:932 msgid "Packages Available" msgstr "Доступні пакети" -#: src/Common/LinuxKernel.vala:934 +#: src/Common/LinuxKernel.vala:940 msgid "Packages Installed" msgstr "Встановлені пакети" -#: src/Common/LinuxKernel.vala:1014 +#: src/Common/LinuxKernel.vala:1020 msgid "Available Kernels" msgstr "Доступні ядра" -#: src/Common/LinuxKernel.vala:1021 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1027 src/Gtk/MainWindow.vala:186 msgid "Installed" msgstr "Встановлено" -#: src/Common/LinuxKernel.vala:1021 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1027 src/Gtk/MainWindow.vala:186 #: src/Gtk/MainWindow.vala:628 src/Gtk/MainWindow.vala:642 msgid "Running" msgstr "Використовується" -#: src/Common/LinuxKernel.vala:1058 +#: src/Common/LinuxKernel.vala:1064 msgid "Downloading" msgstr "Завантаження" -#: src/Common/LinuxKernel.vala:1077 +#: src/Common/LinuxKernel.vala:1083 #: src/Utility/Gtk/CustomMessageDialog.vala:148 #: src/Utility/Gtk/CustomMessageDialog.vala:152 msgid "OK" msgstr "Добре" -#: src/Common/LinuxKernel.vala:1082 +#: src/Common/LinuxKernel.vala:1088 msgid "ERROR" msgstr "ПОМИЛКА" -#: src/Common/LinuxKernel.vala:1096 src/Gtk/MainWindow.vala:650 +#: src/Common/LinuxKernel.vala:1102 src/Gtk/MainWindow.vala:650 msgid "This kernel is already installed." msgstr "Це ядро вже встановлено." -#: src/Common/LinuxKernel.vala:1122 +#: src/Common/LinuxKernel.vala:1128 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "Установка завершена. Для використання нового ядра потрібна перезавантаження." -#: src/Common/LinuxKernel.vala:1125 +#: src/Common/LinuxKernel.vala:1131 msgid "Installation completed with errors" msgstr "Установка завершена з помилками" -#: src/Common/LinuxKernel.vala:1140 +#: src/Common/LinuxKernel.vala:1146 msgid "" "Selected kernel is currently running and cannot be un-installed.\n" " Install another kernel before un-installing this one." @@ -119,19 +119,19 @@ msgstr "" "Це ядро зараз працює і не може бути видалено. \n" "Встановіть інше ядро, перш ніж видаляти його." -#: src/Common/LinuxKernel.vala:1145 +#: src/Common/LinuxKernel.vala:1151 msgid "Preparing to uninstall selected kernels" msgstr "Підготовка до видалення вибраних ядер" -#: src/Common/LinuxKernel.vala:1176 src/Common/LinuxKernel.vala:1223 +#: src/Common/LinuxKernel.vala:1182 src/Common/LinuxKernel.vala:1229 msgid "Un-install completed" msgstr "Видалення завершено" -#: src/Common/LinuxKernel.vala:1179 src/Common/LinuxKernel.vala:1226 +#: src/Common/LinuxKernel.vala:1185 src/Common/LinuxKernel.vala:1232 msgid "Un-install completed with errors" msgstr "Видалення завершено з помилками" -#: src/Common/LinuxKernel.vala:1192 +#: src/Common/LinuxKernel.vala:1198 msgid "" "This kernel is currently running and cannot be un-installed.\n" " Install another kernel before un-installing this one." From 82424ba92c5844dedd5a73cf0ba64e9d7f889a51 Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Fri, 11 Nov 2022 20:58:16 -0500 Subject: [PATCH 189/567] 1.0.17 --- .deb_build_number.mak | 2 +- BRANDING.mak | 2 +- debian/changelog | 7 +++++++ 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/.deb_build_number.mak b/.deb_build_number.mak index 051a976f..e025efad 100644 --- a/.deb_build_number.mak +++ b/.deb_build_number.mak @@ -1,3 +1,3 @@ # This file is generated by Makefile "make deb_build_number" -DEB_PKG_VERSION := 1.0.16 +DEB_PKG_VERSION := 1.0.17 DEB_BUILD_NUMBER := 0000 diff --git a/BRANDING.mak b/BRANDING.mak index 7bdbe2ca..ebbbc0a6 100644 --- a/BRANDING.mak +++ b/BRANDING.mak @@ -3,7 +3,7 @@ VERSION_MAJOR = 1 VERSION_MINOR = 0 -VERSION_MICRO = 16 +VERSION_MICRO = 17 BRANDING_SHORTNAME = mainline BRANDING_LONGNAME = Ubuntu Mainline Kernel Installer BRANDING_AUTHORNAME = Brian K. White diff --git a/debian/changelog b/debian/changelog index eac4acf5..23704f94 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +mainline (1.0.17) unstable; urgency=medium + + * sylt@github - better scheme for lowest major kernel version to show in list -> lowest installed kernel version + "show previous N majors" setting now subtracts from whatever that produces rather than absolute current highest major version + + -- Brian K. White Fri, 11 Nov 2022 20:53:39 -0500 + mainline (1.0.16) unstable; urgency=medium * Don't consider a new major kernel version to exist yet if there are no successful builds in it yet. From 164f066e779c2d6eeeea64217975213d4a3e6c4e Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Fri, 11 Nov 2022 23:09:59 -0500 Subject: [PATCH 190/567] revert part of 1.0.17, always regen the list to reflect in-app installs/uninstalls --- .deb_build_number.mak | 2 +- BRANDING.mak | 2 +- debian/changelog | 6 +++++ po/de.po | 34 ++++++++++++++-------------- po/es.po | 34 ++++++++++++++-------------- po/fr.po | 34 ++++++++++++++-------------- po/hr.po | 34 ++++++++++++++-------------- po/it.po | 34 ++++++++++++++-------------- po/ko.po | 34 ++++++++++++++-------------- po/messages.pot | 44 +++++++++++++++++++++---------------- po/nl.po | 34 ++++++++++++++-------------- po/pl.po | 34 ++++++++++++++-------------- po/ru.po | 34 ++++++++++++++-------------- po/sv.po | 34 ++++++++++++++-------------- po/tr.po | 34 ++++++++++++++-------------- po/uk.po | 34 ++++++++++++++-------------- src/Common/LinuxKernel.vala | 11 ++-------- 17 files changed, 239 insertions(+), 234 deletions(-) diff --git a/.deb_build_number.mak b/.deb_build_number.mak index e025efad..9d7c1d1b 100644 --- a/.deb_build_number.mak +++ b/.deb_build_number.mak @@ -1,3 +1,3 @@ # This file is generated by Makefile "make deb_build_number" -DEB_PKG_VERSION := 1.0.17 +DEB_PKG_VERSION := 1.0.18 DEB_BUILD_NUMBER := 0000 diff --git a/BRANDING.mak b/BRANDING.mak index ebbbc0a6..ff2e0c60 100644 --- a/BRANDING.mak +++ b/BRANDING.mak @@ -3,7 +3,7 @@ VERSION_MAJOR = 1 VERSION_MINOR = 0 -VERSION_MICRO = 17 +VERSION_MICRO = 18 BRANDING_SHORTNAME = mainline BRANDING_LONGNAME = Ubuntu Mainline Kernel Installer BRANDING_AUTHORNAME = Brian K. White diff --git a/debian/changelog b/debian/changelog index 23704f94..97972029 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +mainline (1.0.18) unstable; urgency=medium + + * fix small list-update bug inroduced in 1.0.17 + + -- Brian K. White Fri, 11 Nov 2022 23:05:01 -0500 + mainline (1.0.17) unstable; urgency=medium * sylt@github - better scheme for lowest major kernel version to show in list -> lowest installed kernel version diff --git a/po/de.po b/po/de.po index 903b1a8a..6c2c2114 100644 --- a/po/de.po +++ b/po/de.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-11-11 18:43-0500\n" +"POT-Creation-Date: 2022-11-11 23:03-0500\n" "PO-Revision-Date: 2018-01-03 02:03-0600\n" "Last-Translator: Tobias W \n" "Language-Team: German\n" @@ -63,56 +63,56 @@ msgstr "Keine Updates gefunden" msgid "Install Kernel Version %s ? (y/n): " msgstr "Kernel-Version %s installieren? (j/n):" -#: src/Common/LinuxKernel.vala:932 +#: src/Common/LinuxKernel.vala:925 msgid "Packages Available" msgstr "Verfügbare Pakete" -#: src/Common/LinuxKernel.vala:940 +#: src/Common/LinuxKernel.vala:933 msgid "Packages Installed" msgstr "Installierte Packete" -#: src/Common/LinuxKernel.vala:1020 +#: src/Common/LinuxKernel.vala:1013 msgid "Available Kernels" msgstr "Verfügbare Kernels" -#: src/Common/LinuxKernel.vala:1027 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1020 src/Gtk/MainWindow.vala:186 msgid "Installed" msgstr "Installiert" -#: src/Common/LinuxKernel.vala:1027 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1020 src/Gtk/MainWindow.vala:186 #: src/Gtk/MainWindow.vala:628 src/Gtk/MainWindow.vala:642 msgid "Running" msgstr "Läuft" -#: src/Common/LinuxKernel.vala:1064 +#: src/Common/LinuxKernel.vala:1057 msgid "Downloading" msgstr "Downloaded" -#: src/Common/LinuxKernel.vala:1083 +#: src/Common/LinuxKernel.vala:1076 #: src/Utility/Gtk/CustomMessageDialog.vala:148 #: src/Utility/Gtk/CustomMessageDialog.vala:152 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:1088 +#: src/Common/LinuxKernel.vala:1081 msgid "ERROR" msgstr "Fehler" -#: src/Common/LinuxKernel.vala:1102 src/Gtk/MainWindow.vala:650 +#: src/Common/LinuxKernel.vala:1095 src/Gtk/MainWindow.vala:650 msgid "This kernel is already installed." msgstr "Dieser Kernel ist bereits installiert." -#: src/Common/LinuxKernel.vala:1128 +#: src/Common/LinuxKernel.vala:1121 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "Die Installation ist abgeschlossen. Ein Neustart ist erforderlich, um den " "neuen Kernel zu verwenden." -#: src/Common/LinuxKernel.vala:1131 +#: src/Common/LinuxKernel.vala:1124 msgid "Installation completed with errors" msgstr "Installation mit Fehlern abgeschlossen" -#: src/Common/LinuxKernel.vala:1146 +#: src/Common/LinuxKernel.vala:1139 msgid "" "Selected kernel is currently running and cannot be un-installed.\n" " Install another kernel before un-installing this one." @@ -121,19 +121,19 @@ msgstr "" "werden.\n" " Installieren Sie einen anderen Kernel, bevor Sie diesen deinstallieren." -#: src/Common/LinuxKernel.vala:1151 +#: src/Common/LinuxKernel.vala:1144 msgid "Preparing to uninstall selected kernels" msgstr "Vorbereiten der Deinstallation ausgewählter Kernel" -#: src/Common/LinuxKernel.vala:1182 src/Common/LinuxKernel.vala:1229 +#: src/Common/LinuxKernel.vala:1175 src/Common/LinuxKernel.vala:1222 msgid "Un-install completed" msgstr "Deinstallation abgeschlossen" -#: src/Common/LinuxKernel.vala:1185 src/Common/LinuxKernel.vala:1232 +#: src/Common/LinuxKernel.vala:1178 src/Common/LinuxKernel.vala:1225 msgid "Un-install completed with errors" msgstr "Deinstallation mit Fehlern abgeschlossen" -#: src/Common/LinuxKernel.vala:1198 +#: src/Common/LinuxKernel.vala:1191 msgid "" "This kernel is currently running and cannot be un-installed.\n" " Install another kernel before un-installing this one." diff --git a/po/es.po b/po/es.po index adf7f9c0..a35284d9 100644 --- a/po/es.po +++ b/po/es.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-11-11 18:43-0500\n" +"POT-Creation-Date: 2022-11-11 23:03-0500\n" "PO-Revision-Date: 2018-01-03 02:03-0600\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish\n" @@ -65,55 +65,55 @@ msgstr "No se encontró ninguna actualización" msgid "Install Kernel Version %s ? (y/n): " msgstr "" -#: src/Common/LinuxKernel.vala:932 +#: src/Common/LinuxKernel.vala:925 msgid "Packages Available" msgstr "Paquetes disponibles" -#: src/Common/LinuxKernel.vala:940 +#: src/Common/LinuxKernel.vala:933 msgid "Packages Installed" msgstr "Paquetes instalados" -#: src/Common/LinuxKernel.vala:1020 +#: src/Common/LinuxKernel.vala:1013 msgid "Available Kernels" msgstr "Núcleos disponibles" -#: src/Common/LinuxKernel.vala:1027 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1020 src/Gtk/MainWindow.vala:186 msgid "Installed" msgstr "Instalado" -#: src/Common/LinuxKernel.vala:1027 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1020 src/Gtk/MainWindow.vala:186 #: src/Gtk/MainWindow.vala:628 src/Gtk/MainWindow.vala:642 msgid "Running" msgstr "En ejecución" -#: src/Common/LinuxKernel.vala:1064 +#: src/Common/LinuxKernel.vala:1057 msgid "Downloading" msgstr "Descargando" -#: src/Common/LinuxKernel.vala:1083 +#: src/Common/LinuxKernel.vala:1076 #: src/Utility/Gtk/CustomMessageDialog.vala:148 #: src/Utility/Gtk/CustomMessageDialog.vala:152 msgid "OK" msgstr "Aceptar" -#: src/Common/LinuxKernel.vala:1088 +#: src/Common/LinuxKernel.vala:1081 msgid "ERROR" msgstr "ERROR" -#: src/Common/LinuxKernel.vala:1102 src/Gtk/MainWindow.vala:650 +#: src/Common/LinuxKernel.vala:1095 src/Gtk/MainWindow.vala:650 msgid "This kernel is already installed." msgstr "Este núcleo ya se instaló." -#: src/Common/LinuxKernel.vala:1128 +#: src/Common/LinuxKernel.vala:1121 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "Instalación finalizada. Se necesita reiniciar para utilizar el núcleo nuevo." -#: src/Common/LinuxKernel.vala:1131 +#: src/Common/LinuxKernel.vala:1124 msgid "Installation completed with errors" msgstr "Instalación finalizada con errores" -#: src/Common/LinuxKernel.vala:1146 +#: src/Common/LinuxKernel.vala:1139 #, fuzzy msgid "" "Selected kernel is currently running and cannot be un-installed.\n" @@ -122,20 +122,20 @@ msgstr "" "El núcleo seleccionado está en ejecución y no puede desinstalarse.\n" "Instale otro núcleo antes de desinstalar este." -#: src/Common/LinuxKernel.vala:1151 +#: src/Common/LinuxKernel.vala:1144 #, fuzzy msgid "Preparing to uninstall selected kernels" msgstr "Preparándose para desinstalar los núcleos seleccionados" -#: src/Common/LinuxKernel.vala:1182 src/Common/LinuxKernel.vala:1229 +#: src/Common/LinuxKernel.vala:1175 src/Common/LinuxKernel.vala:1222 msgid "Un-install completed" msgstr "Desinstalación finalizada" -#: src/Common/LinuxKernel.vala:1185 src/Common/LinuxKernel.vala:1232 +#: src/Common/LinuxKernel.vala:1178 src/Common/LinuxKernel.vala:1225 msgid "Un-install completed with errors" msgstr "Desinstalación finalizada con errores" -#: src/Common/LinuxKernel.vala:1198 +#: src/Common/LinuxKernel.vala:1191 #, fuzzy msgid "" "This kernel is currently running and cannot be un-installed.\n" diff --git a/po/fr.po b/po/fr.po index ca63c2e4..dd3fd66a 100644 --- a/po/fr.po +++ b/po/fr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-11-11 18:43-0500\n" +"POT-Creation-Date: 2022-11-11 23:03-0500\n" "PO-Revision-Date: 2018-08-05 15:50+0200\n" "Last-Translator: Yolateng0 \n" "Language-Team: French\n" @@ -65,56 +65,56 @@ msgstr "Aucune mise à jour disponible" msgid "Install Kernel Version %s ? (y/n): " msgstr "Installer le noyau en version %s ? (y/n): " -#: src/Common/LinuxKernel.vala:932 +#: src/Common/LinuxKernel.vala:925 msgid "Packages Available" msgstr "Paquets Disponibles" -#: src/Common/LinuxKernel.vala:940 +#: src/Common/LinuxKernel.vala:933 msgid "Packages Installed" msgstr "Paquets Installés" -#: src/Common/LinuxKernel.vala:1020 +#: src/Common/LinuxKernel.vala:1013 msgid "Available Kernels" msgstr "Noyaux Disponibles" -#: src/Common/LinuxKernel.vala:1027 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1020 src/Gtk/MainWindow.vala:186 msgid "Installed" msgstr "Installé" -#: src/Common/LinuxKernel.vala:1027 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1020 src/Gtk/MainWindow.vala:186 #: src/Gtk/MainWindow.vala:628 src/Gtk/MainWindow.vala:642 msgid "Running" msgstr "Actuel" -#: src/Common/LinuxKernel.vala:1064 +#: src/Common/LinuxKernel.vala:1057 msgid "Downloading" msgstr "Téléchargement" -#: src/Common/LinuxKernel.vala:1083 +#: src/Common/LinuxKernel.vala:1076 #: src/Utility/Gtk/CustomMessageDialog.vala:148 #: src/Utility/Gtk/CustomMessageDialog.vala:152 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:1088 +#: src/Common/LinuxKernel.vala:1081 msgid "ERROR" msgstr "ERREUR" -#: src/Common/LinuxKernel.vala:1102 src/Gtk/MainWindow.vala:650 +#: src/Common/LinuxKernel.vala:1095 src/Gtk/MainWindow.vala:650 msgid "This kernel is already installed." msgstr "Ce noyau est déjà installé." -#: src/Common/LinuxKernel.vala:1128 +#: src/Common/LinuxKernel.vala:1121 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "Installation complétée. Un redémarrage est nécessaire pour utiliser le " "nouveau noyau." -#: src/Common/LinuxKernel.vala:1131 +#: src/Common/LinuxKernel.vala:1124 msgid "Installation completed with errors" msgstr "Installation terminée avec des erreurs" -#: src/Common/LinuxKernel.vala:1146 +#: src/Common/LinuxKernel.vala:1139 #, fuzzy msgid "" "Selected kernel is currently running and cannot be un-installed.\n" @@ -123,20 +123,20 @@ msgstr "" "Ce noyau est en cours d'exécution et ne peut pas être supprimé.\n" " Installez un autre noyau avant de retirer celui-ci." -#: src/Common/LinuxKernel.vala:1151 +#: src/Common/LinuxKernel.vala:1144 #, fuzzy msgid "Preparing to uninstall selected kernels" msgstr "Préparation à la suppression des noyaux sélectionnés" -#: src/Common/LinuxKernel.vala:1182 src/Common/LinuxKernel.vala:1229 +#: src/Common/LinuxKernel.vala:1175 src/Common/LinuxKernel.vala:1222 msgid "Un-install completed" msgstr "Désinstallation complète" -#: src/Common/LinuxKernel.vala:1185 src/Common/LinuxKernel.vala:1232 +#: src/Common/LinuxKernel.vala:1178 src/Common/LinuxKernel.vala:1225 msgid "Un-install completed with errors" msgstr "Désinstallation terminée avec des erreurs" -#: src/Common/LinuxKernel.vala:1198 +#: src/Common/LinuxKernel.vala:1191 #, fuzzy msgid "" "This kernel is currently running and cannot be un-installed.\n" diff --git a/po/hr.po b/po/hr.po index c4147301..aea0d162 100644 --- a/po/hr.po +++ b/po/hr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-11-11 18:43-0500\n" +"POT-Creation-Date: 2022-11-11 23:03-0500\n" "PO-Revision-Date: 2022-09-22 12:13+0200\n" "Last-Translator: gogo \n" "Language-Team: Croatian\n" @@ -63,56 +63,56 @@ msgstr "Nema pronađenih nadopuna" msgid "Install Kernel Version %s ? (y/n): " msgstr "Instaliraj kernel inačice %s ? (d/n): " -#: src/Common/LinuxKernel.vala:932 +#: src/Common/LinuxKernel.vala:925 msgid "Packages Available" msgstr "Dostupni paketi" -#: src/Common/LinuxKernel.vala:940 +#: src/Common/LinuxKernel.vala:933 msgid "Packages Installed" msgstr "Instalirani paketi" -#: src/Common/LinuxKernel.vala:1020 +#: src/Common/LinuxKernel.vala:1013 msgid "Available Kernels" msgstr "Dostupni kerneli" -#: src/Common/LinuxKernel.vala:1027 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1020 src/Gtk/MainWindow.vala:186 msgid "Installed" msgstr "Instalirano" -#: src/Common/LinuxKernel.vala:1027 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1020 src/Gtk/MainWindow.vala:186 #: src/Gtk/MainWindow.vala:628 src/Gtk/MainWindow.vala:642 msgid "Running" msgstr "Pokrenuto" -#: src/Common/LinuxKernel.vala:1064 +#: src/Common/LinuxKernel.vala:1057 msgid "Downloading" msgstr "Preuzimanje" -#: src/Common/LinuxKernel.vala:1083 +#: src/Common/LinuxKernel.vala:1076 #: src/Utility/Gtk/CustomMessageDialog.vala:148 #: src/Utility/Gtk/CustomMessageDialog.vala:152 msgid "OK" msgstr "U redu" -#: src/Common/LinuxKernel.vala:1088 +#: src/Common/LinuxKernel.vala:1081 msgid "ERROR" msgstr "GREŠKA" -#: src/Common/LinuxKernel.vala:1102 src/Gtk/MainWindow.vala:650 +#: src/Common/LinuxKernel.vala:1095 src/Gtk/MainWindow.vala:650 msgid "This kernel is already installed." msgstr "Ovaj kernel je već instaliran." -#: src/Common/LinuxKernel.vala:1128 +#: src/Common/LinuxKernel.vala:1121 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "Instalacija je završena. Potrebno je ponovno pokretanje računala kako bi se " "koristio novi kernel." -#: src/Common/LinuxKernel.vala:1131 +#: src/Common/LinuxKernel.vala:1124 msgid "Installation completed with errors" msgstr "Instalacija je završena s greškama" -#: src/Common/LinuxKernel.vala:1146 +#: src/Common/LinuxKernel.vala:1139 msgid "" "Selected kernel is currently running and cannot be un-installed.\n" " Install another kernel before un-installing this one." @@ -120,19 +120,19 @@ msgstr "" "Odabrani kernel je trenutno pokernut i ne može se deinstalirati.\n" " Instalirajte drugi kernel prije uklanjanja trenutnog kernela." -#: src/Common/LinuxKernel.vala:1151 +#: src/Common/LinuxKernel.vala:1144 msgid "Preparing to uninstall selected kernels" msgstr "Pripremanje deinstalacije odabranih kernela" -#: src/Common/LinuxKernel.vala:1182 src/Common/LinuxKernel.vala:1229 +#: src/Common/LinuxKernel.vala:1175 src/Common/LinuxKernel.vala:1222 msgid "Un-install completed" msgstr "Deinstalacija završena" -#: src/Common/LinuxKernel.vala:1185 src/Common/LinuxKernel.vala:1232 +#: src/Common/LinuxKernel.vala:1178 src/Common/LinuxKernel.vala:1225 msgid "Un-install completed with errors" msgstr "Deinstalacija završena s greškama" -#: src/Common/LinuxKernel.vala:1198 +#: src/Common/LinuxKernel.vala:1191 msgid "" "This kernel is currently running and cannot be un-installed.\n" " Install another kernel before un-installing this one." diff --git a/po/it.po b/po/it.po index ab5321e0..827fb708 100644 --- a/po/it.po +++ b/po/it.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline 1.0.15\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-11-11 18:43-0500\n" +"POT-Creation-Date: 2022-11-11 23:03-0500\n" "PO-Revision-Date: 2020-08-22 15:35+0100\n" "Last-Translator: Albano Battistella \n" "Language-Team: Italian\n" @@ -61,56 +61,56 @@ msgstr "Nessun aggiornamento trovato" msgid "Install Kernel Version %s ? (y/n): " msgstr "Installare la versione del kernel %s ? (y/n): " -#: src/Common/LinuxKernel.vala:932 +#: src/Common/LinuxKernel.vala:925 msgid "Packages Available" msgstr "Pacchetti disponibili" -#: src/Common/LinuxKernel.vala:940 +#: src/Common/LinuxKernel.vala:933 msgid "Packages Installed" msgstr "Pacchetti installati" -#: src/Common/LinuxKernel.vala:1020 +#: src/Common/LinuxKernel.vala:1013 msgid "Available Kernels" msgstr "Kernel disponibili" -#: src/Common/LinuxKernel.vala:1027 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1020 src/Gtk/MainWindow.vala:186 msgid "Installed" msgstr "Installato" -#: src/Common/LinuxKernel.vala:1027 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1020 src/Gtk/MainWindow.vala:186 #: src/Gtk/MainWindow.vala:628 src/Gtk/MainWindow.vala:642 msgid "Running" msgstr "In esecuzione" -#: src/Common/LinuxKernel.vala:1064 +#: src/Common/LinuxKernel.vala:1057 msgid "Downloading" msgstr "Download in corso" -#: src/Common/LinuxKernel.vala:1083 +#: src/Common/LinuxKernel.vala:1076 #: src/Utility/Gtk/CustomMessageDialog.vala:148 #: src/Utility/Gtk/CustomMessageDialog.vala:152 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:1088 +#: src/Common/LinuxKernel.vala:1081 msgid "ERROR" msgstr "ERRORE" -#: src/Common/LinuxKernel.vala:1102 src/Gtk/MainWindow.vala:650 +#: src/Common/LinuxKernel.vala:1095 src/Gtk/MainWindow.vala:650 msgid "This kernel is already installed." msgstr "Questo kernel è già installato" -#: src/Common/LinuxKernel.vala:1128 +#: src/Common/LinuxKernel.vala:1121 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "Installazione completata. È necessario riavviare per utilizzare ilnuovo " "kernel." -#: src/Common/LinuxKernel.vala:1131 +#: src/Common/LinuxKernel.vala:1124 msgid "Installation completed with errors" msgstr "Installazione completata con errori" -#: src/Common/LinuxKernel.vala:1146 +#: src/Common/LinuxKernel.vala:1139 msgid "" "Selected kernel is currently running and cannot be un-installed.\n" " Install another kernel before un-installing this one." @@ -118,19 +118,19 @@ msgstr "" "Il kernel selezionato è attualmente in esecuzione e non può essere rimosso.\n" "Installa un altro kernel prima di rimuovere questo." -#: src/Common/LinuxKernel.vala:1151 +#: src/Common/LinuxKernel.vala:1144 msgid "Preparing to uninstall selected kernels" msgstr "Preparazione per rimuovere i kernel selezionati" -#: src/Common/LinuxKernel.vala:1182 src/Common/LinuxKernel.vala:1229 +#: src/Common/LinuxKernel.vala:1175 src/Common/LinuxKernel.vala:1222 msgid "Un-install completed" msgstr "Disinstallazione completata" -#: src/Common/LinuxKernel.vala:1185 src/Common/LinuxKernel.vala:1232 +#: src/Common/LinuxKernel.vala:1178 src/Common/LinuxKernel.vala:1225 msgid "Un-install completed with errors" msgstr "Disinstallazione completata con errori" -#: src/Common/LinuxKernel.vala:1198 +#: src/Common/LinuxKernel.vala:1191 msgid "" "This kernel is currently running and cannot be un-installed.\n" " Install another kernel before un-installing this one." diff --git a/po/ko.po b/po/ko.po index 85da5685..2128ee16 100644 --- a/po/ko.po +++ b/po/ko.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline 1.0.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-11-11 18:43-0500\n" +"POT-Creation-Date: 2022-11-11 23:03-0500\n" "PO-Revision-Date: 2022-09-28 11:48+0900\n" "Last-Translator: Kevin Kim \n" "Language-Team: Korean\n" @@ -63,54 +63,54 @@ msgstr "업데이트를 찾을 수 없습니다" msgid "Install Kernel Version %s ? (y/n): " msgstr "커널 %s 버전을 설치하시겠습니까? (y/n): " -#: src/Common/LinuxKernel.vala:932 +#: src/Common/LinuxKernel.vala:925 msgid "Packages Available" msgstr "설치 가능한 패키지" -#: src/Common/LinuxKernel.vala:940 +#: src/Common/LinuxKernel.vala:933 msgid "Packages Installed" msgstr "설치된 패키지" -#: src/Common/LinuxKernel.vala:1020 +#: src/Common/LinuxKernel.vala:1013 msgid "Available Kernels" msgstr "설치 가능한 커널" -#: src/Common/LinuxKernel.vala:1027 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1020 src/Gtk/MainWindow.vala:186 msgid "Installed" msgstr "설치 됨" -#: src/Common/LinuxKernel.vala:1027 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1020 src/Gtk/MainWindow.vala:186 #: src/Gtk/MainWindow.vala:628 src/Gtk/MainWindow.vala:642 msgid "Running" msgstr "구동 중" -#: src/Common/LinuxKernel.vala:1064 +#: src/Common/LinuxKernel.vala:1057 msgid "Downloading" msgstr "다운로드 중" -#: src/Common/LinuxKernel.vala:1083 +#: src/Common/LinuxKernel.vala:1076 #: src/Utility/Gtk/CustomMessageDialog.vala:148 #: src/Utility/Gtk/CustomMessageDialog.vala:152 msgid "OK" msgstr "확인" -#: src/Common/LinuxKernel.vala:1088 +#: src/Common/LinuxKernel.vala:1081 msgid "ERROR" msgstr "오류" -#: src/Common/LinuxKernel.vala:1102 src/Gtk/MainWindow.vala:650 +#: src/Common/LinuxKernel.vala:1095 src/Gtk/MainWindow.vala:650 msgid "This kernel is already installed." msgstr "이 커널은 이미 설치되었습니다." -#: src/Common/LinuxKernel.vala:1128 +#: src/Common/LinuxKernel.vala:1121 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "설치가 완료되었습닌다. 새 커널을 사용하려면 시스템을 재시작 하세요." -#: src/Common/LinuxKernel.vala:1131 +#: src/Common/LinuxKernel.vala:1124 msgid "Installation completed with errors" msgstr "오류가 있으나 설치가 완료되었습니다" -#: src/Common/LinuxKernel.vala:1146 +#: src/Common/LinuxKernel.vala:1139 msgid "" "Selected kernel is currently running and cannot be un-installed.\n" " Install another kernel before un-installing this one." @@ -118,19 +118,19 @@ msgstr "" "선택된 커널은 현재 사용 중이므로 삭제할 수 없습니다.\n" " 이 커널을 삭제하려면 다른 커널을 먼저 설치하세요." -#: src/Common/LinuxKernel.vala:1151 +#: src/Common/LinuxKernel.vala:1144 msgid "Preparing to uninstall selected kernels" msgstr "선택한 커널을 삭제하기 위해 준비중입니다" -#: src/Common/LinuxKernel.vala:1182 src/Common/LinuxKernel.vala:1229 +#: src/Common/LinuxKernel.vala:1175 src/Common/LinuxKernel.vala:1222 msgid "Un-install completed" msgstr "삭제가 완료되었습니다" -#: src/Common/LinuxKernel.vala:1185 src/Common/LinuxKernel.vala:1232 +#: src/Common/LinuxKernel.vala:1178 src/Common/LinuxKernel.vala:1225 msgid "Un-install completed with errors" msgstr "오류가 있으나 삭제가 완료되었습니다" -#: src/Common/LinuxKernel.vala:1198 +#: src/Common/LinuxKernel.vala:1191 msgid "" "This kernel is currently running and cannot be un-installed.\n" " Install another kernel before un-installing this one." diff --git a/po/messages.pot b/po/messages.pot index f69cfd48..3b1aaf19 100644 --- a/po/messages.pot +++ b/po/messages.pot @@ -1,11 +1,17 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the mainline package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy msgid "" msgstr "" -"Project-Id-Version: mainline 1.0.17\n" +"Project-Id-Version: mainline 1.0.18\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-11-11 18:43-0500\n" +"POT-Creation-Date: 2022-11-11 23:03-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" +"Language-Team: LANGUAGE \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=CHARSET\n" @@ -61,72 +67,72 @@ msgstr "" msgid "Install Kernel Version %s ? (y/n): " msgstr "" -#: src/Common/LinuxKernel.vala:932 +#: src/Common/LinuxKernel.vala:925 msgid "Packages Available" msgstr "" -#: src/Common/LinuxKernel.vala:940 +#: src/Common/LinuxKernel.vala:933 msgid "Packages Installed" msgstr "" -#: src/Common/LinuxKernel.vala:1020 +#: src/Common/LinuxKernel.vala:1013 msgid "Available Kernels" msgstr "" -#: src/Common/LinuxKernel.vala:1027 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1020 src/Gtk/MainWindow.vala:186 msgid "Installed" msgstr "" -#: src/Common/LinuxKernel.vala:1027 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1020 src/Gtk/MainWindow.vala:186 #: src/Gtk/MainWindow.vala:628 src/Gtk/MainWindow.vala:642 msgid "Running" msgstr "" -#: src/Common/LinuxKernel.vala:1064 +#: src/Common/LinuxKernel.vala:1057 msgid "Downloading" msgstr "" -#: src/Common/LinuxKernel.vala:1083 +#: src/Common/LinuxKernel.vala:1076 #: src/Utility/Gtk/CustomMessageDialog.vala:148 #: src/Utility/Gtk/CustomMessageDialog.vala:152 msgid "OK" msgstr "" -#: src/Common/LinuxKernel.vala:1088 +#: src/Common/LinuxKernel.vala:1081 msgid "ERROR" msgstr "" -#: src/Common/LinuxKernel.vala:1102 src/Gtk/MainWindow.vala:650 +#: src/Common/LinuxKernel.vala:1095 src/Gtk/MainWindow.vala:650 msgid "This kernel is already installed." msgstr "" -#: src/Common/LinuxKernel.vala:1128 +#: src/Common/LinuxKernel.vala:1121 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" -#: src/Common/LinuxKernel.vala:1131 +#: src/Common/LinuxKernel.vala:1124 msgid "Installation completed with errors" msgstr "" -#: src/Common/LinuxKernel.vala:1146 +#: src/Common/LinuxKernel.vala:1139 msgid "" "Selected kernel is currently running and cannot be un-installed.\n" " Install another kernel before un-installing this one." msgstr "" -#: src/Common/LinuxKernel.vala:1151 +#: src/Common/LinuxKernel.vala:1144 msgid "Preparing to uninstall selected kernels" msgstr "" -#: src/Common/LinuxKernel.vala:1182 src/Common/LinuxKernel.vala:1229 +#: src/Common/LinuxKernel.vala:1175 src/Common/LinuxKernel.vala:1222 msgid "Un-install completed" msgstr "" -#: src/Common/LinuxKernel.vala:1185 src/Common/LinuxKernel.vala:1232 +#: src/Common/LinuxKernel.vala:1178 src/Common/LinuxKernel.vala:1225 msgid "Un-install completed with errors" msgstr "" -#: src/Common/LinuxKernel.vala:1198 +#: src/Common/LinuxKernel.vala:1191 msgid "" "This kernel is currently running and cannot be un-installed.\n" " Install another kernel before un-installing this one." diff --git a/po/nl.po b/po/nl.po index 2a424a65..48691a0f 100644 --- a/po/nl.po +++ b/po/nl.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-11-11 18:43-0500\n" +"POT-Creation-Date: 2022-11-11 23:03-0500\n" "PO-Revision-Date: 2020-08-23 13:55+0200\n" "Last-Translator: Heimen Stoffels \n" "Language-Team: Dutch (Netherlands)\n" @@ -65,56 +65,56 @@ msgstr "Geen updates gevonden" msgid "Install Kernel Version %s ? (y/n): " msgstr "Wil je versie %s installeren? (j/n): " -#: src/Common/LinuxKernel.vala:932 +#: src/Common/LinuxKernel.vala:925 msgid "Packages Available" msgstr "Beschikbare pakketten" -#: src/Common/LinuxKernel.vala:940 +#: src/Common/LinuxKernel.vala:933 msgid "Packages Installed" msgstr "Geïnstalleerde pakketten" -#: src/Common/LinuxKernel.vala:1020 +#: src/Common/LinuxKernel.vala:1013 msgid "Available Kernels" msgstr "Beschikbare kernels" -#: src/Common/LinuxKernel.vala:1027 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1020 src/Gtk/MainWindow.vala:186 msgid "Installed" msgstr "Geïnstalleerd" -#: src/Common/LinuxKernel.vala:1027 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1020 src/Gtk/MainWindow.vala:186 #: src/Gtk/MainWindow.vala:628 src/Gtk/MainWindow.vala:642 msgid "Running" msgstr "In gebruik" -#: src/Common/LinuxKernel.vala:1064 +#: src/Common/LinuxKernel.vala:1057 msgid "Downloading" msgstr "Bezig met downloaden" -#: src/Common/LinuxKernel.vala:1083 +#: src/Common/LinuxKernel.vala:1076 #: src/Utility/Gtk/CustomMessageDialog.vala:148 #: src/Utility/Gtk/CustomMessageDialog.vala:152 msgid "OK" msgstr "Oké" -#: src/Common/LinuxKernel.vala:1088 +#: src/Common/LinuxKernel.vala:1081 msgid "ERROR" msgstr "FOUT" -#: src/Common/LinuxKernel.vala:1102 src/Gtk/MainWindow.vala:650 +#: src/Common/LinuxKernel.vala:1095 src/Gtk/MainWindow.vala:650 msgid "This kernel is already installed." msgstr "Deze kernel is al geïnstalleerd." -#: src/Common/LinuxKernel.vala:1128 +#: src/Common/LinuxKernel.vala:1121 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "De installatie is voltooid. Herstart de computer om de nieuwe kernel te " "gebruiken." -#: src/Common/LinuxKernel.vala:1131 +#: src/Common/LinuxKernel.vala:1124 msgid "Installation completed with errors" msgstr "De installatie is foutloos voltooid" -#: src/Common/LinuxKernel.vala:1146 +#: src/Common/LinuxKernel.vala:1139 #, fuzzy msgid "" "Selected kernel is currently running and cannot be un-installed.\n" @@ -124,20 +124,20 @@ msgstr "" "verwijderd.\n" " Installeer eerst een andere kernel." -#: src/Common/LinuxKernel.vala:1151 +#: src/Common/LinuxKernel.vala:1144 #, fuzzy msgid "Preparing to uninstall selected kernels" msgstr "Bezig met voorbereiden van verwijdering" -#: src/Common/LinuxKernel.vala:1182 src/Common/LinuxKernel.vala:1229 +#: src/Common/LinuxKernel.vala:1175 src/Common/LinuxKernel.vala:1222 msgid "Un-install completed" msgstr "Deïnstalleren voltooid" -#: src/Common/LinuxKernel.vala:1185 src/Common/LinuxKernel.vala:1232 +#: src/Common/LinuxKernel.vala:1178 src/Common/LinuxKernel.vala:1225 msgid "Un-install completed with errors" msgstr "Deïnstalleren voltooid, maar met fouten" -#: src/Common/LinuxKernel.vala:1198 +#: src/Common/LinuxKernel.vala:1191 #, fuzzy msgid "" "This kernel is currently running and cannot be un-installed.\n" diff --git a/po/pl.po b/po/pl.po index fb6f4838..9cbdbbac 100644 --- a/po/pl.po +++ b/po/pl.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-11-11 18:43-0500\n" +"POT-Creation-Date: 2022-11-11 23:03-0500\n" "PO-Revision-Date: 2021-09-17 10:29+0200\n" "Last-Translator: Viktor Sokyrko \n" "Language-Team: Polish\n" @@ -63,56 +63,56 @@ msgstr "Nie znaleziono aktualizacji" msgid "Install Kernel Version %s ? (y/n): " msgstr "Instaluj wersję jądra %s ? (t/n): " -#: src/Common/LinuxKernel.vala:932 +#: src/Common/LinuxKernel.vala:925 msgid "Packages Available" msgstr "Dostępne pakiety" -#: src/Common/LinuxKernel.vala:940 +#: src/Common/LinuxKernel.vala:933 msgid "Packages Installed" msgstr "Pakiety zainstalowane" -#: src/Common/LinuxKernel.vala:1020 +#: src/Common/LinuxKernel.vala:1013 msgid "Available Kernels" msgstr "Dostępne jądra" -#: src/Common/LinuxKernel.vala:1027 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1020 src/Gtk/MainWindow.vala:186 msgid "Installed" msgstr "Zainstalowany" -#: src/Common/LinuxKernel.vala:1027 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1020 src/Gtk/MainWindow.vala:186 #: src/Gtk/MainWindow.vala:628 src/Gtk/MainWindow.vala:642 msgid "Running" msgstr "Uruchomiony" -#: src/Common/LinuxKernel.vala:1064 +#: src/Common/LinuxKernel.vala:1057 msgid "Downloading" msgstr "Pobieranie" -#: src/Common/LinuxKernel.vala:1083 +#: src/Common/LinuxKernel.vala:1076 #: src/Utility/Gtk/CustomMessageDialog.vala:148 #: src/Utility/Gtk/CustomMessageDialog.vala:152 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:1088 +#: src/Common/LinuxKernel.vala:1081 msgid "ERROR" msgstr "BŁĄD" -#: src/Common/LinuxKernel.vala:1102 src/Gtk/MainWindow.vala:650 +#: src/Common/LinuxKernel.vala:1095 src/Gtk/MainWindow.vala:650 msgid "This kernel is already installed." msgstr "To jądro jest już zainstalowane." -#: src/Common/LinuxKernel.vala:1128 +#: src/Common/LinuxKernel.vala:1121 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "Instalacja zakończona. Aby korzystać z nowego jądra, konieczne jest ponowne " "uruchomienie." -#: src/Common/LinuxKernel.vala:1131 +#: src/Common/LinuxKernel.vala:1124 msgid "Installation completed with errors" msgstr "Instalacja zakończona z błędami" -#: src/Common/LinuxKernel.vala:1146 +#: src/Common/LinuxKernel.vala:1139 msgid "" "Selected kernel is currently running and cannot be un-installed.\n" " Install another kernel before un-installing this one." @@ -120,19 +120,19 @@ msgstr "" "Wybrane jądro aktualnie działa i nie może zostać odinstalowane.\n" " Zainstaluj inne jądro przed odinstalowaniem tego." -#: src/Common/LinuxKernel.vala:1151 +#: src/Common/LinuxKernel.vala:1144 msgid "Preparing to uninstall selected kernels" msgstr "Przygotowanie do odinstalowania wybranych jąder" -#: src/Common/LinuxKernel.vala:1182 src/Common/LinuxKernel.vala:1229 +#: src/Common/LinuxKernel.vala:1175 src/Common/LinuxKernel.vala:1222 msgid "Un-install completed" msgstr "Deinstalacja zakończona" -#: src/Common/LinuxKernel.vala:1185 src/Common/LinuxKernel.vala:1232 +#: src/Common/LinuxKernel.vala:1178 src/Common/LinuxKernel.vala:1225 msgid "Un-install completed with errors" msgstr "De-instalacja zakończona z błędami" -#: src/Common/LinuxKernel.vala:1198 +#: src/Common/LinuxKernel.vala:1191 msgid "" "This kernel is currently running and cannot be un-installed.\n" " Install another kernel before un-installing this one." diff --git a/po/ru.po b/po/ru.po index c287e2a0..da355a29 100644 --- a/po/ru.po +++ b/po/ru.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-11-11 18:43-0500\n" +"POT-Creation-Date: 2022-11-11 23:03-0500\n" "PO-Revision-Date: 2022-02-24 16:05+0300\n" "Last-Translator: Danik2343 \n" "Language-Team: Russian\n" @@ -63,56 +63,56 @@ msgstr "Обновлений не найдено" msgid "Install Kernel Version %s ? (y/n): " msgstr "Установить версию ядра %s ? (y/n): " -#: src/Common/LinuxKernel.vala:932 +#: src/Common/LinuxKernel.vala:925 msgid "Packages Available" msgstr "Доступные пакеты" -#: src/Common/LinuxKernel.vala:940 +#: src/Common/LinuxKernel.vala:933 msgid "Packages Installed" msgstr "Установленные пакеты" -#: src/Common/LinuxKernel.vala:1020 +#: src/Common/LinuxKernel.vala:1013 msgid "Available Kernels" msgstr "Доступные ядра" -#: src/Common/LinuxKernel.vala:1027 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1020 src/Gtk/MainWindow.vala:186 msgid "Installed" msgstr "Установлено" -#: src/Common/LinuxKernel.vala:1027 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1020 src/Gtk/MainWindow.vala:186 #: src/Gtk/MainWindow.vala:628 src/Gtk/MainWindow.vala:642 msgid "Running" msgstr "Используется" -#: src/Common/LinuxKernel.vala:1064 +#: src/Common/LinuxKernel.vala:1057 msgid "Downloading" msgstr "Загрузка" -#: src/Common/LinuxKernel.vala:1083 +#: src/Common/LinuxKernel.vala:1076 #: src/Utility/Gtk/CustomMessageDialog.vala:148 #: src/Utility/Gtk/CustomMessageDialog.vala:152 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:1088 +#: src/Common/LinuxKernel.vala:1081 msgid "ERROR" msgstr "ОШИБКА" -#: src/Common/LinuxKernel.vala:1102 src/Gtk/MainWindow.vala:650 +#: src/Common/LinuxKernel.vala:1095 src/Gtk/MainWindow.vala:650 msgid "This kernel is already installed." msgstr "Это ядро уже установлено." -#: src/Common/LinuxKernel.vala:1128 +#: src/Common/LinuxKernel.vala:1121 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "Установка завершена. Обязательно выполните перезагрузку, чтобы использовать " "новое ядро." -#: src/Common/LinuxKernel.vala:1131 +#: src/Common/LinuxKernel.vala:1124 msgid "Installation completed with errors" msgstr "Установка завершена с ошибками" -#: src/Common/LinuxKernel.vala:1146 +#: src/Common/LinuxKernel.vala:1139 msgid "" "Selected kernel is currently running and cannot be un-installed.\n" " Install another kernel before un-installing this one." @@ -120,19 +120,19 @@ msgstr "" "Это ядро в настоящий момент работает и не может быть удалено.\n" " Установите другое ядро, прежде чем удалять его." -#: src/Common/LinuxKernel.vala:1151 +#: src/Common/LinuxKernel.vala:1144 msgid "Preparing to uninstall selected kernels" msgstr "Подготовка к деинсталляции выбранных ядер" -#: src/Common/LinuxKernel.vala:1182 src/Common/LinuxKernel.vala:1229 +#: src/Common/LinuxKernel.vala:1175 src/Common/LinuxKernel.vala:1222 msgid "Un-install completed" msgstr "Удаление завершено" -#: src/Common/LinuxKernel.vala:1185 src/Common/LinuxKernel.vala:1232 +#: src/Common/LinuxKernel.vala:1178 src/Common/LinuxKernel.vala:1225 msgid "Un-install completed with errors" msgstr "Удаление завершено с ошибками" -#: src/Common/LinuxKernel.vala:1198 +#: src/Common/LinuxKernel.vala:1191 msgid "" "This kernel is currently running and cannot be un-installed.\n" " Install another kernel before un-installing this one." diff --git a/po/sv.po b/po/sv.po index 6cac602e..540c4ab2 100644 --- a/po/sv.po +++ b/po/sv.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-11-11 18:43-0500\n" +"POT-Creation-Date: 2022-11-11 23:03-0500\n" "PO-Revision-Date: 2018-01-13 16:56+0100\n" "Last-Translator: Åke Engelbrektson \n" "Language-Team:Swedish\n" @@ -68,54 +68,54 @@ msgstr "Inga uppdateringar hittades" msgid "Install Kernel Version %s ? (y/n): " msgstr "" -#: src/Common/LinuxKernel.vala:932 +#: src/Common/LinuxKernel.vala:925 msgid "Packages Available" msgstr "Tillgängliga paket" -#: src/Common/LinuxKernel.vala:940 +#: src/Common/LinuxKernel.vala:933 msgid "Packages Installed" msgstr "Installerade paket" -#: src/Common/LinuxKernel.vala:1020 +#: src/Common/LinuxKernel.vala:1013 msgid "Available Kernels" msgstr "Tillgängliga kärnor" -#: src/Common/LinuxKernel.vala:1027 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1020 src/Gtk/MainWindow.vala:186 msgid "Installed" msgstr "Installerad" -#: src/Common/LinuxKernel.vala:1027 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1020 src/Gtk/MainWindow.vala:186 #: src/Gtk/MainWindow.vala:628 src/Gtk/MainWindow.vala:642 msgid "Running" msgstr "Körs" -#: src/Common/LinuxKernel.vala:1064 +#: src/Common/LinuxKernel.vala:1057 msgid "Downloading" msgstr "Laddar ner" -#: src/Common/LinuxKernel.vala:1083 +#: src/Common/LinuxKernel.vala:1076 #: src/Utility/Gtk/CustomMessageDialog.vala:148 #: src/Utility/Gtk/CustomMessageDialog.vala:152 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:1088 +#: src/Common/LinuxKernel.vala:1081 msgid "ERROR" msgstr "FEL" -#: src/Common/LinuxKernel.vala:1102 src/Gtk/MainWindow.vala:650 +#: src/Common/LinuxKernel.vala:1095 src/Gtk/MainWindow.vala:650 msgid "This kernel is already installed." msgstr "Denna kärna är redan installerad" -#: src/Common/LinuxKernel.vala:1128 +#: src/Common/LinuxKernel.vala:1121 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "Installation slutförd. Omstart krävs för att tillämpa den nya kärnan." -#: src/Common/LinuxKernel.vala:1131 +#: src/Common/LinuxKernel.vala:1124 msgid "Installation completed with errors" msgstr "Installation slutförd med fel" -#: src/Common/LinuxKernel.vala:1146 +#: src/Common/LinuxKernel.vala:1139 #, fuzzy msgid "" "Selected kernel is currently running and cannot be un-installed.\n" @@ -124,20 +124,20 @@ msgstr "" "Denna kärna används för tillfället och kan inte tas bort.\n" "Installera en annan kärna innan du tar bort den här." -#: src/Common/LinuxKernel.vala:1151 +#: src/Common/LinuxKernel.vala:1144 #, fuzzy msgid "Preparing to uninstall selected kernels" msgstr "Förbereder borttagning av markerade kärnor" -#: src/Common/LinuxKernel.vala:1182 src/Common/LinuxKernel.vala:1229 +#: src/Common/LinuxKernel.vala:1175 src/Common/LinuxKernel.vala:1222 msgid "Un-install completed" msgstr "Avinstallation slutförd" -#: src/Common/LinuxKernel.vala:1185 src/Common/LinuxKernel.vala:1232 +#: src/Common/LinuxKernel.vala:1178 src/Common/LinuxKernel.vala:1225 msgid "Un-install completed with errors" msgstr "Avinstallation slutförd med fel" -#: src/Common/LinuxKernel.vala:1198 +#: src/Common/LinuxKernel.vala:1191 #, fuzzy msgid "" "This kernel is currently running and cannot be un-installed.\n" diff --git a/po/tr.po b/po/tr.po index 4a9256be..30f69d58 100644 --- a/po/tr.po +++ b/po/tr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-11-11 18:43-0500\n" +"POT-Creation-Date: 2022-11-11 23:03-0500\n" "PO-Revision-Date: 2022-08-06 16:48+0300\n" "Last-Translator: Sabri Ünal \n" "Language-Team: Turkish\n" @@ -64,55 +64,55 @@ msgstr "Güncelleme bulunamadı" msgid "Install Kernel Version %s ? (y/n): " msgstr "Linux Çekirdek Sürümü %s Kurulsun mu? (e/h): " -#: src/Common/LinuxKernel.vala:932 +#: src/Common/LinuxKernel.vala:925 msgid "Packages Available" msgstr "Mevcut Paketler" -#: src/Common/LinuxKernel.vala:940 +#: src/Common/LinuxKernel.vala:933 msgid "Packages Installed" msgstr "Kurulu Paketler" -#: src/Common/LinuxKernel.vala:1020 +#: src/Common/LinuxKernel.vala:1013 msgid "Available Kernels" msgstr "Mevcut Çekirdekler" -#: src/Common/LinuxKernel.vala:1027 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1020 src/Gtk/MainWindow.vala:186 msgid "Installed" msgstr "Kurulu" -#: src/Common/LinuxKernel.vala:1027 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1020 src/Gtk/MainWindow.vala:186 #: src/Gtk/MainWindow.vala:628 src/Gtk/MainWindow.vala:642 msgid "Running" msgstr "Çalışıyor" -#: src/Common/LinuxKernel.vala:1064 +#: src/Common/LinuxKernel.vala:1057 msgid "Downloading" msgstr "İndiriliyor" -#: src/Common/LinuxKernel.vala:1083 +#: src/Common/LinuxKernel.vala:1076 #: src/Utility/Gtk/CustomMessageDialog.vala:148 #: src/Utility/Gtk/CustomMessageDialog.vala:152 msgid "OK" msgstr "Tamam" -#: src/Common/LinuxKernel.vala:1088 +#: src/Common/LinuxKernel.vala:1081 msgid "ERROR" msgstr "HATA" -#: src/Common/LinuxKernel.vala:1102 src/Gtk/MainWindow.vala:650 +#: src/Common/LinuxKernel.vala:1095 src/Gtk/MainWindow.vala:650 msgid "This kernel is already installed." msgstr "Bu çekirdek zaten kurulu." -#: src/Common/LinuxKernel.vala:1128 +#: src/Common/LinuxKernel.vala:1121 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "Kurulum tamamlandı. Yeni çekirdeği kullanmak için yeniden başlatma gerekiyor." -#: src/Common/LinuxKernel.vala:1131 +#: src/Common/LinuxKernel.vala:1124 msgid "Installation completed with errors" msgstr "Kurulum hatalarla tamamlandı" -#: src/Common/LinuxKernel.vala:1146 +#: src/Common/LinuxKernel.vala:1139 msgid "" "Selected kernel is currently running and cannot be un-installed.\n" " Install another kernel before un-installing this one." @@ -120,19 +120,19 @@ msgstr "" "Seçilen çekirdek şu anda çalışıyor ve kaldırılamaz.\n" " Bunu kaldırmadan önce başka bir çekirdek yükleyin." -#: src/Common/LinuxKernel.vala:1151 +#: src/Common/LinuxKernel.vala:1144 msgid "Preparing to uninstall selected kernels" msgstr "Seçilen çekirdekleri kaldırmaya hazırlanıyor" -#: src/Common/LinuxKernel.vala:1182 src/Common/LinuxKernel.vala:1229 +#: src/Common/LinuxKernel.vala:1175 src/Common/LinuxKernel.vala:1222 msgid "Un-install completed" msgstr "Kaldırma tamamlandı" -#: src/Common/LinuxKernel.vala:1185 src/Common/LinuxKernel.vala:1232 +#: src/Common/LinuxKernel.vala:1178 src/Common/LinuxKernel.vala:1225 msgid "Un-install completed with errors" msgstr "Kaldırma hatalarla tamamlandı" -#: src/Common/LinuxKernel.vala:1198 +#: src/Common/LinuxKernel.vala:1191 msgid "" "This kernel is currently running and cannot be un-installed.\n" " Install another kernel before un-installing this one." diff --git a/po/uk.po b/po/uk.po index 4242c728..22ce37eb 100644 --- a/po/uk.po +++ b/po/uk.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-11-11 18:43-0500\n" +"POT-Creation-Date: 2022-11-11 23:03-0500\n" "PO-Revision-Date: 2019-07-25 11:00+0300\n" "Last-Translator: Serhii Golovko \n" "Language-Team: Ukranian\n" @@ -63,55 +63,55 @@ msgstr "Оновлень не знайдено" msgid "Install Kernel Version %s ? (y/n): " msgstr "Встановити Ядро Версії %s ? (так/ні): " -#: src/Common/LinuxKernel.vala:932 +#: src/Common/LinuxKernel.vala:925 msgid "Packages Available" msgstr "Доступні пакети" -#: src/Common/LinuxKernel.vala:940 +#: src/Common/LinuxKernel.vala:933 msgid "Packages Installed" msgstr "Встановлені пакети" -#: src/Common/LinuxKernel.vala:1020 +#: src/Common/LinuxKernel.vala:1013 msgid "Available Kernels" msgstr "Доступні ядра" -#: src/Common/LinuxKernel.vala:1027 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1020 src/Gtk/MainWindow.vala:186 msgid "Installed" msgstr "Встановлено" -#: src/Common/LinuxKernel.vala:1027 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1020 src/Gtk/MainWindow.vala:186 #: src/Gtk/MainWindow.vala:628 src/Gtk/MainWindow.vala:642 msgid "Running" msgstr "Використовується" -#: src/Common/LinuxKernel.vala:1064 +#: src/Common/LinuxKernel.vala:1057 msgid "Downloading" msgstr "Завантаження" -#: src/Common/LinuxKernel.vala:1083 +#: src/Common/LinuxKernel.vala:1076 #: src/Utility/Gtk/CustomMessageDialog.vala:148 #: src/Utility/Gtk/CustomMessageDialog.vala:152 msgid "OK" msgstr "Добре" -#: src/Common/LinuxKernel.vala:1088 +#: src/Common/LinuxKernel.vala:1081 msgid "ERROR" msgstr "ПОМИЛКА" -#: src/Common/LinuxKernel.vala:1102 src/Gtk/MainWindow.vala:650 +#: src/Common/LinuxKernel.vala:1095 src/Gtk/MainWindow.vala:650 msgid "This kernel is already installed." msgstr "Це ядро вже встановлено." -#: src/Common/LinuxKernel.vala:1128 +#: src/Common/LinuxKernel.vala:1121 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "Установка завершена. Для використання нового ядра потрібна перезавантаження." -#: src/Common/LinuxKernel.vala:1131 +#: src/Common/LinuxKernel.vala:1124 msgid "Installation completed with errors" msgstr "Установка завершена з помилками" -#: src/Common/LinuxKernel.vala:1146 +#: src/Common/LinuxKernel.vala:1139 msgid "" "Selected kernel is currently running and cannot be un-installed.\n" " Install another kernel before un-installing this one." @@ -119,19 +119,19 @@ msgstr "" "Це ядро зараз працює і не може бути видалено. \n" "Встановіть інше ядро, перш ніж видаляти його." -#: src/Common/LinuxKernel.vala:1151 +#: src/Common/LinuxKernel.vala:1144 msgid "Preparing to uninstall selected kernels" msgstr "Підготовка до видалення вибраних ядер" -#: src/Common/LinuxKernel.vala:1182 src/Common/LinuxKernel.vala:1229 +#: src/Common/LinuxKernel.vala:1175 src/Common/LinuxKernel.vala:1222 msgid "Un-install completed" msgstr "Видалення завершено" -#: src/Common/LinuxKernel.vala:1185 src/Common/LinuxKernel.vala:1232 +#: src/Common/LinuxKernel.vala:1178 src/Common/LinuxKernel.vala:1225 msgid "Un-install completed with errors" msgstr "Видалення завершено з помилками" -#: src/Common/LinuxKernel.vala:1198 +#: src/Common/LinuxKernel.vala:1191 msgid "" "This kernel is currently running and cannot be un-installed.\n" " Install another kernel before un-installing this one." diff --git a/src/Common/LinuxKernel.vala b/src/Common/LinuxKernel.vala index 11398b7e..72ec30e4 100644 --- a/src/Common/LinuxKernel.vala +++ b/src/Common/LinuxKernel.vala @@ -392,7 +392,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { // k.is_running = false; // } - fetch_pkg_list_installed(); + pkg_list_installed = Package.query_installed_packages(); var pkg_versions = new Gee.ArrayList(); @@ -675,15 +675,8 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { // helpers - public static void fetch_pkg_list_installed(){ - if (pkg_list_installed == null){ - pkg_list_installed = Package.query_installed_packages(); - } - } - - public static int find_lowest_major_version_installed(){ - fetch_pkg_list_installed(); + pkg_list_installed = Package.query_installed_packages(); int? major_version = null; foreach(var pkg in pkg_list_installed.values){ From 903783760212c8cb2f9718028524b886dc74a700 Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Sun, 27 Nov 2022 19:39:23 -0500 Subject: [PATCH 191/567] restore help section got accidentally deleted from readme --- README.md | 4 ++++ README.md.src | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/README.md b/README.md index 4651b81a..8696674a 100644 --- a/README.md +++ b/README.md @@ -43,6 +43,10 @@ GUI ``` mainline-gtk ``` +### Help +* Secure Boot -> Possibly useful, I have not tried: https://github.com/M-P-P-C/Signing-a-Linux-Kernel-for-Secure-Boot + +* Kernel versions 5.15.7+ and libssl3 -> [Install libssl3](../../wiki/Install-libssl3) ### About Written using Vala and GTK3. diff --git a/README.md.src b/README.md.src index 4c74a32f..e5330506 100644 --- a/README.md.src +++ b/README.md.src @@ -43,6 +43,10 @@ GUI ``` mainline-gtk ``` +### Help +* Secure Boot -> Possibly useful, I have not tried: https://github.com/M-P-P-C/Signing-a-Linux-Kernel-for-Secure-Boot + +* Kernel versions 5.15.7+ and libssl3 -> [Install libssl3](../../wiki/Install-libssl3) ### About Written using Vala and GTK3. From 9df3383a423aad5c67a666a5d036c0e66cf0f6cb Mon Sep 17 00:00:00 2001 From: Vasilis Date: Tue, 10 Jan 2023 14:35:05 +0300 Subject: [PATCH 192/567] Create el.po Greek translation --- po/el.po | 574 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 574 insertions(+) create mode 100644 po/el.po diff --git a/po/el.po b/po/el.po new file mode 100644 index 00000000..350f5142 --- /dev/null +++ b/po/el.po @@ -0,0 +1,574 @@ +msgid "" +msgstr "" +"Project-Id-Version: mainline\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-01-10 23:03-0500\n" +"PO-Revision-Date: 2023-01-10 02:03-0600\n" +"Last-Translator: Vasilis Kosmidis \n" +"Language-Team: Greek\n" +"Language: el\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2017-04-13 11:48+0000\n" +"X-Generator: Poedit 2.0.5\n" + +#: src/Common/LinuxKernel.vala:88 +msgid "Distribution" +msgstr "Διανομή" + +#: src/Common/LinuxKernel.vala:102 +msgid "Architecture" +msgstr "Αρχιτεκτονική" + +#: src/Common/LinuxKernel.vala:294 +msgid "Fetching index..." +msgstr "Ανάκτηση ευρετηρίου..." + +#: src/Common/LinuxKernel.vala:331 +msgid "Fetching index from kernel.ubuntu.com..." +msgstr "Ανάκτηση ευρετηρίου από το kernel.ubuntu.com..." + +#: src/Common/LinuxKernel.vala:587 +msgid "Could not find running kernel in list!" +msgstr "Δεν ήταν δυνατή η εύρεση του τρέχοντος πυρήνα στη λίστα!" + +#: src/Common/LinuxKernel.vala:593 +msgid "Could not find any kernels to uninstall" +msgstr "Δεν βρέθηκε κανένας πυρήνας για απεγκατάσταση" + +#: src/Common/LinuxKernel.vala:602 +msgid "Οι ακόλουθοι πυρήνες θα απεγκατασταθούν:" +msgstr "Die folgenden Kernel werden deinstalliert:" + +#: src/Common/LinuxKernel.vala:609 +msgid "Continue ?" +msgstr "Συνέχεια;" + +#: src/Common/LinuxKernel.vala:635 src/Console/AppConsole.vala:314 +msgid "Latest update" +msgstr "Τελευταία αναβάθμιση" + +#: src/Common/LinuxKernel.vala:646 src/Console/AppConsole.vala:321 +msgid "Latest point update" +msgstr "Τελευταία ενημέρωση συντήρησης" + +#: src/Common/LinuxKernel.vala:654 src/Console/AppConsole.vala:326 +#: src/Console/AppConsole.vala:387 +msgid "No updates found" +msgstr "Δεν βρέθηκαν ενημερώσεις" + +#: src/Common/LinuxKernel.vala:664 +#, c-format +msgid "Install Kernel Version %s ? (y/n): " +msgstr "Εγκατάσταση του πυρήνα έκδοσης %s ; (ν/ό):" + +#: src/Common/LinuxKernel.vala:925 +msgid "Packages Available" +msgstr "Διαθέσιμα πακέτα" + +#: src/Common/LinuxKernel.vala:933 +msgid "Packages Installed" +msgstr "Εγκατεστημένα πακέτα" + +#: src/Common/LinuxKernel.vala:1013 +msgid "Available Kernels" +msgstr "Διαθέσιμοι πυρήνες" + +#: src/Common/LinuxKernel.vala:1020 src/Gtk/MainWindow.vala:186 +msgid "Installed" +msgstr "Εγκατεστημένος" + +#: src/Common/LinuxKernel.vala:1020 src/Gtk/MainWindow.vala:186 +#: src/Gtk/MainWindow.vala:628 src/Gtk/MainWindow.vala:642 +msgid "Running" +msgstr "Ενεργός" + +#: src/Common/LinuxKernel.vala:1057 +msgid "Downloading" +msgstr "Λήψη" + +#: src/Common/LinuxKernel.vala:1076 +#: src/Utility/Gtk/CustomMessageDialog.vala:148 +#: src/Utility/Gtk/CustomMessageDialog.vala:152 +msgid "OK" +msgstr "ΟΚ" + +#: src/Common/LinuxKernel.vala:1081 +msgid "ERROR" +msgstr "ΣΦΑΛΜΑ" + +#: src/Common/LinuxKernel.vala:1095 src/Gtk/MainWindow.vala:650 +msgid "This kernel is already installed." +msgstr "Αυτός ο πυρήνας είναι ήδη εγκατεστημένος." + +#: src/Common/LinuxKernel.vala:1121 +msgid "Installation completed. A reboot is required to use the new kernel." +msgstr "Η εγκατάσταση ολοκληρώθηκε. Απαιτείται επανεκκίνηση για τη χρήση του νέου πυρήνα." + +#: src/Common/LinuxKernel.vala:1124 +msgid "Installation completed with errors" +msgstr "Η εγκατάσταση ολοκληρώθηκε με σφάλματα" + +#: src/Common/LinuxKernel.vala:1139 +msgid "" +"Selected kernel is currently running and cannot be un-installed.\n" +" Install another kernel before un-installing this one." +msgstr "" +"Ο επιλεγμένος πυρήνας εκτελείται αυτήν τη στιγμή και δεν μπορεί να απεγκατασταθεί.\n" +" Εγκαταστήστε έναν άλλο πυρήνα πριν απεγκαταστήσετε αυτόν." + +#: src/Common/LinuxKernel.vala:1144 +msgid "Preparing to uninstall selected kernels" +msgstr "Προετοιμασία για απεγκατάσταση επιλεγμένων πυρήνων" + +#: src/Common/LinuxKernel.vala:1175 src/Common/LinuxKernel.vala:1222 +msgid "Un-install completed" +msgstr "Η απεγκατάσταση ολοκληρώθηκε" + +#: src/Common/LinuxKernel.vala:1178 src/Common/LinuxKernel.vala:1225 +msgid "Un-install completed with errors" +msgstr "Η απεγκατάσταση ολοκληρώθηκε με σφάλματα" + +#: src/Common/LinuxKernel.vala:1191 +msgid "" +"This kernel is currently running and cannot be un-installed.\n" +" Install another kernel before un-installing this one." +msgstr "" +"Αυτός ο πυρήνας εκτελείται αυτήν τη στιγμή και δεν μπορεί να απεγκατασταθεί.\n" +" Εγκαταστήστε έναν άλλο πυρήνα πριν απεγκαταστήσετε αυτόν." + +#: src/Common/Main.vala:241 +msgid "Called from" +msgstr "Κλήθηκε από" + +#: src/Common/Main.vala:275 +msgid "Notifications are disabled" +msgstr "Οι ειδοποιήσεις είναι απενεργοποιημένες" + +#: src/Common/Package.vala:134 src/Common/Package.vala:198 +#, c-format +msgid "File not found: %s" +msgstr "Το αρχείο δεν βρέθηκε: %s" + +#: src/Console/AppConsole.vala:62 src/Gtk/AppGtk.vala:149 +msgid "Syntax" +msgstr "Σύνταξη" + +#: src/Console/AppConsole.vala:64 +msgid "Commands" +msgstr "Εντολές" + +#: src/Console/AppConsole.vala:66 +msgid "Check for kernel updates" +msgstr "Έλεγχος για ενημερώσεις πυρήνα" + +#: src/Console/AppConsole.vala:67 +msgid "Check for kernel updates and notify current user" +msgstr "Έλεγχος για ενημερώσεις πυρήνα και ειδοποίηση τρέχοντα χρήστη" + +#: src/Console/AppConsole.vala:68 +msgid "List all available mainline kernels" +msgstr "Εμφάνιση όλων των διαθέσιμων πυρήνων mainline" + +#: src/Console/AppConsole.vala:69 +msgid "List installed kernels" +msgstr "Εμφάνιση εγκατεστημένων πυρήνων" + +#: src/Console/AppConsole.vala:70 +msgid "Install latest mainline kernel" +msgstr "Εγκατάσταση του πιο πρόσφατου πυρήνα mainline" + +#: src/Console/AppConsole.vala:71 +msgid "Install latest point update for current series" +msgstr "Εγκαταστήστε την τελευταία ενημέρωση συντήρησης για την τρέχουσα σειρά" + +#: src/Console/AppConsole.vala:72 +msgid "Install specified mainline kernel" +msgstr "Εγκατάσταση του καθορισμένου mainline πυρήνα" + +#: src/Console/AppConsole.vala:73 +msgid "Uninstall specified kernel" +msgstr "Απεγκατάσταση του καθορισμένου πυρήνα" + +#: src/Console/AppConsole.vala:74 +msgid "Uninstall kernels older than the running kernel" +msgstr "Απεγκατάσταση πυρήνων παλαιότερων από τον ενεργό" + +#: src/Console/AppConsole.vala:75 +msgid "Download specified kernels" +msgstr "Λήψη των καθορισμένων πυρήνων" + +#: src/Console/AppConsole.vala:76 +msgid "Remove files from application cache" +msgstr "Αφαίρεση αρχείων από την προσωρινή μνήμη της εφαρμογής" + +#: src/Console/AppConsole.vala:78 src/Gtk/AppGtk.vala:151 +msgid "Options" +msgstr "Επιλογές" + +#: src/Console/AppConsole.vala:80 +msgid "Include unstable and RC releases" +msgstr "Συμπεριλάβετε ασταθείς και RC εκδόσεις" + +#: src/Console/AppConsole.vala:81 src/Gtk/SettingsDialog.vala:163 +msgid "Hide unstable and RC releases" +msgstr "Απόκρυψη ασταθών και RC εκδόσεων" + +#: src/Console/AppConsole.vala:82 +msgid "Enable verbose debugging output" +msgstr "Ενεργοποίηση αναλυτικής εξόδου εντοπισμού σφαλμάτων" + +#: src/Console/AppConsole.vala:83 +msgid "Assume Yes for all prompts (non-interactive mode)" +msgstr "Υποθέστε Ναι για όλα τα μηνύματα (μη διαδραστική λειτουργία)" + +#: src/Console/AppConsole.vala:84 +msgid "Override user" +msgstr "Παράκαμψη χρήστη" + +#: src/Console/AppConsole.vala:87 +msgid "A version string taken from the output of --list" +msgstr "Μια συμβολοσειρά έκδοσης που λαμβάνεται από την έξοδο του --list" + +#: src/Console/AppConsole.vala:88 +msgid "" +"One or more version strings (comma-separated) taken from the output of --list" +msgstr "" +"Μία ή περισσότερες συμβολοσειρές έκδοσης (χωρισμένες με κόμμα) που λαμβάνονται " +"από την έξοδο του --list" + +#: src/Console/AppConsole.vala:169 src/Gtk/AppGtk.vala:136 +msgid "Unknown option" +msgstr "Άγνωστη επιλογή" + +#: src/Console/AppConsole.vala:171 src/Console/AppConsole.vala:265 +#: src/Console/AppConsole.vala:294 +msgid "Run" +msgstr "Τρέξτε" + +#: src/Console/AppConsole.vala:171 +msgid "to list all options" +msgstr "για να παραθέσετε όλες τις επιλογές" + +#: src/Console/AppConsole.vala:238 src/Console/AppConsole.vala:273 +msgid "No kernels specified" +msgstr "Δεν έχουν καθοριστεί πυρήνες" + +#: src/Console/AppConsole.vala:244 +msgid "Multiple kernels selected for installation. Select only one." +msgstr "Επιλέχθηκαν πολλαπλοί πυρήνες για εγκατάσταση. Επιλέξτε μόνο ένα." + +#: src/Console/AppConsole.vala:262 src/Gtk/MainWindow.vala:100 +msgid "Could not find requested version" +msgstr "Δε βρέθηκε η ζητούμενη έκδοση" + +#: src/Console/AppConsole.vala:265 +msgid "and use a version string listed in first column" +msgstr "και χρησιμοποιήστε μια συμβολοσειρά έκδοσης που αναφέρεται στην πρώτη στήλη" + +#: src/Console/AppConsole.vala:293 +msgid "Command not specified" +msgstr "Η εντολή δεν προσδιορίστηκε" + +#: src/Console/AppConsole.vala:294 +msgid "to list all commands" +msgstr "για να παραθέσετε όλες τις εντολές" + +#: src/Console/AppConsole.vala:360 +msgid "Show" +msgstr "Προβολή" + +#: src/Console/AppConsole.vala:365 src/Console/AppConsole.vala:377 +#, c-format +msgid "Kernel %s Available" +msgstr "Πυρήνας %s διαθέσιμος" + +#: src/Console/AppConsole.vala:367 src/Console/AppConsole.vala:379 +#: src/Gtk/MainWindow.vala:330 +msgid "Install" +msgstr "Εγκατάσταση" + +#: src/Gtk/AppGtk.vala:153 +msgid "Print debug information" +msgstr "Εκτύπωση πληροφοριών εντοπισμού σφαλμάτων" + +#: src/Gtk/AppGtk.vala:154 +msgid "Show all options" +msgstr "Εμφάνιση όλων των επιλογών" + +#: src/Gtk/MainWindow.vala:146 +msgid "Kernel" +msgstr "Πυρήνας" + +#: src/Gtk/MainWindow.vala:174 +msgid "Status" +msgstr "Κατάσταση" + +#: src/Gtk/MainWindow.vala:314 +msgid "Refresh" +msgstr "Ανανέωση" + +#: src/Gtk/MainWindow.vala:321 src/Utility/TeeJee.System.vala:42 +msgid "Internet connection is not active" +msgstr "Η σύνδεση στο διαδίκτυο δεν είναι ενεργή" + +#: src/Gtk/MainWindow.vala:321 src/Gtk/MainWindow.vala:525 +#: src/Gtk/MainWindow.vala:655 +msgid "No Internet" +msgstr "Χωρίς διαδίκτυο" + +#: src/Gtk/MainWindow.vala:339 +msgid "Multiple Kernels Selected" +msgstr "Επιλέχθηκαν πολλαπλοί πυρήνες" + +#: src/Gtk/MainWindow.vala:339 +msgid "Select a single kernel to install" +msgstr "Επιλέξτε έναν μόνο πυρήνα για εγκατάσταση" + +#: src/Gtk/MainWindow.vala:342 src/Gtk/MainWindow.vala:353 +msgid "Not Selected" +msgstr "Δεν επιλέχθηκε" + +#: src/Gtk/MainWindow.vala:342 +msgid "Select the kernel to install" +msgstr "Επιλέξτε πυρήνα για εγκατάσταση" + +#: src/Gtk/MainWindow.vala:347 +msgid "Uninstall" +msgstr "Απεγκατάσταση" + +#: src/Gtk/MainWindow.vala:353 +msgid "Select the kernels to uninstall" +msgstr "Επιλέξτε πυρήνες για απεγκατάσταση" + +#: src/Gtk/MainWindow.vala:383 src/Gtk/MainWindow.vala:417 +#: src/Gtk/MainWindow.vala:687 +msgid "Close window to exit..." +msgstr "Κλείστε το παράθυρο για έξοδο..." + +#: src/Gtk/MainWindow.vala:391 +msgid "Uninstall Old" +msgstr "Απεγκατάσταση παλαιών" + +#: src/Gtk/MainWindow.vala:392 +msgid "Uninstall kernels older than running kernel" +msgstr "Απεγκαταστήστε πυρήνες παλαιότερους από τον ενεργό" + +#: src/Gtk/MainWindow.vala:424 +msgid "Changes" +msgstr "Αλλαγές" + +#: src/Gtk/MainWindow.vala:435 src/Gtk/SettingsDialog.vala:50 +msgid "Settings" +msgstr "Ρυθμίσεις" + +#: src/Gtk/MainWindow.vala:458 +msgid "About" +msgstr "Σχετικά" + +#: src/Gtk/MainWindow.vala:503 +msgid "Kernel upgrade utility for Ubuntu-based distributions" +msgstr "Πρόγραμμα αναβάθμισης πυρήνα για διανομές που βασίζονται στο Ubuntu" + +#: src/Gtk/MainWindow.vala:504 +msgid "Forked" +msgstr "Forked" + +#: src/Gtk/MainWindow.vala:504 +msgid "Original" +msgstr "Πρωτότυπο" + +#: src/Gtk/MainWindow.vala:525 src/Gtk/MainWindow.vala:655 +msgid "Internet connection is not active." +msgstr "Η σύνδεση στο διαδίκτυο δεν είναι ενεργή." + +#: src/Gtk/MainWindow.vala:544 +msgid "Refreshing..." +msgstr "Ανανέωση..." + +#: src/Gtk/MainWindow.vala:638 +msgid "available" +msgstr "διαθέσιμος" + +#: src/Gtk/MainWindow.vala:650 +msgid "Already Installed" +msgstr "Ήδη εγκατεστημένος" + +#: src/Gtk/ProgressWindow.vala:144 src/Gtk/TerminalWindow.vala:149 +#: src/Utility/Gtk/CustomMessageDialog.vala:153 +msgid "Cancel" +msgstr "Άκυρο" + +#: src/Gtk/SettingsDialog.vala:60 +msgid "Notification" +msgstr "Ειδοποίηση" + +#: src/Gtk/SettingsDialog.vala:67 +msgid "Notify if a major release is available" +msgstr "Ειδοποίηση αν είναι διαθέσιμη κύρια έκδοση" + +#: src/Gtk/SettingsDialog.vala:78 +msgid "Notify if a point release is available" +msgstr "Ειδοποίηση αν είναι διαθέσιμη έκδοση συντήρησης" + +#: src/Gtk/SettingsDialog.vala:89 +msgid "(Allowing intervals in seconds for --debug)" +msgstr "(Επιτρέποντας διαστήματα σε δευτερόλεπτα για --debug)" + +#: src/Gtk/SettingsDialog.vala:112 +msgid "Check every" +msgstr "Έλεγχος κάθε" + +#: src/Gtk/SettingsDialog.vala:142 +msgid "Hour(s)" +msgstr "Ώρες" + +#: src/Gtk/SettingsDialog.vala:144 +msgid "Day(s)" +msgstr "Ημέρες" + +#: src/Gtk/SettingsDialog.vala:146 +msgid "Week(s)" +msgstr "Εβδομάδες" + +#: src/Gtk/SettingsDialog.vala:149 +msgid "Second(s)" +msgstr "Δευτερόλεπτα" + +#: src/Gtk/SettingsDialog.vala:155 +msgid "Display" +msgstr "Απεικόνιση" + +#: src/Gtk/SettingsDialog.vala:177 +msgid "Show N previous major versions " +msgstr "Εμφάνιση N προηγούμενων κύριων εκδόσεων " + +#: src/Gtk/SettingsDialog.vala:192 +msgid "Other" +msgstr "Άλλες" + +#: src/Gtk/SettingsDialog.vala:200 +msgid "Skip internet connection check" +msgstr "Παράβλεψη ελέγχου σύνδεσης στο διαδίκτυο" + +#: src/Gtk/SettingsDialog.vala:213 +msgid "Internet connection timeout in " +msgstr "Λήξη χρονικού ορίου σύνδεσης στο διαδίκτυο " + +#: src/Gtk/SettingsDialog.vala:228 +msgid "seconds" +msgstr "δευτερόλεπτα" + +#: src/Gtk/SettingsDialog.vala:235 +msgid "Max concurrent downloads" +msgstr "Μέγιστες ταυτόχρονες λήψεις" + +#: src/Gtk/TerminalWindow.vala:159 src/Utility/Gtk/AboutWindow.vala:294 +msgid "Close" +msgstr "Κλείσιμο" + +#: src/Utility/Gtk/AboutWindow.vala:271 src/Utility/Gtk/AboutWindow.vala:288 +msgid "Credits" +msgstr "Μνεία" + +#: src/Utility/Gtk/AboutWindow.vala:284 +msgid "Back" +msgstr "Πίσω" + +#: src/Utility/Gtk/AboutWindow.vala:313 +msgid "Authors" +msgstr "Συγγραφείς" + +#: src/Utility/Gtk/AboutWindow.vala:321 +msgid "Contributions" +msgstr "Συνεισφορές" + +#: src/Utility/Gtk/AboutWindow.vala:329 +msgid "Artists" +msgstr "Καλλιτέχνες" + +#: src/Utility/Gtk/AboutWindow.vala:337 +msgid "Translators" +msgstr "Μεταφραστές" + +#: src/Utility/Gtk/AboutWindow.vala:345 +msgid "Documenters" +msgstr "Τεκμηριωτές" + +#: src/Utility/Gtk/AboutWindow.vala:353 +msgid "Third Party Inclusions" +msgstr "Συμπεριλήψεις τρίτων" + +#: src/Utility/Gtk/CustomMessageDialog.vala:157 +msgid "Yes" +msgstr "Ναι" + +#: src/Utility/Gtk/CustomMessageDialog.vala:158 +msgid "No" +msgstr "Όχι" + +#: src/Utility/Gtk/GtkHelper.vala:67 +msgid "Missing Icon" +msgstr "Ελλείπον εικονίδιο" + +#: src/Utility/TeeJee.FileSystem.vala:71 +msgid "File deleted" +msgstr "Το αρχείο διαγράφηκε" + +#: src/Utility/TeeJee.FileSystem.vala:76 src/Utility/TeeJee.FileSystem.vala:256 +msgid "Failed to delete file" +msgstr "Αποτυχία διαγραφής του αρχείου" + +#: src/Utility/TeeJee.FileSystem.vala:96 +msgid "Failed to read file" +msgstr "Αποτυχία ανάγνωσης του αρχείου" + +#: src/Utility/TeeJee.FileSystem.vala:123 +msgid "File saved" +msgstr "Το αρχείο αποθηκεύτηκε" + +#: src/Utility/TeeJee.FileSystem.vala:129 +msgid "Failed to write file" +msgstr "Αποτυχία εγγραφής αρχείου" + +#: src/Utility/TeeJee.FileSystem.vala:141 +msgid "File copied" +msgstr "Το αρχείο αντιγράφηκε" + +#: src/Utility/TeeJee.FileSystem.vala:148 +msgid "Failed to copy file" +msgstr "Αποτυχία αντιγραφής αρχείου" + +#: src/Utility/TeeJee.FileSystem.vala:157 +msgid "File not found" +msgstr "Το αρχείο δε βρέθηκε" + +#: src/Utility/TeeJee.FileSystem.vala:171 +msgid "File moved" +msgstr "Το αρχείο μετακινήθηκε" + +#: src/Utility/TeeJee.FileSystem.vala:176 +msgid "Failed to move file" +msgstr "Αποτυχία μετακίνησης αρχείου" + +#: src/Utility/TeeJee.FileSystem.vala:233 +#: src/Utility/TeeJee.FileSystem.vala:236 +msgid "Created directory" +msgstr "Δημιουργήθηκε κατάλογος" + +#: src/Utility/TeeJee.FileSystem.vala:243 +msgid "Failed to create dir" +msgstr "Αποτυχία δημιουργίας καταλόγου" + +#: src/Utility/TeeJee.FileSystem.vala:255 +msgid "Deleted" +msgstr "Διαγράφηκε" + +#: src/Utility/TeeJee.Logging.vala:59 +msgid "E" +msgstr "E" + +#: src/Utility/TeeJee.Logging.vala:84 +msgid "D" +msgstr "D" From 29acf71fe3d2eb3b65393b01d16aedd347f02b45 Mon Sep 17 00:00:00 2001 From: Lucas CHOLLET Date: Thu, 26 Jan 2023 19:34:03 -0500 Subject: [PATCH 193/567] Supress a "Switch does not handle X" warning --- src/Utility/Gtk/CustomMessageDialog.vala | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Utility/Gtk/CustomMessageDialog.vala b/src/Utility/Gtk/CustomMessageDialog.vala index 18fe6996..b13dec43 100644 --- a/src/Utility/Gtk/CustomMessageDialog.vala +++ b/src/Utility/Gtk/CustomMessageDialog.vala @@ -97,6 +97,7 @@ public class CustomMessageDialog : Gtk.Dialog { string icon_name = "dialog-info"; switch(msg_type){ + default: case Gtk.MessageType.INFO: icon_name = "dialog-info"; break; From 289ab029cdd1cb02f70e41c064e9f594b84b670a Mon Sep 17 00:00:00 2001 From: Lucas CHOLLET Date: Tue, 7 Feb 2023 12:19:19 -0500 Subject: [PATCH 194/567] Ignore vscode's and jetbrain's directories --- .gitignore | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index f9db5fa7..94322213 100644 --- a/.gitignore +++ b/.gitignore @@ -7,4 +7,5 @@ .git *.swp .#* - +.idea/ +.vscode/ From b2f83403756a5b6fb9e863545194ab47788aab97 Mon Sep 17 00:00:00 2001 From: Lucas CHOLLET Date: Thu, 2 Feb 2023 19:46:57 -0500 Subject: [PATCH 195/567] Call `X.init_threads()` at startup This is required as, in future commits, we are going to update GTK widgets in other threads than the main one. Hence, using the GDK method `threads_add_idle_full()`. It however requires Xlib mutexes to be initialized, i.e. calling `X.init_threads()`. This is necessary for now but we should be able to remove it in the future. Indeed, it seems that more recent version of Gtk remove this dependency. --- Makefile | 2 +- src/Gtk/AppGtk.vala | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index ef29705c..9f35e8d2 100644 --- a/Makefile +++ b/Makefile @@ -63,7 +63,7 @@ all: $(BRANDING_SHORTNAME) $(BRANDING_SHORTNAME)-gtk $(BRANDING_SHORTNAME)-gtk: $(misc_files) $(common_vala_files) $(gui_vala_files) translations valac --enable-deprecated -X -w $(build_symbols) --Xcc="-lm" \ - --pkg $(glib) --pkg $(gio-unix) --pkg posix --pkg $(gee) --pkg $(json-glib) --pkg $(gtk+) --pkg $(vte) \ + --pkg $(glib) --pkg $(gio-unix) --pkg posix --pkg $(gee) --pkg $(json-glib) --pkg $(gtk+) --pkg $(vte) --pkg x11 \ $(common_vala_files) $(gui_vala_files) -o $(@) $(BRANDING_SHORTNAME): $(misc_files) $(common_vala_files) $(tui_vala_files) translations diff --git a/src/Gtk/AppGtk.vala b/src/Gtk/AppGtk.vala index 40c96fb2..e6c78e29 100644 --- a/src/Gtk/AppGtk.vala +++ b/src/Gtk/AppGtk.vala @@ -23,6 +23,7 @@ using GLib; using Gtk; using Gee; using Json; +using X; using TeeJee.Logging; using TeeJee.FileSystem; @@ -42,6 +43,8 @@ public class AppGtk : GLib.Object { log_msg("%s %s".printf(BRANDING_SHORTNAME, BRANDING_VERSION)); + X.init_threads(); + Gtk.init(ref args); App = new Main(args, true); From 7656b1d34c1086d3814b449a88c54df455af041d Mon Sep 17 00:00:00 2001 From: Lucas CHOLLET Date: Fri, 27 Jan 2023 21:55:29 -0500 Subject: [PATCH 196/567] Don't use the deprecated method `Thread.create()` We also store the `Thread` in a local variable. It allows us to wait it properly by using `join()` instead of sleeping. --- src/Common/LinuxKernel.vala | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/src/Common/LinuxKernel.vala b/src/Common/LinuxKernel.vala index 72ec30e4..be5dee79 100644 --- a/src/Common/LinuxKernel.vala +++ b/src/Common/LinuxKernel.vala @@ -193,17 +193,14 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { try { task_is_running = true; cancelled = false; - Thread.create (query_thread, true); - } catch (ThreadError e) { + var worker = new Thread.try(null, query_thread); + + if (wait) + worker.join(); + } catch (Error e) { task_is_running = false; log_error (e.message); } - - if (wait){ - while (task_is_running){ - sleep(500); //wait - } - } } private static void query_thread() { From 9a8806acabc52edcefd2ab1f9389230432705f30 Mon Sep 17 00:00:00 2001 From: Lucas CHOLLET Date: Sat, 28 Jan 2023 21:36:08 -0500 Subject: [PATCH 197/567] Use a callback in `LinuxKernel.query()` instead of busy waiting `LinuxKernel.query()` now takes a delegate that is called with data about its current progress. It allows to delete two loops that were aggressively checking for `LinuxKernel.task_is_running`. This patch also remove both now unused, `LinuxKernel.task_is_running` attribute and `ProgressWindow.sleep()` method. --- src/Common/LinuxKernel.vala | 22 +++++++--- src/Gtk/MainWindow.vala | 88 ++++++++++++++++++------------------- src/Gtk/ProgressWindow.vala | 6 --- 3 files changed, 57 insertions(+), 59 deletions(-) diff --git a/src/Common/LinuxKernel.vala b/src/Common/LinuxKernel.vala index be5dee79..5fc9e2db 100644 --- a/src/Common/LinuxKernel.vala +++ b/src/Common/LinuxKernel.vala @@ -63,7 +63,6 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { public static int64 progress_total; public static int64 progress_count; public static bool cancelled; - public static bool task_is_running; public static int highest_maj; // class initialize @@ -186,24 +185,29 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { // static - public static void query(bool wait){ + public delegate void Notifier(GLib.Timer timer, ref long count, bool last = false); + + public static void query(bool wait, owned Notifier? notifier = null){ check_if_initialized(); try { - task_is_running = true; cancelled = false; - var worker = new Thread.try(null, query_thread); + var worker = new Thread.try(null, () => query_thread(notifier)); if (wait) worker.join(); } catch (Error e) { - task_is_running = false; log_error (e.message); } } - private static void query_thread() { + private static void query_thread(owned Notifier? notifier) { + App.progress_total = 1; + App.progress_count = 0; + + var timer = timer_start(); + long count = 0; log_debug("query_thread() App.show_prev_majors: %d".printf(App.show_prev_majors)); log_debug("query_thread() App.hide_unstable: "+App.hide_unstable.to_string()); @@ -239,6 +243,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { if (App.hide_unstable && k.is_unstable) continue; } if (k.is_valid && !k.cached_page_exists) progress_total += 2; + if (notifier != null) notifier(timer, ref count); } // list of kernels - 1 LinuxKernel object per kernel to update @@ -273,6 +278,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { // add kernel to kernel list kernels_to_update.add(k); + if (notifier != null) notifier(timer, ref count); } // process the download list @@ -302,6 +308,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { // load the index.html files we just added to cache foreach(var k in kernels_to_update) k.load_cached_page(); + if (notifier != null) notifier(timer, ref count); } check_installed(); @@ -309,7 +316,8 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { //check_updates("query_thread()"); check_updates(); - task_is_running = false; + timer_elapsed(timer, true); + if (notifier != null) notifier(timer, ref count, true); } // download the main index.html listing all mainline kernels diff --git a/src/Gtk/MainWindow.vala b/src/Gtk/MainWindow.vala index 088de138..5269a41f 100644 --- a/src/Gtk/MainWindow.vala +++ b/src/Gtk/MainWindow.vala @@ -530,74 +530,70 @@ public class MainWindow : Gtk.Window{ // refresh without GUI and return ----------------- - LinuxKernel.query(false); - - while (LinuxKernel.task_is_running) { - - sleep(200); - gtk_do_events(); - } + LinuxKernel.query(false, () => gtk_do_events()); return; } string message = _("Refreshing..."); - var dlg = new ProgressWindow.with_parent(this, message, true); - dlg.show_all(); + var progress_window = new ProgressWindow.with_parent(this, message, true); + progress_window.show_all(); gtk_do_events(); // TODO: Check if kernel.ubuntu.com is down - LinuxKernel.query(false); - - var timer = timer_start(); - - App.progress_total = 1; - App.progress_count = 0; - - string msg_remaining = ""; - long count = 0; - - while (LinuxKernel.task_is_running) { - - if (App.cancelled){ - App.exit_app(1); - } + LinuxKernel.query(false, (timer, ref count, last) => { + update_progress_window(progress_window, message, timer, ref count, last); + }); - App.status_line = LinuxKernel.status_line; - App.progress_total = LinuxKernel.progress_total; - App.progress_count = LinuxKernel.progress_count; + gtk_do_events(); + } - ulong ms_elapsed = timer_elapsed(timer, false); - int64 remaining_count = App.progress_total - App.progress_count; - int64 ms_remaining = (int64)((ms_elapsed * 1.0) / App.progress_count) * remaining_count; - if ((count % 5) == 0){ - msg_remaining = format_time_left(ms_remaining); - } + private void update_progress_window(ProgressWindow progress_window, string message, GLib.Timer timer, ref long count, bool last = false) { + if (last) { + progress_window.destroy(); + Gdk.threads_add_idle_full(0, () => { + tv_refresh(); + return false; + }); + timer_elapsed(timer, true); + + gtk_do_events(); + } - if (App.progress_total > 0){ - dlg.update_message("%s %s/%s (%s)".printf(message, App.progress_count.to_string(), App.progress_total.to_string(), msg_remaining)); - } + if (App.cancelled){ + App.exit_app(1); + } - dlg.update_status_line(); + App.status_line = LinuxKernel.status_line; + App.progress_total = LinuxKernel.progress_total; + App.progress_count = LinuxKernel.progress_count; - // FIXME - GTK error messages, and progressbar is always 100% - //dlg.update_progressbar(); + ulong ms_elapsed = timer_elapsed(timer, false); + int64 remaining_count = App.progress_total - App.progress_count; + int64 ms_remaining = (int64)((ms_elapsed * 1.0) / App.progress_count) * remaining_count; - gtk_do_events(); + string time_remaining = ""; + if ((count % 5) == 0){ + time_remaining = format_time_left(ms_remaining); + } - dlg.sleep(200); + Gdk.threads_add_idle_full(0, () => { + if (App.progress_total > 0) + progress_window.update_message("%s %s/%s (%s)".printf(message, App.progress_count.to_string(), App.progress_total.to_string(), time_remaining)); - count++; - } + progress_window.update_status_line(); + return false; + }); - timer_elapsed(timer, true); + // FIXME - GTK error messages, and progressbar is always 100% + //progress_window.update_progressbar(); - dlg.destroy(); gtk_do_events(); - } + count++; + } private void init_infobar(){ diff --git a/src/Gtk/ProgressWindow.vala b/src/Gtk/ProgressWindow.vala index 0cfebdc4..ff37eb0f 100644 --- a/src/Gtk/ProgressWindow.vala +++ b/src/Gtk/ProgressWindow.vala @@ -222,10 +222,4 @@ public class ProgressWindow : Gtk.Window { return false; }); } - - public void sleep(int ms){ - - Thread.usleep ((ulong) ms * 1000); - gtk_do_events(); - } } From befa2c04a9105d2970db0266bf7996c58c6f32dc Mon Sep 17 00:00:00 2001 From: Lucas CHOLLET Date: Sat, 28 Jan 2023 21:43:03 -0500 Subject: [PATCH 198/567] Remove unused parameter in `MainWindow.refresh_cache()` --- src/Gtk/MainWindow.vala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Gtk/MainWindow.vala b/src/Gtk/MainWindow.vala index 5269a41f..4e5a9ceb 100644 --- a/src/Gtk/MainWindow.vala +++ b/src/Gtk/MainWindow.vala @@ -519,7 +519,7 @@ public class MainWindow : Gtk.Window{ dialog.show_all(); } - private void refresh_cache(bool download_index = true){ + private void refresh_cache(){ if (!check_internet_connectivity()){ gtk_messagebox(_("No Internet"), _("Internet connection is not active."), this, true); From d9536c876ed08e817fec3e052b1417680e19a9de Mon Sep 17 00:00:00 2001 From: Lucas CHOLLET Date: Sat, 28 Jan 2023 21:47:05 -0500 Subject: [PATCH 199/567] Remove unused method `ProgressWindow.finish()` --- src/Gtk/ProgressWindow.vala | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/src/Gtk/ProgressWindow.vala b/src/Gtk/ProgressWindow.vala index ff37eb0f..26823945 100644 --- a/src/Gtk/ProgressWindow.vala +++ b/src/Gtk/ProgressWindow.vala @@ -193,22 +193,6 @@ public class ProgressWindow : Gtk.Window { } */ - public void finish(string message = "") { - - btn_cancel.sensitive = false; - - //pulse_stop(); - //progressbar.fraction = 1.0; - - lbl_msg.label = message; - lbl_status.label = ""; - - spinner.visible = false; - - gtk_do_events(); - auto_close_window(); - } - private void auto_close_window() { tmr_close = Timeout.add(2000, ()=>{ From 2ec920ced005db7c547518242ef38452f804dee3 Mon Sep 17 00:00:00 2001 From: Lucas CHOLLET Date: Sat, 28 Jan 2023 21:53:09 -0500 Subject: [PATCH 200/567] Remove unused method `ProgressWindow.auto_close_window()` --- src/Gtk/ProgressWindow.vala | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/src/Gtk/ProgressWindow.vala b/src/Gtk/ProgressWindow.vala index 26823945..195e61fa 100644 --- a/src/Gtk/ProgressWindow.vala +++ b/src/Gtk/ProgressWindow.vala @@ -42,8 +42,6 @@ public class ProgressWindow : Gtk.Window { //private ProgressBar progressbar; private Gtk.Button btn_cancel; - private uint tmr_init = 0; - private uint tmr_close = 0; private int def_width = 400; private int def_height = 50; @@ -192,18 +190,4 @@ public class ProgressWindow : Gtk.Window { gtk_do_events(); } */ - - private void auto_close_window() { - - tmr_close = Timeout.add(2000, ()=>{ - if (tmr_init > 0) { - Source.remove(tmr_init); - tmr_init = 0; - } - - allow_close = true; - this.close(); - return false; - }); - } } From c6b398a176c9136e75ee0ef7531c66f66977e9ff Mon Sep 17 00:00:00 2001 From: Lucas CHOLLET Date: Sat, 28 Jan 2023 21:59:10 -0500 Subject: [PATCH 201/567] Remove unnecessary calls to `gtk_do_events` These calls were forced by the busy-waiting removed in a previous commit. As we are now quickly returning to the main loop, we don't have to poll events manually. --- src/Gtk/MainWindow.vala | 9 +-------- src/Gtk/ProgressWindow.vala | 2 -- 2 files changed, 1 insertion(+), 10 deletions(-) diff --git a/src/Gtk/MainWindow.vala b/src/Gtk/MainWindow.vala index 4e5a9ceb..7b922bab 100644 --- a/src/Gtk/MainWindow.vala +++ b/src/Gtk/MainWindow.vala @@ -530,7 +530,7 @@ public class MainWindow : Gtk.Window{ // refresh without GUI and return ----------------- - LinuxKernel.query(false, () => gtk_do_events()); + LinuxKernel.query(false); return; } @@ -538,15 +538,12 @@ public class MainWindow : Gtk.Window{ string message = _("Refreshing..."); var progress_window = new ProgressWindow.with_parent(this, message, true); progress_window.show_all(); - gtk_do_events(); // TODO: Check if kernel.ubuntu.com is down LinuxKernel.query(false, (timer, ref count, last) => { update_progress_window(progress_window, message, timer, ref count, last); }); - - gtk_do_events(); } @@ -558,8 +555,6 @@ public class MainWindow : Gtk.Window{ return false; }); timer_elapsed(timer, true); - - gtk_do_events(); } if (App.cancelled){ @@ -590,8 +585,6 @@ public class MainWindow : Gtk.Window{ // FIXME - GTK error messages, and progressbar is always 100% //progress_window.update_progressbar(); - gtk_do_events(); - count++; } diff --git a/src/Gtk/ProgressWindow.vala b/src/Gtk/ProgressWindow.vala index 195e61fa..7a3da136 100644 --- a/src/Gtk/ProgressWindow.vala +++ b/src/Gtk/ProgressWindow.vala @@ -174,7 +174,6 @@ public class ProgressWindow : Gtk.Window { } //title = "Threads: %d".printf(DownloadManager.download_count); - //gtk_do_events(); } /* @@ -187,7 +186,6 @@ public class ProgressWindow : Gtk.Window { } progressbar.fraction = f; - gtk_do_events(); } */ } From 000ef36f07376970a7cb425de2197c7ed0b1da0c Mon Sep 17 00:00:00 2001 From: Lucas CHOLLET Date: Sat, 28 Jan 2023 22:07:42 -0500 Subject: [PATCH 202/567] Remove unused parameter in `TerminalWindow.execute_script()` --- src/Gtk/TerminalWindow.vala | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/src/Gtk/TerminalWindow.vala b/src/Gtk/TerminalWindow.vala index 823c9cf2..844fe7d2 100644 --- a/src/Gtk/TerminalWindow.vala +++ b/src/Gtk/TerminalWindow.vala @@ -176,7 +176,7 @@ public class TerminalWindow : Gtk.Window { process_quit(child_pid); } - public void execute_script(string f, string d, bool wait = false){ + public void execute_script(string f, string d){ string[] argv = {"sh", f}; string[] env = Environ.get(); @@ -199,14 +199,6 @@ public class TerminalWindow : Gtk.Window { term.watch_child(child_pid); term.child_exited.connect(script_exit); - - if (wait){ - while (is_running){ - sleep(200); - gtk_do_events(); - } - } - } catch (Error e) { log_error (e.message); From 4b33be5fcb061009f195be2ec810f2a2751da69f Mon Sep 17 00:00:00 2001 From: Lucas CHOLLET Date: Sat, 28 Jan 2023 22:09:20 -0500 Subject: [PATCH 203/567] Remove unused method `GtkHelper.gtk_do_events()` --- src/Utility/Gtk/GtkHelper.vala | 8 -------- 1 file changed, 8 deletions(-) diff --git a/src/Utility/Gtk/GtkHelper.vala b/src/Utility/Gtk/GtkHelper.vala index cb9b0aca..ec9b895d 100644 --- a/src/Utility/Gtk/GtkHelper.vala +++ b/src/Utility/Gtk/GtkHelper.vala @@ -10,14 +10,6 @@ namespace TeeJee.GtkHelper{ using Gtk; - public void gtk_do_events (){ - - /* Do pending events */ - - while(Gtk.events_pending ()) - Gtk.main_iteration (); - } - // messages ---------------------------------------- public void gtk_messagebox( From 6c68e75916d67d7ee88989070fc817dadeebde45 Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Tue, 14 Feb 2023 02:49:21 -0500 Subject: [PATCH 204/567] translations --- TRANSLATORS | 1 + po/de.po | 76 +++++++++++++++++++------------------- po/el.po | 98 ++++++++++++++++++++++++++----------------------- po/es.po | 76 +++++++++++++++++++------------------- po/fr.po | 76 +++++++++++++++++++------------------- po/hr.po | 76 +++++++++++++++++++------------------- po/it.po | 76 +++++++++++++++++++------------------- po/ko.po | 76 +++++++++++++++++++------------------- po/messages.pot | 76 +++++++++++++++++++------------------- po/nl.po | 76 +++++++++++++++++++------------------- po/pl.po | 76 +++++++++++++++++++------------------- po/ru.po | 76 +++++++++++++++++++------------------- po/sv.po | 76 +++++++++++++++++++------------------- po/tr.po | 76 +++++++++++++++++++------------------- po/uk.po | 76 +++++++++++++++++++------------------- 15 files changed, 547 insertions(+), 540 deletions(-) diff --git a/TRANSLATORS b/TRANSLATORS index 2ca427d8..b5f6e2f0 100644 --- a/TRANSLATORS +++ b/TRANSLATORS @@ -1,4 +1,5 @@ de: Tobias W +el: Vasilis Kosmidis es: Adolfo Jayme Barrientos fr: Yolateng0 hr: gogo diff --git a/po/de.po b/po/de.po index 6c2c2114..3681c51e 100644 --- a/po/de.po +++ b/po/de.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-11-11 23:03-0500\n" +"POT-Creation-Date: 2023-02-02 18:20-0500\n" "PO-Revision-Date: 2018-01-03 02:03-0600\n" "Last-Translator: Tobias W \n" "Language-Team: German\n" @@ -13,106 +13,106 @@ msgstr "" "X-Launchpad-Export-Date: 2017-04-13 11:48+0000\n" "X-Generator: Poedit 2.0.5\n" -#: src/Common/LinuxKernel.vala:88 +#: src/Common/LinuxKernel.vala:87 msgid "Distribution" msgstr "Distribution" -#: src/Common/LinuxKernel.vala:102 +#: src/Common/LinuxKernel.vala:101 msgid "Architecture" msgstr "Architektur" -#: src/Common/LinuxKernel.vala:294 +#: src/Common/LinuxKernel.vala:297 msgid "Fetching index..." msgstr "Index abrufen..." -#: src/Common/LinuxKernel.vala:331 +#: src/Common/LinuxKernel.vala:336 msgid "Fetching index from kernel.ubuntu.com..." msgstr "Holt den Index von kernel.ubuntu.com..." -#: src/Common/LinuxKernel.vala:587 +#: src/Common/LinuxKernel.vala:592 msgid "Could not find running kernel in list!" msgstr "Konnte keinen laufenden Kernel in der Liste finden!" -#: src/Common/LinuxKernel.vala:593 +#: src/Common/LinuxKernel.vala:598 msgid "Could not find any kernels to uninstall" msgstr "Es konnten keine Kernel zum Deinstallieren gefunden werden" -#: src/Common/LinuxKernel.vala:602 +#: src/Common/LinuxKernel.vala:607 msgid "The following kernels will be uninstalled:" msgstr "Die folgenden Kernel werden deinstalliert:" -#: src/Common/LinuxKernel.vala:609 +#: src/Common/LinuxKernel.vala:614 msgid "Continue ?" msgstr "Weiter ?" -#: src/Common/LinuxKernel.vala:635 src/Console/AppConsole.vala:314 +#: src/Common/LinuxKernel.vala:640 src/Console/AppConsole.vala:314 msgid "Latest update" msgstr "Neustes Update" -#: src/Common/LinuxKernel.vala:646 src/Console/AppConsole.vala:321 +#: src/Common/LinuxKernel.vala:651 src/Console/AppConsole.vala:321 msgid "Latest point update" msgstr "Letzte Punktaktualisierung" -#: src/Common/LinuxKernel.vala:654 src/Console/AppConsole.vala:326 +#: src/Common/LinuxKernel.vala:659 src/Console/AppConsole.vala:326 #: src/Console/AppConsole.vala:387 msgid "No updates found" msgstr "Keine Updates gefunden" -#: src/Common/LinuxKernel.vala:664 +#: src/Common/LinuxKernel.vala:669 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Kernel-Version %s installieren? (j/n):" -#: src/Common/LinuxKernel.vala:925 +#: src/Common/LinuxKernel.vala:930 msgid "Packages Available" msgstr "Verfügbare Pakete" -#: src/Common/LinuxKernel.vala:933 +#: src/Common/LinuxKernel.vala:938 msgid "Packages Installed" msgstr "Installierte Packete" -#: src/Common/LinuxKernel.vala:1013 +#: src/Common/LinuxKernel.vala:1018 msgid "Available Kernels" msgstr "Verfügbare Kernels" -#: src/Common/LinuxKernel.vala:1020 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1025 src/Gtk/MainWindow.vala:186 msgid "Installed" msgstr "Installiert" -#: src/Common/LinuxKernel.vala:1020 src/Gtk/MainWindow.vala:186 -#: src/Gtk/MainWindow.vala:628 src/Gtk/MainWindow.vala:642 +#: src/Common/LinuxKernel.vala:1025 src/Gtk/MainWindow.vala:186 +#: src/Gtk/MainWindow.vala:617 src/Gtk/MainWindow.vala:631 msgid "Running" msgstr "Läuft" -#: src/Common/LinuxKernel.vala:1057 +#: src/Common/LinuxKernel.vala:1062 msgid "Downloading" msgstr "Downloaded" -#: src/Common/LinuxKernel.vala:1076 +#: src/Common/LinuxKernel.vala:1081 #: src/Utility/Gtk/CustomMessageDialog.vala:148 #: src/Utility/Gtk/CustomMessageDialog.vala:152 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:1081 +#: src/Common/LinuxKernel.vala:1086 msgid "ERROR" msgstr "Fehler" -#: src/Common/LinuxKernel.vala:1095 src/Gtk/MainWindow.vala:650 +#: src/Common/LinuxKernel.vala:1100 src/Gtk/MainWindow.vala:639 msgid "This kernel is already installed." msgstr "Dieser Kernel ist bereits installiert." -#: src/Common/LinuxKernel.vala:1121 +#: src/Common/LinuxKernel.vala:1126 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "Die Installation ist abgeschlossen. Ein Neustart ist erforderlich, um den " "neuen Kernel zu verwenden." -#: src/Common/LinuxKernel.vala:1124 +#: src/Common/LinuxKernel.vala:1129 msgid "Installation completed with errors" msgstr "Installation mit Fehlern abgeschlossen" -#: src/Common/LinuxKernel.vala:1139 +#: src/Common/LinuxKernel.vala:1144 msgid "" "Selected kernel is currently running and cannot be un-installed.\n" " Install another kernel before un-installing this one." @@ -121,19 +121,19 @@ msgstr "" "werden.\n" " Installieren Sie einen anderen Kernel, bevor Sie diesen deinstallieren." -#: src/Common/LinuxKernel.vala:1144 +#: src/Common/LinuxKernel.vala:1149 msgid "Preparing to uninstall selected kernels" msgstr "Vorbereiten der Deinstallation ausgewählter Kernel" -#: src/Common/LinuxKernel.vala:1175 src/Common/LinuxKernel.vala:1222 +#: src/Common/LinuxKernel.vala:1180 src/Common/LinuxKernel.vala:1227 msgid "Un-install completed" msgstr "Deinstallation abgeschlossen" -#: src/Common/LinuxKernel.vala:1178 src/Common/LinuxKernel.vala:1225 +#: src/Common/LinuxKernel.vala:1183 src/Common/LinuxKernel.vala:1230 msgid "Un-install completed with errors" msgstr "Deinstallation mit Fehlern abgeschlossen" -#: src/Common/LinuxKernel.vala:1191 +#: src/Common/LinuxKernel.vala:1196 msgid "" "This kernel is currently running and cannot be un-installed.\n" " Install another kernel before un-installing this one." @@ -320,7 +320,7 @@ msgid "Internet connection is not active" msgstr "Internetverbindung ist nicht aktiv" #: src/Gtk/MainWindow.vala:321 src/Gtk/MainWindow.vala:525 -#: src/Gtk/MainWindow.vala:655 +#: src/Gtk/MainWindow.vala:644 msgid "No Internet" msgstr "Kein Internet" @@ -349,7 +349,7 @@ msgid "Select the kernels to uninstall" msgstr "Wählen Sie die zu deinstallierenden Kernel aus" #: src/Gtk/MainWindow.vala:383 src/Gtk/MainWindow.vala:417 -#: src/Gtk/MainWindow.vala:687 +#: src/Gtk/MainWindow.vala:676 msgid "Close window to exit..." msgstr "Fenster schließen zum Verlassen..." @@ -385,23 +385,23 @@ msgstr "Gegabelte" msgid "Original" msgstr "Orginal" -#: src/Gtk/MainWindow.vala:525 src/Gtk/MainWindow.vala:655 +#: src/Gtk/MainWindow.vala:525 src/Gtk/MainWindow.vala:644 msgid "Internet connection is not active." msgstr "Die Internetverbindung ist nicht aktiv." -#: src/Gtk/MainWindow.vala:544 +#: src/Gtk/MainWindow.vala:538 msgid "Refreshing..." msgstr "Auffrischen" -#: src/Gtk/MainWindow.vala:638 +#: src/Gtk/MainWindow.vala:627 msgid "available" msgstr "Verfügbar" -#: src/Gtk/MainWindow.vala:650 +#: src/Gtk/MainWindow.vala:639 msgid "Already Installed" msgstr "Bereits Installiert" -#: src/Gtk/ProgressWindow.vala:144 src/Gtk/TerminalWindow.vala:149 +#: src/Gtk/ProgressWindow.vala:142 src/Gtk/TerminalWindow.vala:149 #: src/Utility/Gtk/CustomMessageDialog.vala:153 msgid "Cancel" msgstr "Abbrechen" @@ -514,7 +514,7 @@ msgstr "Ja" msgid "No" msgstr "Nein" -#: src/Utility/Gtk/GtkHelper.vala:67 +#: src/Utility/Gtk/GtkHelper.vala:59 msgid "Missing Icon" msgstr "Fehlendes Symbol" diff --git a/po/el.po b/po/el.po index 350f5142..3be13d7c 100644 --- a/po/el.po +++ b/po/el.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-01-10 23:03-0500\n" +"POT-Creation-Date: 2023-02-02 18:20-0500\n" "PO-Revision-Date: 2023-01-10 02:03-0600\n" "Last-Translator: Vasilis Kosmidis \n" "Language-Team: Greek\n" @@ -13,129 +13,134 @@ msgstr "" "X-Launchpad-Export-Date: 2017-04-13 11:48+0000\n" "X-Generator: Poedit 2.0.5\n" -#: src/Common/LinuxKernel.vala:88 +#: src/Common/LinuxKernel.vala:87 msgid "Distribution" msgstr "Διανομή" -#: src/Common/LinuxKernel.vala:102 +#: src/Common/LinuxKernel.vala:101 msgid "Architecture" msgstr "Αρχιτεκτονική" -#: src/Common/LinuxKernel.vala:294 +#: src/Common/LinuxKernel.vala:297 msgid "Fetching index..." msgstr "Ανάκτηση ευρετηρίου..." -#: src/Common/LinuxKernel.vala:331 +#: src/Common/LinuxKernel.vala:336 msgid "Fetching index from kernel.ubuntu.com..." msgstr "Ανάκτηση ευρετηρίου από το kernel.ubuntu.com..." -#: src/Common/LinuxKernel.vala:587 +#: src/Common/LinuxKernel.vala:592 msgid "Could not find running kernel in list!" msgstr "Δεν ήταν δυνατή η εύρεση του τρέχοντος πυρήνα στη λίστα!" -#: src/Common/LinuxKernel.vala:593 +#: src/Common/LinuxKernel.vala:598 msgid "Could not find any kernels to uninstall" msgstr "Δεν βρέθηκε κανένας πυρήνας για απεγκατάσταση" -#: src/Common/LinuxKernel.vala:602 -msgid "Οι ακόλουθοι πυρήνες θα απεγκατασταθούν:" -msgstr "Die folgenden Kernel werden deinstalliert:" +#: src/Common/LinuxKernel.vala:607 +#, fuzzy +msgid "The following kernels will be uninstalled:" +msgstr "Αυτός ο πυρήνας είναι ήδη εγκατεστημένος." -#: src/Common/LinuxKernel.vala:609 +#: src/Common/LinuxKernel.vala:614 msgid "Continue ?" msgstr "Συνέχεια;" -#: src/Common/LinuxKernel.vala:635 src/Console/AppConsole.vala:314 +#: src/Common/LinuxKernel.vala:640 src/Console/AppConsole.vala:314 msgid "Latest update" msgstr "Τελευταία αναβάθμιση" -#: src/Common/LinuxKernel.vala:646 src/Console/AppConsole.vala:321 +#: src/Common/LinuxKernel.vala:651 src/Console/AppConsole.vala:321 msgid "Latest point update" msgstr "Τελευταία ενημέρωση συντήρησης" -#: src/Common/LinuxKernel.vala:654 src/Console/AppConsole.vala:326 +#: src/Common/LinuxKernel.vala:659 src/Console/AppConsole.vala:326 #: src/Console/AppConsole.vala:387 msgid "No updates found" msgstr "Δεν βρέθηκαν ενημερώσεις" -#: src/Common/LinuxKernel.vala:664 +#: src/Common/LinuxKernel.vala:669 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Εγκατάσταση του πυρήνα έκδοσης %s ; (ν/ό):" -#: src/Common/LinuxKernel.vala:925 +#: src/Common/LinuxKernel.vala:930 msgid "Packages Available" msgstr "Διαθέσιμα πακέτα" -#: src/Common/LinuxKernel.vala:933 +#: src/Common/LinuxKernel.vala:938 msgid "Packages Installed" msgstr "Εγκατεστημένα πακέτα" -#: src/Common/LinuxKernel.vala:1013 +#: src/Common/LinuxKernel.vala:1018 msgid "Available Kernels" msgstr "Διαθέσιμοι πυρήνες" -#: src/Common/LinuxKernel.vala:1020 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1025 src/Gtk/MainWindow.vala:186 msgid "Installed" msgstr "Εγκατεστημένος" -#: src/Common/LinuxKernel.vala:1020 src/Gtk/MainWindow.vala:186 -#: src/Gtk/MainWindow.vala:628 src/Gtk/MainWindow.vala:642 +#: src/Common/LinuxKernel.vala:1025 src/Gtk/MainWindow.vala:186 +#: src/Gtk/MainWindow.vala:617 src/Gtk/MainWindow.vala:631 msgid "Running" msgstr "Ενεργός" -#: src/Common/LinuxKernel.vala:1057 +#: src/Common/LinuxKernel.vala:1062 msgid "Downloading" msgstr "Λήψη" -#: src/Common/LinuxKernel.vala:1076 +#: src/Common/LinuxKernel.vala:1081 #: src/Utility/Gtk/CustomMessageDialog.vala:148 #: src/Utility/Gtk/CustomMessageDialog.vala:152 msgid "OK" msgstr "ΟΚ" -#: src/Common/LinuxKernel.vala:1081 +#: src/Common/LinuxKernel.vala:1086 msgid "ERROR" msgstr "ΣΦΑΛΜΑ" -#: src/Common/LinuxKernel.vala:1095 src/Gtk/MainWindow.vala:650 +#: src/Common/LinuxKernel.vala:1100 src/Gtk/MainWindow.vala:639 msgid "This kernel is already installed." msgstr "Αυτός ο πυρήνας είναι ήδη εγκατεστημένος." -#: src/Common/LinuxKernel.vala:1121 +#: src/Common/LinuxKernel.vala:1126 msgid "Installation completed. A reboot is required to use the new kernel." -msgstr "Η εγκατάσταση ολοκληρώθηκε. Απαιτείται επανεκκίνηση για τη χρήση του νέου πυρήνα." +msgstr "" +"Η εγκατάσταση ολοκληρώθηκε. Απαιτείται επανεκκίνηση για τη χρήση του νέου " +"πυρήνα." -#: src/Common/LinuxKernel.vala:1124 +#: src/Common/LinuxKernel.vala:1129 msgid "Installation completed with errors" msgstr "Η εγκατάσταση ολοκληρώθηκε με σφάλματα" -#: src/Common/LinuxKernel.vala:1139 +#: src/Common/LinuxKernel.vala:1144 msgid "" "Selected kernel is currently running and cannot be un-installed.\n" " Install another kernel before un-installing this one." msgstr "" -"Ο επιλεγμένος πυρήνας εκτελείται αυτήν τη στιγμή και δεν μπορεί να απεγκατασταθεί.\n" +"Ο επιλεγμένος πυρήνας εκτελείται αυτήν τη στιγμή και δεν μπορεί να " +"απεγκατασταθεί.\n" " Εγκαταστήστε έναν άλλο πυρήνα πριν απεγκαταστήσετε αυτόν." -#: src/Common/LinuxKernel.vala:1144 +#: src/Common/LinuxKernel.vala:1149 msgid "Preparing to uninstall selected kernels" msgstr "Προετοιμασία για απεγκατάσταση επιλεγμένων πυρήνων" -#: src/Common/LinuxKernel.vala:1175 src/Common/LinuxKernel.vala:1222 +#: src/Common/LinuxKernel.vala:1180 src/Common/LinuxKernel.vala:1227 msgid "Un-install completed" msgstr "Η απεγκατάσταση ολοκληρώθηκε" -#: src/Common/LinuxKernel.vala:1178 src/Common/LinuxKernel.vala:1225 +#: src/Common/LinuxKernel.vala:1183 src/Common/LinuxKernel.vala:1230 msgid "Un-install completed with errors" msgstr "Η απεγκατάσταση ολοκληρώθηκε με σφάλματα" -#: src/Common/LinuxKernel.vala:1191 +#: src/Common/LinuxKernel.vala:1196 msgid "" "This kernel is currently running and cannot be un-installed.\n" " Install another kernel before un-installing this one." msgstr "" -"Αυτός ο πυρήνας εκτελείται αυτήν τη στιγμή και δεν μπορεί να απεγκατασταθεί.\n" +"Αυτός ο πυρήνας εκτελείται αυτήν τη στιγμή και δεν μπορεί να " +"απεγκατασταθεί.\n" " Εγκαταστήστε έναν άλλο πυρήνα πριν απεγκαταστήσετε αυτόν." #: src/Common/Main.vala:241 @@ -235,8 +240,8 @@ msgstr "Μια συμβολοσειρά έκδοσης που λαμβάνετα msgid "" "One or more version strings (comma-separated) taken from the output of --list" msgstr "" -"Μία ή περισσότερες συμβολοσειρές έκδοσης (χωρισμένες με κόμμα) που λαμβάνονται " -"από την έξοδο του --list" +"Μία ή περισσότερες συμβολοσειρές έκδοσης (χωρισμένες με κόμμα) που " +"λαμβάνονται από την έξοδο του --list" #: src/Console/AppConsole.vala:169 src/Gtk/AppGtk.vala:136 msgid "Unknown option" @@ -265,7 +270,8 @@ msgstr "Δε βρέθηκε η ζητούμενη έκδοση" #: src/Console/AppConsole.vala:265 msgid "and use a version string listed in first column" -msgstr "και χρησιμοποιήστε μια συμβολοσειρά έκδοσης που αναφέρεται στην πρώτη στήλη" +msgstr "" +"και χρησιμοποιήστε μια συμβολοσειρά έκδοσης που αναφέρεται στην πρώτη στήλη" #: src/Console/AppConsole.vala:293 msgid "Command not specified" @@ -314,7 +320,7 @@ msgid "Internet connection is not active" msgstr "Η σύνδεση στο διαδίκτυο δεν είναι ενεργή" #: src/Gtk/MainWindow.vala:321 src/Gtk/MainWindow.vala:525 -#: src/Gtk/MainWindow.vala:655 +#: src/Gtk/MainWindow.vala:644 msgid "No Internet" msgstr "Χωρίς διαδίκτυο" @@ -343,7 +349,7 @@ msgid "Select the kernels to uninstall" msgstr "Επιλέξτε πυρήνες για απεγκατάσταση" #: src/Gtk/MainWindow.vala:383 src/Gtk/MainWindow.vala:417 -#: src/Gtk/MainWindow.vala:687 +#: src/Gtk/MainWindow.vala:676 msgid "Close window to exit..." msgstr "Κλείστε το παράθυρο για έξοδο..." @@ -379,23 +385,23 @@ msgstr "Forked" msgid "Original" msgstr "Πρωτότυπο" -#: src/Gtk/MainWindow.vala:525 src/Gtk/MainWindow.vala:655 +#: src/Gtk/MainWindow.vala:525 src/Gtk/MainWindow.vala:644 msgid "Internet connection is not active." msgstr "Η σύνδεση στο διαδίκτυο δεν είναι ενεργή." -#: src/Gtk/MainWindow.vala:544 +#: src/Gtk/MainWindow.vala:538 msgid "Refreshing..." msgstr "Ανανέωση..." -#: src/Gtk/MainWindow.vala:638 +#: src/Gtk/MainWindow.vala:627 msgid "available" msgstr "διαθέσιμος" -#: src/Gtk/MainWindow.vala:650 +#: src/Gtk/MainWindow.vala:639 msgid "Already Installed" msgstr "Ήδη εγκατεστημένος" -#: src/Gtk/ProgressWindow.vala:144 src/Gtk/TerminalWindow.vala:149 +#: src/Gtk/ProgressWindow.vala:142 src/Gtk/TerminalWindow.vala:149 #: src/Utility/Gtk/CustomMessageDialog.vala:153 msgid "Cancel" msgstr "Άκυρο" @@ -508,7 +514,7 @@ msgstr "Ναι" msgid "No" msgstr "Όχι" -#: src/Utility/Gtk/GtkHelper.vala:67 +#: src/Utility/Gtk/GtkHelper.vala:59 msgid "Missing Icon" msgstr "Ελλείπον εικονίδιο" diff --git a/po/es.po b/po/es.po index a35284d9..6103efbd 100644 --- a/po/es.po +++ b/po/es.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-11-11 23:03-0500\n" +"POT-Creation-Date: 2023-02-02 18:20-0500\n" "PO-Revision-Date: 2018-01-03 02:03-0600\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish\n" @@ -13,107 +13,107 @@ msgstr "" "X-Launchpad-Export-Date: 2017-04-13 11:48+0000\n" "X-Generator: Poedit 2.0.5\n" -#: src/Common/LinuxKernel.vala:88 +#: src/Common/LinuxKernel.vala:87 msgid "Distribution" msgstr "Distribución" -#: src/Common/LinuxKernel.vala:102 +#: src/Common/LinuxKernel.vala:101 msgid "Architecture" msgstr "Arquitectura del sistema" -#: src/Common/LinuxKernel.vala:294 +#: src/Common/LinuxKernel.vala:297 msgid "Fetching index..." msgstr "Recuperando índice..." -#: src/Common/LinuxKernel.vala:331 +#: src/Common/LinuxKernel.vala:336 msgid "Fetching index from kernel.ubuntu.com..." msgstr "Recuperando índice de kernel.ubuntu.com…" -#: src/Common/LinuxKernel.vala:587 +#: src/Common/LinuxKernel.vala:592 msgid "Could not find running kernel in list!" msgstr "¡No se pudo encontrar el núcleo en ejecución en la lista!" -#: src/Common/LinuxKernel.vala:593 +#: src/Common/LinuxKernel.vala:598 #, fuzzy msgid "Could not find any kernels to uninstall" msgstr "Seleccione los núcleos que se desinstalarán" -#: src/Common/LinuxKernel.vala:602 +#: src/Common/LinuxKernel.vala:607 #, fuzzy msgid "The following kernels will be uninstalled:" msgstr "Los siguientes kernels serán eliminados:" -#: src/Common/LinuxKernel.vala:609 +#: src/Common/LinuxKernel.vala:614 msgid "Continue ?" msgstr "¿Continuar?" -#: src/Common/LinuxKernel.vala:635 src/Console/AppConsole.vala:314 +#: src/Common/LinuxKernel.vala:640 src/Console/AppConsole.vala:314 msgid "Latest update" msgstr "" -#: src/Common/LinuxKernel.vala:646 src/Console/AppConsole.vala:321 +#: src/Common/LinuxKernel.vala:651 src/Console/AppConsole.vala:321 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:654 src/Console/AppConsole.vala:326 +#: src/Common/LinuxKernel.vala:659 src/Console/AppConsole.vala:326 #: src/Console/AppConsole.vala:387 msgid "No updates found" msgstr "No se encontró ninguna actualización" -#: src/Common/LinuxKernel.vala:664 +#: src/Common/LinuxKernel.vala:669 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "" -#: src/Common/LinuxKernel.vala:925 +#: src/Common/LinuxKernel.vala:930 msgid "Packages Available" msgstr "Paquetes disponibles" -#: src/Common/LinuxKernel.vala:933 +#: src/Common/LinuxKernel.vala:938 msgid "Packages Installed" msgstr "Paquetes instalados" -#: src/Common/LinuxKernel.vala:1013 +#: src/Common/LinuxKernel.vala:1018 msgid "Available Kernels" msgstr "Núcleos disponibles" -#: src/Common/LinuxKernel.vala:1020 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1025 src/Gtk/MainWindow.vala:186 msgid "Installed" msgstr "Instalado" -#: src/Common/LinuxKernel.vala:1020 src/Gtk/MainWindow.vala:186 -#: src/Gtk/MainWindow.vala:628 src/Gtk/MainWindow.vala:642 +#: src/Common/LinuxKernel.vala:1025 src/Gtk/MainWindow.vala:186 +#: src/Gtk/MainWindow.vala:617 src/Gtk/MainWindow.vala:631 msgid "Running" msgstr "En ejecución" -#: src/Common/LinuxKernel.vala:1057 +#: src/Common/LinuxKernel.vala:1062 msgid "Downloading" msgstr "Descargando" -#: src/Common/LinuxKernel.vala:1076 +#: src/Common/LinuxKernel.vala:1081 #: src/Utility/Gtk/CustomMessageDialog.vala:148 #: src/Utility/Gtk/CustomMessageDialog.vala:152 msgid "OK" msgstr "Aceptar" -#: src/Common/LinuxKernel.vala:1081 +#: src/Common/LinuxKernel.vala:1086 msgid "ERROR" msgstr "ERROR" -#: src/Common/LinuxKernel.vala:1095 src/Gtk/MainWindow.vala:650 +#: src/Common/LinuxKernel.vala:1100 src/Gtk/MainWindow.vala:639 msgid "This kernel is already installed." msgstr "Este núcleo ya se instaló." -#: src/Common/LinuxKernel.vala:1121 +#: src/Common/LinuxKernel.vala:1126 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "Instalación finalizada. Se necesita reiniciar para utilizar el núcleo nuevo." -#: src/Common/LinuxKernel.vala:1124 +#: src/Common/LinuxKernel.vala:1129 msgid "Installation completed with errors" msgstr "Instalación finalizada con errores" -#: src/Common/LinuxKernel.vala:1139 +#: src/Common/LinuxKernel.vala:1144 #, fuzzy msgid "" "Selected kernel is currently running and cannot be un-installed.\n" @@ -122,20 +122,20 @@ msgstr "" "El núcleo seleccionado está en ejecución y no puede desinstalarse.\n" "Instale otro núcleo antes de desinstalar este." -#: src/Common/LinuxKernel.vala:1144 +#: src/Common/LinuxKernel.vala:1149 #, fuzzy msgid "Preparing to uninstall selected kernels" msgstr "Preparándose para desinstalar los núcleos seleccionados" -#: src/Common/LinuxKernel.vala:1175 src/Common/LinuxKernel.vala:1222 +#: src/Common/LinuxKernel.vala:1180 src/Common/LinuxKernel.vala:1227 msgid "Un-install completed" msgstr "Desinstalación finalizada" -#: src/Common/LinuxKernel.vala:1178 src/Common/LinuxKernel.vala:1225 +#: src/Common/LinuxKernel.vala:1183 src/Common/LinuxKernel.vala:1230 msgid "Un-install completed with errors" msgstr "Desinstalación finalizada con errores" -#: src/Common/LinuxKernel.vala:1191 +#: src/Common/LinuxKernel.vala:1196 #, fuzzy msgid "" "This kernel is currently running and cannot be un-installed.\n" @@ -325,7 +325,7 @@ msgid "Internet connection is not active" msgstr "La conexión a Internet está inactiva" #: src/Gtk/MainWindow.vala:321 src/Gtk/MainWindow.vala:525 -#: src/Gtk/MainWindow.vala:655 +#: src/Gtk/MainWindow.vala:644 msgid "No Internet" msgstr "No hay Internet" @@ -356,7 +356,7 @@ msgid "Select the kernels to uninstall" msgstr "Seleccione el núcleo que se instalará" #: src/Gtk/MainWindow.vala:383 src/Gtk/MainWindow.vala:417 -#: src/Gtk/MainWindow.vala:687 +#: src/Gtk/MainWindow.vala:676 msgid "Close window to exit..." msgstr "" @@ -394,26 +394,26 @@ msgstr "" msgid "Original" msgstr "" -#: src/Gtk/MainWindow.vala:525 src/Gtk/MainWindow.vala:655 +#: src/Gtk/MainWindow.vala:525 src/Gtk/MainWindow.vala:644 #, fuzzy msgid "Internet connection is not active." msgstr "La conexión a Internet está inactiva" -#: src/Gtk/MainWindow.vala:544 +#: src/Gtk/MainWindow.vala:538 msgid "Refreshing..." msgstr "Actualizando…" -#: src/Gtk/MainWindow.vala:638 +#: src/Gtk/MainWindow.vala:627 #, fuzzy msgid "available" msgstr "Paquetes disponibles" -#: src/Gtk/MainWindow.vala:650 +#: src/Gtk/MainWindow.vala:639 #, fuzzy msgid "Already Installed" msgstr "Instalado" -#: src/Gtk/ProgressWindow.vala:144 src/Gtk/TerminalWindow.vala:149 +#: src/Gtk/ProgressWindow.vala:142 src/Gtk/TerminalWindow.vala:149 #: src/Utility/Gtk/CustomMessageDialog.vala:153 msgid "Cancel" msgstr "Cancelar" @@ -528,7 +528,7 @@ msgstr "Sí" msgid "No" msgstr "No" -#: src/Utility/Gtk/GtkHelper.vala:67 +#: src/Utility/Gtk/GtkHelper.vala:59 msgid "Missing Icon" msgstr "Falta el icono" diff --git a/po/fr.po b/po/fr.po index dd3fd66a..4ee5cbb6 100644 --- a/po/fr.po +++ b/po/fr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-11-11 23:03-0500\n" +"POT-Creation-Date: 2023-02-02 18:20-0500\n" "PO-Revision-Date: 2018-08-05 15:50+0200\n" "Last-Translator: Yolateng0 \n" "Language-Team: French\n" @@ -13,108 +13,108 @@ msgstr "" "X-Launchpad-Export-Date: 2017-04-13 11:48+0000\n" "X-Generator: Poedit 2.0.6\n" -#: src/Common/LinuxKernel.vala:88 +#: src/Common/LinuxKernel.vala:87 msgid "Distribution" msgstr "Distribution" -#: src/Common/LinuxKernel.vala:102 +#: src/Common/LinuxKernel.vala:101 msgid "Architecture" msgstr "Architecture" -#: src/Common/LinuxKernel.vala:294 +#: src/Common/LinuxKernel.vala:297 msgid "Fetching index..." msgstr "Récupération de l'index..." -#: src/Common/LinuxKernel.vala:331 +#: src/Common/LinuxKernel.vala:336 msgid "Fetching index from kernel.ubuntu.com..." msgstr "Récupération de l'index depuis kernel.ubuntu.com..." -#: src/Common/LinuxKernel.vala:587 +#: src/Common/LinuxKernel.vala:592 msgid "Could not find running kernel in list!" msgstr "Impossible de trouver la version courante dans la liste!" -#: src/Common/LinuxKernel.vala:593 +#: src/Common/LinuxKernel.vala:598 #, fuzzy msgid "Could not find any kernels to uninstall" msgstr "Impossible de trouver de noyaux à supprimer" -#: src/Common/LinuxKernel.vala:602 +#: src/Common/LinuxKernel.vala:607 #, fuzzy msgid "The following kernels will be uninstalled:" msgstr "Les noyaux suivants seront supprimés:" -#: src/Common/LinuxKernel.vala:609 +#: src/Common/LinuxKernel.vala:614 msgid "Continue ?" msgstr "Reprendre ?" -#: src/Common/LinuxKernel.vala:635 src/Console/AppConsole.vala:314 +#: src/Common/LinuxKernel.vala:640 src/Console/AppConsole.vala:314 msgid "Latest update" msgstr "Dernière mise à jour" -#: src/Common/LinuxKernel.vala:646 src/Console/AppConsole.vala:321 +#: src/Common/LinuxKernel.vala:651 src/Console/AppConsole.vala:321 msgid "Latest point update" msgstr "Dernière mise à jour mineure" -#: src/Common/LinuxKernel.vala:654 src/Console/AppConsole.vala:326 +#: src/Common/LinuxKernel.vala:659 src/Console/AppConsole.vala:326 #: src/Console/AppConsole.vala:387 msgid "No updates found" msgstr "Aucune mise à jour disponible" -#: src/Common/LinuxKernel.vala:664 +#: src/Common/LinuxKernel.vala:669 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Installer le noyau en version %s ? (y/n): " -#: src/Common/LinuxKernel.vala:925 +#: src/Common/LinuxKernel.vala:930 msgid "Packages Available" msgstr "Paquets Disponibles" -#: src/Common/LinuxKernel.vala:933 +#: src/Common/LinuxKernel.vala:938 msgid "Packages Installed" msgstr "Paquets Installés" -#: src/Common/LinuxKernel.vala:1013 +#: src/Common/LinuxKernel.vala:1018 msgid "Available Kernels" msgstr "Noyaux Disponibles" -#: src/Common/LinuxKernel.vala:1020 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1025 src/Gtk/MainWindow.vala:186 msgid "Installed" msgstr "Installé" -#: src/Common/LinuxKernel.vala:1020 src/Gtk/MainWindow.vala:186 -#: src/Gtk/MainWindow.vala:628 src/Gtk/MainWindow.vala:642 +#: src/Common/LinuxKernel.vala:1025 src/Gtk/MainWindow.vala:186 +#: src/Gtk/MainWindow.vala:617 src/Gtk/MainWindow.vala:631 msgid "Running" msgstr "Actuel" -#: src/Common/LinuxKernel.vala:1057 +#: src/Common/LinuxKernel.vala:1062 msgid "Downloading" msgstr "Téléchargement" -#: src/Common/LinuxKernel.vala:1076 +#: src/Common/LinuxKernel.vala:1081 #: src/Utility/Gtk/CustomMessageDialog.vala:148 #: src/Utility/Gtk/CustomMessageDialog.vala:152 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:1081 +#: src/Common/LinuxKernel.vala:1086 msgid "ERROR" msgstr "ERREUR" -#: src/Common/LinuxKernel.vala:1095 src/Gtk/MainWindow.vala:650 +#: src/Common/LinuxKernel.vala:1100 src/Gtk/MainWindow.vala:639 msgid "This kernel is already installed." msgstr "Ce noyau est déjà installé." -#: src/Common/LinuxKernel.vala:1121 +#: src/Common/LinuxKernel.vala:1126 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "Installation complétée. Un redémarrage est nécessaire pour utiliser le " "nouveau noyau." -#: src/Common/LinuxKernel.vala:1124 +#: src/Common/LinuxKernel.vala:1129 msgid "Installation completed with errors" msgstr "Installation terminée avec des erreurs" -#: src/Common/LinuxKernel.vala:1139 +#: src/Common/LinuxKernel.vala:1144 #, fuzzy msgid "" "Selected kernel is currently running and cannot be un-installed.\n" @@ -123,20 +123,20 @@ msgstr "" "Ce noyau est en cours d'exécution et ne peut pas être supprimé.\n" " Installez un autre noyau avant de retirer celui-ci." -#: src/Common/LinuxKernel.vala:1144 +#: src/Common/LinuxKernel.vala:1149 #, fuzzy msgid "Preparing to uninstall selected kernels" msgstr "Préparation à la suppression des noyaux sélectionnés" -#: src/Common/LinuxKernel.vala:1175 src/Common/LinuxKernel.vala:1222 +#: src/Common/LinuxKernel.vala:1180 src/Common/LinuxKernel.vala:1227 msgid "Un-install completed" msgstr "Désinstallation complète" -#: src/Common/LinuxKernel.vala:1178 src/Common/LinuxKernel.vala:1225 +#: src/Common/LinuxKernel.vala:1183 src/Common/LinuxKernel.vala:1230 msgid "Un-install completed with errors" msgstr "Désinstallation terminée avec des erreurs" -#: src/Common/LinuxKernel.vala:1191 +#: src/Common/LinuxKernel.vala:1196 #, fuzzy msgid "" "This kernel is currently running and cannot be un-installed.\n" @@ -326,7 +326,7 @@ msgid "Internet connection is not active" msgstr "Connexion internet inexistante" #: src/Gtk/MainWindow.vala:321 src/Gtk/MainWindow.vala:525 -#: src/Gtk/MainWindow.vala:655 +#: src/Gtk/MainWindow.vala:644 msgid "No Internet" msgstr "Pas d'Internet" @@ -357,7 +357,7 @@ msgid "Select the kernels to uninstall" msgstr "Sélectionnez le noyau à installer" #: src/Gtk/MainWindow.vala:383 src/Gtk/MainWindow.vala:417 -#: src/Gtk/MainWindow.vala:687 +#: src/Gtk/MainWindow.vala:676 msgid "Close window to exit..." msgstr "Fermer la fenêtre pour quitter..." @@ -397,23 +397,23 @@ msgstr "Version forkée :" msgid "Original" msgstr "Version originale :" -#: src/Gtk/MainWindow.vala:525 src/Gtk/MainWindow.vala:655 +#: src/Gtk/MainWindow.vala:525 src/Gtk/MainWindow.vala:644 msgid "Internet connection is not active." msgstr "Connexion internet inexistante" -#: src/Gtk/MainWindow.vala:544 +#: src/Gtk/MainWindow.vala:538 msgid "Refreshing..." msgstr "Actualisation..." -#: src/Gtk/MainWindow.vala:638 +#: src/Gtk/MainWindow.vala:627 msgid "available" msgstr "disponible" -#: src/Gtk/MainWindow.vala:650 +#: src/Gtk/MainWindow.vala:639 msgid "Already Installed" msgstr "Déjà Installé" -#: src/Gtk/ProgressWindow.vala:144 src/Gtk/TerminalWindow.vala:149 +#: src/Gtk/ProgressWindow.vala:142 src/Gtk/TerminalWindow.vala:149 #: src/Utility/Gtk/CustomMessageDialog.vala:153 msgid "Cancel" msgstr "Annuler" @@ -526,7 +526,7 @@ msgstr "Oui" msgid "No" msgstr "Non" -#: src/Utility/Gtk/GtkHelper.vala:67 +#: src/Utility/Gtk/GtkHelper.vala:59 msgid "Missing Icon" msgstr "Icône introuvable" diff --git a/po/hr.po b/po/hr.po index aea0d162..bb5d5378 100644 --- a/po/hr.po +++ b/po/hr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-11-11 23:03-0500\n" +"POT-Creation-Date: 2023-02-02 18:20-0500\n" "PO-Revision-Date: 2022-09-22 12:13+0200\n" "Last-Translator: gogo \n" "Language-Team: Croatian\n" @@ -13,106 +13,106 @@ msgstr "" "X-Launchpad-Export-Date: 2017-12-23 23:36+0000\n" "X-Generator: Poedit 3.0.1\n" -#: src/Common/LinuxKernel.vala:88 +#: src/Common/LinuxKernel.vala:87 msgid "Distribution" msgstr "Distribucija" -#: src/Common/LinuxKernel.vala:102 +#: src/Common/LinuxKernel.vala:101 msgid "Architecture" msgstr "Arhitektura" -#: src/Common/LinuxKernel.vala:294 +#: src/Common/LinuxKernel.vala:297 msgid "Fetching index..." msgstr "Preuzimanje sadržaja..." -#: src/Common/LinuxKernel.vala:331 +#: src/Common/LinuxKernel.vala:336 msgid "Fetching index from kernel.ubuntu.com..." msgstr "Preuzimanje sadržaja sa kernel.ubuntu.com..." -#: src/Common/LinuxKernel.vala:587 +#: src/Common/LinuxKernel.vala:592 msgid "Could not find running kernel in list!" msgstr "Nemoguće je pronaći pokrenuti kernel na popisu!" -#: src/Common/LinuxKernel.vala:593 +#: src/Common/LinuxKernel.vala:598 msgid "Could not find any kernels to uninstall" msgstr "Nema pronađenih kernela za deinstaliranje" -#: src/Common/LinuxKernel.vala:602 +#: src/Common/LinuxKernel.vala:607 msgid "The following kernels will be uninstalled:" msgstr "Sljedeći kerneli će biti deinstalirani:" -#: src/Common/LinuxKernel.vala:609 +#: src/Common/LinuxKernel.vala:614 msgid "Continue ?" msgstr "Nastavi?" -#: src/Common/LinuxKernel.vala:635 src/Console/AppConsole.vala:314 +#: src/Common/LinuxKernel.vala:640 src/Console/AppConsole.vala:314 msgid "Latest update" msgstr "Najnovija nadopuna" -#: src/Common/LinuxKernel.vala:646 src/Console/AppConsole.vala:321 +#: src/Common/LinuxKernel.vala:651 src/Console/AppConsole.vala:321 msgid "Latest point update" msgstr "Najnovija ciljana nadopuna" -#: src/Common/LinuxKernel.vala:654 src/Console/AppConsole.vala:326 +#: src/Common/LinuxKernel.vala:659 src/Console/AppConsole.vala:326 #: src/Console/AppConsole.vala:387 msgid "No updates found" msgstr "Nema pronađenih nadopuna" -#: src/Common/LinuxKernel.vala:664 +#: src/Common/LinuxKernel.vala:669 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Instaliraj kernel inačice %s ? (d/n): " -#: src/Common/LinuxKernel.vala:925 +#: src/Common/LinuxKernel.vala:930 msgid "Packages Available" msgstr "Dostupni paketi" -#: src/Common/LinuxKernel.vala:933 +#: src/Common/LinuxKernel.vala:938 msgid "Packages Installed" msgstr "Instalirani paketi" -#: src/Common/LinuxKernel.vala:1013 +#: src/Common/LinuxKernel.vala:1018 msgid "Available Kernels" msgstr "Dostupni kerneli" -#: src/Common/LinuxKernel.vala:1020 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1025 src/Gtk/MainWindow.vala:186 msgid "Installed" msgstr "Instalirano" -#: src/Common/LinuxKernel.vala:1020 src/Gtk/MainWindow.vala:186 -#: src/Gtk/MainWindow.vala:628 src/Gtk/MainWindow.vala:642 +#: src/Common/LinuxKernel.vala:1025 src/Gtk/MainWindow.vala:186 +#: src/Gtk/MainWindow.vala:617 src/Gtk/MainWindow.vala:631 msgid "Running" msgstr "Pokrenuto" -#: src/Common/LinuxKernel.vala:1057 +#: src/Common/LinuxKernel.vala:1062 msgid "Downloading" msgstr "Preuzimanje" -#: src/Common/LinuxKernel.vala:1076 +#: src/Common/LinuxKernel.vala:1081 #: src/Utility/Gtk/CustomMessageDialog.vala:148 #: src/Utility/Gtk/CustomMessageDialog.vala:152 msgid "OK" msgstr "U redu" -#: src/Common/LinuxKernel.vala:1081 +#: src/Common/LinuxKernel.vala:1086 msgid "ERROR" msgstr "GREŠKA" -#: src/Common/LinuxKernel.vala:1095 src/Gtk/MainWindow.vala:650 +#: src/Common/LinuxKernel.vala:1100 src/Gtk/MainWindow.vala:639 msgid "This kernel is already installed." msgstr "Ovaj kernel je već instaliran." -#: src/Common/LinuxKernel.vala:1121 +#: src/Common/LinuxKernel.vala:1126 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "Instalacija je završena. Potrebno je ponovno pokretanje računala kako bi se " "koristio novi kernel." -#: src/Common/LinuxKernel.vala:1124 +#: src/Common/LinuxKernel.vala:1129 msgid "Installation completed with errors" msgstr "Instalacija je završena s greškama" -#: src/Common/LinuxKernel.vala:1139 +#: src/Common/LinuxKernel.vala:1144 msgid "" "Selected kernel is currently running and cannot be un-installed.\n" " Install another kernel before un-installing this one." @@ -120,19 +120,19 @@ msgstr "" "Odabrani kernel je trenutno pokernut i ne može se deinstalirati.\n" " Instalirajte drugi kernel prije uklanjanja trenutnog kernela." -#: src/Common/LinuxKernel.vala:1144 +#: src/Common/LinuxKernel.vala:1149 msgid "Preparing to uninstall selected kernels" msgstr "Pripremanje deinstalacije odabranih kernela" -#: src/Common/LinuxKernel.vala:1175 src/Common/LinuxKernel.vala:1222 +#: src/Common/LinuxKernel.vala:1180 src/Common/LinuxKernel.vala:1227 msgid "Un-install completed" msgstr "Deinstalacija završena" -#: src/Common/LinuxKernel.vala:1178 src/Common/LinuxKernel.vala:1225 +#: src/Common/LinuxKernel.vala:1183 src/Common/LinuxKernel.vala:1230 msgid "Un-install completed with errors" msgstr "Deinstalacija završena s greškama" -#: src/Common/LinuxKernel.vala:1191 +#: src/Common/LinuxKernel.vala:1196 msgid "" "This kernel is currently running and cannot be un-installed.\n" " Install another kernel before un-installing this one." @@ -315,7 +315,7 @@ msgid "Internet connection is not active" msgstr "Internet povezivanje nije aktivno" #: src/Gtk/MainWindow.vala:321 src/Gtk/MainWindow.vala:525 -#: src/Gtk/MainWindow.vala:655 +#: src/Gtk/MainWindow.vala:644 msgid "No Internet" msgstr "Nema pristupa internetu" @@ -344,7 +344,7 @@ msgid "Select the kernels to uninstall" msgstr "Odaberi kernel za deinstalaciju" #: src/Gtk/MainWindow.vala:383 src/Gtk/MainWindow.vala:417 -#: src/Gtk/MainWindow.vala:687 +#: src/Gtk/MainWindow.vala:676 msgid "Close window to exit..." msgstr "Zatvori prozor i izađi..." @@ -380,23 +380,23 @@ msgstr "Forkano" msgid "Original" msgstr "Izvornik" -#: src/Gtk/MainWindow.vala:525 src/Gtk/MainWindow.vala:655 +#: src/Gtk/MainWindow.vala:525 src/Gtk/MainWindow.vala:644 msgid "Internet connection is not active." msgstr "Internet povezivanje nije aktivno." -#: src/Gtk/MainWindow.vala:544 +#: src/Gtk/MainWindow.vala:538 msgid "Refreshing..." msgstr "Osvježavanje..." -#: src/Gtk/MainWindow.vala:638 +#: src/Gtk/MainWindow.vala:627 msgid "available" msgstr "dostupno" -#: src/Gtk/MainWindow.vala:650 +#: src/Gtk/MainWindow.vala:639 msgid "Already Installed" msgstr "Već instalirano" -#: src/Gtk/ProgressWindow.vala:144 src/Gtk/TerminalWindow.vala:149 +#: src/Gtk/ProgressWindow.vala:142 src/Gtk/TerminalWindow.vala:149 #: src/Utility/Gtk/CustomMessageDialog.vala:153 msgid "Cancel" msgstr "Odustani" @@ -509,7 +509,7 @@ msgstr "Da" msgid "No" msgstr "Ne" -#: src/Utility/Gtk/GtkHelper.vala:67 +#: src/Utility/Gtk/GtkHelper.vala:59 msgid "Missing Icon" msgstr "Ikone koje nedostaju" diff --git a/po/it.po b/po/it.po index 827fb708..57601330 100644 --- a/po/it.po +++ b/po/it.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline 1.0.15\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-11-11 23:03-0500\n" +"POT-Creation-Date: 2023-02-02 18:20-0500\n" "PO-Revision-Date: 2020-08-22 15:35+0100\n" "Last-Translator: Albano Battistella \n" "Language-Team: Italian\n" @@ -11,106 +11,106 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: src/Common/LinuxKernel.vala:88 +#: src/Common/LinuxKernel.vala:87 msgid "Distribution" msgstr "Distribuzione" -#: src/Common/LinuxKernel.vala:102 +#: src/Common/LinuxKernel.vala:101 msgid "Architecture" msgstr "Architettura" -#: src/Common/LinuxKernel.vala:294 +#: src/Common/LinuxKernel.vala:297 msgid "Fetching index..." msgstr "Recupero indice in corso..." -#: src/Common/LinuxKernel.vala:331 +#: src/Common/LinuxKernel.vala:336 msgid "Fetching index from kernel.ubuntu.com..." msgstr "Recupero dell'indice da kernel.ubuntu.com..." -#: src/Common/LinuxKernel.vala:587 +#: src/Common/LinuxKernel.vala:592 msgid "Could not find running kernel in list!" msgstr "Impossibile trovare il kernel in esecuzione nell'elenco!" -#: src/Common/LinuxKernel.vala:593 +#: src/Common/LinuxKernel.vala:598 msgid "Could not find any kernels to uninstall" msgstr "Impossibile trovare alcun kernel da rimuovere" -#: src/Common/LinuxKernel.vala:602 +#: src/Common/LinuxKernel.vala:607 msgid "The following kernels will be uninstalled:" msgstr "I seguenti kernel verranno rimossi:" -#: src/Common/LinuxKernel.vala:609 +#: src/Common/LinuxKernel.vala:614 msgid "Continue ?" msgstr "Continuare ?" -#: src/Common/LinuxKernel.vala:635 src/Console/AppConsole.vala:314 +#: src/Common/LinuxKernel.vala:640 src/Console/AppConsole.vala:314 msgid "Latest update" msgstr "Ultimo aggiornamento" -#: src/Common/LinuxKernel.vala:646 src/Console/AppConsole.vala:321 +#: src/Common/LinuxKernel.vala:651 src/Console/AppConsole.vala:321 msgid "Latest point update" msgstr "Ultimo aggiornamento del punto" -#: src/Common/LinuxKernel.vala:654 src/Console/AppConsole.vala:326 +#: src/Common/LinuxKernel.vala:659 src/Console/AppConsole.vala:326 #: src/Console/AppConsole.vala:387 msgid "No updates found" msgstr "Nessun aggiornamento trovato" -#: src/Common/LinuxKernel.vala:664 +#: src/Common/LinuxKernel.vala:669 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Installare la versione del kernel %s ? (y/n): " -#: src/Common/LinuxKernel.vala:925 +#: src/Common/LinuxKernel.vala:930 msgid "Packages Available" msgstr "Pacchetti disponibili" -#: src/Common/LinuxKernel.vala:933 +#: src/Common/LinuxKernel.vala:938 msgid "Packages Installed" msgstr "Pacchetti installati" -#: src/Common/LinuxKernel.vala:1013 +#: src/Common/LinuxKernel.vala:1018 msgid "Available Kernels" msgstr "Kernel disponibili" -#: src/Common/LinuxKernel.vala:1020 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1025 src/Gtk/MainWindow.vala:186 msgid "Installed" msgstr "Installato" -#: src/Common/LinuxKernel.vala:1020 src/Gtk/MainWindow.vala:186 -#: src/Gtk/MainWindow.vala:628 src/Gtk/MainWindow.vala:642 +#: src/Common/LinuxKernel.vala:1025 src/Gtk/MainWindow.vala:186 +#: src/Gtk/MainWindow.vala:617 src/Gtk/MainWindow.vala:631 msgid "Running" msgstr "In esecuzione" -#: src/Common/LinuxKernel.vala:1057 +#: src/Common/LinuxKernel.vala:1062 msgid "Downloading" msgstr "Download in corso" -#: src/Common/LinuxKernel.vala:1076 +#: src/Common/LinuxKernel.vala:1081 #: src/Utility/Gtk/CustomMessageDialog.vala:148 #: src/Utility/Gtk/CustomMessageDialog.vala:152 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:1081 +#: src/Common/LinuxKernel.vala:1086 msgid "ERROR" msgstr "ERRORE" -#: src/Common/LinuxKernel.vala:1095 src/Gtk/MainWindow.vala:650 +#: src/Common/LinuxKernel.vala:1100 src/Gtk/MainWindow.vala:639 msgid "This kernel is already installed." msgstr "Questo kernel è già installato" -#: src/Common/LinuxKernel.vala:1121 +#: src/Common/LinuxKernel.vala:1126 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "Installazione completata. È necessario riavviare per utilizzare ilnuovo " "kernel." -#: src/Common/LinuxKernel.vala:1124 +#: src/Common/LinuxKernel.vala:1129 msgid "Installation completed with errors" msgstr "Installazione completata con errori" -#: src/Common/LinuxKernel.vala:1139 +#: src/Common/LinuxKernel.vala:1144 msgid "" "Selected kernel is currently running and cannot be un-installed.\n" " Install another kernel before un-installing this one." @@ -118,19 +118,19 @@ msgstr "" "Il kernel selezionato è attualmente in esecuzione e non può essere rimosso.\n" "Installa un altro kernel prima di rimuovere questo." -#: src/Common/LinuxKernel.vala:1144 +#: src/Common/LinuxKernel.vala:1149 msgid "Preparing to uninstall selected kernels" msgstr "Preparazione per rimuovere i kernel selezionati" -#: src/Common/LinuxKernel.vala:1175 src/Common/LinuxKernel.vala:1222 +#: src/Common/LinuxKernel.vala:1180 src/Common/LinuxKernel.vala:1227 msgid "Un-install completed" msgstr "Disinstallazione completata" -#: src/Common/LinuxKernel.vala:1178 src/Common/LinuxKernel.vala:1225 +#: src/Common/LinuxKernel.vala:1183 src/Common/LinuxKernel.vala:1230 msgid "Un-install completed with errors" msgstr "Disinstallazione completata con errori" -#: src/Common/LinuxKernel.vala:1191 +#: src/Common/LinuxKernel.vala:1196 msgid "" "This kernel is currently running and cannot be un-installed.\n" " Install another kernel before un-installing this one." @@ -316,7 +316,7 @@ msgid "Internet connection is not active" msgstr "La connessione Internet non è attiva" #: src/Gtk/MainWindow.vala:321 src/Gtk/MainWindow.vala:525 -#: src/Gtk/MainWindow.vala:655 +#: src/Gtk/MainWindow.vala:644 msgid "No Internet" msgstr "Nessuna connessione internet" @@ -345,7 +345,7 @@ msgid "Select the kernels to uninstall" msgstr "Seleziona i kernel da disinstallare" #: src/Gtk/MainWindow.vala:383 src/Gtk/MainWindow.vala:417 -#: src/Gtk/MainWindow.vala:687 +#: src/Gtk/MainWindow.vala:676 msgid "Close window to exit..." msgstr "Chiudere la finestra per uscire..." @@ -381,23 +381,23 @@ msgstr "Forked" msgid "Original" msgstr "Originale" -#: src/Gtk/MainWindow.vala:525 src/Gtk/MainWindow.vala:655 +#: src/Gtk/MainWindow.vala:525 src/Gtk/MainWindow.vala:644 msgid "Internet connection is not active." msgstr "La connessione Internet non è attiva." -#: src/Gtk/MainWindow.vala:544 +#: src/Gtk/MainWindow.vala:538 msgid "Refreshing..." msgstr "Aggiornamento..." -#: src/Gtk/MainWindow.vala:638 +#: src/Gtk/MainWindow.vala:627 msgid "available" msgstr "disponibile" -#: src/Gtk/MainWindow.vala:650 +#: src/Gtk/MainWindow.vala:639 msgid "Already Installed" msgstr "Già Installato" -#: src/Gtk/ProgressWindow.vala:144 src/Gtk/TerminalWindow.vala:149 +#: src/Gtk/ProgressWindow.vala:142 src/Gtk/TerminalWindow.vala:149 #: src/Utility/Gtk/CustomMessageDialog.vala:153 msgid "Cancel" msgstr "Cancella" @@ -510,7 +510,7 @@ msgstr "Si" msgid "No" msgstr "No" -#: src/Utility/Gtk/GtkHelper.vala:67 +#: src/Utility/Gtk/GtkHelper.vala:59 msgid "Missing Icon" msgstr "Icona mancante" diff --git a/po/ko.po b/po/ko.po index 2128ee16..0af9406a 100644 --- a/po/ko.po +++ b/po/ko.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline 1.0.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-11-11 23:03-0500\n" +"POT-Creation-Date: 2023-02-02 18:20-0500\n" "PO-Revision-Date: 2022-09-28 11:48+0900\n" "Last-Translator: Kevin Kim \n" "Language-Team: Korean\n" @@ -13,104 +13,104 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Poedit 3.0.1\n" -#: src/Common/LinuxKernel.vala:88 +#: src/Common/LinuxKernel.vala:87 msgid "Distribution" msgstr "배포판" -#: src/Common/LinuxKernel.vala:102 +#: src/Common/LinuxKernel.vala:101 msgid "Architecture" msgstr "아키텍처" -#: src/Common/LinuxKernel.vala:294 +#: src/Common/LinuxKernel.vala:297 msgid "Fetching index..." msgstr "목록 가져오기..." -#: src/Common/LinuxKernel.vala:331 +#: src/Common/LinuxKernel.vala:336 msgid "Fetching index from kernel.ubuntu.com..." msgstr "최신 커널 목록을 가져오는 중입니다..." -#: src/Common/LinuxKernel.vala:587 +#: src/Common/LinuxKernel.vala:592 msgid "Could not find running kernel in list!" msgstr "목록에서 사용중인 커널을 찾을 수 없습니다!" -#: src/Common/LinuxKernel.vala:593 +#: src/Common/LinuxKernel.vala:598 msgid "Could not find any kernels to uninstall" msgstr "삭제할 커널을 찾을 수 없습니다" -#: src/Common/LinuxKernel.vala:602 +#: src/Common/LinuxKernel.vala:607 msgid "The following kernels will be uninstalled:" msgstr "아래 커널이 삭제됩니다:" -#: src/Common/LinuxKernel.vala:609 +#: src/Common/LinuxKernel.vala:614 msgid "Continue ?" msgstr "계속하시겠습니까?" -#: src/Common/LinuxKernel.vala:635 src/Console/AppConsole.vala:314 +#: src/Common/LinuxKernel.vala:640 src/Console/AppConsole.vala:314 msgid "Latest update" msgstr "최신 업데이트" -#: src/Common/LinuxKernel.vala:646 src/Console/AppConsole.vala:321 +#: src/Common/LinuxKernel.vala:651 src/Console/AppConsole.vala:321 msgid "Latest point update" msgstr "최신 포인트 업데이트" -#: src/Common/LinuxKernel.vala:654 src/Console/AppConsole.vala:326 +#: src/Common/LinuxKernel.vala:659 src/Console/AppConsole.vala:326 #: src/Console/AppConsole.vala:387 msgid "No updates found" msgstr "업데이트를 찾을 수 없습니다" -#: src/Common/LinuxKernel.vala:664 +#: src/Common/LinuxKernel.vala:669 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "커널 %s 버전을 설치하시겠습니까? (y/n): " -#: src/Common/LinuxKernel.vala:925 +#: src/Common/LinuxKernel.vala:930 msgid "Packages Available" msgstr "설치 가능한 패키지" -#: src/Common/LinuxKernel.vala:933 +#: src/Common/LinuxKernel.vala:938 msgid "Packages Installed" msgstr "설치된 패키지" -#: src/Common/LinuxKernel.vala:1013 +#: src/Common/LinuxKernel.vala:1018 msgid "Available Kernels" msgstr "설치 가능한 커널" -#: src/Common/LinuxKernel.vala:1020 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1025 src/Gtk/MainWindow.vala:186 msgid "Installed" msgstr "설치 됨" -#: src/Common/LinuxKernel.vala:1020 src/Gtk/MainWindow.vala:186 -#: src/Gtk/MainWindow.vala:628 src/Gtk/MainWindow.vala:642 +#: src/Common/LinuxKernel.vala:1025 src/Gtk/MainWindow.vala:186 +#: src/Gtk/MainWindow.vala:617 src/Gtk/MainWindow.vala:631 msgid "Running" msgstr "구동 중" -#: src/Common/LinuxKernel.vala:1057 +#: src/Common/LinuxKernel.vala:1062 msgid "Downloading" msgstr "다운로드 중" -#: src/Common/LinuxKernel.vala:1076 +#: src/Common/LinuxKernel.vala:1081 #: src/Utility/Gtk/CustomMessageDialog.vala:148 #: src/Utility/Gtk/CustomMessageDialog.vala:152 msgid "OK" msgstr "확인" -#: src/Common/LinuxKernel.vala:1081 +#: src/Common/LinuxKernel.vala:1086 msgid "ERROR" msgstr "오류" -#: src/Common/LinuxKernel.vala:1095 src/Gtk/MainWindow.vala:650 +#: src/Common/LinuxKernel.vala:1100 src/Gtk/MainWindow.vala:639 msgid "This kernel is already installed." msgstr "이 커널은 이미 설치되었습니다." -#: src/Common/LinuxKernel.vala:1121 +#: src/Common/LinuxKernel.vala:1126 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "설치가 완료되었습닌다. 새 커널을 사용하려면 시스템을 재시작 하세요." -#: src/Common/LinuxKernel.vala:1124 +#: src/Common/LinuxKernel.vala:1129 msgid "Installation completed with errors" msgstr "오류가 있으나 설치가 완료되었습니다" -#: src/Common/LinuxKernel.vala:1139 +#: src/Common/LinuxKernel.vala:1144 msgid "" "Selected kernel is currently running and cannot be un-installed.\n" " Install another kernel before un-installing this one." @@ -118,19 +118,19 @@ msgstr "" "선택된 커널은 현재 사용 중이므로 삭제할 수 없습니다.\n" " 이 커널을 삭제하려면 다른 커널을 먼저 설치하세요." -#: src/Common/LinuxKernel.vala:1144 +#: src/Common/LinuxKernel.vala:1149 msgid "Preparing to uninstall selected kernels" msgstr "선택한 커널을 삭제하기 위해 준비중입니다" -#: src/Common/LinuxKernel.vala:1175 src/Common/LinuxKernel.vala:1222 +#: src/Common/LinuxKernel.vala:1180 src/Common/LinuxKernel.vala:1227 msgid "Un-install completed" msgstr "삭제가 완료되었습니다" -#: src/Common/LinuxKernel.vala:1178 src/Common/LinuxKernel.vala:1225 +#: src/Common/LinuxKernel.vala:1183 src/Common/LinuxKernel.vala:1230 msgid "Un-install completed with errors" msgstr "오류가 있으나 삭제가 완료되었습니다" -#: src/Common/LinuxKernel.vala:1191 +#: src/Common/LinuxKernel.vala:1196 msgid "" "This kernel is currently running and cannot be un-installed.\n" " Install another kernel before un-installing this one." @@ -312,7 +312,7 @@ msgid "Internet connection is not active" msgstr "인터넷 연결을 확인하세요" #: src/Gtk/MainWindow.vala:321 src/Gtk/MainWindow.vala:525 -#: src/Gtk/MainWindow.vala:655 +#: src/Gtk/MainWindow.vala:644 msgid "No Internet" msgstr "인터넷이 연결되지 않았습니다" @@ -341,7 +341,7 @@ msgid "Select the kernels to uninstall" msgstr "삭제할 커널 선택" #: src/Gtk/MainWindow.vala:383 src/Gtk/MainWindow.vala:417 -#: src/Gtk/MainWindow.vala:687 +#: src/Gtk/MainWindow.vala:676 msgid "Close window to exit..." msgstr "창을 닫고 종료..." @@ -377,23 +377,23 @@ msgstr "" msgid "Original" msgstr "" -#: src/Gtk/MainWindow.vala:525 src/Gtk/MainWindow.vala:655 +#: src/Gtk/MainWindow.vala:525 src/Gtk/MainWindow.vala:644 msgid "Internet connection is not active." msgstr "인터넷 연결을 확인하세요." -#: src/Gtk/MainWindow.vala:544 +#: src/Gtk/MainWindow.vala:538 msgid "Refreshing..." msgstr "새로 고침..." -#: src/Gtk/MainWindow.vala:638 +#: src/Gtk/MainWindow.vala:627 msgid "available" msgstr "사용가능" -#: src/Gtk/MainWindow.vala:650 +#: src/Gtk/MainWindow.vala:639 msgid "Already Installed" msgstr "이미 설치되었습니다" -#: src/Gtk/ProgressWindow.vala:144 src/Gtk/TerminalWindow.vala:149 +#: src/Gtk/ProgressWindow.vala:142 src/Gtk/TerminalWindow.vala:149 #: src/Utility/Gtk/CustomMessageDialog.vala:153 msgid "Cancel" msgstr "취소" @@ -506,7 +506,7 @@ msgstr "예" msgid "No" msgstr "아니오" -#: src/Utility/Gtk/GtkHelper.vala:67 +#: src/Utility/Gtk/GtkHelper.vala:59 msgid "Missing Icon" msgstr "아이콘을 찾을 수 없습니다" diff --git a/po/messages.pot b/po/messages.pot index 3b1aaf19..3ce4283c 100644 --- a/po/messages.pot +++ b/po/messages.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline 1.0.18\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-11-11 23:03-0500\n" +"POT-Creation-Date: 2023-02-02 18:20-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,122 +17,122 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" -#: src/Common/LinuxKernel.vala:88 +#: src/Common/LinuxKernel.vala:87 msgid "Distribution" msgstr "" -#: src/Common/LinuxKernel.vala:102 +#: src/Common/LinuxKernel.vala:101 msgid "Architecture" msgstr "" -#: src/Common/LinuxKernel.vala:294 +#: src/Common/LinuxKernel.vala:297 msgid "Fetching index..." msgstr "" -#: src/Common/LinuxKernel.vala:331 +#: src/Common/LinuxKernel.vala:336 msgid "Fetching index from kernel.ubuntu.com..." msgstr "" -#: src/Common/LinuxKernel.vala:587 +#: src/Common/LinuxKernel.vala:592 msgid "Could not find running kernel in list!" msgstr "" -#: src/Common/LinuxKernel.vala:593 +#: src/Common/LinuxKernel.vala:598 msgid "Could not find any kernels to uninstall" msgstr "" -#: src/Common/LinuxKernel.vala:602 +#: src/Common/LinuxKernel.vala:607 msgid "The following kernels will be uninstalled:" msgstr "" -#: src/Common/LinuxKernel.vala:609 +#: src/Common/LinuxKernel.vala:614 msgid "Continue ?" msgstr "" -#: src/Common/LinuxKernel.vala:635 src/Console/AppConsole.vala:314 +#: src/Common/LinuxKernel.vala:640 src/Console/AppConsole.vala:314 msgid "Latest update" msgstr "" -#: src/Common/LinuxKernel.vala:646 src/Console/AppConsole.vala:321 +#: src/Common/LinuxKernel.vala:651 src/Console/AppConsole.vala:321 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:654 src/Console/AppConsole.vala:326 +#: src/Common/LinuxKernel.vala:659 src/Console/AppConsole.vala:326 #: src/Console/AppConsole.vala:387 msgid "No updates found" msgstr "" -#: src/Common/LinuxKernel.vala:664 +#: src/Common/LinuxKernel.vala:669 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "" -#: src/Common/LinuxKernel.vala:925 +#: src/Common/LinuxKernel.vala:930 msgid "Packages Available" msgstr "" -#: src/Common/LinuxKernel.vala:933 +#: src/Common/LinuxKernel.vala:938 msgid "Packages Installed" msgstr "" -#: src/Common/LinuxKernel.vala:1013 +#: src/Common/LinuxKernel.vala:1018 msgid "Available Kernels" msgstr "" -#: src/Common/LinuxKernel.vala:1020 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1025 src/Gtk/MainWindow.vala:186 msgid "Installed" msgstr "" -#: src/Common/LinuxKernel.vala:1020 src/Gtk/MainWindow.vala:186 -#: src/Gtk/MainWindow.vala:628 src/Gtk/MainWindow.vala:642 +#: src/Common/LinuxKernel.vala:1025 src/Gtk/MainWindow.vala:186 +#: src/Gtk/MainWindow.vala:617 src/Gtk/MainWindow.vala:631 msgid "Running" msgstr "" -#: src/Common/LinuxKernel.vala:1057 +#: src/Common/LinuxKernel.vala:1062 msgid "Downloading" msgstr "" -#: src/Common/LinuxKernel.vala:1076 +#: src/Common/LinuxKernel.vala:1081 #: src/Utility/Gtk/CustomMessageDialog.vala:148 #: src/Utility/Gtk/CustomMessageDialog.vala:152 msgid "OK" msgstr "" -#: src/Common/LinuxKernel.vala:1081 +#: src/Common/LinuxKernel.vala:1086 msgid "ERROR" msgstr "" -#: src/Common/LinuxKernel.vala:1095 src/Gtk/MainWindow.vala:650 +#: src/Common/LinuxKernel.vala:1100 src/Gtk/MainWindow.vala:639 msgid "This kernel is already installed." msgstr "" -#: src/Common/LinuxKernel.vala:1121 +#: src/Common/LinuxKernel.vala:1126 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" -#: src/Common/LinuxKernel.vala:1124 +#: src/Common/LinuxKernel.vala:1129 msgid "Installation completed with errors" msgstr "" -#: src/Common/LinuxKernel.vala:1139 +#: src/Common/LinuxKernel.vala:1144 msgid "" "Selected kernel is currently running and cannot be un-installed.\n" " Install another kernel before un-installing this one." msgstr "" -#: src/Common/LinuxKernel.vala:1144 +#: src/Common/LinuxKernel.vala:1149 msgid "Preparing to uninstall selected kernels" msgstr "" -#: src/Common/LinuxKernel.vala:1175 src/Common/LinuxKernel.vala:1222 +#: src/Common/LinuxKernel.vala:1180 src/Common/LinuxKernel.vala:1227 msgid "Un-install completed" msgstr "" -#: src/Common/LinuxKernel.vala:1178 src/Common/LinuxKernel.vala:1225 +#: src/Common/LinuxKernel.vala:1183 src/Common/LinuxKernel.vala:1230 msgid "Un-install completed with errors" msgstr "" -#: src/Common/LinuxKernel.vala:1191 +#: src/Common/LinuxKernel.vala:1196 msgid "" "This kernel is currently running and cannot be un-installed.\n" " Install another kernel before un-installing this one." @@ -312,7 +312,7 @@ msgid "Internet connection is not active" msgstr "" #: src/Gtk/MainWindow.vala:321 src/Gtk/MainWindow.vala:525 -#: src/Gtk/MainWindow.vala:655 +#: src/Gtk/MainWindow.vala:644 msgid "No Internet" msgstr "" @@ -341,7 +341,7 @@ msgid "Select the kernels to uninstall" msgstr "" #: src/Gtk/MainWindow.vala:383 src/Gtk/MainWindow.vala:417 -#: src/Gtk/MainWindow.vala:687 +#: src/Gtk/MainWindow.vala:676 msgid "Close window to exit..." msgstr "" @@ -377,23 +377,23 @@ msgstr "" msgid "Original" msgstr "" -#: src/Gtk/MainWindow.vala:525 src/Gtk/MainWindow.vala:655 +#: src/Gtk/MainWindow.vala:525 src/Gtk/MainWindow.vala:644 msgid "Internet connection is not active." msgstr "" -#: src/Gtk/MainWindow.vala:544 +#: src/Gtk/MainWindow.vala:538 msgid "Refreshing..." msgstr "" -#: src/Gtk/MainWindow.vala:638 +#: src/Gtk/MainWindow.vala:627 msgid "available" msgstr "" -#: src/Gtk/MainWindow.vala:650 +#: src/Gtk/MainWindow.vala:639 msgid "Already Installed" msgstr "" -#: src/Gtk/ProgressWindow.vala:144 src/Gtk/TerminalWindow.vala:149 +#: src/Gtk/ProgressWindow.vala:142 src/Gtk/TerminalWindow.vala:149 #: src/Utility/Gtk/CustomMessageDialog.vala:153 msgid "Cancel" msgstr "" @@ -506,7 +506,7 @@ msgstr "" msgid "No" msgstr "" -#: src/Utility/Gtk/GtkHelper.vala:67 +#: src/Utility/Gtk/GtkHelper.vala:59 msgid "Missing Icon" msgstr "" diff --git a/po/nl.po b/po/nl.po index 48691a0f..b872ee48 100644 --- a/po/nl.po +++ b/po/nl.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-11-11 23:03-0500\n" +"POT-Creation-Date: 2023-02-02 18:20-0500\n" "PO-Revision-Date: 2020-08-23 13:55+0200\n" "Last-Translator: Heimen Stoffels \n" "Language-Team: Dutch (Netherlands)\n" @@ -13,108 +13,108 @@ msgstr "" "X-Generator: Poedit 2.4.1\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: src/Common/LinuxKernel.vala:88 +#: src/Common/LinuxKernel.vala:87 msgid "Distribution" msgstr "Distributie" -#: src/Common/LinuxKernel.vala:102 +#: src/Common/LinuxKernel.vala:101 msgid "Architecture" msgstr "Architectuur" -#: src/Common/LinuxKernel.vala:294 +#: src/Common/LinuxKernel.vala:297 msgid "Fetching index..." msgstr "Bezig met ophalen van index..." -#: src/Common/LinuxKernel.vala:331 +#: src/Common/LinuxKernel.vala:336 msgid "Fetching index from kernel.ubuntu.com..." msgstr "Bezig met ophalen van index van kernel.ubuntu.com..." -#: src/Common/LinuxKernel.vala:587 +#: src/Common/LinuxKernel.vala:592 msgid "Could not find running kernel in list!" msgstr "De in gebruik zijnde kernel staat niet op de lijst!" -#: src/Common/LinuxKernel.vala:593 +#: src/Common/LinuxKernel.vala:598 #, fuzzy msgid "Could not find any kernels to uninstall" msgstr "Er zijn geen te verwijderen kernels" -#: src/Common/LinuxKernel.vala:602 +#: src/Common/LinuxKernel.vala:607 #, fuzzy msgid "The following kernels will be uninstalled:" msgstr "De volgende kernels worden verwijderd:" -#: src/Common/LinuxKernel.vala:609 +#: src/Common/LinuxKernel.vala:614 msgid "Continue ?" msgstr "Wil je doorgaan?" -#: src/Common/LinuxKernel.vala:635 src/Console/AppConsole.vala:314 +#: src/Common/LinuxKernel.vala:640 src/Console/AppConsole.vala:314 msgid "Latest update" msgstr "Recentste update" -#: src/Common/LinuxKernel.vala:646 src/Console/AppConsole.vala:321 +#: src/Common/LinuxKernel.vala:651 src/Console/AppConsole.vala:321 msgid "Latest point update" msgstr "Recentste puntupdate" -#: src/Common/LinuxKernel.vala:654 src/Console/AppConsole.vala:326 +#: src/Common/LinuxKernel.vala:659 src/Console/AppConsole.vala:326 #: src/Console/AppConsole.vala:387 msgid "No updates found" msgstr "Geen updates gevonden" -#: src/Common/LinuxKernel.vala:664 +#: src/Common/LinuxKernel.vala:669 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Wil je versie %s installeren? (j/n): " -#: src/Common/LinuxKernel.vala:925 +#: src/Common/LinuxKernel.vala:930 msgid "Packages Available" msgstr "Beschikbare pakketten" -#: src/Common/LinuxKernel.vala:933 +#: src/Common/LinuxKernel.vala:938 msgid "Packages Installed" msgstr "Geïnstalleerde pakketten" -#: src/Common/LinuxKernel.vala:1013 +#: src/Common/LinuxKernel.vala:1018 msgid "Available Kernels" msgstr "Beschikbare kernels" -#: src/Common/LinuxKernel.vala:1020 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1025 src/Gtk/MainWindow.vala:186 msgid "Installed" msgstr "Geïnstalleerd" -#: src/Common/LinuxKernel.vala:1020 src/Gtk/MainWindow.vala:186 -#: src/Gtk/MainWindow.vala:628 src/Gtk/MainWindow.vala:642 +#: src/Common/LinuxKernel.vala:1025 src/Gtk/MainWindow.vala:186 +#: src/Gtk/MainWindow.vala:617 src/Gtk/MainWindow.vala:631 msgid "Running" msgstr "In gebruik" -#: src/Common/LinuxKernel.vala:1057 +#: src/Common/LinuxKernel.vala:1062 msgid "Downloading" msgstr "Bezig met downloaden" -#: src/Common/LinuxKernel.vala:1076 +#: src/Common/LinuxKernel.vala:1081 #: src/Utility/Gtk/CustomMessageDialog.vala:148 #: src/Utility/Gtk/CustomMessageDialog.vala:152 msgid "OK" msgstr "Oké" -#: src/Common/LinuxKernel.vala:1081 +#: src/Common/LinuxKernel.vala:1086 msgid "ERROR" msgstr "FOUT" -#: src/Common/LinuxKernel.vala:1095 src/Gtk/MainWindow.vala:650 +#: src/Common/LinuxKernel.vala:1100 src/Gtk/MainWindow.vala:639 msgid "This kernel is already installed." msgstr "Deze kernel is al geïnstalleerd." -#: src/Common/LinuxKernel.vala:1121 +#: src/Common/LinuxKernel.vala:1126 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "De installatie is voltooid. Herstart de computer om de nieuwe kernel te " "gebruiken." -#: src/Common/LinuxKernel.vala:1124 +#: src/Common/LinuxKernel.vala:1129 msgid "Installation completed with errors" msgstr "De installatie is foutloos voltooid" -#: src/Common/LinuxKernel.vala:1139 +#: src/Common/LinuxKernel.vala:1144 #, fuzzy msgid "" "Selected kernel is currently running and cannot be un-installed.\n" @@ -124,20 +124,20 @@ msgstr "" "verwijderd.\n" " Installeer eerst een andere kernel." -#: src/Common/LinuxKernel.vala:1144 +#: src/Common/LinuxKernel.vala:1149 #, fuzzy msgid "Preparing to uninstall selected kernels" msgstr "Bezig met voorbereiden van verwijdering" -#: src/Common/LinuxKernel.vala:1175 src/Common/LinuxKernel.vala:1222 +#: src/Common/LinuxKernel.vala:1180 src/Common/LinuxKernel.vala:1227 msgid "Un-install completed" msgstr "Deïnstalleren voltooid" -#: src/Common/LinuxKernel.vala:1178 src/Common/LinuxKernel.vala:1225 +#: src/Common/LinuxKernel.vala:1183 src/Common/LinuxKernel.vala:1230 msgid "Un-install completed with errors" msgstr "Deïnstalleren voltooid, maar met fouten" -#: src/Common/LinuxKernel.vala:1191 +#: src/Common/LinuxKernel.vala:1196 #, fuzzy msgid "" "This kernel is currently running and cannot be un-installed.\n" @@ -326,7 +326,7 @@ msgid "Internet connection is not active" msgstr "Je bent niet verbonden met het internet" #: src/Gtk/MainWindow.vala:321 src/Gtk/MainWindow.vala:525 -#: src/Gtk/MainWindow.vala:655 +#: src/Gtk/MainWindow.vala:644 msgid "No Internet" msgstr "Geen internetverbinding" @@ -357,7 +357,7 @@ msgid "Select the kernels to uninstall" msgstr "Selecteer de te installeren kernel" #: src/Gtk/MainWindow.vala:383 src/Gtk/MainWindow.vala:417 -#: src/Gtk/MainWindow.vala:687 +#: src/Gtk/MainWindow.vala:676 msgid "Close window to exit..." msgstr "Sluit het venster..." @@ -395,23 +395,23 @@ msgstr "Geforkt" msgid "Original" msgstr "Origineel" -#: src/Gtk/MainWindow.vala:525 src/Gtk/MainWindow.vala:655 +#: src/Gtk/MainWindow.vala:525 src/Gtk/MainWindow.vala:644 msgid "Internet connection is not active." msgstr "Je bent niet verbonden met het internet." -#: src/Gtk/MainWindow.vala:544 +#: src/Gtk/MainWindow.vala:538 msgid "Refreshing..." msgstr "Bezig met verversen..." -#: src/Gtk/MainWindow.vala:638 +#: src/Gtk/MainWindow.vala:627 msgid "available" msgstr "beschikbaar" -#: src/Gtk/MainWindow.vala:650 +#: src/Gtk/MainWindow.vala:639 msgid "Already Installed" msgstr "Reeds geïnstalleerd" -#: src/Gtk/ProgressWindow.vala:144 src/Gtk/TerminalWindow.vala:149 +#: src/Gtk/ProgressWindow.vala:142 src/Gtk/TerminalWindow.vala:149 #: src/Utility/Gtk/CustomMessageDialog.vala:153 msgid "Cancel" msgstr "Annuleren" @@ -524,7 +524,7 @@ msgstr "Ja" msgid "No" msgstr "Nee" -#: src/Utility/Gtk/GtkHelper.vala:67 +#: src/Utility/Gtk/GtkHelper.vala:59 msgid "Missing Icon" msgstr "Ontbrekend pictogram" diff --git a/po/pl.po b/po/pl.po index 9cbdbbac..9eb9fca5 100644 --- a/po/pl.po +++ b/po/pl.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-11-11 23:03-0500\n" +"POT-Creation-Date: 2023-02-02 18:20-0500\n" "PO-Revision-Date: 2021-09-17 10:29+0200\n" "Last-Translator: Viktor Sokyrko \n" "Language-Team: Polish\n" @@ -12,107 +12,107 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Poedit 2.4.2\n" -#: src/Common/LinuxKernel.vala:88 +#: src/Common/LinuxKernel.vala:87 msgid "Distribution" msgstr "Dystrybucja" -#: src/Common/LinuxKernel.vala:102 +#: src/Common/LinuxKernel.vala:101 #, fuzzy msgid "Architecture" msgstr "Architektura systemu" -#: src/Common/LinuxKernel.vala:294 +#: src/Common/LinuxKernel.vala:297 msgid "Fetching index..." msgstr "Pobieranie indeksu..." -#: src/Common/LinuxKernel.vala:331 +#: src/Common/LinuxKernel.vala:336 msgid "Fetching index from kernel.ubuntu.com..." msgstr "Pobieranie indeksu z kernel.ubuntu.com..." -#: src/Common/LinuxKernel.vala:587 +#: src/Common/LinuxKernel.vala:592 msgid "Could not find running kernel in list!" msgstr "Nie można znaleźć uruchomionego jądra na liście!" -#: src/Common/LinuxKernel.vala:593 +#: src/Common/LinuxKernel.vala:598 msgid "Could not find any kernels to uninstall" msgstr "Nie udało się odnaleźć żadnych jąder do odinstalowania" -#: src/Common/LinuxKernel.vala:602 +#: src/Common/LinuxKernel.vala:607 msgid "The following kernels will be uninstalled:" msgstr "Następujące jądra zostaną odinstalowane:" -#: src/Common/LinuxKernel.vala:609 +#: src/Common/LinuxKernel.vala:614 msgid "Continue ?" msgstr "Kontynuowac?" -#: src/Common/LinuxKernel.vala:635 src/Console/AppConsole.vala:314 +#: src/Common/LinuxKernel.vala:640 src/Console/AppConsole.vala:314 msgid "Latest update" msgstr "Najnowsza aktualizacja" -#: src/Common/LinuxKernel.vala:646 src/Console/AppConsole.vala:321 +#: src/Common/LinuxKernel.vala:651 src/Console/AppConsole.vala:321 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:654 src/Console/AppConsole.vala:326 +#: src/Common/LinuxKernel.vala:659 src/Console/AppConsole.vala:326 #: src/Console/AppConsole.vala:387 msgid "No updates found" msgstr "Nie znaleziono aktualizacji" -#: src/Common/LinuxKernel.vala:664 +#: src/Common/LinuxKernel.vala:669 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Instaluj wersję jądra %s ? (t/n): " -#: src/Common/LinuxKernel.vala:925 +#: src/Common/LinuxKernel.vala:930 msgid "Packages Available" msgstr "Dostępne pakiety" -#: src/Common/LinuxKernel.vala:933 +#: src/Common/LinuxKernel.vala:938 msgid "Packages Installed" msgstr "Pakiety zainstalowane" -#: src/Common/LinuxKernel.vala:1013 +#: src/Common/LinuxKernel.vala:1018 msgid "Available Kernels" msgstr "Dostępne jądra" -#: src/Common/LinuxKernel.vala:1020 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1025 src/Gtk/MainWindow.vala:186 msgid "Installed" msgstr "Zainstalowany" -#: src/Common/LinuxKernel.vala:1020 src/Gtk/MainWindow.vala:186 -#: src/Gtk/MainWindow.vala:628 src/Gtk/MainWindow.vala:642 +#: src/Common/LinuxKernel.vala:1025 src/Gtk/MainWindow.vala:186 +#: src/Gtk/MainWindow.vala:617 src/Gtk/MainWindow.vala:631 msgid "Running" msgstr "Uruchomiony" -#: src/Common/LinuxKernel.vala:1057 +#: src/Common/LinuxKernel.vala:1062 msgid "Downloading" msgstr "Pobieranie" -#: src/Common/LinuxKernel.vala:1076 +#: src/Common/LinuxKernel.vala:1081 #: src/Utility/Gtk/CustomMessageDialog.vala:148 #: src/Utility/Gtk/CustomMessageDialog.vala:152 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:1081 +#: src/Common/LinuxKernel.vala:1086 msgid "ERROR" msgstr "BŁĄD" -#: src/Common/LinuxKernel.vala:1095 src/Gtk/MainWindow.vala:650 +#: src/Common/LinuxKernel.vala:1100 src/Gtk/MainWindow.vala:639 msgid "This kernel is already installed." msgstr "To jądro jest już zainstalowane." -#: src/Common/LinuxKernel.vala:1121 +#: src/Common/LinuxKernel.vala:1126 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "Instalacja zakończona. Aby korzystać z nowego jądra, konieczne jest ponowne " "uruchomienie." -#: src/Common/LinuxKernel.vala:1124 +#: src/Common/LinuxKernel.vala:1129 msgid "Installation completed with errors" msgstr "Instalacja zakończona z błędami" -#: src/Common/LinuxKernel.vala:1139 +#: src/Common/LinuxKernel.vala:1144 msgid "" "Selected kernel is currently running and cannot be un-installed.\n" " Install another kernel before un-installing this one." @@ -120,19 +120,19 @@ msgstr "" "Wybrane jądro aktualnie działa i nie może zostać odinstalowane.\n" " Zainstaluj inne jądro przed odinstalowaniem tego." -#: src/Common/LinuxKernel.vala:1144 +#: src/Common/LinuxKernel.vala:1149 msgid "Preparing to uninstall selected kernels" msgstr "Przygotowanie do odinstalowania wybranych jąder" -#: src/Common/LinuxKernel.vala:1175 src/Common/LinuxKernel.vala:1222 +#: src/Common/LinuxKernel.vala:1180 src/Common/LinuxKernel.vala:1227 msgid "Un-install completed" msgstr "Deinstalacja zakończona" -#: src/Common/LinuxKernel.vala:1178 src/Common/LinuxKernel.vala:1225 +#: src/Common/LinuxKernel.vala:1183 src/Common/LinuxKernel.vala:1230 msgid "Un-install completed with errors" msgstr "De-instalacja zakończona z błędami" -#: src/Common/LinuxKernel.vala:1191 +#: src/Common/LinuxKernel.vala:1196 msgid "" "This kernel is currently running and cannot be un-installed.\n" " Install another kernel before un-installing this one." @@ -322,7 +322,7 @@ msgid "Internet connection is not active" msgstr "Brak połączenia z internetem" #: src/Gtk/MainWindow.vala:321 src/Gtk/MainWindow.vala:525 -#: src/Gtk/MainWindow.vala:655 +#: src/Gtk/MainWindow.vala:644 msgid "No Internet" msgstr "Brak internetu" @@ -351,7 +351,7 @@ msgid "Select the kernels to uninstall" msgstr "Wybierz jądra do deinstalacji" #: src/Gtk/MainWindow.vala:383 src/Gtk/MainWindow.vala:417 -#: src/Gtk/MainWindow.vala:687 +#: src/Gtk/MainWindow.vala:676 msgid "Close window to exit..." msgstr "Zamknij okno żeby wyjść..." @@ -387,26 +387,26 @@ msgstr "" msgid "Original" msgstr "" -#: src/Gtk/MainWindow.vala:525 src/Gtk/MainWindow.vala:655 +#: src/Gtk/MainWindow.vala:525 src/Gtk/MainWindow.vala:644 #, fuzzy msgid "Internet connection is not active." msgstr "Brak połączenia z internetem" -#: src/Gtk/MainWindow.vala:544 +#: src/Gtk/MainWindow.vala:538 msgid "Refreshing..." msgstr "Odświeżam..." # Should be a single word at the end of the line. # For example: "5.13.16 available" -#: src/Gtk/MainWindow.vala:638 +#: src/Gtk/MainWindow.vala:627 msgid "available" msgstr "dostępne" -#: src/Gtk/MainWindow.vala:650 +#: src/Gtk/MainWindow.vala:639 msgid "Already Installed" msgstr "Już zainstalowane" -#: src/Gtk/ProgressWindow.vala:144 src/Gtk/TerminalWindow.vala:149 +#: src/Gtk/ProgressWindow.vala:142 src/Gtk/TerminalWindow.vala:149 #: src/Utility/Gtk/CustomMessageDialog.vala:153 msgid "Cancel" msgstr "Anuluj" @@ -521,7 +521,7 @@ msgstr "Tak" msgid "No" msgstr "Nie" -#: src/Utility/Gtk/GtkHelper.vala:67 +#: src/Utility/Gtk/GtkHelper.vala:59 msgid "Missing Icon" msgstr "Brakująca ikona" diff --git a/po/ru.po b/po/ru.po index da355a29..90dde333 100644 --- a/po/ru.po +++ b/po/ru.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-11-11 23:03-0500\n" +"POT-Creation-Date: 2023-02-02 18:20-0500\n" "PO-Revision-Date: 2022-02-24 16:05+0300\n" "Last-Translator: Danik2343 \n" "Language-Team: Russian\n" @@ -13,106 +13,106 @@ msgstr "" "X-Launchpad-Export-Date: 2016-12-13 11:48+0000\n" "X-Generator: Poedit 2.3\n" -#: src/Common/LinuxKernel.vala:88 +#: src/Common/LinuxKernel.vala:87 msgid "Distribution" msgstr "Дистрибутив" -#: src/Common/LinuxKernel.vala:102 +#: src/Common/LinuxKernel.vala:101 msgid "Architecture" msgstr "Архитектура" -#: src/Common/LinuxKernel.vala:294 +#: src/Common/LinuxKernel.vala:297 msgid "Fetching index..." msgstr "Получение сведений..." -#: src/Common/LinuxKernel.vala:331 +#: src/Common/LinuxKernel.vala:336 msgid "Fetching index from kernel.ubuntu.com..." msgstr "Получение сведений с kernel.ubuntu.com..." -#: src/Common/LinuxKernel.vala:587 +#: src/Common/LinuxKernel.vala:592 msgid "Could not find running kernel in list!" msgstr "Не удалось найти запущенное ядро в списке!" -#: src/Common/LinuxKernel.vala:593 +#: src/Common/LinuxKernel.vala:598 msgid "Could not find any kernels to uninstall" msgstr "Не удалось найти ядра для деинсталляции" -#: src/Common/LinuxKernel.vala:602 +#: src/Common/LinuxKernel.vala:607 msgid "The following kernels will be uninstalled:" msgstr "Следующие ядра будут деинсталлированы:" -#: src/Common/LinuxKernel.vala:609 +#: src/Common/LinuxKernel.vala:614 msgid "Continue ?" msgstr "Продолжить ?" -#: src/Common/LinuxKernel.vala:635 src/Console/AppConsole.vala:314 +#: src/Common/LinuxKernel.vala:640 src/Console/AppConsole.vala:314 msgid "Latest update" msgstr "Последнее обновление" -#: src/Common/LinuxKernel.vala:646 src/Console/AppConsole.vala:321 +#: src/Common/LinuxKernel.vala:651 src/Console/AppConsole.vala:321 msgid "Latest point update" msgstr "Последнее обновление пунктов" -#: src/Common/LinuxKernel.vala:654 src/Console/AppConsole.vala:326 +#: src/Common/LinuxKernel.vala:659 src/Console/AppConsole.vala:326 #: src/Console/AppConsole.vala:387 msgid "No updates found" msgstr "Обновлений не найдено" -#: src/Common/LinuxKernel.vala:664 +#: src/Common/LinuxKernel.vala:669 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Установить версию ядра %s ? (y/n): " -#: src/Common/LinuxKernel.vala:925 +#: src/Common/LinuxKernel.vala:930 msgid "Packages Available" msgstr "Доступные пакеты" -#: src/Common/LinuxKernel.vala:933 +#: src/Common/LinuxKernel.vala:938 msgid "Packages Installed" msgstr "Установленные пакеты" -#: src/Common/LinuxKernel.vala:1013 +#: src/Common/LinuxKernel.vala:1018 msgid "Available Kernels" msgstr "Доступные ядра" -#: src/Common/LinuxKernel.vala:1020 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1025 src/Gtk/MainWindow.vala:186 msgid "Installed" msgstr "Установлено" -#: src/Common/LinuxKernel.vala:1020 src/Gtk/MainWindow.vala:186 -#: src/Gtk/MainWindow.vala:628 src/Gtk/MainWindow.vala:642 +#: src/Common/LinuxKernel.vala:1025 src/Gtk/MainWindow.vala:186 +#: src/Gtk/MainWindow.vala:617 src/Gtk/MainWindow.vala:631 msgid "Running" msgstr "Используется" -#: src/Common/LinuxKernel.vala:1057 +#: src/Common/LinuxKernel.vala:1062 msgid "Downloading" msgstr "Загрузка" -#: src/Common/LinuxKernel.vala:1076 +#: src/Common/LinuxKernel.vala:1081 #: src/Utility/Gtk/CustomMessageDialog.vala:148 #: src/Utility/Gtk/CustomMessageDialog.vala:152 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:1081 +#: src/Common/LinuxKernel.vala:1086 msgid "ERROR" msgstr "ОШИБКА" -#: src/Common/LinuxKernel.vala:1095 src/Gtk/MainWindow.vala:650 +#: src/Common/LinuxKernel.vala:1100 src/Gtk/MainWindow.vala:639 msgid "This kernel is already installed." msgstr "Это ядро уже установлено." -#: src/Common/LinuxKernel.vala:1121 +#: src/Common/LinuxKernel.vala:1126 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "Установка завершена. Обязательно выполните перезагрузку, чтобы использовать " "новое ядро." -#: src/Common/LinuxKernel.vala:1124 +#: src/Common/LinuxKernel.vala:1129 msgid "Installation completed with errors" msgstr "Установка завершена с ошибками" -#: src/Common/LinuxKernel.vala:1139 +#: src/Common/LinuxKernel.vala:1144 msgid "" "Selected kernel is currently running and cannot be un-installed.\n" " Install another kernel before un-installing this one." @@ -120,19 +120,19 @@ msgstr "" "Это ядро в настоящий момент работает и не может быть удалено.\n" " Установите другое ядро, прежде чем удалять его." -#: src/Common/LinuxKernel.vala:1144 +#: src/Common/LinuxKernel.vala:1149 msgid "Preparing to uninstall selected kernels" msgstr "Подготовка к деинсталляции выбранных ядер" -#: src/Common/LinuxKernel.vala:1175 src/Common/LinuxKernel.vala:1222 +#: src/Common/LinuxKernel.vala:1180 src/Common/LinuxKernel.vala:1227 msgid "Un-install completed" msgstr "Удаление завершено" -#: src/Common/LinuxKernel.vala:1178 src/Common/LinuxKernel.vala:1225 +#: src/Common/LinuxKernel.vala:1183 src/Common/LinuxKernel.vala:1230 msgid "Un-install completed with errors" msgstr "Удаление завершено с ошибками" -#: src/Common/LinuxKernel.vala:1191 +#: src/Common/LinuxKernel.vala:1196 msgid "" "This kernel is currently running and cannot be un-installed.\n" " Install another kernel before un-installing this one." @@ -316,7 +316,7 @@ msgid "Internet connection is not active" msgstr "Интернет соединение не активно" #: src/Gtk/MainWindow.vala:321 src/Gtk/MainWindow.vala:525 -#: src/Gtk/MainWindow.vala:655 +#: src/Gtk/MainWindow.vala:644 msgid "No Internet" msgstr "Нет интернет соединения" @@ -345,7 +345,7 @@ msgid "Select the kernels to uninstall" msgstr "Выберите ядра для деинсталляции" #: src/Gtk/MainWindow.vala:383 src/Gtk/MainWindow.vala:417 -#: src/Gtk/MainWindow.vala:687 +#: src/Gtk/MainWindow.vala:676 msgid "Close window to exit..." msgstr "Закройте окно, чтобы выйти..." @@ -381,23 +381,23 @@ msgstr "Форк" msgid "Original" msgstr "Оригинал" -#: src/Gtk/MainWindow.vala:525 src/Gtk/MainWindow.vala:655 +#: src/Gtk/MainWindow.vala:525 src/Gtk/MainWindow.vala:644 msgid "Internet connection is not active." msgstr "Интернет соединение не активно." -#: src/Gtk/MainWindow.vala:544 +#: src/Gtk/MainWindow.vala:538 msgid "Refreshing..." msgstr "Обновление..." -#: src/Gtk/MainWindow.vala:638 +#: src/Gtk/MainWindow.vala:627 msgid "available" msgstr "доступно" -#: src/Gtk/MainWindow.vala:650 +#: src/Gtk/MainWindow.vala:639 msgid "Already Installed" msgstr "Уже установлено" -#: src/Gtk/ProgressWindow.vala:144 src/Gtk/TerminalWindow.vala:149 +#: src/Gtk/ProgressWindow.vala:142 src/Gtk/TerminalWindow.vala:149 #: src/Utility/Gtk/CustomMessageDialog.vala:153 msgid "Cancel" msgstr "Отмена" @@ -510,7 +510,7 @@ msgstr "Да" msgid "No" msgstr "Нет" -#: src/Utility/Gtk/GtkHelper.vala:67 +#: src/Utility/Gtk/GtkHelper.vala:59 msgid "Missing Icon" msgstr "Значок отсутствует" diff --git a/po/sv.po b/po/sv.po index 540c4ab2..8ffab671 100644 --- a/po/sv.po +++ b/po/sv.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-11-11 23:03-0500\n" +"POT-Creation-Date: 2023-02-02 18:20-0500\n" "PO-Revision-Date: 2018-01-13 16:56+0100\n" "Last-Translator: Åke Engelbrektson \n" "Language-Team:Swedish\n" @@ -13,109 +13,109 @@ msgstr "" "X-Generator: Poedit 1.8.7.1\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: src/Common/LinuxKernel.vala:88 +#: src/Common/LinuxKernel.vala:87 msgid "Distribution" msgstr "Distribution" -#: src/Common/LinuxKernel.vala:102 +#: src/Common/LinuxKernel.vala:101 #, fuzzy msgid "Architecture" msgstr "Systemarkitektur" -#: src/Common/LinuxKernel.vala:294 +#: src/Common/LinuxKernel.vala:297 #, fuzzy msgid "Fetching index..." msgstr "Hämtar index för" -#: src/Common/LinuxKernel.vala:331 +#: src/Common/LinuxKernel.vala:336 msgid "Fetching index from kernel.ubuntu.com..." msgstr "Hämtar index från kernel.ubuntu.com ..." -#: src/Common/LinuxKernel.vala:587 +#: src/Common/LinuxKernel.vala:592 #, fuzzy msgid "Could not find running kernel in list!" msgstr "Kunde inte hitta efterfrågad version" -#: src/Common/LinuxKernel.vala:593 +#: src/Common/LinuxKernel.vala:598 #, fuzzy msgid "Could not find any kernels to uninstall" msgstr "Välj kärnor för borttagning" -#: src/Common/LinuxKernel.vala:602 +#: src/Common/LinuxKernel.vala:607 #, fuzzy msgid "The following kernels will be uninstalled:" msgstr "Denna kärna är redan installerad" -#: src/Common/LinuxKernel.vala:609 +#: src/Common/LinuxKernel.vala:614 msgid "Continue ?" msgstr "" -#: src/Common/LinuxKernel.vala:635 src/Console/AppConsole.vala:314 +#: src/Common/LinuxKernel.vala:640 src/Console/AppConsole.vala:314 msgid "Latest update" msgstr "" -#: src/Common/LinuxKernel.vala:646 src/Console/AppConsole.vala:321 +#: src/Common/LinuxKernel.vala:651 src/Console/AppConsole.vala:321 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:654 src/Console/AppConsole.vala:326 +#: src/Common/LinuxKernel.vala:659 src/Console/AppConsole.vala:326 #: src/Console/AppConsole.vala:387 msgid "No updates found" msgstr "Inga uppdateringar hittades" -#: src/Common/LinuxKernel.vala:664 +#: src/Common/LinuxKernel.vala:669 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "" -#: src/Common/LinuxKernel.vala:925 +#: src/Common/LinuxKernel.vala:930 msgid "Packages Available" msgstr "Tillgängliga paket" -#: src/Common/LinuxKernel.vala:933 +#: src/Common/LinuxKernel.vala:938 msgid "Packages Installed" msgstr "Installerade paket" -#: src/Common/LinuxKernel.vala:1013 +#: src/Common/LinuxKernel.vala:1018 msgid "Available Kernels" msgstr "Tillgängliga kärnor" -#: src/Common/LinuxKernel.vala:1020 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1025 src/Gtk/MainWindow.vala:186 msgid "Installed" msgstr "Installerad" -#: src/Common/LinuxKernel.vala:1020 src/Gtk/MainWindow.vala:186 -#: src/Gtk/MainWindow.vala:628 src/Gtk/MainWindow.vala:642 +#: src/Common/LinuxKernel.vala:1025 src/Gtk/MainWindow.vala:186 +#: src/Gtk/MainWindow.vala:617 src/Gtk/MainWindow.vala:631 msgid "Running" msgstr "Körs" -#: src/Common/LinuxKernel.vala:1057 +#: src/Common/LinuxKernel.vala:1062 msgid "Downloading" msgstr "Laddar ner" -#: src/Common/LinuxKernel.vala:1076 +#: src/Common/LinuxKernel.vala:1081 #: src/Utility/Gtk/CustomMessageDialog.vala:148 #: src/Utility/Gtk/CustomMessageDialog.vala:152 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:1081 +#: src/Common/LinuxKernel.vala:1086 msgid "ERROR" msgstr "FEL" -#: src/Common/LinuxKernel.vala:1095 src/Gtk/MainWindow.vala:650 +#: src/Common/LinuxKernel.vala:1100 src/Gtk/MainWindow.vala:639 msgid "This kernel is already installed." msgstr "Denna kärna är redan installerad" -#: src/Common/LinuxKernel.vala:1121 +#: src/Common/LinuxKernel.vala:1126 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "Installation slutförd. Omstart krävs för att tillämpa den nya kärnan." -#: src/Common/LinuxKernel.vala:1124 +#: src/Common/LinuxKernel.vala:1129 msgid "Installation completed with errors" msgstr "Installation slutförd med fel" -#: src/Common/LinuxKernel.vala:1139 +#: src/Common/LinuxKernel.vala:1144 #, fuzzy msgid "" "Selected kernel is currently running and cannot be un-installed.\n" @@ -124,20 +124,20 @@ msgstr "" "Denna kärna används för tillfället och kan inte tas bort.\n" "Installera en annan kärna innan du tar bort den här." -#: src/Common/LinuxKernel.vala:1144 +#: src/Common/LinuxKernel.vala:1149 #, fuzzy msgid "Preparing to uninstall selected kernels" msgstr "Förbereder borttagning av markerade kärnor" -#: src/Common/LinuxKernel.vala:1175 src/Common/LinuxKernel.vala:1222 +#: src/Common/LinuxKernel.vala:1180 src/Common/LinuxKernel.vala:1227 msgid "Un-install completed" msgstr "Avinstallation slutförd" -#: src/Common/LinuxKernel.vala:1178 src/Common/LinuxKernel.vala:1225 +#: src/Common/LinuxKernel.vala:1183 src/Common/LinuxKernel.vala:1230 msgid "Un-install completed with errors" msgstr "Avinstallation slutförd med fel" -#: src/Common/LinuxKernel.vala:1191 +#: src/Common/LinuxKernel.vala:1196 #, fuzzy msgid "" "This kernel is currently running and cannot be un-installed.\n" @@ -331,7 +331,7 @@ msgid "Internet connection is not active" msgstr "Internetuppkopplingen är inte aktiv" #: src/Gtk/MainWindow.vala:321 src/Gtk/MainWindow.vala:525 -#: src/Gtk/MainWindow.vala:655 +#: src/Gtk/MainWindow.vala:644 msgid "No Internet" msgstr "Inget internet" @@ -362,7 +362,7 @@ msgid "Select the kernels to uninstall" msgstr "Välj kärna för installation" #: src/Gtk/MainWindow.vala:383 src/Gtk/MainWindow.vala:417 -#: src/Gtk/MainWindow.vala:687 +#: src/Gtk/MainWindow.vala:676 msgid "Close window to exit..." msgstr "" @@ -400,26 +400,26 @@ msgstr "" msgid "Original" msgstr "" -#: src/Gtk/MainWindow.vala:525 src/Gtk/MainWindow.vala:655 +#: src/Gtk/MainWindow.vala:525 src/Gtk/MainWindow.vala:644 #, fuzzy msgid "Internet connection is not active." msgstr "Internetuppkopplingen är inte aktiv" -#: src/Gtk/MainWindow.vala:544 +#: src/Gtk/MainWindow.vala:538 msgid "Refreshing..." msgstr "Uppdaterar ..." -#: src/Gtk/MainWindow.vala:638 +#: src/Gtk/MainWindow.vala:627 #, fuzzy msgid "available" msgstr "Tillgängliga paket" -#: src/Gtk/MainWindow.vala:650 +#: src/Gtk/MainWindow.vala:639 #, fuzzy msgid "Already Installed" msgstr "Installerad" -#: src/Gtk/ProgressWindow.vala:144 src/Gtk/TerminalWindow.vala:149 +#: src/Gtk/ProgressWindow.vala:142 src/Gtk/TerminalWindow.vala:149 #: src/Utility/Gtk/CustomMessageDialog.vala:153 msgid "Cancel" msgstr "Avbryt" @@ -535,7 +535,7 @@ msgstr "Ja" msgid "No" msgstr "Nej" -#: src/Utility/Gtk/GtkHelper.vala:67 +#: src/Utility/Gtk/GtkHelper.vala:59 msgid "Missing Icon" msgstr "Saknad ikon" diff --git a/po/tr.po b/po/tr.po index 30f69d58..4a96b02f 100644 --- a/po/tr.po +++ b/po/tr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-11-11 23:03-0500\n" +"POT-Creation-Date: 2023-02-02 18:20-0500\n" "PO-Revision-Date: 2022-08-06 16:48+0300\n" "Last-Translator: Sabri Ünal \n" "Language-Team: Turkish\n" @@ -13,106 +13,106 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Poedit 3.1.1\n" -#: src/Common/LinuxKernel.vala:88 +#: src/Common/LinuxKernel.vala:87 msgid "Distribution" msgstr "Dağıtım" -#: src/Common/LinuxKernel.vala:102 +#: src/Common/LinuxKernel.vala:101 msgid "Architecture" msgstr "Sistem mimarisi" -#: src/Common/LinuxKernel.vala:294 +#: src/Common/LinuxKernel.vala:297 msgid "Fetching index..." msgstr "İçerik dizini alınıyor..." -#: src/Common/LinuxKernel.vala:331 +#: src/Common/LinuxKernel.vala:336 msgid "Fetching index from kernel.ubuntu.com..." msgstr "İçerik dizini kernel.ubuntu.com alanından alınıyor..." -#: src/Common/LinuxKernel.vala:587 +#: src/Common/LinuxKernel.vala:592 msgid "Could not find running kernel in list!" msgstr "Çalışan sürüm listede bulunamadı!" -#: src/Common/LinuxKernel.vala:593 +#: src/Common/LinuxKernel.vala:598 msgid "Could not find any kernels to uninstall" msgstr "Kaldırılacak çekirdek bulunamadı" -#: src/Common/LinuxKernel.vala:602 +#: src/Common/LinuxKernel.vala:607 msgid "The following kernels will be uninstalled:" msgstr "Aşağıdaki çekirdekler kaldırılacak:" -#: src/Common/LinuxKernel.vala:609 +#: src/Common/LinuxKernel.vala:614 msgid "Continue ?" msgstr "Devam edilsin mi?" -#: src/Common/LinuxKernel.vala:635 src/Console/AppConsole.vala:314 +#: src/Common/LinuxKernel.vala:640 src/Console/AppConsole.vala:314 msgid "Latest update" msgstr "Son güncelleme" # Point burada point release anlamında kullanılıyor. Örneğin 5.10.x sayısının en sonundaki x rakamı point release/nokta sürüm oluyor. -#: src/Common/LinuxKernel.vala:646 src/Console/AppConsole.vala:321 +#: src/Common/LinuxKernel.vala:651 src/Console/AppConsole.vala:321 msgid "Latest point update" msgstr "Son nokta güncellemesi" -#: src/Common/LinuxKernel.vala:654 src/Console/AppConsole.vala:326 +#: src/Common/LinuxKernel.vala:659 src/Console/AppConsole.vala:326 #: src/Console/AppConsole.vala:387 msgid "No updates found" msgstr "Güncelleme bulunamadı" -#: src/Common/LinuxKernel.vala:664 +#: src/Common/LinuxKernel.vala:669 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Linux Çekirdek Sürümü %s Kurulsun mu? (e/h): " -#: src/Common/LinuxKernel.vala:925 +#: src/Common/LinuxKernel.vala:930 msgid "Packages Available" msgstr "Mevcut Paketler" -#: src/Common/LinuxKernel.vala:933 +#: src/Common/LinuxKernel.vala:938 msgid "Packages Installed" msgstr "Kurulu Paketler" -#: src/Common/LinuxKernel.vala:1013 +#: src/Common/LinuxKernel.vala:1018 msgid "Available Kernels" msgstr "Mevcut Çekirdekler" -#: src/Common/LinuxKernel.vala:1020 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1025 src/Gtk/MainWindow.vala:186 msgid "Installed" msgstr "Kurulu" -#: src/Common/LinuxKernel.vala:1020 src/Gtk/MainWindow.vala:186 -#: src/Gtk/MainWindow.vala:628 src/Gtk/MainWindow.vala:642 +#: src/Common/LinuxKernel.vala:1025 src/Gtk/MainWindow.vala:186 +#: src/Gtk/MainWindow.vala:617 src/Gtk/MainWindow.vala:631 msgid "Running" msgstr "Çalışıyor" -#: src/Common/LinuxKernel.vala:1057 +#: src/Common/LinuxKernel.vala:1062 msgid "Downloading" msgstr "İndiriliyor" -#: src/Common/LinuxKernel.vala:1076 +#: src/Common/LinuxKernel.vala:1081 #: src/Utility/Gtk/CustomMessageDialog.vala:148 #: src/Utility/Gtk/CustomMessageDialog.vala:152 msgid "OK" msgstr "Tamam" -#: src/Common/LinuxKernel.vala:1081 +#: src/Common/LinuxKernel.vala:1086 msgid "ERROR" msgstr "HATA" -#: src/Common/LinuxKernel.vala:1095 src/Gtk/MainWindow.vala:650 +#: src/Common/LinuxKernel.vala:1100 src/Gtk/MainWindow.vala:639 msgid "This kernel is already installed." msgstr "Bu çekirdek zaten kurulu." -#: src/Common/LinuxKernel.vala:1121 +#: src/Common/LinuxKernel.vala:1126 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "Kurulum tamamlandı. Yeni çekirdeği kullanmak için yeniden başlatma gerekiyor." -#: src/Common/LinuxKernel.vala:1124 +#: src/Common/LinuxKernel.vala:1129 msgid "Installation completed with errors" msgstr "Kurulum hatalarla tamamlandı" -#: src/Common/LinuxKernel.vala:1139 +#: src/Common/LinuxKernel.vala:1144 msgid "" "Selected kernel is currently running and cannot be un-installed.\n" " Install another kernel before un-installing this one." @@ -120,19 +120,19 @@ msgstr "" "Seçilen çekirdek şu anda çalışıyor ve kaldırılamaz.\n" " Bunu kaldırmadan önce başka bir çekirdek yükleyin." -#: src/Common/LinuxKernel.vala:1144 +#: src/Common/LinuxKernel.vala:1149 msgid "Preparing to uninstall selected kernels" msgstr "Seçilen çekirdekleri kaldırmaya hazırlanıyor" -#: src/Common/LinuxKernel.vala:1175 src/Common/LinuxKernel.vala:1222 +#: src/Common/LinuxKernel.vala:1180 src/Common/LinuxKernel.vala:1227 msgid "Un-install completed" msgstr "Kaldırma tamamlandı" -#: src/Common/LinuxKernel.vala:1178 src/Common/LinuxKernel.vala:1225 +#: src/Common/LinuxKernel.vala:1183 src/Common/LinuxKernel.vala:1230 msgid "Un-install completed with errors" msgstr "Kaldırma hatalarla tamamlandı" -#: src/Common/LinuxKernel.vala:1191 +#: src/Common/LinuxKernel.vala:1196 msgid "" "This kernel is currently running and cannot be un-installed.\n" " Install another kernel before un-installing this one." @@ -316,7 +316,7 @@ msgid "Internet connection is not active" msgstr "İnternet bağlantısı aktif değil" #: src/Gtk/MainWindow.vala:321 src/Gtk/MainWindow.vala:525 -#: src/Gtk/MainWindow.vala:655 +#: src/Gtk/MainWindow.vala:644 msgid "No Internet" msgstr "İnternet Yok" @@ -345,7 +345,7 @@ msgid "Select the kernels to uninstall" msgstr "Kaldırmak için çekirdek seçin" #: src/Gtk/MainWindow.vala:383 src/Gtk/MainWindow.vala:417 -#: src/Gtk/MainWindow.vala:687 +#: src/Gtk/MainWindow.vala:676 msgid "Close window to exit..." msgstr "Çıkış için pencereyi kapat..." @@ -381,23 +381,23 @@ msgstr "Çatallandı" msgid "Original" msgstr "Özgün" -#: src/Gtk/MainWindow.vala:525 src/Gtk/MainWindow.vala:655 +#: src/Gtk/MainWindow.vala:525 src/Gtk/MainWindow.vala:644 msgid "Internet connection is not active." msgstr "İnternet bağlantısı aktif değil." -#: src/Gtk/MainWindow.vala:544 +#: src/Gtk/MainWindow.vala:538 msgid "Refreshing..." msgstr "Yenileniyor..." -#: src/Gtk/MainWindow.vala:638 +#: src/Gtk/MainWindow.vala:627 msgid "available" msgstr "mevcut" -#: src/Gtk/MainWindow.vala:650 +#: src/Gtk/MainWindow.vala:639 msgid "Already Installed" msgstr "Zaten Kurulu" -#: src/Gtk/ProgressWindow.vala:144 src/Gtk/TerminalWindow.vala:149 +#: src/Gtk/ProgressWindow.vala:142 src/Gtk/TerminalWindow.vala:149 #: src/Utility/Gtk/CustomMessageDialog.vala:153 msgid "Cancel" msgstr "İptal Et" @@ -510,7 +510,7 @@ msgstr "Evet" msgid "No" msgstr "Hayır" -#: src/Utility/Gtk/GtkHelper.vala:67 +#: src/Utility/Gtk/GtkHelper.vala:59 msgid "Missing Icon" msgstr "Eksik Simge" diff --git a/po/uk.po b/po/uk.po index 22ce37eb..2832936f 100644 --- a/po/uk.po +++ b/po/uk.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-11-11 23:03-0500\n" +"POT-Creation-Date: 2023-02-02 18:20-0500\n" "PO-Revision-Date: 2019-07-25 11:00+0300\n" "Last-Translator: Serhii Golovko \n" "Language-Team: Ukranian\n" @@ -13,105 +13,105 @@ msgstr "" "X-Launchpad-Export-Date: 2016-12-13 11:48+0000\n" "X-Generator: Poedit 2.2.1\n" -#: src/Common/LinuxKernel.vala:88 +#: src/Common/LinuxKernel.vala:87 msgid "Distribution" msgstr "Дистрибутив" -#: src/Common/LinuxKernel.vala:102 +#: src/Common/LinuxKernel.vala:101 msgid "Architecture" msgstr "Системна архитектура" -#: src/Common/LinuxKernel.vala:294 +#: src/Common/LinuxKernel.vala:297 msgid "Fetching index..." msgstr "Отримання індекса ..." -#: src/Common/LinuxKernel.vala:331 +#: src/Common/LinuxKernel.vala:336 msgid "Fetching index from kernel.ubuntu.com..." msgstr "Отримання індекса з kernel.ubuntu.com..." -#: src/Common/LinuxKernel.vala:587 +#: src/Common/LinuxKernel.vala:592 msgid "Could not find running kernel in list!" msgstr "Не вдалося знайти запущене ядро у списку!" -#: src/Common/LinuxKernel.vala:593 +#: src/Common/LinuxKernel.vala:598 msgid "Could not find any kernels to uninstall" msgstr "Не вдалося знайти жодне ядро для вилучення" -#: src/Common/LinuxKernel.vala:602 +#: src/Common/LinuxKernel.vala:607 msgid "The following kernels will be uninstalled:" msgstr "Наступні ядра будуть видалені:" -#: src/Common/LinuxKernel.vala:609 +#: src/Common/LinuxKernel.vala:614 msgid "Continue ?" msgstr "Продовжувати ?" -#: src/Common/LinuxKernel.vala:635 src/Console/AppConsole.vala:314 +#: src/Common/LinuxKernel.vala:640 src/Console/AppConsole.vala:314 msgid "Latest update" msgstr "Останнє оновлення" -#: src/Common/LinuxKernel.vala:646 src/Console/AppConsole.vala:321 +#: src/Common/LinuxKernel.vala:651 src/Console/AppConsole.vala:321 msgid "Latest point update" msgstr "Остання точка оновлення" -#: src/Common/LinuxKernel.vala:654 src/Console/AppConsole.vala:326 +#: src/Common/LinuxKernel.vala:659 src/Console/AppConsole.vala:326 #: src/Console/AppConsole.vala:387 msgid "No updates found" msgstr "Оновлень не знайдено" -#: src/Common/LinuxKernel.vala:664 +#: src/Common/LinuxKernel.vala:669 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Встановити Ядро Версії %s ? (так/ні): " -#: src/Common/LinuxKernel.vala:925 +#: src/Common/LinuxKernel.vala:930 msgid "Packages Available" msgstr "Доступні пакети" -#: src/Common/LinuxKernel.vala:933 +#: src/Common/LinuxKernel.vala:938 msgid "Packages Installed" msgstr "Встановлені пакети" -#: src/Common/LinuxKernel.vala:1013 +#: src/Common/LinuxKernel.vala:1018 msgid "Available Kernels" msgstr "Доступні ядра" -#: src/Common/LinuxKernel.vala:1020 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1025 src/Gtk/MainWindow.vala:186 msgid "Installed" msgstr "Встановлено" -#: src/Common/LinuxKernel.vala:1020 src/Gtk/MainWindow.vala:186 -#: src/Gtk/MainWindow.vala:628 src/Gtk/MainWindow.vala:642 +#: src/Common/LinuxKernel.vala:1025 src/Gtk/MainWindow.vala:186 +#: src/Gtk/MainWindow.vala:617 src/Gtk/MainWindow.vala:631 msgid "Running" msgstr "Використовується" -#: src/Common/LinuxKernel.vala:1057 +#: src/Common/LinuxKernel.vala:1062 msgid "Downloading" msgstr "Завантаження" -#: src/Common/LinuxKernel.vala:1076 +#: src/Common/LinuxKernel.vala:1081 #: src/Utility/Gtk/CustomMessageDialog.vala:148 #: src/Utility/Gtk/CustomMessageDialog.vala:152 msgid "OK" msgstr "Добре" -#: src/Common/LinuxKernel.vala:1081 +#: src/Common/LinuxKernel.vala:1086 msgid "ERROR" msgstr "ПОМИЛКА" -#: src/Common/LinuxKernel.vala:1095 src/Gtk/MainWindow.vala:650 +#: src/Common/LinuxKernel.vala:1100 src/Gtk/MainWindow.vala:639 msgid "This kernel is already installed." msgstr "Це ядро вже встановлено." -#: src/Common/LinuxKernel.vala:1121 +#: src/Common/LinuxKernel.vala:1126 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "Установка завершена. Для використання нового ядра потрібна перезавантаження." -#: src/Common/LinuxKernel.vala:1124 +#: src/Common/LinuxKernel.vala:1129 msgid "Installation completed with errors" msgstr "Установка завершена з помилками" -#: src/Common/LinuxKernel.vala:1139 +#: src/Common/LinuxKernel.vala:1144 msgid "" "Selected kernel is currently running and cannot be un-installed.\n" " Install another kernel before un-installing this one." @@ -119,19 +119,19 @@ msgstr "" "Це ядро зараз працює і не може бути видалено. \n" "Встановіть інше ядро, перш ніж видаляти його." -#: src/Common/LinuxKernel.vala:1144 +#: src/Common/LinuxKernel.vala:1149 msgid "Preparing to uninstall selected kernels" msgstr "Підготовка до видалення вибраних ядер" -#: src/Common/LinuxKernel.vala:1175 src/Common/LinuxKernel.vala:1222 +#: src/Common/LinuxKernel.vala:1180 src/Common/LinuxKernel.vala:1227 msgid "Un-install completed" msgstr "Видалення завершено" -#: src/Common/LinuxKernel.vala:1178 src/Common/LinuxKernel.vala:1225 +#: src/Common/LinuxKernel.vala:1183 src/Common/LinuxKernel.vala:1230 msgid "Un-install completed with errors" msgstr "Видалення завершено з помилками" -#: src/Common/LinuxKernel.vala:1191 +#: src/Common/LinuxKernel.vala:1196 msgid "" "This kernel is currently running and cannot be un-installed.\n" " Install another kernel before un-installing this one." @@ -313,7 +313,7 @@ msgid "Internet connection is not active" msgstr "Інтернет з'єднання не активне" #: src/Gtk/MainWindow.vala:321 src/Gtk/MainWindow.vala:525 -#: src/Gtk/MainWindow.vala:655 +#: src/Gtk/MainWindow.vala:644 msgid "No Internet" msgstr "Інтернет з'єднання відсутнє" @@ -342,7 +342,7 @@ msgid "Select the kernels to uninstall" msgstr "Виберіть ядро для встановлення" #: src/Gtk/MainWindow.vala:383 src/Gtk/MainWindow.vala:417 -#: src/Gtk/MainWindow.vala:687 +#: src/Gtk/MainWindow.vala:676 msgid "Close window to exit..." msgstr "Закрийте вікно, щоб вийти..." @@ -378,23 +378,23 @@ msgstr "Двоєний" msgid "Original" msgstr "Оригінал" -#: src/Gtk/MainWindow.vala:525 src/Gtk/MainWindow.vala:655 +#: src/Gtk/MainWindow.vala:525 src/Gtk/MainWindow.vala:644 msgid "Internet connection is not active." msgstr "Інтернет з'єднання не активно." -#: src/Gtk/MainWindow.vala:544 +#: src/Gtk/MainWindow.vala:538 msgid "Refreshing..." msgstr "Оновлення..." -#: src/Gtk/MainWindow.vala:638 +#: src/Gtk/MainWindow.vala:627 msgid "available" msgstr "доступний" -#: src/Gtk/MainWindow.vala:650 +#: src/Gtk/MainWindow.vala:639 msgid "Already Installed" msgstr "Вже встановлено" -#: src/Gtk/ProgressWindow.vala:144 src/Gtk/TerminalWindow.vala:149 +#: src/Gtk/ProgressWindow.vala:142 src/Gtk/TerminalWindow.vala:149 #: src/Utility/Gtk/CustomMessageDialog.vala:153 msgid "Cancel" msgstr "Відміна" @@ -507,7 +507,7 @@ msgstr "Так" msgid "No" msgstr "Ні" -#: src/Utility/Gtk/GtkHelper.vala:67 +#: src/Utility/Gtk/GtkHelper.vala:59 msgid "Missing Icon" msgstr "Нема значка" From 8de5ac3b3f219cf69c11363edb7db913089bb32b Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Tue, 14 Feb 2023 03:48:56 -0500 Subject: [PATCH 205/567] version & credits --- AUTHORS | 1 + BRANDING.mak | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/AUTHORS b/AUTHORS index b37c4b19..278ff1bd 100644 --- a/AUTHORS +++ b/AUTHORS @@ -3,6 +3,7 @@ Tony George "ukuu" original author shg8@github net connection check cloyce@github rc kernels option sylt@github better lowest displayed version scheme +LucasChollet@github better thread & child process handling Inclusions: notify-send.sh https://github.com/bkw777/notify-send.sh diff --git a/BRANDING.mak b/BRANDING.mak index ff2e0c60..6a3acce3 100644 --- a/BRANDING.mak +++ b/BRANDING.mak @@ -3,7 +3,7 @@ VERSION_MAJOR = 1 VERSION_MINOR = 0 -VERSION_MICRO = 18 +VERSION_MICRO = 19 BRANDING_SHORTNAME = mainline BRANDING_LONGNAME = Ubuntu Mainline Kernel Installer BRANDING_AUTHORNAME = Brian K. White From 8bccb878b764315d832ddae4c5b36731877ffd2f Mon Sep 17 00:00:00 2001 From: Lucas CHOLLET Date: Wed, 15 Feb 2023 12:47:43 -0500 Subject: [PATCH 206/567] Introduce `FileDownloader` a new utility to download file This utility aims to be part of a replacement system for `DownloadManager`. In fact, the latter suffer from multiple flaws as its unnecessary complexity, dependence over an external tool and its design forcing the user to busy-wait. `FileDownloader` is only based on `gio`, so does not require an external tool. It also is simple as it doesn't have to manage outputs of its fork, supports progress reports and cancellation. And finally, is easily embeddable in another class to create a download pool. This patch also adds a simple usage of this utility: download the main `index.html` file. --- src/Common/FileDownloader.vala | 93 ++++++++++++++++++++++++++++++++++ src/Common/LinuxKernel.vala | 21 ++++---- 2 files changed, 103 insertions(+), 11 deletions(-) create mode 100644 src/Common/FileDownloader.vala diff --git a/src/Common/FileDownloader.vala b/src/Common/FileDownloader.vala new file mode 100644 index 00000000..53c03349 --- /dev/null +++ b/src/Common/FileDownloader.vala @@ -0,0 +1,93 @@ +using Gee; +using TeeJee.Logging; + +public class FileDownloader : GLib.Object { + private File source; + private File destination; + + private bool synchronously; + private bool started = false; + private bool done = false; + + private Cancellable? cancellable; + private FileProgressCallback? progress_callback; + + // Note: These delegates are only called in asynchronous mode + public delegate void OnFailure(Error e); + public OnFailure? on_failure; + + public delegate void OnFinished(); + public OnFinished? on_finished; + + private FileDownloader(string uri, string destination, + Cancellable? cancellable = null, + owned FileProgressCallback? callback = null) throws Error { + var corrected_uri = uri; + if (uri.has_suffix("/")) + corrected_uri = uri.substring(0, uri.length - 1); + + this.source = File.new_for_uri(corrected_uri); + this.destination = File.new_for_path(destination); + + this.cancellable = cancellable; + this.progress_callback = callback; + + if (cancellable != null) + cancellable.connect (() => done = true); + } + + private FileDownloader._synchronous(string uri, string destination, + Cancellable? cancellable = null, + owned FileProgressCallback? callback = null) throws Error { + this(uri, destination, cancellable, callback); + synchronously = true; + start(); + } + + // Note: This static function is only an helper to avoid a `new` on the caller side + public static void synchronous(string uri, string destination, + Cancellable? cancellable = null, + owned FileProgressCallback? callback = null) throws Error { + new FileDownloader._synchronous(uri, destination, cancellable, callback); + } + + public FileDownloader.asynchronous(string uri, string destination, + Cancellable? cancellable = null, + owned FileProgressCallback? callback = null) throws Error { + this(uri, destination, cancellable, callback); + synchronously = false; + } + + public void start() throws Error { + if (started) { + log_error("Download already started."); + return; + } + started = true; + + if (synchronously) { + source.copy(destination, FileCopyFlags.OVERWRITE, cancellable, progress_callback); + } else { + source.copy_async.begin(destination, FileCopyFlags.OVERWRITE, Priority.DEFAULT, cancellable, progress_callback, + (obj, res) => { + try { + source.copy_async.end(res); + } catch (Error e) { + if (on_failure != null) + on_failure(e); + } + done = true; + if (on_finished != null) + on_finished(); + }); + } + } + + public void wait_until_finished() { + if (!started) + log_error("Waiting for a download that never started"); + + while (!done) + MainContext.@default().iteration(false); + } +} diff --git a/src/Common/LinuxKernel.vala b/src/Common/LinuxKernel.vala index 5fc9e2db..56faab7a 100644 --- a/src/Common/LinuxKernel.vala +++ b/src/Common/LinuxKernel.vala @@ -193,7 +193,13 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { try { cancelled = false; - var worker = new Thread.try(null, () => query_thread(notifier)); + var worker = new Thread.try(null, () => { + try { + query_thread(notifier); + } catch (Error e) { + log_error (e.message); + } + }); if (wait) worker.join(); @@ -202,7 +208,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { } } - private static void query_thread(owned Notifier? notifier) { + private static void query_thread(owned Notifier? notifier) throws Error { App.progress_total = 1; App.progress_count = 0; @@ -321,23 +327,16 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { } // download the main index.html listing all mainline kernels - private static bool download_index(){ + private static bool download_index() throws Error { check_if_initialized(); dir_create(file_parent(index_page)); - file_delete(index_page); - var item = new DownloadItem(URI_KERNEL_UBUNTU_MAINLINE, CACHE_DIR, "index.html"); - var mgr = new DownloadTask(); - mgr.add_to_queue(item); - mgr.status_in_kb = true; - mgr.execute(); - var msg = _("Fetching index from kernel.ubuntu.com..."); log_msg(msg); status_line = msg.strip(); - while (mgr.is_running()) sleep(500); + FileDownloader.synchronous(URI_KERNEL_UBUNTU_MAINLINE, CACHE_DIR + "/index.html"); if (file_exists(index_page)){ log_msg("OK"); From cce5a70c0c517e37c81812df6989a30754483620 Mon Sep 17 00:00:00 2001 From: Lucas CHOLLET Date: Wed, 15 Feb 2023 12:49:04 -0500 Subject: [PATCH 207/567] Download changelogs lazily `CHANGES` files used to be downloaded when filling the cache on the first start. However, these files are not actually required by the application's standard workflow. This patch, using the newly introduced `FileDownloader`, allows to postpone the download of the changelog until its usage. As a consequence of reducing the amount of files to download, a cold start now takes 50% less times on my computer. Dropping from 36 to only 18 seconds. There is still room for improvement, but it remains a good start :^). --- src/Common/LinuxKernel.vala | 6 +----- src/Gtk/MainWindow.vala | 18 +++++++++++++++--- 2 files changed, 16 insertions(+), 8 deletions(-) diff --git a/src/Common/LinuxKernel.vala b/src/Common/LinuxKernel.vala index 56faab7a..350da230 100644 --- a/src/Common/LinuxKernel.vala +++ b/src/Common/LinuxKernel.vala @@ -248,7 +248,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { if (k.version_maj < highest_maj-App.show_prev_majors) continue; if (App.hide_unstable && k.is_unstable) continue; } - if (k.is_valid && !k.cached_page_exists) progress_total += 2; + if (k.is_valid && !k.cached_page_exists) progress_total += 1; if (notifier != null) notifier(timer, ref count); } @@ -278,10 +278,6 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { var item = new DownloadItem(k.cached_page_uri, file_parent(k.cached_page), file_basename(k.cached_page)); downloads.add(item); - // add CHANGES to download list - item = new DownloadItem(k.changes_file_uri, file_parent(k.changes_file), file_basename(k.changes_file)); - downloads.add(item); - // add kernel to kernel list kernels_to_update.add(k); if (notifier != null) notifier(timer, ref count); diff --git a/src/Gtk/MainWindow.vala b/src/Gtk/MainWindow.vala index 7b922bab..4e838a9d 100644 --- a/src/Gtk/MainWindow.vala +++ b/src/Gtk/MainWindow.vala @@ -301,7 +301,7 @@ public class MainWindow : Gtk.Window{ btn_install.sensitive = (selected_kernels.size == 1) && !selected_kernels[0].is_installed; btn_uninstall.sensitive = selected_kernels[0].is_installed && !selected_kernels[0].is_running; btn_uninstall_old.sensitive = true; - btn_changes.sensitive = (selected_kernels.size == 1) && file_exists(selected_kernels[0].changes_file); + btn_changes.sensitive = (selected_kernels.size == 1); } } @@ -426,9 +426,21 @@ public class MainWindow : Gtk.Window{ btn_changes = button; button.clicked.connect(() => { - if ((selected_kernels.size == 1) && file_exists(selected_kernels[0].changes_file)){ - xdg_open(selected_kernels[0].changes_file); + if (selected_kernels.size != 1) + return; + + if (! file_exists(selected_kernels[0].changes_file)) { + try { + FileDownloader.synchronous(selected_kernels[0].changes_file_uri, + selected_kernels[0].changes_file); + } catch (Error e) { + Gtk.MessageDialog msg = new Gtk.MessageDialog (this, Gtk.DialogFlags.MODAL, Gtk.MessageType.ERROR, Gtk.ButtonsType.OK, _("Error while downloading the changelog:\n") + e.message); + msg.response.connect ((response_id) => msg.destroy()); + msg.show (); + } } + + xdg_open(selected_kernels[0].changes_file); }); // settings From 0f63ce508d55ceb72629617a3e5ece73f297fb06 Mon Sep 17 00:00:00 2001 From: Lucas CHOLLET Date: Wed, 15 Feb 2023 12:49:47 -0500 Subject: [PATCH 208/567] Change return type of `LinuxKernel.download_index()` to void Let's be consistent on error propagation and only use `GLib.Error`. Anyway, the returned bool wasn't checked. --- src/Common/LinuxKernel.vala | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/src/Common/LinuxKernel.vala b/src/Common/LinuxKernel.vala index 350da230..3aebef0a 100644 --- a/src/Common/LinuxKernel.vala +++ b/src/Common/LinuxKernel.vala @@ -323,7 +323,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { } // download the main index.html listing all mainline kernels - private static bool download_index() throws Error { + private static void download_index() throws Error { check_if_initialized(); dir_create(file_parent(index_page)); @@ -333,15 +333,6 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { status_line = msg.strip(); FileDownloader.synchronous(URI_KERNEL_UBUNTU_MAINLINE, CACHE_DIR + "/index.html"); - - if (file_exists(index_page)){ - log_msg("OK"); - return true; - } - else{ - log_error("ERR"); - return false; - } } // read the main index.html listing all kernels From 0b7f10c2c962f0d36e1df64c487ac9977783c3b3 Mon Sep 17 00:00:00 2001 From: Lucas CHOLLET Date: Wed, 15 Feb 2023 23:27:33 -0500 Subject: [PATCH 209/567] Remove `ProgressWindow.close_window` As far as I can tell, this code was useless, so no need to bloat the file with it :^) --- src/Gtk/ProgressWindow.vala | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/src/Gtk/ProgressWindow.vala b/src/Gtk/ProgressWindow.vala index 7a3da136..13ebe0a2 100644 --- a/src/Gtk/ProgressWindow.vala +++ b/src/Gtk/ProgressWindow.vala @@ -47,7 +47,6 @@ public class ProgressWindow : Gtk.Window { private string status_message; private bool allow_cancel = false; - private bool allow_close = false; // init @@ -72,22 +71,9 @@ public class ProgressWindow : Gtk.Window { App.cancelled = false; - this.delete_event.connect(close_window); - init_window(); } - private bool close_window(){ - if (allow_close){ - // allow window to close - return false; - } - else{ - // do not allow window to close - return true; - } - } - public void init_window () { title = ""; From c536968510a22814325f6dadf93c71ce74f0b9e4 Mon Sep 17 00:00:00 2001 From: Lucas CHOLLET Date: Wed, 15 Feb 2023 23:45:31 -0500 Subject: [PATCH 210/567] Use `Cancellable` instead of polling a global variable Of course, also delete the concerned variable: `App.cancelled`. --- src/Common/Main.vala | 1 - src/Gtk/MainWindow.vala | 11 ++++++----- src/Gtk/ProgressWindow.vala | 16 ++++++---------- 3 files changed, 12 insertions(+), 16 deletions(-) diff --git a/src/Common/Main.vala b/src/Common/Main.vala index bfa9fedb..bd148d44 100644 --- a/src/Common/Main.vala +++ b/src/Common/Main.vala @@ -66,7 +66,6 @@ public class Main : GLib.Object{ public string status_line = ""; public int64 progress_total = 0; public int64 progress_count = 0; - public bool cancelled = false; // state flags ---------- diff --git a/src/Gtk/MainWindow.vala b/src/Gtk/MainWindow.vala index 4e838a9d..1c4d1250 100644 --- a/src/Gtk/MainWindow.vala +++ b/src/Gtk/MainWindow.vala @@ -546,9 +546,14 @@ public class MainWindow : Gtk.Window{ return; } + + var cancellable = new Cancellable(); + cancellable.cancelled.connect (() => { + App.exit_app(1); + }); string message = _("Refreshing..."); - var progress_window = new ProgressWindow.with_parent(this, message, true); + var progress_window = new ProgressWindow.with_parent(this, message, cancellable); progress_window.show_all(); // TODO: Check if kernel.ubuntu.com is down @@ -569,10 +574,6 @@ public class MainWindow : Gtk.Window{ timer_elapsed(timer, true); } - if (App.cancelled){ - App.exit_app(1); - } - App.status_line = LinuxKernel.status_line; App.progress_total = LinuxKernel.progress_total; App.progress_count = LinuxKernel.progress_count; diff --git a/src/Gtk/ProgressWindow.vala b/src/Gtk/ProgressWindow.vala index 13ebe0a2..43617aa1 100644 --- a/src/Gtk/ProgressWindow.vala +++ b/src/Gtk/ProgressWindow.vala @@ -46,12 +46,12 @@ public class ProgressWindow : Gtk.Window { private int def_height = 50; private string status_message; - private bool allow_cancel = false; - // init + private Cancellable? cancellable; - public ProgressWindow.with_parent(Window parent, string message, bool allow_cancel = false) { + // init + public ProgressWindow.with_parent(Window parent, string message, Cancellable? cancellable = null) { set_transient_for(parent); set_modal(true); set_decorated(false); @@ -67,9 +67,8 @@ public class ProgressWindow : Gtk.Window { App.progress_total = 0; this.status_message = message; - this.allow_cancel = allow_cancel; - App.cancelled = false; + this.cancellable = cancellable; init_window(); } @@ -130,15 +129,12 @@ public class ProgressWindow : Gtk.Window { box.pack_start (button, false, false, 0); btn_cancel = button; - button.clicked.connect(()=>{ - App.cancelled = true; + button.clicked.connect(() => { + cancellable.cancel(); btn_cancel.sensitive = false; }); show_all(); - - //btn_cancel.visible = allow_cancel; - btn_cancel.sensitive = allow_cancel; } // common From acc205d9a6deb25168b71c3d6fc47ac8f9506f49 Mon Sep 17 00:00:00 2001 From: Lucas CHOLLET Date: Thu, 16 Feb 2023 15:57:17 -0500 Subject: [PATCH 211/567] Remove `check_internet_connectivity()` in favor of a method in `Main` `Teejee.System.check_internet_connectivity()` used `aria2c` internally and also depends on an attribute of `Main`. The new static method uses `GLib` instead. --- src/Common/LinuxKernel.vala | 5 +++-- src/Common/Main.vala | 16 ++++++++++++++++ src/Console/AppConsole.vala | 2 +- src/Gtk/MainWindow.vala | 7 +++---- src/Utility/TeeJee.System.vala | 16 ---------------- 5 files changed, 23 insertions(+), 23 deletions(-) diff --git a/src/Common/LinuxKernel.vala b/src/Common/LinuxKernel.vala index 5fc9e2db..96a462a4 100644 --- a/src/Common/LinuxKernel.vala +++ b/src/Common/LinuxKernel.vala @@ -35,7 +35,8 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { // static - [CCode(cname="URI_KERNEL_UBUNTU_MAINLINE")] extern const string URI_KERNEL_UBUNTU_MAINLINE; + [CCode(cname="URI_KERNEL_UBUNTU_MAINLINE")] + public extern const string URI_KERNEL_UBUNTU_MAINLINE; public static string CACHE_DIR; public static string NATIVE_ARCH; @@ -218,7 +219,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { bool refresh = false; var one_hour_before = (new DateTime.now_local()).add_hours(-1); if (last_refreshed_date.compare(one_hour_before) < 0) refresh = true; - bool is_connected = check_internet_connectivity(); + bool is_connected = Main.can_reach_mainline_ppa(); if (refresh) download_index(); // read main index.html diff --git a/src/Common/Main.vala b/src/Common/Main.vala index bfa9fedb..287414e5 100644 --- a/src/Common/Main.vala +++ b/src/Common/Main.vala @@ -299,4 +299,20 @@ public class Main : GLib.Object{ file_delete(STARTUP_DESKTOP_FILE); } } + + public static bool can_reach_mainline_ppa() { + if (App.skip_connection_check) + return true; + + bool has_internet = true; + try { + var file = File.new_for_uri(LinuxKernel.URI_KERNEL_UBUNTU_MAINLINE); + file.query_info("*", FileQueryInfoFlags.NONE); + } catch (Error e) { + has_internet = false; + } + + return has_internet; + } + } diff --git a/src/Console/AppConsole.vala b/src/Console/AppConsole.vala index 994c694e..f65019d8 100644 --- a/src/Console/AppConsole.vala +++ b/src/Console/AppConsole.vala @@ -388,7 +388,7 @@ public class AppConsole : GLib.Object { } public void check_if_internet_is_active(bool exit_app = true){ - if (!check_internet_connectivity()){ + if (!Main.can_reach_mainline_ppa()){ if (exit_app){ exit(1); } diff --git a/src/Gtk/MainWindow.vala b/src/Gtk/MainWindow.vala index 7b922bab..3b161c87 100644 --- a/src/Gtk/MainWindow.vala +++ b/src/Gtk/MainWindow.vala @@ -317,7 +317,7 @@ public class MainWindow : Gtk.Window{ button.clicked.connect(() => { - if (!check_internet_connectivity()){ + if (!Main.can_reach_mainline_ppa()){ gtk_messagebox(_("No Internet"), _("Internet connection is not active"), this, true); return; } @@ -521,7 +521,7 @@ public class MainWindow : Gtk.Window{ private void refresh_cache(){ - if (!check_internet_connectivity()){ + if (!Main.can_reach_mainline_ppa()){ gtk_messagebox(_("No Internet"), _("Internet connection is not active."), this, true); return; } @@ -633,14 +633,13 @@ public class MainWindow : Gtk.Window{ } public void kinst(LinuxKernel kern){ - // check if installed if (kern.is_installed){ gtk_messagebox(_("Already Installed"), _("This kernel is already installed."), this, true); return; } - if (!check_internet_connectivity()){ + if (!Main.can_reach_mainline_ppa()){ gtk_messagebox(_("No Internet"), _("Internet connection is not active."), this, true); return; } diff --git a/src/Utility/TeeJee.System.vala b/src/Utility/TeeJee.System.vala index 3716ec56..a5460689 100644 --- a/src/Utility/TeeJee.System.vala +++ b/src/Utility/TeeJee.System.vala @@ -28,22 +28,6 @@ namespace TeeJee.System{ using TeeJee.Misc; using TeeJee.FileSystem; - // internet helpers ---------------------- - public bool check_internet_connectivity(){ - - if (App.skip_connection_check) return true; - - string std_err, std_out; - string cmd = "aria2c --no-netrc --no-conf --connect-timeout="+App.connect_timeout_seconds.to_string()+" --max-file-not-found=3 --retry-wait=2 --max-tries=3 --dry-run --quiet 'https://kernel.ubuntu.com'"; - - int status = exec_sync(cmd, out std_out, out std_err); - - if (std_err.length > 0) log_error(std_err); - if (status != 0) log_error(_("Internet connection is not active")); - - return (status == 0); - } - // open ----------------------------- public void xdg_open (string file){ From 09bb026c3d49c051ca6db5f2342ab7c999cc9c4f Mon Sep 17 00:00:00 2001 From: Lucas CHOLLET Date: Thu, 16 Feb 2023 17:02:24 -0500 Subject: [PATCH 212/567] Use a default `MessageDialog` to signal an issue with the connection We used to pop a `CustomMessageDialog` for these cases. But those are far less integrated than the default `MessageDialog`. --- src/Gtk/MainWindow.vala | 31 ++++++++++++++++++++++--------- 1 file changed, 22 insertions(+), 9 deletions(-) diff --git a/src/Gtk/MainWindow.vala b/src/Gtk/MainWindow.vala index 3b161c87..5ec8b384 100644 --- a/src/Gtk/MainWindow.vala +++ b/src/Gtk/MainWindow.vala @@ -317,10 +317,8 @@ public class MainWindow : Gtk.Window{ button.clicked.connect(() => { - if (!Main.can_reach_mainline_ppa()){ - gtk_messagebox(_("No Internet"), _("Internet connection is not active"), this, true); + if (!can_reach_mainline_ppa()) return; - } refresh_cache(); tv_refresh(); @@ -521,10 +519,8 @@ public class MainWindow : Gtk.Window{ private void refresh_cache(){ - if (!Main.can_reach_mainline_ppa()){ - gtk_messagebox(_("No Internet"), _("Internet connection is not active."), this, true); + if (!can_reach_mainline_ppa()) return; - } if (App.command != "list"){ @@ -639,10 +635,8 @@ public class MainWindow : Gtk.Window{ return; } - if (!Main.can_reach_mainline_ppa()){ - gtk_messagebox(_("No Internet"), _("Internet connection is not active."), this, true); + if (!can_reach_mainline_ppa()) return; - } var term = new TerminalWindow.with_parent(this, false, true); string t_dir = create_tmp_dir(); @@ -678,4 +672,23 @@ public class MainWindow : Gtk.Window{ term.execute_script(t_file,t_dir); } + private bool can_reach_mainline_ppa() { + bool result = Main.can_reach_mainline_ppa(); + + if (! Main.can_reach_mainline_ppa()) { + Gtk.MessageDialog msg = new Gtk.MessageDialog(this, + Gtk.DialogFlags.MODAL, + Gtk.MessageType.ERROR, + Gtk.ButtonsType.OK, + "%s\n\n%s".printf( + _("No Internet"), + _("Internet connection is not active.") + )); + msg.response.connect((response_id) => msg.destroy()); + msg.show(); + } + + return result; + } + } From f4674be4fcb1bb2a0c639232a713e9a8534ec1ff Mon Sep 17 00:00:00 2001 From: Lucas CHOLLET Date: Thu, 16 Feb 2023 17:12:09 -0500 Subject: [PATCH 213/567] Log programming errors instead of popping a dialog These buttons should be disabled if calling them doesn't make sense. If a user achieve to call it anyway, it is a programming error. Those don't need to be reported to the end user but only to the developer. Hence, this path makes the application log errors with `return_if_fail` instead of displaying a dialog. --- src/Gtk/MainWindow.vala | 79 +++++++++++++++++------------------------ 1 file changed, 33 insertions(+), 46 deletions(-) diff --git a/src/Gtk/MainWindow.vala b/src/Gtk/MainWindow.vala index 5ec8b384..bb4f6313 100644 --- a/src/Gtk/MainWindow.vala +++ b/src/Gtk/MainWindow.vala @@ -330,15 +330,9 @@ public class MainWindow : Gtk.Window{ btn_install = button; button.clicked.connect(() => { - if (selected_kernels.size == 1){ - kinst(selected_kernels[0]); - } - else if (selected_kernels.size > 1){ - gtk_messagebox(_("Multiple Kernels Selected"),_("Select a single kernel to install"), this, true); - } - else{ - gtk_messagebox(_("Not Selected"),_("Select the kernel to install"), this, true); - } + return_if_fail(selected_kernels.size == 1); + + kinst(selected_kernels[0]); }); // uninstall @@ -347,42 +341,38 @@ public class MainWindow : Gtk.Window{ btn_uninstall = button; button.clicked.connect(() => { - if (selected_kernels.size == 0){ - gtk_messagebox(_("Not Selected"),_("Select the kernels to uninstall"), this, true); - } - else if (selected_kernels.size > 0){ - - var term = new TerminalWindow.with_parent(this, false, true); - string t_dir = create_tmp_dir(); - string t_file = get_temp_file_path(t_dir)+".sh"; - - term.script_complete.connect(()=>{ - term.allow_window_close(); - file_delete(t_file); - dir_delete(t_dir); - }); - - term.destroy.connect(()=>{ - this.present(); - refresh_cache(); - tv_refresh(); - }); - - string names = ""; - foreach(var kern in selected_kernels){ - if (names.length > 0) names += ","; - names += "%s".printf(kern.version_main); - } + return_if_fail(selected_kernels.size > 0); + + var term = new TerminalWindow.with_parent(this, false, true); + string t_dir = create_tmp_dir(); + string t_file = get_temp_file_path(t_dir)+".sh"; + + term.script_complete.connect(()=>{ + term.allow_window_close(); + file_delete(t_file); + dir_delete(t_dir); + }); - string sh = BRANDING_SHORTNAME; - if (LOG_DEBUG) sh += " --debug"; - sh += " --uninstall %s\n".printf(names) - + "echo \n" - + "echo '"+_("Close window to exit...")+"'\n"; + term.destroy.connect(()=>{ + this.present(); + refresh_cache(); + tv_refresh(); + }); - save_bash_script_temp(sh,t_file); - term.execute_script(t_file,t_dir); + string names = ""; + foreach(var kern in selected_kernels){ + if (names.length > 0) names += ","; + names += "%s".printf(kern.version_main); } + + string sh = BRANDING_SHORTNAME; + if (LOG_DEBUG) sh += " --debug"; + sh += " --uninstall %s\n".printf(names) + + "echo \n" + + "echo '"+_("Close window to exit...")+"'\n"; + + save_bash_script_temp(sh,t_file); + term.execute_script(t_file,t_dir); }); // uninstall-old @@ -630,10 +620,7 @@ public class MainWindow : Gtk.Window{ public void kinst(LinuxKernel kern){ // check if installed - if (kern.is_installed){ - gtk_messagebox(_("Already Installed"), _("This kernel is already installed."), this, true); - return; - } + return_if_fail(! kern.is_installed); if (!can_reach_mainline_ppa()) return; From a0eaea1c821141524fbe74711a7bc4e9728480e1 Mon Sep 17 00:00:00 2001 From: Lucas CHOLLET Date: Thu, 16 Feb 2023 17:23:35 -0500 Subject: [PATCH 214/567] Remove the now unused `CustomMessageDialog` The corresponding helper `gtk_messagebox` is also deleted along. --- src/Utility/Gtk/CustomMessageDialog.vala | 165 ----------------------- src/Utility/Gtk/GtkHelper.vala | 20 --- 2 files changed, 185 deletions(-) delete mode 100644 src/Utility/Gtk/CustomMessageDialog.vala diff --git a/src/Utility/Gtk/CustomMessageDialog.vala b/src/Utility/Gtk/CustomMessageDialog.vala deleted file mode 100644 index b13dec43..00000000 --- a/src/Utility/Gtk/CustomMessageDialog.vala +++ /dev/null @@ -1,165 +0,0 @@ -/* - * CustomMessageDialog.vala - * - * Copyright 2012-17 Tony George - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, - * MA 02110-1301, USA. - * - * - */ - - -using Gtk; -using Gee; - -using TeeJee.Logging; -using TeeJee.FileSystem; -using TeeJee.JsonHelper; -using TeeJee.ProcessHelper; -using TeeJee.GtkHelper; -using TeeJee.System; -using TeeJee.Misc; - -public class CustomMessageDialog : Gtk.Dialog { - - private Gtk.Box vbox_main; - private Gtk.Label lbl_msg; - private Gtk.ScrolledWindow sw_msg; - private Gtk.Button btn_ok; - private Gtk.Button btn_cancel; - private Gtk.Button btn_yes; - private Gtk.Button btn_no; - - private string msg_title; - private string msg_body; - private Gtk.MessageType msg_type; - private Gtk.ButtonsType buttons_type; - - public CustomMessageDialog( - string _msg_title, string _msg_body, - Gtk.MessageType _msg_type, Window? parent, Gtk.ButtonsType _buttons_type) { - - set_transient_for(parent); - set_modal(true); - - msg_title = _msg_title; - msg_body = _msg_body; - msg_type = _msg_type; - buttons_type = _buttons_type; - - init_window(); - - lbl_msg.expand = true; - sw_msg.expand = true; - sw_msg.vscrollbar_policy = PolicyType.NEVER; - - sw_msg.set_size_request(500, 150); // sets minimum size - - show_all(); - - if (lbl_msg.get_allocated_height() > 400){ - sw_msg.vscrollbar_policy = PolicyType.AUTOMATIC; - sw_msg.set_size_request(500, 400); - } - - } - - public void init_window () { - - this.title = BRANDING_LONGNAME; - this.window_position = WindowPosition.CENTER_ON_PARENT; - this.icon = get_app_icon(16); - this.resizable = false; - this.deletable = false; - - //vbox_main - vbox_main = get_content_area () as Gtk.Box; - vbox_main.margin = 6; - - //hbox_contents - var hbox_contents = new Gtk.Box(Orientation.HORIZONTAL, 6); - hbox_contents.margin = 6; - vbox_main.add (hbox_contents); - - string icon_name = "dialog-info"; - - switch(msg_type){ - default: - case Gtk.MessageType.INFO: - icon_name = "dialog-info"; - break; - case Gtk.MessageType.WARNING: - icon_name = "dialog-warning"; - break; - case Gtk.MessageType.QUESTION: - icon_name = "dialog-question"; - break; - case Gtk.MessageType.ERROR: - icon_name = "dialog-error"; - break; - } - - // image ---------------- - - var img = new Image.from_icon_name(icon_name, Gtk.IconSize.DIALOG); - img.margin_end = 120; - hbox_contents.add(img); - - // label ------------------- - - var text = "%s\n\n%s".printf( - escape_html(msg_title), - msg_body); - lbl_msg = new Gtk.Label(text); - lbl_msg.xalign = 0.0f; - lbl_msg.yalign = 0.0f; - lbl_msg.max_width_chars = 70; - lbl_msg.wrap = true; - lbl_msg.wrap_mode = Pango.WrapMode.WORD_CHAR; - lbl_msg.use_markup = true; - lbl_msg.margin_end = 250; - - //sw_msg - sw_msg = new Gtk.ScrolledWindow(null, null); - sw_msg.add (lbl_msg); - sw_msg.hscrollbar_policy = PolicyType.NEVER; - sw_msg.vscrollbar_policy = PolicyType.NEVER; - hbox_contents.add(sw_msg); - - // actions ------------------------- - - var action_area = get_action_area () as Gtk.Box; - action_area.margin_top = 12; - - switch(buttons_type){ - case Gtk.ButtonsType.OK: - btn_ok = (Gtk.Button) add_button (_("OK"), Gtk.ResponseType.OK); - btn_ok.grab_focus(); - break; - case Gtk.ButtonsType.OK_CANCEL: - btn_ok = (Gtk.Button) add_button (_("OK"), Gtk.ResponseType.OK); - btn_cancel = (Gtk.Button) add_button (_("Cancel"), Gtk.ResponseType.CANCEL); - btn_ok.grab_focus(); - break; - case Gtk.ButtonsType.YES_NO: - btn_yes = (Gtk.Button) add_button (_("Yes"), Gtk.ResponseType.YES); - btn_no = (Gtk.Button) add_button (_("No"), Gtk.ResponseType.NO); - btn_yes.grab_focus(); - break; - - } - } -} diff --git a/src/Utility/Gtk/GtkHelper.vala b/src/Utility/Gtk/GtkHelper.vala index ec9b895d..61ae3461 100644 --- a/src/Utility/Gtk/GtkHelper.vala +++ b/src/Utility/Gtk/GtkHelper.vala @@ -10,26 +10,6 @@ namespace TeeJee.GtkHelper{ using Gtk; - // messages ---------------------------------------- - - public void gtk_messagebox( - string title, string message, Gtk.Window? parent_win, bool is_error = false){ - - /* Shows a simple message box */ - - var type = Gtk.MessageType.INFO; - if (is_error){ - type = Gtk.MessageType.ERROR; - } - else{ - type = Gtk.MessageType.INFO; - } - - var dlg = new CustomMessageDialog(title,message,type,parent_win, Gtk.ButtonsType.OK); - dlg.run(); - dlg.destroy(); - } - // icon ---------------------------------------------- public Gdk.Pixbuf? get_app_icon(int icon_size){ From 5e0508ad5f3b6eceeac56297cc02aa92f411ed09 Mon Sep 17 00:00:00 2001 From: Lucas CHOLLET Date: Wed, 15 Feb 2023 12:46:16 -0500 Subject: [PATCH 215/567] Add a dialog to show the user that we are downloading the changelog Lazy downloads of changelogs introduce a small latency when clicking the "Changes" button. With this commit, we keep the user informed by showing a dialog during the download. --- src/Gtk/MainWindow.vala | 35 ++++++++++++++++++++++++++++++----- 1 file changed, 30 insertions(+), 5 deletions(-) diff --git a/src/Gtk/MainWindow.vala b/src/Gtk/MainWindow.vala index 1c4d1250..b4680180 100644 --- a/src/Gtk/MainWindow.vala +++ b/src/Gtk/MainWindow.vala @@ -430,14 +430,39 @@ public class MainWindow : Gtk.Window{ return; if (! file_exists(selected_kernels[0].changes_file)) { + bool failed_or_cancelled = false; + + FileDownloader.OnFailure handle_failure = (error) => { + // If it's already set by the "cancelled" signal, no need to display a dialog + if (failed_or_cancelled) + return; + failed_or_cancelled = true; + Gtk.MessageDialog msg = new Gtk.MessageDialog(this, Gtk.DialogFlags.MODAL, Gtk.MessageType.ERROR, Gtk.ButtonsType.OK, _("Error while downloading the changelog:\n") + error.message); + msg.response.connect((response_id) => msg.destroy()); + msg.show(); + }; + + var cancellable = new Cancellable(); + cancellable.cancelled.connect (() => { + failed_or_cancelled = true; + }); + + var progress_window = new ProgressWindow.with_parent(this, _("Downloading the changelog"), cancellable); + try { - FileDownloader.synchronous(selected_kernels[0].changes_file_uri, - selected_kernels[0].changes_file); + var changelog = new FileDownloader.asynchronous(selected_kernels[0].changes_file_uri, selected_kernels[0].changes_file, cancellable); + changelog.on_failure = handle_failure; + changelog.on_finished = () => progress_window.destroy(); + changelog.start(); + + progress_window.show_all(); + changelog.wait_until_finished(); } catch (Error e) { - Gtk.MessageDialog msg = new Gtk.MessageDialog (this, Gtk.DialogFlags.MODAL, Gtk.MessageType.ERROR, Gtk.ButtonsType.OK, _("Error while downloading the changelog:\n") + e.message); - msg.response.connect ((response_id) => msg.destroy()); - msg.show (); + handle_failure(e); } + + if (failed_or_cancelled) + return; } xdg_open(selected_kernels[0].changes_file); From ca73377978ef6f64b606e2253e84aede3ce81d35 Mon Sep 17 00:00:00 2001 From: Marvin Meysel Date: Mon, 20 Feb 2023 18:41:53 +0100 Subject: [PATCH 216/567] minor fix translation de --- TRANSLATORS | 2 +- po/de.po | 46 +++++++++++++++++++++++----------------------- 2 files changed, 24 insertions(+), 24 deletions(-) diff --git a/TRANSLATORS b/TRANSLATORS index b5f6e2f0..426b1790 100644 --- a/TRANSLATORS +++ b/TRANSLATORS @@ -1,4 +1,4 @@ -de: Tobias W +de: Tobias W , Marvin Meysel el: Vasilis Kosmidis es: Adolfo Jayme Barrientos fr: Yolateng0 diff --git a/po/de.po b/po/de.po index 3681c51e..e5e78f78 100644 --- a/po/de.po +++ b/po/de.po @@ -3,15 +3,15 @@ msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-02-02 18:20-0500\n" -"PO-Revision-Date: 2018-01-03 02:03-0600\n" -"Last-Translator: Tobias W \n" +"PO-Revision-Date: 2023-02-20 18:40+0100\n" +"Last-Translator: Marvin Meysel \n" "Language-Team: German\n" "Language: de\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2017-04-13 11:48+0000\n" -"X-Generator: Poedit 2.0.5\n" +"X-Generator: Poedit 3.1.1\n" #: src/Common/LinuxKernel.vala:87 msgid "Distribution" @@ -27,7 +27,7 @@ msgstr "Index abrufen..." #: src/Common/LinuxKernel.vala:336 msgid "Fetching index from kernel.ubuntu.com..." -msgstr "Holt den Index von kernel.ubuntu.com..." +msgstr "Hole Index von kernel.ubuntu.com..." #: src/Common/LinuxKernel.vala:592 msgid "Could not find running kernel in list!" @@ -69,11 +69,11 @@ msgstr "Verfügbare Pakete" #: src/Common/LinuxKernel.vala:938 msgid "Packages Installed" -msgstr "Installierte Packete" +msgstr "Installierte Pakete" #: src/Common/LinuxKernel.vala:1018 msgid "Available Kernels" -msgstr "Verfügbare Kernels" +msgstr "Verfügbare Kernel" #: src/Common/LinuxKernel.vala:1025 src/Gtk/MainWindow.vala:186 msgid "Installed" @@ -86,7 +86,7 @@ msgstr "Läuft" #: src/Common/LinuxKernel.vala:1062 msgid "Downloading" -msgstr "Downloaded" +msgstr "Herunterladen" #: src/Common/LinuxKernel.vala:1081 #: src/Utility/Gtk/CustomMessageDialog.vala:148 @@ -249,7 +249,7 @@ msgstr "Unbekannte Option" #: src/Console/AppConsole.vala:171 src/Console/AppConsole.vala:265 #: src/Console/AppConsole.vala:294 msgid "Run" -msgstr "Laufen" +msgstr "Ausführen" #: src/Console/AppConsole.vala:171 msgid "to list all options" @@ -326,7 +326,7 @@ msgstr "Kein Internet" #: src/Gtk/MainWindow.vala:339 msgid "Multiple Kernels Selected" -msgstr "Mehrere Kernels Ausgewählt" +msgstr "Mehrere Kernel ausgewählt" #: src/Gtk/MainWindow.vala:339 msgid "Select a single kernel to install" @@ -334,7 +334,7 @@ msgstr "Wählen Sie einen einzelnen Kernel zur Installation aus" #: src/Gtk/MainWindow.vala:342 src/Gtk/MainWindow.vala:353 msgid "Not Selected" -msgstr "Nichts Ausgwewählt" +msgstr "Nichts ausgewählt" #: src/Gtk/MainWindow.vala:342 msgid "Select the kernel to install" @@ -342,7 +342,7 @@ msgstr "Wählen Sie den zu installierenden Kernel" #: src/Gtk/MainWindow.vala:347 msgid "Uninstall" -msgstr "Deinstallieren Sie" +msgstr "Deinstallieren" #: src/Gtk/MainWindow.vala:353 msgid "Select the kernels to uninstall" @@ -355,7 +355,7 @@ msgstr "Fenster schließen zum Verlassen..." #: src/Gtk/MainWindow.vala:391 msgid "Uninstall Old" -msgstr "Alt deinstallieren" +msgstr "Alte deinstallieren" #: src/Gtk/MainWindow.vala:392 msgid "Uninstall kernels older than running kernel" @@ -379,11 +379,11 @@ msgstr "Kernel-Upgrade-Dienstprogramm für Ubuntu-basierte Distributionen" #: src/Gtk/MainWindow.vala:504 msgid "Forked" -msgstr "Gegabelte" +msgstr "Forked" #: src/Gtk/MainWindow.vala:504 msgid "Original" -msgstr "Orginal" +msgstr "Original" #: src/Gtk/MainWindow.vala:525 src/Gtk/MainWindow.vala:644 msgid "Internet connection is not active." @@ -391,7 +391,7 @@ msgstr "Die Internetverbindung ist nicht aktiv." #: src/Gtk/MainWindow.vala:538 msgid "Refreshing..." -msgstr "Auffrischen" +msgstr "Auffrischen..." #: src/Gtk/MainWindow.vala:627 msgid "available" @@ -399,7 +399,7 @@ msgstr "Verfügbar" #: src/Gtk/MainWindow.vala:639 msgid "Already Installed" -msgstr "Bereits Installiert" +msgstr "Bereits installiert" #: src/Gtk/ProgressWindow.vala:142 src/Gtk/TerminalWindow.vala:149 #: src/Utility/Gtk/CustomMessageDialog.vala:153 @@ -428,19 +428,19 @@ msgstr "Prüfen Sie jede" #: src/Gtk/SettingsDialog.vala:142 msgid "Hour(s)" -msgstr "Stunden" +msgstr "Stunde(n)" #: src/Gtk/SettingsDialog.vala:144 msgid "Day(s)" -msgstr "Tage" +msgstr "Tag(e)" #: src/Gtk/SettingsDialog.vala:146 msgid "Week(s)" -msgstr "Wochen" +msgstr "Woche(n)" #: src/Gtk/SettingsDialog.vala:149 msgid "Second(s)" -msgstr "Sekunden" +msgstr "Sekunde(n)" #: src/Gtk/SettingsDialog.vala:155 msgid "Display" @@ -528,7 +528,7 @@ msgstr "Fehler beim Löschen der Datei" #: src/Utility/TeeJee.FileSystem.vala:96 msgid "Failed to read file" -msgstr "Fehlere bei lesesen der Datei" +msgstr "Fehler beim lesen der Datei" #: src/Utility/TeeJee.FileSystem.vala:123 msgid "File saved" @@ -573,8 +573,8 @@ msgstr "Gelöscht" #: src/Utility/TeeJee.Logging.vala:59 msgid "E" -msgstr "" +msgstr "E" #: src/Utility/TeeJee.Logging.vala:84 msgid "D" -msgstr "" +msgstr "D" From 5fed84b2cb9e291787bbd68efdbc97274ec36ff6 Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Tue, 21 Feb 2023 10:05:49 -0500 Subject: [PATCH 217/567] pofiles --- po/de.po | 115 +++++++++++++++++++++++++---------------------- po/el.po | 115 +++++++++++++++++++++++++---------------------- po/es.po | 115 +++++++++++++++++++++++++---------------------- po/fr.po | 115 +++++++++++++++++++++++++---------------------- po/hr.po | 115 +++++++++++++++++++++++++---------------------- po/it.po | 115 +++++++++++++++++++++++++---------------------- po/ko.po | 115 +++++++++++++++++++++++++---------------------- po/messages.pot | 116 ++++++++++++++++++++++++++---------------------- po/nl.po | 115 +++++++++++++++++++++++++---------------------- po/pl.po | 115 +++++++++++++++++++++++++---------------------- po/ru.po | 115 +++++++++++++++++++++++++---------------------- po/sv.po | 115 +++++++++++++++++++++++++---------------------- po/tr.po | 115 +++++++++++++++++++++++++---------------------- po/uk.po | 115 +++++++++++++++++++++++++---------------------- 14 files changed, 868 insertions(+), 743 deletions(-) diff --git a/po/de.po b/po/de.po index 3681c51e..ad9bbc6e 100644 --- a/po/de.po +++ b/po/de.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-02-02 18:20-0500\n" +"POT-Creation-Date: 2023-02-21 10:04-0500\n" "PO-Revision-Date: 2018-01-03 02:03-0600\n" "Last-Translator: Tobias W \n" "Language-Team: German\n" @@ -21,98 +21,98 @@ msgstr "Distribution" msgid "Architecture" msgstr "Architektur" -#: src/Common/LinuxKernel.vala:297 +#: src/Common/LinuxKernel.vala:299 msgid "Fetching index..." msgstr "Index abrufen..." -#: src/Common/LinuxKernel.vala:336 +#: src/Common/LinuxKernel.vala:331 msgid "Fetching index from kernel.ubuntu.com..." msgstr "Holt den Index von kernel.ubuntu.com..." -#: src/Common/LinuxKernel.vala:592 +#: src/Common/LinuxKernel.vala:578 msgid "Could not find running kernel in list!" msgstr "Konnte keinen laufenden Kernel in der Liste finden!" -#: src/Common/LinuxKernel.vala:598 +#: src/Common/LinuxKernel.vala:584 msgid "Could not find any kernels to uninstall" msgstr "Es konnten keine Kernel zum Deinstallieren gefunden werden" -#: src/Common/LinuxKernel.vala:607 +#: src/Common/LinuxKernel.vala:593 msgid "The following kernels will be uninstalled:" msgstr "Die folgenden Kernel werden deinstalliert:" -#: src/Common/LinuxKernel.vala:614 +#: src/Common/LinuxKernel.vala:600 msgid "Continue ?" msgstr "Weiter ?" -#: src/Common/LinuxKernel.vala:640 src/Console/AppConsole.vala:314 +#: src/Common/LinuxKernel.vala:626 src/Console/AppConsole.vala:314 msgid "Latest update" msgstr "Neustes Update" -#: src/Common/LinuxKernel.vala:651 src/Console/AppConsole.vala:321 +#: src/Common/LinuxKernel.vala:637 src/Console/AppConsole.vala:321 msgid "Latest point update" msgstr "Letzte Punktaktualisierung" -#: src/Common/LinuxKernel.vala:659 src/Console/AppConsole.vala:326 +#: src/Common/LinuxKernel.vala:645 src/Console/AppConsole.vala:326 #: src/Console/AppConsole.vala:387 msgid "No updates found" msgstr "Keine Updates gefunden" -#: src/Common/LinuxKernel.vala:669 +#: src/Common/LinuxKernel.vala:655 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Kernel-Version %s installieren? (j/n):" -#: src/Common/LinuxKernel.vala:930 +#: src/Common/LinuxKernel.vala:916 msgid "Packages Available" msgstr "Verfügbare Pakete" -#: src/Common/LinuxKernel.vala:938 +#: src/Common/LinuxKernel.vala:924 msgid "Packages Installed" msgstr "Installierte Packete" -#: src/Common/LinuxKernel.vala:1018 +#: src/Common/LinuxKernel.vala:1004 msgid "Available Kernels" msgstr "Verfügbare Kernels" -#: src/Common/LinuxKernel.vala:1025 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1011 src/Gtk/MainWindow.vala:186 msgid "Installed" msgstr "Installiert" -#: src/Common/LinuxKernel.vala:1025 src/Gtk/MainWindow.vala:186 -#: src/Gtk/MainWindow.vala:617 src/Gtk/MainWindow.vala:631 +#: src/Common/LinuxKernel.vala:1011 src/Gtk/MainWindow.vala:186 +#: src/Gtk/MainWindow.vala:655 src/Gtk/MainWindow.vala:669 msgid "Running" msgstr "Läuft" -#: src/Common/LinuxKernel.vala:1062 +#: src/Common/LinuxKernel.vala:1048 msgid "Downloading" msgstr "Downloaded" -#: src/Common/LinuxKernel.vala:1081 -#: src/Utility/Gtk/CustomMessageDialog.vala:148 -#: src/Utility/Gtk/CustomMessageDialog.vala:152 +#: src/Common/LinuxKernel.vala:1067 +#: src/Utility/Gtk/CustomMessageDialog.vala:149 +#: src/Utility/Gtk/CustomMessageDialog.vala:153 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:1086 +#: src/Common/LinuxKernel.vala:1072 msgid "ERROR" msgstr "Fehler" -#: src/Common/LinuxKernel.vala:1100 src/Gtk/MainWindow.vala:639 +#: src/Common/LinuxKernel.vala:1086 src/Gtk/MainWindow.vala:677 msgid "This kernel is already installed." msgstr "Dieser Kernel ist bereits installiert." -#: src/Common/LinuxKernel.vala:1126 +#: src/Common/LinuxKernel.vala:1112 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "Die Installation ist abgeschlossen. Ein Neustart ist erforderlich, um den " "neuen Kernel zu verwenden." -#: src/Common/LinuxKernel.vala:1129 +#: src/Common/LinuxKernel.vala:1115 msgid "Installation completed with errors" msgstr "Installation mit Fehlern abgeschlossen" -#: src/Common/LinuxKernel.vala:1144 +#: src/Common/LinuxKernel.vala:1130 msgid "" "Selected kernel is currently running and cannot be un-installed.\n" " Install another kernel before un-installing this one." @@ -121,19 +121,19 @@ msgstr "" "werden.\n" " Installieren Sie einen anderen Kernel, bevor Sie diesen deinstallieren." -#: src/Common/LinuxKernel.vala:1149 +#: src/Common/LinuxKernel.vala:1135 msgid "Preparing to uninstall selected kernels" msgstr "Vorbereiten der Deinstallation ausgewählter Kernel" -#: src/Common/LinuxKernel.vala:1180 src/Common/LinuxKernel.vala:1227 +#: src/Common/LinuxKernel.vala:1166 src/Common/LinuxKernel.vala:1213 msgid "Un-install completed" msgstr "Deinstallation abgeschlossen" -#: src/Common/LinuxKernel.vala:1183 src/Common/LinuxKernel.vala:1230 +#: src/Common/LinuxKernel.vala:1169 src/Common/LinuxKernel.vala:1216 msgid "Un-install completed with errors" msgstr "Deinstallation mit Fehlern abgeschlossen" -#: src/Common/LinuxKernel.vala:1196 +#: src/Common/LinuxKernel.vala:1182 msgid "" "This kernel is currently running and cannot be un-installed.\n" " Install another kernel before un-installing this one." @@ -141,11 +141,11 @@ msgstr "" "Dieser Kernel wird derzeit ausgeführt und kann nicht deinstalliert werden.\n" " Installieren Sie einen anderen Kernel, bevor Sie diesen deinstallieren." -#: src/Common/Main.vala:241 +#: src/Common/Main.vala:240 msgid "Called from" msgstr "Angerufen von" -#: src/Common/Main.vala:275 +#: src/Common/Main.vala:274 msgid "Notifications are disabled" msgstr "Benachrichtigungen sind deaktiviert" @@ -154,7 +154,7 @@ msgstr "Benachrichtigungen sind deaktiviert" msgid "File not found: %s" msgstr "Datei nicht gefunden: %s" -#: src/Console/AppConsole.vala:62 src/Gtk/AppGtk.vala:149 +#: src/Console/AppConsole.vala:62 src/Gtk/AppGtk.vala:152 msgid "Syntax" msgstr "Syntax" @@ -207,7 +207,7 @@ msgstr "Herunterladen bestimmter Kernel" msgid "Remove files from application cache" msgstr "Dateien aus dem Anwendungscache entfernen" -#: src/Console/AppConsole.vala:78 src/Gtk/AppGtk.vala:151 +#: src/Console/AppConsole.vala:78 src/Gtk/AppGtk.vala:154 msgid "Options" msgstr "Optionen" @@ -242,7 +242,7 @@ msgstr "" "Eine oder mehrere (durch Komma getrennte) Versionszeichenfolgen aus der " "Ausgabe von --list" -#: src/Console/AppConsole.vala:169 src/Gtk/AppGtk.vala:136 +#: src/Console/AppConsole.vala:169 src/Gtk/AppGtk.vala:139 msgid "Unknown option" msgstr "Unbekannte Option" @@ -295,11 +295,11 @@ msgstr "Kernel %s verfügbar" msgid "Install" msgstr "Installieren" -#: src/Gtk/AppGtk.vala:153 +#: src/Gtk/AppGtk.vala:156 msgid "Print debug information" msgstr "Zeige Debug Informationen" -#: src/Gtk/AppGtk.vala:154 +#: src/Gtk/AppGtk.vala:157 msgid "Show all options" msgstr "Alle Optionen anzeigen" @@ -319,8 +319,8 @@ msgstr "Auffrischen" msgid "Internet connection is not active" msgstr "Internetverbindung ist nicht aktiv" -#: src/Gtk/MainWindow.vala:321 src/Gtk/MainWindow.vala:525 -#: src/Gtk/MainWindow.vala:644 +#: src/Gtk/MainWindow.vala:321 src/Gtk/MainWindow.vala:562 +#: src/Gtk/MainWindow.vala:682 msgid "No Internet" msgstr "Kein Internet" @@ -349,7 +349,7 @@ msgid "Select the kernels to uninstall" msgstr "Wählen Sie die zu deinstallierenden Kernel aus" #: src/Gtk/MainWindow.vala:383 src/Gtk/MainWindow.vala:417 -#: src/Gtk/MainWindow.vala:676 +#: src/Gtk/MainWindow.vala:714 msgid "Close window to exit..." msgstr "Fenster schließen zum Verlassen..." @@ -365,44 +365,53 @@ msgstr "Deinstallation von Kerneln, die älter sind als der aktuelle Kernel" msgid "Changes" msgstr "Änderungen" -#: src/Gtk/MainWindow.vala:435 src/Gtk/SettingsDialog.vala:50 +#: src/Gtk/MainWindow.vala:440 +msgid "Error while downloading the changelog:\n" +msgstr "" + +#: src/Gtk/MainWindow.vala:450 +#, fuzzy +msgid "Downloading the changelog" +msgstr "Downloaded" + +#: src/Gtk/MainWindow.vala:472 src/Gtk/SettingsDialog.vala:50 msgid "Settings" msgstr "Einstellungen" -#: src/Gtk/MainWindow.vala:458 +#: src/Gtk/MainWindow.vala:495 msgid "About" msgstr "Über" -#: src/Gtk/MainWindow.vala:503 +#: src/Gtk/MainWindow.vala:540 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Kernel-Upgrade-Dienstprogramm für Ubuntu-basierte Distributionen" -#: src/Gtk/MainWindow.vala:504 +#: src/Gtk/MainWindow.vala:541 msgid "Forked" msgstr "Gegabelte" -#: src/Gtk/MainWindow.vala:504 +#: src/Gtk/MainWindow.vala:541 msgid "Original" msgstr "Orginal" -#: src/Gtk/MainWindow.vala:525 src/Gtk/MainWindow.vala:644 +#: src/Gtk/MainWindow.vala:562 src/Gtk/MainWindow.vala:682 msgid "Internet connection is not active." msgstr "Die Internetverbindung ist nicht aktiv." -#: src/Gtk/MainWindow.vala:538 +#: src/Gtk/MainWindow.vala:580 msgid "Refreshing..." msgstr "Auffrischen" -#: src/Gtk/MainWindow.vala:627 +#: src/Gtk/MainWindow.vala:665 msgid "available" msgstr "Verfügbar" -#: src/Gtk/MainWindow.vala:639 +#: src/Gtk/MainWindow.vala:677 msgid "Already Installed" msgstr "Bereits Installiert" -#: src/Gtk/ProgressWindow.vala:142 src/Gtk/TerminalWindow.vala:149 -#: src/Utility/Gtk/CustomMessageDialog.vala:153 +#: src/Gtk/ProgressWindow.vala:127 src/Gtk/TerminalWindow.vala:149 +#: src/Utility/Gtk/CustomMessageDialog.vala:154 msgid "Cancel" msgstr "Abbrechen" @@ -506,11 +515,11 @@ msgstr "Dokumentierer" msgid "Third Party Inclusions" msgstr "Einschlüsse von Drittparteien" -#: src/Utility/Gtk/CustomMessageDialog.vala:157 +#: src/Utility/Gtk/CustomMessageDialog.vala:158 msgid "Yes" msgstr "Ja" -#: src/Utility/Gtk/CustomMessageDialog.vala:158 +#: src/Utility/Gtk/CustomMessageDialog.vala:159 msgid "No" msgstr "Nein" diff --git a/po/el.po b/po/el.po index 3be13d7c..076f5458 100644 --- a/po/el.po +++ b/po/el.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-02-02 18:20-0500\n" +"POT-Creation-Date: 2023-02-21 10:04-0500\n" "PO-Revision-Date: 2023-01-10 02:03-0600\n" "Last-Translator: Vasilis Kosmidis \n" "Language-Team: Greek\n" @@ -21,99 +21,99 @@ msgstr "Διανομή" msgid "Architecture" msgstr "Αρχιτεκτονική" -#: src/Common/LinuxKernel.vala:297 +#: src/Common/LinuxKernel.vala:299 msgid "Fetching index..." msgstr "Ανάκτηση ευρετηρίου..." -#: src/Common/LinuxKernel.vala:336 +#: src/Common/LinuxKernel.vala:331 msgid "Fetching index from kernel.ubuntu.com..." msgstr "Ανάκτηση ευρετηρίου από το kernel.ubuntu.com..." -#: src/Common/LinuxKernel.vala:592 +#: src/Common/LinuxKernel.vala:578 msgid "Could not find running kernel in list!" msgstr "Δεν ήταν δυνατή η εύρεση του τρέχοντος πυρήνα στη λίστα!" -#: src/Common/LinuxKernel.vala:598 +#: src/Common/LinuxKernel.vala:584 msgid "Could not find any kernels to uninstall" msgstr "Δεν βρέθηκε κανένας πυρήνας για απεγκατάσταση" -#: src/Common/LinuxKernel.vala:607 +#: src/Common/LinuxKernel.vala:593 #, fuzzy msgid "The following kernels will be uninstalled:" msgstr "Αυτός ο πυρήνας είναι ήδη εγκατεστημένος." -#: src/Common/LinuxKernel.vala:614 +#: src/Common/LinuxKernel.vala:600 msgid "Continue ?" msgstr "Συνέχεια;" -#: src/Common/LinuxKernel.vala:640 src/Console/AppConsole.vala:314 +#: src/Common/LinuxKernel.vala:626 src/Console/AppConsole.vala:314 msgid "Latest update" msgstr "Τελευταία αναβάθμιση" -#: src/Common/LinuxKernel.vala:651 src/Console/AppConsole.vala:321 +#: src/Common/LinuxKernel.vala:637 src/Console/AppConsole.vala:321 msgid "Latest point update" msgstr "Τελευταία ενημέρωση συντήρησης" -#: src/Common/LinuxKernel.vala:659 src/Console/AppConsole.vala:326 +#: src/Common/LinuxKernel.vala:645 src/Console/AppConsole.vala:326 #: src/Console/AppConsole.vala:387 msgid "No updates found" msgstr "Δεν βρέθηκαν ενημερώσεις" -#: src/Common/LinuxKernel.vala:669 +#: src/Common/LinuxKernel.vala:655 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Εγκατάσταση του πυρήνα έκδοσης %s ; (ν/ό):" -#: src/Common/LinuxKernel.vala:930 +#: src/Common/LinuxKernel.vala:916 msgid "Packages Available" msgstr "Διαθέσιμα πακέτα" -#: src/Common/LinuxKernel.vala:938 +#: src/Common/LinuxKernel.vala:924 msgid "Packages Installed" msgstr "Εγκατεστημένα πακέτα" -#: src/Common/LinuxKernel.vala:1018 +#: src/Common/LinuxKernel.vala:1004 msgid "Available Kernels" msgstr "Διαθέσιμοι πυρήνες" -#: src/Common/LinuxKernel.vala:1025 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1011 src/Gtk/MainWindow.vala:186 msgid "Installed" msgstr "Εγκατεστημένος" -#: src/Common/LinuxKernel.vala:1025 src/Gtk/MainWindow.vala:186 -#: src/Gtk/MainWindow.vala:617 src/Gtk/MainWindow.vala:631 +#: src/Common/LinuxKernel.vala:1011 src/Gtk/MainWindow.vala:186 +#: src/Gtk/MainWindow.vala:655 src/Gtk/MainWindow.vala:669 msgid "Running" msgstr "Ενεργός" -#: src/Common/LinuxKernel.vala:1062 +#: src/Common/LinuxKernel.vala:1048 msgid "Downloading" msgstr "Λήψη" -#: src/Common/LinuxKernel.vala:1081 -#: src/Utility/Gtk/CustomMessageDialog.vala:148 -#: src/Utility/Gtk/CustomMessageDialog.vala:152 +#: src/Common/LinuxKernel.vala:1067 +#: src/Utility/Gtk/CustomMessageDialog.vala:149 +#: src/Utility/Gtk/CustomMessageDialog.vala:153 msgid "OK" msgstr "ΟΚ" -#: src/Common/LinuxKernel.vala:1086 +#: src/Common/LinuxKernel.vala:1072 msgid "ERROR" msgstr "ΣΦΑΛΜΑ" -#: src/Common/LinuxKernel.vala:1100 src/Gtk/MainWindow.vala:639 +#: src/Common/LinuxKernel.vala:1086 src/Gtk/MainWindow.vala:677 msgid "This kernel is already installed." msgstr "Αυτός ο πυρήνας είναι ήδη εγκατεστημένος." -#: src/Common/LinuxKernel.vala:1126 +#: src/Common/LinuxKernel.vala:1112 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "Η εγκατάσταση ολοκληρώθηκε. Απαιτείται επανεκκίνηση για τη χρήση του νέου " "πυρήνα." -#: src/Common/LinuxKernel.vala:1129 +#: src/Common/LinuxKernel.vala:1115 msgid "Installation completed with errors" msgstr "Η εγκατάσταση ολοκληρώθηκε με σφάλματα" -#: src/Common/LinuxKernel.vala:1144 +#: src/Common/LinuxKernel.vala:1130 msgid "" "Selected kernel is currently running and cannot be un-installed.\n" " Install another kernel before un-installing this one." @@ -122,19 +122,19 @@ msgstr "" "απεγκατασταθεί.\n" " Εγκαταστήστε έναν άλλο πυρήνα πριν απεγκαταστήσετε αυτόν." -#: src/Common/LinuxKernel.vala:1149 +#: src/Common/LinuxKernel.vala:1135 msgid "Preparing to uninstall selected kernels" msgstr "Προετοιμασία για απεγκατάσταση επιλεγμένων πυρήνων" -#: src/Common/LinuxKernel.vala:1180 src/Common/LinuxKernel.vala:1227 +#: src/Common/LinuxKernel.vala:1166 src/Common/LinuxKernel.vala:1213 msgid "Un-install completed" msgstr "Η απεγκατάσταση ολοκληρώθηκε" -#: src/Common/LinuxKernel.vala:1183 src/Common/LinuxKernel.vala:1230 +#: src/Common/LinuxKernel.vala:1169 src/Common/LinuxKernel.vala:1216 msgid "Un-install completed with errors" msgstr "Η απεγκατάσταση ολοκληρώθηκε με σφάλματα" -#: src/Common/LinuxKernel.vala:1196 +#: src/Common/LinuxKernel.vala:1182 msgid "" "This kernel is currently running and cannot be un-installed.\n" " Install another kernel before un-installing this one." @@ -143,11 +143,11 @@ msgstr "" "απεγκατασταθεί.\n" " Εγκαταστήστε έναν άλλο πυρήνα πριν απεγκαταστήσετε αυτόν." -#: src/Common/Main.vala:241 +#: src/Common/Main.vala:240 msgid "Called from" msgstr "Κλήθηκε από" -#: src/Common/Main.vala:275 +#: src/Common/Main.vala:274 msgid "Notifications are disabled" msgstr "Οι ειδοποιήσεις είναι απενεργοποιημένες" @@ -156,7 +156,7 @@ msgstr "Οι ειδοποιήσεις είναι απενεργοποιημέν msgid "File not found: %s" msgstr "Το αρχείο δεν βρέθηκε: %s" -#: src/Console/AppConsole.vala:62 src/Gtk/AppGtk.vala:149 +#: src/Console/AppConsole.vala:62 src/Gtk/AppGtk.vala:152 msgid "Syntax" msgstr "Σύνταξη" @@ -208,7 +208,7 @@ msgstr "Λήψη των καθορισμένων πυρήνων" msgid "Remove files from application cache" msgstr "Αφαίρεση αρχείων από την προσωρινή μνήμη της εφαρμογής" -#: src/Console/AppConsole.vala:78 src/Gtk/AppGtk.vala:151 +#: src/Console/AppConsole.vala:78 src/Gtk/AppGtk.vala:154 msgid "Options" msgstr "Επιλογές" @@ -243,7 +243,7 @@ msgstr "" "Μία ή περισσότερες συμβολοσειρές έκδοσης (χωρισμένες με κόμμα) που " "λαμβάνονται από την έξοδο του --list" -#: src/Console/AppConsole.vala:169 src/Gtk/AppGtk.vala:136 +#: src/Console/AppConsole.vala:169 src/Gtk/AppGtk.vala:139 msgid "Unknown option" msgstr "Άγνωστη επιλογή" @@ -295,11 +295,11 @@ msgstr "Πυρήνας %s διαθέσιμος" msgid "Install" msgstr "Εγκατάσταση" -#: src/Gtk/AppGtk.vala:153 +#: src/Gtk/AppGtk.vala:156 msgid "Print debug information" msgstr "Εκτύπωση πληροφοριών εντοπισμού σφαλμάτων" -#: src/Gtk/AppGtk.vala:154 +#: src/Gtk/AppGtk.vala:157 msgid "Show all options" msgstr "Εμφάνιση όλων των επιλογών" @@ -319,8 +319,8 @@ msgstr "Ανανέωση" msgid "Internet connection is not active" msgstr "Η σύνδεση στο διαδίκτυο δεν είναι ενεργή" -#: src/Gtk/MainWindow.vala:321 src/Gtk/MainWindow.vala:525 -#: src/Gtk/MainWindow.vala:644 +#: src/Gtk/MainWindow.vala:321 src/Gtk/MainWindow.vala:562 +#: src/Gtk/MainWindow.vala:682 msgid "No Internet" msgstr "Χωρίς διαδίκτυο" @@ -349,7 +349,7 @@ msgid "Select the kernels to uninstall" msgstr "Επιλέξτε πυρήνες για απεγκατάσταση" #: src/Gtk/MainWindow.vala:383 src/Gtk/MainWindow.vala:417 -#: src/Gtk/MainWindow.vala:676 +#: src/Gtk/MainWindow.vala:714 msgid "Close window to exit..." msgstr "Κλείστε το παράθυρο για έξοδο..." @@ -365,44 +365,53 @@ msgstr "Απεγκαταστήστε πυρήνες παλαιότερους α msgid "Changes" msgstr "Αλλαγές" -#: src/Gtk/MainWindow.vala:435 src/Gtk/SettingsDialog.vala:50 +#: src/Gtk/MainWindow.vala:440 +msgid "Error while downloading the changelog:\n" +msgstr "" + +#: src/Gtk/MainWindow.vala:450 +#, fuzzy +msgid "Downloading the changelog" +msgstr "Λήψη" + +#: src/Gtk/MainWindow.vala:472 src/Gtk/SettingsDialog.vala:50 msgid "Settings" msgstr "Ρυθμίσεις" -#: src/Gtk/MainWindow.vala:458 +#: src/Gtk/MainWindow.vala:495 msgid "About" msgstr "Σχετικά" -#: src/Gtk/MainWindow.vala:503 +#: src/Gtk/MainWindow.vala:540 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Πρόγραμμα αναβάθμισης πυρήνα για διανομές που βασίζονται στο Ubuntu" -#: src/Gtk/MainWindow.vala:504 +#: src/Gtk/MainWindow.vala:541 msgid "Forked" msgstr "Forked" -#: src/Gtk/MainWindow.vala:504 +#: src/Gtk/MainWindow.vala:541 msgid "Original" msgstr "Πρωτότυπο" -#: src/Gtk/MainWindow.vala:525 src/Gtk/MainWindow.vala:644 +#: src/Gtk/MainWindow.vala:562 src/Gtk/MainWindow.vala:682 msgid "Internet connection is not active." msgstr "Η σύνδεση στο διαδίκτυο δεν είναι ενεργή." -#: src/Gtk/MainWindow.vala:538 +#: src/Gtk/MainWindow.vala:580 msgid "Refreshing..." msgstr "Ανανέωση..." -#: src/Gtk/MainWindow.vala:627 +#: src/Gtk/MainWindow.vala:665 msgid "available" msgstr "διαθέσιμος" -#: src/Gtk/MainWindow.vala:639 +#: src/Gtk/MainWindow.vala:677 msgid "Already Installed" msgstr "Ήδη εγκατεστημένος" -#: src/Gtk/ProgressWindow.vala:142 src/Gtk/TerminalWindow.vala:149 -#: src/Utility/Gtk/CustomMessageDialog.vala:153 +#: src/Gtk/ProgressWindow.vala:127 src/Gtk/TerminalWindow.vala:149 +#: src/Utility/Gtk/CustomMessageDialog.vala:154 msgid "Cancel" msgstr "Άκυρο" @@ -506,11 +515,11 @@ msgstr "Τεκμηριωτές" msgid "Third Party Inclusions" msgstr "Συμπεριλήψεις τρίτων" -#: src/Utility/Gtk/CustomMessageDialog.vala:157 +#: src/Utility/Gtk/CustomMessageDialog.vala:158 msgid "Yes" msgstr "Ναι" -#: src/Utility/Gtk/CustomMessageDialog.vala:158 +#: src/Utility/Gtk/CustomMessageDialog.vala:159 msgid "No" msgstr "Όχι" diff --git a/po/es.po b/po/es.po index 6103efbd..4e24bf1d 100644 --- a/po/es.po +++ b/po/es.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-02-02 18:20-0500\n" +"POT-Creation-Date: 2023-02-21 10:04-0500\n" "PO-Revision-Date: 2018-01-03 02:03-0600\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish\n" @@ -21,99 +21,99 @@ msgstr "Distribución" msgid "Architecture" msgstr "Arquitectura del sistema" -#: src/Common/LinuxKernel.vala:297 +#: src/Common/LinuxKernel.vala:299 msgid "Fetching index..." msgstr "Recuperando índice..." -#: src/Common/LinuxKernel.vala:336 +#: src/Common/LinuxKernel.vala:331 msgid "Fetching index from kernel.ubuntu.com..." msgstr "Recuperando índice de kernel.ubuntu.com…" -#: src/Common/LinuxKernel.vala:592 +#: src/Common/LinuxKernel.vala:578 msgid "Could not find running kernel in list!" msgstr "¡No se pudo encontrar el núcleo en ejecución en la lista!" -#: src/Common/LinuxKernel.vala:598 +#: src/Common/LinuxKernel.vala:584 #, fuzzy msgid "Could not find any kernels to uninstall" msgstr "Seleccione los núcleos que se desinstalarán" -#: src/Common/LinuxKernel.vala:607 +#: src/Common/LinuxKernel.vala:593 #, fuzzy msgid "The following kernels will be uninstalled:" msgstr "Los siguientes kernels serán eliminados:" -#: src/Common/LinuxKernel.vala:614 +#: src/Common/LinuxKernel.vala:600 msgid "Continue ?" msgstr "¿Continuar?" -#: src/Common/LinuxKernel.vala:640 src/Console/AppConsole.vala:314 +#: src/Common/LinuxKernel.vala:626 src/Console/AppConsole.vala:314 msgid "Latest update" msgstr "" -#: src/Common/LinuxKernel.vala:651 src/Console/AppConsole.vala:321 +#: src/Common/LinuxKernel.vala:637 src/Console/AppConsole.vala:321 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:659 src/Console/AppConsole.vala:326 +#: src/Common/LinuxKernel.vala:645 src/Console/AppConsole.vala:326 #: src/Console/AppConsole.vala:387 msgid "No updates found" msgstr "No se encontró ninguna actualización" -#: src/Common/LinuxKernel.vala:669 +#: src/Common/LinuxKernel.vala:655 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "" -#: src/Common/LinuxKernel.vala:930 +#: src/Common/LinuxKernel.vala:916 msgid "Packages Available" msgstr "Paquetes disponibles" -#: src/Common/LinuxKernel.vala:938 +#: src/Common/LinuxKernel.vala:924 msgid "Packages Installed" msgstr "Paquetes instalados" -#: src/Common/LinuxKernel.vala:1018 +#: src/Common/LinuxKernel.vala:1004 msgid "Available Kernels" msgstr "Núcleos disponibles" -#: src/Common/LinuxKernel.vala:1025 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1011 src/Gtk/MainWindow.vala:186 msgid "Installed" msgstr "Instalado" -#: src/Common/LinuxKernel.vala:1025 src/Gtk/MainWindow.vala:186 -#: src/Gtk/MainWindow.vala:617 src/Gtk/MainWindow.vala:631 +#: src/Common/LinuxKernel.vala:1011 src/Gtk/MainWindow.vala:186 +#: src/Gtk/MainWindow.vala:655 src/Gtk/MainWindow.vala:669 msgid "Running" msgstr "En ejecución" -#: src/Common/LinuxKernel.vala:1062 +#: src/Common/LinuxKernel.vala:1048 msgid "Downloading" msgstr "Descargando" -#: src/Common/LinuxKernel.vala:1081 -#: src/Utility/Gtk/CustomMessageDialog.vala:148 -#: src/Utility/Gtk/CustomMessageDialog.vala:152 +#: src/Common/LinuxKernel.vala:1067 +#: src/Utility/Gtk/CustomMessageDialog.vala:149 +#: src/Utility/Gtk/CustomMessageDialog.vala:153 msgid "OK" msgstr "Aceptar" -#: src/Common/LinuxKernel.vala:1086 +#: src/Common/LinuxKernel.vala:1072 msgid "ERROR" msgstr "ERROR" -#: src/Common/LinuxKernel.vala:1100 src/Gtk/MainWindow.vala:639 +#: src/Common/LinuxKernel.vala:1086 src/Gtk/MainWindow.vala:677 msgid "This kernel is already installed." msgstr "Este núcleo ya se instaló." -#: src/Common/LinuxKernel.vala:1126 +#: src/Common/LinuxKernel.vala:1112 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "Instalación finalizada. Se necesita reiniciar para utilizar el núcleo nuevo." -#: src/Common/LinuxKernel.vala:1129 +#: src/Common/LinuxKernel.vala:1115 msgid "Installation completed with errors" msgstr "Instalación finalizada con errores" -#: src/Common/LinuxKernel.vala:1144 +#: src/Common/LinuxKernel.vala:1130 #, fuzzy msgid "" "Selected kernel is currently running and cannot be un-installed.\n" @@ -122,20 +122,20 @@ msgstr "" "El núcleo seleccionado está en ejecución y no puede desinstalarse.\n" "Instale otro núcleo antes de desinstalar este." -#: src/Common/LinuxKernel.vala:1149 +#: src/Common/LinuxKernel.vala:1135 #, fuzzy msgid "Preparing to uninstall selected kernels" msgstr "Preparándose para desinstalar los núcleos seleccionados" -#: src/Common/LinuxKernel.vala:1180 src/Common/LinuxKernel.vala:1227 +#: src/Common/LinuxKernel.vala:1166 src/Common/LinuxKernel.vala:1213 msgid "Un-install completed" msgstr "Desinstalación finalizada" -#: src/Common/LinuxKernel.vala:1183 src/Common/LinuxKernel.vala:1230 +#: src/Common/LinuxKernel.vala:1169 src/Common/LinuxKernel.vala:1216 msgid "Un-install completed with errors" msgstr "Desinstalación finalizada con errores" -#: src/Common/LinuxKernel.vala:1196 +#: src/Common/LinuxKernel.vala:1182 #, fuzzy msgid "" "This kernel is currently running and cannot be un-installed.\n" @@ -144,11 +144,11 @@ msgstr "" "Este núcleo está en ejecución y no se puede desinstalar.\n" "Instale otro núcleo antes de desinstalar este." -#: src/Common/Main.vala:241 +#: src/Common/Main.vala:240 msgid "Called from" msgstr "" -#: src/Common/Main.vala:275 +#: src/Common/Main.vala:274 #, fuzzy msgid "Notifications are disabled" msgstr "Notificación" @@ -158,7 +158,7 @@ msgstr "Notificación" msgid "File not found: %s" msgstr "No se encontró el archivo: %s" -#: src/Console/AppConsole.vala:62 src/Gtk/AppGtk.vala:149 +#: src/Console/AppConsole.vala:62 src/Gtk/AppGtk.vala:152 msgid "Syntax" msgstr "Sintaxis" @@ -212,7 +212,7 @@ msgstr "Descargar paquetes del núcleo especificado" msgid "Remove files from application cache" msgstr "Quitar archivos de la antememoria de la aplicación" -#: src/Console/AppConsole.vala:78 src/Gtk/AppGtk.vala:151 +#: src/Console/AppConsole.vala:78 src/Gtk/AppGtk.vala:154 msgid "Options" msgstr "Opciones" @@ -246,7 +246,7 @@ msgid "" "One or more version strings (comma-separated) taken from the output of --list" msgstr "" -#: src/Console/AppConsole.vala:169 src/Gtk/AppGtk.vala:136 +#: src/Console/AppConsole.vala:169 src/Gtk/AppGtk.vala:139 msgid "Unknown option" msgstr "Opción desconocida" @@ -300,11 +300,11 @@ msgstr "Paquetes disponibles" msgid "Install" msgstr "Instalar" -#: src/Gtk/AppGtk.vala:153 +#: src/Gtk/AppGtk.vala:156 msgid "Print debug information" msgstr "Mostrar información de depuración" -#: src/Gtk/AppGtk.vala:154 +#: src/Gtk/AppGtk.vala:157 msgid "Show all options" msgstr "Mostrar todas las opciones" @@ -324,8 +324,8 @@ msgstr "Actualizar" msgid "Internet connection is not active" msgstr "La conexión a Internet está inactiva" -#: src/Gtk/MainWindow.vala:321 src/Gtk/MainWindow.vala:525 -#: src/Gtk/MainWindow.vala:644 +#: src/Gtk/MainWindow.vala:321 src/Gtk/MainWindow.vala:562 +#: src/Gtk/MainWindow.vala:682 msgid "No Internet" msgstr "No hay Internet" @@ -356,7 +356,7 @@ msgid "Select the kernels to uninstall" msgstr "Seleccione el núcleo que se instalará" #: src/Gtk/MainWindow.vala:383 src/Gtk/MainWindow.vala:417 -#: src/Gtk/MainWindow.vala:676 +#: src/Gtk/MainWindow.vala:714 msgid "Close window to exit..." msgstr "" @@ -373,48 +373,57 @@ msgstr "" msgid "Changes" msgstr "Cambios" -#: src/Gtk/MainWindow.vala:435 src/Gtk/SettingsDialog.vala:50 +#: src/Gtk/MainWindow.vala:440 +msgid "Error while downloading the changelog:\n" +msgstr "" + +#: src/Gtk/MainWindow.vala:450 +#, fuzzy +msgid "Downloading the changelog" +msgstr "Descargando" + +#: src/Gtk/MainWindow.vala:472 src/Gtk/SettingsDialog.vala:50 msgid "Settings" msgstr "Configuración" -#: src/Gtk/MainWindow.vala:458 +#: src/Gtk/MainWindow.vala:495 msgid "About" msgstr "Acerca de" -#: src/Gtk/MainWindow.vala:503 +#: src/Gtk/MainWindow.vala:540 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "" "Herramienta de renovación de núcleo para distribuciones basadas en Ubuntu" -#: src/Gtk/MainWindow.vala:504 +#: src/Gtk/MainWindow.vala:541 msgid "Forked" msgstr "" -#: src/Gtk/MainWindow.vala:504 +#: src/Gtk/MainWindow.vala:541 msgid "Original" msgstr "" -#: src/Gtk/MainWindow.vala:525 src/Gtk/MainWindow.vala:644 +#: src/Gtk/MainWindow.vala:562 src/Gtk/MainWindow.vala:682 #, fuzzy msgid "Internet connection is not active." msgstr "La conexión a Internet está inactiva" -#: src/Gtk/MainWindow.vala:538 +#: src/Gtk/MainWindow.vala:580 msgid "Refreshing..." msgstr "Actualizando…" -#: src/Gtk/MainWindow.vala:627 +#: src/Gtk/MainWindow.vala:665 #, fuzzy msgid "available" msgstr "Paquetes disponibles" -#: src/Gtk/MainWindow.vala:639 +#: src/Gtk/MainWindow.vala:677 #, fuzzy msgid "Already Installed" msgstr "Instalado" -#: src/Gtk/ProgressWindow.vala:142 src/Gtk/TerminalWindow.vala:149 -#: src/Utility/Gtk/CustomMessageDialog.vala:153 +#: src/Gtk/ProgressWindow.vala:127 src/Gtk/TerminalWindow.vala:149 +#: src/Utility/Gtk/CustomMessageDialog.vala:154 msgid "Cancel" msgstr "Cancelar" @@ -520,11 +529,11 @@ msgstr "Documentadores" msgid "Third Party Inclusions" msgstr "Herramientas de terceros" -#: src/Utility/Gtk/CustomMessageDialog.vala:157 +#: src/Utility/Gtk/CustomMessageDialog.vala:158 msgid "Yes" msgstr "Sí" -#: src/Utility/Gtk/CustomMessageDialog.vala:158 +#: src/Utility/Gtk/CustomMessageDialog.vala:159 msgid "No" msgstr "No" diff --git a/po/fr.po b/po/fr.po index 4ee5cbb6..83570039 100644 --- a/po/fr.po +++ b/po/fr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-02-02 18:20-0500\n" +"POT-Creation-Date: 2023-02-21 10:04-0500\n" "PO-Revision-Date: 2018-08-05 15:50+0200\n" "Last-Translator: Yolateng0 \n" "Language-Team: French\n" @@ -21,100 +21,100 @@ msgstr "Distribution" msgid "Architecture" msgstr "Architecture" -#: src/Common/LinuxKernel.vala:297 +#: src/Common/LinuxKernel.vala:299 msgid "Fetching index..." msgstr "Récupération de l'index..." -#: src/Common/LinuxKernel.vala:336 +#: src/Common/LinuxKernel.vala:331 msgid "Fetching index from kernel.ubuntu.com..." msgstr "Récupération de l'index depuis kernel.ubuntu.com..." -#: src/Common/LinuxKernel.vala:592 +#: src/Common/LinuxKernel.vala:578 msgid "Could not find running kernel in list!" msgstr "Impossible de trouver la version courante dans la liste!" -#: src/Common/LinuxKernel.vala:598 +#: src/Common/LinuxKernel.vala:584 #, fuzzy msgid "Could not find any kernels to uninstall" msgstr "Impossible de trouver de noyaux à supprimer" -#: src/Common/LinuxKernel.vala:607 +#: src/Common/LinuxKernel.vala:593 #, fuzzy msgid "The following kernels will be uninstalled:" msgstr "Les noyaux suivants seront supprimés:" -#: src/Common/LinuxKernel.vala:614 +#: src/Common/LinuxKernel.vala:600 msgid "Continue ?" msgstr "Reprendre ?" -#: src/Common/LinuxKernel.vala:640 src/Console/AppConsole.vala:314 +#: src/Common/LinuxKernel.vala:626 src/Console/AppConsole.vala:314 msgid "Latest update" msgstr "Dernière mise à jour" -#: src/Common/LinuxKernel.vala:651 src/Console/AppConsole.vala:321 +#: src/Common/LinuxKernel.vala:637 src/Console/AppConsole.vala:321 msgid "Latest point update" msgstr "Dernière mise à jour mineure" -#: src/Common/LinuxKernel.vala:659 src/Console/AppConsole.vala:326 +#: src/Common/LinuxKernel.vala:645 src/Console/AppConsole.vala:326 #: src/Console/AppConsole.vala:387 msgid "No updates found" msgstr "Aucune mise à jour disponible" -#: src/Common/LinuxKernel.vala:669 +#: src/Common/LinuxKernel.vala:655 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Installer le noyau en version %s ? (y/n): " -#: src/Common/LinuxKernel.vala:930 +#: src/Common/LinuxKernel.vala:916 msgid "Packages Available" msgstr "Paquets Disponibles" -#: src/Common/LinuxKernel.vala:938 +#: src/Common/LinuxKernel.vala:924 msgid "Packages Installed" msgstr "Paquets Installés" -#: src/Common/LinuxKernel.vala:1018 +#: src/Common/LinuxKernel.vala:1004 msgid "Available Kernels" msgstr "Noyaux Disponibles" -#: src/Common/LinuxKernel.vala:1025 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1011 src/Gtk/MainWindow.vala:186 msgid "Installed" msgstr "Installé" -#: src/Common/LinuxKernel.vala:1025 src/Gtk/MainWindow.vala:186 -#: src/Gtk/MainWindow.vala:617 src/Gtk/MainWindow.vala:631 +#: src/Common/LinuxKernel.vala:1011 src/Gtk/MainWindow.vala:186 +#: src/Gtk/MainWindow.vala:655 src/Gtk/MainWindow.vala:669 msgid "Running" msgstr "Actuel" -#: src/Common/LinuxKernel.vala:1062 +#: src/Common/LinuxKernel.vala:1048 msgid "Downloading" msgstr "Téléchargement" -#: src/Common/LinuxKernel.vala:1081 -#: src/Utility/Gtk/CustomMessageDialog.vala:148 -#: src/Utility/Gtk/CustomMessageDialog.vala:152 +#: src/Common/LinuxKernel.vala:1067 +#: src/Utility/Gtk/CustomMessageDialog.vala:149 +#: src/Utility/Gtk/CustomMessageDialog.vala:153 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:1086 +#: src/Common/LinuxKernel.vala:1072 msgid "ERROR" msgstr "ERREUR" -#: src/Common/LinuxKernel.vala:1100 src/Gtk/MainWindow.vala:639 +#: src/Common/LinuxKernel.vala:1086 src/Gtk/MainWindow.vala:677 msgid "This kernel is already installed." msgstr "Ce noyau est déjà installé." -#: src/Common/LinuxKernel.vala:1126 +#: src/Common/LinuxKernel.vala:1112 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "Installation complétée. Un redémarrage est nécessaire pour utiliser le " "nouveau noyau." -#: src/Common/LinuxKernel.vala:1129 +#: src/Common/LinuxKernel.vala:1115 msgid "Installation completed with errors" msgstr "Installation terminée avec des erreurs" -#: src/Common/LinuxKernel.vala:1144 +#: src/Common/LinuxKernel.vala:1130 #, fuzzy msgid "" "Selected kernel is currently running and cannot be un-installed.\n" @@ -123,20 +123,20 @@ msgstr "" "Ce noyau est en cours d'exécution et ne peut pas être supprimé.\n" " Installez un autre noyau avant de retirer celui-ci." -#: src/Common/LinuxKernel.vala:1149 +#: src/Common/LinuxKernel.vala:1135 #, fuzzy msgid "Preparing to uninstall selected kernels" msgstr "Préparation à la suppression des noyaux sélectionnés" -#: src/Common/LinuxKernel.vala:1180 src/Common/LinuxKernel.vala:1227 +#: src/Common/LinuxKernel.vala:1166 src/Common/LinuxKernel.vala:1213 msgid "Un-install completed" msgstr "Désinstallation complète" -#: src/Common/LinuxKernel.vala:1183 src/Common/LinuxKernel.vala:1230 +#: src/Common/LinuxKernel.vala:1169 src/Common/LinuxKernel.vala:1216 msgid "Un-install completed with errors" msgstr "Désinstallation terminée avec des erreurs" -#: src/Common/LinuxKernel.vala:1196 +#: src/Common/LinuxKernel.vala:1182 #, fuzzy msgid "" "This kernel is currently running and cannot be un-installed.\n" @@ -145,11 +145,11 @@ msgstr "" "Ce noyau est en cours d'exécution et ne peut pas être supprimé.\n" " Installez un autre noyau avant de retirer celui-ci." -#: src/Common/Main.vala:241 +#: src/Common/Main.vala:240 msgid "Called from" msgstr "" -#: src/Common/Main.vala:275 +#: src/Common/Main.vala:274 msgid "Notifications are disabled" msgstr "Les notifications sont désactivées" @@ -158,7 +158,7 @@ msgstr "Les notifications sont désactivées" msgid "File not found: %s" msgstr "Fichier non trouvé: %s" -#: src/Console/AppConsole.vala:62 src/Gtk/AppGtk.vala:149 +#: src/Console/AppConsole.vala:62 src/Gtk/AppGtk.vala:152 msgid "Syntax" msgstr "Syntaxe" @@ -212,7 +212,7 @@ msgstr "Télécharger les noyaux spécifiés" msgid "Remove files from application cache" msgstr "Supprimer les fichiers du cache de l'application" -#: src/Console/AppConsole.vala:78 src/Gtk/AppGtk.vala:151 +#: src/Console/AppConsole.vala:78 src/Gtk/AppGtk.vala:154 msgid "Options" msgstr "Options" @@ -248,7 +248,7 @@ msgstr "" "Une ou plusieurs versions (séparées par des virgules) prises du résultat de " "--list" -#: src/Console/AppConsole.vala:169 src/Gtk/AppGtk.vala:136 +#: src/Console/AppConsole.vala:169 src/Gtk/AppGtk.vala:139 msgid "Unknown option" msgstr "Option inconnue" @@ -301,11 +301,11 @@ msgstr "Paquet %s disponibles" msgid "Install" msgstr "Installer" -#: src/Gtk/AppGtk.vala:153 +#: src/Gtk/AppGtk.vala:156 msgid "Print debug information" msgstr "Afficher les informations de débogage" -#: src/Gtk/AppGtk.vala:154 +#: src/Gtk/AppGtk.vala:157 msgid "Show all options" msgstr "Afficher toutes les options" @@ -325,8 +325,8 @@ msgstr "Actualiser" msgid "Internet connection is not active" msgstr "Connexion internet inexistante" -#: src/Gtk/MainWindow.vala:321 src/Gtk/MainWindow.vala:525 -#: src/Gtk/MainWindow.vala:644 +#: src/Gtk/MainWindow.vala:321 src/Gtk/MainWindow.vala:562 +#: src/Gtk/MainWindow.vala:682 msgid "No Internet" msgstr "Pas d'Internet" @@ -357,7 +357,7 @@ msgid "Select the kernels to uninstall" msgstr "Sélectionnez le noyau à installer" #: src/Gtk/MainWindow.vala:383 src/Gtk/MainWindow.vala:417 -#: src/Gtk/MainWindow.vala:676 +#: src/Gtk/MainWindow.vala:714 msgid "Close window to exit..." msgstr "Fermer la fenêtre pour quitter..." @@ -375,46 +375,55 @@ msgstr "Désinstalle les noyaux plus anciens que le noyau courant" msgid "Changes" msgstr "Changements" -#: src/Gtk/MainWindow.vala:435 src/Gtk/SettingsDialog.vala:50 +#: src/Gtk/MainWindow.vala:440 +msgid "Error while downloading the changelog:\n" +msgstr "" + +#: src/Gtk/MainWindow.vala:450 +#, fuzzy +msgid "Downloading the changelog" +msgstr "Téléchargement" + +#: src/Gtk/MainWindow.vala:472 src/Gtk/SettingsDialog.vala:50 msgid "Settings" msgstr "Paramètres" -#: src/Gtk/MainWindow.vala:458 +#: src/Gtk/MainWindow.vala:495 msgid "About" msgstr "À propos" -#: src/Gtk/MainWindow.vala:503 +#: src/Gtk/MainWindow.vala:540 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "" "Utilitaire de mise à niveau des noyaux pour les distributions basées sur " "Ubuntu" -#: src/Gtk/MainWindow.vala:504 +#: src/Gtk/MainWindow.vala:541 msgid "Forked" msgstr "Version forkée :" -#: src/Gtk/MainWindow.vala:504 +#: src/Gtk/MainWindow.vala:541 msgid "Original" msgstr "Version originale :" -#: src/Gtk/MainWindow.vala:525 src/Gtk/MainWindow.vala:644 +#: src/Gtk/MainWindow.vala:562 src/Gtk/MainWindow.vala:682 msgid "Internet connection is not active." msgstr "Connexion internet inexistante" -#: src/Gtk/MainWindow.vala:538 +#: src/Gtk/MainWindow.vala:580 msgid "Refreshing..." msgstr "Actualisation..." -#: src/Gtk/MainWindow.vala:627 +#: src/Gtk/MainWindow.vala:665 msgid "available" msgstr "disponible" -#: src/Gtk/MainWindow.vala:639 +#: src/Gtk/MainWindow.vala:677 msgid "Already Installed" msgstr "Déjà Installé" -#: src/Gtk/ProgressWindow.vala:142 src/Gtk/TerminalWindow.vala:149 -#: src/Utility/Gtk/CustomMessageDialog.vala:153 +#: src/Gtk/ProgressWindow.vala:127 src/Gtk/TerminalWindow.vala:149 +#: src/Utility/Gtk/CustomMessageDialog.vala:154 msgid "Cancel" msgstr "Annuler" @@ -518,11 +527,11 @@ msgstr "Documentalistes" msgid "Third Party Inclusions" msgstr "Dépendances Tierces" -#: src/Utility/Gtk/CustomMessageDialog.vala:157 +#: src/Utility/Gtk/CustomMessageDialog.vala:158 msgid "Yes" msgstr "Oui" -#: src/Utility/Gtk/CustomMessageDialog.vala:158 +#: src/Utility/Gtk/CustomMessageDialog.vala:159 msgid "No" msgstr "Non" diff --git a/po/hr.po b/po/hr.po index bb5d5378..5f3ba356 100644 --- a/po/hr.po +++ b/po/hr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-02-02 18:20-0500\n" +"POT-Creation-Date: 2023-02-21 10:04-0500\n" "PO-Revision-Date: 2022-09-22 12:13+0200\n" "Last-Translator: gogo \n" "Language-Team: Croatian\n" @@ -21,98 +21,98 @@ msgstr "Distribucija" msgid "Architecture" msgstr "Arhitektura" -#: src/Common/LinuxKernel.vala:297 +#: src/Common/LinuxKernel.vala:299 msgid "Fetching index..." msgstr "Preuzimanje sadržaja..." -#: src/Common/LinuxKernel.vala:336 +#: src/Common/LinuxKernel.vala:331 msgid "Fetching index from kernel.ubuntu.com..." msgstr "Preuzimanje sadržaja sa kernel.ubuntu.com..." -#: src/Common/LinuxKernel.vala:592 +#: src/Common/LinuxKernel.vala:578 msgid "Could not find running kernel in list!" msgstr "Nemoguće je pronaći pokrenuti kernel na popisu!" -#: src/Common/LinuxKernel.vala:598 +#: src/Common/LinuxKernel.vala:584 msgid "Could not find any kernels to uninstall" msgstr "Nema pronađenih kernela za deinstaliranje" -#: src/Common/LinuxKernel.vala:607 +#: src/Common/LinuxKernel.vala:593 msgid "The following kernels will be uninstalled:" msgstr "Sljedeći kerneli će biti deinstalirani:" -#: src/Common/LinuxKernel.vala:614 +#: src/Common/LinuxKernel.vala:600 msgid "Continue ?" msgstr "Nastavi?" -#: src/Common/LinuxKernel.vala:640 src/Console/AppConsole.vala:314 +#: src/Common/LinuxKernel.vala:626 src/Console/AppConsole.vala:314 msgid "Latest update" msgstr "Najnovija nadopuna" -#: src/Common/LinuxKernel.vala:651 src/Console/AppConsole.vala:321 +#: src/Common/LinuxKernel.vala:637 src/Console/AppConsole.vala:321 msgid "Latest point update" msgstr "Najnovija ciljana nadopuna" -#: src/Common/LinuxKernel.vala:659 src/Console/AppConsole.vala:326 +#: src/Common/LinuxKernel.vala:645 src/Console/AppConsole.vala:326 #: src/Console/AppConsole.vala:387 msgid "No updates found" msgstr "Nema pronađenih nadopuna" -#: src/Common/LinuxKernel.vala:669 +#: src/Common/LinuxKernel.vala:655 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Instaliraj kernel inačice %s ? (d/n): " -#: src/Common/LinuxKernel.vala:930 +#: src/Common/LinuxKernel.vala:916 msgid "Packages Available" msgstr "Dostupni paketi" -#: src/Common/LinuxKernel.vala:938 +#: src/Common/LinuxKernel.vala:924 msgid "Packages Installed" msgstr "Instalirani paketi" -#: src/Common/LinuxKernel.vala:1018 +#: src/Common/LinuxKernel.vala:1004 msgid "Available Kernels" msgstr "Dostupni kerneli" -#: src/Common/LinuxKernel.vala:1025 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1011 src/Gtk/MainWindow.vala:186 msgid "Installed" msgstr "Instalirano" -#: src/Common/LinuxKernel.vala:1025 src/Gtk/MainWindow.vala:186 -#: src/Gtk/MainWindow.vala:617 src/Gtk/MainWindow.vala:631 +#: src/Common/LinuxKernel.vala:1011 src/Gtk/MainWindow.vala:186 +#: src/Gtk/MainWindow.vala:655 src/Gtk/MainWindow.vala:669 msgid "Running" msgstr "Pokrenuto" -#: src/Common/LinuxKernel.vala:1062 +#: src/Common/LinuxKernel.vala:1048 msgid "Downloading" msgstr "Preuzimanje" -#: src/Common/LinuxKernel.vala:1081 -#: src/Utility/Gtk/CustomMessageDialog.vala:148 -#: src/Utility/Gtk/CustomMessageDialog.vala:152 +#: src/Common/LinuxKernel.vala:1067 +#: src/Utility/Gtk/CustomMessageDialog.vala:149 +#: src/Utility/Gtk/CustomMessageDialog.vala:153 msgid "OK" msgstr "U redu" -#: src/Common/LinuxKernel.vala:1086 +#: src/Common/LinuxKernel.vala:1072 msgid "ERROR" msgstr "GREŠKA" -#: src/Common/LinuxKernel.vala:1100 src/Gtk/MainWindow.vala:639 +#: src/Common/LinuxKernel.vala:1086 src/Gtk/MainWindow.vala:677 msgid "This kernel is already installed." msgstr "Ovaj kernel je već instaliran." -#: src/Common/LinuxKernel.vala:1126 +#: src/Common/LinuxKernel.vala:1112 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "Instalacija je završena. Potrebno je ponovno pokretanje računala kako bi se " "koristio novi kernel." -#: src/Common/LinuxKernel.vala:1129 +#: src/Common/LinuxKernel.vala:1115 msgid "Installation completed with errors" msgstr "Instalacija je završena s greškama" -#: src/Common/LinuxKernel.vala:1144 +#: src/Common/LinuxKernel.vala:1130 msgid "" "Selected kernel is currently running and cannot be un-installed.\n" " Install another kernel before un-installing this one." @@ -120,19 +120,19 @@ msgstr "" "Odabrani kernel je trenutno pokernut i ne može se deinstalirati.\n" " Instalirajte drugi kernel prije uklanjanja trenutnog kernela." -#: src/Common/LinuxKernel.vala:1149 +#: src/Common/LinuxKernel.vala:1135 msgid "Preparing to uninstall selected kernels" msgstr "Pripremanje deinstalacije odabranih kernela" -#: src/Common/LinuxKernel.vala:1180 src/Common/LinuxKernel.vala:1227 +#: src/Common/LinuxKernel.vala:1166 src/Common/LinuxKernel.vala:1213 msgid "Un-install completed" msgstr "Deinstalacija završena" -#: src/Common/LinuxKernel.vala:1183 src/Common/LinuxKernel.vala:1230 +#: src/Common/LinuxKernel.vala:1169 src/Common/LinuxKernel.vala:1216 msgid "Un-install completed with errors" msgstr "Deinstalacija završena s greškama" -#: src/Common/LinuxKernel.vala:1196 +#: src/Common/LinuxKernel.vala:1182 msgid "" "This kernel is currently running and cannot be un-installed.\n" " Install another kernel before un-installing this one." @@ -140,11 +140,11 @@ msgstr "" "Ovaj kernel je trenutno pokrenut i ne može se deinstalirati.\n" " Instalirajte drugi kernel prije uklanjanja trenutnog kernela." -#: src/Common/Main.vala:241 +#: src/Common/Main.vala:240 msgid "Called from" msgstr "Pozvano od" -#: src/Common/Main.vala:275 +#: src/Common/Main.vala:274 msgid "Notifications are disabled" msgstr "Obavijesti su onemogućene" @@ -153,7 +153,7 @@ msgstr "Obavijesti su onemogućene" msgid "File not found: %s" msgstr "Datoteka nije pronađena: %s" -#: src/Console/AppConsole.vala:62 src/Gtk/AppGtk.vala:149 +#: src/Console/AppConsole.vala:62 src/Gtk/AppGtk.vala:152 msgid "Syntax" msgstr "Sintaksa" @@ -205,7 +205,7 @@ msgstr "Preuzmi određene kernele" msgid "Remove files from application cache" msgstr "Ukloni datoteke iz predmemorije aplikacije" -#: src/Console/AppConsole.vala:78 src/Gtk/AppGtk.vala:151 +#: src/Console/AppConsole.vala:78 src/Gtk/AppGtk.vala:154 msgid "Options" msgstr "Mogućnosti" @@ -239,7 +239,7 @@ msgid "" msgstr "" "Jedan ili više izraza inačice (zarezom odvojeni) uzetih iz zapisa --list" -#: src/Console/AppConsole.vala:169 src/Gtk/AppGtk.vala:136 +#: src/Console/AppConsole.vala:169 src/Gtk/AppGtk.vala:139 msgid "Unknown option" msgstr "Nepoznata mogućnost" @@ -290,11 +290,11 @@ msgstr "Kernel %s je dostupan" msgid "Install" msgstr "Instaliraj" -#: src/Gtk/AppGtk.vala:153 +#: src/Gtk/AppGtk.vala:156 msgid "Print debug information" msgstr "Ispiši informacije otklanjanja grešaka" -#: src/Gtk/AppGtk.vala:154 +#: src/Gtk/AppGtk.vala:157 msgid "Show all options" msgstr "Prikaži sve mogućnosti" @@ -314,8 +314,8 @@ msgstr "Osvježi" msgid "Internet connection is not active" msgstr "Internet povezivanje nije aktivno" -#: src/Gtk/MainWindow.vala:321 src/Gtk/MainWindow.vala:525 -#: src/Gtk/MainWindow.vala:644 +#: src/Gtk/MainWindow.vala:321 src/Gtk/MainWindow.vala:562 +#: src/Gtk/MainWindow.vala:682 msgid "No Internet" msgstr "Nema pristupa internetu" @@ -344,7 +344,7 @@ msgid "Select the kernels to uninstall" msgstr "Odaberi kernel za deinstalaciju" #: src/Gtk/MainWindow.vala:383 src/Gtk/MainWindow.vala:417 -#: src/Gtk/MainWindow.vala:676 +#: src/Gtk/MainWindow.vala:714 msgid "Close window to exit..." msgstr "Zatvori prozor i izađi..." @@ -360,44 +360,53 @@ msgstr "Deinstaliraj kernele starije od pokrenutog krenela" msgid "Changes" msgstr "Promjene" -#: src/Gtk/MainWindow.vala:435 src/Gtk/SettingsDialog.vala:50 +#: src/Gtk/MainWindow.vala:440 +msgid "Error while downloading the changelog:\n" +msgstr "" + +#: src/Gtk/MainWindow.vala:450 +#, fuzzy +msgid "Downloading the changelog" +msgstr "Preuzimanje" + +#: src/Gtk/MainWindow.vala:472 src/Gtk/SettingsDialog.vala:50 msgid "Settings" msgstr "Postavke" -#: src/Gtk/MainWindow.vala:458 +#: src/Gtk/MainWindow.vala:495 msgid "About" msgstr "O programu" -#: src/Gtk/MainWindow.vala:503 +#: src/Gtk/MainWindow.vala:540 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Alat za nadogradnju kernela Ubuntu temeljenih distribucija" -#: src/Gtk/MainWindow.vala:504 +#: src/Gtk/MainWindow.vala:541 msgid "Forked" msgstr "Forkano" -#: src/Gtk/MainWindow.vala:504 +#: src/Gtk/MainWindow.vala:541 msgid "Original" msgstr "Izvornik" -#: src/Gtk/MainWindow.vala:525 src/Gtk/MainWindow.vala:644 +#: src/Gtk/MainWindow.vala:562 src/Gtk/MainWindow.vala:682 msgid "Internet connection is not active." msgstr "Internet povezivanje nije aktivno." -#: src/Gtk/MainWindow.vala:538 +#: src/Gtk/MainWindow.vala:580 msgid "Refreshing..." msgstr "Osvježavanje..." -#: src/Gtk/MainWindow.vala:627 +#: src/Gtk/MainWindow.vala:665 msgid "available" msgstr "dostupno" -#: src/Gtk/MainWindow.vala:639 +#: src/Gtk/MainWindow.vala:677 msgid "Already Installed" msgstr "Već instalirano" -#: src/Gtk/ProgressWindow.vala:142 src/Gtk/TerminalWindow.vala:149 -#: src/Utility/Gtk/CustomMessageDialog.vala:153 +#: src/Gtk/ProgressWindow.vala:127 src/Gtk/TerminalWindow.vala:149 +#: src/Utility/Gtk/CustomMessageDialog.vala:154 msgid "Cancel" msgstr "Odustani" @@ -501,11 +510,11 @@ msgstr "Autori dokumentacije" msgid "Third Party Inclusions" msgstr "Uključene treće strane" -#: src/Utility/Gtk/CustomMessageDialog.vala:157 +#: src/Utility/Gtk/CustomMessageDialog.vala:158 msgid "Yes" msgstr "Da" -#: src/Utility/Gtk/CustomMessageDialog.vala:158 +#: src/Utility/Gtk/CustomMessageDialog.vala:159 msgid "No" msgstr "Ne" diff --git a/po/it.po b/po/it.po index 57601330..750f26fd 100644 --- a/po/it.po +++ b/po/it.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline 1.0.15\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-02-02 18:20-0500\n" +"POT-Creation-Date: 2023-02-21 10:04-0500\n" "PO-Revision-Date: 2020-08-22 15:35+0100\n" "Last-Translator: Albano Battistella \n" "Language-Team: Italian\n" @@ -19,98 +19,98 @@ msgstr "Distribuzione" msgid "Architecture" msgstr "Architettura" -#: src/Common/LinuxKernel.vala:297 +#: src/Common/LinuxKernel.vala:299 msgid "Fetching index..." msgstr "Recupero indice in corso..." -#: src/Common/LinuxKernel.vala:336 +#: src/Common/LinuxKernel.vala:331 msgid "Fetching index from kernel.ubuntu.com..." msgstr "Recupero dell'indice da kernel.ubuntu.com..." -#: src/Common/LinuxKernel.vala:592 +#: src/Common/LinuxKernel.vala:578 msgid "Could not find running kernel in list!" msgstr "Impossibile trovare il kernel in esecuzione nell'elenco!" -#: src/Common/LinuxKernel.vala:598 +#: src/Common/LinuxKernel.vala:584 msgid "Could not find any kernels to uninstall" msgstr "Impossibile trovare alcun kernel da rimuovere" -#: src/Common/LinuxKernel.vala:607 +#: src/Common/LinuxKernel.vala:593 msgid "The following kernels will be uninstalled:" msgstr "I seguenti kernel verranno rimossi:" -#: src/Common/LinuxKernel.vala:614 +#: src/Common/LinuxKernel.vala:600 msgid "Continue ?" msgstr "Continuare ?" -#: src/Common/LinuxKernel.vala:640 src/Console/AppConsole.vala:314 +#: src/Common/LinuxKernel.vala:626 src/Console/AppConsole.vala:314 msgid "Latest update" msgstr "Ultimo aggiornamento" -#: src/Common/LinuxKernel.vala:651 src/Console/AppConsole.vala:321 +#: src/Common/LinuxKernel.vala:637 src/Console/AppConsole.vala:321 msgid "Latest point update" msgstr "Ultimo aggiornamento del punto" -#: src/Common/LinuxKernel.vala:659 src/Console/AppConsole.vala:326 +#: src/Common/LinuxKernel.vala:645 src/Console/AppConsole.vala:326 #: src/Console/AppConsole.vala:387 msgid "No updates found" msgstr "Nessun aggiornamento trovato" -#: src/Common/LinuxKernel.vala:669 +#: src/Common/LinuxKernel.vala:655 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Installare la versione del kernel %s ? (y/n): " -#: src/Common/LinuxKernel.vala:930 +#: src/Common/LinuxKernel.vala:916 msgid "Packages Available" msgstr "Pacchetti disponibili" -#: src/Common/LinuxKernel.vala:938 +#: src/Common/LinuxKernel.vala:924 msgid "Packages Installed" msgstr "Pacchetti installati" -#: src/Common/LinuxKernel.vala:1018 +#: src/Common/LinuxKernel.vala:1004 msgid "Available Kernels" msgstr "Kernel disponibili" -#: src/Common/LinuxKernel.vala:1025 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1011 src/Gtk/MainWindow.vala:186 msgid "Installed" msgstr "Installato" -#: src/Common/LinuxKernel.vala:1025 src/Gtk/MainWindow.vala:186 -#: src/Gtk/MainWindow.vala:617 src/Gtk/MainWindow.vala:631 +#: src/Common/LinuxKernel.vala:1011 src/Gtk/MainWindow.vala:186 +#: src/Gtk/MainWindow.vala:655 src/Gtk/MainWindow.vala:669 msgid "Running" msgstr "In esecuzione" -#: src/Common/LinuxKernel.vala:1062 +#: src/Common/LinuxKernel.vala:1048 msgid "Downloading" msgstr "Download in corso" -#: src/Common/LinuxKernel.vala:1081 -#: src/Utility/Gtk/CustomMessageDialog.vala:148 -#: src/Utility/Gtk/CustomMessageDialog.vala:152 +#: src/Common/LinuxKernel.vala:1067 +#: src/Utility/Gtk/CustomMessageDialog.vala:149 +#: src/Utility/Gtk/CustomMessageDialog.vala:153 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:1086 +#: src/Common/LinuxKernel.vala:1072 msgid "ERROR" msgstr "ERRORE" -#: src/Common/LinuxKernel.vala:1100 src/Gtk/MainWindow.vala:639 +#: src/Common/LinuxKernel.vala:1086 src/Gtk/MainWindow.vala:677 msgid "This kernel is already installed." msgstr "Questo kernel è già installato" -#: src/Common/LinuxKernel.vala:1126 +#: src/Common/LinuxKernel.vala:1112 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "Installazione completata. È necessario riavviare per utilizzare ilnuovo " "kernel." -#: src/Common/LinuxKernel.vala:1129 +#: src/Common/LinuxKernel.vala:1115 msgid "Installation completed with errors" msgstr "Installazione completata con errori" -#: src/Common/LinuxKernel.vala:1144 +#: src/Common/LinuxKernel.vala:1130 msgid "" "Selected kernel is currently running and cannot be un-installed.\n" " Install another kernel before un-installing this one." @@ -118,19 +118,19 @@ msgstr "" "Il kernel selezionato è attualmente in esecuzione e non può essere rimosso.\n" "Installa un altro kernel prima di rimuovere questo." -#: src/Common/LinuxKernel.vala:1149 +#: src/Common/LinuxKernel.vala:1135 msgid "Preparing to uninstall selected kernels" msgstr "Preparazione per rimuovere i kernel selezionati" -#: src/Common/LinuxKernel.vala:1180 src/Common/LinuxKernel.vala:1227 +#: src/Common/LinuxKernel.vala:1166 src/Common/LinuxKernel.vala:1213 msgid "Un-install completed" msgstr "Disinstallazione completata" -#: src/Common/LinuxKernel.vala:1183 src/Common/LinuxKernel.vala:1230 +#: src/Common/LinuxKernel.vala:1169 src/Common/LinuxKernel.vala:1216 msgid "Un-install completed with errors" msgstr "Disinstallazione completata con errori" -#: src/Common/LinuxKernel.vala:1196 +#: src/Common/LinuxKernel.vala:1182 msgid "" "This kernel is currently running and cannot be un-installed.\n" " Install another kernel before un-installing this one." @@ -138,11 +138,11 @@ msgstr "" "Questo kernel è attualmente in esecuzione e non può essere rimosso.\n" " Installa un altro kernel prima di rimuovere questo." -#: src/Common/Main.vala:241 +#: src/Common/Main.vala:240 msgid "Called from" msgstr "Chiamata da" -#: src/Common/Main.vala:275 +#: src/Common/Main.vala:274 msgid "Notifications are disabled" msgstr "Le notifiche sono disabilitate" @@ -151,7 +151,7 @@ msgstr "Le notifiche sono disabilitate" msgid "File not found: %s" msgstr "File non trovato: %s" -#: src/Console/AppConsole.vala:62 src/Gtk/AppGtk.vala:149 +#: src/Console/AppConsole.vala:62 src/Gtk/AppGtk.vala:152 msgid "Syntax" msgstr "Sintassi" @@ -205,7 +205,7 @@ msgstr "Scarica i kernel specificati" msgid "Remove files from application cache" msgstr "Rimuovi i file dalla cache dell'applicazione" -#: src/Console/AppConsole.vala:78 src/Gtk/AppGtk.vala:151 +#: src/Console/AppConsole.vala:78 src/Gtk/AppGtk.vala:154 msgid "Options" msgstr "Opzioni" @@ -240,7 +240,7 @@ msgstr "" "Una o più stringhe di versione (separate da virgole) prese dall'output di --" "list" -#: src/Console/AppConsole.vala:169 src/Gtk/AppGtk.vala:136 +#: src/Console/AppConsole.vala:169 src/Gtk/AppGtk.vala:139 msgid "Unknown option" msgstr "Opzione sconosciuta" @@ -291,11 +291,11 @@ msgstr "Kernel %s Disponibile" msgid "Install" msgstr "Installa" -#: src/Gtk/AppGtk.vala:153 +#: src/Gtk/AppGtk.vala:156 msgid "Print debug information" msgstr "Stampa le informazioni di debug" -#: src/Gtk/AppGtk.vala:154 +#: src/Gtk/AppGtk.vala:157 msgid "Show all options" msgstr "Mostra tutte le opzioni" @@ -315,8 +315,8 @@ msgstr "Aggiorna" msgid "Internet connection is not active" msgstr "La connessione Internet non è attiva" -#: src/Gtk/MainWindow.vala:321 src/Gtk/MainWindow.vala:525 -#: src/Gtk/MainWindow.vala:644 +#: src/Gtk/MainWindow.vala:321 src/Gtk/MainWindow.vala:562 +#: src/Gtk/MainWindow.vala:682 msgid "No Internet" msgstr "Nessuna connessione internet" @@ -345,7 +345,7 @@ msgid "Select the kernels to uninstall" msgstr "Seleziona i kernel da disinstallare" #: src/Gtk/MainWindow.vala:383 src/Gtk/MainWindow.vala:417 -#: src/Gtk/MainWindow.vala:676 +#: src/Gtk/MainWindow.vala:714 msgid "Close window to exit..." msgstr "Chiudere la finestra per uscire..." @@ -361,44 +361,53 @@ msgstr "Rimuovere i kernel installati più vecchi del kernel in esecuzione" msgid "Changes" msgstr "Modifiche" -#: src/Gtk/MainWindow.vala:435 src/Gtk/SettingsDialog.vala:50 +#: src/Gtk/MainWindow.vala:440 +msgid "Error while downloading the changelog:\n" +msgstr "" + +#: src/Gtk/MainWindow.vala:450 +#, fuzzy +msgid "Downloading the changelog" +msgstr "Download in corso" + +#: src/Gtk/MainWindow.vala:472 src/Gtk/SettingsDialog.vala:50 msgid "Settings" msgstr "Impostazioni" -#: src/Gtk/MainWindow.vala:458 +#: src/Gtk/MainWindow.vala:495 msgid "About" msgstr "Informazioni" -#: src/Gtk/MainWindow.vala:503 +#: src/Gtk/MainWindow.vala:540 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Utilità di aggiornamento del kernel per distribuzioni basate su Ubuntu" -#: src/Gtk/MainWindow.vala:504 +#: src/Gtk/MainWindow.vala:541 msgid "Forked" msgstr "Forked" -#: src/Gtk/MainWindow.vala:504 +#: src/Gtk/MainWindow.vala:541 msgid "Original" msgstr "Originale" -#: src/Gtk/MainWindow.vala:525 src/Gtk/MainWindow.vala:644 +#: src/Gtk/MainWindow.vala:562 src/Gtk/MainWindow.vala:682 msgid "Internet connection is not active." msgstr "La connessione Internet non è attiva." -#: src/Gtk/MainWindow.vala:538 +#: src/Gtk/MainWindow.vala:580 msgid "Refreshing..." msgstr "Aggiornamento..." -#: src/Gtk/MainWindow.vala:627 +#: src/Gtk/MainWindow.vala:665 msgid "available" msgstr "disponibile" -#: src/Gtk/MainWindow.vala:639 +#: src/Gtk/MainWindow.vala:677 msgid "Already Installed" msgstr "Già Installato" -#: src/Gtk/ProgressWindow.vala:142 src/Gtk/TerminalWindow.vala:149 -#: src/Utility/Gtk/CustomMessageDialog.vala:153 +#: src/Gtk/ProgressWindow.vala:127 src/Gtk/TerminalWindow.vala:149 +#: src/Utility/Gtk/CustomMessageDialog.vala:154 msgid "Cancel" msgstr "Cancella" @@ -502,11 +511,11 @@ msgstr "Documentatori" msgid "Third Party Inclusions" msgstr "Inclusioni di terze parti" -#: src/Utility/Gtk/CustomMessageDialog.vala:157 +#: src/Utility/Gtk/CustomMessageDialog.vala:158 msgid "Yes" msgstr "Si" -#: src/Utility/Gtk/CustomMessageDialog.vala:158 +#: src/Utility/Gtk/CustomMessageDialog.vala:159 msgid "No" msgstr "No" diff --git a/po/ko.po b/po/ko.po index 0af9406a..6335a27b 100644 --- a/po/ko.po +++ b/po/ko.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline 1.0.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-02-02 18:20-0500\n" +"POT-Creation-Date: 2023-02-21 10:04-0500\n" "PO-Revision-Date: 2022-09-28 11:48+0900\n" "Last-Translator: Kevin Kim \n" "Language-Team: Korean\n" @@ -21,96 +21,96 @@ msgstr "배포판" msgid "Architecture" msgstr "아키텍처" -#: src/Common/LinuxKernel.vala:297 +#: src/Common/LinuxKernel.vala:299 msgid "Fetching index..." msgstr "목록 가져오기..." -#: src/Common/LinuxKernel.vala:336 +#: src/Common/LinuxKernel.vala:331 msgid "Fetching index from kernel.ubuntu.com..." msgstr "최신 커널 목록을 가져오는 중입니다..." -#: src/Common/LinuxKernel.vala:592 +#: src/Common/LinuxKernel.vala:578 msgid "Could not find running kernel in list!" msgstr "목록에서 사용중인 커널을 찾을 수 없습니다!" -#: src/Common/LinuxKernel.vala:598 +#: src/Common/LinuxKernel.vala:584 msgid "Could not find any kernels to uninstall" msgstr "삭제할 커널을 찾을 수 없습니다" -#: src/Common/LinuxKernel.vala:607 +#: src/Common/LinuxKernel.vala:593 msgid "The following kernels will be uninstalled:" msgstr "아래 커널이 삭제됩니다:" -#: src/Common/LinuxKernel.vala:614 +#: src/Common/LinuxKernel.vala:600 msgid "Continue ?" msgstr "계속하시겠습니까?" -#: src/Common/LinuxKernel.vala:640 src/Console/AppConsole.vala:314 +#: src/Common/LinuxKernel.vala:626 src/Console/AppConsole.vala:314 msgid "Latest update" msgstr "최신 업데이트" -#: src/Common/LinuxKernel.vala:651 src/Console/AppConsole.vala:321 +#: src/Common/LinuxKernel.vala:637 src/Console/AppConsole.vala:321 msgid "Latest point update" msgstr "최신 포인트 업데이트" -#: src/Common/LinuxKernel.vala:659 src/Console/AppConsole.vala:326 +#: src/Common/LinuxKernel.vala:645 src/Console/AppConsole.vala:326 #: src/Console/AppConsole.vala:387 msgid "No updates found" msgstr "업데이트를 찾을 수 없습니다" -#: src/Common/LinuxKernel.vala:669 +#: src/Common/LinuxKernel.vala:655 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "커널 %s 버전을 설치하시겠습니까? (y/n): " -#: src/Common/LinuxKernel.vala:930 +#: src/Common/LinuxKernel.vala:916 msgid "Packages Available" msgstr "설치 가능한 패키지" -#: src/Common/LinuxKernel.vala:938 +#: src/Common/LinuxKernel.vala:924 msgid "Packages Installed" msgstr "설치된 패키지" -#: src/Common/LinuxKernel.vala:1018 +#: src/Common/LinuxKernel.vala:1004 msgid "Available Kernels" msgstr "설치 가능한 커널" -#: src/Common/LinuxKernel.vala:1025 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1011 src/Gtk/MainWindow.vala:186 msgid "Installed" msgstr "설치 됨" -#: src/Common/LinuxKernel.vala:1025 src/Gtk/MainWindow.vala:186 -#: src/Gtk/MainWindow.vala:617 src/Gtk/MainWindow.vala:631 +#: src/Common/LinuxKernel.vala:1011 src/Gtk/MainWindow.vala:186 +#: src/Gtk/MainWindow.vala:655 src/Gtk/MainWindow.vala:669 msgid "Running" msgstr "구동 중" -#: src/Common/LinuxKernel.vala:1062 +#: src/Common/LinuxKernel.vala:1048 msgid "Downloading" msgstr "다운로드 중" -#: src/Common/LinuxKernel.vala:1081 -#: src/Utility/Gtk/CustomMessageDialog.vala:148 -#: src/Utility/Gtk/CustomMessageDialog.vala:152 +#: src/Common/LinuxKernel.vala:1067 +#: src/Utility/Gtk/CustomMessageDialog.vala:149 +#: src/Utility/Gtk/CustomMessageDialog.vala:153 msgid "OK" msgstr "확인" -#: src/Common/LinuxKernel.vala:1086 +#: src/Common/LinuxKernel.vala:1072 msgid "ERROR" msgstr "오류" -#: src/Common/LinuxKernel.vala:1100 src/Gtk/MainWindow.vala:639 +#: src/Common/LinuxKernel.vala:1086 src/Gtk/MainWindow.vala:677 msgid "This kernel is already installed." msgstr "이 커널은 이미 설치되었습니다." -#: src/Common/LinuxKernel.vala:1126 +#: src/Common/LinuxKernel.vala:1112 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "설치가 완료되었습닌다. 새 커널을 사용하려면 시스템을 재시작 하세요." -#: src/Common/LinuxKernel.vala:1129 +#: src/Common/LinuxKernel.vala:1115 msgid "Installation completed with errors" msgstr "오류가 있으나 설치가 완료되었습니다" -#: src/Common/LinuxKernel.vala:1144 +#: src/Common/LinuxKernel.vala:1130 msgid "" "Selected kernel is currently running and cannot be un-installed.\n" " Install another kernel before un-installing this one." @@ -118,19 +118,19 @@ msgstr "" "선택된 커널은 현재 사용 중이므로 삭제할 수 없습니다.\n" " 이 커널을 삭제하려면 다른 커널을 먼저 설치하세요." -#: src/Common/LinuxKernel.vala:1149 +#: src/Common/LinuxKernel.vala:1135 msgid "Preparing to uninstall selected kernels" msgstr "선택한 커널을 삭제하기 위해 준비중입니다" -#: src/Common/LinuxKernel.vala:1180 src/Common/LinuxKernel.vala:1227 +#: src/Common/LinuxKernel.vala:1166 src/Common/LinuxKernel.vala:1213 msgid "Un-install completed" msgstr "삭제가 완료되었습니다" -#: src/Common/LinuxKernel.vala:1183 src/Common/LinuxKernel.vala:1230 +#: src/Common/LinuxKernel.vala:1169 src/Common/LinuxKernel.vala:1216 msgid "Un-install completed with errors" msgstr "오류가 있으나 삭제가 완료되었습니다" -#: src/Common/LinuxKernel.vala:1196 +#: src/Common/LinuxKernel.vala:1182 msgid "" "This kernel is currently running and cannot be un-installed.\n" " Install another kernel before un-installing this one." @@ -138,11 +138,11 @@ msgstr "" "이 커널은 현재 사용 중이므로 삭제할 수 없습니다.\n" " 이 커널을 삭제하려면 다른 커널을 먼저 설치하세요." -#: src/Common/Main.vala:241 +#: src/Common/Main.vala:240 msgid "Called from" msgstr "에서 호출" -#: src/Common/Main.vala:275 +#: src/Common/Main.vala:274 msgid "Notifications are disabled" msgstr "알림이 비활성화 되었습니다" @@ -151,7 +151,7 @@ msgstr "알림이 비활성화 되었습니다" msgid "File not found: %s" msgstr "%s 파일을 찾을 수 없습니다" -#: src/Console/AppConsole.vala:62 src/Gtk/AppGtk.vala:149 +#: src/Console/AppConsole.vala:62 src/Gtk/AppGtk.vala:152 msgid "Syntax" msgstr "문법" @@ -203,7 +203,7 @@ msgstr "지정한 커널 다운로드" msgid "Remove files from application cache" msgstr "프로그램 캐시에서 파일 제거" -#: src/Console/AppConsole.vala:78 src/Gtk/AppGtk.vala:151 +#: src/Console/AppConsole.vala:78 src/Gtk/AppGtk.vala:154 msgid "Options" msgstr "옵션" @@ -236,7 +236,7 @@ msgid "" "One or more version strings (comma-separated) taken from the output of --list" msgstr "--list 의 출력에서 가져온 하나 이상의 버전 문자열 (쉼표로 구분)" -#: src/Console/AppConsole.vala:169 src/Gtk/AppGtk.vala:136 +#: src/Console/AppConsole.vala:169 src/Gtk/AppGtk.vala:139 msgid "Unknown option" msgstr "알 수 없는 옵션" @@ -287,11 +287,11 @@ msgstr "커널 %s 사용 가능" msgid "Install" msgstr "설치" -#: src/Gtk/AppGtk.vala:153 +#: src/Gtk/AppGtk.vala:156 msgid "Print debug information" msgstr "디버그 정보 출력" -#: src/Gtk/AppGtk.vala:154 +#: src/Gtk/AppGtk.vala:157 msgid "Show all options" msgstr "모든 옵션 보기" @@ -311,8 +311,8 @@ msgstr "새로고침" msgid "Internet connection is not active" msgstr "인터넷 연결을 확인하세요" -#: src/Gtk/MainWindow.vala:321 src/Gtk/MainWindow.vala:525 -#: src/Gtk/MainWindow.vala:644 +#: src/Gtk/MainWindow.vala:321 src/Gtk/MainWindow.vala:562 +#: src/Gtk/MainWindow.vala:682 msgid "No Internet" msgstr "인터넷이 연결되지 않았습니다" @@ -341,7 +341,7 @@ msgid "Select the kernels to uninstall" msgstr "삭제할 커널 선택" #: src/Gtk/MainWindow.vala:383 src/Gtk/MainWindow.vala:417 -#: src/Gtk/MainWindow.vala:676 +#: src/Gtk/MainWindow.vala:714 msgid "Close window to exit..." msgstr "창을 닫고 종료..." @@ -357,44 +357,53 @@ msgstr "현재 사용 중인 커널보다 이전 버전의 커널을 제거" msgid "Changes" msgstr "변경사항" -#: src/Gtk/MainWindow.vala:435 src/Gtk/SettingsDialog.vala:50 +#: src/Gtk/MainWindow.vala:440 +msgid "Error while downloading the changelog:\n" +msgstr "" + +#: src/Gtk/MainWindow.vala:450 +#, fuzzy +msgid "Downloading the changelog" +msgstr "다운로드 중" + +#: src/Gtk/MainWindow.vala:472 src/Gtk/SettingsDialog.vala:50 msgid "Settings" msgstr "설정" -#: src/Gtk/MainWindow.vala:458 +#: src/Gtk/MainWindow.vala:495 msgid "About" msgstr "정보" -#: src/Gtk/MainWindow.vala:503 +#: src/Gtk/MainWindow.vala:540 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "우분투 기반 배포판의 커널 업그레이드 도구" -#: src/Gtk/MainWindow.vala:504 +#: src/Gtk/MainWindow.vala:541 msgid "Forked" msgstr "" -#: src/Gtk/MainWindow.vala:504 +#: src/Gtk/MainWindow.vala:541 msgid "Original" msgstr "" -#: src/Gtk/MainWindow.vala:525 src/Gtk/MainWindow.vala:644 +#: src/Gtk/MainWindow.vala:562 src/Gtk/MainWindow.vala:682 msgid "Internet connection is not active." msgstr "인터넷 연결을 확인하세요." -#: src/Gtk/MainWindow.vala:538 +#: src/Gtk/MainWindow.vala:580 msgid "Refreshing..." msgstr "새로 고침..." -#: src/Gtk/MainWindow.vala:627 +#: src/Gtk/MainWindow.vala:665 msgid "available" msgstr "사용가능" -#: src/Gtk/MainWindow.vala:639 +#: src/Gtk/MainWindow.vala:677 msgid "Already Installed" msgstr "이미 설치되었습니다" -#: src/Gtk/ProgressWindow.vala:142 src/Gtk/TerminalWindow.vala:149 -#: src/Utility/Gtk/CustomMessageDialog.vala:153 +#: src/Gtk/ProgressWindow.vala:127 src/Gtk/TerminalWindow.vala:149 +#: src/Utility/Gtk/CustomMessageDialog.vala:154 msgid "Cancel" msgstr "취소" @@ -498,11 +507,11 @@ msgstr "문서작성" msgid "Third Party Inclusions" msgstr "서드파티 포함" -#: src/Utility/Gtk/CustomMessageDialog.vala:157 +#: src/Utility/Gtk/CustomMessageDialog.vala:158 msgid "Yes" msgstr "예" -#: src/Utility/Gtk/CustomMessageDialog.vala:158 +#: src/Utility/Gtk/CustomMessageDialog.vala:159 msgid "No" msgstr "아니오" diff --git a/po/messages.pot b/po/messages.pot index 3ce4283c..4a524ac4 100644 --- a/po/messages.pot +++ b/po/messages.pot @@ -6,9 +6,9 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: mainline 1.0.18\n" +"Project-Id-Version: mainline 1.0.19\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-02-02 18:20-0500\n" +"POT-Creation-Date: 2023-02-21 10:04-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -25,124 +25,124 @@ msgstr "" msgid "Architecture" msgstr "" -#: src/Common/LinuxKernel.vala:297 +#: src/Common/LinuxKernel.vala:299 msgid "Fetching index..." msgstr "" -#: src/Common/LinuxKernel.vala:336 +#: src/Common/LinuxKernel.vala:331 msgid "Fetching index from kernel.ubuntu.com..." msgstr "" -#: src/Common/LinuxKernel.vala:592 +#: src/Common/LinuxKernel.vala:578 msgid "Could not find running kernel in list!" msgstr "" -#: src/Common/LinuxKernel.vala:598 +#: src/Common/LinuxKernel.vala:584 msgid "Could not find any kernels to uninstall" msgstr "" -#: src/Common/LinuxKernel.vala:607 +#: src/Common/LinuxKernel.vala:593 msgid "The following kernels will be uninstalled:" msgstr "" -#: src/Common/LinuxKernel.vala:614 +#: src/Common/LinuxKernel.vala:600 msgid "Continue ?" msgstr "" -#: src/Common/LinuxKernel.vala:640 src/Console/AppConsole.vala:314 +#: src/Common/LinuxKernel.vala:626 src/Console/AppConsole.vala:314 msgid "Latest update" msgstr "" -#: src/Common/LinuxKernel.vala:651 src/Console/AppConsole.vala:321 +#: src/Common/LinuxKernel.vala:637 src/Console/AppConsole.vala:321 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:659 src/Console/AppConsole.vala:326 +#: src/Common/LinuxKernel.vala:645 src/Console/AppConsole.vala:326 #: src/Console/AppConsole.vala:387 msgid "No updates found" msgstr "" -#: src/Common/LinuxKernel.vala:669 +#: src/Common/LinuxKernel.vala:655 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "" -#: src/Common/LinuxKernel.vala:930 +#: src/Common/LinuxKernel.vala:916 msgid "Packages Available" msgstr "" -#: src/Common/LinuxKernel.vala:938 +#: src/Common/LinuxKernel.vala:924 msgid "Packages Installed" msgstr "" -#: src/Common/LinuxKernel.vala:1018 +#: src/Common/LinuxKernel.vala:1004 msgid "Available Kernels" msgstr "" -#: src/Common/LinuxKernel.vala:1025 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1011 src/Gtk/MainWindow.vala:186 msgid "Installed" msgstr "" -#: src/Common/LinuxKernel.vala:1025 src/Gtk/MainWindow.vala:186 -#: src/Gtk/MainWindow.vala:617 src/Gtk/MainWindow.vala:631 +#: src/Common/LinuxKernel.vala:1011 src/Gtk/MainWindow.vala:186 +#: src/Gtk/MainWindow.vala:655 src/Gtk/MainWindow.vala:669 msgid "Running" msgstr "" -#: src/Common/LinuxKernel.vala:1062 +#: src/Common/LinuxKernel.vala:1048 msgid "Downloading" msgstr "" -#: src/Common/LinuxKernel.vala:1081 -#: src/Utility/Gtk/CustomMessageDialog.vala:148 -#: src/Utility/Gtk/CustomMessageDialog.vala:152 +#: src/Common/LinuxKernel.vala:1067 +#: src/Utility/Gtk/CustomMessageDialog.vala:149 +#: src/Utility/Gtk/CustomMessageDialog.vala:153 msgid "OK" msgstr "" -#: src/Common/LinuxKernel.vala:1086 +#: src/Common/LinuxKernel.vala:1072 msgid "ERROR" msgstr "" -#: src/Common/LinuxKernel.vala:1100 src/Gtk/MainWindow.vala:639 +#: src/Common/LinuxKernel.vala:1086 src/Gtk/MainWindow.vala:677 msgid "This kernel is already installed." msgstr "" -#: src/Common/LinuxKernel.vala:1126 +#: src/Common/LinuxKernel.vala:1112 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" -#: src/Common/LinuxKernel.vala:1129 +#: src/Common/LinuxKernel.vala:1115 msgid "Installation completed with errors" msgstr "" -#: src/Common/LinuxKernel.vala:1144 +#: src/Common/LinuxKernel.vala:1130 msgid "" "Selected kernel is currently running and cannot be un-installed.\n" " Install another kernel before un-installing this one." msgstr "" -#: src/Common/LinuxKernel.vala:1149 +#: src/Common/LinuxKernel.vala:1135 msgid "Preparing to uninstall selected kernels" msgstr "" -#: src/Common/LinuxKernel.vala:1180 src/Common/LinuxKernel.vala:1227 +#: src/Common/LinuxKernel.vala:1166 src/Common/LinuxKernel.vala:1213 msgid "Un-install completed" msgstr "" -#: src/Common/LinuxKernel.vala:1183 src/Common/LinuxKernel.vala:1230 +#: src/Common/LinuxKernel.vala:1169 src/Common/LinuxKernel.vala:1216 msgid "Un-install completed with errors" msgstr "" -#: src/Common/LinuxKernel.vala:1196 +#: src/Common/LinuxKernel.vala:1182 msgid "" "This kernel is currently running and cannot be un-installed.\n" " Install another kernel before un-installing this one." msgstr "" -#: src/Common/Main.vala:241 +#: src/Common/Main.vala:240 msgid "Called from" msgstr "" -#: src/Common/Main.vala:275 +#: src/Common/Main.vala:274 msgid "Notifications are disabled" msgstr "" @@ -151,7 +151,7 @@ msgstr "" msgid "File not found: %s" msgstr "" -#: src/Console/AppConsole.vala:62 src/Gtk/AppGtk.vala:149 +#: src/Console/AppConsole.vala:62 src/Gtk/AppGtk.vala:152 msgid "Syntax" msgstr "" @@ -203,7 +203,7 @@ msgstr "" msgid "Remove files from application cache" msgstr "" -#: src/Console/AppConsole.vala:78 src/Gtk/AppGtk.vala:151 +#: src/Console/AppConsole.vala:78 src/Gtk/AppGtk.vala:154 msgid "Options" msgstr "" @@ -236,7 +236,7 @@ msgid "" "One or more version strings (comma-separated) taken from the output of --list" msgstr "" -#: src/Console/AppConsole.vala:169 src/Gtk/AppGtk.vala:136 +#: src/Console/AppConsole.vala:169 src/Gtk/AppGtk.vala:139 msgid "Unknown option" msgstr "" @@ -287,11 +287,11 @@ msgstr "" msgid "Install" msgstr "" -#: src/Gtk/AppGtk.vala:153 +#: src/Gtk/AppGtk.vala:156 msgid "Print debug information" msgstr "" -#: src/Gtk/AppGtk.vala:154 +#: src/Gtk/AppGtk.vala:157 msgid "Show all options" msgstr "" @@ -311,8 +311,8 @@ msgstr "" msgid "Internet connection is not active" msgstr "" -#: src/Gtk/MainWindow.vala:321 src/Gtk/MainWindow.vala:525 -#: src/Gtk/MainWindow.vala:644 +#: src/Gtk/MainWindow.vala:321 src/Gtk/MainWindow.vala:562 +#: src/Gtk/MainWindow.vala:682 msgid "No Internet" msgstr "" @@ -341,7 +341,7 @@ msgid "Select the kernels to uninstall" msgstr "" #: src/Gtk/MainWindow.vala:383 src/Gtk/MainWindow.vala:417 -#: src/Gtk/MainWindow.vala:676 +#: src/Gtk/MainWindow.vala:714 msgid "Close window to exit..." msgstr "" @@ -357,44 +357,52 @@ msgstr "" msgid "Changes" msgstr "" -#: src/Gtk/MainWindow.vala:435 src/Gtk/SettingsDialog.vala:50 +#: src/Gtk/MainWindow.vala:440 +msgid "Error while downloading the changelog:\n" +msgstr "" + +#: src/Gtk/MainWindow.vala:450 +msgid "Downloading the changelog" +msgstr "" + +#: src/Gtk/MainWindow.vala:472 src/Gtk/SettingsDialog.vala:50 msgid "Settings" msgstr "" -#: src/Gtk/MainWindow.vala:458 +#: src/Gtk/MainWindow.vala:495 msgid "About" msgstr "" -#: src/Gtk/MainWindow.vala:503 +#: src/Gtk/MainWindow.vala:540 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "" -#: src/Gtk/MainWindow.vala:504 +#: src/Gtk/MainWindow.vala:541 msgid "Forked" msgstr "" -#: src/Gtk/MainWindow.vala:504 +#: src/Gtk/MainWindow.vala:541 msgid "Original" msgstr "" -#: src/Gtk/MainWindow.vala:525 src/Gtk/MainWindow.vala:644 +#: src/Gtk/MainWindow.vala:562 src/Gtk/MainWindow.vala:682 msgid "Internet connection is not active." msgstr "" -#: src/Gtk/MainWindow.vala:538 +#: src/Gtk/MainWindow.vala:580 msgid "Refreshing..." msgstr "" -#: src/Gtk/MainWindow.vala:627 +#: src/Gtk/MainWindow.vala:665 msgid "available" msgstr "" -#: src/Gtk/MainWindow.vala:639 +#: src/Gtk/MainWindow.vala:677 msgid "Already Installed" msgstr "" -#: src/Gtk/ProgressWindow.vala:142 src/Gtk/TerminalWindow.vala:149 -#: src/Utility/Gtk/CustomMessageDialog.vala:153 +#: src/Gtk/ProgressWindow.vala:127 src/Gtk/TerminalWindow.vala:149 +#: src/Utility/Gtk/CustomMessageDialog.vala:154 msgid "Cancel" msgstr "" @@ -498,11 +506,11 @@ msgstr "" msgid "Third Party Inclusions" msgstr "" -#: src/Utility/Gtk/CustomMessageDialog.vala:157 +#: src/Utility/Gtk/CustomMessageDialog.vala:158 msgid "Yes" msgstr "" -#: src/Utility/Gtk/CustomMessageDialog.vala:158 +#: src/Utility/Gtk/CustomMessageDialog.vala:159 msgid "No" msgstr "" diff --git a/po/nl.po b/po/nl.po index b872ee48..b6e99df0 100644 --- a/po/nl.po +++ b/po/nl.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-02-02 18:20-0500\n" +"POT-Creation-Date: 2023-02-21 10:04-0500\n" "PO-Revision-Date: 2020-08-23 13:55+0200\n" "Last-Translator: Heimen Stoffels \n" "Language-Team: Dutch (Netherlands)\n" @@ -21,100 +21,100 @@ msgstr "Distributie" msgid "Architecture" msgstr "Architectuur" -#: src/Common/LinuxKernel.vala:297 +#: src/Common/LinuxKernel.vala:299 msgid "Fetching index..." msgstr "Bezig met ophalen van index..." -#: src/Common/LinuxKernel.vala:336 +#: src/Common/LinuxKernel.vala:331 msgid "Fetching index from kernel.ubuntu.com..." msgstr "Bezig met ophalen van index van kernel.ubuntu.com..." -#: src/Common/LinuxKernel.vala:592 +#: src/Common/LinuxKernel.vala:578 msgid "Could not find running kernel in list!" msgstr "De in gebruik zijnde kernel staat niet op de lijst!" -#: src/Common/LinuxKernel.vala:598 +#: src/Common/LinuxKernel.vala:584 #, fuzzy msgid "Could not find any kernels to uninstall" msgstr "Er zijn geen te verwijderen kernels" -#: src/Common/LinuxKernel.vala:607 +#: src/Common/LinuxKernel.vala:593 #, fuzzy msgid "The following kernels will be uninstalled:" msgstr "De volgende kernels worden verwijderd:" -#: src/Common/LinuxKernel.vala:614 +#: src/Common/LinuxKernel.vala:600 msgid "Continue ?" msgstr "Wil je doorgaan?" -#: src/Common/LinuxKernel.vala:640 src/Console/AppConsole.vala:314 +#: src/Common/LinuxKernel.vala:626 src/Console/AppConsole.vala:314 msgid "Latest update" msgstr "Recentste update" -#: src/Common/LinuxKernel.vala:651 src/Console/AppConsole.vala:321 +#: src/Common/LinuxKernel.vala:637 src/Console/AppConsole.vala:321 msgid "Latest point update" msgstr "Recentste puntupdate" -#: src/Common/LinuxKernel.vala:659 src/Console/AppConsole.vala:326 +#: src/Common/LinuxKernel.vala:645 src/Console/AppConsole.vala:326 #: src/Console/AppConsole.vala:387 msgid "No updates found" msgstr "Geen updates gevonden" -#: src/Common/LinuxKernel.vala:669 +#: src/Common/LinuxKernel.vala:655 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Wil je versie %s installeren? (j/n): " -#: src/Common/LinuxKernel.vala:930 +#: src/Common/LinuxKernel.vala:916 msgid "Packages Available" msgstr "Beschikbare pakketten" -#: src/Common/LinuxKernel.vala:938 +#: src/Common/LinuxKernel.vala:924 msgid "Packages Installed" msgstr "Geïnstalleerde pakketten" -#: src/Common/LinuxKernel.vala:1018 +#: src/Common/LinuxKernel.vala:1004 msgid "Available Kernels" msgstr "Beschikbare kernels" -#: src/Common/LinuxKernel.vala:1025 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1011 src/Gtk/MainWindow.vala:186 msgid "Installed" msgstr "Geïnstalleerd" -#: src/Common/LinuxKernel.vala:1025 src/Gtk/MainWindow.vala:186 -#: src/Gtk/MainWindow.vala:617 src/Gtk/MainWindow.vala:631 +#: src/Common/LinuxKernel.vala:1011 src/Gtk/MainWindow.vala:186 +#: src/Gtk/MainWindow.vala:655 src/Gtk/MainWindow.vala:669 msgid "Running" msgstr "In gebruik" -#: src/Common/LinuxKernel.vala:1062 +#: src/Common/LinuxKernel.vala:1048 msgid "Downloading" msgstr "Bezig met downloaden" -#: src/Common/LinuxKernel.vala:1081 -#: src/Utility/Gtk/CustomMessageDialog.vala:148 -#: src/Utility/Gtk/CustomMessageDialog.vala:152 +#: src/Common/LinuxKernel.vala:1067 +#: src/Utility/Gtk/CustomMessageDialog.vala:149 +#: src/Utility/Gtk/CustomMessageDialog.vala:153 msgid "OK" msgstr "Oké" -#: src/Common/LinuxKernel.vala:1086 +#: src/Common/LinuxKernel.vala:1072 msgid "ERROR" msgstr "FOUT" -#: src/Common/LinuxKernel.vala:1100 src/Gtk/MainWindow.vala:639 +#: src/Common/LinuxKernel.vala:1086 src/Gtk/MainWindow.vala:677 msgid "This kernel is already installed." msgstr "Deze kernel is al geïnstalleerd." -#: src/Common/LinuxKernel.vala:1126 +#: src/Common/LinuxKernel.vala:1112 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "De installatie is voltooid. Herstart de computer om de nieuwe kernel te " "gebruiken." -#: src/Common/LinuxKernel.vala:1129 +#: src/Common/LinuxKernel.vala:1115 msgid "Installation completed with errors" msgstr "De installatie is foutloos voltooid" -#: src/Common/LinuxKernel.vala:1144 +#: src/Common/LinuxKernel.vala:1130 #, fuzzy msgid "" "Selected kernel is currently running and cannot be un-installed.\n" @@ -124,20 +124,20 @@ msgstr "" "verwijderd.\n" " Installeer eerst een andere kernel." -#: src/Common/LinuxKernel.vala:1149 +#: src/Common/LinuxKernel.vala:1135 #, fuzzy msgid "Preparing to uninstall selected kernels" msgstr "Bezig met voorbereiden van verwijdering" -#: src/Common/LinuxKernel.vala:1180 src/Common/LinuxKernel.vala:1227 +#: src/Common/LinuxKernel.vala:1166 src/Common/LinuxKernel.vala:1213 msgid "Un-install completed" msgstr "Deïnstalleren voltooid" -#: src/Common/LinuxKernel.vala:1183 src/Common/LinuxKernel.vala:1230 +#: src/Common/LinuxKernel.vala:1169 src/Common/LinuxKernel.vala:1216 msgid "Un-install completed with errors" msgstr "Deïnstalleren voltooid, maar met fouten" -#: src/Common/LinuxKernel.vala:1196 +#: src/Common/LinuxKernel.vala:1182 #, fuzzy msgid "" "This kernel is currently running and cannot be un-installed.\n" @@ -146,11 +146,11 @@ msgstr "" "Deze kernel is momenteel in gebruik en kan daarom niet worden verwijderd.\n" " Installeer eerst een andere kernel." -#: src/Common/Main.vala:241 +#: src/Common/Main.vala:240 msgid "Called from" msgstr "Aangeroepen door" -#: src/Common/Main.vala:275 +#: src/Common/Main.vala:274 msgid "Notifications are disabled" msgstr "Meldingen zijn uitgeschakeld" @@ -159,7 +159,7 @@ msgstr "Meldingen zijn uitgeschakeld" msgid "File not found: %s" msgstr "Bestand niet gevonden: %s" -#: src/Console/AppConsole.vala:62 src/Gtk/AppGtk.vala:149 +#: src/Console/AppConsole.vala:62 src/Gtk/AppGtk.vala:152 msgid "Syntax" msgstr "Syntax" @@ -213,7 +213,7 @@ msgstr "Opgegeven kernels downloaden" msgid "Remove files from application cache" msgstr "Bestanden verwijderen uit programmacache" -#: src/Console/AppConsole.vala:78 src/Gtk/AppGtk.vala:151 +#: src/Console/AppConsole.vala:78 src/Gtk/AppGtk.vala:154 msgid "Options" msgstr "Opties" @@ -249,7 +249,7 @@ msgstr "" "Eén of meerdere versietekenreeksen (kommagescheiden) uit de uitvoer van --" "list" -#: src/Console/AppConsole.vala:169 src/Gtk/AppGtk.vala:136 +#: src/Console/AppConsole.vala:169 src/Gtk/AppGtk.vala:139 msgid "Unknown option" msgstr "Onbekende optie" @@ -301,11 +301,11 @@ msgstr "Kernel %s is beschikbaar" msgid "Install" msgstr "Installeren" -#: src/Gtk/AppGtk.vala:153 +#: src/Gtk/AppGtk.vala:156 msgid "Print debug information" msgstr "Foutopsporingsinformatie tonen" -#: src/Gtk/AppGtk.vala:154 +#: src/Gtk/AppGtk.vala:157 msgid "Show all options" msgstr "Alle opties tonen" @@ -325,8 +325,8 @@ msgstr "Verversen" msgid "Internet connection is not active" msgstr "Je bent niet verbonden met het internet" -#: src/Gtk/MainWindow.vala:321 src/Gtk/MainWindow.vala:525 -#: src/Gtk/MainWindow.vala:644 +#: src/Gtk/MainWindow.vala:321 src/Gtk/MainWindow.vala:562 +#: src/Gtk/MainWindow.vala:682 msgid "No Internet" msgstr "Geen internetverbinding" @@ -357,7 +357,7 @@ msgid "Select the kernels to uninstall" msgstr "Selecteer de te installeren kernel" #: src/Gtk/MainWindow.vala:383 src/Gtk/MainWindow.vala:417 -#: src/Gtk/MainWindow.vala:676 +#: src/Gtk/MainWindow.vala:714 msgid "Close window to exit..." msgstr "Sluit het venster..." @@ -375,44 +375,53 @@ msgstr "Geïnstalleerde kernels verwijderen die ouder zijn dan de huidige" msgid "Changes" msgstr "Wijzigingen" -#: src/Gtk/MainWindow.vala:435 src/Gtk/SettingsDialog.vala:50 +#: src/Gtk/MainWindow.vala:440 +msgid "Error while downloading the changelog:\n" +msgstr "" + +#: src/Gtk/MainWindow.vala:450 +#, fuzzy +msgid "Downloading the changelog" +msgstr "Bezig met downloaden" + +#: src/Gtk/MainWindow.vala:472 src/Gtk/SettingsDialog.vala:50 msgid "Settings" msgstr "Instellingen" -#: src/Gtk/MainWindow.vala:458 +#: src/Gtk/MainWindow.vala:495 msgid "About" msgstr "Over" -#: src/Gtk/MainWindow.vala:503 +#: src/Gtk/MainWindow.vala:540 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Een kernelupgradehulpmiddel voor op Ubuntu gebaseerde distributies" -#: src/Gtk/MainWindow.vala:504 +#: src/Gtk/MainWindow.vala:541 msgid "Forked" msgstr "Geforkt" -#: src/Gtk/MainWindow.vala:504 +#: src/Gtk/MainWindow.vala:541 msgid "Original" msgstr "Origineel" -#: src/Gtk/MainWindow.vala:525 src/Gtk/MainWindow.vala:644 +#: src/Gtk/MainWindow.vala:562 src/Gtk/MainWindow.vala:682 msgid "Internet connection is not active." msgstr "Je bent niet verbonden met het internet." -#: src/Gtk/MainWindow.vala:538 +#: src/Gtk/MainWindow.vala:580 msgid "Refreshing..." msgstr "Bezig met verversen..." -#: src/Gtk/MainWindow.vala:627 +#: src/Gtk/MainWindow.vala:665 msgid "available" msgstr "beschikbaar" -#: src/Gtk/MainWindow.vala:639 +#: src/Gtk/MainWindow.vala:677 msgid "Already Installed" msgstr "Reeds geïnstalleerd" -#: src/Gtk/ProgressWindow.vala:142 src/Gtk/TerminalWindow.vala:149 -#: src/Utility/Gtk/CustomMessageDialog.vala:153 +#: src/Gtk/ProgressWindow.vala:127 src/Gtk/TerminalWindow.vala:149 +#: src/Utility/Gtk/CustomMessageDialog.vala:154 msgid "Cancel" msgstr "Annuleren" @@ -516,11 +525,11 @@ msgstr "Documenteerders" msgid "Third Party Inclusions" msgstr "Externe code" -#: src/Utility/Gtk/CustomMessageDialog.vala:157 +#: src/Utility/Gtk/CustomMessageDialog.vala:158 msgid "Yes" msgstr "Ja" -#: src/Utility/Gtk/CustomMessageDialog.vala:158 +#: src/Utility/Gtk/CustomMessageDialog.vala:159 msgid "No" msgstr "Nee" diff --git a/po/pl.po b/po/pl.po index 9eb9fca5..1eea7c2a 100644 --- a/po/pl.po +++ b/po/pl.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-02-02 18:20-0500\n" +"POT-Creation-Date: 2023-02-21 10:04-0500\n" "PO-Revision-Date: 2021-09-17 10:29+0200\n" "Last-Translator: Viktor Sokyrko \n" "Language-Team: Polish\n" @@ -21,98 +21,98 @@ msgstr "Dystrybucja" msgid "Architecture" msgstr "Architektura systemu" -#: src/Common/LinuxKernel.vala:297 +#: src/Common/LinuxKernel.vala:299 msgid "Fetching index..." msgstr "Pobieranie indeksu..." -#: src/Common/LinuxKernel.vala:336 +#: src/Common/LinuxKernel.vala:331 msgid "Fetching index from kernel.ubuntu.com..." msgstr "Pobieranie indeksu z kernel.ubuntu.com..." -#: src/Common/LinuxKernel.vala:592 +#: src/Common/LinuxKernel.vala:578 msgid "Could not find running kernel in list!" msgstr "Nie można znaleźć uruchomionego jądra na liście!" -#: src/Common/LinuxKernel.vala:598 +#: src/Common/LinuxKernel.vala:584 msgid "Could not find any kernels to uninstall" msgstr "Nie udało się odnaleźć żadnych jąder do odinstalowania" -#: src/Common/LinuxKernel.vala:607 +#: src/Common/LinuxKernel.vala:593 msgid "The following kernels will be uninstalled:" msgstr "Następujące jądra zostaną odinstalowane:" -#: src/Common/LinuxKernel.vala:614 +#: src/Common/LinuxKernel.vala:600 msgid "Continue ?" msgstr "Kontynuowac?" -#: src/Common/LinuxKernel.vala:640 src/Console/AppConsole.vala:314 +#: src/Common/LinuxKernel.vala:626 src/Console/AppConsole.vala:314 msgid "Latest update" msgstr "Najnowsza aktualizacja" -#: src/Common/LinuxKernel.vala:651 src/Console/AppConsole.vala:321 +#: src/Common/LinuxKernel.vala:637 src/Console/AppConsole.vala:321 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:659 src/Console/AppConsole.vala:326 +#: src/Common/LinuxKernel.vala:645 src/Console/AppConsole.vala:326 #: src/Console/AppConsole.vala:387 msgid "No updates found" msgstr "Nie znaleziono aktualizacji" -#: src/Common/LinuxKernel.vala:669 +#: src/Common/LinuxKernel.vala:655 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Instaluj wersję jądra %s ? (t/n): " -#: src/Common/LinuxKernel.vala:930 +#: src/Common/LinuxKernel.vala:916 msgid "Packages Available" msgstr "Dostępne pakiety" -#: src/Common/LinuxKernel.vala:938 +#: src/Common/LinuxKernel.vala:924 msgid "Packages Installed" msgstr "Pakiety zainstalowane" -#: src/Common/LinuxKernel.vala:1018 +#: src/Common/LinuxKernel.vala:1004 msgid "Available Kernels" msgstr "Dostępne jądra" -#: src/Common/LinuxKernel.vala:1025 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1011 src/Gtk/MainWindow.vala:186 msgid "Installed" msgstr "Zainstalowany" -#: src/Common/LinuxKernel.vala:1025 src/Gtk/MainWindow.vala:186 -#: src/Gtk/MainWindow.vala:617 src/Gtk/MainWindow.vala:631 +#: src/Common/LinuxKernel.vala:1011 src/Gtk/MainWindow.vala:186 +#: src/Gtk/MainWindow.vala:655 src/Gtk/MainWindow.vala:669 msgid "Running" msgstr "Uruchomiony" -#: src/Common/LinuxKernel.vala:1062 +#: src/Common/LinuxKernel.vala:1048 msgid "Downloading" msgstr "Pobieranie" -#: src/Common/LinuxKernel.vala:1081 -#: src/Utility/Gtk/CustomMessageDialog.vala:148 -#: src/Utility/Gtk/CustomMessageDialog.vala:152 +#: src/Common/LinuxKernel.vala:1067 +#: src/Utility/Gtk/CustomMessageDialog.vala:149 +#: src/Utility/Gtk/CustomMessageDialog.vala:153 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:1086 +#: src/Common/LinuxKernel.vala:1072 msgid "ERROR" msgstr "BŁĄD" -#: src/Common/LinuxKernel.vala:1100 src/Gtk/MainWindow.vala:639 +#: src/Common/LinuxKernel.vala:1086 src/Gtk/MainWindow.vala:677 msgid "This kernel is already installed." msgstr "To jądro jest już zainstalowane." -#: src/Common/LinuxKernel.vala:1126 +#: src/Common/LinuxKernel.vala:1112 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "Instalacja zakończona. Aby korzystać z nowego jądra, konieczne jest ponowne " "uruchomienie." -#: src/Common/LinuxKernel.vala:1129 +#: src/Common/LinuxKernel.vala:1115 msgid "Installation completed with errors" msgstr "Instalacja zakończona z błędami" -#: src/Common/LinuxKernel.vala:1144 +#: src/Common/LinuxKernel.vala:1130 msgid "" "Selected kernel is currently running and cannot be un-installed.\n" " Install another kernel before un-installing this one." @@ -120,19 +120,19 @@ msgstr "" "Wybrane jądro aktualnie działa i nie może zostać odinstalowane.\n" " Zainstaluj inne jądro przed odinstalowaniem tego." -#: src/Common/LinuxKernel.vala:1149 +#: src/Common/LinuxKernel.vala:1135 msgid "Preparing to uninstall selected kernels" msgstr "Przygotowanie do odinstalowania wybranych jąder" -#: src/Common/LinuxKernel.vala:1180 src/Common/LinuxKernel.vala:1227 +#: src/Common/LinuxKernel.vala:1166 src/Common/LinuxKernel.vala:1213 msgid "Un-install completed" msgstr "Deinstalacja zakończona" -#: src/Common/LinuxKernel.vala:1183 src/Common/LinuxKernel.vala:1230 +#: src/Common/LinuxKernel.vala:1169 src/Common/LinuxKernel.vala:1216 msgid "Un-install completed with errors" msgstr "De-instalacja zakończona z błędami" -#: src/Common/LinuxKernel.vala:1196 +#: src/Common/LinuxKernel.vala:1182 msgid "" "This kernel is currently running and cannot be un-installed.\n" " Install another kernel before un-installing this one." @@ -140,12 +140,12 @@ msgstr "" "To jądro aktualnie działa i nie może zostać odinstalowane.\n" " Zainstaluj inne jądro przed odinstalowaniem tego." -#: src/Common/Main.vala:241 +#: src/Common/Main.vala:240 #, fuzzy msgid "Called from" msgstr "Wywołane z" -#: src/Common/Main.vala:275 +#: src/Common/Main.vala:274 msgid "Notifications are disabled" msgstr "Powiadomienia są wyłączone" @@ -154,7 +154,7 @@ msgstr "Powiadomienia są wyłączone" msgid "File not found: %s" msgstr "Nie odnaleziono pliku: %s" -#: src/Console/AppConsole.vala:62 src/Gtk/AppGtk.vala:149 +#: src/Console/AppConsole.vala:62 src/Gtk/AppGtk.vala:152 msgid "Syntax" msgstr "Składnia" @@ -207,7 +207,7 @@ msgstr "Pobierz wybrane jądra" msgid "Remove files from application cache" msgstr "Usuń pliki z pamięci podręcznej aplikacji" -#: src/Console/AppConsole.vala:78 src/Gtk/AppGtk.vala:151 +#: src/Console/AppConsole.vala:78 src/Gtk/AppGtk.vala:154 msgid "Options" msgstr "Opcje" @@ -245,7 +245,7 @@ msgstr "" "Jeden lub więcej ciągów wersji (oddzielonych przecinkami) pobranych z " "wyjścia --list" -#: src/Console/AppConsole.vala:169 src/Gtk/AppGtk.vala:136 +#: src/Console/AppConsole.vala:169 src/Gtk/AppGtk.vala:139 msgid "Unknown option" msgstr "Nieznana opcja" @@ -297,11 +297,11 @@ msgstr "Dostępne jądro %s" msgid "Install" msgstr "Zainstaluj" -#: src/Gtk/AppGtk.vala:153 +#: src/Gtk/AppGtk.vala:156 msgid "Print debug information" msgstr "Wypisz informacje debugujące" -#: src/Gtk/AppGtk.vala:154 +#: src/Gtk/AppGtk.vala:157 msgid "Show all options" msgstr "Pokaż wszystkie opcje" @@ -321,8 +321,8 @@ msgstr "Odśwież" msgid "Internet connection is not active" msgstr "Brak połączenia z internetem" -#: src/Gtk/MainWindow.vala:321 src/Gtk/MainWindow.vala:525 -#: src/Gtk/MainWindow.vala:644 +#: src/Gtk/MainWindow.vala:321 src/Gtk/MainWindow.vala:562 +#: src/Gtk/MainWindow.vala:682 msgid "No Internet" msgstr "Brak internetu" @@ -351,7 +351,7 @@ msgid "Select the kernels to uninstall" msgstr "Wybierz jądra do deinstalacji" #: src/Gtk/MainWindow.vala:383 src/Gtk/MainWindow.vala:417 -#: src/Gtk/MainWindow.vala:676 +#: src/Gtk/MainWindow.vala:714 msgid "Close window to exit..." msgstr "Zamknij okno żeby wyjść..." @@ -367,47 +367,56 @@ msgstr "Odinstaluj jądra starsze niż uruchomione" msgid "Changes" msgstr "Zmiany" -#: src/Gtk/MainWindow.vala:435 src/Gtk/SettingsDialog.vala:50 +#: src/Gtk/MainWindow.vala:440 +msgid "Error while downloading the changelog:\n" +msgstr "" + +#: src/Gtk/MainWindow.vala:450 +#, fuzzy +msgid "Downloading the changelog" +msgstr "Pobieranie" + +#: src/Gtk/MainWindow.vala:472 src/Gtk/SettingsDialog.vala:50 msgid "Settings" msgstr "Ustawienia" -#: src/Gtk/MainWindow.vala:458 +#: src/Gtk/MainWindow.vala:495 msgid "About" msgstr "O programie" -#: src/Gtk/MainWindow.vala:503 +#: src/Gtk/MainWindow.vala:540 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Narzędzie uaktualniania jądra dla dystrybucji z rodziny Ubuntu" -#: src/Gtk/MainWindow.vala:504 +#: src/Gtk/MainWindow.vala:541 msgid "Forked" msgstr "" -#: src/Gtk/MainWindow.vala:504 +#: src/Gtk/MainWindow.vala:541 msgid "Original" msgstr "" -#: src/Gtk/MainWindow.vala:525 src/Gtk/MainWindow.vala:644 +#: src/Gtk/MainWindow.vala:562 src/Gtk/MainWindow.vala:682 #, fuzzy msgid "Internet connection is not active." msgstr "Brak połączenia z internetem" -#: src/Gtk/MainWindow.vala:538 +#: src/Gtk/MainWindow.vala:580 msgid "Refreshing..." msgstr "Odświeżam..." # Should be a single word at the end of the line. # For example: "5.13.16 available" -#: src/Gtk/MainWindow.vala:627 +#: src/Gtk/MainWindow.vala:665 msgid "available" msgstr "dostępne" -#: src/Gtk/MainWindow.vala:639 +#: src/Gtk/MainWindow.vala:677 msgid "Already Installed" msgstr "Już zainstalowane" -#: src/Gtk/ProgressWindow.vala:142 src/Gtk/TerminalWindow.vala:149 -#: src/Utility/Gtk/CustomMessageDialog.vala:153 +#: src/Gtk/ProgressWindow.vala:127 src/Gtk/TerminalWindow.vala:149 +#: src/Utility/Gtk/CustomMessageDialog.vala:154 msgid "Cancel" msgstr "Anuluj" @@ -513,11 +522,11 @@ msgstr "Dokumentujący" msgid "Third Party Inclusions" msgstr "Narzędzia osób trzecich" -#: src/Utility/Gtk/CustomMessageDialog.vala:157 +#: src/Utility/Gtk/CustomMessageDialog.vala:158 msgid "Yes" msgstr "Tak" -#: src/Utility/Gtk/CustomMessageDialog.vala:158 +#: src/Utility/Gtk/CustomMessageDialog.vala:159 msgid "No" msgstr "Nie" diff --git a/po/ru.po b/po/ru.po index 90dde333..4fa0dd4d 100644 --- a/po/ru.po +++ b/po/ru.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-02-02 18:20-0500\n" +"POT-Creation-Date: 2023-02-21 10:04-0500\n" "PO-Revision-Date: 2022-02-24 16:05+0300\n" "Last-Translator: Danik2343 \n" "Language-Team: Russian\n" @@ -21,98 +21,98 @@ msgstr "Дистрибутив" msgid "Architecture" msgstr "Архитектура" -#: src/Common/LinuxKernel.vala:297 +#: src/Common/LinuxKernel.vala:299 msgid "Fetching index..." msgstr "Получение сведений..." -#: src/Common/LinuxKernel.vala:336 +#: src/Common/LinuxKernel.vala:331 msgid "Fetching index from kernel.ubuntu.com..." msgstr "Получение сведений с kernel.ubuntu.com..." -#: src/Common/LinuxKernel.vala:592 +#: src/Common/LinuxKernel.vala:578 msgid "Could not find running kernel in list!" msgstr "Не удалось найти запущенное ядро в списке!" -#: src/Common/LinuxKernel.vala:598 +#: src/Common/LinuxKernel.vala:584 msgid "Could not find any kernels to uninstall" msgstr "Не удалось найти ядра для деинсталляции" -#: src/Common/LinuxKernel.vala:607 +#: src/Common/LinuxKernel.vala:593 msgid "The following kernels will be uninstalled:" msgstr "Следующие ядра будут деинсталлированы:" -#: src/Common/LinuxKernel.vala:614 +#: src/Common/LinuxKernel.vala:600 msgid "Continue ?" msgstr "Продолжить ?" -#: src/Common/LinuxKernel.vala:640 src/Console/AppConsole.vala:314 +#: src/Common/LinuxKernel.vala:626 src/Console/AppConsole.vala:314 msgid "Latest update" msgstr "Последнее обновление" -#: src/Common/LinuxKernel.vala:651 src/Console/AppConsole.vala:321 +#: src/Common/LinuxKernel.vala:637 src/Console/AppConsole.vala:321 msgid "Latest point update" msgstr "Последнее обновление пунктов" -#: src/Common/LinuxKernel.vala:659 src/Console/AppConsole.vala:326 +#: src/Common/LinuxKernel.vala:645 src/Console/AppConsole.vala:326 #: src/Console/AppConsole.vala:387 msgid "No updates found" msgstr "Обновлений не найдено" -#: src/Common/LinuxKernel.vala:669 +#: src/Common/LinuxKernel.vala:655 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Установить версию ядра %s ? (y/n): " -#: src/Common/LinuxKernel.vala:930 +#: src/Common/LinuxKernel.vala:916 msgid "Packages Available" msgstr "Доступные пакеты" -#: src/Common/LinuxKernel.vala:938 +#: src/Common/LinuxKernel.vala:924 msgid "Packages Installed" msgstr "Установленные пакеты" -#: src/Common/LinuxKernel.vala:1018 +#: src/Common/LinuxKernel.vala:1004 msgid "Available Kernels" msgstr "Доступные ядра" -#: src/Common/LinuxKernel.vala:1025 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1011 src/Gtk/MainWindow.vala:186 msgid "Installed" msgstr "Установлено" -#: src/Common/LinuxKernel.vala:1025 src/Gtk/MainWindow.vala:186 -#: src/Gtk/MainWindow.vala:617 src/Gtk/MainWindow.vala:631 +#: src/Common/LinuxKernel.vala:1011 src/Gtk/MainWindow.vala:186 +#: src/Gtk/MainWindow.vala:655 src/Gtk/MainWindow.vala:669 msgid "Running" msgstr "Используется" -#: src/Common/LinuxKernel.vala:1062 +#: src/Common/LinuxKernel.vala:1048 msgid "Downloading" msgstr "Загрузка" -#: src/Common/LinuxKernel.vala:1081 -#: src/Utility/Gtk/CustomMessageDialog.vala:148 -#: src/Utility/Gtk/CustomMessageDialog.vala:152 +#: src/Common/LinuxKernel.vala:1067 +#: src/Utility/Gtk/CustomMessageDialog.vala:149 +#: src/Utility/Gtk/CustomMessageDialog.vala:153 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:1086 +#: src/Common/LinuxKernel.vala:1072 msgid "ERROR" msgstr "ОШИБКА" -#: src/Common/LinuxKernel.vala:1100 src/Gtk/MainWindow.vala:639 +#: src/Common/LinuxKernel.vala:1086 src/Gtk/MainWindow.vala:677 msgid "This kernel is already installed." msgstr "Это ядро уже установлено." -#: src/Common/LinuxKernel.vala:1126 +#: src/Common/LinuxKernel.vala:1112 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "Установка завершена. Обязательно выполните перезагрузку, чтобы использовать " "новое ядро." -#: src/Common/LinuxKernel.vala:1129 +#: src/Common/LinuxKernel.vala:1115 msgid "Installation completed with errors" msgstr "Установка завершена с ошибками" -#: src/Common/LinuxKernel.vala:1144 +#: src/Common/LinuxKernel.vala:1130 msgid "" "Selected kernel is currently running and cannot be un-installed.\n" " Install another kernel before un-installing this one." @@ -120,19 +120,19 @@ msgstr "" "Это ядро в настоящий момент работает и не может быть удалено.\n" " Установите другое ядро, прежде чем удалять его." -#: src/Common/LinuxKernel.vala:1149 +#: src/Common/LinuxKernel.vala:1135 msgid "Preparing to uninstall selected kernels" msgstr "Подготовка к деинсталляции выбранных ядер" -#: src/Common/LinuxKernel.vala:1180 src/Common/LinuxKernel.vala:1227 +#: src/Common/LinuxKernel.vala:1166 src/Common/LinuxKernel.vala:1213 msgid "Un-install completed" msgstr "Удаление завершено" -#: src/Common/LinuxKernel.vala:1183 src/Common/LinuxKernel.vala:1230 +#: src/Common/LinuxKernel.vala:1169 src/Common/LinuxKernel.vala:1216 msgid "Un-install completed with errors" msgstr "Удаление завершено с ошибками" -#: src/Common/LinuxKernel.vala:1196 +#: src/Common/LinuxKernel.vala:1182 msgid "" "This kernel is currently running and cannot be un-installed.\n" " Install another kernel before un-installing this one." @@ -140,11 +140,11 @@ msgstr "" "Это ядро в настоящий момент работает и не может быть удалено.\n" " Установите другое ядро, прежде чем удалять его." -#: src/Common/Main.vala:241 +#: src/Common/Main.vala:240 msgid "Called from" msgstr "Вызван из" -#: src/Common/Main.vala:275 +#: src/Common/Main.vala:274 msgid "Notifications are disabled" msgstr "Уведомления отключены" @@ -153,7 +153,7 @@ msgstr "Уведомления отключены" msgid "File not found: %s" msgstr "Файл не найден: %s" -#: src/Console/AppConsole.vala:62 src/Gtk/AppGtk.vala:149 +#: src/Console/AppConsole.vala:62 src/Gtk/AppGtk.vala:152 msgid "Syntax" msgstr "Синтаксис" @@ -205,7 +205,7 @@ msgstr "Скачать указанные ядра" msgid "Remove files from application cache" msgstr "Удалить файлы из кэша программы" -#: src/Console/AppConsole.vala:78 src/Gtk/AppGtk.vala:151 +#: src/Console/AppConsole.vala:78 src/Gtk/AppGtk.vala:154 msgid "Options" msgstr "Параметры" @@ -240,7 +240,7 @@ msgstr "" "Одна или несколько строк версий (разделенных запятыми), взятых из вывода --" "list" -#: src/Console/AppConsole.vala:169 src/Gtk/AppGtk.vala:136 +#: src/Console/AppConsole.vala:169 src/Gtk/AppGtk.vala:139 msgid "Unknown option" msgstr "Неизвестный параметр" @@ -291,11 +291,11 @@ msgstr "Доступно ядро %s" msgid "Install" msgstr "Установить" -#: src/Gtk/AppGtk.vala:153 +#: src/Gtk/AppGtk.vala:156 msgid "Print debug information" msgstr "Распечатать отладочную информацию" -#: src/Gtk/AppGtk.vala:154 +#: src/Gtk/AppGtk.vala:157 msgid "Show all options" msgstr "Показать все параметры" @@ -315,8 +315,8 @@ msgstr "Обновить" msgid "Internet connection is not active" msgstr "Интернет соединение не активно" -#: src/Gtk/MainWindow.vala:321 src/Gtk/MainWindow.vala:525 -#: src/Gtk/MainWindow.vala:644 +#: src/Gtk/MainWindow.vala:321 src/Gtk/MainWindow.vala:562 +#: src/Gtk/MainWindow.vala:682 msgid "No Internet" msgstr "Нет интернет соединения" @@ -345,7 +345,7 @@ msgid "Select the kernels to uninstall" msgstr "Выберите ядра для деинсталляции" #: src/Gtk/MainWindow.vala:383 src/Gtk/MainWindow.vala:417 -#: src/Gtk/MainWindow.vala:676 +#: src/Gtk/MainWindow.vala:714 msgid "Close window to exit..." msgstr "Закройте окно, чтобы выйти..." @@ -361,44 +361,53 @@ msgstr "Удалить более старшие установленные яд msgid "Changes" msgstr "Изменения" -#: src/Gtk/MainWindow.vala:435 src/Gtk/SettingsDialog.vala:50 +#: src/Gtk/MainWindow.vala:440 +msgid "Error while downloading the changelog:\n" +msgstr "" + +#: src/Gtk/MainWindow.vala:450 +#, fuzzy +msgid "Downloading the changelog" +msgstr "Загрузка" + +#: src/Gtk/MainWindow.vala:472 src/Gtk/SettingsDialog.vala:50 msgid "Settings" msgstr "Настройки" -#: src/Gtk/MainWindow.vala:458 +#: src/Gtk/MainWindow.vala:495 msgid "About" msgstr "О программе" -#: src/Gtk/MainWindow.vala:503 +#: src/Gtk/MainWindow.vala:540 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Программа обновления ядра для дистрибутивов на базе Ubuntu" -#: src/Gtk/MainWindow.vala:504 +#: src/Gtk/MainWindow.vala:541 msgid "Forked" msgstr "Форк" -#: src/Gtk/MainWindow.vala:504 +#: src/Gtk/MainWindow.vala:541 msgid "Original" msgstr "Оригинал" -#: src/Gtk/MainWindow.vala:525 src/Gtk/MainWindow.vala:644 +#: src/Gtk/MainWindow.vala:562 src/Gtk/MainWindow.vala:682 msgid "Internet connection is not active." msgstr "Интернет соединение не активно." -#: src/Gtk/MainWindow.vala:538 +#: src/Gtk/MainWindow.vala:580 msgid "Refreshing..." msgstr "Обновление..." -#: src/Gtk/MainWindow.vala:627 +#: src/Gtk/MainWindow.vala:665 msgid "available" msgstr "доступно" -#: src/Gtk/MainWindow.vala:639 +#: src/Gtk/MainWindow.vala:677 msgid "Already Installed" msgstr "Уже установлено" -#: src/Gtk/ProgressWindow.vala:142 src/Gtk/TerminalWindow.vala:149 -#: src/Utility/Gtk/CustomMessageDialog.vala:153 +#: src/Gtk/ProgressWindow.vala:127 src/Gtk/TerminalWindow.vala:149 +#: src/Utility/Gtk/CustomMessageDialog.vala:154 msgid "Cancel" msgstr "Отмена" @@ -502,11 +511,11 @@ msgstr "Составители документации" msgid "Third Party Inclusions" msgstr "Включая сторонние инструменты" -#: src/Utility/Gtk/CustomMessageDialog.vala:157 +#: src/Utility/Gtk/CustomMessageDialog.vala:158 msgid "Yes" msgstr "Да" -#: src/Utility/Gtk/CustomMessageDialog.vala:158 +#: src/Utility/Gtk/CustomMessageDialog.vala:159 msgid "No" msgstr "Нет" diff --git a/po/sv.po b/po/sv.po index 8ffab671..9c410f7d 100644 --- a/po/sv.po +++ b/po/sv.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-02-02 18:20-0500\n" +"POT-Creation-Date: 2023-02-21 10:04-0500\n" "PO-Revision-Date: 2018-01-13 16:56+0100\n" "Last-Translator: Åke Engelbrektson \n" "Language-Team:Swedish\n" @@ -22,100 +22,100 @@ msgstr "Distribution" msgid "Architecture" msgstr "Systemarkitektur" -#: src/Common/LinuxKernel.vala:297 +#: src/Common/LinuxKernel.vala:299 #, fuzzy msgid "Fetching index..." msgstr "Hämtar index för" -#: src/Common/LinuxKernel.vala:336 +#: src/Common/LinuxKernel.vala:331 msgid "Fetching index from kernel.ubuntu.com..." msgstr "Hämtar index från kernel.ubuntu.com ..." -#: src/Common/LinuxKernel.vala:592 +#: src/Common/LinuxKernel.vala:578 #, fuzzy msgid "Could not find running kernel in list!" msgstr "Kunde inte hitta efterfrågad version" -#: src/Common/LinuxKernel.vala:598 +#: src/Common/LinuxKernel.vala:584 #, fuzzy msgid "Could not find any kernels to uninstall" msgstr "Välj kärnor för borttagning" -#: src/Common/LinuxKernel.vala:607 +#: src/Common/LinuxKernel.vala:593 #, fuzzy msgid "The following kernels will be uninstalled:" msgstr "Denna kärna är redan installerad" -#: src/Common/LinuxKernel.vala:614 +#: src/Common/LinuxKernel.vala:600 msgid "Continue ?" msgstr "" -#: src/Common/LinuxKernel.vala:640 src/Console/AppConsole.vala:314 +#: src/Common/LinuxKernel.vala:626 src/Console/AppConsole.vala:314 msgid "Latest update" msgstr "" -#: src/Common/LinuxKernel.vala:651 src/Console/AppConsole.vala:321 +#: src/Common/LinuxKernel.vala:637 src/Console/AppConsole.vala:321 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:659 src/Console/AppConsole.vala:326 +#: src/Common/LinuxKernel.vala:645 src/Console/AppConsole.vala:326 #: src/Console/AppConsole.vala:387 msgid "No updates found" msgstr "Inga uppdateringar hittades" -#: src/Common/LinuxKernel.vala:669 +#: src/Common/LinuxKernel.vala:655 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "" -#: src/Common/LinuxKernel.vala:930 +#: src/Common/LinuxKernel.vala:916 msgid "Packages Available" msgstr "Tillgängliga paket" -#: src/Common/LinuxKernel.vala:938 +#: src/Common/LinuxKernel.vala:924 msgid "Packages Installed" msgstr "Installerade paket" -#: src/Common/LinuxKernel.vala:1018 +#: src/Common/LinuxKernel.vala:1004 msgid "Available Kernels" msgstr "Tillgängliga kärnor" -#: src/Common/LinuxKernel.vala:1025 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1011 src/Gtk/MainWindow.vala:186 msgid "Installed" msgstr "Installerad" -#: src/Common/LinuxKernel.vala:1025 src/Gtk/MainWindow.vala:186 -#: src/Gtk/MainWindow.vala:617 src/Gtk/MainWindow.vala:631 +#: src/Common/LinuxKernel.vala:1011 src/Gtk/MainWindow.vala:186 +#: src/Gtk/MainWindow.vala:655 src/Gtk/MainWindow.vala:669 msgid "Running" msgstr "Körs" -#: src/Common/LinuxKernel.vala:1062 +#: src/Common/LinuxKernel.vala:1048 msgid "Downloading" msgstr "Laddar ner" -#: src/Common/LinuxKernel.vala:1081 -#: src/Utility/Gtk/CustomMessageDialog.vala:148 -#: src/Utility/Gtk/CustomMessageDialog.vala:152 +#: src/Common/LinuxKernel.vala:1067 +#: src/Utility/Gtk/CustomMessageDialog.vala:149 +#: src/Utility/Gtk/CustomMessageDialog.vala:153 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:1086 +#: src/Common/LinuxKernel.vala:1072 msgid "ERROR" msgstr "FEL" -#: src/Common/LinuxKernel.vala:1100 src/Gtk/MainWindow.vala:639 +#: src/Common/LinuxKernel.vala:1086 src/Gtk/MainWindow.vala:677 msgid "This kernel is already installed." msgstr "Denna kärna är redan installerad" -#: src/Common/LinuxKernel.vala:1126 +#: src/Common/LinuxKernel.vala:1112 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "Installation slutförd. Omstart krävs för att tillämpa den nya kärnan." -#: src/Common/LinuxKernel.vala:1129 +#: src/Common/LinuxKernel.vala:1115 msgid "Installation completed with errors" msgstr "Installation slutförd med fel" -#: src/Common/LinuxKernel.vala:1144 +#: src/Common/LinuxKernel.vala:1130 #, fuzzy msgid "" "Selected kernel is currently running and cannot be un-installed.\n" @@ -124,20 +124,20 @@ msgstr "" "Denna kärna används för tillfället och kan inte tas bort.\n" "Installera en annan kärna innan du tar bort den här." -#: src/Common/LinuxKernel.vala:1149 +#: src/Common/LinuxKernel.vala:1135 #, fuzzy msgid "Preparing to uninstall selected kernels" msgstr "Förbereder borttagning av markerade kärnor" -#: src/Common/LinuxKernel.vala:1180 src/Common/LinuxKernel.vala:1227 +#: src/Common/LinuxKernel.vala:1166 src/Common/LinuxKernel.vala:1213 msgid "Un-install completed" msgstr "Avinstallation slutförd" -#: src/Common/LinuxKernel.vala:1183 src/Common/LinuxKernel.vala:1230 +#: src/Common/LinuxKernel.vala:1169 src/Common/LinuxKernel.vala:1216 msgid "Un-install completed with errors" msgstr "Avinstallation slutförd med fel" -#: src/Common/LinuxKernel.vala:1196 +#: src/Common/LinuxKernel.vala:1182 #, fuzzy msgid "" "This kernel is currently running and cannot be un-installed.\n" @@ -146,11 +146,11 @@ msgstr "" "Denna kärna används för tillfället och kan inte tas bort.\n" "Installera en annan kärna innan du tar bort den här." -#: src/Common/Main.vala:241 +#: src/Common/Main.vala:240 msgid "Called from" msgstr "" -#: src/Common/Main.vala:275 +#: src/Common/Main.vala:274 #, fuzzy msgid "Notifications are disabled" msgstr "Avisering" @@ -160,7 +160,7 @@ msgstr "Avisering" msgid "File not found: %s" msgstr "Filen kunde inte hittas: %s" -#: src/Console/AppConsole.vala:62 src/Gtk/AppGtk.vala:149 +#: src/Console/AppConsole.vala:62 src/Gtk/AppGtk.vala:152 msgid "Syntax" msgstr "Syntax" @@ -218,7 +218,7 @@ msgstr "Ladda ner paket för specificerad kärna" msgid "Remove files from application cache" msgstr "Ta bort filer från program-cachen" -#: src/Console/AppConsole.vala:78 src/Gtk/AppGtk.vala:151 +#: src/Console/AppConsole.vala:78 src/Gtk/AppGtk.vala:154 msgid "Options" msgstr "Alternativ" @@ -252,7 +252,7 @@ msgid "" "One or more version strings (comma-separated) taken from the output of --list" msgstr "" -#: src/Console/AppConsole.vala:169 src/Gtk/AppGtk.vala:136 +#: src/Console/AppConsole.vala:169 src/Gtk/AppGtk.vala:139 msgid "Unknown option" msgstr "Okänt alternativ" @@ -306,11 +306,11 @@ msgstr "Tillgängliga paket" msgid "Install" msgstr "Installera" -#: src/Gtk/AppGtk.vala:153 +#: src/Gtk/AppGtk.vala:156 msgid "Print debug information" msgstr "Skriv ut felsökningsinformation" -#: src/Gtk/AppGtk.vala:154 +#: src/Gtk/AppGtk.vala:157 msgid "Show all options" msgstr "Visa alla alternativ" @@ -330,8 +330,8 @@ msgstr "Uppdatera" msgid "Internet connection is not active" msgstr "Internetuppkopplingen är inte aktiv" -#: src/Gtk/MainWindow.vala:321 src/Gtk/MainWindow.vala:525 -#: src/Gtk/MainWindow.vala:644 +#: src/Gtk/MainWindow.vala:321 src/Gtk/MainWindow.vala:562 +#: src/Gtk/MainWindow.vala:682 msgid "No Internet" msgstr "Inget internet" @@ -362,7 +362,7 @@ msgid "Select the kernels to uninstall" msgstr "Välj kärna för installation" #: src/Gtk/MainWindow.vala:383 src/Gtk/MainWindow.vala:417 -#: src/Gtk/MainWindow.vala:676 +#: src/Gtk/MainWindow.vala:714 msgid "Close window to exit..." msgstr "" @@ -380,47 +380,56 @@ msgstr "Ta bort installerade kärnor äldre än den som körs" msgid "Changes" msgstr "Ändringar" -#: src/Gtk/MainWindow.vala:435 src/Gtk/SettingsDialog.vala:50 +#: src/Gtk/MainWindow.vala:440 +msgid "Error while downloading the changelog:\n" +msgstr "" + +#: src/Gtk/MainWindow.vala:450 +#, fuzzy +msgid "Downloading the changelog" +msgstr "Laddar ner" + +#: src/Gtk/MainWindow.vala:472 src/Gtk/SettingsDialog.vala:50 msgid "Settings" msgstr "Inställningar" -#: src/Gtk/MainWindow.vala:458 +#: src/Gtk/MainWindow.vala:495 msgid "About" msgstr "Om" -#: src/Gtk/MainWindow.vala:503 +#: src/Gtk/MainWindow.vala:540 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Kärnuppgraderingsverktyg för Ubuntu-baserade distributioner" -#: src/Gtk/MainWindow.vala:504 +#: src/Gtk/MainWindow.vala:541 msgid "Forked" msgstr "" -#: src/Gtk/MainWindow.vala:504 +#: src/Gtk/MainWindow.vala:541 msgid "Original" msgstr "" -#: src/Gtk/MainWindow.vala:525 src/Gtk/MainWindow.vala:644 +#: src/Gtk/MainWindow.vala:562 src/Gtk/MainWindow.vala:682 #, fuzzy msgid "Internet connection is not active." msgstr "Internetuppkopplingen är inte aktiv" -#: src/Gtk/MainWindow.vala:538 +#: src/Gtk/MainWindow.vala:580 msgid "Refreshing..." msgstr "Uppdaterar ..." -#: src/Gtk/MainWindow.vala:627 +#: src/Gtk/MainWindow.vala:665 #, fuzzy msgid "available" msgstr "Tillgängliga paket" -#: src/Gtk/MainWindow.vala:639 +#: src/Gtk/MainWindow.vala:677 #, fuzzy msgid "Already Installed" msgstr "Installerad" -#: src/Gtk/ProgressWindow.vala:142 src/Gtk/TerminalWindow.vala:149 -#: src/Utility/Gtk/CustomMessageDialog.vala:153 +#: src/Gtk/ProgressWindow.vala:127 src/Gtk/TerminalWindow.vala:149 +#: src/Utility/Gtk/CustomMessageDialog.vala:154 msgid "Cancel" msgstr "Avbryt" @@ -527,11 +536,11 @@ msgstr "Dokumentalister" msgid "Third Party Inclusions" msgstr "Tredjepartsverktyg" -#: src/Utility/Gtk/CustomMessageDialog.vala:157 +#: src/Utility/Gtk/CustomMessageDialog.vala:158 msgid "Yes" msgstr "Ja" -#: src/Utility/Gtk/CustomMessageDialog.vala:158 +#: src/Utility/Gtk/CustomMessageDialog.vala:159 msgid "No" msgstr "Nej" diff --git a/po/tr.po b/po/tr.po index 4a96b02f..518a38a0 100644 --- a/po/tr.po +++ b/po/tr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-02-02 18:20-0500\n" +"POT-Creation-Date: 2023-02-21 10:04-0500\n" "PO-Revision-Date: 2022-08-06 16:48+0300\n" "Last-Translator: Sabri Ünal \n" "Language-Team: Turkish\n" @@ -21,98 +21,98 @@ msgstr "Dağıtım" msgid "Architecture" msgstr "Sistem mimarisi" -#: src/Common/LinuxKernel.vala:297 +#: src/Common/LinuxKernel.vala:299 msgid "Fetching index..." msgstr "İçerik dizini alınıyor..." -#: src/Common/LinuxKernel.vala:336 +#: src/Common/LinuxKernel.vala:331 msgid "Fetching index from kernel.ubuntu.com..." msgstr "İçerik dizini kernel.ubuntu.com alanından alınıyor..." -#: src/Common/LinuxKernel.vala:592 +#: src/Common/LinuxKernel.vala:578 msgid "Could not find running kernel in list!" msgstr "Çalışan sürüm listede bulunamadı!" -#: src/Common/LinuxKernel.vala:598 +#: src/Common/LinuxKernel.vala:584 msgid "Could not find any kernels to uninstall" msgstr "Kaldırılacak çekirdek bulunamadı" -#: src/Common/LinuxKernel.vala:607 +#: src/Common/LinuxKernel.vala:593 msgid "The following kernels will be uninstalled:" msgstr "Aşağıdaki çekirdekler kaldırılacak:" -#: src/Common/LinuxKernel.vala:614 +#: src/Common/LinuxKernel.vala:600 msgid "Continue ?" msgstr "Devam edilsin mi?" -#: src/Common/LinuxKernel.vala:640 src/Console/AppConsole.vala:314 +#: src/Common/LinuxKernel.vala:626 src/Console/AppConsole.vala:314 msgid "Latest update" msgstr "Son güncelleme" # Point burada point release anlamında kullanılıyor. Örneğin 5.10.x sayısının en sonundaki x rakamı point release/nokta sürüm oluyor. -#: src/Common/LinuxKernel.vala:651 src/Console/AppConsole.vala:321 +#: src/Common/LinuxKernel.vala:637 src/Console/AppConsole.vala:321 msgid "Latest point update" msgstr "Son nokta güncellemesi" -#: src/Common/LinuxKernel.vala:659 src/Console/AppConsole.vala:326 +#: src/Common/LinuxKernel.vala:645 src/Console/AppConsole.vala:326 #: src/Console/AppConsole.vala:387 msgid "No updates found" msgstr "Güncelleme bulunamadı" -#: src/Common/LinuxKernel.vala:669 +#: src/Common/LinuxKernel.vala:655 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Linux Çekirdek Sürümü %s Kurulsun mu? (e/h): " -#: src/Common/LinuxKernel.vala:930 +#: src/Common/LinuxKernel.vala:916 msgid "Packages Available" msgstr "Mevcut Paketler" -#: src/Common/LinuxKernel.vala:938 +#: src/Common/LinuxKernel.vala:924 msgid "Packages Installed" msgstr "Kurulu Paketler" -#: src/Common/LinuxKernel.vala:1018 +#: src/Common/LinuxKernel.vala:1004 msgid "Available Kernels" msgstr "Mevcut Çekirdekler" -#: src/Common/LinuxKernel.vala:1025 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1011 src/Gtk/MainWindow.vala:186 msgid "Installed" msgstr "Kurulu" -#: src/Common/LinuxKernel.vala:1025 src/Gtk/MainWindow.vala:186 -#: src/Gtk/MainWindow.vala:617 src/Gtk/MainWindow.vala:631 +#: src/Common/LinuxKernel.vala:1011 src/Gtk/MainWindow.vala:186 +#: src/Gtk/MainWindow.vala:655 src/Gtk/MainWindow.vala:669 msgid "Running" msgstr "Çalışıyor" -#: src/Common/LinuxKernel.vala:1062 +#: src/Common/LinuxKernel.vala:1048 msgid "Downloading" msgstr "İndiriliyor" -#: src/Common/LinuxKernel.vala:1081 -#: src/Utility/Gtk/CustomMessageDialog.vala:148 -#: src/Utility/Gtk/CustomMessageDialog.vala:152 +#: src/Common/LinuxKernel.vala:1067 +#: src/Utility/Gtk/CustomMessageDialog.vala:149 +#: src/Utility/Gtk/CustomMessageDialog.vala:153 msgid "OK" msgstr "Tamam" -#: src/Common/LinuxKernel.vala:1086 +#: src/Common/LinuxKernel.vala:1072 msgid "ERROR" msgstr "HATA" -#: src/Common/LinuxKernel.vala:1100 src/Gtk/MainWindow.vala:639 +#: src/Common/LinuxKernel.vala:1086 src/Gtk/MainWindow.vala:677 msgid "This kernel is already installed." msgstr "Bu çekirdek zaten kurulu." -#: src/Common/LinuxKernel.vala:1126 +#: src/Common/LinuxKernel.vala:1112 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "Kurulum tamamlandı. Yeni çekirdeği kullanmak için yeniden başlatma gerekiyor." -#: src/Common/LinuxKernel.vala:1129 +#: src/Common/LinuxKernel.vala:1115 msgid "Installation completed with errors" msgstr "Kurulum hatalarla tamamlandı" -#: src/Common/LinuxKernel.vala:1144 +#: src/Common/LinuxKernel.vala:1130 msgid "" "Selected kernel is currently running and cannot be un-installed.\n" " Install another kernel before un-installing this one." @@ -120,19 +120,19 @@ msgstr "" "Seçilen çekirdek şu anda çalışıyor ve kaldırılamaz.\n" " Bunu kaldırmadan önce başka bir çekirdek yükleyin." -#: src/Common/LinuxKernel.vala:1149 +#: src/Common/LinuxKernel.vala:1135 msgid "Preparing to uninstall selected kernels" msgstr "Seçilen çekirdekleri kaldırmaya hazırlanıyor" -#: src/Common/LinuxKernel.vala:1180 src/Common/LinuxKernel.vala:1227 +#: src/Common/LinuxKernel.vala:1166 src/Common/LinuxKernel.vala:1213 msgid "Un-install completed" msgstr "Kaldırma tamamlandı" -#: src/Common/LinuxKernel.vala:1183 src/Common/LinuxKernel.vala:1230 +#: src/Common/LinuxKernel.vala:1169 src/Common/LinuxKernel.vala:1216 msgid "Un-install completed with errors" msgstr "Kaldırma hatalarla tamamlandı" -#: src/Common/LinuxKernel.vala:1196 +#: src/Common/LinuxKernel.vala:1182 msgid "" "This kernel is currently running and cannot be un-installed.\n" " Install another kernel before un-installing this one." @@ -140,11 +140,11 @@ msgstr "" "Bu çekirdek şu anda çalışıyor ve kaldırılamaz.\n" "Bunu kaldırmadan önce başka bir çekirdek yükleyin." -#: src/Common/Main.vala:241 +#: src/Common/Main.vala:240 msgid "Called from" msgstr "Çağrı konumu" -#: src/Common/Main.vala:275 +#: src/Common/Main.vala:274 msgid "Notifications are disabled" msgstr "Bildirimler devre dışı bırakılmış" @@ -153,7 +153,7 @@ msgstr "Bildirimler devre dışı bırakılmış" msgid "File not found: %s" msgstr "%s dosyası bulunamadı" -#: src/Console/AppConsole.vala:62 src/Gtk/AppGtk.vala:149 +#: src/Console/AppConsole.vala:62 src/Gtk/AppGtk.vala:152 msgid "Syntax" msgstr "Sözdizimi" @@ -205,7 +205,7 @@ msgstr "Belirtilen çekirdekleri indir" msgid "Remove files from application cache" msgstr "Dosyaları uygulama önbelleğinden sil" -#: src/Console/AppConsole.vala:78 src/Gtk/AppGtk.vala:151 +#: src/Console/AppConsole.vala:78 src/Gtk/AppGtk.vala:154 msgid "Options" msgstr "Seçenekler" @@ -240,7 +240,7 @@ msgstr "" "--list çıktısından alınan bir veya daha fazla sürüm dizgesi (virgülle " "ayrılmış)" -#: src/Console/AppConsole.vala:169 src/Gtk/AppGtk.vala:136 +#: src/Console/AppConsole.vala:169 src/Gtk/AppGtk.vala:139 msgid "Unknown option" msgstr "Bilinmeyen seçenek" @@ -291,11 +291,11 @@ msgstr "Çekirdek %s Kullanılabilir" msgid "Install" msgstr "Kur" -#: src/Gtk/AppGtk.vala:153 +#: src/Gtk/AppGtk.vala:156 msgid "Print debug information" msgstr "Hata ayıklama bilgisini yazdır" -#: src/Gtk/AppGtk.vala:154 +#: src/Gtk/AppGtk.vala:157 msgid "Show all options" msgstr "Tüm seçenekleri göster" @@ -315,8 +315,8 @@ msgstr "Yenile" msgid "Internet connection is not active" msgstr "İnternet bağlantısı aktif değil" -#: src/Gtk/MainWindow.vala:321 src/Gtk/MainWindow.vala:525 -#: src/Gtk/MainWindow.vala:644 +#: src/Gtk/MainWindow.vala:321 src/Gtk/MainWindow.vala:562 +#: src/Gtk/MainWindow.vala:682 msgid "No Internet" msgstr "İnternet Yok" @@ -345,7 +345,7 @@ msgid "Select the kernels to uninstall" msgstr "Kaldırmak için çekirdek seçin" #: src/Gtk/MainWindow.vala:383 src/Gtk/MainWindow.vala:417 -#: src/Gtk/MainWindow.vala:676 +#: src/Gtk/MainWindow.vala:714 msgid "Close window to exit..." msgstr "Çıkış için pencereyi kapat..." @@ -361,44 +361,53 @@ msgstr "Çalışan çekirdekten daha eski çekirdekleri kaldır" msgid "Changes" msgstr "Değişiklikler" -#: src/Gtk/MainWindow.vala:435 src/Gtk/SettingsDialog.vala:50 +#: src/Gtk/MainWindow.vala:440 +msgid "Error while downloading the changelog:\n" +msgstr "" + +#: src/Gtk/MainWindow.vala:450 +#, fuzzy +msgid "Downloading the changelog" +msgstr "İndiriliyor" + +#: src/Gtk/MainWindow.vala:472 src/Gtk/SettingsDialog.vala:50 msgid "Settings" msgstr "Ayarlar" -#: src/Gtk/MainWindow.vala:458 +#: src/Gtk/MainWindow.vala:495 msgid "About" msgstr "Hakkında" -#: src/Gtk/MainWindow.vala:503 +#: src/Gtk/MainWindow.vala:540 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Ubuntu tabanlı dağıtımlar için çekirdek güncelleme aracı" -#: src/Gtk/MainWindow.vala:504 +#: src/Gtk/MainWindow.vala:541 msgid "Forked" msgstr "Çatallandı" -#: src/Gtk/MainWindow.vala:504 +#: src/Gtk/MainWindow.vala:541 msgid "Original" msgstr "Özgün" -#: src/Gtk/MainWindow.vala:525 src/Gtk/MainWindow.vala:644 +#: src/Gtk/MainWindow.vala:562 src/Gtk/MainWindow.vala:682 msgid "Internet connection is not active." msgstr "İnternet bağlantısı aktif değil." -#: src/Gtk/MainWindow.vala:538 +#: src/Gtk/MainWindow.vala:580 msgid "Refreshing..." msgstr "Yenileniyor..." -#: src/Gtk/MainWindow.vala:627 +#: src/Gtk/MainWindow.vala:665 msgid "available" msgstr "mevcut" -#: src/Gtk/MainWindow.vala:639 +#: src/Gtk/MainWindow.vala:677 msgid "Already Installed" msgstr "Zaten Kurulu" -#: src/Gtk/ProgressWindow.vala:142 src/Gtk/TerminalWindow.vala:149 -#: src/Utility/Gtk/CustomMessageDialog.vala:153 +#: src/Gtk/ProgressWindow.vala:127 src/Gtk/TerminalWindow.vala:149 +#: src/Utility/Gtk/CustomMessageDialog.vala:154 msgid "Cancel" msgstr "İptal Et" @@ -502,11 +511,11 @@ msgstr "Belgelendirenler" msgid "Third Party Inclusions" msgstr "Üçüncü Taraf Eklemeler" -#: src/Utility/Gtk/CustomMessageDialog.vala:157 +#: src/Utility/Gtk/CustomMessageDialog.vala:158 msgid "Yes" msgstr "Evet" -#: src/Utility/Gtk/CustomMessageDialog.vala:158 +#: src/Utility/Gtk/CustomMessageDialog.vala:159 msgid "No" msgstr "Hayır" diff --git a/po/uk.po b/po/uk.po index 2832936f..4a4f1d7f 100644 --- a/po/uk.po +++ b/po/uk.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-02-02 18:20-0500\n" +"POT-Creation-Date: 2023-02-21 10:04-0500\n" "PO-Revision-Date: 2019-07-25 11:00+0300\n" "Last-Translator: Serhii Golovko \n" "Language-Team: Ukranian\n" @@ -21,97 +21,97 @@ msgstr "Дистрибутив" msgid "Architecture" msgstr "Системна архитектура" -#: src/Common/LinuxKernel.vala:297 +#: src/Common/LinuxKernel.vala:299 msgid "Fetching index..." msgstr "Отримання індекса ..." -#: src/Common/LinuxKernel.vala:336 +#: src/Common/LinuxKernel.vala:331 msgid "Fetching index from kernel.ubuntu.com..." msgstr "Отримання індекса з kernel.ubuntu.com..." -#: src/Common/LinuxKernel.vala:592 +#: src/Common/LinuxKernel.vala:578 msgid "Could not find running kernel in list!" msgstr "Не вдалося знайти запущене ядро у списку!" -#: src/Common/LinuxKernel.vala:598 +#: src/Common/LinuxKernel.vala:584 msgid "Could not find any kernels to uninstall" msgstr "Не вдалося знайти жодне ядро для вилучення" -#: src/Common/LinuxKernel.vala:607 +#: src/Common/LinuxKernel.vala:593 msgid "The following kernels will be uninstalled:" msgstr "Наступні ядра будуть видалені:" -#: src/Common/LinuxKernel.vala:614 +#: src/Common/LinuxKernel.vala:600 msgid "Continue ?" msgstr "Продовжувати ?" -#: src/Common/LinuxKernel.vala:640 src/Console/AppConsole.vala:314 +#: src/Common/LinuxKernel.vala:626 src/Console/AppConsole.vala:314 msgid "Latest update" msgstr "Останнє оновлення" -#: src/Common/LinuxKernel.vala:651 src/Console/AppConsole.vala:321 +#: src/Common/LinuxKernel.vala:637 src/Console/AppConsole.vala:321 msgid "Latest point update" msgstr "Остання точка оновлення" -#: src/Common/LinuxKernel.vala:659 src/Console/AppConsole.vala:326 +#: src/Common/LinuxKernel.vala:645 src/Console/AppConsole.vala:326 #: src/Console/AppConsole.vala:387 msgid "No updates found" msgstr "Оновлень не знайдено" -#: src/Common/LinuxKernel.vala:669 +#: src/Common/LinuxKernel.vala:655 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Встановити Ядро Версії %s ? (так/ні): " -#: src/Common/LinuxKernel.vala:930 +#: src/Common/LinuxKernel.vala:916 msgid "Packages Available" msgstr "Доступні пакети" -#: src/Common/LinuxKernel.vala:938 +#: src/Common/LinuxKernel.vala:924 msgid "Packages Installed" msgstr "Встановлені пакети" -#: src/Common/LinuxKernel.vala:1018 +#: src/Common/LinuxKernel.vala:1004 msgid "Available Kernels" msgstr "Доступні ядра" -#: src/Common/LinuxKernel.vala:1025 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1011 src/Gtk/MainWindow.vala:186 msgid "Installed" msgstr "Встановлено" -#: src/Common/LinuxKernel.vala:1025 src/Gtk/MainWindow.vala:186 -#: src/Gtk/MainWindow.vala:617 src/Gtk/MainWindow.vala:631 +#: src/Common/LinuxKernel.vala:1011 src/Gtk/MainWindow.vala:186 +#: src/Gtk/MainWindow.vala:655 src/Gtk/MainWindow.vala:669 msgid "Running" msgstr "Використовується" -#: src/Common/LinuxKernel.vala:1062 +#: src/Common/LinuxKernel.vala:1048 msgid "Downloading" msgstr "Завантаження" -#: src/Common/LinuxKernel.vala:1081 -#: src/Utility/Gtk/CustomMessageDialog.vala:148 -#: src/Utility/Gtk/CustomMessageDialog.vala:152 +#: src/Common/LinuxKernel.vala:1067 +#: src/Utility/Gtk/CustomMessageDialog.vala:149 +#: src/Utility/Gtk/CustomMessageDialog.vala:153 msgid "OK" msgstr "Добре" -#: src/Common/LinuxKernel.vala:1086 +#: src/Common/LinuxKernel.vala:1072 msgid "ERROR" msgstr "ПОМИЛКА" -#: src/Common/LinuxKernel.vala:1100 src/Gtk/MainWindow.vala:639 +#: src/Common/LinuxKernel.vala:1086 src/Gtk/MainWindow.vala:677 msgid "This kernel is already installed." msgstr "Це ядро вже встановлено." -#: src/Common/LinuxKernel.vala:1126 +#: src/Common/LinuxKernel.vala:1112 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "Установка завершена. Для використання нового ядра потрібна перезавантаження." -#: src/Common/LinuxKernel.vala:1129 +#: src/Common/LinuxKernel.vala:1115 msgid "Installation completed with errors" msgstr "Установка завершена з помилками" -#: src/Common/LinuxKernel.vala:1144 +#: src/Common/LinuxKernel.vala:1130 msgid "" "Selected kernel is currently running and cannot be un-installed.\n" " Install another kernel before un-installing this one." @@ -119,19 +119,19 @@ msgstr "" "Це ядро зараз працює і не може бути видалено. \n" "Встановіть інше ядро, перш ніж видаляти його." -#: src/Common/LinuxKernel.vala:1149 +#: src/Common/LinuxKernel.vala:1135 msgid "Preparing to uninstall selected kernels" msgstr "Підготовка до видалення вибраних ядер" -#: src/Common/LinuxKernel.vala:1180 src/Common/LinuxKernel.vala:1227 +#: src/Common/LinuxKernel.vala:1166 src/Common/LinuxKernel.vala:1213 msgid "Un-install completed" msgstr "Видалення завершено" -#: src/Common/LinuxKernel.vala:1183 src/Common/LinuxKernel.vala:1230 +#: src/Common/LinuxKernel.vala:1169 src/Common/LinuxKernel.vala:1216 msgid "Un-install completed with errors" msgstr "Видалення завершено з помилками" -#: src/Common/LinuxKernel.vala:1196 +#: src/Common/LinuxKernel.vala:1182 msgid "" "This kernel is currently running and cannot be un-installed.\n" " Install another kernel before un-installing this one." @@ -139,11 +139,11 @@ msgstr "" "Це ядро наразі працює і його неможливо видалити.\n" " Встановіть інше ядро перед тим, як видалити его." -#: src/Common/Main.vala:241 +#: src/Common/Main.vala:240 msgid "Called from" msgstr "Викликано з" -#: src/Common/Main.vala:275 +#: src/Common/Main.vala:274 msgid "Notifications are disabled" msgstr "Повідомлення вимкнено" @@ -152,7 +152,7 @@ msgstr "Повідомлення вимкнено" msgid "File not found: %s" msgstr "Файл не знайдено: %s" -#: src/Console/AppConsole.vala:62 src/Gtk/AppGtk.vala:149 +#: src/Console/AppConsole.vala:62 src/Gtk/AppGtk.vala:152 msgid "Syntax" msgstr "Синтаксис" @@ -204,7 +204,7 @@ msgstr "Завантажте конкретні ядра" msgid "Remove files from application cache" msgstr "Видалити файли з кешу програми" -#: src/Console/AppConsole.vala:78 src/Gtk/AppGtk.vala:151 +#: src/Console/AppConsole.vala:78 src/Gtk/AppGtk.vala:154 msgid "Options" msgstr "Параметри" @@ -237,7 +237,7 @@ msgid "" "One or more version strings (comma-separated) taken from the output of --list" msgstr "Одна або кілька рядків версії (розділені комами) з виводу --list" -#: src/Console/AppConsole.vala:169 src/Gtk/AppGtk.vala:136 +#: src/Console/AppConsole.vala:169 src/Gtk/AppGtk.vala:139 msgid "Unknown option" msgstr "Невідомий параметр" @@ -288,11 +288,11 @@ msgstr "Ядро %s Доступне" msgid "Install" msgstr "Встановити" -#: src/Gtk/AppGtk.vala:153 +#: src/Gtk/AppGtk.vala:156 msgid "Print debug information" msgstr "Роздрукувати зневадження" -#: src/Gtk/AppGtk.vala:154 +#: src/Gtk/AppGtk.vala:157 msgid "Show all options" msgstr "Показати усі параметри" @@ -312,8 +312,8 @@ msgstr "Оновити" msgid "Internet connection is not active" msgstr "Інтернет з'єднання не активне" -#: src/Gtk/MainWindow.vala:321 src/Gtk/MainWindow.vala:525 -#: src/Gtk/MainWindow.vala:644 +#: src/Gtk/MainWindow.vala:321 src/Gtk/MainWindow.vala:562 +#: src/Gtk/MainWindow.vala:682 msgid "No Internet" msgstr "Інтернет з'єднання відсутнє" @@ -342,7 +342,7 @@ msgid "Select the kernels to uninstall" msgstr "Виберіть ядро для встановлення" #: src/Gtk/MainWindow.vala:383 src/Gtk/MainWindow.vala:417 -#: src/Gtk/MainWindow.vala:676 +#: src/Gtk/MainWindow.vala:714 msgid "Close window to exit..." msgstr "Закрийте вікно, щоб вийти..." @@ -358,44 +358,53 @@ msgstr "Видалити ядра, старіші за запущене ядро msgid "Changes" msgstr "Зміни" -#: src/Gtk/MainWindow.vala:435 src/Gtk/SettingsDialog.vala:50 +#: src/Gtk/MainWindow.vala:440 +msgid "Error while downloading the changelog:\n" +msgstr "" + +#: src/Gtk/MainWindow.vala:450 +#, fuzzy +msgid "Downloading the changelog" +msgstr "Завантаження" + +#: src/Gtk/MainWindow.vala:472 src/Gtk/SettingsDialog.vala:50 msgid "Settings" msgstr "Налаштування" -#: src/Gtk/MainWindow.vala:458 +#: src/Gtk/MainWindow.vala:495 msgid "About" msgstr "Про программу" -#: src/Gtk/MainWindow.vala:503 +#: src/Gtk/MainWindow.vala:540 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Програма оновлення ядра для дистрибутивів на базі Ubuntu" -#: src/Gtk/MainWindow.vala:504 +#: src/Gtk/MainWindow.vala:541 msgid "Forked" msgstr "Двоєний" -#: src/Gtk/MainWindow.vala:504 +#: src/Gtk/MainWindow.vala:541 msgid "Original" msgstr "Оригінал" -#: src/Gtk/MainWindow.vala:525 src/Gtk/MainWindow.vala:644 +#: src/Gtk/MainWindow.vala:562 src/Gtk/MainWindow.vala:682 msgid "Internet connection is not active." msgstr "Інтернет з'єднання не активно." -#: src/Gtk/MainWindow.vala:538 +#: src/Gtk/MainWindow.vala:580 msgid "Refreshing..." msgstr "Оновлення..." -#: src/Gtk/MainWindow.vala:627 +#: src/Gtk/MainWindow.vala:665 msgid "available" msgstr "доступний" -#: src/Gtk/MainWindow.vala:639 +#: src/Gtk/MainWindow.vala:677 msgid "Already Installed" msgstr "Вже встановлено" -#: src/Gtk/ProgressWindow.vala:142 src/Gtk/TerminalWindow.vala:149 -#: src/Utility/Gtk/CustomMessageDialog.vala:153 +#: src/Gtk/ProgressWindow.vala:127 src/Gtk/TerminalWindow.vala:149 +#: src/Utility/Gtk/CustomMessageDialog.vala:154 msgid "Cancel" msgstr "Відміна" @@ -499,11 +508,11 @@ msgstr "Документатори" msgid "Third Party Inclusions" msgstr "Включення третіх осіб" -#: src/Utility/Gtk/CustomMessageDialog.vala:157 +#: src/Utility/Gtk/CustomMessageDialog.vala:158 msgid "Yes" msgstr "Так" -#: src/Utility/Gtk/CustomMessageDialog.vala:158 +#: src/Utility/Gtk/CustomMessageDialog.vala:159 msgid "No" msgstr "Ні" From a0c28032e52c02017904832144ad4032d65804f6 Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Tue, 21 Feb 2023 10:40:53 -0500 Subject: [PATCH 218/567] 1.0.20 --- AUTHORS | 1 + BRANDING.mak | 2 +- TRANSLATORS | 2 +- po/de.po | 146 +++++++++++++++++------------------------------ po/el.po | 146 +++++++++++++++++------------------------------ po/es.po | 148 +++++++++++++++++------------------------------- po/fr.po | 147 +++++++++++++++++------------------------------ po/hr.po | 146 +++++++++++++++++------------------------------ po/it.po | 146 +++++++++++++++++------------------------------ po/ko.po | 146 +++++++++++++++++------------------------------ po/messages.pot | 144 +++++++++++++++++----------------------------- po/nl.po | 147 +++++++++++++++++------------------------------ po/pl.po | 148 ++++++++++++++++++------------------------------ po/ru.po | 146 +++++++++++++++++------------------------------ po/sv.po | 148 +++++++++++++++++------------------------------- po/tr.po | 146 +++++++++++++++++------------------------------ po/uk.po | 146 +++++++++++++++++------------------------------ 17 files changed, 745 insertions(+), 1310 deletions(-) diff --git a/AUTHORS b/AUTHORS index 278ff1bd..ef8567fb 100644 --- a/AUTHORS +++ b/AUTHORS @@ -4,6 +4,7 @@ shg8@github net connection check cloyce@github rc kernels option sylt@github better lowest displayed version scheme LucasChollet@github better thread & child process handling + create FileDownloader & replace aria2c Inclusions: notify-send.sh https://github.com/bkw777/notify-send.sh diff --git a/BRANDING.mak b/BRANDING.mak index 6a3acce3..fce2df6d 100644 --- a/BRANDING.mak +++ b/BRANDING.mak @@ -3,7 +3,7 @@ VERSION_MAJOR = 1 VERSION_MINOR = 0 -VERSION_MICRO = 19 +VERSION_MICRO = 20 BRANDING_SHORTNAME = mainline BRANDING_LONGNAME = Ubuntu Mainline Kernel Installer BRANDING_AUTHORNAME = Brian K. White diff --git a/TRANSLATORS b/TRANSLATORS index 426b1790..0df9d5bf 100644 --- a/TRANSLATORS +++ b/TRANSLATORS @@ -1,4 +1,4 @@ -de: Tobias W , Marvin Meysel +de: Marvin Meysel el: Vasilis Kosmidis es: Adolfo Jayme Barrientos fr: Yolateng0 diff --git a/po/de.po b/po/de.po index e6d017ed..2bc289e2 100644 --- a/po/de.po +++ b/po/de.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-02-02 18:20-0500\n" +"POT-Creation-Date: 2023-02-21 10:29-0500\n" "PO-Revision-Date: 2023-02-20 18:40+0100\n" "Last-Translator: Marvin Meysel \n" "Language-Team: German\n" @@ -13,106 +13,104 @@ msgstr "" "X-Launchpad-Export-Date: 2017-04-13 11:48+0000\n" "X-Generator: Poedit 3.1.1\n" -#: src/Common/LinuxKernel.vala:87 +#: src/Common/LinuxKernel.vala:88 msgid "Distribution" msgstr "Distribution" -#: src/Common/LinuxKernel.vala:101 +#: src/Common/LinuxKernel.vala:102 msgid "Architecture" msgstr "Architektur" -#: src/Common/LinuxKernel.vala:299 +#: src/Common/LinuxKernel.vala:300 msgid "Fetching index..." msgstr "Index abrufen..." -#: src/Common/LinuxKernel.vala:331 +#: src/Common/LinuxKernel.vala:332 msgid "Fetching index from kernel.ubuntu.com..." msgstr "Hole Index von kernel.ubuntu.com..." -#: src/Common/LinuxKernel.vala:578 +#: src/Common/LinuxKernel.vala:579 msgid "Could not find running kernel in list!" msgstr "Konnte keinen laufenden Kernel in der Liste finden!" -#: src/Common/LinuxKernel.vala:584 +#: src/Common/LinuxKernel.vala:585 msgid "Could not find any kernels to uninstall" msgstr "Es konnten keine Kernel zum Deinstallieren gefunden werden" -#: src/Common/LinuxKernel.vala:593 +#: src/Common/LinuxKernel.vala:594 msgid "The following kernels will be uninstalled:" msgstr "Die folgenden Kernel werden deinstalliert:" -#: src/Common/LinuxKernel.vala:600 +#: src/Common/LinuxKernel.vala:601 msgid "Continue ?" msgstr "Weiter ?" -#: src/Common/LinuxKernel.vala:626 src/Console/AppConsole.vala:314 +#: src/Common/LinuxKernel.vala:627 src/Console/AppConsole.vala:314 msgid "Latest update" msgstr "Neustes Update" -#: src/Common/LinuxKernel.vala:637 src/Console/AppConsole.vala:321 +#: src/Common/LinuxKernel.vala:638 src/Console/AppConsole.vala:321 msgid "Latest point update" msgstr "Letzte Punktaktualisierung" -#: src/Common/LinuxKernel.vala:645 src/Console/AppConsole.vala:326 +#: src/Common/LinuxKernel.vala:646 src/Console/AppConsole.vala:326 #: src/Console/AppConsole.vala:387 msgid "No updates found" msgstr "Keine Updates gefunden" -#: src/Common/LinuxKernel.vala:655 +#: src/Common/LinuxKernel.vala:656 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Kernel-Version %s installieren? (j/n):" -#: src/Common/LinuxKernel.vala:916 +#: src/Common/LinuxKernel.vala:917 msgid "Packages Available" msgstr "Verfügbare Pakete" -#: src/Common/LinuxKernel.vala:924 +#: src/Common/LinuxKernel.vala:925 msgid "Packages Installed" msgstr "Installierte Pakete" -#: src/Common/LinuxKernel.vala:1004 +#: src/Common/LinuxKernel.vala:1005 msgid "Available Kernels" msgstr "Verfügbare Kernel" -#: src/Common/LinuxKernel.vala:1011 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1012 src/Gtk/MainWindow.vala:186 msgid "Installed" msgstr "Installiert" -#: src/Common/LinuxKernel.vala:1011 src/Gtk/MainWindow.vala:186 -#: src/Gtk/MainWindow.vala:655 src/Gtk/MainWindow.vala:669 +#: src/Common/LinuxKernel.vala:1012 src/Gtk/MainWindow.vala:186 +#: src/Gtk/MainWindow.vala:641 src/Gtk/MainWindow.vala:655 msgid "Running" msgstr "Läuft" -#: src/Common/LinuxKernel.vala:1048 +#: src/Common/LinuxKernel.vala:1049 msgid "Downloading" msgstr "Herunterladen" -#: src/Common/LinuxKernel.vala:1067 -#: src/Utility/Gtk/CustomMessageDialog.vala:149 -#: src/Utility/Gtk/CustomMessageDialog.vala:153 +#: src/Common/LinuxKernel.vala:1068 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:1072 +#: src/Common/LinuxKernel.vala:1073 msgid "ERROR" msgstr "Fehler" -#: src/Common/LinuxKernel.vala:1086 src/Gtk/MainWindow.vala:677 +#: src/Common/LinuxKernel.vala:1087 msgid "This kernel is already installed." msgstr "Dieser Kernel ist bereits installiert." -#: src/Common/LinuxKernel.vala:1112 +#: src/Common/LinuxKernel.vala:1113 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "Die Installation ist abgeschlossen. Ein Neustart ist erforderlich, um den " "neuen Kernel zu verwenden." -#: src/Common/LinuxKernel.vala:1115 +#: src/Common/LinuxKernel.vala:1116 msgid "Installation completed with errors" msgstr "Installation mit Fehlern abgeschlossen" -#: src/Common/LinuxKernel.vala:1130 +#: src/Common/LinuxKernel.vala:1131 msgid "" "Selected kernel is currently running and cannot be un-installed.\n" " Install another kernel before un-installing this one." @@ -121,19 +119,19 @@ msgstr "" "werden.\n" " Installieren Sie einen anderen Kernel, bevor Sie diesen deinstallieren." -#: src/Common/LinuxKernel.vala:1135 +#: src/Common/LinuxKernel.vala:1136 msgid "Preparing to uninstall selected kernels" msgstr "Vorbereiten der Deinstallation ausgewählter Kernel" -#: src/Common/LinuxKernel.vala:1166 src/Common/LinuxKernel.vala:1213 +#: src/Common/LinuxKernel.vala:1167 src/Common/LinuxKernel.vala:1214 msgid "Un-install completed" msgstr "Deinstallation abgeschlossen" -#: src/Common/LinuxKernel.vala:1169 src/Common/LinuxKernel.vala:1216 +#: src/Common/LinuxKernel.vala:1170 src/Common/LinuxKernel.vala:1217 msgid "Un-install completed with errors" msgstr "Deinstallation mit Fehlern abgeschlossen" -#: src/Common/LinuxKernel.vala:1182 +#: src/Common/LinuxKernel.vala:1183 msgid "" "This kernel is currently running and cannot be un-installed.\n" " Install another kernel before un-installing this one." @@ -291,7 +289,7 @@ msgid "Kernel %s Available" msgstr "Kernel %s verfügbar" #: src/Console/AppConsole.vala:367 src/Console/AppConsole.vala:379 -#: src/Gtk/MainWindow.vala:330 +#: src/Gtk/MainWindow.vala:328 msgid "Install" msgstr "Installieren" @@ -315,103 +313,73 @@ msgstr "Status" msgid "Refresh" msgstr "Auffrischen" -#: src/Gtk/MainWindow.vala:321 src/Utility/TeeJee.System.vala:42 -msgid "Internet connection is not active" -msgstr "Internetverbindung ist nicht aktiv" - -#: src/Gtk/MainWindow.vala:321 src/Gtk/MainWindow.vala:562 -#: src/Gtk/MainWindow.vala:682 -msgid "No Internet" -msgstr "Kein Internet" - -#: src/Gtk/MainWindow.vala:339 -msgid "Multiple Kernels Selected" -msgstr "Mehrere Kernel ausgewählt" - #: src/Gtk/MainWindow.vala:339 -msgid "Select a single kernel to install" -msgstr "Wählen Sie einen einzelnen Kernel zur Installation aus" - -#: src/Gtk/MainWindow.vala:342 src/Gtk/MainWindow.vala:353 -msgid "Not Selected" -msgstr "Nichts ausgewählt" - -#: src/Gtk/MainWindow.vala:342 -msgid "Select the kernel to install" -msgstr "Wählen Sie den zu installierenden Kernel" - -#: src/Gtk/MainWindow.vala:347 msgid "Uninstall" msgstr "Deinstallieren" -#: src/Gtk/MainWindow.vala:353 -msgid "Select the kernels to uninstall" -msgstr "Wählen Sie die zu deinstallierenden Kernel aus" - -#: src/Gtk/MainWindow.vala:383 src/Gtk/MainWindow.vala:417 -#: src/Gtk/MainWindow.vala:714 +#: src/Gtk/MainWindow.vala:372 src/Gtk/MainWindow.vala:405 +#: src/Gtk/MainWindow.vala:694 msgid "Close window to exit..." msgstr "Fenster schließen zum Verlassen..." -#: src/Gtk/MainWindow.vala:391 +#: src/Gtk/MainWindow.vala:379 msgid "Uninstall Old" msgstr "Alte deinstallieren" -#: src/Gtk/MainWindow.vala:392 +#: src/Gtk/MainWindow.vala:380 msgid "Uninstall kernels older than running kernel" msgstr "Deinstallation von Kerneln, die älter sind als der aktuelle Kernel" -#: src/Gtk/MainWindow.vala:424 +#: src/Gtk/MainWindow.vala:412 msgid "Changes" msgstr "Änderungen" -#: src/Gtk/MainWindow.vala:440 +#: src/Gtk/MainWindow.vala:428 msgid "Error while downloading the changelog:\n" msgstr "" -#: src/Gtk/MainWindow.vala:450 +#: src/Gtk/MainWindow.vala:438 #, fuzzy msgid "Downloading the changelog" msgstr "Downloaded" -#: src/Gtk/MainWindow.vala:472 src/Gtk/SettingsDialog.vala:50 +#: src/Gtk/MainWindow.vala:460 src/Gtk/SettingsDialog.vala:50 msgid "Settings" msgstr "Einstellungen" -#: src/Gtk/MainWindow.vala:495 +#: src/Gtk/MainWindow.vala:483 msgid "About" msgstr "Über" -#: src/Gtk/MainWindow.vala:540 +#: src/Gtk/MainWindow.vala:528 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Kernel-Upgrade-Dienstprogramm für Ubuntu-basierte Distributionen" -#: src/Gtk/MainWindow.vala:541 +#: src/Gtk/MainWindow.vala:529 msgid "Forked" msgstr "Forked" -#: src/Gtk/MainWindow.vala:541 +#: src/Gtk/MainWindow.vala:529 msgid "Original" msgstr "Original" -#: src/Gtk/MainWindow.vala:562 src/Gtk/MainWindow.vala:682 -msgid "Internet connection is not active." -msgstr "Die Internetverbindung ist nicht aktiv." - -#: src/Gtk/MainWindow.vala:580 +#: src/Gtk/MainWindow.vala:566 msgid "Refreshing..." msgstr "Auffrischen..." -#: src/Gtk/MainWindow.vala:665 +#: src/Gtk/MainWindow.vala:651 msgid "available" msgstr "Verfügbar" -#: src/Gtk/MainWindow.vala:677 -msgid "Already Installed" -msgstr "Bereits installiert" +#: src/Gtk/MainWindow.vala:709 +msgid "No Internet" +msgstr "Kein Internet" + +#: src/Gtk/MainWindow.vala:710 +msgid "Internet connection is not active." +msgstr "Die Internetverbindung ist nicht aktiv." #: src/Gtk/ProgressWindow.vala:127 src/Gtk/TerminalWindow.vala:149 -#: src/Utility/Gtk/CustomMessageDialog.vala:154 msgid "Cancel" msgstr "Abbrechen" @@ -515,15 +483,7 @@ msgstr "Dokumentierer" msgid "Third Party Inclusions" msgstr "Einschlüsse von Drittparteien" -#: src/Utility/Gtk/CustomMessageDialog.vala:158 -msgid "Yes" -msgstr "Ja" - -#: src/Utility/Gtk/CustomMessageDialog.vala:159 -msgid "No" -msgstr "Nein" - -#: src/Utility/Gtk/GtkHelper.vala:59 +#: src/Utility/Gtk/GtkHelper.vala:39 msgid "Missing Icon" msgstr "Fehlendes Symbol" diff --git a/po/el.po b/po/el.po index 076f5458..842b867f 100644 --- a/po/el.po +++ b/po/el.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-02-21 10:04-0500\n" +"POT-Creation-Date: 2023-02-21 10:29-0500\n" "PO-Revision-Date: 2023-01-10 02:03-0600\n" "Last-Translator: Vasilis Kosmidis \n" "Language-Team: Greek\n" @@ -13,107 +13,105 @@ msgstr "" "X-Launchpad-Export-Date: 2017-04-13 11:48+0000\n" "X-Generator: Poedit 2.0.5\n" -#: src/Common/LinuxKernel.vala:87 +#: src/Common/LinuxKernel.vala:88 msgid "Distribution" msgstr "Διανομή" -#: src/Common/LinuxKernel.vala:101 +#: src/Common/LinuxKernel.vala:102 msgid "Architecture" msgstr "Αρχιτεκτονική" -#: src/Common/LinuxKernel.vala:299 +#: src/Common/LinuxKernel.vala:300 msgid "Fetching index..." msgstr "Ανάκτηση ευρετηρίου..." -#: src/Common/LinuxKernel.vala:331 +#: src/Common/LinuxKernel.vala:332 msgid "Fetching index from kernel.ubuntu.com..." msgstr "Ανάκτηση ευρετηρίου από το kernel.ubuntu.com..." -#: src/Common/LinuxKernel.vala:578 +#: src/Common/LinuxKernel.vala:579 msgid "Could not find running kernel in list!" msgstr "Δεν ήταν δυνατή η εύρεση του τρέχοντος πυρήνα στη λίστα!" -#: src/Common/LinuxKernel.vala:584 +#: src/Common/LinuxKernel.vala:585 msgid "Could not find any kernels to uninstall" msgstr "Δεν βρέθηκε κανένας πυρήνας για απεγκατάσταση" -#: src/Common/LinuxKernel.vala:593 +#: src/Common/LinuxKernel.vala:594 #, fuzzy msgid "The following kernels will be uninstalled:" msgstr "Αυτός ο πυρήνας είναι ήδη εγκατεστημένος." -#: src/Common/LinuxKernel.vala:600 +#: src/Common/LinuxKernel.vala:601 msgid "Continue ?" msgstr "Συνέχεια;" -#: src/Common/LinuxKernel.vala:626 src/Console/AppConsole.vala:314 +#: src/Common/LinuxKernel.vala:627 src/Console/AppConsole.vala:314 msgid "Latest update" msgstr "Τελευταία αναβάθμιση" -#: src/Common/LinuxKernel.vala:637 src/Console/AppConsole.vala:321 +#: src/Common/LinuxKernel.vala:638 src/Console/AppConsole.vala:321 msgid "Latest point update" msgstr "Τελευταία ενημέρωση συντήρησης" -#: src/Common/LinuxKernel.vala:645 src/Console/AppConsole.vala:326 +#: src/Common/LinuxKernel.vala:646 src/Console/AppConsole.vala:326 #: src/Console/AppConsole.vala:387 msgid "No updates found" msgstr "Δεν βρέθηκαν ενημερώσεις" -#: src/Common/LinuxKernel.vala:655 +#: src/Common/LinuxKernel.vala:656 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Εγκατάσταση του πυρήνα έκδοσης %s ; (ν/ό):" -#: src/Common/LinuxKernel.vala:916 +#: src/Common/LinuxKernel.vala:917 msgid "Packages Available" msgstr "Διαθέσιμα πακέτα" -#: src/Common/LinuxKernel.vala:924 +#: src/Common/LinuxKernel.vala:925 msgid "Packages Installed" msgstr "Εγκατεστημένα πακέτα" -#: src/Common/LinuxKernel.vala:1004 +#: src/Common/LinuxKernel.vala:1005 msgid "Available Kernels" msgstr "Διαθέσιμοι πυρήνες" -#: src/Common/LinuxKernel.vala:1011 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1012 src/Gtk/MainWindow.vala:186 msgid "Installed" msgstr "Εγκατεστημένος" -#: src/Common/LinuxKernel.vala:1011 src/Gtk/MainWindow.vala:186 -#: src/Gtk/MainWindow.vala:655 src/Gtk/MainWindow.vala:669 +#: src/Common/LinuxKernel.vala:1012 src/Gtk/MainWindow.vala:186 +#: src/Gtk/MainWindow.vala:641 src/Gtk/MainWindow.vala:655 msgid "Running" msgstr "Ενεργός" -#: src/Common/LinuxKernel.vala:1048 +#: src/Common/LinuxKernel.vala:1049 msgid "Downloading" msgstr "Λήψη" -#: src/Common/LinuxKernel.vala:1067 -#: src/Utility/Gtk/CustomMessageDialog.vala:149 -#: src/Utility/Gtk/CustomMessageDialog.vala:153 +#: src/Common/LinuxKernel.vala:1068 msgid "OK" msgstr "ΟΚ" -#: src/Common/LinuxKernel.vala:1072 +#: src/Common/LinuxKernel.vala:1073 msgid "ERROR" msgstr "ΣΦΑΛΜΑ" -#: src/Common/LinuxKernel.vala:1086 src/Gtk/MainWindow.vala:677 +#: src/Common/LinuxKernel.vala:1087 msgid "This kernel is already installed." msgstr "Αυτός ο πυρήνας είναι ήδη εγκατεστημένος." -#: src/Common/LinuxKernel.vala:1112 +#: src/Common/LinuxKernel.vala:1113 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "Η εγκατάσταση ολοκληρώθηκε. Απαιτείται επανεκκίνηση για τη χρήση του νέου " "πυρήνα." -#: src/Common/LinuxKernel.vala:1115 +#: src/Common/LinuxKernel.vala:1116 msgid "Installation completed with errors" msgstr "Η εγκατάσταση ολοκληρώθηκε με σφάλματα" -#: src/Common/LinuxKernel.vala:1130 +#: src/Common/LinuxKernel.vala:1131 msgid "" "Selected kernel is currently running and cannot be un-installed.\n" " Install another kernel before un-installing this one." @@ -122,19 +120,19 @@ msgstr "" "απεγκατασταθεί.\n" " Εγκαταστήστε έναν άλλο πυρήνα πριν απεγκαταστήσετε αυτόν." -#: src/Common/LinuxKernel.vala:1135 +#: src/Common/LinuxKernel.vala:1136 msgid "Preparing to uninstall selected kernels" msgstr "Προετοιμασία για απεγκατάσταση επιλεγμένων πυρήνων" -#: src/Common/LinuxKernel.vala:1166 src/Common/LinuxKernel.vala:1213 +#: src/Common/LinuxKernel.vala:1167 src/Common/LinuxKernel.vala:1214 msgid "Un-install completed" msgstr "Η απεγκατάσταση ολοκληρώθηκε" -#: src/Common/LinuxKernel.vala:1169 src/Common/LinuxKernel.vala:1216 +#: src/Common/LinuxKernel.vala:1170 src/Common/LinuxKernel.vala:1217 msgid "Un-install completed with errors" msgstr "Η απεγκατάσταση ολοκληρώθηκε με σφάλματα" -#: src/Common/LinuxKernel.vala:1182 +#: src/Common/LinuxKernel.vala:1183 msgid "" "This kernel is currently running and cannot be un-installed.\n" " Install another kernel before un-installing this one." @@ -291,7 +289,7 @@ msgid "Kernel %s Available" msgstr "Πυρήνας %s διαθέσιμος" #: src/Console/AppConsole.vala:367 src/Console/AppConsole.vala:379 -#: src/Gtk/MainWindow.vala:330 +#: src/Gtk/MainWindow.vala:328 msgid "Install" msgstr "Εγκατάσταση" @@ -315,103 +313,73 @@ msgstr "Κατάσταση" msgid "Refresh" msgstr "Ανανέωση" -#: src/Gtk/MainWindow.vala:321 src/Utility/TeeJee.System.vala:42 -msgid "Internet connection is not active" -msgstr "Η σύνδεση στο διαδίκτυο δεν είναι ενεργή" - -#: src/Gtk/MainWindow.vala:321 src/Gtk/MainWindow.vala:562 -#: src/Gtk/MainWindow.vala:682 -msgid "No Internet" -msgstr "Χωρίς διαδίκτυο" - -#: src/Gtk/MainWindow.vala:339 -msgid "Multiple Kernels Selected" -msgstr "Επιλέχθηκαν πολλαπλοί πυρήνες" - #: src/Gtk/MainWindow.vala:339 -msgid "Select a single kernel to install" -msgstr "Επιλέξτε έναν μόνο πυρήνα για εγκατάσταση" - -#: src/Gtk/MainWindow.vala:342 src/Gtk/MainWindow.vala:353 -msgid "Not Selected" -msgstr "Δεν επιλέχθηκε" - -#: src/Gtk/MainWindow.vala:342 -msgid "Select the kernel to install" -msgstr "Επιλέξτε πυρήνα για εγκατάσταση" - -#: src/Gtk/MainWindow.vala:347 msgid "Uninstall" msgstr "Απεγκατάσταση" -#: src/Gtk/MainWindow.vala:353 -msgid "Select the kernels to uninstall" -msgstr "Επιλέξτε πυρήνες για απεγκατάσταση" - -#: src/Gtk/MainWindow.vala:383 src/Gtk/MainWindow.vala:417 -#: src/Gtk/MainWindow.vala:714 +#: src/Gtk/MainWindow.vala:372 src/Gtk/MainWindow.vala:405 +#: src/Gtk/MainWindow.vala:694 msgid "Close window to exit..." msgstr "Κλείστε το παράθυρο για έξοδο..." -#: src/Gtk/MainWindow.vala:391 +#: src/Gtk/MainWindow.vala:379 msgid "Uninstall Old" msgstr "Απεγκατάσταση παλαιών" -#: src/Gtk/MainWindow.vala:392 +#: src/Gtk/MainWindow.vala:380 msgid "Uninstall kernels older than running kernel" msgstr "Απεγκαταστήστε πυρήνες παλαιότερους από τον ενεργό" -#: src/Gtk/MainWindow.vala:424 +#: src/Gtk/MainWindow.vala:412 msgid "Changes" msgstr "Αλλαγές" -#: src/Gtk/MainWindow.vala:440 +#: src/Gtk/MainWindow.vala:428 msgid "Error while downloading the changelog:\n" msgstr "" -#: src/Gtk/MainWindow.vala:450 +#: src/Gtk/MainWindow.vala:438 #, fuzzy msgid "Downloading the changelog" msgstr "Λήψη" -#: src/Gtk/MainWindow.vala:472 src/Gtk/SettingsDialog.vala:50 +#: src/Gtk/MainWindow.vala:460 src/Gtk/SettingsDialog.vala:50 msgid "Settings" msgstr "Ρυθμίσεις" -#: src/Gtk/MainWindow.vala:495 +#: src/Gtk/MainWindow.vala:483 msgid "About" msgstr "Σχετικά" -#: src/Gtk/MainWindow.vala:540 +#: src/Gtk/MainWindow.vala:528 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Πρόγραμμα αναβάθμισης πυρήνα για διανομές που βασίζονται στο Ubuntu" -#: src/Gtk/MainWindow.vala:541 +#: src/Gtk/MainWindow.vala:529 msgid "Forked" msgstr "Forked" -#: src/Gtk/MainWindow.vala:541 +#: src/Gtk/MainWindow.vala:529 msgid "Original" msgstr "Πρωτότυπο" -#: src/Gtk/MainWindow.vala:562 src/Gtk/MainWindow.vala:682 -msgid "Internet connection is not active." -msgstr "Η σύνδεση στο διαδίκτυο δεν είναι ενεργή." - -#: src/Gtk/MainWindow.vala:580 +#: src/Gtk/MainWindow.vala:566 msgid "Refreshing..." msgstr "Ανανέωση..." -#: src/Gtk/MainWindow.vala:665 +#: src/Gtk/MainWindow.vala:651 msgid "available" msgstr "διαθέσιμος" -#: src/Gtk/MainWindow.vala:677 -msgid "Already Installed" -msgstr "Ήδη εγκατεστημένος" +#: src/Gtk/MainWindow.vala:709 +msgid "No Internet" +msgstr "Χωρίς διαδίκτυο" + +#: src/Gtk/MainWindow.vala:710 +msgid "Internet connection is not active." +msgstr "Η σύνδεση στο διαδίκτυο δεν είναι ενεργή." #: src/Gtk/ProgressWindow.vala:127 src/Gtk/TerminalWindow.vala:149 -#: src/Utility/Gtk/CustomMessageDialog.vala:154 msgid "Cancel" msgstr "Άκυρο" @@ -515,15 +483,7 @@ msgstr "Τεκμηριωτές" msgid "Third Party Inclusions" msgstr "Συμπεριλήψεις τρίτων" -#: src/Utility/Gtk/CustomMessageDialog.vala:158 -msgid "Yes" -msgstr "Ναι" - -#: src/Utility/Gtk/CustomMessageDialog.vala:159 -msgid "No" -msgstr "Όχι" - -#: src/Utility/Gtk/GtkHelper.vala:59 +#: src/Utility/Gtk/GtkHelper.vala:39 msgid "Missing Icon" msgstr "Ελλείπον εικονίδιο" diff --git a/po/es.po b/po/es.po index 4e24bf1d..e91b1620 100644 --- a/po/es.po +++ b/po/es.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-02-21 10:04-0500\n" +"POT-Creation-Date: 2023-02-21 10:29-0500\n" "PO-Revision-Date: 2018-01-03 02:03-0600\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish\n" @@ -13,107 +13,105 @@ msgstr "" "X-Launchpad-Export-Date: 2017-04-13 11:48+0000\n" "X-Generator: Poedit 2.0.5\n" -#: src/Common/LinuxKernel.vala:87 +#: src/Common/LinuxKernel.vala:88 msgid "Distribution" msgstr "Distribución" -#: src/Common/LinuxKernel.vala:101 +#: src/Common/LinuxKernel.vala:102 msgid "Architecture" msgstr "Arquitectura del sistema" -#: src/Common/LinuxKernel.vala:299 +#: src/Common/LinuxKernel.vala:300 msgid "Fetching index..." msgstr "Recuperando índice..." -#: src/Common/LinuxKernel.vala:331 +#: src/Common/LinuxKernel.vala:332 msgid "Fetching index from kernel.ubuntu.com..." msgstr "Recuperando índice de kernel.ubuntu.com…" -#: src/Common/LinuxKernel.vala:578 +#: src/Common/LinuxKernel.vala:579 msgid "Could not find running kernel in list!" msgstr "¡No se pudo encontrar el núcleo en ejecución en la lista!" -#: src/Common/LinuxKernel.vala:584 +#: src/Common/LinuxKernel.vala:585 #, fuzzy msgid "Could not find any kernels to uninstall" msgstr "Seleccione los núcleos que se desinstalarán" -#: src/Common/LinuxKernel.vala:593 +#: src/Common/LinuxKernel.vala:594 #, fuzzy msgid "The following kernels will be uninstalled:" msgstr "Los siguientes kernels serán eliminados:" -#: src/Common/LinuxKernel.vala:600 +#: src/Common/LinuxKernel.vala:601 msgid "Continue ?" msgstr "¿Continuar?" -#: src/Common/LinuxKernel.vala:626 src/Console/AppConsole.vala:314 +#: src/Common/LinuxKernel.vala:627 src/Console/AppConsole.vala:314 msgid "Latest update" msgstr "" -#: src/Common/LinuxKernel.vala:637 src/Console/AppConsole.vala:321 +#: src/Common/LinuxKernel.vala:638 src/Console/AppConsole.vala:321 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:645 src/Console/AppConsole.vala:326 +#: src/Common/LinuxKernel.vala:646 src/Console/AppConsole.vala:326 #: src/Console/AppConsole.vala:387 msgid "No updates found" msgstr "No se encontró ninguna actualización" -#: src/Common/LinuxKernel.vala:655 +#: src/Common/LinuxKernel.vala:656 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "" -#: src/Common/LinuxKernel.vala:916 +#: src/Common/LinuxKernel.vala:917 msgid "Packages Available" msgstr "Paquetes disponibles" -#: src/Common/LinuxKernel.vala:924 +#: src/Common/LinuxKernel.vala:925 msgid "Packages Installed" msgstr "Paquetes instalados" -#: src/Common/LinuxKernel.vala:1004 +#: src/Common/LinuxKernel.vala:1005 msgid "Available Kernels" msgstr "Núcleos disponibles" -#: src/Common/LinuxKernel.vala:1011 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1012 src/Gtk/MainWindow.vala:186 msgid "Installed" msgstr "Instalado" -#: src/Common/LinuxKernel.vala:1011 src/Gtk/MainWindow.vala:186 -#: src/Gtk/MainWindow.vala:655 src/Gtk/MainWindow.vala:669 +#: src/Common/LinuxKernel.vala:1012 src/Gtk/MainWindow.vala:186 +#: src/Gtk/MainWindow.vala:641 src/Gtk/MainWindow.vala:655 msgid "Running" msgstr "En ejecución" -#: src/Common/LinuxKernel.vala:1048 +#: src/Common/LinuxKernel.vala:1049 msgid "Downloading" msgstr "Descargando" -#: src/Common/LinuxKernel.vala:1067 -#: src/Utility/Gtk/CustomMessageDialog.vala:149 -#: src/Utility/Gtk/CustomMessageDialog.vala:153 +#: src/Common/LinuxKernel.vala:1068 msgid "OK" msgstr "Aceptar" -#: src/Common/LinuxKernel.vala:1072 +#: src/Common/LinuxKernel.vala:1073 msgid "ERROR" msgstr "ERROR" -#: src/Common/LinuxKernel.vala:1086 src/Gtk/MainWindow.vala:677 +#: src/Common/LinuxKernel.vala:1087 msgid "This kernel is already installed." msgstr "Este núcleo ya se instaló." -#: src/Common/LinuxKernel.vala:1112 +#: src/Common/LinuxKernel.vala:1113 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "Instalación finalizada. Se necesita reiniciar para utilizar el núcleo nuevo." -#: src/Common/LinuxKernel.vala:1115 +#: src/Common/LinuxKernel.vala:1116 msgid "Installation completed with errors" msgstr "Instalación finalizada con errores" -#: src/Common/LinuxKernel.vala:1130 +#: src/Common/LinuxKernel.vala:1131 #, fuzzy msgid "" "Selected kernel is currently running and cannot be un-installed.\n" @@ -122,20 +120,20 @@ msgstr "" "El núcleo seleccionado está en ejecución y no puede desinstalarse.\n" "Instale otro núcleo antes de desinstalar este." -#: src/Common/LinuxKernel.vala:1135 +#: src/Common/LinuxKernel.vala:1136 #, fuzzy msgid "Preparing to uninstall selected kernels" msgstr "Preparándose para desinstalar los núcleos seleccionados" -#: src/Common/LinuxKernel.vala:1166 src/Common/LinuxKernel.vala:1213 +#: src/Common/LinuxKernel.vala:1167 src/Common/LinuxKernel.vala:1214 msgid "Un-install completed" msgstr "Desinstalación finalizada" -#: src/Common/LinuxKernel.vala:1169 src/Common/LinuxKernel.vala:1216 +#: src/Common/LinuxKernel.vala:1170 src/Common/LinuxKernel.vala:1217 msgid "Un-install completed with errors" msgstr "Desinstalación finalizada con errores" -#: src/Common/LinuxKernel.vala:1182 +#: src/Common/LinuxKernel.vala:1183 #, fuzzy msgid "" "This kernel is currently running and cannot be un-installed.\n" @@ -296,7 +294,7 @@ msgid "Kernel %s Available" msgstr "Paquetes disponibles" #: src/Console/AppConsole.vala:367 src/Console/AppConsole.vala:379 -#: src/Gtk/MainWindow.vala:330 +#: src/Gtk/MainWindow.vala:328 msgid "Install" msgstr "Instalar" @@ -320,110 +318,78 @@ msgstr "Estado" msgid "Refresh" msgstr "Actualizar" -#: src/Gtk/MainWindow.vala:321 src/Utility/TeeJee.System.vala:42 -msgid "Internet connection is not active" -msgstr "La conexión a Internet está inactiva" - -#: src/Gtk/MainWindow.vala:321 src/Gtk/MainWindow.vala:562 -#: src/Gtk/MainWindow.vala:682 -msgid "No Internet" -msgstr "No hay Internet" - -#: src/Gtk/MainWindow.vala:339 -msgid "Multiple Kernels Selected" -msgstr "Se seleccionaron varios kernels" - #: src/Gtk/MainWindow.vala:339 -msgid "Select a single kernel to install" -msgstr "Seleccione un solo núcleo para instalarlo" - -#: src/Gtk/MainWindow.vala:342 src/Gtk/MainWindow.vala:353 -msgid "Not Selected" -msgstr "No seleccionado" - -#: src/Gtk/MainWindow.vala:342 -msgid "Select the kernel to install" -msgstr "Seleccione el núcleo que se instalará" - -#: src/Gtk/MainWindow.vala:347 #, fuzzy msgid "Uninstall" msgstr "Instalar" -#: src/Gtk/MainWindow.vala:353 -#, fuzzy -msgid "Select the kernels to uninstall" -msgstr "Seleccione el núcleo que se instalará" - -#: src/Gtk/MainWindow.vala:383 src/Gtk/MainWindow.vala:417 -#: src/Gtk/MainWindow.vala:714 +#: src/Gtk/MainWindow.vala:372 src/Gtk/MainWindow.vala:405 +#: src/Gtk/MainWindow.vala:694 msgid "Close window to exit..." msgstr "" -#: src/Gtk/MainWindow.vala:391 +#: src/Gtk/MainWindow.vala:379 #, fuzzy msgid "Uninstall Old" msgstr "Desinstalación finalizada" -#: src/Gtk/MainWindow.vala:392 +#: src/Gtk/MainWindow.vala:380 msgid "Uninstall kernels older than running kernel" msgstr "" -#: src/Gtk/MainWindow.vala:424 +#: src/Gtk/MainWindow.vala:412 msgid "Changes" msgstr "Cambios" -#: src/Gtk/MainWindow.vala:440 +#: src/Gtk/MainWindow.vala:428 msgid "Error while downloading the changelog:\n" msgstr "" -#: src/Gtk/MainWindow.vala:450 +#: src/Gtk/MainWindow.vala:438 #, fuzzy msgid "Downloading the changelog" msgstr "Descargando" -#: src/Gtk/MainWindow.vala:472 src/Gtk/SettingsDialog.vala:50 +#: src/Gtk/MainWindow.vala:460 src/Gtk/SettingsDialog.vala:50 msgid "Settings" msgstr "Configuración" -#: src/Gtk/MainWindow.vala:495 +#: src/Gtk/MainWindow.vala:483 msgid "About" msgstr "Acerca de" -#: src/Gtk/MainWindow.vala:540 +#: src/Gtk/MainWindow.vala:528 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "" "Herramienta de renovación de núcleo para distribuciones basadas en Ubuntu" -#: src/Gtk/MainWindow.vala:541 +#: src/Gtk/MainWindow.vala:529 msgid "Forked" msgstr "" -#: src/Gtk/MainWindow.vala:541 +#: src/Gtk/MainWindow.vala:529 msgid "Original" msgstr "" -#: src/Gtk/MainWindow.vala:562 src/Gtk/MainWindow.vala:682 -#, fuzzy -msgid "Internet connection is not active." -msgstr "La conexión a Internet está inactiva" - -#: src/Gtk/MainWindow.vala:580 +#: src/Gtk/MainWindow.vala:566 msgid "Refreshing..." msgstr "Actualizando…" -#: src/Gtk/MainWindow.vala:665 +#: src/Gtk/MainWindow.vala:651 #, fuzzy msgid "available" msgstr "Paquetes disponibles" -#: src/Gtk/MainWindow.vala:677 +#: src/Gtk/MainWindow.vala:709 +msgid "No Internet" +msgstr "No hay Internet" + +#: src/Gtk/MainWindow.vala:710 #, fuzzy -msgid "Already Installed" -msgstr "Instalado" +msgid "Internet connection is not active." +msgstr "La conexión a Internet está inactiva" #: src/Gtk/ProgressWindow.vala:127 src/Gtk/TerminalWindow.vala:149 -#: src/Utility/Gtk/CustomMessageDialog.vala:154 msgid "Cancel" msgstr "Cancelar" @@ -529,15 +495,7 @@ msgstr "Documentadores" msgid "Third Party Inclusions" msgstr "Herramientas de terceros" -#: src/Utility/Gtk/CustomMessageDialog.vala:158 -msgid "Yes" -msgstr "Sí" - -#: src/Utility/Gtk/CustomMessageDialog.vala:159 -msgid "No" -msgstr "No" - -#: src/Utility/Gtk/GtkHelper.vala:59 +#: src/Utility/Gtk/GtkHelper.vala:39 msgid "Missing Icon" msgstr "Falta el icono" diff --git a/po/fr.po b/po/fr.po index 83570039..74638d62 100644 --- a/po/fr.po +++ b/po/fr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-02-21 10:04-0500\n" +"POT-Creation-Date: 2023-02-21 10:29-0500\n" "PO-Revision-Date: 2018-08-05 15:50+0200\n" "Last-Translator: Yolateng0 \n" "Language-Team: French\n" @@ -13,108 +13,106 @@ msgstr "" "X-Launchpad-Export-Date: 2017-04-13 11:48+0000\n" "X-Generator: Poedit 2.0.6\n" -#: src/Common/LinuxKernel.vala:87 +#: src/Common/LinuxKernel.vala:88 msgid "Distribution" msgstr "Distribution" -#: src/Common/LinuxKernel.vala:101 +#: src/Common/LinuxKernel.vala:102 msgid "Architecture" msgstr "Architecture" -#: src/Common/LinuxKernel.vala:299 +#: src/Common/LinuxKernel.vala:300 msgid "Fetching index..." msgstr "Récupération de l'index..." -#: src/Common/LinuxKernel.vala:331 +#: src/Common/LinuxKernel.vala:332 msgid "Fetching index from kernel.ubuntu.com..." msgstr "Récupération de l'index depuis kernel.ubuntu.com..." -#: src/Common/LinuxKernel.vala:578 +#: src/Common/LinuxKernel.vala:579 msgid "Could not find running kernel in list!" msgstr "Impossible de trouver la version courante dans la liste!" -#: src/Common/LinuxKernel.vala:584 +#: src/Common/LinuxKernel.vala:585 #, fuzzy msgid "Could not find any kernels to uninstall" msgstr "Impossible de trouver de noyaux à supprimer" -#: src/Common/LinuxKernel.vala:593 +#: src/Common/LinuxKernel.vala:594 #, fuzzy msgid "The following kernels will be uninstalled:" msgstr "Les noyaux suivants seront supprimés:" -#: src/Common/LinuxKernel.vala:600 +#: src/Common/LinuxKernel.vala:601 msgid "Continue ?" msgstr "Reprendre ?" -#: src/Common/LinuxKernel.vala:626 src/Console/AppConsole.vala:314 +#: src/Common/LinuxKernel.vala:627 src/Console/AppConsole.vala:314 msgid "Latest update" msgstr "Dernière mise à jour" -#: src/Common/LinuxKernel.vala:637 src/Console/AppConsole.vala:321 +#: src/Common/LinuxKernel.vala:638 src/Console/AppConsole.vala:321 msgid "Latest point update" msgstr "Dernière mise à jour mineure" -#: src/Common/LinuxKernel.vala:645 src/Console/AppConsole.vala:326 +#: src/Common/LinuxKernel.vala:646 src/Console/AppConsole.vala:326 #: src/Console/AppConsole.vala:387 msgid "No updates found" msgstr "Aucune mise à jour disponible" -#: src/Common/LinuxKernel.vala:655 +#: src/Common/LinuxKernel.vala:656 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Installer le noyau en version %s ? (y/n): " -#: src/Common/LinuxKernel.vala:916 +#: src/Common/LinuxKernel.vala:917 msgid "Packages Available" msgstr "Paquets Disponibles" -#: src/Common/LinuxKernel.vala:924 +#: src/Common/LinuxKernel.vala:925 msgid "Packages Installed" msgstr "Paquets Installés" -#: src/Common/LinuxKernel.vala:1004 +#: src/Common/LinuxKernel.vala:1005 msgid "Available Kernels" msgstr "Noyaux Disponibles" -#: src/Common/LinuxKernel.vala:1011 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1012 src/Gtk/MainWindow.vala:186 msgid "Installed" msgstr "Installé" -#: src/Common/LinuxKernel.vala:1011 src/Gtk/MainWindow.vala:186 -#: src/Gtk/MainWindow.vala:655 src/Gtk/MainWindow.vala:669 +#: src/Common/LinuxKernel.vala:1012 src/Gtk/MainWindow.vala:186 +#: src/Gtk/MainWindow.vala:641 src/Gtk/MainWindow.vala:655 msgid "Running" msgstr "Actuel" -#: src/Common/LinuxKernel.vala:1048 +#: src/Common/LinuxKernel.vala:1049 msgid "Downloading" msgstr "Téléchargement" -#: src/Common/LinuxKernel.vala:1067 -#: src/Utility/Gtk/CustomMessageDialog.vala:149 -#: src/Utility/Gtk/CustomMessageDialog.vala:153 +#: src/Common/LinuxKernel.vala:1068 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:1072 +#: src/Common/LinuxKernel.vala:1073 msgid "ERROR" msgstr "ERREUR" -#: src/Common/LinuxKernel.vala:1086 src/Gtk/MainWindow.vala:677 +#: src/Common/LinuxKernel.vala:1087 msgid "This kernel is already installed." msgstr "Ce noyau est déjà installé." -#: src/Common/LinuxKernel.vala:1112 +#: src/Common/LinuxKernel.vala:1113 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "Installation complétée. Un redémarrage est nécessaire pour utiliser le " "nouveau noyau." -#: src/Common/LinuxKernel.vala:1115 +#: src/Common/LinuxKernel.vala:1116 msgid "Installation completed with errors" msgstr "Installation terminée avec des erreurs" -#: src/Common/LinuxKernel.vala:1130 +#: src/Common/LinuxKernel.vala:1131 #, fuzzy msgid "" "Selected kernel is currently running and cannot be un-installed.\n" @@ -123,20 +121,20 @@ msgstr "" "Ce noyau est en cours d'exécution et ne peut pas être supprimé.\n" " Installez un autre noyau avant de retirer celui-ci." -#: src/Common/LinuxKernel.vala:1135 +#: src/Common/LinuxKernel.vala:1136 #, fuzzy msgid "Preparing to uninstall selected kernels" msgstr "Préparation à la suppression des noyaux sélectionnés" -#: src/Common/LinuxKernel.vala:1166 src/Common/LinuxKernel.vala:1213 +#: src/Common/LinuxKernel.vala:1167 src/Common/LinuxKernel.vala:1214 msgid "Un-install completed" msgstr "Désinstallation complète" -#: src/Common/LinuxKernel.vala:1169 src/Common/LinuxKernel.vala:1216 +#: src/Common/LinuxKernel.vala:1170 src/Common/LinuxKernel.vala:1217 msgid "Un-install completed with errors" msgstr "Désinstallation terminée avec des erreurs" -#: src/Common/LinuxKernel.vala:1182 +#: src/Common/LinuxKernel.vala:1183 #, fuzzy msgid "" "This kernel is currently running and cannot be un-installed.\n" @@ -297,7 +295,7 @@ msgid "Kernel %s Available" msgstr "Paquet %s disponibles" #: src/Console/AppConsole.vala:367 src/Console/AppConsole.vala:379 -#: src/Gtk/MainWindow.vala:330 +#: src/Gtk/MainWindow.vala:328 msgid "Install" msgstr "Installer" @@ -321,109 +319,78 @@ msgstr "Statut" msgid "Refresh" msgstr "Actualiser" -#: src/Gtk/MainWindow.vala:321 src/Utility/TeeJee.System.vala:42 -msgid "Internet connection is not active" -msgstr "Connexion internet inexistante" - -#: src/Gtk/MainWindow.vala:321 src/Gtk/MainWindow.vala:562 -#: src/Gtk/MainWindow.vala:682 -msgid "No Internet" -msgstr "Pas d'Internet" - #: src/Gtk/MainWindow.vala:339 -msgid "Multiple Kernels Selected" -msgstr "Plusieurs noyaux sélectionnés" - -#: src/Gtk/MainWindow.vala:339 -msgid "Select a single kernel to install" -msgstr "Sélectionnez un seul noyau à installer" - -#: src/Gtk/MainWindow.vala:342 src/Gtk/MainWindow.vala:353 -msgid "Not Selected" -msgstr "Non selectionné" - -#: src/Gtk/MainWindow.vala:342 -msgid "Select the kernel to install" -msgstr "Sélectionnez le noyau à installer" - -#: src/Gtk/MainWindow.vala:347 #, fuzzy msgid "Uninstall" msgstr "Installer" -#: src/Gtk/MainWindow.vala:353 -#, fuzzy -msgid "Select the kernels to uninstall" -msgstr "Sélectionnez le noyau à installer" - -#: src/Gtk/MainWindow.vala:383 src/Gtk/MainWindow.vala:417 -#: src/Gtk/MainWindow.vala:714 +#: src/Gtk/MainWindow.vala:372 src/Gtk/MainWindow.vala:405 +#: src/Gtk/MainWindow.vala:694 msgid "Close window to exit..." msgstr "Fermer la fenêtre pour quitter..." -#: src/Gtk/MainWindow.vala:391 +#: src/Gtk/MainWindow.vala:379 #, fuzzy msgid "Uninstall Old" msgstr "Désinstallation complète" -#: src/Gtk/MainWindow.vala:392 +#: src/Gtk/MainWindow.vala:380 #, fuzzy msgid "Uninstall kernels older than running kernel" msgstr "Désinstalle les noyaux plus anciens que le noyau courant" -#: src/Gtk/MainWindow.vala:424 +#: src/Gtk/MainWindow.vala:412 msgid "Changes" msgstr "Changements" -#: src/Gtk/MainWindow.vala:440 +#: src/Gtk/MainWindow.vala:428 msgid "Error while downloading the changelog:\n" msgstr "" -#: src/Gtk/MainWindow.vala:450 +#: src/Gtk/MainWindow.vala:438 #, fuzzy msgid "Downloading the changelog" msgstr "Téléchargement" -#: src/Gtk/MainWindow.vala:472 src/Gtk/SettingsDialog.vala:50 +#: src/Gtk/MainWindow.vala:460 src/Gtk/SettingsDialog.vala:50 msgid "Settings" msgstr "Paramètres" -#: src/Gtk/MainWindow.vala:495 +#: src/Gtk/MainWindow.vala:483 msgid "About" msgstr "À propos" -#: src/Gtk/MainWindow.vala:540 +#: src/Gtk/MainWindow.vala:528 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "" "Utilitaire de mise à niveau des noyaux pour les distributions basées sur " "Ubuntu" -#: src/Gtk/MainWindow.vala:541 +#: src/Gtk/MainWindow.vala:529 msgid "Forked" msgstr "Version forkée :" -#: src/Gtk/MainWindow.vala:541 +#: src/Gtk/MainWindow.vala:529 msgid "Original" msgstr "Version originale :" -#: src/Gtk/MainWindow.vala:562 src/Gtk/MainWindow.vala:682 -msgid "Internet connection is not active." -msgstr "Connexion internet inexistante" - -#: src/Gtk/MainWindow.vala:580 +#: src/Gtk/MainWindow.vala:566 msgid "Refreshing..." msgstr "Actualisation..." -#: src/Gtk/MainWindow.vala:665 +#: src/Gtk/MainWindow.vala:651 msgid "available" msgstr "disponible" -#: src/Gtk/MainWindow.vala:677 -msgid "Already Installed" -msgstr "Déjà Installé" +#: src/Gtk/MainWindow.vala:709 +msgid "No Internet" +msgstr "Pas d'Internet" + +#: src/Gtk/MainWindow.vala:710 +msgid "Internet connection is not active." +msgstr "Connexion internet inexistante" #: src/Gtk/ProgressWindow.vala:127 src/Gtk/TerminalWindow.vala:149 -#: src/Utility/Gtk/CustomMessageDialog.vala:154 msgid "Cancel" msgstr "Annuler" @@ -527,15 +494,7 @@ msgstr "Documentalistes" msgid "Third Party Inclusions" msgstr "Dépendances Tierces" -#: src/Utility/Gtk/CustomMessageDialog.vala:158 -msgid "Yes" -msgstr "Oui" - -#: src/Utility/Gtk/CustomMessageDialog.vala:159 -msgid "No" -msgstr "Non" - -#: src/Utility/Gtk/GtkHelper.vala:59 +#: src/Utility/Gtk/GtkHelper.vala:39 msgid "Missing Icon" msgstr "Icône introuvable" diff --git a/po/hr.po b/po/hr.po index 5f3ba356..43e78775 100644 --- a/po/hr.po +++ b/po/hr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-02-21 10:04-0500\n" +"POT-Creation-Date: 2023-02-21 10:29-0500\n" "PO-Revision-Date: 2022-09-22 12:13+0200\n" "Last-Translator: gogo \n" "Language-Team: Croatian\n" @@ -13,106 +13,104 @@ msgstr "" "X-Launchpad-Export-Date: 2017-12-23 23:36+0000\n" "X-Generator: Poedit 3.0.1\n" -#: src/Common/LinuxKernel.vala:87 +#: src/Common/LinuxKernel.vala:88 msgid "Distribution" msgstr "Distribucija" -#: src/Common/LinuxKernel.vala:101 +#: src/Common/LinuxKernel.vala:102 msgid "Architecture" msgstr "Arhitektura" -#: src/Common/LinuxKernel.vala:299 +#: src/Common/LinuxKernel.vala:300 msgid "Fetching index..." msgstr "Preuzimanje sadržaja..." -#: src/Common/LinuxKernel.vala:331 +#: src/Common/LinuxKernel.vala:332 msgid "Fetching index from kernel.ubuntu.com..." msgstr "Preuzimanje sadržaja sa kernel.ubuntu.com..." -#: src/Common/LinuxKernel.vala:578 +#: src/Common/LinuxKernel.vala:579 msgid "Could not find running kernel in list!" msgstr "Nemoguće je pronaći pokrenuti kernel na popisu!" -#: src/Common/LinuxKernel.vala:584 +#: src/Common/LinuxKernel.vala:585 msgid "Could not find any kernels to uninstall" msgstr "Nema pronađenih kernela za deinstaliranje" -#: src/Common/LinuxKernel.vala:593 +#: src/Common/LinuxKernel.vala:594 msgid "The following kernels will be uninstalled:" msgstr "Sljedeći kerneli će biti deinstalirani:" -#: src/Common/LinuxKernel.vala:600 +#: src/Common/LinuxKernel.vala:601 msgid "Continue ?" msgstr "Nastavi?" -#: src/Common/LinuxKernel.vala:626 src/Console/AppConsole.vala:314 +#: src/Common/LinuxKernel.vala:627 src/Console/AppConsole.vala:314 msgid "Latest update" msgstr "Najnovija nadopuna" -#: src/Common/LinuxKernel.vala:637 src/Console/AppConsole.vala:321 +#: src/Common/LinuxKernel.vala:638 src/Console/AppConsole.vala:321 msgid "Latest point update" msgstr "Najnovija ciljana nadopuna" -#: src/Common/LinuxKernel.vala:645 src/Console/AppConsole.vala:326 +#: src/Common/LinuxKernel.vala:646 src/Console/AppConsole.vala:326 #: src/Console/AppConsole.vala:387 msgid "No updates found" msgstr "Nema pronađenih nadopuna" -#: src/Common/LinuxKernel.vala:655 +#: src/Common/LinuxKernel.vala:656 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Instaliraj kernel inačice %s ? (d/n): " -#: src/Common/LinuxKernel.vala:916 +#: src/Common/LinuxKernel.vala:917 msgid "Packages Available" msgstr "Dostupni paketi" -#: src/Common/LinuxKernel.vala:924 +#: src/Common/LinuxKernel.vala:925 msgid "Packages Installed" msgstr "Instalirani paketi" -#: src/Common/LinuxKernel.vala:1004 +#: src/Common/LinuxKernel.vala:1005 msgid "Available Kernels" msgstr "Dostupni kerneli" -#: src/Common/LinuxKernel.vala:1011 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1012 src/Gtk/MainWindow.vala:186 msgid "Installed" msgstr "Instalirano" -#: src/Common/LinuxKernel.vala:1011 src/Gtk/MainWindow.vala:186 -#: src/Gtk/MainWindow.vala:655 src/Gtk/MainWindow.vala:669 +#: src/Common/LinuxKernel.vala:1012 src/Gtk/MainWindow.vala:186 +#: src/Gtk/MainWindow.vala:641 src/Gtk/MainWindow.vala:655 msgid "Running" msgstr "Pokrenuto" -#: src/Common/LinuxKernel.vala:1048 +#: src/Common/LinuxKernel.vala:1049 msgid "Downloading" msgstr "Preuzimanje" -#: src/Common/LinuxKernel.vala:1067 -#: src/Utility/Gtk/CustomMessageDialog.vala:149 -#: src/Utility/Gtk/CustomMessageDialog.vala:153 +#: src/Common/LinuxKernel.vala:1068 msgid "OK" msgstr "U redu" -#: src/Common/LinuxKernel.vala:1072 +#: src/Common/LinuxKernel.vala:1073 msgid "ERROR" msgstr "GREŠKA" -#: src/Common/LinuxKernel.vala:1086 src/Gtk/MainWindow.vala:677 +#: src/Common/LinuxKernel.vala:1087 msgid "This kernel is already installed." msgstr "Ovaj kernel je već instaliran." -#: src/Common/LinuxKernel.vala:1112 +#: src/Common/LinuxKernel.vala:1113 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "Instalacija je završena. Potrebno je ponovno pokretanje računala kako bi se " "koristio novi kernel." -#: src/Common/LinuxKernel.vala:1115 +#: src/Common/LinuxKernel.vala:1116 msgid "Installation completed with errors" msgstr "Instalacija je završena s greškama" -#: src/Common/LinuxKernel.vala:1130 +#: src/Common/LinuxKernel.vala:1131 msgid "" "Selected kernel is currently running and cannot be un-installed.\n" " Install another kernel before un-installing this one." @@ -120,19 +118,19 @@ msgstr "" "Odabrani kernel je trenutno pokernut i ne može se deinstalirati.\n" " Instalirajte drugi kernel prije uklanjanja trenutnog kernela." -#: src/Common/LinuxKernel.vala:1135 +#: src/Common/LinuxKernel.vala:1136 msgid "Preparing to uninstall selected kernels" msgstr "Pripremanje deinstalacije odabranih kernela" -#: src/Common/LinuxKernel.vala:1166 src/Common/LinuxKernel.vala:1213 +#: src/Common/LinuxKernel.vala:1167 src/Common/LinuxKernel.vala:1214 msgid "Un-install completed" msgstr "Deinstalacija završena" -#: src/Common/LinuxKernel.vala:1169 src/Common/LinuxKernel.vala:1216 +#: src/Common/LinuxKernel.vala:1170 src/Common/LinuxKernel.vala:1217 msgid "Un-install completed with errors" msgstr "Deinstalacija završena s greškama" -#: src/Common/LinuxKernel.vala:1182 +#: src/Common/LinuxKernel.vala:1183 msgid "" "This kernel is currently running and cannot be un-installed.\n" " Install another kernel before un-installing this one." @@ -286,7 +284,7 @@ msgid "Kernel %s Available" msgstr "Kernel %s je dostupan" #: src/Console/AppConsole.vala:367 src/Console/AppConsole.vala:379 -#: src/Gtk/MainWindow.vala:330 +#: src/Gtk/MainWindow.vala:328 msgid "Install" msgstr "Instaliraj" @@ -310,103 +308,73 @@ msgstr "Stanje" msgid "Refresh" msgstr "Osvježi" -#: src/Gtk/MainWindow.vala:321 src/Utility/TeeJee.System.vala:42 -msgid "Internet connection is not active" -msgstr "Internet povezivanje nije aktivno" - -#: src/Gtk/MainWindow.vala:321 src/Gtk/MainWindow.vala:562 -#: src/Gtk/MainWindow.vala:682 -msgid "No Internet" -msgstr "Nema pristupa internetu" - -#: src/Gtk/MainWindow.vala:339 -msgid "Multiple Kernels Selected" -msgstr "Više kernela je odabrano" - #: src/Gtk/MainWindow.vala:339 -msgid "Select a single kernel to install" -msgstr "Odaberi pojedni kernel za instalaciju" - -#: src/Gtk/MainWindow.vala:342 src/Gtk/MainWindow.vala:353 -msgid "Not Selected" -msgstr "Nije odabrano" - -#: src/Gtk/MainWindow.vala:342 -msgid "Select the kernel to install" -msgstr "Odaberi kernel za instalaciju" - -#: src/Gtk/MainWindow.vala:347 msgid "Uninstall" msgstr "Deinstaliraj" -#: src/Gtk/MainWindow.vala:353 -msgid "Select the kernels to uninstall" -msgstr "Odaberi kernel za deinstalaciju" - -#: src/Gtk/MainWindow.vala:383 src/Gtk/MainWindow.vala:417 -#: src/Gtk/MainWindow.vala:714 +#: src/Gtk/MainWindow.vala:372 src/Gtk/MainWindow.vala:405 +#: src/Gtk/MainWindow.vala:694 msgid "Close window to exit..." msgstr "Zatvori prozor i izađi..." -#: src/Gtk/MainWindow.vala:391 +#: src/Gtk/MainWindow.vala:379 msgid "Uninstall Old" msgstr "Deinstaliraj staro" -#: src/Gtk/MainWindow.vala:392 +#: src/Gtk/MainWindow.vala:380 msgid "Uninstall kernels older than running kernel" msgstr "Deinstaliraj kernele starije od pokrenutog krenela" -#: src/Gtk/MainWindow.vala:424 +#: src/Gtk/MainWindow.vala:412 msgid "Changes" msgstr "Promjene" -#: src/Gtk/MainWindow.vala:440 +#: src/Gtk/MainWindow.vala:428 msgid "Error while downloading the changelog:\n" msgstr "" -#: src/Gtk/MainWindow.vala:450 +#: src/Gtk/MainWindow.vala:438 #, fuzzy msgid "Downloading the changelog" msgstr "Preuzimanje" -#: src/Gtk/MainWindow.vala:472 src/Gtk/SettingsDialog.vala:50 +#: src/Gtk/MainWindow.vala:460 src/Gtk/SettingsDialog.vala:50 msgid "Settings" msgstr "Postavke" -#: src/Gtk/MainWindow.vala:495 +#: src/Gtk/MainWindow.vala:483 msgid "About" msgstr "O programu" -#: src/Gtk/MainWindow.vala:540 +#: src/Gtk/MainWindow.vala:528 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Alat za nadogradnju kernela Ubuntu temeljenih distribucija" -#: src/Gtk/MainWindow.vala:541 +#: src/Gtk/MainWindow.vala:529 msgid "Forked" msgstr "Forkano" -#: src/Gtk/MainWindow.vala:541 +#: src/Gtk/MainWindow.vala:529 msgid "Original" msgstr "Izvornik" -#: src/Gtk/MainWindow.vala:562 src/Gtk/MainWindow.vala:682 -msgid "Internet connection is not active." -msgstr "Internet povezivanje nije aktivno." - -#: src/Gtk/MainWindow.vala:580 +#: src/Gtk/MainWindow.vala:566 msgid "Refreshing..." msgstr "Osvježavanje..." -#: src/Gtk/MainWindow.vala:665 +#: src/Gtk/MainWindow.vala:651 msgid "available" msgstr "dostupno" -#: src/Gtk/MainWindow.vala:677 -msgid "Already Installed" -msgstr "Već instalirano" +#: src/Gtk/MainWindow.vala:709 +msgid "No Internet" +msgstr "Nema pristupa internetu" + +#: src/Gtk/MainWindow.vala:710 +msgid "Internet connection is not active." +msgstr "Internet povezivanje nije aktivno." #: src/Gtk/ProgressWindow.vala:127 src/Gtk/TerminalWindow.vala:149 -#: src/Utility/Gtk/CustomMessageDialog.vala:154 msgid "Cancel" msgstr "Odustani" @@ -510,15 +478,7 @@ msgstr "Autori dokumentacije" msgid "Third Party Inclusions" msgstr "Uključene treće strane" -#: src/Utility/Gtk/CustomMessageDialog.vala:158 -msgid "Yes" -msgstr "Da" - -#: src/Utility/Gtk/CustomMessageDialog.vala:159 -msgid "No" -msgstr "Ne" - -#: src/Utility/Gtk/GtkHelper.vala:59 +#: src/Utility/Gtk/GtkHelper.vala:39 msgid "Missing Icon" msgstr "Ikone koje nedostaju" diff --git a/po/it.po b/po/it.po index 750f26fd..2c7f88d3 100644 --- a/po/it.po +++ b/po/it.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline 1.0.15\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-02-21 10:04-0500\n" +"POT-Creation-Date: 2023-02-21 10:29-0500\n" "PO-Revision-Date: 2020-08-22 15:35+0100\n" "Last-Translator: Albano Battistella \n" "Language-Team: Italian\n" @@ -11,106 +11,104 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: src/Common/LinuxKernel.vala:87 +#: src/Common/LinuxKernel.vala:88 msgid "Distribution" msgstr "Distribuzione" -#: src/Common/LinuxKernel.vala:101 +#: src/Common/LinuxKernel.vala:102 msgid "Architecture" msgstr "Architettura" -#: src/Common/LinuxKernel.vala:299 +#: src/Common/LinuxKernel.vala:300 msgid "Fetching index..." msgstr "Recupero indice in corso..." -#: src/Common/LinuxKernel.vala:331 +#: src/Common/LinuxKernel.vala:332 msgid "Fetching index from kernel.ubuntu.com..." msgstr "Recupero dell'indice da kernel.ubuntu.com..." -#: src/Common/LinuxKernel.vala:578 +#: src/Common/LinuxKernel.vala:579 msgid "Could not find running kernel in list!" msgstr "Impossibile trovare il kernel in esecuzione nell'elenco!" -#: src/Common/LinuxKernel.vala:584 +#: src/Common/LinuxKernel.vala:585 msgid "Could not find any kernels to uninstall" msgstr "Impossibile trovare alcun kernel da rimuovere" -#: src/Common/LinuxKernel.vala:593 +#: src/Common/LinuxKernel.vala:594 msgid "The following kernels will be uninstalled:" msgstr "I seguenti kernel verranno rimossi:" -#: src/Common/LinuxKernel.vala:600 +#: src/Common/LinuxKernel.vala:601 msgid "Continue ?" msgstr "Continuare ?" -#: src/Common/LinuxKernel.vala:626 src/Console/AppConsole.vala:314 +#: src/Common/LinuxKernel.vala:627 src/Console/AppConsole.vala:314 msgid "Latest update" msgstr "Ultimo aggiornamento" -#: src/Common/LinuxKernel.vala:637 src/Console/AppConsole.vala:321 +#: src/Common/LinuxKernel.vala:638 src/Console/AppConsole.vala:321 msgid "Latest point update" msgstr "Ultimo aggiornamento del punto" -#: src/Common/LinuxKernel.vala:645 src/Console/AppConsole.vala:326 +#: src/Common/LinuxKernel.vala:646 src/Console/AppConsole.vala:326 #: src/Console/AppConsole.vala:387 msgid "No updates found" msgstr "Nessun aggiornamento trovato" -#: src/Common/LinuxKernel.vala:655 +#: src/Common/LinuxKernel.vala:656 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Installare la versione del kernel %s ? (y/n): " -#: src/Common/LinuxKernel.vala:916 +#: src/Common/LinuxKernel.vala:917 msgid "Packages Available" msgstr "Pacchetti disponibili" -#: src/Common/LinuxKernel.vala:924 +#: src/Common/LinuxKernel.vala:925 msgid "Packages Installed" msgstr "Pacchetti installati" -#: src/Common/LinuxKernel.vala:1004 +#: src/Common/LinuxKernel.vala:1005 msgid "Available Kernels" msgstr "Kernel disponibili" -#: src/Common/LinuxKernel.vala:1011 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1012 src/Gtk/MainWindow.vala:186 msgid "Installed" msgstr "Installato" -#: src/Common/LinuxKernel.vala:1011 src/Gtk/MainWindow.vala:186 -#: src/Gtk/MainWindow.vala:655 src/Gtk/MainWindow.vala:669 +#: src/Common/LinuxKernel.vala:1012 src/Gtk/MainWindow.vala:186 +#: src/Gtk/MainWindow.vala:641 src/Gtk/MainWindow.vala:655 msgid "Running" msgstr "In esecuzione" -#: src/Common/LinuxKernel.vala:1048 +#: src/Common/LinuxKernel.vala:1049 msgid "Downloading" msgstr "Download in corso" -#: src/Common/LinuxKernel.vala:1067 -#: src/Utility/Gtk/CustomMessageDialog.vala:149 -#: src/Utility/Gtk/CustomMessageDialog.vala:153 +#: src/Common/LinuxKernel.vala:1068 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:1072 +#: src/Common/LinuxKernel.vala:1073 msgid "ERROR" msgstr "ERRORE" -#: src/Common/LinuxKernel.vala:1086 src/Gtk/MainWindow.vala:677 +#: src/Common/LinuxKernel.vala:1087 msgid "This kernel is already installed." msgstr "Questo kernel è già installato" -#: src/Common/LinuxKernel.vala:1112 +#: src/Common/LinuxKernel.vala:1113 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "Installazione completata. È necessario riavviare per utilizzare ilnuovo " "kernel." -#: src/Common/LinuxKernel.vala:1115 +#: src/Common/LinuxKernel.vala:1116 msgid "Installation completed with errors" msgstr "Installazione completata con errori" -#: src/Common/LinuxKernel.vala:1130 +#: src/Common/LinuxKernel.vala:1131 msgid "" "Selected kernel is currently running and cannot be un-installed.\n" " Install another kernel before un-installing this one." @@ -118,19 +116,19 @@ msgstr "" "Il kernel selezionato è attualmente in esecuzione e non può essere rimosso.\n" "Installa un altro kernel prima di rimuovere questo." -#: src/Common/LinuxKernel.vala:1135 +#: src/Common/LinuxKernel.vala:1136 msgid "Preparing to uninstall selected kernels" msgstr "Preparazione per rimuovere i kernel selezionati" -#: src/Common/LinuxKernel.vala:1166 src/Common/LinuxKernel.vala:1213 +#: src/Common/LinuxKernel.vala:1167 src/Common/LinuxKernel.vala:1214 msgid "Un-install completed" msgstr "Disinstallazione completata" -#: src/Common/LinuxKernel.vala:1169 src/Common/LinuxKernel.vala:1216 +#: src/Common/LinuxKernel.vala:1170 src/Common/LinuxKernel.vala:1217 msgid "Un-install completed with errors" msgstr "Disinstallazione completata con errori" -#: src/Common/LinuxKernel.vala:1182 +#: src/Common/LinuxKernel.vala:1183 msgid "" "This kernel is currently running and cannot be un-installed.\n" " Install another kernel before un-installing this one." @@ -287,7 +285,7 @@ msgid "Kernel %s Available" msgstr "Kernel %s Disponibile" #: src/Console/AppConsole.vala:367 src/Console/AppConsole.vala:379 -#: src/Gtk/MainWindow.vala:330 +#: src/Gtk/MainWindow.vala:328 msgid "Install" msgstr "Installa" @@ -311,103 +309,73 @@ msgstr "Stato" msgid "Refresh" msgstr "Aggiorna" -#: src/Gtk/MainWindow.vala:321 src/Utility/TeeJee.System.vala:42 -msgid "Internet connection is not active" -msgstr "La connessione Internet non è attiva" - -#: src/Gtk/MainWindow.vala:321 src/Gtk/MainWindow.vala:562 -#: src/Gtk/MainWindow.vala:682 -msgid "No Internet" -msgstr "Nessuna connessione internet" - -#: src/Gtk/MainWindow.vala:339 -msgid "Multiple Kernels Selected" -msgstr "Più kernel selezionati" - #: src/Gtk/MainWindow.vala:339 -msgid "Select a single kernel to install" -msgstr "Seleziona un singolo kernel da installare" - -#: src/Gtk/MainWindow.vala:342 src/Gtk/MainWindow.vala:353 -msgid "Not Selected" -msgstr "Non selezionato" - -#: src/Gtk/MainWindow.vala:342 -msgid "Select the kernel to install" -msgstr "Seleziona il kernel da installare" - -#: src/Gtk/MainWindow.vala:347 msgid "Uninstall" msgstr "Disinstalla" -#: src/Gtk/MainWindow.vala:353 -msgid "Select the kernels to uninstall" -msgstr "Seleziona i kernel da disinstallare" - -#: src/Gtk/MainWindow.vala:383 src/Gtk/MainWindow.vala:417 -#: src/Gtk/MainWindow.vala:714 +#: src/Gtk/MainWindow.vala:372 src/Gtk/MainWindow.vala:405 +#: src/Gtk/MainWindow.vala:694 msgid "Close window to exit..." msgstr "Chiudere la finestra per uscire..." -#: src/Gtk/MainWindow.vala:391 +#: src/Gtk/MainWindow.vala:379 msgid "Uninstall Old" msgstr "Disinstalla i vecchi" -#: src/Gtk/MainWindow.vala:392 +#: src/Gtk/MainWindow.vala:380 msgid "Uninstall kernels older than running kernel" msgstr "Rimuovere i kernel installati più vecchi del kernel in esecuzione" -#: src/Gtk/MainWindow.vala:424 +#: src/Gtk/MainWindow.vala:412 msgid "Changes" msgstr "Modifiche" -#: src/Gtk/MainWindow.vala:440 +#: src/Gtk/MainWindow.vala:428 msgid "Error while downloading the changelog:\n" msgstr "" -#: src/Gtk/MainWindow.vala:450 +#: src/Gtk/MainWindow.vala:438 #, fuzzy msgid "Downloading the changelog" msgstr "Download in corso" -#: src/Gtk/MainWindow.vala:472 src/Gtk/SettingsDialog.vala:50 +#: src/Gtk/MainWindow.vala:460 src/Gtk/SettingsDialog.vala:50 msgid "Settings" msgstr "Impostazioni" -#: src/Gtk/MainWindow.vala:495 +#: src/Gtk/MainWindow.vala:483 msgid "About" msgstr "Informazioni" -#: src/Gtk/MainWindow.vala:540 +#: src/Gtk/MainWindow.vala:528 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Utilità di aggiornamento del kernel per distribuzioni basate su Ubuntu" -#: src/Gtk/MainWindow.vala:541 +#: src/Gtk/MainWindow.vala:529 msgid "Forked" msgstr "Forked" -#: src/Gtk/MainWindow.vala:541 +#: src/Gtk/MainWindow.vala:529 msgid "Original" msgstr "Originale" -#: src/Gtk/MainWindow.vala:562 src/Gtk/MainWindow.vala:682 -msgid "Internet connection is not active." -msgstr "La connessione Internet non è attiva." - -#: src/Gtk/MainWindow.vala:580 +#: src/Gtk/MainWindow.vala:566 msgid "Refreshing..." msgstr "Aggiornamento..." -#: src/Gtk/MainWindow.vala:665 +#: src/Gtk/MainWindow.vala:651 msgid "available" msgstr "disponibile" -#: src/Gtk/MainWindow.vala:677 -msgid "Already Installed" -msgstr "Già Installato" +#: src/Gtk/MainWindow.vala:709 +msgid "No Internet" +msgstr "Nessuna connessione internet" + +#: src/Gtk/MainWindow.vala:710 +msgid "Internet connection is not active." +msgstr "La connessione Internet non è attiva." #: src/Gtk/ProgressWindow.vala:127 src/Gtk/TerminalWindow.vala:149 -#: src/Utility/Gtk/CustomMessageDialog.vala:154 msgid "Cancel" msgstr "Cancella" @@ -511,15 +479,7 @@ msgstr "Documentatori" msgid "Third Party Inclusions" msgstr "Inclusioni di terze parti" -#: src/Utility/Gtk/CustomMessageDialog.vala:158 -msgid "Yes" -msgstr "Si" - -#: src/Utility/Gtk/CustomMessageDialog.vala:159 -msgid "No" -msgstr "No" - -#: src/Utility/Gtk/GtkHelper.vala:59 +#: src/Utility/Gtk/GtkHelper.vala:39 msgid "Missing Icon" msgstr "Icona mancante" diff --git a/po/ko.po b/po/ko.po index 6335a27b..56e24d9b 100644 --- a/po/ko.po +++ b/po/ko.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline 1.0.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-02-21 10:04-0500\n" +"POT-Creation-Date: 2023-02-21 10:29-0500\n" "PO-Revision-Date: 2022-09-28 11:48+0900\n" "Last-Translator: Kevin Kim \n" "Language-Team: Korean\n" @@ -13,104 +13,102 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Poedit 3.0.1\n" -#: src/Common/LinuxKernel.vala:87 +#: src/Common/LinuxKernel.vala:88 msgid "Distribution" msgstr "배포판" -#: src/Common/LinuxKernel.vala:101 +#: src/Common/LinuxKernel.vala:102 msgid "Architecture" msgstr "아키텍처" -#: src/Common/LinuxKernel.vala:299 +#: src/Common/LinuxKernel.vala:300 msgid "Fetching index..." msgstr "목록 가져오기..." -#: src/Common/LinuxKernel.vala:331 +#: src/Common/LinuxKernel.vala:332 msgid "Fetching index from kernel.ubuntu.com..." msgstr "최신 커널 목록을 가져오는 중입니다..." -#: src/Common/LinuxKernel.vala:578 +#: src/Common/LinuxKernel.vala:579 msgid "Could not find running kernel in list!" msgstr "목록에서 사용중인 커널을 찾을 수 없습니다!" -#: src/Common/LinuxKernel.vala:584 +#: src/Common/LinuxKernel.vala:585 msgid "Could not find any kernels to uninstall" msgstr "삭제할 커널을 찾을 수 없습니다" -#: src/Common/LinuxKernel.vala:593 +#: src/Common/LinuxKernel.vala:594 msgid "The following kernels will be uninstalled:" msgstr "아래 커널이 삭제됩니다:" -#: src/Common/LinuxKernel.vala:600 +#: src/Common/LinuxKernel.vala:601 msgid "Continue ?" msgstr "계속하시겠습니까?" -#: src/Common/LinuxKernel.vala:626 src/Console/AppConsole.vala:314 +#: src/Common/LinuxKernel.vala:627 src/Console/AppConsole.vala:314 msgid "Latest update" msgstr "최신 업데이트" -#: src/Common/LinuxKernel.vala:637 src/Console/AppConsole.vala:321 +#: src/Common/LinuxKernel.vala:638 src/Console/AppConsole.vala:321 msgid "Latest point update" msgstr "최신 포인트 업데이트" -#: src/Common/LinuxKernel.vala:645 src/Console/AppConsole.vala:326 +#: src/Common/LinuxKernel.vala:646 src/Console/AppConsole.vala:326 #: src/Console/AppConsole.vala:387 msgid "No updates found" msgstr "업데이트를 찾을 수 없습니다" -#: src/Common/LinuxKernel.vala:655 +#: src/Common/LinuxKernel.vala:656 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "커널 %s 버전을 설치하시겠습니까? (y/n): " -#: src/Common/LinuxKernel.vala:916 +#: src/Common/LinuxKernel.vala:917 msgid "Packages Available" msgstr "설치 가능한 패키지" -#: src/Common/LinuxKernel.vala:924 +#: src/Common/LinuxKernel.vala:925 msgid "Packages Installed" msgstr "설치된 패키지" -#: src/Common/LinuxKernel.vala:1004 +#: src/Common/LinuxKernel.vala:1005 msgid "Available Kernels" msgstr "설치 가능한 커널" -#: src/Common/LinuxKernel.vala:1011 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1012 src/Gtk/MainWindow.vala:186 msgid "Installed" msgstr "설치 됨" -#: src/Common/LinuxKernel.vala:1011 src/Gtk/MainWindow.vala:186 -#: src/Gtk/MainWindow.vala:655 src/Gtk/MainWindow.vala:669 +#: src/Common/LinuxKernel.vala:1012 src/Gtk/MainWindow.vala:186 +#: src/Gtk/MainWindow.vala:641 src/Gtk/MainWindow.vala:655 msgid "Running" msgstr "구동 중" -#: src/Common/LinuxKernel.vala:1048 +#: src/Common/LinuxKernel.vala:1049 msgid "Downloading" msgstr "다운로드 중" -#: src/Common/LinuxKernel.vala:1067 -#: src/Utility/Gtk/CustomMessageDialog.vala:149 -#: src/Utility/Gtk/CustomMessageDialog.vala:153 +#: src/Common/LinuxKernel.vala:1068 msgid "OK" msgstr "확인" -#: src/Common/LinuxKernel.vala:1072 +#: src/Common/LinuxKernel.vala:1073 msgid "ERROR" msgstr "오류" -#: src/Common/LinuxKernel.vala:1086 src/Gtk/MainWindow.vala:677 +#: src/Common/LinuxKernel.vala:1087 msgid "This kernel is already installed." msgstr "이 커널은 이미 설치되었습니다." -#: src/Common/LinuxKernel.vala:1112 +#: src/Common/LinuxKernel.vala:1113 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "설치가 완료되었습닌다. 새 커널을 사용하려면 시스템을 재시작 하세요." -#: src/Common/LinuxKernel.vala:1115 +#: src/Common/LinuxKernel.vala:1116 msgid "Installation completed with errors" msgstr "오류가 있으나 설치가 완료되었습니다" -#: src/Common/LinuxKernel.vala:1130 +#: src/Common/LinuxKernel.vala:1131 msgid "" "Selected kernel is currently running and cannot be un-installed.\n" " Install another kernel before un-installing this one." @@ -118,19 +116,19 @@ msgstr "" "선택된 커널은 현재 사용 중이므로 삭제할 수 없습니다.\n" " 이 커널을 삭제하려면 다른 커널을 먼저 설치하세요." -#: src/Common/LinuxKernel.vala:1135 +#: src/Common/LinuxKernel.vala:1136 msgid "Preparing to uninstall selected kernels" msgstr "선택한 커널을 삭제하기 위해 준비중입니다" -#: src/Common/LinuxKernel.vala:1166 src/Common/LinuxKernel.vala:1213 +#: src/Common/LinuxKernel.vala:1167 src/Common/LinuxKernel.vala:1214 msgid "Un-install completed" msgstr "삭제가 완료되었습니다" -#: src/Common/LinuxKernel.vala:1169 src/Common/LinuxKernel.vala:1216 +#: src/Common/LinuxKernel.vala:1170 src/Common/LinuxKernel.vala:1217 msgid "Un-install completed with errors" msgstr "오류가 있으나 삭제가 완료되었습니다" -#: src/Common/LinuxKernel.vala:1182 +#: src/Common/LinuxKernel.vala:1183 msgid "" "This kernel is currently running and cannot be un-installed.\n" " Install another kernel before un-installing this one." @@ -283,7 +281,7 @@ msgid "Kernel %s Available" msgstr "커널 %s 사용 가능" #: src/Console/AppConsole.vala:367 src/Console/AppConsole.vala:379 -#: src/Gtk/MainWindow.vala:330 +#: src/Gtk/MainWindow.vala:328 msgid "Install" msgstr "설치" @@ -307,103 +305,73 @@ msgstr "상태" msgid "Refresh" msgstr "새로고침" -#: src/Gtk/MainWindow.vala:321 src/Utility/TeeJee.System.vala:42 -msgid "Internet connection is not active" -msgstr "인터넷 연결을 확인하세요" - -#: src/Gtk/MainWindow.vala:321 src/Gtk/MainWindow.vala:562 -#: src/Gtk/MainWindow.vala:682 -msgid "No Internet" -msgstr "인터넷이 연결되지 않았습니다" - -#: src/Gtk/MainWindow.vala:339 -msgid "Multiple Kernels Selected" -msgstr "다수의 커널이 선택되었습니다" - #: src/Gtk/MainWindow.vala:339 -msgid "Select a single kernel to install" -msgstr "설치할 단일 커널 선택" - -#: src/Gtk/MainWindow.vala:342 src/Gtk/MainWindow.vala:353 -msgid "Not Selected" -msgstr "선택하지 않음" - -#: src/Gtk/MainWindow.vala:342 -msgid "Select the kernel to install" -msgstr "설치할 커널 선택" - -#: src/Gtk/MainWindow.vala:347 msgid "Uninstall" msgstr "삭제" -#: src/Gtk/MainWindow.vala:353 -msgid "Select the kernels to uninstall" -msgstr "삭제할 커널 선택" - -#: src/Gtk/MainWindow.vala:383 src/Gtk/MainWindow.vala:417 -#: src/Gtk/MainWindow.vala:714 +#: src/Gtk/MainWindow.vala:372 src/Gtk/MainWindow.vala:405 +#: src/Gtk/MainWindow.vala:694 msgid "Close window to exit..." msgstr "창을 닫고 종료..." -#: src/Gtk/MainWindow.vala:391 +#: src/Gtk/MainWindow.vala:379 msgid "Uninstall Old" msgstr "오래된 커널 제거" -#: src/Gtk/MainWindow.vala:392 +#: src/Gtk/MainWindow.vala:380 msgid "Uninstall kernels older than running kernel" msgstr "현재 사용 중인 커널보다 이전 버전의 커널을 제거" -#: src/Gtk/MainWindow.vala:424 +#: src/Gtk/MainWindow.vala:412 msgid "Changes" msgstr "변경사항" -#: src/Gtk/MainWindow.vala:440 +#: src/Gtk/MainWindow.vala:428 msgid "Error while downloading the changelog:\n" msgstr "" -#: src/Gtk/MainWindow.vala:450 +#: src/Gtk/MainWindow.vala:438 #, fuzzy msgid "Downloading the changelog" msgstr "다운로드 중" -#: src/Gtk/MainWindow.vala:472 src/Gtk/SettingsDialog.vala:50 +#: src/Gtk/MainWindow.vala:460 src/Gtk/SettingsDialog.vala:50 msgid "Settings" msgstr "설정" -#: src/Gtk/MainWindow.vala:495 +#: src/Gtk/MainWindow.vala:483 msgid "About" msgstr "정보" -#: src/Gtk/MainWindow.vala:540 +#: src/Gtk/MainWindow.vala:528 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "우분투 기반 배포판의 커널 업그레이드 도구" -#: src/Gtk/MainWindow.vala:541 +#: src/Gtk/MainWindow.vala:529 msgid "Forked" msgstr "" -#: src/Gtk/MainWindow.vala:541 +#: src/Gtk/MainWindow.vala:529 msgid "Original" msgstr "" -#: src/Gtk/MainWindow.vala:562 src/Gtk/MainWindow.vala:682 -msgid "Internet connection is not active." -msgstr "인터넷 연결을 확인하세요." - -#: src/Gtk/MainWindow.vala:580 +#: src/Gtk/MainWindow.vala:566 msgid "Refreshing..." msgstr "새로 고침..." -#: src/Gtk/MainWindow.vala:665 +#: src/Gtk/MainWindow.vala:651 msgid "available" msgstr "사용가능" -#: src/Gtk/MainWindow.vala:677 -msgid "Already Installed" -msgstr "이미 설치되었습니다" +#: src/Gtk/MainWindow.vala:709 +msgid "No Internet" +msgstr "인터넷이 연결되지 않았습니다" + +#: src/Gtk/MainWindow.vala:710 +msgid "Internet connection is not active." +msgstr "인터넷 연결을 확인하세요." #: src/Gtk/ProgressWindow.vala:127 src/Gtk/TerminalWindow.vala:149 -#: src/Utility/Gtk/CustomMessageDialog.vala:154 msgid "Cancel" msgstr "취소" @@ -507,15 +475,7 @@ msgstr "문서작성" msgid "Third Party Inclusions" msgstr "서드파티 포함" -#: src/Utility/Gtk/CustomMessageDialog.vala:158 -msgid "Yes" -msgstr "예" - -#: src/Utility/Gtk/CustomMessageDialog.vala:159 -msgid "No" -msgstr "아니오" - -#: src/Utility/Gtk/GtkHelper.vala:59 +#: src/Utility/Gtk/GtkHelper.vala:39 msgid "Missing Icon" msgstr "아이콘을 찾을 수 없습니다" diff --git a/po/messages.pot b/po/messages.pot index 4a524ac4..0c1e2e28 100644 --- a/po/messages.pot +++ b/po/messages.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline 1.0.19\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-02-21 10:04-0500\n" +"POT-Creation-Date: 2023-02-21 10:29-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,122 +17,120 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" -#: src/Common/LinuxKernel.vala:87 +#: src/Common/LinuxKernel.vala:88 msgid "Distribution" msgstr "" -#: src/Common/LinuxKernel.vala:101 +#: src/Common/LinuxKernel.vala:102 msgid "Architecture" msgstr "" -#: src/Common/LinuxKernel.vala:299 +#: src/Common/LinuxKernel.vala:300 msgid "Fetching index..." msgstr "" -#: src/Common/LinuxKernel.vala:331 +#: src/Common/LinuxKernel.vala:332 msgid "Fetching index from kernel.ubuntu.com..." msgstr "" -#: src/Common/LinuxKernel.vala:578 +#: src/Common/LinuxKernel.vala:579 msgid "Could not find running kernel in list!" msgstr "" -#: src/Common/LinuxKernel.vala:584 +#: src/Common/LinuxKernel.vala:585 msgid "Could not find any kernels to uninstall" msgstr "" -#: src/Common/LinuxKernel.vala:593 +#: src/Common/LinuxKernel.vala:594 msgid "The following kernels will be uninstalled:" msgstr "" -#: src/Common/LinuxKernel.vala:600 +#: src/Common/LinuxKernel.vala:601 msgid "Continue ?" msgstr "" -#: src/Common/LinuxKernel.vala:626 src/Console/AppConsole.vala:314 +#: src/Common/LinuxKernel.vala:627 src/Console/AppConsole.vala:314 msgid "Latest update" msgstr "" -#: src/Common/LinuxKernel.vala:637 src/Console/AppConsole.vala:321 +#: src/Common/LinuxKernel.vala:638 src/Console/AppConsole.vala:321 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:645 src/Console/AppConsole.vala:326 +#: src/Common/LinuxKernel.vala:646 src/Console/AppConsole.vala:326 #: src/Console/AppConsole.vala:387 msgid "No updates found" msgstr "" -#: src/Common/LinuxKernel.vala:655 +#: src/Common/LinuxKernel.vala:656 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "" -#: src/Common/LinuxKernel.vala:916 +#: src/Common/LinuxKernel.vala:917 msgid "Packages Available" msgstr "" -#: src/Common/LinuxKernel.vala:924 +#: src/Common/LinuxKernel.vala:925 msgid "Packages Installed" msgstr "" -#: src/Common/LinuxKernel.vala:1004 +#: src/Common/LinuxKernel.vala:1005 msgid "Available Kernels" msgstr "" -#: src/Common/LinuxKernel.vala:1011 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1012 src/Gtk/MainWindow.vala:186 msgid "Installed" msgstr "" -#: src/Common/LinuxKernel.vala:1011 src/Gtk/MainWindow.vala:186 -#: src/Gtk/MainWindow.vala:655 src/Gtk/MainWindow.vala:669 +#: src/Common/LinuxKernel.vala:1012 src/Gtk/MainWindow.vala:186 +#: src/Gtk/MainWindow.vala:641 src/Gtk/MainWindow.vala:655 msgid "Running" msgstr "" -#: src/Common/LinuxKernel.vala:1048 +#: src/Common/LinuxKernel.vala:1049 msgid "Downloading" msgstr "" -#: src/Common/LinuxKernel.vala:1067 -#: src/Utility/Gtk/CustomMessageDialog.vala:149 -#: src/Utility/Gtk/CustomMessageDialog.vala:153 +#: src/Common/LinuxKernel.vala:1068 msgid "OK" msgstr "" -#: src/Common/LinuxKernel.vala:1072 +#: src/Common/LinuxKernel.vala:1073 msgid "ERROR" msgstr "" -#: src/Common/LinuxKernel.vala:1086 src/Gtk/MainWindow.vala:677 +#: src/Common/LinuxKernel.vala:1087 msgid "This kernel is already installed." msgstr "" -#: src/Common/LinuxKernel.vala:1112 +#: src/Common/LinuxKernel.vala:1113 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" -#: src/Common/LinuxKernel.vala:1115 +#: src/Common/LinuxKernel.vala:1116 msgid "Installation completed with errors" msgstr "" -#: src/Common/LinuxKernel.vala:1130 +#: src/Common/LinuxKernel.vala:1131 msgid "" "Selected kernel is currently running and cannot be un-installed.\n" " Install another kernel before un-installing this one." msgstr "" -#: src/Common/LinuxKernel.vala:1135 +#: src/Common/LinuxKernel.vala:1136 msgid "Preparing to uninstall selected kernels" msgstr "" -#: src/Common/LinuxKernel.vala:1166 src/Common/LinuxKernel.vala:1213 +#: src/Common/LinuxKernel.vala:1167 src/Common/LinuxKernel.vala:1214 msgid "Un-install completed" msgstr "" -#: src/Common/LinuxKernel.vala:1169 src/Common/LinuxKernel.vala:1216 +#: src/Common/LinuxKernel.vala:1170 src/Common/LinuxKernel.vala:1217 msgid "Un-install completed with errors" msgstr "" -#: src/Common/LinuxKernel.vala:1182 +#: src/Common/LinuxKernel.vala:1183 msgid "" "This kernel is currently running and cannot be un-installed.\n" " Install another kernel before un-installing this one." @@ -283,7 +281,7 @@ msgid "Kernel %s Available" msgstr "" #: src/Console/AppConsole.vala:367 src/Console/AppConsole.vala:379 -#: src/Gtk/MainWindow.vala:330 +#: src/Gtk/MainWindow.vala:328 msgid "Install" msgstr "" @@ -307,102 +305,72 @@ msgstr "" msgid "Refresh" msgstr "" -#: src/Gtk/MainWindow.vala:321 src/Utility/TeeJee.System.vala:42 -msgid "Internet connection is not active" -msgstr "" - -#: src/Gtk/MainWindow.vala:321 src/Gtk/MainWindow.vala:562 -#: src/Gtk/MainWindow.vala:682 -msgid "No Internet" -msgstr "" - -#: src/Gtk/MainWindow.vala:339 -msgid "Multiple Kernels Selected" -msgstr "" - #: src/Gtk/MainWindow.vala:339 -msgid "Select a single kernel to install" -msgstr "" - -#: src/Gtk/MainWindow.vala:342 src/Gtk/MainWindow.vala:353 -msgid "Not Selected" -msgstr "" - -#: src/Gtk/MainWindow.vala:342 -msgid "Select the kernel to install" -msgstr "" - -#: src/Gtk/MainWindow.vala:347 msgid "Uninstall" msgstr "" -#: src/Gtk/MainWindow.vala:353 -msgid "Select the kernels to uninstall" -msgstr "" - -#: src/Gtk/MainWindow.vala:383 src/Gtk/MainWindow.vala:417 -#: src/Gtk/MainWindow.vala:714 +#: src/Gtk/MainWindow.vala:372 src/Gtk/MainWindow.vala:405 +#: src/Gtk/MainWindow.vala:694 msgid "Close window to exit..." msgstr "" -#: src/Gtk/MainWindow.vala:391 +#: src/Gtk/MainWindow.vala:379 msgid "Uninstall Old" msgstr "" -#: src/Gtk/MainWindow.vala:392 +#: src/Gtk/MainWindow.vala:380 msgid "Uninstall kernels older than running kernel" msgstr "" -#: src/Gtk/MainWindow.vala:424 +#: src/Gtk/MainWindow.vala:412 msgid "Changes" msgstr "" -#: src/Gtk/MainWindow.vala:440 +#: src/Gtk/MainWindow.vala:428 msgid "Error while downloading the changelog:\n" msgstr "" -#: src/Gtk/MainWindow.vala:450 +#: src/Gtk/MainWindow.vala:438 msgid "Downloading the changelog" msgstr "" -#: src/Gtk/MainWindow.vala:472 src/Gtk/SettingsDialog.vala:50 +#: src/Gtk/MainWindow.vala:460 src/Gtk/SettingsDialog.vala:50 msgid "Settings" msgstr "" -#: src/Gtk/MainWindow.vala:495 +#: src/Gtk/MainWindow.vala:483 msgid "About" msgstr "" -#: src/Gtk/MainWindow.vala:540 +#: src/Gtk/MainWindow.vala:528 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "" -#: src/Gtk/MainWindow.vala:541 +#: src/Gtk/MainWindow.vala:529 msgid "Forked" msgstr "" -#: src/Gtk/MainWindow.vala:541 +#: src/Gtk/MainWindow.vala:529 msgid "Original" msgstr "" -#: src/Gtk/MainWindow.vala:562 src/Gtk/MainWindow.vala:682 -msgid "Internet connection is not active." -msgstr "" - -#: src/Gtk/MainWindow.vala:580 +#: src/Gtk/MainWindow.vala:566 msgid "Refreshing..." msgstr "" -#: src/Gtk/MainWindow.vala:665 +#: src/Gtk/MainWindow.vala:651 msgid "available" msgstr "" -#: src/Gtk/MainWindow.vala:677 -msgid "Already Installed" +#: src/Gtk/MainWindow.vala:709 +msgid "No Internet" +msgstr "" + +#: src/Gtk/MainWindow.vala:710 +msgid "Internet connection is not active." msgstr "" #: src/Gtk/ProgressWindow.vala:127 src/Gtk/TerminalWindow.vala:149 -#: src/Utility/Gtk/CustomMessageDialog.vala:154 msgid "Cancel" msgstr "" @@ -506,15 +474,7 @@ msgstr "" msgid "Third Party Inclusions" msgstr "" -#: src/Utility/Gtk/CustomMessageDialog.vala:158 -msgid "Yes" -msgstr "" - -#: src/Utility/Gtk/CustomMessageDialog.vala:159 -msgid "No" -msgstr "" - -#: src/Utility/Gtk/GtkHelper.vala:59 +#: src/Utility/Gtk/GtkHelper.vala:39 msgid "Missing Icon" msgstr "" diff --git a/po/nl.po b/po/nl.po index b6e99df0..ab2c7558 100644 --- a/po/nl.po +++ b/po/nl.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-02-21 10:04-0500\n" +"POT-Creation-Date: 2023-02-21 10:29-0500\n" "PO-Revision-Date: 2020-08-23 13:55+0200\n" "Last-Translator: Heimen Stoffels \n" "Language-Team: Dutch (Netherlands)\n" @@ -13,108 +13,106 @@ msgstr "" "X-Generator: Poedit 2.4.1\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: src/Common/LinuxKernel.vala:87 +#: src/Common/LinuxKernel.vala:88 msgid "Distribution" msgstr "Distributie" -#: src/Common/LinuxKernel.vala:101 +#: src/Common/LinuxKernel.vala:102 msgid "Architecture" msgstr "Architectuur" -#: src/Common/LinuxKernel.vala:299 +#: src/Common/LinuxKernel.vala:300 msgid "Fetching index..." msgstr "Bezig met ophalen van index..." -#: src/Common/LinuxKernel.vala:331 +#: src/Common/LinuxKernel.vala:332 msgid "Fetching index from kernel.ubuntu.com..." msgstr "Bezig met ophalen van index van kernel.ubuntu.com..." -#: src/Common/LinuxKernel.vala:578 +#: src/Common/LinuxKernel.vala:579 msgid "Could not find running kernel in list!" msgstr "De in gebruik zijnde kernel staat niet op de lijst!" -#: src/Common/LinuxKernel.vala:584 +#: src/Common/LinuxKernel.vala:585 #, fuzzy msgid "Could not find any kernels to uninstall" msgstr "Er zijn geen te verwijderen kernels" -#: src/Common/LinuxKernel.vala:593 +#: src/Common/LinuxKernel.vala:594 #, fuzzy msgid "The following kernels will be uninstalled:" msgstr "De volgende kernels worden verwijderd:" -#: src/Common/LinuxKernel.vala:600 +#: src/Common/LinuxKernel.vala:601 msgid "Continue ?" msgstr "Wil je doorgaan?" -#: src/Common/LinuxKernel.vala:626 src/Console/AppConsole.vala:314 +#: src/Common/LinuxKernel.vala:627 src/Console/AppConsole.vala:314 msgid "Latest update" msgstr "Recentste update" -#: src/Common/LinuxKernel.vala:637 src/Console/AppConsole.vala:321 +#: src/Common/LinuxKernel.vala:638 src/Console/AppConsole.vala:321 msgid "Latest point update" msgstr "Recentste puntupdate" -#: src/Common/LinuxKernel.vala:645 src/Console/AppConsole.vala:326 +#: src/Common/LinuxKernel.vala:646 src/Console/AppConsole.vala:326 #: src/Console/AppConsole.vala:387 msgid "No updates found" msgstr "Geen updates gevonden" -#: src/Common/LinuxKernel.vala:655 +#: src/Common/LinuxKernel.vala:656 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Wil je versie %s installeren? (j/n): " -#: src/Common/LinuxKernel.vala:916 +#: src/Common/LinuxKernel.vala:917 msgid "Packages Available" msgstr "Beschikbare pakketten" -#: src/Common/LinuxKernel.vala:924 +#: src/Common/LinuxKernel.vala:925 msgid "Packages Installed" msgstr "Geïnstalleerde pakketten" -#: src/Common/LinuxKernel.vala:1004 +#: src/Common/LinuxKernel.vala:1005 msgid "Available Kernels" msgstr "Beschikbare kernels" -#: src/Common/LinuxKernel.vala:1011 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1012 src/Gtk/MainWindow.vala:186 msgid "Installed" msgstr "Geïnstalleerd" -#: src/Common/LinuxKernel.vala:1011 src/Gtk/MainWindow.vala:186 -#: src/Gtk/MainWindow.vala:655 src/Gtk/MainWindow.vala:669 +#: src/Common/LinuxKernel.vala:1012 src/Gtk/MainWindow.vala:186 +#: src/Gtk/MainWindow.vala:641 src/Gtk/MainWindow.vala:655 msgid "Running" msgstr "In gebruik" -#: src/Common/LinuxKernel.vala:1048 +#: src/Common/LinuxKernel.vala:1049 msgid "Downloading" msgstr "Bezig met downloaden" -#: src/Common/LinuxKernel.vala:1067 -#: src/Utility/Gtk/CustomMessageDialog.vala:149 -#: src/Utility/Gtk/CustomMessageDialog.vala:153 +#: src/Common/LinuxKernel.vala:1068 msgid "OK" msgstr "Oké" -#: src/Common/LinuxKernel.vala:1072 +#: src/Common/LinuxKernel.vala:1073 msgid "ERROR" msgstr "FOUT" -#: src/Common/LinuxKernel.vala:1086 src/Gtk/MainWindow.vala:677 +#: src/Common/LinuxKernel.vala:1087 msgid "This kernel is already installed." msgstr "Deze kernel is al geïnstalleerd." -#: src/Common/LinuxKernel.vala:1112 +#: src/Common/LinuxKernel.vala:1113 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "De installatie is voltooid. Herstart de computer om de nieuwe kernel te " "gebruiken." -#: src/Common/LinuxKernel.vala:1115 +#: src/Common/LinuxKernel.vala:1116 msgid "Installation completed with errors" msgstr "De installatie is foutloos voltooid" -#: src/Common/LinuxKernel.vala:1130 +#: src/Common/LinuxKernel.vala:1131 #, fuzzy msgid "" "Selected kernel is currently running and cannot be un-installed.\n" @@ -124,20 +122,20 @@ msgstr "" "verwijderd.\n" " Installeer eerst een andere kernel." -#: src/Common/LinuxKernel.vala:1135 +#: src/Common/LinuxKernel.vala:1136 #, fuzzy msgid "Preparing to uninstall selected kernels" msgstr "Bezig met voorbereiden van verwijdering" -#: src/Common/LinuxKernel.vala:1166 src/Common/LinuxKernel.vala:1213 +#: src/Common/LinuxKernel.vala:1167 src/Common/LinuxKernel.vala:1214 msgid "Un-install completed" msgstr "Deïnstalleren voltooid" -#: src/Common/LinuxKernel.vala:1169 src/Common/LinuxKernel.vala:1216 +#: src/Common/LinuxKernel.vala:1170 src/Common/LinuxKernel.vala:1217 msgid "Un-install completed with errors" msgstr "Deïnstalleren voltooid, maar met fouten" -#: src/Common/LinuxKernel.vala:1182 +#: src/Common/LinuxKernel.vala:1183 #, fuzzy msgid "" "This kernel is currently running and cannot be un-installed.\n" @@ -297,7 +295,7 @@ msgid "Kernel %s Available" msgstr "Kernel %s is beschikbaar" #: src/Console/AppConsole.vala:367 src/Console/AppConsole.vala:379 -#: src/Gtk/MainWindow.vala:330 +#: src/Gtk/MainWindow.vala:328 msgid "Install" msgstr "Installeren" @@ -321,107 +319,76 @@ msgstr "Status" msgid "Refresh" msgstr "Verversen" -#: src/Gtk/MainWindow.vala:321 src/Utility/TeeJee.System.vala:42 -msgid "Internet connection is not active" -msgstr "Je bent niet verbonden met het internet" - -#: src/Gtk/MainWindow.vala:321 src/Gtk/MainWindow.vala:562 -#: src/Gtk/MainWindow.vala:682 -msgid "No Internet" -msgstr "Geen internetverbinding" - -#: src/Gtk/MainWindow.vala:339 -msgid "Multiple Kernels Selected" -msgstr "Meerdere kernels geselecteerd" - #: src/Gtk/MainWindow.vala:339 -msgid "Select a single kernel to install" -msgstr "Selecteer één te installeren kernel" - -#: src/Gtk/MainWindow.vala:342 src/Gtk/MainWindow.vala:353 -msgid "Not Selected" -msgstr "Niet geselecteerd" - -#: src/Gtk/MainWindow.vala:342 -msgid "Select the kernel to install" -msgstr "Selecteer de te installeren kernel" - -#: src/Gtk/MainWindow.vala:347 #, fuzzy msgid "Uninstall" msgstr "Installeren" -#: src/Gtk/MainWindow.vala:353 -#, fuzzy -msgid "Select the kernels to uninstall" -msgstr "Selecteer de te installeren kernel" - -#: src/Gtk/MainWindow.vala:383 src/Gtk/MainWindow.vala:417 -#: src/Gtk/MainWindow.vala:714 +#: src/Gtk/MainWindow.vala:372 src/Gtk/MainWindow.vala:405 +#: src/Gtk/MainWindow.vala:694 msgid "Close window to exit..." msgstr "Sluit het venster..." -#: src/Gtk/MainWindow.vala:391 +#: src/Gtk/MainWindow.vala:379 #, fuzzy msgid "Uninstall Old" msgstr "Deïnstalleren voltooid" -#: src/Gtk/MainWindow.vala:392 +#: src/Gtk/MainWindow.vala:380 #, fuzzy msgid "Uninstall kernels older than running kernel" msgstr "Geïnstalleerde kernels verwijderen die ouder zijn dan de huidige" -#: src/Gtk/MainWindow.vala:424 +#: src/Gtk/MainWindow.vala:412 msgid "Changes" msgstr "Wijzigingen" -#: src/Gtk/MainWindow.vala:440 +#: src/Gtk/MainWindow.vala:428 msgid "Error while downloading the changelog:\n" msgstr "" -#: src/Gtk/MainWindow.vala:450 +#: src/Gtk/MainWindow.vala:438 #, fuzzy msgid "Downloading the changelog" msgstr "Bezig met downloaden" -#: src/Gtk/MainWindow.vala:472 src/Gtk/SettingsDialog.vala:50 +#: src/Gtk/MainWindow.vala:460 src/Gtk/SettingsDialog.vala:50 msgid "Settings" msgstr "Instellingen" -#: src/Gtk/MainWindow.vala:495 +#: src/Gtk/MainWindow.vala:483 msgid "About" msgstr "Over" -#: src/Gtk/MainWindow.vala:540 +#: src/Gtk/MainWindow.vala:528 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Een kernelupgradehulpmiddel voor op Ubuntu gebaseerde distributies" -#: src/Gtk/MainWindow.vala:541 +#: src/Gtk/MainWindow.vala:529 msgid "Forked" msgstr "Geforkt" -#: src/Gtk/MainWindow.vala:541 +#: src/Gtk/MainWindow.vala:529 msgid "Original" msgstr "Origineel" -#: src/Gtk/MainWindow.vala:562 src/Gtk/MainWindow.vala:682 -msgid "Internet connection is not active." -msgstr "Je bent niet verbonden met het internet." - -#: src/Gtk/MainWindow.vala:580 +#: src/Gtk/MainWindow.vala:566 msgid "Refreshing..." msgstr "Bezig met verversen..." -#: src/Gtk/MainWindow.vala:665 +#: src/Gtk/MainWindow.vala:651 msgid "available" msgstr "beschikbaar" -#: src/Gtk/MainWindow.vala:677 -msgid "Already Installed" -msgstr "Reeds geïnstalleerd" +#: src/Gtk/MainWindow.vala:709 +msgid "No Internet" +msgstr "Geen internetverbinding" + +#: src/Gtk/MainWindow.vala:710 +msgid "Internet connection is not active." +msgstr "Je bent niet verbonden met het internet." #: src/Gtk/ProgressWindow.vala:127 src/Gtk/TerminalWindow.vala:149 -#: src/Utility/Gtk/CustomMessageDialog.vala:154 msgid "Cancel" msgstr "Annuleren" @@ -525,15 +492,7 @@ msgstr "Documenteerders" msgid "Third Party Inclusions" msgstr "Externe code" -#: src/Utility/Gtk/CustomMessageDialog.vala:158 -msgid "Yes" -msgstr "Ja" - -#: src/Utility/Gtk/CustomMessageDialog.vala:159 -msgid "No" -msgstr "Nee" - -#: src/Utility/Gtk/GtkHelper.vala:59 +#: src/Utility/Gtk/GtkHelper.vala:39 msgid "Missing Icon" msgstr "Ontbrekend pictogram" diff --git a/po/pl.po b/po/pl.po index 1eea7c2a..0fabcb2f 100644 --- a/po/pl.po +++ b/po/pl.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-02-21 10:04-0500\n" +"POT-Creation-Date: 2023-02-21 10:29-0500\n" "PO-Revision-Date: 2021-09-17 10:29+0200\n" "Last-Translator: Viktor Sokyrko \n" "Language-Team: Polish\n" @@ -12,107 +12,105 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Poedit 2.4.2\n" -#: src/Common/LinuxKernel.vala:87 +#: src/Common/LinuxKernel.vala:88 msgid "Distribution" msgstr "Dystrybucja" -#: src/Common/LinuxKernel.vala:101 +#: src/Common/LinuxKernel.vala:102 #, fuzzy msgid "Architecture" msgstr "Architektura systemu" -#: src/Common/LinuxKernel.vala:299 +#: src/Common/LinuxKernel.vala:300 msgid "Fetching index..." msgstr "Pobieranie indeksu..." -#: src/Common/LinuxKernel.vala:331 +#: src/Common/LinuxKernel.vala:332 msgid "Fetching index from kernel.ubuntu.com..." msgstr "Pobieranie indeksu z kernel.ubuntu.com..." -#: src/Common/LinuxKernel.vala:578 +#: src/Common/LinuxKernel.vala:579 msgid "Could not find running kernel in list!" msgstr "Nie można znaleźć uruchomionego jądra na liście!" -#: src/Common/LinuxKernel.vala:584 +#: src/Common/LinuxKernel.vala:585 msgid "Could not find any kernels to uninstall" msgstr "Nie udało się odnaleźć żadnych jąder do odinstalowania" -#: src/Common/LinuxKernel.vala:593 +#: src/Common/LinuxKernel.vala:594 msgid "The following kernels will be uninstalled:" msgstr "Następujące jądra zostaną odinstalowane:" -#: src/Common/LinuxKernel.vala:600 +#: src/Common/LinuxKernel.vala:601 msgid "Continue ?" msgstr "Kontynuowac?" -#: src/Common/LinuxKernel.vala:626 src/Console/AppConsole.vala:314 +#: src/Common/LinuxKernel.vala:627 src/Console/AppConsole.vala:314 msgid "Latest update" msgstr "Najnowsza aktualizacja" -#: src/Common/LinuxKernel.vala:637 src/Console/AppConsole.vala:321 +#: src/Common/LinuxKernel.vala:638 src/Console/AppConsole.vala:321 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:645 src/Console/AppConsole.vala:326 +#: src/Common/LinuxKernel.vala:646 src/Console/AppConsole.vala:326 #: src/Console/AppConsole.vala:387 msgid "No updates found" msgstr "Nie znaleziono aktualizacji" -#: src/Common/LinuxKernel.vala:655 +#: src/Common/LinuxKernel.vala:656 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Instaluj wersję jądra %s ? (t/n): " -#: src/Common/LinuxKernel.vala:916 +#: src/Common/LinuxKernel.vala:917 msgid "Packages Available" msgstr "Dostępne pakiety" -#: src/Common/LinuxKernel.vala:924 +#: src/Common/LinuxKernel.vala:925 msgid "Packages Installed" msgstr "Pakiety zainstalowane" -#: src/Common/LinuxKernel.vala:1004 +#: src/Common/LinuxKernel.vala:1005 msgid "Available Kernels" msgstr "Dostępne jądra" -#: src/Common/LinuxKernel.vala:1011 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1012 src/Gtk/MainWindow.vala:186 msgid "Installed" msgstr "Zainstalowany" -#: src/Common/LinuxKernel.vala:1011 src/Gtk/MainWindow.vala:186 -#: src/Gtk/MainWindow.vala:655 src/Gtk/MainWindow.vala:669 +#: src/Common/LinuxKernel.vala:1012 src/Gtk/MainWindow.vala:186 +#: src/Gtk/MainWindow.vala:641 src/Gtk/MainWindow.vala:655 msgid "Running" msgstr "Uruchomiony" -#: src/Common/LinuxKernel.vala:1048 +#: src/Common/LinuxKernel.vala:1049 msgid "Downloading" msgstr "Pobieranie" -#: src/Common/LinuxKernel.vala:1067 -#: src/Utility/Gtk/CustomMessageDialog.vala:149 -#: src/Utility/Gtk/CustomMessageDialog.vala:153 +#: src/Common/LinuxKernel.vala:1068 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:1072 +#: src/Common/LinuxKernel.vala:1073 msgid "ERROR" msgstr "BŁĄD" -#: src/Common/LinuxKernel.vala:1086 src/Gtk/MainWindow.vala:677 +#: src/Common/LinuxKernel.vala:1087 msgid "This kernel is already installed." msgstr "To jądro jest już zainstalowane." -#: src/Common/LinuxKernel.vala:1112 +#: src/Common/LinuxKernel.vala:1113 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "Instalacja zakończona. Aby korzystać z nowego jądra, konieczne jest ponowne " "uruchomienie." -#: src/Common/LinuxKernel.vala:1115 +#: src/Common/LinuxKernel.vala:1116 msgid "Installation completed with errors" msgstr "Instalacja zakończona z błędami" -#: src/Common/LinuxKernel.vala:1130 +#: src/Common/LinuxKernel.vala:1131 msgid "" "Selected kernel is currently running and cannot be un-installed.\n" " Install another kernel before un-installing this one." @@ -120,19 +118,19 @@ msgstr "" "Wybrane jądro aktualnie działa i nie może zostać odinstalowane.\n" " Zainstaluj inne jądro przed odinstalowaniem tego." -#: src/Common/LinuxKernel.vala:1135 +#: src/Common/LinuxKernel.vala:1136 msgid "Preparing to uninstall selected kernels" msgstr "Przygotowanie do odinstalowania wybranych jąder" -#: src/Common/LinuxKernel.vala:1166 src/Common/LinuxKernel.vala:1213 +#: src/Common/LinuxKernel.vala:1167 src/Common/LinuxKernel.vala:1214 msgid "Un-install completed" msgstr "Deinstalacja zakończona" -#: src/Common/LinuxKernel.vala:1169 src/Common/LinuxKernel.vala:1216 +#: src/Common/LinuxKernel.vala:1170 src/Common/LinuxKernel.vala:1217 msgid "Un-install completed with errors" msgstr "De-instalacja zakończona z błędami" -#: src/Common/LinuxKernel.vala:1182 +#: src/Common/LinuxKernel.vala:1183 msgid "" "This kernel is currently running and cannot be un-installed.\n" " Install another kernel before un-installing this one." @@ -293,7 +291,7 @@ msgid "Kernel %s Available" msgstr "Dostępne jądro %s" #: src/Console/AppConsole.vala:367 src/Console/AppConsole.vala:379 -#: src/Gtk/MainWindow.vala:330 +#: src/Gtk/MainWindow.vala:328 msgid "Install" msgstr "Zainstaluj" @@ -317,106 +315,76 @@ msgstr "Status" msgid "Refresh" msgstr "Odśwież" -#: src/Gtk/MainWindow.vala:321 src/Utility/TeeJee.System.vala:42 -msgid "Internet connection is not active" -msgstr "Brak połączenia z internetem" - -#: src/Gtk/MainWindow.vala:321 src/Gtk/MainWindow.vala:562 -#: src/Gtk/MainWindow.vala:682 -msgid "No Internet" -msgstr "Brak internetu" - -#: src/Gtk/MainWindow.vala:339 -msgid "Multiple Kernels Selected" -msgstr "Wybrano kilka jąder" - #: src/Gtk/MainWindow.vala:339 -msgid "Select a single kernel to install" -msgstr "Wybierz pojedyncze jądro do instalacji" - -#: src/Gtk/MainWindow.vala:342 src/Gtk/MainWindow.vala:353 -msgid "Not Selected" -msgstr "Nie wybrany" - -#: src/Gtk/MainWindow.vala:342 -msgid "Select the kernel to install" -msgstr "Wybierz jądro do instalacji" - -#: src/Gtk/MainWindow.vala:347 msgid "Uninstall" msgstr "Odinstaluj" -#: src/Gtk/MainWindow.vala:353 -msgid "Select the kernels to uninstall" -msgstr "Wybierz jądra do deinstalacji" - -#: src/Gtk/MainWindow.vala:383 src/Gtk/MainWindow.vala:417 -#: src/Gtk/MainWindow.vala:714 +#: src/Gtk/MainWindow.vala:372 src/Gtk/MainWindow.vala:405 +#: src/Gtk/MainWindow.vala:694 msgid "Close window to exit..." msgstr "Zamknij okno żeby wyjść..." -#: src/Gtk/MainWindow.vala:391 +#: src/Gtk/MainWindow.vala:379 msgid "Uninstall Old" msgstr "Odinstaluj Stare" -#: src/Gtk/MainWindow.vala:392 +#: src/Gtk/MainWindow.vala:380 msgid "Uninstall kernels older than running kernel" msgstr "Odinstaluj jądra starsze niż uruchomione" -#: src/Gtk/MainWindow.vala:424 +#: src/Gtk/MainWindow.vala:412 msgid "Changes" msgstr "Zmiany" -#: src/Gtk/MainWindow.vala:440 +#: src/Gtk/MainWindow.vala:428 msgid "Error while downloading the changelog:\n" msgstr "" -#: src/Gtk/MainWindow.vala:450 +#: src/Gtk/MainWindow.vala:438 #, fuzzy msgid "Downloading the changelog" msgstr "Pobieranie" -#: src/Gtk/MainWindow.vala:472 src/Gtk/SettingsDialog.vala:50 +#: src/Gtk/MainWindow.vala:460 src/Gtk/SettingsDialog.vala:50 msgid "Settings" msgstr "Ustawienia" -#: src/Gtk/MainWindow.vala:495 +#: src/Gtk/MainWindow.vala:483 msgid "About" msgstr "O programie" -#: src/Gtk/MainWindow.vala:540 +#: src/Gtk/MainWindow.vala:528 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Narzędzie uaktualniania jądra dla dystrybucji z rodziny Ubuntu" -#: src/Gtk/MainWindow.vala:541 +#: src/Gtk/MainWindow.vala:529 msgid "Forked" msgstr "" -#: src/Gtk/MainWindow.vala:541 +#: src/Gtk/MainWindow.vala:529 msgid "Original" msgstr "" -#: src/Gtk/MainWindow.vala:562 src/Gtk/MainWindow.vala:682 -#, fuzzy -msgid "Internet connection is not active." -msgstr "Brak połączenia z internetem" - -#: src/Gtk/MainWindow.vala:580 +#: src/Gtk/MainWindow.vala:566 msgid "Refreshing..." msgstr "Odświeżam..." # Should be a single word at the end of the line. # For example: "5.13.16 available" -#: src/Gtk/MainWindow.vala:665 +#: src/Gtk/MainWindow.vala:651 msgid "available" msgstr "dostępne" -#: src/Gtk/MainWindow.vala:677 -msgid "Already Installed" -msgstr "Już zainstalowane" +#: src/Gtk/MainWindow.vala:709 +msgid "No Internet" +msgstr "Brak internetu" + +#: src/Gtk/MainWindow.vala:710 +#, fuzzy +msgid "Internet connection is not active." +msgstr "Brak połączenia z internetem" #: src/Gtk/ProgressWindow.vala:127 src/Gtk/TerminalWindow.vala:149 -#: src/Utility/Gtk/CustomMessageDialog.vala:154 msgid "Cancel" msgstr "Anuluj" @@ -522,15 +490,7 @@ msgstr "Dokumentujący" msgid "Third Party Inclusions" msgstr "Narzędzia osób trzecich" -#: src/Utility/Gtk/CustomMessageDialog.vala:158 -msgid "Yes" -msgstr "Tak" - -#: src/Utility/Gtk/CustomMessageDialog.vala:159 -msgid "No" -msgstr "Nie" - -#: src/Utility/Gtk/GtkHelper.vala:59 +#: src/Utility/Gtk/GtkHelper.vala:39 msgid "Missing Icon" msgstr "Brakująca ikona" diff --git a/po/ru.po b/po/ru.po index 4fa0dd4d..6aca81a1 100644 --- a/po/ru.po +++ b/po/ru.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-02-21 10:04-0500\n" +"POT-Creation-Date: 2023-02-21 10:29-0500\n" "PO-Revision-Date: 2022-02-24 16:05+0300\n" "Last-Translator: Danik2343 \n" "Language-Team: Russian\n" @@ -13,106 +13,104 @@ msgstr "" "X-Launchpad-Export-Date: 2016-12-13 11:48+0000\n" "X-Generator: Poedit 2.3\n" -#: src/Common/LinuxKernel.vala:87 +#: src/Common/LinuxKernel.vala:88 msgid "Distribution" msgstr "Дистрибутив" -#: src/Common/LinuxKernel.vala:101 +#: src/Common/LinuxKernel.vala:102 msgid "Architecture" msgstr "Архитектура" -#: src/Common/LinuxKernel.vala:299 +#: src/Common/LinuxKernel.vala:300 msgid "Fetching index..." msgstr "Получение сведений..." -#: src/Common/LinuxKernel.vala:331 +#: src/Common/LinuxKernel.vala:332 msgid "Fetching index from kernel.ubuntu.com..." msgstr "Получение сведений с kernel.ubuntu.com..." -#: src/Common/LinuxKernel.vala:578 +#: src/Common/LinuxKernel.vala:579 msgid "Could not find running kernel in list!" msgstr "Не удалось найти запущенное ядро в списке!" -#: src/Common/LinuxKernel.vala:584 +#: src/Common/LinuxKernel.vala:585 msgid "Could not find any kernels to uninstall" msgstr "Не удалось найти ядра для деинсталляции" -#: src/Common/LinuxKernel.vala:593 +#: src/Common/LinuxKernel.vala:594 msgid "The following kernels will be uninstalled:" msgstr "Следующие ядра будут деинсталлированы:" -#: src/Common/LinuxKernel.vala:600 +#: src/Common/LinuxKernel.vala:601 msgid "Continue ?" msgstr "Продолжить ?" -#: src/Common/LinuxKernel.vala:626 src/Console/AppConsole.vala:314 +#: src/Common/LinuxKernel.vala:627 src/Console/AppConsole.vala:314 msgid "Latest update" msgstr "Последнее обновление" -#: src/Common/LinuxKernel.vala:637 src/Console/AppConsole.vala:321 +#: src/Common/LinuxKernel.vala:638 src/Console/AppConsole.vala:321 msgid "Latest point update" msgstr "Последнее обновление пунктов" -#: src/Common/LinuxKernel.vala:645 src/Console/AppConsole.vala:326 +#: src/Common/LinuxKernel.vala:646 src/Console/AppConsole.vala:326 #: src/Console/AppConsole.vala:387 msgid "No updates found" msgstr "Обновлений не найдено" -#: src/Common/LinuxKernel.vala:655 +#: src/Common/LinuxKernel.vala:656 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Установить версию ядра %s ? (y/n): " -#: src/Common/LinuxKernel.vala:916 +#: src/Common/LinuxKernel.vala:917 msgid "Packages Available" msgstr "Доступные пакеты" -#: src/Common/LinuxKernel.vala:924 +#: src/Common/LinuxKernel.vala:925 msgid "Packages Installed" msgstr "Установленные пакеты" -#: src/Common/LinuxKernel.vala:1004 +#: src/Common/LinuxKernel.vala:1005 msgid "Available Kernels" msgstr "Доступные ядра" -#: src/Common/LinuxKernel.vala:1011 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1012 src/Gtk/MainWindow.vala:186 msgid "Installed" msgstr "Установлено" -#: src/Common/LinuxKernel.vala:1011 src/Gtk/MainWindow.vala:186 -#: src/Gtk/MainWindow.vala:655 src/Gtk/MainWindow.vala:669 +#: src/Common/LinuxKernel.vala:1012 src/Gtk/MainWindow.vala:186 +#: src/Gtk/MainWindow.vala:641 src/Gtk/MainWindow.vala:655 msgid "Running" msgstr "Используется" -#: src/Common/LinuxKernel.vala:1048 +#: src/Common/LinuxKernel.vala:1049 msgid "Downloading" msgstr "Загрузка" -#: src/Common/LinuxKernel.vala:1067 -#: src/Utility/Gtk/CustomMessageDialog.vala:149 -#: src/Utility/Gtk/CustomMessageDialog.vala:153 +#: src/Common/LinuxKernel.vala:1068 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:1072 +#: src/Common/LinuxKernel.vala:1073 msgid "ERROR" msgstr "ОШИБКА" -#: src/Common/LinuxKernel.vala:1086 src/Gtk/MainWindow.vala:677 +#: src/Common/LinuxKernel.vala:1087 msgid "This kernel is already installed." msgstr "Это ядро уже установлено." -#: src/Common/LinuxKernel.vala:1112 +#: src/Common/LinuxKernel.vala:1113 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "Установка завершена. Обязательно выполните перезагрузку, чтобы использовать " "новое ядро." -#: src/Common/LinuxKernel.vala:1115 +#: src/Common/LinuxKernel.vala:1116 msgid "Installation completed with errors" msgstr "Установка завершена с ошибками" -#: src/Common/LinuxKernel.vala:1130 +#: src/Common/LinuxKernel.vala:1131 msgid "" "Selected kernel is currently running and cannot be un-installed.\n" " Install another kernel before un-installing this one." @@ -120,19 +118,19 @@ msgstr "" "Это ядро в настоящий момент работает и не может быть удалено.\n" " Установите другое ядро, прежде чем удалять его." -#: src/Common/LinuxKernel.vala:1135 +#: src/Common/LinuxKernel.vala:1136 msgid "Preparing to uninstall selected kernels" msgstr "Подготовка к деинсталляции выбранных ядер" -#: src/Common/LinuxKernel.vala:1166 src/Common/LinuxKernel.vala:1213 +#: src/Common/LinuxKernel.vala:1167 src/Common/LinuxKernel.vala:1214 msgid "Un-install completed" msgstr "Удаление завершено" -#: src/Common/LinuxKernel.vala:1169 src/Common/LinuxKernel.vala:1216 +#: src/Common/LinuxKernel.vala:1170 src/Common/LinuxKernel.vala:1217 msgid "Un-install completed with errors" msgstr "Удаление завершено с ошибками" -#: src/Common/LinuxKernel.vala:1182 +#: src/Common/LinuxKernel.vala:1183 msgid "" "This kernel is currently running and cannot be un-installed.\n" " Install another kernel before un-installing this one." @@ -287,7 +285,7 @@ msgid "Kernel %s Available" msgstr "Доступно ядро %s" #: src/Console/AppConsole.vala:367 src/Console/AppConsole.vala:379 -#: src/Gtk/MainWindow.vala:330 +#: src/Gtk/MainWindow.vala:328 msgid "Install" msgstr "Установить" @@ -311,103 +309,73 @@ msgstr "Состояние" msgid "Refresh" msgstr "Обновить" -#: src/Gtk/MainWindow.vala:321 src/Utility/TeeJee.System.vala:42 -msgid "Internet connection is not active" -msgstr "Интернет соединение не активно" - -#: src/Gtk/MainWindow.vala:321 src/Gtk/MainWindow.vala:562 -#: src/Gtk/MainWindow.vala:682 -msgid "No Internet" -msgstr "Нет интернет соединения" - -#: src/Gtk/MainWindow.vala:339 -msgid "Multiple Kernels Selected" -msgstr "Выбрано несколько ядер" - #: src/Gtk/MainWindow.vala:339 -msgid "Select a single kernel to install" -msgstr "Выберите одно ядро для установки" - -#: src/Gtk/MainWindow.vala:342 src/Gtk/MainWindow.vala:353 -msgid "Not Selected" -msgstr "Не выбрано" - -#: src/Gtk/MainWindow.vala:342 -msgid "Select the kernel to install" -msgstr "Выберите ядро для установки" - -#: src/Gtk/MainWindow.vala:347 msgid "Uninstall" msgstr "Удалить" -#: src/Gtk/MainWindow.vala:353 -msgid "Select the kernels to uninstall" -msgstr "Выберите ядра для деинсталляции" - -#: src/Gtk/MainWindow.vala:383 src/Gtk/MainWindow.vala:417 -#: src/Gtk/MainWindow.vala:714 +#: src/Gtk/MainWindow.vala:372 src/Gtk/MainWindow.vala:405 +#: src/Gtk/MainWindow.vala:694 msgid "Close window to exit..." msgstr "Закройте окно, чтобы выйти..." -#: src/Gtk/MainWindow.vala:391 +#: src/Gtk/MainWindow.vala:379 msgid "Uninstall Old" msgstr "Удалить старые" -#: src/Gtk/MainWindow.vala:392 +#: src/Gtk/MainWindow.vala:380 msgid "Uninstall kernels older than running kernel" msgstr "Удалить более старшие установленные ядра, чем используемое" -#: src/Gtk/MainWindow.vala:424 +#: src/Gtk/MainWindow.vala:412 msgid "Changes" msgstr "Изменения" -#: src/Gtk/MainWindow.vala:440 +#: src/Gtk/MainWindow.vala:428 msgid "Error while downloading the changelog:\n" msgstr "" -#: src/Gtk/MainWindow.vala:450 +#: src/Gtk/MainWindow.vala:438 #, fuzzy msgid "Downloading the changelog" msgstr "Загрузка" -#: src/Gtk/MainWindow.vala:472 src/Gtk/SettingsDialog.vala:50 +#: src/Gtk/MainWindow.vala:460 src/Gtk/SettingsDialog.vala:50 msgid "Settings" msgstr "Настройки" -#: src/Gtk/MainWindow.vala:495 +#: src/Gtk/MainWindow.vala:483 msgid "About" msgstr "О программе" -#: src/Gtk/MainWindow.vala:540 +#: src/Gtk/MainWindow.vala:528 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Программа обновления ядра для дистрибутивов на базе Ubuntu" -#: src/Gtk/MainWindow.vala:541 +#: src/Gtk/MainWindow.vala:529 msgid "Forked" msgstr "Форк" -#: src/Gtk/MainWindow.vala:541 +#: src/Gtk/MainWindow.vala:529 msgid "Original" msgstr "Оригинал" -#: src/Gtk/MainWindow.vala:562 src/Gtk/MainWindow.vala:682 -msgid "Internet connection is not active." -msgstr "Интернет соединение не активно." - -#: src/Gtk/MainWindow.vala:580 +#: src/Gtk/MainWindow.vala:566 msgid "Refreshing..." msgstr "Обновление..." -#: src/Gtk/MainWindow.vala:665 +#: src/Gtk/MainWindow.vala:651 msgid "available" msgstr "доступно" -#: src/Gtk/MainWindow.vala:677 -msgid "Already Installed" -msgstr "Уже установлено" +#: src/Gtk/MainWindow.vala:709 +msgid "No Internet" +msgstr "Нет интернет соединения" + +#: src/Gtk/MainWindow.vala:710 +msgid "Internet connection is not active." +msgstr "Интернет соединение не активно." #: src/Gtk/ProgressWindow.vala:127 src/Gtk/TerminalWindow.vala:149 -#: src/Utility/Gtk/CustomMessageDialog.vala:154 msgid "Cancel" msgstr "Отмена" @@ -511,15 +479,7 @@ msgstr "Составители документации" msgid "Third Party Inclusions" msgstr "Включая сторонние инструменты" -#: src/Utility/Gtk/CustomMessageDialog.vala:158 -msgid "Yes" -msgstr "Да" - -#: src/Utility/Gtk/CustomMessageDialog.vala:159 -msgid "No" -msgstr "Нет" - -#: src/Utility/Gtk/GtkHelper.vala:59 +#: src/Utility/Gtk/GtkHelper.vala:39 msgid "Missing Icon" msgstr "Значок отсутствует" diff --git a/po/sv.po b/po/sv.po index 9c410f7d..e2c6ad64 100644 --- a/po/sv.po +++ b/po/sv.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-02-21 10:04-0500\n" +"POT-Creation-Date: 2023-02-21 10:29-0500\n" "PO-Revision-Date: 2018-01-13 16:56+0100\n" "Last-Translator: Åke Engelbrektson \n" "Language-Team:Swedish\n" @@ -13,109 +13,107 @@ msgstr "" "X-Generator: Poedit 1.8.7.1\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: src/Common/LinuxKernel.vala:87 +#: src/Common/LinuxKernel.vala:88 msgid "Distribution" msgstr "Distribution" -#: src/Common/LinuxKernel.vala:101 +#: src/Common/LinuxKernel.vala:102 #, fuzzy msgid "Architecture" msgstr "Systemarkitektur" -#: src/Common/LinuxKernel.vala:299 +#: src/Common/LinuxKernel.vala:300 #, fuzzy msgid "Fetching index..." msgstr "Hämtar index för" -#: src/Common/LinuxKernel.vala:331 +#: src/Common/LinuxKernel.vala:332 msgid "Fetching index from kernel.ubuntu.com..." msgstr "Hämtar index från kernel.ubuntu.com ..." -#: src/Common/LinuxKernel.vala:578 +#: src/Common/LinuxKernel.vala:579 #, fuzzy msgid "Could not find running kernel in list!" msgstr "Kunde inte hitta efterfrågad version" -#: src/Common/LinuxKernel.vala:584 +#: src/Common/LinuxKernel.vala:585 #, fuzzy msgid "Could not find any kernels to uninstall" msgstr "Välj kärnor för borttagning" -#: src/Common/LinuxKernel.vala:593 +#: src/Common/LinuxKernel.vala:594 #, fuzzy msgid "The following kernels will be uninstalled:" msgstr "Denna kärna är redan installerad" -#: src/Common/LinuxKernel.vala:600 +#: src/Common/LinuxKernel.vala:601 msgid "Continue ?" msgstr "" -#: src/Common/LinuxKernel.vala:626 src/Console/AppConsole.vala:314 +#: src/Common/LinuxKernel.vala:627 src/Console/AppConsole.vala:314 msgid "Latest update" msgstr "" -#: src/Common/LinuxKernel.vala:637 src/Console/AppConsole.vala:321 +#: src/Common/LinuxKernel.vala:638 src/Console/AppConsole.vala:321 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:645 src/Console/AppConsole.vala:326 +#: src/Common/LinuxKernel.vala:646 src/Console/AppConsole.vala:326 #: src/Console/AppConsole.vala:387 msgid "No updates found" msgstr "Inga uppdateringar hittades" -#: src/Common/LinuxKernel.vala:655 +#: src/Common/LinuxKernel.vala:656 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "" -#: src/Common/LinuxKernel.vala:916 +#: src/Common/LinuxKernel.vala:917 msgid "Packages Available" msgstr "Tillgängliga paket" -#: src/Common/LinuxKernel.vala:924 +#: src/Common/LinuxKernel.vala:925 msgid "Packages Installed" msgstr "Installerade paket" -#: src/Common/LinuxKernel.vala:1004 +#: src/Common/LinuxKernel.vala:1005 msgid "Available Kernels" msgstr "Tillgängliga kärnor" -#: src/Common/LinuxKernel.vala:1011 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1012 src/Gtk/MainWindow.vala:186 msgid "Installed" msgstr "Installerad" -#: src/Common/LinuxKernel.vala:1011 src/Gtk/MainWindow.vala:186 -#: src/Gtk/MainWindow.vala:655 src/Gtk/MainWindow.vala:669 +#: src/Common/LinuxKernel.vala:1012 src/Gtk/MainWindow.vala:186 +#: src/Gtk/MainWindow.vala:641 src/Gtk/MainWindow.vala:655 msgid "Running" msgstr "Körs" -#: src/Common/LinuxKernel.vala:1048 +#: src/Common/LinuxKernel.vala:1049 msgid "Downloading" msgstr "Laddar ner" -#: src/Common/LinuxKernel.vala:1067 -#: src/Utility/Gtk/CustomMessageDialog.vala:149 -#: src/Utility/Gtk/CustomMessageDialog.vala:153 +#: src/Common/LinuxKernel.vala:1068 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:1072 +#: src/Common/LinuxKernel.vala:1073 msgid "ERROR" msgstr "FEL" -#: src/Common/LinuxKernel.vala:1086 src/Gtk/MainWindow.vala:677 +#: src/Common/LinuxKernel.vala:1087 msgid "This kernel is already installed." msgstr "Denna kärna är redan installerad" -#: src/Common/LinuxKernel.vala:1112 +#: src/Common/LinuxKernel.vala:1113 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "Installation slutförd. Omstart krävs för att tillämpa den nya kärnan." -#: src/Common/LinuxKernel.vala:1115 +#: src/Common/LinuxKernel.vala:1116 msgid "Installation completed with errors" msgstr "Installation slutförd med fel" -#: src/Common/LinuxKernel.vala:1130 +#: src/Common/LinuxKernel.vala:1131 #, fuzzy msgid "" "Selected kernel is currently running and cannot be un-installed.\n" @@ -124,20 +122,20 @@ msgstr "" "Denna kärna används för tillfället och kan inte tas bort.\n" "Installera en annan kärna innan du tar bort den här." -#: src/Common/LinuxKernel.vala:1135 +#: src/Common/LinuxKernel.vala:1136 #, fuzzy msgid "Preparing to uninstall selected kernels" msgstr "Förbereder borttagning av markerade kärnor" -#: src/Common/LinuxKernel.vala:1166 src/Common/LinuxKernel.vala:1213 +#: src/Common/LinuxKernel.vala:1167 src/Common/LinuxKernel.vala:1214 msgid "Un-install completed" msgstr "Avinstallation slutförd" -#: src/Common/LinuxKernel.vala:1169 src/Common/LinuxKernel.vala:1216 +#: src/Common/LinuxKernel.vala:1170 src/Common/LinuxKernel.vala:1217 msgid "Un-install completed with errors" msgstr "Avinstallation slutförd med fel" -#: src/Common/LinuxKernel.vala:1182 +#: src/Common/LinuxKernel.vala:1183 #, fuzzy msgid "" "This kernel is currently running and cannot be un-installed.\n" @@ -302,7 +300,7 @@ msgid "Kernel %s Available" msgstr "Tillgängliga paket" #: src/Console/AppConsole.vala:367 src/Console/AppConsole.vala:379 -#: src/Gtk/MainWindow.vala:330 +#: src/Gtk/MainWindow.vala:328 msgid "Install" msgstr "Installera" @@ -326,110 +324,78 @@ msgstr "Status" msgid "Refresh" msgstr "Uppdatera" -#: src/Gtk/MainWindow.vala:321 src/Utility/TeeJee.System.vala:42 -msgid "Internet connection is not active" -msgstr "Internetuppkopplingen är inte aktiv" - -#: src/Gtk/MainWindow.vala:321 src/Gtk/MainWindow.vala:562 -#: src/Gtk/MainWindow.vala:682 -msgid "No Internet" -msgstr "Inget internet" - -#: src/Gtk/MainWindow.vala:339 -msgid "Multiple Kernels Selected" -msgstr "Flera kärnor markerade" - #: src/Gtk/MainWindow.vala:339 -msgid "Select a single kernel to install" -msgstr "Välj en enstaka kärna att installera" - -#: src/Gtk/MainWindow.vala:342 src/Gtk/MainWindow.vala:353 -msgid "Not Selected" -msgstr "Inte vald" - -#: src/Gtk/MainWindow.vala:342 -msgid "Select the kernel to install" -msgstr "Välj kärna för installation" - -#: src/Gtk/MainWindow.vala:347 #, fuzzy msgid "Uninstall" msgstr "Installera" -#: src/Gtk/MainWindow.vala:353 -#, fuzzy -msgid "Select the kernels to uninstall" -msgstr "Välj kärna för installation" - -#: src/Gtk/MainWindow.vala:383 src/Gtk/MainWindow.vala:417 -#: src/Gtk/MainWindow.vala:714 +#: src/Gtk/MainWindow.vala:372 src/Gtk/MainWindow.vala:405 +#: src/Gtk/MainWindow.vala:694 msgid "Close window to exit..." msgstr "" -#: src/Gtk/MainWindow.vala:391 +#: src/Gtk/MainWindow.vala:379 #, fuzzy msgid "Uninstall Old" msgstr "Avinstallation slutförd" -#: src/Gtk/MainWindow.vala:392 +#: src/Gtk/MainWindow.vala:380 #, fuzzy msgid "Uninstall kernels older than running kernel" msgstr "Ta bort installerade kärnor äldre än den som körs" -#: src/Gtk/MainWindow.vala:424 +#: src/Gtk/MainWindow.vala:412 msgid "Changes" msgstr "Ändringar" -#: src/Gtk/MainWindow.vala:440 +#: src/Gtk/MainWindow.vala:428 msgid "Error while downloading the changelog:\n" msgstr "" -#: src/Gtk/MainWindow.vala:450 +#: src/Gtk/MainWindow.vala:438 #, fuzzy msgid "Downloading the changelog" msgstr "Laddar ner" -#: src/Gtk/MainWindow.vala:472 src/Gtk/SettingsDialog.vala:50 +#: src/Gtk/MainWindow.vala:460 src/Gtk/SettingsDialog.vala:50 msgid "Settings" msgstr "Inställningar" -#: src/Gtk/MainWindow.vala:495 +#: src/Gtk/MainWindow.vala:483 msgid "About" msgstr "Om" -#: src/Gtk/MainWindow.vala:540 +#: src/Gtk/MainWindow.vala:528 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Kärnuppgraderingsverktyg för Ubuntu-baserade distributioner" -#: src/Gtk/MainWindow.vala:541 +#: src/Gtk/MainWindow.vala:529 msgid "Forked" msgstr "" -#: src/Gtk/MainWindow.vala:541 +#: src/Gtk/MainWindow.vala:529 msgid "Original" msgstr "" -#: src/Gtk/MainWindow.vala:562 src/Gtk/MainWindow.vala:682 -#, fuzzy -msgid "Internet connection is not active." -msgstr "Internetuppkopplingen är inte aktiv" - -#: src/Gtk/MainWindow.vala:580 +#: src/Gtk/MainWindow.vala:566 msgid "Refreshing..." msgstr "Uppdaterar ..." -#: src/Gtk/MainWindow.vala:665 +#: src/Gtk/MainWindow.vala:651 #, fuzzy msgid "available" msgstr "Tillgängliga paket" -#: src/Gtk/MainWindow.vala:677 +#: src/Gtk/MainWindow.vala:709 +msgid "No Internet" +msgstr "Inget internet" + +#: src/Gtk/MainWindow.vala:710 #, fuzzy -msgid "Already Installed" -msgstr "Installerad" +msgid "Internet connection is not active." +msgstr "Internetuppkopplingen är inte aktiv" #: src/Gtk/ProgressWindow.vala:127 src/Gtk/TerminalWindow.vala:149 -#: src/Utility/Gtk/CustomMessageDialog.vala:154 msgid "Cancel" msgstr "Avbryt" @@ -536,15 +502,7 @@ msgstr "Dokumentalister" msgid "Third Party Inclusions" msgstr "Tredjepartsverktyg" -#: src/Utility/Gtk/CustomMessageDialog.vala:158 -msgid "Yes" -msgstr "Ja" - -#: src/Utility/Gtk/CustomMessageDialog.vala:159 -msgid "No" -msgstr "Nej" - -#: src/Utility/Gtk/GtkHelper.vala:59 +#: src/Utility/Gtk/GtkHelper.vala:39 msgid "Missing Icon" msgstr "Saknad ikon" diff --git a/po/tr.po b/po/tr.po index 518a38a0..09bd1fab 100644 --- a/po/tr.po +++ b/po/tr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-02-21 10:04-0500\n" +"POT-Creation-Date: 2023-02-21 10:29-0500\n" "PO-Revision-Date: 2022-08-06 16:48+0300\n" "Last-Translator: Sabri Ünal \n" "Language-Team: Turkish\n" @@ -13,106 +13,104 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Poedit 3.1.1\n" -#: src/Common/LinuxKernel.vala:87 +#: src/Common/LinuxKernel.vala:88 msgid "Distribution" msgstr "Dağıtım" -#: src/Common/LinuxKernel.vala:101 +#: src/Common/LinuxKernel.vala:102 msgid "Architecture" msgstr "Sistem mimarisi" -#: src/Common/LinuxKernel.vala:299 +#: src/Common/LinuxKernel.vala:300 msgid "Fetching index..." msgstr "İçerik dizini alınıyor..." -#: src/Common/LinuxKernel.vala:331 +#: src/Common/LinuxKernel.vala:332 msgid "Fetching index from kernel.ubuntu.com..." msgstr "İçerik dizini kernel.ubuntu.com alanından alınıyor..." -#: src/Common/LinuxKernel.vala:578 +#: src/Common/LinuxKernel.vala:579 msgid "Could not find running kernel in list!" msgstr "Çalışan sürüm listede bulunamadı!" -#: src/Common/LinuxKernel.vala:584 +#: src/Common/LinuxKernel.vala:585 msgid "Could not find any kernels to uninstall" msgstr "Kaldırılacak çekirdek bulunamadı" -#: src/Common/LinuxKernel.vala:593 +#: src/Common/LinuxKernel.vala:594 msgid "The following kernels will be uninstalled:" msgstr "Aşağıdaki çekirdekler kaldırılacak:" -#: src/Common/LinuxKernel.vala:600 +#: src/Common/LinuxKernel.vala:601 msgid "Continue ?" msgstr "Devam edilsin mi?" -#: src/Common/LinuxKernel.vala:626 src/Console/AppConsole.vala:314 +#: src/Common/LinuxKernel.vala:627 src/Console/AppConsole.vala:314 msgid "Latest update" msgstr "Son güncelleme" # Point burada point release anlamında kullanılıyor. Örneğin 5.10.x sayısının en sonundaki x rakamı point release/nokta sürüm oluyor. -#: src/Common/LinuxKernel.vala:637 src/Console/AppConsole.vala:321 +#: src/Common/LinuxKernel.vala:638 src/Console/AppConsole.vala:321 msgid "Latest point update" msgstr "Son nokta güncellemesi" -#: src/Common/LinuxKernel.vala:645 src/Console/AppConsole.vala:326 +#: src/Common/LinuxKernel.vala:646 src/Console/AppConsole.vala:326 #: src/Console/AppConsole.vala:387 msgid "No updates found" msgstr "Güncelleme bulunamadı" -#: src/Common/LinuxKernel.vala:655 +#: src/Common/LinuxKernel.vala:656 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Linux Çekirdek Sürümü %s Kurulsun mu? (e/h): " -#: src/Common/LinuxKernel.vala:916 +#: src/Common/LinuxKernel.vala:917 msgid "Packages Available" msgstr "Mevcut Paketler" -#: src/Common/LinuxKernel.vala:924 +#: src/Common/LinuxKernel.vala:925 msgid "Packages Installed" msgstr "Kurulu Paketler" -#: src/Common/LinuxKernel.vala:1004 +#: src/Common/LinuxKernel.vala:1005 msgid "Available Kernels" msgstr "Mevcut Çekirdekler" -#: src/Common/LinuxKernel.vala:1011 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1012 src/Gtk/MainWindow.vala:186 msgid "Installed" msgstr "Kurulu" -#: src/Common/LinuxKernel.vala:1011 src/Gtk/MainWindow.vala:186 -#: src/Gtk/MainWindow.vala:655 src/Gtk/MainWindow.vala:669 +#: src/Common/LinuxKernel.vala:1012 src/Gtk/MainWindow.vala:186 +#: src/Gtk/MainWindow.vala:641 src/Gtk/MainWindow.vala:655 msgid "Running" msgstr "Çalışıyor" -#: src/Common/LinuxKernel.vala:1048 +#: src/Common/LinuxKernel.vala:1049 msgid "Downloading" msgstr "İndiriliyor" -#: src/Common/LinuxKernel.vala:1067 -#: src/Utility/Gtk/CustomMessageDialog.vala:149 -#: src/Utility/Gtk/CustomMessageDialog.vala:153 +#: src/Common/LinuxKernel.vala:1068 msgid "OK" msgstr "Tamam" -#: src/Common/LinuxKernel.vala:1072 +#: src/Common/LinuxKernel.vala:1073 msgid "ERROR" msgstr "HATA" -#: src/Common/LinuxKernel.vala:1086 src/Gtk/MainWindow.vala:677 +#: src/Common/LinuxKernel.vala:1087 msgid "This kernel is already installed." msgstr "Bu çekirdek zaten kurulu." -#: src/Common/LinuxKernel.vala:1112 +#: src/Common/LinuxKernel.vala:1113 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "Kurulum tamamlandı. Yeni çekirdeği kullanmak için yeniden başlatma gerekiyor." -#: src/Common/LinuxKernel.vala:1115 +#: src/Common/LinuxKernel.vala:1116 msgid "Installation completed with errors" msgstr "Kurulum hatalarla tamamlandı" -#: src/Common/LinuxKernel.vala:1130 +#: src/Common/LinuxKernel.vala:1131 msgid "" "Selected kernel is currently running and cannot be un-installed.\n" " Install another kernel before un-installing this one." @@ -120,19 +118,19 @@ msgstr "" "Seçilen çekirdek şu anda çalışıyor ve kaldırılamaz.\n" " Bunu kaldırmadan önce başka bir çekirdek yükleyin." -#: src/Common/LinuxKernel.vala:1135 +#: src/Common/LinuxKernel.vala:1136 msgid "Preparing to uninstall selected kernels" msgstr "Seçilen çekirdekleri kaldırmaya hazırlanıyor" -#: src/Common/LinuxKernel.vala:1166 src/Common/LinuxKernel.vala:1213 +#: src/Common/LinuxKernel.vala:1167 src/Common/LinuxKernel.vala:1214 msgid "Un-install completed" msgstr "Kaldırma tamamlandı" -#: src/Common/LinuxKernel.vala:1169 src/Common/LinuxKernel.vala:1216 +#: src/Common/LinuxKernel.vala:1170 src/Common/LinuxKernel.vala:1217 msgid "Un-install completed with errors" msgstr "Kaldırma hatalarla tamamlandı" -#: src/Common/LinuxKernel.vala:1182 +#: src/Common/LinuxKernel.vala:1183 msgid "" "This kernel is currently running and cannot be un-installed.\n" " Install another kernel before un-installing this one." @@ -287,7 +285,7 @@ msgid "Kernel %s Available" msgstr "Çekirdek %s Kullanılabilir" #: src/Console/AppConsole.vala:367 src/Console/AppConsole.vala:379 -#: src/Gtk/MainWindow.vala:330 +#: src/Gtk/MainWindow.vala:328 msgid "Install" msgstr "Kur" @@ -311,103 +309,73 @@ msgstr "Durum" msgid "Refresh" msgstr "Yenile" -#: src/Gtk/MainWindow.vala:321 src/Utility/TeeJee.System.vala:42 -msgid "Internet connection is not active" -msgstr "İnternet bağlantısı aktif değil" - -#: src/Gtk/MainWindow.vala:321 src/Gtk/MainWindow.vala:562 -#: src/Gtk/MainWindow.vala:682 -msgid "No Internet" -msgstr "İnternet Yok" - -#: src/Gtk/MainWindow.vala:339 -msgid "Multiple Kernels Selected" -msgstr "Birden Fazla Çekirdek Seçildi" - #: src/Gtk/MainWindow.vala:339 -msgid "Select a single kernel to install" -msgstr "Kurulum için tek çekirdek seçin" - -#: src/Gtk/MainWindow.vala:342 src/Gtk/MainWindow.vala:353 -msgid "Not Selected" -msgstr "Seçilmedi" - -#: src/Gtk/MainWindow.vala:342 -msgid "Select the kernel to install" -msgstr "Kurulum için çekirdek seçin" - -#: src/Gtk/MainWindow.vala:347 msgid "Uninstall" msgstr "Kaldır" -#: src/Gtk/MainWindow.vala:353 -msgid "Select the kernels to uninstall" -msgstr "Kaldırmak için çekirdek seçin" - -#: src/Gtk/MainWindow.vala:383 src/Gtk/MainWindow.vala:417 -#: src/Gtk/MainWindow.vala:714 +#: src/Gtk/MainWindow.vala:372 src/Gtk/MainWindow.vala:405 +#: src/Gtk/MainWindow.vala:694 msgid "Close window to exit..." msgstr "Çıkış için pencereyi kapat..." -#: src/Gtk/MainWindow.vala:391 +#: src/Gtk/MainWindow.vala:379 msgid "Uninstall Old" msgstr "Eskileri Kaldır" -#: src/Gtk/MainWindow.vala:392 +#: src/Gtk/MainWindow.vala:380 msgid "Uninstall kernels older than running kernel" msgstr "Çalışan çekirdekten daha eski çekirdekleri kaldır" -#: src/Gtk/MainWindow.vala:424 +#: src/Gtk/MainWindow.vala:412 msgid "Changes" msgstr "Değişiklikler" -#: src/Gtk/MainWindow.vala:440 +#: src/Gtk/MainWindow.vala:428 msgid "Error while downloading the changelog:\n" msgstr "" -#: src/Gtk/MainWindow.vala:450 +#: src/Gtk/MainWindow.vala:438 #, fuzzy msgid "Downloading the changelog" msgstr "İndiriliyor" -#: src/Gtk/MainWindow.vala:472 src/Gtk/SettingsDialog.vala:50 +#: src/Gtk/MainWindow.vala:460 src/Gtk/SettingsDialog.vala:50 msgid "Settings" msgstr "Ayarlar" -#: src/Gtk/MainWindow.vala:495 +#: src/Gtk/MainWindow.vala:483 msgid "About" msgstr "Hakkında" -#: src/Gtk/MainWindow.vala:540 +#: src/Gtk/MainWindow.vala:528 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Ubuntu tabanlı dağıtımlar için çekirdek güncelleme aracı" -#: src/Gtk/MainWindow.vala:541 +#: src/Gtk/MainWindow.vala:529 msgid "Forked" msgstr "Çatallandı" -#: src/Gtk/MainWindow.vala:541 +#: src/Gtk/MainWindow.vala:529 msgid "Original" msgstr "Özgün" -#: src/Gtk/MainWindow.vala:562 src/Gtk/MainWindow.vala:682 -msgid "Internet connection is not active." -msgstr "İnternet bağlantısı aktif değil." - -#: src/Gtk/MainWindow.vala:580 +#: src/Gtk/MainWindow.vala:566 msgid "Refreshing..." msgstr "Yenileniyor..." -#: src/Gtk/MainWindow.vala:665 +#: src/Gtk/MainWindow.vala:651 msgid "available" msgstr "mevcut" -#: src/Gtk/MainWindow.vala:677 -msgid "Already Installed" -msgstr "Zaten Kurulu" +#: src/Gtk/MainWindow.vala:709 +msgid "No Internet" +msgstr "İnternet Yok" + +#: src/Gtk/MainWindow.vala:710 +msgid "Internet connection is not active." +msgstr "İnternet bağlantısı aktif değil." #: src/Gtk/ProgressWindow.vala:127 src/Gtk/TerminalWindow.vala:149 -#: src/Utility/Gtk/CustomMessageDialog.vala:154 msgid "Cancel" msgstr "İptal Et" @@ -511,15 +479,7 @@ msgstr "Belgelendirenler" msgid "Third Party Inclusions" msgstr "Üçüncü Taraf Eklemeler" -#: src/Utility/Gtk/CustomMessageDialog.vala:158 -msgid "Yes" -msgstr "Evet" - -#: src/Utility/Gtk/CustomMessageDialog.vala:159 -msgid "No" -msgstr "Hayır" - -#: src/Utility/Gtk/GtkHelper.vala:59 +#: src/Utility/Gtk/GtkHelper.vala:39 msgid "Missing Icon" msgstr "Eksik Simge" diff --git a/po/uk.po b/po/uk.po index 4a4f1d7f..1701b03f 100644 --- a/po/uk.po +++ b/po/uk.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-02-21 10:04-0500\n" +"POT-Creation-Date: 2023-02-21 10:29-0500\n" "PO-Revision-Date: 2019-07-25 11:00+0300\n" "Last-Translator: Serhii Golovko \n" "Language-Team: Ukranian\n" @@ -13,105 +13,103 @@ msgstr "" "X-Launchpad-Export-Date: 2016-12-13 11:48+0000\n" "X-Generator: Poedit 2.2.1\n" -#: src/Common/LinuxKernel.vala:87 +#: src/Common/LinuxKernel.vala:88 msgid "Distribution" msgstr "Дистрибутив" -#: src/Common/LinuxKernel.vala:101 +#: src/Common/LinuxKernel.vala:102 msgid "Architecture" msgstr "Системна архитектура" -#: src/Common/LinuxKernel.vala:299 +#: src/Common/LinuxKernel.vala:300 msgid "Fetching index..." msgstr "Отримання індекса ..." -#: src/Common/LinuxKernel.vala:331 +#: src/Common/LinuxKernel.vala:332 msgid "Fetching index from kernel.ubuntu.com..." msgstr "Отримання індекса з kernel.ubuntu.com..." -#: src/Common/LinuxKernel.vala:578 +#: src/Common/LinuxKernel.vala:579 msgid "Could not find running kernel in list!" msgstr "Не вдалося знайти запущене ядро у списку!" -#: src/Common/LinuxKernel.vala:584 +#: src/Common/LinuxKernel.vala:585 msgid "Could not find any kernels to uninstall" msgstr "Не вдалося знайти жодне ядро для вилучення" -#: src/Common/LinuxKernel.vala:593 +#: src/Common/LinuxKernel.vala:594 msgid "The following kernels will be uninstalled:" msgstr "Наступні ядра будуть видалені:" -#: src/Common/LinuxKernel.vala:600 +#: src/Common/LinuxKernel.vala:601 msgid "Continue ?" msgstr "Продовжувати ?" -#: src/Common/LinuxKernel.vala:626 src/Console/AppConsole.vala:314 +#: src/Common/LinuxKernel.vala:627 src/Console/AppConsole.vala:314 msgid "Latest update" msgstr "Останнє оновлення" -#: src/Common/LinuxKernel.vala:637 src/Console/AppConsole.vala:321 +#: src/Common/LinuxKernel.vala:638 src/Console/AppConsole.vala:321 msgid "Latest point update" msgstr "Остання точка оновлення" -#: src/Common/LinuxKernel.vala:645 src/Console/AppConsole.vala:326 +#: src/Common/LinuxKernel.vala:646 src/Console/AppConsole.vala:326 #: src/Console/AppConsole.vala:387 msgid "No updates found" msgstr "Оновлень не знайдено" -#: src/Common/LinuxKernel.vala:655 +#: src/Common/LinuxKernel.vala:656 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Встановити Ядро Версії %s ? (так/ні): " -#: src/Common/LinuxKernel.vala:916 +#: src/Common/LinuxKernel.vala:917 msgid "Packages Available" msgstr "Доступні пакети" -#: src/Common/LinuxKernel.vala:924 +#: src/Common/LinuxKernel.vala:925 msgid "Packages Installed" msgstr "Встановлені пакети" -#: src/Common/LinuxKernel.vala:1004 +#: src/Common/LinuxKernel.vala:1005 msgid "Available Kernels" msgstr "Доступні ядра" -#: src/Common/LinuxKernel.vala:1011 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1012 src/Gtk/MainWindow.vala:186 msgid "Installed" msgstr "Встановлено" -#: src/Common/LinuxKernel.vala:1011 src/Gtk/MainWindow.vala:186 -#: src/Gtk/MainWindow.vala:655 src/Gtk/MainWindow.vala:669 +#: src/Common/LinuxKernel.vala:1012 src/Gtk/MainWindow.vala:186 +#: src/Gtk/MainWindow.vala:641 src/Gtk/MainWindow.vala:655 msgid "Running" msgstr "Використовується" -#: src/Common/LinuxKernel.vala:1048 +#: src/Common/LinuxKernel.vala:1049 msgid "Downloading" msgstr "Завантаження" -#: src/Common/LinuxKernel.vala:1067 -#: src/Utility/Gtk/CustomMessageDialog.vala:149 -#: src/Utility/Gtk/CustomMessageDialog.vala:153 +#: src/Common/LinuxKernel.vala:1068 msgid "OK" msgstr "Добре" -#: src/Common/LinuxKernel.vala:1072 +#: src/Common/LinuxKernel.vala:1073 msgid "ERROR" msgstr "ПОМИЛКА" -#: src/Common/LinuxKernel.vala:1086 src/Gtk/MainWindow.vala:677 +#: src/Common/LinuxKernel.vala:1087 msgid "This kernel is already installed." msgstr "Це ядро вже встановлено." -#: src/Common/LinuxKernel.vala:1112 +#: src/Common/LinuxKernel.vala:1113 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "Установка завершена. Для використання нового ядра потрібна перезавантаження." -#: src/Common/LinuxKernel.vala:1115 +#: src/Common/LinuxKernel.vala:1116 msgid "Installation completed with errors" msgstr "Установка завершена з помилками" -#: src/Common/LinuxKernel.vala:1130 +#: src/Common/LinuxKernel.vala:1131 msgid "" "Selected kernel is currently running and cannot be un-installed.\n" " Install another kernel before un-installing this one." @@ -119,19 +117,19 @@ msgstr "" "Це ядро зараз працює і не може бути видалено. \n" "Встановіть інше ядро, перш ніж видаляти його." -#: src/Common/LinuxKernel.vala:1135 +#: src/Common/LinuxKernel.vala:1136 msgid "Preparing to uninstall selected kernels" msgstr "Підготовка до видалення вибраних ядер" -#: src/Common/LinuxKernel.vala:1166 src/Common/LinuxKernel.vala:1213 +#: src/Common/LinuxKernel.vala:1167 src/Common/LinuxKernel.vala:1214 msgid "Un-install completed" msgstr "Видалення завершено" -#: src/Common/LinuxKernel.vala:1169 src/Common/LinuxKernel.vala:1216 +#: src/Common/LinuxKernel.vala:1170 src/Common/LinuxKernel.vala:1217 msgid "Un-install completed with errors" msgstr "Видалення завершено з помилками" -#: src/Common/LinuxKernel.vala:1182 +#: src/Common/LinuxKernel.vala:1183 msgid "" "This kernel is currently running and cannot be un-installed.\n" " Install another kernel before un-installing this one." @@ -284,7 +282,7 @@ msgid "Kernel %s Available" msgstr "Ядро %s Доступне" #: src/Console/AppConsole.vala:367 src/Console/AppConsole.vala:379 -#: src/Gtk/MainWindow.vala:330 +#: src/Gtk/MainWindow.vala:328 msgid "Install" msgstr "Встановити" @@ -308,103 +306,73 @@ msgstr "Стан" msgid "Refresh" msgstr "Оновити" -#: src/Gtk/MainWindow.vala:321 src/Utility/TeeJee.System.vala:42 -msgid "Internet connection is not active" -msgstr "Інтернет з'єднання не активне" - -#: src/Gtk/MainWindow.vala:321 src/Gtk/MainWindow.vala:562 -#: src/Gtk/MainWindow.vala:682 -msgid "No Internet" -msgstr "Інтернет з'єднання відсутнє" - -#: src/Gtk/MainWindow.vala:339 -msgid "Multiple Kernels Selected" -msgstr "Вибрано кілька ядер" - #: src/Gtk/MainWindow.vala:339 -msgid "Select a single kernel to install" -msgstr "Виберіть одне ядро для встановлення" - -#: src/Gtk/MainWindow.vala:342 src/Gtk/MainWindow.vala:353 -msgid "Not Selected" -msgstr "Невибрано" - -#: src/Gtk/MainWindow.vala:342 -msgid "Select the kernel to install" -msgstr "Виберіть ядро для встановлення" - -#: src/Gtk/MainWindow.vala:347 msgid "Uninstall" msgstr "Видалити" -#: src/Gtk/MainWindow.vala:353 -msgid "Select the kernels to uninstall" -msgstr "Виберіть ядро для встановлення" - -#: src/Gtk/MainWindow.vala:383 src/Gtk/MainWindow.vala:417 -#: src/Gtk/MainWindow.vala:714 +#: src/Gtk/MainWindow.vala:372 src/Gtk/MainWindow.vala:405 +#: src/Gtk/MainWindow.vala:694 msgid "Close window to exit..." msgstr "Закрийте вікно, щоб вийти..." -#: src/Gtk/MainWindow.vala:391 +#: src/Gtk/MainWindow.vala:379 msgid "Uninstall Old" msgstr "Видалити старе" -#: src/Gtk/MainWindow.vala:392 +#: src/Gtk/MainWindow.vala:380 msgid "Uninstall kernels older than running kernel" msgstr "Видалити ядра, старіші за запущене ядро" -#: src/Gtk/MainWindow.vala:424 +#: src/Gtk/MainWindow.vala:412 msgid "Changes" msgstr "Зміни" -#: src/Gtk/MainWindow.vala:440 +#: src/Gtk/MainWindow.vala:428 msgid "Error while downloading the changelog:\n" msgstr "" -#: src/Gtk/MainWindow.vala:450 +#: src/Gtk/MainWindow.vala:438 #, fuzzy msgid "Downloading the changelog" msgstr "Завантаження" -#: src/Gtk/MainWindow.vala:472 src/Gtk/SettingsDialog.vala:50 +#: src/Gtk/MainWindow.vala:460 src/Gtk/SettingsDialog.vala:50 msgid "Settings" msgstr "Налаштування" -#: src/Gtk/MainWindow.vala:495 +#: src/Gtk/MainWindow.vala:483 msgid "About" msgstr "Про программу" -#: src/Gtk/MainWindow.vala:540 +#: src/Gtk/MainWindow.vala:528 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Програма оновлення ядра для дистрибутивів на базі Ubuntu" -#: src/Gtk/MainWindow.vala:541 +#: src/Gtk/MainWindow.vala:529 msgid "Forked" msgstr "Двоєний" -#: src/Gtk/MainWindow.vala:541 +#: src/Gtk/MainWindow.vala:529 msgid "Original" msgstr "Оригінал" -#: src/Gtk/MainWindow.vala:562 src/Gtk/MainWindow.vala:682 -msgid "Internet connection is not active." -msgstr "Інтернет з'єднання не активно." - -#: src/Gtk/MainWindow.vala:580 +#: src/Gtk/MainWindow.vala:566 msgid "Refreshing..." msgstr "Оновлення..." -#: src/Gtk/MainWindow.vala:665 +#: src/Gtk/MainWindow.vala:651 msgid "available" msgstr "доступний" -#: src/Gtk/MainWindow.vala:677 -msgid "Already Installed" -msgstr "Вже встановлено" +#: src/Gtk/MainWindow.vala:709 +msgid "No Internet" +msgstr "Інтернет з'єднання відсутнє" + +#: src/Gtk/MainWindow.vala:710 +msgid "Internet connection is not active." +msgstr "Інтернет з'єднання не активно." #: src/Gtk/ProgressWindow.vala:127 src/Gtk/TerminalWindow.vala:149 -#: src/Utility/Gtk/CustomMessageDialog.vala:154 msgid "Cancel" msgstr "Відміна" @@ -508,15 +476,7 @@ msgstr "Документатори" msgid "Third Party Inclusions" msgstr "Включення третіх осіб" -#: src/Utility/Gtk/CustomMessageDialog.vala:158 -msgid "Yes" -msgstr "Так" - -#: src/Utility/Gtk/CustomMessageDialog.vala:159 -msgid "No" -msgstr "Ні" - -#: src/Utility/Gtk/GtkHelper.vala:59 +#: src/Utility/Gtk/GtkHelper.vala:39 msgid "Missing Icon" msgstr "Нема значка" From e874aa3c293598b9e677809c9ed872ee649e8580 Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Tue, 21 Feb 2023 12:37:12 -0500 Subject: [PATCH 219/567] don't use env -C, fixes #128 --- po/de.po | 12 ++++++------ po/el.po | 12 ++++++------ po/es.po | 12 ++++++------ po/fr.po | 12 ++++++------ po/hr.po | 12 ++++++------ po/it.po | 12 ++++++------ po/ko.po | 12 ++++++------ po/messages.pot | 14 +++++++------- po/nl.po | 12 ++++++------ po/pl.po | 12 ++++++------ po/ru.po | 12 ++++++------ po/sv.po | 12 ++++++------ po/tr.po | 12 ++++++------ po/uk.po | 12 ++++++------ src/Common/LinuxKernel.vala | 20 +++++++++++++------- 15 files changed, 98 insertions(+), 92 deletions(-) diff --git a/po/de.po b/po/de.po index 2bc289e2..f7721346 100644 --- a/po/de.po +++ b/po/de.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-02-21 10:29-0500\n" +"POT-Creation-Date: 2023-02-21 12:35-0500\n" "PO-Revision-Date: 2023-02-20 18:40+0100\n" "Last-Translator: Marvin Meysel \n" "Language-Team: German\n" @@ -110,7 +110,7 @@ msgstr "" msgid "Installation completed with errors" msgstr "Installation mit Fehlern abgeschlossen" -#: src/Common/LinuxKernel.vala:1131 +#: src/Common/LinuxKernel.vala:1137 msgid "" "Selected kernel is currently running and cannot be un-installed.\n" " Install another kernel before un-installing this one." @@ -119,19 +119,19 @@ msgstr "" "werden.\n" " Installieren Sie einen anderen Kernel, bevor Sie diesen deinstallieren." -#: src/Common/LinuxKernel.vala:1136 +#: src/Common/LinuxKernel.vala:1142 msgid "Preparing to uninstall selected kernels" msgstr "Vorbereiten der Deinstallation ausgewählter Kernel" -#: src/Common/LinuxKernel.vala:1167 src/Common/LinuxKernel.vala:1214 +#: src/Common/LinuxKernel.vala:1173 src/Common/LinuxKernel.vala:1220 msgid "Un-install completed" msgstr "Deinstallation abgeschlossen" -#: src/Common/LinuxKernel.vala:1170 src/Common/LinuxKernel.vala:1217 +#: src/Common/LinuxKernel.vala:1176 src/Common/LinuxKernel.vala:1223 msgid "Un-install completed with errors" msgstr "Deinstallation mit Fehlern abgeschlossen" -#: src/Common/LinuxKernel.vala:1183 +#: src/Common/LinuxKernel.vala:1189 msgid "" "This kernel is currently running and cannot be un-installed.\n" " Install another kernel before un-installing this one." diff --git a/po/el.po b/po/el.po index 842b867f..a04a206f 100644 --- a/po/el.po +++ b/po/el.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-02-21 10:29-0500\n" +"POT-Creation-Date: 2023-02-21 12:35-0500\n" "PO-Revision-Date: 2023-01-10 02:03-0600\n" "Last-Translator: Vasilis Kosmidis \n" "Language-Team: Greek\n" @@ -111,7 +111,7 @@ msgstr "" msgid "Installation completed with errors" msgstr "Η εγκατάσταση ολοκληρώθηκε με σφάλματα" -#: src/Common/LinuxKernel.vala:1131 +#: src/Common/LinuxKernel.vala:1137 msgid "" "Selected kernel is currently running and cannot be un-installed.\n" " Install another kernel before un-installing this one." @@ -120,19 +120,19 @@ msgstr "" "απεγκατασταθεί.\n" " Εγκαταστήστε έναν άλλο πυρήνα πριν απεγκαταστήσετε αυτόν." -#: src/Common/LinuxKernel.vala:1136 +#: src/Common/LinuxKernel.vala:1142 msgid "Preparing to uninstall selected kernels" msgstr "Προετοιμασία για απεγκατάσταση επιλεγμένων πυρήνων" -#: src/Common/LinuxKernel.vala:1167 src/Common/LinuxKernel.vala:1214 +#: src/Common/LinuxKernel.vala:1173 src/Common/LinuxKernel.vala:1220 msgid "Un-install completed" msgstr "Η απεγκατάσταση ολοκληρώθηκε" -#: src/Common/LinuxKernel.vala:1170 src/Common/LinuxKernel.vala:1217 +#: src/Common/LinuxKernel.vala:1176 src/Common/LinuxKernel.vala:1223 msgid "Un-install completed with errors" msgstr "Η απεγκατάσταση ολοκληρώθηκε με σφάλματα" -#: src/Common/LinuxKernel.vala:1183 +#: src/Common/LinuxKernel.vala:1189 msgid "" "This kernel is currently running and cannot be un-installed.\n" " Install another kernel before un-installing this one." diff --git a/po/es.po b/po/es.po index e91b1620..39a1f665 100644 --- a/po/es.po +++ b/po/es.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-02-21 10:29-0500\n" +"POT-Creation-Date: 2023-02-21 12:35-0500\n" "PO-Revision-Date: 2018-01-03 02:03-0600\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish\n" @@ -111,7 +111,7 @@ msgstr "" msgid "Installation completed with errors" msgstr "Instalación finalizada con errores" -#: src/Common/LinuxKernel.vala:1131 +#: src/Common/LinuxKernel.vala:1137 #, fuzzy msgid "" "Selected kernel is currently running and cannot be un-installed.\n" @@ -120,20 +120,20 @@ msgstr "" "El núcleo seleccionado está en ejecución y no puede desinstalarse.\n" "Instale otro núcleo antes de desinstalar este." -#: src/Common/LinuxKernel.vala:1136 +#: src/Common/LinuxKernel.vala:1142 #, fuzzy msgid "Preparing to uninstall selected kernels" msgstr "Preparándose para desinstalar los núcleos seleccionados" -#: src/Common/LinuxKernel.vala:1167 src/Common/LinuxKernel.vala:1214 +#: src/Common/LinuxKernel.vala:1173 src/Common/LinuxKernel.vala:1220 msgid "Un-install completed" msgstr "Desinstalación finalizada" -#: src/Common/LinuxKernel.vala:1170 src/Common/LinuxKernel.vala:1217 +#: src/Common/LinuxKernel.vala:1176 src/Common/LinuxKernel.vala:1223 msgid "Un-install completed with errors" msgstr "Desinstalación finalizada con errores" -#: src/Common/LinuxKernel.vala:1183 +#: src/Common/LinuxKernel.vala:1189 #, fuzzy msgid "" "This kernel is currently running and cannot be un-installed.\n" diff --git a/po/fr.po b/po/fr.po index 74638d62..f11ed489 100644 --- a/po/fr.po +++ b/po/fr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-02-21 10:29-0500\n" +"POT-Creation-Date: 2023-02-21 12:35-0500\n" "PO-Revision-Date: 2018-08-05 15:50+0200\n" "Last-Translator: Yolateng0 \n" "Language-Team: French\n" @@ -112,7 +112,7 @@ msgstr "" msgid "Installation completed with errors" msgstr "Installation terminée avec des erreurs" -#: src/Common/LinuxKernel.vala:1131 +#: src/Common/LinuxKernel.vala:1137 #, fuzzy msgid "" "Selected kernel is currently running and cannot be un-installed.\n" @@ -121,20 +121,20 @@ msgstr "" "Ce noyau est en cours d'exécution et ne peut pas être supprimé.\n" " Installez un autre noyau avant de retirer celui-ci." -#: src/Common/LinuxKernel.vala:1136 +#: src/Common/LinuxKernel.vala:1142 #, fuzzy msgid "Preparing to uninstall selected kernels" msgstr "Préparation à la suppression des noyaux sélectionnés" -#: src/Common/LinuxKernel.vala:1167 src/Common/LinuxKernel.vala:1214 +#: src/Common/LinuxKernel.vala:1173 src/Common/LinuxKernel.vala:1220 msgid "Un-install completed" msgstr "Désinstallation complète" -#: src/Common/LinuxKernel.vala:1170 src/Common/LinuxKernel.vala:1217 +#: src/Common/LinuxKernel.vala:1176 src/Common/LinuxKernel.vala:1223 msgid "Un-install completed with errors" msgstr "Désinstallation terminée avec des erreurs" -#: src/Common/LinuxKernel.vala:1183 +#: src/Common/LinuxKernel.vala:1189 #, fuzzy msgid "" "This kernel is currently running and cannot be un-installed.\n" diff --git a/po/hr.po b/po/hr.po index 43e78775..07d6af1d 100644 --- a/po/hr.po +++ b/po/hr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-02-21 10:29-0500\n" +"POT-Creation-Date: 2023-02-21 12:35-0500\n" "PO-Revision-Date: 2022-09-22 12:13+0200\n" "Last-Translator: gogo \n" "Language-Team: Croatian\n" @@ -110,7 +110,7 @@ msgstr "" msgid "Installation completed with errors" msgstr "Instalacija je završena s greškama" -#: src/Common/LinuxKernel.vala:1131 +#: src/Common/LinuxKernel.vala:1137 msgid "" "Selected kernel is currently running and cannot be un-installed.\n" " Install another kernel before un-installing this one." @@ -118,19 +118,19 @@ msgstr "" "Odabrani kernel je trenutno pokernut i ne može se deinstalirati.\n" " Instalirajte drugi kernel prije uklanjanja trenutnog kernela." -#: src/Common/LinuxKernel.vala:1136 +#: src/Common/LinuxKernel.vala:1142 msgid "Preparing to uninstall selected kernels" msgstr "Pripremanje deinstalacije odabranih kernela" -#: src/Common/LinuxKernel.vala:1167 src/Common/LinuxKernel.vala:1214 +#: src/Common/LinuxKernel.vala:1173 src/Common/LinuxKernel.vala:1220 msgid "Un-install completed" msgstr "Deinstalacija završena" -#: src/Common/LinuxKernel.vala:1170 src/Common/LinuxKernel.vala:1217 +#: src/Common/LinuxKernel.vala:1176 src/Common/LinuxKernel.vala:1223 msgid "Un-install completed with errors" msgstr "Deinstalacija završena s greškama" -#: src/Common/LinuxKernel.vala:1183 +#: src/Common/LinuxKernel.vala:1189 msgid "" "This kernel is currently running and cannot be un-installed.\n" " Install another kernel before un-installing this one." diff --git a/po/it.po b/po/it.po index 2c7f88d3..4fad88ff 100644 --- a/po/it.po +++ b/po/it.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline 1.0.15\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-02-21 10:29-0500\n" +"POT-Creation-Date: 2023-02-21 12:35-0500\n" "PO-Revision-Date: 2020-08-22 15:35+0100\n" "Last-Translator: Albano Battistella \n" "Language-Team: Italian\n" @@ -108,7 +108,7 @@ msgstr "" msgid "Installation completed with errors" msgstr "Installazione completata con errori" -#: src/Common/LinuxKernel.vala:1131 +#: src/Common/LinuxKernel.vala:1137 msgid "" "Selected kernel is currently running and cannot be un-installed.\n" " Install another kernel before un-installing this one." @@ -116,19 +116,19 @@ msgstr "" "Il kernel selezionato è attualmente in esecuzione e non può essere rimosso.\n" "Installa un altro kernel prima di rimuovere questo." -#: src/Common/LinuxKernel.vala:1136 +#: src/Common/LinuxKernel.vala:1142 msgid "Preparing to uninstall selected kernels" msgstr "Preparazione per rimuovere i kernel selezionati" -#: src/Common/LinuxKernel.vala:1167 src/Common/LinuxKernel.vala:1214 +#: src/Common/LinuxKernel.vala:1173 src/Common/LinuxKernel.vala:1220 msgid "Un-install completed" msgstr "Disinstallazione completata" -#: src/Common/LinuxKernel.vala:1170 src/Common/LinuxKernel.vala:1217 +#: src/Common/LinuxKernel.vala:1176 src/Common/LinuxKernel.vala:1223 msgid "Un-install completed with errors" msgstr "Disinstallazione completata con errori" -#: src/Common/LinuxKernel.vala:1183 +#: src/Common/LinuxKernel.vala:1189 msgid "" "This kernel is currently running and cannot be un-installed.\n" " Install another kernel before un-installing this one." diff --git a/po/ko.po b/po/ko.po index 56e24d9b..8bd17f97 100644 --- a/po/ko.po +++ b/po/ko.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline 1.0.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-02-21 10:29-0500\n" +"POT-Creation-Date: 2023-02-21 12:35-0500\n" "PO-Revision-Date: 2022-09-28 11:48+0900\n" "Last-Translator: Kevin Kim \n" "Language-Team: Korean\n" @@ -108,7 +108,7 @@ msgstr "설치가 완료되었습닌다. 새 커널을 사용하려면 시스템 msgid "Installation completed with errors" msgstr "오류가 있으나 설치가 완료되었습니다" -#: src/Common/LinuxKernel.vala:1131 +#: src/Common/LinuxKernel.vala:1137 msgid "" "Selected kernel is currently running and cannot be un-installed.\n" " Install another kernel before un-installing this one." @@ -116,19 +116,19 @@ msgstr "" "선택된 커널은 현재 사용 중이므로 삭제할 수 없습니다.\n" " 이 커널을 삭제하려면 다른 커널을 먼저 설치하세요." -#: src/Common/LinuxKernel.vala:1136 +#: src/Common/LinuxKernel.vala:1142 msgid "Preparing to uninstall selected kernels" msgstr "선택한 커널을 삭제하기 위해 준비중입니다" -#: src/Common/LinuxKernel.vala:1167 src/Common/LinuxKernel.vala:1214 +#: src/Common/LinuxKernel.vala:1173 src/Common/LinuxKernel.vala:1220 msgid "Un-install completed" msgstr "삭제가 완료되었습니다" -#: src/Common/LinuxKernel.vala:1170 src/Common/LinuxKernel.vala:1217 +#: src/Common/LinuxKernel.vala:1176 src/Common/LinuxKernel.vala:1223 msgid "Un-install completed with errors" msgstr "오류가 있으나 삭제가 완료되었습니다" -#: src/Common/LinuxKernel.vala:1183 +#: src/Common/LinuxKernel.vala:1189 msgid "" "This kernel is currently running and cannot be un-installed.\n" " Install another kernel before un-installing this one." diff --git a/po/messages.pot b/po/messages.pot index 0c1e2e28..19dabfcd 100644 --- a/po/messages.pot +++ b/po/messages.pot @@ -6,9 +6,9 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: mainline 1.0.19\n" +"Project-Id-Version: mainline 1.0.20\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-02-21 10:29-0500\n" +"POT-Creation-Date: 2023-02-21 12:35-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -112,25 +112,25 @@ msgstr "" msgid "Installation completed with errors" msgstr "" -#: src/Common/LinuxKernel.vala:1131 +#: src/Common/LinuxKernel.vala:1137 msgid "" "Selected kernel is currently running and cannot be un-installed.\n" " Install another kernel before un-installing this one." msgstr "" -#: src/Common/LinuxKernel.vala:1136 +#: src/Common/LinuxKernel.vala:1142 msgid "Preparing to uninstall selected kernels" msgstr "" -#: src/Common/LinuxKernel.vala:1167 src/Common/LinuxKernel.vala:1214 +#: src/Common/LinuxKernel.vala:1173 src/Common/LinuxKernel.vala:1220 msgid "Un-install completed" msgstr "" -#: src/Common/LinuxKernel.vala:1170 src/Common/LinuxKernel.vala:1217 +#: src/Common/LinuxKernel.vala:1176 src/Common/LinuxKernel.vala:1223 msgid "Un-install completed with errors" msgstr "" -#: src/Common/LinuxKernel.vala:1183 +#: src/Common/LinuxKernel.vala:1189 msgid "" "This kernel is currently running and cannot be un-installed.\n" " Install another kernel before un-installing this one." diff --git a/po/nl.po b/po/nl.po index ab2c7558..6df5562d 100644 --- a/po/nl.po +++ b/po/nl.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-02-21 10:29-0500\n" +"POT-Creation-Date: 2023-02-21 12:35-0500\n" "PO-Revision-Date: 2020-08-23 13:55+0200\n" "Last-Translator: Heimen Stoffels \n" "Language-Team: Dutch (Netherlands)\n" @@ -112,7 +112,7 @@ msgstr "" msgid "Installation completed with errors" msgstr "De installatie is foutloos voltooid" -#: src/Common/LinuxKernel.vala:1131 +#: src/Common/LinuxKernel.vala:1137 #, fuzzy msgid "" "Selected kernel is currently running and cannot be un-installed.\n" @@ -122,20 +122,20 @@ msgstr "" "verwijderd.\n" " Installeer eerst een andere kernel." -#: src/Common/LinuxKernel.vala:1136 +#: src/Common/LinuxKernel.vala:1142 #, fuzzy msgid "Preparing to uninstall selected kernels" msgstr "Bezig met voorbereiden van verwijdering" -#: src/Common/LinuxKernel.vala:1167 src/Common/LinuxKernel.vala:1214 +#: src/Common/LinuxKernel.vala:1173 src/Common/LinuxKernel.vala:1220 msgid "Un-install completed" msgstr "Deïnstalleren voltooid" -#: src/Common/LinuxKernel.vala:1170 src/Common/LinuxKernel.vala:1217 +#: src/Common/LinuxKernel.vala:1176 src/Common/LinuxKernel.vala:1223 msgid "Un-install completed with errors" msgstr "Deïnstalleren voltooid, maar met fouten" -#: src/Common/LinuxKernel.vala:1183 +#: src/Common/LinuxKernel.vala:1189 #, fuzzy msgid "" "This kernel is currently running and cannot be un-installed.\n" diff --git a/po/pl.po b/po/pl.po index 0fabcb2f..bc60a4bf 100644 --- a/po/pl.po +++ b/po/pl.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-02-21 10:29-0500\n" +"POT-Creation-Date: 2023-02-21 12:35-0500\n" "PO-Revision-Date: 2021-09-17 10:29+0200\n" "Last-Translator: Viktor Sokyrko \n" "Language-Team: Polish\n" @@ -110,7 +110,7 @@ msgstr "" msgid "Installation completed with errors" msgstr "Instalacja zakończona z błędami" -#: src/Common/LinuxKernel.vala:1131 +#: src/Common/LinuxKernel.vala:1137 msgid "" "Selected kernel is currently running and cannot be un-installed.\n" " Install another kernel before un-installing this one." @@ -118,19 +118,19 @@ msgstr "" "Wybrane jądro aktualnie działa i nie może zostać odinstalowane.\n" " Zainstaluj inne jądro przed odinstalowaniem tego." -#: src/Common/LinuxKernel.vala:1136 +#: src/Common/LinuxKernel.vala:1142 msgid "Preparing to uninstall selected kernels" msgstr "Przygotowanie do odinstalowania wybranych jąder" -#: src/Common/LinuxKernel.vala:1167 src/Common/LinuxKernel.vala:1214 +#: src/Common/LinuxKernel.vala:1173 src/Common/LinuxKernel.vala:1220 msgid "Un-install completed" msgstr "Deinstalacja zakończona" -#: src/Common/LinuxKernel.vala:1170 src/Common/LinuxKernel.vala:1217 +#: src/Common/LinuxKernel.vala:1176 src/Common/LinuxKernel.vala:1223 msgid "Un-install completed with errors" msgstr "De-instalacja zakończona z błędami" -#: src/Common/LinuxKernel.vala:1183 +#: src/Common/LinuxKernel.vala:1189 msgid "" "This kernel is currently running and cannot be un-installed.\n" " Install another kernel before un-installing this one." diff --git a/po/ru.po b/po/ru.po index 6aca81a1..3b445ac7 100644 --- a/po/ru.po +++ b/po/ru.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-02-21 10:29-0500\n" +"POT-Creation-Date: 2023-02-21 12:35-0500\n" "PO-Revision-Date: 2022-02-24 16:05+0300\n" "Last-Translator: Danik2343 \n" "Language-Team: Russian\n" @@ -110,7 +110,7 @@ msgstr "" msgid "Installation completed with errors" msgstr "Установка завершена с ошибками" -#: src/Common/LinuxKernel.vala:1131 +#: src/Common/LinuxKernel.vala:1137 msgid "" "Selected kernel is currently running and cannot be un-installed.\n" " Install another kernel before un-installing this one." @@ -118,19 +118,19 @@ msgstr "" "Это ядро в настоящий момент работает и не может быть удалено.\n" " Установите другое ядро, прежде чем удалять его." -#: src/Common/LinuxKernel.vala:1136 +#: src/Common/LinuxKernel.vala:1142 msgid "Preparing to uninstall selected kernels" msgstr "Подготовка к деинсталляции выбранных ядер" -#: src/Common/LinuxKernel.vala:1167 src/Common/LinuxKernel.vala:1214 +#: src/Common/LinuxKernel.vala:1173 src/Common/LinuxKernel.vala:1220 msgid "Un-install completed" msgstr "Удаление завершено" -#: src/Common/LinuxKernel.vala:1170 src/Common/LinuxKernel.vala:1217 +#: src/Common/LinuxKernel.vala:1176 src/Common/LinuxKernel.vala:1223 msgid "Un-install completed with errors" msgstr "Удаление завершено с ошибками" -#: src/Common/LinuxKernel.vala:1183 +#: src/Common/LinuxKernel.vala:1189 msgid "" "This kernel is currently running and cannot be un-installed.\n" " Install another kernel before un-installing this one." diff --git a/po/sv.po b/po/sv.po index e2c6ad64..ad0ae36e 100644 --- a/po/sv.po +++ b/po/sv.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-02-21 10:29-0500\n" +"POT-Creation-Date: 2023-02-21 12:35-0500\n" "PO-Revision-Date: 2018-01-13 16:56+0100\n" "Last-Translator: Åke Engelbrektson \n" "Language-Team:Swedish\n" @@ -113,7 +113,7 @@ msgstr "Installation slutförd. Omstart krävs för att tillämpa den nya kärna msgid "Installation completed with errors" msgstr "Installation slutförd med fel" -#: src/Common/LinuxKernel.vala:1131 +#: src/Common/LinuxKernel.vala:1137 #, fuzzy msgid "" "Selected kernel is currently running and cannot be un-installed.\n" @@ -122,20 +122,20 @@ msgstr "" "Denna kärna används för tillfället och kan inte tas bort.\n" "Installera en annan kärna innan du tar bort den här." -#: src/Common/LinuxKernel.vala:1136 +#: src/Common/LinuxKernel.vala:1142 #, fuzzy msgid "Preparing to uninstall selected kernels" msgstr "Förbereder borttagning av markerade kärnor" -#: src/Common/LinuxKernel.vala:1167 src/Common/LinuxKernel.vala:1214 +#: src/Common/LinuxKernel.vala:1173 src/Common/LinuxKernel.vala:1220 msgid "Un-install completed" msgstr "Avinstallation slutförd" -#: src/Common/LinuxKernel.vala:1170 src/Common/LinuxKernel.vala:1217 +#: src/Common/LinuxKernel.vala:1176 src/Common/LinuxKernel.vala:1223 msgid "Un-install completed with errors" msgstr "Avinstallation slutförd med fel" -#: src/Common/LinuxKernel.vala:1183 +#: src/Common/LinuxKernel.vala:1189 #, fuzzy msgid "" "This kernel is currently running and cannot be un-installed.\n" diff --git a/po/tr.po b/po/tr.po index 09bd1fab..3c85b970 100644 --- a/po/tr.po +++ b/po/tr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-02-21 10:29-0500\n" +"POT-Creation-Date: 2023-02-21 12:35-0500\n" "PO-Revision-Date: 2022-08-06 16:48+0300\n" "Last-Translator: Sabri Ünal \n" "Language-Team: Turkish\n" @@ -110,7 +110,7 @@ msgstr "" msgid "Installation completed with errors" msgstr "Kurulum hatalarla tamamlandı" -#: src/Common/LinuxKernel.vala:1131 +#: src/Common/LinuxKernel.vala:1137 msgid "" "Selected kernel is currently running and cannot be un-installed.\n" " Install another kernel before un-installing this one." @@ -118,19 +118,19 @@ msgstr "" "Seçilen çekirdek şu anda çalışıyor ve kaldırılamaz.\n" " Bunu kaldırmadan önce başka bir çekirdek yükleyin." -#: src/Common/LinuxKernel.vala:1136 +#: src/Common/LinuxKernel.vala:1142 msgid "Preparing to uninstall selected kernels" msgstr "Seçilen çekirdekleri kaldırmaya hazırlanıyor" -#: src/Common/LinuxKernel.vala:1167 src/Common/LinuxKernel.vala:1214 +#: src/Common/LinuxKernel.vala:1173 src/Common/LinuxKernel.vala:1220 msgid "Un-install completed" msgstr "Kaldırma tamamlandı" -#: src/Common/LinuxKernel.vala:1170 src/Common/LinuxKernel.vala:1217 +#: src/Common/LinuxKernel.vala:1176 src/Common/LinuxKernel.vala:1223 msgid "Un-install completed with errors" msgstr "Kaldırma hatalarla tamamlandı" -#: src/Common/LinuxKernel.vala:1183 +#: src/Common/LinuxKernel.vala:1189 msgid "" "This kernel is currently running and cannot be un-installed.\n" " Install another kernel before un-installing this one." diff --git a/po/uk.po b/po/uk.po index 1701b03f..50496a77 100644 --- a/po/uk.po +++ b/po/uk.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-02-21 10:29-0500\n" +"POT-Creation-Date: 2023-02-21 12:35-0500\n" "PO-Revision-Date: 2019-07-25 11:00+0300\n" "Last-Translator: Serhii Golovko \n" "Language-Team: Ukranian\n" @@ -109,7 +109,7 @@ msgstr "" msgid "Installation completed with errors" msgstr "Установка завершена з помилками" -#: src/Common/LinuxKernel.vala:1131 +#: src/Common/LinuxKernel.vala:1137 msgid "" "Selected kernel is currently running and cannot be un-installed.\n" " Install another kernel before un-installing this one." @@ -117,19 +117,19 @@ msgstr "" "Це ядро зараз працює і не може бути видалено. \n" "Встановіть інше ядро, перш ніж видаляти його." -#: src/Common/LinuxKernel.vala:1136 +#: src/Common/LinuxKernel.vala:1142 msgid "Preparing to uninstall selected kernels" msgstr "Підготовка до видалення вибраних ядер" -#: src/Common/LinuxKernel.vala:1167 src/Common/LinuxKernel.vala:1214 +#: src/Common/LinuxKernel.vala:1173 src/Common/LinuxKernel.vala:1220 msgid "Un-install completed" msgstr "Видалення завершено" -#: src/Common/LinuxKernel.vala:1170 src/Common/LinuxKernel.vala:1217 +#: src/Common/LinuxKernel.vala:1176 src/Common/LinuxKernel.vala:1223 msgid "Un-install completed with errors" msgstr "Видалення завершено з помилками" -#: src/Common/LinuxKernel.vala:1183 +#: src/Common/LinuxKernel.vala:1189 msgid "" "This kernel is currently running and cannot be un-installed.\n" " Install another kernel before un-installing this one." diff --git a/src/Common/LinuxKernel.vala b/src/Common/LinuxKernel.vala index 9e554327..4355b362 100644 --- a/src/Common/LinuxKernel.vala +++ b/src/Common/LinuxKernel.vala @@ -1097,24 +1097,30 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { var flist = ""; + // full paths instead of env -C + // https://github.com/bkw777/mainline/issues/128 foreach(string file_name in deb_list.keys){ - flist += " '%s'".printf(file_name); - log_msg("kinst() flist += %s".printf(file_name)); + flist += " '%s/%s'".printf(cache_subdir,file_name); + log_msg("kinst() flist += %s/%s".printf(cache_subdir,file_name)); } - string cmd = "cd "+cache_subdir - + " && pkexec env -C "+cache_subdir+" DISPLAY=${DISPLAY} XAUTHORITY=${XAUTHORITY} dpkg --install "+flist - + " && rm "+flist; + string cmd = "pkexec env DISPLAY=${DISPLAY} XAUTHORITY=${XAUTHORITY} dpkg --install "+flist; status = Posix.system(cmd); ok = (status == 0); - if (ok){ + if (ok) { log_msg(_("Installation completed. A reboot is required to use the new kernel.")); } - else{ + else { log_error(_("Installation completed with errors")); } + + foreach(string file_name in deb_list.keys){ + flist = "%s/%s".printf(cache_subdir,file_name); + file_delete(flist); + } + } return ok; From 53398c8f836b5da02aacbf555eb091b5fe965691 Mon Sep 17 00:00:00 2001 From: Lucas CHOLLET Date: Tue, 21 Feb 2023 16:07:41 -0500 Subject: [PATCH 220/567] Return on cast failure This patch, while being quite useless on its own (as if on of these casts fail, we have heavy programming errors), removes the three last warnings. --- src/Gtk/MainWindow.vala | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/src/Gtk/MainWindow.vala b/src/Gtk/MainWindow.vala index 253c7eae..5440c685 100644 --- a/src/Gtk/MainWindow.vala +++ b/src/Gtk/MainWindow.vala @@ -156,7 +156,8 @@ public class MainWindow : Gtk.Window{ col.set_cell_data_func (cell_pix, (cell_layout, cell, model, iter)=>{ Gdk.Pixbuf pix; model.get (iter, 1, out pix, -1); - (cell as Gtk.CellRendererPixbuf).pixbuf = pix; + return_if_fail(cell as Gtk.CellRendererPixbuf != null); + ((Gtk.CellRendererPixbuf) cell).pixbuf = pix; }); //cell text @@ -166,7 +167,8 @@ public class MainWindow : Gtk.Window{ col.set_cell_data_func (cellText, (cell_layout, cell, model, iter)=>{ LinuxKernel kern; model.get (iter, 0, out kern, -1); - (cell as Gtk.CellRendererText).text = kern.version_main; + return_if_fail(cell as Gtk.CellRendererText != null); + ((Gtk.CellRendererText) cell).text = kern.version_main; }); //column @@ -183,7 +185,8 @@ public class MainWindow : Gtk.Window{ col.set_cell_data_func (cellText, (cell_layout, cell, model, iter)=>{ LinuxKernel kern; model.get (iter, 0, out kern, -1); - (cell as Gtk.CellRendererText).text = kern.is_running ? _("Running") : (kern.is_installed ? _("Installed") : ""); + return_if_fail(cell as Gtk.CellRendererText != null); + ((Gtk.CellRendererText) cell).text = kern.is_running ? _("Running") : (kern.is_installed ? _("Installed") : ""); }); //column From a146967a97199283c24933f848b2196f0b58a220 Mon Sep 17 00:00:00 2001 From: Lucas CHOLLET Date: Tue, 21 Feb 2023 18:36:29 -0500 Subject: [PATCH 221/567] Don't rely on shenanigans to decide to update the main index We should not try to update the main index based on the age of our cached file. Moreover, it was never the case as it was implicitly disabled for "small" (<300Kb) files and the index.html file is around 280Kib. --- src/Common/LinuxKernel.vala | 20 +------------------- src/Utility/TeeJee.FileSystem.vala | 16 ---------------- 2 files changed, 1 insertion(+), 35 deletions(-) diff --git a/src/Common/LinuxKernel.vala b/src/Common/LinuxKernel.vala index 4355b362..81691f96 100644 --- a/src/Common/LinuxKernel.vala +++ b/src/Common/LinuxKernel.vala @@ -219,16 +219,9 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { log_debug("query_thread() App.show_prev_majors: %d".printf(App.show_prev_majors)); log_debug("query_thread() App.hide_unstable: "+App.hide_unstable.to_string()); - //DownloadManager.reset_counter(); - - // download main index.html if stale - bool refresh = false; - var one_hour_before = (new DateTime.now_local()).add_hours(-1); - if (last_refreshed_date.compare(one_hour_before) < 0) refresh = true; bool is_connected = Main.can_reach_mainline_ppa(); - if (refresh) download_index(); - // read main index.html + download_index(); load_index(); // TODO: Implement locking for multiple download threads @@ -858,17 +851,6 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { } } - public static DateTime last_refreshed_date{ - owned get{ - if (file_get_size(index_page) < 300000){ - return (new DateTime.now_local()).add_years(-1); - } - else{ - return file_get_modified_date(index_page); - } - } - } - public string cache_subdir{ owned get { return "%s/%s".printf(CACHE_DIR,version_main); diff --git a/src/Utility/TeeJee.FileSystem.vala b/src/Utility/TeeJee.FileSystem.vala index 821e8623..086fb396 100644 --- a/src/Utility/TeeJee.FileSystem.vala +++ b/src/Utility/TeeJee.FileSystem.vala @@ -196,22 +196,6 @@ namespace TeeJee.FileSystem{ return -1; } - public DateTime file_get_modified_date(string file_path){ - try{ - FileInfo info; - File file = File.parse_name (file_path); - if (file.query_exists()) { - info = file.query_info("%s".printf(FileAttribute.TIME_MODIFIED), 0); - return (new DateTime.from_timeval_utc(info.get_modification_time())).to_local(); - } - } - catch (Error e) { - log_error (e.message); - } - - return (new DateTime.from_unix_utc(0)); //1970 - } - // directory helpers ---------------------- public bool dir_exists (string dir_path){ From 54ed13297604592be089b774c309c79e11ce8b88 Mon Sep 17 00:00:00 2001 From: Lucas CHOLLET Date: Tue, 21 Feb 2023 18:49:07 -0500 Subject: [PATCH 222/567] Don't add a useless space to button's label --- src/Utility/Gtk/AboutWindow.vala | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/Utility/Gtk/AboutWindow.vala b/src/Utility/Gtk/AboutWindow.vala index 4634193e..59fe90e6 100644 --- a/src/Utility/Gtk/AboutWindow.vala +++ b/src/Utility/Gtk/AboutWindow.vala @@ -268,7 +268,7 @@ public class AboutWindow : Dialog { hbox_action = (Box) get_action_area(); //btn_credits - btn_credits = new Button.with_label(" " + _("Credits")); + btn_credits = new Button.with_label(_("Credits")); btn_credits.set_image (new Image.from_icon_name ("gtk-about", IconSize.MENU)); hbox_action.add(btn_credits); @@ -281,17 +281,17 @@ public class AboutWindow : Dialog { } if (vbox_credits.visible){ - btn_credits.label = " " + _("Back"); + btn_credits.label = _("Back"); btn_credits.set_image (new Image.from_icon_name ("gtk-go-back", IconSize.MENU)); } else{ - btn_credits.label = " " + _("Credits"); + btn_credits.label = _("Credits"); btn_credits.set_image (new Image.from_icon_name ("gtk-about", IconSize.MENU)); } }); //btn_close - btn_close = new Button.with_label(" " + _("Close")); + btn_close = new Button.with_label(_("Close")); btn_close.set_image (new Image.from_icon_name ("gtk-close", IconSize.MENU)); hbox_action.add(btn_close); From 484d63224db4fb43ec100bb31b936b62018ee852 Mon Sep 17 00:00:00 2001 From: Lucas CHOLLET Date: Tue, 21 Feb 2023 19:06:01 -0500 Subject: [PATCH 223/567] Don't set `rewrap_on_resize` in TerminalWindow This setting is deprecated and rewrapping is now the default and invariable behavior of Vte.Terminal(). See: https://gitlab.gnome.org/GNOME/vte/-/issues/135 --- src/Gtk/TerminalWindow.vala | 1 - 1 file changed, 1 deletion(-) diff --git a/src/Gtk/TerminalWindow.vala b/src/Gtk/TerminalWindow.vala index 844fe7d2..0f028908 100644 --- a/src/Gtk/TerminalWindow.vala +++ b/src/Gtk/TerminalWindow.vala @@ -114,7 +114,6 @@ public class TerminalWindow : Gtk.Window { term.backspace_binding = Vte.EraseBinding.AUTO; term.cursor_blink_mode = Vte.CursorBlinkMode.SYSTEM; term.cursor_shape = Vte.CursorShape.UNDERLINE; - term.rewrap_on_resize = true; term.scroll_on_keystroke = true; term.scroll_on_output = true; From 2bdc7189112de4b11f3951e6416f9d15b971140a Mon Sep 17 00:00:00 2001 From: Lucas CHOLLET Date: Tue, 21 Feb 2023 23:21:17 -0500 Subject: [PATCH 224/567] Cast `TreeView` to a `Scrollable` before calling `get_[h,v]adjustment()` Even if this is a workaround for a what is a vapigen quirk, it removes two deprecation warnings. It doesn't cost much, and anyway it should go when we port this to GTK4. --- src/Gtk/MainWindow.vala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Gtk/MainWindow.vala b/src/Gtk/MainWindow.vala index 253c7eae..755b511c 100644 --- a/src/Gtk/MainWindow.vala +++ b/src/Gtk/MainWindow.vala @@ -136,7 +136,7 @@ public class MainWindow : Gtk.Window{ tv.get_selection().changed.connect(tv_selection_changed); - var scrollwin = new ScrolledWindow(tv.get_hadjustment(), tv.get_vadjustment()); + var scrollwin = new ScrolledWindow(((Gtk.Scrollable) tv).get_hadjustment(), ((Gtk.Scrollable) tv).get_vadjustment()); scrollwin.set_shadow_type (ShadowType.ETCHED_IN); scrollwin.add (tv); hbox_list.add(scrollwin); From 9da28081ae0d44360aae075f6dc8dfe8d3ab24c2 Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Thu, 23 Feb 2023 08:40:53 -0500 Subject: [PATCH 225/567] Revert "Merge pull request #181 from LucasChollet/downloader" This reverts commit e8191ac10280a16aca2b385cf62d83c5347595f4, reversing changes made to 8de5ac3b3f219cf69c11363edb7db913089bb32b. --- src/Common/FileDownloader.vala | 93 ---------------------------------- src/Common/LinuxKernel.vala | 36 +++++++++---- src/Common/Main.vala | 1 + src/Gtk/MainWindow.vala | 54 +++----------------- src/Gtk/ProgressWindow.vala | 30 ++++++++--- 5 files changed, 58 insertions(+), 156 deletions(-) delete mode 100644 src/Common/FileDownloader.vala diff --git a/src/Common/FileDownloader.vala b/src/Common/FileDownloader.vala deleted file mode 100644 index 53c03349..00000000 --- a/src/Common/FileDownloader.vala +++ /dev/null @@ -1,93 +0,0 @@ -using Gee; -using TeeJee.Logging; - -public class FileDownloader : GLib.Object { - private File source; - private File destination; - - private bool synchronously; - private bool started = false; - private bool done = false; - - private Cancellable? cancellable; - private FileProgressCallback? progress_callback; - - // Note: These delegates are only called in asynchronous mode - public delegate void OnFailure(Error e); - public OnFailure? on_failure; - - public delegate void OnFinished(); - public OnFinished? on_finished; - - private FileDownloader(string uri, string destination, - Cancellable? cancellable = null, - owned FileProgressCallback? callback = null) throws Error { - var corrected_uri = uri; - if (uri.has_suffix("/")) - corrected_uri = uri.substring(0, uri.length - 1); - - this.source = File.new_for_uri(corrected_uri); - this.destination = File.new_for_path(destination); - - this.cancellable = cancellable; - this.progress_callback = callback; - - if (cancellable != null) - cancellable.connect (() => done = true); - } - - private FileDownloader._synchronous(string uri, string destination, - Cancellable? cancellable = null, - owned FileProgressCallback? callback = null) throws Error { - this(uri, destination, cancellable, callback); - synchronously = true; - start(); - } - - // Note: This static function is only an helper to avoid a `new` on the caller side - public static void synchronous(string uri, string destination, - Cancellable? cancellable = null, - owned FileProgressCallback? callback = null) throws Error { - new FileDownloader._synchronous(uri, destination, cancellable, callback); - } - - public FileDownloader.asynchronous(string uri, string destination, - Cancellable? cancellable = null, - owned FileProgressCallback? callback = null) throws Error { - this(uri, destination, cancellable, callback); - synchronously = false; - } - - public void start() throws Error { - if (started) { - log_error("Download already started."); - return; - } - started = true; - - if (synchronously) { - source.copy(destination, FileCopyFlags.OVERWRITE, cancellable, progress_callback); - } else { - source.copy_async.begin(destination, FileCopyFlags.OVERWRITE, Priority.DEFAULT, cancellable, progress_callback, - (obj, res) => { - try { - source.copy_async.end(res); - } catch (Error e) { - if (on_failure != null) - on_failure(e); - } - done = true; - if (on_finished != null) - on_finished(); - }); - } - } - - public void wait_until_finished() { - if (!started) - log_error("Waiting for a download that never started"); - - while (!done) - MainContext.@default().iteration(false); - } -} diff --git a/src/Common/LinuxKernel.vala b/src/Common/LinuxKernel.vala index 4355b362..a90281f2 100644 --- a/src/Common/LinuxKernel.vala +++ b/src/Common/LinuxKernel.vala @@ -194,13 +194,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { try { cancelled = false; - var worker = new Thread.try(null, () => { - try { - query_thread(notifier); - } catch (Error e) { - log_error (e.message); - } - }); + var worker = new Thread.try(null, () => query_thread(notifier)); if (wait) worker.join(); @@ -209,7 +203,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { } } - private static void query_thread(owned Notifier? notifier) throws Error { + private static void query_thread(owned Notifier? notifier) { App.progress_total = 1; App.progress_count = 0; @@ -249,7 +243,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { if (k.version_maj < highest_maj-App.show_prev_majors) continue; if (App.hide_unstable && k.is_unstable) continue; } - if (k.is_valid && !k.cached_page_exists) progress_total += 1; + if (k.is_valid && !k.cached_page_exists) progress_total += 2; if (notifier != null) notifier(timer, ref count); } @@ -279,6 +273,10 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { var item = new DownloadItem(k.cached_page_uri, file_parent(k.cached_page), file_basename(k.cached_page)); downloads.add(item); + // add CHANGES to download list + item = new DownloadItem(k.changes_file_uri, file_parent(k.changes_file), file_basename(k.changes_file)); + downloads.add(item); + // add kernel to kernel list kernels_to_update.add(k); if (notifier != null) notifier(timer, ref count); @@ -324,16 +322,32 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { } // download the main index.html listing all mainline kernels - private static void download_index() throws Error { + private static bool download_index(){ check_if_initialized(); dir_create(file_parent(index_page)); + file_delete(index_page); + var item = new DownloadItem(URI_KERNEL_UBUNTU_MAINLINE, CACHE_DIR, "index.html"); + var mgr = new DownloadTask(); + mgr.add_to_queue(item); + mgr.status_in_kb = true; + mgr.execute(); + var msg = _("Fetching index from kernel.ubuntu.com..."); log_msg(msg); status_line = msg.strip(); - FileDownloader.synchronous(URI_KERNEL_UBUNTU_MAINLINE, CACHE_DIR + "/index.html"); + while (mgr.is_running()) sleep(500); + + if (file_exists(index_page)){ + log_msg("OK"); + return true; + } + else{ + log_error("ERR"); + return false; + } } // read the main index.html listing all kernels diff --git a/src/Common/Main.vala b/src/Common/Main.vala index d8993522..287414e5 100644 --- a/src/Common/Main.vala +++ b/src/Common/Main.vala @@ -66,6 +66,7 @@ public class Main : GLib.Object{ public string status_line = ""; public int64 progress_total = 0; public int64 progress_count = 0; + public bool cancelled = false; // state flags ---------- diff --git a/src/Gtk/MainWindow.vala b/src/Gtk/MainWindow.vala index 253c7eae..bb4f6313 100644 --- a/src/Gtk/MainWindow.vala +++ b/src/Gtk/MainWindow.vala @@ -301,7 +301,7 @@ public class MainWindow : Gtk.Window{ btn_install.sensitive = (selected_kernels.size == 1) && !selected_kernels[0].is_installed; btn_uninstall.sensitive = selected_kernels[0].is_installed && !selected_kernels[0].is_running; btn_uninstall_old.sensitive = true; - btn_changes.sensitive = (selected_kernels.size == 1); + btn_changes.sensitive = (selected_kernels.size == 1) && file_exists(selected_kernels[0].changes_file); } } @@ -414,46 +414,9 @@ public class MainWindow : Gtk.Window{ btn_changes = button; button.clicked.connect(() => { - if (selected_kernels.size != 1) - return; - - if (! file_exists(selected_kernels[0].changes_file)) { - bool failed_or_cancelled = false; - - FileDownloader.OnFailure handle_failure = (error) => { - // If it's already set by the "cancelled" signal, no need to display a dialog - if (failed_or_cancelled) - return; - failed_or_cancelled = true; - Gtk.MessageDialog msg = new Gtk.MessageDialog(this, Gtk.DialogFlags.MODAL, Gtk.MessageType.ERROR, Gtk.ButtonsType.OK, _("Error while downloading the changelog:\n") + error.message); - msg.response.connect((response_id) => msg.destroy()); - msg.show(); - }; - - var cancellable = new Cancellable(); - cancellable.cancelled.connect (() => { - failed_or_cancelled = true; - }); - - var progress_window = new ProgressWindow.with_parent(this, _("Downloading the changelog"), cancellable); - - try { - var changelog = new FileDownloader.asynchronous(selected_kernels[0].changes_file_uri, selected_kernels[0].changes_file, cancellable); - changelog.on_failure = handle_failure; - changelog.on_finished = () => progress_window.destroy(); - changelog.start(); - - progress_window.show_all(); - changelog.wait_until_finished(); - } catch (Error e) { - handle_failure(e); - } - - if (failed_or_cancelled) - return; + if ((selected_kernels.size == 1) && file_exists(selected_kernels[0].changes_file)){ + xdg_open(selected_kernels[0].changes_file); } - - xdg_open(selected_kernels[0].changes_file); }); // settings @@ -557,14 +520,9 @@ public class MainWindow : Gtk.Window{ return; } - - var cancellable = new Cancellable(); - cancellable.cancelled.connect (() => { - App.exit_app(1); - }); string message = _("Refreshing..."); - var progress_window = new ProgressWindow.with_parent(this, message, cancellable); + var progress_window = new ProgressWindow.with_parent(this, message, true); progress_window.show_all(); // TODO: Check if kernel.ubuntu.com is down @@ -585,6 +543,10 @@ public class MainWindow : Gtk.Window{ timer_elapsed(timer, true); } + if (App.cancelled){ + App.exit_app(1); + } + App.status_line = LinuxKernel.status_line; App.progress_total = LinuxKernel.progress_total; App.progress_count = LinuxKernel.progress_count; diff --git a/src/Gtk/ProgressWindow.vala b/src/Gtk/ProgressWindow.vala index 43617aa1..7a3da136 100644 --- a/src/Gtk/ProgressWindow.vala +++ b/src/Gtk/ProgressWindow.vala @@ -46,12 +46,13 @@ public class ProgressWindow : Gtk.Window { private int def_height = 50; private string status_message; - - private Cancellable? cancellable; + private bool allow_cancel = false; + private bool allow_close = false; // init - public ProgressWindow.with_parent(Window parent, string message, Cancellable? cancellable = null) { + public ProgressWindow.with_parent(Window parent, string message, bool allow_cancel = false) { + set_transient_for(parent); set_modal(true); set_decorated(false); @@ -67,12 +68,26 @@ public class ProgressWindow : Gtk.Window { App.progress_total = 0; this.status_message = message; + this.allow_cancel = allow_cancel; + + App.cancelled = false; - this.cancellable = cancellable; + this.delete_event.connect(close_window); init_window(); } + private bool close_window(){ + if (allow_close){ + // allow window to close + return false; + } + else{ + // do not allow window to close + return true; + } + } + public void init_window () { title = ""; @@ -129,12 +144,15 @@ public class ProgressWindow : Gtk.Window { box.pack_start (button, false, false, 0); btn_cancel = button; - button.clicked.connect(() => { - cancellable.cancel(); + button.clicked.connect(()=>{ + App.cancelled = true; btn_cancel.sensitive = false; }); show_all(); + + //btn_cancel.visible = allow_cancel; + btn_cancel.sensitive = allow_cancel; } // common From 885d71d9add36b7ec1ee453695a1adc28134f08a Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Thu, 23 Feb 2023 08:48:16 -0500 Subject: [PATCH 226/567] revert FileDownloader --- BRANDING.mak | 2 +- po/de.po | 91 ++++++++++++++++++++++-------------------------- po/el.po | 91 ++++++++++++++++++++++-------------------------- po/es.po | 91 ++++++++++++++++++++++-------------------------- po/fr.po | 91 ++++++++++++++++++++++-------------------------- po/hr.po | 91 ++++++++++++++++++++++-------------------------- po/it.po | 91 ++++++++++++++++++++++-------------------------- po/ko.po | 91 ++++++++++++++++++++++-------------------------- po/messages.pot | 92 ++++++++++++++++++++++--------------------------- po/nl.po | 91 ++++++++++++++++++++++-------------------------- po/pl.po | 91 ++++++++++++++++++++++-------------------------- po/ru.po | 91 ++++++++++++++++++++++-------------------------- po/sv.po | 91 ++++++++++++++++++++++-------------------------- po/tr.po | 91 ++++++++++++++++++++++-------------------------- po/uk.po | 91 ++++++++++++++++++++++-------------------------- 15 files changed, 576 insertions(+), 701 deletions(-) diff --git a/BRANDING.mak b/BRANDING.mak index fce2df6d..45fdb5c9 100644 --- a/BRANDING.mak +++ b/BRANDING.mak @@ -3,7 +3,7 @@ VERSION_MAJOR = 1 VERSION_MINOR = 0 -VERSION_MICRO = 20 +VERSION_MICRO = 21 BRANDING_SHORTNAME = mainline BRANDING_LONGNAME = Ubuntu Mainline Kernel Installer BRANDING_AUTHORNAME = Brian K. White diff --git a/po/de.po b/po/de.po index f7721346..051459a2 100644 --- a/po/de.po +++ b/po/de.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-02-21 12:35-0500\n" +"POT-Creation-Date: 2023-02-23 08:45-0500\n" "PO-Revision-Date: 2023-02-20 18:40+0100\n" "Last-Translator: Marvin Meysel \n" "Language-Team: German\n" @@ -21,96 +21,96 @@ msgstr "Distribution" msgid "Architecture" msgstr "Architektur" -#: src/Common/LinuxKernel.vala:300 +#: src/Common/LinuxKernel.vala:298 msgid "Fetching index..." msgstr "Index abrufen..." -#: src/Common/LinuxKernel.vala:332 +#: src/Common/LinuxKernel.vala:337 msgid "Fetching index from kernel.ubuntu.com..." msgstr "Hole Index von kernel.ubuntu.com..." -#: src/Common/LinuxKernel.vala:579 +#: src/Common/LinuxKernel.vala:593 msgid "Could not find running kernel in list!" msgstr "Konnte keinen laufenden Kernel in der Liste finden!" -#: src/Common/LinuxKernel.vala:585 +#: src/Common/LinuxKernel.vala:599 msgid "Could not find any kernels to uninstall" msgstr "Es konnten keine Kernel zum Deinstallieren gefunden werden" -#: src/Common/LinuxKernel.vala:594 +#: src/Common/LinuxKernel.vala:608 msgid "The following kernels will be uninstalled:" msgstr "Die folgenden Kernel werden deinstalliert:" -#: src/Common/LinuxKernel.vala:601 +#: src/Common/LinuxKernel.vala:615 msgid "Continue ?" msgstr "Weiter ?" -#: src/Common/LinuxKernel.vala:627 src/Console/AppConsole.vala:314 +#: src/Common/LinuxKernel.vala:641 src/Console/AppConsole.vala:314 msgid "Latest update" msgstr "Neustes Update" -#: src/Common/LinuxKernel.vala:638 src/Console/AppConsole.vala:321 +#: src/Common/LinuxKernel.vala:652 src/Console/AppConsole.vala:321 msgid "Latest point update" msgstr "Letzte Punktaktualisierung" -#: src/Common/LinuxKernel.vala:646 src/Console/AppConsole.vala:326 +#: src/Common/LinuxKernel.vala:660 src/Console/AppConsole.vala:326 #: src/Console/AppConsole.vala:387 msgid "No updates found" msgstr "Keine Updates gefunden" -#: src/Common/LinuxKernel.vala:656 +#: src/Common/LinuxKernel.vala:670 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Kernel-Version %s installieren? (j/n):" -#: src/Common/LinuxKernel.vala:917 +#: src/Common/LinuxKernel.vala:931 msgid "Packages Available" msgstr "Verfügbare Pakete" -#: src/Common/LinuxKernel.vala:925 +#: src/Common/LinuxKernel.vala:939 msgid "Packages Installed" msgstr "Installierte Pakete" -#: src/Common/LinuxKernel.vala:1005 +#: src/Common/LinuxKernel.vala:1019 msgid "Available Kernels" msgstr "Verfügbare Kernel" -#: src/Common/LinuxKernel.vala:1012 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1026 src/Gtk/MainWindow.vala:186 msgid "Installed" msgstr "Installiert" -#: src/Common/LinuxKernel.vala:1012 src/Gtk/MainWindow.vala:186 -#: src/Gtk/MainWindow.vala:641 src/Gtk/MainWindow.vala:655 +#: src/Common/LinuxKernel.vala:1026 src/Gtk/MainWindow.vala:186 +#: src/Gtk/MainWindow.vala:603 src/Gtk/MainWindow.vala:617 msgid "Running" msgstr "Läuft" -#: src/Common/LinuxKernel.vala:1049 +#: src/Common/LinuxKernel.vala:1063 msgid "Downloading" msgstr "Herunterladen" -#: src/Common/LinuxKernel.vala:1068 +#: src/Common/LinuxKernel.vala:1082 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:1073 +#: src/Common/LinuxKernel.vala:1087 msgid "ERROR" msgstr "Fehler" -#: src/Common/LinuxKernel.vala:1087 +#: src/Common/LinuxKernel.vala:1101 msgid "This kernel is already installed." msgstr "Dieser Kernel ist bereits installiert." -#: src/Common/LinuxKernel.vala:1113 +#: src/Common/LinuxKernel.vala:1127 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "Die Installation ist abgeschlossen. Ein Neustart ist erforderlich, um den " "neuen Kernel zu verwenden." -#: src/Common/LinuxKernel.vala:1116 +#: src/Common/LinuxKernel.vala:1130 msgid "Installation completed with errors" msgstr "Installation mit Fehlern abgeschlossen" -#: src/Common/LinuxKernel.vala:1137 +#: src/Common/LinuxKernel.vala:1151 msgid "" "Selected kernel is currently running and cannot be un-installed.\n" " Install another kernel before un-installing this one." @@ -119,19 +119,19 @@ msgstr "" "werden.\n" " Installieren Sie einen anderen Kernel, bevor Sie diesen deinstallieren." -#: src/Common/LinuxKernel.vala:1142 +#: src/Common/LinuxKernel.vala:1156 msgid "Preparing to uninstall selected kernels" msgstr "Vorbereiten der Deinstallation ausgewählter Kernel" -#: src/Common/LinuxKernel.vala:1173 src/Common/LinuxKernel.vala:1220 +#: src/Common/LinuxKernel.vala:1187 src/Common/LinuxKernel.vala:1234 msgid "Un-install completed" msgstr "Deinstallation abgeschlossen" -#: src/Common/LinuxKernel.vala:1176 src/Common/LinuxKernel.vala:1223 +#: src/Common/LinuxKernel.vala:1190 src/Common/LinuxKernel.vala:1237 msgid "Un-install completed with errors" msgstr "Deinstallation mit Fehlern abgeschlossen" -#: src/Common/LinuxKernel.vala:1189 +#: src/Common/LinuxKernel.vala:1203 msgid "" "This kernel is currently running and cannot be un-installed.\n" " Install another kernel before un-installing this one." @@ -139,11 +139,11 @@ msgstr "" "Dieser Kernel wird derzeit ausgeführt und kann nicht deinstalliert werden.\n" " Installieren Sie einen anderen Kernel, bevor Sie diesen deinstallieren." -#: src/Common/Main.vala:240 +#: src/Common/Main.vala:241 msgid "Called from" msgstr "Angerufen von" -#: src/Common/Main.vala:274 +#: src/Common/Main.vala:275 msgid "Notifications are disabled" msgstr "Benachrichtigungen sind deaktiviert" @@ -318,7 +318,7 @@ msgid "Uninstall" msgstr "Deinstallieren" #: src/Gtk/MainWindow.vala:372 src/Gtk/MainWindow.vala:405 -#: src/Gtk/MainWindow.vala:694 +#: src/Gtk/MainWindow.vala:656 msgid "Close window to exit..." msgstr "Fenster schließen zum Verlassen..." @@ -334,52 +334,43 @@ msgstr "Deinstallation von Kerneln, die älter sind als der aktuelle Kernel" msgid "Changes" msgstr "Änderungen" -#: src/Gtk/MainWindow.vala:428 -msgid "Error while downloading the changelog:\n" -msgstr "" - -#: src/Gtk/MainWindow.vala:438 -#, fuzzy -msgid "Downloading the changelog" -msgstr "Downloaded" - -#: src/Gtk/MainWindow.vala:460 src/Gtk/SettingsDialog.vala:50 +#: src/Gtk/MainWindow.vala:423 src/Gtk/SettingsDialog.vala:50 msgid "Settings" msgstr "Einstellungen" -#: src/Gtk/MainWindow.vala:483 +#: src/Gtk/MainWindow.vala:446 msgid "About" msgstr "Über" -#: src/Gtk/MainWindow.vala:528 +#: src/Gtk/MainWindow.vala:491 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Kernel-Upgrade-Dienstprogramm für Ubuntu-basierte Distributionen" -#: src/Gtk/MainWindow.vala:529 +#: src/Gtk/MainWindow.vala:492 msgid "Forked" msgstr "Forked" -#: src/Gtk/MainWindow.vala:529 +#: src/Gtk/MainWindow.vala:492 msgid "Original" msgstr "Original" -#: src/Gtk/MainWindow.vala:566 +#: src/Gtk/MainWindow.vala:524 msgid "Refreshing..." msgstr "Auffrischen..." -#: src/Gtk/MainWindow.vala:651 +#: src/Gtk/MainWindow.vala:613 msgid "available" msgstr "Verfügbar" -#: src/Gtk/MainWindow.vala:709 +#: src/Gtk/MainWindow.vala:671 msgid "No Internet" msgstr "Kein Internet" -#: src/Gtk/MainWindow.vala:710 +#: src/Gtk/MainWindow.vala:672 msgid "Internet connection is not active." msgstr "Die Internetverbindung ist nicht aktiv." -#: src/Gtk/ProgressWindow.vala:127 src/Gtk/TerminalWindow.vala:149 +#: src/Gtk/ProgressWindow.vala:142 src/Gtk/TerminalWindow.vala:149 msgid "Cancel" msgstr "Abbrechen" diff --git a/po/el.po b/po/el.po index a04a206f..c08fa797 100644 --- a/po/el.po +++ b/po/el.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-02-21 12:35-0500\n" +"POT-Creation-Date: 2023-02-23 08:45-0500\n" "PO-Revision-Date: 2023-01-10 02:03-0600\n" "Last-Translator: Vasilis Kosmidis \n" "Language-Team: Greek\n" @@ -21,97 +21,97 @@ msgstr "Διανομή" msgid "Architecture" msgstr "Αρχιτεκτονική" -#: src/Common/LinuxKernel.vala:300 +#: src/Common/LinuxKernel.vala:298 msgid "Fetching index..." msgstr "Ανάκτηση ευρετηρίου..." -#: src/Common/LinuxKernel.vala:332 +#: src/Common/LinuxKernel.vala:337 msgid "Fetching index from kernel.ubuntu.com..." msgstr "Ανάκτηση ευρετηρίου από το kernel.ubuntu.com..." -#: src/Common/LinuxKernel.vala:579 +#: src/Common/LinuxKernel.vala:593 msgid "Could not find running kernel in list!" msgstr "Δεν ήταν δυνατή η εύρεση του τρέχοντος πυρήνα στη λίστα!" -#: src/Common/LinuxKernel.vala:585 +#: src/Common/LinuxKernel.vala:599 msgid "Could not find any kernels to uninstall" msgstr "Δεν βρέθηκε κανένας πυρήνας για απεγκατάσταση" -#: src/Common/LinuxKernel.vala:594 +#: src/Common/LinuxKernel.vala:608 #, fuzzy msgid "The following kernels will be uninstalled:" msgstr "Αυτός ο πυρήνας είναι ήδη εγκατεστημένος." -#: src/Common/LinuxKernel.vala:601 +#: src/Common/LinuxKernel.vala:615 msgid "Continue ?" msgstr "Συνέχεια;" -#: src/Common/LinuxKernel.vala:627 src/Console/AppConsole.vala:314 +#: src/Common/LinuxKernel.vala:641 src/Console/AppConsole.vala:314 msgid "Latest update" msgstr "Τελευταία αναβάθμιση" -#: src/Common/LinuxKernel.vala:638 src/Console/AppConsole.vala:321 +#: src/Common/LinuxKernel.vala:652 src/Console/AppConsole.vala:321 msgid "Latest point update" msgstr "Τελευταία ενημέρωση συντήρησης" -#: src/Common/LinuxKernel.vala:646 src/Console/AppConsole.vala:326 +#: src/Common/LinuxKernel.vala:660 src/Console/AppConsole.vala:326 #: src/Console/AppConsole.vala:387 msgid "No updates found" msgstr "Δεν βρέθηκαν ενημερώσεις" -#: src/Common/LinuxKernel.vala:656 +#: src/Common/LinuxKernel.vala:670 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Εγκατάσταση του πυρήνα έκδοσης %s ; (ν/ό):" -#: src/Common/LinuxKernel.vala:917 +#: src/Common/LinuxKernel.vala:931 msgid "Packages Available" msgstr "Διαθέσιμα πακέτα" -#: src/Common/LinuxKernel.vala:925 +#: src/Common/LinuxKernel.vala:939 msgid "Packages Installed" msgstr "Εγκατεστημένα πακέτα" -#: src/Common/LinuxKernel.vala:1005 +#: src/Common/LinuxKernel.vala:1019 msgid "Available Kernels" msgstr "Διαθέσιμοι πυρήνες" -#: src/Common/LinuxKernel.vala:1012 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1026 src/Gtk/MainWindow.vala:186 msgid "Installed" msgstr "Εγκατεστημένος" -#: src/Common/LinuxKernel.vala:1012 src/Gtk/MainWindow.vala:186 -#: src/Gtk/MainWindow.vala:641 src/Gtk/MainWindow.vala:655 +#: src/Common/LinuxKernel.vala:1026 src/Gtk/MainWindow.vala:186 +#: src/Gtk/MainWindow.vala:603 src/Gtk/MainWindow.vala:617 msgid "Running" msgstr "Ενεργός" -#: src/Common/LinuxKernel.vala:1049 +#: src/Common/LinuxKernel.vala:1063 msgid "Downloading" msgstr "Λήψη" -#: src/Common/LinuxKernel.vala:1068 +#: src/Common/LinuxKernel.vala:1082 msgid "OK" msgstr "ΟΚ" -#: src/Common/LinuxKernel.vala:1073 +#: src/Common/LinuxKernel.vala:1087 msgid "ERROR" msgstr "ΣΦΑΛΜΑ" -#: src/Common/LinuxKernel.vala:1087 +#: src/Common/LinuxKernel.vala:1101 msgid "This kernel is already installed." msgstr "Αυτός ο πυρήνας είναι ήδη εγκατεστημένος." -#: src/Common/LinuxKernel.vala:1113 +#: src/Common/LinuxKernel.vala:1127 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "Η εγκατάσταση ολοκληρώθηκε. Απαιτείται επανεκκίνηση για τη χρήση του νέου " "πυρήνα." -#: src/Common/LinuxKernel.vala:1116 +#: src/Common/LinuxKernel.vala:1130 msgid "Installation completed with errors" msgstr "Η εγκατάσταση ολοκληρώθηκε με σφάλματα" -#: src/Common/LinuxKernel.vala:1137 +#: src/Common/LinuxKernel.vala:1151 msgid "" "Selected kernel is currently running and cannot be un-installed.\n" " Install another kernel before un-installing this one." @@ -120,19 +120,19 @@ msgstr "" "απεγκατασταθεί.\n" " Εγκαταστήστε έναν άλλο πυρήνα πριν απεγκαταστήσετε αυτόν." -#: src/Common/LinuxKernel.vala:1142 +#: src/Common/LinuxKernel.vala:1156 msgid "Preparing to uninstall selected kernels" msgstr "Προετοιμασία για απεγκατάσταση επιλεγμένων πυρήνων" -#: src/Common/LinuxKernel.vala:1173 src/Common/LinuxKernel.vala:1220 +#: src/Common/LinuxKernel.vala:1187 src/Common/LinuxKernel.vala:1234 msgid "Un-install completed" msgstr "Η απεγκατάσταση ολοκληρώθηκε" -#: src/Common/LinuxKernel.vala:1176 src/Common/LinuxKernel.vala:1223 +#: src/Common/LinuxKernel.vala:1190 src/Common/LinuxKernel.vala:1237 msgid "Un-install completed with errors" msgstr "Η απεγκατάσταση ολοκληρώθηκε με σφάλματα" -#: src/Common/LinuxKernel.vala:1189 +#: src/Common/LinuxKernel.vala:1203 msgid "" "This kernel is currently running and cannot be un-installed.\n" " Install another kernel before un-installing this one." @@ -141,11 +141,11 @@ msgstr "" "απεγκατασταθεί.\n" " Εγκαταστήστε έναν άλλο πυρήνα πριν απεγκαταστήσετε αυτόν." -#: src/Common/Main.vala:240 +#: src/Common/Main.vala:241 msgid "Called from" msgstr "Κλήθηκε από" -#: src/Common/Main.vala:274 +#: src/Common/Main.vala:275 msgid "Notifications are disabled" msgstr "Οι ειδοποιήσεις είναι απενεργοποιημένες" @@ -318,7 +318,7 @@ msgid "Uninstall" msgstr "Απεγκατάσταση" #: src/Gtk/MainWindow.vala:372 src/Gtk/MainWindow.vala:405 -#: src/Gtk/MainWindow.vala:694 +#: src/Gtk/MainWindow.vala:656 msgid "Close window to exit..." msgstr "Κλείστε το παράθυρο για έξοδο..." @@ -334,52 +334,43 @@ msgstr "Απεγκαταστήστε πυρήνες παλαιότερους α msgid "Changes" msgstr "Αλλαγές" -#: src/Gtk/MainWindow.vala:428 -msgid "Error while downloading the changelog:\n" -msgstr "" - -#: src/Gtk/MainWindow.vala:438 -#, fuzzy -msgid "Downloading the changelog" -msgstr "Λήψη" - -#: src/Gtk/MainWindow.vala:460 src/Gtk/SettingsDialog.vala:50 +#: src/Gtk/MainWindow.vala:423 src/Gtk/SettingsDialog.vala:50 msgid "Settings" msgstr "Ρυθμίσεις" -#: src/Gtk/MainWindow.vala:483 +#: src/Gtk/MainWindow.vala:446 msgid "About" msgstr "Σχετικά" -#: src/Gtk/MainWindow.vala:528 +#: src/Gtk/MainWindow.vala:491 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Πρόγραμμα αναβάθμισης πυρήνα για διανομές που βασίζονται στο Ubuntu" -#: src/Gtk/MainWindow.vala:529 +#: src/Gtk/MainWindow.vala:492 msgid "Forked" msgstr "Forked" -#: src/Gtk/MainWindow.vala:529 +#: src/Gtk/MainWindow.vala:492 msgid "Original" msgstr "Πρωτότυπο" -#: src/Gtk/MainWindow.vala:566 +#: src/Gtk/MainWindow.vala:524 msgid "Refreshing..." msgstr "Ανανέωση..." -#: src/Gtk/MainWindow.vala:651 +#: src/Gtk/MainWindow.vala:613 msgid "available" msgstr "διαθέσιμος" -#: src/Gtk/MainWindow.vala:709 +#: src/Gtk/MainWindow.vala:671 msgid "No Internet" msgstr "Χωρίς διαδίκτυο" -#: src/Gtk/MainWindow.vala:710 +#: src/Gtk/MainWindow.vala:672 msgid "Internet connection is not active." msgstr "Η σύνδεση στο διαδίκτυο δεν είναι ενεργή." -#: src/Gtk/ProgressWindow.vala:127 src/Gtk/TerminalWindow.vala:149 +#: src/Gtk/ProgressWindow.vala:142 src/Gtk/TerminalWindow.vala:149 msgid "Cancel" msgstr "Άκυρο" diff --git a/po/es.po b/po/es.po index 39a1f665..c8f20566 100644 --- a/po/es.po +++ b/po/es.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-02-21 12:35-0500\n" +"POT-Creation-Date: 2023-02-23 08:45-0500\n" "PO-Revision-Date: 2018-01-03 02:03-0600\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish\n" @@ -21,97 +21,97 @@ msgstr "Distribución" msgid "Architecture" msgstr "Arquitectura del sistema" -#: src/Common/LinuxKernel.vala:300 +#: src/Common/LinuxKernel.vala:298 msgid "Fetching index..." msgstr "Recuperando índice..." -#: src/Common/LinuxKernel.vala:332 +#: src/Common/LinuxKernel.vala:337 msgid "Fetching index from kernel.ubuntu.com..." msgstr "Recuperando índice de kernel.ubuntu.com…" -#: src/Common/LinuxKernel.vala:579 +#: src/Common/LinuxKernel.vala:593 msgid "Could not find running kernel in list!" msgstr "¡No se pudo encontrar el núcleo en ejecución en la lista!" -#: src/Common/LinuxKernel.vala:585 +#: src/Common/LinuxKernel.vala:599 #, fuzzy msgid "Could not find any kernels to uninstall" msgstr "Seleccione los núcleos que se desinstalarán" -#: src/Common/LinuxKernel.vala:594 +#: src/Common/LinuxKernel.vala:608 #, fuzzy msgid "The following kernels will be uninstalled:" msgstr "Los siguientes kernels serán eliminados:" -#: src/Common/LinuxKernel.vala:601 +#: src/Common/LinuxKernel.vala:615 msgid "Continue ?" msgstr "¿Continuar?" -#: src/Common/LinuxKernel.vala:627 src/Console/AppConsole.vala:314 +#: src/Common/LinuxKernel.vala:641 src/Console/AppConsole.vala:314 msgid "Latest update" msgstr "" -#: src/Common/LinuxKernel.vala:638 src/Console/AppConsole.vala:321 +#: src/Common/LinuxKernel.vala:652 src/Console/AppConsole.vala:321 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:646 src/Console/AppConsole.vala:326 +#: src/Common/LinuxKernel.vala:660 src/Console/AppConsole.vala:326 #: src/Console/AppConsole.vala:387 msgid "No updates found" msgstr "No se encontró ninguna actualización" -#: src/Common/LinuxKernel.vala:656 +#: src/Common/LinuxKernel.vala:670 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "" -#: src/Common/LinuxKernel.vala:917 +#: src/Common/LinuxKernel.vala:931 msgid "Packages Available" msgstr "Paquetes disponibles" -#: src/Common/LinuxKernel.vala:925 +#: src/Common/LinuxKernel.vala:939 msgid "Packages Installed" msgstr "Paquetes instalados" -#: src/Common/LinuxKernel.vala:1005 +#: src/Common/LinuxKernel.vala:1019 msgid "Available Kernels" msgstr "Núcleos disponibles" -#: src/Common/LinuxKernel.vala:1012 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1026 src/Gtk/MainWindow.vala:186 msgid "Installed" msgstr "Instalado" -#: src/Common/LinuxKernel.vala:1012 src/Gtk/MainWindow.vala:186 -#: src/Gtk/MainWindow.vala:641 src/Gtk/MainWindow.vala:655 +#: src/Common/LinuxKernel.vala:1026 src/Gtk/MainWindow.vala:186 +#: src/Gtk/MainWindow.vala:603 src/Gtk/MainWindow.vala:617 msgid "Running" msgstr "En ejecución" -#: src/Common/LinuxKernel.vala:1049 +#: src/Common/LinuxKernel.vala:1063 msgid "Downloading" msgstr "Descargando" -#: src/Common/LinuxKernel.vala:1068 +#: src/Common/LinuxKernel.vala:1082 msgid "OK" msgstr "Aceptar" -#: src/Common/LinuxKernel.vala:1073 +#: src/Common/LinuxKernel.vala:1087 msgid "ERROR" msgstr "ERROR" -#: src/Common/LinuxKernel.vala:1087 +#: src/Common/LinuxKernel.vala:1101 msgid "This kernel is already installed." msgstr "Este núcleo ya se instaló." -#: src/Common/LinuxKernel.vala:1113 +#: src/Common/LinuxKernel.vala:1127 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "Instalación finalizada. Se necesita reiniciar para utilizar el núcleo nuevo." -#: src/Common/LinuxKernel.vala:1116 +#: src/Common/LinuxKernel.vala:1130 msgid "Installation completed with errors" msgstr "Instalación finalizada con errores" -#: src/Common/LinuxKernel.vala:1137 +#: src/Common/LinuxKernel.vala:1151 #, fuzzy msgid "" "Selected kernel is currently running and cannot be un-installed.\n" @@ -120,20 +120,20 @@ msgstr "" "El núcleo seleccionado está en ejecución y no puede desinstalarse.\n" "Instale otro núcleo antes de desinstalar este." -#: src/Common/LinuxKernel.vala:1142 +#: src/Common/LinuxKernel.vala:1156 #, fuzzy msgid "Preparing to uninstall selected kernels" msgstr "Preparándose para desinstalar los núcleos seleccionados" -#: src/Common/LinuxKernel.vala:1173 src/Common/LinuxKernel.vala:1220 +#: src/Common/LinuxKernel.vala:1187 src/Common/LinuxKernel.vala:1234 msgid "Un-install completed" msgstr "Desinstalación finalizada" -#: src/Common/LinuxKernel.vala:1176 src/Common/LinuxKernel.vala:1223 +#: src/Common/LinuxKernel.vala:1190 src/Common/LinuxKernel.vala:1237 msgid "Un-install completed with errors" msgstr "Desinstalación finalizada con errores" -#: src/Common/LinuxKernel.vala:1189 +#: src/Common/LinuxKernel.vala:1203 #, fuzzy msgid "" "This kernel is currently running and cannot be un-installed.\n" @@ -142,11 +142,11 @@ msgstr "" "Este núcleo está en ejecución y no se puede desinstalar.\n" "Instale otro núcleo antes de desinstalar este." -#: src/Common/Main.vala:240 +#: src/Common/Main.vala:241 msgid "Called from" msgstr "" -#: src/Common/Main.vala:274 +#: src/Common/Main.vala:275 #, fuzzy msgid "Notifications are disabled" msgstr "Notificación" @@ -324,7 +324,7 @@ msgid "Uninstall" msgstr "Instalar" #: src/Gtk/MainWindow.vala:372 src/Gtk/MainWindow.vala:405 -#: src/Gtk/MainWindow.vala:694 +#: src/Gtk/MainWindow.vala:656 msgid "Close window to exit..." msgstr "" @@ -341,55 +341,46 @@ msgstr "" msgid "Changes" msgstr "Cambios" -#: src/Gtk/MainWindow.vala:428 -msgid "Error while downloading the changelog:\n" -msgstr "" - -#: src/Gtk/MainWindow.vala:438 -#, fuzzy -msgid "Downloading the changelog" -msgstr "Descargando" - -#: src/Gtk/MainWindow.vala:460 src/Gtk/SettingsDialog.vala:50 +#: src/Gtk/MainWindow.vala:423 src/Gtk/SettingsDialog.vala:50 msgid "Settings" msgstr "Configuración" -#: src/Gtk/MainWindow.vala:483 +#: src/Gtk/MainWindow.vala:446 msgid "About" msgstr "Acerca de" -#: src/Gtk/MainWindow.vala:528 +#: src/Gtk/MainWindow.vala:491 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "" "Herramienta de renovación de núcleo para distribuciones basadas en Ubuntu" -#: src/Gtk/MainWindow.vala:529 +#: src/Gtk/MainWindow.vala:492 msgid "Forked" msgstr "" -#: src/Gtk/MainWindow.vala:529 +#: src/Gtk/MainWindow.vala:492 msgid "Original" msgstr "" -#: src/Gtk/MainWindow.vala:566 +#: src/Gtk/MainWindow.vala:524 msgid "Refreshing..." msgstr "Actualizando…" -#: src/Gtk/MainWindow.vala:651 +#: src/Gtk/MainWindow.vala:613 #, fuzzy msgid "available" msgstr "Paquetes disponibles" -#: src/Gtk/MainWindow.vala:709 +#: src/Gtk/MainWindow.vala:671 msgid "No Internet" msgstr "No hay Internet" -#: src/Gtk/MainWindow.vala:710 +#: src/Gtk/MainWindow.vala:672 #, fuzzy msgid "Internet connection is not active." msgstr "La conexión a Internet está inactiva" -#: src/Gtk/ProgressWindow.vala:127 src/Gtk/TerminalWindow.vala:149 +#: src/Gtk/ProgressWindow.vala:142 src/Gtk/TerminalWindow.vala:149 msgid "Cancel" msgstr "Cancelar" diff --git a/po/fr.po b/po/fr.po index f11ed489..b21f8760 100644 --- a/po/fr.po +++ b/po/fr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-02-21 12:35-0500\n" +"POT-Creation-Date: 2023-02-23 08:45-0500\n" "PO-Revision-Date: 2018-08-05 15:50+0200\n" "Last-Translator: Yolateng0 \n" "Language-Team: French\n" @@ -21,98 +21,98 @@ msgstr "Distribution" msgid "Architecture" msgstr "Architecture" -#: src/Common/LinuxKernel.vala:300 +#: src/Common/LinuxKernel.vala:298 msgid "Fetching index..." msgstr "Récupération de l'index..." -#: src/Common/LinuxKernel.vala:332 +#: src/Common/LinuxKernel.vala:337 msgid "Fetching index from kernel.ubuntu.com..." msgstr "Récupération de l'index depuis kernel.ubuntu.com..." -#: src/Common/LinuxKernel.vala:579 +#: src/Common/LinuxKernel.vala:593 msgid "Could not find running kernel in list!" msgstr "Impossible de trouver la version courante dans la liste!" -#: src/Common/LinuxKernel.vala:585 +#: src/Common/LinuxKernel.vala:599 #, fuzzy msgid "Could not find any kernels to uninstall" msgstr "Impossible de trouver de noyaux à supprimer" -#: src/Common/LinuxKernel.vala:594 +#: src/Common/LinuxKernel.vala:608 #, fuzzy msgid "The following kernels will be uninstalled:" msgstr "Les noyaux suivants seront supprimés:" -#: src/Common/LinuxKernel.vala:601 +#: src/Common/LinuxKernel.vala:615 msgid "Continue ?" msgstr "Reprendre ?" -#: src/Common/LinuxKernel.vala:627 src/Console/AppConsole.vala:314 +#: src/Common/LinuxKernel.vala:641 src/Console/AppConsole.vala:314 msgid "Latest update" msgstr "Dernière mise à jour" -#: src/Common/LinuxKernel.vala:638 src/Console/AppConsole.vala:321 +#: src/Common/LinuxKernel.vala:652 src/Console/AppConsole.vala:321 msgid "Latest point update" msgstr "Dernière mise à jour mineure" -#: src/Common/LinuxKernel.vala:646 src/Console/AppConsole.vala:326 +#: src/Common/LinuxKernel.vala:660 src/Console/AppConsole.vala:326 #: src/Console/AppConsole.vala:387 msgid "No updates found" msgstr "Aucune mise à jour disponible" -#: src/Common/LinuxKernel.vala:656 +#: src/Common/LinuxKernel.vala:670 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Installer le noyau en version %s ? (y/n): " -#: src/Common/LinuxKernel.vala:917 +#: src/Common/LinuxKernel.vala:931 msgid "Packages Available" msgstr "Paquets Disponibles" -#: src/Common/LinuxKernel.vala:925 +#: src/Common/LinuxKernel.vala:939 msgid "Packages Installed" msgstr "Paquets Installés" -#: src/Common/LinuxKernel.vala:1005 +#: src/Common/LinuxKernel.vala:1019 msgid "Available Kernels" msgstr "Noyaux Disponibles" -#: src/Common/LinuxKernel.vala:1012 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1026 src/Gtk/MainWindow.vala:186 msgid "Installed" msgstr "Installé" -#: src/Common/LinuxKernel.vala:1012 src/Gtk/MainWindow.vala:186 -#: src/Gtk/MainWindow.vala:641 src/Gtk/MainWindow.vala:655 +#: src/Common/LinuxKernel.vala:1026 src/Gtk/MainWindow.vala:186 +#: src/Gtk/MainWindow.vala:603 src/Gtk/MainWindow.vala:617 msgid "Running" msgstr "Actuel" -#: src/Common/LinuxKernel.vala:1049 +#: src/Common/LinuxKernel.vala:1063 msgid "Downloading" msgstr "Téléchargement" -#: src/Common/LinuxKernel.vala:1068 +#: src/Common/LinuxKernel.vala:1082 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:1073 +#: src/Common/LinuxKernel.vala:1087 msgid "ERROR" msgstr "ERREUR" -#: src/Common/LinuxKernel.vala:1087 +#: src/Common/LinuxKernel.vala:1101 msgid "This kernel is already installed." msgstr "Ce noyau est déjà installé." -#: src/Common/LinuxKernel.vala:1113 +#: src/Common/LinuxKernel.vala:1127 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "Installation complétée. Un redémarrage est nécessaire pour utiliser le " "nouveau noyau." -#: src/Common/LinuxKernel.vala:1116 +#: src/Common/LinuxKernel.vala:1130 msgid "Installation completed with errors" msgstr "Installation terminée avec des erreurs" -#: src/Common/LinuxKernel.vala:1137 +#: src/Common/LinuxKernel.vala:1151 #, fuzzy msgid "" "Selected kernel is currently running and cannot be un-installed.\n" @@ -121,20 +121,20 @@ msgstr "" "Ce noyau est en cours d'exécution et ne peut pas être supprimé.\n" " Installez un autre noyau avant de retirer celui-ci." -#: src/Common/LinuxKernel.vala:1142 +#: src/Common/LinuxKernel.vala:1156 #, fuzzy msgid "Preparing to uninstall selected kernels" msgstr "Préparation à la suppression des noyaux sélectionnés" -#: src/Common/LinuxKernel.vala:1173 src/Common/LinuxKernel.vala:1220 +#: src/Common/LinuxKernel.vala:1187 src/Common/LinuxKernel.vala:1234 msgid "Un-install completed" msgstr "Désinstallation complète" -#: src/Common/LinuxKernel.vala:1176 src/Common/LinuxKernel.vala:1223 +#: src/Common/LinuxKernel.vala:1190 src/Common/LinuxKernel.vala:1237 msgid "Un-install completed with errors" msgstr "Désinstallation terminée avec des erreurs" -#: src/Common/LinuxKernel.vala:1189 +#: src/Common/LinuxKernel.vala:1203 #, fuzzy msgid "" "This kernel is currently running and cannot be un-installed.\n" @@ -143,11 +143,11 @@ msgstr "" "Ce noyau est en cours d'exécution et ne peut pas être supprimé.\n" " Installez un autre noyau avant de retirer celui-ci." -#: src/Common/Main.vala:240 +#: src/Common/Main.vala:241 msgid "Called from" msgstr "" -#: src/Common/Main.vala:274 +#: src/Common/Main.vala:275 msgid "Notifications are disabled" msgstr "Les notifications sont désactivées" @@ -325,7 +325,7 @@ msgid "Uninstall" msgstr "Installer" #: src/Gtk/MainWindow.vala:372 src/Gtk/MainWindow.vala:405 -#: src/Gtk/MainWindow.vala:694 +#: src/Gtk/MainWindow.vala:656 msgid "Close window to exit..." msgstr "Fermer la fenêtre pour quitter..." @@ -343,54 +343,45 @@ msgstr "Désinstalle les noyaux plus anciens que le noyau courant" msgid "Changes" msgstr "Changements" -#: src/Gtk/MainWindow.vala:428 -msgid "Error while downloading the changelog:\n" -msgstr "" - -#: src/Gtk/MainWindow.vala:438 -#, fuzzy -msgid "Downloading the changelog" -msgstr "Téléchargement" - -#: src/Gtk/MainWindow.vala:460 src/Gtk/SettingsDialog.vala:50 +#: src/Gtk/MainWindow.vala:423 src/Gtk/SettingsDialog.vala:50 msgid "Settings" msgstr "Paramètres" -#: src/Gtk/MainWindow.vala:483 +#: src/Gtk/MainWindow.vala:446 msgid "About" msgstr "À propos" -#: src/Gtk/MainWindow.vala:528 +#: src/Gtk/MainWindow.vala:491 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "" "Utilitaire de mise à niveau des noyaux pour les distributions basées sur " "Ubuntu" -#: src/Gtk/MainWindow.vala:529 +#: src/Gtk/MainWindow.vala:492 msgid "Forked" msgstr "Version forkée :" -#: src/Gtk/MainWindow.vala:529 +#: src/Gtk/MainWindow.vala:492 msgid "Original" msgstr "Version originale :" -#: src/Gtk/MainWindow.vala:566 +#: src/Gtk/MainWindow.vala:524 msgid "Refreshing..." msgstr "Actualisation..." -#: src/Gtk/MainWindow.vala:651 +#: src/Gtk/MainWindow.vala:613 msgid "available" msgstr "disponible" -#: src/Gtk/MainWindow.vala:709 +#: src/Gtk/MainWindow.vala:671 msgid "No Internet" msgstr "Pas d'Internet" -#: src/Gtk/MainWindow.vala:710 +#: src/Gtk/MainWindow.vala:672 msgid "Internet connection is not active." msgstr "Connexion internet inexistante" -#: src/Gtk/ProgressWindow.vala:127 src/Gtk/TerminalWindow.vala:149 +#: src/Gtk/ProgressWindow.vala:142 src/Gtk/TerminalWindow.vala:149 msgid "Cancel" msgstr "Annuler" diff --git a/po/hr.po b/po/hr.po index 07d6af1d..52cd7372 100644 --- a/po/hr.po +++ b/po/hr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-02-21 12:35-0500\n" +"POT-Creation-Date: 2023-02-23 08:45-0500\n" "PO-Revision-Date: 2022-09-22 12:13+0200\n" "Last-Translator: gogo \n" "Language-Team: Croatian\n" @@ -21,96 +21,96 @@ msgstr "Distribucija" msgid "Architecture" msgstr "Arhitektura" -#: src/Common/LinuxKernel.vala:300 +#: src/Common/LinuxKernel.vala:298 msgid "Fetching index..." msgstr "Preuzimanje sadržaja..." -#: src/Common/LinuxKernel.vala:332 +#: src/Common/LinuxKernel.vala:337 msgid "Fetching index from kernel.ubuntu.com..." msgstr "Preuzimanje sadržaja sa kernel.ubuntu.com..." -#: src/Common/LinuxKernel.vala:579 +#: src/Common/LinuxKernel.vala:593 msgid "Could not find running kernel in list!" msgstr "Nemoguće je pronaći pokrenuti kernel na popisu!" -#: src/Common/LinuxKernel.vala:585 +#: src/Common/LinuxKernel.vala:599 msgid "Could not find any kernels to uninstall" msgstr "Nema pronađenih kernela za deinstaliranje" -#: src/Common/LinuxKernel.vala:594 +#: src/Common/LinuxKernel.vala:608 msgid "The following kernels will be uninstalled:" msgstr "Sljedeći kerneli će biti deinstalirani:" -#: src/Common/LinuxKernel.vala:601 +#: src/Common/LinuxKernel.vala:615 msgid "Continue ?" msgstr "Nastavi?" -#: src/Common/LinuxKernel.vala:627 src/Console/AppConsole.vala:314 +#: src/Common/LinuxKernel.vala:641 src/Console/AppConsole.vala:314 msgid "Latest update" msgstr "Najnovija nadopuna" -#: src/Common/LinuxKernel.vala:638 src/Console/AppConsole.vala:321 +#: src/Common/LinuxKernel.vala:652 src/Console/AppConsole.vala:321 msgid "Latest point update" msgstr "Najnovija ciljana nadopuna" -#: src/Common/LinuxKernel.vala:646 src/Console/AppConsole.vala:326 +#: src/Common/LinuxKernel.vala:660 src/Console/AppConsole.vala:326 #: src/Console/AppConsole.vala:387 msgid "No updates found" msgstr "Nema pronađenih nadopuna" -#: src/Common/LinuxKernel.vala:656 +#: src/Common/LinuxKernel.vala:670 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Instaliraj kernel inačice %s ? (d/n): " -#: src/Common/LinuxKernel.vala:917 +#: src/Common/LinuxKernel.vala:931 msgid "Packages Available" msgstr "Dostupni paketi" -#: src/Common/LinuxKernel.vala:925 +#: src/Common/LinuxKernel.vala:939 msgid "Packages Installed" msgstr "Instalirani paketi" -#: src/Common/LinuxKernel.vala:1005 +#: src/Common/LinuxKernel.vala:1019 msgid "Available Kernels" msgstr "Dostupni kerneli" -#: src/Common/LinuxKernel.vala:1012 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1026 src/Gtk/MainWindow.vala:186 msgid "Installed" msgstr "Instalirano" -#: src/Common/LinuxKernel.vala:1012 src/Gtk/MainWindow.vala:186 -#: src/Gtk/MainWindow.vala:641 src/Gtk/MainWindow.vala:655 +#: src/Common/LinuxKernel.vala:1026 src/Gtk/MainWindow.vala:186 +#: src/Gtk/MainWindow.vala:603 src/Gtk/MainWindow.vala:617 msgid "Running" msgstr "Pokrenuto" -#: src/Common/LinuxKernel.vala:1049 +#: src/Common/LinuxKernel.vala:1063 msgid "Downloading" msgstr "Preuzimanje" -#: src/Common/LinuxKernel.vala:1068 +#: src/Common/LinuxKernel.vala:1082 msgid "OK" msgstr "U redu" -#: src/Common/LinuxKernel.vala:1073 +#: src/Common/LinuxKernel.vala:1087 msgid "ERROR" msgstr "GREŠKA" -#: src/Common/LinuxKernel.vala:1087 +#: src/Common/LinuxKernel.vala:1101 msgid "This kernel is already installed." msgstr "Ovaj kernel je već instaliran." -#: src/Common/LinuxKernel.vala:1113 +#: src/Common/LinuxKernel.vala:1127 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "Instalacija je završena. Potrebno je ponovno pokretanje računala kako bi se " "koristio novi kernel." -#: src/Common/LinuxKernel.vala:1116 +#: src/Common/LinuxKernel.vala:1130 msgid "Installation completed with errors" msgstr "Instalacija je završena s greškama" -#: src/Common/LinuxKernel.vala:1137 +#: src/Common/LinuxKernel.vala:1151 msgid "" "Selected kernel is currently running and cannot be un-installed.\n" " Install another kernel before un-installing this one." @@ -118,19 +118,19 @@ msgstr "" "Odabrani kernel je trenutno pokernut i ne može se deinstalirati.\n" " Instalirajte drugi kernel prije uklanjanja trenutnog kernela." -#: src/Common/LinuxKernel.vala:1142 +#: src/Common/LinuxKernel.vala:1156 msgid "Preparing to uninstall selected kernels" msgstr "Pripremanje deinstalacije odabranih kernela" -#: src/Common/LinuxKernel.vala:1173 src/Common/LinuxKernel.vala:1220 +#: src/Common/LinuxKernel.vala:1187 src/Common/LinuxKernel.vala:1234 msgid "Un-install completed" msgstr "Deinstalacija završena" -#: src/Common/LinuxKernel.vala:1176 src/Common/LinuxKernel.vala:1223 +#: src/Common/LinuxKernel.vala:1190 src/Common/LinuxKernel.vala:1237 msgid "Un-install completed with errors" msgstr "Deinstalacija završena s greškama" -#: src/Common/LinuxKernel.vala:1189 +#: src/Common/LinuxKernel.vala:1203 msgid "" "This kernel is currently running and cannot be un-installed.\n" " Install another kernel before un-installing this one." @@ -138,11 +138,11 @@ msgstr "" "Ovaj kernel je trenutno pokrenut i ne može se deinstalirati.\n" " Instalirajte drugi kernel prije uklanjanja trenutnog kernela." -#: src/Common/Main.vala:240 +#: src/Common/Main.vala:241 msgid "Called from" msgstr "Pozvano od" -#: src/Common/Main.vala:274 +#: src/Common/Main.vala:275 msgid "Notifications are disabled" msgstr "Obavijesti su onemogućene" @@ -313,7 +313,7 @@ msgid "Uninstall" msgstr "Deinstaliraj" #: src/Gtk/MainWindow.vala:372 src/Gtk/MainWindow.vala:405 -#: src/Gtk/MainWindow.vala:694 +#: src/Gtk/MainWindow.vala:656 msgid "Close window to exit..." msgstr "Zatvori prozor i izađi..." @@ -329,52 +329,43 @@ msgstr "Deinstaliraj kernele starije od pokrenutog krenela" msgid "Changes" msgstr "Promjene" -#: src/Gtk/MainWindow.vala:428 -msgid "Error while downloading the changelog:\n" -msgstr "" - -#: src/Gtk/MainWindow.vala:438 -#, fuzzy -msgid "Downloading the changelog" -msgstr "Preuzimanje" - -#: src/Gtk/MainWindow.vala:460 src/Gtk/SettingsDialog.vala:50 +#: src/Gtk/MainWindow.vala:423 src/Gtk/SettingsDialog.vala:50 msgid "Settings" msgstr "Postavke" -#: src/Gtk/MainWindow.vala:483 +#: src/Gtk/MainWindow.vala:446 msgid "About" msgstr "O programu" -#: src/Gtk/MainWindow.vala:528 +#: src/Gtk/MainWindow.vala:491 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Alat za nadogradnju kernela Ubuntu temeljenih distribucija" -#: src/Gtk/MainWindow.vala:529 +#: src/Gtk/MainWindow.vala:492 msgid "Forked" msgstr "Forkano" -#: src/Gtk/MainWindow.vala:529 +#: src/Gtk/MainWindow.vala:492 msgid "Original" msgstr "Izvornik" -#: src/Gtk/MainWindow.vala:566 +#: src/Gtk/MainWindow.vala:524 msgid "Refreshing..." msgstr "Osvježavanje..." -#: src/Gtk/MainWindow.vala:651 +#: src/Gtk/MainWindow.vala:613 msgid "available" msgstr "dostupno" -#: src/Gtk/MainWindow.vala:709 +#: src/Gtk/MainWindow.vala:671 msgid "No Internet" msgstr "Nema pristupa internetu" -#: src/Gtk/MainWindow.vala:710 +#: src/Gtk/MainWindow.vala:672 msgid "Internet connection is not active." msgstr "Internet povezivanje nije aktivno." -#: src/Gtk/ProgressWindow.vala:127 src/Gtk/TerminalWindow.vala:149 +#: src/Gtk/ProgressWindow.vala:142 src/Gtk/TerminalWindow.vala:149 msgid "Cancel" msgstr "Odustani" diff --git a/po/it.po b/po/it.po index 4fad88ff..7856b09b 100644 --- a/po/it.po +++ b/po/it.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline 1.0.15\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-02-21 12:35-0500\n" +"POT-Creation-Date: 2023-02-23 08:45-0500\n" "PO-Revision-Date: 2020-08-22 15:35+0100\n" "Last-Translator: Albano Battistella \n" "Language-Team: Italian\n" @@ -19,96 +19,96 @@ msgstr "Distribuzione" msgid "Architecture" msgstr "Architettura" -#: src/Common/LinuxKernel.vala:300 +#: src/Common/LinuxKernel.vala:298 msgid "Fetching index..." msgstr "Recupero indice in corso..." -#: src/Common/LinuxKernel.vala:332 +#: src/Common/LinuxKernel.vala:337 msgid "Fetching index from kernel.ubuntu.com..." msgstr "Recupero dell'indice da kernel.ubuntu.com..." -#: src/Common/LinuxKernel.vala:579 +#: src/Common/LinuxKernel.vala:593 msgid "Could not find running kernel in list!" msgstr "Impossibile trovare il kernel in esecuzione nell'elenco!" -#: src/Common/LinuxKernel.vala:585 +#: src/Common/LinuxKernel.vala:599 msgid "Could not find any kernels to uninstall" msgstr "Impossibile trovare alcun kernel da rimuovere" -#: src/Common/LinuxKernel.vala:594 +#: src/Common/LinuxKernel.vala:608 msgid "The following kernels will be uninstalled:" msgstr "I seguenti kernel verranno rimossi:" -#: src/Common/LinuxKernel.vala:601 +#: src/Common/LinuxKernel.vala:615 msgid "Continue ?" msgstr "Continuare ?" -#: src/Common/LinuxKernel.vala:627 src/Console/AppConsole.vala:314 +#: src/Common/LinuxKernel.vala:641 src/Console/AppConsole.vala:314 msgid "Latest update" msgstr "Ultimo aggiornamento" -#: src/Common/LinuxKernel.vala:638 src/Console/AppConsole.vala:321 +#: src/Common/LinuxKernel.vala:652 src/Console/AppConsole.vala:321 msgid "Latest point update" msgstr "Ultimo aggiornamento del punto" -#: src/Common/LinuxKernel.vala:646 src/Console/AppConsole.vala:326 +#: src/Common/LinuxKernel.vala:660 src/Console/AppConsole.vala:326 #: src/Console/AppConsole.vala:387 msgid "No updates found" msgstr "Nessun aggiornamento trovato" -#: src/Common/LinuxKernel.vala:656 +#: src/Common/LinuxKernel.vala:670 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Installare la versione del kernel %s ? (y/n): " -#: src/Common/LinuxKernel.vala:917 +#: src/Common/LinuxKernel.vala:931 msgid "Packages Available" msgstr "Pacchetti disponibili" -#: src/Common/LinuxKernel.vala:925 +#: src/Common/LinuxKernel.vala:939 msgid "Packages Installed" msgstr "Pacchetti installati" -#: src/Common/LinuxKernel.vala:1005 +#: src/Common/LinuxKernel.vala:1019 msgid "Available Kernels" msgstr "Kernel disponibili" -#: src/Common/LinuxKernel.vala:1012 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1026 src/Gtk/MainWindow.vala:186 msgid "Installed" msgstr "Installato" -#: src/Common/LinuxKernel.vala:1012 src/Gtk/MainWindow.vala:186 -#: src/Gtk/MainWindow.vala:641 src/Gtk/MainWindow.vala:655 +#: src/Common/LinuxKernel.vala:1026 src/Gtk/MainWindow.vala:186 +#: src/Gtk/MainWindow.vala:603 src/Gtk/MainWindow.vala:617 msgid "Running" msgstr "In esecuzione" -#: src/Common/LinuxKernel.vala:1049 +#: src/Common/LinuxKernel.vala:1063 msgid "Downloading" msgstr "Download in corso" -#: src/Common/LinuxKernel.vala:1068 +#: src/Common/LinuxKernel.vala:1082 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:1073 +#: src/Common/LinuxKernel.vala:1087 msgid "ERROR" msgstr "ERRORE" -#: src/Common/LinuxKernel.vala:1087 +#: src/Common/LinuxKernel.vala:1101 msgid "This kernel is already installed." msgstr "Questo kernel è già installato" -#: src/Common/LinuxKernel.vala:1113 +#: src/Common/LinuxKernel.vala:1127 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "Installazione completata. È necessario riavviare per utilizzare ilnuovo " "kernel." -#: src/Common/LinuxKernel.vala:1116 +#: src/Common/LinuxKernel.vala:1130 msgid "Installation completed with errors" msgstr "Installazione completata con errori" -#: src/Common/LinuxKernel.vala:1137 +#: src/Common/LinuxKernel.vala:1151 msgid "" "Selected kernel is currently running and cannot be un-installed.\n" " Install another kernel before un-installing this one." @@ -116,19 +116,19 @@ msgstr "" "Il kernel selezionato è attualmente in esecuzione e non può essere rimosso.\n" "Installa un altro kernel prima di rimuovere questo." -#: src/Common/LinuxKernel.vala:1142 +#: src/Common/LinuxKernel.vala:1156 msgid "Preparing to uninstall selected kernels" msgstr "Preparazione per rimuovere i kernel selezionati" -#: src/Common/LinuxKernel.vala:1173 src/Common/LinuxKernel.vala:1220 +#: src/Common/LinuxKernel.vala:1187 src/Common/LinuxKernel.vala:1234 msgid "Un-install completed" msgstr "Disinstallazione completata" -#: src/Common/LinuxKernel.vala:1176 src/Common/LinuxKernel.vala:1223 +#: src/Common/LinuxKernel.vala:1190 src/Common/LinuxKernel.vala:1237 msgid "Un-install completed with errors" msgstr "Disinstallazione completata con errori" -#: src/Common/LinuxKernel.vala:1189 +#: src/Common/LinuxKernel.vala:1203 msgid "" "This kernel is currently running and cannot be un-installed.\n" " Install another kernel before un-installing this one." @@ -136,11 +136,11 @@ msgstr "" "Questo kernel è attualmente in esecuzione e non può essere rimosso.\n" " Installa un altro kernel prima di rimuovere questo." -#: src/Common/Main.vala:240 +#: src/Common/Main.vala:241 msgid "Called from" msgstr "Chiamata da" -#: src/Common/Main.vala:274 +#: src/Common/Main.vala:275 msgid "Notifications are disabled" msgstr "Le notifiche sono disabilitate" @@ -314,7 +314,7 @@ msgid "Uninstall" msgstr "Disinstalla" #: src/Gtk/MainWindow.vala:372 src/Gtk/MainWindow.vala:405 -#: src/Gtk/MainWindow.vala:694 +#: src/Gtk/MainWindow.vala:656 msgid "Close window to exit..." msgstr "Chiudere la finestra per uscire..." @@ -330,52 +330,43 @@ msgstr "Rimuovere i kernel installati più vecchi del kernel in esecuzione" msgid "Changes" msgstr "Modifiche" -#: src/Gtk/MainWindow.vala:428 -msgid "Error while downloading the changelog:\n" -msgstr "" - -#: src/Gtk/MainWindow.vala:438 -#, fuzzy -msgid "Downloading the changelog" -msgstr "Download in corso" - -#: src/Gtk/MainWindow.vala:460 src/Gtk/SettingsDialog.vala:50 +#: src/Gtk/MainWindow.vala:423 src/Gtk/SettingsDialog.vala:50 msgid "Settings" msgstr "Impostazioni" -#: src/Gtk/MainWindow.vala:483 +#: src/Gtk/MainWindow.vala:446 msgid "About" msgstr "Informazioni" -#: src/Gtk/MainWindow.vala:528 +#: src/Gtk/MainWindow.vala:491 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Utilità di aggiornamento del kernel per distribuzioni basate su Ubuntu" -#: src/Gtk/MainWindow.vala:529 +#: src/Gtk/MainWindow.vala:492 msgid "Forked" msgstr "Forked" -#: src/Gtk/MainWindow.vala:529 +#: src/Gtk/MainWindow.vala:492 msgid "Original" msgstr "Originale" -#: src/Gtk/MainWindow.vala:566 +#: src/Gtk/MainWindow.vala:524 msgid "Refreshing..." msgstr "Aggiornamento..." -#: src/Gtk/MainWindow.vala:651 +#: src/Gtk/MainWindow.vala:613 msgid "available" msgstr "disponibile" -#: src/Gtk/MainWindow.vala:709 +#: src/Gtk/MainWindow.vala:671 msgid "No Internet" msgstr "Nessuna connessione internet" -#: src/Gtk/MainWindow.vala:710 +#: src/Gtk/MainWindow.vala:672 msgid "Internet connection is not active." msgstr "La connessione Internet non è attiva." -#: src/Gtk/ProgressWindow.vala:127 src/Gtk/TerminalWindow.vala:149 +#: src/Gtk/ProgressWindow.vala:142 src/Gtk/TerminalWindow.vala:149 msgid "Cancel" msgstr "Cancella" diff --git a/po/ko.po b/po/ko.po index 8bd17f97..07c83af6 100644 --- a/po/ko.po +++ b/po/ko.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline 1.0.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-02-21 12:35-0500\n" +"POT-Creation-Date: 2023-02-23 08:45-0500\n" "PO-Revision-Date: 2022-09-28 11:48+0900\n" "Last-Translator: Kevin Kim \n" "Language-Team: Korean\n" @@ -21,94 +21,94 @@ msgstr "배포판" msgid "Architecture" msgstr "아키텍처" -#: src/Common/LinuxKernel.vala:300 +#: src/Common/LinuxKernel.vala:298 msgid "Fetching index..." msgstr "목록 가져오기..." -#: src/Common/LinuxKernel.vala:332 +#: src/Common/LinuxKernel.vala:337 msgid "Fetching index from kernel.ubuntu.com..." msgstr "최신 커널 목록을 가져오는 중입니다..." -#: src/Common/LinuxKernel.vala:579 +#: src/Common/LinuxKernel.vala:593 msgid "Could not find running kernel in list!" msgstr "목록에서 사용중인 커널을 찾을 수 없습니다!" -#: src/Common/LinuxKernel.vala:585 +#: src/Common/LinuxKernel.vala:599 msgid "Could not find any kernels to uninstall" msgstr "삭제할 커널을 찾을 수 없습니다" -#: src/Common/LinuxKernel.vala:594 +#: src/Common/LinuxKernel.vala:608 msgid "The following kernels will be uninstalled:" msgstr "아래 커널이 삭제됩니다:" -#: src/Common/LinuxKernel.vala:601 +#: src/Common/LinuxKernel.vala:615 msgid "Continue ?" msgstr "계속하시겠습니까?" -#: src/Common/LinuxKernel.vala:627 src/Console/AppConsole.vala:314 +#: src/Common/LinuxKernel.vala:641 src/Console/AppConsole.vala:314 msgid "Latest update" msgstr "최신 업데이트" -#: src/Common/LinuxKernel.vala:638 src/Console/AppConsole.vala:321 +#: src/Common/LinuxKernel.vala:652 src/Console/AppConsole.vala:321 msgid "Latest point update" msgstr "최신 포인트 업데이트" -#: src/Common/LinuxKernel.vala:646 src/Console/AppConsole.vala:326 +#: src/Common/LinuxKernel.vala:660 src/Console/AppConsole.vala:326 #: src/Console/AppConsole.vala:387 msgid "No updates found" msgstr "업데이트를 찾을 수 없습니다" -#: src/Common/LinuxKernel.vala:656 +#: src/Common/LinuxKernel.vala:670 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "커널 %s 버전을 설치하시겠습니까? (y/n): " -#: src/Common/LinuxKernel.vala:917 +#: src/Common/LinuxKernel.vala:931 msgid "Packages Available" msgstr "설치 가능한 패키지" -#: src/Common/LinuxKernel.vala:925 +#: src/Common/LinuxKernel.vala:939 msgid "Packages Installed" msgstr "설치된 패키지" -#: src/Common/LinuxKernel.vala:1005 +#: src/Common/LinuxKernel.vala:1019 msgid "Available Kernels" msgstr "설치 가능한 커널" -#: src/Common/LinuxKernel.vala:1012 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1026 src/Gtk/MainWindow.vala:186 msgid "Installed" msgstr "설치 됨" -#: src/Common/LinuxKernel.vala:1012 src/Gtk/MainWindow.vala:186 -#: src/Gtk/MainWindow.vala:641 src/Gtk/MainWindow.vala:655 +#: src/Common/LinuxKernel.vala:1026 src/Gtk/MainWindow.vala:186 +#: src/Gtk/MainWindow.vala:603 src/Gtk/MainWindow.vala:617 msgid "Running" msgstr "구동 중" -#: src/Common/LinuxKernel.vala:1049 +#: src/Common/LinuxKernel.vala:1063 msgid "Downloading" msgstr "다운로드 중" -#: src/Common/LinuxKernel.vala:1068 +#: src/Common/LinuxKernel.vala:1082 msgid "OK" msgstr "확인" -#: src/Common/LinuxKernel.vala:1073 +#: src/Common/LinuxKernel.vala:1087 msgid "ERROR" msgstr "오류" -#: src/Common/LinuxKernel.vala:1087 +#: src/Common/LinuxKernel.vala:1101 msgid "This kernel is already installed." msgstr "이 커널은 이미 설치되었습니다." -#: src/Common/LinuxKernel.vala:1113 +#: src/Common/LinuxKernel.vala:1127 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "설치가 완료되었습닌다. 새 커널을 사용하려면 시스템을 재시작 하세요." -#: src/Common/LinuxKernel.vala:1116 +#: src/Common/LinuxKernel.vala:1130 msgid "Installation completed with errors" msgstr "오류가 있으나 설치가 완료되었습니다" -#: src/Common/LinuxKernel.vala:1137 +#: src/Common/LinuxKernel.vala:1151 msgid "" "Selected kernel is currently running and cannot be un-installed.\n" " Install another kernel before un-installing this one." @@ -116,19 +116,19 @@ msgstr "" "선택된 커널은 현재 사용 중이므로 삭제할 수 없습니다.\n" " 이 커널을 삭제하려면 다른 커널을 먼저 설치하세요." -#: src/Common/LinuxKernel.vala:1142 +#: src/Common/LinuxKernel.vala:1156 msgid "Preparing to uninstall selected kernels" msgstr "선택한 커널을 삭제하기 위해 준비중입니다" -#: src/Common/LinuxKernel.vala:1173 src/Common/LinuxKernel.vala:1220 +#: src/Common/LinuxKernel.vala:1187 src/Common/LinuxKernel.vala:1234 msgid "Un-install completed" msgstr "삭제가 완료되었습니다" -#: src/Common/LinuxKernel.vala:1176 src/Common/LinuxKernel.vala:1223 +#: src/Common/LinuxKernel.vala:1190 src/Common/LinuxKernel.vala:1237 msgid "Un-install completed with errors" msgstr "오류가 있으나 삭제가 완료되었습니다" -#: src/Common/LinuxKernel.vala:1189 +#: src/Common/LinuxKernel.vala:1203 msgid "" "This kernel is currently running and cannot be un-installed.\n" " Install another kernel before un-installing this one." @@ -136,11 +136,11 @@ msgstr "" "이 커널은 현재 사용 중이므로 삭제할 수 없습니다.\n" " 이 커널을 삭제하려면 다른 커널을 먼저 설치하세요." -#: src/Common/Main.vala:240 +#: src/Common/Main.vala:241 msgid "Called from" msgstr "에서 호출" -#: src/Common/Main.vala:274 +#: src/Common/Main.vala:275 msgid "Notifications are disabled" msgstr "알림이 비활성화 되었습니다" @@ -310,7 +310,7 @@ msgid "Uninstall" msgstr "삭제" #: src/Gtk/MainWindow.vala:372 src/Gtk/MainWindow.vala:405 -#: src/Gtk/MainWindow.vala:694 +#: src/Gtk/MainWindow.vala:656 msgid "Close window to exit..." msgstr "창을 닫고 종료..." @@ -326,52 +326,43 @@ msgstr "현재 사용 중인 커널보다 이전 버전의 커널을 제거" msgid "Changes" msgstr "변경사항" -#: src/Gtk/MainWindow.vala:428 -msgid "Error while downloading the changelog:\n" -msgstr "" - -#: src/Gtk/MainWindow.vala:438 -#, fuzzy -msgid "Downloading the changelog" -msgstr "다운로드 중" - -#: src/Gtk/MainWindow.vala:460 src/Gtk/SettingsDialog.vala:50 +#: src/Gtk/MainWindow.vala:423 src/Gtk/SettingsDialog.vala:50 msgid "Settings" msgstr "설정" -#: src/Gtk/MainWindow.vala:483 +#: src/Gtk/MainWindow.vala:446 msgid "About" msgstr "정보" -#: src/Gtk/MainWindow.vala:528 +#: src/Gtk/MainWindow.vala:491 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "우분투 기반 배포판의 커널 업그레이드 도구" -#: src/Gtk/MainWindow.vala:529 +#: src/Gtk/MainWindow.vala:492 msgid "Forked" msgstr "" -#: src/Gtk/MainWindow.vala:529 +#: src/Gtk/MainWindow.vala:492 msgid "Original" msgstr "" -#: src/Gtk/MainWindow.vala:566 +#: src/Gtk/MainWindow.vala:524 msgid "Refreshing..." msgstr "새로 고침..." -#: src/Gtk/MainWindow.vala:651 +#: src/Gtk/MainWindow.vala:613 msgid "available" msgstr "사용가능" -#: src/Gtk/MainWindow.vala:709 +#: src/Gtk/MainWindow.vala:671 msgid "No Internet" msgstr "인터넷이 연결되지 않았습니다" -#: src/Gtk/MainWindow.vala:710 +#: src/Gtk/MainWindow.vala:672 msgid "Internet connection is not active." msgstr "인터넷 연결을 확인하세요." -#: src/Gtk/ProgressWindow.vala:127 src/Gtk/TerminalWindow.vala:149 +#: src/Gtk/ProgressWindow.vala:142 src/Gtk/TerminalWindow.vala:149 msgid "Cancel" msgstr "취소" diff --git a/po/messages.pot b/po/messages.pot index 19dabfcd..9810fdcf 100644 --- a/po/messages.pot +++ b/po/messages.pot @@ -6,9 +6,9 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: mainline 1.0.20\n" +"Project-Id-Version: mainline 1.0.21\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-02-21 12:35-0500\n" +"POT-Creation-Date: 2023-02-23 08:45-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -25,122 +25,122 @@ msgstr "" msgid "Architecture" msgstr "" -#: src/Common/LinuxKernel.vala:300 +#: src/Common/LinuxKernel.vala:298 msgid "Fetching index..." msgstr "" -#: src/Common/LinuxKernel.vala:332 +#: src/Common/LinuxKernel.vala:337 msgid "Fetching index from kernel.ubuntu.com..." msgstr "" -#: src/Common/LinuxKernel.vala:579 +#: src/Common/LinuxKernel.vala:593 msgid "Could not find running kernel in list!" msgstr "" -#: src/Common/LinuxKernel.vala:585 +#: src/Common/LinuxKernel.vala:599 msgid "Could not find any kernels to uninstall" msgstr "" -#: src/Common/LinuxKernel.vala:594 +#: src/Common/LinuxKernel.vala:608 msgid "The following kernels will be uninstalled:" msgstr "" -#: src/Common/LinuxKernel.vala:601 +#: src/Common/LinuxKernel.vala:615 msgid "Continue ?" msgstr "" -#: src/Common/LinuxKernel.vala:627 src/Console/AppConsole.vala:314 +#: src/Common/LinuxKernel.vala:641 src/Console/AppConsole.vala:314 msgid "Latest update" msgstr "" -#: src/Common/LinuxKernel.vala:638 src/Console/AppConsole.vala:321 +#: src/Common/LinuxKernel.vala:652 src/Console/AppConsole.vala:321 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:646 src/Console/AppConsole.vala:326 +#: src/Common/LinuxKernel.vala:660 src/Console/AppConsole.vala:326 #: src/Console/AppConsole.vala:387 msgid "No updates found" msgstr "" -#: src/Common/LinuxKernel.vala:656 +#: src/Common/LinuxKernel.vala:670 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "" -#: src/Common/LinuxKernel.vala:917 +#: src/Common/LinuxKernel.vala:931 msgid "Packages Available" msgstr "" -#: src/Common/LinuxKernel.vala:925 +#: src/Common/LinuxKernel.vala:939 msgid "Packages Installed" msgstr "" -#: src/Common/LinuxKernel.vala:1005 +#: src/Common/LinuxKernel.vala:1019 msgid "Available Kernels" msgstr "" -#: src/Common/LinuxKernel.vala:1012 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1026 src/Gtk/MainWindow.vala:186 msgid "Installed" msgstr "" -#: src/Common/LinuxKernel.vala:1012 src/Gtk/MainWindow.vala:186 -#: src/Gtk/MainWindow.vala:641 src/Gtk/MainWindow.vala:655 +#: src/Common/LinuxKernel.vala:1026 src/Gtk/MainWindow.vala:186 +#: src/Gtk/MainWindow.vala:603 src/Gtk/MainWindow.vala:617 msgid "Running" msgstr "" -#: src/Common/LinuxKernel.vala:1049 +#: src/Common/LinuxKernel.vala:1063 msgid "Downloading" msgstr "" -#: src/Common/LinuxKernel.vala:1068 +#: src/Common/LinuxKernel.vala:1082 msgid "OK" msgstr "" -#: src/Common/LinuxKernel.vala:1073 +#: src/Common/LinuxKernel.vala:1087 msgid "ERROR" msgstr "" -#: src/Common/LinuxKernel.vala:1087 +#: src/Common/LinuxKernel.vala:1101 msgid "This kernel is already installed." msgstr "" -#: src/Common/LinuxKernel.vala:1113 +#: src/Common/LinuxKernel.vala:1127 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" -#: src/Common/LinuxKernel.vala:1116 +#: src/Common/LinuxKernel.vala:1130 msgid "Installation completed with errors" msgstr "" -#: src/Common/LinuxKernel.vala:1137 +#: src/Common/LinuxKernel.vala:1151 msgid "" "Selected kernel is currently running and cannot be un-installed.\n" " Install another kernel before un-installing this one." msgstr "" -#: src/Common/LinuxKernel.vala:1142 +#: src/Common/LinuxKernel.vala:1156 msgid "Preparing to uninstall selected kernels" msgstr "" -#: src/Common/LinuxKernel.vala:1173 src/Common/LinuxKernel.vala:1220 +#: src/Common/LinuxKernel.vala:1187 src/Common/LinuxKernel.vala:1234 msgid "Un-install completed" msgstr "" -#: src/Common/LinuxKernel.vala:1176 src/Common/LinuxKernel.vala:1223 +#: src/Common/LinuxKernel.vala:1190 src/Common/LinuxKernel.vala:1237 msgid "Un-install completed with errors" msgstr "" -#: src/Common/LinuxKernel.vala:1189 +#: src/Common/LinuxKernel.vala:1203 msgid "" "This kernel is currently running and cannot be un-installed.\n" " Install another kernel before un-installing this one." msgstr "" -#: src/Common/Main.vala:240 +#: src/Common/Main.vala:241 msgid "Called from" msgstr "" -#: src/Common/Main.vala:274 +#: src/Common/Main.vala:275 msgid "Notifications are disabled" msgstr "" @@ -310,7 +310,7 @@ msgid "Uninstall" msgstr "" #: src/Gtk/MainWindow.vala:372 src/Gtk/MainWindow.vala:405 -#: src/Gtk/MainWindow.vala:694 +#: src/Gtk/MainWindow.vala:656 msgid "Close window to exit..." msgstr "" @@ -326,51 +326,43 @@ msgstr "" msgid "Changes" msgstr "" -#: src/Gtk/MainWindow.vala:428 -msgid "Error while downloading the changelog:\n" -msgstr "" - -#: src/Gtk/MainWindow.vala:438 -msgid "Downloading the changelog" -msgstr "" - -#: src/Gtk/MainWindow.vala:460 src/Gtk/SettingsDialog.vala:50 +#: src/Gtk/MainWindow.vala:423 src/Gtk/SettingsDialog.vala:50 msgid "Settings" msgstr "" -#: src/Gtk/MainWindow.vala:483 +#: src/Gtk/MainWindow.vala:446 msgid "About" msgstr "" -#: src/Gtk/MainWindow.vala:528 +#: src/Gtk/MainWindow.vala:491 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "" -#: src/Gtk/MainWindow.vala:529 +#: src/Gtk/MainWindow.vala:492 msgid "Forked" msgstr "" -#: src/Gtk/MainWindow.vala:529 +#: src/Gtk/MainWindow.vala:492 msgid "Original" msgstr "" -#: src/Gtk/MainWindow.vala:566 +#: src/Gtk/MainWindow.vala:524 msgid "Refreshing..." msgstr "" -#: src/Gtk/MainWindow.vala:651 +#: src/Gtk/MainWindow.vala:613 msgid "available" msgstr "" -#: src/Gtk/MainWindow.vala:709 +#: src/Gtk/MainWindow.vala:671 msgid "No Internet" msgstr "" -#: src/Gtk/MainWindow.vala:710 +#: src/Gtk/MainWindow.vala:672 msgid "Internet connection is not active." msgstr "" -#: src/Gtk/ProgressWindow.vala:127 src/Gtk/TerminalWindow.vala:149 +#: src/Gtk/ProgressWindow.vala:142 src/Gtk/TerminalWindow.vala:149 msgid "Cancel" msgstr "" diff --git a/po/nl.po b/po/nl.po index 6df5562d..010cbe62 100644 --- a/po/nl.po +++ b/po/nl.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-02-21 12:35-0500\n" +"POT-Creation-Date: 2023-02-23 08:45-0500\n" "PO-Revision-Date: 2020-08-23 13:55+0200\n" "Last-Translator: Heimen Stoffels \n" "Language-Team: Dutch (Netherlands)\n" @@ -21,98 +21,98 @@ msgstr "Distributie" msgid "Architecture" msgstr "Architectuur" -#: src/Common/LinuxKernel.vala:300 +#: src/Common/LinuxKernel.vala:298 msgid "Fetching index..." msgstr "Bezig met ophalen van index..." -#: src/Common/LinuxKernel.vala:332 +#: src/Common/LinuxKernel.vala:337 msgid "Fetching index from kernel.ubuntu.com..." msgstr "Bezig met ophalen van index van kernel.ubuntu.com..." -#: src/Common/LinuxKernel.vala:579 +#: src/Common/LinuxKernel.vala:593 msgid "Could not find running kernel in list!" msgstr "De in gebruik zijnde kernel staat niet op de lijst!" -#: src/Common/LinuxKernel.vala:585 +#: src/Common/LinuxKernel.vala:599 #, fuzzy msgid "Could not find any kernels to uninstall" msgstr "Er zijn geen te verwijderen kernels" -#: src/Common/LinuxKernel.vala:594 +#: src/Common/LinuxKernel.vala:608 #, fuzzy msgid "The following kernels will be uninstalled:" msgstr "De volgende kernels worden verwijderd:" -#: src/Common/LinuxKernel.vala:601 +#: src/Common/LinuxKernel.vala:615 msgid "Continue ?" msgstr "Wil je doorgaan?" -#: src/Common/LinuxKernel.vala:627 src/Console/AppConsole.vala:314 +#: src/Common/LinuxKernel.vala:641 src/Console/AppConsole.vala:314 msgid "Latest update" msgstr "Recentste update" -#: src/Common/LinuxKernel.vala:638 src/Console/AppConsole.vala:321 +#: src/Common/LinuxKernel.vala:652 src/Console/AppConsole.vala:321 msgid "Latest point update" msgstr "Recentste puntupdate" -#: src/Common/LinuxKernel.vala:646 src/Console/AppConsole.vala:326 +#: src/Common/LinuxKernel.vala:660 src/Console/AppConsole.vala:326 #: src/Console/AppConsole.vala:387 msgid "No updates found" msgstr "Geen updates gevonden" -#: src/Common/LinuxKernel.vala:656 +#: src/Common/LinuxKernel.vala:670 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Wil je versie %s installeren? (j/n): " -#: src/Common/LinuxKernel.vala:917 +#: src/Common/LinuxKernel.vala:931 msgid "Packages Available" msgstr "Beschikbare pakketten" -#: src/Common/LinuxKernel.vala:925 +#: src/Common/LinuxKernel.vala:939 msgid "Packages Installed" msgstr "Geïnstalleerde pakketten" -#: src/Common/LinuxKernel.vala:1005 +#: src/Common/LinuxKernel.vala:1019 msgid "Available Kernels" msgstr "Beschikbare kernels" -#: src/Common/LinuxKernel.vala:1012 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1026 src/Gtk/MainWindow.vala:186 msgid "Installed" msgstr "Geïnstalleerd" -#: src/Common/LinuxKernel.vala:1012 src/Gtk/MainWindow.vala:186 -#: src/Gtk/MainWindow.vala:641 src/Gtk/MainWindow.vala:655 +#: src/Common/LinuxKernel.vala:1026 src/Gtk/MainWindow.vala:186 +#: src/Gtk/MainWindow.vala:603 src/Gtk/MainWindow.vala:617 msgid "Running" msgstr "In gebruik" -#: src/Common/LinuxKernel.vala:1049 +#: src/Common/LinuxKernel.vala:1063 msgid "Downloading" msgstr "Bezig met downloaden" -#: src/Common/LinuxKernel.vala:1068 +#: src/Common/LinuxKernel.vala:1082 msgid "OK" msgstr "Oké" -#: src/Common/LinuxKernel.vala:1073 +#: src/Common/LinuxKernel.vala:1087 msgid "ERROR" msgstr "FOUT" -#: src/Common/LinuxKernel.vala:1087 +#: src/Common/LinuxKernel.vala:1101 msgid "This kernel is already installed." msgstr "Deze kernel is al geïnstalleerd." -#: src/Common/LinuxKernel.vala:1113 +#: src/Common/LinuxKernel.vala:1127 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "De installatie is voltooid. Herstart de computer om de nieuwe kernel te " "gebruiken." -#: src/Common/LinuxKernel.vala:1116 +#: src/Common/LinuxKernel.vala:1130 msgid "Installation completed with errors" msgstr "De installatie is foutloos voltooid" -#: src/Common/LinuxKernel.vala:1137 +#: src/Common/LinuxKernel.vala:1151 #, fuzzy msgid "" "Selected kernel is currently running and cannot be un-installed.\n" @@ -122,20 +122,20 @@ msgstr "" "verwijderd.\n" " Installeer eerst een andere kernel." -#: src/Common/LinuxKernel.vala:1142 +#: src/Common/LinuxKernel.vala:1156 #, fuzzy msgid "Preparing to uninstall selected kernels" msgstr "Bezig met voorbereiden van verwijdering" -#: src/Common/LinuxKernel.vala:1173 src/Common/LinuxKernel.vala:1220 +#: src/Common/LinuxKernel.vala:1187 src/Common/LinuxKernel.vala:1234 msgid "Un-install completed" msgstr "Deïnstalleren voltooid" -#: src/Common/LinuxKernel.vala:1176 src/Common/LinuxKernel.vala:1223 +#: src/Common/LinuxKernel.vala:1190 src/Common/LinuxKernel.vala:1237 msgid "Un-install completed with errors" msgstr "Deïnstalleren voltooid, maar met fouten" -#: src/Common/LinuxKernel.vala:1189 +#: src/Common/LinuxKernel.vala:1203 #, fuzzy msgid "" "This kernel is currently running and cannot be un-installed.\n" @@ -144,11 +144,11 @@ msgstr "" "Deze kernel is momenteel in gebruik en kan daarom niet worden verwijderd.\n" " Installeer eerst een andere kernel." -#: src/Common/Main.vala:240 +#: src/Common/Main.vala:241 msgid "Called from" msgstr "Aangeroepen door" -#: src/Common/Main.vala:274 +#: src/Common/Main.vala:275 msgid "Notifications are disabled" msgstr "Meldingen zijn uitgeschakeld" @@ -325,7 +325,7 @@ msgid "Uninstall" msgstr "Installeren" #: src/Gtk/MainWindow.vala:372 src/Gtk/MainWindow.vala:405 -#: src/Gtk/MainWindow.vala:694 +#: src/Gtk/MainWindow.vala:656 msgid "Close window to exit..." msgstr "Sluit het venster..." @@ -343,52 +343,43 @@ msgstr "Geïnstalleerde kernels verwijderen die ouder zijn dan de huidige" msgid "Changes" msgstr "Wijzigingen" -#: src/Gtk/MainWindow.vala:428 -msgid "Error while downloading the changelog:\n" -msgstr "" - -#: src/Gtk/MainWindow.vala:438 -#, fuzzy -msgid "Downloading the changelog" -msgstr "Bezig met downloaden" - -#: src/Gtk/MainWindow.vala:460 src/Gtk/SettingsDialog.vala:50 +#: src/Gtk/MainWindow.vala:423 src/Gtk/SettingsDialog.vala:50 msgid "Settings" msgstr "Instellingen" -#: src/Gtk/MainWindow.vala:483 +#: src/Gtk/MainWindow.vala:446 msgid "About" msgstr "Over" -#: src/Gtk/MainWindow.vala:528 +#: src/Gtk/MainWindow.vala:491 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Een kernelupgradehulpmiddel voor op Ubuntu gebaseerde distributies" -#: src/Gtk/MainWindow.vala:529 +#: src/Gtk/MainWindow.vala:492 msgid "Forked" msgstr "Geforkt" -#: src/Gtk/MainWindow.vala:529 +#: src/Gtk/MainWindow.vala:492 msgid "Original" msgstr "Origineel" -#: src/Gtk/MainWindow.vala:566 +#: src/Gtk/MainWindow.vala:524 msgid "Refreshing..." msgstr "Bezig met verversen..." -#: src/Gtk/MainWindow.vala:651 +#: src/Gtk/MainWindow.vala:613 msgid "available" msgstr "beschikbaar" -#: src/Gtk/MainWindow.vala:709 +#: src/Gtk/MainWindow.vala:671 msgid "No Internet" msgstr "Geen internetverbinding" -#: src/Gtk/MainWindow.vala:710 +#: src/Gtk/MainWindow.vala:672 msgid "Internet connection is not active." msgstr "Je bent niet verbonden met het internet." -#: src/Gtk/ProgressWindow.vala:127 src/Gtk/TerminalWindow.vala:149 +#: src/Gtk/ProgressWindow.vala:142 src/Gtk/TerminalWindow.vala:149 msgid "Cancel" msgstr "Annuleren" diff --git a/po/pl.po b/po/pl.po index bc60a4bf..ac040362 100644 --- a/po/pl.po +++ b/po/pl.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-02-21 12:35-0500\n" +"POT-Creation-Date: 2023-02-23 08:45-0500\n" "PO-Revision-Date: 2021-09-17 10:29+0200\n" "Last-Translator: Viktor Sokyrko \n" "Language-Team: Polish\n" @@ -21,96 +21,96 @@ msgstr "Dystrybucja" msgid "Architecture" msgstr "Architektura systemu" -#: src/Common/LinuxKernel.vala:300 +#: src/Common/LinuxKernel.vala:298 msgid "Fetching index..." msgstr "Pobieranie indeksu..." -#: src/Common/LinuxKernel.vala:332 +#: src/Common/LinuxKernel.vala:337 msgid "Fetching index from kernel.ubuntu.com..." msgstr "Pobieranie indeksu z kernel.ubuntu.com..." -#: src/Common/LinuxKernel.vala:579 +#: src/Common/LinuxKernel.vala:593 msgid "Could not find running kernel in list!" msgstr "Nie można znaleźć uruchomionego jądra na liście!" -#: src/Common/LinuxKernel.vala:585 +#: src/Common/LinuxKernel.vala:599 msgid "Could not find any kernels to uninstall" msgstr "Nie udało się odnaleźć żadnych jąder do odinstalowania" -#: src/Common/LinuxKernel.vala:594 +#: src/Common/LinuxKernel.vala:608 msgid "The following kernels will be uninstalled:" msgstr "Następujące jądra zostaną odinstalowane:" -#: src/Common/LinuxKernel.vala:601 +#: src/Common/LinuxKernel.vala:615 msgid "Continue ?" msgstr "Kontynuowac?" -#: src/Common/LinuxKernel.vala:627 src/Console/AppConsole.vala:314 +#: src/Common/LinuxKernel.vala:641 src/Console/AppConsole.vala:314 msgid "Latest update" msgstr "Najnowsza aktualizacja" -#: src/Common/LinuxKernel.vala:638 src/Console/AppConsole.vala:321 +#: src/Common/LinuxKernel.vala:652 src/Console/AppConsole.vala:321 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:646 src/Console/AppConsole.vala:326 +#: src/Common/LinuxKernel.vala:660 src/Console/AppConsole.vala:326 #: src/Console/AppConsole.vala:387 msgid "No updates found" msgstr "Nie znaleziono aktualizacji" -#: src/Common/LinuxKernel.vala:656 +#: src/Common/LinuxKernel.vala:670 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Instaluj wersję jądra %s ? (t/n): " -#: src/Common/LinuxKernel.vala:917 +#: src/Common/LinuxKernel.vala:931 msgid "Packages Available" msgstr "Dostępne pakiety" -#: src/Common/LinuxKernel.vala:925 +#: src/Common/LinuxKernel.vala:939 msgid "Packages Installed" msgstr "Pakiety zainstalowane" -#: src/Common/LinuxKernel.vala:1005 +#: src/Common/LinuxKernel.vala:1019 msgid "Available Kernels" msgstr "Dostępne jądra" -#: src/Common/LinuxKernel.vala:1012 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1026 src/Gtk/MainWindow.vala:186 msgid "Installed" msgstr "Zainstalowany" -#: src/Common/LinuxKernel.vala:1012 src/Gtk/MainWindow.vala:186 -#: src/Gtk/MainWindow.vala:641 src/Gtk/MainWindow.vala:655 +#: src/Common/LinuxKernel.vala:1026 src/Gtk/MainWindow.vala:186 +#: src/Gtk/MainWindow.vala:603 src/Gtk/MainWindow.vala:617 msgid "Running" msgstr "Uruchomiony" -#: src/Common/LinuxKernel.vala:1049 +#: src/Common/LinuxKernel.vala:1063 msgid "Downloading" msgstr "Pobieranie" -#: src/Common/LinuxKernel.vala:1068 +#: src/Common/LinuxKernel.vala:1082 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:1073 +#: src/Common/LinuxKernel.vala:1087 msgid "ERROR" msgstr "BŁĄD" -#: src/Common/LinuxKernel.vala:1087 +#: src/Common/LinuxKernel.vala:1101 msgid "This kernel is already installed." msgstr "To jądro jest już zainstalowane." -#: src/Common/LinuxKernel.vala:1113 +#: src/Common/LinuxKernel.vala:1127 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "Instalacja zakończona. Aby korzystać z nowego jądra, konieczne jest ponowne " "uruchomienie." -#: src/Common/LinuxKernel.vala:1116 +#: src/Common/LinuxKernel.vala:1130 msgid "Installation completed with errors" msgstr "Instalacja zakończona z błędami" -#: src/Common/LinuxKernel.vala:1137 +#: src/Common/LinuxKernel.vala:1151 msgid "" "Selected kernel is currently running and cannot be un-installed.\n" " Install another kernel before un-installing this one." @@ -118,19 +118,19 @@ msgstr "" "Wybrane jądro aktualnie działa i nie może zostać odinstalowane.\n" " Zainstaluj inne jądro przed odinstalowaniem tego." -#: src/Common/LinuxKernel.vala:1142 +#: src/Common/LinuxKernel.vala:1156 msgid "Preparing to uninstall selected kernels" msgstr "Przygotowanie do odinstalowania wybranych jąder" -#: src/Common/LinuxKernel.vala:1173 src/Common/LinuxKernel.vala:1220 +#: src/Common/LinuxKernel.vala:1187 src/Common/LinuxKernel.vala:1234 msgid "Un-install completed" msgstr "Deinstalacja zakończona" -#: src/Common/LinuxKernel.vala:1176 src/Common/LinuxKernel.vala:1223 +#: src/Common/LinuxKernel.vala:1190 src/Common/LinuxKernel.vala:1237 msgid "Un-install completed with errors" msgstr "De-instalacja zakończona z błędami" -#: src/Common/LinuxKernel.vala:1189 +#: src/Common/LinuxKernel.vala:1203 msgid "" "This kernel is currently running and cannot be un-installed.\n" " Install another kernel before un-installing this one." @@ -138,12 +138,12 @@ msgstr "" "To jądro aktualnie działa i nie może zostać odinstalowane.\n" " Zainstaluj inne jądro przed odinstalowaniem tego." -#: src/Common/Main.vala:240 +#: src/Common/Main.vala:241 #, fuzzy msgid "Called from" msgstr "Wywołane z" -#: src/Common/Main.vala:274 +#: src/Common/Main.vala:275 msgid "Notifications are disabled" msgstr "Powiadomienia są wyłączone" @@ -320,7 +320,7 @@ msgid "Uninstall" msgstr "Odinstaluj" #: src/Gtk/MainWindow.vala:372 src/Gtk/MainWindow.vala:405 -#: src/Gtk/MainWindow.vala:694 +#: src/Gtk/MainWindow.vala:656 msgid "Close window to exit..." msgstr "Zamknij okno żeby wyjść..." @@ -336,55 +336,46 @@ msgstr "Odinstaluj jądra starsze niż uruchomione" msgid "Changes" msgstr "Zmiany" -#: src/Gtk/MainWindow.vala:428 -msgid "Error while downloading the changelog:\n" -msgstr "" - -#: src/Gtk/MainWindow.vala:438 -#, fuzzy -msgid "Downloading the changelog" -msgstr "Pobieranie" - -#: src/Gtk/MainWindow.vala:460 src/Gtk/SettingsDialog.vala:50 +#: src/Gtk/MainWindow.vala:423 src/Gtk/SettingsDialog.vala:50 msgid "Settings" msgstr "Ustawienia" -#: src/Gtk/MainWindow.vala:483 +#: src/Gtk/MainWindow.vala:446 msgid "About" msgstr "O programie" -#: src/Gtk/MainWindow.vala:528 +#: src/Gtk/MainWindow.vala:491 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Narzędzie uaktualniania jądra dla dystrybucji z rodziny Ubuntu" -#: src/Gtk/MainWindow.vala:529 +#: src/Gtk/MainWindow.vala:492 msgid "Forked" msgstr "" -#: src/Gtk/MainWindow.vala:529 +#: src/Gtk/MainWindow.vala:492 msgid "Original" msgstr "" -#: src/Gtk/MainWindow.vala:566 +#: src/Gtk/MainWindow.vala:524 msgid "Refreshing..." msgstr "Odświeżam..." # Should be a single word at the end of the line. # For example: "5.13.16 available" -#: src/Gtk/MainWindow.vala:651 +#: src/Gtk/MainWindow.vala:613 msgid "available" msgstr "dostępne" -#: src/Gtk/MainWindow.vala:709 +#: src/Gtk/MainWindow.vala:671 msgid "No Internet" msgstr "Brak internetu" -#: src/Gtk/MainWindow.vala:710 +#: src/Gtk/MainWindow.vala:672 #, fuzzy msgid "Internet connection is not active." msgstr "Brak połączenia z internetem" -#: src/Gtk/ProgressWindow.vala:127 src/Gtk/TerminalWindow.vala:149 +#: src/Gtk/ProgressWindow.vala:142 src/Gtk/TerminalWindow.vala:149 msgid "Cancel" msgstr "Anuluj" diff --git a/po/ru.po b/po/ru.po index 3b445ac7..44149051 100644 --- a/po/ru.po +++ b/po/ru.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-02-21 12:35-0500\n" +"POT-Creation-Date: 2023-02-23 08:45-0500\n" "PO-Revision-Date: 2022-02-24 16:05+0300\n" "Last-Translator: Danik2343 \n" "Language-Team: Russian\n" @@ -21,96 +21,96 @@ msgstr "Дистрибутив" msgid "Architecture" msgstr "Архитектура" -#: src/Common/LinuxKernel.vala:300 +#: src/Common/LinuxKernel.vala:298 msgid "Fetching index..." msgstr "Получение сведений..." -#: src/Common/LinuxKernel.vala:332 +#: src/Common/LinuxKernel.vala:337 msgid "Fetching index from kernel.ubuntu.com..." msgstr "Получение сведений с kernel.ubuntu.com..." -#: src/Common/LinuxKernel.vala:579 +#: src/Common/LinuxKernel.vala:593 msgid "Could not find running kernel in list!" msgstr "Не удалось найти запущенное ядро в списке!" -#: src/Common/LinuxKernel.vala:585 +#: src/Common/LinuxKernel.vala:599 msgid "Could not find any kernels to uninstall" msgstr "Не удалось найти ядра для деинсталляции" -#: src/Common/LinuxKernel.vala:594 +#: src/Common/LinuxKernel.vala:608 msgid "The following kernels will be uninstalled:" msgstr "Следующие ядра будут деинсталлированы:" -#: src/Common/LinuxKernel.vala:601 +#: src/Common/LinuxKernel.vala:615 msgid "Continue ?" msgstr "Продолжить ?" -#: src/Common/LinuxKernel.vala:627 src/Console/AppConsole.vala:314 +#: src/Common/LinuxKernel.vala:641 src/Console/AppConsole.vala:314 msgid "Latest update" msgstr "Последнее обновление" -#: src/Common/LinuxKernel.vala:638 src/Console/AppConsole.vala:321 +#: src/Common/LinuxKernel.vala:652 src/Console/AppConsole.vala:321 msgid "Latest point update" msgstr "Последнее обновление пунктов" -#: src/Common/LinuxKernel.vala:646 src/Console/AppConsole.vala:326 +#: src/Common/LinuxKernel.vala:660 src/Console/AppConsole.vala:326 #: src/Console/AppConsole.vala:387 msgid "No updates found" msgstr "Обновлений не найдено" -#: src/Common/LinuxKernel.vala:656 +#: src/Common/LinuxKernel.vala:670 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Установить версию ядра %s ? (y/n): " -#: src/Common/LinuxKernel.vala:917 +#: src/Common/LinuxKernel.vala:931 msgid "Packages Available" msgstr "Доступные пакеты" -#: src/Common/LinuxKernel.vala:925 +#: src/Common/LinuxKernel.vala:939 msgid "Packages Installed" msgstr "Установленные пакеты" -#: src/Common/LinuxKernel.vala:1005 +#: src/Common/LinuxKernel.vala:1019 msgid "Available Kernels" msgstr "Доступные ядра" -#: src/Common/LinuxKernel.vala:1012 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1026 src/Gtk/MainWindow.vala:186 msgid "Installed" msgstr "Установлено" -#: src/Common/LinuxKernel.vala:1012 src/Gtk/MainWindow.vala:186 -#: src/Gtk/MainWindow.vala:641 src/Gtk/MainWindow.vala:655 +#: src/Common/LinuxKernel.vala:1026 src/Gtk/MainWindow.vala:186 +#: src/Gtk/MainWindow.vala:603 src/Gtk/MainWindow.vala:617 msgid "Running" msgstr "Используется" -#: src/Common/LinuxKernel.vala:1049 +#: src/Common/LinuxKernel.vala:1063 msgid "Downloading" msgstr "Загрузка" -#: src/Common/LinuxKernel.vala:1068 +#: src/Common/LinuxKernel.vala:1082 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:1073 +#: src/Common/LinuxKernel.vala:1087 msgid "ERROR" msgstr "ОШИБКА" -#: src/Common/LinuxKernel.vala:1087 +#: src/Common/LinuxKernel.vala:1101 msgid "This kernel is already installed." msgstr "Это ядро уже установлено." -#: src/Common/LinuxKernel.vala:1113 +#: src/Common/LinuxKernel.vala:1127 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "Установка завершена. Обязательно выполните перезагрузку, чтобы использовать " "новое ядро." -#: src/Common/LinuxKernel.vala:1116 +#: src/Common/LinuxKernel.vala:1130 msgid "Installation completed with errors" msgstr "Установка завершена с ошибками" -#: src/Common/LinuxKernel.vala:1137 +#: src/Common/LinuxKernel.vala:1151 msgid "" "Selected kernel is currently running and cannot be un-installed.\n" " Install another kernel before un-installing this one." @@ -118,19 +118,19 @@ msgstr "" "Это ядро в настоящий момент работает и не может быть удалено.\n" " Установите другое ядро, прежде чем удалять его." -#: src/Common/LinuxKernel.vala:1142 +#: src/Common/LinuxKernel.vala:1156 msgid "Preparing to uninstall selected kernels" msgstr "Подготовка к деинсталляции выбранных ядер" -#: src/Common/LinuxKernel.vala:1173 src/Common/LinuxKernel.vala:1220 +#: src/Common/LinuxKernel.vala:1187 src/Common/LinuxKernel.vala:1234 msgid "Un-install completed" msgstr "Удаление завершено" -#: src/Common/LinuxKernel.vala:1176 src/Common/LinuxKernel.vala:1223 +#: src/Common/LinuxKernel.vala:1190 src/Common/LinuxKernel.vala:1237 msgid "Un-install completed with errors" msgstr "Удаление завершено с ошибками" -#: src/Common/LinuxKernel.vala:1189 +#: src/Common/LinuxKernel.vala:1203 msgid "" "This kernel is currently running and cannot be un-installed.\n" " Install another kernel before un-installing this one." @@ -138,11 +138,11 @@ msgstr "" "Это ядро в настоящий момент работает и не может быть удалено.\n" " Установите другое ядро, прежде чем удалять его." -#: src/Common/Main.vala:240 +#: src/Common/Main.vala:241 msgid "Called from" msgstr "Вызван из" -#: src/Common/Main.vala:274 +#: src/Common/Main.vala:275 msgid "Notifications are disabled" msgstr "Уведомления отключены" @@ -314,7 +314,7 @@ msgid "Uninstall" msgstr "Удалить" #: src/Gtk/MainWindow.vala:372 src/Gtk/MainWindow.vala:405 -#: src/Gtk/MainWindow.vala:694 +#: src/Gtk/MainWindow.vala:656 msgid "Close window to exit..." msgstr "Закройте окно, чтобы выйти..." @@ -330,52 +330,43 @@ msgstr "Удалить более старшие установленные яд msgid "Changes" msgstr "Изменения" -#: src/Gtk/MainWindow.vala:428 -msgid "Error while downloading the changelog:\n" -msgstr "" - -#: src/Gtk/MainWindow.vala:438 -#, fuzzy -msgid "Downloading the changelog" -msgstr "Загрузка" - -#: src/Gtk/MainWindow.vala:460 src/Gtk/SettingsDialog.vala:50 +#: src/Gtk/MainWindow.vala:423 src/Gtk/SettingsDialog.vala:50 msgid "Settings" msgstr "Настройки" -#: src/Gtk/MainWindow.vala:483 +#: src/Gtk/MainWindow.vala:446 msgid "About" msgstr "О программе" -#: src/Gtk/MainWindow.vala:528 +#: src/Gtk/MainWindow.vala:491 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Программа обновления ядра для дистрибутивов на базе Ubuntu" -#: src/Gtk/MainWindow.vala:529 +#: src/Gtk/MainWindow.vala:492 msgid "Forked" msgstr "Форк" -#: src/Gtk/MainWindow.vala:529 +#: src/Gtk/MainWindow.vala:492 msgid "Original" msgstr "Оригинал" -#: src/Gtk/MainWindow.vala:566 +#: src/Gtk/MainWindow.vala:524 msgid "Refreshing..." msgstr "Обновление..." -#: src/Gtk/MainWindow.vala:651 +#: src/Gtk/MainWindow.vala:613 msgid "available" msgstr "доступно" -#: src/Gtk/MainWindow.vala:709 +#: src/Gtk/MainWindow.vala:671 msgid "No Internet" msgstr "Нет интернет соединения" -#: src/Gtk/MainWindow.vala:710 +#: src/Gtk/MainWindow.vala:672 msgid "Internet connection is not active." msgstr "Интернет соединение не активно." -#: src/Gtk/ProgressWindow.vala:127 src/Gtk/TerminalWindow.vala:149 +#: src/Gtk/ProgressWindow.vala:142 src/Gtk/TerminalWindow.vala:149 msgid "Cancel" msgstr "Отмена" diff --git a/po/sv.po b/po/sv.po index ad0ae36e..859df2db 100644 --- a/po/sv.po +++ b/po/sv.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-02-21 12:35-0500\n" +"POT-Creation-Date: 2023-02-23 08:45-0500\n" "PO-Revision-Date: 2018-01-13 16:56+0100\n" "Last-Translator: Åke Engelbrektson \n" "Language-Team:Swedish\n" @@ -22,98 +22,98 @@ msgstr "Distribution" msgid "Architecture" msgstr "Systemarkitektur" -#: src/Common/LinuxKernel.vala:300 +#: src/Common/LinuxKernel.vala:298 #, fuzzy msgid "Fetching index..." msgstr "Hämtar index för" -#: src/Common/LinuxKernel.vala:332 +#: src/Common/LinuxKernel.vala:337 msgid "Fetching index from kernel.ubuntu.com..." msgstr "Hämtar index från kernel.ubuntu.com ..." -#: src/Common/LinuxKernel.vala:579 +#: src/Common/LinuxKernel.vala:593 #, fuzzy msgid "Could not find running kernel in list!" msgstr "Kunde inte hitta efterfrågad version" -#: src/Common/LinuxKernel.vala:585 +#: src/Common/LinuxKernel.vala:599 #, fuzzy msgid "Could not find any kernels to uninstall" msgstr "Välj kärnor för borttagning" -#: src/Common/LinuxKernel.vala:594 +#: src/Common/LinuxKernel.vala:608 #, fuzzy msgid "The following kernels will be uninstalled:" msgstr "Denna kärna är redan installerad" -#: src/Common/LinuxKernel.vala:601 +#: src/Common/LinuxKernel.vala:615 msgid "Continue ?" msgstr "" -#: src/Common/LinuxKernel.vala:627 src/Console/AppConsole.vala:314 +#: src/Common/LinuxKernel.vala:641 src/Console/AppConsole.vala:314 msgid "Latest update" msgstr "" -#: src/Common/LinuxKernel.vala:638 src/Console/AppConsole.vala:321 +#: src/Common/LinuxKernel.vala:652 src/Console/AppConsole.vala:321 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:646 src/Console/AppConsole.vala:326 +#: src/Common/LinuxKernel.vala:660 src/Console/AppConsole.vala:326 #: src/Console/AppConsole.vala:387 msgid "No updates found" msgstr "Inga uppdateringar hittades" -#: src/Common/LinuxKernel.vala:656 +#: src/Common/LinuxKernel.vala:670 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "" -#: src/Common/LinuxKernel.vala:917 +#: src/Common/LinuxKernel.vala:931 msgid "Packages Available" msgstr "Tillgängliga paket" -#: src/Common/LinuxKernel.vala:925 +#: src/Common/LinuxKernel.vala:939 msgid "Packages Installed" msgstr "Installerade paket" -#: src/Common/LinuxKernel.vala:1005 +#: src/Common/LinuxKernel.vala:1019 msgid "Available Kernels" msgstr "Tillgängliga kärnor" -#: src/Common/LinuxKernel.vala:1012 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1026 src/Gtk/MainWindow.vala:186 msgid "Installed" msgstr "Installerad" -#: src/Common/LinuxKernel.vala:1012 src/Gtk/MainWindow.vala:186 -#: src/Gtk/MainWindow.vala:641 src/Gtk/MainWindow.vala:655 +#: src/Common/LinuxKernel.vala:1026 src/Gtk/MainWindow.vala:186 +#: src/Gtk/MainWindow.vala:603 src/Gtk/MainWindow.vala:617 msgid "Running" msgstr "Körs" -#: src/Common/LinuxKernel.vala:1049 +#: src/Common/LinuxKernel.vala:1063 msgid "Downloading" msgstr "Laddar ner" -#: src/Common/LinuxKernel.vala:1068 +#: src/Common/LinuxKernel.vala:1082 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:1073 +#: src/Common/LinuxKernel.vala:1087 msgid "ERROR" msgstr "FEL" -#: src/Common/LinuxKernel.vala:1087 +#: src/Common/LinuxKernel.vala:1101 msgid "This kernel is already installed." msgstr "Denna kärna är redan installerad" -#: src/Common/LinuxKernel.vala:1113 +#: src/Common/LinuxKernel.vala:1127 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "Installation slutförd. Omstart krävs för att tillämpa den nya kärnan." -#: src/Common/LinuxKernel.vala:1116 +#: src/Common/LinuxKernel.vala:1130 msgid "Installation completed with errors" msgstr "Installation slutförd med fel" -#: src/Common/LinuxKernel.vala:1137 +#: src/Common/LinuxKernel.vala:1151 #, fuzzy msgid "" "Selected kernel is currently running and cannot be un-installed.\n" @@ -122,20 +122,20 @@ msgstr "" "Denna kärna används för tillfället och kan inte tas bort.\n" "Installera en annan kärna innan du tar bort den här." -#: src/Common/LinuxKernel.vala:1142 +#: src/Common/LinuxKernel.vala:1156 #, fuzzy msgid "Preparing to uninstall selected kernels" msgstr "Förbereder borttagning av markerade kärnor" -#: src/Common/LinuxKernel.vala:1173 src/Common/LinuxKernel.vala:1220 +#: src/Common/LinuxKernel.vala:1187 src/Common/LinuxKernel.vala:1234 msgid "Un-install completed" msgstr "Avinstallation slutförd" -#: src/Common/LinuxKernel.vala:1176 src/Common/LinuxKernel.vala:1223 +#: src/Common/LinuxKernel.vala:1190 src/Common/LinuxKernel.vala:1237 msgid "Un-install completed with errors" msgstr "Avinstallation slutförd med fel" -#: src/Common/LinuxKernel.vala:1189 +#: src/Common/LinuxKernel.vala:1203 #, fuzzy msgid "" "This kernel is currently running and cannot be un-installed.\n" @@ -144,11 +144,11 @@ msgstr "" "Denna kärna används för tillfället och kan inte tas bort.\n" "Installera en annan kärna innan du tar bort den här." -#: src/Common/Main.vala:240 +#: src/Common/Main.vala:241 msgid "Called from" msgstr "" -#: src/Common/Main.vala:274 +#: src/Common/Main.vala:275 #, fuzzy msgid "Notifications are disabled" msgstr "Avisering" @@ -330,7 +330,7 @@ msgid "Uninstall" msgstr "Installera" #: src/Gtk/MainWindow.vala:372 src/Gtk/MainWindow.vala:405 -#: src/Gtk/MainWindow.vala:694 +#: src/Gtk/MainWindow.vala:656 msgid "Close window to exit..." msgstr "" @@ -348,54 +348,45 @@ msgstr "Ta bort installerade kärnor äldre än den som körs" msgid "Changes" msgstr "Ändringar" -#: src/Gtk/MainWindow.vala:428 -msgid "Error while downloading the changelog:\n" -msgstr "" - -#: src/Gtk/MainWindow.vala:438 -#, fuzzy -msgid "Downloading the changelog" -msgstr "Laddar ner" - -#: src/Gtk/MainWindow.vala:460 src/Gtk/SettingsDialog.vala:50 +#: src/Gtk/MainWindow.vala:423 src/Gtk/SettingsDialog.vala:50 msgid "Settings" msgstr "Inställningar" -#: src/Gtk/MainWindow.vala:483 +#: src/Gtk/MainWindow.vala:446 msgid "About" msgstr "Om" -#: src/Gtk/MainWindow.vala:528 +#: src/Gtk/MainWindow.vala:491 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Kärnuppgraderingsverktyg för Ubuntu-baserade distributioner" -#: src/Gtk/MainWindow.vala:529 +#: src/Gtk/MainWindow.vala:492 msgid "Forked" msgstr "" -#: src/Gtk/MainWindow.vala:529 +#: src/Gtk/MainWindow.vala:492 msgid "Original" msgstr "" -#: src/Gtk/MainWindow.vala:566 +#: src/Gtk/MainWindow.vala:524 msgid "Refreshing..." msgstr "Uppdaterar ..." -#: src/Gtk/MainWindow.vala:651 +#: src/Gtk/MainWindow.vala:613 #, fuzzy msgid "available" msgstr "Tillgängliga paket" -#: src/Gtk/MainWindow.vala:709 +#: src/Gtk/MainWindow.vala:671 msgid "No Internet" msgstr "Inget internet" -#: src/Gtk/MainWindow.vala:710 +#: src/Gtk/MainWindow.vala:672 #, fuzzy msgid "Internet connection is not active." msgstr "Internetuppkopplingen är inte aktiv" -#: src/Gtk/ProgressWindow.vala:127 src/Gtk/TerminalWindow.vala:149 +#: src/Gtk/ProgressWindow.vala:142 src/Gtk/TerminalWindow.vala:149 msgid "Cancel" msgstr "Avbryt" diff --git a/po/tr.po b/po/tr.po index 3c85b970..8c0b8d03 100644 --- a/po/tr.po +++ b/po/tr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-02-21 12:35-0500\n" +"POT-Creation-Date: 2023-02-23 08:45-0500\n" "PO-Revision-Date: 2022-08-06 16:48+0300\n" "Last-Translator: Sabri Ünal \n" "Language-Team: Turkish\n" @@ -21,96 +21,96 @@ msgstr "Dağıtım" msgid "Architecture" msgstr "Sistem mimarisi" -#: src/Common/LinuxKernel.vala:300 +#: src/Common/LinuxKernel.vala:298 msgid "Fetching index..." msgstr "İçerik dizini alınıyor..." -#: src/Common/LinuxKernel.vala:332 +#: src/Common/LinuxKernel.vala:337 msgid "Fetching index from kernel.ubuntu.com..." msgstr "İçerik dizini kernel.ubuntu.com alanından alınıyor..." -#: src/Common/LinuxKernel.vala:579 +#: src/Common/LinuxKernel.vala:593 msgid "Could not find running kernel in list!" msgstr "Çalışan sürüm listede bulunamadı!" -#: src/Common/LinuxKernel.vala:585 +#: src/Common/LinuxKernel.vala:599 msgid "Could not find any kernels to uninstall" msgstr "Kaldırılacak çekirdek bulunamadı" -#: src/Common/LinuxKernel.vala:594 +#: src/Common/LinuxKernel.vala:608 msgid "The following kernels will be uninstalled:" msgstr "Aşağıdaki çekirdekler kaldırılacak:" -#: src/Common/LinuxKernel.vala:601 +#: src/Common/LinuxKernel.vala:615 msgid "Continue ?" msgstr "Devam edilsin mi?" -#: src/Common/LinuxKernel.vala:627 src/Console/AppConsole.vala:314 +#: src/Common/LinuxKernel.vala:641 src/Console/AppConsole.vala:314 msgid "Latest update" msgstr "Son güncelleme" # Point burada point release anlamında kullanılıyor. Örneğin 5.10.x sayısının en sonundaki x rakamı point release/nokta sürüm oluyor. -#: src/Common/LinuxKernel.vala:638 src/Console/AppConsole.vala:321 +#: src/Common/LinuxKernel.vala:652 src/Console/AppConsole.vala:321 msgid "Latest point update" msgstr "Son nokta güncellemesi" -#: src/Common/LinuxKernel.vala:646 src/Console/AppConsole.vala:326 +#: src/Common/LinuxKernel.vala:660 src/Console/AppConsole.vala:326 #: src/Console/AppConsole.vala:387 msgid "No updates found" msgstr "Güncelleme bulunamadı" -#: src/Common/LinuxKernel.vala:656 +#: src/Common/LinuxKernel.vala:670 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Linux Çekirdek Sürümü %s Kurulsun mu? (e/h): " -#: src/Common/LinuxKernel.vala:917 +#: src/Common/LinuxKernel.vala:931 msgid "Packages Available" msgstr "Mevcut Paketler" -#: src/Common/LinuxKernel.vala:925 +#: src/Common/LinuxKernel.vala:939 msgid "Packages Installed" msgstr "Kurulu Paketler" -#: src/Common/LinuxKernel.vala:1005 +#: src/Common/LinuxKernel.vala:1019 msgid "Available Kernels" msgstr "Mevcut Çekirdekler" -#: src/Common/LinuxKernel.vala:1012 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1026 src/Gtk/MainWindow.vala:186 msgid "Installed" msgstr "Kurulu" -#: src/Common/LinuxKernel.vala:1012 src/Gtk/MainWindow.vala:186 -#: src/Gtk/MainWindow.vala:641 src/Gtk/MainWindow.vala:655 +#: src/Common/LinuxKernel.vala:1026 src/Gtk/MainWindow.vala:186 +#: src/Gtk/MainWindow.vala:603 src/Gtk/MainWindow.vala:617 msgid "Running" msgstr "Çalışıyor" -#: src/Common/LinuxKernel.vala:1049 +#: src/Common/LinuxKernel.vala:1063 msgid "Downloading" msgstr "İndiriliyor" -#: src/Common/LinuxKernel.vala:1068 +#: src/Common/LinuxKernel.vala:1082 msgid "OK" msgstr "Tamam" -#: src/Common/LinuxKernel.vala:1073 +#: src/Common/LinuxKernel.vala:1087 msgid "ERROR" msgstr "HATA" -#: src/Common/LinuxKernel.vala:1087 +#: src/Common/LinuxKernel.vala:1101 msgid "This kernel is already installed." msgstr "Bu çekirdek zaten kurulu." -#: src/Common/LinuxKernel.vala:1113 +#: src/Common/LinuxKernel.vala:1127 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "Kurulum tamamlandı. Yeni çekirdeği kullanmak için yeniden başlatma gerekiyor." -#: src/Common/LinuxKernel.vala:1116 +#: src/Common/LinuxKernel.vala:1130 msgid "Installation completed with errors" msgstr "Kurulum hatalarla tamamlandı" -#: src/Common/LinuxKernel.vala:1137 +#: src/Common/LinuxKernel.vala:1151 msgid "" "Selected kernel is currently running and cannot be un-installed.\n" " Install another kernel before un-installing this one." @@ -118,19 +118,19 @@ msgstr "" "Seçilen çekirdek şu anda çalışıyor ve kaldırılamaz.\n" " Bunu kaldırmadan önce başka bir çekirdek yükleyin." -#: src/Common/LinuxKernel.vala:1142 +#: src/Common/LinuxKernel.vala:1156 msgid "Preparing to uninstall selected kernels" msgstr "Seçilen çekirdekleri kaldırmaya hazırlanıyor" -#: src/Common/LinuxKernel.vala:1173 src/Common/LinuxKernel.vala:1220 +#: src/Common/LinuxKernel.vala:1187 src/Common/LinuxKernel.vala:1234 msgid "Un-install completed" msgstr "Kaldırma tamamlandı" -#: src/Common/LinuxKernel.vala:1176 src/Common/LinuxKernel.vala:1223 +#: src/Common/LinuxKernel.vala:1190 src/Common/LinuxKernel.vala:1237 msgid "Un-install completed with errors" msgstr "Kaldırma hatalarla tamamlandı" -#: src/Common/LinuxKernel.vala:1189 +#: src/Common/LinuxKernel.vala:1203 msgid "" "This kernel is currently running and cannot be un-installed.\n" " Install another kernel before un-installing this one." @@ -138,11 +138,11 @@ msgstr "" "Bu çekirdek şu anda çalışıyor ve kaldırılamaz.\n" "Bunu kaldırmadan önce başka bir çekirdek yükleyin." -#: src/Common/Main.vala:240 +#: src/Common/Main.vala:241 msgid "Called from" msgstr "Çağrı konumu" -#: src/Common/Main.vala:274 +#: src/Common/Main.vala:275 msgid "Notifications are disabled" msgstr "Bildirimler devre dışı bırakılmış" @@ -314,7 +314,7 @@ msgid "Uninstall" msgstr "Kaldır" #: src/Gtk/MainWindow.vala:372 src/Gtk/MainWindow.vala:405 -#: src/Gtk/MainWindow.vala:694 +#: src/Gtk/MainWindow.vala:656 msgid "Close window to exit..." msgstr "Çıkış için pencereyi kapat..." @@ -330,52 +330,43 @@ msgstr "Çalışan çekirdekten daha eski çekirdekleri kaldır" msgid "Changes" msgstr "Değişiklikler" -#: src/Gtk/MainWindow.vala:428 -msgid "Error while downloading the changelog:\n" -msgstr "" - -#: src/Gtk/MainWindow.vala:438 -#, fuzzy -msgid "Downloading the changelog" -msgstr "İndiriliyor" - -#: src/Gtk/MainWindow.vala:460 src/Gtk/SettingsDialog.vala:50 +#: src/Gtk/MainWindow.vala:423 src/Gtk/SettingsDialog.vala:50 msgid "Settings" msgstr "Ayarlar" -#: src/Gtk/MainWindow.vala:483 +#: src/Gtk/MainWindow.vala:446 msgid "About" msgstr "Hakkında" -#: src/Gtk/MainWindow.vala:528 +#: src/Gtk/MainWindow.vala:491 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Ubuntu tabanlı dağıtımlar için çekirdek güncelleme aracı" -#: src/Gtk/MainWindow.vala:529 +#: src/Gtk/MainWindow.vala:492 msgid "Forked" msgstr "Çatallandı" -#: src/Gtk/MainWindow.vala:529 +#: src/Gtk/MainWindow.vala:492 msgid "Original" msgstr "Özgün" -#: src/Gtk/MainWindow.vala:566 +#: src/Gtk/MainWindow.vala:524 msgid "Refreshing..." msgstr "Yenileniyor..." -#: src/Gtk/MainWindow.vala:651 +#: src/Gtk/MainWindow.vala:613 msgid "available" msgstr "mevcut" -#: src/Gtk/MainWindow.vala:709 +#: src/Gtk/MainWindow.vala:671 msgid "No Internet" msgstr "İnternet Yok" -#: src/Gtk/MainWindow.vala:710 +#: src/Gtk/MainWindow.vala:672 msgid "Internet connection is not active." msgstr "İnternet bağlantısı aktif değil." -#: src/Gtk/ProgressWindow.vala:127 src/Gtk/TerminalWindow.vala:149 +#: src/Gtk/ProgressWindow.vala:142 src/Gtk/TerminalWindow.vala:149 msgid "Cancel" msgstr "İptal Et" diff --git a/po/uk.po b/po/uk.po index 50496a77..8ff39e2a 100644 --- a/po/uk.po +++ b/po/uk.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-02-21 12:35-0500\n" +"POT-Creation-Date: 2023-02-23 08:45-0500\n" "PO-Revision-Date: 2019-07-25 11:00+0300\n" "Last-Translator: Serhii Golovko \n" "Language-Team: Ukranian\n" @@ -21,95 +21,95 @@ msgstr "Дистрибутив" msgid "Architecture" msgstr "Системна архитектура" -#: src/Common/LinuxKernel.vala:300 +#: src/Common/LinuxKernel.vala:298 msgid "Fetching index..." msgstr "Отримання індекса ..." -#: src/Common/LinuxKernel.vala:332 +#: src/Common/LinuxKernel.vala:337 msgid "Fetching index from kernel.ubuntu.com..." msgstr "Отримання індекса з kernel.ubuntu.com..." -#: src/Common/LinuxKernel.vala:579 +#: src/Common/LinuxKernel.vala:593 msgid "Could not find running kernel in list!" msgstr "Не вдалося знайти запущене ядро у списку!" -#: src/Common/LinuxKernel.vala:585 +#: src/Common/LinuxKernel.vala:599 msgid "Could not find any kernels to uninstall" msgstr "Не вдалося знайти жодне ядро для вилучення" -#: src/Common/LinuxKernel.vala:594 +#: src/Common/LinuxKernel.vala:608 msgid "The following kernels will be uninstalled:" msgstr "Наступні ядра будуть видалені:" -#: src/Common/LinuxKernel.vala:601 +#: src/Common/LinuxKernel.vala:615 msgid "Continue ?" msgstr "Продовжувати ?" -#: src/Common/LinuxKernel.vala:627 src/Console/AppConsole.vala:314 +#: src/Common/LinuxKernel.vala:641 src/Console/AppConsole.vala:314 msgid "Latest update" msgstr "Останнє оновлення" -#: src/Common/LinuxKernel.vala:638 src/Console/AppConsole.vala:321 +#: src/Common/LinuxKernel.vala:652 src/Console/AppConsole.vala:321 msgid "Latest point update" msgstr "Остання точка оновлення" -#: src/Common/LinuxKernel.vala:646 src/Console/AppConsole.vala:326 +#: src/Common/LinuxKernel.vala:660 src/Console/AppConsole.vala:326 #: src/Console/AppConsole.vala:387 msgid "No updates found" msgstr "Оновлень не знайдено" -#: src/Common/LinuxKernel.vala:656 +#: src/Common/LinuxKernel.vala:670 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Встановити Ядро Версії %s ? (так/ні): " -#: src/Common/LinuxKernel.vala:917 +#: src/Common/LinuxKernel.vala:931 msgid "Packages Available" msgstr "Доступні пакети" -#: src/Common/LinuxKernel.vala:925 +#: src/Common/LinuxKernel.vala:939 msgid "Packages Installed" msgstr "Встановлені пакети" -#: src/Common/LinuxKernel.vala:1005 +#: src/Common/LinuxKernel.vala:1019 msgid "Available Kernels" msgstr "Доступні ядра" -#: src/Common/LinuxKernel.vala:1012 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1026 src/Gtk/MainWindow.vala:186 msgid "Installed" msgstr "Встановлено" -#: src/Common/LinuxKernel.vala:1012 src/Gtk/MainWindow.vala:186 -#: src/Gtk/MainWindow.vala:641 src/Gtk/MainWindow.vala:655 +#: src/Common/LinuxKernel.vala:1026 src/Gtk/MainWindow.vala:186 +#: src/Gtk/MainWindow.vala:603 src/Gtk/MainWindow.vala:617 msgid "Running" msgstr "Використовується" -#: src/Common/LinuxKernel.vala:1049 +#: src/Common/LinuxKernel.vala:1063 msgid "Downloading" msgstr "Завантаження" -#: src/Common/LinuxKernel.vala:1068 +#: src/Common/LinuxKernel.vala:1082 msgid "OK" msgstr "Добре" -#: src/Common/LinuxKernel.vala:1073 +#: src/Common/LinuxKernel.vala:1087 msgid "ERROR" msgstr "ПОМИЛКА" -#: src/Common/LinuxKernel.vala:1087 +#: src/Common/LinuxKernel.vala:1101 msgid "This kernel is already installed." msgstr "Це ядро вже встановлено." -#: src/Common/LinuxKernel.vala:1113 +#: src/Common/LinuxKernel.vala:1127 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "Установка завершена. Для використання нового ядра потрібна перезавантаження." -#: src/Common/LinuxKernel.vala:1116 +#: src/Common/LinuxKernel.vala:1130 msgid "Installation completed with errors" msgstr "Установка завершена з помилками" -#: src/Common/LinuxKernel.vala:1137 +#: src/Common/LinuxKernel.vala:1151 msgid "" "Selected kernel is currently running and cannot be un-installed.\n" " Install another kernel before un-installing this one." @@ -117,19 +117,19 @@ msgstr "" "Це ядро зараз працює і не може бути видалено. \n" "Встановіть інше ядро, перш ніж видаляти його." -#: src/Common/LinuxKernel.vala:1142 +#: src/Common/LinuxKernel.vala:1156 msgid "Preparing to uninstall selected kernels" msgstr "Підготовка до видалення вибраних ядер" -#: src/Common/LinuxKernel.vala:1173 src/Common/LinuxKernel.vala:1220 +#: src/Common/LinuxKernel.vala:1187 src/Common/LinuxKernel.vala:1234 msgid "Un-install completed" msgstr "Видалення завершено" -#: src/Common/LinuxKernel.vala:1176 src/Common/LinuxKernel.vala:1223 +#: src/Common/LinuxKernel.vala:1190 src/Common/LinuxKernel.vala:1237 msgid "Un-install completed with errors" msgstr "Видалення завершено з помилками" -#: src/Common/LinuxKernel.vala:1189 +#: src/Common/LinuxKernel.vala:1203 msgid "" "This kernel is currently running and cannot be un-installed.\n" " Install another kernel before un-installing this one." @@ -137,11 +137,11 @@ msgstr "" "Це ядро наразі працює і його неможливо видалити.\n" " Встановіть інше ядро перед тим, як видалити его." -#: src/Common/Main.vala:240 +#: src/Common/Main.vala:241 msgid "Called from" msgstr "Викликано з" -#: src/Common/Main.vala:274 +#: src/Common/Main.vala:275 msgid "Notifications are disabled" msgstr "Повідомлення вимкнено" @@ -311,7 +311,7 @@ msgid "Uninstall" msgstr "Видалити" #: src/Gtk/MainWindow.vala:372 src/Gtk/MainWindow.vala:405 -#: src/Gtk/MainWindow.vala:694 +#: src/Gtk/MainWindow.vala:656 msgid "Close window to exit..." msgstr "Закрийте вікно, щоб вийти..." @@ -327,52 +327,43 @@ msgstr "Видалити ядра, старіші за запущене ядро msgid "Changes" msgstr "Зміни" -#: src/Gtk/MainWindow.vala:428 -msgid "Error while downloading the changelog:\n" -msgstr "" - -#: src/Gtk/MainWindow.vala:438 -#, fuzzy -msgid "Downloading the changelog" -msgstr "Завантаження" - -#: src/Gtk/MainWindow.vala:460 src/Gtk/SettingsDialog.vala:50 +#: src/Gtk/MainWindow.vala:423 src/Gtk/SettingsDialog.vala:50 msgid "Settings" msgstr "Налаштування" -#: src/Gtk/MainWindow.vala:483 +#: src/Gtk/MainWindow.vala:446 msgid "About" msgstr "Про программу" -#: src/Gtk/MainWindow.vala:528 +#: src/Gtk/MainWindow.vala:491 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Програма оновлення ядра для дистрибутивів на базі Ubuntu" -#: src/Gtk/MainWindow.vala:529 +#: src/Gtk/MainWindow.vala:492 msgid "Forked" msgstr "Двоєний" -#: src/Gtk/MainWindow.vala:529 +#: src/Gtk/MainWindow.vala:492 msgid "Original" msgstr "Оригінал" -#: src/Gtk/MainWindow.vala:566 +#: src/Gtk/MainWindow.vala:524 msgid "Refreshing..." msgstr "Оновлення..." -#: src/Gtk/MainWindow.vala:651 +#: src/Gtk/MainWindow.vala:613 msgid "available" msgstr "доступний" -#: src/Gtk/MainWindow.vala:709 +#: src/Gtk/MainWindow.vala:671 msgid "No Internet" msgstr "Інтернет з'єднання відсутнє" -#: src/Gtk/MainWindow.vala:710 +#: src/Gtk/MainWindow.vala:672 msgid "Internet connection is not active." msgstr "Інтернет з'єднання не активно." -#: src/Gtk/ProgressWindow.vala:127 src/Gtk/TerminalWindow.vala:149 +#: src/Gtk/ProgressWindow.vala:142 src/Gtk/TerminalWindow.vala:149 msgid "Cancel" msgstr "Відміна" From c6f1394f2de78c83561f2a78713165b51e8a762f Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Thu, 23 Feb 2023 15:33:59 -0500 Subject: [PATCH 227/567] don't copy delegates --- Makefile | 5 +++-- po/de.po | 44 ++++++++++++++++++------------------- po/el.po | 44 ++++++++++++++++++------------------- po/es.po | 44 ++++++++++++++++++------------------- po/fr.po | 44 ++++++++++++++++++------------------- po/hr.po | 44 ++++++++++++++++++------------------- po/it.po | 44 ++++++++++++++++++------------------- po/ko.po | 44 ++++++++++++++++++------------------- po/messages.pot | 44 ++++++++++++++++++------------------- po/nl.po | 44 ++++++++++++++++++------------------- po/pl.po | 44 ++++++++++++++++++------------------- po/ru.po | 44 ++++++++++++++++++------------------- po/sv.po | 44 ++++++++++++++++++------------------- po/tr.po | 44 ++++++++++++++++++------------------- po/uk.po | 44 ++++++++++++++++++------------------- src/Common/LinuxKernel.vala | 2 +- 16 files changed, 312 insertions(+), 311 deletions(-) diff --git a/Makefile b/Makefile index 9f35e8d2..efad2780 100644 --- a/Makefile +++ b/Makefile @@ -5,6 +5,7 @@ URI_KERNEL_UBUNTU_MAINLINE := https://kernel.ubuntu.com/~kernel-ppa/mainline/ SHELL := /bin/bash CFLAGS := -O2 +VALACFLAGS := --enable-deprecated prefix := /usr bindir := $(prefix)/bin @@ -62,12 +63,12 @@ deb_file = release/deb/$(BRANDING_SHORTNAME)_$(pkg_version).$(DEB_BUILD_NUMBER)_ all: $(BRANDING_SHORTNAME) $(BRANDING_SHORTNAME)-gtk $(BRANDING_SHORTNAME)-gtk: $(misc_files) $(common_vala_files) $(gui_vala_files) translations - valac --enable-deprecated -X -w $(build_symbols) --Xcc="-lm" \ + valac $(VALACFLAGS) -X -w $(build_symbols) --Xcc="-lm" \ --pkg $(glib) --pkg $(gio-unix) --pkg posix --pkg $(gee) --pkg $(json-glib) --pkg $(gtk+) --pkg $(vte) --pkg x11 \ $(common_vala_files) $(gui_vala_files) -o $(@) $(BRANDING_SHORTNAME): $(misc_files) $(common_vala_files) $(tui_vala_files) translations - valac --enable-deprecated -X -w $(build_symbols) --Xcc="-lm" \ + valac $(VALACFLAGS) -X -w $(build_symbols) --Xcc="-lm" \ --pkg $(glib) --pkg $(gio-unix) --pkg posix --pkg $(gee) --pkg $(json-glib) \ $(common_vala_files) $(tui_vala_files) -o $(@) diff --git a/po/de.po b/po/de.po index 051459a2..7f8e9e10 100644 --- a/po/de.po +++ b/po/de.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-02-23 08:45-0500\n" +"POT-Creation-Date: 2023-02-23 15:16-0500\n" "PO-Revision-Date: 2023-02-20 18:40+0100\n" "Last-Translator: Marvin Meysel \n" "Language-Team: German\n" @@ -75,12 +75,12 @@ msgstr "Installierte Pakete" msgid "Available Kernels" msgstr "Verfügbare Kernel" -#: src/Common/LinuxKernel.vala:1026 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1026 src/Gtk/MainWindow.vala:189 msgid "Installed" msgstr "Installiert" -#: src/Common/LinuxKernel.vala:1026 src/Gtk/MainWindow.vala:186 -#: src/Gtk/MainWindow.vala:603 src/Gtk/MainWindow.vala:617 +#: src/Common/LinuxKernel.vala:1026 src/Gtk/MainWindow.vala:189 +#: src/Gtk/MainWindow.vala:606 src/Gtk/MainWindow.vala:620 msgid "Running" msgstr "Läuft" @@ -289,7 +289,7 @@ msgid "Kernel %s Available" msgstr "Kernel %s verfügbar" #: src/Console/AppConsole.vala:367 src/Console/AppConsole.vala:379 -#: src/Gtk/MainWindow.vala:328 +#: src/Gtk/MainWindow.vala:331 msgid "Install" msgstr "Installieren" @@ -305,68 +305,68 @@ msgstr "Alle Optionen anzeigen" msgid "Kernel" msgstr "Kernel" -#: src/Gtk/MainWindow.vala:174 +#: src/Gtk/MainWindow.vala:176 msgid "Status" msgstr "Status" -#: src/Gtk/MainWindow.vala:314 +#: src/Gtk/MainWindow.vala:317 msgid "Refresh" msgstr "Auffrischen" -#: src/Gtk/MainWindow.vala:339 +#: src/Gtk/MainWindow.vala:342 msgid "Uninstall" msgstr "Deinstallieren" -#: src/Gtk/MainWindow.vala:372 src/Gtk/MainWindow.vala:405 -#: src/Gtk/MainWindow.vala:656 +#: src/Gtk/MainWindow.vala:375 src/Gtk/MainWindow.vala:408 +#: src/Gtk/MainWindow.vala:659 msgid "Close window to exit..." msgstr "Fenster schließen zum Verlassen..." -#: src/Gtk/MainWindow.vala:379 +#: src/Gtk/MainWindow.vala:382 msgid "Uninstall Old" msgstr "Alte deinstallieren" -#: src/Gtk/MainWindow.vala:380 +#: src/Gtk/MainWindow.vala:383 msgid "Uninstall kernels older than running kernel" msgstr "Deinstallation von Kerneln, die älter sind als der aktuelle Kernel" -#: src/Gtk/MainWindow.vala:412 +#: src/Gtk/MainWindow.vala:415 msgid "Changes" msgstr "Änderungen" -#: src/Gtk/MainWindow.vala:423 src/Gtk/SettingsDialog.vala:50 +#: src/Gtk/MainWindow.vala:426 src/Gtk/SettingsDialog.vala:50 msgid "Settings" msgstr "Einstellungen" -#: src/Gtk/MainWindow.vala:446 +#: src/Gtk/MainWindow.vala:449 msgid "About" msgstr "Über" -#: src/Gtk/MainWindow.vala:491 +#: src/Gtk/MainWindow.vala:494 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Kernel-Upgrade-Dienstprogramm für Ubuntu-basierte Distributionen" -#: src/Gtk/MainWindow.vala:492 +#: src/Gtk/MainWindow.vala:495 msgid "Forked" msgstr "Forked" -#: src/Gtk/MainWindow.vala:492 +#: src/Gtk/MainWindow.vala:495 msgid "Original" msgstr "Original" -#: src/Gtk/MainWindow.vala:524 +#: src/Gtk/MainWindow.vala:527 msgid "Refreshing..." msgstr "Auffrischen..." -#: src/Gtk/MainWindow.vala:613 +#: src/Gtk/MainWindow.vala:616 msgid "available" msgstr "Verfügbar" -#: src/Gtk/MainWindow.vala:671 +#: src/Gtk/MainWindow.vala:674 msgid "No Internet" msgstr "Kein Internet" -#: src/Gtk/MainWindow.vala:672 +#: src/Gtk/MainWindow.vala:675 msgid "Internet connection is not active." msgstr "Die Internetverbindung ist nicht aktiv." diff --git a/po/el.po b/po/el.po index c08fa797..2a055e14 100644 --- a/po/el.po +++ b/po/el.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-02-23 08:45-0500\n" +"POT-Creation-Date: 2023-02-23 15:16-0500\n" "PO-Revision-Date: 2023-01-10 02:03-0600\n" "Last-Translator: Vasilis Kosmidis \n" "Language-Team: Greek\n" @@ -76,12 +76,12 @@ msgstr "Εγκατεστημένα πακέτα" msgid "Available Kernels" msgstr "Διαθέσιμοι πυρήνες" -#: src/Common/LinuxKernel.vala:1026 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1026 src/Gtk/MainWindow.vala:189 msgid "Installed" msgstr "Εγκατεστημένος" -#: src/Common/LinuxKernel.vala:1026 src/Gtk/MainWindow.vala:186 -#: src/Gtk/MainWindow.vala:603 src/Gtk/MainWindow.vala:617 +#: src/Common/LinuxKernel.vala:1026 src/Gtk/MainWindow.vala:189 +#: src/Gtk/MainWindow.vala:606 src/Gtk/MainWindow.vala:620 msgid "Running" msgstr "Ενεργός" @@ -289,7 +289,7 @@ msgid "Kernel %s Available" msgstr "Πυρήνας %s διαθέσιμος" #: src/Console/AppConsole.vala:367 src/Console/AppConsole.vala:379 -#: src/Gtk/MainWindow.vala:328 +#: src/Gtk/MainWindow.vala:331 msgid "Install" msgstr "Εγκατάσταση" @@ -305,68 +305,68 @@ msgstr "Εμφάνιση όλων των επιλογών" msgid "Kernel" msgstr "Πυρήνας" -#: src/Gtk/MainWindow.vala:174 +#: src/Gtk/MainWindow.vala:176 msgid "Status" msgstr "Κατάσταση" -#: src/Gtk/MainWindow.vala:314 +#: src/Gtk/MainWindow.vala:317 msgid "Refresh" msgstr "Ανανέωση" -#: src/Gtk/MainWindow.vala:339 +#: src/Gtk/MainWindow.vala:342 msgid "Uninstall" msgstr "Απεγκατάσταση" -#: src/Gtk/MainWindow.vala:372 src/Gtk/MainWindow.vala:405 -#: src/Gtk/MainWindow.vala:656 +#: src/Gtk/MainWindow.vala:375 src/Gtk/MainWindow.vala:408 +#: src/Gtk/MainWindow.vala:659 msgid "Close window to exit..." msgstr "Κλείστε το παράθυρο για έξοδο..." -#: src/Gtk/MainWindow.vala:379 +#: src/Gtk/MainWindow.vala:382 msgid "Uninstall Old" msgstr "Απεγκατάσταση παλαιών" -#: src/Gtk/MainWindow.vala:380 +#: src/Gtk/MainWindow.vala:383 msgid "Uninstall kernels older than running kernel" msgstr "Απεγκαταστήστε πυρήνες παλαιότερους από τον ενεργό" -#: src/Gtk/MainWindow.vala:412 +#: src/Gtk/MainWindow.vala:415 msgid "Changes" msgstr "Αλλαγές" -#: src/Gtk/MainWindow.vala:423 src/Gtk/SettingsDialog.vala:50 +#: src/Gtk/MainWindow.vala:426 src/Gtk/SettingsDialog.vala:50 msgid "Settings" msgstr "Ρυθμίσεις" -#: src/Gtk/MainWindow.vala:446 +#: src/Gtk/MainWindow.vala:449 msgid "About" msgstr "Σχετικά" -#: src/Gtk/MainWindow.vala:491 +#: src/Gtk/MainWindow.vala:494 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Πρόγραμμα αναβάθμισης πυρήνα για διανομές που βασίζονται στο Ubuntu" -#: src/Gtk/MainWindow.vala:492 +#: src/Gtk/MainWindow.vala:495 msgid "Forked" msgstr "Forked" -#: src/Gtk/MainWindow.vala:492 +#: src/Gtk/MainWindow.vala:495 msgid "Original" msgstr "Πρωτότυπο" -#: src/Gtk/MainWindow.vala:524 +#: src/Gtk/MainWindow.vala:527 msgid "Refreshing..." msgstr "Ανανέωση..." -#: src/Gtk/MainWindow.vala:613 +#: src/Gtk/MainWindow.vala:616 msgid "available" msgstr "διαθέσιμος" -#: src/Gtk/MainWindow.vala:671 +#: src/Gtk/MainWindow.vala:674 msgid "No Internet" msgstr "Χωρίς διαδίκτυο" -#: src/Gtk/MainWindow.vala:672 +#: src/Gtk/MainWindow.vala:675 msgid "Internet connection is not active." msgstr "Η σύνδεση στο διαδίκτυο δεν είναι ενεργή." diff --git a/po/es.po b/po/es.po index c8f20566..a2a22b35 100644 --- a/po/es.po +++ b/po/es.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-02-23 08:45-0500\n" +"POT-Creation-Date: 2023-02-23 15:16-0500\n" "PO-Revision-Date: 2018-01-03 02:03-0600\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish\n" @@ -77,12 +77,12 @@ msgstr "Paquetes instalados" msgid "Available Kernels" msgstr "Núcleos disponibles" -#: src/Common/LinuxKernel.vala:1026 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1026 src/Gtk/MainWindow.vala:189 msgid "Installed" msgstr "Instalado" -#: src/Common/LinuxKernel.vala:1026 src/Gtk/MainWindow.vala:186 -#: src/Gtk/MainWindow.vala:603 src/Gtk/MainWindow.vala:617 +#: src/Common/LinuxKernel.vala:1026 src/Gtk/MainWindow.vala:189 +#: src/Gtk/MainWindow.vala:606 src/Gtk/MainWindow.vala:620 msgid "Running" msgstr "En ejecución" @@ -294,7 +294,7 @@ msgid "Kernel %s Available" msgstr "Paquetes disponibles" #: src/Console/AppConsole.vala:367 src/Console/AppConsole.vala:379 -#: src/Gtk/MainWindow.vala:328 +#: src/Gtk/MainWindow.vala:331 msgid "Install" msgstr "Instalar" @@ -310,72 +310,72 @@ msgstr "Mostrar todas las opciones" msgid "Kernel" msgstr "Núcleo" -#: src/Gtk/MainWindow.vala:174 +#: src/Gtk/MainWindow.vala:176 msgid "Status" msgstr "Estado" -#: src/Gtk/MainWindow.vala:314 +#: src/Gtk/MainWindow.vala:317 msgid "Refresh" msgstr "Actualizar" -#: src/Gtk/MainWindow.vala:339 +#: src/Gtk/MainWindow.vala:342 #, fuzzy msgid "Uninstall" msgstr "Instalar" -#: src/Gtk/MainWindow.vala:372 src/Gtk/MainWindow.vala:405 -#: src/Gtk/MainWindow.vala:656 +#: src/Gtk/MainWindow.vala:375 src/Gtk/MainWindow.vala:408 +#: src/Gtk/MainWindow.vala:659 msgid "Close window to exit..." msgstr "" -#: src/Gtk/MainWindow.vala:379 +#: src/Gtk/MainWindow.vala:382 #, fuzzy msgid "Uninstall Old" msgstr "Desinstalación finalizada" -#: src/Gtk/MainWindow.vala:380 +#: src/Gtk/MainWindow.vala:383 msgid "Uninstall kernels older than running kernel" msgstr "" -#: src/Gtk/MainWindow.vala:412 +#: src/Gtk/MainWindow.vala:415 msgid "Changes" msgstr "Cambios" -#: src/Gtk/MainWindow.vala:423 src/Gtk/SettingsDialog.vala:50 +#: src/Gtk/MainWindow.vala:426 src/Gtk/SettingsDialog.vala:50 msgid "Settings" msgstr "Configuración" -#: src/Gtk/MainWindow.vala:446 +#: src/Gtk/MainWindow.vala:449 msgid "About" msgstr "Acerca de" -#: src/Gtk/MainWindow.vala:491 +#: src/Gtk/MainWindow.vala:494 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "" "Herramienta de renovación de núcleo para distribuciones basadas en Ubuntu" -#: src/Gtk/MainWindow.vala:492 +#: src/Gtk/MainWindow.vala:495 msgid "Forked" msgstr "" -#: src/Gtk/MainWindow.vala:492 +#: src/Gtk/MainWindow.vala:495 msgid "Original" msgstr "" -#: src/Gtk/MainWindow.vala:524 +#: src/Gtk/MainWindow.vala:527 msgid "Refreshing..." msgstr "Actualizando…" -#: src/Gtk/MainWindow.vala:613 +#: src/Gtk/MainWindow.vala:616 #, fuzzy msgid "available" msgstr "Paquetes disponibles" -#: src/Gtk/MainWindow.vala:671 +#: src/Gtk/MainWindow.vala:674 msgid "No Internet" msgstr "No hay Internet" -#: src/Gtk/MainWindow.vala:672 +#: src/Gtk/MainWindow.vala:675 #, fuzzy msgid "Internet connection is not active." msgstr "La conexión a Internet está inactiva" diff --git a/po/fr.po b/po/fr.po index b21f8760..240af92b 100644 --- a/po/fr.po +++ b/po/fr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-02-23 08:45-0500\n" +"POT-Creation-Date: 2023-02-23 15:16-0500\n" "PO-Revision-Date: 2018-08-05 15:50+0200\n" "Last-Translator: Yolateng0 \n" "Language-Team: French\n" @@ -77,12 +77,12 @@ msgstr "Paquets Installés" msgid "Available Kernels" msgstr "Noyaux Disponibles" -#: src/Common/LinuxKernel.vala:1026 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1026 src/Gtk/MainWindow.vala:189 msgid "Installed" msgstr "Installé" -#: src/Common/LinuxKernel.vala:1026 src/Gtk/MainWindow.vala:186 -#: src/Gtk/MainWindow.vala:603 src/Gtk/MainWindow.vala:617 +#: src/Common/LinuxKernel.vala:1026 src/Gtk/MainWindow.vala:189 +#: src/Gtk/MainWindow.vala:606 src/Gtk/MainWindow.vala:620 msgid "Running" msgstr "Actuel" @@ -295,7 +295,7 @@ msgid "Kernel %s Available" msgstr "Paquet %s disponibles" #: src/Console/AppConsole.vala:367 src/Console/AppConsole.vala:379 -#: src/Gtk/MainWindow.vala:328 +#: src/Gtk/MainWindow.vala:331 msgid "Install" msgstr "Installer" @@ -311,73 +311,73 @@ msgstr "Afficher toutes les options" msgid "Kernel" msgstr "Noyau" -#: src/Gtk/MainWindow.vala:174 +#: src/Gtk/MainWindow.vala:176 msgid "Status" msgstr "Statut" -#: src/Gtk/MainWindow.vala:314 +#: src/Gtk/MainWindow.vala:317 msgid "Refresh" msgstr "Actualiser" -#: src/Gtk/MainWindow.vala:339 +#: src/Gtk/MainWindow.vala:342 #, fuzzy msgid "Uninstall" msgstr "Installer" -#: src/Gtk/MainWindow.vala:372 src/Gtk/MainWindow.vala:405 -#: src/Gtk/MainWindow.vala:656 +#: src/Gtk/MainWindow.vala:375 src/Gtk/MainWindow.vala:408 +#: src/Gtk/MainWindow.vala:659 msgid "Close window to exit..." msgstr "Fermer la fenêtre pour quitter..." -#: src/Gtk/MainWindow.vala:379 +#: src/Gtk/MainWindow.vala:382 #, fuzzy msgid "Uninstall Old" msgstr "Désinstallation complète" -#: src/Gtk/MainWindow.vala:380 +#: src/Gtk/MainWindow.vala:383 #, fuzzy msgid "Uninstall kernels older than running kernel" msgstr "Désinstalle les noyaux plus anciens que le noyau courant" -#: src/Gtk/MainWindow.vala:412 +#: src/Gtk/MainWindow.vala:415 msgid "Changes" msgstr "Changements" -#: src/Gtk/MainWindow.vala:423 src/Gtk/SettingsDialog.vala:50 +#: src/Gtk/MainWindow.vala:426 src/Gtk/SettingsDialog.vala:50 msgid "Settings" msgstr "Paramètres" -#: src/Gtk/MainWindow.vala:446 +#: src/Gtk/MainWindow.vala:449 msgid "About" msgstr "À propos" -#: src/Gtk/MainWindow.vala:491 +#: src/Gtk/MainWindow.vala:494 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "" "Utilitaire de mise à niveau des noyaux pour les distributions basées sur " "Ubuntu" -#: src/Gtk/MainWindow.vala:492 +#: src/Gtk/MainWindow.vala:495 msgid "Forked" msgstr "Version forkée :" -#: src/Gtk/MainWindow.vala:492 +#: src/Gtk/MainWindow.vala:495 msgid "Original" msgstr "Version originale :" -#: src/Gtk/MainWindow.vala:524 +#: src/Gtk/MainWindow.vala:527 msgid "Refreshing..." msgstr "Actualisation..." -#: src/Gtk/MainWindow.vala:613 +#: src/Gtk/MainWindow.vala:616 msgid "available" msgstr "disponible" -#: src/Gtk/MainWindow.vala:671 +#: src/Gtk/MainWindow.vala:674 msgid "No Internet" msgstr "Pas d'Internet" -#: src/Gtk/MainWindow.vala:672 +#: src/Gtk/MainWindow.vala:675 msgid "Internet connection is not active." msgstr "Connexion internet inexistante" diff --git a/po/hr.po b/po/hr.po index 52cd7372..88bda42d 100644 --- a/po/hr.po +++ b/po/hr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-02-23 08:45-0500\n" +"POT-Creation-Date: 2023-02-23 15:16-0500\n" "PO-Revision-Date: 2022-09-22 12:13+0200\n" "Last-Translator: gogo \n" "Language-Team: Croatian\n" @@ -75,12 +75,12 @@ msgstr "Instalirani paketi" msgid "Available Kernels" msgstr "Dostupni kerneli" -#: src/Common/LinuxKernel.vala:1026 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1026 src/Gtk/MainWindow.vala:189 msgid "Installed" msgstr "Instalirano" -#: src/Common/LinuxKernel.vala:1026 src/Gtk/MainWindow.vala:186 -#: src/Gtk/MainWindow.vala:603 src/Gtk/MainWindow.vala:617 +#: src/Common/LinuxKernel.vala:1026 src/Gtk/MainWindow.vala:189 +#: src/Gtk/MainWindow.vala:606 src/Gtk/MainWindow.vala:620 msgid "Running" msgstr "Pokrenuto" @@ -284,7 +284,7 @@ msgid "Kernel %s Available" msgstr "Kernel %s je dostupan" #: src/Console/AppConsole.vala:367 src/Console/AppConsole.vala:379 -#: src/Gtk/MainWindow.vala:328 +#: src/Gtk/MainWindow.vala:331 msgid "Install" msgstr "Instaliraj" @@ -300,68 +300,68 @@ msgstr "Prikaži sve mogućnosti" msgid "Kernel" msgstr "Kernel" -#: src/Gtk/MainWindow.vala:174 +#: src/Gtk/MainWindow.vala:176 msgid "Status" msgstr "Stanje" -#: src/Gtk/MainWindow.vala:314 +#: src/Gtk/MainWindow.vala:317 msgid "Refresh" msgstr "Osvježi" -#: src/Gtk/MainWindow.vala:339 +#: src/Gtk/MainWindow.vala:342 msgid "Uninstall" msgstr "Deinstaliraj" -#: src/Gtk/MainWindow.vala:372 src/Gtk/MainWindow.vala:405 -#: src/Gtk/MainWindow.vala:656 +#: src/Gtk/MainWindow.vala:375 src/Gtk/MainWindow.vala:408 +#: src/Gtk/MainWindow.vala:659 msgid "Close window to exit..." msgstr "Zatvori prozor i izađi..." -#: src/Gtk/MainWindow.vala:379 +#: src/Gtk/MainWindow.vala:382 msgid "Uninstall Old" msgstr "Deinstaliraj staro" -#: src/Gtk/MainWindow.vala:380 +#: src/Gtk/MainWindow.vala:383 msgid "Uninstall kernels older than running kernel" msgstr "Deinstaliraj kernele starije od pokrenutog krenela" -#: src/Gtk/MainWindow.vala:412 +#: src/Gtk/MainWindow.vala:415 msgid "Changes" msgstr "Promjene" -#: src/Gtk/MainWindow.vala:423 src/Gtk/SettingsDialog.vala:50 +#: src/Gtk/MainWindow.vala:426 src/Gtk/SettingsDialog.vala:50 msgid "Settings" msgstr "Postavke" -#: src/Gtk/MainWindow.vala:446 +#: src/Gtk/MainWindow.vala:449 msgid "About" msgstr "O programu" -#: src/Gtk/MainWindow.vala:491 +#: src/Gtk/MainWindow.vala:494 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Alat za nadogradnju kernela Ubuntu temeljenih distribucija" -#: src/Gtk/MainWindow.vala:492 +#: src/Gtk/MainWindow.vala:495 msgid "Forked" msgstr "Forkano" -#: src/Gtk/MainWindow.vala:492 +#: src/Gtk/MainWindow.vala:495 msgid "Original" msgstr "Izvornik" -#: src/Gtk/MainWindow.vala:524 +#: src/Gtk/MainWindow.vala:527 msgid "Refreshing..." msgstr "Osvježavanje..." -#: src/Gtk/MainWindow.vala:613 +#: src/Gtk/MainWindow.vala:616 msgid "available" msgstr "dostupno" -#: src/Gtk/MainWindow.vala:671 +#: src/Gtk/MainWindow.vala:674 msgid "No Internet" msgstr "Nema pristupa internetu" -#: src/Gtk/MainWindow.vala:672 +#: src/Gtk/MainWindow.vala:675 msgid "Internet connection is not active." msgstr "Internet povezivanje nije aktivno." diff --git a/po/it.po b/po/it.po index 7856b09b..f4a4bca3 100644 --- a/po/it.po +++ b/po/it.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline 1.0.15\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-02-23 08:45-0500\n" +"POT-Creation-Date: 2023-02-23 15:16-0500\n" "PO-Revision-Date: 2020-08-22 15:35+0100\n" "Last-Translator: Albano Battistella \n" "Language-Team: Italian\n" @@ -73,12 +73,12 @@ msgstr "Pacchetti installati" msgid "Available Kernels" msgstr "Kernel disponibili" -#: src/Common/LinuxKernel.vala:1026 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1026 src/Gtk/MainWindow.vala:189 msgid "Installed" msgstr "Installato" -#: src/Common/LinuxKernel.vala:1026 src/Gtk/MainWindow.vala:186 -#: src/Gtk/MainWindow.vala:603 src/Gtk/MainWindow.vala:617 +#: src/Common/LinuxKernel.vala:1026 src/Gtk/MainWindow.vala:189 +#: src/Gtk/MainWindow.vala:606 src/Gtk/MainWindow.vala:620 msgid "Running" msgstr "In esecuzione" @@ -285,7 +285,7 @@ msgid "Kernel %s Available" msgstr "Kernel %s Disponibile" #: src/Console/AppConsole.vala:367 src/Console/AppConsole.vala:379 -#: src/Gtk/MainWindow.vala:328 +#: src/Gtk/MainWindow.vala:331 msgid "Install" msgstr "Installa" @@ -301,68 +301,68 @@ msgstr "Mostra tutte le opzioni" msgid "Kernel" msgstr "Kernel" -#: src/Gtk/MainWindow.vala:174 +#: src/Gtk/MainWindow.vala:176 msgid "Status" msgstr "Stato" -#: src/Gtk/MainWindow.vala:314 +#: src/Gtk/MainWindow.vala:317 msgid "Refresh" msgstr "Aggiorna" -#: src/Gtk/MainWindow.vala:339 +#: src/Gtk/MainWindow.vala:342 msgid "Uninstall" msgstr "Disinstalla" -#: src/Gtk/MainWindow.vala:372 src/Gtk/MainWindow.vala:405 -#: src/Gtk/MainWindow.vala:656 +#: src/Gtk/MainWindow.vala:375 src/Gtk/MainWindow.vala:408 +#: src/Gtk/MainWindow.vala:659 msgid "Close window to exit..." msgstr "Chiudere la finestra per uscire..." -#: src/Gtk/MainWindow.vala:379 +#: src/Gtk/MainWindow.vala:382 msgid "Uninstall Old" msgstr "Disinstalla i vecchi" -#: src/Gtk/MainWindow.vala:380 +#: src/Gtk/MainWindow.vala:383 msgid "Uninstall kernels older than running kernel" msgstr "Rimuovere i kernel installati più vecchi del kernel in esecuzione" -#: src/Gtk/MainWindow.vala:412 +#: src/Gtk/MainWindow.vala:415 msgid "Changes" msgstr "Modifiche" -#: src/Gtk/MainWindow.vala:423 src/Gtk/SettingsDialog.vala:50 +#: src/Gtk/MainWindow.vala:426 src/Gtk/SettingsDialog.vala:50 msgid "Settings" msgstr "Impostazioni" -#: src/Gtk/MainWindow.vala:446 +#: src/Gtk/MainWindow.vala:449 msgid "About" msgstr "Informazioni" -#: src/Gtk/MainWindow.vala:491 +#: src/Gtk/MainWindow.vala:494 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Utilità di aggiornamento del kernel per distribuzioni basate su Ubuntu" -#: src/Gtk/MainWindow.vala:492 +#: src/Gtk/MainWindow.vala:495 msgid "Forked" msgstr "Forked" -#: src/Gtk/MainWindow.vala:492 +#: src/Gtk/MainWindow.vala:495 msgid "Original" msgstr "Originale" -#: src/Gtk/MainWindow.vala:524 +#: src/Gtk/MainWindow.vala:527 msgid "Refreshing..." msgstr "Aggiornamento..." -#: src/Gtk/MainWindow.vala:613 +#: src/Gtk/MainWindow.vala:616 msgid "available" msgstr "disponibile" -#: src/Gtk/MainWindow.vala:671 +#: src/Gtk/MainWindow.vala:674 msgid "No Internet" msgstr "Nessuna connessione internet" -#: src/Gtk/MainWindow.vala:672 +#: src/Gtk/MainWindow.vala:675 msgid "Internet connection is not active." msgstr "La connessione Internet non è attiva." diff --git a/po/ko.po b/po/ko.po index 07c83af6..3031e1f3 100644 --- a/po/ko.po +++ b/po/ko.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline 1.0.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-02-23 08:45-0500\n" +"POT-Creation-Date: 2023-02-23 15:16-0500\n" "PO-Revision-Date: 2022-09-28 11:48+0900\n" "Last-Translator: Kevin Kim \n" "Language-Team: Korean\n" @@ -75,12 +75,12 @@ msgstr "설치된 패키지" msgid "Available Kernels" msgstr "설치 가능한 커널" -#: src/Common/LinuxKernel.vala:1026 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1026 src/Gtk/MainWindow.vala:189 msgid "Installed" msgstr "설치 됨" -#: src/Common/LinuxKernel.vala:1026 src/Gtk/MainWindow.vala:186 -#: src/Gtk/MainWindow.vala:603 src/Gtk/MainWindow.vala:617 +#: src/Common/LinuxKernel.vala:1026 src/Gtk/MainWindow.vala:189 +#: src/Gtk/MainWindow.vala:606 src/Gtk/MainWindow.vala:620 msgid "Running" msgstr "구동 중" @@ -281,7 +281,7 @@ msgid "Kernel %s Available" msgstr "커널 %s 사용 가능" #: src/Console/AppConsole.vala:367 src/Console/AppConsole.vala:379 -#: src/Gtk/MainWindow.vala:328 +#: src/Gtk/MainWindow.vala:331 msgid "Install" msgstr "설치" @@ -297,68 +297,68 @@ msgstr "모든 옵션 보기" msgid "Kernel" msgstr "커널" -#: src/Gtk/MainWindow.vala:174 +#: src/Gtk/MainWindow.vala:176 msgid "Status" msgstr "상태" -#: src/Gtk/MainWindow.vala:314 +#: src/Gtk/MainWindow.vala:317 msgid "Refresh" msgstr "새로고침" -#: src/Gtk/MainWindow.vala:339 +#: src/Gtk/MainWindow.vala:342 msgid "Uninstall" msgstr "삭제" -#: src/Gtk/MainWindow.vala:372 src/Gtk/MainWindow.vala:405 -#: src/Gtk/MainWindow.vala:656 +#: src/Gtk/MainWindow.vala:375 src/Gtk/MainWindow.vala:408 +#: src/Gtk/MainWindow.vala:659 msgid "Close window to exit..." msgstr "창을 닫고 종료..." -#: src/Gtk/MainWindow.vala:379 +#: src/Gtk/MainWindow.vala:382 msgid "Uninstall Old" msgstr "오래된 커널 제거" -#: src/Gtk/MainWindow.vala:380 +#: src/Gtk/MainWindow.vala:383 msgid "Uninstall kernels older than running kernel" msgstr "현재 사용 중인 커널보다 이전 버전의 커널을 제거" -#: src/Gtk/MainWindow.vala:412 +#: src/Gtk/MainWindow.vala:415 msgid "Changes" msgstr "변경사항" -#: src/Gtk/MainWindow.vala:423 src/Gtk/SettingsDialog.vala:50 +#: src/Gtk/MainWindow.vala:426 src/Gtk/SettingsDialog.vala:50 msgid "Settings" msgstr "설정" -#: src/Gtk/MainWindow.vala:446 +#: src/Gtk/MainWindow.vala:449 msgid "About" msgstr "정보" -#: src/Gtk/MainWindow.vala:491 +#: src/Gtk/MainWindow.vala:494 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "우분투 기반 배포판의 커널 업그레이드 도구" -#: src/Gtk/MainWindow.vala:492 +#: src/Gtk/MainWindow.vala:495 msgid "Forked" msgstr "" -#: src/Gtk/MainWindow.vala:492 +#: src/Gtk/MainWindow.vala:495 msgid "Original" msgstr "" -#: src/Gtk/MainWindow.vala:524 +#: src/Gtk/MainWindow.vala:527 msgid "Refreshing..." msgstr "새로 고침..." -#: src/Gtk/MainWindow.vala:613 +#: src/Gtk/MainWindow.vala:616 msgid "available" msgstr "사용가능" -#: src/Gtk/MainWindow.vala:671 +#: src/Gtk/MainWindow.vala:674 msgid "No Internet" msgstr "인터넷이 연결되지 않았습니다" -#: src/Gtk/MainWindow.vala:672 +#: src/Gtk/MainWindow.vala:675 msgid "Internet connection is not active." msgstr "인터넷 연결을 확인하세요." diff --git a/po/messages.pot b/po/messages.pot index 9810fdcf..835b955c 100644 --- a/po/messages.pot +++ b/po/messages.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline 1.0.21\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-02-23 08:45-0500\n" +"POT-Creation-Date: 2023-02-23 15:25-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -79,12 +79,12 @@ msgstr "" msgid "Available Kernels" msgstr "" -#: src/Common/LinuxKernel.vala:1026 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1026 src/Gtk/MainWindow.vala:189 msgid "Installed" msgstr "" -#: src/Common/LinuxKernel.vala:1026 src/Gtk/MainWindow.vala:186 -#: src/Gtk/MainWindow.vala:603 src/Gtk/MainWindow.vala:617 +#: src/Common/LinuxKernel.vala:1026 src/Gtk/MainWindow.vala:189 +#: src/Gtk/MainWindow.vala:606 src/Gtk/MainWindow.vala:620 msgid "Running" msgstr "" @@ -281,7 +281,7 @@ msgid "Kernel %s Available" msgstr "" #: src/Console/AppConsole.vala:367 src/Console/AppConsole.vala:379 -#: src/Gtk/MainWindow.vala:328 +#: src/Gtk/MainWindow.vala:331 msgid "Install" msgstr "" @@ -297,68 +297,68 @@ msgstr "" msgid "Kernel" msgstr "" -#: src/Gtk/MainWindow.vala:174 +#: src/Gtk/MainWindow.vala:176 msgid "Status" msgstr "" -#: src/Gtk/MainWindow.vala:314 +#: src/Gtk/MainWindow.vala:317 msgid "Refresh" msgstr "" -#: src/Gtk/MainWindow.vala:339 +#: src/Gtk/MainWindow.vala:342 msgid "Uninstall" msgstr "" -#: src/Gtk/MainWindow.vala:372 src/Gtk/MainWindow.vala:405 -#: src/Gtk/MainWindow.vala:656 +#: src/Gtk/MainWindow.vala:375 src/Gtk/MainWindow.vala:408 +#: src/Gtk/MainWindow.vala:659 msgid "Close window to exit..." msgstr "" -#: src/Gtk/MainWindow.vala:379 +#: src/Gtk/MainWindow.vala:382 msgid "Uninstall Old" msgstr "" -#: src/Gtk/MainWindow.vala:380 +#: src/Gtk/MainWindow.vala:383 msgid "Uninstall kernels older than running kernel" msgstr "" -#: src/Gtk/MainWindow.vala:412 +#: src/Gtk/MainWindow.vala:415 msgid "Changes" msgstr "" -#: src/Gtk/MainWindow.vala:423 src/Gtk/SettingsDialog.vala:50 +#: src/Gtk/MainWindow.vala:426 src/Gtk/SettingsDialog.vala:50 msgid "Settings" msgstr "" -#: src/Gtk/MainWindow.vala:446 +#: src/Gtk/MainWindow.vala:449 msgid "About" msgstr "" -#: src/Gtk/MainWindow.vala:491 +#: src/Gtk/MainWindow.vala:494 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "" -#: src/Gtk/MainWindow.vala:492 +#: src/Gtk/MainWindow.vala:495 msgid "Forked" msgstr "" -#: src/Gtk/MainWindow.vala:492 +#: src/Gtk/MainWindow.vala:495 msgid "Original" msgstr "" -#: src/Gtk/MainWindow.vala:524 +#: src/Gtk/MainWindow.vala:527 msgid "Refreshing..." msgstr "" -#: src/Gtk/MainWindow.vala:613 +#: src/Gtk/MainWindow.vala:616 msgid "available" msgstr "" -#: src/Gtk/MainWindow.vala:671 +#: src/Gtk/MainWindow.vala:674 msgid "No Internet" msgstr "" -#: src/Gtk/MainWindow.vala:672 +#: src/Gtk/MainWindow.vala:675 msgid "Internet connection is not active." msgstr "" diff --git a/po/nl.po b/po/nl.po index 010cbe62..4c002f47 100644 --- a/po/nl.po +++ b/po/nl.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-02-23 08:45-0500\n" +"POT-Creation-Date: 2023-02-23 15:16-0500\n" "PO-Revision-Date: 2020-08-23 13:55+0200\n" "Last-Translator: Heimen Stoffels \n" "Language-Team: Dutch (Netherlands)\n" @@ -77,12 +77,12 @@ msgstr "Geïnstalleerde pakketten" msgid "Available Kernels" msgstr "Beschikbare kernels" -#: src/Common/LinuxKernel.vala:1026 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1026 src/Gtk/MainWindow.vala:189 msgid "Installed" msgstr "Geïnstalleerd" -#: src/Common/LinuxKernel.vala:1026 src/Gtk/MainWindow.vala:186 -#: src/Gtk/MainWindow.vala:603 src/Gtk/MainWindow.vala:617 +#: src/Common/LinuxKernel.vala:1026 src/Gtk/MainWindow.vala:189 +#: src/Gtk/MainWindow.vala:606 src/Gtk/MainWindow.vala:620 msgid "Running" msgstr "In gebruik" @@ -295,7 +295,7 @@ msgid "Kernel %s Available" msgstr "Kernel %s is beschikbaar" #: src/Console/AppConsole.vala:367 src/Console/AppConsole.vala:379 -#: src/Gtk/MainWindow.vala:328 +#: src/Gtk/MainWindow.vala:331 msgid "Install" msgstr "Installeren" @@ -311,71 +311,71 @@ msgstr "Alle opties tonen" msgid "Kernel" msgstr "Kernel" -#: src/Gtk/MainWindow.vala:174 +#: src/Gtk/MainWindow.vala:176 msgid "Status" msgstr "Status" -#: src/Gtk/MainWindow.vala:314 +#: src/Gtk/MainWindow.vala:317 msgid "Refresh" msgstr "Verversen" -#: src/Gtk/MainWindow.vala:339 +#: src/Gtk/MainWindow.vala:342 #, fuzzy msgid "Uninstall" msgstr "Installeren" -#: src/Gtk/MainWindow.vala:372 src/Gtk/MainWindow.vala:405 -#: src/Gtk/MainWindow.vala:656 +#: src/Gtk/MainWindow.vala:375 src/Gtk/MainWindow.vala:408 +#: src/Gtk/MainWindow.vala:659 msgid "Close window to exit..." msgstr "Sluit het venster..." -#: src/Gtk/MainWindow.vala:379 +#: src/Gtk/MainWindow.vala:382 #, fuzzy msgid "Uninstall Old" msgstr "Deïnstalleren voltooid" -#: src/Gtk/MainWindow.vala:380 +#: src/Gtk/MainWindow.vala:383 #, fuzzy msgid "Uninstall kernels older than running kernel" msgstr "Geïnstalleerde kernels verwijderen die ouder zijn dan de huidige" -#: src/Gtk/MainWindow.vala:412 +#: src/Gtk/MainWindow.vala:415 msgid "Changes" msgstr "Wijzigingen" -#: src/Gtk/MainWindow.vala:423 src/Gtk/SettingsDialog.vala:50 +#: src/Gtk/MainWindow.vala:426 src/Gtk/SettingsDialog.vala:50 msgid "Settings" msgstr "Instellingen" -#: src/Gtk/MainWindow.vala:446 +#: src/Gtk/MainWindow.vala:449 msgid "About" msgstr "Over" -#: src/Gtk/MainWindow.vala:491 +#: src/Gtk/MainWindow.vala:494 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Een kernelupgradehulpmiddel voor op Ubuntu gebaseerde distributies" -#: src/Gtk/MainWindow.vala:492 +#: src/Gtk/MainWindow.vala:495 msgid "Forked" msgstr "Geforkt" -#: src/Gtk/MainWindow.vala:492 +#: src/Gtk/MainWindow.vala:495 msgid "Original" msgstr "Origineel" -#: src/Gtk/MainWindow.vala:524 +#: src/Gtk/MainWindow.vala:527 msgid "Refreshing..." msgstr "Bezig met verversen..." -#: src/Gtk/MainWindow.vala:613 +#: src/Gtk/MainWindow.vala:616 msgid "available" msgstr "beschikbaar" -#: src/Gtk/MainWindow.vala:671 +#: src/Gtk/MainWindow.vala:674 msgid "No Internet" msgstr "Geen internetverbinding" -#: src/Gtk/MainWindow.vala:672 +#: src/Gtk/MainWindow.vala:675 msgid "Internet connection is not active." msgstr "Je bent niet verbonden met het internet." diff --git a/po/pl.po b/po/pl.po index ac040362..19d27ce4 100644 --- a/po/pl.po +++ b/po/pl.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-02-23 08:45-0500\n" +"POT-Creation-Date: 2023-02-23 15:16-0500\n" "PO-Revision-Date: 2021-09-17 10:29+0200\n" "Last-Translator: Viktor Sokyrko \n" "Language-Team: Polish\n" @@ -75,12 +75,12 @@ msgstr "Pakiety zainstalowane" msgid "Available Kernels" msgstr "Dostępne jądra" -#: src/Common/LinuxKernel.vala:1026 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1026 src/Gtk/MainWindow.vala:189 msgid "Installed" msgstr "Zainstalowany" -#: src/Common/LinuxKernel.vala:1026 src/Gtk/MainWindow.vala:186 -#: src/Gtk/MainWindow.vala:603 src/Gtk/MainWindow.vala:617 +#: src/Common/LinuxKernel.vala:1026 src/Gtk/MainWindow.vala:189 +#: src/Gtk/MainWindow.vala:606 src/Gtk/MainWindow.vala:620 msgid "Running" msgstr "Uruchomiony" @@ -291,7 +291,7 @@ msgid "Kernel %s Available" msgstr "Dostępne jądro %s" #: src/Console/AppConsole.vala:367 src/Console/AppConsole.vala:379 -#: src/Gtk/MainWindow.vala:328 +#: src/Gtk/MainWindow.vala:331 msgid "Install" msgstr "Zainstaluj" @@ -307,70 +307,70 @@ msgstr "Pokaż wszystkie opcje" msgid "Kernel" msgstr "Jądro" -#: src/Gtk/MainWindow.vala:174 +#: src/Gtk/MainWindow.vala:176 msgid "Status" msgstr "Status" -#: src/Gtk/MainWindow.vala:314 +#: src/Gtk/MainWindow.vala:317 msgid "Refresh" msgstr "Odśwież" -#: src/Gtk/MainWindow.vala:339 +#: src/Gtk/MainWindow.vala:342 msgid "Uninstall" msgstr "Odinstaluj" -#: src/Gtk/MainWindow.vala:372 src/Gtk/MainWindow.vala:405 -#: src/Gtk/MainWindow.vala:656 +#: src/Gtk/MainWindow.vala:375 src/Gtk/MainWindow.vala:408 +#: src/Gtk/MainWindow.vala:659 msgid "Close window to exit..." msgstr "Zamknij okno żeby wyjść..." -#: src/Gtk/MainWindow.vala:379 +#: src/Gtk/MainWindow.vala:382 msgid "Uninstall Old" msgstr "Odinstaluj Stare" -#: src/Gtk/MainWindow.vala:380 +#: src/Gtk/MainWindow.vala:383 msgid "Uninstall kernels older than running kernel" msgstr "Odinstaluj jądra starsze niż uruchomione" -#: src/Gtk/MainWindow.vala:412 +#: src/Gtk/MainWindow.vala:415 msgid "Changes" msgstr "Zmiany" -#: src/Gtk/MainWindow.vala:423 src/Gtk/SettingsDialog.vala:50 +#: src/Gtk/MainWindow.vala:426 src/Gtk/SettingsDialog.vala:50 msgid "Settings" msgstr "Ustawienia" -#: src/Gtk/MainWindow.vala:446 +#: src/Gtk/MainWindow.vala:449 msgid "About" msgstr "O programie" -#: src/Gtk/MainWindow.vala:491 +#: src/Gtk/MainWindow.vala:494 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Narzędzie uaktualniania jądra dla dystrybucji z rodziny Ubuntu" -#: src/Gtk/MainWindow.vala:492 +#: src/Gtk/MainWindow.vala:495 msgid "Forked" msgstr "" -#: src/Gtk/MainWindow.vala:492 +#: src/Gtk/MainWindow.vala:495 msgid "Original" msgstr "" -#: src/Gtk/MainWindow.vala:524 +#: src/Gtk/MainWindow.vala:527 msgid "Refreshing..." msgstr "Odświeżam..." # Should be a single word at the end of the line. # For example: "5.13.16 available" -#: src/Gtk/MainWindow.vala:613 +#: src/Gtk/MainWindow.vala:616 msgid "available" msgstr "dostępne" -#: src/Gtk/MainWindow.vala:671 +#: src/Gtk/MainWindow.vala:674 msgid "No Internet" msgstr "Brak internetu" -#: src/Gtk/MainWindow.vala:672 +#: src/Gtk/MainWindow.vala:675 #, fuzzy msgid "Internet connection is not active." msgstr "Brak połączenia z internetem" diff --git a/po/ru.po b/po/ru.po index 44149051..86bcc929 100644 --- a/po/ru.po +++ b/po/ru.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-02-23 08:45-0500\n" +"POT-Creation-Date: 2023-02-23 15:16-0500\n" "PO-Revision-Date: 2022-02-24 16:05+0300\n" "Last-Translator: Danik2343 \n" "Language-Team: Russian\n" @@ -75,12 +75,12 @@ msgstr "Установленные пакеты" msgid "Available Kernels" msgstr "Доступные ядра" -#: src/Common/LinuxKernel.vala:1026 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1026 src/Gtk/MainWindow.vala:189 msgid "Installed" msgstr "Установлено" -#: src/Common/LinuxKernel.vala:1026 src/Gtk/MainWindow.vala:186 -#: src/Gtk/MainWindow.vala:603 src/Gtk/MainWindow.vala:617 +#: src/Common/LinuxKernel.vala:1026 src/Gtk/MainWindow.vala:189 +#: src/Gtk/MainWindow.vala:606 src/Gtk/MainWindow.vala:620 msgid "Running" msgstr "Используется" @@ -285,7 +285,7 @@ msgid "Kernel %s Available" msgstr "Доступно ядро %s" #: src/Console/AppConsole.vala:367 src/Console/AppConsole.vala:379 -#: src/Gtk/MainWindow.vala:328 +#: src/Gtk/MainWindow.vala:331 msgid "Install" msgstr "Установить" @@ -301,68 +301,68 @@ msgstr "Показать все параметры" msgid "Kernel" msgstr "Ядро" -#: src/Gtk/MainWindow.vala:174 +#: src/Gtk/MainWindow.vala:176 msgid "Status" msgstr "Состояние" -#: src/Gtk/MainWindow.vala:314 +#: src/Gtk/MainWindow.vala:317 msgid "Refresh" msgstr "Обновить" -#: src/Gtk/MainWindow.vala:339 +#: src/Gtk/MainWindow.vala:342 msgid "Uninstall" msgstr "Удалить" -#: src/Gtk/MainWindow.vala:372 src/Gtk/MainWindow.vala:405 -#: src/Gtk/MainWindow.vala:656 +#: src/Gtk/MainWindow.vala:375 src/Gtk/MainWindow.vala:408 +#: src/Gtk/MainWindow.vala:659 msgid "Close window to exit..." msgstr "Закройте окно, чтобы выйти..." -#: src/Gtk/MainWindow.vala:379 +#: src/Gtk/MainWindow.vala:382 msgid "Uninstall Old" msgstr "Удалить старые" -#: src/Gtk/MainWindow.vala:380 +#: src/Gtk/MainWindow.vala:383 msgid "Uninstall kernels older than running kernel" msgstr "Удалить более старшие установленные ядра, чем используемое" -#: src/Gtk/MainWindow.vala:412 +#: src/Gtk/MainWindow.vala:415 msgid "Changes" msgstr "Изменения" -#: src/Gtk/MainWindow.vala:423 src/Gtk/SettingsDialog.vala:50 +#: src/Gtk/MainWindow.vala:426 src/Gtk/SettingsDialog.vala:50 msgid "Settings" msgstr "Настройки" -#: src/Gtk/MainWindow.vala:446 +#: src/Gtk/MainWindow.vala:449 msgid "About" msgstr "О программе" -#: src/Gtk/MainWindow.vala:491 +#: src/Gtk/MainWindow.vala:494 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Программа обновления ядра для дистрибутивов на базе Ubuntu" -#: src/Gtk/MainWindow.vala:492 +#: src/Gtk/MainWindow.vala:495 msgid "Forked" msgstr "Форк" -#: src/Gtk/MainWindow.vala:492 +#: src/Gtk/MainWindow.vala:495 msgid "Original" msgstr "Оригинал" -#: src/Gtk/MainWindow.vala:524 +#: src/Gtk/MainWindow.vala:527 msgid "Refreshing..." msgstr "Обновление..." -#: src/Gtk/MainWindow.vala:613 +#: src/Gtk/MainWindow.vala:616 msgid "available" msgstr "доступно" -#: src/Gtk/MainWindow.vala:671 +#: src/Gtk/MainWindow.vala:674 msgid "No Internet" msgstr "Нет интернет соединения" -#: src/Gtk/MainWindow.vala:672 +#: src/Gtk/MainWindow.vala:675 msgid "Internet connection is not active." msgstr "Интернет соединение не активно." diff --git a/po/sv.po b/po/sv.po index 859df2db..b25bcd23 100644 --- a/po/sv.po +++ b/po/sv.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-02-23 08:45-0500\n" +"POT-Creation-Date: 2023-02-23 15:16-0500\n" "PO-Revision-Date: 2018-01-13 16:56+0100\n" "Last-Translator: Åke Engelbrektson \n" "Language-Team:Swedish\n" @@ -80,12 +80,12 @@ msgstr "Installerade paket" msgid "Available Kernels" msgstr "Tillgängliga kärnor" -#: src/Common/LinuxKernel.vala:1026 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1026 src/Gtk/MainWindow.vala:189 msgid "Installed" msgstr "Installerad" -#: src/Common/LinuxKernel.vala:1026 src/Gtk/MainWindow.vala:186 -#: src/Gtk/MainWindow.vala:603 src/Gtk/MainWindow.vala:617 +#: src/Common/LinuxKernel.vala:1026 src/Gtk/MainWindow.vala:189 +#: src/Gtk/MainWindow.vala:606 src/Gtk/MainWindow.vala:620 msgid "Running" msgstr "Körs" @@ -300,7 +300,7 @@ msgid "Kernel %s Available" msgstr "Tillgängliga paket" #: src/Console/AppConsole.vala:367 src/Console/AppConsole.vala:379 -#: src/Gtk/MainWindow.vala:328 +#: src/Gtk/MainWindow.vala:331 msgid "Install" msgstr "Installera" @@ -316,72 +316,72 @@ msgstr "Visa alla alternativ" msgid "Kernel" msgstr "Kärna" -#: src/Gtk/MainWindow.vala:174 +#: src/Gtk/MainWindow.vala:176 msgid "Status" msgstr "Status" -#: src/Gtk/MainWindow.vala:314 +#: src/Gtk/MainWindow.vala:317 msgid "Refresh" msgstr "Uppdatera" -#: src/Gtk/MainWindow.vala:339 +#: src/Gtk/MainWindow.vala:342 #, fuzzy msgid "Uninstall" msgstr "Installera" -#: src/Gtk/MainWindow.vala:372 src/Gtk/MainWindow.vala:405 -#: src/Gtk/MainWindow.vala:656 +#: src/Gtk/MainWindow.vala:375 src/Gtk/MainWindow.vala:408 +#: src/Gtk/MainWindow.vala:659 msgid "Close window to exit..." msgstr "" -#: src/Gtk/MainWindow.vala:379 +#: src/Gtk/MainWindow.vala:382 #, fuzzy msgid "Uninstall Old" msgstr "Avinstallation slutförd" -#: src/Gtk/MainWindow.vala:380 +#: src/Gtk/MainWindow.vala:383 #, fuzzy msgid "Uninstall kernels older than running kernel" msgstr "Ta bort installerade kärnor äldre än den som körs" -#: src/Gtk/MainWindow.vala:412 +#: src/Gtk/MainWindow.vala:415 msgid "Changes" msgstr "Ändringar" -#: src/Gtk/MainWindow.vala:423 src/Gtk/SettingsDialog.vala:50 +#: src/Gtk/MainWindow.vala:426 src/Gtk/SettingsDialog.vala:50 msgid "Settings" msgstr "Inställningar" -#: src/Gtk/MainWindow.vala:446 +#: src/Gtk/MainWindow.vala:449 msgid "About" msgstr "Om" -#: src/Gtk/MainWindow.vala:491 +#: src/Gtk/MainWindow.vala:494 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Kärnuppgraderingsverktyg för Ubuntu-baserade distributioner" -#: src/Gtk/MainWindow.vala:492 +#: src/Gtk/MainWindow.vala:495 msgid "Forked" msgstr "" -#: src/Gtk/MainWindow.vala:492 +#: src/Gtk/MainWindow.vala:495 msgid "Original" msgstr "" -#: src/Gtk/MainWindow.vala:524 +#: src/Gtk/MainWindow.vala:527 msgid "Refreshing..." msgstr "Uppdaterar ..." -#: src/Gtk/MainWindow.vala:613 +#: src/Gtk/MainWindow.vala:616 #, fuzzy msgid "available" msgstr "Tillgängliga paket" -#: src/Gtk/MainWindow.vala:671 +#: src/Gtk/MainWindow.vala:674 msgid "No Internet" msgstr "Inget internet" -#: src/Gtk/MainWindow.vala:672 +#: src/Gtk/MainWindow.vala:675 #, fuzzy msgid "Internet connection is not active." msgstr "Internetuppkopplingen är inte aktiv" diff --git a/po/tr.po b/po/tr.po index 8c0b8d03..ae0bc29d 100644 --- a/po/tr.po +++ b/po/tr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-02-23 08:45-0500\n" +"POT-Creation-Date: 2023-02-23 15:16-0500\n" "PO-Revision-Date: 2022-08-06 16:48+0300\n" "Last-Translator: Sabri Ünal \n" "Language-Team: Turkish\n" @@ -76,12 +76,12 @@ msgstr "Kurulu Paketler" msgid "Available Kernels" msgstr "Mevcut Çekirdekler" -#: src/Common/LinuxKernel.vala:1026 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1026 src/Gtk/MainWindow.vala:189 msgid "Installed" msgstr "Kurulu" -#: src/Common/LinuxKernel.vala:1026 src/Gtk/MainWindow.vala:186 -#: src/Gtk/MainWindow.vala:603 src/Gtk/MainWindow.vala:617 +#: src/Common/LinuxKernel.vala:1026 src/Gtk/MainWindow.vala:189 +#: src/Gtk/MainWindow.vala:606 src/Gtk/MainWindow.vala:620 msgid "Running" msgstr "Çalışıyor" @@ -285,7 +285,7 @@ msgid "Kernel %s Available" msgstr "Çekirdek %s Kullanılabilir" #: src/Console/AppConsole.vala:367 src/Console/AppConsole.vala:379 -#: src/Gtk/MainWindow.vala:328 +#: src/Gtk/MainWindow.vala:331 msgid "Install" msgstr "Kur" @@ -301,68 +301,68 @@ msgstr "Tüm seçenekleri göster" msgid "Kernel" msgstr "Çekirdek" -#: src/Gtk/MainWindow.vala:174 +#: src/Gtk/MainWindow.vala:176 msgid "Status" msgstr "Durum" -#: src/Gtk/MainWindow.vala:314 +#: src/Gtk/MainWindow.vala:317 msgid "Refresh" msgstr "Yenile" -#: src/Gtk/MainWindow.vala:339 +#: src/Gtk/MainWindow.vala:342 msgid "Uninstall" msgstr "Kaldır" -#: src/Gtk/MainWindow.vala:372 src/Gtk/MainWindow.vala:405 -#: src/Gtk/MainWindow.vala:656 +#: src/Gtk/MainWindow.vala:375 src/Gtk/MainWindow.vala:408 +#: src/Gtk/MainWindow.vala:659 msgid "Close window to exit..." msgstr "Çıkış için pencereyi kapat..." -#: src/Gtk/MainWindow.vala:379 +#: src/Gtk/MainWindow.vala:382 msgid "Uninstall Old" msgstr "Eskileri Kaldır" -#: src/Gtk/MainWindow.vala:380 +#: src/Gtk/MainWindow.vala:383 msgid "Uninstall kernels older than running kernel" msgstr "Çalışan çekirdekten daha eski çekirdekleri kaldır" -#: src/Gtk/MainWindow.vala:412 +#: src/Gtk/MainWindow.vala:415 msgid "Changes" msgstr "Değişiklikler" -#: src/Gtk/MainWindow.vala:423 src/Gtk/SettingsDialog.vala:50 +#: src/Gtk/MainWindow.vala:426 src/Gtk/SettingsDialog.vala:50 msgid "Settings" msgstr "Ayarlar" -#: src/Gtk/MainWindow.vala:446 +#: src/Gtk/MainWindow.vala:449 msgid "About" msgstr "Hakkında" -#: src/Gtk/MainWindow.vala:491 +#: src/Gtk/MainWindow.vala:494 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Ubuntu tabanlı dağıtımlar için çekirdek güncelleme aracı" -#: src/Gtk/MainWindow.vala:492 +#: src/Gtk/MainWindow.vala:495 msgid "Forked" msgstr "Çatallandı" -#: src/Gtk/MainWindow.vala:492 +#: src/Gtk/MainWindow.vala:495 msgid "Original" msgstr "Özgün" -#: src/Gtk/MainWindow.vala:524 +#: src/Gtk/MainWindow.vala:527 msgid "Refreshing..." msgstr "Yenileniyor..." -#: src/Gtk/MainWindow.vala:613 +#: src/Gtk/MainWindow.vala:616 msgid "available" msgstr "mevcut" -#: src/Gtk/MainWindow.vala:671 +#: src/Gtk/MainWindow.vala:674 msgid "No Internet" msgstr "İnternet Yok" -#: src/Gtk/MainWindow.vala:672 +#: src/Gtk/MainWindow.vala:675 msgid "Internet connection is not active." msgstr "İnternet bağlantısı aktif değil." diff --git a/po/uk.po b/po/uk.po index 8ff39e2a..f198fd29 100644 --- a/po/uk.po +++ b/po/uk.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-02-23 08:45-0500\n" +"POT-Creation-Date: 2023-02-23 15:16-0500\n" "PO-Revision-Date: 2019-07-25 11:00+0300\n" "Last-Translator: Serhii Golovko \n" "Language-Team: Ukranian\n" @@ -75,12 +75,12 @@ msgstr "Встановлені пакети" msgid "Available Kernels" msgstr "Доступні ядра" -#: src/Common/LinuxKernel.vala:1026 src/Gtk/MainWindow.vala:186 +#: src/Common/LinuxKernel.vala:1026 src/Gtk/MainWindow.vala:189 msgid "Installed" msgstr "Встановлено" -#: src/Common/LinuxKernel.vala:1026 src/Gtk/MainWindow.vala:186 -#: src/Gtk/MainWindow.vala:603 src/Gtk/MainWindow.vala:617 +#: src/Common/LinuxKernel.vala:1026 src/Gtk/MainWindow.vala:189 +#: src/Gtk/MainWindow.vala:606 src/Gtk/MainWindow.vala:620 msgid "Running" msgstr "Використовується" @@ -282,7 +282,7 @@ msgid "Kernel %s Available" msgstr "Ядро %s Доступне" #: src/Console/AppConsole.vala:367 src/Console/AppConsole.vala:379 -#: src/Gtk/MainWindow.vala:328 +#: src/Gtk/MainWindow.vala:331 msgid "Install" msgstr "Встановити" @@ -298,68 +298,68 @@ msgstr "Показати усі параметри" msgid "Kernel" msgstr "Ядро" -#: src/Gtk/MainWindow.vala:174 +#: src/Gtk/MainWindow.vala:176 msgid "Status" msgstr "Стан" -#: src/Gtk/MainWindow.vala:314 +#: src/Gtk/MainWindow.vala:317 msgid "Refresh" msgstr "Оновити" -#: src/Gtk/MainWindow.vala:339 +#: src/Gtk/MainWindow.vala:342 msgid "Uninstall" msgstr "Видалити" -#: src/Gtk/MainWindow.vala:372 src/Gtk/MainWindow.vala:405 -#: src/Gtk/MainWindow.vala:656 +#: src/Gtk/MainWindow.vala:375 src/Gtk/MainWindow.vala:408 +#: src/Gtk/MainWindow.vala:659 msgid "Close window to exit..." msgstr "Закрийте вікно, щоб вийти..." -#: src/Gtk/MainWindow.vala:379 +#: src/Gtk/MainWindow.vala:382 msgid "Uninstall Old" msgstr "Видалити старе" -#: src/Gtk/MainWindow.vala:380 +#: src/Gtk/MainWindow.vala:383 msgid "Uninstall kernels older than running kernel" msgstr "Видалити ядра, старіші за запущене ядро" -#: src/Gtk/MainWindow.vala:412 +#: src/Gtk/MainWindow.vala:415 msgid "Changes" msgstr "Зміни" -#: src/Gtk/MainWindow.vala:423 src/Gtk/SettingsDialog.vala:50 +#: src/Gtk/MainWindow.vala:426 src/Gtk/SettingsDialog.vala:50 msgid "Settings" msgstr "Налаштування" -#: src/Gtk/MainWindow.vala:446 +#: src/Gtk/MainWindow.vala:449 msgid "About" msgstr "Про программу" -#: src/Gtk/MainWindow.vala:491 +#: src/Gtk/MainWindow.vala:494 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Програма оновлення ядра для дистрибутивів на базі Ubuntu" -#: src/Gtk/MainWindow.vala:492 +#: src/Gtk/MainWindow.vala:495 msgid "Forked" msgstr "Двоєний" -#: src/Gtk/MainWindow.vala:492 +#: src/Gtk/MainWindow.vala:495 msgid "Original" msgstr "Оригінал" -#: src/Gtk/MainWindow.vala:524 +#: src/Gtk/MainWindow.vala:527 msgid "Refreshing..." msgstr "Оновлення..." -#: src/Gtk/MainWindow.vala:613 +#: src/Gtk/MainWindow.vala:616 msgid "available" msgstr "доступний" -#: src/Gtk/MainWindow.vala:671 +#: src/Gtk/MainWindow.vala:674 msgid "No Internet" msgstr "Інтернет з'єднання відсутнє" -#: src/Gtk/MainWindow.vala:672 +#: src/Gtk/MainWindow.vala:675 msgid "Internet connection is not active." msgstr "Інтернет з'єднання не активно." diff --git a/src/Common/LinuxKernel.vala b/src/Common/LinuxKernel.vala index a90281f2..55d383e7 100644 --- a/src/Common/LinuxKernel.vala +++ b/src/Common/LinuxKernel.vala @@ -194,7 +194,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { try { cancelled = false; - var worker = new Thread.try(null, () => query_thread(notifier)); + var worker = new Thread.try(null, () => query_thread((owned) notifier)); if (wait) worker.join(); From ea68c813ce68647b2e9f5c6817c47330916b1311 Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Thu, 23 Feb 2023 17:22:40 -0500 Subject: [PATCH 228/567] Revert "Remove `check_internet_connectivity()` in favor of a method in `Main`" This reverts commit acc205d9a6deb25168b71c3d6fc47ac8f9506f49. --- src/Common/LinuxKernel.vala | 3 +-- src/Common/Main.vala | 16 ---------------- src/Console/AppConsole.vala | 2 +- src/Gtk/MainWindow.vala | 10 +++++++--- src/Utility/TeeJee.System.vala | 16 ++++++++++++++++ 5 files changed, 25 insertions(+), 22 deletions(-) diff --git a/src/Common/LinuxKernel.vala b/src/Common/LinuxKernel.vala index 75782e0b..bb454824 100644 --- a/src/Common/LinuxKernel.vala +++ b/src/Common/LinuxKernel.vala @@ -35,8 +35,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { // static - [CCode(cname="URI_KERNEL_UBUNTU_MAINLINE")] - public extern const string URI_KERNEL_UBUNTU_MAINLINE; + [CCode(cname="URI_KERNEL_UBUNTU_MAINLINE")] extern const string URI_KERNEL_UBUNTU_MAINLINE; public static string CACHE_DIR; public static string NATIVE_ARCH; diff --git a/src/Common/Main.vala b/src/Common/Main.vala index 287414e5..bfa9fedb 100644 --- a/src/Common/Main.vala +++ b/src/Common/Main.vala @@ -299,20 +299,4 @@ public class Main : GLib.Object{ file_delete(STARTUP_DESKTOP_FILE); } } - - public static bool can_reach_mainline_ppa() { - if (App.skip_connection_check) - return true; - - bool has_internet = true; - try { - var file = File.new_for_uri(LinuxKernel.URI_KERNEL_UBUNTU_MAINLINE); - file.query_info("*", FileQueryInfoFlags.NONE); - } catch (Error e) { - has_internet = false; - } - - return has_internet; - } - } diff --git a/src/Console/AppConsole.vala b/src/Console/AppConsole.vala index f65019d8..994c694e 100644 --- a/src/Console/AppConsole.vala +++ b/src/Console/AppConsole.vala @@ -388,7 +388,7 @@ public class AppConsole : GLib.Object { } public void check_if_internet_is_active(bool exit_app = true){ - if (!Main.can_reach_mainline_ppa()){ + if (!check_internet_connectivity()){ if (exit_app){ exit(1); } diff --git a/src/Gtk/MainWindow.vala b/src/Gtk/MainWindow.vala index e07c7c33..14f907c9 100644 --- a/src/Gtk/MainWindow.vala +++ b/src/Gtk/MainWindow.vala @@ -320,7 +320,8 @@ public class MainWindow : Gtk.Window{ button.clicked.connect(() => { - if (!can_reach_mainline_ppa()) + if (!check_internet_connectivity()){ + gtk_messagebox(_("No Internet"), _("Internet connection is not active"), this, true); return; refresh_cache(); @@ -512,7 +513,8 @@ public class MainWindow : Gtk.Window{ private void refresh_cache(){ - if (!can_reach_mainline_ppa()) + if (!check_internet_connectivity()){ + gtk_messagebox(_("No Internet"), _("Internet connection is not active."), this, true); return; if (App.command != "list"){ @@ -622,10 +624,12 @@ public class MainWindow : Gtk.Window{ } public void kinst(LinuxKernel kern){ + // check if installed return_if_fail(! kern.is_installed); - if (!can_reach_mainline_ppa()) + if (!check_internet_connectivity()){ + gtk_messagebox(_("No Internet"), _("Internet connection is not active."), this, true); return; var term = new TerminalWindow.with_parent(this, false, true); diff --git a/src/Utility/TeeJee.System.vala b/src/Utility/TeeJee.System.vala index a5460689..3716ec56 100644 --- a/src/Utility/TeeJee.System.vala +++ b/src/Utility/TeeJee.System.vala @@ -28,6 +28,22 @@ namespace TeeJee.System{ using TeeJee.Misc; using TeeJee.FileSystem; + // internet helpers ---------------------- + public bool check_internet_connectivity(){ + + if (App.skip_connection_check) return true; + + string std_err, std_out; + string cmd = "aria2c --no-netrc --no-conf --connect-timeout="+App.connect_timeout_seconds.to_string()+" --max-file-not-found=3 --retry-wait=2 --max-tries=3 --dry-run --quiet 'https://kernel.ubuntu.com'"; + + int status = exec_sync(cmd, out std_out, out std_err); + + if (std_err.length > 0) log_error(std_err); + if (status != 0) log_error(_("Internet connection is not active")); + + return (status == 0); + } + // open ----------------------------- public void xdg_open (string file){ From aad17c5227a50197db4d6829d76e0c677f40c76a Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Thu, 23 Feb 2023 18:27:48 -0500 Subject: [PATCH 229/567] revert new net connection check because gvfs --- po/de.po | 142 ++++++++++++++------------ po/el.po | 142 ++++++++++++++------------ po/es.po | 144 +++++++++++++++------------ po/fr.po | 142 ++++++++++++++------------ po/hr.po | 142 ++++++++++++++------------ po/it.po | 142 ++++++++++++++------------ po/ko.po | 142 ++++++++++++++------------ po/messages.pot | 141 ++++++++++++++------------ po/nl.po | 142 ++++++++++++++------------ po/pl.po | 144 +++++++++++++++------------ po/ru.po | 142 ++++++++++++++------------ po/sv.po | 144 +++++++++++++++------------ po/tr.po | 142 ++++++++++++++------------ po/uk.po | 142 ++++++++++++++------------ src/Common/LinuxKernel.vala | 2 +- src/Gtk/CustomMessageDialog.vala | 166 +++++++++++++++++++++++++++++++ src/Gtk/MainWindow.vala | 22 +--- src/Utility/Gtk/GtkHelper.vala | 20 ++++ 18 files changed, 1298 insertions(+), 905 deletions(-) create mode 100644 src/Gtk/CustomMessageDialog.vala diff --git a/po/de.po b/po/de.po index 7f8e9e10..e124972f 100644 --- a/po/de.po +++ b/po/de.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-02-23 15:16-0500\n" +"POT-Creation-Date: 2023-02-23 17:56-0500\n" "PO-Revision-Date: 2023-02-20 18:40+0100\n" "Last-Translator: Marvin Meysel \n" "Language-Team: German\n" @@ -13,104 +13,105 @@ msgstr "" "X-Launchpad-Export-Date: 2017-04-13 11:48+0000\n" "X-Generator: Poedit 3.1.1\n" -#: src/Common/LinuxKernel.vala:88 +#: src/Common/LinuxKernel.vala:87 msgid "Distribution" msgstr "Distribution" -#: src/Common/LinuxKernel.vala:102 +#: src/Common/LinuxKernel.vala:101 msgid "Architecture" msgstr "Architektur" -#: src/Common/LinuxKernel.vala:298 +#: src/Common/LinuxKernel.vala:290 msgid "Fetching index..." msgstr "Index abrufen..." -#: src/Common/LinuxKernel.vala:337 +#: src/Common/LinuxKernel.vala:329 msgid "Fetching index from kernel.ubuntu.com..." msgstr "Hole Index von kernel.ubuntu.com..." -#: src/Common/LinuxKernel.vala:593 +#: src/Common/LinuxKernel.vala:585 msgid "Could not find running kernel in list!" msgstr "Konnte keinen laufenden Kernel in der Liste finden!" -#: src/Common/LinuxKernel.vala:599 +#: src/Common/LinuxKernel.vala:591 msgid "Could not find any kernels to uninstall" msgstr "Es konnten keine Kernel zum Deinstallieren gefunden werden" -#: src/Common/LinuxKernel.vala:608 +#: src/Common/LinuxKernel.vala:600 msgid "The following kernels will be uninstalled:" msgstr "Die folgenden Kernel werden deinstalliert:" -#: src/Common/LinuxKernel.vala:615 +#: src/Common/LinuxKernel.vala:607 msgid "Continue ?" msgstr "Weiter ?" -#: src/Common/LinuxKernel.vala:641 src/Console/AppConsole.vala:314 +#: src/Common/LinuxKernel.vala:633 src/Console/AppConsole.vala:314 msgid "Latest update" msgstr "Neustes Update" -#: src/Common/LinuxKernel.vala:652 src/Console/AppConsole.vala:321 +#: src/Common/LinuxKernel.vala:644 src/Console/AppConsole.vala:321 msgid "Latest point update" msgstr "Letzte Punktaktualisierung" -#: src/Common/LinuxKernel.vala:660 src/Console/AppConsole.vala:326 +#: src/Common/LinuxKernel.vala:652 src/Console/AppConsole.vala:326 #: src/Console/AppConsole.vala:387 msgid "No updates found" msgstr "Keine Updates gefunden" -#: src/Common/LinuxKernel.vala:670 +#: src/Common/LinuxKernel.vala:662 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Kernel-Version %s installieren? (j/n):" -#: src/Common/LinuxKernel.vala:931 +#: src/Common/LinuxKernel.vala:912 msgid "Packages Available" msgstr "Verfügbare Pakete" -#: src/Common/LinuxKernel.vala:939 +#: src/Common/LinuxKernel.vala:920 msgid "Packages Installed" msgstr "Installierte Pakete" -#: src/Common/LinuxKernel.vala:1019 +#: src/Common/LinuxKernel.vala:1000 msgid "Available Kernels" msgstr "Verfügbare Kernel" -#: src/Common/LinuxKernel.vala:1026 src/Gtk/MainWindow.vala:189 +#: src/Common/LinuxKernel.vala:1007 src/Gtk/MainWindow.vala:189 msgid "Installed" msgstr "Installiert" -#: src/Common/LinuxKernel.vala:1026 src/Gtk/MainWindow.vala:189 -#: src/Gtk/MainWindow.vala:606 src/Gtk/MainWindow.vala:620 +#: src/Common/LinuxKernel.vala:1007 src/Gtk/MainWindow.vala:189 +#: src/Gtk/MainWindow.vala:610 src/Gtk/MainWindow.vala:624 msgid "Running" msgstr "Läuft" -#: src/Common/LinuxKernel.vala:1063 +#: src/Common/LinuxKernel.vala:1044 msgid "Downloading" msgstr "Herunterladen" -#: src/Common/LinuxKernel.vala:1082 +#: src/Common/LinuxKernel.vala:1063 src/Gtk/CustomMessageDialog.vala:150 +#: src/Gtk/CustomMessageDialog.vala:154 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:1087 +#: src/Common/LinuxKernel.vala:1068 msgid "ERROR" msgstr "Fehler" -#: src/Common/LinuxKernel.vala:1101 +#: src/Common/LinuxKernel.vala:1082 msgid "This kernel is already installed." msgstr "Dieser Kernel ist bereits installiert." -#: src/Common/LinuxKernel.vala:1127 +#: src/Common/LinuxKernel.vala:1108 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "Die Installation ist abgeschlossen. Ein Neustart ist erforderlich, um den " "neuen Kernel zu verwenden." -#: src/Common/LinuxKernel.vala:1130 +#: src/Common/LinuxKernel.vala:1111 msgid "Installation completed with errors" msgstr "Installation mit Fehlern abgeschlossen" -#: src/Common/LinuxKernel.vala:1151 +#: src/Common/LinuxKernel.vala:1132 msgid "" "Selected kernel is currently running and cannot be un-installed.\n" " Install another kernel before un-installing this one." @@ -119,19 +120,19 @@ msgstr "" "werden.\n" " Installieren Sie einen anderen Kernel, bevor Sie diesen deinstallieren." -#: src/Common/LinuxKernel.vala:1156 +#: src/Common/LinuxKernel.vala:1137 msgid "Preparing to uninstall selected kernels" msgstr "Vorbereiten der Deinstallation ausgewählter Kernel" -#: src/Common/LinuxKernel.vala:1187 src/Common/LinuxKernel.vala:1234 +#: src/Common/LinuxKernel.vala:1168 src/Common/LinuxKernel.vala:1215 msgid "Un-install completed" msgstr "Deinstallation abgeschlossen" -#: src/Common/LinuxKernel.vala:1190 src/Common/LinuxKernel.vala:1237 +#: src/Common/LinuxKernel.vala:1171 src/Common/LinuxKernel.vala:1218 msgid "Un-install completed with errors" msgstr "Deinstallation mit Fehlern abgeschlossen" -#: src/Common/LinuxKernel.vala:1203 +#: src/Common/LinuxKernel.vala:1184 msgid "" "This kernel is currently running and cannot be un-installed.\n" " Install another kernel before un-installing this one." @@ -289,7 +290,7 @@ msgid "Kernel %s Available" msgstr "Kernel %s verfügbar" #: src/Console/AppConsole.vala:367 src/Console/AppConsole.vala:379 -#: src/Gtk/MainWindow.vala:331 +#: src/Gtk/MainWindow.vala:333 msgid "Install" msgstr "Installieren" @@ -301,6 +302,19 @@ msgstr "Zeige Debug Informationen" msgid "Show all options" msgstr "Alle Optionen anzeigen" +#: src/Gtk/CustomMessageDialog.vala:155 src/Gtk/ProgressWindow.vala:142 +#: src/Gtk/TerminalWindow.vala:148 +msgid "Cancel" +msgstr "Abbrechen" + +#: src/Gtk/CustomMessageDialog.vala:159 +msgid "Yes" +msgstr "" + +#: src/Gtk/CustomMessageDialog.vala:160 +msgid "No" +msgstr "" + #: src/Gtk/MainWindow.vala:146 msgid "Kernel" msgstr "Kernel" @@ -313,67 +327,69 @@ msgstr "Status" msgid "Refresh" msgstr "Auffrischen" -#: src/Gtk/MainWindow.vala:342 +#: src/Gtk/MainWindow.vala:324 src/Utility/TeeJee.System.vala:42 +#, fuzzy +msgid "Internet connection is not active" +msgstr "Die Internetverbindung ist nicht aktiv." + +#: src/Gtk/MainWindow.vala:324 src/Gtk/MainWindow.vala:518 +#: src/Gtk/MainWindow.vala:634 +msgid "No Internet" +msgstr "Kein Internet" + +#: src/Gtk/MainWindow.vala:344 msgid "Uninstall" msgstr "Deinstallieren" -#: src/Gtk/MainWindow.vala:375 src/Gtk/MainWindow.vala:408 -#: src/Gtk/MainWindow.vala:659 +#: src/Gtk/MainWindow.vala:377 src/Gtk/MainWindow.vala:410 +#: src/Gtk/MainWindow.vala:666 msgid "Close window to exit..." msgstr "Fenster schließen zum Verlassen..." -#: src/Gtk/MainWindow.vala:382 +#: src/Gtk/MainWindow.vala:384 msgid "Uninstall Old" msgstr "Alte deinstallieren" -#: src/Gtk/MainWindow.vala:383 +#: src/Gtk/MainWindow.vala:385 msgid "Uninstall kernels older than running kernel" msgstr "Deinstallation von Kerneln, die älter sind als der aktuelle Kernel" -#: src/Gtk/MainWindow.vala:415 +#: src/Gtk/MainWindow.vala:417 msgid "Changes" msgstr "Änderungen" -#: src/Gtk/MainWindow.vala:426 src/Gtk/SettingsDialog.vala:50 +#: src/Gtk/MainWindow.vala:428 src/Gtk/SettingsDialog.vala:50 msgid "Settings" msgstr "Einstellungen" -#: src/Gtk/MainWindow.vala:449 +#: src/Gtk/MainWindow.vala:451 msgid "About" msgstr "Über" -#: src/Gtk/MainWindow.vala:494 +#: src/Gtk/MainWindow.vala:496 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Kernel-Upgrade-Dienstprogramm für Ubuntu-basierte Distributionen" -#: src/Gtk/MainWindow.vala:495 +#: src/Gtk/MainWindow.vala:497 msgid "Forked" msgstr "Forked" -#: src/Gtk/MainWindow.vala:495 +#: src/Gtk/MainWindow.vala:497 msgid "Original" msgstr "Original" -#: src/Gtk/MainWindow.vala:527 +#: src/Gtk/MainWindow.vala:518 src/Gtk/MainWindow.vala:634 +msgid "Internet connection is not active." +msgstr "Die Internetverbindung ist nicht aktiv." + +#: src/Gtk/MainWindow.vala:531 msgid "Refreshing..." msgstr "Auffrischen..." -#: src/Gtk/MainWindow.vala:616 +#: src/Gtk/MainWindow.vala:620 msgid "available" msgstr "Verfügbar" -#: src/Gtk/MainWindow.vala:674 -msgid "No Internet" -msgstr "Kein Internet" - -#: src/Gtk/MainWindow.vala:675 -msgid "Internet connection is not active." -msgstr "Die Internetverbindung ist nicht aktiv." - -#: src/Gtk/ProgressWindow.vala:142 src/Gtk/TerminalWindow.vala:149 -msgid "Cancel" -msgstr "Abbrechen" - #: src/Gtk/SettingsDialog.vala:60 msgid "Notification" msgstr "Benachrichtigung" @@ -438,7 +454,7 @@ msgstr "Sekunden" msgid "Max concurrent downloads" msgstr "Maximale Anzahl gleichzeitiger Downloads" -#: src/Gtk/TerminalWindow.vala:159 src/Utility/Gtk/AboutWindow.vala:294 +#: src/Gtk/TerminalWindow.vala:158 src/Utility/Gtk/AboutWindow.vala:294 msgid "Close" msgstr "Schließen" @@ -474,7 +490,7 @@ msgstr "Dokumentierer" msgid "Third Party Inclusions" msgstr "Einschlüsse von Drittparteien" -#: src/Utility/Gtk/GtkHelper.vala:39 +#: src/Utility/Gtk/GtkHelper.vala:59 msgid "Missing Icon" msgstr "Fehlendes Symbol" @@ -482,7 +498,7 @@ msgstr "Fehlendes Symbol" msgid "File deleted" msgstr "Datei Gelöscht" -#: src/Utility/TeeJee.FileSystem.vala:76 src/Utility/TeeJee.FileSystem.vala:256 +#: src/Utility/TeeJee.FileSystem.vala:76 src/Utility/TeeJee.FileSystem.vala:240 msgid "Failed to delete file" msgstr "Fehler beim Löschen der Datei" @@ -518,16 +534,16 @@ msgstr "Datei Verschoben" msgid "Failed to move file" msgstr "Fehler beim Verschieben der Datei" -#: src/Utility/TeeJee.FileSystem.vala:233 -#: src/Utility/TeeJee.FileSystem.vala:236 +#: src/Utility/TeeJee.FileSystem.vala:217 +#: src/Utility/TeeJee.FileSystem.vala:220 msgid "Created directory" msgstr "Erstelltes Verzeichnis" -#: src/Utility/TeeJee.FileSystem.vala:243 +#: src/Utility/TeeJee.FileSystem.vala:227 msgid "Failed to create dir" msgstr "Fehler beim Erstellten Verzeichnis" -#: src/Utility/TeeJee.FileSystem.vala:255 +#: src/Utility/TeeJee.FileSystem.vala:239 msgid "Deleted" msgstr "Gelöscht" diff --git a/po/el.po b/po/el.po index 2a055e14..13cdf456 100644 --- a/po/el.po +++ b/po/el.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-02-23 15:16-0500\n" +"POT-Creation-Date: 2023-02-23 17:56-0500\n" "PO-Revision-Date: 2023-01-10 02:03-0600\n" "Last-Translator: Vasilis Kosmidis \n" "Language-Team: Greek\n" @@ -13,105 +13,106 @@ msgstr "" "X-Launchpad-Export-Date: 2017-04-13 11:48+0000\n" "X-Generator: Poedit 2.0.5\n" -#: src/Common/LinuxKernel.vala:88 +#: src/Common/LinuxKernel.vala:87 msgid "Distribution" msgstr "Διανομή" -#: src/Common/LinuxKernel.vala:102 +#: src/Common/LinuxKernel.vala:101 msgid "Architecture" msgstr "Αρχιτεκτονική" -#: src/Common/LinuxKernel.vala:298 +#: src/Common/LinuxKernel.vala:290 msgid "Fetching index..." msgstr "Ανάκτηση ευρετηρίου..." -#: src/Common/LinuxKernel.vala:337 +#: src/Common/LinuxKernel.vala:329 msgid "Fetching index from kernel.ubuntu.com..." msgstr "Ανάκτηση ευρετηρίου από το kernel.ubuntu.com..." -#: src/Common/LinuxKernel.vala:593 +#: src/Common/LinuxKernel.vala:585 msgid "Could not find running kernel in list!" msgstr "Δεν ήταν δυνατή η εύρεση του τρέχοντος πυρήνα στη λίστα!" -#: src/Common/LinuxKernel.vala:599 +#: src/Common/LinuxKernel.vala:591 msgid "Could not find any kernels to uninstall" msgstr "Δεν βρέθηκε κανένας πυρήνας για απεγκατάσταση" -#: src/Common/LinuxKernel.vala:608 +#: src/Common/LinuxKernel.vala:600 #, fuzzy msgid "The following kernels will be uninstalled:" msgstr "Αυτός ο πυρήνας είναι ήδη εγκατεστημένος." -#: src/Common/LinuxKernel.vala:615 +#: src/Common/LinuxKernel.vala:607 msgid "Continue ?" msgstr "Συνέχεια;" -#: src/Common/LinuxKernel.vala:641 src/Console/AppConsole.vala:314 +#: src/Common/LinuxKernel.vala:633 src/Console/AppConsole.vala:314 msgid "Latest update" msgstr "Τελευταία αναβάθμιση" -#: src/Common/LinuxKernel.vala:652 src/Console/AppConsole.vala:321 +#: src/Common/LinuxKernel.vala:644 src/Console/AppConsole.vala:321 msgid "Latest point update" msgstr "Τελευταία ενημέρωση συντήρησης" -#: src/Common/LinuxKernel.vala:660 src/Console/AppConsole.vala:326 +#: src/Common/LinuxKernel.vala:652 src/Console/AppConsole.vala:326 #: src/Console/AppConsole.vala:387 msgid "No updates found" msgstr "Δεν βρέθηκαν ενημερώσεις" -#: src/Common/LinuxKernel.vala:670 +#: src/Common/LinuxKernel.vala:662 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Εγκατάσταση του πυρήνα έκδοσης %s ; (ν/ό):" -#: src/Common/LinuxKernel.vala:931 +#: src/Common/LinuxKernel.vala:912 msgid "Packages Available" msgstr "Διαθέσιμα πακέτα" -#: src/Common/LinuxKernel.vala:939 +#: src/Common/LinuxKernel.vala:920 msgid "Packages Installed" msgstr "Εγκατεστημένα πακέτα" -#: src/Common/LinuxKernel.vala:1019 +#: src/Common/LinuxKernel.vala:1000 msgid "Available Kernels" msgstr "Διαθέσιμοι πυρήνες" -#: src/Common/LinuxKernel.vala:1026 src/Gtk/MainWindow.vala:189 +#: src/Common/LinuxKernel.vala:1007 src/Gtk/MainWindow.vala:189 msgid "Installed" msgstr "Εγκατεστημένος" -#: src/Common/LinuxKernel.vala:1026 src/Gtk/MainWindow.vala:189 -#: src/Gtk/MainWindow.vala:606 src/Gtk/MainWindow.vala:620 +#: src/Common/LinuxKernel.vala:1007 src/Gtk/MainWindow.vala:189 +#: src/Gtk/MainWindow.vala:610 src/Gtk/MainWindow.vala:624 msgid "Running" msgstr "Ενεργός" -#: src/Common/LinuxKernel.vala:1063 +#: src/Common/LinuxKernel.vala:1044 msgid "Downloading" msgstr "Λήψη" -#: src/Common/LinuxKernel.vala:1082 +#: src/Common/LinuxKernel.vala:1063 src/Gtk/CustomMessageDialog.vala:150 +#: src/Gtk/CustomMessageDialog.vala:154 msgid "OK" msgstr "ΟΚ" -#: src/Common/LinuxKernel.vala:1087 +#: src/Common/LinuxKernel.vala:1068 msgid "ERROR" msgstr "ΣΦΑΛΜΑ" -#: src/Common/LinuxKernel.vala:1101 +#: src/Common/LinuxKernel.vala:1082 msgid "This kernel is already installed." msgstr "Αυτός ο πυρήνας είναι ήδη εγκατεστημένος." -#: src/Common/LinuxKernel.vala:1127 +#: src/Common/LinuxKernel.vala:1108 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "Η εγκατάσταση ολοκληρώθηκε. Απαιτείται επανεκκίνηση για τη χρήση του νέου " "πυρήνα." -#: src/Common/LinuxKernel.vala:1130 +#: src/Common/LinuxKernel.vala:1111 msgid "Installation completed with errors" msgstr "Η εγκατάσταση ολοκληρώθηκε με σφάλματα" -#: src/Common/LinuxKernel.vala:1151 +#: src/Common/LinuxKernel.vala:1132 msgid "" "Selected kernel is currently running and cannot be un-installed.\n" " Install another kernel before un-installing this one." @@ -120,19 +121,19 @@ msgstr "" "απεγκατασταθεί.\n" " Εγκαταστήστε έναν άλλο πυρήνα πριν απεγκαταστήσετε αυτόν." -#: src/Common/LinuxKernel.vala:1156 +#: src/Common/LinuxKernel.vala:1137 msgid "Preparing to uninstall selected kernels" msgstr "Προετοιμασία για απεγκατάσταση επιλεγμένων πυρήνων" -#: src/Common/LinuxKernel.vala:1187 src/Common/LinuxKernel.vala:1234 +#: src/Common/LinuxKernel.vala:1168 src/Common/LinuxKernel.vala:1215 msgid "Un-install completed" msgstr "Η απεγκατάσταση ολοκληρώθηκε" -#: src/Common/LinuxKernel.vala:1190 src/Common/LinuxKernel.vala:1237 +#: src/Common/LinuxKernel.vala:1171 src/Common/LinuxKernel.vala:1218 msgid "Un-install completed with errors" msgstr "Η απεγκατάσταση ολοκληρώθηκε με σφάλματα" -#: src/Common/LinuxKernel.vala:1203 +#: src/Common/LinuxKernel.vala:1184 msgid "" "This kernel is currently running and cannot be un-installed.\n" " Install another kernel before un-installing this one." @@ -289,7 +290,7 @@ msgid "Kernel %s Available" msgstr "Πυρήνας %s διαθέσιμος" #: src/Console/AppConsole.vala:367 src/Console/AppConsole.vala:379 -#: src/Gtk/MainWindow.vala:331 +#: src/Gtk/MainWindow.vala:333 msgid "Install" msgstr "Εγκατάσταση" @@ -301,6 +302,19 @@ msgstr "Εκτύπωση πληροφοριών εντοπισμού σφαλμ msgid "Show all options" msgstr "Εμφάνιση όλων των επιλογών" +#: src/Gtk/CustomMessageDialog.vala:155 src/Gtk/ProgressWindow.vala:142 +#: src/Gtk/TerminalWindow.vala:148 +msgid "Cancel" +msgstr "Άκυρο" + +#: src/Gtk/CustomMessageDialog.vala:159 +msgid "Yes" +msgstr "" + +#: src/Gtk/CustomMessageDialog.vala:160 +msgid "No" +msgstr "" + #: src/Gtk/MainWindow.vala:146 msgid "Kernel" msgstr "Πυρήνας" @@ -313,67 +327,69 @@ msgstr "Κατάσταση" msgid "Refresh" msgstr "Ανανέωση" -#: src/Gtk/MainWindow.vala:342 +#: src/Gtk/MainWindow.vala:324 src/Utility/TeeJee.System.vala:42 +#, fuzzy +msgid "Internet connection is not active" +msgstr "Η σύνδεση στο διαδίκτυο δεν είναι ενεργή." + +#: src/Gtk/MainWindow.vala:324 src/Gtk/MainWindow.vala:518 +#: src/Gtk/MainWindow.vala:634 +msgid "No Internet" +msgstr "Χωρίς διαδίκτυο" + +#: src/Gtk/MainWindow.vala:344 msgid "Uninstall" msgstr "Απεγκατάσταση" -#: src/Gtk/MainWindow.vala:375 src/Gtk/MainWindow.vala:408 -#: src/Gtk/MainWindow.vala:659 +#: src/Gtk/MainWindow.vala:377 src/Gtk/MainWindow.vala:410 +#: src/Gtk/MainWindow.vala:666 msgid "Close window to exit..." msgstr "Κλείστε το παράθυρο για έξοδο..." -#: src/Gtk/MainWindow.vala:382 +#: src/Gtk/MainWindow.vala:384 msgid "Uninstall Old" msgstr "Απεγκατάσταση παλαιών" -#: src/Gtk/MainWindow.vala:383 +#: src/Gtk/MainWindow.vala:385 msgid "Uninstall kernels older than running kernel" msgstr "Απεγκαταστήστε πυρήνες παλαιότερους από τον ενεργό" -#: src/Gtk/MainWindow.vala:415 +#: src/Gtk/MainWindow.vala:417 msgid "Changes" msgstr "Αλλαγές" -#: src/Gtk/MainWindow.vala:426 src/Gtk/SettingsDialog.vala:50 +#: src/Gtk/MainWindow.vala:428 src/Gtk/SettingsDialog.vala:50 msgid "Settings" msgstr "Ρυθμίσεις" -#: src/Gtk/MainWindow.vala:449 +#: src/Gtk/MainWindow.vala:451 msgid "About" msgstr "Σχετικά" -#: src/Gtk/MainWindow.vala:494 +#: src/Gtk/MainWindow.vala:496 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Πρόγραμμα αναβάθμισης πυρήνα για διανομές που βασίζονται στο Ubuntu" -#: src/Gtk/MainWindow.vala:495 +#: src/Gtk/MainWindow.vala:497 msgid "Forked" msgstr "Forked" -#: src/Gtk/MainWindow.vala:495 +#: src/Gtk/MainWindow.vala:497 msgid "Original" msgstr "Πρωτότυπο" -#: src/Gtk/MainWindow.vala:527 +#: src/Gtk/MainWindow.vala:518 src/Gtk/MainWindow.vala:634 +msgid "Internet connection is not active." +msgstr "Η σύνδεση στο διαδίκτυο δεν είναι ενεργή." + +#: src/Gtk/MainWindow.vala:531 msgid "Refreshing..." msgstr "Ανανέωση..." -#: src/Gtk/MainWindow.vala:616 +#: src/Gtk/MainWindow.vala:620 msgid "available" msgstr "διαθέσιμος" -#: src/Gtk/MainWindow.vala:674 -msgid "No Internet" -msgstr "Χωρίς διαδίκτυο" - -#: src/Gtk/MainWindow.vala:675 -msgid "Internet connection is not active." -msgstr "Η σύνδεση στο διαδίκτυο δεν είναι ενεργή." - -#: src/Gtk/ProgressWindow.vala:142 src/Gtk/TerminalWindow.vala:149 -msgid "Cancel" -msgstr "Άκυρο" - #: src/Gtk/SettingsDialog.vala:60 msgid "Notification" msgstr "Ειδοποίηση" @@ -438,7 +454,7 @@ msgstr "δευτερόλεπτα" msgid "Max concurrent downloads" msgstr "Μέγιστες ταυτόχρονες λήψεις" -#: src/Gtk/TerminalWindow.vala:159 src/Utility/Gtk/AboutWindow.vala:294 +#: src/Gtk/TerminalWindow.vala:158 src/Utility/Gtk/AboutWindow.vala:294 msgid "Close" msgstr "Κλείσιμο" @@ -474,7 +490,7 @@ msgstr "Τεκμηριωτές" msgid "Third Party Inclusions" msgstr "Συμπεριλήψεις τρίτων" -#: src/Utility/Gtk/GtkHelper.vala:39 +#: src/Utility/Gtk/GtkHelper.vala:59 msgid "Missing Icon" msgstr "Ελλείπον εικονίδιο" @@ -482,7 +498,7 @@ msgstr "Ελλείπον εικονίδιο" msgid "File deleted" msgstr "Το αρχείο διαγράφηκε" -#: src/Utility/TeeJee.FileSystem.vala:76 src/Utility/TeeJee.FileSystem.vala:256 +#: src/Utility/TeeJee.FileSystem.vala:76 src/Utility/TeeJee.FileSystem.vala:240 msgid "Failed to delete file" msgstr "Αποτυχία διαγραφής του αρχείου" @@ -518,16 +534,16 @@ msgstr "Το αρχείο μετακινήθηκε" msgid "Failed to move file" msgstr "Αποτυχία μετακίνησης αρχείου" -#: src/Utility/TeeJee.FileSystem.vala:233 -#: src/Utility/TeeJee.FileSystem.vala:236 +#: src/Utility/TeeJee.FileSystem.vala:217 +#: src/Utility/TeeJee.FileSystem.vala:220 msgid "Created directory" msgstr "Δημιουργήθηκε κατάλογος" -#: src/Utility/TeeJee.FileSystem.vala:243 +#: src/Utility/TeeJee.FileSystem.vala:227 msgid "Failed to create dir" msgstr "Αποτυχία δημιουργίας καταλόγου" -#: src/Utility/TeeJee.FileSystem.vala:255 +#: src/Utility/TeeJee.FileSystem.vala:239 msgid "Deleted" msgstr "Διαγράφηκε" diff --git a/po/es.po b/po/es.po index a2a22b35..05ce1014 100644 --- a/po/es.po +++ b/po/es.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-02-23 15:16-0500\n" +"POT-Creation-Date: 2023-02-23 17:56-0500\n" "PO-Revision-Date: 2018-01-03 02:03-0600\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish\n" @@ -13,105 +13,106 @@ msgstr "" "X-Launchpad-Export-Date: 2017-04-13 11:48+0000\n" "X-Generator: Poedit 2.0.5\n" -#: src/Common/LinuxKernel.vala:88 +#: src/Common/LinuxKernel.vala:87 msgid "Distribution" msgstr "Distribución" -#: src/Common/LinuxKernel.vala:102 +#: src/Common/LinuxKernel.vala:101 msgid "Architecture" msgstr "Arquitectura del sistema" -#: src/Common/LinuxKernel.vala:298 +#: src/Common/LinuxKernel.vala:290 msgid "Fetching index..." msgstr "Recuperando índice..." -#: src/Common/LinuxKernel.vala:337 +#: src/Common/LinuxKernel.vala:329 msgid "Fetching index from kernel.ubuntu.com..." msgstr "Recuperando índice de kernel.ubuntu.com…" -#: src/Common/LinuxKernel.vala:593 +#: src/Common/LinuxKernel.vala:585 msgid "Could not find running kernel in list!" msgstr "¡No se pudo encontrar el núcleo en ejecución en la lista!" -#: src/Common/LinuxKernel.vala:599 +#: src/Common/LinuxKernel.vala:591 #, fuzzy msgid "Could not find any kernels to uninstall" msgstr "Seleccione los núcleos que se desinstalarán" -#: src/Common/LinuxKernel.vala:608 +#: src/Common/LinuxKernel.vala:600 #, fuzzy msgid "The following kernels will be uninstalled:" msgstr "Los siguientes kernels serán eliminados:" -#: src/Common/LinuxKernel.vala:615 +#: src/Common/LinuxKernel.vala:607 msgid "Continue ?" msgstr "¿Continuar?" -#: src/Common/LinuxKernel.vala:641 src/Console/AppConsole.vala:314 +#: src/Common/LinuxKernel.vala:633 src/Console/AppConsole.vala:314 msgid "Latest update" msgstr "" -#: src/Common/LinuxKernel.vala:652 src/Console/AppConsole.vala:321 +#: src/Common/LinuxKernel.vala:644 src/Console/AppConsole.vala:321 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:660 src/Console/AppConsole.vala:326 +#: src/Common/LinuxKernel.vala:652 src/Console/AppConsole.vala:326 #: src/Console/AppConsole.vala:387 msgid "No updates found" msgstr "No se encontró ninguna actualización" -#: src/Common/LinuxKernel.vala:670 +#: src/Common/LinuxKernel.vala:662 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "" -#: src/Common/LinuxKernel.vala:931 +#: src/Common/LinuxKernel.vala:912 msgid "Packages Available" msgstr "Paquetes disponibles" -#: src/Common/LinuxKernel.vala:939 +#: src/Common/LinuxKernel.vala:920 msgid "Packages Installed" msgstr "Paquetes instalados" -#: src/Common/LinuxKernel.vala:1019 +#: src/Common/LinuxKernel.vala:1000 msgid "Available Kernels" msgstr "Núcleos disponibles" -#: src/Common/LinuxKernel.vala:1026 src/Gtk/MainWindow.vala:189 +#: src/Common/LinuxKernel.vala:1007 src/Gtk/MainWindow.vala:189 msgid "Installed" msgstr "Instalado" -#: src/Common/LinuxKernel.vala:1026 src/Gtk/MainWindow.vala:189 -#: src/Gtk/MainWindow.vala:606 src/Gtk/MainWindow.vala:620 +#: src/Common/LinuxKernel.vala:1007 src/Gtk/MainWindow.vala:189 +#: src/Gtk/MainWindow.vala:610 src/Gtk/MainWindow.vala:624 msgid "Running" msgstr "En ejecución" -#: src/Common/LinuxKernel.vala:1063 +#: src/Common/LinuxKernel.vala:1044 msgid "Downloading" msgstr "Descargando" -#: src/Common/LinuxKernel.vala:1082 +#: src/Common/LinuxKernel.vala:1063 src/Gtk/CustomMessageDialog.vala:150 +#: src/Gtk/CustomMessageDialog.vala:154 msgid "OK" msgstr "Aceptar" -#: src/Common/LinuxKernel.vala:1087 +#: src/Common/LinuxKernel.vala:1068 msgid "ERROR" msgstr "ERROR" -#: src/Common/LinuxKernel.vala:1101 +#: src/Common/LinuxKernel.vala:1082 msgid "This kernel is already installed." msgstr "Este núcleo ya se instaló." -#: src/Common/LinuxKernel.vala:1127 +#: src/Common/LinuxKernel.vala:1108 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "Instalación finalizada. Se necesita reiniciar para utilizar el núcleo nuevo." -#: src/Common/LinuxKernel.vala:1130 +#: src/Common/LinuxKernel.vala:1111 msgid "Installation completed with errors" msgstr "Instalación finalizada con errores" -#: src/Common/LinuxKernel.vala:1151 +#: src/Common/LinuxKernel.vala:1132 #, fuzzy msgid "" "Selected kernel is currently running and cannot be un-installed.\n" @@ -120,20 +121,20 @@ msgstr "" "El núcleo seleccionado está en ejecución y no puede desinstalarse.\n" "Instale otro núcleo antes de desinstalar este." -#: src/Common/LinuxKernel.vala:1156 +#: src/Common/LinuxKernel.vala:1137 #, fuzzy msgid "Preparing to uninstall selected kernels" msgstr "Preparándose para desinstalar los núcleos seleccionados" -#: src/Common/LinuxKernel.vala:1187 src/Common/LinuxKernel.vala:1234 +#: src/Common/LinuxKernel.vala:1168 src/Common/LinuxKernel.vala:1215 msgid "Un-install completed" msgstr "Desinstalación finalizada" -#: src/Common/LinuxKernel.vala:1190 src/Common/LinuxKernel.vala:1237 +#: src/Common/LinuxKernel.vala:1171 src/Common/LinuxKernel.vala:1218 msgid "Un-install completed with errors" msgstr "Desinstalación finalizada con errores" -#: src/Common/LinuxKernel.vala:1203 +#: src/Common/LinuxKernel.vala:1184 #, fuzzy msgid "" "This kernel is currently running and cannot be un-installed.\n" @@ -294,7 +295,7 @@ msgid "Kernel %s Available" msgstr "Paquetes disponibles" #: src/Console/AppConsole.vala:367 src/Console/AppConsole.vala:379 -#: src/Gtk/MainWindow.vala:331 +#: src/Gtk/MainWindow.vala:333 msgid "Install" msgstr "Instalar" @@ -306,6 +307,19 @@ msgstr "Mostrar información de depuración" msgid "Show all options" msgstr "Mostrar todas las opciones" +#: src/Gtk/CustomMessageDialog.vala:155 src/Gtk/ProgressWindow.vala:142 +#: src/Gtk/TerminalWindow.vala:148 +msgid "Cancel" +msgstr "Cancelar" + +#: src/Gtk/CustomMessageDialog.vala:159 +msgid "Yes" +msgstr "" + +#: src/Gtk/CustomMessageDialog.vala:160 +msgid "No" +msgstr "" + #: src/Gtk/MainWindow.vala:146 msgid "Kernel" msgstr "Núcleo" @@ -318,72 +332,74 @@ msgstr "Estado" msgid "Refresh" msgstr "Actualizar" -#: src/Gtk/MainWindow.vala:342 +#: src/Gtk/MainWindow.vala:324 src/Utility/TeeJee.System.vala:42 +#, fuzzy +msgid "Internet connection is not active" +msgstr "La conexión a Internet está inactiva" + +#: src/Gtk/MainWindow.vala:324 src/Gtk/MainWindow.vala:518 +#: src/Gtk/MainWindow.vala:634 +msgid "No Internet" +msgstr "No hay Internet" + +#: src/Gtk/MainWindow.vala:344 #, fuzzy msgid "Uninstall" msgstr "Instalar" -#: src/Gtk/MainWindow.vala:375 src/Gtk/MainWindow.vala:408 -#: src/Gtk/MainWindow.vala:659 +#: src/Gtk/MainWindow.vala:377 src/Gtk/MainWindow.vala:410 +#: src/Gtk/MainWindow.vala:666 msgid "Close window to exit..." msgstr "" -#: src/Gtk/MainWindow.vala:382 +#: src/Gtk/MainWindow.vala:384 #, fuzzy msgid "Uninstall Old" msgstr "Desinstalación finalizada" -#: src/Gtk/MainWindow.vala:383 +#: src/Gtk/MainWindow.vala:385 msgid "Uninstall kernels older than running kernel" msgstr "" -#: src/Gtk/MainWindow.vala:415 +#: src/Gtk/MainWindow.vala:417 msgid "Changes" msgstr "Cambios" -#: src/Gtk/MainWindow.vala:426 src/Gtk/SettingsDialog.vala:50 +#: src/Gtk/MainWindow.vala:428 src/Gtk/SettingsDialog.vala:50 msgid "Settings" msgstr "Configuración" -#: src/Gtk/MainWindow.vala:449 +#: src/Gtk/MainWindow.vala:451 msgid "About" msgstr "Acerca de" -#: src/Gtk/MainWindow.vala:494 +#: src/Gtk/MainWindow.vala:496 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "" "Herramienta de renovación de núcleo para distribuciones basadas en Ubuntu" -#: src/Gtk/MainWindow.vala:495 +#: src/Gtk/MainWindow.vala:497 msgid "Forked" msgstr "" -#: src/Gtk/MainWindow.vala:495 +#: src/Gtk/MainWindow.vala:497 msgid "Original" msgstr "" -#: src/Gtk/MainWindow.vala:527 +#: src/Gtk/MainWindow.vala:518 src/Gtk/MainWindow.vala:634 +#, fuzzy +msgid "Internet connection is not active." +msgstr "La conexión a Internet está inactiva" + +#: src/Gtk/MainWindow.vala:531 msgid "Refreshing..." msgstr "Actualizando…" -#: src/Gtk/MainWindow.vala:616 +#: src/Gtk/MainWindow.vala:620 #, fuzzy msgid "available" msgstr "Paquetes disponibles" -#: src/Gtk/MainWindow.vala:674 -msgid "No Internet" -msgstr "No hay Internet" - -#: src/Gtk/MainWindow.vala:675 -#, fuzzy -msgid "Internet connection is not active." -msgstr "La conexión a Internet está inactiva" - -#: src/Gtk/ProgressWindow.vala:142 src/Gtk/TerminalWindow.vala:149 -msgid "Cancel" -msgstr "Cancelar" - #: src/Gtk/SettingsDialog.vala:60 msgid "Notification" msgstr "Notificación" @@ -449,7 +465,7 @@ msgstr "" msgid "Max concurrent downloads" msgstr "" -#: src/Gtk/TerminalWindow.vala:159 src/Utility/Gtk/AboutWindow.vala:294 +#: src/Gtk/TerminalWindow.vala:158 src/Utility/Gtk/AboutWindow.vala:294 msgid "Close" msgstr "Cerrar" @@ -486,7 +502,7 @@ msgstr "Documentadores" msgid "Third Party Inclusions" msgstr "Herramientas de terceros" -#: src/Utility/Gtk/GtkHelper.vala:39 +#: src/Utility/Gtk/GtkHelper.vala:59 msgid "Missing Icon" msgstr "Falta el icono" @@ -495,7 +511,7 @@ msgstr "Falta el icono" msgid "File deleted" msgstr "Se guardó el archivo" -#: src/Utility/TeeJee.FileSystem.vala:76 src/Utility/TeeJee.FileSystem.vala:256 +#: src/Utility/TeeJee.FileSystem.vala:76 src/Utility/TeeJee.FileSystem.vala:240 #, fuzzy msgid "Failed to delete file" msgstr "Falló la escritura del archivo" @@ -532,16 +548,16 @@ msgstr "Se trasladó el archivo" msgid "Failed to move file" msgstr "Falló el traslado del archivo" -#: src/Utility/TeeJee.FileSystem.vala:233 -#: src/Utility/TeeJee.FileSystem.vala:236 +#: src/Utility/TeeJee.FileSystem.vala:217 +#: src/Utility/TeeJee.FileSystem.vala:220 msgid "Created directory" msgstr "Se creó el directorio" -#: src/Utility/TeeJee.FileSystem.vala:243 +#: src/Utility/TeeJee.FileSystem.vala:227 msgid "Failed to create dir" msgstr "Falló la creación del directorio" -#: src/Utility/TeeJee.FileSystem.vala:255 +#: src/Utility/TeeJee.FileSystem.vala:239 msgid "Deleted" msgstr "" diff --git a/po/fr.po b/po/fr.po index 240af92b..acc2cebc 100644 --- a/po/fr.po +++ b/po/fr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-02-23 15:16-0500\n" +"POT-Creation-Date: 2023-02-23 17:56-0500\n" "PO-Revision-Date: 2018-08-05 15:50+0200\n" "Last-Translator: Yolateng0 \n" "Language-Team: French\n" @@ -13,106 +13,107 @@ msgstr "" "X-Launchpad-Export-Date: 2017-04-13 11:48+0000\n" "X-Generator: Poedit 2.0.6\n" -#: src/Common/LinuxKernel.vala:88 +#: src/Common/LinuxKernel.vala:87 msgid "Distribution" msgstr "Distribution" -#: src/Common/LinuxKernel.vala:102 +#: src/Common/LinuxKernel.vala:101 msgid "Architecture" msgstr "Architecture" -#: src/Common/LinuxKernel.vala:298 +#: src/Common/LinuxKernel.vala:290 msgid "Fetching index..." msgstr "Récupération de l'index..." -#: src/Common/LinuxKernel.vala:337 +#: src/Common/LinuxKernel.vala:329 msgid "Fetching index from kernel.ubuntu.com..." msgstr "Récupération de l'index depuis kernel.ubuntu.com..." -#: src/Common/LinuxKernel.vala:593 +#: src/Common/LinuxKernel.vala:585 msgid "Could not find running kernel in list!" msgstr "Impossible de trouver la version courante dans la liste!" -#: src/Common/LinuxKernel.vala:599 +#: src/Common/LinuxKernel.vala:591 #, fuzzy msgid "Could not find any kernels to uninstall" msgstr "Impossible de trouver de noyaux à supprimer" -#: src/Common/LinuxKernel.vala:608 +#: src/Common/LinuxKernel.vala:600 #, fuzzy msgid "The following kernels will be uninstalled:" msgstr "Les noyaux suivants seront supprimés:" -#: src/Common/LinuxKernel.vala:615 +#: src/Common/LinuxKernel.vala:607 msgid "Continue ?" msgstr "Reprendre ?" -#: src/Common/LinuxKernel.vala:641 src/Console/AppConsole.vala:314 +#: src/Common/LinuxKernel.vala:633 src/Console/AppConsole.vala:314 msgid "Latest update" msgstr "Dernière mise à jour" -#: src/Common/LinuxKernel.vala:652 src/Console/AppConsole.vala:321 +#: src/Common/LinuxKernel.vala:644 src/Console/AppConsole.vala:321 msgid "Latest point update" msgstr "Dernière mise à jour mineure" -#: src/Common/LinuxKernel.vala:660 src/Console/AppConsole.vala:326 +#: src/Common/LinuxKernel.vala:652 src/Console/AppConsole.vala:326 #: src/Console/AppConsole.vala:387 msgid "No updates found" msgstr "Aucune mise à jour disponible" -#: src/Common/LinuxKernel.vala:670 +#: src/Common/LinuxKernel.vala:662 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Installer le noyau en version %s ? (y/n): " -#: src/Common/LinuxKernel.vala:931 +#: src/Common/LinuxKernel.vala:912 msgid "Packages Available" msgstr "Paquets Disponibles" -#: src/Common/LinuxKernel.vala:939 +#: src/Common/LinuxKernel.vala:920 msgid "Packages Installed" msgstr "Paquets Installés" -#: src/Common/LinuxKernel.vala:1019 +#: src/Common/LinuxKernel.vala:1000 msgid "Available Kernels" msgstr "Noyaux Disponibles" -#: src/Common/LinuxKernel.vala:1026 src/Gtk/MainWindow.vala:189 +#: src/Common/LinuxKernel.vala:1007 src/Gtk/MainWindow.vala:189 msgid "Installed" msgstr "Installé" -#: src/Common/LinuxKernel.vala:1026 src/Gtk/MainWindow.vala:189 -#: src/Gtk/MainWindow.vala:606 src/Gtk/MainWindow.vala:620 +#: src/Common/LinuxKernel.vala:1007 src/Gtk/MainWindow.vala:189 +#: src/Gtk/MainWindow.vala:610 src/Gtk/MainWindow.vala:624 msgid "Running" msgstr "Actuel" -#: src/Common/LinuxKernel.vala:1063 +#: src/Common/LinuxKernel.vala:1044 msgid "Downloading" msgstr "Téléchargement" -#: src/Common/LinuxKernel.vala:1082 +#: src/Common/LinuxKernel.vala:1063 src/Gtk/CustomMessageDialog.vala:150 +#: src/Gtk/CustomMessageDialog.vala:154 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:1087 +#: src/Common/LinuxKernel.vala:1068 msgid "ERROR" msgstr "ERREUR" -#: src/Common/LinuxKernel.vala:1101 +#: src/Common/LinuxKernel.vala:1082 msgid "This kernel is already installed." msgstr "Ce noyau est déjà installé." -#: src/Common/LinuxKernel.vala:1127 +#: src/Common/LinuxKernel.vala:1108 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "Installation complétée. Un redémarrage est nécessaire pour utiliser le " "nouveau noyau." -#: src/Common/LinuxKernel.vala:1130 +#: src/Common/LinuxKernel.vala:1111 msgid "Installation completed with errors" msgstr "Installation terminée avec des erreurs" -#: src/Common/LinuxKernel.vala:1151 +#: src/Common/LinuxKernel.vala:1132 #, fuzzy msgid "" "Selected kernel is currently running and cannot be un-installed.\n" @@ -121,20 +122,20 @@ msgstr "" "Ce noyau est en cours d'exécution et ne peut pas être supprimé.\n" " Installez un autre noyau avant de retirer celui-ci." -#: src/Common/LinuxKernel.vala:1156 +#: src/Common/LinuxKernel.vala:1137 #, fuzzy msgid "Preparing to uninstall selected kernels" msgstr "Préparation à la suppression des noyaux sélectionnés" -#: src/Common/LinuxKernel.vala:1187 src/Common/LinuxKernel.vala:1234 +#: src/Common/LinuxKernel.vala:1168 src/Common/LinuxKernel.vala:1215 msgid "Un-install completed" msgstr "Désinstallation complète" -#: src/Common/LinuxKernel.vala:1190 src/Common/LinuxKernel.vala:1237 +#: src/Common/LinuxKernel.vala:1171 src/Common/LinuxKernel.vala:1218 msgid "Un-install completed with errors" msgstr "Désinstallation terminée avec des erreurs" -#: src/Common/LinuxKernel.vala:1203 +#: src/Common/LinuxKernel.vala:1184 #, fuzzy msgid "" "This kernel is currently running and cannot be un-installed.\n" @@ -295,7 +296,7 @@ msgid "Kernel %s Available" msgstr "Paquet %s disponibles" #: src/Console/AppConsole.vala:367 src/Console/AppConsole.vala:379 -#: src/Gtk/MainWindow.vala:331 +#: src/Gtk/MainWindow.vala:333 msgid "Install" msgstr "Installer" @@ -307,6 +308,19 @@ msgstr "Afficher les informations de débogage" msgid "Show all options" msgstr "Afficher toutes les options" +#: src/Gtk/CustomMessageDialog.vala:155 src/Gtk/ProgressWindow.vala:142 +#: src/Gtk/TerminalWindow.vala:148 +msgid "Cancel" +msgstr "Annuler" + +#: src/Gtk/CustomMessageDialog.vala:159 +msgid "Yes" +msgstr "" + +#: src/Gtk/CustomMessageDialog.vala:160 +msgid "No" +msgstr "" + #: src/Gtk/MainWindow.vala:146 msgid "Kernel" msgstr "Noyau" @@ -319,72 +333,74 @@ msgstr "Statut" msgid "Refresh" msgstr "Actualiser" -#: src/Gtk/MainWindow.vala:342 +#: src/Gtk/MainWindow.vala:324 src/Utility/TeeJee.System.vala:42 +#, fuzzy +msgid "Internet connection is not active" +msgstr "Connexion internet inexistante" + +#: src/Gtk/MainWindow.vala:324 src/Gtk/MainWindow.vala:518 +#: src/Gtk/MainWindow.vala:634 +msgid "No Internet" +msgstr "Pas d'Internet" + +#: src/Gtk/MainWindow.vala:344 #, fuzzy msgid "Uninstall" msgstr "Installer" -#: src/Gtk/MainWindow.vala:375 src/Gtk/MainWindow.vala:408 -#: src/Gtk/MainWindow.vala:659 +#: src/Gtk/MainWindow.vala:377 src/Gtk/MainWindow.vala:410 +#: src/Gtk/MainWindow.vala:666 msgid "Close window to exit..." msgstr "Fermer la fenêtre pour quitter..." -#: src/Gtk/MainWindow.vala:382 +#: src/Gtk/MainWindow.vala:384 #, fuzzy msgid "Uninstall Old" msgstr "Désinstallation complète" -#: src/Gtk/MainWindow.vala:383 +#: src/Gtk/MainWindow.vala:385 #, fuzzy msgid "Uninstall kernels older than running kernel" msgstr "Désinstalle les noyaux plus anciens que le noyau courant" -#: src/Gtk/MainWindow.vala:415 +#: src/Gtk/MainWindow.vala:417 msgid "Changes" msgstr "Changements" -#: src/Gtk/MainWindow.vala:426 src/Gtk/SettingsDialog.vala:50 +#: src/Gtk/MainWindow.vala:428 src/Gtk/SettingsDialog.vala:50 msgid "Settings" msgstr "Paramètres" -#: src/Gtk/MainWindow.vala:449 +#: src/Gtk/MainWindow.vala:451 msgid "About" msgstr "À propos" -#: src/Gtk/MainWindow.vala:494 +#: src/Gtk/MainWindow.vala:496 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "" "Utilitaire de mise à niveau des noyaux pour les distributions basées sur " "Ubuntu" -#: src/Gtk/MainWindow.vala:495 +#: src/Gtk/MainWindow.vala:497 msgid "Forked" msgstr "Version forkée :" -#: src/Gtk/MainWindow.vala:495 +#: src/Gtk/MainWindow.vala:497 msgid "Original" msgstr "Version originale :" -#: src/Gtk/MainWindow.vala:527 +#: src/Gtk/MainWindow.vala:518 src/Gtk/MainWindow.vala:634 +msgid "Internet connection is not active." +msgstr "Connexion internet inexistante" + +#: src/Gtk/MainWindow.vala:531 msgid "Refreshing..." msgstr "Actualisation..." -#: src/Gtk/MainWindow.vala:616 +#: src/Gtk/MainWindow.vala:620 msgid "available" msgstr "disponible" -#: src/Gtk/MainWindow.vala:674 -msgid "No Internet" -msgstr "Pas d'Internet" - -#: src/Gtk/MainWindow.vala:675 -msgid "Internet connection is not active." -msgstr "Connexion internet inexistante" - -#: src/Gtk/ProgressWindow.vala:142 src/Gtk/TerminalWindow.vala:149 -msgid "Cancel" -msgstr "Annuler" - #: src/Gtk/SettingsDialog.vala:60 msgid "Notification" msgstr "Notification" @@ -449,7 +465,7 @@ msgstr "secondes" msgid "Max concurrent downloads" msgstr "Nombre maximum de téléchargements parallèles" -#: src/Gtk/TerminalWindow.vala:159 src/Utility/Gtk/AboutWindow.vala:294 +#: src/Gtk/TerminalWindow.vala:158 src/Utility/Gtk/AboutWindow.vala:294 msgid "Close" msgstr "Fermer" @@ -485,7 +501,7 @@ msgstr "Documentalistes" msgid "Third Party Inclusions" msgstr "Dépendances Tierces" -#: src/Utility/Gtk/GtkHelper.vala:39 +#: src/Utility/Gtk/GtkHelper.vala:59 msgid "Missing Icon" msgstr "Icône introuvable" @@ -493,7 +509,7 @@ msgstr "Icône introuvable" msgid "File deleted" msgstr "Fichier supprimé" -#: src/Utility/TeeJee.FileSystem.vala:76 src/Utility/TeeJee.FileSystem.vala:256 +#: src/Utility/TeeJee.FileSystem.vala:76 src/Utility/TeeJee.FileSystem.vala:240 msgid "Failed to delete file" msgstr "Impossible d'écrire le fichier" @@ -529,16 +545,16 @@ msgstr "Fichier déplacé" msgid "Failed to move file" msgstr "Impossible de déplacer le fichier" -#: src/Utility/TeeJee.FileSystem.vala:233 -#: src/Utility/TeeJee.FileSystem.vala:236 +#: src/Utility/TeeJee.FileSystem.vala:217 +#: src/Utility/TeeJee.FileSystem.vala:220 msgid "Created directory" msgstr "Dossier créé" -#: src/Utility/TeeJee.FileSystem.vala:243 +#: src/Utility/TeeJee.FileSystem.vala:227 msgid "Failed to create dir" msgstr "Impossible de créer le nouveau dossier" -#: src/Utility/TeeJee.FileSystem.vala:255 +#: src/Utility/TeeJee.FileSystem.vala:239 msgid "Deleted" msgstr "Supprimé" diff --git a/po/hr.po b/po/hr.po index 88bda42d..f44eb58c 100644 --- a/po/hr.po +++ b/po/hr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-02-23 15:16-0500\n" +"POT-Creation-Date: 2023-02-23 17:56-0500\n" "PO-Revision-Date: 2022-09-22 12:13+0200\n" "Last-Translator: gogo \n" "Language-Team: Croatian\n" @@ -13,104 +13,105 @@ msgstr "" "X-Launchpad-Export-Date: 2017-12-23 23:36+0000\n" "X-Generator: Poedit 3.0.1\n" -#: src/Common/LinuxKernel.vala:88 +#: src/Common/LinuxKernel.vala:87 msgid "Distribution" msgstr "Distribucija" -#: src/Common/LinuxKernel.vala:102 +#: src/Common/LinuxKernel.vala:101 msgid "Architecture" msgstr "Arhitektura" -#: src/Common/LinuxKernel.vala:298 +#: src/Common/LinuxKernel.vala:290 msgid "Fetching index..." msgstr "Preuzimanje sadržaja..." -#: src/Common/LinuxKernel.vala:337 +#: src/Common/LinuxKernel.vala:329 msgid "Fetching index from kernel.ubuntu.com..." msgstr "Preuzimanje sadržaja sa kernel.ubuntu.com..." -#: src/Common/LinuxKernel.vala:593 +#: src/Common/LinuxKernel.vala:585 msgid "Could not find running kernel in list!" msgstr "Nemoguće je pronaći pokrenuti kernel na popisu!" -#: src/Common/LinuxKernel.vala:599 +#: src/Common/LinuxKernel.vala:591 msgid "Could not find any kernels to uninstall" msgstr "Nema pronađenih kernela za deinstaliranje" -#: src/Common/LinuxKernel.vala:608 +#: src/Common/LinuxKernel.vala:600 msgid "The following kernels will be uninstalled:" msgstr "Sljedeći kerneli će biti deinstalirani:" -#: src/Common/LinuxKernel.vala:615 +#: src/Common/LinuxKernel.vala:607 msgid "Continue ?" msgstr "Nastavi?" -#: src/Common/LinuxKernel.vala:641 src/Console/AppConsole.vala:314 +#: src/Common/LinuxKernel.vala:633 src/Console/AppConsole.vala:314 msgid "Latest update" msgstr "Najnovija nadopuna" -#: src/Common/LinuxKernel.vala:652 src/Console/AppConsole.vala:321 +#: src/Common/LinuxKernel.vala:644 src/Console/AppConsole.vala:321 msgid "Latest point update" msgstr "Najnovija ciljana nadopuna" -#: src/Common/LinuxKernel.vala:660 src/Console/AppConsole.vala:326 +#: src/Common/LinuxKernel.vala:652 src/Console/AppConsole.vala:326 #: src/Console/AppConsole.vala:387 msgid "No updates found" msgstr "Nema pronađenih nadopuna" -#: src/Common/LinuxKernel.vala:670 +#: src/Common/LinuxKernel.vala:662 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Instaliraj kernel inačice %s ? (d/n): " -#: src/Common/LinuxKernel.vala:931 +#: src/Common/LinuxKernel.vala:912 msgid "Packages Available" msgstr "Dostupni paketi" -#: src/Common/LinuxKernel.vala:939 +#: src/Common/LinuxKernel.vala:920 msgid "Packages Installed" msgstr "Instalirani paketi" -#: src/Common/LinuxKernel.vala:1019 +#: src/Common/LinuxKernel.vala:1000 msgid "Available Kernels" msgstr "Dostupni kerneli" -#: src/Common/LinuxKernel.vala:1026 src/Gtk/MainWindow.vala:189 +#: src/Common/LinuxKernel.vala:1007 src/Gtk/MainWindow.vala:189 msgid "Installed" msgstr "Instalirano" -#: src/Common/LinuxKernel.vala:1026 src/Gtk/MainWindow.vala:189 -#: src/Gtk/MainWindow.vala:606 src/Gtk/MainWindow.vala:620 +#: src/Common/LinuxKernel.vala:1007 src/Gtk/MainWindow.vala:189 +#: src/Gtk/MainWindow.vala:610 src/Gtk/MainWindow.vala:624 msgid "Running" msgstr "Pokrenuto" -#: src/Common/LinuxKernel.vala:1063 +#: src/Common/LinuxKernel.vala:1044 msgid "Downloading" msgstr "Preuzimanje" -#: src/Common/LinuxKernel.vala:1082 +#: src/Common/LinuxKernel.vala:1063 src/Gtk/CustomMessageDialog.vala:150 +#: src/Gtk/CustomMessageDialog.vala:154 msgid "OK" msgstr "U redu" -#: src/Common/LinuxKernel.vala:1087 +#: src/Common/LinuxKernel.vala:1068 msgid "ERROR" msgstr "GREŠKA" -#: src/Common/LinuxKernel.vala:1101 +#: src/Common/LinuxKernel.vala:1082 msgid "This kernel is already installed." msgstr "Ovaj kernel je već instaliran." -#: src/Common/LinuxKernel.vala:1127 +#: src/Common/LinuxKernel.vala:1108 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "Instalacija je završena. Potrebno je ponovno pokretanje računala kako bi se " "koristio novi kernel." -#: src/Common/LinuxKernel.vala:1130 +#: src/Common/LinuxKernel.vala:1111 msgid "Installation completed with errors" msgstr "Instalacija je završena s greškama" -#: src/Common/LinuxKernel.vala:1151 +#: src/Common/LinuxKernel.vala:1132 msgid "" "Selected kernel is currently running and cannot be un-installed.\n" " Install another kernel before un-installing this one." @@ -118,19 +119,19 @@ msgstr "" "Odabrani kernel je trenutno pokernut i ne može se deinstalirati.\n" " Instalirajte drugi kernel prije uklanjanja trenutnog kernela." -#: src/Common/LinuxKernel.vala:1156 +#: src/Common/LinuxKernel.vala:1137 msgid "Preparing to uninstall selected kernels" msgstr "Pripremanje deinstalacije odabranih kernela" -#: src/Common/LinuxKernel.vala:1187 src/Common/LinuxKernel.vala:1234 +#: src/Common/LinuxKernel.vala:1168 src/Common/LinuxKernel.vala:1215 msgid "Un-install completed" msgstr "Deinstalacija završena" -#: src/Common/LinuxKernel.vala:1190 src/Common/LinuxKernel.vala:1237 +#: src/Common/LinuxKernel.vala:1171 src/Common/LinuxKernel.vala:1218 msgid "Un-install completed with errors" msgstr "Deinstalacija završena s greškama" -#: src/Common/LinuxKernel.vala:1203 +#: src/Common/LinuxKernel.vala:1184 msgid "" "This kernel is currently running and cannot be un-installed.\n" " Install another kernel before un-installing this one." @@ -284,7 +285,7 @@ msgid "Kernel %s Available" msgstr "Kernel %s je dostupan" #: src/Console/AppConsole.vala:367 src/Console/AppConsole.vala:379 -#: src/Gtk/MainWindow.vala:331 +#: src/Gtk/MainWindow.vala:333 msgid "Install" msgstr "Instaliraj" @@ -296,6 +297,19 @@ msgstr "Ispiši informacije otklanjanja grešaka" msgid "Show all options" msgstr "Prikaži sve mogućnosti" +#: src/Gtk/CustomMessageDialog.vala:155 src/Gtk/ProgressWindow.vala:142 +#: src/Gtk/TerminalWindow.vala:148 +msgid "Cancel" +msgstr "Odustani" + +#: src/Gtk/CustomMessageDialog.vala:159 +msgid "Yes" +msgstr "" + +#: src/Gtk/CustomMessageDialog.vala:160 +msgid "No" +msgstr "" + #: src/Gtk/MainWindow.vala:146 msgid "Kernel" msgstr "Kernel" @@ -308,67 +322,69 @@ msgstr "Stanje" msgid "Refresh" msgstr "Osvježi" -#: src/Gtk/MainWindow.vala:342 +#: src/Gtk/MainWindow.vala:324 src/Utility/TeeJee.System.vala:42 +#, fuzzy +msgid "Internet connection is not active" +msgstr "Internet povezivanje nije aktivno." + +#: src/Gtk/MainWindow.vala:324 src/Gtk/MainWindow.vala:518 +#: src/Gtk/MainWindow.vala:634 +msgid "No Internet" +msgstr "Nema pristupa internetu" + +#: src/Gtk/MainWindow.vala:344 msgid "Uninstall" msgstr "Deinstaliraj" -#: src/Gtk/MainWindow.vala:375 src/Gtk/MainWindow.vala:408 -#: src/Gtk/MainWindow.vala:659 +#: src/Gtk/MainWindow.vala:377 src/Gtk/MainWindow.vala:410 +#: src/Gtk/MainWindow.vala:666 msgid "Close window to exit..." msgstr "Zatvori prozor i izađi..." -#: src/Gtk/MainWindow.vala:382 +#: src/Gtk/MainWindow.vala:384 msgid "Uninstall Old" msgstr "Deinstaliraj staro" -#: src/Gtk/MainWindow.vala:383 +#: src/Gtk/MainWindow.vala:385 msgid "Uninstall kernels older than running kernel" msgstr "Deinstaliraj kernele starije od pokrenutog krenela" -#: src/Gtk/MainWindow.vala:415 +#: src/Gtk/MainWindow.vala:417 msgid "Changes" msgstr "Promjene" -#: src/Gtk/MainWindow.vala:426 src/Gtk/SettingsDialog.vala:50 +#: src/Gtk/MainWindow.vala:428 src/Gtk/SettingsDialog.vala:50 msgid "Settings" msgstr "Postavke" -#: src/Gtk/MainWindow.vala:449 +#: src/Gtk/MainWindow.vala:451 msgid "About" msgstr "O programu" -#: src/Gtk/MainWindow.vala:494 +#: src/Gtk/MainWindow.vala:496 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Alat za nadogradnju kernela Ubuntu temeljenih distribucija" -#: src/Gtk/MainWindow.vala:495 +#: src/Gtk/MainWindow.vala:497 msgid "Forked" msgstr "Forkano" -#: src/Gtk/MainWindow.vala:495 +#: src/Gtk/MainWindow.vala:497 msgid "Original" msgstr "Izvornik" -#: src/Gtk/MainWindow.vala:527 +#: src/Gtk/MainWindow.vala:518 src/Gtk/MainWindow.vala:634 +msgid "Internet connection is not active." +msgstr "Internet povezivanje nije aktivno." + +#: src/Gtk/MainWindow.vala:531 msgid "Refreshing..." msgstr "Osvježavanje..." -#: src/Gtk/MainWindow.vala:616 +#: src/Gtk/MainWindow.vala:620 msgid "available" msgstr "dostupno" -#: src/Gtk/MainWindow.vala:674 -msgid "No Internet" -msgstr "Nema pristupa internetu" - -#: src/Gtk/MainWindow.vala:675 -msgid "Internet connection is not active." -msgstr "Internet povezivanje nije aktivno." - -#: src/Gtk/ProgressWindow.vala:142 src/Gtk/TerminalWindow.vala:149 -msgid "Cancel" -msgstr "Odustani" - #: src/Gtk/SettingsDialog.vala:60 msgid "Notification" msgstr "Obavijesti" @@ -433,7 +449,7 @@ msgstr "sekunde" msgid "Max concurrent downloads" msgstr "Najviše istodobnih preuzimanja" -#: src/Gtk/TerminalWindow.vala:159 src/Utility/Gtk/AboutWindow.vala:294 +#: src/Gtk/TerminalWindow.vala:158 src/Utility/Gtk/AboutWindow.vala:294 msgid "Close" msgstr "Zatvori" @@ -469,7 +485,7 @@ msgstr "Autori dokumentacije" msgid "Third Party Inclusions" msgstr "Uključene treće strane" -#: src/Utility/Gtk/GtkHelper.vala:39 +#: src/Utility/Gtk/GtkHelper.vala:59 msgid "Missing Icon" msgstr "Ikone koje nedostaju" @@ -477,7 +493,7 @@ msgstr "Ikone koje nedostaju" msgid "File deleted" msgstr "Datoteka je obrisana" -#: src/Utility/TeeJee.FileSystem.vala:76 src/Utility/TeeJee.FileSystem.vala:256 +#: src/Utility/TeeJee.FileSystem.vala:76 src/Utility/TeeJee.FileSystem.vala:240 msgid "Failed to delete file" msgstr "Neuspjelo brisanje datoteke" @@ -513,16 +529,16 @@ msgstr "Datoteka je premještena" msgid "Failed to move file" msgstr "Neuspjelo premještanje datoteke" -#: src/Utility/TeeJee.FileSystem.vala:233 -#: src/Utility/TeeJee.FileSystem.vala:236 +#: src/Utility/TeeJee.FileSystem.vala:217 +#: src/Utility/TeeJee.FileSystem.vala:220 msgid "Created directory" msgstr "Stvoren direktorij" -#: src/Utility/TeeJee.FileSystem.vala:243 +#: src/Utility/TeeJee.FileSystem.vala:227 msgid "Failed to create dir" msgstr "Neuspjelo stvarnje direktorija" -#: src/Utility/TeeJee.FileSystem.vala:255 +#: src/Utility/TeeJee.FileSystem.vala:239 msgid "Deleted" msgstr "Obrisano" diff --git a/po/it.po b/po/it.po index f4a4bca3..641428c1 100644 --- a/po/it.po +++ b/po/it.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline 1.0.15\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-02-23 15:16-0500\n" +"POT-Creation-Date: 2023-02-23 17:56-0500\n" "PO-Revision-Date: 2020-08-22 15:35+0100\n" "Last-Translator: Albano Battistella \n" "Language-Team: Italian\n" @@ -11,104 +11,105 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: src/Common/LinuxKernel.vala:88 +#: src/Common/LinuxKernel.vala:87 msgid "Distribution" msgstr "Distribuzione" -#: src/Common/LinuxKernel.vala:102 +#: src/Common/LinuxKernel.vala:101 msgid "Architecture" msgstr "Architettura" -#: src/Common/LinuxKernel.vala:298 +#: src/Common/LinuxKernel.vala:290 msgid "Fetching index..." msgstr "Recupero indice in corso..." -#: src/Common/LinuxKernel.vala:337 +#: src/Common/LinuxKernel.vala:329 msgid "Fetching index from kernel.ubuntu.com..." msgstr "Recupero dell'indice da kernel.ubuntu.com..." -#: src/Common/LinuxKernel.vala:593 +#: src/Common/LinuxKernel.vala:585 msgid "Could not find running kernel in list!" msgstr "Impossibile trovare il kernel in esecuzione nell'elenco!" -#: src/Common/LinuxKernel.vala:599 +#: src/Common/LinuxKernel.vala:591 msgid "Could not find any kernels to uninstall" msgstr "Impossibile trovare alcun kernel da rimuovere" -#: src/Common/LinuxKernel.vala:608 +#: src/Common/LinuxKernel.vala:600 msgid "The following kernels will be uninstalled:" msgstr "I seguenti kernel verranno rimossi:" -#: src/Common/LinuxKernel.vala:615 +#: src/Common/LinuxKernel.vala:607 msgid "Continue ?" msgstr "Continuare ?" -#: src/Common/LinuxKernel.vala:641 src/Console/AppConsole.vala:314 +#: src/Common/LinuxKernel.vala:633 src/Console/AppConsole.vala:314 msgid "Latest update" msgstr "Ultimo aggiornamento" -#: src/Common/LinuxKernel.vala:652 src/Console/AppConsole.vala:321 +#: src/Common/LinuxKernel.vala:644 src/Console/AppConsole.vala:321 msgid "Latest point update" msgstr "Ultimo aggiornamento del punto" -#: src/Common/LinuxKernel.vala:660 src/Console/AppConsole.vala:326 +#: src/Common/LinuxKernel.vala:652 src/Console/AppConsole.vala:326 #: src/Console/AppConsole.vala:387 msgid "No updates found" msgstr "Nessun aggiornamento trovato" -#: src/Common/LinuxKernel.vala:670 +#: src/Common/LinuxKernel.vala:662 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Installare la versione del kernel %s ? (y/n): " -#: src/Common/LinuxKernel.vala:931 +#: src/Common/LinuxKernel.vala:912 msgid "Packages Available" msgstr "Pacchetti disponibili" -#: src/Common/LinuxKernel.vala:939 +#: src/Common/LinuxKernel.vala:920 msgid "Packages Installed" msgstr "Pacchetti installati" -#: src/Common/LinuxKernel.vala:1019 +#: src/Common/LinuxKernel.vala:1000 msgid "Available Kernels" msgstr "Kernel disponibili" -#: src/Common/LinuxKernel.vala:1026 src/Gtk/MainWindow.vala:189 +#: src/Common/LinuxKernel.vala:1007 src/Gtk/MainWindow.vala:189 msgid "Installed" msgstr "Installato" -#: src/Common/LinuxKernel.vala:1026 src/Gtk/MainWindow.vala:189 -#: src/Gtk/MainWindow.vala:606 src/Gtk/MainWindow.vala:620 +#: src/Common/LinuxKernel.vala:1007 src/Gtk/MainWindow.vala:189 +#: src/Gtk/MainWindow.vala:610 src/Gtk/MainWindow.vala:624 msgid "Running" msgstr "In esecuzione" -#: src/Common/LinuxKernel.vala:1063 +#: src/Common/LinuxKernel.vala:1044 msgid "Downloading" msgstr "Download in corso" -#: src/Common/LinuxKernel.vala:1082 +#: src/Common/LinuxKernel.vala:1063 src/Gtk/CustomMessageDialog.vala:150 +#: src/Gtk/CustomMessageDialog.vala:154 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:1087 +#: src/Common/LinuxKernel.vala:1068 msgid "ERROR" msgstr "ERRORE" -#: src/Common/LinuxKernel.vala:1101 +#: src/Common/LinuxKernel.vala:1082 msgid "This kernel is already installed." msgstr "Questo kernel è già installato" -#: src/Common/LinuxKernel.vala:1127 +#: src/Common/LinuxKernel.vala:1108 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "Installazione completata. È necessario riavviare per utilizzare ilnuovo " "kernel." -#: src/Common/LinuxKernel.vala:1130 +#: src/Common/LinuxKernel.vala:1111 msgid "Installation completed with errors" msgstr "Installazione completata con errori" -#: src/Common/LinuxKernel.vala:1151 +#: src/Common/LinuxKernel.vala:1132 msgid "" "Selected kernel is currently running and cannot be un-installed.\n" " Install another kernel before un-installing this one." @@ -116,19 +117,19 @@ msgstr "" "Il kernel selezionato è attualmente in esecuzione e non può essere rimosso.\n" "Installa un altro kernel prima di rimuovere questo." -#: src/Common/LinuxKernel.vala:1156 +#: src/Common/LinuxKernel.vala:1137 msgid "Preparing to uninstall selected kernels" msgstr "Preparazione per rimuovere i kernel selezionati" -#: src/Common/LinuxKernel.vala:1187 src/Common/LinuxKernel.vala:1234 +#: src/Common/LinuxKernel.vala:1168 src/Common/LinuxKernel.vala:1215 msgid "Un-install completed" msgstr "Disinstallazione completata" -#: src/Common/LinuxKernel.vala:1190 src/Common/LinuxKernel.vala:1237 +#: src/Common/LinuxKernel.vala:1171 src/Common/LinuxKernel.vala:1218 msgid "Un-install completed with errors" msgstr "Disinstallazione completata con errori" -#: src/Common/LinuxKernel.vala:1203 +#: src/Common/LinuxKernel.vala:1184 msgid "" "This kernel is currently running and cannot be un-installed.\n" " Install another kernel before un-installing this one." @@ -285,7 +286,7 @@ msgid "Kernel %s Available" msgstr "Kernel %s Disponibile" #: src/Console/AppConsole.vala:367 src/Console/AppConsole.vala:379 -#: src/Gtk/MainWindow.vala:331 +#: src/Gtk/MainWindow.vala:333 msgid "Install" msgstr "Installa" @@ -297,6 +298,19 @@ msgstr "Stampa le informazioni di debug" msgid "Show all options" msgstr "Mostra tutte le opzioni" +#: src/Gtk/CustomMessageDialog.vala:155 src/Gtk/ProgressWindow.vala:142 +#: src/Gtk/TerminalWindow.vala:148 +msgid "Cancel" +msgstr "Cancella" + +#: src/Gtk/CustomMessageDialog.vala:159 +msgid "Yes" +msgstr "" + +#: src/Gtk/CustomMessageDialog.vala:160 +msgid "No" +msgstr "" + #: src/Gtk/MainWindow.vala:146 msgid "Kernel" msgstr "Kernel" @@ -309,67 +323,69 @@ msgstr "Stato" msgid "Refresh" msgstr "Aggiorna" -#: src/Gtk/MainWindow.vala:342 +#: src/Gtk/MainWindow.vala:324 src/Utility/TeeJee.System.vala:42 +#, fuzzy +msgid "Internet connection is not active" +msgstr "La connessione Internet non è attiva." + +#: src/Gtk/MainWindow.vala:324 src/Gtk/MainWindow.vala:518 +#: src/Gtk/MainWindow.vala:634 +msgid "No Internet" +msgstr "Nessuna connessione internet" + +#: src/Gtk/MainWindow.vala:344 msgid "Uninstall" msgstr "Disinstalla" -#: src/Gtk/MainWindow.vala:375 src/Gtk/MainWindow.vala:408 -#: src/Gtk/MainWindow.vala:659 +#: src/Gtk/MainWindow.vala:377 src/Gtk/MainWindow.vala:410 +#: src/Gtk/MainWindow.vala:666 msgid "Close window to exit..." msgstr "Chiudere la finestra per uscire..." -#: src/Gtk/MainWindow.vala:382 +#: src/Gtk/MainWindow.vala:384 msgid "Uninstall Old" msgstr "Disinstalla i vecchi" -#: src/Gtk/MainWindow.vala:383 +#: src/Gtk/MainWindow.vala:385 msgid "Uninstall kernels older than running kernel" msgstr "Rimuovere i kernel installati più vecchi del kernel in esecuzione" -#: src/Gtk/MainWindow.vala:415 +#: src/Gtk/MainWindow.vala:417 msgid "Changes" msgstr "Modifiche" -#: src/Gtk/MainWindow.vala:426 src/Gtk/SettingsDialog.vala:50 +#: src/Gtk/MainWindow.vala:428 src/Gtk/SettingsDialog.vala:50 msgid "Settings" msgstr "Impostazioni" -#: src/Gtk/MainWindow.vala:449 +#: src/Gtk/MainWindow.vala:451 msgid "About" msgstr "Informazioni" -#: src/Gtk/MainWindow.vala:494 +#: src/Gtk/MainWindow.vala:496 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Utilità di aggiornamento del kernel per distribuzioni basate su Ubuntu" -#: src/Gtk/MainWindow.vala:495 +#: src/Gtk/MainWindow.vala:497 msgid "Forked" msgstr "Forked" -#: src/Gtk/MainWindow.vala:495 +#: src/Gtk/MainWindow.vala:497 msgid "Original" msgstr "Originale" -#: src/Gtk/MainWindow.vala:527 +#: src/Gtk/MainWindow.vala:518 src/Gtk/MainWindow.vala:634 +msgid "Internet connection is not active." +msgstr "La connessione Internet non è attiva." + +#: src/Gtk/MainWindow.vala:531 msgid "Refreshing..." msgstr "Aggiornamento..." -#: src/Gtk/MainWindow.vala:616 +#: src/Gtk/MainWindow.vala:620 msgid "available" msgstr "disponibile" -#: src/Gtk/MainWindow.vala:674 -msgid "No Internet" -msgstr "Nessuna connessione internet" - -#: src/Gtk/MainWindow.vala:675 -msgid "Internet connection is not active." -msgstr "La connessione Internet non è attiva." - -#: src/Gtk/ProgressWindow.vala:142 src/Gtk/TerminalWindow.vala:149 -msgid "Cancel" -msgstr "Cancella" - #: src/Gtk/SettingsDialog.vala:60 msgid "Notification" msgstr "Notifica" @@ -434,7 +450,7 @@ msgstr "secondi" msgid "Max concurrent downloads" msgstr "Numero massimo di download simultanei" -#: src/Gtk/TerminalWindow.vala:159 src/Utility/Gtk/AboutWindow.vala:294 +#: src/Gtk/TerminalWindow.vala:158 src/Utility/Gtk/AboutWindow.vala:294 msgid "Close" msgstr "Chiudi" @@ -470,7 +486,7 @@ msgstr "Documentatori" msgid "Third Party Inclusions" msgstr "Inclusioni di terze parti" -#: src/Utility/Gtk/GtkHelper.vala:39 +#: src/Utility/Gtk/GtkHelper.vala:59 msgid "Missing Icon" msgstr "Icona mancante" @@ -478,7 +494,7 @@ msgstr "Icona mancante" msgid "File deleted" msgstr "File eliminato" -#: src/Utility/TeeJee.FileSystem.vala:76 src/Utility/TeeJee.FileSystem.vala:256 +#: src/Utility/TeeJee.FileSystem.vala:76 src/Utility/TeeJee.FileSystem.vala:240 msgid "Failed to delete file" msgstr "Impossibile eliminare il file" @@ -514,16 +530,16 @@ msgstr "File spostato" msgid "Failed to move file" msgstr "Impossibile spostare il file" -#: src/Utility/TeeJee.FileSystem.vala:233 -#: src/Utility/TeeJee.FileSystem.vala:236 +#: src/Utility/TeeJee.FileSystem.vala:217 +#: src/Utility/TeeJee.FileSystem.vala:220 msgid "Created directory" msgstr "Directory creata" -#: src/Utility/TeeJee.FileSystem.vala:243 +#: src/Utility/TeeJee.FileSystem.vala:227 msgid "Failed to create dir" msgstr "Impossibile creare la directory" -#: src/Utility/TeeJee.FileSystem.vala:255 +#: src/Utility/TeeJee.FileSystem.vala:239 msgid "Deleted" msgstr "Cancellato" diff --git a/po/ko.po b/po/ko.po index 3031e1f3..90c8b69b 100644 --- a/po/ko.po +++ b/po/ko.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline 1.0.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-02-23 15:16-0500\n" +"POT-Creation-Date: 2023-02-23 17:56-0500\n" "PO-Revision-Date: 2022-09-28 11:48+0900\n" "Last-Translator: Kevin Kim \n" "Language-Team: Korean\n" @@ -13,102 +13,103 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Poedit 3.0.1\n" -#: src/Common/LinuxKernel.vala:88 +#: src/Common/LinuxKernel.vala:87 msgid "Distribution" msgstr "배포판" -#: src/Common/LinuxKernel.vala:102 +#: src/Common/LinuxKernel.vala:101 msgid "Architecture" msgstr "아키텍처" -#: src/Common/LinuxKernel.vala:298 +#: src/Common/LinuxKernel.vala:290 msgid "Fetching index..." msgstr "목록 가져오기..." -#: src/Common/LinuxKernel.vala:337 +#: src/Common/LinuxKernel.vala:329 msgid "Fetching index from kernel.ubuntu.com..." msgstr "최신 커널 목록을 가져오는 중입니다..." -#: src/Common/LinuxKernel.vala:593 +#: src/Common/LinuxKernel.vala:585 msgid "Could not find running kernel in list!" msgstr "목록에서 사용중인 커널을 찾을 수 없습니다!" -#: src/Common/LinuxKernel.vala:599 +#: src/Common/LinuxKernel.vala:591 msgid "Could not find any kernels to uninstall" msgstr "삭제할 커널을 찾을 수 없습니다" -#: src/Common/LinuxKernel.vala:608 +#: src/Common/LinuxKernel.vala:600 msgid "The following kernels will be uninstalled:" msgstr "아래 커널이 삭제됩니다:" -#: src/Common/LinuxKernel.vala:615 +#: src/Common/LinuxKernel.vala:607 msgid "Continue ?" msgstr "계속하시겠습니까?" -#: src/Common/LinuxKernel.vala:641 src/Console/AppConsole.vala:314 +#: src/Common/LinuxKernel.vala:633 src/Console/AppConsole.vala:314 msgid "Latest update" msgstr "최신 업데이트" -#: src/Common/LinuxKernel.vala:652 src/Console/AppConsole.vala:321 +#: src/Common/LinuxKernel.vala:644 src/Console/AppConsole.vala:321 msgid "Latest point update" msgstr "최신 포인트 업데이트" -#: src/Common/LinuxKernel.vala:660 src/Console/AppConsole.vala:326 +#: src/Common/LinuxKernel.vala:652 src/Console/AppConsole.vala:326 #: src/Console/AppConsole.vala:387 msgid "No updates found" msgstr "업데이트를 찾을 수 없습니다" -#: src/Common/LinuxKernel.vala:670 +#: src/Common/LinuxKernel.vala:662 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "커널 %s 버전을 설치하시겠습니까? (y/n): " -#: src/Common/LinuxKernel.vala:931 +#: src/Common/LinuxKernel.vala:912 msgid "Packages Available" msgstr "설치 가능한 패키지" -#: src/Common/LinuxKernel.vala:939 +#: src/Common/LinuxKernel.vala:920 msgid "Packages Installed" msgstr "설치된 패키지" -#: src/Common/LinuxKernel.vala:1019 +#: src/Common/LinuxKernel.vala:1000 msgid "Available Kernels" msgstr "설치 가능한 커널" -#: src/Common/LinuxKernel.vala:1026 src/Gtk/MainWindow.vala:189 +#: src/Common/LinuxKernel.vala:1007 src/Gtk/MainWindow.vala:189 msgid "Installed" msgstr "설치 됨" -#: src/Common/LinuxKernel.vala:1026 src/Gtk/MainWindow.vala:189 -#: src/Gtk/MainWindow.vala:606 src/Gtk/MainWindow.vala:620 +#: src/Common/LinuxKernel.vala:1007 src/Gtk/MainWindow.vala:189 +#: src/Gtk/MainWindow.vala:610 src/Gtk/MainWindow.vala:624 msgid "Running" msgstr "구동 중" -#: src/Common/LinuxKernel.vala:1063 +#: src/Common/LinuxKernel.vala:1044 msgid "Downloading" msgstr "다운로드 중" -#: src/Common/LinuxKernel.vala:1082 +#: src/Common/LinuxKernel.vala:1063 src/Gtk/CustomMessageDialog.vala:150 +#: src/Gtk/CustomMessageDialog.vala:154 msgid "OK" msgstr "확인" -#: src/Common/LinuxKernel.vala:1087 +#: src/Common/LinuxKernel.vala:1068 msgid "ERROR" msgstr "오류" -#: src/Common/LinuxKernel.vala:1101 +#: src/Common/LinuxKernel.vala:1082 msgid "This kernel is already installed." msgstr "이 커널은 이미 설치되었습니다." -#: src/Common/LinuxKernel.vala:1127 +#: src/Common/LinuxKernel.vala:1108 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "설치가 완료되었습닌다. 새 커널을 사용하려면 시스템을 재시작 하세요." -#: src/Common/LinuxKernel.vala:1130 +#: src/Common/LinuxKernel.vala:1111 msgid "Installation completed with errors" msgstr "오류가 있으나 설치가 완료되었습니다" -#: src/Common/LinuxKernel.vala:1151 +#: src/Common/LinuxKernel.vala:1132 msgid "" "Selected kernel is currently running and cannot be un-installed.\n" " Install another kernel before un-installing this one." @@ -116,19 +117,19 @@ msgstr "" "선택된 커널은 현재 사용 중이므로 삭제할 수 없습니다.\n" " 이 커널을 삭제하려면 다른 커널을 먼저 설치하세요." -#: src/Common/LinuxKernel.vala:1156 +#: src/Common/LinuxKernel.vala:1137 msgid "Preparing to uninstall selected kernels" msgstr "선택한 커널을 삭제하기 위해 준비중입니다" -#: src/Common/LinuxKernel.vala:1187 src/Common/LinuxKernel.vala:1234 +#: src/Common/LinuxKernel.vala:1168 src/Common/LinuxKernel.vala:1215 msgid "Un-install completed" msgstr "삭제가 완료되었습니다" -#: src/Common/LinuxKernel.vala:1190 src/Common/LinuxKernel.vala:1237 +#: src/Common/LinuxKernel.vala:1171 src/Common/LinuxKernel.vala:1218 msgid "Un-install completed with errors" msgstr "오류가 있으나 삭제가 완료되었습니다" -#: src/Common/LinuxKernel.vala:1203 +#: src/Common/LinuxKernel.vala:1184 msgid "" "This kernel is currently running and cannot be un-installed.\n" " Install another kernel before un-installing this one." @@ -281,7 +282,7 @@ msgid "Kernel %s Available" msgstr "커널 %s 사용 가능" #: src/Console/AppConsole.vala:367 src/Console/AppConsole.vala:379 -#: src/Gtk/MainWindow.vala:331 +#: src/Gtk/MainWindow.vala:333 msgid "Install" msgstr "설치" @@ -293,6 +294,19 @@ msgstr "디버그 정보 출력" msgid "Show all options" msgstr "모든 옵션 보기" +#: src/Gtk/CustomMessageDialog.vala:155 src/Gtk/ProgressWindow.vala:142 +#: src/Gtk/TerminalWindow.vala:148 +msgid "Cancel" +msgstr "취소" + +#: src/Gtk/CustomMessageDialog.vala:159 +msgid "Yes" +msgstr "" + +#: src/Gtk/CustomMessageDialog.vala:160 +msgid "No" +msgstr "" + #: src/Gtk/MainWindow.vala:146 msgid "Kernel" msgstr "커널" @@ -305,67 +319,69 @@ msgstr "상태" msgid "Refresh" msgstr "새로고침" -#: src/Gtk/MainWindow.vala:342 +#: src/Gtk/MainWindow.vala:324 src/Utility/TeeJee.System.vala:42 +#, fuzzy +msgid "Internet connection is not active" +msgstr "인터넷 연결을 확인하세요." + +#: src/Gtk/MainWindow.vala:324 src/Gtk/MainWindow.vala:518 +#: src/Gtk/MainWindow.vala:634 +msgid "No Internet" +msgstr "인터넷이 연결되지 않았습니다" + +#: src/Gtk/MainWindow.vala:344 msgid "Uninstall" msgstr "삭제" -#: src/Gtk/MainWindow.vala:375 src/Gtk/MainWindow.vala:408 -#: src/Gtk/MainWindow.vala:659 +#: src/Gtk/MainWindow.vala:377 src/Gtk/MainWindow.vala:410 +#: src/Gtk/MainWindow.vala:666 msgid "Close window to exit..." msgstr "창을 닫고 종료..." -#: src/Gtk/MainWindow.vala:382 +#: src/Gtk/MainWindow.vala:384 msgid "Uninstall Old" msgstr "오래된 커널 제거" -#: src/Gtk/MainWindow.vala:383 +#: src/Gtk/MainWindow.vala:385 msgid "Uninstall kernels older than running kernel" msgstr "현재 사용 중인 커널보다 이전 버전의 커널을 제거" -#: src/Gtk/MainWindow.vala:415 +#: src/Gtk/MainWindow.vala:417 msgid "Changes" msgstr "변경사항" -#: src/Gtk/MainWindow.vala:426 src/Gtk/SettingsDialog.vala:50 +#: src/Gtk/MainWindow.vala:428 src/Gtk/SettingsDialog.vala:50 msgid "Settings" msgstr "설정" -#: src/Gtk/MainWindow.vala:449 +#: src/Gtk/MainWindow.vala:451 msgid "About" msgstr "정보" -#: src/Gtk/MainWindow.vala:494 +#: src/Gtk/MainWindow.vala:496 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "우분투 기반 배포판의 커널 업그레이드 도구" -#: src/Gtk/MainWindow.vala:495 +#: src/Gtk/MainWindow.vala:497 msgid "Forked" msgstr "" -#: src/Gtk/MainWindow.vala:495 +#: src/Gtk/MainWindow.vala:497 msgid "Original" msgstr "" -#: src/Gtk/MainWindow.vala:527 +#: src/Gtk/MainWindow.vala:518 src/Gtk/MainWindow.vala:634 +msgid "Internet connection is not active." +msgstr "인터넷 연결을 확인하세요." + +#: src/Gtk/MainWindow.vala:531 msgid "Refreshing..." msgstr "새로 고침..." -#: src/Gtk/MainWindow.vala:616 +#: src/Gtk/MainWindow.vala:620 msgid "available" msgstr "사용가능" -#: src/Gtk/MainWindow.vala:674 -msgid "No Internet" -msgstr "인터넷이 연결되지 않았습니다" - -#: src/Gtk/MainWindow.vala:675 -msgid "Internet connection is not active." -msgstr "인터넷 연결을 확인하세요." - -#: src/Gtk/ProgressWindow.vala:142 src/Gtk/TerminalWindow.vala:149 -msgid "Cancel" -msgstr "취소" - #: src/Gtk/SettingsDialog.vala:60 msgid "Notification" msgstr "알림" @@ -430,7 +446,7 @@ msgstr "초" msgid "Max concurrent downloads" msgstr "동시 다운로드 최대 수" -#: src/Gtk/TerminalWindow.vala:159 src/Utility/Gtk/AboutWindow.vala:294 +#: src/Gtk/TerminalWindow.vala:158 src/Utility/Gtk/AboutWindow.vala:294 msgid "Close" msgstr "닫기" @@ -466,7 +482,7 @@ msgstr "문서작성" msgid "Third Party Inclusions" msgstr "서드파티 포함" -#: src/Utility/Gtk/GtkHelper.vala:39 +#: src/Utility/Gtk/GtkHelper.vala:59 msgid "Missing Icon" msgstr "아이콘을 찾을 수 없습니다" @@ -474,7 +490,7 @@ msgstr "아이콘을 찾을 수 없습니다" msgid "File deleted" msgstr "파일이 삭제되었습니다" -#: src/Utility/TeeJee.FileSystem.vala:76 src/Utility/TeeJee.FileSystem.vala:256 +#: src/Utility/TeeJee.FileSystem.vala:76 src/Utility/TeeJee.FileSystem.vala:240 msgid "Failed to delete file" msgstr "파일 삭제를 실패했습니다" @@ -510,16 +526,16 @@ msgstr "파일이 이동되었습니다" msgid "Failed to move file" msgstr "파일 이동을 실패했습니다" -#: src/Utility/TeeJee.FileSystem.vala:233 -#: src/Utility/TeeJee.FileSystem.vala:236 +#: src/Utility/TeeJee.FileSystem.vala:217 +#: src/Utility/TeeJee.FileSystem.vala:220 msgid "Created directory" msgstr "폴더를 생성했습니다" -#: src/Utility/TeeJee.FileSystem.vala:243 +#: src/Utility/TeeJee.FileSystem.vala:227 msgid "Failed to create dir" msgstr "폴더 생성을 실패했습니다" -#: src/Utility/TeeJee.FileSystem.vala:255 +#: src/Utility/TeeJee.FileSystem.vala:239 msgid "Deleted" msgstr "삭제되었습니다" diff --git a/po/messages.pot b/po/messages.pot index 835b955c..d7dce10c 100644 --- a/po/messages.pot +++ b/po/messages.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline 1.0.21\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-02-23 15:25-0500\n" +"POT-Creation-Date: 2023-02-23 17:56-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,120 +17,121 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" -#: src/Common/LinuxKernel.vala:88 +#: src/Common/LinuxKernel.vala:87 msgid "Distribution" msgstr "" -#: src/Common/LinuxKernel.vala:102 +#: src/Common/LinuxKernel.vala:101 msgid "Architecture" msgstr "" -#: src/Common/LinuxKernel.vala:298 +#: src/Common/LinuxKernel.vala:290 msgid "Fetching index..." msgstr "" -#: src/Common/LinuxKernel.vala:337 +#: src/Common/LinuxKernel.vala:329 msgid "Fetching index from kernel.ubuntu.com..." msgstr "" -#: src/Common/LinuxKernel.vala:593 +#: src/Common/LinuxKernel.vala:585 msgid "Could not find running kernel in list!" msgstr "" -#: src/Common/LinuxKernel.vala:599 +#: src/Common/LinuxKernel.vala:591 msgid "Could not find any kernels to uninstall" msgstr "" -#: src/Common/LinuxKernel.vala:608 +#: src/Common/LinuxKernel.vala:600 msgid "The following kernels will be uninstalled:" msgstr "" -#: src/Common/LinuxKernel.vala:615 +#: src/Common/LinuxKernel.vala:607 msgid "Continue ?" msgstr "" -#: src/Common/LinuxKernel.vala:641 src/Console/AppConsole.vala:314 +#: src/Common/LinuxKernel.vala:633 src/Console/AppConsole.vala:314 msgid "Latest update" msgstr "" -#: src/Common/LinuxKernel.vala:652 src/Console/AppConsole.vala:321 +#: src/Common/LinuxKernel.vala:644 src/Console/AppConsole.vala:321 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:660 src/Console/AppConsole.vala:326 +#: src/Common/LinuxKernel.vala:652 src/Console/AppConsole.vala:326 #: src/Console/AppConsole.vala:387 msgid "No updates found" msgstr "" -#: src/Common/LinuxKernel.vala:670 +#: src/Common/LinuxKernel.vala:662 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "" -#: src/Common/LinuxKernel.vala:931 +#: src/Common/LinuxKernel.vala:912 msgid "Packages Available" msgstr "" -#: src/Common/LinuxKernel.vala:939 +#: src/Common/LinuxKernel.vala:920 msgid "Packages Installed" msgstr "" -#: src/Common/LinuxKernel.vala:1019 +#: src/Common/LinuxKernel.vala:1000 msgid "Available Kernels" msgstr "" -#: src/Common/LinuxKernel.vala:1026 src/Gtk/MainWindow.vala:189 +#: src/Common/LinuxKernel.vala:1007 src/Gtk/MainWindow.vala:189 msgid "Installed" msgstr "" -#: src/Common/LinuxKernel.vala:1026 src/Gtk/MainWindow.vala:189 -#: src/Gtk/MainWindow.vala:606 src/Gtk/MainWindow.vala:620 +#: src/Common/LinuxKernel.vala:1007 src/Gtk/MainWindow.vala:189 +#: src/Gtk/MainWindow.vala:610 src/Gtk/MainWindow.vala:624 msgid "Running" msgstr "" -#: src/Common/LinuxKernel.vala:1063 +#: src/Common/LinuxKernel.vala:1044 msgid "Downloading" msgstr "" -#: src/Common/LinuxKernel.vala:1082 +#: src/Common/LinuxKernel.vala:1063 src/Gtk/CustomMessageDialog.vala:150 +#: src/Gtk/CustomMessageDialog.vala:154 msgid "OK" msgstr "" -#: src/Common/LinuxKernel.vala:1087 +#: src/Common/LinuxKernel.vala:1068 msgid "ERROR" msgstr "" -#: src/Common/LinuxKernel.vala:1101 +#: src/Common/LinuxKernel.vala:1082 msgid "This kernel is already installed." msgstr "" -#: src/Common/LinuxKernel.vala:1127 +#: src/Common/LinuxKernel.vala:1108 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" -#: src/Common/LinuxKernel.vala:1130 +#: src/Common/LinuxKernel.vala:1111 msgid "Installation completed with errors" msgstr "" -#: src/Common/LinuxKernel.vala:1151 +#: src/Common/LinuxKernel.vala:1132 msgid "" "Selected kernel is currently running and cannot be un-installed.\n" " Install another kernel before un-installing this one." msgstr "" -#: src/Common/LinuxKernel.vala:1156 +#: src/Common/LinuxKernel.vala:1137 msgid "Preparing to uninstall selected kernels" msgstr "" -#: src/Common/LinuxKernel.vala:1187 src/Common/LinuxKernel.vala:1234 +#: src/Common/LinuxKernel.vala:1168 src/Common/LinuxKernel.vala:1215 msgid "Un-install completed" msgstr "" -#: src/Common/LinuxKernel.vala:1190 src/Common/LinuxKernel.vala:1237 +#: src/Common/LinuxKernel.vala:1171 src/Common/LinuxKernel.vala:1218 msgid "Un-install completed with errors" msgstr "" -#: src/Common/LinuxKernel.vala:1203 +#: src/Common/LinuxKernel.vala:1184 msgid "" "This kernel is currently running and cannot be un-installed.\n" " Install another kernel before un-installing this one." @@ -281,7 +282,7 @@ msgid "Kernel %s Available" msgstr "" #: src/Console/AppConsole.vala:367 src/Console/AppConsole.vala:379 -#: src/Gtk/MainWindow.vala:331 +#: src/Gtk/MainWindow.vala:333 msgid "Install" msgstr "" @@ -293,6 +294,19 @@ msgstr "" msgid "Show all options" msgstr "" +#: src/Gtk/CustomMessageDialog.vala:155 src/Gtk/ProgressWindow.vala:142 +#: src/Gtk/TerminalWindow.vala:148 +msgid "Cancel" +msgstr "" + +#: src/Gtk/CustomMessageDialog.vala:159 +msgid "Yes" +msgstr "" + +#: src/Gtk/CustomMessageDialog.vala:160 +msgid "No" +msgstr "" + #: src/Gtk/MainWindow.vala:146 msgid "Kernel" msgstr "" @@ -305,65 +319,66 @@ msgstr "" msgid "Refresh" msgstr "" -#: src/Gtk/MainWindow.vala:342 +#: src/Gtk/MainWindow.vala:324 src/Utility/TeeJee.System.vala:42 +msgid "Internet connection is not active" +msgstr "" + +#: src/Gtk/MainWindow.vala:324 src/Gtk/MainWindow.vala:518 +#: src/Gtk/MainWindow.vala:634 +msgid "No Internet" +msgstr "" + +#: src/Gtk/MainWindow.vala:344 msgid "Uninstall" msgstr "" -#: src/Gtk/MainWindow.vala:375 src/Gtk/MainWindow.vala:408 -#: src/Gtk/MainWindow.vala:659 +#: src/Gtk/MainWindow.vala:377 src/Gtk/MainWindow.vala:410 +#: src/Gtk/MainWindow.vala:666 msgid "Close window to exit..." msgstr "" -#: src/Gtk/MainWindow.vala:382 +#: src/Gtk/MainWindow.vala:384 msgid "Uninstall Old" msgstr "" -#: src/Gtk/MainWindow.vala:383 +#: src/Gtk/MainWindow.vala:385 msgid "Uninstall kernels older than running kernel" msgstr "" -#: src/Gtk/MainWindow.vala:415 +#: src/Gtk/MainWindow.vala:417 msgid "Changes" msgstr "" -#: src/Gtk/MainWindow.vala:426 src/Gtk/SettingsDialog.vala:50 +#: src/Gtk/MainWindow.vala:428 src/Gtk/SettingsDialog.vala:50 msgid "Settings" msgstr "" -#: src/Gtk/MainWindow.vala:449 +#: src/Gtk/MainWindow.vala:451 msgid "About" msgstr "" -#: src/Gtk/MainWindow.vala:494 +#: src/Gtk/MainWindow.vala:496 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "" -#: src/Gtk/MainWindow.vala:495 +#: src/Gtk/MainWindow.vala:497 msgid "Forked" msgstr "" -#: src/Gtk/MainWindow.vala:495 +#: src/Gtk/MainWindow.vala:497 msgid "Original" msgstr "" -#: src/Gtk/MainWindow.vala:527 -msgid "Refreshing..." -msgstr "" - -#: src/Gtk/MainWindow.vala:616 -msgid "available" -msgstr "" - -#: src/Gtk/MainWindow.vala:674 -msgid "No Internet" +#: src/Gtk/MainWindow.vala:518 src/Gtk/MainWindow.vala:634 +msgid "Internet connection is not active." msgstr "" -#: src/Gtk/MainWindow.vala:675 -msgid "Internet connection is not active." +#: src/Gtk/MainWindow.vala:531 +msgid "Refreshing..." msgstr "" -#: src/Gtk/ProgressWindow.vala:142 src/Gtk/TerminalWindow.vala:149 -msgid "Cancel" +#: src/Gtk/MainWindow.vala:620 +msgid "available" msgstr "" #: src/Gtk/SettingsDialog.vala:60 @@ -430,7 +445,7 @@ msgstr "" msgid "Max concurrent downloads" msgstr "" -#: src/Gtk/TerminalWindow.vala:159 src/Utility/Gtk/AboutWindow.vala:294 +#: src/Gtk/TerminalWindow.vala:158 src/Utility/Gtk/AboutWindow.vala:294 msgid "Close" msgstr "" @@ -466,7 +481,7 @@ msgstr "" msgid "Third Party Inclusions" msgstr "" -#: src/Utility/Gtk/GtkHelper.vala:39 +#: src/Utility/Gtk/GtkHelper.vala:59 msgid "Missing Icon" msgstr "" @@ -474,7 +489,7 @@ msgstr "" msgid "File deleted" msgstr "" -#: src/Utility/TeeJee.FileSystem.vala:76 src/Utility/TeeJee.FileSystem.vala:256 +#: src/Utility/TeeJee.FileSystem.vala:76 src/Utility/TeeJee.FileSystem.vala:240 msgid "Failed to delete file" msgstr "" @@ -510,16 +525,16 @@ msgstr "" msgid "Failed to move file" msgstr "" -#: src/Utility/TeeJee.FileSystem.vala:233 -#: src/Utility/TeeJee.FileSystem.vala:236 +#: src/Utility/TeeJee.FileSystem.vala:217 +#: src/Utility/TeeJee.FileSystem.vala:220 msgid "Created directory" msgstr "" -#: src/Utility/TeeJee.FileSystem.vala:243 +#: src/Utility/TeeJee.FileSystem.vala:227 msgid "Failed to create dir" msgstr "" -#: src/Utility/TeeJee.FileSystem.vala:255 +#: src/Utility/TeeJee.FileSystem.vala:239 msgid "Deleted" msgstr "" diff --git a/po/nl.po b/po/nl.po index 4c002f47..2a2c876b 100644 --- a/po/nl.po +++ b/po/nl.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-02-23 15:16-0500\n" +"POT-Creation-Date: 2023-02-23 17:56-0500\n" "PO-Revision-Date: 2020-08-23 13:55+0200\n" "Last-Translator: Heimen Stoffels \n" "Language-Team: Dutch (Netherlands)\n" @@ -13,106 +13,107 @@ msgstr "" "X-Generator: Poedit 2.4.1\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: src/Common/LinuxKernel.vala:88 +#: src/Common/LinuxKernel.vala:87 msgid "Distribution" msgstr "Distributie" -#: src/Common/LinuxKernel.vala:102 +#: src/Common/LinuxKernel.vala:101 msgid "Architecture" msgstr "Architectuur" -#: src/Common/LinuxKernel.vala:298 +#: src/Common/LinuxKernel.vala:290 msgid "Fetching index..." msgstr "Bezig met ophalen van index..." -#: src/Common/LinuxKernel.vala:337 +#: src/Common/LinuxKernel.vala:329 msgid "Fetching index from kernel.ubuntu.com..." msgstr "Bezig met ophalen van index van kernel.ubuntu.com..." -#: src/Common/LinuxKernel.vala:593 +#: src/Common/LinuxKernel.vala:585 msgid "Could not find running kernel in list!" msgstr "De in gebruik zijnde kernel staat niet op de lijst!" -#: src/Common/LinuxKernel.vala:599 +#: src/Common/LinuxKernel.vala:591 #, fuzzy msgid "Could not find any kernels to uninstall" msgstr "Er zijn geen te verwijderen kernels" -#: src/Common/LinuxKernel.vala:608 +#: src/Common/LinuxKernel.vala:600 #, fuzzy msgid "The following kernels will be uninstalled:" msgstr "De volgende kernels worden verwijderd:" -#: src/Common/LinuxKernel.vala:615 +#: src/Common/LinuxKernel.vala:607 msgid "Continue ?" msgstr "Wil je doorgaan?" -#: src/Common/LinuxKernel.vala:641 src/Console/AppConsole.vala:314 +#: src/Common/LinuxKernel.vala:633 src/Console/AppConsole.vala:314 msgid "Latest update" msgstr "Recentste update" -#: src/Common/LinuxKernel.vala:652 src/Console/AppConsole.vala:321 +#: src/Common/LinuxKernel.vala:644 src/Console/AppConsole.vala:321 msgid "Latest point update" msgstr "Recentste puntupdate" -#: src/Common/LinuxKernel.vala:660 src/Console/AppConsole.vala:326 +#: src/Common/LinuxKernel.vala:652 src/Console/AppConsole.vala:326 #: src/Console/AppConsole.vala:387 msgid "No updates found" msgstr "Geen updates gevonden" -#: src/Common/LinuxKernel.vala:670 +#: src/Common/LinuxKernel.vala:662 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Wil je versie %s installeren? (j/n): " -#: src/Common/LinuxKernel.vala:931 +#: src/Common/LinuxKernel.vala:912 msgid "Packages Available" msgstr "Beschikbare pakketten" -#: src/Common/LinuxKernel.vala:939 +#: src/Common/LinuxKernel.vala:920 msgid "Packages Installed" msgstr "Geïnstalleerde pakketten" -#: src/Common/LinuxKernel.vala:1019 +#: src/Common/LinuxKernel.vala:1000 msgid "Available Kernels" msgstr "Beschikbare kernels" -#: src/Common/LinuxKernel.vala:1026 src/Gtk/MainWindow.vala:189 +#: src/Common/LinuxKernel.vala:1007 src/Gtk/MainWindow.vala:189 msgid "Installed" msgstr "Geïnstalleerd" -#: src/Common/LinuxKernel.vala:1026 src/Gtk/MainWindow.vala:189 -#: src/Gtk/MainWindow.vala:606 src/Gtk/MainWindow.vala:620 +#: src/Common/LinuxKernel.vala:1007 src/Gtk/MainWindow.vala:189 +#: src/Gtk/MainWindow.vala:610 src/Gtk/MainWindow.vala:624 msgid "Running" msgstr "In gebruik" -#: src/Common/LinuxKernel.vala:1063 +#: src/Common/LinuxKernel.vala:1044 msgid "Downloading" msgstr "Bezig met downloaden" -#: src/Common/LinuxKernel.vala:1082 +#: src/Common/LinuxKernel.vala:1063 src/Gtk/CustomMessageDialog.vala:150 +#: src/Gtk/CustomMessageDialog.vala:154 msgid "OK" msgstr "Oké" -#: src/Common/LinuxKernel.vala:1087 +#: src/Common/LinuxKernel.vala:1068 msgid "ERROR" msgstr "FOUT" -#: src/Common/LinuxKernel.vala:1101 +#: src/Common/LinuxKernel.vala:1082 msgid "This kernel is already installed." msgstr "Deze kernel is al geïnstalleerd." -#: src/Common/LinuxKernel.vala:1127 +#: src/Common/LinuxKernel.vala:1108 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "De installatie is voltooid. Herstart de computer om de nieuwe kernel te " "gebruiken." -#: src/Common/LinuxKernel.vala:1130 +#: src/Common/LinuxKernel.vala:1111 msgid "Installation completed with errors" msgstr "De installatie is foutloos voltooid" -#: src/Common/LinuxKernel.vala:1151 +#: src/Common/LinuxKernel.vala:1132 #, fuzzy msgid "" "Selected kernel is currently running and cannot be un-installed.\n" @@ -122,20 +123,20 @@ msgstr "" "verwijderd.\n" " Installeer eerst een andere kernel." -#: src/Common/LinuxKernel.vala:1156 +#: src/Common/LinuxKernel.vala:1137 #, fuzzy msgid "Preparing to uninstall selected kernels" msgstr "Bezig met voorbereiden van verwijdering" -#: src/Common/LinuxKernel.vala:1187 src/Common/LinuxKernel.vala:1234 +#: src/Common/LinuxKernel.vala:1168 src/Common/LinuxKernel.vala:1215 msgid "Un-install completed" msgstr "Deïnstalleren voltooid" -#: src/Common/LinuxKernel.vala:1190 src/Common/LinuxKernel.vala:1237 +#: src/Common/LinuxKernel.vala:1171 src/Common/LinuxKernel.vala:1218 msgid "Un-install completed with errors" msgstr "Deïnstalleren voltooid, maar met fouten" -#: src/Common/LinuxKernel.vala:1203 +#: src/Common/LinuxKernel.vala:1184 #, fuzzy msgid "" "This kernel is currently running and cannot be un-installed.\n" @@ -295,7 +296,7 @@ msgid "Kernel %s Available" msgstr "Kernel %s is beschikbaar" #: src/Console/AppConsole.vala:367 src/Console/AppConsole.vala:379 -#: src/Gtk/MainWindow.vala:331 +#: src/Gtk/MainWindow.vala:333 msgid "Install" msgstr "Installeren" @@ -307,6 +308,19 @@ msgstr "Foutopsporingsinformatie tonen" msgid "Show all options" msgstr "Alle opties tonen" +#: src/Gtk/CustomMessageDialog.vala:155 src/Gtk/ProgressWindow.vala:142 +#: src/Gtk/TerminalWindow.vala:148 +msgid "Cancel" +msgstr "Annuleren" + +#: src/Gtk/CustomMessageDialog.vala:159 +msgid "Yes" +msgstr "" + +#: src/Gtk/CustomMessageDialog.vala:160 +msgid "No" +msgstr "" + #: src/Gtk/MainWindow.vala:146 msgid "Kernel" msgstr "Kernel" @@ -319,70 +333,72 @@ msgstr "Status" msgid "Refresh" msgstr "Verversen" -#: src/Gtk/MainWindow.vala:342 +#: src/Gtk/MainWindow.vala:324 src/Utility/TeeJee.System.vala:42 +#, fuzzy +msgid "Internet connection is not active" +msgstr "Je bent niet verbonden met het internet." + +#: src/Gtk/MainWindow.vala:324 src/Gtk/MainWindow.vala:518 +#: src/Gtk/MainWindow.vala:634 +msgid "No Internet" +msgstr "Geen internetverbinding" + +#: src/Gtk/MainWindow.vala:344 #, fuzzy msgid "Uninstall" msgstr "Installeren" -#: src/Gtk/MainWindow.vala:375 src/Gtk/MainWindow.vala:408 -#: src/Gtk/MainWindow.vala:659 +#: src/Gtk/MainWindow.vala:377 src/Gtk/MainWindow.vala:410 +#: src/Gtk/MainWindow.vala:666 msgid "Close window to exit..." msgstr "Sluit het venster..." -#: src/Gtk/MainWindow.vala:382 +#: src/Gtk/MainWindow.vala:384 #, fuzzy msgid "Uninstall Old" msgstr "Deïnstalleren voltooid" -#: src/Gtk/MainWindow.vala:383 +#: src/Gtk/MainWindow.vala:385 #, fuzzy msgid "Uninstall kernels older than running kernel" msgstr "Geïnstalleerde kernels verwijderen die ouder zijn dan de huidige" -#: src/Gtk/MainWindow.vala:415 +#: src/Gtk/MainWindow.vala:417 msgid "Changes" msgstr "Wijzigingen" -#: src/Gtk/MainWindow.vala:426 src/Gtk/SettingsDialog.vala:50 +#: src/Gtk/MainWindow.vala:428 src/Gtk/SettingsDialog.vala:50 msgid "Settings" msgstr "Instellingen" -#: src/Gtk/MainWindow.vala:449 +#: src/Gtk/MainWindow.vala:451 msgid "About" msgstr "Over" -#: src/Gtk/MainWindow.vala:494 +#: src/Gtk/MainWindow.vala:496 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Een kernelupgradehulpmiddel voor op Ubuntu gebaseerde distributies" -#: src/Gtk/MainWindow.vala:495 +#: src/Gtk/MainWindow.vala:497 msgid "Forked" msgstr "Geforkt" -#: src/Gtk/MainWindow.vala:495 +#: src/Gtk/MainWindow.vala:497 msgid "Original" msgstr "Origineel" -#: src/Gtk/MainWindow.vala:527 +#: src/Gtk/MainWindow.vala:518 src/Gtk/MainWindow.vala:634 +msgid "Internet connection is not active." +msgstr "Je bent niet verbonden met het internet." + +#: src/Gtk/MainWindow.vala:531 msgid "Refreshing..." msgstr "Bezig met verversen..." -#: src/Gtk/MainWindow.vala:616 +#: src/Gtk/MainWindow.vala:620 msgid "available" msgstr "beschikbaar" -#: src/Gtk/MainWindow.vala:674 -msgid "No Internet" -msgstr "Geen internetverbinding" - -#: src/Gtk/MainWindow.vala:675 -msgid "Internet connection is not active." -msgstr "Je bent niet verbonden met het internet." - -#: src/Gtk/ProgressWindow.vala:142 src/Gtk/TerminalWindow.vala:149 -msgid "Cancel" -msgstr "Annuleren" - #: src/Gtk/SettingsDialog.vala:60 msgid "Notification" msgstr "Melding" @@ -447,7 +463,7 @@ msgstr "seconden" msgid "Max concurrent downloads" msgstr "Max. aantal gelijktijdige downloads" -#: src/Gtk/TerminalWindow.vala:159 src/Utility/Gtk/AboutWindow.vala:294 +#: src/Gtk/TerminalWindow.vala:158 src/Utility/Gtk/AboutWindow.vala:294 msgid "Close" msgstr "Sluiten" @@ -483,7 +499,7 @@ msgstr "Documenteerders" msgid "Third Party Inclusions" msgstr "Externe code" -#: src/Utility/Gtk/GtkHelper.vala:39 +#: src/Utility/Gtk/GtkHelper.vala:59 msgid "Missing Icon" msgstr "Ontbrekend pictogram" @@ -491,7 +507,7 @@ msgstr "Ontbrekend pictogram" msgid "File deleted" msgstr "Het bestand is verwijderd" -#: src/Utility/TeeJee.FileSystem.vala:76 src/Utility/TeeJee.FileSystem.vala:256 +#: src/Utility/TeeJee.FileSystem.vala:76 src/Utility/TeeJee.FileSystem.vala:240 msgid "Failed to delete file" msgstr "Het bestand kan niet worden verwijderd" @@ -527,16 +543,16 @@ msgstr "Het bestand is verplaatst" msgid "Failed to move file" msgstr "Het bestand kan niet worden verplaatst" -#: src/Utility/TeeJee.FileSystem.vala:233 -#: src/Utility/TeeJee.FileSystem.vala:236 +#: src/Utility/TeeJee.FileSystem.vala:217 +#: src/Utility/TeeJee.FileSystem.vala:220 msgid "Created directory" msgstr "De map is aangemaakt" -#: src/Utility/TeeJee.FileSystem.vala:243 +#: src/Utility/TeeJee.FileSystem.vala:227 msgid "Failed to create dir" msgstr "De map kan niet worden aangemaakt" -#: src/Utility/TeeJee.FileSystem.vala:255 +#: src/Utility/TeeJee.FileSystem.vala:239 msgid "Deleted" msgstr "Verwijderd" diff --git a/po/pl.po b/po/pl.po index 19d27ce4..1b68ca63 100644 --- a/po/pl.po +++ b/po/pl.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-02-23 15:16-0500\n" +"POT-Creation-Date: 2023-02-23 17:56-0500\n" "PO-Revision-Date: 2021-09-17 10:29+0200\n" "Last-Translator: Viktor Sokyrko \n" "Language-Team: Polish\n" @@ -12,105 +12,106 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Poedit 2.4.2\n" -#: src/Common/LinuxKernel.vala:88 +#: src/Common/LinuxKernel.vala:87 msgid "Distribution" msgstr "Dystrybucja" -#: src/Common/LinuxKernel.vala:102 +#: src/Common/LinuxKernel.vala:101 #, fuzzy msgid "Architecture" msgstr "Architektura systemu" -#: src/Common/LinuxKernel.vala:298 +#: src/Common/LinuxKernel.vala:290 msgid "Fetching index..." msgstr "Pobieranie indeksu..." -#: src/Common/LinuxKernel.vala:337 +#: src/Common/LinuxKernel.vala:329 msgid "Fetching index from kernel.ubuntu.com..." msgstr "Pobieranie indeksu z kernel.ubuntu.com..." -#: src/Common/LinuxKernel.vala:593 +#: src/Common/LinuxKernel.vala:585 msgid "Could not find running kernel in list!" msgstr "Nie można znaleźć uruchomionego jądra na liście!" -#: src/Common/LinuxKernel.vala:599 +#: src/Common/LinuxKernel.vala:591 msgid "Could not find any kernels to uninstall" msgstr "Nie udało się odnaleźć żadnych jąder do odinstalowania" -#: src/Common/LinuxKernel.vala:608 +#: src/Common/LinuxKernel.vala:600 msgid "The following kernels will be uninstalled:" msgstr "Następujące jądra zostaną odinstalowane:" -#: src/Common/LinuxKernel.vala:615 +#: src/Common/LinuxKernel.vala:607 msgid "Continue ?" msgstr "Kontynuowac?" -#: src/Common/LinuxKernel.vala:641 src/Console/AppConsole.vala:314 +#: src/Common/LinuxKernel.vala:633 src/Console/AppConsole.vala:314 msgid "Latest update" msgstr "Najnowsza aktualizacja" -#: src/Common/LinuxKernel.vala:652 src/Console/AppConsole.vala:321 +#: src/Common/LinuxKernel.vala:644 src/Console/AppConsole.vala:321 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:660 src/Console/AppConsole.vala:326 +#: src/Common/LinuxKernel.vala:652 src/Console/AppConsole.vala:326 #: src/Console/AppConsole.vala:387 msgid "No updates found" msgstr "Nie znaleziono aktualizacji" -#: src/Common/LinuxKernel.vala:670 +#: src/Common/LinuxKernel.vala:662 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Instaluj wersję jądra %s ? (t/n): " -#: src/Common/LinuxKernel.vala:931 +#: src/Common/LinuxKernel.vala:912 msgid "Packages Available" msgstr "Dostępne pakiety" -#: src/Common/LinuxKernel.vala:939 +#: src/Common/LinuxKernel.vala:920 msgid "Packages Installed" msgstr "Pakiety zainstalowane" -#: src/Common/LinuxKernel.vala:1019 +#: src/Common/LinuxKernel.vala:1000 msgid "Available Kernels" msgstr "Dostępne jądra" -#: src/Common/LinuxKernel.vala:1026 src/Gtk/MainWindow.vala:189 +#: src/Common/LinuxKernel.vala:1007 src/Gtk/MainWindow.vala:189 msgid "Installed" msgstr "Zainstalowany" -#: src/Common/LinuxKernel.vala:1026 src/Gtk/MainWindow.vala:189 -#: src/Gtk/MainWindow.vala:606 src/Gtk/MainWindow.vala:620 +#: src/Common/LinuxKernel.vala:1007 src/Gtk/MainWindow.vala:189 +#: src/Gtk/MainWindow.vala:610 src/Gtk/MainWindow.vala:624 msgid "Running" msgstr "Uruchomiony" -#: src/Common/LinuxKernel.vala:1063 +#: src/Common/LinuxKernel.vala:1044 msgid "Downloading" msgstr "Pobieranie" -#: src/Common/LinuxKernel.vala:1082 +#: src/Common/LinuxKernel.vala:1063 src/Gtk/CustomMessageDialog.vala:150 +#: src/Gtk/CustomMessageDialog.vala:154 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:1087 +#: src/Common/LinuxKernel.vala:1068 msgid "ERROR" msgstr "BŁĄD" -#: src/Common/LinuxKernel.vala:1101 +#: src/Common/LinuxKernel.vala:1082 msgid "This kernel is already installed." msgstr "To jądro jest już zainstalowane." -#: src/Common/LinuxKernel.vala:1127 +#: src/Common/LinuxKernel.vala:1108 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "Instalacja zakończona. Aby korzystać z nowego jądra, konieczne jest ponowne " "uruchomienie." -#: src/Common/LinuxKernel.vala:1130 +#: src/Common/LinuxKernel.vala:1111 msgid "Installation completed with errors" msgstr "Instalacja zakończona z błędami" -#: src/Common/LinuxKernel.vala:1151 +#: src/Common/LinuxKernel.vala:1132 msgid "" "Selected kernel is currently running and cannot be un-installed.\n" " Install another kernel before un-installing this one." @@ -118,19 +119,19 @@ msgstr "" "Wybrane jądro aktualnie działa i nie może zostać odinstalowane.\n" " Zainstaluj inne jądro przed odinstalowaniem tego." -#: src/Common/LinuxKernel.vala:1156 +#: src/Common/LinuxKernel.vala:1137 msgid "Preparing to uninstall selected kernels" msgstr "Przygotowanie do odinstalowania wybranych jąder" -#: src/Common/LinuxKernel.vala:1187 src/Common/LinuxKernel.vala:1234 +#: src/Common/LinuxKernel.vala:1168 src/Common/LinuxKernel.vala:1215 msgid "Un-install completed" msgstr "Deinstalacja zakończona" -#: src/Common/LinuxKernel.vala:1190 src/Common/LinuxKernel.vala:1237 +#: src/Common/LinuxKernel.vala:1171 src/Common/LinuxKernel.vala:1218 msgid "Un-install completed with errors" msgstr "De-instalacja zakończona z błędami" -#: src/Common/LinuxKernel.vala:1203 +#: src/Common/LinuxKernel.vala:1184 msgid "" "This kernel is currently running and cannot be un-installed.\n" " Install another kernel before un-installing this one." @@ -291,7 +292,7 @@ msgid "Kernel %s Available" msgstr "Dostępne jądro %s" #: src/Console/AppConsole.vala:367 src/Console/AppConsole.vala:379 -#: src/Gtk/MainWindow.vala:331 +#: src/Gtk/MainWindow.vala:333 msgid "Install" msgstr "Zainstaluj" @@ -303,6 +304,19 @@ msgstr "Wypisz informacje debugujące" msgid "Show all options" msgstr "Pokaż wszystkie opcje" +#: src/Gtk/CustomMessageDialog.vala:155 src/Gtk/ProgressWindow.vala:142 +#: src/Gtk/TerminalWindow.vala:148 +msgid "Cancel" +msgstr "Anuluj" + +#: src/Gtk/CustomMessageDialog.vala:159 +msgid "Yes" +msgstr "" + +#: src/Gtk/CustomMessageDialog.vala:160 +msgid "No" +msgstr "" + #: src/Gtk/MainWindow.vala:146 msgid "Kernel" msgstr "Jądro" @@ -315,70 +329,72 @@ msgstr "Status" msgid "Refresh" msgstr "Odśwież" -#: src/Gtk/MainWindow.vala:342 +#: src/Gtk/MainWindow.vala:324 src/Utility/TeeJee.System.vala:42 +#, fuzzy +msgid "Internet connection is not active" +msgstr "Brak połączenia z internetem" + +#: src/Gtk/MainWindow.vala:324 src/Gtk/MainWindow.vala:518 +#: src/Gtk/MainWindow.vala:634 +msgid "No Internet" +msgstr "Brak internetu" + +#: src/Gtk/MainWindow.vala:344 msgid "Uninstall" msgstr "Odinstaluj" -#: src/Gtk/MainWindow.vala:375 src/Gtk/MainWindow.vala:408 -#: src/Gtk/MainWindow.vala:659 +#: src/Gtk/MainWindow.vala:377 src/Gtk/MainWindow.vala:410 +#: src/Gtk/MainWindow.vala:666 msgid "Close window to exit..." msgstr "Zamknij okno żeby wyjść..." -#: src/Gtk/MainWindow.vala:382 +#: src/Gtk/MainWindow.vala:384 msgid "Uninstall Old" msgstr "Odinstaluj Stare" -#: src/Gtk/MainWindow.vala:383 +#: src/Gtk/MainWindow.vala:385 msgid "Uninstall kernels older than running kernel" msgstr "Odinstaluj jądra starsze niż uruchomione" -#: src/Gtk/MainWindow.vala:415 +#: src/Gtk/MainWindow.vala:417 msgid "Changes" msgstr "Zmiany" -#: src/Gtk/MainWindow.vala:426 src/Gtk/SettingsDialog.vala:50 +#: src/Gtk/MainWindow.vala:428 src/Gtk/SettingsDialog.vala:50 msgid "Settings" msgstr "Ustawienia" -#: src/Gtk/MainWindow.vala:449 +#: src/Gtk/MainWindow.vala:451 msgid "About" msgstr "O programie" -#: src/Gtk/MainWindow.vala:494 +#: src/Gtk/MainWindow.vala:496 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Narzędzie uaktualniania jądra dla dystrybucji z rodziny Ubuntu" -#: src/Gtk/MainWindow.vala:495 +#: src/Gtk/MainWindow.vala:497 msgid "Forked" msgstr "" -#: src/Gtk/MainWindow.vala:495 +#: src/Gtk/MainWindow.vala:497 msgid "Original" msgstr "" -#: src/Gtk/MainWindow.vala:527 +#: src/Gtk/MainWindow.vala:518 src/Gtk/MainWindow.vala:634 +#, fuzzy +msgid "Internet connection is not active." +msgstr "Brak połączenia z internetem" + +#: src/Gtk/MainWindow.vala:531 msgid "Refreshing..." msgstr "Odświeżam..." # Should be a single word at the end of the line. # For example: "5.13.16 available" -#: src/Gtk/MainWindow.vala:616 +#: src/Gtk/MainWindow.vala:620 msgid "available" msgstr "dostępne" -#: src/Gtk/MainWindow.vala:674 -msgid "No Internet" -msgstr "Brak internetu" - -#: src/Gtk/MainWindow.vala:675 -#, fuzzy -msgid "Internet connection is not active." -msgstr "Brak połączenia z internetem" - -#: src/Gtk/ProgressWindow.vala:142 src/Gtk/TerminalWindow.vala:149 -msgid "Cancel" -msgstr "Anuluj" - #: src/Gtk/SettingsDialog.vala:60 msgid "Notification" msgstr "Powiadomienia" @@ -444,7 +460,7 @@ msgstr "sekund" msgid "Max concurrent downloads" msgstr "Maksymalna liczba jednoczesnych pobrań" -#: src/Gtk/TerminalWindow.vala:159 src/Utility/Gtk/AboutWindow.vala:294 +#: src/Gtk/TerminalWindow.vala:158 src/Utility/Gtk/AboutWindow.vala:294 msgid "Close" msgstr "Zamknij" @@ -481,7 +497,7 @@ msgstr "Dokumentujący" msgid "Third Party Inclusions" msgstr "Narzędzia osób trzecich" -#: src/Utility/Gtk/GtkHelper.vala:39 +#: src/Utility/Gtk/GtkHelper.vala:59 msgid "Missing Icon" msgstr "Brakująca ikona" @@ -489,7 +505,7 @@ msgstr "Brakująca ikona" msgid "File deleted" msgstr "Plik usunięty" -#: src/Utility/TeeJee.FileSystem.vala:76 src/Utility/TeeJee.FileSystem.vala:256 +#: src/Utility/TeeJee.FileSystem.vala:76 src/Utility/TeeJee.FileSystem.vala:240 msgid "Failed to delete file" msgstr "Nie udało się usunąć pliku" @@ -525,16 +541,16 @@ msgstr "Plik przeniesiony" msgid "Failed to move file" msgstr "Nie udało się przenieść pliku" -#: src/Utility/TeeJee.FileSystem.vala:233 -#: src/Utility/TeeJee.FileSystem.vala:236 +#: src/Utility/TeeJee.FileSystem.vala:217 +#: src/Utility/TeeJee.FileSystem.vala:220 msgid "Created directory" msgstr "Utworzono katalog" -#: src/Utility/TeeJee.FileSystem.vala:243 +#: src/Utility/TeeJee.FileSystem.vala:227 msgid "Failed to create dir" msgstr "Nie udało się utworzyć katalogu" -#: src/Utility/TeeJee.FileSystem.vala:255 +#: src/Utility/TeeJee.FileSystem.vala:239 msgid "Deleted" msgstr "Usunięto" diff --git a/po/ru.po b/po/ru.po index 86bcc929..9552f097 100644 --- a/po/ru.po +++ b/po/ru.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-02-23 15:16-0500\n" +"POT-Creation-Date: 2023-02-23 17:56-0500\n" "PO-Revision-Date: 2022-02-24 16:05+0300\n" "Last-Translator: Danik2343 \n" "Language-Team: Russian\n" @@ -13,104 +13,105 @@ msgstr "" "X-Launchpad-Export-Date: 2016-12-13 11:48+0000\n" "X-Generator: Poedit 2.3\n" -#: src/Common/LinuxKernel.vala:88 +#: src/Common/LinuxKernel.vala:87 msgid "Distribution" msgstr "Дистрибутив" -#: src/Common/LinuxKernel.vala:102 +#: src/Common/LinuxKernel.vala:101 msgid "Architecture" msgstr "Архитектура" -#: src/Common/LinuxKernel.vala:298 +#: src/Common/LinuxKernel.vala:290 msgid "Fetching index..." msgstr "Получение сведений..." -#: src/Common/LinuxKernel.vala:337 +#: src/Common/LinuxKernel.vala:329 msgid "Fetching index from kernel.ubuntu.com..." msgstr "Получение сведений с kernel.ubuntu.com..." -#: src/Common/LinuxKernel.vala:593 +#: src/Common/LinuxKernel.vala:585 msgid "Could not find running kernel in list!" msgstr "Не удалось найти запущенное ядро в списке!" -#: src/Common/LinuxKernel.vala:599 +#: src/Common/LinuxKernel.vala:591 msgid "Could not find any kernels to uninstall" msgstr "Не удалось найти ядра для деинсталляции" -#: src/Common/LinuxKernel.vala:608 +#: src/Common/LinuxKernel.vala:600 msgid "The following kernels will be uninstalled:" msgstr "Следующие ядра будут деинсталлированы:" -#: src/Common/LinuxKernel.vala:615 +#: src/Common/LinuxKernel.vala:607 msgid "Continue ?" msgstr "Продолжить ?" -#: src/Common/LinuxKernel.vala:641 src/Console/AppConsole.vala:314 +#: src/Common/LinuxKernel.vala:633 src/Console/AppConsole.vala:314 msgid "Latest update" msgstr "Последнее обновление" -#: src/Common/LinuxKernel.vala:652 src/Console/AppConsole.vala:321 +#: src/Common/LinuxKernel.vala:644 src/Console/AppConsole.vala:321 msgid "Latest point update" msgstr "Последнее обновление пунктов" -#: src/Common/LinuxKernel.vala:660 src/Console/AppConsole.vala:326 +#: src/Common/LinuxKernel.vala:652 src/Console/AppConsole.vala:326 #: src/Console/AppConsole.vala:387 msgid "No updates found" msgstr "Обновлений не найдено" -#: src/Common/LinuxKernel.vala:670 +#: src/Common/LinuxKernel.vala:662 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Установить версию ядра %s ? (y/n): " -#: src/Common/LinuxKernel.vala:931 +#: src/Common/LinuxKernel.vala:912 msgid "Packages Available" msgstr "Доступные пакеты" -#: src/Common/LinuxKernel.vala:939 +#: src/Common/LinuxKernel.vala:920 msgid "Packages Installed" msgstr "Установленные пакеты" -#: src/Common/LinuxKernel.vala:1019 +#: src/Common/LinuxKernel.vala:1000 msgid "Available Kernels" msgstr "Доступные ядра" -#: src/Common/LinuxKernel.vala:1026 src/Gtk/MainWindow.vala:189 +#: src/Common/LinuxKernel.vala:1007 src/Gtk/MainWindow.vala:189 msgid "Installed" msgstr "Установлено" -#: src/Common/LinuxKernel.vala:1026 src/Gtk/MainWindow.vala:189 -#: src/Gtk/MainWindow.vala:606 src/Gtk/MainWindow.vala:620 +#: src/Common/LinuxKernel.vala:1007 src/Gtk/MainWindow.vala:189 +#: src/Gtk/MainWindow.vala:610 src/Gtk/MainWindow.vala:624 msgid "Running" msgstr "Используется" -#: src/Common/LinuxKernel.vala:1063 +#: src/Common/LinuxKernel.vala:1044 msgid "Downloading" msgstr "Загрузка" -#: src/Common/LinuxKernel.vala:1082 +#: src/Common/LinuxKernel.vala:1063 src/Gtk/CustomMessageDialog.vala:150 +#: src/Gtk/CustomMessageDialog.vala:154 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:1087 +#: src/Common/LinuxKernel.vala:1068 msgid "ERROR" msgstr "ОШИБКА" -#: src/Common/LinuxKernel.vala:1101 +#: src/Common/LinuxKernel.vala:1082 msgid "This kernel is already installed." msgstr "Это ядро уже установлено." -#: src/Common/LinuxKernel.vala:1127 +#: src/Common/LinuxKernel.vala:1108 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "Установка завершена. Обязательно выполните перезагрузку, чтобы использовать " "новое ядро." -#: src/Common/LinuxKernel.vala:1130 +#: src/Common/LinuxKernel.vala:1111 msgid "Installation completed with errors" msgstr "Установка завершена с ошибками" -#: src/Common/LinuxKernel.vala:1151 +#: src/Common/LinuxKernel.vala:1132 msgid "" "Selected kernel is currently running and cannot be un-installed.\n" " Install another kernel before un-installing this one." @@ -118,19 +119,19 @@ msgstr "" "Это ядро в настоящий момент работает и не может быть удалено.\n" " Установите другое ядро, прежде чем удалять его." -#: src/Common/LinuxKernel.vala:1156 +#: src/Common/LinuxKernel.vala:1137 msgid "Preparing to uninstall selected kernels" msgstr "Подготовка к деинсталляции выбранных ядер" -#: src/Common/LinuxKernel.vala:1187 src/Common/LinuxKernel.vala:1234 +#: src/Common/LinuxKernel.vala:1168 src/Common/LinuxKernel.vala:1215 msgid "Un-install completed" msgstr "Удаление завершено" -#: src/Common/LinuxKernel.vala:1190 src/Common/LinuxKernel.vala:1237 +#: src/Common/LinuxKernel.vala:1171 src/Common/LinuxKernel.vala:1218 msgid "Un-install completed with errors" msgstr "Удаление завершено с ошибками" -#: src/Common/LinuxKernel.vala:1203 +#: src/Common/LinuxKernel.vala:1184 msgid "" "This kernel is currently running and cannot be un-installed.\n" " Install another kernel before un-installing this one." @@ -285,7 +286,7 @@ msgid "Kernel %s Available" msgstr "Доступно ядро %s" #: src/Console/AppConsole.vala:367 src/Console/AppConsole.vala:379 -#: src/Gtk/MainWindow.vala:331 +#: src/Gtk/MainWindow.vala:333 msgid "Install" msgstr "Установить" @@ -297,6 +298,19 @@ msgstr "Распечатать отладочную информацию" msgid "Show all options" msgstr "Показать все параметры" +#: src/Gtk/CustomMessageDialog.vala:155 src/Gtk/ProgressWindow.vala:142 +#: src/Gtk/TerminalWindow.vala:148 +msgid "Cancel" +msgstr "Отмена" + +#: src/Gtk/CustomMessageDialog.vala:159 +msgid "Yes" +msgstr "" + +#: src/Gtk/CustomMessageDialog.vala:160 +msgid "No" +msgstr "" + #: src/Gtk/MainWindow.vala:146 msgid "Kernel" msgstr "Ядро" @@ -309,67 +323,69 @@ msgstr "Состояние" msgid "Refresh" msgstr "Обновить" -#: src/Gtk/MainWindow.vala:342 +#: src/Gtk/MainWindow.vala:324 src/Utility/TeeJee.System.vala:42 +#, fuzzy +msgid "Internet connection is not active" +msgstr "Интернет соединение не активно." + +#: src/Gtk/MainWindow.vala:324 src/Gtk/MainWindow.vala:518 +#: src/Gtk/MainWindow.vala:634 +msgid "No Internet" +msgstr "Нет интернет соединения" + +#: src/Gtk/MainWindow.vala:344 msgid "Uninstall" msgstr "Удалить" -#: src/Gtk/MainWindow.vala:375 src/Gtk/MainWindow.vala:408 -#: src/Gtk/MainWindow.vala:659 +#: src/Gtk/MainWindow.vala:377 src/Gtk/MainWindow.vala:410 +#: src/Gtk/MainWindow.vala:666 msgid "Close window to exit..." msgstr "Закройте окно, чтобы выйти..." -#: src/Gtk/MainWindow.vala:382 +#: src/Gtk/MainWindow.vala:384 msgid "Uninstall Old" msgstr "Удалить старые" -#: src/Gtk/MainWindow.vala:383 +#: src/Gtk/MainWindow.vala:385 msgid "Uninstall kernels older than running kernel" msgstr "Удалить более старшие установленные ядра, чем используемое" -#: src/Gtk/MainWindow.vala:415 +#: src/Gtk/MainWindow.vala:417 msgid "Changes" msgstr "Изменения" -#: src/Gtk/MainWindow.vala:426 src/Gtk/SettingsDialog.vala:50 +#: src/Gtk/MainWindow.vala:428 src/Gtk/SettingsDialog.vala:50 msgid "Settings" msgstr "Настройки" -#: src/Gtk/MainWindow.vala:449 +#: src/Gtk/MainWindow.vala:451 msgid "About" msgstr "О программе" -#: src/Gtk/MainWindow.vala:494 +#: src/Gtk/MainWindow.vala:496 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Программа обновления ядра для дистрибутивов на базе Ubuntu" -#: src/Gtk/MainWindow.vala:495 +#: src/Gtk/MainWindow.vala:497 msgid "Forked" msgstr "Форк" -#: src/Gtk/MainWindow.vala:495 +#: src/Gtk/MainWindow.vala:497 msgid "Original" msgstr "Оригинал" -#: src/Gtk/MainWindow.vala:527 +#: src/Gtk/MainWindow.vala:518 src/Gtk/MainWindow.vala:634 +msgid "Internet connection is not active." +msgstr "Интернет соединение не активно." + +#: src/Gtk/MainWindow.vala:531 msgid "Refreshing..." msgstr "Обновление..." -#: src/Gtk/MainWindow.vala:616 +#: src/Gtk/MainWindow.vala:620 msgid "available" msgstr "доступно" -#: src/Gtk/MainWindow.vala:674 -msgid "No Internet" -msgstr "Нет интернет соединения" - -#: src/Gtk/MainWindow.vala:675 -msgid "Internet connection is not active." -msgstr "Интернет соединение не активно." - -#: src/Gtk/ProgressWindow.vala:142 src/Gtk/TerminalWindow.vala:149 -msgid "Cancel" -msgstr "Отмена" - #: src/Gtk/SettingsDialog.vala:60 msgid "Notification" msgstr "Уведомления" @@ -434,7 +450,7 @@ msgstr "секунд" msgid "Max concurrent downloads" msgstr "Максимальное количество одновременных загрузок" -#: src/Gtk/TerminalWindow.vala:159 src/Utility/Gtk/AboutWindow.vala:294 +#: src/Gtk/TerminalWindow.vala:158 src/Utility/Gtk/AboutWindow.vala:294 msgid "Close" msgstr "Закрыть" @@ -470,7 +486,7 @@ msgstr "Составители документации" msgid "Third Party Inclusions" msgstr "Включая сторонние инструменты" -#: src/Utility/Gtk/GtkHelper.vala:39 +#: src/Utility/Gtk/GtkHelper.vala:59 msgid "Missing Icon" msgstr "Значок отсутствует" @@ -478,7 +494,7 @@ msgstr "Значок отсутствует" msgid "File deleted" msgstr "Файл удалён" -#: src/Utility/TeeJee.FileSystem.vala:76 src/Utility/TeeJee.FileSystem.vala:256 +#: src/Utility/TeeJee.FileSystem.vala:76 src/Utility/TeeJee.FileSystem.vala:240 msgid "Failed to delete file" msgstr "Не удалось удалить файл" @@ -514,16 +530,16 @@ msgstr "Файл перемещён" msgid "Failed to move file" msgstr "Не удалось переместить файл" -#: src/Utility/TeeJee.FileSystem.vala:233 -#: src/Utility/TeeJee.FileSystem.vala:236 +#: src/Utility/TeeJee.FileSystem.vala:217 +#: src/Utility/TeeJee.FileSystem.vala:220 msgid "Created directory" msgstr "Создана директория" -#: src/Utility/TeeJee.FileSystem.vala:243 +#: src/Utility/TeeJee.FileSystem.vala:227 msgid "Failed to create dir" msgstr "Не удалось создать папку" -#: src/Utility/TeeJee.FileSystem.vala:255 +#: src/Utility/TeeJee.FileSystem.vala:239 msgid "Deleted" msgstr "Удалено" diff --git a/po/sv.po b/po/sv.po index b25bcd23..17dbcd57 100644 --- a/po/sv.po +++ b/po/sv.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-02-23 15:16-0500\n" +"POT-Creation-Date: 2023-02-23 17:56-0500\n" "PO-Revision-Date: 2018-01-13 16:56+0100\n" "Last-Translator: Åke Engelbrektson \n" "Language-Team:Swedish\n" @@ -13,107 +13,108 @@ msgstr "" "X-Generator: Poedit 1.8.7.1\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: src/Common/LinuxKernel.vala:88 +#: src/Common/LinuxKernel.vala:87 msgid "Distribution" msgstr "Distribution" -#: src/Common/LinuxKernel.vala:102 +#: src/Common/LinuxKernel.vala:101 #, fuzzy msgid "Architecture" msgstr "Systemarkitektur" -#: src/Common/LinuxKernel.vala:298 +#: src/Common/LinuxKernel.vala:290 #, fuzzy msgid "Fetching index..." msgstr "Hämtar index för" -#: src/Common/LinuxKernel.vala:337 +#: src/Common/LinuxKernel.vala:329 msgid "Fetching index from kernel.ubuntu.com..." msgstr "Hämtar index från kernel.ubuntu.com ..." -#: src/Common/LinuxKernel.vala:593 +#: src/Common/LinuxKernel.vala:585 #, fuzzy msgid "Could not find running kernel in list!" msgstr "Kunde inte hitta efterfrågad version" -#: src/Common/LinuxKernel.vala:599 +#: src/Common/LinuxKernel.vala:591 #, fuzzy msgid "Could not find any kernels to uninstall" msgstr "Välj kärnor för borttagning" -#: src/Common/LinuxKernel.vala:608 +#: src/Common/LinuxKernel.vala:600 #, fuzzy msgid "The following kernels will be uninstalled:" msgstr "Denna kärna är redan installerad" -#: src/Common/LinuxKernel.vala:615 +#: src/Common/LinuxKernel.vala:607 msgid "Continue ?" msgstr "" -#: src/Common/LinuxKernel.vala:641 src/Console/AppConsole.vala:314 +#: src/Common/LinuxKernel.vala:633 src/Console/AppConsole.vala:314 msgid "Latest update" msgstr "" -#: src/Common/LinuxKernel.vala:652 src/Console/AppConsole.vala:321 +#: src/Common/LinuxKernel.vala:644 src/Console/AppConsole.vala:321 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:660 src/Console/AppConsole.vala:326 +#: src/Common/LinuxKernel.vala:652 src/Console/AppConsole.vala:326 #: src/Console/AppConsole.vala:387 msgid "No updates found" msgstr "Inga uppdateringar hittades" -#: src/Common/LinuxKernel.vala:670 +#: src/Common/LinuxKernel.vala:662 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "" -#: src/Common/LinuxKernel.vala:931 +#: src/Common/LinuxKernel.vala:912 msgid "Packages Available" msgstr "Tillgängliga paket" -#: src/Common/LinuxKernel.vala:939 +#: src/Common/LinuxKernel.vala:920 msgid "Packages Installed" msgstr "Installerade paket" -#: src/Common/LinuxKernel.vala:1019 +#: src/Common/LinuxKernel.vala:1000 msgid "Available Kernels" msgstr "Tillgängliga kärnor" -#: src/Common/LinuxKernel.vala:1026 src/Gtk/MainWindow.vala:189 +#: src/Common/LinuxKernel.vala:1007 src/Gtk/MainWindow.vala:189 msgid "Installed" msgstr "Installerad" -#: src/Common/LinuxKernel.vala:1026 src/Gtk/MainWindow.vala:189 -#: src/Gtk/MainWindow.vala:606 src/Gtk/MainWindow.vala:620 +#: src/Common/LinuxKernel.vala:1007 src/Gtk/MainWindow.vala:189 +#: src/Gtk/MainWindow.vala:610 src/Gtk/MainWindow.vala:624 msgid "Running" msgstr "Körs" -#: src/Common/LinuxKernel.vala:1063 +#: src/Common/LinuxKernel.vala:1044 msgid "Downloading" msgstr "Laddar ner" -#: src/Common/LinuxKernel.vala:1082 +#: src/Common/LinuxKernel.vala:1063 src/Gtk/CustomMessageDialog.vala:150 +#: src/Gtk/CustomMessageDialog.vala:154 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:1087 +#: src/Common/LinuxKernel.vala:1068 msgid "ERROR" msgstr "FEL" -#: src/Common/LinuxKernel.vala:1101 +#: src/Common/LinuxKernel.vala:1082 msgid "This kernel is already installed." msgstr "Denna kärna är redan installerad" -#: src/Common/LinuxKernel.vala:1127 +#: src/Common/LinuxKernel.vala:1108 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "Installation slutförd. Omstart krävs för att tillämpa den nya kärnan." -#: src/Common/LinuxKernel.vala:1130 +#: src/Common/LinuxKernel.vala:1111 msgid "Installation completed with errors" msgstr "Installation slutförd med fel" -#: src/Common/LinuxKernel.vala:1151 +#: src/Common/LinuxKernel.vala:1132 #, fuzzy msgid "" "Selected kernel is currently running and cannot be un-installed.\n" @@ -122,20 +123,20 @@ msgstr "" "Denna kärna används för tillfället och kan inte tas bort.\n" "Installera en annan kärna innan du tar bort den här." -#: src/Common/LinuxKernel.vala:1156 +#: src/Common/LinuxKernel.vala:1137 #, fuzzy msgid "Preparing to uninstall selected kernels" msgstr "Förbereder borttagning av markerade kärnor" -#: src/Common/LinuxKernel.vala:1187 src/Common/LinuxKernel.vala:1234 +#: src/Common/LinuxKernel.vala:1168 src/Common/LinuxKernel.vala:1215 msgid "Un-install completed" msgstr "Avinstallation slutförd" -#: src/Common/LinuxKernel.vala:1190 src/Common/LinuxKernel.vala:1237 +#: src/Common/LinuxKernel.vala:1171 src/Common/LinuxKernel.vala:1218 msgid "Un-install completed with errors" msgstr "Avinstallation slutförd med fel" -#: src/Common/LinuxKernel.vala:1203 +#: src/Common/LinuxKernel.vala:1184 #, fuzzy msgid "" "This kernel is currently running and cannot be un-installed.\n" @@ -300,7 +301,7 @@ msgid "Kernel %s Available" msgstr "Tillgängliga paket" #: src/Console/AppConsole.vala:367 src/Console/AppConsole.vala:379 -#: src/Gtk/MainWindow.vala:331 +#: src/Gtk/MainWindow.vala:333 msgid "Install" msgstr "Installera" @@ -312,6 +313,19 @@ msgstr "Skriv ut felsökningsinformation" msgid "Show all options" msgstr "Visa alla alternativ" +#: src/Gtk/CustomMessageDialog.vala:155 src/Gtk/ProgressWindow.vala:142 +#: src/Gtk/TerminalWindow.vala:148 +msgid "Cancel" +msgstr "Avbryt" + +#: src/Gtk/CustomMessageDialog.vala:159 +msgid "Yes" +msgstr "" + +#: src/Gtk/CustomMessageDialog.vala:160 +msgid "No" +msgstr "" + #: src/Gtk/MainWindow.vala:146 msgid "Kernel" msgstr "Kärna" @@ -324,72 +338,74 @@ msgstr "Status" msgid "Refresh" msgstr "Uppdatera" -#: src/Gtk/MainWindow.vala:342 +#: src/Gtk/MainWindow.vala:324 src/Utility/TeeJee.System.vala:42 +#, fuzzy +msgid "Internet connection is not active" +msgstr "Internetuppkopplingen är inte aktiv" + +#: src/Gtk/MainWindow.vala:324 src/Gtk/MainWindow.vala:518 +#: src/Gtk/MainWindow.vala:634 +msgid "No Internet" +msgstr "Inget internet" + +#: src/Gtk/MainWindow.vala:344 #, fuzzy msgid "Uninstall" msgstr "Installera" -#: src/Gtk/MainWindow.vala:375 src/Gtk/MainWindow.vala:408 -#: src/Gtk/MainWindow.vala:659 +#: src/Gtk/MainWindow.vala:377 src/Gtk/MainWindow.vala:410 +#: src/Gtk/MainWindow.vala:666 msgid "Close window to exit..." msgstr "" -#: src/Gtk/MainWindow.vala:382 +#: src/Gtk/MainWindow.vala:384 #, fuzzy msgid "Uninstall Old" msgstr "Avinstallation slutförd" -#: src/Gtk/MainWindow.vala:383 +#: src/Gtk/MainWindow.vala:385 #, fuzzy msgid "Uninstall kernels older than running kernel" msgstr "Ta bort installerade kärnor äldre än den som körs" -#: src/Gtk/MainWindow.vala:415 +#: src/Gtk/MainWindow.vala:417 msgid "Changes" msgstr "Ändringar" -#: src/Gtk/MainWindow.vala:426 src/Gtk/SettingsDialog.vala:50 +#: src/Gtk/MainWindow.vala:428 src/Gtk/SettingsDialog.vala:50 msgid "Settings" msgstr "Inställningar" -#: src/Gtk/MainWindow.vala:449 +#: src/Gtk/MainWindow.vala:451 msgid "About" msgstr "Om" -#: src/Gtk/MainWindow.vala:494 +#: src/Gtk/MainWindow.vala:496 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Kärnuppgraderingsverktyg för Ubuntu-baserade distributioner" -#: src/Gtk/MainWindow.vala:495 +#: src/Gtk/MainWindow.vala:497 msgid "Forked" msgstr "" -#: src/Gtk/MainWindow.vala:495 +#: src/Gtk/MainWindow.vala:497 msgid "Original" msgstr "" -#: src/Gtk/MainWindow.vala:527 +#: src/Gtk/MainWindow.vala:518 src/Gtk/MainWindow.vala:634 +#, fuzzy +msgid "Internet connection is not active." +msgstr "Internetuppkopplingen är inte aktiv" + +#: src/Gtk/MainWindow.vala:531 msgid "Refreshing..." msgstr "Uppdaterar ..." -#: src/Gtk/MainWindow.vala:616 +#: src/Gtk/MainWindow.vala:620 #, fuzzy msgid "available" msgstr "Tillgängliga paket" -#: src/Gtk/MainWindow.vala:674 -msgid "No Internet" -msgstr "Inget internet" - -#: src/Gtk/MainWindow.vala:675 -#, fuzzy -msgid "Internet connection is not active." -msgstr "Internetuppkopplingen är inte aktiv" - -#: src/Gtk/ProgressWindow.vala:142 src/Gtk/TerminalWindow.vala:149 -msgid "Cancel" -msgstr "Avbryt" - #: src/Gtk/SettingsDialog.vala:60 msgid "Notification" msgstr "Avisering" @@ -456,7 +472,7 @@ msgstr "" msgid "Max concurrent downloads" msgstr "" -#: src/Gtk/TerminalWindow.vala:159 src/Utility/Gtk/AboutWindow.vala:294 +#: src/Gtk/TerminalWindow.vala:158 src/Utility/Gtk/AboutWindow.vala:294 msgid "Close" msgstr "Stäng" @@ -493,7 +509,7 @@ msgstr "Dokumentalister" msgid "Third Party Inclusions" msgstr "Tredjepartsverktyg" -#: src/Utility/Gtk/GtkHelper.vala:39 +#: src/Utility/Gtk/GtkHelper.vala:59 msgid "Missing Icon" msgstr "Saknad ikon" @@ -502,7 +518,7 @@ msgstr "Saknad ikon" msgid "File deleted" msgstr "Fil sparad" -#: src/Utility/TeeJee.FileSystem.vala:76 src/Utility/TeeJee.FileSystem.vala:256 +#: src/Utility/TeeJee.FileSystem.vala:76 src/Utility/TeeJee.FileSystem.vala:240 #, fuzzy msgid "Failed to delete file" msgstr "Kunde inte skriva filen" @@ -539,16 +555,16 @@ msgstr "Fil flyttad" msgid "Failed to move file" msgstr "Kunde inte flytta filen" -#: src/Utility/TeeJee.FileSystem.vala:233 -#: src/Utility/TeeJee.FileSystem.vala:236 +#: src/Utility/TeeJee.FileSystem.vala:217 +#: src/Utility/TeeJee.FileSystem.vala:220 msgid "Created directory" msgstr "Skapade mapp" -#: src/Utility/TeeJee.FileSystem.vala:243 +#: src/Utility/TeeJee.FileSystem.vala:227 msgid "Failed to create dir" msgstr "Kunde inte skapa mappen" -#: src/Utility/TeeJee.FileSystem.vala:255 +#: src/Utility/TeeJee.FileSystem.vala:239 msgid "Deleted" msgstr "" diff --git a/po/tr.po b/po/tr.po index ae0bc29d..32325812 100644 --- a/po/tr.po +++ b/po/tr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-02-23 15:16-0500\n" +"POT-Creation-Date: 2023-02-23 17:56-0500\n" "PO-Revision-Date: 2022-08-06 16:48+0300\n" "Last-Translator: Sabri Ünal \n" "Language-Team: Turkish\n" @@ -13,104 +13,105 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Poedit 3.1.1\n" -#: src/Common/LinuxKernel.vala:88 +#: src/Common/LinuxKernel.vala:87 msgid "Distribution" msgstr "Dağıtım" -#: src/Common/LinuxKernel.vala:102 +#: src/Common/LinuxKernel.vala:101 msgid "Architecture" msgstr "Sistem mimarisi" -#: src/Common/LinuxKernel.vala:298 +#: src/Common/LinuxKernel.vala:290 msgid "Fetching index..." msgstr "İçerik dizini alınıyor..." -#: src/Common/LinuxKernel.vala:337 +#: src/Common/LinuxKernel.vala:329 msgid "Fetching index from kernel.ubuntu.com..." msgstr "İçerik dizini kernel.ubuntu.com alanından alınıyor..." -#: src/Common/LinuxKernel.vala:593 +#: src/Common/LinuxKernel.vala:585 msgid "Could not find running kernel in list!" msgstr "Çalışan sürüm listede bulunamadı!" -#: src/Common/LinuxKernel.vala:599 +#: src/Common/LinuxKernel.vala:591 msgid "Could not find any kernels to uninstall" msgstr "Kaldırılacak çekirdek bulunamadı" -#: src/Common/LinuxKernel.vala:608 +#: src/Common/LinuxKernel.vala:600 msgid "The following kernels will be uninstalled:" msgstr "Aşağıdaki çekirdekler kaldırılacak:" -#: src/Common/LinuxKernel.vala:615 +#: src/Common/LinuxKernel.vala:607 msgid "Continue ?" msgstr "Devam edilsin mi?" -#: src/Common/LinuxKernel.vala:641 src/Console/AppConsole.vala:314 +#: src/Common/LinuxKernel.vala:633 src/Console/AppConsole.vala:314 msgid "Latest update" msgstr "Son güncelleme" # Point burada point release anlamında kullanılıyor. Örneğin 5.10.x sayısının en sonundaki x rakamı point release/nokta sürüm oluyor. -#: src/Common/LinuxKernel.vala:652 src/Console/AppConsole.vala:321 +#: src/Common/LinuxKernel.vala:644 src/Console/AppConsole.vala:321 msgid "Latest point update" msgstr "Son nokta güncellemesi" -#: src/Common/LinuxKernel.vala:660 src/Console/AppConsole.vala:326 +#: src/Common/LinuxKernel.vala:652 src/Console/AppConsole.vala:326 #: src/Console/AppConsole.vala:387 msgid "No updates found" msgstr "Güncelleme bulunamadı" -#: src/Common/LinuxKernel.vala:670 +#: src/Common/LinuxKernel.vala:662 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Linux Çekirdek Sürümü %s Kurulsun mu? (e/h): " -#: src/Common/LinuxKernel.vala:931 +#: src/Common/LinuxKernel.vala:912 msgid "Packages Available" msgstr "Mevcut Paketler" -#: src/Common/LinuxKernel.vala:939 +#: src/Common/LinuxKernel.vala:920 msgid "Packages Installed" msgstr "Kurulu Paketler" -#: src/Common/LinuxKernel.vala:1019 +#: src/Common/LinuxKernel.vala:1000 msgid "Available Kernels" msgstr "Mevcut Çekirdekler" -#: src/Common/LinuxKernel.vala:1026 src/Gtk/MainWindow.vala:189 +#: src/Common/LinuxKernel.vala:1007 src/Gtk/MainWindow.vala:189 msgid "Installed" msgstr "Kurulu" -#: src/Common/LinuxKernel.vala:1026 src/Gtk/MainWindow.vala:189 -#: src/Gtk/MainWindow.vala:606 src/Gtk/MainWindow.vala:620 +#: src/Common/LinuxKernel.vala:1007 src/Gtk/MainWindow.vala:189 +#: src/Gtk/MainWindow.vala:610 src/Gtk/MainWindow.vala:624 msgid "Running" msgstr "Çalışıyor" -#: src/Common/LinuxKernel.vala:1063 +#: src/Common/LinuxKernel.vala:1044 msgid "Downloading" msgstr "İndiriliyor" -#: src/Common/LinuxKernel.vala:1082 +#: src/Common/LinuxKernel.vala:1063 src/Gtk/CustomMessageDialog.vala:150 +#: src/Gtk/CustomMessageDialog.vala:154 msgid "OK" msgstr "Tamam" -#: src/Common/LinuxKernel.vala:1087 +#: src/Common/LinuxKernel.vala:1068 msgid "ERROR" msgstr "HATA" -#: src/Common/LinuxKernel.vala:1101 +#: src/Common/LinuxKernel.vala:1082 msgid "This kernel is already installed." msgstr "Bu çekirdek zaten kurulu." -#: src/Common/LinuxKernel.vala:1127 +#: src/Common/LinuxKernel.vala:1108 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "Kurulum tamamlandı. Yeni çekirdeği kullanmak için yeniden başlatma gerekiyor." -#: src/Common/LinuxKernel.vala:1130 +#: src/Common/LinuxKernel.vala:1111 msgid "Installation completed with errors" msgstr "Kurulum hatalarla tamamlandı" -#: src/Common/LinuxKernel.vala:1151 +#: src/Common/LinuxKernel.vala:1132 msgid "" "Selected kernel is currently running and cannot be un-installed.\n" " Install another kernel before un-installing this one." @@ -118,19 +119,19 @@ msgstr "" "Seçilen çekirdek şu anda çalışıyor ve kaldırılamaz.\n" " Bunu kaldırmadan önce başka bir çekirdek yükleyin." -#: src/Common/LinuxKernel.vala:1156 +#: src/Common/LinuxKernel.vala:1137 msgid "Preparing to uninstall selected kernels" msgstr "Seçilen çekirdekleri kaldırmaya hazırlanıyor" -#: src/Common/LinuxKernel.vala:1187 src/Common/LinuxKernel.vala:1234 +#: src/Common/LinuxKernel.vala:1168 src/Common/LinuxKernel.vala:1215 msgid "Un-install completed" msgstr "Kaldırma tamamlandı" -#: src/Common/LinuxKernel.vala:1190 src/Common/LinuxKernel.vala:1237 +#: src/Common/LinuxKernel.vala:1171 src/Common/LinuxKernel.vala:1218 msgid "Un-install completed with errors" msgstr "Kaldırma hatalarla tamamlandı" -#: src/Common/LinuxKernel.vala:1203 +#: src/Common/LinuxKernel.vala:1184 msgid "" "This kernel is currently running and cannot be un-installed.\n" " Install another kernel before un-installing this one." @@ -285,7 +286,7 @@ msgid "Kernel %s Available" msgstr "Çekirdek %s Kullanılabilir" #: src/Console/AppConsole.vala:367 src/Console/AppConsole.vala:379 -#: src/Gtk/MainWindow.vala:331 +#: src/Gtk/MainWindow.vala:333 msgid "Install" msgstr "Kur" @@ -297,6 +298,19 @@ msgstr "Hata ayıklama bilgisini yazdır" msgid "Show all options" msgstr "Tüm seçenekleri göster" +#: src/Gtk/CustomMessageDialog.vala:155 src/Gtk/ProgressWindow.vala:142 +#: src/Gtk/TerminalWindow.vala:148 +msgid "Cancel" +msgstr "İptal Et" + +#: src/Gtk/CustomMessageDialog.vala:159 +msgid "Yes" +msgstr "" + +#: src/Gtk/CustomMessageDialog.vala:160 +msgid "No" +msgstr "" + #: src/Gtk/MainWindow.vala:146 msgid "Kernel" msgstr "Çekirdek" @@ -309,67 +323,69 @@ msgstr "Durum" msgid "Refresh" msgstr "Yenile" -#: src/Gtk/MainWindow.vala:342 +#: src/Gtk/MainWindow.vala:324 src/Utility/TeeJee.System.vala:42 +#, fuzzy +msgid "Internet connection is not active" +msgstr "İnternet bağlantısı aktif değil." + +#: src/Gtk/MainWindow.vala:324 src/Gtk/MainWindow.vala:518 +#: src/Gtk/MainWindow.vala:634 +msgid "No Internet" +msgstr "İnternet Yok" + +#: src/Gtk/MainWindow.vala:344 msgid "Uninstall" msgstr "Kaldır" -#: src/Gtk/MainWindow.vala:375 src/Gtk/MainWindow.vala:408 -#: src/Gtk/MainWindow.vala:659 +#: src/Gtk/MainWindow.vala:377 src/Gtk/MainWindow.vala:410 +#: src/Gtk/MainWindow.vala:666 msgid "Close window to exit..." msgstr "Çıkış için pencereyi kapat..." -#: src/Gtk/MainWindow.vala:382 +#: src/Gtk/MainWindow.vala:384 msgid "Uninstall Old" msgstr "Eskileri Kaldır" -#: src/Gtk/MainWindow.vala:383 +#: src/Gtk/MainWindow.vala:385 msgid "Uninstall kernels older than running kernel" msgstr "Çalışan çekirdekten daha eski çekirdekleri kaldır" -#: src/Gtk/MainWindow.vala:415 +#: src/Gtk/MainWindow.vala:417 msgid "Changes" msgstr "Değişiklikler" -#: src/Gtk/MainWindow.vala:426 src/Gtk/SettingsDialog.vala:50 +#: src/Gtk/MainWindow.vala:428 src/Gtk/SettingsDialog.vala:50 msgid "Settings" msgstr "Ayarlar" -#: src/Gtk/MainWindow.vala:449 +#: src/Gtk/MainWindow.vala:451 msgid "About" msgstr "Hakkında" -#: src/Gtk/MainWindow.vala:494 +#: src/Gtk/MainWindow.vala:496 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Ubuntu tabanlı dağıtımlar için çekirdek güncelleme aracı" -#: src/Gtk/MainWindow.vala:495 +#: src/Gtk/MainWindow.vala:497 msgid "Forked" msgstr "Çatallandı" -#: src/Gtk/MainWindow.vala:495 +#: src/Gtk/MainWindow.vala:497 msgid "Original" msgstr "Özgün" -#: src/Gtk/MainWindow.vala:527 +#: src/Gtk/MainWindow.vala:518 src/Gtk/MainWindow.vala:634 +msgid "Internet connection is not active." +msgstr "İnternet bağlantısı aktif değil." + +#: src/Gtk/MainWindow.vala:531 msgid "Refreshing..." msgstr "Yenileniyor..." -#: src/Gtk/MainWindow.vala:616 +#: src/Gtk/MainWindow.vala:620 msgid "available" msgstr "mevcut" -#: src/Gtk/MainWindow.vala:674 -msgid "No Internet" -msgstr "İnternet Yok" - -#: src/Gtk/MainWindow.vala:675 -msgid "Internet connection is not active." -msgstr "İnternet bağlantısı aktif değil." - -#: src/Gtk/ProgressWindow.vala:142 src/Gtk/TerminalWindow.vala:149 -msgid "Cancel" -msgstr "İptal Et" - #: src/Gtk/SettingsDialog.vala:60 msgid "Notification" msgstr "Bildirim" @@ -434,7 +450,7 @@ msgstr "saniye" msgid "Max concurrent downloads" msgstr "Azami eşzamanlı indirme" -#: src/Gtk/TerminalWindow.vala:159 src/Utility/Gtk/AboutWindow.vala:294 +#: src/Gtk/TerminalWindow.vala:158 src/Utility/Gtk/AboutWindow.vala:294 msgid "Close" msgstr "Kapat" @@ -470,7 +486,7 @@ msgstr "Belgelendirenler" msgid "Third Party Inclusions" msgstr "Üçüncü Taraf Eklemeler" -#: src/Utility/Gtk/GtkHelper.vala:39 +#: src/Utility/Gtk/GtkHelper.vala:59 msgid "Missing Icon" msgstr "Eksik Simge" @@ -478,7 +494,7 @@ msgstr "Eksik Simge" msgid "File deleted" msgstr "Dosya silindi" -#: src/Utility/TeeJee.FileSystem.vala:76 src/Utility/TeeJee.FileSystem.vala:256 +#: src/Utility/TeeJee.FileSystem.vala:76 src/Utility/TeeJee.FileSystem.vala:240 msgid "Failed to delete file" msgstr "Dosya silinemedi" @@ -514,16 +530,16 @@ msgstr "Dosya taşındı" msgid "Failed to move file" msgstr "Dosya taşınamadı" -#: src/Utility/TeeJee.FileSystem.vala:233 -#: src/Utility/TeeJee.FileSystem.vala:236 +#: src/Utility/TeeJee.FileSystem.vala:217 +#: src/Utility/TeeJee.FileSystem.vala:220 msgid "Created directory" msgstr "Dizin oluşturuldu" -#: src/Utility/TeeJee.FileSystem.vala:243 +#: src/Utility/TeeJee.FileSystem.vala:227 msgid "Failed to create dir" msgstr "Dizin oluşturulamadı" -#: src/Utility/TeeJee.FileSystem.vala:255 +#: src/Utility/TeeJee.FileSystem.vala:239 msgid "Deleted" msgstr "Silindi" diff --git a/po/uk.po b/po/uk.po index f198fd29..56fc69e6 100644 --- a/po/uk.po +++ b/po/uk.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-02-23 15:16-0500\n" +"POT-Creation-Date: 2023-02-23 17:56-0500\n" "PO-Revision-Date: 2019-07-25 11:00+0300\n" "Last-Translator: Serhii Golovko \n" "Language-Team: Ukranian\n" @@ -13,103 +13,104 @@ msgstr "" "X-Launchpad-Export-Date: 2016-12-13 11:48+0000\n" "X-Generator: Poedit 2.2.1\n" -#: src/Common/LinuxKernel.vala:88 +#: src/Common/LinuxKernel.vala:87 msgid "Distribution" msgstr "Дистрибутив" -#: src/Common/LinuxKernel.vala:102 +#: src/Common/LinuxKernel.vala:101 msgid "Architecture" msgstr "Системна архитектура" -#: src/Common/LinuxKernel.vala:298 +#: src/Common/LinuxKernel.vala:290 msgid "Fetching index..." msgstr "Отримання індекса ..." -#: src/Common/LinuxKernel.vala:337 +#: src/Common/LinuxKernel.vala:329 msgid "Fetching index from kernel.ubuntu.com..." msgstr "Отримання індекса з kernel.ubuntu.com..." -#: src/Common/LinuxKernel.vala:593 +#: src/Common/LinuxKernel.vala:585 msgid "Could not find running kernel in list!" msgstr "Не вдалося знайти запущене ядро у списку!" -#: src/Common/LinuxKernel.vala:599 +#: src/Common/LinuxKernel.vala:591 msgid "Could not find any kernels to uninstall" msgstr "Не вдалося знайти жодне ядро для вилучення" -#: src/Common/LinuxKernel.vala:608 +#: src/Common/LinuxKernel.vala:600 msgid "The following kernels will be uninstalled:" msgstr "Наступні ядра будуть видалені:" -#: src/Common/LinuxKernel.vala:615 +#: src/Common/LinuxKernel.vala:607 msgid "Continue ?" msgstr "Продовжувати ?" -#: src/Common/LinuxKernel.vala:641 src/Console/AppConsole.vala:314 +#: src/Common/LinuxKernel.vala:633 src/Console/AppConsole.vala:314 msgid "Latest update" msgstr "Останнє оновлення" -#: src/Common/LinuxKernel.vala:652 src/Console/AppConsole.vala:321 +#: src/Common/LinuxKernel.vala:644 src/Console/AppConsole.vala:321 msgid "Latest point update" msgstr "Остання точка оновлення" -#: src/Common/LinuxKernel.vala:660 src/Console/AppConsole.vala:326 +#: src/Common/LinuxKernel.vala:652 src/Console/AppConsole.vala:326 #: src/Console/AppConsole.vala:387 msgid "No updates found" msgstr "Оновлень не знайдено" -#: src/Common/LinuxKernel.vala:670 +#: src/Common/LinuxKernel.vala:662 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Встановити Ядро Версії %s ? (так/ні): " -#: src/Common/LinuxKernel.vala:931 +#: src/Common/LinuxKernel.vala:912 msgid "Packages Available" msgstr "Доступні пакети" -#: src/Common/LinuxKernel.vala:939 +#: src/Common/LinuxKernel.vala:920 msgid "Packages Installed" msgstr "Встановлені пакети" -#: src/Common/LinuxKernel.vala:1019 +#: src/Common/LinuxKernel.vala:1000 msgid "Available Kernels" msgstr "Доступні ядра" -#: src/Common/LinuxKernel.vala:1026 src/Gtk/MainWindow.vala:189 +#: src/Common/LinuxKernel.vala:1007 src/Gtk/MainWindow.vala:189 msgid "Installed" msgstr "Встановлено" -#: src/Common/LinuxKernel.vala:1026 src/Gtk/MainWindow.vala:189 -#: src/Gtk/MainWindow.vala:606 src/Gtk/MainWindow.vala:620 +#: src/Common/LinuxKernel.vala:1007 src/Gtk/MainWindow.vala:189 +#: src/Gtk/MainWindow.vala:610 src/Gtk/MainWindow.vala:624 msgid "Running" msgstr "Використовується" -#: src/Common/LinuxKernel.vala:1063 +#: src/Common/LinuxKernel.vala:1044 msgid "Downloading" msgstr "Завантаження" -#: src/Common/LinuxKernel.vala:1082 +#: src/Common/LinuxKernel.vala:1063 src/Gtk/CustomMessageDialog.vala:150 +#: src/Gtk/CustomMessageDialog.vala:154 msgid "OK" msgstr "Добре" -#: src/Common/LinuxKernel.vala:1087 +#: src/Common/LinuxKernel.vala:1068 msgid "ERROR" msgstr "ПОМИЛКА" -#: src/Common/LinuxKernel.vala:1101 +#: src/Common/LinuxKernel.vala:1082 msgid "This kernel is already installed." msgstr "Це ядро вже встановлено." -#: src/Common/LinuxKernel.vala:1127 +#: src/Common/LinuxKernel.vala:1108 msgid "Installation completed. A reboot is required to use the new kernel." msgstr "" "Установка завершена. Для використання нового ядра потрібна перезавантаження." -#: src/Common/LinuxKernel.vala:1130 +#: src/Common/LinuxKernel.vala:1111 msgid "Installation completed with errors" msgstr "Установка завершена з помилками" -#: src/Common/LinuxKernel.vala:1151 +#: src/Common/LinuxKernel.vala:1132 msgid "" "Selected kernel is currently running and cannot be un-installed.\n" " Install another kernel before un-installing this one." @@ -117,19 +118,19 @@ msgstr "" "Це ядро зараз працює і не може бути видалено. \n" "Встановіть інше ядро, перш ніж видаляти його." -#: src/Common/LinuxKernel.vala:1156 +#: src/Common/LinuxKernel.vala:1137 msgid "Preparing to uninstall selected kernels" msgstr "Підготовка до видалення вибраних ядер" -#: src/Common/LinuxKernel.vala:1187 src/Common/LinuxKernel.vala:1234 +#: src/Common/LinuxKernel.vala:1168 src/Common/LinuxKernel.vala:1215 msgid "Un-install completed" msgstr "Видалення завершено" -#: src/Common/LinuxKernel.vala:1190 src/Common/LinuxKernel.vala:1237 +#: src/Common/LinuxKernel.vala:1171 src/Common/LinuxKernel.vala:1218 msgid "Un-install completed with errors" msgstr "Видалення завершено з помилками" -#: src/Common/LinuxKernel.vala:1203 +#: src/Common/LinuxKernel.vala:1184 msgid "" "This kernel is currently running and cannot be un-installed.\n" " Install another kernel before un-installing this one." @@ -282,7 +283,7 @@ msgid "Kernel %s Available" msgstr "Ядро %s Доступне" #: src/Console/AppConsole.vala:367 src/Console/AppConsole.vala:379 -#: src/Gtk/MainWindow.vala:331 +#: src/Gtk/MainWindow.vala:333 msgid "Install" msgstr "Встановити" @@ -294,6 +295,19 @@ msgstr "Роздрукувати зневадження" msgid "Show all options" msgstr "Показати усі параметри" +#: src/Gtk/CustomMessageDialog.vala:155 src/Gtk/ProgressWindow.vala:142 +#: src/Gtk/TerminalWindow.vala:148 +msgid "Cancel" +msgstr "Відміна" + +#: src/Gtk/CustomMessageDialog.vala:159 +msgid "Yes" +msgstr "" + +#: src/Gtk/CustomMessageDialog.vala:160 +msgid "No" +msgstr "" + #: src/Gtk/MainWindow.vala:146 msgid "Kernel" msgstr "Ядро" @@ -306,67 +320,69 @@ msgstr "Стан" msgid "Refresh" msgstr "Оновити" -#: src/Gtk/MainWindow.vala:342 +#: src/Gtk/MainWindow.vala:324 src/Utility/TeeJee.System.vala:42 +#, fuzzy +msgid "Internet connection is not active" +msgstr "Інтернет з'єднання не активно." + +#: src/Gtk/MainWindow.vala:324 src/Gtk/MainWindow.vala:518 +#: src/Gtk/MainWindow.vala:634 +msgid "No Internet" +msgstr "Інтернет з'єднання відсутнє" + +#: src/Gtk/MainWindow.vala:344 msgid "Uninstall" msgstr "Видалити" -#: src/Gtk/MainWindow.vala:375 src/Gtk/MainWindow.vala:408 -#: src/Gtk/MainWindow.vala:659 +#: src/Gtk/MainWindow.vala:377 src/Gtk/MainWindow.vala:410 +#: src/Gtk/MainWindow.vala:666 msgid "Close window to exit..." msgstr "Закрийте вікно, щоб вийти..." -#: src/Gtk/MainWindow.vala:382 +#: src/Gtk/MainWindow.vala:384 msgid "Uninstall Old" msgstr "Видалити старе" -#: src/Gtk/MainWindow.vala:383 +#: src/Gtk/MainWindow.vala:385 msgid "Uninstall kernels older than running kernel" msgstr "Видалити ядра, старіші за запущене ядро" -#: src/Gtk/MainWindow.vala:415 +#: src/Gtk/MainWindow.vala:417 msgid "Changes" msgstr "Зміни" -#: src/Gtk/MainWindow.vala:426 src/Gtk/SettingsDialog.vala:50 +#: src/Gtk/MainWindow.vala:428 src/Gtk/SettingsDialog.vala:50 msgid "Settings" msgstr "Налаштування" -#: src/Gtk/MainWindow.vala:449 +#: src/Gtk/MainWindow.vala:451 msgid "About" msgstr "Про программу" -#: src/Gtk/MainWindow.vala:494 +#: src/Gtk/MainWindow.vala:496 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Програма оновлення ядра для дистрибутивів на базі Ubuntu" -#: src/Gtk/MainWindow.vala:495 +#: src/Gtk/MainWindow.vala:497 msgid "Forked" msgstr "Двоєний" -#: src/Gtk/MainWindow.vala:495 +#: src/Gtk/MainWindow.vala:497 msgid "Original" msgstr "Оригінал" -#: src/Gtk/MainWindow.vala:527 +#: src/Gtk/MainWindow.vala:518 src/Gtk/MainWindow.vala:634 +msgid "Internet connection is not active." +msgstr "Інтернет з'єднання не активно." + +#: src/Gtk/MainWindow.vala:531 msgid "Refreshing..." msgstr "Оновлення..." -#: src/Gtk/MainWindow.vala:616 +#: src/Gtk/MainWindow.vala:620 msgid "available" msgstr "доступний" -#: src/Gtk/MainWindow.vala:674 -msgid "No Internet" -msgstr "Інтернет з'єднання відсутнє" - -#: src/Gtk/MainWindow.vala:675 -msgid "Internet connection is not active." -msgstr "Інтернет з'єднання не активно." - -#: src/Gtk/ProgressWindow.vala:142 src/Gtk/TerminalWindow.vala:149 -msgid "Cancel" -msgstr "Відміна" - #: src/Gtk/SettingsDialog.vala:60 msgid "Notification" msgstr "Повідомлення" @@ -431,7 +447,7 @@ msgstr "секунди" msgid "Max concurrent downloads" msgstr "Максимальна кількість завантажень" -#: src/Gtk/TerminalWindow.vala:159 src/Utility/Gtk/AboutWindow.vala:294 +#: src/Gtk/TerminalWindow.vala:158 src/Utility/Gtk/AboutWindow.vala:294 msgid "Close" msgstr "Закрити" @@ -467,7 +483,7 @@ msgstr "Документатори" msgid "Third Party Inclusions" msgstr "Включення третіх осіб" -#: src/Utility/Gtk/GtkHelper.vala:39 +#: src/Utility/Gtk/GtkHelper.vala:59 msgid "Missing Icon" msgstr "Нема значка" @@ -475,7 +491,7 @@ msgstr "Нема значка" msgid "File deleted" msgstr "Файл видалено" -#: src/Utility/TeeJee.FileSystem.vala:76 src/Utility/TeeJee.FileSystem.vala:256 +#: src/Utility/TeeJee.FileSystem.vala:76 src/Utility/TeeJee.FileSystem.vala:240 msgid "Failed to delete file" msgstr "Не вдалося видалити файл" @@ -511,16 +527,16 @@ msgstr "Файл переміщено" msgid "Failed to move file" msgstr "Не вдалося перемістити файл" -#: src/Utility/TeeJee.FileSystem.vala:233 -#: src/Utility/TeeJee.FileSystem.vala:236 +#: src/Utility/TeeJee.FileSystem.vala:217 +#: src/Utility/TeeJee.FileSystem.vala:220 msgid "Created directory" msgstr "Створений каталог" -#: src/Utility/TeeJee.FileSystem.vala:243 +#: src/Utility/TeeJee.FileSystem.vala:227 msgid "Failed to create dir" msgstr "Не вдалося створити теку" -#: src/Utility/TeeJee.FileSystem.vala:255 +#: src/Utility/TeeJee.FileSystem.vala:239 msgid "Deleted" msgstr "Видалено" diff --git a/src/Common/LinuxKernel.vala b/src/Common/LinuxKernel.vala index bb454824..2ea54754 100644 --- a/src/Common/LinuxKernel.vala +++ b/src/Common/LinuxKernel.vala @@ -212,7 +212,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { log_debug("query_thread() App.show_prev_majors: %d".printf(App.show_prev_majors)); log_debug("query_thread() App.hide_unstable: "+App.hide_unstable.to_string()); - bool is_connected = Main.can_reach_mainline_ppa(); + bool is_connected = check_internet_connectivity(); download_index(); load_index(); diff --git a/src/Gtk/CustomMessageDialog.vala b/src/Gtk/CustomMessageDialog.vala new file mode 100644 index 00000000..bc460e14 --- /dev/null +++ b/src/Gtk/CustomMessageDialog.vala @@ -0,0 +1,166 @@ + +/* + * CustomMessageDialog.vala + * + * Copyright 2012-17 Tony George + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, + * MA 02110-1301, USA. + * + * + */ + + +using Gtk; +using Gee; + +using TeeJee.Logging; +using TeeJee.FileSystem; +using TeeJee.JsonHelper; +using TeeJee.ProcessHelper; +using TeeJee.GtkHelper; +using TeeJee.System; +using TeeJee.Misc; + +public class CustomMessageDialog : Gtk.Dialog { + + private Gtk.Box vbox_main; + private Gtk.Label lbl_msg; + private Gtk.ScrolledWindow sw_msg; + private Gtk.Button btn_ok; + private Gtk.Button btn_cancel; + private Gtk.Button btn_yes; + private Gtk.Button btn_no; + + private string msg_title; + private string msg_body; + private Gtk.MessageType msg_type; + private Gtk.ButtonsType buttons_type; + + public CustomMessageDialog( + string _msg_title, string _msg_body, + Gtk.MessageType _msg_type, Window? parent, Gtk.ButtonsType _buttons_type) { + + set_transient_for(parent); + set_modal(true); + + msg_title = _msg_title; + msg_body = _msg_body; + msg_type = _msg_type; + buttons_type = _buttons_type; + + init_window(); + + lbl_msg.expand = true; + sw_msg.expand = true; + sw_msg.vscrollbar_policy = PolicyType.NEVER; + + sw_msg.set_size_request(500, 150); // sets minimum size + + show_all(); + + if (lbl_msg.get_allocated_height() > 400){ + sw_msg.vscrollbar_policy = PolicyType.AUTOMATIC; + sw_msg.set_size_request(500, 400); + } + + } + + public void init_window () { + + this.title = BRANDING_LONGNAME; + this.window_position = WindowPosition.CENTER_ON_PARENT; + this.icon = get_app_icon(16); + this.resizable = false; + this.deletable = false; + + //vbox_main + vbox_main = get_content_area () as Gtk.Box; + vbox_main.margin = 6; + + //hbox_contents + var hbox_contents = new Gtk.Box(Orientation.HORIZONTAL, 6); + hbox_contents.margin = 6; + vbox_main.add (hbox_contents); + + string icon_name = "dialog-info"; + + switch(msg_type){ + default: + case Gtk.MessageType.INFO: + icon_name = "dialog-info"; + break; + case Gtk.MessageType.WARNING: + icon_name = "dialog-warning"; + break; + case Gtk.MessageType.QUESTION: + icon_name = "dialog-question"; + break; + case Gtk.MessageType.ERROR: + icon_name = "dialog-error"; + break; + } + + // image ---------------- + + var img = new Image.from_icon_name(icon_name, Gtk.IconSize.DIALOG); + img.margin_end = 120; + hbox_contents.add(img); + + // label ------------------- + + var text = "%s\n\n%s".printf( + escape_html(msg_title), + msg_body); + lbl_msg = new Gtk.Label(text); + lbl_msg.xalign = 0.0f; + lbl_msg.yalign = 0.0f; + lbl_msg.max_width_chars = 70; + lbl_msg.wrap = true; + lbl_msg.wrap_mode = Pango.WrapMode.WORD_CHAR; + lbl_msg.use_markup = true; + lbl_msg.margin_end = 250; + + //sw_msg + sw_msg = new Gtk.ScrolledWindow(null, null); + sw_msg.add (lbl_msg); + sw_msg.hscrollbar_policy = PolicyType.NEVER; + sw_msg.vscrollbar_policy = PolicyType.NEVER; + hbox_contents.add(sw_msg); + + // actions ------------------------- + + var action_area = get_action_area () as Gtk.Box; + action_area.margin_top = 12; + + switch(buttons_type){ + case Gtk.ButtonsType.OK: + btn_ok = (Gtk.Button) add_button (_("OK"), Gtk.ResponseType.OK); + btn_ok.grab_focus(); + break; + case Gtk.ButtonsType.OK_CANCEL: + btn_ok = (Gtk.Button) add_button (_("OK"), Gtk.ResponseType.OK); + btn_cancel = (Gtk.Button) add_button (_("Cancel"), Gtk.ResponseType.CANCEL); + btn_ok.grab_focus(); + break; + case Gtk.ButtonsType.YES_NO: + btn_yes = (Gtk.Button) add_button (_("Yes"), Gtk.ResponseType.YES); + btn_no = (Gtk.Button) add_button (_("No"), Gtk.ResponseType.NO); + btn_yes.grab_focus(); + break; + + } + } +} diff --git a/src/Gtk/MainWindow.vala b/src/Gtk/MainWindow.vala index 14f907c9..48d08bab 100644 --- a/src/Gtk/MainWindow.vala +++ b/src/Gtk/MainWindow.vala @@ -323,6 +323,7 @@ public class MainWindow : Gtk.Window{ if (!check_internet_connectivity()){ gtk_messagebox(_("No Internet"), _("Internet connection is not active"), this, true); return; + } refresh_cache(); tv_refresh(); @@ -516,6 +517,7 @@ public class MainWindow : Gtk.Window{ if (!check_internet_connectivity()){ gtk_messagebox(_("No Internet"), _("Internet connection is not active."), this, true); return; + } if (App.command != "list"){ @@ -631,6 +633,7 @@ public class MainWindow : Gtk.Window{ if (!check_internet_connectivity()){ gtk_messagebox(_("No Internet"), _("Internet connection is not active."), this, true); return; + } var term = new TerminalWindow.with_parent(this, false, true); string t_dir = create_tmp_dir(); @@ -666,23 +669,4 @@ public class MainWindow : Gtk.Window{ term.execute_script(t_file,t_dir); } - private bool can_reach_mainline_ppa() { - bool result = Main.can_reach_mainline_ppa(); - - if (! Main.can_reach_mainline_ppa()) { - Gtk.MessageDialog msg = new Gtk.MessageDialog(this, - Gtk.DialogFlags.MODAL, - Gtk.MessageType.ERROR, - Gtk.ButtonsType.OK, - "%s\n\n%s".printf( - _("No Internet"), - _("Internet connection is not active.") - )); - msg.response.connect((response_id) => msg.destroy()); - msg.show(); - } - - return result; - } - } diff --git a/src/Utility/Gtk/GtkHelper.vala b/src/Utility/Gtk/GtkHelper.vala index 61ae3461..ec9b895d 100644 --- a/src/Utility/Gtk/GtkHelper.vala +++ b/src/Utility/Gtk/GtkHelper.vala @@ -10,6 +10,26 @@ namespace TeeJee.GtkHelper{ using Gtk; + // messages ---------------------------------------- + + public void gtk_messagebox( + string title, string message, Gtk.Window? parent_win, bool is_error = false){ + + /* Shows a simple message box */ + + var type = Gtk.MessageType.INFO; + if (is_error){ + type = Gtk.MessageType.ERROR; + } + else{ + type = Gtk.MessageType.INFO; + } + + var dlg = new CustomMessageDialog(title,message,type,parent_win, Gtk.ButtonsType.OK); + dlg.run(); + dlg.destroy(); + } + // icon ---------------------------------------------- public Gdk.Pixbuf? get_app_icon(int icon_size){ From fee580a80b53566836b25a48368a61ddf1b2828d Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Fri, 24 Feb 2023 04:51:29 -0500 Subject: [PATCH 230/567] version bump to avoid confusion --- BRANDING.mak | 2 +- Makefile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/BRANDING.mak b/BRANDING.mak index 45fdb5c9..ad258bf4 100644 --- a/BRANDING.mak +++ b/BRANDING.mak @@ -3,7 +3,7 @@ VERSION_MAJOR = 1 VERSION_MINOR = 0 -VERSION_MICRO = 21 +VERSION_MICRO = 22 BRANDING_SHORTNAME = mainline BRANDING_LONGNAME = Ubuntu Mainline Kernel Installer BRANDING_AUTHORNAME = Brian K. White diff --git a/Makefile b/Makefile index efad2780..8359867f 100644 --- a/Makefile +++ b/Makefile @@ -5,7 +5,7 @@ URI_KERNEL_UBUNTU_MAINLINE := https://kernel.ubuntu.com/~kernel-ppa/mainline/ SHELL := /bin/bash CFLAGS := -O2 -VALACFLAGS := --enable-deprecated +VALACFLAGS := #--enable-deprecated prefix := /usr bindir := $(prefix)/bin From a876c50fb240adffdb4106393aecb669dd4e5440 Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Sat, 25 Feb 2023 00:26:11 -0500 Subject: [PATCH 231/567] authors --- AUTHORS | 1 - 1 file changed, 1 deletion(-) diff --git a/AUTHORS b/AUTHORS index ef8567fb..278ff1bd 100644 --- a/AUTHORS +++ b/AUTHORS @@ -4,7 +4,6 @@ shg8@github net connection check cloyce@github rc kernels option sylt@github better lowest displayed version scheme LucasChollet@github better thread & child process handling - create FileDownloader & replace aria2c Inclusions: notify-send.sh https://github.com/bkw777/notify-send.sh From 006f48d90643c233f3d48f9d587c6864b2e19473 Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Sat, 25 Feb 2023 01:25:27 -0500 Subject: [PATCH 232/567] 1.0.22 --- .deb_build_number.mak | 4 ++-- debian/changelog | 25 +++++++++++++++++++++++++ 2 files changed, 27 insertions(+), 2 deletions(-) diff --git a/.deb_build_number.mak b/.deb_build_number.mak index 9d7c1d1b..3bad13b3 100644 --- a/.deb_build_number.mak +++ b/.deb_build_number.mak @@ -1,3 +1,3 @@ # This file is generated by Makefile "make deb_build_number" -DEB_PKG_VERSION := 1.0.18 -DEB_BUILD_NUMBER := 0000 +DEB_PKG_VERSION := 1.0.22 +DEB_BUILD_NUMBER := 0001 diff --git a/debian/changelog b/debian/changelog index 97972029..c7f439ac 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,28 @@ +mainline (1.0.22) unstable; urgency=medium + + * revert missed gvfs dep in internet connection check + + -- Brian K. White Sat, 25 Feb 2023 00:31:25 -0500 + +mainline (1.0.21) UNRELEASED; urgency=medium + + * revert FileDownloader due to undesired gvfs requirement + + -- Brian K. White Fri, 24 Feb 2023 00:31:25 -0500 + +mainline (1.0.20) UNRELEASED; urgency=medium + + * Lucas CHOLLET replace aria2c shell scripts with FileDownloader using gio + * don't use "env -C", old systems don't have it + + -- Brian K. White Tue, 21 Feb 2023 10:40:53 -0500 + +mainline (1.0.19) unstable; urgency=medium + + * Lucas CHOLLET remove busy-waiting/polling in LinuxKernel.query() and "Refreshing" dialog + + -- Brian K. White Tue, 14 Feb 2023 03:48:56 -0500 + mainline (1.0.18) unstable; urgency=medium * fix small list-update bug inroduced in 1.0.17 From 2e7c3f8735409d89836256e9950e7d7edbd41046 Mon Sep 17 00:00:00 2001 From: Danik2343 <38865696+Danik2343@users.noreply.github.com> Date: Wed, 1 Mar 2023 21:20:41 +0300 Subject: [PATCH 233/567] Update Russian Language Update Russian Language --- po/ru.po | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/po/ru.po b/po/ru.po index 9552f097..180f299a 100644 --- a/po/ru.po +++ b/po/ru.po @@ -3,15 +3,16 @@ msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-02-23 17:56-0500\n" -"PO-Revision-Date: 2022-02-24 16:05+0300\n" -"Last-Translator: Danik2343 \n" +"PO-Revision-Date: 2023-03-01 20:22+0300\n" +"Last-Translator: Faust3000 (Original) | Danik2343 (Update Transaltion) " +"\n" "Language-Team: Russian\n" "Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2016-12-13 11:48+0000\n" -"X-Generator: Poedit 2.3\n" +"X-Generator: Poedit 3.0.1\n" #: src/Common/LinuxKernel.vala:87 msgid "Distribution" @@ -305,11 +306,11 @@ msgstr "Отмена" #: src/Gtk/CustomMessageDialog.vala:159 msgid "Yes" -msgstr "" +msgstr "Да" #: src/Gtk/CustomMessageDialog.vala:160 msgid "No" -msgstr "" +msgstr "Нет" #: src/Gtk/MainWindow.vala:146 msgid "Kernel" @@ -324,9 +325,8 @@ msgid "Refresh" msgstr "Обновить" #: src/Gtk/MainWindow.vala:324 src/Utility/TeeJee.System.vala:42 -#, fuzzy msgid "Internet connection is not active" -msgstr "Интернет соединение не активно." +msgstr "Интернет соединение не активно" #: src/Gtk/MainWindow.vala:324 src/Gtk/MainWindow.vala:518 #: src/Gtk/MainWindow.vala:634 From eb8c38576486f748b88973952e5e437134ab3fef Mon Sep 17 00:00:00 2001 From: cappelikan Date: Thu, 2 Mar 2023 00:41:16 +0200 Subject: [PATCH 234/567] Update uk.po update translation --- po/uk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/uk.po b/po/uk.po index 56fc69e6..6b8128a8 100644 --- a/po/uk.po +++ b/po/uk.po @@ -302,11 +302,11 @@ msgstr "Відміна" #: src/Gtk/CustomMessageDialog.vala:159 msgid "Yes" -msgstr "" +msgstr "Так" #: src/Gtk/CustomMessageDialog.vala:160 msgid "No" -msgstr "" +msgstr "Ні" #: src/Gtk/MainWindow.vala:146 msgid "Kernel" From 21958b358fd6374fc1c948056f764a0bdcb47c92 Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Sat, 4 Mar 2023 23:08:30 -0500 Subject: [PATCH 235/567] 1.1.0 --- .deb_build_number.mak | 2 +- BRANDING.mak | 4 +- Makefile | 4 +- TRANSLATORS | 2 +- debian/changelog | 49 +++++ po/de.po | 307 ++++++++++++++-------------- po/el.po | 308 ++++++++++++++--------------- po/es.po | 301 +++++++++++++--------------- po/fr.po | 305 +++++++++++++--------------- po/hr.po | 306 ++++++++++++++-------------- po/it.po | 306 ++++++++++++++-------------- po/ko.po | 302 ++++++++++++++-------------- po/messages.pot | 271 ++++++++++++------------- po/nl.po | 306 +++++++++++++--------------- po/pl.po | 305 ++++++++++++++-------------- po/sv.po | 300 +++++++++++++--------------- po/tr.po | 305 ++++++++++++++-------------- src/Common/LinuxKernel.vala | 277 +++++++++++--------------- src/Common/Main.vala | 98 ++++++--- src/Common/Package.vala | 24 +-- src/Console/AppConsole.vala | 111 ++++------- src/Gtk/AppGtk.vala | 83 ++++---- src/Gtk/CustomMessageDialog.vala | 166 ---------------- src/Gtk/MainWindow.vala | 220 +++++++++------------ src/Gtk/ProgressWindow.vala | 38 +--- src/Gtk/SettingsDialog.vala | 12 +- src/Gtk/TerminalWindow.vala | 28 ++- src/Utility/AsyncTask.vala | 8 +- src/Utility/Gtk/GtkHelper.vala | 32 ++- src/Utility/TeeJee.FileSystem.vala | 6 - src/Utility/TeeJee.System.vala | 26 +-- 31 files changed, 2147 insertions(+), 2665 deletions(-) delete mode 100644 src/Gtk/CustomMessageDialog.vala diff --git a/.deb_build_number.mak b/.deb_build_number.mak index 3bad13b3..0e9c67c0 100644 --- a/.deb_build_number.mak +++ b/.deb_build_number.mak @@ -1,3 +1,3 @@ # This file is generated by Makefile "make deb_build_number" -DEB_PKG_VERSION := 1.0.22 +DEB_PKG_VERSION := 1.1.0 DEB_BUILD_NUMBER := 0001 diff --git a/BRANDING.mak b/BRANDING.mak index ad258bf4..4458dcb9 100644 --- a/BRANDING.mak +++ b/BRANDING.mak @@ -2,8 +2,8 @@ # This is the single place where you edit these values manually VERSION_MAJOR = 1 -VERSION_MINOR = 0 -VERSION_MICRO = 22 +VERSION_MINOR = 1 +VERSION_MICRO = 0 BRANDING_SHORTNAME = mainline BRANDING_LONGNAME = Ubuntu Mainline Kernel Installer BRANDING_AUTHORNAME = Brian K. White diff --git a/Makefile b/Makefile index 8359867f..84b5c619 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ # Makefile for "mainline" # url to ubuntu mainline kernels -URI_KERNEL_UBUNTU_MAINLINE := https://kernel.ubuntu.com/~kernel-ppa/mainline/ +DEFAULT_PPA_URI := https://kernel.ubuntu.com/~kernel-ppa/mainline/ SHELL := /bin/bash CFLAGS := -O2 @@ -34,7 +34,7 @@ build_symbols := -X -D'INSTALL_PREFIX="$(prefix)"' \ -X -D'BRANDING_AUTHOREMAIL="$(BRANDING_AUTHOREMAIL)"' \ -X -D'BRANDING_WEBSITE="$(BRANDING_WEBSITE)"' \ -X -D'GETTEXT_PACKAGE="$(BRANDING_SHORTNAME)"' \ - -X -D'URI_KERNEL_UBUNTU_MAINLINE="$(URI_KERNEL_UBUNTU_MAINLINE)"' + -X -D'DEFAULT_PPA_URI="$(DEFAULT_PPA_URI)"' misc_files := README.md \ INSTALL \ diff --git a/TRANSLATORS b/TRANSLATORS index 0df9d5bf..8945dc18 100644 --- a/TRANSLATORS +++ b/TRANSLATORS @@ -7,7 +7,7 @@ it: Albano Battistella ko: Kevin Kim nl: Heimen Stoffels pl: Viktor Sokyrko -ru: Danik2343 +ru: Faust3000 (Original) | Danik2343 (Update Transaltio sv: Åke Engelbrektson tr: Sabri Ünal uk: Serhii Golovko diff --git a/debian/changelog b/debian/changelog index c7f439ac..466f1b3b 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,52 @@ +mainline (1.1.0) UNRELEASED; urgency=medium + + * removed --user + it was always broken as all it did was change the path to the cache & config files without actually doing any sudo or pkexec etc + + * improve net connection checks + - removed skip_internet_connection_check setting + - test connection on actual main index uri + - remember the result for the rest of the session and only bother the user once (except reload) + + * improved cache handling + - don't delete or re-download the cache indexes any more than necessary + - download the main index only once on startup + - download the individual kernel indexes only when one doesn't exist + - internal-use commandline option --index-is-fresh + when the console app is being run by the gtk app, the gtk app adds this, which + tells the console app not to update the cache on startup, since the gtk app has + has done that already. + - more thourough tracking of when to clear and redraw the list so that it always reflects the current state + - preserve old indexes if automatic download at startup fails + but do erase it if either --delet-cache or reload button + + * replaced the refresh button with reload + reload button does a full delete_cache() when pressed, same as --clean-cache flag + reload button clears the state flags: index_is_fresh, connection_checked, neterr_shown + + * renamed a few cmdline flags, old names still accepted for backwards compatibility + --clean-cache -> --delete-cache - also, you should rarely need this now, because the reload button does it + --show-unstable -> --include-unstable + --hide-unstable -> --exclude-unstable + + * replaced gtk_messagbox() based on CustomMessageDialog.vala with errbox() based on simpler Gtk.MessageDialog + deleted entire CustomMessageDialog.vala + + * resolved several compiler warnings, some from deleting gtk_messagbox(), some from updating Thread creation method. + + * added "exit" button to main gui + + * moved the mainlin-ppa uri into the config file so the user can edit + not exposed in the settings dialog, but you can edit config.json + + * save & restore the window size & position + + * added several debug messages + + * removed more un-used code, refactored some more away too. + + -- Brian K. White Sat, 04 Mar 2023 17:08:21 -0500 + mainline (1.0.22) unstable; urgency=medium * revert missed gvfs dep in internet connection check diff --git a/po/de.po b/po/de.po index e124972f..00bc95a7 100644 --- a/po/de.po +++ b/po/de.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-02-23 17:56-0500\n" +"POT-Creation-Date: 2023-03-04 22:34-0500\n" "PO-Revision-Date: 2023-02-20 18:40+0100\n" "Last-Translator: Marvin Meysel \n" "Language-Team: German\n" @@ -21,130 +21,122 @@ msgstr "Distribution" msgid "Architecture" msgstr "Architektur" -#: src/Common/LinuxKernel.vala:290 -msgid "Fetching index..." +#: src/Common/LinuxKernel.vala:256 +msgid "cached" +msgstr "" + +#: src/Common/LinuxKernel.vala:268 +msgid "GET" +msgstr "" + +#: src/Common/LinuxKernel.vala:296 +#, fuzzy +msgid "Fetching individual kernel indexes..." msgstr "Index abrufen..." -#: src/Common/LinuxKernel.vala:329 -msgid "Fetching index from kernel.ubuntu.com..." -msgstr "Hole Index von kernel.ubuntu.com..." +#: src/Common/LinuxKernel.vala:338 +#, fuzzy +msgid "Fetching main index from" +msgstr "Index abrufen..." -#: src/Common/LinuxKernel.vala:585 +#: src/Common/LinuxKernel.vala:599 msgid "Could not find running kernel in list!" msgstr "Konnte keinen laufenden Kernel in der Liste finden!" -#: src/Common/LinuxKernel.vala:591 +#: src/Common/LinuxKernel.vala:605 msgid "Could not find any kernels to uninstall" msgstr "Es konnten keine Kernel zum Deinstallieren gefunden werden" -#: src/Common/LinuxKernel.vala:600 +#: src/Common/LinuxKernel.vala:614 msgid "The following kernels will be uninstalled:" msgstr "Die folgenden Kernel werden deinstalliert:" -#: src/Common/LinuxKernel.vala:607 +#: src/Common/LinuxKernel.vala:621 msgid "Continue ?" msgstr "Weiter ?" -#: src/Common/LinuxKernel.vala:633 src/Console/AppConsole.vala:314 +#: src/Common/LinuxKernel.vala:644 src/Console/AppConsole.vala:298 msgid "Latest update" msgstr "Neustes Update" -#: src/Common/LinuxKernel.vala:644 src/Console/AppConsole.vala:321 +#: src/Common/LinuxKernel.vala:655 src/Console/AppConsole.vala:305 msgid "Latest point update" msgstr "Letzte Punktaktualisierung" -#: src/Common/LinuxKernel.vala:652 src/Console/AppConsole.vala:326 -#: src/Console/AppConsole.vala:387 +#: src/Common/LinuxKernel.vala:663 src/Console/AppConsole.vala:310 +#: src/Console/AppConsole.vala:365 msgid "No updates found" msgstr "Keine Updates gefunden" -#: src/Common/LinuxKernel.vala:662 +#: src/Common/LinuxKernel.vala:673 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Kernel-Version %s installieren? (j/n):" -#: src/Common/LinuxKernel.vala:912 +#: src/Common/LinuxKernel.vala:924 msgid "Packages Available" msgstr "Verfügbare Pakete" -#: src/Common/LinuxKernel.vala:920 +#: src/Common/LinuxKernel.vala:932 msgid "Packages Installed" msgstr "Installierte Pakete" -#: src/Common/LinuxKernel.vala:1000 +#: src/Common/LinuxKernel.vala:1011 msgid "Available Kernels" msgstr "Verfügbare Kernel" -#: src/Common/LinuxKernel.vala:1007 src/Gtk/MainWindow.vala:189 +#: src/Common/LinuxKernel.vala:1018 src/Gtk/MainWindow.vala:151 msgid "Installed" msgstr "Installiert" -#: src/Common/LinuxKernel.vala:1007 src/Gtk/MainWindow.vala:189 -#: src/Gtk/MainWindow.vala:610 src/Gtk/MainWindow.vala:624 +#: src/Common/LinuxKernel.vala:1018 src/Gtk/MainWindow.vala:151 +#: src/Gtk/MainWindow.vala:572 src/Gtk/MainWindow.vala:586 msgid "Running" msgstr "Läuft" -#: src/Common/LinuxKernel.vala:1044 +#: src/Common/LinuxKernel.vala:1055 msgid "Downloading" msgstr "Herunterladen" -#: src/Common/LinuxKernel.vala:1063 src/Gtk/CustomMessageDialog.vala:150 -#: src/Gtk/CustomMessageDialog.vala:154 +#: src/Common/LinuxKernel.vala:1074 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:1068 +#: src/Common/LinuxKernel.vala:1079 msgid "ERROR" msgstr "Fehler" -#: src/Common/LinuxKernel.vala:1082 +#: src/Common/LinuxKernel.vala:1093 msgid "This kernel is already installed." msgstr "Dieser Kernel ist bereits installiert." -#: src/Common/LinuxKernel.vala:1108 -msgid "Installation completed. A reboot is required to use the new kernel." -msgstr "" -"Die Installation ist abgeschlossen. Ein Neustart ist erforderlich, um den " -"neuen Kernel zu verwenden." - -#: src/Common/LinuxKernel.vala:1111 -msgid "Installation completed with errors" -msgstr "Installation mit Fehlern abgeschlossen" +#: src/Common/LinuxKernel.vala:1129 +#, fuzzy +msgid "Uninstalling selected kernels" +msgstr "Deinstallation des angegebenen Kernels" -#: src/Common/LinuxKernel.vala:1132 -msgid "" -"Selected kernel is currently running and cannot be un-installed.\n" -" Install another kernel before un-installing this one." +#: src/Common/LinuxKernel.vala:1135 +msgid "requested" msgstr "" -"Ausgewählter Kernel wird derzeit ausgeführt und kann nicht deinstalliert " -"werden.\n" -" Installieren Sie einen anderen Kernel, bevor Sie diesen deinstallieren." - -#: src/Common/LinuxKernel.vala:1137 -msgid "Preparing to uninstall selected kernels" -msgstr "Vorbereiten der Deinstallation ausgewählter Kernel" - -#: src/Common/LinuxKernel.vala:1168 src/Common/LinuxKernel.vala:1215 -msgid "Un-install completed" -msgstr "Deinstallation abgeschlossen" -#: src/Common/LinuxKernel.vala:1171 src/Common/LinuxKernel.vala:1218 -msgid "Un-install completed with errors" -msgstr "Deinstallation mit Fehlern abgeschlossen" +#: src/Common/LinuxKernel.vala:1138 +msgid "skipping the currently booted kernel" +msgstr "" -#: src/Common/LinuxKernel.vala:1184 -msgid "" -"This kernel is currently running and cannot be un-installed.\n" -" Install another kernel before un-installing this one." +#: src/Common/LinuxKernel.vala:1154 +msgid "found" msgstr "" -"Dieser Kernel wird derzeit ausgeführt und kann nicht deinstalliert werden.\n" -" Installieren Sie einen anderen Kernel, bevor Sie diesen deinstallieren." -#: src/Common/Main.vala:241 +#: src/Common/LinuxKernel.vala:1157 +#, fuzzy +msgid "No packages to un-install!" +msgstr "Installierte Pakete" + +#: src/Common/Main.vala:260 msgid "Called from" msgstr "Angerufen von" -#: src/Common/Main.vala:275 +#: src/Common/Main.vala:294 msgid "Notifications are disabled" msgstr "Benachrichtigungen sind deaktiviert" @@ -153,243 +145,232 @@ msgstr "Benachrichtigungen sind deaktiviert" msgid "File not found: %s" msgstr "Datei nicht gefunden: %s" -#: src/Console/AppConsole.vala:62 src/Gtk/AppGtk.vala:152 +#: src/Console/AppConsole.vala:68 src/Gtk/AppGtk.vala:141 msgid "Syntax" msgstr "Syntax" -#: src/Console/AppConsole.vala:64 +#: src/Console/AppConsole.vala:70 msgid "Commands" msgstr "Befehle" -#: src/Console/AppConsole.vala:66 +#: src/Console/AppConsole.vala:72 msgid "Check for kernel updates" msgstr "Nach Kernel-Updates suchen" -#: src/Console/AppConsole.vala:67 +#: src/Console/AppConsole.vala:73 msgid "Check for kernel updates and notify current user" msgstr "" "Prüfung auf Kernel-Updates und Benachrichtigung des aktuellen Benutzers" -#: src/Console/AppConsole.vala:68 +#: src/Console/AppConsole.vala:74 msgid "List all available mainline kernels" msgstr "Alle verfügbaren Mainline-Kernel auflisten" -#: src/Console/AppConsole.vala:69 +#: src/Console/AppConsole.vala:75 msgid "List installed kernels" msgstr "Installierte Kernel auflisten" -#: src/Console/AppConsole.vala:70 +#: src/Console/AppConsole.vala:76 msgid "Install latest mainline kernel" msgstr "Installieren Sie den neuesten Mainline-Kernel" -#: src/Console/AppConsole.vala:71 +#: src/Console/AppConsole.vala:77 msgid "Install latest point update for current series" msgstr "Neueste Punktaktualisierung für die aktuelle Serie installieren" -#: src/Console/AppConsole.vala:72 +#: src/Console/AppConsole.vala:78 msgid "Install specified mainline kernel" msgstr "Angegebenen Mainline-Kernel installieren" -#: src/Console/AppConsole.vala:73 +#: src/Console/AppConsole.vala:79 msgid "Uninstall specified kernel" msgstr "Deinstallation des angegebenen Kernels" -#: src/Console/AppConsole.vala:74 +#: src/Console/AppConsole.vala:80 msgid "Uninstall kernels older than the running kernel" msgstr "Deinstallation von Kerneln, die älter sind als der aktuelle Kernel" -#: src/Console/AppConsole.vala:75 +#: src/Console/AppConsole.vala:81 msgid "Download specified kernels" msgstr "Herunterladen bestimmter Kernel" -#: src/Console/AppConsole.vala:76 -msgid "Remove files from application cache" -msgstr "Dateien aus dem Anwendungscache entfernen" +#: src/Console/AppConsole.vala:82 +msgid "Delete cached info about available kernels" +msgstr "" -#: src/Console/AppConsole.vala:78 src/Gtk/AppGtk.vala:154 +#: src/Console/AppConsole.vala:84 src/Gtk/AppGtk.vala:143 msgid "Options" msgstr "Optionen" -#: src/Console/AppConsole.vala:80 +#: src/Console/AppConsole.vala:86 msgid "Include unstable and RC releases" msgstr "Unstable- und RC-Versionen einbeziehen" -#: src/Console/AppConsole.vala:81 src/Gtk/SettingsDialog.vala:163 -msgid "Hide unstable and RC releases" -msgstr "Unstable- und RC-Versionen ausblenden" +#: src/Console/AppConsole.vala:87 +#, fuzzy +msgid "Exclude unstable and RC releases" +msgstr "Unstable- und RC-Versionen einbeziehen" -#: src/Console/AppConsole.vala:82 +#: src/Console/AppConsole.vala:88 msgid "Enable verbose debugging output" msgstr "Ausführliche Debugging-Ausgabe einschalten" -#: src/Console/AppConsole.vala:83 +#: src/Console/AppConsole.vala:89 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "Alle Aufforderungen mit Ja beantworten (nicht interaktiver Modus)" -#: src/Console/AppConsole.vala:84 -msgid "Override user" -msgstr "Benutzer außer Kraft setzen" - -#: src/Console/AppConsole.vala:87 +#: src/Console/AppConsole.vala:92 msgid "A version string taken from the output of --list" msgstr "Eine Versionszeichenfolge aus der Ausgabe von --list" -#: src/Console/AppConsole.vala:88 +#: src/Console/AppConsole.vala:93 msgid "" "One or more version strings (comma-separated) taken from the output of --list" msgstr "" "Eine oder mehrere (durch Komma getrennte) Versionszeichenfolgen aus der " "Ausgabe von --list" -#: src/Console/AppConsole.vala:169 src/Gtk/AppGtk.vala:139 +#: src/Console/AppConsole.vala:173 src/Gtk/AppGtk.vala:127 msgid "Unknown option" msgstr "Unbekannte Option" -#: src/Console/AppConsole.vala:171 src/Console/AppConsole.vala:265 -#: src/Console/AppConsole.vala:294 +#: src/Console/AppConsole.vala:175 src/Console/AppConsole.vala:255 +#: src/Console/AppConsole.vala:284 msgid "Run" msgstr "Ausführen" -#: src/Console/AppConsole.vala:171 +#: src/Console/AppConsole.vala:175 msgid "to list all options" msgstr "um alle Optionen aufzulisten" -#: src/Console/AppConsole.vala:238 src/Console/AppConsole.vala:273 +#: src/Console/AppConsole.vala:227 src/Console/AppConsole.vala:263 msgid "No kernels specified" msgstr "Keine Kernel angegeben" -#: src/Console/AppConsole.vala:244 +#: src/Console/AppConsole.vala:233 msgid "Multiple kernels selected for installation. Select only one." msgstr "" "Mehrere Kernel für die Installation ausgewählt. Wählen Sie nur einen aus." -#: src/Console/AppConsole.vala:262 src/Gtk/MainWindow.vala:100 +#: src/Console/AppConsole.vala:252 msgid "Could not find requested version" msgstr "Die gewünschte Version konnte nicht gefunden werden" -#: src/Console/AppConsole.vala:265 +#: src/Console/AppConsole.vala:255 msgid "and use a version string listed in first column" msgstr "" "und verwenden Sie eine in der ersten Spalte aufgeführte Versionszeichenfolge" -#: src/Console/AppConsole.vala:293 +#: src/Console/AppConsole.vala:283 msgid "Command not specified" msgstr "Befehl nicht angegeben" -#: src/Console/AppConsole.vala:294 +#: src/Console/AppConsole.vala:284 msgid "to list all commands" msgstr "um alle Befehle aufzulisten" -#: src/Console/AppConsole.vala:360 +#: src/Console/AppConsole.vala:338 msgid "Show" msgstr "Zeigen" -#: src/Console/AppConsole.vala:365 src/Console/AppConsole.vala:377 +#: src/Console/AppConsole.vala:343 src/Console/AppConsole.vala:355 #, c-format msgid "Kernel %s Available" msgstr "Kernel %s verfügbar" -#: src/Console/AppConsole.vala:367 src/Console/AppConsole.vala:379 -#: src/Gtk/MainWindow.vala:333 +#: src/Console/AppConsole.vala:345 src/Console/AppConsole.vala:357 +#: src/Gtk/MainWindow.vala:282 msgid "Install" msgstr "Installieren" -#: src/Gtk/AppGtk.vala:156 +#: src/Gtk/AppGtk.vala:141 +#, fuzzy +msgid "options" +msgstr "Optionen" + +#: src/Gtk/AppGtk.vala:145 msgid "Print debug information" msgstr "Zeige Debug Informationen" -#: src/Gtk/AppGtk.vala:157 +#: src/Gtk/AppGtk.vala:146 msgid "Show all options" msgstr "Alle Optionen anzeigen" -#: src/Gtk/CustomMessageDialog.vala:155 src/Gtk/ProgressWindow.vala:142 -#: src/Gtk/TerminalWindow.vala:148 -msgid "Cancel" -msgstr "Abbrechen" - -#: src/Gtk/CustomMessageDialog.vala:159 -msgid "Yes" -msgstr "" - -#: src/Gtk/CustomMessageDialog.vala:160 -msgid "No" -msgstr "" - -#: src/Gtk/MainWindow.vala:146 +#: src/Gtk/MainWindow.vala:108 msgid "Kernel" msgstr "Kernel" -#: src/Gtk/MainWindow.vala:176 +#: src/Gtk/MainWindow.vala:138 msgid "Status" msgstr "Status" -#: src/Gtk/MainWindow.vala:317 -msgid "Refresh" -msgstr "Auffrischen" - -#: src/Gtk/MainWindow.vala:324 src/Utility/TeeJee.System.vala:42 -#, fuzzy -msgid "Internet connection is not active" -msgstr "Die Internetverbindung ist nicht aktiv." - -#: src/Gtk/MainWindow.vala:324 src/Gtk/MainWindow.vala:518 -#: src/Gtk/MainWindow.vala:634 -msgid "No Internet" -msgstr "Kein Internet" - -#: src/Gtk/MainWindow.vala:344 +#: src/Gtk/MainWindow.vala:292 msgid "Uninstall" msgstr "Deinstallieren" -#: src/Gtk/MainWindow.vala:377 src/Gtk/MainWindow.vala:410 -#: src/Gtk/MainWindow.vala:666 -msgid "Close window to exit..." -msgstr "Fenster schließen zum Verlassen..." +#: src/Gtk/MainWindow.vala:325 src/Gtk/MainWindow.vala:370 +#: src/Gtk/MainWindow.vala:616 +msgid "DONE" +msgstr "" + +#: src/Gtk/MainWindow.vala:333 +msgid "Changes" +msgstr "Änderungen" -#: src/Gtk/MainWindow.vala:384 +#: src/Gtk/MainWindow.vala:344 msgid "Uninstall Old" msgstr "Alte deinstallieren" -#: src/Gtk/MainWindow.vala:385 +#: src/Gtk/MainWindow.vala:345 msgid "Uninstall kernels older than running kernel" msgstr "Deinstallation von Kerneln, die älter sind als der aktuelle Kernel" -#: src/Gtk/MainWindow.vala:417 -msgid "Changes" -msgstr "Änderungen" +#: src/Gtk/MainWindow.vala:378 +msgid "Reload" +msgstr "" -#: src/Gtk/MainWindow.vala:428 src/Gtk/SettingsDialog.vala:50 +#: src/Gtk/MainWindow.vala:391 src/Gtk/SettingsDialog.vala:50 msgid "Settings" msgstr "Einstellungen" -#: src/Gtk/MainWindow.vala:451 +#: src/Gtk/MainWindow.vala:413 msgid "About" msgstr "Über" -#: src/Gtk/MainWindow.vala:496 +#: src/Gtk/MainWindow.vala:418 +msgid "Exit" +msgstr "" + +#: src/Gtk/MainWindow.vala:470 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Kernel-Upgrade-Dienstprogramm für Ubuntu-basierte Distributionen" -#: src/Gtk/MainWindow.vala:497 +#: src/Gtk/MainWindow.vala:471 msgid "Forked" msgstr "Forked" -#: src/Gtk/MainWindow.vala:497 +#: src/Gtk/MainWindow.vala:471 msgid "Original" msgstr "Original" -#: src/Gtk/MainWindow.vala:518 src/Gtk/MainWindow.vala:634 -msgid "Internet connection is not active." -msgstr "Die Internetverbindung ist nicht aktiv." - -#: src/Gtk/MainWindow.vala:531 +#: src/Gtk/MainWindow.vala:500 +#, fuzzy msgid "Refreshing..." msgstr "Auffrischen..." -#: src/Gtk/MainWindow.vala:620 +#: src/Gtk/MainWindow.vala:582 msgid "available" msgstr "Verfügbar" +#: src/Gtk/MainWindow.vala:625 +#, fuzzy +msgid "Can not reach" +msgstr "Fehler beim lesen der Datei" + +#: src/Gtk/ProgressWindow.vala:126 src/Gtk/TerminalWindow.vala:148 +msgid "Cancel" +msgstr "Abbrechen" + #: src/Gtk/SettingsDialog.vala:60 msgid "Notification" msgstr "Benachrichtigung" @@ -430,6 +411,10 @@ msgstr "Sekunde(n)" msgid "Display" msgstr "Anzeige" +#: src/Gtk/SettingsDialog.vala:163 +msgid "Hide unstable and RC releases" +msgstr "Unstable- und RC-Versionen ausblenden" + #: src/Gtk/SettingsDialog.vala:177 msgid "Show N previous major versions " msgstr "N frühere Hauptversionen anzeigen" @@ -438,19 +423,15 @@ msgstr "N frühere Hauptversionen anzeigen" msgid "Other" msgstr "Anderes" -#: src/Gtk/SettingsDialog.vala:200 -msgid "Skip internet connection check" -msgstr "Überprüfung der Internetverbindung überspringen" - -#: src/Gtk/SettingsDialog.vala:213 +#: src/Gtk/SettingsDialog.vala:203 msgid "Internet connection timeout in " msgstr "Zeitüberschreitung der Internetverbindung in" -#: src/Gtk/SettingsDialog.vala:228 +#: src/Gtk/SettingsDialog.vala:218 msgid "seconds" msgstr "Sekunden" -#: src/Gtk/SettingsDialog.vala:235 +#: src/Gtk/SettingsDialog.vala:225 msgid "Max concurrent downloads" msgstr "Maximale Anzahl gleichzeitiger Downloads" @@ -490,7 +471,7 @@ msgstr "Dokumentierer" msgid "Third Party Inclusions" msgstr "Einschlüsse von Drittparteien" -#: src/Utility/Gtk/GtkHelper.vala:59 +#: src/Utility/Gtk/GtkHelper.vala:49 msgid "Missing Icon" msgstr "Fehlendes Symbol" diff --git a/po/el.po b/po/el.po index 13cdf456..236272cf 100644 --- a/po/el.po +++ b/po/el.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-02-23 17:56-0500\n" +"POT-Creation-Date: 2023-03-04 22:34-0500\n" "PO-Revision-Date: 2023-01-10 02:03-0600\n" "Last-Translator: Vasilis Kosmidis \n" "Language-Team: Greek\n" @@ -21,132 +21,123 @@ msgstr "Διανομή" msgid "Architecture" msgstr "Αρχιτεκτονική" -#: src/Common/LinuxKernel.vala:290 -msgid "Fetching index..." +#: src/Common/LinuxKernel.vala:256 +msgid "cached" +msgstr "" + +#: src/Common/LinuxKernel.vala:268 +msgid "GET" +msgstr "" + +#: src/Common/LinuxKernel.vala:296 +#, fuzzy +msgid "Fetching individual kernel indexes..." msgstr "Ανάκτηση ευρετηρίου..." -#: src/Common/LinuxKernel.vala:329 -msgid "Fetching index from kernel.ubuntu.com..." -msgstr "Ανάκτηση ευρετηρίου από το kernel.ubuntu.com..." +#: src/Common/LinuxKernel.vala:338 +#, fuzzy +msgid "Fetching main index from" +msgstr "Ανάκτηση ευρετηρίου..." -#: src/Common/LinuxKernel.vala:585 +#: src/Common/LinuxKernel.vala:599 msgid "Could not find running kernel in list!" msgstr "Δεν ήταν δυνατή η εύρεση του τρέχοντος πυρήνα στη λίστα!" -#: src/Common/LinuxKernel.vala:591 +#: src/Common/LinuxKernel.vala:605 msgid "Could not find any kernels to uninstall" msgstr "Δεν βρέθηκε κανένας πυρήνας για απεγκατάσταση" -#: src/Common/LinuxKernel.vala:600 +#: src/Common/LinuxKernel.vala:614 #, fuzzy msgid "The following kernels will be uninstalled:" msgstr "Αυτός ο πυρήνας είναι ήδη εγκατεστημένος." -#: src/Common/LinuxKernel.vala:607 +#: src/Common/LinuxKernel.vala:621 msgid "Continue ?" msgstr "Συνέχεια;" -#: src/Common/LinuxKernel.vala:633 src/Console/AppConsole.vala:314 +#: src/Common/LinuxKernel.vala:644 src/Console/AppConsole.vala:298 msgid "Latest update" msgstr "Τελευταία αναβάθμιση" -#: src/Common/LinuxKernel.vala:644 src/Console/AppConsole.vala:321 +#: src/Common/LinuxKernel.vala:655 src/Console/AppConsole.vala:305 msgid "Latest point update" msgstr "Τελευταία ενημέρωση συντήρησης" -#: src/Common/LinuxKernel.vala:652 src/Console/AppConsole.vala:326 -#: src/Console/AppConsole.vala:387 +#: src/Common/LinuxKernel.vala:663 src/Console/AppConsole.vala:310 +#: src/Console/AppConsole.vala:365 msgid "No updates found" msgstr "Δεν βρέθηκαν ενημερώσεις" -#: src/Common/LinuxKernel.vala:662 +#: src/Common/LinuxKernel.vala:673 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Εγκατάσταση του πυρήνα έκδοσης %s ; (ν/ό):" -#: src/Common/LinuxKernel.vala:912 +#: src/Common/LinuxKernel.vala:924 msgid "Packages Available" msgstr "Διαθέσιμα πακέτα" -#: src/Common/LinuxKernel.vala:920 +#: src/Common/LinuxKernel.vala:932 msgid "Packages Installed" msgstr "Εγκατεστημένα πακέτα" -#: src/Common/LinuxKernel.vala:1000 +#: src/Common/LinuxKernel.vala:1011 msgid "Available Kernels" msgstr "Διαθέσιμοι πυρήνες" -#: src/Common/LinuxKernel.vala:1007 src/Gtk/MainWindow.vala:189 +#: src/Common/LinuxKernel.vala:1018 src/Gtk/MainWindow.vala:151 msgid "Installed" msgstr "Εγκατεστημένος" -#: src/Common/LinuxKernel.vala:1007 src/Gtk/MainWindow.vala:189 -#: src/Gtk/MainWindow.vala:610 src/Gtk/MainWindow.vala:624 +#: src/Common/LinuxKernel.vala:1018 src/Gtk/MainWindow.vala:151 +#: src/Gtk/MainWindow.vala:572 src/Gtk/MainWindow.vala:586 msgid "Running" msgstr "Ενεργός" -#: src/Common/LinuxKernel.vala:1044 +#: src/Common/LinuxKernel.vala:1055 msgid "Downloading" msgstr "Λήψη" -#: src/Common/LinuxKernel.vala:1063 src/Gtk/CustomMessageDialog.vala:150 -#: src/Gtk/CustomMessageDialog.vala:154 +#: src/Common/LinuxKernel.vala:1074 msgid "OK" msgstr "ΟΚ" -#: src/Common/LinuxKernel.vala:1068 +#: src/Common/LinuxKernel.vala:1079 msgid "ERROR" msgstr "ΣΦΑΛΜΑ" -#: src/Common/LinuxKernel.vala:1082 +#: src/Common/LinuxKernel.vala:1093 msgid "This kernel is already installed." msgstr "Αυτός ο πυρήνας είναι ήδη εγκατεστημένος." -#: src/Common/LinuxKernel.vala:1108 -msgid "Installation completed. A reboot is required to use the new kernel." -msgstr "" -"Η εγκατάσταση ολοκληρώθηκε. Απαιτείται επανεκκίνηση για τη χρήση του νέου " -"πυρήνα." - -#: src/Common/LinuxKernel.vala:1111 -msgid "Installation completed with errors" -msgstr "Η εγκατάσταση ολοκληρώθηκε με σφάλματα" +#: src/Common/LinuxKernel.vala:1129 +#, fuzzy +msgid "Uninstalling selected kernels" +msgstr "Απεγκατάσταση του καθορισμένου πυρήνα" -#: src/Common/LinuxKernel.vala:1132 -msgid "" -"Selected kernel is currently running and cannot be un-installed.\n" -" Install another kernel before un-installing this one." +#: src/Common/LinuxKernel.vala:1135 +msgid "requested" msgstr "" -"Ο επιλεγμένος πυρήνας εκτελείται αυτήν τη στιγμή και δεν μπορεί να " -"απεγκατασταθεί.\n" -" Εγκαταστήστε έναν άλλο πυρήνα πριν απεγκαταστήσετε αυτόν." - -#: src/Common/LinuxKernel.vala:1137 -msgid "Preparing to uninstall selected kernels" -msgstr "Προετοιμασία για απεγκατάσταση επιλεγμένων πυρήνων" - -#: src/Common/LinuxKernel.vala:1168 src/Common/LinuxKernel.vala:1215 -msgid "Un-install completed" -msgstr "Η απεγκατάσταση ολοκληρώθηκε" -#: src/Common/LinuxKernel.vala:1171 src/Common/LinuxKernel.vala:1218 -msgid "Un-install completed with errors" -msgstr "Η απεγκατάσταση ολοκληρώθηκε με σφάλματα" +#: src/Common/LinuxKernel.vala:1138 +msgid "skipping the currently booted kernel" +msgstr "" -#: src/Common/LinuxKernel.vala:1184 -msgid "" -"This kernel is currently running and cannot be un-installed.\n" -" Install another kernel before un-installing this one." +#: src/Common/LinuxKernel.vala:1154 +msgid "found" msgstr "" -"Αυτός ο πυρήνας εκτελείται αυτήν τη στιγμή και δεν μπορεί να " -"απεγκατασταθεί.\n" -" Εγκαταστήστε έναν άλλο πυρήνα πριν απεγκαταστήσετε αυτόν." -#: src/Common/Main.vala:241 +#: src/Common/LinuxKernel.vala:1157 +#, fuzzy +msgid "No packages to un-install!" +msgstr "Εγκατεστημένα πακέτα" + +#: src/Common/Main.vala:260 msgid "Called from" msgstr "Κλήθηκε από" -#: src/Common/Main.vala:275 +#: src/Common/Main.vala:294 msgid "Notifications are disabled" msgstr "Οι ειδοποιήσεις είναι απενεργοποιημένες" @@ -155,241 +146,230 @@ msgstr "Οι ειδοποιήσεις είναι απενεργοποιημέν msgid "File not found: %s" msgstr "Το αρχείο δεν βρέθηκε: %s" -#: src/Console/AppConsole.vala:62 src/Gtk/AppGtk.vala:152 +#: src/Console/AppConsole.vala:68 src/Gtk/AppGtk.vala:141 msgid "Syntax" msgstr "Σύνταξη" -#: src/Console/AppConsole.vala:64 +#: src/Console/AppConsole.vala:70 msgid "Commands" msgstr "Εντολές" -#: src/Console/AppConsole.vala:66 +#: src/Console/AppConsole.vala:72 msgid "Check for kernel updates" msgstr "Έλεγχος για ενημερώσεις πυρήνα" -#: src/Console/AppConsole.vala:67 +#: src/Console/AppConsole.vala:73 msgid "Check for kernel updates and notify current user" msgstr "Έλεγχος για ενημερώσεις πυρήνα και ειδοποίηση τρέχοντα χρήστη" -#: src/Console/AppConsole.vala:68 +#: src/Console/AppConsole.vala:74 msgid "List all available mainline kernels" msgstr "Εμφάνιση όλων των διαθέσιμων πυρήνων mainline" -#: src/Console/AppConsole.vala:69 +#: src/Console/AppConsole.vala:75 msgid "List installed kernels" msgstr "Εμφάνιση εγκατεστημένων πυρήνων" -#: src/Console/AppConsole.vala:70 +#: src/Console/AppConsole.vala:76 msgid "Install latest mainline kernel" msgstr "Εγκατάσταση του πιο πρόσφατου πυρήνα mainline" -#: src/Console/AppConsole.vala:71 +#: src/Console/AppConsole.vala:77 msgid "Install latest point update for current series" msgstr "Εγκαταστήστε την τελευταία ενημέρωση συντήρησης για την τρέχουσα σειρά" -#: src/Console/AppConsole.vala:72 +#: src/Console/AppConsole.vala:78 msgid "Install specified mainline kernel" msgstr "Εγκατάσταση του καθορισμένου mainline πυρήνα" -#: src/Console/AppConsole.vala:73 +#: src/Console/AppConsole.vala:79 msgid "Uninstall specified kernel" msgstr "Απεγκατάσταση του καθορισμένου πυρήνα" -#: src/Console/AppConsole.vala:74 +#: src/Console/AppConsole.vala:80 msgid "Uninstall kernels older than the running kernel" msgstr "Απεγκατάσταση πυρήνων παλαιότερων από τον ενεργό" -#: src/Console/AppConsole.vala:75 +#: src/Console/AppConsole.vala:81 msgid "Download specified kernels" msgstr "Λήψη των καθορισμένων πυρήνων" -#: src/Console/AppConsole.vala:76 -msgid "Remove files from application cache" -msgstr "Αφαίρεση αρχείων από την προσωρινή μνήμη της εφαρμογής" +#: src/Console/AppConsole.vala:82 +msgid "Delete cached info about available kernels" +msgstr "" -#: src/Console/AppConsole.vala:78 src/Gtk/AppGtk.vala:154 +#: src/Console/AppConsole.vala:84 src/Gtk/AppGtk.vala:143 msgid "Options" msgstr "Επιλογές" -#: src/Console/AppConsole.vala:80 +#: src/Console/AppConsole.vala:86 msgid "Include unstable and RC releases" msgstr "Συμπεριλάβετε ασταθείς και RC εκδόσεις" -#: src/Console/AppConsole.vala:81 src/Gtk/SettingsDialog.vala:163 -msgid "Hide unstable and RC releases" -msgstr "Απόκρυψη ασταθών και RC εκδόσεων" +#: src/Console/AppConsole.vala:87 +#, fuzzy +msgid "Exclude unstable and RC releases" +msgstr "Συμπεριλάβετε ασταθείς και RC εκδόσεις" -#: src/Console/AppConsole.vala:82 +#: src/Console/AppConsole.vala:88 msgid "Enable verbose debugging output" msgstr "Ενεργοποίηση αναλυτικής εξόδου εντοπισμού σφαλμάτων" -#: src/Console/AppConsole.vala:83 +#: src/Console/AppConsole.vala:89 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "Υποθέστε Ναι για όλα τα μηνύματα (μη διαδραστική λειτουργία)" -#: src/Console/AppConsole.vala:84 -msgid "Override user" -msgstr "Παράκαμψη χρήστη" - -#: src/Console/AppConsole.vala:87 +#: src/Console/AppConsole.vala:92 msgid "A version string taken from the output of --list" msgstr "Μια συμβολοσειρά έκδοσης που λαμβάνεται από την έξοδο του --list" -#: src/Console/AppConsole.vala:88 +#: src/Console/AppConsole.vala:93 msgid "" "One or more version strings (comma-separated) taken from the output of --list" msgstr "" "Μία ή περισσότερες συμβολοσειρές έκδοσης (χωρισμένες με κόμμα) που " "λαμβάνονται από την έξοδο του --list" -#: src/Console/AppConsole.vala:169 src/Gtk/AppGtk.vala:139 +#: src/Console/AppConsole.vala:173 src/Gtk/AppGtk.vala:127 msgid "Unknown option" msgstr "Άγνωστη επιλογή" -#: src/Console/AppConsole.vala:171 src/Console/AppConsole.vala:265 -#: src/Console/AppConsole.vala:294 +#: src/Console/AppConsole.vala:175 src/Console/AppConsole.vala:255 +#: src/Console/AppConsole.vala:284 msgid "Run" msgstr "Τρέξτε" -#: src/Console/AppConsole.vala:171 +#: src/Console/AppConsole.vala:175 msgid "to list all options" msgstr "για να παραθέσετε όλες τις επιλογές" -#: src/Console/AppConsole.vala:238 src/Console/AppConsole.vala:273 +#: src/Console/AppConsole.vala:227 src/Console/AppConsole.vala:263 msgid "No kernels specified" msgstr "Δεν έχουν καθοριστεί πυρήνες" -#: src/Console/AppConsole.vala:244 +#: src/Console/AppConsole.vala:233 msgid "Multiple kernels selected for installation. Select only one." msgstr "Επιλέχθηκαν πολλαπλοί πυρήνες για εγκατάσταση. Επιλέξτε μόνο ένα." -#: src/Console/AppConsole.vala:262 src/Gtk/MainWindow.vala:100 +#: src/Console/AppConsole.vala:252 msgid "Could not find requested version" msgstr "Δε βρέθηκε η ζητούμενη έκδοση" -#: src/Console/AppConsole.vala:265 +#: src/Console/AppConsole.vala:255 msgid "and use a version string listed in first column" msgstr "" "και χρησιμοποιήστε μια συμβολοσειρά έκδοσης που αναφέρεται στην πρώτη στήλη" -#: src/Console/AppConsole.vala:293 +#: src/Console/AppConsole.vala:283 msgid "Command not specified" msgstr "Η εντολή δεν προσδιορίστηκε" -#: src/Console/AppConsole.vala:294 +#: src/Console/AppConsole.vala:284 msgid "to list all commands" msgstr "για να παραθέσετε όλες τις εντολές" -#: src/Console/AppConsole.vala:360 +#: src/Console/AppConsole.vala:338 msgid "Show" msgstr "Προβολή" -#: src/Console/AppConsole.vala:365 src/Console/AppConsole.vala:377 +#: src/Console/AppConsole.vala:343 src/Console/AppConsole.vala:355 #, c-format msgid "Kernel %s Available" msgstr "Πυρήνας %s διαθέσιμος" -#: src/Console/AppConsole.vala:367 src/Console/AppConsole.vala:379 -#: src/Gtk/MainWindow.vala:333 +#: src/Console/AppConsole.vala:345 src/Console/AppConsole.vala:357 +#: src/Gtk/MainWindow.vala:282 msgid "Install" msgstr "Εγκατάσταση" -#: src/Gtk/AppGtk.vala:156 +#: src/Gtk/AppGtk.vala:141 +#, fuzzy +msgid "options" +msgstr "Επιλογές" + +#: src/Gtk/AppGtk.vala:145 msgid "Print debug information" msgstr "Εκτύπωση πληροφοριών εντοπισμού σφαλμάτων" -#: src/Gtk/AppGtk.vala:157 +#: src/Gtk/AppGtk.vala:146 msgid "Show all options" msgstr "Εμφάνιση όλων των επιλογών" -#: src/Gtk/CustomMessageDialog.vala:155 src/Gtk/ProgressWindow.vala:142 -#: src/Gtk/TerminalWindow.vala:148 -msgid "Cancel" -msgstr "Άκυρο" - -#: src/Gtk/CustomMessageDialog.vala:159 -msgid "Yes" -msgstr "" - -#: src/Gtk/CustomMessageDialog.vala:160 -msgid "No" -msgstr "" - -#: src/Gtk/MainWindow.vala:146 +#: src/Gtk/MainWindow.vala:108 msgid "Kernel" msgstr "Πυρήνας" -#: src/Gtk/MainWindow.vala:176 +#: src/Gtk/MainWindow.vala:138 msgid "Status" msgstr "Κατάσταση" -#: src/Gtk/MainWindow.vala:317 -msgid "Refresh" -msgstr "Ανανέωση" - -#: src/Gtk/MainWindow.vala:324 src/Utility/TeeJee.System.vala:42 -#, fuzzy -msgid "Internet connection is not active" -msgstr "Η σύνδεση στο διαδίκτυο δεν είναι ενεργή." - -#: src/Gtk/MainWindow.vala:324 src/Gtk/MainWindow.vala:518 -#: src/Gtk/MainWindow.vala:634 -msgid "No Internet" -msgstr "Χωρίς διαδίκτυο" - -#: src/Gtk/MainWindow.vala:344 +#: src/Gtk/MainWindow.vala:292 msgid "Uninstall" msgstr "Απεγκατάσταση" -#: src/Gtk/MainWindow.vala:377 src/Gtk/MainWindow.vala:410 -#: src/Gtk/MainWindow.vala:666 -msgid "Close window to exit..." -msgstr "Κλείστε το παράθυρο για έξοδο..." +#: src/Gtk/MainWindow.vala:325 src/Gtk/MainWindow.vala:370 +#: src/Gtk/MainWindow.vala:616 +msgid "DONE" +msgstr "" + +#: src/Gtk/MainWindow.vala:333 +msgid "Changes" +msgstr "Αλλαγές" -#: src/Gtk/MainWindow.vala:384 +#: src/Gtk/MainWindow.vala:344 msgid "Uninstall Old" msgstr "Απεγκατάσταση παλαιών" -#: src/Gtk/MainWindow.vala:385 +#: src/Gtk/MainWindow.vala:345 msgid "Uninstall kernels older than running kernel" msgstr "Απεγκαταστήστε πυρήνες παλαιότερους από τον ενεργό" -#: src/Gtk/MainWindow.vala:417 -msgid "Changes" -msgstr "Αλλαγές" +#: src/Gtk/MainWindow.vala:378 +msgid "Reload" +msgstr "" -#: src/Gtk/MainWindow.vala:428 src/Gtk/SettingsDialog.vala:50 +#: src/Gtk/MainWindow.vala:391 src/Gtk/SettingsDialog.vala:50 msgid "Settings" msgstr "Ρυθμίσεις" -#: src/Gtk/MainWindow.vala:451 +#: src/Gtk/MainWindow.vala:413 msgid "About" msgstr "Σχετικά" -#: src/Gtk/MainWindow.vala:496 +#: src/Gtk/MainWindow.vala:418 +msgid "Exit" +msgstr "" + +#: src/Gtk/MainWindow.vala:470 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Πρόγραμμα αναβάθμισης πυρήνα για διανομές που βασίζονται στο Ubuntu" -#: src/Gtk/MainWindow.vala:497 +#: src/Gtk/MainWindow.vala:471 msgid "Forked" msgstr "Forked" -#: src/Gtk/MainWindow.vala:497 +#: src/Gtk/MainWindow.vala:471 msgid "Original" msgstr "Πρωτότυπο" -#: src/Gtk/MainWindow.vala:518 src/Gtk/MainWindow.vala:634 -msgid "Internet connection is not active." -msgstr "Η σύνδεση στο διαδίκτυο δεν είναι ενεργή." - -#: src/Gtk/MainWindow.vala:531 +#: src/Gtk/MainWindow.vala:500 +#, fuzzy msgid "Refreshing..." msgstr "Ανανέωση..." -#: src/Gtk/MainWindow.vala:620 +#: src/Gtk/MainWindow.vala:582 msgid "available" msgstr "διαθέσιμος" +#: src/Gtk/MainWindow.vala:625 +#, fuzzy +msgid "Can not reach" +msgstr "Αποτυχία ανάγνωσης του αρχείου" + +#: src/Gtk/ProgressWindow.vala:126 src/Gtk/TerminalWindow.vala:148 +msgid "Cancel" +msgstr "Άκυρο" + #: src/Gtk/SettingsDialog.vala:60 msgid "Notification" msgstr "Ειδοποίηση" @@ -430,6 +410,10 @@ msgstr "Δευτερόλεπτα" msgid "Display" msgstr "Απεικόνιση" +#: src/Gtk/SettingsDialog.vala:163 +msgid "Hide unstable and RC releases" +msgstr "Απόκρυψη ασταθών και RC εκδόσεων" + #: src/Gtk/SettingsDialog.vala:177 msgid "Show N previous major versions " msgstr "Εμφάνιση N προηγούμενων κύριων εκδόσεων " @@ -438,19 +422,15 @@ msgstr "Εμφάνιση N προηγούμενων κύριων εκδόσεω msgid "Other" msgstr "Άλλες" -#: src/Gtk/SettingsDialog.vala:200 -msgid "Skip internet connection check" -msgstr "Παράβλεψη ελέγχου σύνδεσης στο διαδίκτυο" - -#: src/Gtk/SettingsDialog.vala:213 +#: src/Gtk/SettingsDialog.vala:203 msgid "Internet connection timeout in " msgstr "Λήξη χρονικού ορίου σύνδεσης στο διαδίκτυο " -#: src/Gtk/SettingsDialog.vala:228 +#: src/Gtk/SettingsDialog.vala:218 msgid "seconds" msgstr "δευτερόλεπτα" -#: src/Gtk/SettingsDialog.vala:235 +#: src/Gtk/SettingsDialog.vala:225 msgid "Max concurrent downloads" msgstr "Μέγιστες ταυτόχρονες λήψεις" @@ -490,7 +470,7 @@ msgstr "Τεκμηριωτές" msgid "Third Party Inclusions" msgstr "Συμπεριλήψεις τρίτων" -#: src/Utility/Gtk/GtkHelper.vala:59 +#: src/Utility/Gtk/GtkHelper.vala:49 msgid "Missing Icon" msgstr "Ελλείπον εικονίδιο" diff --git a/po/es.po b/po/es.po index 05ce1014..a14cd944 100644 --- a/po/es.po +++ b/po/es.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-02-23 17:56-0500\n" +"POT-Creation-Date: 2023-03-04 22:34-0500\n" "PO-Revision-Date: 2018-01-03 02:03-0600\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish\n" @@ -21,133 +21,124 @@ msgstr "Distribución" msgid "Architecture" msgstr "Arquitectura del sistema" -#: src/Common/LinuxKernel.vala:290 -msgid "Fetching index..." +#: src/Common/LinuxKernel.vala:256 +msgid "cached" +msgstr "" + +#: src/Common/LinuxKernel.vala:268 +msgid "GET" +msgstr "" + +#: src/Common/LinuxKernel.vala:296 +#, fuzzy +msgid "Fetching individual kernel indexes..." msgstr "Recuperando índice..." -#: src/Common/LinuxKernel.vala:329 -msgid "Fetching index from kernel.ubuntu.com..." -msgstr "Recuperando índice de kernel.ubuntu.com…" +#: src/Common/LinuxKernel.vala:338 +#, fuzzy +msgid "Fetching main index from" +msgstr "Recuperando índice..." -#: src/Common/LinuxKernel.vala:585 +#: src/Common/LinuxKernel.vala:599 msgid "Could not find running kernel in list!" msgstr "¡No se pudo encontrar el núcleo en ejecución en la lista!" -#: src/Common/LinuxKernel.vala:591 +#: src/Common/LinuxKernel.vala:605 #, fuzzy msgid "Could not find any kernels to uninstall" msgstr "Seleccione los núcleos que se desinstalarán" -#: src/Common/LinuxKernel.vala:600 +#: src/Common/LinuxKernel.vala:614 #, fuzzy msgid "The following kernels will be uninstalled:" msgstr "Los siguientes kernels serán eliminados:" -#: src/Common/LinuxKernel.vala:607 +#: src/Common/LinuxKernel.vala:621 msgid "Continue ?" msgstr "¿Continuar?" -#: src/Common/LinuxKernel.vala:633 src/Console/AppConsole.vala:314 +#: src/Common/LinuxKernel.vala:644 src/Console/AppConsole.vala:298 msgid "Latest update" msgstr "" -#: src/Common/LinuxKernel.vala:644 src/Console/AppConsole.vala:321 +#: src/Common/LinuxKernel.vala:655 src/Console/AppConsole.vala:305 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:652 src/Console/AppConsole.vala:326 -#: src/Console/AppConsole.vala:387 +#: src/Common/LinuxKernel.vala:663 src/Console/AppConsole.vala:310 +#: src/Console/AppConsole.vala:365 msgid "No updates found" msgstr "No se encontró ninguna actualización" -#: src/Common/LinuxKernel.vala:662 +#: src/Common/LinuxKernel.vala:673 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "" -#: src/Common/LinuxKernel.vala:912 +#: src/Common/LinuxKernel.vala:924 msgid "Packages Available" msgstr "Paquetes disponibles" -#: src/Common/LinuxKernel.vala:920 +#: src/Common/LinuxKernel.vala:932 msgid "Packages Installed" msgstr "Paquetes instalados" -#: src/Common/LinuxKernel.vala:1000 +#: src/Common/LinuxKernel.vala:1011 msgid "Available Kernels" msgstr "Núcleos disponibles" -#: src/Common/LinuxKernel.vala:1007 src/Gtk/MainWindow.vala:189 +#: src/Common/LinuxKernel.vala:1018 src/Gtk/MainWindow.vala:151 msgid "Installed" msgstr "Instalado" -#: src/Common/LinuxKernel.vala:1007 src/Gtk/MainWindow.vala:189 -#: src/Gtk/MainWindow.vala:610 src/Gtk/MainWindow.vala:624 +#: src/Common/LinuxKernel.vala:1018 src/Gtk/MainWindow.vala:151 +#: src/Gtk/MainWindow.vala:572 src/Gtk/MainWindow.vala:586 msgid "Running" msgstr "En ejecución" -#: src/Common/LinuxKernel.vala:1044 +#: src/Common/LinuxKernel.vala:1055 msgid "Downloading" msgstr "Descargando" -#: src/Common/LinuxKernel.vala:1063 src/Gtk/CustomMessageDialog.vala:150 -#: src/Gtk/CustomMessageDialog.vala:154 +#: src/Common/LinuxKernel.vala:1074 msgid "OK" msgstr "Aceptar" -#: src/Common/LinuxKernel.vala:1068 +#: src/Common/LinuxKernel.vala:1079 msgid "ERROR" msgstr "ERROR" -#: src/Common/LinuxKernel.vala:1082 +#: src/Common/LinuxKernel.vala:1093 msgid "This kernel is already installed." msgstr "Este núcleo ya se instaló." -#: src/Common/LinuxKernel.vala:1108 -msgid "Installation completed. A reboot is required to use the new kernel." -msgstr "" -"Instalación finalizada. Se necesita reiniciar para utilizar el núcleo nuevo." - -#: src/Common/LinuxKernel.vala:1111 -msgid "Installation completed with errors" -msgstr "Instalación finalizada con errores" - -#: src/Common/LinuxKernel.vala:1132 +#: src/Common/LinuxKernel.vala:1129 #, fuzzy -msgid "" -"Selected kernel is currently running and cannot be un-installed.\n" -" Install another kernel before un-installing this one." -msgstr "" -"El núcleo seleccionado está en ejecución y no puede desinstalarse.\n" -"Instale otro núcleo antes de desinstalar este." +msgid "Uninstalling selected kernels" +msgstr "Instalar núcleo troncal especificado" -#: src/Common/LinuxKernel.vala:1137 -#, fuzzy -msgid "Preparing to uninstall selected kernels" -msgstr "Preparándose para desinstalar los núcleos seleccionados" +#: src/Common/LinuxKernel.vala:1135 +msgid "requested" +msgstr "" -#: src/Common/LinuxKernel.vala:1168 src/Common/LinuxKernel.vala:1215 -msgid "Un-install completed" -msgstr "Desinstalación finalizada" +#: src/Common/LinuxKernel.vala:1138 +msgid "skipping the currently booted kernel" +msgstr "" -#: src/Common/LinuxKernel.vala:1171 src/Common/LinuxKernel.vala:1218 -msgid "Un-install completed with errors" -msgstr "Desinstalación finalizada con errores" +#: src/Common/LinuxKernel.vala:1154 +msgid "found" +msgstr "" -#: src/Common/LinuxKernel.vala:1184 +#: src/Common/LinuxKernel.vala:1157 #, fuzzy -msgid "" -"This kernel is currently running and cannot be un-installed.\n" -" Install another kernel before un-installing this one." -msgstr "" -"Este núcleo está en ejecución y no se puede desinstalar.\n" -"Instale otro núcleo antes de desinstalar este." +msgid "No packages to un-install!" +msgstr "Paquetes instalados" -#: src/Common/Main.vala:241 +#: src/Common/Main.vala:260 msgid "Called from" msgstr "" -#: src/Common/Main.vala:275 +#: src/Common/Main.vala:294 #, fuzzy msgid "Notifications are disabled" msgstr "Notificación" @@ -157,249 +148,237 @@ msgstr "Notificación" msgid "File not found: %s" msgstr "No se encontró el archivo: %s" -#: src/Console/AppConsole.vala:62 src/Gtk/AppGtk.vala:152 +#: src/Console/AppConsole.vala:68 src/Gtk/AppGtk.vala:141 msgid "Syntax" msgstr "Sintaxis" -#: src/Console/AppConsole.vala:64 +#: src/Console/AppConsole.vala:70 msgid "Commands" msgstr "Comandos" -#: src/Console/AppConsole.vala:66 +#: src/Console/AppConsole.vala:72 msgid "Check for kernel updates" msgstr "Buscar actualizaciones del núcleo" -#: src/Console/AppConsole.vala:67 +#: src/Console/AppConsole.vala:73 msgid "Check for kernel updates and notify current user" msgstr "Compruebe las actualizaciones del kernel y notifique al usuario actual" -#: src/Console/AppConsole.vala:68 +#: src/Console/AppConsole.vala:74 msgid "List all available mainline kernels" msgstr "Mostrar todos los núcleos troncales disponibles" -#: src/Console/AppConsole.vala:69 +#: src/Console/AppConsole.vala:75 msgid "List installed kernels" msgstr "Mostrar kernels disponibles" -#: src/Console/AppConsole.vala:70 +#: src/Console/AppConsole.vala:76 msgid "Install latest mainline kernel" msgstr "Instalar kernel troncal especificado" -#: src/Console/AppConsole.vala:71 +#: src/Console/AppConsole.vala:77 msgid "Install latest point update for current series" msgstr "" -#: src/Console/AppConsole.vala:72 +#: src/Console/AppConsole.vala:78 msgid "Install specified mainline kernel" msgstr "Instalar núcleo troncal especificado" -#: src/Console/AppConsole.vala:73 +#: src/Console/AppConsole.vala:79 #, fuzzy msgid "Uninstall specified kernel" msgstr "Instalar núcleo troncal especificado" -#: src/Console/AppConsole.vala:74 +#: src/Console/AppConsole.vala:80 msgid "Uninstall kernels older than the running kernel" msgstr "" -#: src/Console/AppConsole.vala:75 +#: src/Console/AppConsole.vala:81 #, fuzzy msgid "Download specified kernels" msgstr "Descargar paquetes del núcleo especificado" -#: src/Console/AppConsole.vala:76 -msgid "Remove files from application cache" -msgstr "Quitar archivos de la antememoria de la aplicación" +#: src/Console/AppConsole.vala:82 +msgid "Delete cached info about available kernels" +msgstr "" -#: src/Console/AppConsole.vala:78 src/Gtk/AppGtk.vala:154 +#: src/Console/AppConsole.vala:84 src/Gtk/AppGtk.vala:143 msgid "Options" msgstr "Opciones" -#: src/Console/AppConsole.vala:80 +#: src/Console/AppConsole.vala:86 #, fuzzy msgid "Include unstable and RC releases" msgstr "Ocultar versiones inestables y RC" -#: src/Console/AppConsole.vala:81 src/Gtk/SettingsDialog.vala:163 -msgid "Hide unstable and RC releases" +#: src/Console/AppConsole.vala:87 +#, fuzzy +msgid "Exclude unstable and RC releases" msgstr "Ocultar versiones inestables y RC" -#: src/Console/AppConsole.vala:82 +#: src/Console/AppConsole.vala:88 msgid "Enable verbose debugging output" msgstr "" -#: src/Console/AppConsole.vala:83 +#: src/Console/AppConsole.vala:89 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "Asumir Sí para todas las solicitudes (modo no interactivo)" -#: src/Console/AppConsole.vala:84 -msgid "Override user" -msgstr "" - -#: src/Console/AppConsole.vala:87 +#: src/Console/AppConsole.vala:92 msgid "A version string taken from the output of --list" msgstr "" -#: src/Console/AppConsole.vala:88 +#: src/Console/AppConsole.vala:93 msgid "" "One or more version strings (comma-separated) taken from the output of --list" msgstr "" -#: src/Console/AppConsole.vala:169 src/Gtk/AppGtk.vala:139 +#: src/Console/AppConsole.vala:173 src/Gtk/AppGtk.vala:127 msgid "Unknown option" msgstr "Opción desconocida" -#: src/Console/AppConsole.vala:171 src/Console/AppConsole.vala:265 -#: src/Console/AppConsole.vala:294 +#: src/Console/AppConsole.vala:175 src/Console/AppConsole.vala:255 +#: src/Console/AppConsole.vala:284 #, fuzzy msgid "Run" msgstr "En ejecución" -#: src/Console/AppConsole.vala:171 +#: src/Console/AppConsole.vala:175 #, fuzzy msgid "to list all options" msgstr "Mostrar todas las opciones" -#: src/Console/AppConsole.vala:238 src/Console/AppConsole.vala:273 +#: src/Console/AppConsole.vala:227 src/Console/AppConsole.vala:263 msgid "No kernels specified" msgstr "" -#: src/Console/AppConsole.vala:244 +#: src/Console/AppConsole.vala:233 msgid "Multiple kernels selected for installation. Select only one." msgstr "Se seleccionaron varios núcleos para su instalación. Elija solo uno." -#: src/Console/AppConsole.vala:262 src/Gtk/MainWindow.vala:100 +#: src/Console/AppConsole.vala:252 msgid "Could not find requested version" msgstr "No se pudo encontrar la versión solicitada" -#: src/Console/AppConsole.vala:265 +#: src/Console/AppConsole.vala:255 msgid "and use a version string listed in first column" msgstr "" -#: src/Console/AppConsole.vala:293 +#: src/Console/AppConsole.vala:283 msgid "Command not specified" msgstr "Coomand no especificado" -#: src/Console/AppConsole.vala:294 +#: src/Console/AppConsole.vala:284 #, fuzzy msgid "to list all commands" msgstr "Mostrar todas las opciones" -#: src/Console/AppConsole.vala:360 +#: src/Console/AppConsole.vala:338 msgid "Show" msgstr "" -#: src/Console/AppConsole.vala:365 src/Console/AppConsole.vala:377 +#: src/Console/AppConsole.vala:343 src/Console/AppConsole.vala:355 #, fuzzy, c-format msgid "Kernel %s Available" msgstr "Paquetes disponibles" -#: src/Console/AppConsole.vala:367 src/Console/AppConsole.vala:379 -#: src/Gtk/MainWindow.vala:333 +#: src/Console/AppConsole.vala:345 src/Console/AppConsole.vala:357 +#: src/Gtk/MainWindow.vala:282 msgid "Install" msgstr "Instalar" -#: src/Gtk/AppGtk.vala:156 +#: src/Gtk/AppGtk.vala:141 +#, fuzzy +msgid "options" +msgstr "Opciones" + +#: src/Gtk/AppGtk.vala:145 msgid "Print debug information" msgstr "Mostrar información de depuración" -#: src/Gtk/AppGtk.vala:157 +#: src/Gtk/AppGtk.vala:146 msgid "Show all options" msgstr "Mostrar todas las opciones" -#: src/Gtk/CustomMessageDialog.vala:155 src/Gtk/ProgressWindow.vala:142 -#: src/Gtk/TerminalWindow.vala:148 -msgid "Cancel" -msgstr "Cancelar" - -#: src/Gtk/CustomMessageDialog.vala:159 -msgid "Yes" -msgstr "" - -#: src/Gtk/CustomMessageDialog.vala:160 -msgid "No" -msgstr "" - -#: src/Gtk/MainWindow.vala:146 +#: src/Gtk/MainWindow.vala:108 msgid "Kernel" msgstr "Núcleo" -#: src/Gtk/MainWindow.vala:176 +#: src/Gtk/MainWindow.vala:138 msgid "Status" msgstr "Estado" -#: src/Gtk/MainWindow.vala:317 -msgid "Refresh" -msgstr "Actualizar" - -#: src/Gtk/MainWindow.vala:324 src/Utility/TeeJee.System.vala:42 -#, fuzzy -msgid "Internet connection is not active" -msgstr "La conexión a Internet está inactiva" - -#: src/Gtk/MainWindow.vala:324 src/Gtk/MainWindow.vala:518 -#: src/Gtk/MainWindow.vala:634 -msgid "No Internet" -msgstr "No hay Internet" - -#: src/Gtk/MainWindow.vala:344 +#: src/Gtk/MainWindow.vala:292 #, fuzzy msgid "Uninstall" msgstr "Instalar" -#: src/Gtk/MainWindow.vala:377 src/Gtk/MainWindow.vala:410 -#: src/Gtk/MainWindow.vala:666 -msgid "Close window to exit..." +#: src/Gtk/MainWindow.vala:325 src/Gtk/MainWindow.vala:370 +#: src/Gtk/MainWindow.vala:616 +msgid "DONE" msgstr "" -#: src/Gtk/MainWindow.vala:384 +#: src/Gtk/MainWindow.vala:333 +msgid "Changes" +msgstr "Cambios" + +#: src/Gtk/MainWindow.vala:344 #, fuzzy msgid "Uninstall Old" msgstr "Desinstalación finalizada" -#: src/Gtk/MainWindow.vala:385 +#: src/Gtk/MainWindow.vala:345 msgid "Uninstall kernels older than running kernel" msgstr "" -#: src/Gtk/MainWindow.vala:417 -msgid "Changes" -msgstr "Cambios" +#: src/Gtk/MainWindow.vala:378 +msgid "Reload" +msgstr "" -#: src/Gtk/MainWindow.vala:428 src/Gtk/SettingsDialog.vala:50 +#: src/Gtk/MainWindow.vala:391 src/Gtk/SettingsDialog.vala:50 msgid "Settings" msgstr "Configuración" -#: src/Gtk/MainWindow.vala:451 +#: src/Gtk/MainWindow.vala:413 msgid "About" msgstr "Acerca de" -#: src/Gtk/MainWindow.vala:496 +#: src/Gtk/MainWindow.vala:418 +msgid "Exit" +msgstr "" + +#: src/Gtk/MainWindow.vala:470 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "" "Herramienta de renovación de núcleo para distribuciones basadas en Ubuntu" -#: src/Gtk/MainWindow.vala:497 +#: src/Gtk/MainWindow.vala:471 msgid "Forked" msgstr "" -#: src/Gtk/MainWindow.vala:497 +#: src/Gtk/MainWindow.vala:471 msgid "Original" msgstr "" -#: src/Gtk/MainWindow.vala:518 src/Gtk/MainWindow.vala:634 +#: src/Gtk/MainWindow.vala:500 #, fuzzy -msgid "Internet connection is not active." -msgstr "La conexión a Internet está inactiva" - -#: src/Gtk/MainWindow.vala:531 msgid "Refreshing..." msgstr "Actualizando…" -#: src/Gtk/MainWindow.vala:620 +#: src/Gtk/MainWindow.vala:582 #, fuzzy msgid "available" msgstr "Paquetes disponibles" +#: src/Gtk/MainWindow.vala:625 +#, fuzzy +msgid "Can not reach" +msgstr "Falló la lectura del archivo" + +#: src/Gtk/ProgressWindow.vala:126 src/Gtk/TerminalWindow.vala:148 +msgid "Cancel" +msgstr "Cancelar" + #: src/Gtk/SettingsDialog.vala:60 msgid "Notification" msgstr "Notificación" @@ -440,6 +419,10 @@ msgstr "" msgid "Display" msgstr "Mostrar" +#: src/Gtk/SettingsDialog.vala:163 +msgid "Hide unstable and RC releases" +msgstr "Ocultar versiones inestables y RC" + #: src/Gtk/SettingsDialog.vala:177 msgid "Show N previous major versions " msgstr "" @@ -448,20 +431,16 @@ msgstr "" msgid "Other" msgstr "" -#: src/Gtk/SettingsDialog.vala:200 -msgid "Skip internet connection check" -msgstr "La conexión a Internet está inactiva" - -#: src/Gtk/SettingsDialog.vala:213 +#: src/Gtk/SettingsDialog.vala:203 #, fuzzy msgid "Internet connection timeout in " msgstr "La conexión a Internet está inactiva" -#: src/Gtk/SettingsDialog.vala:228 +#: src/Gtk/SettingsDialog.vala:218 msgid "seconds" msgstr "" -#: src/Gtk/SettingsDialog.vala:235 +#: src/Gtk/SettingsDialog.vala:225 msgid "Max concurrent downloads" msgstr "" @@ -502,7 +481,7 @@ msgstr "Documentadores" msgid "Third Party Inclusions" msgstr "Herramientas de terceros" -#: src/Utility/Gtk/GtkHelper.vala:59 +#: src/Utility/Gtk/GtkHelper.vala:49 msgid "Missing Icon" msgstr "Falta el icono" diff --git a/po/fr.po b/po/fr.po index acc2cebc..5539179e 100644 --- a/po/fr.po +++ b/po/fr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-02-23 17:56-0500\n" +"POT-Creation-Date: 2023-03-04 22:34-0500\n" "PO-Revision-Date: 2018-08-05 15:50+0200\n" "Last-Translator: Yolateng0 \n" "Language-Team: French\n" @@ -21,134 +21,124 @@ msgstr "Distribution" msgid "Architecture" msgstr "Architecture" -#: src/Common/LinuxKernel.vala:290 -msgid "Fetching index..." +#: src/Common/LinuxKernel.vala:256 +msgid "cached" +msgstr "" + +#: src/Common/LinuxKernel.vala:268 +msgid "GET" +msgstr "" + +#: src/Common/LinuxKernel.vala:296 +#, fuzzy +msgid "Fetching individual kernel indexes..." msgstr "Récupération de l'index..." -#: src/Common/LinuxKernel.vala:329 -msgid "Fetching index from kernel.ubuntu.com..." -msgstr "Récupération de l'index depuis kernel.ubuntu.com..." +#: src/Common/LinuxKernel.vala:338 +#, fuzzy +msgid "Fetching main index from" +msgstr "Récupération de l'index..." -#: src/Common/LinuxKernel.vala:585 +#: src/Common/LinuxKernel.vala:599 msgid "Could not find running kernel in list!" msgstr "Impossible de trouver la version courante dans la liste!" -#: src/Common/LinuxKernel.vala:591 +#: src/Common/LinuxKernel.vala:605 #, fuzzy msgid "Could not find any kernels to uninstall" msgstr "Impossible de trouver de noyaux à supprimer" -#: src/Common/LinuxKernel.vala:600 +#: src/Common/LinuxKernel.vala:614 #, fuzzy msgid "The following kernels will be uninstalled:" msgstr "Les noyaux suivants seront supprimés:" -#: src/Common/LinuxKernel.vala:607 +#: src/Common/LinuxKernel.vala:621 msgid "Continue ?" msgstr "Reprendre ?" -#: src/Common/LinuxKernel.vala:633 src/Console/AppConsole.vala:314 +#: src/Common/LinuxKernel.vala:644 src/Console/AppConsole.vala:298 msgid "Latest update" msgstr "Dernière mise à jour" -#: src/Common/LinuxKernel.vala:644 src/Console/AppConsole.vala:321 +#: src/Common/LinuxKernel.vala:655 src/Console/AppConsole.vala:305 msgid "Latest point update" msgstr "Dernière mise à jour mineure" -#: src/Common/LinuxKernel.vala:652 src/Console/AppConsole.vala:326 -#: src/Console/AppConsole.vala:387 +#: src/Common/LinuxKernel.vala:663 src/Console/AppConsole.vala:310 +#: src/Console/AppConsole.vala:365 msgid "No updates found" msgstr "Aucune mise à jour disponible" -#: src/Common/LinuxKernel.vala:662 +#: src/Common/LinuxKernel.vala:673 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Installer le noyau en version %s ? (y/n): " -#: src/Common/LinuxKernel.vala:912 +#: src/Common/LinuxKernel.vala:924 msgid "Packages Available" msgstr "Paquets Disponibles" -#: src/Common/LinuxKernel.vala:920 +#: src/Common/LinuxKernel.vala:932 msgid "Packages Installed" msgstr "Paquets Installés" -#: src/Common/LinuxKernel.vala:1000 +#: src/Common/LinuxKernel.vala:1011 msgid "Available Kernels" msgstr "Noyaux Disponibles" -#: src/Common/LinuxKernel.vala:1007 src/Gtk/MainWindow.vala:189 +#: src/Common/LinuxKernel.vala:1018 src/Gtk/MainWindow.vala:151 msgid "Installed" msgstr "Installé" -#: src/Common/LinuxKernel.vala:1007 src/Gtk/MainWindow.vala:189 -#: src/Gtk/MainWindow.vala:610 src/Gtk/MainWindow.vala:624 +#: src/Common/LinuxKernel.vala:1018 src/Gtk/MainWindow.vala:151 +#: src/Gtk/MainWindow.vala:572 src/Gtk/MainWindow.vala:586 msgid "Running" msgstr "Actuel" -#: src/Common/LinuxKernel.vala:1044 +#: src/Common/LinuxKernel.vala:1055 msgid "Downloading" msgstr "Téléchargement" -#: src/Common/LinuxKernel.vala:1063 src/Gtk/CustomMessageDialog.vala:150 -#: src/Gtk/CustomMessageDialog.vala:154 +#: src/Common/LinuxKernel.vala:1074 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:1068 +#: src/Common/LinuxKernel.vala:1079 msgid "ERROR" msgstr "ERREUR" -#: src/Common/LinuxKernel.vala:1082 +#: src/Common/LinuxKernel.vala:1093 msgid "This kernel is already installed." msgstr "Ce noyau est déjà installé." -#: src/Common/LinuxKernel.vala:1108 -msgid "Installation completed. A reboot is required to use the new kernel." -msgstr "" -"Installation complétée. Un redémarrage est nécessaire pour utiliser le " -"nouveau noyau." - -#: src/Common/LinuxKernel.vala:1111 -msgid "Installation completed with errors" -msgstr "Installation terminée avec des erreurs" - -#: src/Common/LinuxKernel.vala:1132 +#: src/Common/LinuxKernel.vala:1129 #, fuzzy -msgid "" -"Selected kernel is currently running and cannot be un-installed.\n" -" Install another kernel before un-installing this one." -msgstr "" -"Ce noyau est en cours d'exécution et ne peut pas être supprimé.\n" -" Installez un autre noyau avant de retirer celui-ci." +msgid "Uninstalling selected kernels" +msgstr "Installer les noyaux spécifiés" -#: src/Common/LinuxKernel.vala:1137 -#, fuzzy -msgid "Preparing to uninstall selected kernels" -msgstr "Préparation à la suppression des noyaux sélectionnés" +#: src/Common/LinuxKernel.vala:1135 +msgid "requested" +msgstr "" -#: src/Common/LinuxKernel.vala:1168 src/Common/LinuxKernel.vala:1215 -msgid "Un-install completed" -msgstr "Désinstallation complète" +#: src/Common/LinuxKernel.vala:1138 +msgid "skipping the currently booted kernel" +msgstr "" -#: src/Common/LinuxKernel.vala:1171 src/Common/LinuxKernel.vala:1218 -msgid "Un-install completed with errors" -msgstr "Désinstallation terminée avec des erreurs" +#: src/Common/LinuxKernel.vala:1154 +msgid "found" +msgstr "" -#: src/Common/LinuxKernel.vala:1184 +#: src/Common/LinuxKernel.vala:1157 #, fuzzy -msgid "" -"This kernel is currently running and cannot be un-installed.\n" -" Install another kernel before un-installing this one." -msgstr "" -"Ce noyau est en cours d'exécution et ne peut pas être supprimé.\n" -" Installez un autre noyau avant de retirer celui-ci." +msgid "No packages to un-install!" +msgstr "Paquets Installés" -#: src/Common/Main.vala:241 +#: src/Common/Main.vala:260 msgid "Called from" msgstr "" -#: src/Common/Main.vala:275 +#: src/Common/Main.vala:294 msgid "Notifications are disabled" msgstr "Les notifications sont désactivées" @@ -157,250 +147,239 @@ msgstr "Les notifications sont désactivées" msgid "File not found: %s" msgstr "Fichier non trouvé: %s" -#: src/Console/AppConsole.vala:62 src/Gtk/AppGtk.vala:152 +#: src/Console/AppConsole.vala:68 src/Gtk/AppGtk.vala:141 msgid "Syntax" msgstr "Syntaxe" -#: src/Console/AppConsole.vala:64 +#: src/Console/AppConsole.vala:70 msgid "Commands" msgstr "Commandes" -#: src/Console/AppConsole.vala:66 +#: src/Console/AppConsole.vala:72 msgid "Check for kernel updates" msgstr "Vérifier les mises à jour de noyau" -#: src/Console/AppConsole.vala:67 +#: src/Console/AppConsole.vala:73 msgid "Check for kernel updates and notify current user" msgstr "Vérifier les mises à jour de noyau et notifier l'utilisateur" -#: src/Console/AppConsole.vala:68 +#: src/Console/AppConsole.vala:74 msgid "List all available mainline kernels" msgstr "Lister tous les noyaux mainline disponibles" -#: src/Console/AppConsole.vala:69 +#: src/Console/AppConsole.vala:75 msgid "List installed kernels" msgstr "Lister les noyaux installés" -#: src/Console/AppConsole.vala:70 +#: src/Console/AppConsole.vala:76 msgid "Install latest mainline kernel" msgstr "Installer le dernier noyau mainline" -#: src/Console/AppConsole.vala:71 +#: src/Console/AppConsole.vala:77 msgid "Install latest point update for current series" msgstr "Installer la dernière version mineure pour la série courante" -#: src/Console/AppConsole.vala:72 +#: src/Console/AppConsole.vala:78 msgid "Install specified mainline kernel" msgstr "Installer le noyau mainline spécifié" -#: src/Console/AppConsole.vala:73 +#: src/Console/AppConsole.vala:79 #, fuzzy msgid "Uninstall specified kernel" msgstr "Installer les noyaux spécifiés" -#: src/Console/AppConsole.vala:74 +#: src/Console/AppConsole.vala:80 #, fuzzy msgid "Uninstall kernels older than the running kernel" msgstr "Désinstalle les noyaux plus anciens que le noyau courant" -#: src/Console/AppConsole.vala:75 +#: src/Console/AppConsole.vala:81 msgid "Download specified kernels" msgstr "Télécharger les noyaux spécifiés" -#: src/Console/AppConsole.vala:76 -msgid "Remove files from application cache" -msgstr "Supprimer les fichiers du cache de l'application" +#: src/Console/AppConsole.vala:82 +msgid "Delete cached info about available kernels" +msgstr "" -#: src/Console/AppConsole.vala:78 src/Gtk/AppGtk.vala:154 +#: src/Console/AppConsole.vala:84 src/Gtk/AppGtk.vala:143 msgid "Options" msgstr "Options" -#: src/Console/AppConsole.vala:80 +#: src/Console/AppConsole.vala:86 #, fuzzy msgid "Include unstable and RC releases" msgstr "Cacher les versions instables et RC" -#: src/Console/AppConsole.vala:81 src/Gtk/SettingsDialog.vala:163 -msgid "Hide unstable and RC releases" +#: src/Console/AppConsole.vala:87 +#, fuzzy +msgid "Exclude unstable and RC releases" msgstr "Cacher les versions instables et RC" -#: src/Console/AppConsole.vala:82 +#: src/Console/AppConsole.vala:88 msgid "Enable verbose debugging output" msgstr "Active la sortie verbeuse de débogage" -#: src/Console/AppConsole.vala:83 +#: src/Console/AppConsole.vala:89 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "" -#: src/Console/AppConsole.vala:84 -msgid "Override user" -msgstr "Surcharge l'utilisateur" - -#: src/Console/AppConsole.vala:87 +#: src/Console/AppConsole.vala:92 msgid "A version string taken from the output of --list" msgstr "Une version prise du resultat de --list" -#: src/Console/AppConsole.vala:88 +#: src/Console/AppConsole.vala:93 msgid "" "One or more version strings (comma-separated) taken from the output of --list" msgstr "" "Une ou plusieurs versions (séparées par des virgules) prises du résultat de " "--list" -#: src/Console/AppConsole.vala:169 src/Gtk/AppGtk.vala:139 +#: src/Console/AppConsole.vala:173 src/Gtk/AppGtk.vala:127 msgid "Unknown option" msgstr "Option inconnue" -#: src/Console/AppConsole.vala:171 src/Console/AppConsole.vala:265 -#: src/Console/AppConsole.vala:294 +#: src/Console/AppConsole.vala:175 src/Console/AppConsole.vala:255 +#: src/Console/AppConsole.vala:284 msgid "Run" msgstr "Executez" -#: src/Console/AppConsole.vala:171 +#: src/Console/AppConsole.vala:175 msgid "to list all options" msgstr "pour afficher toutes les options" -#: src/Console/AppConsole.vala:238 src/Console/AppConsole.vala:273 +#: src/Console/AppConsole.vala:227 src/Console/AppConsole.vala:263 msgid "No kernels specified" msgstr "Aucun noyau spécifié" -#: src/Console/AppConsole.vala:244 +#: src/Console/AppConsole.vala:233 msgid "Multiple kernels selected for installation. Select only one." msgstr "" "Plusieurs noyaux sélectionnés pour être installés. Sélectionnez en seulement " "un." -#: src/Console/AppConsole.vala:262 src/Gtk/MainWindow.vala:100 +#: src/Console/AppConsole.vala:252 msgid "Could not find requested version" msgstr "Impossible de trouver la version demandée" -#: src/Console/AppConsole.vala:265 +#: src/Console/AppConsole.vala:255 msgid "and use a version string listed in first column" msgstr "" -#: src/Console/AppConsole.vala:293 +#: src/Console/AppConsole.vala:283 msgid "Command not specified" msgstr "Pas de commande fournie" -#: src/Console/AppConsole.vala:294 +#: src/Console/AppConsole.vala:284 msgid "to list all commands" msgstr "pour afficher toutes les commandes" -#: src/Console/AppConsole.vala:360 +#: src/Console/AppConsole.vala:338 msgid "Show" msgstr "Montrer" -#: src/Console/AppConsole.vala:365 src/Console/AppConsole.vala:377 +#: src/Console/AppConsole.vala:343 src/Console/AppConsole.vala:355 #, c-format msgid "Kernel %s Available" msgstr "Paquet %s disponibles" -#: src/Console/AppConsole.vala:367 src/Console/AppConsole.vala:379 -#: src/Gtk/MainWindow.vala:333 +#: src/Console/AppConsole.vala:345 src/Console/AppConsole.vala:357 +#: src/Gtk/MainWindow.vala:282 msgid "Install" msgstr "Installer" -#: src/Gtk/AppGtk.vala:156 +#: src/Gtk/AppGtk.vala:141 +#, fuzzy +msgid "options" +msgstr "Options" + +#: src/Gtk/AppGtk.vala:145 msgid "Print debug information" msgstr "Afficher les informations de débogage" -#: src/Gtk/AppGtk.vala:157 +#: src/Gtk/AppGtk.vala:146 msgid "Show all options" msgstr "Afficher toutes les options" -#: src/Gtk/CustomMessageDialog.vala:155 src/Gtk/ProgressWindow.vala:142 -#: src/Gtk/TerminalWindow.vala:148 -msgid "Cancel" -msgstr "Annuler" - -#: src/Gtk/CustomMessageDialog.vala:159 -msgid "Yes" -msgstr "" - -#: src/Gtk/CustomMessageDialog.vala:160 -msgid "No" -msgstr "" - -#: src/Gtk/MainWindow.vala:146 +#: src/Gtk/MainWindow.vala:108 msgid "Kernel" msgstr "Noyau" -#: src/Gtk/MainWindow.vala:176 +#: src/Gtk/MainWindow.vala:138 msgid "Status" msgstr "Statut" -#: src/Gtk/MainWindow.vala:317 -msgid "Refresh" -msgstr "Actualiser" - -#: src/Gtk/MainWindow.vala:324 src/Utility/TeeJee.System.vala:42 -#, fuzzy -msgid "Internet connection is not active" -msgstr "Connexion internet inexistante" - -#: src/Gtk/MainWindow.vala:324 src/Gtk/MainWindow.vala:518 -#: src/Gtk/MainWindow.vala:634 -msgid "No Internet" -msgstr "Pas d'Internet" - -#: src/Gtk/MainWindow.vala:344 +#: src/Gtk/MainWindow.vala:292 #, fuzzy msgid "Uninstall" msgstr "Installer" -#: src/Gtk/MainWindow.vala:377 src/Gtk/MainWindow.vala:410 -#: src/Gtk/MainWindow.vala:666 -msgid "Close window to exit..." -msgstr "Fermer la fenêtre pour quitter..." +#: src/Gtk/MainWindow.vala:325 src/Gtk/MainWindow.vala:370 +#: src/Gtk/MainWindow.vala:616 +msgid "DONE" +msgstr "" + +#: src/Gtk/MainWindow.vala:333 +msgid "Changes" +msgstr "Changements" -#: src/Gtk/MainWindow.vala:384 +#: src/Gtk/MainWindow.vala:344 #, fuzzy msgid "Uninstall Old" msgstr "Désinstallation complète" -#: src/Gtk/MainWindow.vala:385 +#: src/Gtk/MainWindow.vala:345 #, fuzzy msgid "Uninstall kernels older than running kernel" msgstr "Désinstalle les noyaux plus anciens que le noyau courant" -#: src/Gtk/MainWindow.vala:417 -msgid "Changes" -msgstr "Changements" +#: src/Gtk/MainWindow.vala:378 +msgid "Reload" +msgstr "" -#: src/Gtk/MainWindow.vala:428 src/Gtk/SettingsDialog.vala:50 +#: src/Gtk/MainWindow.vala:391 src/Gtk/SettingsDialog.vala:50 msgid "Settings" msgstr "Paramètres" -#: src/Gtk/MainWindow.vala:451 +#: src/Gtk/MainWindow.vala:413 msgid "About" msgstr "À propos" -#: src/Gtk/MainWindow.vala:496 +#: src/Gtk/MainWindow.vala:418 +msgid "Exit" +msgstr "" + +#: src/Gtk/MainWindow.vala:470 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "" "Utilitaire de mise à niveau des noyaux pour les distributions basées sur " "Ubuntu" -#: src/Gtk/MainWindow.vala:497 +#: src/Gtk/MainWindow.vala:471 msgid "Forked" msgstr "Version forkée :" -#: src/Gtk/MainWindow.vala:497 +#: src/Gtk/MainWindow.vala:471 msgid "Original" msgstr "Version originale :" -#: src/Gtk/MainWindow.vala:518 src/Gtk/MainWindow.vala:634 -msgid "Internet connection is not active." -msgstr "Connexion internet inexistante" - -#: src/Gtk/MainWindow.vala:531 +#: src/Gtk/MainWindow.vala:500 +#, fuzzy msgid "Refreshing..." msgstr "Actualisation..." -#: src/Gtk/MainWindow.vala:620 +#: src/Gtk/MainWindow.vala:582 msgid "available" msgstr "disponible" +#: src/Gtk/MainWindow.vala:625 +#, fuzzy +msgid "Can not reach" +msgstr "Impossible de lire le fichier" + +#: src/Gtk/ProgressWindow.vala:126 src/Gtk/TerminalWindow.vala:148 +msgid "Cancel" +msgstr "Annuler" + #: src/Gtk/SettingsDialog.vala:60 msgid "Notification" msgstr "Notification" @@ -441,6 +420,10 @@ msgstr "Seconde(s)" msgid "Display" msgstr "Affichage" +#: src/Gtk/SettingsDialog.vala:163 +msgid "Hide unstable and RC releases" +msgstr "Cacher les versions instables et RC" + #: src/Gtk/SettingsDialog.vala:177 msgid "Show N previous major versions " msgstr "Montrer les N dernières versions majeures" @@ -449,19 +432,15 @@ msgstr "Montrer les N dernières versions majeures" msgid "Other" msgstr "Autre" -#: src/Gtk/SettingsDialog.vala:200 -msgid "Skip internet connection check" -msgstr "Sauter la vérification de connexion internet" - -#: src/Gtk/SettingsDialog.vala:213 +#: src/Gtk/SettingsDialog.vala:203 msgid "Internet connection timeout in " msgstr "Attendre la connection internet " -#: src/Gtk/SettingsDialog.vala:228 +#: src/Gtk/SettingsDialog.vala:218 msgid "seconds" msgstr "secondes" -#: src/Gtk/SettingsDialog.vala:235 +#: src/Gtk/SettingsDialog.vala:225 msgid "Max concurrent downloads" msgstr "Nombre maximum de téléchargements parallèles" @@ -501,7 +480,7 @@ msgstr "Documentalistes" msgid "Third Party Inclusions" msgstr "Dépendances Tierces" -#: src/Utility/Gtk/GtkHelper.vala:59 +#: src/Utility/Gtk/GtkHelper.vala:49 msgid "Missing Icon" msgstr "Icône introuvable" diff --git a/po/hr.po b/po/hr.po index f44eb58c..291bcd94 100644 --- a/po/hr.po +++ b/po/hr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-02-23 17:56-0500\n" +"POT-Creation-Date: 2023-03-04 22:34-0500\n" "PO-Revision-Date: 2022-09-22 12:13+0200\n" "Last-Translator: gogo \n" "Language-Team: Croatian\n" @@ -21,129 +21,122 @@ msgstr "Distribucija" msgid "Architecture" msgstr "Arhitektura" -#: src/Common/LinuxKernel.vala:290 -msgid "Fetching index..." +#: src/Common/LinuxKernel.vala:256 +msgid "cached" +msgstr "" + +#: src/Common/LinuxKernel.vala:268 +msgid "GET" +msgstr "" + +#: src/Common/LinuxKernel.vala:296 +#, fuzzy +msgid "Fetching individual kernel indexes..." msgstr "Preuzimanje sadržaja..." -#: src/Common/LinuxKernel.vala:329 -msgid "Fetching index from kernel.ubuntu.com..." -msgstr "Preuzimanje sadržaja sa kernel.ubuntu.com..." +#: src/Common/LinuxKernel.vala:338 +#, fuzzy +msgid "Fetching main index from" +msgstr "Preuzimanje sadržaja..." -#: src/Common/LinuxKernel.vala:585 +#: src/Common/LinuxKernel.vala:599 msgid "Could not find running kernel in list!" msgstr "Nemoguće je pronaći pokrenuti kernel na popisu!" -#: src/Common/LinuxKernel.vala:591 +#: src/Common/LinuxKernel.vala:605 msgid "Could not find any kernels to uninstall" msgstr "Nema pronađenih kernela za deinstaliranje" -#: src/Common/LinuxKernel.vala:600 +#: src/Common/LinuxKernel.vala:614 msgid "The following kernels will be uninstalled:" msgstr "Sljedeći kerneli će biti deinstalirani:" -#: src/Common/LinuxKernel.vala:607 +#: src/Common/LinuxKernel.vala:621 msgid "Continue ?" msgstr "Nastavi?" -#: src/Common/LinuxKernel.vala:633 src/Console/AppConsole.vala:314 +#: src/Common/LinuxKernel.vala:644 src/Console/AppConsole.vala:298 msgid "Latest update" msgstr "Najnovija nadopuna" -#: src/Common/LinuxKernel.vala:644 src/Console/AppConsole.vala:321 +#: src/Common/LinuxKernel.vala:655 src/Console/AppConsole.vala:305 msgid "Latest point update" msgstr "Najnovija ciljana nadopuna" -#: src/Common/LinuxKernel.vala:652 src/Console/AppConsole.vala:326 -#: src/Console/AppConsole.vala:387 +#: src/Common/LinuxKernel.vala:663 src/Console/AppConsole.vala:310 +#: src/Console/AppConsole.vala:365 msgid "No updates found" msgstr "Nema pronađenih nadopuna" -#: src/Common/LinuxKernel.vala:662 +#: src/Common/LinuxKernel.vala:673 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Instaliraj kernel inačice %s ? (d/n): " -#: src/Common/LinuxKernel.vala:912 +#: src/Common/LinuxKernel.vala:924 msgid "Packages Available" msgstr "Dostupni paketi" -#: src/Common/LinuxKernel.vala:920 +#: src/Common/LinuxKernel.vala:932 msgid "Packages Installed" msgstr "Instalirani paketi" -#: src/Common/LinuxKernel.vala:1000 +#: src/Common/LinuxKernel.vala:1011 msgid "Available Kernels" msgstr "Dostupni kerneli" -#: src/Common/LinuxKernel.vala:1007 src/Gtk/MainWindow.vala:189 +#: src/Common/LinuxKernel.vala:1018 src/Gtk/MainWindow.vala:151 msgid "Installed" msgstr "Instalirano" -#: src/Common/LinuxKernel.vala:1007 src/Gtk/MainWindow.vala:189 -#: src/Gtk/MainWindow.vala:610 src/Gtk/MainWindow.vala:624 +#: src/Common/LinuxKernel.vala:1018 src/Gtk/MainWindow.vala:151 +#: src/Gtk/MainWindow.vala:572 src/Gtk/MainWindow.vala:586 msgid "Running" msgstr "Pokrenuto" -#: src/Common/LinuxKernel.vala:1044 +#: src/Common/LinuxKernel.vala:1055 msgid "Downloading" msgstr "Preuzimanje" -#: src/Common/LinuxKernel.vala:1063 src/Gtk/CustomMessageDialog.vala:150 -#: src/Gtk/CustomMessageDialog.vala:154 +#: src/Common/LinuxKernel.vala:1074 msgid "OK" msgstr "U redu" -#: src/Common/LinuxKernel.vala:1068 +#: src/Common/LinuxKernel.vala:1079 msgid "ERROR" msgstr "GREŠKA" -#: src/Common/LinuxKernel.vala:1082 +#: src/Common/LinuxKernel.vala:1093 msgid "This kernel is already installed." msgstr "Ovaj kernel je već instaliran." -#: src/Common/LinuxKernel.vala:1108 -msgid "Installation completed. A reboot is required to use the new kernel." -msgstr "" -"Instalacija je završena. Potrebno je ponovno pokretanje računala kako bi se " -"koristio novi kernel." - -#: src/Common/LinuxKernel.vala:1111 -msgid "Installation completed with errors" -msgstr "Instalacija je završena s greškama" +#: src/Common/LinuxKernel.vala:1129 +#, fuzzy +msgid "Uninstalling selected kernels" +msgstr "Deinstaliraj određene kernele" -#: src/Common/LinuxKernel.vala:1132 -msgid "" -"Selected kernel is currently running and cannot be un-installed.\n" -" Install another kernel before un-installing this one." +#: src/Common/LinuxKernel.vala:1135 +msgid "requested" msgstr "" -"Odabrani kernel je trenutno pokernut i ne može se deinstalirati.\n" -" Instalirajte drugi kernel prije uklanjanja trenutnog kernela." - -#: src/Common/LinuxKernel.vala:1137 -msgid "Preparing to uninstall selected kernels" -msgstr "Pripremanje deinstalacije odabranih kernela" - -#: src/Common/LinuxKernel.vala:1168 src/Common/LinuxKernel.vala:1215 -msgid "Un-install completed" -msgstr "Deinstalacija završena" -#: src/Common/LinuxKernel.vala:1171 src/Common/LinuxKernel.vala:1218 -msgid "Un-install completed with errors" -msgstr "Deinstalacija završena s greškama" +#: src/Common/LinuxKernel.vala:1138 +msgid "skipping the currently booted kernel" +msgstr "" -#: src/Common/LinuxKernel.vala:1184 -msgid "" -"This kernel is currently running and cannot be un-installed.\n" -" Install another kernel before un-installing this one." +#: src/Common/LinuxKernel.vala:1154 +msgid "found" msgstr "" -"Ovaj kernel je trenutno pokrenut i ne može se deinstalirati.\n" -" Instalirajte drugi kernel prije uklanjanja trenutnog kernela." -#: src/Common/Main.vala:241 +#: src/Common/LinuxKernel.vala:1157 +#, fuzzy +msgid "No packages to un-install!" +msgstr "Instalirani paketi" + +#: src/Common/Main.vala:260 msgid "Called from" msgstr "Pozvano od" -#: src/Common/Main.vala:275 +#: src/Common/Main.vala:294 msgid "Notifications are disabled" msgstr "Obavijesti su onemogućene" @@ -152,239 +145,228 @@ msgstr "Obavijesti su onemogućene" msgid "File not found: %s" msgstr "Datoteka nije pronađena: %s" -#: src/Console/AppConsole.vala:62 src/Gtk/AppGtk.vala:152 +#: src/Console/AppConsole.vala:68 src/Gtk/AppGtk.vala:141 msgid "Syntax" msgstr "Sintaksa" -#: src/Console/AppConsole.vala:64 +#: src/Console/AppConsole.vala:70 msgid "Commands" msgstr "Naredbe" -#: src/Console/AppConsole.vala:66 +#: src/Console/AppConsole.vala:72 msgid "Check for kernel updates" msgstr "Provjeri nadopune kernela" -#: src/Console/AppConsole.vala:67 +#: src/Console/AppConsole.vala:73 msgid "Check for kernel updates and notify current user" msgstr "Provjeri nadopune kernela i obavijesti trenutnog korisnika" -#: src/Console/AppConsole.vala:68 +#: src/Console/AppConsole.vala:74 msgid "List all available mainline kernels" msgstr "Prikaži sve mainline kernele" -#: src/Console/AppConsole.vala:69 +#: src/Console/AppConsole.vala:75 msgid "List installed kernels" msgstr "Prikaži instalirane kernele" -#: src/Console/AppConsole.vala:70 +#: src/Console/AppConsole.vala:76 msgid "Install latest mainline kernel" msgstr "Instaliraj najnoviji mainline kernel" -#: src/Console/AppConsole.vala:71 +#: src/Console/AppConsole.vala:77 msgid "Install latest point update for current series" msgstr "Instaliraj najnoviju ciljanu nadopunu za trenutnu seriju" -#: src/Console/AppConsole.vala:72 +#: src/Console/AppConsole.vala:78 msgid "Install specified mainline kernel" msgstr "Instaliraj određeni mainline kernel" -#: src/Console/AppConsole.vala:73 +#: src/Console/AppConsole.vala:79 msgid "Uninstall specified kernel" msgstr "Deinstaliraj određene kernele" -#: src/Console/AppConsole.vala:74 +#: src/Console/AppConsole.vala:80 msgid "Uninstall kernels older than the running kernel" msgstr "Deinstaliraj starije kernele od trenutno pokrenutog krenela" -#: src/Console/AppConsole.vala:75 +#: src/Console/AppConsole.vala:81 msgid "Download specified kernels" msgstr "Preuzmi određene kernele" -#: src/Console/AppConsole.vala:76 -msgid "Remove files from application cache" -msgstr "Ukloni datoteke iz predmemorije aplikacije" +#: src/Console/AppConsole.vala:82 +msgid "Delete cached info about available kernels" +msgstr "" -#: src/Console/AppConsole.vala:78 src/Gtk/AppGtk.vala:154 +#: src/Console/AppConsole.vala:84 src/Gtk/AppGtk.vala:143 msgid "Options" msgstr "Mogućnosti" -#: src/Console/AppConsole.vala:80 +#: src/Console/AppConsole.vala:86 msgid "Include unstable and RC releases" msgstr "Uključi predizdanja i nestabilne kernele" -#: src/Console/AppConsole.vala:81 src/Gtk/SettingsDialog.vala:163 -msgid "Hide unstable and RC releases" -msgstr "Sakrij nestabilne kernele i predizdanja" +#: src/Console/AppConsole.vala:87 +#, fuzzy +msgid "Exclude unstable and RC releases" +msgstr "Uključi predizdanja i nestabilne kernele" -#: src/Console/AppConsole.vala:82 +#: src/Console/AppConsole.vala:88 msgid "Enable verbose debugging output" msgstr "Omogući opširnije zapisivanje" -#: src/Console/AppConsole.vala:83 +#: src/Console/AppConsole.vala:89 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "Pretpostavi Da za sve upite (neinteraktivan način rada)" -#: src/Console/AppConsole.vala:84 -msgid "Override user" -msgstr "Zaobiđi korisnika" - -#: src/Console/AppConsole.vala:87 +#: src/Console/AppConsole.vala:92 msgid "A version string taken from the output of --list" msgstr "Izraz inačice uzet iz zapisa --list" -#: src/Console/AppConsole.vala:88 +#: src/Console/AppConsole.vala:93 msgid "" "One or more version strings (comma-separated) taken from the output of --list" msgstr "" "Jedan ili više izraza inačice (zarezom odvojeni) uzetih iz zapisa --list" -#: src/Console/AppConsole.vala:169 src/Gtk/AppGtk.vala:139 +#: src/Console/AppConsole.vala:173 src/Gtk/AppGtk.vala:127 msgid "Unknown option" msgstr "Nepoznata mogućnost" -#: src/Console/AppConsole.vala:171 src/Console/AppConsole.vala:265 -#: src/Console/AppConsole.vala:294 +#: src/Console/AppConsole.vala:175 src/Console/AppConsole.vala:255 +#: src/Console/AppConsole.vala:284 msgid "Run" msgstr "Pokreni" -#: src/Console/AppConsole.vala:171 +#: src/Console/AppConsole.vala:175 msgid "to list all options" msgstr "za prikaz svih mogućnosti" -#: src/Console/AppConsole.vala:238 src/Console/AppConsole.vala:273 +#: src/Console/AppConsole.vala:227 src/Console/AppConsole.vala:263 msgid "No kernels specified" msgstr "Nema određenih kernela" -#: src/Console/AppConsole.vala:244 +#: src/Console/AppConsole.vala:233 msgid "Multiple kernels selected for installation. Select only one." msgstr "Više kernela je odabrano za instalaciju. odaberite samo jedan." -#: src/Console/AppConsole.vala:262 src/Gtk/MainWindow.vala:100 +#: src/Console/AppConsole.vala:252 msgid "Could not find requested version" msgstr "Nemoguće je pronaći zatraženu inačicu" -#: src/Console/AppConsole.vala:265 +#: src/Console/AppConsole.vala:255 msgid "and use a version string listed in first column" msgstr "i koristite izraz inačice prikazan u prvom stupcu" -#: src/Console/AppConsole.vala:293 +#: src/Console/AppConsole.vala:283 msgid "Command not specified" msgstr "Naredba nije navedena" -#: src/Console/AppConsole.vala:294 +#: src/Console/AppConsole.vala:284 msgid "to list all commands" msgstr "za prikaz svih mogućnosti" -#: src/Console/AppConsole.vala:360 +#: src/Console/AppConsole.vala:338 msgid "Show" msgstr "Prikaži" -#: src/Console/AppConsole.vala:365 src/Console/AppConsole.vala:377 +#: src/Console/AppConsole.vala:343 src/Console/AppConsole.vala:355 #, c-format msgid "Kernel %s Available" msgstr "Kernel %s je dostupan" -#: src/Console/AppConsole.vala:367 src/Console/AppConsole.vala:379 -#: src/Gtk/MainWindow.vala:333 +#: src/Console/AppConsole.vala:345 src/Console/AppConsole.vala:357 +#: src/Gtk/MainWindow.vala:282 msgid "Install" msgstr "Instaliraj" -#: src/Gtk/AppGtk.vala:156 +#: src/Gtk/AppGtk.vala:141 +#, fuzzy +msgid "options" +msgstr "Mogućnosti" + +#: src/Gtk/AppGtk.vala:145 msgid "Print debug information" msgstr "Ispiši informacije otklanjanja grešaka" -#: src/Gtk/AppGtk.vala:157 +#: src/Gtk/AppGtk.vala:146 msgid "Show all options" msgstr "Prikaži sve mogućnosti" -#: src/Gtk/CustomMessageDialog.vala:155 src/Gtk/ProgressWindow.vala:142 -#: src/Gtk/TerminalWindow.vala:148 -msgid "Cancel" -msgstr "Odustani" - -#: src/Gtk/CustomMessageDialog.vala:159 -msgid "Yes" -msgstr "" - -#: src/Gtk/CustomMessageDialog.vala:160 -msgid "No" -msgstr "" - -#: src/Gtk/MainWindow.vala:146 +#: src/Gtk/MainWindow.vala:108 msgid "Kernel" msgstr "Kernel" -#: src/Gtk/MainWindow.vala:176 +#: src/Gtk/MainWindow.vala:138 msgid "Status" msgstr "Stanje" -#: src/Gtk/MainWindow.vala:317 -msgid "Refresh" -msgstr "Osvježi" - -#: src/Gtk/MainWindow.vala:324 src/Utility/TeeJee.System.vala:42 -#, fuzzy -msgid "Internet connection is not active" -msgstr "Internet povezivanje nije aktivno." - -#: src/Gtk/MainWindow.vala:324 src/Gtk/MainWindow.vala:518 -#: src/Gtk/MainWindow.vala:634 -msgid "No Internet" -msgstr "Nema pristupa internetu" - -#: src/Gtk/MainWindow.vala:344 +#: src/Gtk/MainWindow.vala:292 msgid "Uninstall" msgstr "Deinstaliraj" -#: src/Gtk/MainWindow.vala:377 src/Gtk/MainWindow.vala:410 -#: src/Gtk/MainWindow.vala:666 -msgid "Close window to exit..." -msgstr "Zatvori prozor i izađi..." +#: src/Gtk/MainWindow.vala:325 src/Gtk/MainWindow.vala:370 +#: src/Gtk/MainWindow.vala:616 +msgid "DONE" +msgstr "" + +#: src/Gtk/MainWindow.vala:333 +msgid "Changes" +msgstr "Promjene" -#: src/Gtk/MainWindow.vala:384 +#: src/Gtk/MainWindow.vala:344 msgid "Uninstall Old" msgstr "Deinstaliraj staro" -#: src/Gtk/MainWindow.vala:385 +#: src/Gtk/MainWindow.vala:345 msgid "Uninstall kernels older than running kernel" msgstr "Deinstaliraj kernele starije od pokrenutog krenela" -#: src/Gtk/MainWindow.vala:417 -msgid "Changes" -msgstr "Promjene" +#: src/Gtk/MainWindow.vala:378 +msgid "Reload" +msgstr "" -#: src/Gtk/MainWindow.vala:428 src/Gtk/SettingsDialog.vala:50 +#: src/Gtk/MainWindow.vala:391 src/Gtk/SettingsDialog.vala:50 msgid "Settings" msgstr "Postavke" -#: src/Gtk/MainWindow.vala:451 +#: src/Gtk/MainWindow.vala:413 msgid "About" msgstr "O programu" -#: src/Gtk/MainWindow.vala:496 +#: src/Gtk/MainWindow.vala:418 +msgid "Exit" +msgstr "" + +#: src/Gtk/MainWindow.vala:470 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Alat za nadogradnju kernela Ubuntu temeljenih distribucija" -#: src/Gtk/MainWindow.vala:497 +#: src/Gtk/MainWindow.vala:471 msgid "Forked" msgstr "Forkano" -#: src/Gtk/MainWindow.vala:497 +#: src/Gtk/MainWindow.vala:471 msgid "Original" msgstr "Izvornik" -#: src/Gtk/MainWindow.vala:518 src/Gtk/MainWindow.vala:634 -msgid "Internet connection is not active." -msgstr "Internet povezivanje nije aktivno." - -#: src/Gtk/MainWindow.vala:531 +#: src/Gtk/MainWindow.vala:500 +#, fuzzy msgid "Refreshing..." msgstr "Osvježavanje..." -#: src/Gtk/MainWindow.vala:620 +#: src/Gtk/MainWindow.vala:582 msgid "available" msgstr "dostupno" +#: src/Gtk/MainWindow.vala:625 +#, fuzzy +msgid "Can not reach" +msgstr "Neuspjelo čitanje datoteke" + +#: src/Gtk/ProgressWindow.vala:126 src/Gtk/TerminalWindow.vala:148 +msgid "Cancel" +msgstr "Odustani" + #: src/Gtk/SettingsDialog.vala:60 msgid "Notification" msgstr "Obavijesti" @@ -425,6 +407,10 @@ msgstr "Sekund(e)" msgid "Display" msgstr "Prikaz" +#: src/Gtk/SettingsDialog.vala:163 +msgid "Hide unstable and RC releases" +msgstr "Sakrij nestabilne kernele i predizdanja" + #: src/Gtk/SettingsDialog.vala:177 msgid "Show N previous major versions " msgstr "Prikaži N prijašnjih glavnih izdanja " @@ -433,19 +419,15 @@ msgstr "Prikaži N prijašnjih glavnih izdanja " msgid "Other" msgstr "Ostalo" -#: src/Gtk/SettingsDialog.vala:200 -msgid "Skip internet connection check" -msgstr "Preskoči provjeru internet povezivosti" - -#: src/Gtk/SettingsDialog.vala:213 +#: src/Gtk/SettingsDialog.vala:203 msgid "Internet connection timeout in " msgstr "Istek internet povezivanja za " -#: src/Gtk/SettingsDialog.vala:228 +#: src/Gtk/SettingsDialog.vala:218 msgid "seconds" msgstr "sekunde" -#: src/Gtk/SettingsDialog.vala:235 +#: src/Gtk/SettingsDialog.vala:225 msgid "Max concurrent downloads" msgstr "Najviše istodobnih preuzimanja" @@ -485,7 +467,7 @@ msgstr "Autori dokumentacije" msgid "Third Party Inclusions" msgstr "Uključene treće strane" -#: src/Utility/Gtk/GtkHelper.vala:59 +#: src/Utility/Gtk/GtkHelper.vala:49 msgid "Missing Icon" msgstr "Ikone koje nedostaju" diff --git a/po/it.po b/po/it.po index 641428c1..40fafa1c 100644 --- a/po/it.po +++ b/po/it.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline 1.0.15\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-02-23 17:56-0500\n" +"POT-Creation-Date: 2023-03-04 22:34-0500\n" "PO-Revision-Date: 2020-08-22 15:35+0100\n" "Last-Translator: Albano Battistella \n" "Language-Team: Italian\n" @@ -19,129 +19,122 @@ msgstr "Distribuzione" msgid "Architecture" msgstr "Architettura" -#: src/Common/LinuxKernel.vala:290 -msgid "Fetching index..." +#: src/Common/LinuxKernel.vala:256 +msgid "cached" +msgstr "" + +#: src/Common/LinuxKernel.vala:268 +msgid "GET" +msgstr "" + +#: src/Common/LinuxKernel.vala:296 +#, fuzzy +msgid "Fetching individual kernel indexes..." msgstr "Recupero indice in corso..." -#: src/Common/LinuxKernel.vala:329 -msgid "Fetching index from kernel.ubuntu.com..." -msgstr "Recupero dell'indice da kernel.ubuntu.com..." +#: src/Common/LinuxKernel.vala:338 +#, fuzzy +msgid "Fetching main index from" +msgstr "Recupero indice in corso..." -#: src/Common/LinuxKernel.vala:585 +#: src/Common/LinuxKernel.vala:599 msgid "Could not find running kernel in list!" msgstr "Impossibile trovare il kernel in esecuzione nell'elenco!" -#: src/Common/LinuxKernel.vala:591 +#: src/Common/LinuxKernel.vala:605 msgid "Could not find any kernels to uninstall" msgstr "Impossibile trovare alcun kernel da rimuovere" -#: src/Common/LinuxKernel.vala:600 +#: src/Common/LinuxKernel.vala:614 msgid "The following kernels will be uninstalled:" msgstr "I seguenti kernel verranno rimossi:" -#: src/Common/LinuxKernel.vala:607 +#: src/Common/LinuxKernel.vala:621 msgid "Continue ?" msgstr "Continuare ?" -#: src/Common/LinuxKernel.vala:633 src/Console/AppConsole.vala:314 +#: src/Common/LinuxKernel.vala:644 src/Console/AppConsole.vala:298 msgid "Latest update" msgstr "Ultimo aggiornamento" -#: src/Common/LinuxKernel.vala:644 src/Console/AppConsole.vala:321 +#: src/Common/LinuxKernel.vala:655 src/Console/AppConsole.vala:305 msgid "Latest point update" msgstr "Ultimo aggiornamento del punto" -#: src/Common/LinuxKernel.vala:652 src/Console/AppConsole.vala:326 -#: src/Console/AppConsole.vala:387 +#: src/Common/LinuxKernel.vala:663 src/Console/AppConsole.vala:310 +#: src/Console/AppConsole.vala:365 msgid "No updates found" msgstr "Nessun aggiornamento trovato" -#: src/Common/LinuxKernel.vala:662 +#: src/Common/LinuxKernel.vala:673 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Installare la versione del kernel %s ? (y/n): " -#: src/Common/LinuxKernel.vala:912 +#: src/Common/LinuxKernel.vala:924 msgid "Packages Available" msgstr "Pacchetti disponibili" -#: src/Common/LinuxKernel.vala:920 +#: src/Common/LinuxKernel.vala:932 msgid "Packages Installed" msgstr "Pacchetti installati" -#: src/Common/LinuxKernel.vala:1000 +#: src/Common/LinuxKernel.vala:1011 msgid "Available Kernels" msgstr "Kernel disponibili" -#: src/Common/LinuxKernel.vala:1007 src/Gtk/MainWindow.vala:189 +#: src/Common/LinuxKernel.vala:1018 src/Gtk/MainWindow.vala:151 msgid "Installed" msgstr "Installato" -#: src/Common/LinuxKernel.vala:1007 src/Gtk/MainWindow.vala:189 -#: src/Gtk/MainWindow.vala:610 src/Gtk/MainWindow.vala:624 +#: src/Common/LinuxKernel.vala:1018 src/Gtk/MainWindow.vala:151 +#: src/Gtk/MainWindow.vala:572 src/Gtk/MainWindow.vala:586 msgid "Running" msgstr "In esecuzione" -#: src/Common/LinuxKernel.vala:1044 +#: src/Common/LinuxKernel.vala:1055 msgid "Downloading" msgstr "Download in corso" -#: src/Common/LinuxKernel.vala:1063 src/Gtk/CustomMessageDialog.vala:150 -#: src/Gtk/CustomMessageDialog.vala:154 +#: src/Common/LinuxKernel.vala:1074 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:1068 +#: src/Common/LinuxKernel.vala:1079 msgid "ERROR" msgstr "ERRORE" -#: src/Common/LinuxKernel.vala:1082 +#: src/Common/LinuxKernel.vala:1093 msgid "This kernel is already installed." msgstr "Questo kernel è già installato" -#: src/Common/LinuxKernel.vala:1108 -msgid "Installation completed. A reboot is required to use the new kernel." -msgstr "" -"Installazione completata. È necessario riavviare per utilizzare ilnuovo " -"kernel." - -#: src/Common/LinuxKernel.vala:1111 -msgid "Installation completed with errors" -msgstr "Installazione completata con errori" +#: src/Common/LinuxKernel.vala:1129 +#, fuzzy +msgid "Uninstalling selected kernels" +msgstr "Disinstalla i kernel specificati" -#: src/Common/LinuxKernel.vala:1132 -msgid "" -"Selected kernel is currently running and cannot be un-installed.\n" -" Install another kernel before un-installing this one." +#: src/Common/LinuxKernel.vala:1135 +msgid "requested" msgstr "" -"Il kernel selezionato è attualmente in esecuzione e non può essere rimosso.\n" -"Installa un altro kernel prima di rimuovere questo." - -#: src/Common/LinuxKernel.vala:1137 -msgid "Preparing to uninstall selected kernels" -msgstr "Preparazione per rimuovere i kernel selezionati" - -#: src/Common/LinuxKernel.vala:1168 src/Common/LinuxKernel.vala:1215 -msgid "Un-install completed" -msgstr "Disinstallazione completata" -#: src/Common/LinuxKernel.vala:1171 src/Common/LinuxKernel.vala:1218 -msgid "Un-install completed with errors" -msgstr "Disinstallazione completata con errori" +#: src/Common/LinuxKernel.vala:1138 +msgid "skipping the currently booted kernel" +msgstr "" -#: src/Common/LinuxKernel.vala:1184 -msgid "" -"This kernel is currently running and cannot be un-installed.\n" -" Install another kernel before un-installing this one." +#: src/Common/LinuxKernel.vala:1154 +msgid "found" msgstr "" -"Questo kernel è attualmente in esecuzione e non può essere rimosso.\n" -" Installa un altro kernel prima di rimuovere questo." -#: src/Common/Main.vala:241 +#: src/Common/LinuxKernel.vala:1157 +#, fuzzy +msgid "No packages to un-install!" +msgstr "Pacchetti installati" + +#: src/Common/Main.vala:260 msgid "Called from" msgstr "Chiamata da" -#: src/Common/Main.vala:275 +#: src/Common/Main.vala:294 msgid "Notifications are disabled" msgstr "Le notifiche sono disabilitate" @@ -150,242 +143,231 @@ msgstr "Le notifiche sono disabilitate" msgid "File not found: %s" msgstr "File non trovato: %s" -#: src/Console/AppConsole.vala:62 src/Gtk/AppGtk.vala:152 +#: src/Console/AppConsole.vala:68 src/Gtk/AppGtk.vala:141 msgid "Syntax" msgstr "Sintassi" -#: src/Console/AppConsole.vala:64 +#: src/Console/AppConsole.vala:70 msgid "Commands" msgstr "Comandi" -#: src/Console/AppConsole.vala:66 +#: src/Console/AppConsole.vala:72 msgid "Check for kernel updates" msgstr "Verifica aggiornamenti per il kernel" -#: src/Console/AppConsole.vala:67 +#: src/Console/AppConsole.vala:73 msgid "Check for kernel updates and notify current user" msgstr "" "Verifica la disponibilità di aggiornamenti del kerneled avvisa l'utente " "corrente" -#: src/Console/AppConsole.vala:68 +#: src/Console/AppConsole.vala:74 msgid "List all available mainline kernels" msgstr "Elenca tutti i kernel mainline disponibili" -#: src/Console/AppConsole.vala:69 +#: src/Console/AppConsole.vala:75 msgid "List installed kernels" msgstr "Elenca i kernel installati" -#: src/Console/AppConsole.vala:70 +#: src/Console/AppConsole.vala:76 msgid "Install latest mainline kernel" msgstr "Installa ultimo kernel mainline" -#: src/Console/AppConsole.vala:71 +#: src/Console/AppConsole.vala:77 msgid "Install latest point update for current series" msgstr "installa l'ultimo rilascio parziale per le serie attuali" -#: src/Console/AppConsole.vala:72 +#: src/Console/AppConsole.vala:78 msgid "Install specified mainline kernel" msgstr "Installa kernel mainline specificato" -#: src/Console/AppConsole.vala:73 +#: src/Console/AppConsole.vala:79 msgid "Uninstall specified kernel" msgstr "Disinstalla i kernel specificati" -#: src/Console/AppConsole.vala:74 +#: src/Console/AppConsole.vala:80 msgid "Uninstall kernels older than the running kernel" msgstr "Rimuovere i kernel installati più vecchi del kernel in esecuzione" -#: src/Console/AppConsole.vala:75 +#: src/Console/AppConsole.vala:81 msgid "Download specified kernels" msgstr "Scarica i kernel specificati" -#: src/Console/AppConsole.vala:76 -msgid "Remove files from application cache" -msgstr "Rimuovi i file dalla cache dell'applicazione" +#: src/Console/AppConsole.vala:82 +msgid "Delete cached info about available kernels" +msgstr "" -#: src/Console/AppConsole.vala:78 src/Gtk/AppGtk.vala:154 +#: src/Console/AppConsole.vala:84 src/Gtk/AppGtk.vala:143 msgid "Options" msgstr "Opzioni" -#: src/Console/AppConsole.vala:80 +#: src/Console/AppConsole.vala:86 msgid "Include unstable and RC releases" msgstr "Includi versioni instabili e RC" -#: src/Console/AppConsole.vala:81 src/Gtk/SettingsDialog.vala:163 -msgid "Hide unstable and RC releases" -msgstr "Nascondi versioni instabili e RC" +#: src/Console/AppConsole.vala:87 +#, fuzzy +msgid "Exclude unstable and RC releases" +msgstr "Includi versioni instabili e RC" -#: src/Console/AppConsole.vala:82 +#: src/Console/AppConsole.vala:88 msgid "Enable verbose debugging output" msgstr "Abilita l'output di debug dettagliato" -#: src/Console/AppConsole.vala:83 +#: src/Console/AppConsole.vala:89 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "Imposta Sì per tutte le richieste (modalità non interattiva)" -#: src/Console/AppConsole.vala:84 -msgid "Override user" -msgstr "Ignora utente" - -#: src/Console/AppConsole.vala:87 +#: src/Console/AppConsole.vala:92 msgid "A version string taken from the output of --list" msgstr "Una stringa di versione presa dall'output di --list" -#: src/Console/AppConsole.vala:88 +#: src/Console/AppConsole.vala:93 msgid "" "One or more version strings (comma-separated) taken from the output of --list" msgstr "" "Una o più stringhe di versione (separate da virgole) prese dall'output di --" "list" -#: src/Console/AppConsole.vala:169 src/Gtk/AppGtk.vala:139 +#: src/Console/AppConsole.vala:173 src/Gtk/AppGtk.vala:127 msgid "Unknown option" msgstr "Opzione sconosciuta" -#: src/Console/AppConsole.vala:171 src/Console/AppConsole.vala:265 -#: src/Console/AppConsole.vala:294 +#: src/Console/AppConsole.vala:175 src/Console/AppConsole.vala:255 +#: src/Console/AppConsole.vala:284 msgid "Run" msgstr "In corso" -#: src/Console/AppConsole.vala:171 +#: src/Console/AppConsole.vala:175 msgid "to list all options" msgstr "Elencare tutte le opzioni" -#: src/Console/AppConsole.vala:238 src/Console/AppConsole.vala:273 +#: src/Console/AppConsole.vala:227 src/Console/AppConsole.vala:263 msgid "No kernels specified" msgstr "Nessun kernel specificato" -#: src/Console/AppConsole.vala:244 +#: src/Console/AppConsole.vala:233 msgid "Multiple kernels selected for installation. Select only one." msgstr "Più kernel selezionati per l'installazione. Selezionare uno solo." -#: src/Console/AppConsole.vala:262 src/Gtk/MainWindow.vala:100 +#: src/Console/AppConsole.vala:252 msgid "Could not find requested version" msgstr "Impossibile trovare la versione richiesta" -#: src/Console/AppConsole.vala:265 +#: src/Console/AppConsole.vala:255 msgid "and use a version string listed in first column" msgstr "e usa una stringa di versione elencata nella prima colonna" -#: src/Console/AppConsole.vala:293 +#: src/Console/AppConsole.vala:283 msgid "Command not specified" msgstr "Comando non specificato" -#: src/Console/AppConsole.vala:294 +#: src/Console/AppConsole.vala:284 msgid "to list all commands" msgstr "Elencare tutti i comandi" -#: src/Console/AppConsole.vala:360 +#: src/Console/AppConsole.vala:338 msgid "Show" msgstr "Mostra" -#: src/Console/AppConsole.vala:365 src/Console/AppConsole.vala:377 +#: src/Console/AppConsole.vala:343 src/Console/AppConsole.vala:355 #, c-format msgid "Kernel %s Available" msgstr "Kernel %s Disponibile" -#: src/Console/AppConsole.vala:367 src/Console/AppConsole.vala:379 -#: src/Gtk/MainWindow.vala:333 +#: src/Console/AppConsole.vala:345 src/Console/AppConsole.vala:357 +#: src/Gtk/MainWindow.vala:282 msgid "Install" msgstr "Installa" -#: src/Gtk/AppGtk.vala:156 +#: src/Gtk/AppGtk.vala:141 +#, fuzzy +msgid "options" +msgstr "Opzioni" + +#: src/Gtk/AppGtk.vala:145 msgid "Print debug information" msgstr "Stampa le informazioni di debug" -#: src/Gtk/AppGtk.vala:157 +#: src/Gtk/AppGtk.vala:146 msgid "Show all options" msgstr "Mostra tutte le opzioni" -#: src/Gtk/CustomMessageDialog.vala:155 src/Gtk/ProgressWindow.vala:142 -#: src/Gtk/TerminalWindow.vala:148 -msgid "Cancel" -msgstr "Cancella" - -#: src/Gtk/CustomMessageDialog.vala:159 -msgid "Yes" -msgstr "" - -#: src/Gtk/CustomMessageDialog.vala:160 -msgid "No" -msgstr "" - -#: src/Gtk/MainWindow.vala:146 +#: src/Gtk/MainWindow.vala:108 msgid "Kernel" msgstr "Kernel" -#: src/Gtk/MainWindow.vala:176 +#: src/Gtk/MainWindow.vala:138 msgid "Status" msgstr "Stato" -#: src/Gtk/MainWindow.vala:317 -msgid "Refresh" -msgstr "Aggiorna" - -#: src/Gtk/MainWindow.vala:324 src/Utility/TeeJee.System.vala:42 -#, fuzzy -msgid "Internet connection is not active" -msgstr "La connessione Internet non è attiva." - -#: src/Gtk/MainWindow.vala:324 src/Gtk/MainWindow.vala:518 -#: src/Gtk/MainWindow.vala:634 -msgid "No Internet" -msgstr "Nessuna connessione internet" - -#: src/Gtk/MainWindow.vala:344 +#: src/Gtk/MainWindow.vala:292 msgid "Uninstall" msgstr "Disinstalla" -#: src/Gtk/MainWindow.vala:377 src/Gtk/MainWindow.vala:410 -#: src/Gtk/MainWindow.vala:666 -msgid "Close window to exit..." -msgstr "Chiudere la finestra per uscire..." +#: src/Gtk/MainWindow.vala:325 src/Gtk/MainWindow.vala:370 +#: src/Gtk/MainWindow.vala:616 +msgid "DONE" +msgstr "" + +#: src/Gtk/MainWindow.vala:333 +msgid "Changes" +msgstr "Modifiche" -#: src/Gtk/MainWindow.vala:384 +#: src/Gtk/MainWindow.vala:344 msgid "Uninstall Old" msgstr "Disinstalla i vecchi" -#: src/Gtk/MainWindow.vala:385 +#: src/Gtk/MainWindow.vala:345 msgid "Uninstall kernels older than running kernel" msgstr "Rimuovere i kernel installati più vecchi del kernel in esecuzione" -#: src/Gtk/MainWindow.vala:417 -msgid "Changes" -msgstr "Modifiche" +#: src/Gtk/MainWindow.vala:378 +msgid "Reload" +msgstr "" -#: src/Gtk/MainWindow.vala:428 src/Gtk/SettingsDialog.vala:50 +#: src/Gtk/MainWindow.vala:391 src/Gtk/SettingsDialog.vala:50 msgid "Settings" msgstr "Impostazioni" -#: src/Gtk/MainWindow.vala:451 +#: src/Gtk/MainWindow.vala:413 msgid "About" msgstr "Informazioni" -#: src/Gtk/MainWindow.vala:496 +#: src/Gtk/MainWindow.vala:418 +msgid "Exit" +msgstr "" + +#: src/Gtk/MainWindow.vala:470 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Utilità di aggiornamento del kernel per distribuzioni basate su Ubuntu" -#: src/Gtk/MainWindow.vala:497 +#: src/Gtk/MainWindow.vala:471 msgid "Forked" msgstr "Forked" -#: src/Gtk/MainWindow.vala:497 +#: src/Gtk/MainWindow.vala:471 msgid "Original" msgstr "Originale" -#: src/Gtk/MainWindow.vala:518 src/Gtk/MainWindow.vala:634 -msgid "Internet connection is not active." -msgstr "La connessione Internet non è attiva." - -#: src/Gtk/MainWindow.vala:531 +#: src/Gtk/MainWindow.vala:500 +#, fuzzy msgid "Refreshing..." msgstr "Aggiornamento..." -#: src/Gtk/MainWindow.vala:620 +#: src/Gtk/MainWindow.vala:582 msgid "available" msgstr "disponibile" +#: src/Gtk/MainWindow.vala:625 +#, fuzzy +msgid "Can not reach" +msgstr "Impossibile leggere il file" + +#: src/Gtk/ProgressWindow.vala:126 src/Gtk/TerminalWindow.vala:148 +msgid "Cancel" +msgstr "Cancella" + #: src/Gtk/SettingsDialog.vala:60 msgid "Notification" msgstr "Notifica" @@ -426,6 +408,10 @@ msgstr "Secondo(i)" msgid "Display" msgstr "Visualizza" +#: src/Gtk/SettingsDialog.vala:163 +msgid "Hide unstable and RC releases" +msgstr "Nascondi versioni instabili e RC" + #: src/Gtk/SettingsDialog.vala:177 msgid "Show N previous major versions " msgstr "Mostra N versioni principali precedenti" @@ -434,19 +420,15 @@ msgstr "Mostra N versioni principali precedenti" msgid "Other" msgstr "Altro" -#: src/Gtk/SettingsDialog.vala:200 -msgid "Skip internet connection check" -msgstr "Salta il controllo della connessione a Internet" - -#: src/Gtk/SettingsDialog.vala:213 +#: src/Gtk/SettingsDialog.vala:203 msgid "Internet connection timeout in " msgstr "Timeout connessione Internet in" -#: src/Gtk/SettingsDialog.vala:228 +#: src/Gtk/SettingsDialog.vala:218 msgid "seconds" msgstr "secondi" -#: src/Gtk/SettingsDialog.vala:235 +#: src/Gtk/SettingsDialog.vala:225 msgid "Max concurrent downloads" msgstr "Numero massimo di download simultanei" @@ -486,7 +468,7 @@ msgstr "Documentatori" msgid "Third Party Inclusions" msgstr "Inclusioni di terze parti" -#: src/Utility/Gtk/GtkHelper.vala:59 +#: src/Utility/Gtk/GtkHelper.vala:49 msgid "Missing Icon" msgstr "Icona mancante" diff --git a/po/ko.po b/po/ko.po index 90c8b69b..6ee8d4d7 100644 --- a/po/ko.po +++ b/po/ko.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline 1.0.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-02-23 17:56-0500\n" +"POT-Creation-Date: 2023-03-04 22:34-0500\n" "PO-Revision-Date: 2022-09-28 11:48+0900\n" "Last-Translator: Kevin Kim \n" "Language-Team: Korean\n" @@ -21,127 +21,122 @@ msgstr "배포판" msgid "Architecture" msgstr "아키텍처" -#: src/Common/LinuxKernel.vala:290 -msgid "Fetching index..." +#: src/Common/LinuxKernel.vala:256 +msgid "cached" +msgstr "" + +#: src/Common/LinuxKernel.vala:268 +msgid "GET" +msgstr "" + +#: src/Common/LinuxKernel.vala:296 +#, fuzzy +msgid "Fetching individual kernel indexes..." msgstr "목록 가져오기..." -#: src/Common/LinuxKernel.vala:329 -msgid "Fetching index from kernel.ubuntu.com..." -msgstr "최신 커널 목록을 가져오는 중입니다..." +#: src/Common/LinuxKernel.vala:338 +#, fuzzy +msgid "Fetching main index from" +msgstr "목록 가져오기..." -#: src/Common/LinuxKernel.vala:585 +#: src/Common/LinuxKernel.vala:599 msgid "Could not find running kernel in list!" msgstr "목록에서 사용중인 커널을 찾을 수 없습니다!" -#: src/Common/LinuxKernel.vala:591 +#: src/Common/LinuxKernel.vala:605 msgid "Could not find any kernels to uninstall" msgstr "삭제할 커널을 찾을 수 없습니다" -#: src/Common/LinuxKernel.vala:600 +#: src/Common/LinuxKernel.vala:614 msgid "The following kernels will be uninstalled:" msgstr "아래 커널이 삭제됩니다:" -#: src/Common/LinuxKernel.vala:607 +#: src/Common/LinuxKernel.vala:621 msgid "Continue ?" msgstr "계속하시겠습니까?" -#: src/Common/LinuxKernel.vala:633 src/Console/AppConsole.vala:314 +#: src/Common/LinuxKernel.vala:644 src/Console/AppConsole.vala:298 msgid "Latest update" msgstr "최신 업데이트" -#: src/Common/LinuxKernel.vala:644 src/Console/AppConsole.vala:321 +#: src/Common/LinuxKernel.vala:655 src/Console/AppConsole.vala:305 msgid "Latest point update" msgstr "최신 포인트 업데이트" -#: src/Common/LinuxKernel.vala:652 src/Console/AppConsole.vala:326 -#: src/Console/AppConsole.vala:387 +#: src/Common/LinuxKernel.vala:663 src/Console/AppConsole.vala:310 +#: src/Console/AppConsole.vala:365 msgid "No updates found" msgstr "업데이트를 찾을 수 없습니다" -#: src/Common/LinuxKernel.vala:662 +#: src/Common/LinuxKernel.vala:673 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "커널 %s 버전을 설치하시겠습니까? (y/n): " -#: src/Common/LinuxKernel.vala:912 +#: src/Common/LinuxKernel.vala:924 msgid "Packages Available" msgstr "설치 가능한 패키지" -#: src/Common/LinuxKernel.vala:920 +#: src/Common/LinuxKernel.vala:932 msgid "Packages Installed" msgstr "설치된 패키지" -#: src/Common/LinuxKernel.vala:1000 +#: src/Common/LinuxKernel.vala:1011 msgid "Available Kernels" msgstr "설치 가능한 커널" -#: src/Common/LinuxKernel.vala:1007 src/Gtk/MainWindow.vala:189 +#: src/Common/LinuxKernel.vala:1018 src/Gtk/MainWindow.vala:151 msgid "Installed" msgstr "설치 됨" -#: src/Common/LinuxKernel.vala:1007 src/Gtk/MainWindow.vala:189 -#: src/Gtk/MainWindow.vala:610 src/Gtk/MainWindow.vala:624 +#: src/Common/LinuxKernel.vala:1018 src/Gtk/MainWindow.vala:151 +#: src/Gtk/MainWindow.vala:572 src/Gtk/MainWindow.vala:586 msgid "Running" msgstr "구동 중" -#: src/Common/LinuxKernel.vala:1044 +#: src/Common/LinuxKernel.vala:1055 msgid "Downloading" msgstr "다운로드 중" -#: src/Common/LinuxKernel.vala:1063 src/Gtk/CustomMessageDialog.vala:150 -#: src/Gtk/CustomMessageDialog.vala:154 +#: src/Common/LinuxKernel.vala:1074 msgid "OK" msgstr "확인" -#: src/Common/LinuxKernel.vala:1068 +#: src/Common/LinuxKernel.vala:1079 msgid "ERROR" msgstr "오류" -#: src/Common/LinuxKernel.vala:1082 +#: src/Common/LinuxKernel.vala:1093 msgid "This kernel is already installed." msgstr "이 커널은 이미 설치되었습니다." -#: src/Common/LinuxKernel.vala:1108 -msgid "Installation completed. A reboot is required to use the new kernel." -msgstr "설치가 완료되었습닌다. 새 커널을 사용하려면 시스템을 재시작 하세요." - -#: src/Common/LinuxKernel.vala:1111 -msgid "Installation completed with errors" -msgstr "오류가 있으나 설치가 완료되었습니다" +#: src/Common/LinuxKernel.vala:1129 +#, fuzzy +msgid "Uninstalling selected kernels" +msgstr "지정한 커널 삭제" -#: src/Common/LinuxKernel.vala:1132 -msgid "" -"Selected kernel is currently running and cannot be un-installed.\n" -" Install another kernel before un-installing this one." +#: src/Common/LinuxKernel.vala:1135 +msgid "requested" msgstr "" -"선택된 커널은 현재 사용 중이므로 삭제할 수 없습니다.\n" -" 이 커널을 삭제하려면 다른 커널을 먼저 설치하세요." -#: src/Common/LinuxKernel.vala:1137 -msgid "Preparing to uninstall selected kernels" -msgstr "선택한 커널을 삭제하기 위해 준비중입니다" - -#: src/Common/LinuxKernel.vala:1168 src/Common/LinuxKernel.vala:1215 -msgid "Un-install completed" -msgstr "삭제가 완료되었습니다" - -#: src/Common/LinuxKernel.vala:1171 src/Common/LinuxKernel.vala:1218 -msgid "Un-install completed with errors" -msgstr "오류가 있으나 삭제가 완료되었습니다" +#: src/Common/LinuxKernel.vala:1138 +msgid "skipping the currently booted kernel" +msgstr "" -#: src/Common/LinuxKernel.vala:1184 -msgid "" -"This kernel is currently running and cannot be un-installed.\n" -" Install another kernel before un-installing this one." +#: src/Common/LinuxKernel.vala:1154 +msgid "found" msgstr "" -"이 커널은 현재 사용 중이므로 삭제할 수 없습니다.\n" -" 이 커널을 삭제하려면 다른 커널을 먼저 설치하세요." -#: src/Common/Main.vala:241 +#: src/Common/LinuxKernel.vala:1157 +#, fuzzy +msgid "No packages to un-install!" +msgstr "설치된 패키지" + +#: src/Common/Main.vala:260 msgid "Called from" msgstr "에서 호출" -#: src/Common/Main.vala:275 +#: src/Common/Main.vala:294 msgid "Notifications are disabled" msgstr "알림이 비활성화 되었습니다" @@ -150,238 +145,227 @@ msgstr "알림이 비활성화 되었습니다" msgid "File not found: %s" msgstr "%s 파일을 찾을 수 없습니다" -#: src/Console/AppConsole.vala:62 src/Gtk/AppGtk.vala:152 +#: src/Console/AppConsole.vala:68 src/Gtk/AppGtk.vala:141 msgid "Syntax" msgstr "문법" -#: src/Console/AppConsole.vala:64 +#: src/Console/AppConsole.vala:70 msgid "Commands" msgstr "명령어" -#: src/Console/AppConsole.vala:66 +#: src/Console/AppConsole.vala:72 msgid "Check for kernel updates" msgstr "커널 업데이트 확인" -#: src/Console/AppConsole.vala:67 +#: src/Console/AppConsole.vala:73 msgid "Check for kernel updates and notify current user" msgstr "커널 업데이트를 확인하고 현재 사용자에게 알림" -#: src/Console/AppConsole.vala:68 +#: src/Console/AppConsole.vala:74 msgid "List all available mainline kernels" msgstr "사용 가능한 모든 메인라인 커널 보기" -#: src/Console/AppConsole.vala:69 +#: src/Console/AppConsole.vala:75 msgid "List installed kernels" msgstr "설치된 커널 보기" -#: src/Console/AppConsole.vala:70 +#: src/Console/AppConsole.vala:76 msgid "Install latest mainline kernel" msgstr "최신 메인라인 커널 설치" -#: src/Console/AppConsole.vala:71 +#: src/Console/AppConsole.vala:77 msgid "Install latest point update for current series" msgstr "현재 사용중인 배포판을 위한 최신 포인트 업데이트 설치" -#: src/Console/AppConsole.vala:72 +#: src/Console/AppConsole.vala:78 msgid "Install specified mainline kernel" msgstr "지정한 메인라인 커널 설치" -#: src/Console/AppConsole.vala:73 +#: src/Console/AppConsole.vala:79 msgid "Uninstall specified kernel" msgstr "지정한 커널 삭제" -#: src/Console/AppConsole.vala:74 +#: src/Console/AppConsole.vala:80 msgid "Uninstall kernels older than the running kernel" msgstr "현재 사용중인 커널보다 이전 버전의 설치된 커널을 제거" -#: src/Console/AppConsole.vala:75 +#: src/Console/AppConsole.vala:81 msgid "Download specified kernels" msgstr "지정한 커널 다운로드" -#: src/Console/AppConsole.vala:76 -msgid "Remove files from application cache" -msgstr "프로그램 캐시에서 파일 제거" +#: src/Console/AppConsole.vala:82 +msgid "Delete cached info about available kernels" +msgstr "" -#: src/Console/AppConsole.vala:78 src/Gtk/AppGtk.vala:154 +#: src/Console/AppConsole.vala:84 src/Gtk/AppGtk.vala:143 msgid "Options" msgstr "옵션" -#: src/Console/AppConsole.vala:80 +#: src/Console/AppConsole.vala:86 msgid "Include unstable and RC releases" msgstr "목록에서 unstable, RC 버전 포함" -#: src/Console/AppConsole.vala:81 src/Gtk/SettingsDialog.vala:163 -msgid "Hide unstable and RC releases" +#: src/Console/AppConsole.vala:87 +#, fuzzy +msgid "Exclude unstable and RC releases" msgstr "목록에서 unstable, RC 버전 포함" -#: src/Console/AppConsole.vala:82 +#: src/Console/AppConsole.vala:88 msgid "Enable verbose debugging output" msgstr "디버깅을 위한 진행 과정 보이기 활성화" -#: src/Console/AppConsole.vala:83 +#: src/Console/AppConsole.vala:89 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "모든 물음에 자동으로 \"예\"라고 가정 (비 대화형 모드)" -#: src/Console/AppConsole.vala:84 -msgid "Override user" -msgstr "사용자 무시" - -#: src/Console/AppConsole.vala:87 +#: src/Console/AppConsole.vala:92 msgid "A version string taken from the output of --list" msgstr "--list 의 출력에서 가져온 버전 문자열" -#: src/Console/AppConsole.vala:88 +#: src/Console/AppConsole.vala:93 msgid "" "One or more version strings (comma-separated) taken from the output of --list" msgstr "--list 의 출력에서 가져온 하나 이상의 버전 문자열 (쉼표로 구분)" -#: src/Console/AppConsole.vala:169 src/Gtk/AppGtk.vala:139 +#: src/Console/AppConsole.vala:173 src/Gtk/AppGtk.vala:127 msgid "Unknown option" msgstr "알 수 없는 옵션" -#: src/Console/AppConsole.vala:171 src/Console/AppConsole.vala:265 -#: src/Console/AppConsole.vala:294 +#: src/Console/AppConsole.vala:175 src/Console/AppConsole.vala:255 +#: src/Console/AppConsole.vala:284 msgid "Run" msgstr "실행" -#: src/Console/AppConsole.vala:171 +#: src/Console/AppConsole.vala:175 msgid "to list all options" msgstr "모든 옵션을 나열" -#: src/Console/AppConsole.vala:238 src/Console/AppConsole.vala:273 +#: src/Console/AppConsole.vala:227 src/Console/AppConsole.vala:263 msgid "No kernels specified" msgstr "지정한 커널이 없습니다" -#: src/Console/AppConsole.vala:244 +#: src/Console/AppConsole.vala:233 msgid "Multiple kernels selected for installation. Select only one." msgstr "설치할 커널이 여러개 선택되었습니다. 하나의 커널만 선택하세요." -#: src/Console/AppConsole.vala:262 src/Gtk/MainWindow.vala:100 +#: src/Console/AppConsole.vala:252 msgid "Could not find requested version" msgstr "요청한 버전을 찾을 수 없습니다" -#: src/Console/AppConsole.vala:265 +#: src/Console/AppConsole.vala:255 msgid "and use a version string listed in first column" msgstr "첫 번째 열에 나열된 버전 문자열을 사용" -#: src/Console/AppConsole.vala:293 +#: src/Console/AppConsole.vala:283 msgid "Command not specified" msgstr "지정한 명령어가 없습니다" -#: src/Console/AppConsole.vala:294 +#: src/Console/AppConsole.vala:284 msgid "to list all commands" msgstr "모든 명령어 나열" -#: src/Console/AppConsole.vala:360 +#: src/Console/AppConsole.vala:338 msgid "Show" msgstr "보이기" -#: src/Console/AppConsole.vala:365 src/Console/AppConsole.vala:377 +#: src/Console/AppConsole.vala:343 src/Console/AppConsole.vala:355 #, c-format msgid "Kernel %s Available" msgstr "커널 %s 사용 가능" -#: src/Console/AppConsole.vala:367 src/Console/AppConsole.vala:379 -#: src/Gtk/MainWindow.vala:333 +#: src/Console/AppConsole.vala:345 src/Console/AppConsole.vala:357 +#: src/Gtk/MainWindow.vala:282 msgid "Install" msgstr "설치" -#: src/Gtk/AppGtk.vala:156 +#: src/Gtk/AppGtk.vala:141 +#, fuzzy +msgid "options" +msgstr "옵션" + +#: src/Gtk/AppGtk.vala:145 msgid "Print debug information" msgstr "디버그 정보 출력" -#: src/Gtk/AppGtk.vala:157 +#: src/Gtk/AppGtk.vala:146 msgid "Show all options" msgstr "모든 옵션 보기" -#: src/Gtk/CustomMessageDialog.vala:155 src/Gtk/ProgressWindow.vala:142 -#: src/Gtk/TerminalWindow.vala:148 -msgid "Cancel" -msgstr "취소" - -#: src/Gtk/CustomMessageDialog.vala:159 -msgid "Yes" -msgstr "" - -#: src/Gtk/CustomMessageDialog.vala:160 -msgid "No" -msgstr "" - -#: src/Gtk/MainWindow.vala:146 +#: src/Gtk/MainWindow.vala:108 msgid "Kernel" msgstr "커널" -#: src/Gtk/MainWindow.vala:176 +#: src/Gtk/MainWindow.vala:138 msgid "Status" msgstr "상태" -#: src/Gtk/MainWindow.vala:317 -msgid "Refresh" -msgstr "새로고침" - -#: src/Gtk/MainWindow.vala:324 src/Utility/TeeJee.System.vala:42 -#, fuzzy -msgid "Internet connection is not active" -msgstr "인터넷 연결을 확인하세요." - -#: src/Gtk/MainWindow.vala:324 src/Gtk/MainWindow.vala:518 -#: src/Gtk/MainWindow.vala:634 -msgid "No Internet" -msgstr "인터넷이 연결되지 않았습니다" - -#: src/Gtk/MainWindow.vala:344 +#: src/Gtk/MainWindow.vala:292 msgid "Uninstall" msgstr "삭제" -#: src/Gtk/MainWindow.vala:377 src/Gtk/MainWindow.vala:410 -#: src/Gtk/MainWindow.vala:666 -msgid "Close window to exit..." -msgstr "창을 닫고 종료..." +#: src/Gtk/MainWindow.vala:325 src/Gtk/MainWindow.vala:370 +#: src/Gtk/MainWindow.vala:616 +msgid "DONE" +msgstr "" + +#: src/Gtk/MainWindow.vala:333 +msgid "Changes" +msgstr "변경사항" -#: src/Gtk/MainWindow.vala:384 +#: src/Gtk/MainWindow.vala:344 msgid "Uninstall Old" msgstr "오래된 커널 제거" -#: src/Gtk/MainWindow.vala:385 +#: src/Gtk/MainWindow.vala:345 msgid "Uninstall kernels older than running kernel" msgstr "현재 사용 중인 커널보다 이전 버전의 커널을 제거" -#: src/Gtk/MainWindow.vala:417 -msgid "Changes" -msgstr "변경사항" +#: src/Gtk/MainWindow.vala:378 +msgid "Reload" +msgstr "" -#: src/Gtk/MainWindow.vala:428 src/Gtk/SettingsDialog.vala:50 +#: src/Gtk/MainWindow.vala:391 src/Gtk/SettingsDialog.vala:50 msgid "Settings" msgstr "설정" -#: src/Gtk/MainWindow.vala:451 +#: src/Gtk/MainWindow.vala:413 msgid "About" msgstr "정보" -#: src/Gtk/MainWindow.vala:496 +#: src/Gtk/MainWindow.vala:418 +msgid "Exit" +msgstr "" + +#: src/Gtk/MainWindow.vala:470 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "우분투 기반 배포판의 커널 업그레이드 도구" -#: src/Gtk/MainWindow.vala:497 +#: src/Gtk/MainWindow.vala:471 msgid "Forked" msgstr "" -#: src/Gtk/MainWindow.vala:497 +#: src/Gtk/MainWindow.vala:471 msgid "Original" msgstr "" -#: src/Gtk/MainWindow.vala:518 src/Gtk/MainWindow.vala:634 -msgid "Internet connection is not active." -msgstr "인터넷 연결을 확인하세요." - -#: src/Gtk/MainWindow.vala:531 +#: src/Gtk/MainWindow.vala:500 +#, fuzzy msgid "Refreshing..." msgstr "새로 고침..." -#: src/Gtk/MainWindow.vala:620 +#: src/Gtk/MainWindow.vala:582 msgid "available" msgstr "사용가능" +#: src/Gtk/MainWindow.vala:625 +#, fuzzy +msgid "Can not reach" +msgstr "파일 읽기를 실패했습니다" + +#: src/Gtk/ProgressWindow.vala:126 src/Gtk/TerminalWindow.vala:148 +msgid "Cancel" +msgstr "취소" + #: src/Gtk/SettingsDialog.vala:60 msgid "Notification" msgstr "알림" @@ -422,6 +406,10 @@ msgstr "초" msgid "Display" msgstr "보이기" +#: src/Gtk/SettingsDialog.vala:163 +msgid "Hide unstable and RC releases" +msgstr "목록에서 unstable, RC 버전 포함" + #: src/Gtk/SettingsDialog.vala:177 msgid "Show N previous major versions " msgstr "보여 질 이전 메이저 버전 수 " @@ -430,19 +418,15 @@ msgstr "보여 질 이전 메이저 버전 수 " msgid "Other" msgstr "기타" -#: src/Gtk/SettingsDialog.vala:200 -msgid "Skip internet connection check" -msgstr "인터넷 연결 확인 하지 않기" - -#: src/Gtk/SettingsDialog.vala:213 +#: src/Gtk/SettingsDialog.vala:203 msgid "Internet connection timeout in " msgstr "인터넷 연결 타임아웃 시간 " -#: src/Gtk/SettingsDialog.vala:228 +#: src/Gtk/SettingsDialog.vala:218 msgid "seconds" msgstr "초" -#: src/Gtk/SettingsDialog.vala:235 +#: src/Gtk/SettingsDialog.vala:225 msgid "Max concurrent downloads" msgstr "동시 다운로드 최대 수" @@ -482,7 +466,7 @@ msgstr "문서작성" msgid "Third Party Inclusions" msgstr "서드파티 포함" -#: src/Utility/Gtk/GtkHelper.vala:59 +#: src/Utility/Gtk/GtkHelper.vala:49 msgid "Missing Icon" msgstr "아이콘을 찾을 수 없습니다" diff --git a/po/messages.pot b/po/messages.pot index d7dce10c..166c1b92 100644 --- a/po/messages.pot +++ b/po/messages.pot @@ -6,9 +6,9 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: mainline 1.0.21\n" +"Project-Id-Version: mainline 1.0.23\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-02-23 17:56-0500\n" +"POT-Creation-Date: 2023-03-04 22:34-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -25,123 +25,118 @@ msgstr "" msgid "Architecture" msgstr "" -#: src/Common/LinuxKernel.vala:290 -msgid "Fetching index..." +#: src/Common/LinuxKernel.vala:256 +msgid "cached" msgstr "" -#: src/Common/LinuxKernel.vala:329 -msgid "Fetching index from kernel.ubuntu.com..." +#: src/Common/LinuxKernel.vala:268 +msgid "GET" msgstr "" -#: src/Common/LinuxKernel.vala:585 +#: src/Common/LinuxKernel.vala:296 +msgid "Fetching individual kernel indexes..." +msgstr "" + +#: src/Common/LinuxKernel.vala:338 +msgid "Fetching main index from" +msgstr "" + +#: src/Common/LinuxKernel.vala:599 msgid "Could not find running kernel in list!" msgstr "" -#: src/Common/LinuxKernel.vala:591 +#: src/Common/LinuxKernel.vala:605 msgid "Could not find any kernels to uninstall" msgstr "" -#: src/Common/LinuxKernel.vala:600 +#: src/Common/LinuxKernel.vala:614 msgid "The following kernels will be uninstalled:" msgstr "" -#: src/Common/LinuxKernel.vala:607 +#: src/Common/LinuxKernel.vala:621 msgid "Continue ?" msgstr "" -#: src/Common/LinuxKernel.vala:633 src/Console/AppConsole.vala:314 +#: src/Common/LinuxKernel.vala:644 src/Console/AppConsole.vala:298 msgid "Latest update" msgstr "" -#: src/Common/LinuxKernel.vala:644 src/Console/AppConsole.vala:321 +#: src/Common/LinuxKernel.vala:655 src/Console/AppConsole.vala:305 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:652 src/Console/AppConsole.vala:326 -#: src/Console/AppConsole.vala:387 +#: src/Common/LinuxKernel.vala:663 src/Console/AppConsole.vala:310 +#: src/Console/AppConsole.vala:365 msgid "No updates found" msgstr "" -#: src/Common/LinuxKernel.vala:662 +#: src/Common/LinuxKernel.vala:673 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "" -#: src/Common/LinuxKernel.vala:912 +#: src/Common/LinuxKernel.vala:924 msgid "Packages Available" msgstr "" -#: src/Common/LinuxKernel.vala:920 +#: src/Common/LinuxKernel.vala:932 msgid "Packages Installed" msgstr "" -#: src/Common/LinuxKernel.vala:1000 +#: src/Common/LinuxKernel.vala:1011 msgid "Available Kernels" msgstr "" -#: src/Common/LinuxKernel.vala:1007 src/Gtk/MainWindow.vala:189 +#: src/Common/LinuxKernel.vala:1018 src/Gtk/MainWindow.vala:151 msgid "Installed" msgstr "" -#: src/Common/LinuxKernel.vala:1007 src/Gtk/MainWindow.vala:189 -#: src/Gtk/MainWindow.vala:610 src/Gtk/MainWindow.vala:624 +#: src/Common/LinuxKernel.vala:1018 src/Gtk/MainWindow.vala:151 +#: src/Gtk/MainWindow.vala:572 src/Gtk/MainWindow.vala:586 msgid "Running" msgstr "" -#: src/Common/LinuxKernel.vala:1044 +#: src/Common/LinuxKernel.vala:1055 msgid "Downloading" msgstr "" -#: src/Common/LinuxKernel.vala:1063 src/Gtk/CustomMessageDialog.vala:150 -#: src/Gtk/CustomMessageDialog.vala:154 +#: src/Common/LinuxKernel.vala:1074 msgid "OK" msgstr "" -#: src/Common/LinuxKernel.vala:1068 +#: src/Common/LinuxKernel.vala:1079 msgid "ERROR" msgstr "" -#: src/Common/LinuxKernel.vala:1082 +#: src/Common/LinuxKernel.vala:1093 msgid "This kernel is already installed." msgstr "" -#: src/Common/LinuxKernel.vala:1108 -msgid "Installation completed. A reboot is required to use the new kernel." +#: src/Common/LinuxKernel.vala:1129 +msgid "Uninstalling selected kernels" msgstr "" -#: src/Common/LinuxKernel.vala:1111 -msgid "Installation completed with errors" +#: src/Common/LinuxKernel.vala:1135 +msgid "requested" msgstr "" -#: src/Common/LinuxKernel.vala:1132 -msgid "" -"Selected kernel is currently running and cannot be un-installed.\n" -" Install another kernel before un-installing this one." +#: src/Common/LinuxKernel.vala:1138 +msgid "skipping the currently booted kernel" msgstr "" -#: src/Common/LinuxKernel.vala:1137 -msgid "Preparing to uninstall selected kernels" +#: src/Common/LinuxKernel.vala:1154 +msgid "found" msgstr "" -#: src/Common/LinuxKernel.vala:1168 src/Common/LinuxKernel.vala:1215 -msgid "Un-install completed" +#: src/Common/LinuxKernel.vala:1157 +msgid "No packages to un-install!" msgstr "" -#: src/Common/LinuxKernel.vala:1171 src/Common/LinuxKernel.vala:1218 -msgid "Un-install completed with errors" -msgstr "" - -#: src/Common/LinuxKernel.vala:1184 -msgid "" -"This kernel is currently running and cannot be un-installed.\n" -" Install another kernel before un-installing this one." -msgstr "" - -#: src/Common/Main.vala:241 +#: src/Common/Main.vala:260 msgid "Called from" msgstr "" -#: src/Common/Main.vala:275 +#: src/Common/Main.vala:294 msgid "Notifications are disabled" msgstr "" @@ -150,237 +145,223 @@ msgstr "" msgid "File not found: %s" msgstr "" -#: src/Console/AppConsole.vala:62 src/Gtk/AppGtk.vala:152 +#: src/Console/AppConsole.vala:68 src/Gtk/AppGtk.vala:141 msgid "Syntax" msgstr "" -#: src/Console/AppConsole.vala:64 +#: src/Console/AppConsole.vala:70 msgid "Commands" msgstr "" -#: src/Console/AppConsole.vala:66 +#: src/Console/AppConsole.vala:72 msgid "Check for kernel updates" msgstr "" -#: src/Console/AppConsole.vala:67 +#: src/Console/AppConsole.vala:73 msgid "Check for kernel updates and notify current user" msgstr "" -#: src/Console/AppConsole.vala:68 +#: src/Console/AppConsole.vala:74 msgid "List all available mainline kernels" msgstr "" -#: src/Console/AppConsole.vala:69 +#: src/Console/AppConsole.vala:75 msgid "List installed kernels" msgstr "" -#: src/Console/AppConsole.vala:70 +#: src/Console/AppConsole.vala:76 msgid "Install latest mainline kernel" msgstr "" -#: src/Console/AppConsole.vala:71 +#: src/Console/AppConsole.vala:77 msgid "Install latest point update for current series" msgstr "" -#: src/Console/AppConsole.vala:72 +#: src/Console/AppConsole.vala:78 msgid "Install specified mainline kernel" msgstr "" -#: src/Console/AppConsole.vala:73 +#: src/Console/AppConsole.vala:79 msgid "Uninstall specified kernel" msgstr "" -#: src/Console/AppConsole.vala:74 +#: src/Console/AppConsole.vala:80 msgid "Uninstall kernels older than the running kernel" msgstr "" -#: src/Console/AppConsole.vala:75 +#: src/Console/AppConsole.vala:81 msgid "Download specified kernels" msgstr "" -#: src/Console/AppConsole.vala:76 -msgid "Remove files from application cache" +#: src/Console/AppConsole.vala:82 +msgid "Delete cached info about available kernels" msgstr "" -#: src/Console/AppConsole.vala:78 src/Gtk/AppGtk.vala:154 +#: src/Console/AppConsole.vala:84 src/Gtk/AppGtk.vala:143 msgid "Options" msgstr "" -#: src/Console/AppConsole.vala:80 +#: src/Console/AppConsole.vala:86 msgid "Include unstable and RC releases" msgstr "" -#: src/Console/AppConsole.vala:81 src/Gtk/SettingsDialog.vala:163 -msgid "Hide unstable and RC releases" +#: src/Console/AppConsole.vala:87 +msgid "Exclude unstable and RC releases" msgstr "" -#: src/Console/AppConsole.vala:82 +#: src/Console/AppConsole.vala:88 msgid "Enable verbose debugging output" msgstr "" -#: src/Console/AppConsole.vala:83 +#: src/Console/AppConsole.vala:89 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "" -#: src/Console/AppConsole.vala:84 -msgid "Override user" -msgstr "" - -#: src/Console/AppConsole.vala:87 +#: src/Console/AppConsole.vala:92 msgid "A version string taken from the output of --list" msgstr "" -#: src/Console/AppConsole.vala:88 +#: src/Console/AppConsole.vala:93 msgid "" "One or more version strings (comma-separated) taken from the output of --list" msgstr "" -#: src/Console/AppConsole.vala:169 src/Gtk/AppGtk.vala:139 +#: src/Console/AppConsole.vala:173 src/Gtk/AppGtk.vala:127 msgid "Unknown option" msgstr "" -#: src/Console/AppConsole.vala:171 src/Console/AppConsole.vala:265 -#: src/Console/AppConsole.vala:294 +#: src/Console/AppConsole.vala:175 src/Console/AppConsole.vala:255 +#: src/Console/AppConsole.vala:284 msgid "Run" msgstr "" -#: src/Console/AppConsole.vala:171 +#: src/Console/AppConsole.vala:175 msgid "to list all options" msgstr "" -#: src/Console/AppConsole.vala:238 src/Console/AppConsole.vala:273 +#: src/Console/AppConsole.vala:227 src/Console/AppConsole.vala:263 msgid "No kernels specified" msgstr "" -#: src/Console/AppConsole.vala:244 +#: src/Console/AppConsole.vala:233 msgid "Multiple kernels selected for installation. Select only one." msgstr "" -#: src/Console/AppConsole.vala:262 src/Gtk/MainWindow.vala:100 +#: src/Console/AppConsole.vala:252 msgid "Could not find requested version" msgstr "" -#: src/Console/AppConsole.vala:265 +#: src/Console/AppConsole.vala:255 msgid "and use a version string listed in first column" msgstr "" -#: src/Console/AppConsole.vala:293 +#: src/Console/AppConsole.vala:283 msgid "Command not specified" msgstr "" -#: src/Console/AppConsole.vala:294 +#: src/Console/AppConsole.vala:284 msgid "to list all commands" msgstr "" -#: src/Console/AppConsole.vala:360 +#: src/Console/AppConsole.vala:338 msgid "Show" msgstr "" -#: src/Console/AppConsole.vala:365 src/Console/AppConsole.vala:377 +#: src/Console/AppConsole.vala:343 src/Console/AppConsole.vala:355 #, c-format msgid "Kernel %s Available" msgstr "" -#: src/Console/AppConsole.vala:367 src/Console/AppConsole.vala:379 -#: src/Gtk/MainWindow.vala:333 +#: src/Console/AppConsole.vala:345 src/Console/AppConsole.vala:357 +#: src/Gtk/MainWindow.vala:282 msgid "Install" msgstr "" -#: src/Gtk/AppGtk.vala:156 -msgid "Print debug information" -msgstr "" - -#: src/Gtk/AppGtk.vala:157 -msgid "Show all options" +#: src/Gtk/AppGtk.vala:141 +msgid "options" msgstr "" -#: src/Gtk/CustomMessageDialog.vala:155 src/Gtk/ProgressWindow.vala:142 -#: src/Gtk/TerminalWindow.vala:148 -msgid "Cancel" -msgstr "" - -#: src/Gtk/CustomMessageDialog.vala:159 -msgid "Yes" +#: src/Gtk/AppGtk.vala:145 +msgid "Print debug information" msgstr "" -#: src/Gtk/CustomMessageDialog.vala:160 -msgid "No" +#: src/Gtk/AppGtk.vala:146 +msgid "Show all options" msgstr "" -#: src/Gtk/MainWindow.vala:146 +#: src/Gtk/MainWindow.vala:108 msgid "Kernel" msgstr "" -#: src/Gtk/MainWindow.vala:176 +#: src/Gtk/MainWindow.vala:138 msgid "Status" msgstr "" -#: src/Gtk/MainWindow.vala:317 -msgid "Refresh" +#: src/Gtk/MainWindow.vala:292 +msgid "Uninstall" msgstr "" -#: src/Gtk/MainWindow.vala:324 src/Utility/TeeJee.System.vala:42 -msgid "Internet connection is not active" +#: src/Gtk/MainWindow.vala:325 src/Gtk/MainWindow.vala:370 +#: src/Gtk/MainWindow.vala:616 +msgid "DONE" msgstr "" -#: src/Gtk/MainWindow.vala:324 src/Gtk/MainWindow.vala:518 -#: src/Gtk/MainWindow.vala:634 -msgid "No Internet" +#: src/Gtk/MainWindow.vala:333 +msgid "Changes" msgstr "" #: src/Gtk/MainWindow.vala:344 -msgid "Uninstall" -msgstr "" - -#: src/Gtk/MainWindow.vala:377 src/Gtk/MainWindow.vala:410 -#: src/Gtk/MainWindow.vala:666 -msgid "Close window to exit..." -msgstr "" - -#: src/Gtk/MainWindow.vala:384 msgid "Uninstall Old" msgstr "" -#: src/Gtk/MainWindow.vala:385 +#: src/Gtk/MainWindow.vala:345 msgid "Uninstall kernels older than running kernel" msgstr "" -#: src/Gtk/MainWindow.vala:417 -msgid "Changes" +#: src/Gtk/MainWindow.vala:378 +msgid "Reload" msgstr "" -#: src/Gtk/MainWindow.vala:428 src/Gtk/SettingsDialog.vala:50 +#: src/Gtk/MainWindow.vala:391 src/Gtk/SettingsDialog.vala:50 msgid "Settings" msgstr "" -#: src/Gtk/MainWindow.vala:451 +#: src/Gtk/MainWindow.vala:413 msgid "About" msgstr "" -#: src/Gtk/MainWindow.vala:496 +#: src/Gtk/MainWindow.vala:418 +msgid "Exit" +msgstr "" + +#: src/Gtk/MainWindow.vala:470 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "" -#: src/Gtk/MainWindow.vala:497 +#: src/Gtk/MainWindow.vala:471 msgid "Forked" msgstr "" -#: src/Gtk/MainWindow.vala:497 +#: src/Gtk/MainWindow.vala:471 msgid "Original" msgstr "" -#: src/Gtk/MainWindow.vala:518 src/Gtk/MainWindow.vala:634 -msgid "Internet connection is not active." -msgstr "" - -#: src/Gtk/MainWindow.vala:531 +#: src/Gtk/MainWindow.vala:500 msgid "Refreshing..." msgstr "" -#: src/Gtk/MainWindow.vala:620 +#: src/Gtk/MainWindow.vala:582 msgid "available" msgstr "" +#: src/Gtk/MainWindow.vala:625 +msgid "Can not reach" +msgstr "" + +#: src/Gtk/ProgressWindow.vala:126 src/Gtk/TerminalWindow.vala:148 +msgid "Cancel" +msgstr "" + #: src/Gtk/SettingsDialog.vala:60 msgid "Notification" msgstr "" @@ -421,6 +402,10 @@ msgstr "" msgid "Display" msgstr "" +#: src/Gtk/SettingsDialog.vala:163 +msgid "Hide unstable and RC releases" +msgstr "" + #: src/Gtk/SettingsDialog.vala:177 msgid "Show N previous major versions " msgstr "" @@ -429,19 +414,15 @@ msgstr "" msgid "Other" msgstr "" -#: src/Gtk/SettingsDialog.vala:200 -msgid "Skip internet connection check" -msgstr "" - -#: src/Gtk/SettingsDialog.vala:213 +#: src/Gtk/SettingsDialog.vala:203 msgid "Internet connection timeout in " msgstr "" -#: src/Gtk/SettingsDialog.vala:228 +#: src/Gtk/SettingsDialog.vala:218 msgid "seconds" msgstr "" -#: src/Gtk/SettingsDialog.vala:235 +#: src/Gtk/SettingsDialog.vala:225 msgid "Max concurrent downloads" msgstr "" @@ -481,7 +462,7 @@ msgstr "" msgid "Third Party Inclusions" msgstr "" -#: src/Utility/Gtk/GtkHelper.vala:59 +#: src/Utility/Gtk/GtkHelper.vala:49 msgid "Missing Icon" msgstr "" diff --git a/po/nl.po b/po/nl.po index 2a2c876b..ce49b3ce 100644 --- a/po/nl.po +++ b/po/nl.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-02-23 17:56-0500\n" +"POT-Creation-Date: 2023-03-04 22:34-0500\n" "PO-Revision-Date: 2020-08-23 13:55+0200\n" "Last-Translator: Heimen Stoffels \n" "Language-Team: Dutch (Netherlands)\n" @@ -21,135 +21,124 @@ msgstr "Distributie" msgid "Architecture" msgstr "Architectuur" -#: src/Common/LinuxKernel.vala:290 -msgid "Fetching index..." +#: src/Common/LinuxKernel.vala:256 +msgid "cached" +msgstr "" + +#: src/Common/LinuxKernel.vala:268 +msgid "GET" +msgstr "" + +#: src/Common/LinuxKernel.vala:296 +#, fuzzy +msgid "Fetching individual kernel indexes..." msgstr "Bezig met ophalen van index..." -#: src/Common/LinuxKernel.vala:329 -msgid "Fetching index from kernel.ubuntu.com..." -msgstr "Bezig met ophalen van index van kernel.ubuntu.com..." +#: src/Common/LinuxKernel.vala:338 +#, fuzzy +msgid "Fetching main index from" +msgstr "Bezig met ophalen van index..." -#: src/Common/LinuxKernel.vala:585 +#: src/Common/LinuxKernel.vala:599 msgid "Could not find running kernel in list!" msgstr "De in gebruik zijnde kernel staat niet op de lijst!" -#: src/Common/LinuxKernel.vala:591 +#: src/Common/LinuxKernel.vala:605 #, fuzzy msgid "Could not find any kernels to uninstall" msgstr "Er zijn geen te verwijderen kernels" -#: src/Common/LinuxKernel.vala:600 +#: src/Common/LinuxKernel.vala:614 #, fuzzy msgid "The following kernels will be uninstalled:" msgstr "De volgende kernels worden verwijderd:" -#: src/Common/LinuxKernel.vala:607 +#: src/Common/LinuxKernel.vala:621 msgid "Continue ?" msgstr "Wil je doorgaan?" -#: src/Common/LinuxKernel.vala:633 src/Console/AppConsole.vala:314 +#: src/Common/LinuxKernel.vala:644 src/Console/AppConsole.vala:298 msgid "Latest update" msgstr "Recentste update" -#: src/Common/LinuxKernel.vala:644 src/Console/AppConsole.vala:321 +#: src/Common/LinuxKernel.vala:655 src/Console/AppConsole.vala:305 msgid "Latest point update" msgstr "Recentste puntupdate" -#: src/Common/LinuxKernel.vala:652 src/Console/AppConsole.vala:326 -#: src/Console/AppConsole.vala:387 +#: src/Common/LinuxKernel.vala:663 src/Console/AppConsole.vala:310 +#: src/Console/AppConsole.vala:365 msgid "No updates found" msgstr "Geen updates gevonden" -#: src/Common/LinuxKernel.vala:662 +#: src/Common/LinuxKernel.vala:673 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Wil je versie %s installeren? (j/n): " -#: src/Common/LinuxKernel.vala:912 +#: src/Common/LinuxKernel.vala:924 msgid "Packages Available" msgstr "Beschikbare pakketten" -#: src/Common/LinuxKernel.vala:920 +#: src/Common/LinuxKernel.vala:932 msgid "Packages Installed" msgstr "Geïnstalleerde pakketten" -#: src/Common/LinuxKernel.vala:1000 +#: src/Common/LinuxKernel.vala:1011 msgid "Available Kernels" msgstr "Beschikbare kernels" -#: src/Common/LinuxKernel.vala:1007 src/Gtk/MainWindow.vala:189 +#: src/Common/LinuxKernel.vala:1018 src/Gtk/MainWindow.vala:151 msgid "Installed" msgstr "Geïnstalleerd" -#: src/Common/LinuxKernel.vala:1007 src/Gtk/MainWindow.vala:189 -#: src/Gtk/MainWindow.vala:610 src/Gtk/MainWindow.vala:624 +#: src/Common/LinuxKernel.vala:1018 src/Gtk/MainWindow.vala:151 +#: src/Gtk/MainWindow.vala:572 src/Gtk/MainWindow.vala:586 msgid "Running" msgstr "In gebruik" -#: src/Common/LinuxKernel.vala:1044 +#: src/Common/LinuxKernel.vala:1055 msgid "Downloading" msgstr "Bezig met downloaden" -#: src/Common/LinuxKernel.vala:1063 src/Gtk/CustomMessageDialog.vala:150 -#: src/Gtk/CustomMessageDialog.vala:154 +#: src/Common/LinuxKernel.vala:1074 msgid "OK" msgstr "Oké" -#: src/Common/LinuxKernel.vala:1068 +#: src/Common/LinuxKernel.vala:1079 msgid "ERROR" msgstr "FOUT" -#: src/Common/LinuxKernel.vala:1082 +#: src/Common/LinuxKernel.vala:1093 msgid "This kernel is already installed." msgstr "Deze kernel is al geïnstalleerd." -#: src/Common/LinuxKernel.vala:1108 -msgid "Installation completed. A reboot is required to use the new kernel." -msgstr "" -"De installatie is voltooid. Herstart de computer om de nieuwe kernel te " -"gebruiken." - -#: src/Common/LinuxKernel.vala:1111 -msgid "Installation completed with errors" -msgstr "De installatie is foutloos voltooid" - -#: src/Common/LinuxKernel.vala:1132 +#: src/Common/LinuxKernel.vala:1129 #, fuzzy -msgid "" -"Selected kernel is currently running and cannot be un-installed.\n" -" Install another kernel before un-installing this one." -msgstr "" -"De geselecteerde kernel is momenteel in gebruik en kan daarom niet worden " -"verwijderd.\n" -" Installeer eerst een andere kernel." +msgid "Uninstalling selected kernels" +msgstr "Opgegeven kernels deïnstalleren" -#: src/Common/LinuxKernel.vala:1137 -#, fuzzy -msgid "Preparing to uninstall selected kernels" -msgstr "Bezig met voorbereiden van verwijdering" +#: src/Common/LinuxKernel.vala:1135 +msgid "requested" +msgstr "" -#: src/Common/LinuxKernel.vala:1168 src/Common/LinuxKernel.vala:1215 -msgid "Un-install completed" -msgstr "Deïnstalleren voltooid" +#: src/Common/LinuxKernel.vala:1138 +msgid "skipping the currently booted kernel" +msgstr "" -#: src/Common/LinuxKernel.vala:1171 src/Common/LinuxKernel.vala:1218 -msgid "Un-install completed with errors" -msgstr "Deïnstalleren voltooid, maar met fouten" +#: src/Common/LinuxKernel.vala:1154 +msgid "found" +msgstr "" -#: src/Common/LinuxKernel.vala:1184 +#: src/Common/LinuxKernel.vala:1157 #, fuzzy -msgid "" -"This kernel is currently running and cannot be un-installed.\n" -" Install another kernel before un-installing this one." -msgstr "" -"Deze kernel is momenteel in gebruik en kan daarom niet worden verwijderd.\n" -" Installeer eerst een andere kernel." +msgid "No packages to un-install!" +msgstr "Geïnstalleerde pakketten" -#: src/Common/Main.vala:241 +#: src/Common/Main.vala:260 msgid "Called from" msgstr "Aangeroepen door" -#: src/Common/Main.vala:275 +#: src/Common/Main.vala:294 msgid "Notifications are disabled" msgstr "Meldingen zijn uitgeschakeld" @@ -158,247 +147,236 @@ msgstr "Meldingen zijn uitgeschakeld" msgid "File not found: %s" msgstr "Bestand niet gevonden: %s" -#: src/Console/AppConsole.vala:62 src/Gtk/AppGtk.vala:152 +#: src/Console/AppConsole.vala:68 src/Gtk/AppGtk.vala:141 msgid "Syntax" msgstr "Syntax" -#: src/Console/AppConsole.vala:64 +#: src/Console/AppConsole.vala:70 msgid "Commands" msgstr "Opdrachten" -#: src/Console/AppConsole.vala:66 +#: src/Console/AppConsole.vala:72 msgid "Check for kernel updates" msgstr "Controleren op kernelupdates" -#: src/Console/AppConsole.vala:67 +#: src/Console/AppConsole.vala:73 msgid "Check for kernel updates and notify current user" msgstr "Controleren op kernelupdates en gebruiker op de hoogte brengen" -#: src/Console/AppConsole.vala:68 +#: src/Console/AppConsole.vala:74 msgid "List all available mainline kernels" msgstr "Alle beschikbare mainline-kernels tonen" -#: src/Console/AppConsole.vala:69 +#: src/Console/AppConsole.vala:75 msgid "List installed kernels" msgstr "Alle geïnstalleerde kernels tonen" -#: src/Console/AppConsole.vala:70 +#: src/Console/AppConsole.vala:76 msgid "Install latest mainline kernel" msgstr "Recentste mainline-kernel installeren" -#: src/Console/AppConsole.vala:71 +#: src/Console/AppConsole.vala:77 msgid "Install latest point update for current series" msgstr "Recentste puntupdate uit huidige editie installeren" -#: src/Console/AppConsole.vala:72 +#: src/Console/AppConsole.vala:78 msgid "Install specified mainline kernel" msgstr "Opgegeven mainline-kernel installeren" -#: src/Console/AppConsole.vala:73 +#: src/Console/AppConsole.vala:79 #, fuzzy msgid "Uninstall specified kernel" msgstr "Opgegeven kernels deïnstalleren" -#: src/Console/AppConsole.vala:74 +#: src/Console/AppConsole.vala:80 #, fuzzy msgid "Uninstall kernels older than the running kernel" msgstr "Geïnstalleerde kernels verwijderen die ouder zijn dan de huidige" -#: src/Console/AppConsole.vala:75 +#: src/Console/AppConsole.vala:81 msgid "Download specified kernels" msgstr "Opgegeven kernels downloaden" -#: src/Console/AppConsole.vala:76 -msgid "Remove files from application cache" -msgstr "Bestanden verwijderen uit programmacache" +#: src/Console/AppConsole.vala:82 +msgid "Delete cached info about available kernels" +msgstr "" -#: src/Console/AppConsole.vala:78 src/Gtk/AppGtk.vala:154 +#: src/Console/AppConsole.vala:84 src/Gtk/AppGtk.vala:143 msgid "Options" msgstr "Opties" -#: src/Console/AppConsole.vala:80 +#: src/Console/AppConsole.vala:86 #, fuzzy msgid "Include unstable and RC releases" msgstr "Instabiele en rc-uitgaven verbergen" -#: src/Console/AppConsole.vala:81 src/Gtk/SettingsDialog.vala:163 -msgid "Hide unstable and RC releases" +#: src/Console/AppConsole.vala:87 +#, fuzzy +msgid "Exclude unstable and RC releases" msgstr "Instabiele en rc-uitgaven verbergen" -#: src/Console/AppConsole.vala:82 +#: src/Console/AppConsole.vala:88 msgid "Enable verbose debugging output" msgstr "Foutopsporingsinformatie vastleggen" -#: src/Console/AppConsole.vala:83 +#: src/Console/AppConsole.vala:89 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "Ja op alles (in de niet-interactieve modus)" -#: src/Console/AppConsole.vala:84 -msgid "Override user" -msgstr "Gebruiker overmeesteren" - -#: src/Console/AppConsole.vala:87 +#: src/Console/AppConsole.vala:92 msgid "A version string taken from the output of --list" msgstr "Een versietekenreeks uit de uitvoer van --list" -#: src/Console/AppConsole.vala:88 +#: src/Console/AppConsole.vala:93 msgid "" "One or more version strings (comma-separated) taken from the output of --list" msgstr "" "Eén of meerdere versietekenreeksen (kommagescheiden) uit de uitvoer van --" "list" -#: src/Console/AppConsole.vala:169 src/Gtk/AppGtk.vala:139 +#: src/Console/AppConsole.vala:173 src/Gtk/AppGtk.vala:127 msgid "Unknown option" msgstr "Onbekende optie" -#: src/Console/AppConsole.vala:171 src/Console/AppConsole.vala:265 -#: src/Console/AppConsole.vala:294 +#: src/Console/AppConsole.vala:175 src/Console/AppConsole.vala:255 +#: src/Console/AppConsole.vala:284 msgid "Run" msgstr "Uitvoeren" -#: src/Console/AppConsole.vala:171 +#: src/Console/AppConsole.vala:175 msgid "to list all options" msgstr "om alle opties te tonen" -#: src/Console/AppConsole.vala:238 src/Console/AppConsole.vala:273 +#: src/Console/AppConsole.vala:227 src/Console/AppConsole.vala:263 msgid "No kernels specified" msgstr "Geen kernels opgegeven" -#: src/Console/AppConsole.vala:244 +#: src/Console/AppConsole.vala:233 msgid "Multiple kernels selected for installation. Select only one." msgstr "" "Er zijn meerdere te installeren kernels geselecteerd. Selecteer er één." -#: src/Console/AppConsole.vala:262 src/Gtk/MainWindow.vala:100 +#: src/Console/AppConsole.vala:252 msgid "Could not find requested version" msgstr "De vereiste versie kan niet worden gevonden" -#: src/Console/AppConsole.vala:265 +#: src/Console/AppConsole.vala:255 msgid "and use a version string listed in first column" msgstr "en gebruik een versietekenreeks in de eerste kolom" -#: src/Console/AppConsole.vala:293 +#: src/Console/AppConsole.vala:283 msgid "Command not specified" msgstr "Geen opdracht opgegeven" -#: src/Console/AppConsole.vala:294 +#: src/Console/AppConsole.vala:284 msgid "to list all commands" msgstr "om alle opdrachten te tonen" -#: src/Console/AppConsole.vala:360 +#: src/Console/AppConsole.vala:338 msgid "Show" msgstr "Tonen" -#: src/Console/AppConsole.vala:365 src/Console/AppConsole.vala:377 +#: src/Console/AppConsole.vala:343 src/Console/AppConsole.vala:355 #, c-format msgid "Kernel %s Available" msgstr "Kernel %s is beschikbaar" -#: src/Console/AppConsole.vala:367 src/Console/AppConsole.vala:379 -#: src/Gtk/MainWindow.vala:333 +#: src/Console/AppConsole.vala:345 src/Console/AppConsole.vala:357 +#: src/Gtk/MainWindow.vala:282 msgid "Install" msgstr "Installeren" -#: src/Gtk/AppGtk.vala:156 +#: src/Gtk/AppGtk.vala:141 +#, fuzzy +msgid "options" +msgstr "Opties" + +#: src/Gtk/AppGtk.vala:145 msgid "Print debug information" msgstr "Foutopsporingsinformatie tonen" -#: src/Gtk/AppGtk.vala:157 +#: src/Gtk/AppGtk.vala:146 msgid "Show all options" msgstr "Alle opties tonen" -#: src/Gtk/CustomMessageDialog.vala:155 src/Gtk/ProgressWindow.vala:142 -#: src/Gtk/TerminalWindow.vala:148 -msgid "Cancel" -msgstr "Annuleren" - -#: src/Gtk/CustomMessageDialog.vala:159 -msgid "Yes" -msgstr "" - -#: src/Gtk/CustomMessageDialog.vala:160 -msgid "No" -msgstr "" - -#: src/Gtk/MainWindow.vala:146 +#: src/Gtk/MainWindow.vala:108 msgid "Kernel" msgstr "Kernel" -#: src/Gtk/MainWindow.vala:176 +#: src/Gtk/MainWindow.vala:138 msgid "Status" msgstr "Status" -#: src/Gtk/MainWindow.vala:317 -msgid "Refresh" -msgstr "Verversen" - -#: src/Gtk/MainWindow.vala:324 src/Utility/TeeJee.System.vala:42 -#, fuzzy -msgid "Internet connection is not active" -msgstr "Je bent niet verbonden met het internet." - -#: src/Gtk/MainWindow.vala:324 src/Gtk/MainWindow.vala:518 -#: src/Gtk/MainWindow.vala:634 -msgid "No Internet" -msgstr "Geen internetverbinding" - -#: src/Gtk/MainWindow.vala:344 +#: src/Gtk/MainWindow.vala:292 #, fuzzy msgid "Uninstall" msgstr "Installeren" -#: src/Gtk/MainWindow.vala:377 src/Gtk/MainWindow.vala:410 -#: src/Gtk/MainWindow.vala:666 -msgid "Close window to exit..." -msgstr "Sluit het venster..." +#: src/Gtk/MainWindow.vala:325 src/Gtk/MainWindow.vala:370 +#: src/Gtk/MainWindow.vala:616 +msgid "DONE" +msgstr "" + +#: src/Gtk/MainWindow.vala:333 +msgid "Changes" +msgstr "Wijzigingen" -#: src/Gtk/MainWindow.vala:384 +#: src/Gtk/MainWindow.vala:344 #, fuzzy msgid "Uninstall Old" msgstr "Deïnstalleren voltooid" -#: src/Gtk/MainWindow.vala:385 +#: src/Gtk/MainWindow.vala:345 #, fuzzy msgid "Uninstall kernels older than running kernel" msgstr "Geïnstalleerde kernels verwijderen die ouder zijn dan de huidige" -#: src/Gtk/MainWindow.vala:417 -msgid "Changes" -msgstr "Wijzigingen" +#: src/Gtk/MainWindow.vala:378 +msgid "Reload" +msgstr "" -#: src/Gtk/MainWindow.vala:428 src/Gtk/SettingsDialog.vala:50 +#: src/Gtk/MainWindow.vala:391 src/Gtk/SettingsDialog.vala:50 msgid "Settings" msgstr "Instellingen" -#: src/Gtk/MainWindow.vala:451 +#: src/Gtk/MainWindow.vala:413 msgid "About" msgstr "Over" -#: src/Gtk/MainWindow.vala:496 +#: src/Gtk/MainWindow.vala:418 +msgid "Exit" +msgstr "" + +#: src/Gtk/MainWindow.vala:470 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Een kernelupgradehulpmiddel voor op Ubuntu gebaseerde distributies" -#: src/Gtk/MainWindow.vala:497 +#: src/Gtk/MainWindow.vala:471 msgid "Forked" msgstr "Geforkt" -#: src/Gtk/MainWindow.vala:497 +#: src/Gtk/MainWindow.vala:471 msgid "Original" msgstr "Origineel" -#: src/Gtk/MainWindow.vala:518 src/Gtk/MainWindow.vala:634 -msgid "Internet connection is not active." -msgstr "Je bent niet verbonden met het internet." - -#: src/Gtk/MainWindow.vala:531 +#: src/Gtk/MainWindow.vala:500 +#, fuzzy msgid "Refreshing..." msgstr "Bezig met verversen..." -#: src/Gtk/MainWindow.vala:620 +#: src/Gtk/MainWindow.vala:582 msgid "available" msgstr "beschikbaar" +#: src/Gtk/MainWindow.vala:625 +#, fuzzy +msgid "Can not reach" +msgstr "Het bestand kan niet worden uitgelezen" + +#: src/Gtk/ProgressWindow.vala:126 src/Gtk/TerminalWindow.vala:148 +msgid "Cancel" +msgstr "Annuleren" + #: src/Gtk/SettingsDialog.vala:60 msgid "Notification" msgstr "Melding" @@ -439,6 +417,10 @@ msgstr "seconde(n)" msgid "Display" msgstr "Weergave" +#: src/Gtk/SettingsDialog.vala:163 +msgid "Hide unstable and RC releases" +msgstr "Instabiele en rc-uitgaven verbergen" + #: src/Gtk/SettingsDialog.vala:177 msgid "Show N previous major versions " msgstr "X aantal grote updates tonen " @@ -447,19 +429,15 @@ msgstr "X aantal grote updates tonen " msgid "Other" msgstr "Overig" -#: src/Gtk/SettingsDialog.vala:200 -msgid "Skip internet connection check" -msgstr "Verbindingscontrole overslaan" - -#: src/Gtk/SettingsDialog.vala:213 +#: src/Gtk/SettingsDialog.vala:203 msgid "Internet connection timeout in " msgstr "Verbindingstime-out na " -#: src/Gtk/SettingsDialog.vala:228 +#: src/Gtk/SettingsDialog.vala:218 msgid "seconds" msgstr "seconden" -#: src/Gtk/SettingsDialog.vala:235 +#: src/Gtk/SettingsDialog.vala:225 msgid "Max concurrent downloads" msgstr "Max. aantal gelijktijdige downloads" @@ -499,7 +477,7 @@ msgstr "Documenteerders" msgid "Third Party Inclusions" msgstr "Externe code" -#: src/Utility/Gtk/GtkHelper.vala:59 +#: src/Utility/Gtk/GtkHelper.vala:49 msgid "Missing Icon" msgstr "Ontbrekend pictogram" diff --git a/po/pl.po b/po/pl.po index 1b68ca63..e10e4bb4 100644 --- a/po/pl.po +++ b/po/pl.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-02-23 17:56-0500\n" +"POT-Creation-Date: 2023-03-04 22:34-0500\n" "PO-Revision-Date: 2021-09-17 10:29+0200\n" "Last-Translator: Viktor Sokyrko \n" "Language-Team: Polish\n" @@ -21,130 +21,123 @@ msgstr "Dystrybucja" msgid "Architecture" msgstr "Architektura systemu" -#: src/Common/LinuxKernel.vala:290 -msgid "Fetching index..." +#: src/Common/LinuxKernel.vala:256 +msgid "cached" +msgstr "" + +#: src/Common/LinuxKernel.vala:268 +msgid "GET" +msgstr "" + +#: src/Common/LinuxKernel.vala:296 +#, fuzzy +msgid "Fetching individual kernel indexes..." msgstr "Pobieranie indeksu..." -#: src/Common/LinuxKernel.vala:329 -msgid "Fetching index from kernel.ubuntu.com..." -msgstr "Pobieranie indeksu z kernel.ubuntu.com..." +#: src/Common/LinuxKernel.vala:338 +#, fuzzy +msgid "Fetching main index from" +msgstr "Pobieranie indeksu..." -#: src/Common/LinuxKernel.vala:585 +#: src/Common/LinuxKernel.vala:599 msgid "Could not find running kernel in list!" msgstr "Nie można znaleźć uruchomionego jądra na liście!" -#: src/Common/LinuxKernel.vala:591 +#: src/Common/LinuxKernel.vala:605 msgid "Could not find any kernels to uninstall" msgstr "Nie udało się odnaleźć żadnych jąder do odinstalowania" -#: src/Common/LinuxKernel.vala:600 +#: src/Common/LinuxKernel.vala:614 msgid "The following kernels will be uninstalled:" msgstr "Następujące jądra zostaną odinstalowane:" -#: src/Common/LinuxKernel.vala:607 +#: src/Common/LinuxKernel.vala:621 msgid "Continue ?" msgstr "Kontynuowac?" -#: src/Common/LinuxKernel.vala:633 src/Console/AppConsole.vala:314 +#: src/Common/LinuxKernel.vala:644 src/Console/AppConsole.vala:298 msgid "Latest update" msgstr "Najnowsza aktualizacja" -#: src/Common/LinuxKernel.vala:644 src/Console/AppConsole.vala:321 +#: src/Common/LinuxKernel.vala:655 src/Console/AppConsole.vala:305 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:652 src/Console/AppConsole.vala:326 -#: src/Console/AppConsole.vala:387 +#: src/Common/LinuxKernel.vala:663 src/Console/AppConsole.vala:310 +#: src/Console/AppConsole.vala:365 msgid "No updates found" msgstr "Nie znaleziono aktualizacji" -#: src/Common/LinuxKernel.vala:662 +#: src/Common/LinuxKernel.vala:673 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Instaluj wersję jądra %s ? (t/n): " -#: src/Common/LinuxKernel.vala:912 +#: src/Common/LinuxKernel.vala:924 msgid "Packages Available" msgstr "Dostępne pakiety" -#: src/Common/LinuxKernel.vala:920 +#: src/Common/LinuxKernel.vala:932 msgid "Packages Installed" msgstr "Pakiety zainstalowane" -#: src/Common/LinuxKernel.vala:1000 +#: src/Common/LinuxKernel.vala:1011 msgid "Available Kernels" msgstr "Dostępne jądra" -#: src/Common/LinuxKernel.vala:1007 src/Gtk/MainWindow.vala:189 +#: src/Common/LinuxKernel.vala:1018 src/Gtk/MainWindow.vala:151 msgid "Installed" msgstr "Zainstalowany" -#: src/Common/LinuxKernel.vala:1007 src/Gtk/MainWindow.vala:189 -#: src/Gtk/MainWindow.vala:610 src/Gtk/MainWindow.vala:624 +#: src/Common/LinuxKernel.vala:1018 src/Gtk/MainWindow.vala:151 +#: src/Gtk/MainWindow.vala:572 src/Gtk/MainWindow.vala:586 msgid "Running" msgstr "Uruchomiony" -#: src/Common/LinuxKernel.vala:1044 +#: src/Common/LinuxKernel.vala:1055 msgid "Downloading" msgstr "Pobieranie" -#: src/Common/LinuxKernel.vala:1063 src/Gtk/CustomMessageDialog.vala:150 -#: src/Gtk/CustomMessageDialog.vala:154 +#: src/Common/LinuxKernel.vala:1074 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:1068 +#: src/Common/LinuxKernel.vala:1079 msgid "ERROR" msgstr "BŁĄD" -#: src/Common/LinuxKernel.vala:1082 +#: src/Common/LinuxKernel.vala:1093 msgid "This kernel is already installed." msgstr "To jądro jest już zainstalowane." -#: src/Common/LinuxKernel.vala:1108 -msgid "Installation completed. A reboot is required to use the new kernel." -msgstr "" -"Instalacja zakończona. Aby korzystać z nowego jądra, konieczne jest ponowne " -"uruchomienie." - -#: src/Common/LinuxKernel.vala:1111 -msgid "Installation completed with errors" -msgstr "Instalacja zakończona z błędami" +#: src/Common/LinuxKernel.vala:1129 +#, fuzzy +msgid "Uninstalling selected kernels" +msgstr "Odinstaluj wybrane jądro" -#: src/Common/LinuxKernel.vala:1132 -msgid "" -"Selected kernel is currently running and cannot be un-installed.\n" -" Install another kernel before un-installing this one." +#: src/Common/LinuxKernel.vala:1135 +msgid "requested" msgstr "" -"Wybrane jądro aktualnie działa i nie może zostać odinstalowane.\n" -" Zainstaluj inne jądro przed odinstalowaniem tego." - -#: src/Common/LinuxKernel.vala:1137 -msgid "Preparing to uninstall selected kernels" -msgstr "Przygotowanie do odinstalowania wybranych jąder" - -#: src/Common/LinuxKernel.vala:1168 src/Common/LinuxKernel.vala:1215 -msgid "Un-install completed" -msgstr "Deinstalacja zakończona" -#: src/Common/LinuxKernel.vala:1171 src/Common/LinuxKernel.vala:1218 -msgid "Un-install completed with errors" -msgstr "De-instalacja zakończona z błędami" +#: src/Common/LinuxKernel.vala:1138 +msgid "skipping the currently booted kernel" +msgstr "" -#: src/Common/LinuxKernel.vala:1184 -msgid "" -"This kernel is currently running and cannot be un-installed.\n" -" Install another kernel before un-installing this one." +#: src/Common/LinuxKernel.vala:1154 +msgid "found" msgstr "" -"To jądro aktualnie działa i nie może zostać odinstalowane.\n" -" Zainstaluj inne jądro przed odinstalowaniem tego." -#: src/Common/Main.vala:241 +#: src/Common/LinuxKernel.vala:1157 +#, fuzzy +msgid "No packages to un-install!" +msgstr "Pakiety zainstalowane" + +#: src/Common/Main.vala:260 #, fuzzy msgid "Called from" msgstr "Wywołane z" -#: src/Common/Main.vala:275 +#: src/Common/Main.vala:294 msgid "Notifications are disabled" msgstr "Powiadomienia są wyłączone" @@ -153,90 +146,87 @@ msgstr "Powiadomienia są wyłączone" msgid "File not found: %s" msgstr "Nie odnaleziono pliku: %s" -#: src/Console/AppConsole.vala:62 src/Gtk/AppGtk.vala:152 +#: src/Console/AppConsole.vala:68 src/Gtk/AppGtk.vala:141 msgid "Syntax" msgstr "Składnia" -#: src/Console/AppConsole.vala:64 +#: src/Console/AppConsole.vala:70 msgid "Commands" msgstr "Polecenia" -#: src/Console/AppConsole.vala:66 +#: src/Console/AppConsole.vala:72 msgid "Check for kernel updates" msgstr "Sprawdź aktualizacje jądra" -#: src/Console/AppConsole.vala:67 +#: src/Console/AppConsole.vala:73 msgid "Check for kernel updates and notify current user" msgstr "Sprawdź aktualizacje jądra i powiadom bieżącego użytkownika" -#: src/Console/AppConsole.vala:68 +#: src/Console/AppConsole.vala:74 msgid "List all available mainline kernels" msgstr "Pokaż wszystkie dostępne jądra" -#: src/Console/AppConsole.vala:69 +#: src/Console/AppConsole.vala:75 msgid "List installed kernels" msgstr "Wyświetl listę zainstalowanych jąder" -#: src/Console/AppConsole.vala:70 +#: src/Console/AppConsole.vala:76 #, fuzzy msgid "Install latest mainline kernel" msgstr "Zainstaluj wybrane jądro" -#: src/Console/AppConsole.vala:71 +#: src/Console/AppConsole.vala:77 msgid "Install latest point update for current series" msgstr "" -#: src/Console/AppConsole.vala:72 +#: src/Console/AppConsole.vala:78 msgid "Install specified mainline kernel" msgstr "Zainstaluj wybrane jądro" -#: src/Console/AppConsole.vala:73 +#: src/Console/AppConsole.vala:79 msgid "Uninstall specified kernel" msgstr "Odinstaluj wybrane jądro" -#: src/Console/AppConsole.vala:74 +#: src/Console/AppConsole.vala:80 msgid "Uninstall kernels older than the running kernel" msgstr "Odinstaluj jądra starsze niż działające jądro" -#: src/Console/AppConsole.vala:75 +#: src/Console/AppConsole.vala:81 msgid "Download specified kernels" msgstr "Pobierz wybrane jądra" -#: src/Console/AppConsole.vala:76 -msgid "Remove files from application cache" -msgstr "Usuń pliki z pamięci podręcznej aplikacji" +#: src/Console/AppConsole.vala:82 +msgid "Delete cached info about available kernels" +msgstr "" -#: src/Console/AppConsole.vala:78 src/Gtk/AppGtk.vala:154 +#: src/Console/AppConsole.vala:84 src/Gtk/AppGtk.vala:143 msgid "Options" msgstr "Opcje" -#: src/Console/AppConsole.vala:80 +#: src/Console/AppConsole.vala:86 msgid "Include unstable and RC releases" msgstr "Uwzględnij wydania niestabilne i RC" -#: src/Console/AppConsole.vala:81 src/Gtk/SettingsDialog.vala:163 -msgid "Hide unstable and RC releases" -msgstr "Ukryj wydania niestabilne i RC" +#: src/Console/AppConsole.vala:87 +#, fuzzy +msgid "Exclude unstable and RC releases" +msgstr "Uwzględnij wydania niestabilne i RC" -#: src/Console/AppConsole.vala:82 +#: src/Console/AppConsole.vala:88 msgid "Enable verbose debugging output" msgstr "Włącz szczegółowe wyjście debugowania" -#: src/Console/AppConsole.vala:83 +#: src/Console/AppConsole.vala:89 #, fuzzy msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "Załóż Tak dla wszystkich monitów (tryb nieinteraktywny) " -#: src/Console/AppConsole.vala:84 -msgid "Override user" -msgstr "" - -#: src/Console/AppConsole.vala:87 +#: src/Console/AppConsole.vala:92 #, fuzzy msgid "A version string taken from the output of --list" msgstr "Ciąg wersji pobrany z wyjścia --list" -#: src/Console/AppConsole.vala:88 +#: src/Console/AppConsole.vala:93 #, fuzzy msgid "" "One or more version strings (comma-separated) taken from the output of --list" @@ -244,157 +234,148 @@ msgstr "" "Jeden lub więcej ciągów wersji (oddzielonych przecinkami) pobranych z " "wyjścia --list" -#: src/Console/AppConsole.vala:169 src/Gtk/AppGtk.vala:139 +#: src/Console/AppConsole.vala:173 src/Gtk/AppGtk.vala:127 msgid "Unknown option" msgstr "Nieznana opcja" -#: src/Console/AppConsole.vala:171 src/Console/AppConsole.vala:265 -#: src/Console/AppConsole.vala:294 +#: src/Console/AppConsole.vala:175 src/Console/AppConsole.vala:255 +#: src/Console/AppConsole.vala:284 msgid "Run" msgstr "Uruchom" -#: src/Console/AppConsole.vala:171 +#: src/Console/AppConsole.vala:175 msgid "to list all options" msgstr "żeby pokazać wszystkie opcje" -#: src/Console/AppConsole.vala:238 src/Console/AppConsole.vala:273 +#: src/Console/AppConsole.vala:227 src/Console/AppConsole.vala:263 msgid "No kernels specified" msgstr "Nie podano żadnego jądra" -#: src/Console/AppConsole.vala:244 +#: src/Console/AppConsole.vala:233 msgid "Multiple kernels selected for installation. Select only one." msgstr "Wybrano kilka jąder do instalacji. Wybierz tylko jedno." -#: src/Console/AppConsole.vala:262 src/Gtk/MainWindow.vala:100 +#: src/Console/AppConsole.vala:252 msgid "Could not find requested version" msgstr "Nie można odnaleźć żądanej wersji" -#: src/Console/AppConsole.vala:265 +#: src/Console/AppConsole.vala:255 #, fuzzy msgid "and use a version string listed in first column" msgstr "i użyj ciągu wersji wymienionego w pierwszej kolumnie" -#: src/Console/AppConsole.vala:293 +#: src/Console/AppConsole.vala:283 msgid "Command not specified" msgstr "Nie podano polecenia" -#: src/Console/AppConsole.vala:294 +#: src/Console/AppConsole.vala:284 msgid "to list all commands" msgstr "żeby pokazać wszystkie polecenia" -#: src/Console/AppConsole.vala:360 +#: src/Console/AppConsole.vala:338 msgid "Show" msgstr "Pokaż" -#: src/Console/AppConsole.vala:365 src/Console/AppConsole.vala:377 +#: src/Console/AppConsole.vala:343 src/Console/AppConsole.vala:355 #, c-format msgid "Kernel %s Available" msgstr "Dostępne jądro %s" -#: src/Console/AppConsole.vala:367 src/Console/AppConsole.vala:379 -#: src/Gtk/MainWindow.vala:333 +#: src/Console/AppConsole.vala:345 src/Console/AppConsole.vala:357 +#: src/Gtk/MainWindow.vala:282 msgid "Install" msgstr "Zainstaluj" -#: src/Gtk/AppGtk.vala:156 +#: src/Gtk/AppGtk.vala:141 +#, fuzzy +msgid "options" +msgstr "Opcje" + +#: src/Gtk/AppGtk.vala:145 msgid "Print debug information" msgstr "Wypisz informacje debugujące" -#: src/Gtk/AppGtk.vala:157 +#: src/Gtk/AppGtk.vala:146 msgid "Show all options" msgstr "Pokaż wszystkie opcje" -#: src/Gtk/CustomMessageDialog.vala:155 src/Gtk/ProgressWindow.vala:142 -#: src/Gtk/TerminalWindow.vala:148 -msgid "Cancel" -msgstr "Anuluj" - -#: src/Gtk/CustomMessageDialog.vala:159 -msgid "Yes" -msgstr "" - -#: src/Gtk/CustomMessageDialog.vala:160 -msgid "No" -msgstr "" - -#: src/Gtk/MainWindow.vala:146 +#: src/Gtk/MainWindow.vala:108 msgid "Kernel" msgstr "Jądro" -#: src/Gtk/MainWindow.vala:176 +#: src/Gtk/MainWindow.vala:138 msgid "Status" msgstr "Status" -#: src/Gtk/MainWindow.vala:317 -msgid "Refresh" -msgstr "Odśwież" - -#: src/Gtk/MainWindow.vala:324 src/Utility/TeeJee.System.vala:42 -#, fuzzy -msgid "Internet connection is not active" -msgstr "Brak połączenia z internetem" - -#: src/Gtk/MainWindow.vala:324 src/Gtk/MainWindow.vala:518 -#: src/Gtk/MainWindow.vala:634 -msgid "No Internet" -msgstr "Brak internetu" - -#: src/Gtk/MainWindow.vala:344 +#: src/Gtk/MainWindow.vala:292 msgid "Uninstall" msgstr "Odinstaluj" -#: src/Gtk/MainWindow.vala:377 src/Gtk/MainWindow.vala:410 -#: src/Gtk/MainWindow.vala:666 -msgid "Close window to exit..." -msgstr "Zamknij okno żeby wyjść..." +#: src/Gtk/MainWindow.vala:325 src/Gtk/MainWindow.vala:370 +#: src/Gtk/MainWindow.vala:616 +msgid "DONE" +msgstr "" + +#: src/Gtk/MainWindow.vala:333 +msgid "Changes" +msgstr "Zmiany" -#: src/Gtk/MainWindow.vala:384 +#: src/Gtk/MainWindow.vala:344 msgid "Uninstall Old" msgstr "Odinstaluj Stare" -#: src/Gtk/MainWindow.vala:385 +#: src/Gtk/MainWindow.vala:345 msgid "Uninstall kernels older than running kernel" msgstr "Odinstaluj jądra starsze niż uruchomione" -#: src/Gtk/MainWindow.vala:417 -msgid "Changes" -msgstr "Zmiany" +#: src/Gtk/MainWindow.vala:378 +msgid "Reload" +msgstr "" -#: src/Gtk/MainWindow.vala:428 src/Gtk/SettingsDialog.vala:50 +#: src/Gtk/MainWindow.vala:391 src/Gtk/SettingsDialog.vala:50 msgid "Settings" msgstr "Ustawienia" -#: src/Gtk/MainWindow.vala:451 +#: src/Gtk/MainWindow.vala:413 msgid "About" msgstr "O programie" -#: src/Gtk/MainWindow.vala:496 +#: src/Gtk/MainWindow.vala:418 +msgid "Exit" +msgstr "" + +#: src/Gtk/MainWindow.vala:470 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Narzędzie uaktualniania jądra dla dystrybucji z rodziny Ubuntu" -#: src/Gtk/MainWindow.vala:497 +#: src/Gtk/MainWindow.vala:471 msgid "Forked" msgstr "" -#: src/Gtk/MainWindow.vala:497 +#: src/Gtk/MainWindow.vala:471 msgid "Original" msgstr "" -#: src/Gtk/MainWindow.vala:518 src/Gtk/MainWindow.vala:634 +#: src/Gtk/MainWindow.vala:500 #, fuzzy -msgid "Internet connection is not active." -msgstr "Brak połączenia z internetem" - -#: src/Gtk/MainWindow.vala:531 msgid "Refreshing..." msgstr "Odświeżam..." # Should be a single word at the end of the line. # For example: "5.13.16 available" -#: src/Gtk/MainWindow.vala:620 +#: src/Gtk/MainWindow.vala:582 msgid "available" msgstr "dostępne" +#: src/Gtk/MainWindow.vala:625 +#, fuzzy +msgid "Can not reach" +msgstr "Nie udało się odczytać pliku" + +#: src/Gtk/ProgressWindow.vala:126 src/Gtk/TerminalWindow.vala:148 +msgid "Cancel" +msgstr "Anuluj" + #: src/Gtk/SettingsDialog.vala:60 msgid "Notification" msgstr "Powiadomienia" @@ -435,6 +416,10 @@ msgstr "Sekund(a)" msgid "Display" msgstr "Pokaż" +#: src/Gtk/SettingsDialog.vala:163 +msgid "Hide unstable and RC releases" +msgstr "Ukryj wydania niestabilne i RC" + #: src/Gtk/SettingsDialog.vala:177 msgid "Show N previous major versions " msgstr "Pokaż N poprzednich głównych wersji " @@ -443,20 +428,16 @@ msgstr "Pokaż N poprzednich głównych wersji " msgid "Other" msgstr "Inne" -#: src/Gtk/SettingsDialog.vala:200 -msgid "Skip internet connection check" -msgstr "Pomiń sprawdzenie połączenia z internetem" - -#: src/Gtk/SettingsDialog.vala:213 +#: src/Gtk/SettingsDialog.vala:203 #, fuzzy msgid "Internet connection timeout in " msgstr "Limit czasu połączenia z Internetem za" -#: src/Gtk/SettingsDialog.vala:228 +#: src/Gtk/SettingsDialog.vala:218 msgid "seconds" msgstr "sekund" -#: src/Gtk/SettingsDialog.vala:235 +#: src/Gtk/SettingsDialog.vala:225 msgid "Max concurrent downloads" msgstr "Maksymalna liczba jednoczesnych pobrań" @@ -497,7 +478,7 @@ msgstr "Dokumentujący" msgid "Third Party Inclusions" msgstr "Narzędzia osób trzecich" -#: src/Utility/Gtk/GtkHelper.vala:59 +#: src/Utility/Gtk/GtkHelper.vala:49 msgid "Missing Icon" msgstr "Brakująca ikona" diff --git a/po/sv.po b/po/sv.po index 17dbcd57..397d317d 100644 --- a/po/sv.po +++ b/po/sv.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-02-23 17:56-0500\n" +"POT-Creation-Date: 2023-03-04 22:34-0500\n" "PO-Revision-Date: 2018-01-13 16:56+0100\n" "Last-Translator: Åke Engelbrektson \n" "Language-Team:Swedish\n" @@ -22,134 +22,125 @@ msgstr "Distribution" msgid "Architecture" msgstr "Systemarkitektur" -#: src/Common/LinuxKernel.vala:290 +#: src/Common/LinuxKernel.vala:256 +msgid "cached" +msgstr "" + +#: src/Common/LinuxKernel.vala:268 +msgid "GET" +msgstr "" + +#: src/Common/LinuxKernel.vala:296 #, fuzzy -msgid "Fetching index..." +msgid "Fetching individual kernel indexes..." msgstr "Hämtar index för" -#: src/Common/LinuxKernel.vala:329 -msgid "Fetching index from kernel.ubuntu.com..." -msgstr "Hämtar index från kernel.ubuntu.com ..." +#: src/Common/LinuxKernel.vala:338 +#, fuzzy +msgid "Fetching main index from" +msgstr "Hämtar index för" -#: src/Common/LinuxKernel.vala:585 +#: src/Common/LinuxKernel.vala:599 #, fuzzy msgid "Could not find running kernel in list!" msgstr "Kunde inte hitta efterfrågad version" -#: src/Common/LinuxKernel.vala:591 +#: src/Common/LinuxKernel.vala:605 #, fuzzy msgid "Could not find any kernels to uninstall" msgstr "Välj kärnor för borttagning" -#: src/Common/LinuxKernel.vala:600 +#: src/Common/LinuxKernel.vala:614 #, fuzzy msgid "The following kernels will be uninstalled:" msgstr "Denna kärna är redan installerad" -#: src/Common/LinuxKernel.vala:607 +#: src/Common/LinuxKernel.vala:621 msgid "Continue ?" msgstr "" -#: src/Common/LinuxKernel.vala:633 src/Console/AppConsole.vala:314 +#: src/Common/LinuxKernel.vala:644 src/Console/AppConsole.vala:298 msgid "Latest update" msgstr "" -#: src/Common/LinuxKernel.vala:644 src/Console/AppConsole.vala:321 +#: src/Common/LinuxKernel.vala:655 src/Console/AppConsole.vala:305 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:652 src/Console/AppConsole.vala:326 -#: src/Console/AppConsole.vala:387 +#: src/Common/LinuxKernel.vala:663 src/Console/AppConsole.vala:310 +#: src/Console/AppConsole.vala:365 msgid "No updates found" msgstr "Inga uppdateringar hittades" -#: src/Common/LinuxKernel.vala:662 +#: src/Common/LinuxKernel.vala:673 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "" -#: src/Common/LinuxKernel.vala:912 +#: src/Common/LinuxKernel.vala:924 msgid "Packages Available" msgstr "Tillgängliga paket" -#: src/Common/LinuxKernel.vala:920 +#: src/Common/LinuxKernel.vala:932 msgid "Packages Installed" msgstr "Installerade paket" -#: src/Common/LinuxKernel.vala:1000 +#: src/Common/LinuxKernel.vala:1011 msgid "Available Kernels" msgstr "Tillgängliga kärnor" -#: src/Common/LinuxKernel.vala:1007 src/Gtk/MainWindow.vala:189 +#: src/Common/LinuxKernel.vala:1018 src/Gtk/MainWindow.vala:151 msgid "Installed" msgstr "Installerad" -#: src/Common/LinuxKernel.vala:1007 src/Gtk/MainWindow.vala:189 -#: src/Gtk/MainWindow.vala:610 src/Gtk/MainWindow.vala:624 +#: src/Common/LinuxKernel.vala:1018 src/Gtk/MainWindow.vala:151 +#: src/Gtk/MainWindow.vala:572 src/Gtk/MainWindow.vala:586 msgid "Running" msgstr "Körs" -#: src/Common/LinuxKernel.vala:1044 +#: src/Common/LinuxKernel.vala:1055 msgid "Downloading" msgstr "Laddar ner" -#: src/Common/LinuxKernel.vala:1063 src/Gtk/CustomMessageDialog.vala:150 -#: src/Gtk/CustomMessageDialog.vala:154 +#: src/Common/LinuxKernel.vala:1074 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:1068 +#: src/Common/LinuxKernel.vala:1079 msgid "ERROR" msgstr "FEL" -#: src/Common/LinuxKernel.vala:1082 +#: src/Common/LinuxKernel.vala:1093 msgid "This kernel is already installed." msgstr "Denna kärna är redan installerad" -#: src/Common/LinuxKernel.vala:1108 -msgid "Installation completed. A reboot is required to use the new kernel." -msgstr "Installation slutförd. Omstart krävs för att tillämpa den nya kärnan." - -#: src/Common/LinuxKernel.vala:1111 -msgid "Installation completed with errors" -msgstr "Installation slutförd med fel" - -#: src/Common/LinuxKernel.vala:1132 +#: src/Common/LinuxKernel.vala:1129 #, fuzzy -msgid "" -"Selected kernel is currently running and cannot be un-installed.\n" -" Install another kernel before un-installing this one." -msgstr "" -"Denna kärna används för tillfället och kan inte tas bort.\n" -"Installera en annan kärna innan du tar bort den här." +msgid "Uninstalling selected kernels" +msgstr "Installera specificerad kärna" -#: src/Common/LinuxKernel.vala:1137 -#, fuzzy -msgid "Preparing to uninstall selected kernels" -msgstr "Förbereder borttagning av markerade kärnor" +#: src/Common/LinuxKernel.vala:1135 +msgid "requested" +msgstr "" -#: src/Common/LinuxKernel.vala:1168 src/Common/LinuxKernel.vala:1215 -msgid "Un-install completed" -msgstr "Avinstallation slutförd" +#: src/Common/LinuxKernel.vala:1138 +msgid "skipping the currently booted kernel" +msgstr "" -#: src/Common/LinuxKernel.vala:1171 src/Common/LinuxKernel.vala:1218 -msgid "Un-install completed with errors" -msgstr "Avinstallation slutförd med fel" +#: src/Common/LinuxKernel.vala:1154 +msgid "found" +msgstr "" -#: src/Common/LinuxKernel.vala:1184 +#: src/Common/LinuxKernel.vala:1157 #, fuzzy -msgid "" -"This kernel is currently running and cannot be un-installed.\n" -" Install another kernel before un-installing this one." -msgstr "" -"Denna kärna används för tillfället och kan inte tas bort.\n" -"Installera en annan kärna innan du tar bort den här." +msgid "No packages to un-install!" +msgstr "Installerade paket" -#: src/Common/Main.vala:241 +#: src/Common/Main.vala:260 msgid "Called from" msgstr "" -#: src/Common/Main.vala:275 +#: src/Common/Main.vala:294 #, fuzzy msgid "Notifications are disabled" msgstr "Avisering" @@ -159,253 +150,241 @@ msgstr "Avisering" msgid "File not found: %s" msgstr "Filen kunde inte hittas: %s" -#: src/Console/AppConsole.vala:62 src/Gtk/AppGtk.vala:152 +#: src/Console/AppConsole.vala:68 src/Gtk/AppGtk.vala:141 msgid "Syntax" msgstr "Syntax" -#: src/Console/AppConsole.vala:64 +#: src/Console/AppConsole.vala:70 msgid "Commands" msgstr "" -#: src/Console/AppConsole.vala:66 +#: src/Console/AppConsole.vala:72 msgid "Check for kernel updates" msgstr "Sök efter kärnuppdateringar" -#: src/Console/AppConsole.vala:67 +#: src/Console/AppConsole.vala:73 #, fuzzy msgid "Check for kernel updates and notify current user" msgstr "Sök efter kärnuppdateringar" -#: src/Console/AppConsole.vala:68 +#: src/Console/AppConsole.vala:74 msgid "List all available mainline kernels" msgstr "Lista alla tillgängliga kärnor" -#: src/Console/AppConsole.vala:69 +#: src/Console/AppConsole.vala:75 #, fuzzy msgid "List installed kernels" msgstr "Lista tillgängliga kärnor" -#: src/Console/AppConsole.vala:70 +#: src/Console/AppConsole.vala:76 #, fuzzy msgid "Install latest mainline kernel" msgstr "Installera specificerad kärna" -#: src/Console/AppConsole.vala:71 +#: src/Console/AppConsole.vala:77 msgid "Install latest point update for current series" msgstr "" -#: src/Console/AppConsole.vala:72 +#: src/Console/AppConsole.vala:78 msgid "Install specified mainline kernel" msgstr "Installera specificerad kärna" -#: src/Console/AppConsole.vala:73 +#: src/Console/AppConsole.vala:79 #, fuzzy msgid "Uninstall specified kernel" msgstr "Installera specificerad kärna" -#: src/Console/AppConsole.vala:74 +#: src/Console/AppConsole.vala:80 #, fuzzy msgid "Uninstall kernels older than the running kernel" msgstr "Ta bort installerade kärnor äldre än den som körs" -#: src/Console/AppConsole.vala:75 +#: src/Console/AppConsole.vala:81 #, fuzzy msgid "Download specified kernels" msgstr "Ladda ner paket för specificerad kärna" -#: src/Console/AppConsole.vala:76 -msgid "Remove files from application cache" -msgstr "Ta bort filer från program-cachen" +#: src/Console/AppConsole.vala:82 +msgid "Delete cached info about available kernels" +msgstr "" -#: src/Console/AppConsole.vala:78 src/Gtk/AppGtk.vala:154 +#: src/Console/AppConsole.vala:84 src/Gtk/AppGtk.vala:143 msgid "Options" msgstr "Alternativ" -#: src/Console/AppConsole.vala:80 +#: src/Console/AppConsole.vala:86 #, fuzzy msgid "Include unstable and RC releases" msgstr "Dölj instabila- och RC-publiceringar" -#: src/Console/AppConsole.vala:81 src/Gtk/SettingsDialog.vala:163 -msgid "Hide unstable and RC releases" +#: src/Console/AppConsole.vala:87 +#, fuzzy +msgid "Exclude unstable and RC releases" msgstr "Dölj instabila- och RC-publiceringar" -#: src/Console/AppConsole.vala:82 +#: src/Console/AppConsole.vala:88 msgid "Enable verbose debugging output" msgstr "" -#: src/Console/AppConsole.vala:83 +#: src/Console/AppConsole.vala:89 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "" -#: src/Console/AppConsole.vala:84 -msgid "Override user" -msgstr "" - -#: src/Console/AppConsole.vala:87 +#: src/Console/AppConsole.vala:92 msgid "A version string taken from the output of --list" msgstr "" -#: src/Console/AppConsole.vala:88 +#: src/Console/AppConsole.vala:93 msgid "" "One or more version strings (comma-separated) taken from the output of --list" msgstr "" -#: src/Console/AppConsole.vala:169 src/Gtk/AppGtk.vala:139 +#: src/Console/AppConsole.vala:173 src/Gtk/AppGtk.vala:127 msgid "Unknown option" msgstr "Okänt alternativ" -#: src/Console/AppConsole.vala:171 src/Console/AppConsole.vala:265 -#: src/Console/AppConsole.vala:294 +#: src/Console/AppConsole.vala:175 src/Console/AppConsole.vala:255 +#: src/Console/AppConsole.vala:284 #, fuzzy msgid "Run" msgstr "Körs" -#: src/Console/AppConsole.vala:171 +#: src/Console/AppConsole.vala:175 #, fuzzy msgid "to list all options" msgstr "Visa alla alternativ" -#: src/Console/AppConsole.vala:238 src/Console/AppConsole.vala:273 +#: src/Console/AppConsole.vala:227 src/Console/AppConsole.vala:263 msgid "No kernels specified" msgstr "" -#: src/Console/AppConsole.vala:244 +#: src/Console/AppConsole.vala:233 msgid "Multiple kernels selected for installation. Select only one." msgstr "Flera kärnor valda för installation. Välj endast en." -#: src/Console/AppConsole.vala:262 src/Gtk/MainWindow.vala:100 +#: src/Console/AppConsole.vala:252 msgid "Could not find requested version" msgstr "Kunde inte hitta efterfrågad version" -#: src/Console/AppConsole.vala:265 +#: src/Console/AppConsole.vala:255 msgid "and use a version string listed in first column" msgstr "" -#: src/Console/AppConsole.vala:293 +#: src/Console/AppConsole.vala:283 msgid "Command not specified" msgstr "" -#: src/Console/AppConsole.vala:294 +#: src/Console/AppConsole.vala:284 #, fuzzy msgid "to list all commands" msgstr "Visa alla alternativ" -#: src/Console/AppConsole.vala:360 +#: src/Console/AppConsole.vala:338 msgid "Show" msgstr "" -#: src/Console/AppConsole.vala:365 src/Console/AppConsole.vala:377 +#: src/Console/AppConsole.vala:343 src/Console/AppConsole.vala:355 #, fuzzy, c-format msgid "Kernel %s Available" msgstr "Tillgängliga paket" -#: src/Console/AppConsole.vala:367 src/Console/AppConsole.vala:379 -#: src/Gtk/MainWindow.vala:333 +#: src/Console/AppConsole.vala:345 src/Console/AppConsole.vala:357 +#: src/Gtk/MainWindow.vala:282 msgid "Install" msgstr "Installera" -#: src/Gtk/AppGtk.vala:156 +#: src/Gtk/AppGtk.vala:141 +#, fuzzy +msgid "options" +msgstr "Alternativ" + +#: src/Gtk/AppGtk.vala:145 msgid "Print debug information" msgstr "Skriv ut felsökningsinformation" -#: src/Gtk/AppGtk.vala:157 +#: src/Gtk/AppGtk.vala:146 msgid "Show all options" msgstr "Visa alla alternativ" -#: src/Gtk/CustomMessageDialog.vala:155 src/Gtk/ProgressWindow.vala:142 -#: src/Gtk/TerminalWindow.vala:148 -msgid "Cancel" -msgstr "Avbryt" - -#: src/Gtk/CustomMessageDialog.vala:159 -msgid "Yes" -msgstr "" - -#: src/Gtk/CustomMessageDialog.vala:160 -msgid "No" -msgstr "" - -#: src/Gtk/MainWindow.vala:146 +#: src/Gtk/MainWindow.vala:108 msgid "Kernel" msgstr "Kärna" -#: src/Gtk/MainWindow.vala:176 +#: src/Gtk/MainWindow.vala:138 msgid "Status" msgstr "Status" -#: src/Gtk/MainWindow.vala:317 -msgid "Refresh" -msgstr "Uppdatera" - -#: src/Gtk/MainWindow.vala:324 src/Utility/TeeJee.System.vala:42 -#, fuzzy -msgid "Internet connection is not active" -msgstr "Internetuppkopplingen är inte aktiv" - -#: src/Gtk/MainWindow.vala:324 src/Gtk/MainWindow.vala:518 -#: src/Gtk/MainWindow.vala:634 -msgid "No Internet" -msgstr "Inget internet" - -#: src/Gtk/MainWindow.vala:344 +#: src/Gtk/MainWindow.vala:292 #, fuzzy msgid "Uninstall" msgstr "Installera" -#: src/Gtk/MainWindow.vala:377 src/Gtk/MainWindow.vala:410 -#: src/Gtk/MainWindow.vala:666 -msgid "Close window to exit..." +#: src/Gtk/MainWindow.vala:325 src/Gtk/MainWindow.vala:370 +#: src/Gtk/MainWindow.vala:616 +msgid "DONE" msgstr "" -#: src/Gtk/MainWindow.vala:384 +#: src/Gtk/MainWindow.vala:333 +msgid "Changes" +msgstr "Ändringar" + +#: src/Gtk/MainWindow.vala:344 #, fuzzy msgid "Uninstall Old" msgstr "Avinstallation slutförd" -#: src/Gtk/MainWindow.vala:385 +#: src/Gtk/MainWindow.vala:345 #, fuzzy msgid "Uninstall kernels older than running kernel" msgstr "Ta bort installerade kärnor äldre än den som körs" -#: src/Gtk/MainWindow.vala:417 -msgid "Changes" -msgstr "Ändringar" +#: src/Gtk/MainWindow.vala:378 +msgid "Reload" +msgstr "" -#: src/Gtk/MainWindow.vala:428 src/Gtk/SettingsDialog.vala:50 +#: src/Gtk/MainWindow.vala:391 src/Gtk/SettingsDialog.vala:50 msgid "Settings" msgstr "Inställningar" -#: src/Gtk/MainWindow.vala:451 +#: src/Gtk/MainWindow.vala:413 msgid "About" msgstr "Om" -#: src/Gtk/MainWindow.vala:496 +#: src/Gtk/MainWindow.vala:418 +msgid "Exit" +msgstr "" + +#: src/Gtk/MainWindow.vala:470 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Kärnuppgraderingsverktyg för Ubuntu-baserade distributioner" -#: src/Gtk/MainWindow.vala:497 +#: src/Gtk/MainWindow.vala:471 msgid "Forked" msgstr "" -#: src/Gtk/MainWindow.vala:497 +#: src/Gtk/MainWindow.vala:471 msgid "Original" msgstr "" -#: src/Gtk/MainWindow.vala:518 src/Gtk/MainWindow.vala:634 +#: src/Gtk/MainWindow.vala:500 #, fuzzy -msgid "Internet connection is not active." -msgstr "Internetuppkopplingen är inte aktiv" - -#: src/Gtk/MainWindow.vala:531 msgid "Refreshing..." msgstr "Uppdaterar ..." -#: src/Gtk/MainWindow.vala:620 +#: src/Gtk/MainWindow.vala:582 #, fuzzy msgid "available" msgstr "Tillgängliga paket" +#: src/Gtk/MainWindow.vala:625 +#, fuzzy +msgid "Can not reach" +msgstr "Kunde inte läsa filen" + +#: src/Gtk/ProgressWindow.vala:126 src/Gtk/TerminalWindow.vala:148 +msgid "Cancel" +msgstr "Avbryt" + #: src/Gtk/SettingsDialog.vala:60 msgid "Notification" msgstr "Avisering" @@ -446,6 +425,10 @@ msgstr "" msgid "Display" msgstr "Visa" +#: src/Gtk/SettingsDialog.vala:163 +msgid "Hide unstable and RC releases" +msgstr "Dölj instabila- och RC-publiceringar" + #: src/Gtk/SettingsDialog.vala:177 msgid "Show N previous major versions " msgstr "" @@ -454,21 +437,16 @@ msgstr "" msgid "Other" msgstr "" -#: src/Gtk/SettingsDialog.vala:200 -#, fuzzy -msgid "Skip internet connection check" -msgstr "Internetuppkopplingen är inte aktiv" - -#: src/Gtk/SettingsDialog.vala:213 +#: src/Gtk/SettingsDialog.vala:203 #, fuzzy msgid "Internet connection timeout in " msgstr "Internetuppkopplingen är inte aktiv" -#: src/Gtk/SettingsDialog.vala:228 +#: src/Gtk/SettingsDialog.vala:218 msgid "seconds" msgstr "" -#: src/Gtk/SettingsDialog.vala:235 +#: src/Gtk/SettingsDialog.vala:225 msgid "Max concurrent downloads" msgstr "" @@ -509,7 +487,7 @@ msgstr "Dokumentalister" msgid "Third Party Inclusions" msgstr "Tredjepartsverktyg" -#: src/Utility/Gtk/GtkHelper.vala:59 +#: src/Utility/Gtk/GtkHelper.vala:49 msgid "Missing Icon" msgstr "Saknad ikon" diff --git a/po/tr.po b/po/tr.po index 32325812..56c1c124 100644 --- a/po/tr.po +++ b/po/tr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-02-23 17:56-0500\n" +"POT-Creation-Date: 2023-03-04 22:34-0500\n" "PO-Revision-Date: 2022-08-06 16:48+0300\n" "Last-Translator: Sabri Ünal \n" "Language-Team: Turkish\n" @@ -21,129 +21,123 @@ msgstr "Dağıtım" msgid "Architecture" msgstr "Sistem mimarisi" -#: src/Common/LinuxKernel.vala:290 -msgid "Fetching index..." +#: src/Common/LinuxKernel.vala:256 +msgid "cached" +msgstr "" + +#: src/Common/LinuxKernel.vala:268 +msgid "GET" +msgstr "" + +#: src/Common/LinuxKernel.vala:296 +#, fuzzy +msgid "Fetching individual kernel indexes..." msgstr "İçerik dizini alınıyor..." -#: src/Common/LinuxKernel.vala:329 -msgid "Fetching index from kernel.ubuntu.com..." -msgstr "İçerik dizini kernel.ubuntu.com alanından alınıyor..." +#: src/Common/LinuxKernel.vala:338 +#, fuzzy +msgid "Fetching main index from" +msgstr "İçerik dizini alınıyor..." -#: src/Common/LinuxKernel.vala:585 +#: src/Common/LinuxKernel.vala:599 msgid "Could not find running kernel in list!" msgstr "Çalışan sürüm listede bulunamadı!" -#: src/Common/LinuxKernel.vala:591 +#: src/Common/LinuxKernel.vala:605 msgid "Could not find any kernels to uninstall" msgstr "Kaldırılacak çekirdek bulunamadı" -#: src/Common/LinuxKernel.vala:600 +#: src/Common/LinuxKernel.vala:614 msgid "The following kernels will be uninstalled:" msgstr "Aşağıdaki çekirdekler kaldırılacak:" -#: src/Common/LinuxKernel.vala:607 +#: src/Common/LinuxKernel.vala:621 msgid "Continue ?" msgstr "Devam edilsin mi?" -#: src/Common/LinuxKernel.vala:633 src/Console/AppConsole.vala:314 +#: src/Common/LinuxKernel.vala:644 src/Console/AppConsole.vala:298 msgid "Latest update" msgstr "Son güncelleme" # Point burada point release anlamında kullanılıyor. Örneğin 5.10.x sayısının en sonundaki x rakamı point release/nokta sürüm oluyor. -#: src/Common/LinuxKernel.vala:644 src/Console/AppConsole.vala:321 +#: src/Common/LinuxKernel.vala:655 src/Console/AppConsole.vala:305 msgid "Latest point update" msgstr "Son nokta güncellemesi" -#: src/Common/LinuxKernel.vala:652 src/Console/AppConsole.vala:326 -#: src/Console/AppConsole.vala:387 +#: src/Common/LinuxKernel.vala:663 src/Console/AppConsole.vala:310 +#: src/Console/AppConsole.vala:365 msgid "No updates found" msgstr "Güncelleme bulunamadı" -#: src/Common/LinuxKernel.vala:662 +#: src/Common/LinuxKernel.vala:673 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Linux Çekirdek Sürümü %s Kurulsun mu? (e/h): " -#: src/Common/LinuxKernel.vala:912 +#: src/Common/LinuxKernel.vala:924 msgid "Packages Available" msgstr "Mevcut Paketler" -#: src/Common/LinuxKernel.vala:920 +#: src/Common/LinuxKernel.vala:932 msgid "Packages Installed" msgstr "Kurulu Paketler" -#: src/Common/LinuxKernel.vala:1000 +#: src/Common/LinuxKernel.vala:1011 msgid "Available Kernels" msgstr "Mevcut Çekirdekler" -#: src/Common/LinuxKernel.vala:1007 src/Gtk/MainWindow.vala:189 +#: src/Common/LinuxKernel.vala:1018 src/Gtk/MainWindow.vala:151 msgid "Installed" msgstr "Kurulu" -#: src/Common/LinuxKernel.vala:1007 src/Gtk/MainWindow.vala:189 -#: src/Gtk/MainWindow.vala:610 src/Gtk/MainWindow.vala:624 +#: src/Common/LinuxKernel.vala:1018 src/Gtk/MainWindow.vala:151 +#: src/Gtk/MainWindow.vala:572 src/Gtk/MainWindow.vala:586 msgid "Running" msgstr "Çalışıyor" -#: src/Common/LinuxKernel.vala:1044 +#: src/Common/LinuxKernel.vala:1055 msgid "Downloading" msgstr "İndiriliyor" -#: src/Common/LinuxKernel.vala:1063 src/Gtk/CustomMessageDialog.vala:150 -#: src/Gtk/CustomMessageDialog.vala:154 +#: src/Common/LinuxKernel.vala:1074 msgid "OK" msgstr "Tamam" -#: src/Common/LinuxKernel.vala:1068 +#: src/Common/LinuxKernel.vala:1079 msgid "ERROR" msgstr "HATA" -#: src/Common/LinuxKernel.vala:1082 +#: src/Common/LinuxKernel.vala:1093 msgid "This kernel is already installed." msgstr "Bu çekirdek zaten kurulu." -#: src/Common/LinuxKernel.vala:1108 -msgid "Installation completed. A reboot is required to use the new kernel." -msgstr "" -"Kurulum tamamlandı. Yeni çekirdeği kullanmak için yeniden başlatma gerekiyor." - -#: src/Common/LinuxKernel.vala:1111 -msgid "Installation completed with errors" -msgstr "Kurulum hatalarla tamamlandı" +#: src/Common/LinuxKernel.vala:1129 +#, fuzzy +msgid "Uninstalling selected kernels" +msgstr "Belirtilen çekirdeğini kaldır" -#: src/Common/LinuxKernel.vala:1132 -msgid "" -"Selected kernel is currently running and cannot be un-installed.\n" -" Install another kernel before un-installing this one." +#: src/Common/LinuxKernel.vala:1135 +msgid "requested" msgstr "" -"Seçilen çekirdek şu anda çalışıyor ve kaldırılamaz.\n" -" Bunu kaldırmadan önce başka bir çekirdek yükleyin." - -#: src/Common/LinuxKernel.vala:1137 -msgid "Preparing to uninstall selected kernels" -msgstr "Seçilen çekirdekleri kaldırmaya hazırlanıyor" - -#: src/Common/LinuxKernel.vala:1168 src/Common/LinuxKernel.vala:1215 -msgid "Un-install completed" -msgstr "Kaldırma tamamlandı" -#: src/Common/LinuxKernel.vala:1171 src/Common/LinuxKernel.vala:1218 -msgid "Un-install completed with errors" -msgstr "Kaldırma hatalarla tamamlandı" +#: src/Common/LinuxKernel.vala:1138 +msgid "skipping the currently booted kernel" +msgstr "" -#: src/Common/LinuxKernel.vala:1184 -msgid "" -"This kernel is currently running and cannot be un-installed.\n" -" Install another kernel before un-installing this one." +#: src/Common/LinuxKernel.vala:1154 +msgid "found" msgstr "" -"Bu çekirdek şu anda çalışıyor ve kaldırılamaz.\n" -"Bunu kaldırmadan önce başka bir çekirdek yükleyin." -#: src/Common/Main.vala:241 +#: src/Common/LinuxKernel.vala:1157 +#, fuzzy +msgid "No packages to un-install!" +msgstr "Kurulu Paketler" + +#: src/Common/Main.vala:260 msgid "Called from" msgstr "Çağrı konumu" -#: src/Common/Main.vala:275 +#: src/Common/Main.vala:294 msgid "Notifications are disabled" msgstr "Bildirimler devre dışı bırakılmış" @@ -152,240 +146,229 @@ msgstr "Bildirimler devre dışı bırakılmış" msgid "File not found: %s" msgstr "%s dosyası bulunamadı" -#: src/Console/AppConsole.vala:62 src/Gtk/AppGtk.vala:152 +#: src/Console/AppConsole.vala:68 src/Gtk/AppGtk.vala:141 msgid "Syntax" msgstr "Sözdizimi" -#: src/Console/AppConsole.vala:64 +#: src/Console/AppConsole.vala:70 msgid "Commands" msgstr "Komutlar" -#: src/Console/AppConsole.vala:66 +#: src/Console/AppConsole.vala:72 msgid "Check for kernel updates" msgstr "Çekirdek güncellemelerini kontrol et" -#: src/Console/AppConsole.vala:67 +#: src/Console/AppConsole.vala:73 msgid "Check for kernel updates and notify current user" msgstr "Çekirdek güncellemelerini kontrol et ve mevcut kullanıcıyı uyar" -#: src/Console/AppConsole.vala:68 +#: src/Console/AppConsole.vala:74 msgid "List all available mainline kernels" msgstr "Tüm mainline çekirdeklerini listele" -#: src/Console/AppConsole.vala:69 +#: src/Console/AppConsole.vala:75 msgid "List installed kernels" msgstr "Kurulu çekirdekleri listele" -#: src/Console/AppConsole.vala:70 +#: src/Console/AppConsole.vala:76 msgid "Install latest mainline kernel" msgstr "En son mainline çekirdeğini kur" -#: src/Console/AppConsole.vala:71 +#: src/Console/AppConsole.vala:77 msgid "Install latest point update for current series" msgstr "Mevcut çekirdek serisi için en son nokta güncellemesini kur" -#: src/Console/AppConsole.vala:72 +#: src/Console/AppConsole.vala:78 msgid "Install specified mainline kernel" msgstr "Belirtilen mainline çekirdeğini kur" -#: src/Console/AppConsole.vala:73 +#: src/Console/AppConsole.vala:79 msgid "Uninstall specified kernel" msgstr "Belirtilen çekirdeğini kaldır" -#: src/Console/AppConsole.vala:74 +#: src/Console/AppConsole.vala:80 msgid "Uninstall kernels older than the running kernel" msgstr "Çalışan çekirdekten daha eski çekirdekleri kaldır" -#: src/Console/AppConsole.vala:75 +#: src/Console/AppConsole.vala:81 msgid "Download specified kernels" msgstr "Belirtilen çekirdekleri indir" -#: src/Console/AppConsole.vala:76 -msgid "Remove files from application cache" -msgstr "Dosyaları uygulama önbelleğinden sil" +#: src/Console/AppConsole.vala:82 +msgid "Delete cached info about available kernels" +msgstr "" -#: src/Console/AppConsole.vala:78 src/Gtk/AppGtk.vala:154 +#: src/Console/AppConsole.vala:84 src/Gtk/AppGtk.vala:143 msgid "Options" msgstr "Seçenekler" -#: src/Console/AppConsole.vala:80 +#: src/Console/AppConsole.vala:86 msgid "Include unstable and RC releases" msgstr "Kararsız ve RC sürümleri dahil et" -#: src/Console/AppConsole.vala:81 src/Gtk/SettingsDialog.vala:163 -msgid "Hide unstable and RC releases" -msgstr "Kararsız ve RC sürümleri gizle" +#: src/Console/AppConsole.vala:87 +#, fuzzy +msgid "Exclude unstable and RC releases" +msgstr "Kararsız ve RC sürümleri dahil et" -#: src/Console/AppConsole.vala:82 +#: src/Console/AppConsole.vala:88 msgid "Enable verbose debugging output" msgstr "Ayrıntılı hata ayıklama çıktısını etkinleştir" -#: src/Console/AppConsole.vala:83 +#: src/Console/AppConsole.vala:89 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "Tüm istemler için Evet'i kabul edin (etkileşimsiz kip)" -#: src/Console/AppConsole.vala:84 -msgid "Override user" -msgstr "Kullanıcıyı geçersiz kıl" - -#: src/Console/AppConsole.vala:87 +#: src/Console/AppConsole.vala:92 msgid "A version string taken from the output of --list" msgstr "--list çıktısından alınan sürüm dizgesi" -#: src/Console/AppConsole.vala:88 +#: src/Console/AppConsole.vala:93 msgid "" "One or more version strings (comma-separated) taken from the output of --list" msgstr "" "--list çıktısından alınan bir veya daha fazla sürüm dizgesi (virgülle " "ayrılmış)" -#: src/Console/AppConsole.vala:169 src/Gtk/AppGtk.vala:139 +#: src/Console/AppConsole.vala:173 src/Gtk/AppGtk.vala:127 msgid "Unknown option" msgstr "Bilinmeyen seçenek" -#: src/Console/AppConsole.vala:171 src/Console/AppConsole.vala:265 -#: src/Console/AppConsole.vala:294 +#: src/Console/AppConsole.vala:175 src/Console/AppConsole.vala:255 +#: src/Console/AppConsole.vala:284 msgid "Run" msgstr "Çalıştır" -#: src/Console/AppConsole.vala:171 +#: src/Console/AppConsole.vala:175 msgid "to list all options" msgstr "tüm seçenekleri listele" -#: src/Console/AppConsole.vala:238 src/Console/AppConsole.vala:273 +#: src/Console/AppConsole.vala:227 src/Console/AppConsole.vala:263 msgid "No kernels specified" msgstr "Çekirdek belirtilmedi" -#: src/Console/AppConsole.vala:244 +#: src/Console/AppConsole.vala:233 msgid "Multiple kernels selected for installation. Select only one." msgstr "Kurulum için birden fazla çekirdek seçildi. Sadece bir tane seçiniz." -#: src/Console/AppConsole.vala:262 src/Gtk/MainWindow.vala:100 +#: src/Console/AppConsole.vala:252 msgid "Could not find requested version" msgstr "İstenen sürüm bulunamadı" -#: src/Console/AppConsole.vala:265 +#: src/Console/AppConsole.vala:255 msgid "and use a version string listed in first column" msgstr "ve ilk sütunda listelenen bir sürüm dizgesini kullanın" -#: src/Console/AppConsole.vala:293 +#: src/Console/AppConsole.vala:283 msgid "Command not specified" msgstr "Komut belirtilmedi" -#: src/Console/AppConsole.vala:294 +#: src/Console/AppConsole.vala:284 msgid "to list all commands" msgstr "tüm komutları listele" -#: src/Console/AppConsole.vala:360 +#: src/Console/AppConsole.vala:338 msgid "Show" msgstr "Göster" -#: src/Console/AppConsole.vala:365 src/Console/AppConsole.vala:377 +#: src/Console/AppConsole.vala:343 src/Console/AppConsole.vala:355 #, c-format msgid "Kernel %s Available" msgstr "Çekirdek %s Kullanılabilir" -#: src/Console/AppConsole.vala:367 src/Console/AppConsole.vala:379 -#: src/Gtk/MainWindow.vala:333 +#: src/Console/AppConsole.vala:345 src/Console/AppConsole.vala:357 +#: src/Gtk/MainWindow.vala:282 msgid "Install" msgstr "Kur" -#: src/Gtk/AppGtk.vala:156 +#: src/Gtk/AppGtk.vala:141 +#, fuzzy +msgid "options" +msgstr "Seçenekler" + +#: src/Gtk/AppGtk.vala:145 msgid "Print debug information" msgstr "Hata ayıklama bilgisini yazdır" -#: src/Gtk/AppGtk.vala:157 +#: src/Gtk/AppGtk.vala:146 msgid "Show all options" msgstr "Tüm seçenekleri göster" -#: src/Gtk/CustomMessageDialog.vala:155 src/Gtk/ProgressWindow.vala:142 -#: src/Gtk/TerminalWindow.vala:148 -msgid "Cancel" -msgstr "İptal Et" - -#: src/Gtk/CustomMessageDialog.vala:159 -msgid "Yes" -msgstr "" - -#: src/Gtk/CustomMessageDialog.vala:160 -msgid "No" -msgstr "" - -#: src/Gtk/MainWindow.vala:146 +#: src/Gtk/MainWindow.vala:108 msgid "Kernel" msgstr "Çekirdek" -#: src/Gtk/MainWindow.vala:176 +#: src/Gtk/MainWindow.vala:138 msgid "Status" msgstr "Durum" -#: src/Gtk/MainWindow.vala:317 -msgid "Refresh" -msgstr "Yenile" - -#: src/Gtk/MainWindow.vala:324 src/Utility/TeeJee.System.vala:42 -#, fuzzy -msgid "Internet connection is not active" -msgstr "İnternet bağlantısı aktif değil." - -#: src/Gtk/MainWindow.vala:324 src/Gtk/MainWindow.vala:518 -#: src/Gtk/MainWindow.vala:634 -msgid "No Internet" -msgstr "İnternet Yok" - -#: src/Gtk/MainWindow.vala:344 +#: src/Gtk/MainWindow.vala:292 msgid "Uninstall" msgstr "Kaldır" -#: src/Gtk/MainWindow.vala:377 src/Gtk/MainWindow.vala:410 -#: src/Gtk/MainWindow.vala:666 -msgid "Close window to exit..." -msgstr "Çıkış için pencereyi kapat..." +#: src/Gtk/MainWindow.vala:325 src/Gtk/MainWindow.vala:370 +#: src/Gtk/MainWindow.vala:616 +msgid "DONE" +msgstr "" + +#: src/Gtk/MainWindow.vala:333 +msgid "Changes" +msgstr "Değişiklikler" -#: src/Gtk/MainWindow.vala:384 +#: src/Gtk/MainWindow.vala:344 msgid "Uninstall Old" msgstr "Eskileri Kaldır" -#: src/Gtk/MainWindow.vala:385 +#: src/Gtk/MainWindow.vala:345 msgid "Uninstall kernels older than running kernel" msgstr "Çalışan çekirdekten daha eski çekirdekleri kaldır" -#: src/Gtk/MainWindow.vala:417 -msgid "Changes" -msgstr "Değişiklikler" +#: src/Gtk/MainWindow.vala:378 +msgid "Reload" +msgstr "" -#: src/Gtk/MainWindow.vala:428 src/Gtk/SettingsDialog.vala:50 +#: src/Gtk/MainWindow.vala:391 src/Gtk/SettingsDialog.vala:50 msgid "Settings" msgstr "Ayarlar" -#: src/Gtk/MainWindow.vala:451 +#: src/Gtk/MainWindow.vala:413 msgid "About" msgstr "Hakkında" -#: src/Gtk/MainWindow.vala:496 +#: src/Gtk/MainWindow.vala:418 +msgid "Exit" +msgstr "" + +#: src/Gtk/MainWindow.vala:470 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Ubuntu tabanlı dağıtımlar için çekirdek güncelleme aracı" -#: src/Gtk/MainWindow.vala:497 +#: src/Gtk/MainWindow.vala:471 msgid "Forked" msgstr "Çatallandı" -#: src/Gtk/MainWindow.vala:497 +#: src/Gtk/MainWindow.vala:471 msgid "Original" msgstr "Özgün" -#: src/Gtk/MainWindow.vala:518 src/Gtk/MainWindow.vala:634 -msgid "Internet connection is not active." -msgstr "İnternet bağlantısı aktif değil." - -#: src/Gtk/MainWindow.vala:531 +#: src/Gtk/MainWindow.vala:500 +#, fuzzy msgid "Refreshing..." msgstr "Yenileniyor..." -#: src/Gtk/MainWindow.vala:620 +#: src/Gtk/MainWindow.vala:582 msgid "available" msgstr "mevcut" +#: src/Gtk/MainWindow.vala:625 +#, fuzzy +msgid "Can not reach" +msgstr "Dosya okunamadı" + +#: src/Gtk/ProgressWindow.vala:126 src/Gtk/TerminalWindow.vala:148 +msgid "Cancel" +msgstr "İptal Et" + #: src/Gtk/SettingsDialog.vala:60 msgid "Notification" msgstr "Bildirim" @@ -426,6 +409,10 @@ msgstr "Saniye" msgid "Display" msgstr "Gösterim" +#: src/Gtk/SettingsDialog.vala:163 +msgid "Hide unstable and RC releases" +msgstr "Kararsız ve RC sürümleri gizle" + #: src/Gtk/SettingsDialog.vala:177 msgid "Show N previous major versions " msgstr "Önceki ana sürümleri gösterme sayısı " @@ -434,19 +421,15 @@ msgstr "Önceki ana sürümleri gösterme sayısı " msgid "Other" msgstr "Diğer" -#: src/Gtk/SettingsDialog.vala:200 -msgid "Skip internet connection check" -msgstr "İnternet bağlantı kontrolünü atla" - -#: src/Gtk/SettingsDialog.vala:213 +#: src/Gtk/SettingsDialog.vala:203 msgid "Internet connection timeout in " msgstr "İnternet bağlantısı zaman aşımı " -#: src/Gtk/SettingsDialog.vala:228 +#: src/Gtk/SettingsDialog.vala:218 msgid "seconds" msgstr "saniye" -#: src/Gtk/SettingsDialog.vala:235 +#: src/Gtk/SettingsDialog.vala:225 msgid "Max concurrent downloads" msgstr "Azami eşzamanlı indirme" @@ -486,7 +469,7 @@ msgstr "Belgelendirenler" msgid "Third Party Inclusions" msgstr "Üçüncü Taraf Eklemeler" -#: src/Utility/Gtk/GtkHelper.vala:59 +#: src/Utility/Gtk/GtkHelper.vala:49 msgid "Missing Icon" msgstr "Eksik Simge" diff --git a/src/Common/LinuxKernel.vala b/src/Common/LinuxKernel.vala index 2ea54754..3f56dc16 100644 --- a/src/Common/LinuxKernel.vala +++ b/src/Common/LinuxKernel.vala @@ -6,7 +6,7 @@ using TeeJee.System; using TeeJee.Misc; public class LinuxKernel : GLib.Object, Gee.Comparable { - + public string kname = ""; public string kver = ""; public string version_main = ""; @@ -32,11 +32,11 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { public string deb_image = ""; public string deb_image_extra = ""; public string deb_modules = ""; - + + // static - - [CCode(cname="URI_KERNEL_UBUNTU_MAINLINE")] extern const string URI_KERNEL_UBUNTU_MAINLINE; + public static string PPA_URI; public static string CACHE_DIR; public static string NATIVE_ARCH; public static string LINUX_DISTRO; @@ -57,7 +57,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { public static Regex rex_image = null; public static Regex rex_image_extra = null; public static Regex rex_modules = null; - + // global progress ------------ public static string status_line; public static int64 progress_total; @@ -67,7 +67,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { // class initialize - public static void initialize(){ + public static void initialize() { new LinuxKernel("", false); // instance must be created before setting static members LINUX_DISTRO = check_distribution(); @@ -77,7 +77,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { } // dep: lsb_release - public static string check_distribution(){ + public static string check_distribution() { string dist = ""; string std_out, std_err; @@ -86,12 +86,12 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { dist = std_out.strip(); log_msg(_("Distribution") + ": %s".printf(dist)); } - + return dist; } // dep: dpkg - public static string check_package_architecture(){ + public static string check_package_architecture() { string arch = ""; string std_out, std_err; @@ -105,20 +105,20 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { } // dep: uname - public static string check_running_kernel(){ + public static string check_running_kernel() { string ver = ""; - + string std_out; exec_sync("uname -r", out std_out, null); log_debug(std_out); - + ver = std_out.strip().replace("\n",""); log_msg("Running kernel" + ": %s".printf(ver)); return ver; } - public static void initialize_regex(){ + public static void initialize_regex() { try{ //linux-headers-3.4.75-030475-generic_3.4.75-030475.201312201255_amd64.deb rex_header = new Regex("(?:" + NATIVE_ARCH + """/|>)?linux-headers-[a-zA-Z0-9.\-_]*-generic_[a-zA-Z0-9.\-]*_""" + NATIVE_ARCH + ".deb"); @@ -140,7 +140,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { } } - public static bool check_if_initialized(){ + public static bool check_if_initialized() { bool ok = (NATIVE_ARCH.length > 0); if (!ok){ log_error("LinuxKernel: Class should be initialized before use!"); @@ -149,11 +149,12 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { return ok; } - public static void clean_cache(){ - //log_debug("clean_cache() deleting: \"%s\"".printf(CACHE_DIR)); + public static void delete_cache() { + log_debug("delete_cache() deleting: \"%s\"".printf(CACHE_DIR)); + kernel_list.clear(); if (dir_exists(CACHE_DIR)){ bool ok = dir_delete(CACHE_DIR); - if (ok) log_msg("Removed cached files in '%s'".printf(CACHE_DIR)); + if (ok) log_msg("Deleted '%s'".printf(CACHE_DIR)); } } @@ -170,14 +171,14 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { kver = this.kname; split_version_string(kver, out version_main); - // set page URI ----------- - page_uri = "%s%s".printf(URI_KERNEL_UBUNTU_MAINLINE, _name); + // build url + page_uri = "%s%s".printf(PPA_URI, _name); // override is_mainline from split_version_string() is_mainline = _is_mainline; } - public LinuxKernel.from_version(string _version){ + public LinuxKernel.from_version(string _version) { kver = _version; split_version_string(kver, out version_main); page_uri = ""; @@ -187,14 +188,16 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { public delegate void Notifier(GLib.Timer timer, ref long count, bool last = false); - public static void query(bool wait, owned Notifier? notifier = null){ + public static void query(bool wait, owned Notifier? notifier = null) { + log_debug("LinuxKernel.query()"); check_if_initialized(); + kernel_list.clear(); try { cancelled = false; var worker = new Thread.try(null, () => query_thread((owned) notifier)); - + if (wait) worker.join(); } catch (Error e) { @@ -212,9 +215,9 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { log_debug("query_thread() App.show_prev_majors: %d".printf(App.show_prev_majors)); log_debug("query_thread() App.hide_unstable: "+App.hide_unstable.to_string()); - bool is_connected = check_internet_connectivity(); + bool is_connected = App.check_internet_connectivity(); - download_index(); + if (is_connected) download_index(); load_index(); // TODO: Implement locking for multiple download threads @@ -245,11 +248,12 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { var downloads = new Gee.ArrayList(); // add files to download list, and add kernels to kernel list - foreach(var k in kernel_list){ + foreach(var k in kernel_list) { if (cancelled) break; // skip some kernels for various reasons - if (k.cached_page_exists){ + if (k.cached_page_exists) { + log_debug(k.version_main+" "+_("cached")); // load the index.html files we already had in cache k.load_cached_page(); continue; @@ -261,6 +265,8 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { if (App.hide_unstable && k.is_unstable) continue; } + log_debug(k.version_main+" "+_("GET")); + // add index.html to download list var item = new DownloadItem(k.cached_page_uri, file_parent(k.cached_page), file_basename(k.cached_page)); downloads.add(item); @@ -287,7 +293,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { // start downloading mgr.execute(); - print_progress_bar_start(_("Fetching index...")); + print_progress_bar_start(_("Fetching individual kernel indexes...")); // while downloading while (mgr.is_running()){ @@ -314,29 +320,34 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { } // download the main index.html listing all mainline kernels - private static bool download_index(){ + private static bool download_index() { check_if_initialized(); + if (!file_exists(index_page)) App.index_is_fresh=false; + if (App.index_is_fresh) return true; + dir_create(file_parent(index_page)); - file_delete(index_page); + file_delete(index_page+"_"); - var item = new DownloadItem(URI_KERNEL_UBUNTU_MAINLINE, CACHE_DIR, "index.html"); + var item = new DownloadItem(PPA_URI, CACHE_DIR, "index.html_"); var mgr = new DownloadTask(); mgr.add_to_queue(item); mgr.status_in_kb = true; mgr.execute(); - - var msg = _("Fetching index from kernel.ubuntu.com..."); + + var msg = _("Fetching main index from")+" "+PPA_URI; log_msg(msg); status_line = msg.strip(); while (mgr.is_running()) sleep(500); - if (file_exists(index_page)){ + if (file_exists(index_page+"_")) { + file_move(index_page+"_",index_page); + App.index_is_fresh=true; log_msg("OK"); return true; } - else{ + else { log_error("ERR"); return false; } @@ -345,11 +356,14 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { // read the main index.html listing all kernels // https://kernel.ubuntu.com/~kernel-ppa/mainline/ private static void load_index(){ - if (!file_exists(index_page)) return; - var list = new Gee.ArrayList(); + kernel_list.clear(); + + if (!file_exists(index_page)) return; string txt = file_read(index_page); + //var list = new Gee.ArrayList(); + try{ // v3.0.16-oneiric/ var rex = new Regex("""([a-zA-Z0-9\-._]+)[\/]*<\/a>"""); @@ -364,11 +378,11 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { if (!match.fetch(2).has_prefix("v")) continue; // var k = new LinuxKernel(match.fetch(1), true); - list.add(k); + kernel_list.add(k); } } - list.sort((a,b)=>{ + kernel_list.sort((a,b)=>{ return a.compare_to(b) * -1; }); } @@ -376,7 +390,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { log_error (e.message); } - kernel_list = list; + //kernel_list = list; } public static void check_installed(){ @@ -569,7 +583,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { var kern_running = new LinuxKernel.from_version(RUNNING_KERNEL); bool found_running_kernel = false; - + foreach(var k in LinuxKernel.kernel_list){ if (!k.is_valid) continue; if (!k.is_installed) continue; @@ -596,7 +610,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { // confirm ------------------------------- if (confirm){ - + var message = "\n%s:\n".printf(_("The following kernels will be uninstalled:")); foreach(var kern in list){ @@ -608,7 +622,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { stdout.printf(message); stdout.flush(); - + int ch = stdin.getc(); if (ch != 'y'){ return; } @@ -619,20 +633,17 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { } public static void kinst_latest(bool point_update, bool confirm){ + log_debug("kinst_latest()"); query(true); - // already done in query() -> query_thread() ? - //check_updates("kinst_latest()"); - //check_updates(); - var kern_major = LinuxKernel.kernel_update_major; - + if ((kern_major != null) && !point_update){ - + var message = "%s: %s".printf(_("Latest update"), kern_major.version_main); log_msg(message); - + kinst_update(kern_major, confirm); return; } @@ -640,7 +651,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { var kern_minor = LinuxKernel.kernel_update_minor; if (kern_minor != null){ - + var message = "%s: %s".printf(_("Latest point update"), kern_minor.version_main); log_msg(message); @@ -658,11 +669,11 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { public static void kinst_update(LinuxKernel kern, bool confirm){ if (confirm){ - + var message = "\n" + _("Install Kernel Version %s ? (y/n): ").printf(kern.version_main); stdout.printf(message); stdout.flush(); - + int ch = stdin.getc(); if (ch != 'y'){ return; } @@ -682,7 +693,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { continue; } - bool is_mainline = false; // Not important here, just set whatever + bool is_mainline = false; var candidate = new LinuxKernel(pkg.version_installed, is_mainline); if (major_version == null || candidate.version_maj < major_version){ major_version = candidate.version_maj; @@ -710,7 +721,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { int index = -1; string version_extra = ""; bool saw_rc = false; - + while (match != null){ string? num = match.fetch(1); @@ -775,7 +786,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { i++; continue; } - + // check if number x = int.parse(arr_a[i]); y = int.parse(arr_b[i]); @@ -842,7 +853,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { } } } - + // properties public bool is_unstable{ @@ -857,7 +868,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { return !file_exists(invalid_file_path); } } - + public static string index_page{ owned get { return "%s/index.html".printf(CACHE_DIR); @@ -892,8 +903,9 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { owned get { return "%s%s".printf(page_uri, "CHANGES"); } + } - + public bool cached_page_exists{ get { return file_exists(cached_page); @@ -905,26 +917,26 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { string list = ""; foreach(string deb in deb_list.keys){ - list += "\n%s".printf(deb); + list += "\n"+deb; } if (list.length > 0){ - txt += "%s\n%s".printf(_("Packages Available"), list); + txt += ""+_("Packages Available")+"\n"+list; } list = ""; foreach(string deb in apt_pkg_list.keys){ - list += "\n%s".printf(deb); + list += "\n"+deb; } if (list.length > 0){ - txt += "\n\n%s\n%s".printf(_("Packages Installed"), list); + txt += "\n\n"+_("Packages Installed")+"\n"+list; } - + return txt; } - + // load - + private void load_cached_page(){ var list = new Gee.HashMap(); @@ -935,7 +947,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { } string txt = file_read(cached_page); - + // parse index.html -------------------------- try{ @@ -987,8 +999,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { catch (Error e) { log_error (e.message); } - - + deb_list = list; } @@ -1023,7 +1034,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { foreach(var kern in selected_kernels) kern.download_packages(); return true; } - + // dep: aria2c public bool download_packages(){ bool ok = true; @@ -1052,7 +1063,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { mgr.execute(); while (mgr.is_running()){ - + sleep(200); stdout.printf("\r%-60s".printf(mgr.status_line.replace("\n",""))); @@ -1075,7 +1086,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { } // dep: dpkg - public bool kinst(){ + public bool kinst() { // check if installed if (is_installed){ @@ -1086,9 +1097,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { bool ok = download_packages(); int status = -1; - if (ok){ - - log_msg("Preparing to install '%s'".printf(version_main)); + if (ok) { var flist = ""; @@ -1096,7 +1105,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { // https://github.com/bkw777/mainline/issues/128 foreach(string file_name in deb_list.keys){ flist += " '%s/%s'".printf(cache_subdir,file_name); - log_msg("kinst() flist += %s/%s".printf(cache_subdir,file_name)); + log_debug("kinst() flist += %s/%s".printf(cache_subdir,file_name)); } string cmd = "pkexec env DISPLAY=${DISPLAY} XAUTHORITY=${XAUTHORITY} dpkg --install "+flist; @@ -1104,17 +1113,8 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { status = Posix.system(cmd); ok = (status == 0); - if (ok) { - log_msg(_("Installation completed. A reboot is required to use the new kernel.")); - } - else { - log_error(_("Installation completed with errors")); - } - - foreach(string file_name in deb_list.keys){ - flist = "%s/%s".printf(cache_subdir,file_name); - file_delete(flist); - } + // TODO blergh, get the arch subdir seperated out of file_name + dir_delete(cache_subdir+"/"+NATIVE_ARCH); } @@ -1123,101 +1123,48 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { // dep: dpkg public static bool kunin_list(Gee.ArrayList selected_kernels){ - bool ok = true; + bool ok = false; int status = -1; - // check if running - foreach(var k in selected_kernels){ - if (k.is_running){ - log_error(_("Selected kernel is currently running and cannot be un-installed.\n Install another kernel before un-installing this one.")); - return false; - } - } - - log_msg(_("Preparing to uninstall selected kernels")); + log_debug(_("Uninstalling selected kernels")+":"); string cmd = "pkexec env DISPLAY=${DISPLAY} XAUTHORITY=${XAUTHORITY} dpkg --purge"; + string found = ""; - foreach(var kern in selected_kernels){ - - if (kern.apt_pkg_list.size > 0){ - foreach(var pkg_name in kern.apt_pkg_list.values){ - if (!pkg_name.has_prefix("linux-tools") - && !pkg_name.has_prefix("linux-libc")){ - - cmd += " '%s'".printf(pkg_name); - } - } - } - else if (kern.deb_list.size > 0){ - // get package names from deb file names - foreach(string file_name in kern.deb_list.keys){ - cmd += " '%s'".printf(file_name.split("_")[0]); - } - } - else{ - log_error("Could not find the packages to un-install!"); - return false; - } - } + foreach(var kern in selected_kernels) { + log_debug(_("requested")+" "+kern.version_main); - status = Posix.system(cmd); - ok = (status == 0); - - if (ok){ - log_msg(_("Un-install completed")); - } - else{ - log_error(_("Un-install completed with errors")); - } - - return ok; - } - - // dep: dpkg - public bool kunin(){ - bool ok = true; - int status = -1; - - // check if running - if (is_running){ - log_error(_("This kernel is currently running and cannot be un-installed.\n Install another kernel before un-installing this one.")); - return false; - } - - log_msg("Preparing to un-install '%s'".printf(version_main)); - - string cmd = "pkexec env DISPLAY=${DISPLAY} XAUTHORITY=${XAUTHORITY} dpkg --purge"; + if (kern.is_running) { + log_error(_("skipping the currently booted kernel")); + continue; + } - if (apt_pkg_list.size > 0){ - foreach(var pkg_name in apt_pkg_list.values){ - if (!pkg_name.has_prefix("linux-tools") - && !pkg_name.has_prefix("linux-libc")){ + found = ""; + foreach(var pkg_name in kern.apt_pkg_list.values) { + //log_debug(pkg_name); + if ( + !pkg_name.has_prefix("linux-tools") && + !pkg_name.has_prefix("linux-libc") + ) { cmd += " '%s'".printf(pkg_name); + found += " "+pkg_name; + ok = true; } } - } - else if (deb_list.size > 0){ - // get package names from deb file names - foreach(string file_name in deb_list.keys){ - cmd += " '%s'".printf(file_name.split("_")[0]); + log_debug(_("found")+":"+found); + + if (!ok) { + log_error(_("No packages to un-install!")); + return false; } - } - else{ - log_error("Could not find the packages to un-install!"); - return false; + } + log_debug(cmd); status = Posix.system(cmd); ok = (status == 0); - if (ok){ - log_msg(_("Un-install completed")); - } - else{ - log_error(_("Un-install completed with errors")); - } - return ok; } + } diff --git a/src/Common/Main.vala b/src/Common/Main.vala index bfa9fedb..76493a8e 100644 --- a/src/Common/Main.vala +++ b/src/Common/Main.vala @@ -39,6 +39,7 @@ using TeeJee.Misc; [CCode(cname="BRANDING_AUTHOREMAIL")] extern const string BRANDING_AUTHOREMAIL; [CCode(cname="BRANDING_WEBSITE")] extern const string BRANDING_WEBSITE; [CCode(cname="INSTALL_PREFIX")] extern const string INSTALL_PREFIX; +[CCode(cname="DEFAULT_PPA_URI")] extern const string DEFAULT_PPA_URI; private const string LOCALE_DIR = INSTALL_PREFIX + "/share/locale"; private const string APP_LIB_DIR = INSTALL_PREFIX + "/lib/" + BRANDING_SHORTNAME; @@ -69,11 +70,24 @@ public class Main : GLib.Object{ public bool cancelled = false; // state flags ---------- - + public bool GUI_MODE = false; public string command = "list"; public string requested_version = ""; - + public bool connection_checked = false; + public bool connection_status = true; + public bool neterr_shown = false; + public bool index_is_fresh = false; + public int window_width = 800; + public int window_height = 600; + public int _window_width = 800; + public int _window_height = 600; + public int window_x = -1; + public int window_y = -1; + public int _window_x = -1; + public int _window_y = -1; + + public string ppa_uri = DEFAULT_PPA_URI; public bool notify_major = true; public bool notify_minor = true; public bool hide_unstable = true; @@ -82,11 +96,10 @@ public class Main : GLib.Object{ public int notify_interval_value = 2; public int connect_timeout_seconds = 15; public int concurrent_downloads = 4; - public bool skip_connection_check = false; public bool confirm = true; // constructors ------------ - + public Main(string[] arg0, bool _gui_mode){ //log_msg("Main()"); @@ -104,15 +117,11 @@ public class Main : GLib.Object{ // helpers ------------ - public void init_paths(string custom_user_login = ""){ + public void init_paths() { // user info user_login = GLib.Environment.get_user_name(); - if (custom_user_login.length > 0){ - user_login = custom_user_login; - } - user_home = GLib.Environment.get_home_dir(); APP_CONF_DIR = user_home + "/.config/" + BRANDING_SHORTNAME; @@ -126,24 +135,34 @@ public class Main : GLib.Object{ LinuxKernel.CACHE_DIR = user_home + "/.cache/" + BRANDING_SHORTNAME; LinuxKernel.CURRENT_USER = user_login; LinuxKernel.CURRENT_USER_HOME = user_home; + LinuxKernel.PPA_URI = ppa_uri; // todo: consider get_user_runtime_dir() or get_user_cache_dir() TMP_PREFIX = Environment.get_tmp_dir() + "/." + BRANDING_SHORTNAME; + // possible future option - delete cache on every startup and exit + // do not do this without rigging up a way to suppress it when the gui app runs the console app + // like --index-is-fresh but maybe --keep-index or --batch + //LinuxKernel.delete_cache(); + } public void save_app_config(){ var config = new Json.Object(); + config.set_string_member("ppa_uri", ppa_uri); config.set_string_member("notify_major", notify_major.to_string()); config.set_string_member("notify_minor", notify_minor.to_string()); config.set_string_member("hide_unstable", hide_unstable.to_string()); config.set_string_member("show_prev_majors", show_prev_majors.to_string()); config.set_string_member("notify_interval_unit", notify_interval_unit.to_string()); config.set_string_member("notify_interval_value", notify_interval_value.to_string()); - config.set_string_member("connect_timeout_seconds", connect_timeout_seconds.to_string()); - config.set_string_member("concurrent_downloads", concurrent_downloads.to_string()); - config.set_string_member("skip_connection_check", skip_connection_check.to_string()); + config.set_string_member("connect_timeout_seconds", connect_timeout_seconds.to_string()); + config.set_string_member("concurrent_downloads", concurrent_downloads.to_string()); + config.set_string_member("window_width", window_width.to_string()); + config.set_string_member("window_height", window_height.to_string()); + config.set_string_member("window_x", window_x.to_string()); + config.set_string_member("window_y", window_y.to_string()); var json = new Json.Generator(); json.pretty = true; @@ -169,9 +188,9 @@ public class Main : GLib.Object{ } public void load_app_config(){ - + var f = File.new_for_path(APP_CONFIG_FILE); - + if (!f.query_exists()) { // initialize static hide_unstable = true; @@ -180,38 +199,38 @@ public class Main : GLib.Object{ } var parser = new Json.Parser(); - - try{ + + try { parser.load_from_file(APP_CONFIG_FILE); } catch (Error e) { - log_error (e.message); - } - - var node = parser.get_root(); - var config = node.get_object(); + log_error (e.message); + } + + var node = parser.get_root(); + var config = node.get_object(); + ppa_uri = json_get_string(config, "ppa_uri", DEFAULT_PPA_URI); LinuxKernel.PPA_URI = ppa_uri; notify_major = json_get_bool(config, "notify_major", true); notify_minor = json_get_bool(config, "notify_minor", true); notify_interval_unit = json_get_int(config, "notify_interval_unit", 0); notify_interval_value = json_get_int(config, "notify_interval_value", 2); connect_timeout_seconds = json_get_int(config, "connect_timeout_seconds", 15); concurrent_downloads = json_get_int(config, "concurrent_downloads", 4); - skip_connection_check = json_get_bool(config, "skip_connection_check", false); hide_unstable = json_get_bool(config, "hide_unstable", true); show_prev_majors = json_get_int(config, "show_prev_majors", 0); - log_debug("Load config file: %s".printf(APP_CONFIG_FILE)); - } + window_width = json_get_int(config, "window_width", window_width); + window_height = json_get_int(config, "window_height", window_height); + window_x = json_get_int(config, "window_x", window_x); + window_y = json_get_int(config, "window_y", window_y); - public void exit_app(int exit_code){ - // save_app_config(); - exit(exit_code); + log_debug("Load config file: %s".printf(APP_CONFIG_FILE)); } // begin ------------ - private void update_startup_script(){ + private void update_startup_script() { // construct the commandline argument for "sleep" int count = App.notify_interval_value; @@ -261,7 +280,7 @@ public class Main : GLib.Object{ + "unset F f p d x\n" + "\n" + "# run current state\n"; - if (notify_minor || notify_major){ + if (notify_minor || notify_major) { // This gdbus check doesn't do what I'd hoped. // Still succeeds while logged out but sitting at a display manager login screen. s += "while gdbus call --session --dest org.freedesktop.DBus --object-path /org/freedesktop/DBus --method org.freedesktop.DBus.GetId 2>&- >&- ;do\n" @@ -280,7 +299,7 @@ public class Main : GLib.Object{ exec_async("bash "+STARTUP_SCRIPT_FILE); } - private void update_startup_desktop_file(){ + private void update_startup_desktop_file() { if (notify_minor || notify_major){ string txt = "[Desktop Entry]\n" @@ -299,4 +318,23 @@ public class Main : GLib.Object{ file_delete(STARTUP_DESKTOP_FILE); } } + + public bool check_internet_connectivity() { + + if (connection_checked) return connection_status; + + string std_err, std_out; + string cmd = "aria2c --no-netrc --no-conf --connect-timeout="+connect_timeout_seconds.to_string()+" --max-file-not-found=3 --retry-wait=2 --max-tries=3 --dry-run --quiet '"+ppa_uri+"'"; + + int status = exec_sync(cmd, out std_out, out std_err); + + if (std_err.length > 0) log_error(std_err); + + if (status == 0) connection_status = true; + else connection_status = false; + + connection_checked = true; + return connection_status; + } + } diff --git a/src/Common/Package.vala b/src/Common/Package.vala index 452346ef..1c2ae0d0 100644 --- a/src/Common/Package.vala +++ b/src/Common/Package.vala @@ -16,12 +16,12 @@ public class Package : GLib.Object { public string version_installed = ""; public string version_available = ""; public string depends = ""; - + public string deb_file_name = ""; public string deb_uri = ""; public int64 deb_size = 0; public string deb_md5hash = ""; - + public bool is_selected = false; public bool is_available = false; public bool is_installed = false; @@ -29,8 +29,8 @@ public class Package : GLib.Object { public bool is_automatic = false; public bool is_manual = false; public bool is_deb = false; - - //convenience members + + // convenience members public bool is_visible = false; public bool in_backup_list = false; @@ -40,7 +40,7 @@ public class Package : GLib.Object { string std_out, std_err; exec_sync("dpkg --print-architecture", out std_out, out std_err); } - + public Package(string _name){ pname = _name; } @@ -58,11 +58,11 @@ public class Package : GLib.Object { string str = ""; str = "%s".printf(_name); if (check_if_foreign(_arch)){ - str = str + ":%s".printf(_arch); //make it unique + str = str + ":%s".printf(_arch); // make it unique } return str; } - + public static bool check_if_foreign(string architecture){ if ((architecture.length > 0) && (architecture != NATIVE_ARCH) && (architecture != "all") && (architecture != "any")){ return true; @@ -80,9 +80,9 @@ public class Package : GLib.Object { string t_dir = create_tmp_dir(); string t_file = get_temp_file_path(t_dir); - + // get installed packages from aptitude -------------- - + string std_out, std_err; exec_sync("aptitude search --disable-columns -F '%p|%v|%M|%d' '?installed'", out std_out, out std_err); file_write(t_file, std_out); @@ -148,9 +148,9 @@ linux-image-unsigned-5.6.10-050610-generic|5.6.10-050610.202005052153||Linux ker string t_dir = create_tmp_dir(); string t_file = get_temp_file_path(t_dir); - + // get installed packages from aptitude -------------- - + string std_out, std_err; string cmd = "aptitude search --disable-columns -F '%%p|%%v|%%M|%%d' '!installed ?architecture(native) %s'".printf(search_string); exec_sync(cmd, out std_out, out std_err); @@ -175,7 +175,7 @@ linux-image-unsigned-5.6.10-050610-generic|5.6.10-050610.202005052153||Linux ker string version = arr[1].strip(); string auto = arr[2].strip(); string desc = arr[3].strip(); - + string id = Package.get_id(pname,arch); Package pkg = null; diff --git a/src/Console/AppConsole.vala b/src/Console/AppConsole.vala index 994c694e..15f391e3 100644 --- a/src/Console/AppConsole.vala +++ b/src/Console/AppConsole.vala @@ -35,16 +35,22 @@ public Main App; public class AppConsole : GLib.Object { public static int main (string[] args) { - + set_locale(); log_msg(BRANDING_SHORTNAME+" "+BRANDING_VERSION); App = new Main(args, false); - var console = new AppConsole(); + bool is_success = console.parse_arguments(args); + // possible future option - delete cache on every startup and exit + // do not do this without rigging up a way to suppress it when the gui app runs the console app + // like --index-is-fresh but maybe --keep-index or --batch + //LinuxKernel.delete_cache(); + + //log_debug("END AppConsole main()"); return (is_success) ? 0 : 1; } @@ -56,7 +62,7 @@ public class AppConsole : GLib.Object { } private static string help_message() { - + string msg = "\n" + BRANDING_SHORTNAME + " " + BRANDING_VERSION + " - " + BRANDING_LONGNAME + "\n" + "\n" + _("Syntax") + ": " + BRANDING_SHORTNAME + " [options]\n" @@ -73,15 +79,14 @@ public class AppConsole : GLib.Object { + " --uninstall " + _("Uninstall specified kernel") + "(2)\n" + " --uninstall-old " + _("Uninstall kernels older than the running kernel") + "\n" + " --download " + _("Download specified kernels") + "(2)\n" - + " --clean-cache " + _("Remove files from application cache") + "\n" + + " --delete-cache " + _("Delete cached info about available kernels") + "\n" + "\n" + _("Options") + ":\n" + "\n" + " --include-unstable " + _("Include unstable and RC releases") + "\n" - + " --hide-unstable " + _("Hide unstable and RC releases") + "\n" - + " --debug " + _("Enable verbose debugging output") + "\n" - + " --yes " + _("Assume Yes for all prompts (non-interactive mode)") + "\n" - + " --user " + _("Override user") + "\n" + + " --exclude-unstable " + _("Exclude unstable and RC releases") + "\n" + + " --debug " + _("Enable verbose debugging output") + "\n" + + " --yes " + _("Assume Yes for all prompts (non-interactive mode)") + "\n" + "\n" + "Notes:\n" + "(1) " +_("A version string taken from the output of --list") + "\n" @@ -105,9 +110,9 @@ public class AppConsole : GLib.Object { string cmd = ""; string cmd_versions = ""; - + // parse options first -------------- - + for (int k = 1; k < args.length; k++) { switch (args[k].down()) { @@ -119,19 +124,17 @@ public class AppConsole : GLib.Object { App.confirm = false; break; - case "--user": - if (++k < args.length){ - string custom_user_login = args[k]; - App.init_paths(custom_user_login); - App.load_app_config(); - } + // used by gui front-end + case "--index-is-fresh": + App.index_is_fresh = true; break; case "--show-unstable": // back compat case "--include-unstable": App.hide_unstable = false; break; - case "--hide-unstable": + case "--hide-unstable": // back compat + case "--exclude-unstable": App.hide_unstable = true; break; @@ -143,7 +146,8 @@ public class AppConsole : GLib.Object { case "--install-point": case "--purge-old-kernels": // back compat case "--uninstall-old": - case "--clean-cache": + case "--clean-cache": // back compat + case "--delete-cache": cmd = args[k].down(); break; @@ -152,7 +156,7 @@ public class AppConsole : GLib.Object { case "--remove": // back compat case "--uninstall": cmd = args[k].down(); - + if (++k < args.length){ cmd_versions = args[k]; } @@ -163,7 +167,7 @@ public class AppConsole : GLib.Object { case "-h": log_msg(help_message()); return true; - + default: // unknown option log_error(_("Unknown option") + ": %s".printf(args[k])); @@ -178,61 +182,46 @@ public class AppConsole : GLib.Object { switch (cmd) { case "--list": - check_if_internet_is_active(false); - LinuxKernel.query(true); - LinuxKernel.print_list(); - break; case "--list-installed": - + LinuxKernel.check_installed(); - break; case "--check": print_updates(); - break; case "--notify": notify_user(); - break; case "--install-latest": case "--install-point": - check_if_internet_is_active(true); - LinuxKernel.kinst_latest(false, App.confirm); - break; case "--purge-old-kernels": // back compat case "--uninstall-old": LinuxKernel.kunin_old(App.confirm); - break; - - case "--clean-cache": - LinuxKernel.clean_cache(); - + case "--clean-cache": // back compat + case "--delete-cache": + LinuxKernel.delete_cache(); break; case "--download": case "--install": case "--remove": // back compat case "--uninstall": - if (cmd=="--download") check_if_internet_is_active(); - - LinuxKernel.query(true); if (cmd_versions.length==0){ log_error(_("No kernels specified")); @@ -240,25 +229,26 @@ public class AppConsole : GLib.Object { } string[] requested_versions = cmd_versions.split(","); - if ((requested_versions.length > 1) && (cmd == "--install")){ + if ((requested_versions.length > 1) && (cmd == "--install")) { log_error(_("Multiple kernels selected for installation. Select only one.")); exit(1); } + LinuxKernel.query(true); + var list = new Gee.ArrayList(); - foreach(string requested_version in requested_versions){ + foreach(string requested_version in requested_versions) { LinuxKernel kern_requested = null; - foreach(var kern in LinuxKernel.kernel_list){ + foreach(var kern in LinuxKernel.kernel_list) { // match --list output - if (kern.version_main == requested_version){ + if (kern.version_main == requested_version) { kern_requested = kern; break; } } - if (kern_requested == null){ - + if (kern_requested == null) { var msg = _("Could not find requested version"); msg += ": %s".printf(requested_version); log_error(msg); @@ -300,29 +290,23 @@ public class AppConsole : GLib.Object { private void print_updates(){ - check_if_internet_is_active(false); - LinuxKernel.query(true); - // already done in query() -> query_thread() ? - //LinuxKernel.check_updates("print_updates()"); - //LinuxKernel.check_updates(); - var kern_major = LinuxKernel.kernel_update_major; - if (kern_major != null){ + if (kern_major != null) { var message = "%s: %s".printf(_("Latest update"), kern_major.version_main); log_msg(message); } var kern_minor = LinuxKernel.kernel_update_minor; - if (kern_minor != null){ + if (kern_minor != null) { var message = "%s: %s".printf(_("Latest point update"), kern_minor.version_main); log_msg(message); } - if ((kern_major == null) && (kern_minor == null)){ + if ((kern_major == null) && (kern_minor == null)) { log_msg(_("No updates found")); } @@ -331,14 +315,8 @@ public class AppConsole : GLib.Object { private void notify_user(){ - check_if_internet_is_active(false); - LinuxKernel.query(true); - // already done in query() -> query_thread() ? - //LinuxKernel.check_updates("notify_user()"); - //LinuxKernel.check_updates(); - string seen_maj = ""; string seen_min = ""; if (file_exists(App.MAJ_SEEN_FILE)) seen_maj = file_read(App.MAJ_SEEN_FILE).strip(); @@ -361,9 +339,9 @@ public class AppConsole : GLib.Object { } var kern = LinuxKernel.kernel_update_major; - if (App.notify_major && (kern!=null) && (seen_maj!=kern.version_main)){ + if (App.notify_major && (kern!=null) && (seen_maj!=kern.version_main)) { var title = _("Kernel %s Available").printf(kern.version_main); - if (App.notify_major || App.notify_minor){ + if (App.notify_major || App.notify_minor) { alist.add(_("Install")+":"+debug_action+BRANDING_SHORTNAME+"-gtk --install "+kern.version_main); file_write(App.MAJ_SEEN_FILE,kern.version_main); OSDNotify.notify_send(title,body,alist,close_action); @@ -373,7 +351,7 @@ public class AppConsole : GLib.Object { } kern = LinuxKernel.kernel_update_minor; - if (App.notify_minor && (kern!=null) && (seen_min!=kern.version_main)){ + if (App.notify_minor && (kern!=null) && (seen_min!=kern.version_main)) { var title = _("Kernel %s Available").printf(kern.version_main); if (App.notify_major || App.notify_minor) { alist.add(_("Install")+":"+debug_action+BRANDING_SHORTNAME+"-gtk --install "+kern.version_main); @@ -387,11 +365,4 @@ public class AppConsole : GLib.Object { log_msg(_("No updates found")); } - public void check_if_internet_is_active(bool exit_app = true){ - if (!check_internet_connectivity()){ - if (exit_app){ - exit(1); - } - } - } } diff --git a/src/Gtk/AppGtk.vala b/src/Gtk/AppGtk.vala index e6c78e29..a2c2fda5 100644 --- a/src/Gtk/AppGtk.vala +++ b/src/Gtk/AppGtk.vala @@ -48,33 +48,53 @@ public class AppGtk : GLib.Object { Gtk.init(ref args); App = new Main(args, true); + parse_arguments(args); // create main window -------------------------------------- var window = new MainWindow (); - - window.destroy.connect(()=>{ + + window.configure_event.connect ((event) => { + log_debug("resize: %dx%d@%dx%d".printf(event.width,event.height,event.x,event.y)); + App.window_width = event.width; + App.window_height = event.height; + App.window_x = event.x; + App.window_y = event.y; + return false; + }); + + window.destroy.connect(() => { log_debug("MainWindow destroyed"); Gtk.main_quit(); }); - - window.delete_event.connect((event)=>{ + + window.delete_event.connect((event) => { log_debug("MainWindow closed"); Gtk.main_quit(); return true; }); - if (App.command == "list"){ - window.show_all(); - } + window.show_all(); + + // start event loop ------------------------------------- - //start event loop ------------------------------------- - Gtk.main(); - //App.save_app_config(); + // save the window size if it changed + if ( + App.window_width != App._window_width || + App.window_height != App._window_height || + App.window_x != App._window_x || + App.window_y != App._window_y + ) App.save_app_config(); + + // possible future option - delete cache on every startup and exit + // do not do this without rigging up a way to suppress it when the gui app runs the console app + // like --index-is-fresh but maybe --keep-index or --batch + //LinuxKernel.delete_cache(); + //log_debug("END AppGtk main()"); return 0; } @@ -87,13 +107,11 @@ public class AppGtk : GLib.Object { public static bool parse_arguments(string[] args) { - App.command = "list"; - - //parse options + // parse options for (int k = 1; k < args.length; k++) { switch (args[k].down()) { - + case "--debug": LOG_DEBUG = true; break; @@ -103,42 +121,14 @@ public class AppGtk : GLib.Object { case "-h": log_msg(help_message()); exit(0); - return true; - } - } - - for (int k = 1; k < args.length; k++) - { - switch (args[k].down()) { - - // commands ------------------------------------ - - case "--install": - App.command = "install"; - App.requested_version = args[++k]; - break; - - // options without argument -------------------------- - - case "--help": - case "--h": - case "-h": - case "--debug": - // already handled - do nothing - break; - - // options with argument -------------------------- - - case "--user": - k += 1; - // already handled - do nothing break; default: - //unknown option - show help and exit log_error(_("Unknown option") + ": %s".printf(args[k])); log_msg(help_message()); - return false; + exit(1); + break; + } } @@ -146,10 +136,9 @@ public class AppGtk : GLib.Object { } public static string help_message() { - string msg = "\n" + BRANDING_SHORTNAME + " " + BRANDING_VERSION + " - " + BRANDING_LONGNAME + "\n"; msg += "\n"; - msg += _("Syntax") + ": " + BRANDING_SHORTNAME + "-gtk [options]\n"; + msg += _("Syntax") + ": " + BRANDING_SHORTNAME + "-gtk ["+_("options")+"]\n"; msg += "\n"; msg += _("Options") + ":\n"; msg += "\n"; diff --git a/src/Gtk/CustomMessageDialog.vala b/src/Gtk/CustomMessageDialog.vala deleted file mode 100644 index bc460e14..00000000 --- a/src/Gtk/CustomMessageDialog.vala +++ /dev/null @@ -1,166 +0,0 @@ - -/* - * CustomMessageDialog.vala - * - * Copyright 2012-17 Tony George - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, - * MA 02110-1301, USA. - * - * - */ - - -using Gtk; -using Gee; - -using TeeJee.Logging; -using TeeJee.FileSystem; -using TeeJee.JsonHelper; -using TeeJee.ProcessHelper; -using TeeJee.GtkHelper; -using TeeJee.System; -using TeeJee.Misc; - -public class CustomMessageDialog : Gtk.Dialog { - - private Gtk.Box vbox_main; - private Gtk.Label lbl_msg; - private Gtk.ScrolledWindow sw_msg; - private Gtk.Button btn_ok; - private Gtk.Button btn_cancel; - private Gtk.Button btn_yes; - private Gtk.Button btn_no; - - private string msg_title; - private string msg_body; - private Gtk.MessageType msg_type; - private Gtk.ButtonsType buttons_type; - - public CustomMessageDialog( - string _msg_title, string _msg_body, - Gtk.MessageType _msg_type, Window? parent, Gtk.ButtonsType _buttons_type) { - - set_transient_for(parent); - set_modal(true); - - msg_title = _msg_title; - msg_body = _msg_body; - msg_type = _msg_type; - buttons_type = _buttons_type; - - init_window(); - - lbl_msg.expand = true; - sw_msg.expand = true; - sw_msg.vscrollbar_policy = PolicyType.NEVER; - - sw_msg.set_size_request(500, 150); // sets minimum size - - show_all(); - - if (lbl_msg.get_allocated_height() > 400){ - sw_msg.vscrollbar_policy = PolicyType.AUTOMATIC; - sw_msg.set_size_request(500, 400); - } - - } - - public void init_window () { - - this.title = BRANDING_LONGNAME; - this.window_position = WindowPosition.CENTER_ON_PARENT; - this.icon = get_app_icon(16); - this.resizable = false; - this.deletable = false; - - //vbox_main - vbox_main = get_content_area () as Gtk.Box; - vbox_main.margin = 6; - - //hbox_contents - var hbox_contents = new Gtk.Box(Orientation.HORIZONTAL, 6); - hbox_contents.margin = 6; - vbox_main.add (hbox_contents); - - string icon_name = "dialog-info"; - - switch(msg_type){ - default: - case Gtk.MessageType.INFO: - icon_name = "dialog-info"; - break; - case Gtk.MessageType.WARNING: - icon_name = "dialog-warning"; - break; - case Gtk.MessageType.QUESTION: - icon_name = "dialog-question"; - break; - case Gtk.MessageType.ERROR: - icon_name = "dialog-error"; - break; - } - - // image ---------------- - - var img = new Image.from_icon_name(icon_name, Gtk.IconSize.DIALOG); - img.margin_end = 120; - hbox_contents.add(img); - - // label ------------------- - - var text = "%s\n\n%s".printf( - escape_html(msg_title), - msg_body); - lbl_msg = new Gtk.Label(text); - lbl_msg.xalign = 0.0f; - lbl_msg.yalign = 0.0f; - lbl_msg.max_width_chars = 70; - lbl_msg.wrap = true; - lbl_msg.wrap_mode = Pango.WrapMode.WORD_CHAR; - lbl_msg.use_markup = true; - lbl_msg.margin_end = 250; - - //sw_msg - sw_msg = new Gtk.ScrolledWindow(null, null); - sw_msg.add (lbl_msg); - sw_msg.hscrollbar_policy = PolicyType.NEVER; - sw_msg.vscrollbar_policy = PolicyType.NEVER; - hbox_contents.add(sw_msg); - - // actions ------------------------- - - var action_area = get_action_area () as Gtk.Box; - action_area.margin_top = 12; - - switch(buttons_type){ - case Gtk.ButtonsType.OK: - btn_ok = (Gtk.Button) add_button (_("OK"), Gtk.ResponseType.OK); - btn_ok.grab_focus(); - break; - case Gtk.ButtonsType.OK_CANCEL: - btn_ok = (Gtk.Button) add_button (_("OK"), Gtk.ResponseType.OK); - btn_cancel = (Gtk.Button) add_button (_("Cancel"), Gtk.ResponseType.CANCEL); - btn_ok.grab_focus(); - break; - case Gtk.ButtonsType.YES_NO: - btn_yes = (Gtk.Button) add_button (_("Yes"), Gtk.ResponseType.YES); - btn_no = (Gtk.Button) add_button (_("No"), Gtk.ResponseType.NO); - btn_yes.grab_focus(); - break; - - } - } -} diff --git a/src/Gtk/MainWindow.vala b/src/Gtk/MainWindow.vala index 48d08bab..c6ba19b8 100644 --- a/src/Gtk/MainWindow.vala +++ b/src/Gtk/MainWindow.vala @@ -32,25 +32,19 @@ using TeeJee.GtkHelper; using TeeJee.System; using TeeJee.Misc; -public class MainWindow : Gtk.Window{ +public class MainWindow : Gtk.Window { private Gtk.Box vbox_main; private Gtk.Box hbox_list; private Gtk.TreeView tv; - private Gtk.Button btn_refresh; private Gtk.Button btn_install; private Gtk.Button btn_uninstall; - private Gtk.Button btn_uninstall_old; private Gtk.Button btn_changes; private Gtk.Label lbl_info; // helper members - private int window_width = 800; - private int window_height = 600; - private uint tmr_init = -1; - private Gee.ArrayList selected_kernels; public MainWindow() { @@ -62,64 +56,32 @@ public class MainWindow : Gtk.Window{ // vbox_main vbox_main = new Gtk.Box(Orientation.VERTICAL, 6); vbox_main.margin = 6; - vbox_main.set_size_request(window_width, window_height); + + vbox_main.set_size_request(App._window_width,App._window_height); + App._window_width = App.window_width; + App._window_height = App.window_height; + add (vbox_main); selected_kernels = new Gee.ArrayList(); init_ui(); - tmr_init = Timeout.add(100, init_delayed); - } - - private bool init_delayed() { - - /* any actions that need to run after window has been displayed */ - - if (tmr_init > 0) { - Source.remove(tmr_init); - tmr_init = 0; - } - refresh_cache(); - - tv_refresh(); - - switch (App.command){ - case "install": - - LinuxKernel kern_requested = null; - foreach(var kern in LinuxKernel.kernel_list){ - if (kern.version_main == App.requested_version){ - kern_requested = kern; - break; - } - } - - if (kern_requested == null){ - var msg = _("Could not find requested version"); - msg += ": %s".printf(App.requested_version); - log_error(msg); - exit(1); - } - else{ - kinst(kern_requested); - } - - break; - - } - - return false; } private void init_ui(){ init_treeview(); init_actions(); init_infobar(); + + this.resize(App.window_width,App.window_height); + if (App.window_x >=0 && App.window_y >= 0) this.move(App.window_x,App.window_y); + App._window_x = App.window_x; + App._window_y = App.window_y; } - private void init_treeview(){ + private void init_treeview() { // hbox hbox_list = new Gtk.Box(Orientation.HORIZONTAL, 6); @@ -238,6 +200,7 @@ public class MainWindow : Gtk.Window{ private void tv_refresh(){ log_debug("tv_refresh()"); + var model = new Gtk.ListStore(4, typeof(LinuxKernel), typeof(Gdk.Pixbuf), typeof(bool), typeof(string)); Gdk.Pixbuf pix_ubuntu = null; @@ -293,50 +256,35 @@ public class MainWindow : Gtk.Window{ set_infobar(); } - private void set_button_state(){ - if (selected_kernels.size == 0){ + private void set_button_state() { + if (selected_kernels.size == 0) { btn_install.sensitive = false; btn_uninstall.sensitive = false; - btn_uninstall_old.sensitive = true; btn_changes.sensitive = false; - } - else{ + } else { + // only allow selecting a single kernel for install/uninstall, examine the installed state btn_install.sensitive = (selected_kernels.size == 1) && !selected_kernels[0].is_installed; btn_uninstall.sensitive = selected_kernels[0].is_installed && !selected_kernels[0].is_running; - btn_uninstall_old.sensitive = true; + // allow selecting multiple kernels for install/uninstall, but IF only a single selected, examine the installed state + // (the rest of the app does not have loops to process a list yet) + //btn_install.sensitive = selected_kernels.size == 1 ? !selected_kernels[0].is_installed : true; + //btn_uninstall.sensitive = selected_kernels.size == 1 ? selected_kernels[0].is_installed && !selected_kernels[0].is_running : true; btn_changes.sensitive = (selected_kernels.size == 1) && file_exists(selected_kernels[0].changes_file); } } private void init_actions(){ - var hbox = new Gtk.Box(Orientation.VERTICAL, 6); + var hbox = new Gtk.Box(Orientation.VERTICAL, 7); hbox_list.add (hbox); - // refresh - var button = new Gtk.Button.with_label (_("Refresh")); - hbox.pack_start (button, true, true, 0); - btn_refresh = button; - - button.clicked.connect(() => { - - if (!check_internet_connectivity()){ - gtk_messagebox(_("No Internet"), _("Internet connection is not active"), this, true); - return; - } - - refresh_cache(); - tv_refresh(); - }); - // install - button = new Gtk.Button.with_label (_("Install")); + var button = new Gtk.Button.with_label (_("Install")); hbox.pack_start (button, true, true, 0); btn_install = button; button.clicked.connect(() => { return_if_fail(selected_kernels.size == 1); - kinst(selected_kernels[0]); }); @@ -361,7 +309,6 @@ public class MainWindow : Gtk.Window{ term.destroy.connect(()=>{ this.present(); refresh_cache(); - tv_refresh(); }); string names = ""; @@ -371,20 +318,32 @@ public class MainWindow : Gtk.Window{ } string sh = BRANDING_SHORTNAME; + if (App.index_is_fresh) sh += " --index-is-fresh"; if (LOG_DEBUG) sh += " --debug"; sh += " --uninstall %s\n".printf(names) + "echo \n" - + "echo '"+_("Close window to exit...")+"'\n"; + + "echo '"+_("DONE")+"'\n" + ; save_bash_script_temp(sh,t_file); term.execute_script(t_file,t_dir); }); + // changes + button = new Gtk.Button.with_label (_("Changes")); + hbox.pack_start (button, true, true, 0); + btn_changes = button; + + button.clicked.connect(() => { + if ((selected_kernels.size == 1) && file_exists(selected_kernels[0].changes_file)){ + xdg_open(selected_kernels[0].changes_file); + } + }); + // uninstall-old button = new Gtk.Button.with_label (_("Uninstall Old")); button.set_tooltip_text(_("Uninstall kernels older than running kernel")); hbox.pack_start (button, true, true, 0); - btn_uninstall_old = button; button.clicked.connect(() => { @@ -401,27 +360,31 @@ public class MainWindow : Gtk.Window{ term.destroy.connect(()=>{ this.present(); refresh_cache(); - tv_refresh(); }); string sh = BRANDING_SHORTNAME+" --uninstall-old"; + if (App.index_is_fresh) sh += " --index-is-fresh"; if (LOG_DEBUG) sh += " --debug"; - sh += "\necho \n" - + "echo '"+_("Close window to exit...")+"'\n"; + sh += "\n" + + "echo \n" + + "echo '"+_("DONE")+"'\n" + ; save_bash_script_temp(sh,t_file); term.execute_script(t_file,t_dir); }); - // changes - button = new Gtk.Button.with_label (_("Changes")); + // reload + button = new Gtk.Button.with_label (_("Reload")); hbox.pack_start (button, true, true, 0); - btn_changes = button; + //btn_refresh = button; button.clicked.connect(() => { - if ((selected_kernels.size == 1) && file_exists(selected_kernels[0].changes_file)){ - xdg_open(selected_kernels[0].changes_file); - } + // when the user interactively presses reload, clear all state and try everything fresh + LinuxKernel.delete_cache(); + App.connection_checked=false; + App.neterr_shown=false; + refresh_cache(); }); // settings @@ -444,14 +407,22 @@ public class MainWindow : Gtk.Window{ refresh_cache(); } - tv_refresh(); }); // about button = new Gtk.Button.with_label (_("About")); hbox.pack_start (button, true, true, 0); - button.clicked.connect(btn_about_clicked); + + // exit + button = new Gtk.Button.with_label (_("Exit")); + hbox.pack_start (button, true, true, 0); + button.clicked.connect(btn_exit_clicked); + + } + + private void btn_exit_clicked () { + Gtk.main_quit(); } private void btn_about_clicked () { @@ -477,15 +448,18 @@ public class MainWindow : Gtk.Window{ // then cut & paste from generated TRANSLATORS file // and add the quotes & commas dialog.translators = { + "de: Marvin Meysel ", + "el: Vasilis Kosmidis ", "es: Adolfo Jayme Barrientos ", "fr: Yolateng0 ", "hr: gogo ", "it: Albano Battistella ", + "ko: Kevin Kim ", "nl: Heimen Stoffels ", - "pl: Waldemar Konik ", - "ru: Faust3000 ", + "pl: Viktor Sokyrko ", + "ru: Danik2343 ", "sv: Åke Engelbrektson ", - "tr: Gökhan GÖKKAYA , Sabri Ünal ", + "tr: Sabri Ünal ", "uk: Serhii Golovko ", }; @@ -512,19 +486,14 @@ public class MainWindow : Gtk.Window{ dialog.show_all(); } - private void refresh_cache(){ - - if (!check_internet_connectivity()){ - gtk_messagebox(_("No Internet"), _("Internet connection is not active."), this, true); - return; - } + private void refresh_cache() { + log_debug("refresh_cache()"); - if (App.command != "list"){ - - // refresh without GUI and return ----------------- + test_net(); + if (!App.GUI_MODE) { + // refresh without GUI LinuxKernel.query(false); - return; } @@ -532,11 +501,11 @@ public class MainWindow : Gtk.Window{ var progress_window = new ProgressWindow.with_parent(this, message, true); progress_window.show_all(); - // TODO: Check if kernel.ubuntu.com is down - LinuxKernel.query(false, (timer, ref count, last) => { update_progress_window(progress_window, message, timer, ref count, last); }); + + tv_refresh(); } @@ -550,10 +519,6 @@ public class MainWindow : Gtk.Window{ timer_elapsed(timer, true); } - if (App.cancelled){ - App.exit_app(1); - } - App.status_line = LinuxKernel.status_line; App.progress_total = LinuxKernel.progress_total; App.progress_count = LinuxKernel.progress_count; @@ -575,9 +540,6 @@ public class MainWindow : Gtk.Window{ return false; }); - // FIXME - GTK error messages, and progressbar is always 100% - //progress_window.update_progressbar(); - count++; } @@ -625,15 +587,11 @@ public class MainWindow : Gtk.Window{ } } - public void kinst(LinuxKernel kern){ + public void kinst(LinuxKernel kern) { - // check if installed - return_if_fail(! kern.is_installed); + return_if_fail(!kern.is_installed); - if (!check_internet_connectivity()){ - gtk_messagebox(_("No Internet"), _("Internet connection is not active."), this, true); - return; - } + test_net (); var term = new TerminalWindow.with_parent(this, false, true); string t_dir = create_tmp_dir(); @@ -646,27 +604,29 @@ public class MainWindow : Gtk.Window{ }); term.destroy.connect(()=>{ - - if (App.command == "list"){ - this.present(); - refresh_cache(); - tv_refresh(); - } - else{ - this.destroy(); - Gtk.main_quit(); - App.exit_app(0); - } + this.present(); + refresh_cache(); }); string sh = BRANDING_SHORTNAME; + if (App.index_is_fresh) sh += " --index-is-fresh"; if (LOG_DEBUG) sh += " --debug"; sh += " --install %s\n".printf(kern.version_main) + "echo \n" - + "echo '"+_("Close window to exit...")+"'\n"; + + "echo '"+_("DONE")+"'\n" + ; save_bash_script_temp(sh,t_file); term.execute_script(t_file,t_dir); } + public void test_net() { + if (!App.check_internet_connectivity()) { + string failmsg = _("Can not reach")+" "+App.ppa_uri; + log_error(failmsg); + if (App.GUI_MODE && !App.neterr_shown) errbox(this,failmsg); + App.neterr_shown=true; + } + } + } diff --git a/src/Gtk/ProgressWindow.vala b/src/Gtk/ProgressWindow.vala index 7a3da136..3a736853 100644 --- a/src/Gtk/ProgressWindow.vala +++ b/src/Gtk/ProgressWindow.vala @@ -39,7 +39,6 @@ public class ProgressWindow : Gtk.Window { private Gtk.Spinner spinner; private Gtk.Label lbl_msg; private Gtk.Label lbl_status; - //private ProgressBar progressbar; private Gtk.Button btn_cancel; private int def_width = 400; @@ -77,15 +76,9 @@ public class ProgressWindow : Gtk.Window { init_window(); } - private bool close_window(){ - if (allow_close){ - // allow window to close - return false; - } - else{ - // do not allow window to close - return true; - } + private bool close_window() { + if (allow_close) return false; + else return true; } public void init_window () { @@ -117,15 +110,6 @@ public class ProgressWindow : Gtk.Window { var hbox = new Gtk.Box(Orientation.HORIZONTAL, 6); vbox_main.add(hbox); - //progressbar - /* - progressbar = new Gtk.ProgressBar(); - progressbar.set_size_request(300, -1); - progressbar.hexpand = true; - //progressbar.pulse_step = 0.1; - hbox.add(progressbar); - */ - //lbl_status lbl_status = new Gtk.Label (""); lbl_status.halign = Align.START; @@ -151,8 +135,8 @@ public class ProgressWindow : Gtk.Window { show_all(); - //btn_cancel.visible = allow_cancel; - btn_cancel.sensitive = allow_cancel; + btn_cancel.visible = allow_cancel; + //btn_cancel.sensitive = allow_cancel; } // common @@ -176,16 +160,4 @@ public class ProgressWindow : Gtk.Window { //title = "Threads: %d".printf(DownloadManager.download_count); } -/* - public void update_progressbar(){ - - double f = App.progress_count / (App.progress_total * 1.0); - - if (f > 1.0){ - f = 1.0; - } - - progressbar.fraction = f; - } -*/ } diff --git a/src/Gtk/SettingsDialog.vala b/src/Gtk/SettingsDialog.vala index bae0b64c..41b1f7d5 100644 --- a/src/Gtk/SettingsDialog.vala +++ b/src/Gtk/SettingsDialog.vala @@ -196,16 +196,6 @@ public class SettingsDialog : Gtk.Dialog { label.margin_bottom = 6; vbox_main.add (label); - // skip internet connection check - chk = new CheckButton.with_label(_("Skip internet connection check")); - chk.active = App.skip_connection_check; - chk.margin_start = 6; - vbox_main.add(chk); - - chk.toggled.connect(()=>{ - App.skip_connection_check = chk.active; - }); - // timeout value hbox = new Gtk.Box(Orientation.HORIZONTAL, 6); vbox_main.add (hbox); @@ -260,7 +250,7 @@ public class SettingsDialog : Gtk.Dialog { show_all(); } - private void btn_ok_click(){ + private void btn_ok_click() { App.save_app_config(); } } diff --git a/src/Gtk/TerminalWindow.vala b/src/Gtk/TerminalWindow.vala index 0f028908..5a1b4ef3 100644 --- a/src/Gtk/TerminalWindow.vala +++ b/src/Gtk/TerminalWindow.vala @@ -52,7 +52,7 @@ public class TerminalWindow : Gtk.Window { // init public TerminalWindow.with_parent(Gtk.Window? parent, bool fullscreen = false, bool show_cancel_button = false) { - if (parent != null){ + if (parent != null) { set_transient_for(parent); parent_win = parent; } @@ -60,7 +60,7 @@ public class TerminalWindow : Gtk.Window { set_modal(true); window_position = WindowPosition.CENTER; - if (fullscreen){ + if (fullscreen) { this.fullscreen(); } @@ -101,7 +101,7 @@ public class TerminalWindow : Gtk.Window { term = new Vte.Terminal(); term.expand = true; - //sw_ppa + // sw_ppa scroll_win = new Gtk.ScrolledWindow(null, null); scroll_win.set_shadow_type (ShadowType.ETCHED_IN); scroll_win.add (term); @@ -170,7 +170,7 @@ public class TerminalWindow : Gtk.Window { hbox.pack_start (label, true, true, 0); } - public void terminate_child(){ + public void terminate_child() { btn_cancel.sensitive = false; process_quit(child_pid); } @@ -180,11 +180,11 @@ public class TerminalWindow : Gtk.Window { string[] env = Environ.get(); - try{ + try { is_running = true; - term.spawn_sync( + term.spawn_sync ( Vte.PtyFlags.DEFAULT, //pty_flags d, //working_directory argv, //argv @@ -196,7 +196,7 @@ public class TerminalWindow : Gtk.Window { ); term.watch_child(child_pid); - + term.child_exited.connect(script_exit); } catch (Error e) { @@ -215,23 +215,21 @@ public class TerminalWindow : Gtk.Window { } - public void allow_window_close(bool allow = true){ - if (allow){ + public void allow_window_close(bool allow = true) { + if (allow) { this.delete_event.disconnect(cancel_window_close); this.deletable = true; - } - else{ + } else { this.delete_event.connect(cancel_window_close); this.deletable = false; } } - public void allow_cancel(bool allow = true){ - if (allow){ + public void allow_cancel(bool allow = true) { + if (allow) { btn_cancel.visible = true; vbox_main.margin = 3; - } - else{ + } else { btn_cancel.sensitive = false; vbox_main.margin = 3; } diff --git a/src/Utility/AsyncTask.vala b/src/Utility/AsyncTask.vala index f04a4792..f671ffc7 100644 --- a/src/Utility/AsyncTask.vala +++ b/src/Utility/AsyncTask.vala @@ -134,16 +134,14 @@ public abstract class AsyncTask : GLib.Object{ } try { - //start thread for reading output stream - Thread.create (read_stdout, true); + new Thread.try (null,read_stdout); } catch (Error e) { log_error ("AsyncTask.begin():create_thread:read_stdout()"); log_error (e.message); } try { - //start thread for reading error stream - Thread.create (read_stderr, true); + new Thread.try (null,read_stderr); } catch (Error e) { log_error ("AsyncTask.begin():create_thread:read_stderr()"); log_error (e.message); @@ -302,7 +300,7 @@ public abstract class AsyncTask : GLib.Object{ protected abstract void finish_task(); - public bool is_running(){ + public bool is_running() { return (status == AppStatus.RUNNING); } } diff --git a/src/Utility/Gtk/GtkHelper.vala b/src/Utility/Gtk/GtkHelper.vala index ec9b895d..dc0112f6 100644 --- a/src/Utility/Gtk/GtkHelper.vala +++ b/src/Utility/Gtk/GtkHelper.vala @@ -6,32 +6,22 @@ using TeeJee.ProcessHelper; using TeeJee.System; using TeeJee.Misc; -namespace TeeJee.GtkHelper{ +namespace TeeJee.GtkHelper { using Gtk; - // messages ---------------------------------------- - - public void gtk_messagebox( - string title, string message, Gtk.Window? parent_win, bool is_error = false){ - - /* Shows a simple message box */ - - var type = Gtk.MessageType.INFO; - if (is_error){ - type = Gtk.MessageType.ERROR; - } - else{ - type = Gtk.MessageType.INFO; - } - - var dlg = new CustomMessageDialog(title,message,type,parent_win, Gtk.ButtonsType.OK); - dlg.run(); - dlg.destroy(); + public void errbox (Window parent, string message) { + Gtk.MessageDialog msg = new Gtk.MessageDialog ( + parent, + Gtk.DialogFlags.MODAL, + Gtk.MessageType.ERROR, + Gtk.ButtonsType.OK, + message + ); + msg.response.connect((response_id) => msg.destroy()); + msg.show(); } - // icon ---------------------------------------------- - public Gdk.Pixbuf? get_app_icon(int icon_size){ var img_icon = get_shared_icon(BRANDING_SHORTNAME ,icon_size); if (img_icon != null){ diff --git a/src/Utility/TeeJee.FileSystem.vala b/src/Utility/TeeJee.FileSystem.vala index 086fb396..17a5f8ea 100644 --- a/src/Utility/TeeJee.FileSystem.vala +++ b/src/Utility/TeeJee.FileSystem.vala @@ -245,12 +245,6 @@ namespace TeeJee.FileSystem{ } -// public bool chown(string dir_path, string user, string group){ -// string cmd = "chown %s:%s -R '%s'".printf(user, group, escape_single_quote(dir_path)); -// int status = exec_sync(cmd, null, null); -// return (status == 0); -// } - // misc -------------------- public string format_file_size ( diff --git a/src/Utility/TeeJee.System.vala b/src/Utility/TeeJee.System.vala index 3716ec56..fad77180 100644 --- a/src/Utility/TeeJee.System.vala +++ b/src/Utility/TeeJee.System.vala @@ -21,32 +21,16 @@ * */ -namespace TeeJee.System{ +namespace TeeJee.System { using TeeJee.ProcessHelper; using TeeJee.Logging; using TeeJee.Misc; using TeeJee.FileSystem; - // internet helpers ---------------------- - public bool check_internet_connectivity(){ - - if (App.skip_connection_check) return true; - - string std_err, std_out; - string cmd = "aria2c --no-netrc --no-conf --connect-timeout="+App.connect_timeout_seconds.to_string()+" --max-file-not-found=3 --retry-wait=2 --max-tries=3 --dry-run --quiet 'https://kernel.ubuntu.com'"; - - int status = exec_sync(cmd, out std_out, out std_err); - - if (std_err.length > 0) log_error(std_err); - if (status != 0) log_error(_("Internet connection is not active")); - - return (status == 0); - } - // open ----------------------------- - public void xdg_open (string file){ + public void xdg_open (string file) { string cmd = "xdg-open '%s'".printf(escape_single_quote(file)); log_debug(cmd); exec_async(cmd); @@ -54,13 +38,13 @@ namespace TeeJee.System{ // timers -------------------------------------------------- - public GLib.Timer timer_start(){ + public GLib.Timer timer_start() { var timer = new GLib.Timer(); timer.start(); return timer; } - public ulong timer_elapsed(GLib.Timer timer, bool stop = true){ + public ulong timer_elapsed(GLib.Timer timer, bool stop = true) { ulong microseconds; double seconds; seconds = timer.elapsed (out microseconds); @@ -70,7 +54,7 @@ namespace TeeJee.System{ return (ulong)((seconds * 1000 ) + (microseconds / 1000)); } - public void sleep(int milliseconds){ + public void sleep(int milliseconds) { Thread.usleep ((ulong) milliseconds * 1000); } } From 3ad70fb37f2c8d847f96f4e04888e8862a408cdc Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Mon, 6 Mar 2023 01:19:56 -0500 Subject: [PATCH 236/567] uri_open(), add PPA button --- .deb_build_number.mak | 4 +- BRANDING.mak | 2 +- debian/changelog | 29 ++- po/de.po | 143 ++++++------- po/el.po | 143 ++++++------- po/es.po | 143 ++++++------- po/fr.po | 143 ++++++------- po/hr.po | 143 ++++++------- po/it.po | 143 ++++++------- po/ko.po | 143 ++++++------- po/messages.pot | 138 ++++++------ po/nl.po | 143 ++++++------- po/pl.po | 143 ++++++------- po/ru.po | 327 +++++++++++++--------------- po/sv.po | 143 ++++++------- po/tr.po | 143 ++++++------- po/uk.po | 327 +++++++++++++--------------- src/Common/DownloadManager.vala | 55 +++-- src/Common/LinuxKernel.vala | 333 +++++++++++++---------------- src/Common/Main.vala | 6 +- src/Common/Package.vala | 16 +- src/Gtk/AppGtk.vala | 2 +- src/Gtk/MainWindow.vala | 234 ++++++++++---------- src/Utility/AsyncTask.vala | 52 +++-- src/Utility/Gtk/AboutWindow.vala | 18 +- src/Utility/TeeJee.FileSystem.vala | 16 +- src/Utility/TeeJee.System.vala | 14 +- 27 files changed, 1480 insertions(+), 1666 deletions(-) diff --git a/.deb_build_number.mak b/.deb_build_number.mak index 0e9c67c0..b9c71f13 100644 --- a/.deb_build_number.mak +++ b/.deb_build_number.mak @@ -1,3 +1,3 @@ # This file is generated by Makefile "make deb_build_number" -DEB_PKG_VERSION := 1.1.0 -DEB_BUILD_NUMBER := 0001 +DEB_PKG_VERSION := 1.1.1 +DEB_BUILD_NUMBER := 0002 diff --git a/BRANDING.mak b/BRANDING.mak index 4458dcb9..fdb246be 100644 --- a/BRANDING.mak +++ b/BRANDING.mak @@ -3,7 +3,7 @@ VERSION_MAJOR = 1 VERSION_MINOR = 1 -VERSION_MICRO = 0 +VERSION_MICRO = 1 BRANDING_SHORTNAME = mainline BRANDING_LONGNAME = Ubuntu Mainline Kernel Installer BRANDING_AUTHORNAME = Brian K. White diff --git a/debian/changelog b/debian/changelog index 466f1b3b..b2bb04ae 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,12 +1,15 @@ -mainline (1.1.0) UNRELEASED; urgency=medium +mainline (1.1.1) unstable; urgency=medium - * removed --user - it was always broken as all it did was change the path to the cache & config files without actually doing any sudo or pkexec etc + * replaced deprecated Gtk.show_uri() and xdg_open() with new uri_open() + * added PPA button to load the selected kernel's page from the mainline-ppa site - * improve net connection checks - - removed skip_internet_connection_check setting - - test connection on actual main index uri - - remember the result for the rest of the session and only bother the user once (except reload) + -- Brian K. White Mon, 06 Mar 2023 00:19:04 -0500 + +mainline (1.1.0) unstable; urgency=medium + + * replaced the refresh button with reload + reload button does a full delete_cache() when pressed, same as --clean-cache flag + reload button clears the state flags: index_is_fresh, connection_checked, neterr_shown * improved cache handling - don't delete or re-download the cache indexes any more than necessary @@ -20,9 +23,10 @@ mainline (1.1.0) UNRELEASED; urgency=medium - preserve old indexes if automatic download at startup fails but do erase it if either --delet-cache or reload button - * replaced the refresh button with reload - reload button does a full delete_cache() when pressed, same as --clean-cache flag - reload button clears the state flags: index_is_fresh, connection_checked, neterr_shown + * improve net connection checks + - removed skip_internet_connection_check setting + - test connection on actual main index uri + - remember the result for the rest of the session and only bother the user once (except reload) * renamed a few cmdline flags, old names still accepted for backwards compatibility --clean-cache -> --delete-cache - also, you should rarely need this now, because the reload button does it @@ -32,7 +36,7 @@ mainline (1.1.0) UNRELEASED; urgency=medium * replaced gtk_messagbox() based on CustomMessageDialog.vala with errbox() based on simpler Gtk.MessageDialog deleted entire CustomMessageDialog.vala - * resolved several compiler warnings, some from deleting gtk_messagbox(), some from updating Thread creation method. + * resolved several compiler warnings, some from deleting gtk_messagbox(), some from updating Thread creation method * added "exit" button to main gui @@ -41,6 +45,9 @@ mainline (1.1.0) UNRELEASED; urgency=medium * save & restore the window size & position + * removed --user + it was always broken as all it did was change the path to the cache & config files without actually changing euid etc + * added several debug messages * removed more un-used code, refactored some more away too. diff --git a/po/de.po b/po/de.po index 00bc95a7..6a32a8ba 100644 --- a/po/de.po +++ b/po/de.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-04 22:34-0500\n" +"POT-Creation-Date: 2023-03-06 01:11-0500\n" "PO-Revision-Date: 2023-02-20 18:40+0100\n" "Last-Translator: Marvin Meysel \n" "Language-Team: German\n" @@ -13,134 +13,135 @@ msgstr "" "X-Launchpad-Export-Date: 2017-04-13 11:48+0000\n" "X-Generator: Poedit 3.1.1\n" -#: src/Common/LinuxKernel.vala:87 +#: src/Common/LinuxKernel.vala:88 msgid "Distribution" msgstr "Distribution" -#: src/Common/LinuxKernel.vala:101 +#: src/Common/LinuxKernel.vala:103 msgid "Architecture" msgstr "Architektur" -#: src/Common/LinuxKernel.vala:256 -msgid "cached" -msgstr "" - -#: src/Common/LinuxKernel.vala:268 -msgid "GET" -msgstr "" - -#: src/Common/LinuxKernel.vala:296 +#: src/Common/LinuxKernel.vala:295 #, fuzzy msgid "Fetching individual kernel indexes..." msgstr "Index abrufen..." -#: src/Common/LinuxKernel.vala:338 +#: src/Common/LinuxKernel.vala:339 #, fuzzy msgid "Fetching main index from" msgstr "Index abrufen..." -#: src/Common/LinuxKernel.vala:599 +#: src/Common/LinuxKernel.vala:593 msgid "Could not find running kernel in list!" msgstr "Konnte keinen laufenden Kernel in der Liste finden!" -#: src/Common/LinuxKernel.vala:605 +#: src/Common/LinuxKernel.vala:599 msgid "Could not find any kernels to uninstall" msgstr "Es konnten keine Kernel zum Deinstallieren gefunden werden" -#: src/Common/LinuxKernel.vala:614 +#: src/Common/LinuxKernel.vala:608 msgid "The following kernels will be uninstalled:" msgstr "Die folgenden Kernel werden deinstalliert:" -#: src/Common/LinuxKernel.vala:621 +#: src/Common/LinuxKernel.vala:612 msgid "Continue ?" msgstr "Weiter ?" -#: src/Common/LinuxKernel.vala:644 src/Console/AppConsole.vala:298 +#: src/Common/LinuxKernel.vala:635 src/Console/AppConsole.vala:298 msgid "Latest update" msgstr "Neustes Update" -#: src/Common/LinuxKernel.vala:655 src/Console/AppConsole.vala:305 +#: src/Common/LinuxKernel.vala:646 src/Console/AppConsole.vala:305 msgid "Latest point update" msgstr "Letzte Punktaktualisierung" -#: src/Common/LinuxKernel.vala:663 src/Console/AppConsole.vala:310 +#: src/Common/LinuxKernel.vala:654 src/Console/AppConsole.vala:310 #: src/Console/AppConsole.vala:365 msgid "No updates found" msgstr "Keine Updates gefunden" -#: src/Common/LinuxKernel.vala:673 +#: src/Common/LinuxKernel.vala:664 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Kernel-Version %s installieren? (j/n):" -#: src/Common/LinuxKernel.vala:924 +#: src/Common/LinuxKernel.vala:896 msgid "Packages Available" msgstr "Verfügbare Pakete" -#: src/Common/LinuxKernel.vala:932 +#: src/Common/LinuxKernel.vala:904 msgid "Packages Installed" msgstr "Installierte Pakete" -#: src/Common/LinuxKernel.vala:1011 +#: src/Common/LinuxKernel.vala:918 src/Utility/TeeJee.FileSystem.vala:157 +msgid "File not found" +msgstr "Datei nicht gefunden " + +#: src/Common/LinuxKernel.vala:984 msgid "Available Kernels" msgstr "Verfügbare Kernel" -#: src/Common/LinuxKernel.vala:1018 src/Gtk/MainWindow.vala:151 +#: src/Common/LinuxKernel.vala:991 src/Gtk/MainWindow.vala:151 msgid "Installed" msgstr "Installiert" -#: src/Common/LinuxKernel.vala:1018 src/Gtk/MainWindow.vala:151 -#: src/Gtk/MainWindow.vala:572 src/Gtk/MainWindow.vala:586 +#: src/Common/LinuxKernel.vala:991 src/Gtk/MainWindow.vala:151 +#: src/Gtk/MainWindow.vala:523 src/Gtk/MainWindow.vala:537 msgid "Running" msgstr "Läuft" -#: src/Common/LinuxKernel.vala:1055 +#: src/Common/LinuxKernel.vala:1028 msgid "Downloading" msgstr "Herunterladen" -#: src/Common/LinuxKernel.vala:1074 +#: src/Common/LinuxKernel.vala:1047 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:1079 +#: src/Common/LinuxKernel.vala:1050 msgid "ERROR" msgstr "Fehler" -#: src/Common/LinuxKernel.vala:1093 +#: src/Common/LinuxKernel.vala:1064 msgid "This kernel is already installed." msgstr "Dieser Kernel ist bereits installiert." -#: src/Common/LinuxKernel.vala:1129 +#: src/Common/LinuxKernel.vala:1102 #, fuzzy msgid "Uninstalling selected kernels" msgstr "Deinstallation des angegebenen Kernels" -#: src/Common/LinuxKernel.vala:1135 +#: src/Common/LinuxKernel.vala:1108 msgid "requested" msgstr "" -#: src/Common/LinuxKernel.vala:1138 +#: src/Common/LinuxKernel.vala:1111 msgid "skipping the currently booted kernel" msgstr "" -#: src/Common/LinuxKernel.vala:1154 +#: src/Common/LinuxKernel.vala:1127 msgid "found" msgstr "" -#: src/Common/LinuxKernel.vala:1157 +#: src/Common/LinuxKernel.vala:1130 #, fuzzy msgid "No packages to un-install!" msgstr "Installierte Pakete" -#: src/Common/Main.vala:260 +#: src/Common/Main.vala:259 msgid "Called from" msgstr "Angerufen von" -#: src/Common/Main.vala:294 +#: src/Common/Main.vala:293 msgid "Notifications are disabled" msgstr "Benachrichtigungen sind deaktiviert" -#: src/Common/Package.vala:134 src/Common/Package.vala:198 +#: src/Common/Main.vala:332 src/Gtk/MainWindow.vala:638 +#, fuzzy +msgid "Can not reach" +msgstr "Fehler beim lesen der Datei" + +#: src/Common/Package.vala:131 src/Common/Package.vala:196 #, c-format msgid "File not found: %s" msgstr "Datei nicht gefunden: %s" @@ -308,64 +309,58 @@ msgstr "Status" msgid "Uninstall" msgstr "Deinstallieren" -#: src/Gtk/MainWindow.vala:325 src/Gtk/MainWindow.vala:370 -#: src/Gtk/MainWindow.vala:616 -msgid "DONE" -msgstr "" - -#: src/Gtk/MainWindow.vala:333 +#: src/Gtk/MainWindow.vala:302 msgid "Changes" msgstr "Änderungen" -#: src/Gtk/MainWindow.vala:344 +#: src/Gtk/MainWindow.vala:323 msgid "Uninstall Old" msgstr "Alte deinstallieren" -#: src/Gtk/MainWindow.vala:345 +#: src/Gtk/MainWindow.vala:324 msgid "Uninstall kernels older than running kernel" msgstr "Deinstallation von Kerneln, die älter sind als der aktuelle Kernel" -#: src/Gtk/MainWindow.vala:378 +#: src/Gtk/MainWindow.vala:329 msgid "Reload" msgstr "" -#: src/Gtk/MainWindow.vala:391 src/Gtk/SettingsDialog.vala:50 +#: src/Gtk/MainWindow.vala:334 src/Gtk/SettingsDialog.vala:50 msgid "Settings" msgstr "Einstellungen" -#: src/Gtk/MainWindow.vala:413 +#: src/Gtk/MainWindow.vala:339 msgid "About" msgstr "Über" -#: src/Gtk/MainWindow.vala:418 +#: src/Gtk/MainWindow.vala:344 msgid "Exit" msgstr "" -#: src/Gtk/MainWindow.vala:470 +#: src/Gtk/MainWindow.vala:412 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Kernel-Upgrade-Dienstprogramm für Ubuntu-basierte Distributionen" -#: src/Gtk/MainWindow.vala:471 +#: src/Gtk/MainWindow.vala:413 msgid "Forked" msgstr "Forked" -#: src/Gtk/MainWindow.vala:471 +#: src/Gtk/MainWindow.vala:413 msgid "Original" msgstr "Original" -#: src/Gtk/MainWindow.vala:500 -#, fuzzy -msgid "Refreshing..." -msgstr "Auffrischen..." +#: src/Gtk/MainWindow.vala:451 +msgid "Updating cached indexes" +msgstr "" -#: src/Gtk/MainWindow.vala:582 +#: src/Gtk/MainWindow.vala:533 msgid "available" msgstr "Verfügbar" -#: src/Gtk/MainWindow.vala:625 -#, fuzzy -msgid "Can not reach" -msgstr "Fehler beim lesen der Datei" +#: src/Gtk/MainWindow.vala:567 src/Gtk/MainWindow.vala:601 +#: src/Gtk/MainWindow.vala:629 +msgid "DONE" +msgstr "" #: src/Gtk/ProgressWindow.vala:126 src/Gtk/TerminalWindow.vala:148 msgid "Cancel" @@ -435,39 +430,39 @@ msgstr "Sekunden" msgid "Max concurrent downloads" msgstr "Maximale Anzahl gleichzeitiger Downloads" -#: src/Gtk/TerminalWindow.vala:158 src/Utility/Gtk/AboutWindow.vala:294 +#: src/Gtk/TerminalWindow.vala:158 src/Utility/Gtk/AboutWindow.vala:287 msgid "Close" msgstr "Schließen" -#: src/Utility/Gtk/AboutWindow.vala:271 src/Utility/Gtk/AboutWindow.vala:288 +#: src/Utility/Gtk/AboutWindow.vala:264 src/Utility/Gtk/AboutWindow.vala:281 msgid "Credits" msgstr "Credits" -#: src/Utility/Gtk/AboutWindow.vala:284 +#: src/Utility/Gtk/AboutWindow.vala:277 msgid "Back" msgstr "Zurück" -#: src/Utility/Gtk/AboutWindow.vala:313 +#: src/Utility/Gtk/AboutWindow.vala:306 msgid "Authors" msgstr "Autoren" -#: src/Utility/Gtk/AboutWindow.vala:321 +#: src/Utility/Gtk/AboutWindow.vala:314 msgid "Contributions" msgstr "Beiträge" -#: src/Utility/Gtk/AboutWindow.vala:329 +#: src/Utility/Gtk/AboutWindow.vala:322 msgid "Artists" msgstr "Künstler" -#: src/Utility/Gtk/AboutWindow.vala:337 +#: src/Utility/Gtk/AboutWindow.vala:330 msgid "Translators" msgstr "Übersetzer" -#: src/Utility/Gtk/AboutWindow.vala:345 +#: src/Utility/Gtk/AboutWindow.vala:338 msgid "Documenters" msgstr "Dokumentierer" -#: src/Utility/Gtk/AboutWindow.vala:353 +#: src/Utility/Gtk/AboutWindow.vala:346 msgid "Third Party Inclusions" msgstr "Einschlüsse von Drittparteien" @@ -503,10 +498,6 @@ msgstr "Datei kopiert" msgid "Failed to copy file" msgstr "Fehler beim Kopieren der Datei" -#: src/Utility/TeeJee.FileSystem.vala:157 -msgid "File not found" -msgstr "Datei nicht gefunden " - #: src/Utility/TeeJee.FileSystem.vala:171 msgid "File moved" msgstr "Datei Verschoben" diff --git a/po/el.po b/po/el.po index 236272cf..26b1f0e0 100644 --- a/po/el.po +++ b/po/el.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-04 22:34-0500\n" +"POT-Creation-Date: 2023-03-06 01:11-0500\n" "PO-Revision-Date: 2023-01-10 02:03-0600\n" "Last-Translator: Vasilis Kosmidis \n" "Language-Team: Greek\n" @@ -13,135 +13,136 @@ msgstr "" "X-Launchpad-Export-Date: 2017-04-13 11:48+0000\n" "X-Generator: Poedit 2.0.5\n" -#: src/Common/LinuxKernel.vala:87 +#: src/Common/LinuxKernel.vala:88 msgid "Distribution" msgstr "Διανομή" -#: src/Common/LinuxKernel.vala:101 +#: src/Common/LinuxKernel.vala:103 msgid "Architecture" msgstr "Αρχιτεκτονική" -#: src/Common/LinuxKernel.vala:256 -msgid "cached" -msgstr "" - -#: src/Common/LinuxKernel.vala:268 -msgid "GET" -msgstr "" - -#: src/Common/LinuxKernel.vala:296 +#: src/Common/LinuxKernel.vala:295 #, fuzzy msgid "Fetching individual kernel indexes..." msgstr "Ανάκτηση ευρετηρίου..." -#: src/Common/LinuxKernel.vala:338 +#: src/Common/LinuxKernel.vala:339 #, fuzzy msgid "Fetching main index from" msgstr "Ανάκτηση ευρετηρίου..." -#: src/Common/LinuxKernel.vala:599 +#: src/Common/LinuxKernel.vala:593 msgid "Could not find running kernel in list!" msgstr "Δεν ήταν δυνατή η εύρεση του τρέχοντος πυρήνα στη λίστα!" -#: src/Common/LinuxKernel.vala:605 +#: src/Common/LinuxKernel.vala:599 msgid "Could not find any kernels to uninstall" msgstr "Δεν βρέθηκε κανένας πυρήνας για απεγκατάσταση" -#: src/Common/LinuxKernel.vala:614 +#: src/Common/LinuxKernel.vala:608 #, fuzzy msgid "The following kernels will be uninstalled:" msgstr "Αυτός ο πυρήνας είναι ήδη εγκατεστημένος." -#: src/Common/LinuxKernel.vala:621 +#: src/Common/LinuxKernel.vala:612 msgid "Continue ?" msgstr "Συνέχεια;" -#: src/Common/LinuxKernel.vala:644 src/Console/AppConsole.vala:298 +#: src/Common/LinuxKernel.vala:635 src/Console/AppConsole.vala:298 msgid "Latest update" msgstr "Τελευταία αναβάθμιση" -#: src/Common/LinuxKernel.vala:655 src/Console/AppConsole.vala:305 +#: src/Common/LinuxKernel.vala:646 src/Console/AppConsole.vala:305 msgid "Latest point update" msgstr "Τελευταία ενημέρωση συντήρησης" -#: src/Common/LinuxKernel.vala:663 src/Console/AppConsole.vala:310 +#: src/Common/LinuxKernel.vala:654 src/Console/AppConsole.vala:310 #: src/Console/AppConsole.vala:365 msgid "No updates found" msgstr "Δεν βρέθηκαν ενημερώσεις" -#: src/Common/LinuxKernel.vala:673 +#: src/Common/LinuxKernel.vala:664 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Εγκατάσταση του πυρήνα έκδοσης %s ; (ν/ό):" -#: src/Common/LinuxKernel.vala:924 +#: src/Common/LinuxKernel.vala:896 msgid "Packages Available" msgstr "Διαθέσιμα πακέτα" -#: src/Common/LinuxKernel.vala:932 +#: src/Common/LinuxKernel.vala:904 msgid "Packages Installed" msgstr "Εγκατεστημένα πακέτα" -#: src/Common/LinuxKernel.vala:1011 +#: src/Common/LinuxKernel.vala:918 src/Utility/TeeJee.FileSystem.vala:157 +msgid "File not found" +msgstr "Το αρχείο δε βρέθηκε" + +#: src/Common/LinuxKernel.vala:984 msgid "Available Kernels" msgstr "Διαθέσιμοι πυρήνες" -#: src/Common/LinuxKernel.vala:1018 src/Gtk/MainWindow.vala:151 +#: src/Common/LinuxKernel.vala:991 src/Gtk/MainWindow.vala:151 msgid "Installed" msgstr "Εγκατεστημένος" -#: src/Common/LinuxKernel.vala:1018 src/Gtk/MainWindow.vala:151 -#: src/Gtk/MainWindow.vala:572 src/Gtk/MainWindow.vala:586 +#: src/Common/LinuxKernel.vala:991 src/Gtk/MainWindow.vala:151 +#: src/Gtk/MainWindow.vala:523 src/Gtk/MainWindow.vala:537 msgid "Running" msgstr "Ενεργός" -#: src/Common/LinuxKernel.vala:1055 +#: src/Common/LinuxKernel.vala:1028 msgid "Downloading" msgstr "Λήψη" -#: src/Common/LinuxKernel.vala:1074 +#: src/Common/LinuxKernel.vala:1047 msgid "OK" msgstr "ΟΚ" -#: src/Common/LinuxKernel.vala:1079 +#: src/Common/LinuxKernel.vala:1050 msgid "ERROR" msgstr "ΣΦΑΛΜΑ" -#: src/Common/LinuxKernel.vala:1093 +#: src/Common/LinuxKernel.vala:1064 msgid "This kernel is already installed." msgstr "Αυτός ο πυρήνας είναι ήδη εγκατεστημένος." -#: src/Common/LinuxKernel.vala:1129 +#: src/Common/LinuxKernel.vala:1102 #, fuzzy msgid "Uninstalling selected kernels" msgstr "Απεγκατάσταση του καθορισμένου πυρήνα" -#: src/Common/LinuxKernel.vala:1135 +#: src/Common/LinuxKernel.vala:1108 msgid "requested" msgstr "" -#: src/Common/LinuxKernel.vala:1138 +#: src/Common/LinuxKernel.vala:1111 msgid "skipping the currently booted kernel" msgstr "" -#: src/Common/LinuxKernel.vala:1154 +#: src/Common/LinuxKernel.vala:1127 msgid "found" msgstr "" -#: src/Common/LinuxKernel.vala:1157 +#: src/Common/LinuxKernel.vala:1130 #, fuzzy msgid "No packages to un-install!" msgstr "Εγκατεστημένα πακέτα" -#: src/Common/Main.vala:260 +#: src/Common/Main.vala:259 msgid "Called from" msgstr "Κλήθηκε από" -#: src/Common/Main.vala:294 +#: src/Common/Main.vala:293 msgid "Notifications are disabled" msgstr "Οι ειδοποιήσεις είναι απενεργοποιημένες" -#: src/Common/Package.vala:134 src/Common/Package.vala:198 +#: src/Common/Main.vala:332 src/Gtk/MainWindow.vala:638 +#, fuzzy +msgid "Can not reach" +msgstr "Αποτυχία ανάγνωσης του αρχείου" + +#: src/Common/Package.vala:131 src/Common/Package.vala:196 #, c-format msgid "File not found: %s" msgstr "Το αρχείο δεν βρέθηκε: %s" @@ -307,64 +308,58 @@ msgstr "Κατάσταση" msgid "Uninstall" msgstr "Απεγκατάσταση" -#: src/Gtk/MainWindow.vala:325 src/Gtk/MainWindow.vala:370 -#: src/Gtk/MainWindow.vala:616 -msgid "DONE" -msgstr "" - -#: src/Gtk/MainWindow.vala:333 +#: src/Gtk/MainWindow.vala:302 msgid "Changes" msgstr "Αλλαγές" -#: src/Gtk/MainWindow.vala:344 +#: src/Gtk/MainWindow.vala:323 msgid "Uninstall Old" msgstr "Απεγκατάσταση παλαιών" -#: src/Gtk/MainWindow.vala:345 +#: src/Gtk/MainWindow.vala:324 msgid "Uninstall kernels older than running kernel" msgstr "Απεγκαταστήστε πυρήνες παλαιότερους από τον ενεργό" -#: src/Gtk/MainWindow.vala:378 +#: src/Gtk/MainWindow.vala:329 msgid "Reload" msgstr "" -#: src/Gtk/MainWindow.vala:391 src/Gtk/SettingsDialog.vala:50 +#: src/Gtk/MainWindow.vala:334 src/Gtk/SettingsDialog.vala:50 msgid "Settings" msgstr "Ρυθμίσεις" -#: src/Gtk/MainWindow.vala:413 +#: src/Gtk/MainWindow.vala:339 msgid "About" msgstr "Σχετικά" -#: src/Gtk/MainWindow.vala:418 +#: src/Gtk/MainWindow.vala:344 msgid "Exit" msgstr "" -#: src/Gtk/MainWindow.vala:470 +#: src/Gtk/MainWindow.vala:412 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Πρόγραμμα αναβάθμισης πυρήνα για διανομές που βασίζονται στο Ubuntu" -#: src/Gtk/MainWindow.vala:471 +#: src/Gtk/MainWindow.vala:413 msgid "Forked" msgstr "Forked" -#: src/Gtk/MainWindow.vala:471 +#: src/Gtk/MainWindow.vala:413 msgid "Original" msgstr "Πρωτότυπο" -#: src/Gtk/MainWindow.vala:500 -#, fuzzy -msgid "Refreshing..." -msgstr "Ανανέωση..." +#: src/Gtk/MainWindow.vala:451 +msgid "Updating cached indexes" +msgstr "" -#: src/Gtk/MainWindow.vala:582 +#: src/Gtk/MainWindow.vala:533 msgid "available" msgstr "διαθέσιμος" -#: src/Gtk/MainWindow.vala:625 -#, fuzzy -msgid "Can not reach" -msgstr "Αποτυχία ανάγνωσης του αρχείου" +#: src/Gtk/MainWindow.vala:567 src/Gtk/MainWindow.vala:601 +#: src/Gtk/MainWindow.vala:629 +msgid "DONE" +msgstr "" #: src/Gtk/ProgressWindow.vala:126 src/Gtk/TerminalWindow.vala:148 msgid "Cancel" @@ -434,39 +429,39 @@ msgstr "δευτερόλεπτα" msgid "Max concurrent downloads" msgstr "Μέγιστες ταυτόχρονες λήψεις" -#: src/Gtk/TerminalWindow.vala:158 src/Utility/Gtk/AboutWindow.vala:294 +#: src/Gtk/TerminalWindow.vala:158 src/Utility/Gtk/AboutWindow.vala:287 msgid "Close" msgstr "Κλείσιμο" -#: src/Utility/Gtk/AboutWindow.vala:271 src/Utility/Gtk/AboutWindow.vala:288 +#: src/Utility/Gtk/AboutWindow.vala:264 src/Utility/Gtk/AboutWindow.vala:281 msgid "Credits" msgstr "Μνεία" -#: src/Utility/Gtk/AboutWindow.vala:284 +#: src/Utility/Gtk/AboutWindow.vala:277 msgid "Back" msgstr "Πίσω" -#: src/Utility/Gtk/AboutWindow.vala:313 +#: src/Utility/Gtk/AboutWindow.vala:306 msgid "Authors" msgstr "Συγγραφείς" -#: src/Utility/Gtk/AboutWindow.vala:321 +#: src/Utility/Gtk/AboutWindow.vala:314 msgid "Contributions" msgstr "Συνεισφορές" -#: src/Utility/Gtk/AboutWindow.vala:329 +#: src/Utility/Gtk/AboutWindow.vala:322 msgid "Artists" msgstr "Καλλιτέχνες" -#: src/Utility/Gtk/AboutWindow.vala:337 +#: src/Utility/Gtk/AboutWindow.vala:330 msgid "Translators" msgstr "Μεταφραστές" -#: src/Utility/Gtk/AboutWindow.vala:345 +#: src/Utility/Gtk/AboutWindow.vala:338 msgid "Documenters" msgstr "Τεκμηριωτές" -#: src/Utility/Gtk/AboutWindow.vala:353 +#: src/Utility/Gtk/AboutWindow.vala:346 msgid "Third Party Inclusions" msgstr "Συμπεριλήψεις τρίτων" @@ -502,10 +497,6 @@ msgstr "Το αρχείο αντιγράφηκε" msgid "Failed to copy file" msgstr "Αποτυχία αντιγραφής αρχείου" -#: src/Utility/TeeJee.FileSystem.vala:157 -msgid "File not found" -msgstr "Το αρχείο δε βρέθηκε" - #: src/Utility/TeeJee.FileSystem.vala:171 msgid "File moved" msgstr "Το αρχείο μετακινήθηκε" diff --git a/po/es.po b/po/es.po index a14cd944..1647cf58 100644 --- a/po/es.po +++ b/po/es.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-04 22:34-0500\n" +"POT-Creation-Date: 2023-03-06 01:11-0500\n" "PO-Revision-Date: 2018-01-03 02:03-0600\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish\n" @@ -13,137 +13,138 @@ msgstr "" "X-Launchpad-Export-Date: 2017-04-13 11:48+0000\n" "X-Generator: Poedit 2.0.5\n" -#: src/Common/LinuxKernel.vala:87 +#: src/Common/LinuxKernel.vala:88 msgid "Distribution" msgstr "Distribución" -#: src/Common/LinuxKernel.vala:101 +#: src/Common/LinuxKernel.vala:103 msgid "Architecture" msgstr "Arquitectura del sistema" -#: src/Common/LinuxKernel.vala:256 -msgid "cached" -msgstr "" - -#: src/Common/LinuxKernel.vala:268 -msgid "GET" -msgstr "" - -#: src/Common/LinuxKernel.vala:296 +#: src/Common/LinuxKernel.vala:295 #, fuzzy msgid "Fetching individual kernel indexes..." msgstr "Recuperando índice..." -#: src/Common/LinuxKernel.vala:338 +#: src/Common/LinuxKernel.vala:339 #, fuzzy msgid "Fetching main index from" msgstr "Recuperando índice..." -#: src/Common/LinuxKernel.vala:599 +#: src/Common/LinuxKernel.vala:593 msgid "Could not find running kernel in list!" msgstr "¡No se pudo encontrar el núcleo en ejecución en la lista!" -#: src/Common/LinuxKernel.vala:605 +#: src/Common/LinuxKernel.vala:599 #, fuzzy msgid "Could not find any kernels to uninstall" msgstr "Seleccione los núcleos que se desinstalarán" -#: src/Common/LinuxKernel.vala:614 +#: src/Common/LinuxKernel.vala:608 #, fuzzy msgid "The following kernels will be uninstalled:" msgstr "Los siguientes kernels serán eliminados:" -#: src/Common/LinuxKernel.vala:621 +#: src/Common/LinuxKernel.vala:612 msgid "Continue ?" msgstr "¿Continuar?" -#: src/Common/LinuxKernel.vala:644 src/Console/AppConsole.vala:298 +#: src/Common/LinuxKernel.vala:635 src/Console/AppConsole.vala:298 msgid "Latest update" msgstr "" -#: src/Common/LinuxKernel.vala:655 src/Console/AppConsole.vala:305 +#: src/Common/LinuxKernel.vala:646 src/Console/AppConsole.vala:305 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:663 src/Console/AppConsole.vala:310 +#: src/Common/LinuxKernel.vala:654 src/Console/AppConsole.vala:310 #: src/Console/AppConsole.vala:365 msgid "No updates found" msgstr "No se encontró ninguna actualización" -#: src/Common/LinuxKernel.vala:673 +#: src/Common/LinuxKernel.vala:664 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "" -#: src/Common/LinuxKernel.vala:924 +#: src/Common/LinuxKernel.vala:896 msgid "Packages Available" msgstr "Paquetes disponibles" -#: src/Common/LinuxKernel.vala:932 +#: src/Common/LinuxKernel.vala:904 msgid "Packages Installed" msgstr "Paquetes instalados" -#: src/Common/LinuxKernel.vala:1011 +#: src/Common/LinuxKernel.vala:918 src/Utility/TeeJee.FileSystem.vala:157 +msgid "File not found" +msgstr "No se encontró el archivo" + +#: src/Common/LinuxKernel.vala:984 msgid "Available Kernels" msgstr "Núcleos disponibles" -#: src/Common/LinuxKernel.vala:1018 src/Gtk/MainWindow.vala:151 +#: src/Common/LinuxKernel.vala:991 src/Gtk/MainWindow.vala:151 msgid "Installed" msgstr "Instalado" -#: src/Common/LinuxKernel.vala:1018 src/Gtk/MainWindow.vala:151 -#: src/Gtk/MainWindow.vala:572 src/Gtk/MainWindow.vala:586 +#: src/Common/LinuxKernel.vala:991 src/Gtk/MainWindow.vala:151 +#: src/Gtk/MainWindow.vala:523 src/Gtk/MainWindow.vala:537 msgid "Running" msgstr "En ejecución" -#: src/Common/LinuxKernel.vala:1055 +#: src/Common/LinuxKernel.vala:1028 msgid "Downloading" msgstr "Descargando" -#: src/Common/LinuxKernel.vala:1074 +#: src/Common/LinuxKernel.vala:1047 msgid "OK" msgstr "Aceptar" -#: src/Common/LinuxKernel.vala:1079 +#: src/Common/LinuxKernel.vala:1050 msgid "ERROR" msgstr "ERROR" -#: src/Common/LinuxKernel.vala:1093 +#: src/Common/LinuxKernel.vala:1064 msgid "This kernel is already installed." msgstr "Este núcleo ya se instaló." -#: src/Common/LinuxKernel.vala:1129 +#: src/Common/LinuxKernel.vala:1102 #, fuzzy msgid "Uninstalling selected kernels" msgstr "Instalar núcleo troncal especificado" -#: src/Common/LinuxKernel.vala:1135 +#: src/Common/LinuxKernel.vala:1108 msgid "requested" msgstr "" -#: src/Common/LinuxKernel.vala:1138 +#: src/Common/LinuxKernel.vala:1111 msgid "skipping the currently booted kernel" msgstr "" -#: src/Common/LinuxKernel.vala:1154 +#: src/Common/LinuxKernel.vala:1127 msgid "found" msgstr "" -#: src/Common/LinuxKernel.vala:1157 +#: src/Common/LinuxKernel.vala:1130 #, fuzzy msgid "No packages to un-install!" msgstr "Paquetes instalados" -#: src/Common/Main.vala:260 +#: src/Common/Main.vala:259 msgid "Called from" msgstr "" -#: src/Common/Main.vala:294 +#: src/Common/Main.vala:293 #, fuzzy msgid "Notifications are disabled" msgstr "Notificación" -#: src/Common/Package.vala:134 src/Common/Package.vala:198 +#: src/Common/Main.vala:332 src/Gtk/MainWindow.vala:638 +#, fuzzy +msgid "Can not reach" +msgstr "Falló la lectura del archivo" + +#: src/Common/Package.vala:131 src/Common/Package.vala:196 #, c-format msgid "File not found: %s" msgstr "No se encontró el archivo: %s" @@ -313,67 +314,61 @@ msgstr "Estado" msgid "Uninstall" msgstr "Instalar" -#: src/Gtk/MainWindow.vala:325 src/Gtk/MainWindow.vala:370 -#: src/Gtk/MainWindow.vala:616 -msgid "DONE" -msgstr "" - -#: src/Gtk/MainWindow.vala:333 +#: src/Gtk/MainWindow.vala:302 msgid "Changes" msgstr "Cambios" -#: src/Gtk/MainWindow.vala:344 +#: src/Gtk/MainWindow.vala:323 #, fuzzy msgid "Uninstall Old" msgstr "Desinstalación finalizada" -#: src/Gtk/MainWindow.vala:345 +#: src/Gtk/MainWindow.vala:324 msgid "Uninstall kernels older than running kernel" msgstr "" -#: src/Gtk/MainWindow.vala:378 +#: src/Gtk/MainWindow.vala:329 msgid "Reload" msgstr "" -#: src/Gtk/MainWindow.vala:391 src/Gtk/SettingsDialog.vala:50 +#: src/Gtk/MainWindow.vala:334 src/Gtk/SettingsDialog.vala:50 msgid "Settings" msgstr "Configuración" -#: src/Gtk/MainWindow.vala:413 +#: src/Gtk/MainWindow.vala:339 msgid "About" msgstr "Acerca de" -#: src/Gtk/MainWindow.vala:418 +#: src/Gtk/MainWindow.vala:344 msgid "Exit" msgstr "" -#: src/Gtk/MainWindow.vala:470 +#: src/Gtk/MainWindow.vala:412 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "" "Herramienta de renovación de núcleo para distribuciones basadas en Ubuntu" -#: src/Gtk/MainWindow.vala:471 +#: src/Gtk/MainWindow.vala:413 msgid "Forked" msgstr "" -#: src/Gtk/MainWindow.vala:471 +#: src/Gtk/MainWindow.vala:413 msgid "Original" msgstr "" -#: src/Gtk/MainWindow.vala:500 -#, fuzzy -msgid "Refreshing..." -msgstr "Actualizando…" +#: src/Gtk/MainWindow.vala:451 +msgid "Updating cached indexes" +msgstr "" -#: src/Gtk/MainWindow.vala:582 +#: src/Gtk/MainWindow.vala:533 #, fuzzy msgid "available" msgstr "Paquetes disponibles" -#: src/Gtk/MainWindow.vala:625 -#, fuzzy -msgid "Can not reach" -msgstr "Falló la lectura del archivo" +#: src/Gtk/MainWindow.vala:567 src/Gtk/MainWindow.vala:601 +#: src/Gtk/MainWindow.vala:629 +msgid "DONE" +msgstr "" #: src/Gtk/ProgressWindow.vala:126 src/Gtk/TerminalWindow.vala:148 msgid "Cancel" @@ -444,39 +439,39 @@ msgstr "" msgid "Max concurrent downloads" msgstr "" -#: src/Gtk/TerminalWindow.vala:158 src/Utility/Gtk/AboutWindow.vala:294 +#: src/Gtk/TerminalWindow.vala:158 src/Utility/Gtk/AboutWindow.vala:287 msgid "Close" msgstr "Cerrar" -#: src/Utility/Gtk/AboutWindow.vala:271 src/Utility/Gtk/AboutWindow.vala:288 +#: src/Utility/Gtk/AboutWindow.vala:264 src/Utility/Gtk/AboutWindow.vala:281 msgid "Credits" msgstr "Créditos" -#: src/Utility/Gtk/AboutWindow.vala:284 +#: src/Utility/Gtk/AboutWindow.vala:277 msgid "Back" msgstr "Atrás" -#: src/Utility/Gtk/AboutWindow.vala:313 +#: src/Utility/Gtk/AboutWindow.vala:306 msgid "Authors" msgstr "Autores" -#: src/Utility/Gtk/AboutWindow.vala:321 +#: src/Utility/Gtk/AboutWindow.vala:314 msgid "Contributions" msgstr "Contribuciones" -#: src/Utility/Gtk/AboutWindow.vala:329 +#: src/Utility/Gtk/AboutWindow.vala:322 msgid "Artists" msgstr "Artistas" -#: src/Utility/Gtk/AboutWindow.vala:337 +#: src/Utility/Gtk/AboutWindow.vala:330 msgid "Translators" msgstr "Traductores" -#: src/Utility/Gtk/AboutWindow.vala:345 +#: src/Utility/Gtk/AboutWindow.vala:338 msgid "Documenters" msgstr "Documentadores" -#: src/Utility/Gtk/AboutWindow.vala:353 +#: src/Utility/Gtk/AboutWindow.vala:346 #, fuzzy msgid "Third Party Inclusions" msgstr "Herramientas de terceros" @@ -515,10 +510,6 @@ msgstr "Se copió el archivo" msgid "Failed to copy file" msgstr "Falló la copia del archivo" -#: src/Utility/TeeJee.FileSystem.vala:157 -msgid "File not found" -msgstr "No se encontró el archivo" - #: src/Utility/TeeJee.FileSystem.vala:171 msgid "File moved" msgstr "Se trasladó el archivo" diff --git a/po/fr.po b/po/fr.po index 5539179e..98ba2202 100644 --- a/po/fr.po +++ b/po/fr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-04 22:34-0500\n" +"POT-Creation-Date: 2023-03-06 01:11-0500\n" "PO-Revision-Date: 2018-08-05 15:50+0200\n" "Last-Translator: Yolateng0 \n" "Language-Team: French\n" @@ -13,136 +13,137 @@ msgstr "" "X-Launchpad-Export-Date: 2017-04-13 11:48+0000\n" "X-Generator: Poedit 2.0.6\n" -#: src/Common/LinuxKernel.vala:87 +#: src/Common/LinuxKernel.vala:88 msgid "Distribution" msgstr "Distribution" -#: src/Common/LinuxKernel.vala:101 +#: src/Common/LinuxKernel.vala:103 msgid "Architecture" msgstr "Architecture" -#: src/Common/LinuxKernel.vala:256 -msgid "cached" -msgstr "" - -#: src/Common/LinuxKernel.vala:268 -msgid "GET" -msgstr "" - -#: src/Common/LinuxKernel.vala:296 +#: src/Common/LinuxKernel.vala:295 #, fuzzy msgid "Fetching individual kernel indexes..." msgstr "Récupération de l'index..." -#: src/Common/LinuxKernel.vala:338 +#: src/Common/LinuxKernel.vala:339 #, fuzzy msgid "Fetching main index from" msgstr "Récupération de l'index..." -#: src/Common/LinuxKernel.vala:599 +#: src/Common/LinuxKernel.vala:593 msgid "Could not find running kernel in list!" msgstr "Impossible de trouver la version courante dans la liste!" -#: src/Common/LinuxKernel.vala:605 +#: src/Common/LinuxKernel.vala:599 #, fuzzy msgid "Could not find any kernels to uninstall" msgstr "Impossible de trouver de noyaux à supprimer" -#: src/Common/LinuxKernel.vala:614 +#: src/Common/LinuxKernel.vala:608 #, fuzzy msgid "The following kernels will be uninstalled:" msgstr "Les noyaux suivants seront supprimés:" -#: src/Common/LinuxKernel.vala:621 +#: src/Common/LinuxKernel.vala:612 msgid "Continue ?" msgstr "Reprendre ?" -#: src/Common/LinuxKernel.vala:644 src/Console/AppConsole.vala:298 +#: src/Common/LinuxKernel.vala:635 src/Console/AppConsole.vala:298 msgid "Latest update" msgstr "Dernière mise à jour" -#: src/Common/LinuxKernel.vala:655 src/Console/AppConsole.vala:305 +#: src/Common/LinuxKernel.vala:646 src/Console/AppConsole.vala:305 msgid "Latest point update" msgstr "Dernière mise à jour mineure" -#: src/Common/LinuxKernel.vala:663 src/Console/AppConsole.vala:310 +#: src/Common/LinuxKernel.vala:654 src/Console/AppConsole.vala:310 #: src/Console/AppConsole.vala:365 msgid "No updates found" msgstr "Aucune mise à jour disponible" -#: src/Common/LinuxKernel.vala:673 +#: src/Common/LinuxKernel.vala:664 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Installer le noyau en version %s ? (y/n): " -#: src/Common/LinuxKernel.vala:924 +#: src/Common/LinuxKernel.vala:896 msgid "Packages Available" msgstr "Paquets Disponibles" -#: src/Common/LinuxKernel.vala:932 +#: src/Common/LinuxKernel.vala:904 msgid "Packages Installed" msgstr "Paquets Installés" -#: src/Common/LinuxKernel.vala:1011 +#: src/Common/LinuxKernel.vala:918 src/Utility/TeeJee.FileSystem.vala:157 +msgid "File not found" +msgstr "Fichier non trouvé" + +#: src/Common/LinuxKernel.vala:984 msgid "Available Kernels" msgstr "Noyaux Disponibles" -#: src/Common/LinuxKernel.vala:1018 src/Gtk/MainWindow.vala:151 +#: src/Common/LinuxKernel.vala:991 src/Gtk/MainWindow.vala:151 msgid "Installed" msgstr "Installé" -#: src/Common/LinuxKernel.vala:1018 src/Gtk/MainWindow.vala:151 -#: src/Gtk/MainWindow.vala:572 src/Gtk/MainWindow.vala:586 +#: src/Common/LinuxKernel.vala:991 src/Gtk/MainWindow.vala:151 +#: src/Gtk/MainWindow.vala:523 src/Gtk/MainWindow.vala:537 msgid "Running" msgstr "Actuel" -#: src/Common/LinuxKernel.vala:1055 +#: src/Common/LinuxKernel.vala:1028 msgid "Downloading" msgstr "Téléchargement" -#: src/Common/LinuxKernel.vala:1074 +#: src/Common/LinuxKernel.vala:1047 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:1079 +#: src/Common/LinuxKernel.vala:1050 msgid "ERROR" msgstr "ERREUR" -#: src/Common/LinuxKernel.vala:1093 +#: src/Common/LinuxKernel.vala:1064 msgid "This kernel is already installed." msgstr "Ce noyau est déjà installé." -#: src/Common/LinuxKernel.vala:1129 +#: src/Common/LinuxKernel.vala:1102 #, fuzzy msgid "Uninstalling selected kernels" msgstr "Installer les noyaux spécifiés" -#: src/Common/LinuxKernel.vala:1135 +#: src/Common/LinuxKernel.vala:1108 msgid "requested" msgstr "" -#: src/Common/LinuxKernel.vala:1138 +#: src/Common/LinuxKernel.vala:1111 msgid "skipping the currently booted kernel" msgstr "" -#: src/Common/LinuxKernel.vala:1154 +#: src/Common/LinuxKernel.vala:1127 msgid "found" msgstr "" -#: src/Common/LinuxKernel.vala:1157 +#: src/Common/LinuxKernel.vala:1130 #, fuzzy msgid "No packages to un-install!" msgstr "Paquets Installés" -#: src/Common/Main.vala:260 +#: src/Common/Main.vala:259 msgid "Called from" msgstr "" -#: src/Common/Main.vala:294 +#: src/Common/Main.vala:293 msgid "Notifications are disabled" msgstr "Les notifications sont désactivées" -#: src/Common/Package.vala:134 src/Common/Package.vala:198 +#: src/Common/Main.vala:332 src/Gtk/MainWindow.vala:638 +#, fuzzy +msgid "Can not reach" +msgstr "Impossible de lire le fichier" + +#: src/Common/Package.vala:131 src/Common/Package.vala:196 #, c-format msgid "File not found: %s" msgstr "Fichier non trouvé: %s" @@ -313,68 +314,62 @@ msgstr "Statut" msgid "Uninstall" msgstr "Installer" -#: src/Gtk/MainWindow.vala:325 src/Gtk/MainWindow.vala:370 -#: src/Gtk/MainWindow.vala:616 -msgid "DONE" -msgstr "" - -#: src/Gtk/MainWindow.vala:333 +#: src/Gtk/MainWindow.vala:302 msgid "Changes" msgstr "Changements" -#: src/Gtk/MainWindow.vala:344 +#: src/Gtk/MainWindow.vala:323 #, fuzzy msgid "Uninstall Old" msgstr "Désinstallation complète" -#: src/Gtk/MainWindow.vala:345 +#: src/Gtk/MainWindow.vala:324 #, fuzzy msgid "Uninstall kernels older than running kernel" msgstr "Désinstalle les noyaux plus anciens que le noyau courant" -#: src/Gtk/MainWindow.vala:378 +#: src/Gtk/MainWindow.vala:329 msgid "Reload" msgstr "" -#: src/Gtk/MainWindow.vala:391 src/Gtk/SettingsDialog.vala:50 +#: src/Gtk/MainWindow.vala:334 src/Gtk/SettingsDialog.vala:50 msgid "Settings" msgstr "Paramètres" -#: src/Gtk/MainWindow.vala:413 +#: src/Gtk/MainWindow.vala:339 msgid "About" msgstr "À propos" -#: src/Gtk/MainWindow.vala:418 +#: src/Gtk/MainWindow.vala:344 msgid "Exit" msgstr "" -#: src/Gtk/MainWindow.vala:470 +#: src/Gtk/MainWindow.vala:412 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "" "Utilitaire de mise à niveau des noyaux pour les distributions basées sur " "Ubuntu" -#: src/Gtk/MainWindow.vala:471 +#: src/Gtk/MainWindow.vala:413 msgid "Forked" msgstr "Version forkée :" -#: src/Gtk/MainWindow.vala:471 +#: src/Gtk/MainWindow.vala:413 msgid "Original" msgstr "Version originale :" -#: src/Gtk/MainWindow.vala:500 -#, fuzzy -msgid "Refreshing..." -msgstr "Actualisation..." +#: src/Gtk/MainWindow.vala:451 +msgid "Updating cached indexes" +msgstr "" -#: src/Gtk/MainWindow.vala:582 +#: src/Gtk/MainWindow.vala:533 msgid "available" msgstr "disponible" -#: src/Gtk/MainWindow.vala:625 -#, fuzzy -msgid "Can not reach" -msgstr "Impossible de lire le fichier" +#: src/Gtk/MainWindow.vala:567 src/Gtk/MainWindow.vala:601 +#: src/Gtk/MainWindow.vala:629 +msgid "DONE" +msgstr "" #: src/Gtk/ProgressWindow.vala:126 src/Gtk/TerminalWindow.vala:148 msgid "Cancel" @@ -444,39 +439,39 @@ msgstr "secondes" msgid "Max concurrent downloads" msgstr "Nombre maximum de téléchargements parallèles" -#: src/Gtk/TerminalWindow.vala:158 src/Utility/Gtk/AboutWindow.vala:294 +#: src/Gtk/TerminalWindow.vala:158 src/Utility/Gtk/AboutWindow.vala:287 msgid "Close" msgstr "Fermer" -#: src/Utility/Gtk/AboutWindow.vala:271 src/Utility/Gtk/AboutWindow.vala:288 +#: src/Utility/Gtk/AboutWindow.vala:264 src/Utility/Gtk/AboutWindow.vala:281 msgid "Credits" msgstr "Crédits" -#: src/Utility/Gtk/AboutWindow.vala:284 +#: src/Utility/Gtk/AboutWindow.vala:277 msgid "Back" msgstr "Retour" -#: src/Utility/Gtk/AboutWindow.vala:313 +#: src/Utility/Gtk/AboutWindow.vala:306 msgid "Authors" msgstr "Auteurs" -#: src/Utility/Gtk/AboutWindow.vala:321 +#: src/Utility/Gtk/AboutWindow.vala:314 msgid "Contributions" msgstr "Contributions" -#: src/Utility/Gtk/AboutWindow.vala:329 +#: src/Utility/Gtk/AboutWindow.vala:322 msgid "Artists" msgstr "Artistes" -#: src/Utility/Gtk/AboutWindow.vala:337 +#: src/Utility/Gtk/AboutWindow.vala:330 msgid "Translators" msgstr "Traducteurs" -#: src/Utility/Gtk/AboutWindow.vala:345 +#: src/Utility/Gtk/AboutWindow.vala:338 msgid "Documenters" msgstr "Documentalistes" -#: src/Utility/Gtk/AboutWindow.vala:353 +#: src/Utility/Gtk/AboutWindow.vala:346 msgid "Third Party Inclusions" msgstr "Dépendances Tierces" @@ -512,10 +507,6 @@ msgstr "Fichier copié" msgid "Failed to copy file" msgstr "Impossible de copier le fichier" -#: src/Utility/TeeJee.FileSystem.vala:157 -msgid "File not found" -msgstr "Fichier non trouvé" - #: src/Utility/TeeJee.FileSystem.vala:171 msgid "File moved" msgstr "Fichier déplacé" diff --git a/po/hr.po b/po/hr.po index 291bcd94..25e75086 100644 --- a/po/hr.po +++ b/po/hr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-04 22:34-0500\n" +"POT-Creation-Date: 2023-03-06 01:11-0500\n" "PO-Revision-Date: 2022-09-22 12:13+0200\n" "Last-Translator: gogo \n" "Language-Team: Croatian\n" @@ -13,134 +13,135 @@ msgstr "" "X-Launchpad-Export-Date: 2017-12-23 23:36+0000\n" "X-Generator: Poedit 3.0.1\n" -#: src/Common/LinuxKernel.vala:87 +#: src/Common/LinuxKernel.vala:88 msgid "Distribution" msgstr "Distribucija" -#: src/Common/LinuxKernel.vala:101 +#: src/Common/LinuxKernel.vala:103 msgid "Architecture" msgstr "Arhitektura" -#: src/Common/LinuxKernel.vala:256 -msgid "cached" -msgstr "" - -#: src/Common/LinuxKernel.vala:268 -msgid "GET" -msgstr "" - -#: src/Common/LinuxKernel.vala:296 +#: src/Common/LinuxKernel.vala:295 #, fuzzy msgid "Fetching individual kernel indexes..." msgstr "Preuzimanje sadržaja..." -#: src/Common/LinuxKernel.vala:338 +#: src/Common/LinuxKernel.vala:339 #, fuzzy msgid "Fetching main index from" msgstr "Preuzimanje sadržaja..." -#: src/Common/LinuxKernel.vala:599 +#: src/Common/LinuxKernel.vala:593 msgid "Could not find running kernel in list!" msgstr "Nemoguće je pronaći pokrenuti kernel na popisu!" -#: src/Common/LinuxKernel.vala:605 +#: src/Common/LinuxKernel.vala:599 msgid "Could not find any kernels to uninstall" msgstr "Nema pronađenih kernela za deinstaliranje" -#: src/Common/LinuxKernel.vala:614 +#: src/Common/LinuxKernel.vala:608 msgid "The following kernels will be uninstalled:" msgstr "Sljedeći kerneli će biti deinstalirani:" -#: src/Common/LinuxKernel.vala:621 +#: src/Common/LinuxKernel.vala:612 msgid "Continue ?" msgstr "Nastavi?" -#: src/Common/LinuxKernel.vala:644 src/Console/AppConsole.vala:298 +#: src/Common/LinuxKernel.vala:635 src/Console/AppConsole.vala:298 msgid "Latest update" msgstr "Najnovija nadopuna" -#: src/Common/LinuxKernel.vala:655 src/Console/AppConsole.vala:305 +#: src/Common/LinuxKernel.vala:646 src/Console/AppConsole.vala:305 msgid "Latest point update" msgstr "Najnovija ciljana nadopuna" -#: src/Common/LinuxKernel.vala:663 src/Console/AppConsole.vala:310 +#: src/Common/LinuxKernel.vala:654 src/Console/AppConsole.vala:310 #: src/Console/AppConsole.vala:365 msgid "No updates found" msgstr "Nema pronađenih nadopuna" -#: src/Common/LinuxKernel.vala:673 +#: src/Common/LinuxKernel.vala:664 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Instaliraj kernel inačice %s ? (d/n): " -#: src/Common/LinuxKernel.vala:924 +#: src/Common/LinuxKernel.vala:896 msgid "Packages Available" msgstr "Dostupni paketi" -#: src/Common/LinuxKernel.vala:932 +#: src/Common/LinuxKernel.vala:904 msgid "Packages Installed" msgstr "Instalirani paketi" -#: src/Common/LinuxKernel.vala:1011 +#: src/Common/LinuxKernel.vala:918 src/Utility/TeeJee.FileSystem.vala:157 +msgid "File not found" +msgstr "Datoteka nije pronađena" + +#: src/Common/LinuxKernel.vala:984 msgid "Available Kernels" msgstr "Dostupni kerneli" -#: src/Common/LinuxKernel.vala:1018 src/Gtk/MainWindow.vala:151 +#: src/Common/LinuxKernel.vala:991 src/Gtk/MainWindow.vala:151 msgid "Installed" msgstr "Instalirano" -#: src/Common/LinuxKernel.vala:1018 src/Gtk/MainWindow.vala:151 -#: src/Gtk/MainWindow.vala:572 src/Gtk/MainWindow.vala:586 +#: src/Common/LinuxKernel.vala:991 src/Gtk/MainWindow.vala:151 +#: src/Gtk/MainWindow.vala:523 src/Gtk/MainWindow.vala:537 msgid "Running" msgstr "Pokrenuto" -#: src/Common/LinuxKernel.vala:1055 +#: src/Common/LinuxKernel.vala:1028 msgid "Downloading" msgstr "Preuzimanje" -#: src/Common/LinuxKernel.vala:1074 +#: src/Common/LinuxKernel.vala:1047 msgid "OK" msgstr "U redu" -#: src/Common/LinuxKernel.vala:1079 +#: src/Common/LinuxKernel.vala:1050 msgid "ERROR" msgstr "GREŠKA" -#: src/Common/LinuxKernel.vala:1093 +#: src/Common/LinuxKernel.vala:1064 msgid "This kernel is already installed." msgstr "Ovaj kernel je već instaliran." -#: src/Common/LinuxKernel.vala:1129 +#: src/Common/LinuxKernel.vala:1102 #, fuzzy msgid "Uninstalling selected kernels" msgstr "Deinstaliraj određene kernele" -#: src/Common/LinuxKernel.vala:1135 +#: src/Common/LinuxKernel.vala:1108 msgid "requested" msgstr "" -#: src/Common/LinuxKernel.vala:1138 +#: src/Common/LinuxKernel.vala:1111 msgid "skipping the currently booted kernel" msgstr "" -#: src/Common/LinuxKernel.vala:1154 +#: src/Common/LinuxKernel.vala:1127 msgid "found" msgstr "" -#: src/Common/LinuxKernel.vala:1157 +#: src/Common/LinuxKernel.vala:1130 #, fuzzy msgid "No packages to un-install!" msgstr "Instalirani paketi" -#: src/Common/Main.vala:260 +#: src/Common/Main.vala:259 msgid "Called from" msgstr "Pozvano od" -#: src/Common/Main.vala:294 +#: src/Common/Main.vala:293 msgid "Notifications are disabled" msgstr "Obavijesti su onemogućene" -#: src/Common/Package.vala:134 src/Common/Package.vala:198 +#: src/Common/Main.vala:332 src/Gtk/MainWindow.vala:638 +#, fuzzy +msgid "Can not reach" +msgstr "Neuspjelo čitanje datoteke" + +#: src/Common/Package.vala:131 src/Common/Package.vala:196 #, c-format msgid "File not found: %s" msgstr "Datoteka nije pronađena: %s" @@ -304,64 +305,58 @@ msgstr "Stanje" msgid "Uninstall" msgstr "Deinstaliraj" -#: src/Gtk/MainWindow.vala:325 src/Gtk/MainWindow.vala:370 -#: src/Gtk/MainWindow.vala:616 -msgid "DONE" -msgstr "" - -#: src/Gtk/MainWindow.vala:333 +#: src/Gtk/MainWindow.vala:302 msgid "Changes" msgstr "Promjene" -#: src/Gtk/MainWindow.vala:344 +#: src/Gtk/MainWindow.vala:323 msgid "Uninstall Old" msgstr "Deinstaliraj staro" -#: src/Gtk/MainWindow.vala:345 +#: src/Gtk/MainWindow.vala:324 msgid "Uninstall kernels older than running kernel" msgstr "Deinstaliraj kernele starije od pokrenutog krenela" -#: src/Gtk/MainWindow.vala:378 +#: src/Gtk/MainWindow.vala:329 msgid "Reload" msgstr "" -#: src/Gtk/MainWindow.vala:391 src/Gtk/SettingsDialog.vala:50 +#: src/Gtk/MainWindow.vala:334 src/Gtk/SettingsDialog.vala:50 msgid "Settings" msgstr "Postavke" -#: src/Gtk/MainWindow.vala:413 +#: src/Gtk/MainWindow.vala:339 msgid "About" msgstr "O programu" -#: src/Gtk/MainWindow.vala:418 +#: src/Gtk/MainWindow.vala:344 msgid "Exit" msgstr "" -#: src/Gtk/MainWindow.vala:470 +#: src/Gtk/MainWindow.vala:412 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Alat za nadogradnju kernela Ubuntu temeljenih distribucija" -#: src/Gtk/MainWindow.vala:471 +#: src/Gtk/MainWindow.vala:413 msgid "Forked" msgstr "Forkano" -#: src/Gtk/MainWindow.vala:471 +#: src/Gtk/MainWindow.vala:413 msgid "Original" msgstr "Izvornik" -#: src/Gtk/MainWindow.vala:500 -#, fuzzy -msgid "Refreshing..." -msgstr "Osvježavanje..." +#: src/Gtk/MainWindow.vala:451 +msgid "Updating cached indexes" +msgstr "" -#: src/Gtk/MainWindow.vala:582 +#: src/Gtk/MainWindow.vala:533 msgid "available" msgstr "dostupno" -#: src/Gtk/MainWindow.vala:625 -#, fuzzy -msgid "Can not reach" -msgstr "Neuspjelo čitanje datoteke" +#: src/Gtk/MainWindow.vala:567 src/Gtk/MainWindow.vala:601 +#: src/Gtk/MainWindow.vala:629 +msgid "DONE" +msgstr "" #: src/Gtk/ProgressWindow.vala:126 src/Gtk/TerminalWindow.vala:148 msgid "Cancel" @@ -431,39 +426,39 @@ msgstr "sekunde" msgid "Max concurrent downloads" msgstr "Najviše istodobnih preuzimanja" -#: src/Gtk/TerminalWindow.vala:158 src/Utility/Gtk/AboutWindow.vala:294 +#: src/Gtk/TerminalWindow.vala:158 src/Utility/Gtk/AboutWindow.vala:287 msgid "Close" msgstr "Zatvori" -#: src/Utility/Gtk/AboutWindow.vala:271 src/Utility/Gtk/AboutWindow.vala:288 +#: src/Utility/Gtk/AboutWindow.vala:264 src/Utility/Gtk/AboutWindow.vala:281 msgid "Credits" msgstr "Zasluge" -#: src/Utility/Gtk/AboutWindow.vala:284 +#: src/Utility/Gtk/AboutWindow.vala:277 msgid "Back" msgstr "Natrag" -#: src/Utility/Gtk/AboutWindow.vala:313 +#: src/Utility/Gtk/AboutWindow.vala:306 msgid "Authors" msgstr "Autori" -#: src/Utility/Gtk/AboutWindow.vala:321 +#: src/Utility/Gtk/AboutWindow.vala:314 msgid "Contributions" msgstr "Prilozi" -#: src/Utility/Gtk/AboutWindow.vala:329 +#: src/Utility/Gtk/AboutWindow.vala:322 msgid "Artists" msgstr "Dizajneri" -#: src/Utility/Gtk/AboutWindow.vala:337 +#: src/Utility/Gtk/AboutWindow.vala:330 msgid "Translators" msgstr "Prevoditelji" -#: src/Utility/Gtk/AboutWindow.vala:345 +#: src/Utility/Gtk/AboutWindow.vala:338 msgid "Documenters" msgstr "Autori dokumentacije" -#: src/Utility/Gtk/AboutWindow.vala:353 +#: src/Utility/Gtk/AboutWindow.vala:346 msgid "Third Party Inclusions" msgstr "Uključene treće strane" @@ -499,10 +494,6 @@ msgstr "Datoteka kopirana" msgid "Failed to copy file" msgstr "Neuspjelo kopiranje datoteke" -#: src/Utility/TeeJee.FileSystem.vala:157 -msgid "File not found" -msgstr "Datoteka nije pronađena" - #: src/Utility/TeeJee.FileSystem.vala:171 msgid "File moved" msgstr "Datoteka je premještena" diff --git a/po/it.po b/po/it.po index 40fafa1c..2cdc17a7 100644 --- a/po/it.po +++ b/po/it.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline 1.0.15\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-04 22:34-0500\n" +"POT-Creation-Date: 2023-03-06 01:11-0500\n" "PO-Revision-Date: 2020-08-22 15:35+0100\n" "Last-Translator: Albano Battistella \n" "Language-Team: Italian\n" @@ -11,134 +11,135 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: src/Common/LinuxKernel.vala:87 +#: src/Common/LinuxKernel.vala:88 msgid "Distribution" msgstr "Distribuzione" -#: src/Common/LinuxKernel.vala:101 +#: src/Common/LinuxKernel.vala:103 msgid "Architecture" msgstr "Architettura" -#: src/Common/LinuxKernel.vala:256 -msgid "cached" -msgstr "" - -#: src/Common/LinuxKernel.vala:268 -msgid "GET" -msgstr "" - -#: src/Common/LinuxKernel.vala:296 +#: src/Common/LinuxKernel.vala:295 #, fuzzy msgid "Fetching individual kernel indexes..." msgstr "Recupero indice in corso..." -#: src/Common/LinuxKernel.vala:338 +#: src/Common/LinuxKernel.vala:339 #, fuzzy msgid "Fetching main index from" msgstr "Recupero indice in corso..." -#: src/Common/LinuxKernel.vala:599 +#: src/Common/LinuxKernel.vala:593 msgid "Could not find running kernel in list!" msgstr "Impossibile trovare il kernel in esecuzione nell'elenco!" -#: src/Common/LinuxKernel.vala:605 +#: src/Common/LinuxKernel.vala:599 msgid "Could not find any kernels to uninstall" msgstr "Impossibile trovare alcun kernel da rimuovere" -#: src/Common/LinuxKernel.vala:614 +#: src/Common/LinuxKernel.vala:608 msgid "The following kernels will be uninstalled:" msgstr "I seguenti kernel verranno rimossi:" -#: src/Common/LinuxKernel.vala:621 +#: src/Common/LinuxKernel.vala:612 msgid "Continue ?" msgstr "Continuare ?" -#: src/Common/LinuxKernel.vala:644 src/Console/AppConsole.vala:298 +#: src/Common/LinuxKernel.vala:635 src/Console/AppConsole.vala:298 msgid "Latest update" msgstr "Ultimo aggiornamento" -#: src/Common/LinuxKernel.vala:655 src/Console/AppConsole.vala:305 +#: src/Common/LinuxKernel.vala:646 src/Console/AppConsole.vala:305 msgid "Latest point update" msgstr "Ultimo aggiornamento del punto" -#: src/Common/LinuxKernel.vala:663 src/Console/AppConsole.vala:310 +#: src/Common/LinuxKernel.vala:654 src/Console/AppConsole.vala:310 #: src/Console/AppConsole.vala:365 msgid "No updates found" msgstr "Nessun aggiornamento trovato" -#: src/Common/LinuxKernel.vala:673 +#: src/Common/LinuxKernel.vala:664 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Installare la versione del kernel %s ? (y/n): " -#: src/Common/LinuxKernel.vala:924 +#: src/Common/LinuxKernel.vala:896 msgid "Packages Available" msgstr "Pacchetti disponibili" -#: src/Common/LinuxKernel.vala:932 +#: src/Common/LinuxKernel.vala:904 msgid "Packages Installed" msgstr "Pacchetti installati" -#: src/Common/LinuxKernel.vala:1011 +#: src/Common/LinuxKernel.vala:918 src/Utility/TeeJee.FileSystem.vala:157 +msgid "File not found" +msgstr "File non trovato" + +#: src/Common/LinuxKernel.vala:984 msgid "Available Kernels" msgstr "Kernel disponibili" -#: src/Common/LinuxKernel.vala:1018 src/Gtk/MainWindow.vala:151 +#: src/Common/LinuxKernel.vala:991 src/Gtk/MainWindow.vala:151 msgid "Installed" msgstr "Installato" -#: src/Common/LinuxKernel.vala:1018 src/Gtk/MainWindow.vala:151 -#: src/Gtk/MainWindow.vala:572 src/Gtk/MainWindow.vala:586 +#: src/Common/LinuxKernel.vala:991 src/Gtk/MainWindow.vala:151 +#: src/Gtk/MainWindow.vala:523 src/Gtk/MainWindow.vala:537 msgid "Running" msgstr "In esecuzione" -#: src/Common/LinuxKernel.vala:1055 +#: src/Common/LinuxKernel.vala:1028 msgid "Downloading" msgstr "Download in corso" -#: src/Common/LinuxKernel.vala:1074 +#: src/Common/LinuxKernel.vala:1047 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:1079 +#: src/Common/LinuxKernel.vala:1050 msgid "ERROR" msgstr "ERRORE" -#: src/Common/LinuxKernel.vala:1093 +#: src/Common/LinuxKernel.vala:1064 msgid "This kernel is already installed." msgstr "Questo kernel è già installato" -#: src/Common/LinuxKernel.vala:1129 +#: src/Common/LinuxKernel.vala:1102 #, fuzzy msgid "Uninstalling selected kernels" msgstr "Disinstalla i kernel specificati" -#: src/Common/LinuxKernel.vala:1135 +#: src/Common/LinuxKernel.vala:1108 msgid "requested" msgstr "" -#: src/Common/LinuxKernel.vala:1138 +#: src/Common/LinuxKernel.vala:1111 msgid "skipping the currently booted kernel" msgstr "" -#: src/Common/LinuxKernel.vala:1154 +#: src/Common/LinuxKernel.vala:1127 msgid "found" msgstr "" -#: src/Common/LinuxKernel.vala:1157 +#: src/Common/LinuxKernel.vala:1130 #, fuzzy msgid "No packages to un-install!" msgstr "Pacchetti installati" -#: src/Common/Main.vala:260 +#: src/Common/Main.vala:259 msgid "Called from" msgstr "Chiamata da" -#: src/Common/Main.vala:294 +#: src/Common/Main.vala:293 msgid "Notifications are disabled" msgstr "Le notifiche sono disabilitate" -#: src/Common/Package.vala:134 src/Common/Package.vala:198 +#: src/Common/Main.vala:332 src/Gtk/MainWindow.vala:638 +#, fuzzy +msgid "Can not reach" +msgstr "Impossibile leggere il file" + +#: src/Common/Package.vala:131 src/Common/Package.vala:196 #, c-format msgid "File not found: %s" msgstr "File non trovato: %s" @@ -305,64 +306,58 @@ msgstr "Stato" msgid "Uninstall" msgstr "Disinstalla" -#: src/Gtk/MainWindow.vala:325 src/Gtk/MainWindow.vala:370 -#: src/Gtk/MainWindow.vala:616 -msgid "DONE" -msgstr "" - -#: src/Gtk/MainWindow.vala:333 +#: src/Gtk/MainWindow.vala:302 msgid "Changes" msgstr "Modifiche" -#: src/Gtk/MainWindow.vala:344 +#: src/Gtk/MainWindow.vala:323 msgid "Uninstall Old" msgstr "Disinstalla i vecchi" -#: src/Gtk/MainWindow.vala:345 +#: src/Gtk/MainWindow.vala:324 msgid "Uninstall kernels older than running kernel" msgstr "Rimuovere i kernel installati più vecchi del kernel in esecuzione" -#: src/Gtk/MainWindow.vala:378 +#: src/Gtk/MainWindow.vala:329 msgid "Reload" msgstr "" -#: src/Gtk/MainWindow.vala:391 src/Gtk/SettingsDialog.vala:50 +#: src/Gtk/MainWindow.vala:334 src/Gtk/SettingsDialog.vala:50 msgid "Settings" msgstr "Impostazioni" -#: src/Gtk/MainWindow.vala:413 +#: src/Gtk/MainWindow.vala:339 msgid "About" msgstr "Informazioni" -#: src/Gtk/MainWindow.vala:418 +#: src/Gtk/MainWindow.vala:344 msgid "Exit" msgstr "" -#: src/Gtk/MainWindow.vala:470 +#: src/Gtk/MainWindow.vala:412 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Utilità di aggiornamento del kernel per distribuzioni basate su Ubuntu" -#: src/Gtk/MainWindow.vala:471 +#: src/Gtk/MainWindow.vala:413 msgid "Forked" msgstr "Forked" -#: src/Gtk/MainWindow.vala:471 +#: src/Gtk/MainWindow.vala:413 msgid "Original" msgstr "Originale" -#: src/Gtk/MainWindow.vala:500 -#, fuzzy -msgid "Refreshing..." -msgstr "Aggiornamento..." +#: src/Gtk/MainWindow.vala:451 +msgid "Updating cached indexes" +msgstr "" -#: src/Gtk/MainWindow.vala:582 +#: src/Gtk/MainWindow.vala:533 msgid "available" msgstr "disponibile" -#: src/Gtk/MainWindow.vala:625 -#, fuzzy -msgid "Can not reach" -msgstr "Impossibile leggere il file" +#: src/Gtk/MainWindow.vala:567 src/Gtk/MainWindow.vala:601 +#: src/Gtk/MainWindow.vala:629 +msgid "DONE" +msgstr "" #: src/Gtk/ProgressWindow.vala:126 src/Gtk/TerminalWindow.vala:148 msgid "Cancel" @@ -432,39 +427,39 @@ msgstr "secondi" msgid "Max concurrent downloads" msgstr "Numero massimo di download simultanei" -#: src/Gtk/TerminalWindow.vala:158 src/Utility/Gtk/AboutWindow.vala:294 +#: src/Gtk/TerminalWindow.vala:158 src/Utility/Gtk/AboutWindow.vala:287 msgid "Close" msgstr "Chiudi" -#: src/Utility/Gtk/AboutWindow.vala:271 src/Utility/Gtk/AboutWindow.vala:288 +#: src/Utility/Gtk/AboutWindow.vala:264 src/Utility/Gtk/AboutWindow.vala:281 msgid "Credits" msgstr "Crediti" -#: src/Utility/Gtk/AboutWindow.vala:284 +#: src/Utility/Gtk/AboutWindow.vala:277 msgid "Back" msgstr "Indietro" -#: src/Utility/Gtk/AboutWindow.vala:313 +#: src/Utility/Gtk/AboutWindow.vala:306 msgid "Authors" msgstr "Autori" -#: src/Utility/Gtk/AboutWindow.vala:321 +#: src/Utility/Gtk/AboutWindow.vala:314 msgid "Contributions" msgstr "Contributori" -#: src/Utility/Gtk/AboutWindow.vala:329 +#: src/Utility/Gtk/AboutWindow.vala:322 msgid "Artists" msgstr "Artisti" -#: src/Utility/Gtk/AboutWindow.vala:337 +#: src/Utility/Gtk/AboutWindow.vala:330 msgid "Translators" msgstr "Albano Battistella, Demetrio Mendozzi" -#: src/Utility/Gtk/AboutWindow.vala:345 +#: src/Utility/Gtk/AboutWindow.vala:338 msgid "Documenters" msgstr "Documentatori" -#: src/Utility/Gtk/AboutWindow.vala:353 +#: src/Utility/Gtk/AboutWindow.vala:346 msgid "Third Party Inclusions" msgstr "Inclusioni di terze parti" @@ -500,10 +495,6 @@ msgstr "File copiato" msgid "Failed to copy file" msgstr "Impossibile copiare il file" -#: src/Utility/TeeJee.FileSystem.vala:157 -msgid "File not found" -msgstr "File non trovato" - #: src/Utility/TeeJee.FileSystem.vala:171 msgid "File moved" msgstr "File spostato" diff --git a/po/ko.po b/po/ko.po index 6ee8d4d7..73a0b96a 100644 --- a/po/ko.po +++ b/po/ko.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline 1.0.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-04 22:34-0500\n" +"POT-Creation-Date: 2023-03-06 01:11-0500\n" "PO-Revision-Date: 2022-09-28 11:48+0900\n" "Last-Translator: Kevin Kim \n" "Language-Team: Korean\n" @@ -13,134 +13,135 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Poedit 3.0.1\n" -#: src/Common/LinuxKernel.vala:87 +#: src/Common/LinuxKernel.vala:88 msgid "Distribution" msgstr "배포판" -#: src/Common/LinuxKernel.vala:101 +#: src/Common/LinuxKernel.vala:103 msgid "Architecture" msgstr "아키텍처" -#: src/Common/LinuxKernel.vala:256 -msgid "cached" -msgstr "" - -#: src/Common/LinuxKernel.vala:268 -msgid "GET" -msgstr "" - -#: src/Common/LinuxKernel.vala:296 +#: src/Common/LinuxKernel.vala:295 #, fuzzy msgid "Fetching individual kernel indexes..." msgstr "목록 가져오기..." -#: src/Common/LinuxKernel.vala:338 +#: src/Common/LinuxKernel.vala:339 #, fuzzy msgid "Fetching main index from" msgstr "목록 가져오기..." -#: src/Common/LinuxKernel.vala:599 +#: src/Common/LinuxKernel.vala:593 msgid "Could not find running kernel in list!" msgstr "목록에서 사용중인 커널을 찾을 수 없습니다!" -#: src/Common/LinuxKernel.vala:605 +#: src/Common/LinuxKernel.vala:599 msgid "Could not find any kernels to uninstall" msgstr "삭제할 커널을 찾을 수 없습니다" -#: src/Common/LinuxKernel.vala:614 +#: src/Common/LinuxKernel.vala:608 msgid "The following kernels will be uninstalled:" msgstr "아래 커널이 삭제됩니다:" -#: src/Common/LinuxKernel.vala:621 +#: src/Common/LinuxKernel.vala:612 msgid "Continue ?" msgstr "계속하시겠습니까?" -#: src/Common/LinuxKernel.vala:644 src/Console/AppConsole.vala:298 +#: src/Common/LinuxKernel.vala:635 src/Console/AppConsole.vala:298 msgid "Latest update" msgstr "최신 업데이트" -#: src/Common/LinuxKernel.vala:655 src/Console/AppConsole.vala:305 +#: src/Common/LinuxKernel.vala:646 src/Console/AppConsole.vala:305 msgid "Latest point update" msgstr "최신 포인트 업데이트" -#: src/Common/LinuxKernel.vala:663 src/Console/AppConsole.vala:310 +#: src/Common/LinuxKernel.vala:654 src/Console/AppConsole.vala:310 #: src/Console/AppConsole.vala:365 msgid "No updates found" msgstr "업데이트를 찾을 수 없습니다" -#: src/Common/LinuxKernel.vala:673 +#: src/Common/LinuxKernel.vala:664 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "커널 %s 버전을 설치하시겠습니까? (y/n): " -#: src/Common/LinuxKernel.vala:924 +#: src/Common/LinuxKernel.vala:896 msgid "Packages Available" msgstr "설치 가능한 패키지" -#: src/Common/LinuxKernel.vala:932 +#: src/Common/LinuxKernel.vala:904 msgid "Packages Installed" msgstr "설치된 패키지" -#: src/Common/LinuxKernel.vala:1011 +#: src/Common/LinuxKernel.vala:918 src/Utility/TeeJee.FileSystem.vala:157 +msgid "File not found" +msgstr "파일을 찾을 수 없습니다" + +#: src/Common/LinuxKernel.vala:984 msgid "Available Kernels" msgstr "설치 가능한 커널" -#: src/Common/LinuxKernel.vala:1018 src/Gtk/MainWindow.vala:151 +#: src/Common/LinuxKernel.vala:991 src/Gtk/MainWindow.vala:151 msgid "Installed" msgstr "설치 됨" -#: src/Common/LinuxKernel.vala:1018 src/Gtk/MainWindow.vala:151 -#: src/Gtk/MainWindow.vala:572 src/Gtk/MainWindow.vala:586 +#: src/Common/LinuxKernel.vala:991 src/Gtk/MainWindow.vala:151 +#: src/Gtk/MainWindow.vala:523 src/Gtk/MainWindow.vala:537 msgid "Running" msgstr "구동 중" -#: src/Common/LinuxKernel.vala:1055 +#: src/Common/LinuxKernel.vala:1028 msgid "Downloading" msgstr "다운로드 중" -#: src/Common/LinuxKernel.vala:1074 +#: src/Common/LinuxKernel.vala:1047 msgid "OK" msgstr "확인" -#: src/Common/LinuxKernel.vala:1079 +#: src/Common/LinuxKernel.vala:1050 msgid "ERROR" msgstr "오류" -#: src/Common/LinuxKernel.vala:1093 +#: src/Common/LinuxKernel.vala:1064 msgid "This kernel is already installed." msgstr "이 커널은 이미 설치되었습니다." -#: src/Common/LinuxKernel.vala:1129 +#: src/Common/LinuxKernel.vala:1102 #, fuzzy msgid "Uninstalling selected kernels" msgstr "지정한 커널 삭제" -#: src/Common/LinuxKernel.vala:1135 +#: src/Common/LinuxKernel.vala:1108 msgid "requested" msgstr "" -#: src/Common/LinuxKernel.vala:1138 +#: src/Common/LinuxKernel.vala:1111 msgid "skipping the currently booted kernel" msgstr "" -#: src/Common/LinuxKernel.vala:1154 +#: src/Common/LinuxKernel.vala:1127 msgid "found" msgstr "" -#: src/Common/LinuxKernel.vala:1157 +#: src/Common/LinuxKernel.vala:1130 #, fuzzy msgid "No packages to un-install!" msgstr "설치된 패키지" -#: src/Common/Main.vala:260 +#: src/Common/Main.vala:259 msgid "Called from" msgstr "에서 호출" -#: src/Common/Main.vala:294 +#: src/Common/Main.vala:293 msgid "Notifications are disabled" msgstr "알림이 비활성화 되었습니다" -#: src/Common/Package.vala:134 src/Common/Package.vala:198 +#: src/Common/Main.vala:332 src/Gtk/MainWindow.vala:638 +#, fuzzy +msgid "Can not reach" +msgstr "파일 읽기를 실패했습니다" + +#: src/Common/Package.vala:131 src/Common/Package.vala:196 #, c-format msgid "File not found: %s" msgstr "%s 파일을 찾을 수 없습니다" @@ -303,64 +304,58 @@ msgstr "상태" msgid "Uninstall" msgstr "삭제" -#: src/Gtk/MainWindow.vala:325 src/Gtk/MainWindow.vala:370 -#: src/Gtk/MainWindow.vala:616 -msgid "DONE" -msgstr "" - -#: src/Gtk/MainWindow.vala:333 +#: src/Gtk/MainWindow.vala:302 msgid "Changes" msgstr "변경사항" -#: src/Gtk/MainWindow.vala:344 +#: src/Gtk/MainWindow.vala:323 msgid "Uninstall Old" msgstr "오래된 커널 제거" -#: src/Gtk/MainWindow.vala:345 +#: src/Gtk/MainWindow.vala:324 msgid "Uninstall kernels older than running kernel" msgstr "현재 사용 중인 커널보다 이전 버전의 커널을 제거" -#: src/Gtk/MainWindow.vala:378 +#: src/Gtk/MainWindow.vala:329 msgid "Reload" msgstr "" -#: src/Gtk/MainWindow.vala:391 src/Gtk/SettingsDialog.vala:50 +#: src/Gtk/MainWindow.vala:334 src/Gtk/SettingsDialog.vala:50 msgid "Settings" msgstr "설정" -#: src/Gtk/MainWindow.vala:413 +#: src/Gtk/MainWindow.vala:339 msgid "About" msgstr "정보" -#: src/Gtk/MainWindow.vala:418 +#: src/Gtk/MainWindow.vala:344 msgid "Exit" msgstr "" -#: src/Gtk/MainWindow.vala:470 +#: src/Gtk/MainWindow.vala:412 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "우분투 기반 배포판의 커널 업그레이드 도구" -#: src/Gtk/MainWindow.vala:471 +#: src/Gtk/MainWindow.vala:413 msgid "Forked" msgstr "" -#: src/Gtk/MainWindow.vala:471 +#: src/Gtk/MainWindow.vala:413 msgid "Original" msgstr "" -#: src/Gtk/MainWindow.vala:500 -#, fuzzy -msgid "Refreshing..." -msgstr "새로 고침..." +#: src/Gtk/MainWindow.vala:451 +msgid "Updating cached indexes" +msgstr "" -#: src/Gtk/MainWindow.vala:582 +#: src/Gtk/MainWindow.vala:533 msgid "available" msgstr "사용가능" -#: src/Gtk/MainWindow.vala:625 -#, fuzzy -msgid "Can not reach" -msgstr "파일 읽기를 실패했습니다" +#: src/Gtk/MainWindow.vala:567 src/Gtk/MainWindow.vala:601 +#: src/Gtk/MainWindow.vala:629 +msgid "DONE" +msgstr "" #: src/Gtk/ProgressWindow.vala:126 src/Gtk/TerminalWindow.vala:148 msgid "Cancel" @@ -430,39 +425,39 @@ msgstr "초" msgid "Max concurrent downloads" msgstr "동시 다운로드 최대 수" -#: src/Gtk/TerminalWindow.vala:158 src/Utility/Gtk/AboutWindow.vala:294 +#: src/Gtk/TerminalWindow.vala:158 src/Utility/Gtk/AboutWindow.vala:287 msgid "Close" msgstr "닫기" -#: src/Utility/Gtk/AboutWindow.vala:271 src/Utility/Gtk/AboutWindow.vala:288 +#: src/Utility/Gtk/AboutWindow.vala:264 src/Utility/Gtk/AboutWindow.vala:281 msgid "Credits" msgstr "제작자" -#: src/Utility/Gtk/AboutWindow.vala:284 +#: src/Utility/Gtk/AboutWindow.vala:277 msgid "Back" msgstr "뒤로" -#: src/Utility/Gtk/AboutWindow.vala:313 +#: src/Utility/Gtk/AboutWindow.vala:306 msgid "Authors" msgstr "개발자" -#: src/Utility/Gtk/AboutWindow.vala:321 +#: src/Utility/Gtk/AboutWindow.vala:314 msgid "Contributions" msgstr "기여자" -#: src/Utility/Gtk/AboutWindow.vala:329 +#: src/Utility/Gtk/AboutWindow.vala:322 msgid "Artists" msgstr "아티스트" -#: src/Utility/Gtk/AboutWindow.vala:337 +#: src/Utility/Gtk/AboutWindow.vala:330 msgid "Translators" msgstr "번역자" -#: src/Utility/Gtk/AboutWindow.vala:345 +#: src/Utility/Gtk/AboutWindow.vala:338 msgid "Documenters" msgstr "문서작성" -#: src/Utility/Gtk/AboutWindow.vala:353 +#: src/Utility/Gtk/AboutWindow.vala:346 msgid "Third Party Inclusions" msgstr "서드파티 포함" @@ -498,10 +493,6 @@ msgstr "파일을 복사했습니다" msgid "Failed to copy file" msgstr "파일 복사를 실패했습니다" -#: src/Utility/TeeJee.FileSystem.vala:157 -msgid "File not found" -msgstr "파일을 찾을 수 없습니다" - #: src/Utility/TeeJee.FileSystem.vala:171 msgid "File moved" msgstr "파일이 이동되었습니다" diff --git a/po/messages.pot b/po/messages.pot index 166c1b92..e79dd344 100644 --- a/po/messages.pot +++ b/po/messages.pot @@ -6,9 +6,9 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: mainline 1.0.23\n" +"Project-Id-Version: mainline 1.1.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-04 22:34-0500\n" +"POT-Creation-Date: 2023-03-06 01:15-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,130 +17,130 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" -#: src/Common/LinuxKernel.vala:87 +#: src/Common/LinuxKernel.vala:88 msgid "Distribution" msgstr "" -#: src/Common/LinuxKernel.vala:101 +#: src/Common/LinuxKernel.vala:103 msgid "Architecture" msgstr "" -#: src/Common/LinuxKernel.vala:256 -msgid "cached" -msgstr "" - -#: src/Common/LinuxKernel.vala:268 -msgid "GET" -msgstr "" - -#: src/Common/LinuxKernel.vala:296 +#: src/Common/LinuxKernel.vala:295 msgid "Fetching individual kernel indexes..." msgstr "" -#: src/Common/LinuxKernel.vala:338 +#: src/Common/LinuxKernel.vala:339 msgid "Fetching main index from" msgstr "" -#: src/Common/LinuxKernel.vala:599 +#: src/Common/LinuxKernel.vala:593 msgid "Could not find running kernel in list!" msgstr "" -#: src/Common/LinuxKernel.vala:605 +#: src/Common/LinuxKernel.vala:599 msgid "Could not find any kernels to uninstall" msgstr "" -#: src/Common/LinuxKernel.vala:614 +#: src/Common/LinuxKernel.vala:608 msgid "The following kernels will be uninstalled:" msgstr "" -#: src/Common/LinuxKernel.vala:621 +#: src/Common/LinuxKernel.vala:612 msgid "Continue ?" msgstr "" -#: src/Common/LinuxKernel.vala:644 src/Console/AppConsole.vala:298 +#: src/Common/LinuxKernel.vala:635 src/Console/AppConsole.vala:298 msgid "Latest update" msgstr "" -#: src/Common/LinuxKernel.vala:655 src/Console/AppConsole.vala:305 +#: src/Common/LinuxKernel.vala:646 src/Console/AppConsole.vala:305 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:663 src/Console/AppConsole.vala:310 +#: src/Common/LinuxKernel.vala:654 src/Console/AppConsole.vala:310 #: src/Console/AppConsole.vala:365 msgid "No updates found" msgstr "" -#: src/Common/LinuxKernel.vala:673 +#: src/Common/LinuxKernel.vala:664 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "" -#: src/Common/LinuxKernel.vala:924 +#: src/Common/LinuxKernel.vala:896 msgid "Packages Available" msgstr "" -#: src/Common/LinuxKernel.vala:932 +#: src/Common/LinuxKernel.vala:904 msgid "Packages Installed" msgstr "" -#: src/Common/LinuxKernel.vala:1011 +#: src/Common/LinuxKernel.vala:918 src/Utility/TeeJee.FileSystem.vala:157 +msgid "File not found" +msgstr "" + +#: src/Common/LinuxKernel.vala:984 msgid "Available Kernels" msgstr "" -#: src/Common/LinuxKernel.vala:1018 src/Gtk/MainWindow.vala:151 +#: src/Common/LinuxKernel.vala:991 src/Gtk/MainWindow.vala:151 msgid "Installed" msgstr "" -#: src/Common/LinuxKernel.vala:1018 src/Gtk/MainWindow.vala:151 -#: src/Gtk/MainWindow.vala:572 src/Gtk/MainWindow.vala:586 +#: src/Common/LinuxKernel.vala:991 src/Gtk/MainWindow.vala:151 +#: src/Gtk/MainWindow.vala:523 src/Gtk/MainWindow.vala:537 msgid "Running" msgstr "" -#: src/Common/LinuxKernel.vala:1055 +#: src/Common/LinuxKernel.vala:1028 msgid "Downloading" msgstr "" -#: src/Common/LinuxKernel.vala:1074 +#: src/Common/LinuxKernel.vala:1047 msgid "OK" msgstr "" -#: src/Common/LinuxKernel.vala:1079 +#: src/Common/LinuxKernel.vala:1050 msgid "ERROR" msgstr "" -#: src/Common/LinuxKernel.vala:1093 +#: src/Common/LinuxKernel.vala:1064 msgid "This kernel is already installed." msgstr "" -#: src/Common/LinuxKernel.vala:1129 +#: src/Common/LinuxKernel.vala:1102 msgid "Uninstalling selected kernels" msgstr "" -#: src/Common/LinuxKernel.vala:1135 +#: src/Common/LinuxKernel.vala:1108 msgid "requested" msgstr "" -#: src/Common/LinuxKernel.vala:1138 +#: src/Common/LinuxKernel.vala:1111 msgid "skipping the currently booted kernel" msgstr "" -#: src/Common/LinuxKernel.vala:1154 +#: src/Common/LinuxKernel.vala:1127 msgid "found" msgstr "" -#: src/Common/LinuxKernel.vala:1157 +#: src/Common/LinuxKernel.vala:1130 msgid "No packages to un-install!" msgstr "" -#: src/Common/Main.vala:260 +#: src/Common/Main.vala:259 msgid "Called from" msgstr "" -#: src/Common/Main.vala:294 +#: src/Common/Main.vala:293 msgid "Notifications are disabled" msgstr "" -#: src/Common/Package.vala:134 src/Common/Package.vala:198 +#: src/Common/Main.vala:332 src/Gtk/MainWindow.vala:638 +msgid "Can not reach" +msgstr "" + +#: src/Common/Package.vala:131 src/Common/Package.vala:196 #, c-format msgid "File not found: %s" msgstr "" @@ -301,61 +301,57 @@ msgstr "" msgid "Uninstall" msgstr "" -#: src/Gtk/MainWindow.vala:325 src/Gtk/MainWindow.vala:370 -#: src/Gtk/MainWindow.vala:616 -msgid "DONE" -msgstr "" - -#: src/Gtk/MainWindow.vala:333 +#: src/Gtk/MainWindow.vala:302 msgid "Changes" msgstr "" -#: src/Gtk/MainWindow.vala:344 +#: src/Gtk/MainWindow.vala:323 msgid "Uninstall Old" msgstr "" -#: src/Gtk/MainWindow.vala:345 +#: src/Gtk/MainWindow.vala:324 msgid "Uninstall kernels older than running kernel" msgstr "" -#: src/Gtk/MainWindow.vala:378 +#: src/Gtk/MainWindow.vala:329 msgid "Reload" msgstr "" -#: src/Gtk/MainWindow.vala:391 src/Gtk/SettingsDialog.vala:50 +#: src/Gtk/MainWindow.vala:334 src/Gtk/SettingsDialog.vala:50 msgid "Settings" msgstr "" -#: src/Gtk/MainWindow.vala:413 +#: src/Gtk/MainWindow.vala:339 msgid "About" msgstr "" -#: src/Gtk/MainWindow.vala:418 +#: src/Gtk/MainWindow.vala:344 msgid "Exit" msgstr "" -#: src/Gtk/MainWindow.vala:470 +#: src/Gtk/MainWindow.vala:412 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "" -#: src/Gtk/MainWindow.vala:471 +#: src/Gtk/MainWindow.vala:413 msgid "Forked" msgstr "" -#: src/Gtk/MainWindow.vala:471 +#: src/Gtk/MainWindow.vala:413 msgid "Original" msgstr "" -#: src/Gtk/MainWindow.vala:500 -msgid "Refreshing..." +#: src/Gtk/MainWindow.vala:451 +msgid "Updating cached indexes" msgstr "" -#: src/Gtk/MainWindow.vala:582 +#: src/Gtk/MainWindow.vala:533 msgid "available" msgstr "" -#: src/Gtk/MainWindow.vala:625 -msgid "Can not reach" +#: src/Gtk/MainWindow.vala:567 src/Gtk/MainWindow.vala:601 +#: src/Gtk/MainWindow.vala:629 +msgid "DONE" msgstr "" #: src/Gtk/ProgressWindow.vala:126 src/Gtk/TerminalWindow.vala:148 @@ -426,39 +422,39 @@ msgstr "" msgid "Max concurrent downloads" msgstr "" -#: src/Gtk/TerminalWindow.vala:158 src/Utility/Gtk/AboutWindow.vala:294 +#: src/Gtk/TerminalWindow.vala:158 src/Utility/Gtk/AboutWindow.vala:287 msgid "Close" msgstr "" -#: src/Utility/Gtk/AboutWindow.vala:271 src/Utility/Gtk/AboutWindow.vala:288 +#: src/Utility/Gtk/AboutWindow.vala:264 src/Utility/Gtk/AboutWindow.vala:281 msgid "Credits" msgstr "" -#: src/Utility/Gtk/AboutWindow.vala:284 +#: src/Utility/Gtk/AboutWindow.vala:277 msgid "Back" msgstr "" -#: src/Utility/Gtk/AboutWindow.vala:313 +#: src/Utility/Gtk/AboutWindow.vala:306 msgid "Authors" msgstr "" -#: src/Utility/Gtk/AboutWindow.vala:321 +#: src/Utility/Gtk/AboutWindow.vala:314 msgid "Contributions" msgstr "" -#: src/Utility/Gtk/AboutWindow.vala:329 +#: src/Utility/Gtk/AboutWindow.vala:322 msgid "Artists" msgstr "" -#: src/Utility/Gtk/AboutWindow.vala:337 +#: src/Utility/Gtk/AboutWindow.vala:330 msgid "Translators" msgstr "" -#: src/Utility/Gtk/AboutWindow.vala:345 +#: src/Utility/Gtk/AboutWindow.vala:338 msgid "Documenters" msgstr "" -#: src/Utility/Gtk/AboutWindow.vala:353 +#: src/Utility/Gtk/AboutWindow.vala:346 msgid "Third Party Inclusions" msgstr "" @@ -494,10 +490,6 @@ msgstr "" msgid "Failed to copy file" msgstr "" -#: src/Utility/TeeJee.FileSystem.vala:157 -msgid "File not found" -msgstr "" - #: src/Utility/TeeJee.FileSystem.vala:171 msgid "File moved" msgstr "" diff --git a/po/nl.po b/po/nl.po index ce49b3ce..39f2f3f6 100644 --- a/po/nl.po +++ b/po/nl.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-04 22:34-0500\n" +"POT-Creation-Date: 2023-03-06 01:11-0500\n" "PO-Revision-Date: 2020-08-23 13:55+0200\n" "Last-Translator: Heimen Stoffels \n" "Language-Team: Dutch (Netherlands)\n" @@ -13,136 +13,137 @@ msgstr "" "X-Generator: Poedit 2.4.1\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: src/Common/LinuxKernel.vala:87 +#: src/Common/LinuxKernel.vala:88 msgid "Distribution" msgstr "Distributie" -#: src/Common/LinuxKernel.vala:101 +#: src/Common/LinuxKernel.vala:103 msgid "Architecture" msgstr "Architectuur" -#: src/Common/LinuxKernel.vala:256 -msgid "cached" -msgstr "" - -#: src/Common/LinuxKernel.vala:268 -msgid "GET" -msgstr "" - -#: src/Common/LinuxKernel.vala:296 +#: src/Common/LinuxKernel.vala:295 #, fuzzy msgid "Fetching individual kernel indexes..." msgstr "Bezig met ophalen van index..." -#: src/Common/LinuxKernel.vala:338 +#: src/Common/LinuxKernel.vala:339 #, fuzzy msgid "Fetching main index from" msgstr "Bezig met ophalen van index..." -#: src/Common/LinuxKernel.vala:599 +#: src/Common/LinuxKernel.vala:593 msgid "Could not find running kernel in list!" msgstr "De in gebruik zijnde kernel staat niet op de lijst!" -#: src/Common/LinuxKernel.vala:605 +#: src/Common/LinuxKernel.vala:599 #, fuzzy msgid "Could not find any kernels to uninstall" msgstr "Er zijn geen te verwijderen kernels" -#: src/Common/LinuxKernel.vala:614 +#: src/Common/LinuxKernel.vala:608 #, fuzzy msgid "The following kernels will be uninstalled:" msgstr "De volgende kernels worden verwijderd:" -#: src/Common/LinuxKernel.vala:621 +#: src/Common/LinuxKernel.vala:612 msgid "Continue ?" msgstr "Wil je doorgaan?" -#: src/Common/LinuxKernel.vala:644 src/Console/AppConsole.vala:298 +#: src/Common/LinuxKernel.vala:635 src/Console/AppConsole.vala:298 msgid "Latest update" msgstr "Recentste update" -#: src/Common/LinuxKernel.vala:655 src/Console/AppConsole.vala:305 +#: src/Common/LinuxKernel.vala:646 src/Console/AppConsole.vala:305 msgid "Latest point update" msgstr "Recentste puntupdate" -#: src/Common/LinuxKernel.vala:663 src/Console/AppConsole.vala:310 +#: src/Common/LinuxKernel.vala:654 src/Console/AppConsole.vala:310 #: src/Console/AppConsole.vala:365 msgid "No updates found" msgstr "Geen updates gevonden" -#: src/Common/LinuxKernel.vala:673 +#: src/Common/LinuxKernel.vala:664 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Wil je versie %s installeren? (j/n): " -#: src/Common/LinuxKernel.vala:924 +#: src/Common/LinuxKernel.vala:896 msgid "Packages Available" msgstr "Beschikbare pakketten" -#: src/Common/LinuxKernel.vala:932 +#: src/Common/LinuxKernel.vala:904 msgid "Packages Installed" msgstr "Geïnstalleerde pakketten" -#: src/Common/LinuxKernel.vala:1011 +#: src/Common/LinuxKernel.vala:918 src/Utility/TeeJee.FileSystem.vala:157 +msgid "File not found" +msgstr "Het bestand is niet gevonden" + +#: src/Common/LinuxKernel.vala:984 msgid "Available Kernels" msgstr "Beschikbare kernels" -#: src/Common/LinuxKernel.vala:1018 src/Gtk/MainWindow.vala:151 +#: src/Common/LinuxKernel.vala:991 src/Gtk/MainWindow.vala:151 msgid "Installed" msgstr "Geïnstalleerd" -#: src/Common/LinuxKernel.vala:1018 src/Gtk/MainWindow.vala:151 -#: src/Gtk/MainWindow.vala:572 src/Gtk/MainWindow.vala:586 +#: src/Common/LinuxKernel.vala:991 src/Gtk/MainWindow.vala:151 +#: src/Gtk/MainWindow.vala:523 src/Gtk/MainWindow.vala:537 msgid "Running" msgstr "In gebruik" -#: src/Common/LinuxKernel.vala:1055 +#: src/Common/LinuxKernel.vala:1028 msgid "Downloading" msgstr "Bezig met downloaden" -#: src/Common/LinuxKernel.vala:1074 +#: src/Common/LinuxKernel.vala:1047 msgid "OK" msgstr "Oké" -#: src/Common/LinuxKernel.vala:1079 +#: src/Common/LinuxKernel.vala:1050 msgid "ERROR" msgstr "FOUT" -#: src/Common/LinuxKernel.vala:1093 +#: src/Common/LinuxKernel.vala:1064 msgid "This kernel is already installed." msgstr "Deze kernel is al geïnstalleerd." -#: src/Common/LinuxKernel.vala:1129 +#: src/Common/LinuxKernel.vala:1102 #, fuzzy msgid "Uninstalling selected kernels" msgstr "Opgegeven kernels deïnstalleren" -#: src/Common/LinuxKernel.vala:1135 +#: src/Common/LinuxKernel.vala:1108 msgid "requested" msgstr "" -#: src/Common/LinuxKernel.vala:1138 +#: src/Common/LinuxKernel.vala:1111 msgid "skipping the currently booted kernel" msgstr "" -#: src/Common/LinuxKernel.vala:1154 +#: src/Common/LinuxKernel.vala:1127 msgid "found" msgstr "" -#: src/Common/LinuxKernel.vala:1157 +#: src/Common/LinuxKernel.vala:1130 #, fuzzy msgid "No packages to un-install!" msgstr "Geïnstalleerde pakketten" -#: src/Common/Main.vala:260 +#: src/Common/Main.vala:259 msgid "Called from" msgstr "Aangeroepen door" -#: src/Common/Main.vala:294 +#: src/Common/Main.vala:293 msgid "Notifications are disabled" msgstr "Meldingen zijn uitgeschakeld" -#: src/Common/Package.vala:134 src/Common/Package.vala:198 +#: src/Common/Main.vala:332 src/Gtk/MainWindow.vala:638 +#, fuzzy +msgid "Can not reach" +msgstr "Het bestand kan niet worden uitgelezen" + +#: src/Common/Package.vala:131 src/Common/Package.vala:196 #, c-format msgid "File not found: %s" msgstr "Bestand niet gevonden: %s" @@ -312,66 +313,60 @@ msgstr "Status" msgid "Uninstall" msgstr "Installeren" -#: src/Gtk/MainWindow.vala:325 src/Gtk/MainWindow.vala:370 -#: src/Gtk/MainWindow.vala:616 -msgid "DONE" -msgstr "" - -#: src/Gtk/MainWindow.vala:333 +#: src/Gtk/MainWindow.vala:302 msgid "Changes" msgstr "Wijzigingen" -#: src/Gtk/MainWindow.vala:344 +#: src/Gtk/MainWindow.vala:323 #, fuzzy msgid "Uninstall Old" msgstr "Deïnstalleren voltooid" -#: src/Gtk/MainWindow.vala:345 +#: src/Gtk/MainWindow.vala:324 #, fuzzy msgid "Uninstall kernels older than running kernel" msgstr "Geïnstalleerde kernels verwijderen die ouder zijn dan de huidige" -#: src/Gtk/MainWindow.vala:378 +#: src/Gtk/MainWindow.vala:329 msgid "Reload" msgstr "" -#: src/Gtk/MainWindow.vala:391 src/Gtk/SettingsDialog.vala:50 +#: src/Gtk/MainWindow.vala:334 src/Gtk/SettingsDialog.vala:50 msgid "Settings" msgstr "Instellingen" -#: src/Gtk/MainWindow.vala:413 +#: src/Gtk/MainWindow.vala:339 msgid "About" msgstr "Over" -#: src/Gtk/MainWindow.vala:418 +#: src/Gtk/MainWindow.vala:344 msgid "Exit" msgstr "" -#: src/Gtk/MainWindow.vala:470 +#: src/Gtk/MainWindow.vala:412 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Een kernelupgradehulpmiddel voor op Ubuntu gebaseerde distributies" -#: src/Gtk/MainWindow.vala:471 +#: src/Gtk/MainWindow.vala:413 msgid "Forked" msgstr "Geforkt" -#: src/Gtk/MainWindow.vala:471 +#: src/Gtk/MainWindow.vala:413 msgid "Original" msgstr "Origineel" -#: src/Gtk/MainWindow.vala:500 -#, fuzzy -msgid "Refreshing..." -msgstr "Bezig met verversen..." +#: src/Gtk/MainWindow.vala:451 +msgid "Updating cached indexes" +msgstr "" -#: src/Gtk/MainWindow.vala:582 +#: src/Gtk/MainWindow.vala:533 msgid "available" msgstr "beschikbaar" -#: src/Gtk/MainWindow.vala:625 -#, fuzzy -msgid "Can not reach" -msgstr "Het bestand kan niet worden uitgelezen" +#: src/Gtk/MainWindow.vala:567 src/Gtk/MainWindow.vala:601 +#: src/Gtk/MainWindow.vala:629 +msgid "DONE" +msgstr "" #: src/Gtk/ProgressWindow.vala:126 src/Gtk/TerminalWindow.vala:148 msgid "Cancel" @@ -441,39 +436,39 @@ msgstr "seconden" msgid "Max concurrent downloads" msgstr "Max. aantal gelijktijdige downloads" -#: src/Gtk/TerminalWindow.vala:158 src/Utility/Gtk/AboutWindow.vala:294 +#: src/Gtk/TerminalWindow.vala:158 src/Utility/Gtk/AboutWindow.vala:287 msgid "Close" msgstr "Sluiten" -#: src/Utility/Gtk/AboutWindow.vala:271 src/Utility/Gtk/AboutWindow.vala:288 +#: src/Utility/Gtk/AboutWindow.vala:264 src/Utility/Gtk/AboutWindow.vala:281 msgid "Credits" msgstr "Met dank aan" -#: src/Utility/Gtk/AboutWindow.vala:284 +#: src/Utility/Gtk/AboutWindow.vala:277 msgid "Back" msgstr "Terug" -#: src/Utility/Gtk/AboutWindow.vala:313 +#: src/Utility/Gtk/AboutWindow.vala:306 msgid "Authors" msgstr "Makers" -#: src/Utility/Gtk/AboutWindow.vala:321 +#: src/Utility/Gtk/AboutWindow.vala:314 msgid "Contributions" msgstr "Bijdragers" -#: src/Utility/Gtk/AboutWindow.vala:329 +#: src/Utility/Gtk/AboutWindow.vala:322 msgid "Artists" msgstr "Artiesten" -#: src/Utility/Gtk/AboutWindow.vala:337 +#: src/Utility/Gtk/AboutWindow.vala:330 msgid "Translators" msgstr "Vertalers" -#: src/Utility/Gtk/AboutWindow.vala:345 +#: src/Utility/Gtk/AboutWindow.vala:338 msgid "Documenters" msgstr "Documenteerders" -#: src/Utility/Gtk/AboutWindow.vala:353 +#: src/Utility/Gtk/AboutWindow.vala:346 msgid "Third Party Inclusions" msgstr "Externe code" @@ -509,10 +504,6 @@ msgstr "Het bestand is gekopieerd" msgid "Failed to copy file" msgstr "Het bestand kan niet worden gekopieerd" -#: src/Utility/TeeJee.FileSystem.vala:157 -msgid "File not found" -msgstr "Het bestand is niet gevonden" - #: src/Utility/TeeJee.FileSystem.vala:171 msgid "File moved" msgstr "Het bestand is verplaatst" diff --git a/po/pl.po b/po/pl.po index e10e4bb4..7d09387e 100644 --- a/po/pl.po +++ b/po/pl.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-04 22:34-0500\n" +"POT-Creation-Date: 2023-03-06 01:11-0500\n" "PO-Revision-Date: 2021-09-17 10:29+0200\n" "Last-Translator: Viktor Sokyrko \n" "Language-Team: Polish\n" @@ -12,136 +12,137 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Poedit 2.4.2\n" -#: src/Common/LinuxKernel.vala:87 +#: src/Common/LinuxKernel.vala:88 msgid "Distribution" msgstr "Dystrybucja" -#: src/Common/LinuxKernel.vala:101 +#: src/Common/LinuxKernel.vala:103 #, fuzzy msgid "Architecture" msgstr "Architektura systemu" -#: src/Common/LinuxKernel.vala:256 -msgid "cached" -msgstr "" - -#: src/Common/LinuxKernel.vala:268 -msgid "GET" -msgstr "" - -#: src/Common/LinuxKernel.vala:296 +#: src/Common/LinuxKernel.vala:295 #, fuzzy msgid "Fetching individual kernel indexes..." msgstr "Pobieranie indeksu..." -#: src/Common/LinuxKernel.vala:338 +#: src/Common/LinuxKernel.vala:339 #, fuzzy msgid "Fetching main index from" msgstr "Pobieranie indeksu..." -#: src/Common/LinuxKernel.vala:599 +#: src/Common/LinuxKernel.vala:593 msgid "Could not find running kernel in list!" msgstr "Nie można znaleźć uruchomionego jądra na liście!" -#: src/Common/LinuxKernel.vala:605 +#: src/Common/LinuxKernel.vala:599 msgid "Could not find any kernels to uninstall" msgstr "Nie udało się odnaleźć żadnych jąder do odinstalowania" -#: src/Common/LinuxKernel.vala:614 +#: src/Common/LinuxKernel.vala:608 msgid "The following kernels will be uninstalled:" msgstr "Następujące jądra zostaną odinstalowane:" -#: src/Common/LinuxKernel.vala:621 +#: src/Common/LinuxKernel.vala:612 msgid "Continue ?" msgstr "Kontynuowac?" -#: src/Common/LinuxKernel.vala:644 src/Console/AppConsole.vala:298 +#: src/Common/LinuxKernel.vala:635 src/Console/AppConsole.vala:298 msgid "Latest update" msgstr "Najnowsza aktualizacja" -#: src/Common/LinuxKernel.vala:655 src/Console/AppConsole.vala:305 +#: src/Common/LinuxKernel.vala:646 src/Console/AppConsole.vala:305 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:663 src/Console/AppConsole.vala:310 +#: src/Common/LinuxKernel.vala:654 src/Console/AppConsole.vala:310 #: src/Console/AppConsole.vala:365 msgid "No updates found" msgstr "Nie znaleziono aktualizacji" -#: src/Common/LinuxKernel.vala:673 +#: src/Common/LinuxKernel.vala:664 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Instaluj wersję jądra %s ? (t/n): " -#: src/Common/LinuxKernel.vala:924 +#: src/Common/LinuxKernel.vala:896 msgid "Packages Available" msgstr "Dostępne pakiety" -#: src/Common/LinuxKernel.vala:932 +#: src/Common/LinuxKernel.vala:904 msgid "Packages Installed" msgstr "Pakiety zainstalowane" -#: src/Common/LinuxKernel.vala:1011 +#: src/Common/LinuxKernel.vala:918 src/Utility/TeeJee.FileSystem.vala:157 +msgid "File not found" +msgstr "Nie odnaleziono pliku" + +#: src/Common/LinuxKernel.vala:984 msgid "Available Kernels" msgstr "Dostępne jądra" -#: src/Common/LinuxKernel.vala:1018 src/Gtk/MainWindow.vala:151 +#: src/Common/LinuxKernel.vala:991 src/Gtk/MainWindow.vala:151 msgid "Installed" msgstr "Zainstalowany" -#: src/Common/LinuxKernel.vala:1018 src/Gtk/MainWindow.vala:151 -#: src/Gtk/MainWindow.vala:572 src/Gtk/MainWindow.vala:586 +#: src/Common/LinuxKernel.vala:991 src/Gtk/MainWindow.vala:151 +#: src/Gtk/MainWindow.vala:523 src/Gtk/MainWindow.vala:537 msgid "Running" msgstr "Uruchomiony" -#: src/Common/LinuxKernel.vala:1055 +#: src/Common/LinuxKernel.vala:1028 msgid "Downloading" msgstr "Pobieranie" -#: src/Common/LinuxKernel.vala:1074 +#: src/Common/LinuxKernel.vala:1047 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:1079 +#: src/Common/LinuxKernel.vala:1050 msgid "ERROR" msgstr "BŁĄD" -#: src/Common/LinuxKernel.vala:1093 +#: src/Common/LinuxKernel.vala:1064 msgid "This kernel is already installed." msgstr "To jądro jest już zainstalowane." -#: src/Common/LinuxKernel.vala:1129 +#: src/Common/LinuxKernel.vala:1102 #, fuzzy msgid "Uninstalling selected kernels" msgstr "Odinstaluj wybrane jądro" -#: src/Common/LinuxKernel.vala:1135 +#: src/Common/LinuxKernel.vala:1108 msgid "requested" msgstr "" -#: src/Common/LinuxKernel.vala:1138 +#: src/Common/LinuxKernel.vala:1111 msgid "skipping the currently booted kernel" msgstr "" -#: src/Common/LinuxKernel.vala:1154 +#: src/Common/LinuxKernel.vala:1127 msgid "found" msgstr "" -#: src/Common/LinuxKernel.vala:1157 +#: src/Common/LinuxKernel.vala:1130 #, fuzzy msgid "No packages to un-install!" msgstr "Pakiety zainstalowane" -#: src/Common/Main.vala:260 +#: src/Common/Main.vala:259 #, fuzzy msgid "Called from" msgstr "Wywołane z" -#: src/Common/Main.vala:294 +#: src/Common/Main.vala:293 msgid "Notifications are disabled" msgstr "Powiadomienia są wyłączone" -#: src/Common/Package.vala:134 src/Common/Package.vala:198 +#: src/Common/Main.vala:332 src/Gtk/MainWindow.vala:638 +#, fuzzy +msgid "Can not reach" +msgstr "Nie udało się odczytać pliku" + +#: src/Common/Package.vala:131 src/Common/Package.vala:196 #, c-format msgid "File not found: %s" msgstr "Nie odnaleziono pliku: %s" @@ -311,66 +312,60 @@ msgstr "Status" msgid "Uninstall" msgstr "Odinstaluj" -#: src/Gtk/MainWindow.vala:325 src/Gtk/MainWindow.vala:370 -#: src/Gtk/MainWindow.vala:616 -msgid "DONE" -msgstr "" - -#: src/Gtk/MainWindow.vala:333 +#: src/Gtk/MainWindow.vala:302 msgid "Changes" msgstr "Zmiany" -#: src/Gtk/MainWindow.vala:344 +#: src/Gtk/MainWindow.vala:323 msgid "Uninstall Old" msgstr "Odinstaluj Stare" -#: src/Gtk/MainWindow.vala:345 +#: src/Gtk/MainWindow.vala:324 msgid "Uninstall kernels older than running kernel" msgstr "Odinstaluj jądra starsze niż uruchomione" -#: src/Gtk/MainWindow.vala:378 +#: src/Gtk/MainWindow.vala:329 msgid "Reload" msgstr "" -#: src/Gtk/MainWindow.vala:391 src/Gtk/SettingsDialog.vala:50 +#: src/Gtk/MainWindow.vala:334 src/Gtk/SettingsDialog.vala:50 msgid "Settings" msgstr "Ustawienia" -#: src/Gtk/MainWindow.vala:413 +#: src/Gtk/MainWindow.vala:339 msgid "About" msgstr "O programie" -#: src/Gtk/MainWindow.vala:418 +#: src/Gtk/MainWindow.vala:344 msgid "Exit" msgstr "" -#: src/Gtk/MainWindow.vala:470 +#: src/Gtk/MainWindow.vala:412 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Narzędzie uaktualniania jądra dla dystrybucji z rodziny Ubuntu" -#: src/Gtk/MainWindow.vala:471 +#: src/Gtk/MainWindow.vala:413 msgid "Forked" msgstr "" -#: src/Gtk/MainWindow.vala:471 +#: src/Gtk/MainWindow.vala:413 msgid "Original" msgstr "" -#: src/Gtk/MainWindow.vala:500 -#, fuzzy -msgid "Refreshing..." -msgstr "Odświeżam..." +#: src/Gtk/MainWindow.vala:451 +msgid "Updating cached indexes" +msgstr "" # Should be a single word at the end of the line. # For example: "5.13.16 available" -#: src/Gtk/MainWindow.vala:582 +#: src/Gtk/MainWindow.vala:533 msgid "available" msgstr "dostępne" -#: src/Gtk/MainWindow.vala:625 -#, fuzzy -msgid "Can not reach" -msgstr "Nie udało się odczytać pliku" +#: src/Gtk/MainWindow.vala:567 src/Gtk/MainWindow.vala:601 +#: src/Gtk/MainWindow.vala:629 +msgid "DONE" +msgstr "" #: src/Gtk/ProgressWindow.vala:126 src/Gtk/TerminalWindow.vala:148 msgid "Cancel" @@ -441,39 +436,39 @@ msgstr "sekund" msgid "Max concurrent downloads" msgstr "Maksymalna liczba jednoczesnych pobrań" -#: src/Gtk/TerminalWindow.vala:158 src/Utility/Gtk/AboutWindow.vala:294 +#: src/Gtk/TerminalWindow.vala:158 src/Utility/Gtk/AboutWindow.vala:287 msgid "Close" msgstr "Zamknij" -#: src/Utility/Gtk/AboutWindow.vala:271 src/Utility/Gtk/AboutWindow.vala:288 +#: src/Utility/Gtk/AboutWindow.vala:264 src/Utility/Gtk/AboutWindow.vala:281 msgid "Credits" msgstr "Zasługi" -#: src/Utility/Gtk/AboutWindow.vala:284 +#: src/Utility/Gtk/AboutWindow.vala:277 msgid "Back" msgstr "Wstecz" -#: src/Utility/Gtk/AboutWindow.vala:313 +#: src/Utility/Gtk/AboutWindow.vala:306 msgid "Authors" msgstr "Аutorzy" -#: src/Utility/Gtk/AboutWindow.vala:321 +#: src/Utility/Gtk/AboutWindow.vala:314 msgid "Contributions" msgstr "Wkład" -#: src/Utility/Gtk/AboutWindow.vala:329 +#: src/Utility/Gtk/AboutWindow.vala:322 msgid "Artists" msgstr "Artyści" -#: src/Utility/Gtk/AboutWindow.vala:337 +#: src/Utility/Gtk/AboutWindow.vala:330 msgid "Translators" msgstr "Tłumacze" -#: src/Utility/Gtk/AboutWindow.vala:345 +#: src/Utility/Gtk/AboutWindow.vala:338 msgid "Documenters" msgstr "Dokumentujący" -#: src/Utility/Gtk/AboutWindow.vala:353 +#: src/Utility/Gtk/AboutWindow.vala:346 #, fuzzy msgid "Third Party Inclusions" msgstr "Narzędzia osób trzecich" @@ -510,10 +505,6 @@ msgstr "Plik skopiowany" msgid "Failed to copy file" msgstr "Nie udało się skopiować pliku" -#: src/Utility/TeeJee.FileSystem.vala:157 -msgid "File not found" -msgstr "Nie odnaleziono pliku" - #: src/Utility/TeeJee.FileSystem.vala:171 msgid "File moved" msgstr "Plik przeniesiony" diff --git a/po/ru.po b/po/ru.po index 180f299a..5b124f28 100644 --- a/po/ru.po +++ b/po/ru.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-02-23 17:56-0500\n" +"POT-Creation-Date: 2023-03-06 01:11-0500\n" "PO-Revision-Date: 2023-03-01 20:22+0300\n" "Last-Translator: Faust3000 (Original) | Danik2343 (Update Transaltion) " "\n" @@ -14,378 +14,355 @@ msgstr "" "X-Launchpad-Export-Date: 2016-12-13 11:48+0000\n" "X-Generator: Poedit 3.0.1\n" -#: src/Common/LinuxKernel.vala:87 +#: src/Common/LinuxKernel.vala:88 msgid "Distribution" msgstr "Дистрибутив" -#: src/Common/LinuxKernel.vala:101 +#: src/Common/LinuxKernel.vala:103 msgid "Architecture" msgstr "Архитектура" -#: src/Common/LinuxKernel.vala:290 -msgid "Fetching index..." +#: src/Common/LinuxKernel.vala:295 +#, fuzzy +msgid "Fetching individual kernel indexes..." msgstr "Получение сведений..." -#: src/Common/LinuxKernel.vala:329 -msgid "Fetching index from kernel.ubuntu.com..." -msgstr "Получение сведений с kernel.ubuntu.com..." +#: src/Common/LinuxKernel.vala:339 +#, fuzzy +msgid "Fetching main index from" +msgstr "Получение сведений..." -#: src/Common/LinuxKernel.vala:585 +#: src/Common/LinuxKernel.vala:593 msgid "Could not find running kernel in list!" msgstr "Не удалось найти запущенное ядро в списке!" -#: src/Common/LinuxKernel.vala:591 +#: src/Common/LinuxKernel.vala:599 msgid "Could not find any kernels to uninstall" msgstr "Не удалось найти ядра для деинсталляции" -#: src/Common/LinuxKernel.vala:600 +#: src/Common/LinuxKernel.vala:608 msgid "The following kernels will be uninstalled:" msgstr "Следующие ядра будут деинсталлированы:" -#: src/Common/LinuxKernel.vala:607 +#: src/Common/LinuxKernel.vala:612 msgid "Continue ?" msgstr "Продолжить ?" -#: src/Common/LinuxKernel.vala:633 src/Console/AppConsole.vala:314 +#: src/Common/LinuxKernel.vala:635 src/Console/AppConsole.vala:298 msgid "Latest update" msgstr "Последнее обновление" -#: src/Common/LinuxKernel.vala:644 src/Console/AppConsole.vala:321 +#: src/Common/LinuxKernel.vala:646 src/Console/AppConsole.vala:305 msgid "Latest point update" msgstr "Последнее обновление пунктов" -#: src/Common/LinuxKernel.vala:652 src/Console/AppConsole.vala:326 -#: src/Console/AppConsole.vala:387 +#: src/Common/LinuxKernel.vala:654 src/Console/AppConsole.vala:310 +#: src/Console/AppConsole.vala:365 msgid "No updates found" msgstr "Обновлений не найдено" -#: src/Common/LinuxKernel.vala:662 +#: src/Common/LinuxKernel.vala:664 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Установить версию ядра %s ? (y/n): " -#: src/Common/LinuxKernel.vala:912 +#: src/Common/LinuxKernel.vala:896 msgid "Packages Available" msgstr "Доступные пакеты" -#: src/Common/LinuxKernel.vala:920 +#: src/Common/LinuxKernel.vala:904 msgid "Packages Installed" msgstr "Установленные пакеты" -#: src/Common/LinuxKernel.vala:1000 +#: src/Common/LinuxKernel.vala:918 src/Utility/TeeJee.FileSystem.vala:157 +msgid "File not found" +msgstr "Файл не найден" + +#: src/Common/LinuxKernel.vala:984 msgid "Available Kernels" msgstr "Доступные ядра" -#: src/Common/LinuxKernel.vala:1007 src/Gtk/MainWindow.vala:189 +#: src/Common/LinuxKernel.vala:991 src/Gtk/MainWindow.vala:151 msgid "Installed" msgstr "Установлено" -#: src/Common/LinuxKernel.vala:1007 src/Gtk/MainWindow.vala:189 -#: src/Gtk/MainWindow.vala:610 src/Gtk/MainWindow.vala:624 +#: src/Common/LinuxKernel.vala:991 src/Gtk/MainWindow.vala:151 +#: src/Gtk/MainWindow.vala:523 src/Gtk/MainWindow.vala:537 msgid "Running" msgstr "Используется" -#: src/Common/LinuxKernel.vala:1044 +#: src/Common/LinuxKernel.vala:1028 msgid "Downloading" msgstr "Загрузка" -#: src/Common/LinuxKernel.vala:1063 src/Gtk/CustomMessageDialog.vala:150 -#: src/Gtk/CustomMessageDialog.vala:154 +#: src/Common/LinuxKernel.vala:1047 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:1068 +#: src/Common/LinuxKernel.vala:1050 msgid "ERROR" msgstr "ОШИБКА" -#: src/Common/LinuxKernel.vala:1082 +#: src/Common/LinuxKernel.vala:1064 msgid "This kernel is already installed." msgstr "Это ядро уже установлено." +#: src/Common/LinuxKernel.vala:1102 +#, fuzzy +msgid "Uninstalling selected kernels" +msgstr "Установить указанное ядро" + #: src/Common/LinuxKernel.vala:1108 -msgid "Installation completed. A reboot is required to use the new kernel." +msgid "requested" msgstr "" -"Установка завершена. Обязательно выполните перезагрузку, чтобы использовать " -"новое ядро." #: src/Common/LinuxKernel.vala:1111 -msgid "Installation completed with errors" -msgstr "Установка завершена с ошибками" - -#: src/Common/LinuxKernel.vala:1132 -msgid "" -"Selected kernel is currently running and cannot be un-installed.\n" -" Install another kernel before un-installing this one." +msgid "skipping the currently booted kernel" msgstr "" -"Это ядро в настоящий момент работает и не может быть удалено.\n" -" Установите другое ядро, прежде чем удалять его." - -#: src/Common/LinuxKernel.vala:1137 -msgid "Preparing to uninstall selected kernels" -msgstr "Подготовка к деинсталляции выбранных ядер" - -#: src/Common/LinuxKernel.vala:1168 src/Common/LinuxKernel.vala:1215 -msgid "Un-install completed" -msgstr "Удаление завершено" -#: src/Common/LinuxKernel.vala:1171 src/Common/LinuxKernel.vala:1218 -msgid "Un-install completed with errors" -msgstr "Удаление завершено с ошибками" - -#: src/Common/LinuxKernel.vala:1184 -msgid "" -"This kernel is currently running and cannot be un-installed.\n" -" Install another kernel before un-installing this one." +#: src/Common/LinuxKernel.vala:1127 +msgid "found" msgstr "" -"Это ядро в настоящий момент работает и не может быть удалено.\n" -" Установите другое ядро, прежде чем удалять его." -#: src/Common/Main.vala:241 +#: src/Common/LinuxKernel.vala:1130 +#, fuzzy +msgid "No packages to un-install!" +msgstr "Установленные пакеты" + +#: src/Common/Main.vala:259 msgid "Called from" msgstr "Вызван из" -#: src/Common/Main.vala:275 +#: src/Common/Main.vala:293 msgid "Notifications are disabled" msgstr "Уведомления отключены" -#: src/Common/Package.vala:134 src/Common/Package.vala:198 +#: src/Common/Main.vala:332 src/Gtk/MainWindow.vala:638 +msgid "Can not reach" +msgstr "" + +#: src/Common/Package.vala:131 src/Common/Package.vala:196 #, c-format msgid "File not found: %s" msgstr "Файл не найден: %s" -#: src/Console/AppConsole.vala:62 src/Gtk/AppGtk.vala:152 +#: src/Console/AppConsole.vala:68 src/Gtk/AppGtk.vala:141 msgid "Syntax" msgstr "Синтаксис" -#: src/Console/AppConsole.vala:64 +#: src/Console/AppConsole.vala:70 msgid "Commands" msgstr "Комманды" -#: src/Console/AppConsole.vala:66 +#: src/Console/AppConsole.vala:72 msgid "Check for kernel updates" msgstr "Проверить обновления ядра" -#: src/Console/AppConsole.vala:67 +#: src/Console/AppConsole.vala:73 msgid "Check for kernel updates and notify current user" msgstr "Проверить обновления ядра и уведомить текущего пользователя" -#: src/Console/AppConsole.vala:68 +#: src/Console/AppConsole.vala:74 msgid "List all available mainline kernels" msgstr "Список всех доступных основных ядер" -#: src/Console/AppConsole.vala:69 +#: src/Console/AppConsole.vala:75 msgid "List installed kernels" msgstr "Список установленных ядер" -#: src/Console/AppConsole.vala:70 +#: src/Console/AppConsole.vala:76 msgid "Install latest mainline kernel" msgstr "Установите последнюю версию основного ядра" -#: src/Console/AppConsole.vala:71 +#: src/Console/AppConsole.vala:77 msgid "Install latest point update for current series" msgstr "Установить последнее обновление точек для текущей серии" -#: src/Console/AppConsole.vala:72 +#: src/Console/AppConsole.vala:78 msgid "Install specified mainline kernel" msgstr "Установить указанную ветку основного ядра" -#: src/Console/AppConsole.vala:73 +#: src/Console/AppConsole.vala:79 msgid "Uninstall specified kernel" msgstr "Установить указанное ядро" -#: src/Console/AppConsole.vala:74 +#: src/Console/AppConsole.vala:80 msgid "Uninstall kernels older than the running kernel" msgstr "Удалить более старшие установленные ядра, чем используемое ядро" -#: src/Console/AppConsole.vala:75 +#: src/Console/AppConsole.vala:81 msgid "Download specified kernels" msgstr "Скачать указанные ядра" -#: src/Console/AppConsole.vala:76 -msgid "Remove files from application cache" -msgstr "Удалить файлы из кэша программы" +#: src/Console/AppConsole.vala:82 +msgid "Delete cached info about available kernels" +msgstr "" -#: src/Console/AppConsole.vala:78 src/Gtk/AppGtk.vala:154 +#: src/Console/AppConsole.vala:84 src/Gtk/AppGtk.vala:143 msgid "Options" msgstr "Параметры" -#: src/Console/AppConsole.vala:80 +#: src/Console/AppConsole.vala:86 msgid "Include unstable and RC releases" msgstr "Включать нестабильные и релиз-кандидат-версии" -#: src/Console/AppConsole.vala:81 src/Gtk/SettingsDialog.vala:163 -msgid "Hide unstable and RC releases" -msgstr "Скрыть нестабильные и релиз-кандидат версии" +#: src/Console/AppConsole.vala:87 +#, fuzzy +msgid "Exclude unstable and RC releases" +msgstr "Включать нестабильные и релиз-кандидат-версии" -#: src/Console/AppConsole.vala:82 +#: src/Console/AppConsole.vala:88 msgid "Enable verbose debugging output" msgstr "Включить подробный отладочный вывод" -#: src/Console/AppConsole.vala:83 +#: src/Console/AppConsole.vala:89 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "Предполагать \"Да\" для всех запросов (неинтерактивный режим)" -#: src/Console/AppConsole.vala:84 -msgid "Override user" -msgstr "Переопределить пользователя" - -#: src/Console/AppConsole.vala:87 +#: src/Console/AppConsole.vala:92 msgid "A version string taken from the output of --list" msgstr "Строка версии, взятая из вывода --list" -#: src/Console/AppConsole.vala:88 +#: src/Console/AppConsole.vala:93 msgid "" "One or more version strings (comma-separated) taken from the output of --list" msgstr "" "Одна или несколько строк версий (разделенных запятыми), взятых из вывода --" "list" -#: src/Console/AppConsole.vala:169 src/Gtk/AppGtk.vala:139 +#: src/Console/AppConsole.vala:173 src/Gtk/AppGtk.vala:127 msgid "Unknown option" msgstr "Неизвестный параметр" -#: src/Console/AppConsole.vala:171 src/Console/AppConsole.vala:265 -#: src/Console/AppConsole.vala:294 +#: src/Console/AppConsole.vala:175 src/Console/AppConsole.vala:255 +#: src/Console/AppConsole.vala:284 msgid "Run" msgstr "Используется" -#: src/Console/AppConsole.vala:171 +#: src/Console/AppConsole.vala:175 msgid "to list all options" msgstr "чтобы перечислить все параметры" -#: src/Console/AppConsole.vala:238 src/Console/AppConsole.vala:273 +#: src/Console/AppConsole.vala:227 src/Console/AppConsole.vala:263 msgid "No kernels specified" msgstr "Ядра не указаны" -#: src/Console/AppConsole.vala:244 +#: src/Console/AppConsole.vala:233 msgid "Multiple kernels selected for installation. Select only one." msgstr "Для установки выбрано несколько ядер. Выберите только одно." -#: src/Console/AppConsole.vala:262 src/Gtk/MainWindow.vala:100 +#: src/Console/AppConsole.vala:252 msgid "Could not find requested version" msgstr "Не удалось найти запрошенную версию" -#: src/Console/AppConsole.vala:265 +#: src/Console/AppConsole.vala:255 msgid "and use a version string listed in first column" msgstr "и использовать строку версии, указанную в первом столбце" -#: src/Console/AppConsole.vala:293 +#: src/Console/AppConsole.vala:283 msgid "Command not specified" msgstr "Команда не указана" -#: src/Console/AppConsole.vala:294 +#: src/Console/AppConsole.vala:284 msgid "to list all commands" msgstr "чтобы перечислить все команды" -#: src/Console/AppConsole.vala:360 +#: src/Console/AppConsole.vala:338 msgid "Show" msgstr "Показать" -#: src/Console/AppConsole.vala:365 src/Console/AppConsole.vala:377 +#: src/Console/AppConsole.vala:343 src/Console/AppConsole.vala:355 #, c-format msgid "Kernel %s Available" msgstr "Доступно ядро %s" -#: src/Console/AppConsole.vala:367 src/Console/AppConsole.vala:379 -#: src/Gtk/MainWindow.vala:333 +#: src/Console/AppConsole.vala:345 src/Console/AppConsole.vala:357 +#: src/Gtk/MainWindow.vala:282 msgid "Install" msgstr "Установить" -#: src/Gtk/AppGtk.vala:156 +#: src/Gtk/AppGtk.vala:141 +#, fuzzy +msgid "options" +msgstr "Параметры" + +#: src/Gtk/AppGtk.vala:145 msgid "Print debug information" msgstr "Распечатать отладочную информацию" -#: src/Gtk/AppGtk.vala:157 +#: src/Gtk/AppGtk.vala:146 msgid "Show all options" msgstr "Показать все параметры" -#: src/Gtk/CustomMessageDialog.vala:155 src/Gtk/ProgressWindow.vala:142 -#: src/Gtk/TerminalWindow.vala:148 -msgid "Cancel" -msgstr "Отмена" - -#: src/Gtk/CustomMessageDialog.vala:159 -msgid "Yes" -msgstr "Да" - -#: src/Gtk/CustomMessageDialog.vala:160 -msgid "No" -msgstr "Нет" - -#: src/Gtk/MainWindow.vala:146 +#: src/Gtk/MainWindow.vala:108 msgid "Kernel" msgstr "Ядро" -#: src/Gtk/MainWindow.vala:176 +#: src/Gtk/MainWindow.vala:138 msgid "Status" msgstr "Состояние" -#: src/Gtk/MainWindow.vala:317 -msgid "Refresh" -msgstr "Обновить" - -#: src/Gtk/MainWindow.vala:324 src/Utility/TeeJee.System.vala:42 -msgid "Internet connection is not active" -msgstr "Интернет соединение не активно" - -#: src/Gtk/MainWindow.vala:324 src/Gtk/MainWindow.vala:518 -#: src/Gtk/MainWindow.vala:634 -msgid "No Internet" -msgstr "Нет интернет соединения" - -#: src/Gtk/MainWindow.vala:344 +#: src/Gtk/MainWindow.vala:292 msgid "Uninstall" msgstr "Удалить" -#: src/Gtk/MainWindow.vala:377 src/Gtk/MainWindow.vala:410 -#: src/Gtk/MainWindow.vala:666 -msgid "Close window to exit..." -msgstr "Закройте окно, чтобы выйти..." +#: src/Gtk/MainWindow.vala:302 +msgid "Changes" +msgstr "Изменения" -#: src/Gtk/MainWindow.vala:384 +#: src/Gtk/MainWindow.vala:323 msgid "Uninstall Old" msgstr "Удалить старые" -#: src/Gtk/MainWindow.vala:385 +#: src/Gtk/MainWindow.vala:324 msgid "Uninstall kernels older than running kernel" msgstr "Удалить более старшие установленные ядра, чем используемое" -#: src/Gtk/MainWindow.vala:417 -msgid "Changes" -msgstr "Изменения" +#: src/Gtk/MainWindow.vala:329 +msgid "Reload" +msgstr "" -#: src/Gtk/MainWindow.vala:428 src/Gtk/SettingsDialog.vala:50 +#: src/Gtk/MainWindow.vala:334 src/Gtk/SettingsDialog.vala:50 msgid "Settings" msgstr "Настройки" -#: src/Gtk/MainWindow.vala:451 +#: src/Gtk/MainWindow.vala:339 msgid "About" msgstr "О программе" -#: src/Gtk/MainWindow.vala:496 +#: src/Gtk/MainWindow.vala:344 +msgid "Exit" +msgstr "" + +#: src/Gtk/MainWindow.vala:412 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Программа обновления ядра для дистрибутивов на базе Ubuntu" -#: src/Gtk/MainWindow.vala:497 +#: src/Gtk/MainWindow.vala:413 msgid "Forked" msgstr "Форк" -#: src/Gtk/MainWindow.vala:497 +#: src/Gtk/MainWindow.vala:413 msgid "Original" msgstr "Оригинал" -#: src/Gtk/MainWindow.vala:518 src/Gtk/MainWindow.vala:634 -msgid "Internet connection is not active." -msgstr "Интернет соединение не активно." - -#: src/Gtk/MainWindow.vala:531 -msgid "Refreshing..." -msgstr "Обновление..." +#: src/Gtk/MainWindow.vala:451 +msgid "Updating cached indexes" +msgstr "" -#: src/Gtk/MainWindow.vala:620 +#: src/Gtk/MainWindow.vala:533 msgid "available" msgstr "доступно" +#: src/Gtk/MainWindow.vala:567 src/Gtk/MainWindow.vala:601 +#: src/Gtk/MainWindow.vala:629 +msgid "DONE" +msgstr "" + +#: src/Gtk/ProgressWindow.vala:126 src/Gtk/TerminalWindow.vala:148 +msgid "Cancel" +msgstr "Отмена" + #: src/Gtk/SettingsDialog.vala:60 msgid "Notification" msgstr "Уведомления" @@ -426,6 +403,10 @@ msgstr "Секунду(ды)" msgid "Display" msgstr "Отображение" +#: src/Gtk/SettingsDialog.vala:163 +msgid "Hide unstable and RC releases" +msgstr "Скрыть нестабильные и релиз-кандидат версии" + #: src/Gtk/SettingsDialog.vala:177 msgid "Show N previous major versions " msgstr "Показать N предыдущих основных версий " @@ -434,59 +415,55 @@ msgstr "Показать N предыдущих основных версий " msgid "Other" msgstr "Прочее" -#: src/Gtk/SettingsDialog.vala:200 -msgid "Skip internet connection check" -msgstr "Пропустить проверку подключения к Интернету" - -#: src/Gtk/SettingsDialog.vala:213 +#: src/Gtk/SettingsDialog.vala:203 msgid "Internet connection timeout in " msgstr "Таймаут подключения к Интернету в " -#: src/Gtk/SettingsDialog.vala:228 +#: src/Gtk/SettingsDialog.vala:218 msgid "seconds" msgstr "секунд" -#: src/Gtk/SettingsDialog.vala:235 +#: src/Gtk/SettingsDialog.vala:225 msgid "Max concurrent downloads" msgstr "Максимальное количество одновременных загрузок" -#: src/Gtk/TerminalWindow.vala:158 src/Utility/Gtk/AboutWindow.vala:294 +#: src/Gtk/TerminalWindow.vala:158 src/Utility/Gtk/AboutWindow.vala:287 msgid "Close" msgstr "Закрыть" -#: src/Utility/Gtk/AboutWindow.vala:271 src/Utility/Gtk/AboutWindow.vala:288 +#: src/Utility/Gtk/AboutWindow.vala:264 src/Utility/Gtk/AboutWindow.vala:281 msgid "Credits" msgstr "Создатели" -#: src/Utility/Gtk/AboutWindow.vala:284 +#: src/Utility/Gtk/AboutWindow.vala:277 msgid "Back" msgstr "Назад" -#: src/Utility/Gtk/AboutWindow.vala:313 +#: src/Utility/Gtk/AboutWindow.vala:306 msgid "Authors" msgstr "Авторы" -#: src/Utility/Gtk/AboutWindow.vala:321 +#: src/Utility/Gtk/AboutWindow.vala:314 msgid "Contributions" msgstr "Взносы" -#: src/Utility/Gtk/AboutWindow.vala:329 +#: src/Utility/Gtk/AboutWindow.vala:322 msgid "Artists" msgstr "Художники" -#: src/Utility/Gtk/AboutWindow.vala:337 +#: src/Utility/Gtk/AboutWindow.vala:330 msgid "Translators" msgstr "Переводчики" -#: src/Utility/Gtk/AboutWindow.vala:345 +#: src/Utility/Gtk/AboutWindow.vala:338 msgid "Documenters" msgstr "Составители документации" -#: src/Utility/Gtk/AboutWindow.vala:353 +#: src/Utility/Gtk/AboutWindow.vala:346 msgid "Third Party Inclusions" msgstr "Включая сторонние инструменты" -#: src/Utility/Gtk/GtkHelper.vala:59 +#: src/Utility/Gtk/GtkHelper.vala:49 msgid "Missing Icon" msgstr "Значок отсутствует" @@ -518,10 +495,6 @@ msgstr "Файл скопирован" msgid "Failed to copy file" msgstr "Не удалось скопировать файл" -#: src/Utility/TeeJee.FileSystem.vala:157 -msgid "File not found" -msgstr "Файл не найден" - #: src/Utility/TeeJee.FileSystem.vala:171 msgid "File moved" msgstr "Файл перемещён" diff --git a/po/sv.po b/po/sv.po index 397d317d..f5dd9d9f 100644 --- a/po/sv.po +++ b/po/sv.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-04 22:34-0500\n" +"POT-Creation-Date: 2023-03-06 01:11-0500\n" "PO-Revision-Date: 2018-01-13 16:56+0100\n" "Last-Translator: Åke Engelbrektson \n" "Language-Team:Swedish\n" @@ -13,139 +13,140 @@ msgstr "" "X-Generator: Poedit 1.8.7.1\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: src/Common/LinuxKernel.vala:87 +#: src/Common/LinuxKernel.vala:88 msgid "Distribution" msgstr "Distribution" -#: src/Common/LinuxKernel.vala:101 +#: src/Common/LinuxKernel.vala:103 #, fuzzy msgid "Architecture" msgstr "Systemarkitektur" -#: src/Common/LinuxKernel.vala:256 -msgid "cached" -msgstr "" - -#: src/Common/LinuxKernel.vala:268 -msgid "GET" -msgstr "" - -#: src/Common/LinuxKernel.vala:296 +#: src/Common/LinuxKernel.vala:295 #, fuzzy msgid "Fetching individual kernel indexes..." msgstr "Hämtar index för" -#: src/Common/LinuxKernel.vala:338 +#: src/Common/LinuxKernel.vala:339 #, fuzzy msgid "Fetching main index from" msgstr "Hämtar index för" -#: src/Common/LinuxKernel.vala:599 +#: src/Common/LinuxKernel.vala:593 #, fuzzy msgid "Could not find running kernel in list!" msgstr "Kunde inte hitta efterfrågad version" -#: src/Common/LinuxKernel.vala:605 +#: src/Common/LinuxKernel.vala:599 #, fuzzy msgid "Could not find any kernels to uninstall" msgstr "Välj kärnor för borttagning" -#: src/Common/LinuxKernel.vala:614 +#: src/Common/LinuxKernel.vala:608 #, fuzzy msgid "The following kernels will be uninstalled:" msgstr "Denna kärna är redan installerad" -#: src/Common/LinuxKernel.vala:621 +#: src/Common/LinuxKernel.vala:612 msgid "Continue ?" msgstr "" -#: src/Common/LinuxKernel.vala:644 src/Console/AppConsole.vala:298 +#: src/Common/LinuxKernel.vala:635 src/Console/AppConsole.vala:298 msgid "Latest update" msgstr "" -#: src/Common/LinuxKernel.vala:655 src/Console/AppConsole.vala:305 +#: src/Common/LinuxKernel.vala:646 src/Console/AppConsole.vala:305 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:663 src/Console/AppConsole.vala:310 +#: src/Common/LinuxKernel.vala:654 src/Console/AppConsole.vala:310 #: src/Console/AppConsole.vala:365 msgid "No updates found" msgstr "Inga uppdateringar hittades" -#: src/Common/LinuxKernel.vala:673 +#: src/Common/LinuxKernel.vala:664 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "" -#: src/Common/LinuxKernel.vala:924 +#: src/Common/LinuxKernel.vala:896 msgid "Packages Available" msgstr "Tillgängliga paket" -#: src/Common/LinuxKernel.vala:932 +#: src/Common/LinuxKernel.vala:904 msgid "Packages Installed" msgstr "Installerade paket" -#: src/Common/LinuxKernel.vala:1011 +#: src/Common/LinuxKernel.vala:918 src/Utility/TeeJee.FileSystem.vala:157 +msgid "File not found" +msgstr "Filen kan inte hittas" + +#: src/Common/LinuxKernel.vala:984 msgid "Available Kernels" msgstr "Tillgängliga kärnor" -#: src/Common/LinuxKernel.vala:1018 src/Gtk/MainWindow.vala:151 +#: src/Common/LinuxKernel.vala:991 src/Gtk/MainWindow.vala:151 msgid "Installed" msgstr "Installerad" -#: src/Common/LinuxKernel.vala:1018 src/Gtk/MainWindow.vala:151 -#: src/Gtk/MainWindow.vala:572 src/Gtk/MainWindow.vala:586 +#: src/Common/LinuxKernel.vala:991 src/Gtk/MainWindow.vala:151 +#: src/Gtk/MainWindow.vala:523 src/Gtk/MainWindow.vala:537 msgid "Running" msgstr "Körs" -#: src/Common/LinuxKernel.vala:1055 +#: src/Common/LinuxKernel.vala:1028 msgid "Downloading" msgstr "Laddar ner" -#: src/Common/LinuxKernel.vala:1074 +#: src/Common/LinuxKernel.vala:1047 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:1079 +#: src/Common/LinuxKernel.vala:1050 msgid "ERROR" msgstr "FEL" -#: src/Common/LinuxKernel.vala:1093 +#: src/Common/LinuxKernel.vala:1064 msgid "This kernel is already installed." msgstr "Denna kärna är redan installerad" -#: src/Common/LinuxKernel.vala:1129 +#: src/Common/LinuxKernel.vala:1102 #, fuzzy msgid "Uninstalling selected kernels" msgstr "Installera specificerad kärna" -#: src/Common/LinuxKernel.vala:1135 +#: src/Common/LinuxKernel.vala:1108 msgid "requested" msgstr "" -#: src/Common/LinuxKernel.vala:1138 +#: src/Common/LinuxKernel.vala:1111 msgid "skipping the currently booted kernel" msgstr "" -#: src/Common/LinuxKernel.vala:1154 +#: src/Common/LinuxKernel.vala:1127 msgid "found" msgstr "" -#: src/Common/LinuxKernel.vala:1157 +#: src/Common/LinuxKernel.vala:1130 #, fuzzy msgid "No packages to un-install!" msgstr "Installerade paket" -#: src/Common/Main.vala:260 +#: src/Common/Main.vala:259 msgid "Called from" msgstr "" -#: src/Common/Main.vala:294 +#: src/Common/Main.vala:293 #, fuzzy msgid "Notifications are disabled" msgstr "Avisering" -#: src/Common/Package.vala:134 src/Common/Package.vala:198 +#: src/Common/Main.vala:332 src/Gtk/MainWindow.vala:638 +#, fuzzy +msgid "Can not reach" +msgstr "Kunde inte läsa filen" + +#: src/Common/Package.vala:131 src/Common/Package.vala:196 #, c-format msgid "File not found: %s" msgstr "Filen kunde inte hittas: %s" @@ -319,67 +320,61 @@ msgstr "Status" msgid "Uninstall" msgstr "Installera" -#: src/Gtk/MainWindow.vala:325 src/Gtk/MainWindow.vala:370 -#: src/Gtk/MainWindow.vala:616 -msgid "DONE" -msgstr "" - -#: src/Gtk/MainWindow.vala:333 +#: src/Gtk/MainWindow.vala:302 msgid "Changes" msgstr "Ändringar" -#: src/Gtk/MainWindow.vala:344 +#: src/Gtk/MainWindow.vala:323 #, fuzzy msgid "Uninstall Old" msgstr "Avinstallation slutförd" -#: src/Gtk/MainWindow.vala:345 +#: src/Gtk/MainWindow.vala:324 #, fuzzy msgid "Uninstall kernels older than running kernel" msgstr "Ta bort installerade kärnor äldre än den som körs" -#: src/Gtk/MainWindow.vala:378 +#: src/Gtk/MainWindow.vala:329 msgid "Reload" msgstr "" -#: src/Gtk/MainWindow.vala:391 src/Gtk/SettingsDialog.vala:50 +#: src/Gtk/MainWindow.vala:334 src/Gtk/SettingsDialog.vala:50 msgid "Settings" msgstr "Inställningar" -#: src/Gtk/MainWindow.vala:413 +#: src/Gtk/MainWindow.vala:339 msgid "About" msgstr "Om" -#: src/Gtk/MainWindow.vala:418 +#: src/Gtk/MainWindow.vala:344 msgid "Exit" msgstr "" -#: src/Gtk/MainWindow.vala:470 +#: src/Gtk/MainWindow.vala:412 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Kärnuppgraderingsverktyg för Ubuntu-baserade distributioner" -#: src/Gtk/MainWindow.vala:471 +#: src/Gtk/MainWindow.vala:413 msgid "Forked" msgstr "" -#: src/Gtk/MainWindow.vala:471 +#: src/Gtk/MainWindow.vala:413 msgid "Original" msgstr "" -#: src/Gtk/MainWindow.vala:500 -#, fuzzy -msgid "Refreshing..." -msgstr "Uppdaterar ..." +#: src/Gtk/MainWindow.vala:451 +msgid "Updating cached indexes" +msgstr "" -#: src/Gtk/MainWindow.vala:582 +#: src/Gtk/MainWindow.vala:533 #, fuzzy msgid "available" msgstr "Tillgängliga paket" -#: src/Gtk/MainWindow.vala:625 -#, fuzzy -msgid "Can not reach" -msgstr "Kunde inte läsa filen" +#: src/Gtk/MainWindow.vala:567 src/Gtk/MainWindow.vala:601 +#: src/Gtk/MainWindow.vala:629 +msgid "DONE" +msgstr "" #: src/Gtk/ProgressWindow.vala:126 src/Gtk/TerminalWindow.vala:148 msgid "Cancel" @@ -450,39 +445,39 @@ msgstr "" msgid "Max concurrent downloads" msgstr "" -#: src/Gtk/TerminalWindow.vala:158 src/Utility/Gtk/AboutWindow.vala:294 +#: src/Gtk/TerminalWindow.vala:158 src/Utility/Gtk/AboutWindow.vala:287 msgid "Close" msgstr "Stäng" -#: src/Utility/Gtk/AboutWindow.vala:271 src/Utility/Gtk/AboutWindow.vala:288 +#: src/Utility/Gtk/AboutWindow.vala:264 src/Utility/Gtk/AboutWindow.vala:281 msgid "Credits" msgstr "Tack" -#: src/Utility/Gtk/AboutWindow.vala:284 +#: src/Utility/Gtk/AboutWindow.vala:277 msgid "Back" msgstr "Tillbaka" -#: src/Utility/Gtk/AboutWindow.vala:313 +#: src/Utility/Gtk/AboutWindow.vala:306 msgid "Authors" msgstr "Utvecklare" -#: src/Utility/Gtk/AboutWindow.vala:321 +#: src/Utility/Gtk/AboutWindow.vala:314 msgid "Contributions" msgstr "Bidrag" -#: src/Utility/Gtk/AboutWindow.vala:329 +#: src/Utility/Gtk/AboutWindow.vala:322 msgid "Artists" msgstr "Artister" -#: src/Utility/Gtk/AboutWindow.vala:337 +#: src/Utility/Gtk/AboutWindow.vala:330 msgid "Translators" msgstr "Översättare" -#: src/Utility/Gtk/AboutWindow.vala:345 +#: src/Utility/Gtk/AboutWindow.vala:338 msgid "Documenters" msgstr "Dokumentalister" -#: src/Utility/Gtk/AboutWindow.vala:353 +#: src/Utility/Gtk/AboutWindow.vala:346 #, fuzzy msgid "Third Party Inclusions" msgstr "Tredjepartsverktyg" @@ -521,10 +516,6 @@ msgstr "Kopierade fil" msgid "Failed to copy file" msgstr "Kunde inte kopiera filen" -#: src/Utility/TeeJee.FileSystem.vala:157 -msgid "File not found" -msgstr "Filen kan inte hittas" - #: src/Utility/TeeJee.FileSystem.vala:171 msgid "File moved" msgstr "Fil flyttad" diff --git a/po/tr.po b/po/tr.po index 56c1c124..6d99e5ae 100644 --- a/po/tr.po +++ b/po/tr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-04 22:34-0500\n" +"POT-Creation-Date: 2023-03-06 01:11-0500\n" "PO-Revision-Date: 2022-08-06 16:48+0300\n" "Last-Translator: Sabri Ünal \n" "Language-Team: Turkish\n" @@ -13,135 +13,136 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Poedit 3.1.1\n" -#: src/Common/LinuxKernel.vala:87 +#: src/Common/LinuxKernel.vala:88 msgid "Distribution" msgstr "Dağıtım" -#: src/Common/LinuxKernel.vala:101 +#: src/Common/LinuxKernel.vala:103 msgid "Architecture" msgstr "Sistem mimarisi" -#: src/Common/LinuxKernel.vala:256 -msgid "cached" -msgstr "" - -#: src/Common/LinuxKernel.vala:268 -msgid "GET" -msgstr "" - -#: src/Common/LinuxKernel.vala:296 +#: src/Common/LinuxKernel.vala:295 #, fuzzy msgid "Fetching individual kernel indexes..." msgstr "İçerik dizini alınıyor..." -#: src/Common/LinuxKernel.vala:338 +#: src/Common/LinuxKernel.vala:339 #, fuzzy msgid "Fetching main index from" msgstr "İçerik dizini alınıyor..." -#: src/Common/LinuxKernel.vala:599 +#: src/Common/LinuxKernel.vala:593 msgid "Could not find running kernel in list!" msgstr "Çalışan sürüm listede bulunamadı!" -#: src/Common/LinuxKernel.vala:605 +#: src/Common/LinuxKernel.vala:599 msgid "Could not find any kernels to uninstall" msgstr "Kaldırılacak çekirdek bulunamadı" -#: src/Common/LinuxKernel.vala:614 +#: src/Common/LinuxKernel.vala:608 msgid "The following kernels will be uninstalled:" msgstr "Aşağıdaki çekirdekler kaldırılacak:" -#: src/Common/LinuxKernel.vala:621 +#: src/Common/LinuxKernel.vala:612 msgid "Continue ?" msgstr "Devam edilsin mi?" -#: src/Common/LinuxKernel.vala:644 src/Console/AppConsole.vala:298 +#: src/Common/LinuxKernel.vala:635 src/Console/AppConsole.vala:298 msgid "Latest update" msgstr "Son güncelleme" # Point burada point release anlamında kullanılıyor. Örneğin 5.10.x sayısının en sonundaki x rakamı point release/nokta sürüm oluyor. -#: src/Common/LinuxKernel.vala:655 src/Console/AppConsole.vala:305 +#: src/Common/LinuxKernel.vala:646 src/Console/AppConsole.vala:305 msgid "Latest point update" msgstr "Son nokta güncellemesi" -#: src/Common/LinuxKernel.vala:663 src/Console/AppConsole.vala:310 +#: src/Common/LinuxKernel.vala:654 src/Console/AppConsole.vala:310 #: src/Console/AppConsole.vala:365 msgid "No updates found" msgstr "Güncelleme bulunamadı" -#: src/Common/LinuxKernel.vala:673 +#: src/Common/LinuxKernel.vala:664 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Linux Çekirdek Sürümü %s Kurulsun mu? (e/h): " -#: src/Common/LinuxKernel.vala:924 +#: src/Common/LinuxKernel.vala:896 msgid "Packages Available" msgstr "Mevcut Paketler" -#: src/Common/LinuxKernel.vala:932 +#: src/Common/LinuxKernel.vala:904 msgid "Packages Installed" msgstr "Kurulu Paketler" -#: src/Common/LinuxKernel.vala:1011 +#: src/Common/LinuxKernel.vala:918 src/Utility/TeeJee.FileSystem.vala:157 +msgid "File not found" +msgstr "Dosya bulunamadı" + +#: src/Common/LinuxKernel.vala:984 msgid "Available Kernels" msgstr "Mevcut Çekirdekler" -#: src/Common/LinuxKernel.vala:1018 src/Gtk/MainWindow.vala:151 +#: src/Common/LinuxKernel.vala:991 src/Gtk/MainWindow.vala:151 msgid "Installed" msgstr "Kurulu" -#: src/Common/LinuxKernel.vala:1018 src/Gtk/MainWindow.vala:151 -#: src/Gtk/MainWindow.vala:572 src/Gtk/MainWindow.vala:586 +#: src/Common/LinuxKernel.vala:991 src/Gtk/MainWindow.vala:151 +#: src/Gtk/MainWindow.vala:523 src/Gtk/MainWindow.vala:537 msgid "Running" msgstr "Çalışıyor" -#: src/Common/LinuxKernel.vala:1055 +#: src/Common/LinuxKernel.vala:1028 msgid "Downloading" msgstr "İndiriliyor" -#: src/Common/LinuxKernel.vala:1074 +#: src/Common/LinuxKernel.vala:1047 msgid "OK" msgstr "Tamam" -#: src/Common/LinuxKernel.vala:1079 +#: src/Common/LinuxKernel.vala:1050 msgid "ERROR" msgstr "HATA" -#: src/Common/LinuxKernel.vala:1093 +#: src/Common/LinuxKernel.vala:1064 msgid "This kernel is already installed." msgstr "Bu çekirdek zaten kurulu." -#: src/Common/LinuxKernel.vala:1129 +#: src/Common/LinuxKernel.vala:1102 #, fuzzy msgid "Uninstalling selected kernels" msgstr "Belirtilen çekirdeğini kaldır" -#: src/Common/LinuxKernel.vala:1135 +#: src/Common/LinuxKernel.vala:1108 msgid "requested" msgstr "" -#: src/Common/LinuxKernel.vala:1138 +#: src/Common/LinuxKernel.vala:1111 msgid "skipping the currently booted kernel" msgstr "" -#: src/Common/LinuxKernel.vala:1154 +#: src/Common/LinuxKernel.vala:1127 msgid "found" msgstr "" -#: src/Common/LinuxKernel.vala:1157 +#: src/Common/LinuxKernel.vala:1130 #, fuzzy msgid "No packages to un-install!" msgstr "Kurulu Paketler" -#: src/Common/Main.vala:260 +#: src/Common/Main.vala:259 msgid "Called from" msgstr "Çağrı konumu" -#: src/Common/Main.vala:294 +#: src/Common/Main.vala:293 msgid "Notifications are disabled" msgstr "Bildirimler devre dışı bırakılmış" -#: src/Common/Package.vala:134 src/Common/Package.vala:198 +#: src/Common/Main.vala:332 src/Gtk/MainWindow.vala:638 +#, fuzzy +msgid "Can not reach" +msgstr "Dosya okunamadı" + +#: src/Common/Package.vala:131 src/Common/Package.vala:196 #, c-format msgid "File not found: %s" msgstr "%s dosyası bulunamadı" @@ -306,64 +307,58 @@ msgstr "Durum" msgid "Uninstall" msgstr "Kaldır" -#: src/Gtk/MainWindow.vala:325 src/Gtk/MainWindow.vala:370 -#: src/Gtk/MainWindow.vala:616 -msgid "DONE" -msgstr "" - -#: src/Gtk/MainWindow.vala:333 +#: src/Gtk/MainWindow.vala:302 msgid "Changes" msgstr "Değişiklikler" -#: src/Gtk/MainWindow.vala:344 +#: src/Gtk/MainWindow.vala:323 msgid "Uninstall Old" msgstr "Eskileri Kaldır" -#: src/Gtk/MainWindow.vala:345 +#: src/Gtk/MainWindow.vala:324 msgid "Uninstall kernels older than running kernel" msgstr "Çalışan çekirdekten daha eski çekirdekleri kaldır" -#: src/Gtk/MainWindow.vala:378 +#: src/Gtk/MainWindow.vala:329 msgid "Reload" msgstr "" -#: src/Gtk/MainWindow.vala:391 src/Gtk/SettingsDialog.vala:50 +#: src/Gtk/MainWindow.vala:334 src/Gtk/SettingsDialog.vala:50 msgid "Settings" msgstr "Ayarlar" -#: src/Gtk/MainWindow.vala:413 +#: src/Gtk/MainWindow.vala:339 msgid "About" msgstr "Hakkında" -#: src/Gtk/MainWindow.vala:418 +#: src/Gtk/MainWindow.vala:344 msgid "Exit" msgstr "" -#: src/Gtk/MainWindow.vala:470 +#: src/Gtk/MainWindow.vala:412 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Ubuntu tabanlı dağıtımlar için çekirdek güncelleme aracı" -#: src/Gtk/MainWindow.vala:471 +#: src/Gtk/MainWindow.vala:413 msgid "Forked" msgstr "Çatallandı" -#: src/Gtk/MainWindow.vala:471 +#: src/Gtk/MainWindow.vala:413 msgid "Original" msgstr "Özgün" -#: src/Gtk/MainWindow.vala:500 -#, fuzzy -msgid "Refreshing..." -msgstr "Yenileniyor..." +#: src/Gtk/MainWindow.vala:451 +msgid "Updating cached indexes" +msgstr "" -#: src/Gtk/MainWindow.vala:582 +#: src/Gtk/MainWindow.vala:533 msgid "available" msgstr "mevcut" -#: src/Gtk/MainWindow.vala:625 -#, fuzzy -msgid "Can not reach" -msgstr "Dosya okunamadı" +#: src/Gtk/MainWindow.vala:567 src/Gtk/MainWindow.vala:601 +#: src/Gtk/MainWindow.vala:629 +msgid "DONE" +msgstr "" #: src/Gtk/ProgressWindow.vala:126 src/Gtk/TerminalWindow.vala:148 msgid "Cancel" @@ -433,39 +428,39 @@ msgstr "saniye" msgid "Max concurrent downloads" msgstr "Azami eşzamanlı indirme" -#: src/Gtk/TerminalWindow.vala:158 src/Utility/Gtk/AboutWindow.vala:294 +#: src/Gtk/TerminalWindow.vala:158 src/Utility/Gtk/AboutWindow.vala:287 msgid "Close" msgstr "Kapat" -#: src/Utility/Gtk/AboutWindow.vala:271 src/Utility/Gtk/AboutWindow.vala:288 +#: src/Utility/Gtk/AboutWindow.vala:264 src/Utility/Gtk/AboutWindow.vala:281 msgid "Credits" msgstr "Hazırlayanlar" -#: src/Utility/Gtk/AboutWindow.vala:284 +#: src/Utility/Gtk/AboutWindow.vala:277 msgid "Back" msgstr "Geri" -#: src/Utility/Gtk/AboutWindow.vala:313 +#: src/Utility/Gtk/AboutWindow.vala:306 msgid "Authors" msgstr "Yazar" -#: src/Utility/Gtk/AboutWindow.vala:321 +#: src/Utility/Gtk/AboutWindow.vala:314 msgid "Contributions" msgstr "Destek verenler" -#: src/Utility/Gtk/AboutWindow.vala:329 +#: src/Utility/Gtk/AboutWindow.vala:322 msgid "Artists" msgstr "Sanatçılar" -#: src/Utility/Gtk/AboutWindow.vala:337 +#: src/Utility/Gtk/AboutWindow.vala:330 msgid "Translators" msgstr "Çevirenler" -#: src/Utility/Gtk/AboutWindow.vala:345 +#: src/Utility/Gtk/AboutWindow.vala:338 msgid "Documenters" msgstr "Belgelendirenler" -#: src/Utility/Gtk/AboutWindow.vala:353 +#: src/Utility/Gtk/AboutWindow.vala:346 msgid "Third Party Inclusions" msgstr "Üçüncü Taraf Eklemeler" @@ -501,10 +496,6 @@ msgstr "Dosya kopyalandı" msgid "Failed to copy file" msgstr "Dosya kopyalanamadı" -#: src/Utility/TeeJee.FileSystem.vala:157 -msgid "File not found" -msgstr "Dosya bulunamadı" - #: src/Utility/TeeJee.FileSystem.vala:171 msgid "File moved" msgstr "Dosya taşındı" diff --git a/po/uk.po b/po/uk.po index 6b8128a8..abdd651a 100644 --- a/po/uk.po +++ b/po/uk.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-02-23 17:56-0500\n" +"POT-Creation-Date: 2023-03-06 01:11-0500\n" "PO-Revision-Date: 2019-07-25 11:00+0300\n" "Last-Translator: Serhii Golovko \n" "Language-Team: Ukranian\n" @@ -13,376 +13,353 @@ msgstr "" "X-Launchpad-Export-Date: 2016-12-13 11:48+0000\n" "X-Generator: Poedit 2.2.1\n" -#: src/Common/LinuxKernel.vala:87 +#: src/Common/LinuxKernel.vala:88 msgid "Distribution" msgstr "Дистрибутив" -#: src/Common/LinuxKernel.vala:101 +#: src/Common/LinuxKernel.vala:103 msgid "Architecture" msgstr "Системна архитектура" -#: src/Common/LinuxKernel.vala:290 -msgid "Fetching index..." +#: src/Common/LinuxKernel.vala:295 +#, fuzzy +msgid "Fetching individual kernel indexes..." msgstr "Отримання індекса ..." -#: src/Common/LinuxKernel.vala:329 -msgid "Fetching index from kernel.ubuntu.com..." -msgstr "Отримання індекса з kernel.ubuntu.com..." +#: src/Common/LinuxKernel.vala:339 +#, fuzzy +msgid "Fetching main index from" +msgstr "Отримання індекса ..." -#: src/Common/LinuxKernel.vala:585 +#: src/Common/LinuxKernel.vala:593 msgid "Could not find running kernel in list!" msgstr "Не вдалося знайти запущене ядро у списку!" -#: src/Common/LinuxKernel.vala:591 +#: src/Common/LinuxKernel.vala:599 msgid "Could not find any kernels to uninstall" msgstr "Не вдалося знайти жодне ядро для вилучення" -#: src/Common/LinuxKernel.vala:600 +#: src/Common/LinuxKernel.vala:608 msgid "The following kernels will be uninstalled:" msgstr "Наступні ядра будуть видалені:" -#: src/Common/LinuxKernel.vala:607 +#: src/Common/LinuxKernel.vala:612 msgid "Continue ?" msgstr "Продовжувати ?" -#: src/Common/LinuxKernel.vala:633 src/Console/AppConsole.vala:314 +#: src/Common/LinuxKernel.vala:635 src/Console/AppConsole.vala:298 msgid "Latest update" msgstr "Останнє оновлення" -#: src/Common/LinuxKernel.vala:644 src/Console/AppConsole.vala:321 +#: src/Common/LinuxKernel.vala:646 src/Console/AppConsole.vala:305 msgid "Latest point update" msgstr "Остання точка оновлення" -#: src/Common/LinuxKernel.vala:652 src/Console/AppConsole.vala:326 -#: src/Console/AppConsole.vala:387 +#: src/Common/LinuxKernel.vala:654 src/Console/AppConsole.vala:310 +#: src/Console/AppConsole.vala:365 msgid "No updates found" msgstr "Оновлень не знайдено" -#: src/Common/LinuxKernel.vala:662 +#: src/Common/LinuxKernel.vala:664 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Встановити Ядро Версії %s ? (так/ні): " -#: src/Common/LinuxKernel.vala:912 +#: src/Common/LinuxKernel.vala:896 msgid "Packages Available" msgstr "Доступні пакети" -#: src/Common/LinuxKernel.vala:920 +#: src/Common/LinuxKernel.vala:904 msgid "Packages Installed" msgstr "Встановлені пакети" -#: src/Common/LinuxKernel.vala:1000 +#: src/Common/LinuxKernel.vala:918 src/Utility/TeeJee.FileSystem.vala:157 +msgid "File not found" +msgstr "Файл не знайдено" + +#: src/Common/LinuxKernel.vala:984 msgid "Available Kernels" msgstr "Доступні ядра" -#: src/Common/LinuxKernel.vala:1007 src/Gtk/MainWindow.vala:189 +#: src/Common/LinuxKernel.vala:991 src/Gtk/MainWindow.vala:151 msgid "Installed" msgstr "Встановлено" -#: src/Common/LinuxKernel.vala:1007 src/Gtk/MainWindow.vala:189 -#: src/Gtk/MainWindow.vala:610 src/Gtk/MainWindow.vala:624 +#: src/Common/LinuxKernel.vala:991 src/Gtk/MainWindow.vala:151 +#: src/Gtk/MainWindow.vala:523 src/Gtk/MainWindow.vala:537 msgid "Running" msgstr "Використовується" -#: src/Common/LinuxKernel.vala:1044 +#: src/Common/LinuxKernel.vala:1028 msgid "Downloading" msgstr "Завантаження" -#: src/Common/LinuxKernel.vala:1063 src/Gtk/CustomMessageDialog.vala:150 -#: src/Gtk/CustomMessageDialog.vala:154 +#: src/Common/LinuxKernel.vala:1047 msgid "OK" msgstr "Добре" -#: src/Common/LinuxKernel.vala:1068 +#: src/Common/LinuxKernel.vala:1050 msgid "ERROR" msgstr "ПОМИЛКА" -#: src/Common/LinuxKernel.vala:1082 +#: src/Common/LinuxKernel.vala:1064 msgid "This kernel is already installed." msgstr "Це ядро вже встановлено." +#: src/Common/LinuxKernel.vala:1102 +#, fuzzy +msgid "Uninstalling selected kernels" +msgstr "Видаліть конкретні ядра" + #: src/Common/LinuxKernel.vala:1108 -msgid "Installation completed. A reboot is required to use the new kernel." +msgid "requested" msgstr "" -"Установка завершена. Для використання нового ядра потрібна перезавантаження." #: src/Common/LinuxKernel.vala:1111 -msgid "Installation completed with errors" -msgstr "Установка завершена з помилками" - -#: src/Common/LinuxKernel.vala:1132 -msgid "" -"Selected kernel is currently running and cannot be un-installed.\n" -" Install another kernel before un-installing this one." +msgid "skipping the currently booted kernel" msgstr "" -"Це ядро зараз працює і не може бути видалено. \n" -"Встановіть інше ядро, перш ніж видаляти його." -#: src/Common/LinuxKernel.vala:1137 -msgid "Preparing to uninstall selected kernels" -msgstr "Підготовка до видалення вибраних ядер" - -#: src/Common/LinuxKernel.vala:1168 src/Common/LinuxKernel.vala:1215 -msgid "Un-install completed" -msgstr "Видалення завершено" - -#: src/Common/LinuxKernel.vala:1171 src/Common/LinuxKernel.vala:1218 -msgid "Un-install completed with errors" -msgstr "Видалення завершено з помилками" - -#: src/Common/LinuxKernel.vala:1184 -msgid "" -"This kernel is currently running and cannot be un-installed.\n" -" Install another kernel before un-installing this one." +#: src/Common/LinuxKernel.vala:1127 +msgid "found" msgstr "" -"Це ядро наразі працює і його неможливо видалити.\n" -" Встановіть інше ядро перед тим, як видалити его." -#: src/Common/Main.vala:241 +#: src/Common/LinuxKernel.vala:1130 +#, fuzzy +msgid "No packages to un-install!" +msgstr "Встановлені пакети" + +#: src/Common/Main.vala:259 msgid "Called from" msgstr "Викликано з" -#: src/Common/Main.vala:275 +#: src/Common/Main.vala:293 msgid "Notifications are disabled" msgstr "Повідомлення вимкнено" -#: src/Common/Package.vala:134 src/Common/Package.vala:198 +#: src/Common/Main.vala:332 src/Gtk/MainWindow.vala:638 +msgid "Can not reach" +msgstr "" + +#: src/Common/Package.vala:131 src/Common/Package.vala:196 #, c-format msgid "File not found: %s" msgstr "Файл не знайдено: %s" -#: src/Console/AppConsole.vala:62 src/Gtk/AppGtk.vala:152 +#: src/Console/AppConsole.vala:68 src/Gtk/AppGtk.vala:141 msgid "Syntax" msgstr "Синтаксис" -#: src/Console/AppConsole.vala:64 +#: src/Console/AppConsole.vala:70 msgid "Commands" msgstr "Команди" -#: src/Console/AppConsole.vala:66 +#: src/Console/AppConsole.vala:72 msgid "Check for kernel updates" msgstr "Перевірити оновлення ядра" -#: src/Console/AppConsole.vala:67 +#: src/Console/AppConsole.vala:73 msgid "Check for kernel updates and notify current user" msgstr "Перевірте наявність оновлень ядра та повідомте поточного користувача" -#: src/Console/AppConsole.vala:68 +#: src/Console/AppConsole.vala:74 msgid "List all available mainline kernels" msgstr "Список усіх доступних основних ядер" -#: src/Console/AppConsole.vala:69 +#: src/Console/AppConsole.vala:75 msgid "List installed kernels" msgstr "Список встановлених ядер" -#: src/Console/AppConsole.vala:70 +#: src/Console/AppConsole.vala:76 msgid "Install latest mainline kernel" msgstr "Встановіть останнє основне ядро" -#: src/Console/AppConsole.vala:71 +#: src/Console/AppConsole.vala:77 msgid "Install latest point update for current series" msgstr "Встановіть останню точку оновлення для поточної серії" -#: src/Console/AppConsole.vala:72 +#: src/Console/AppConsole.vala:78 msgid "Install specified mainline kernel" msgstr "Встановіть конкретне основне ядро" -#: src/Console/AppConsole.vala:73 +#: src/Console/AppConsole.vala:79 msgid "Uninstall specified kernel" msgstr "Видаліть конкретні ядра" -#: src/Console/AppConsole.vala:74 +#: src/Console/AppConsole.vala:80 msgid "Uninstall kernels older than the running kernel" msgstr "Видаліть ядра, старші за запущене ядро" -#: src/Console/AppConsole.vala:75 +#: src/Console/AppConsole.vala:81 msgid "Download specified kernels" msgstr "Завантажте конкретні ядра" -#: src/Console/AppConsole.vala:76 -msgid "Remove files from application cache" -msgstr "Видалити файли з кешу програми" +#: src/Console/AppConsole.vala:82 +msgid "Delete cached info about available kernels" +msgstr "" -#: src/Console/AppConsole.vala:78 src/Gtk/AppGtk.vala:154 +#: src/Console/AppConsole.vala:84 src/Gtk/AppGtk.vala:143 msgid "Options" msgstr "Параметри" -#: src/Console/AppConsole.vala:80 +#: src/Console/AppConsole.vala:86 msgid "Include unstable and RC releases" msgstr "Включати нестабільні і RC" -#: src/Console/AppConsole.vala:81 src/Gtk/SettingsDialog.vala:163 -msgid "Hide unstable and RC releases" -msgstr "Приховати нестабільні і RC" +#: src/Console/AppConsole.vala:87 +#, fuzzy +msgid "Exclude unstable and RC releases" +msgstr "Включати нестабільні і RC" -#: src/Console/AppConsole.vala:82 +#: src/Console/AppConsole.vala:88 msgid "Enable verbose debugging output" msgstr "Увімкнути вивід налагодження" -#: src/Console/AppConsole.vala:83 +#: src/Console/AppConsole.vala:89 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "Так для всіх підказок (неінтерактивний режим)" -#: src/Console/AppConsole.vala:84 -msgid "Override user" -msgstr "Перевизначення користувача" - -#: src/Console/AppConsole.vala:87 +#: src/Console/AppConsole.vala:92 msgid "A version string taken from the output of --list" msgstr "Рядок версій, взятий з виводу --list" -#: src/Console/AppConsole.vala:88 +#: src/Console/AppConsole.vala:93 msgid "" "One or more version strings (comma-separated) taken from the output of --list" msgstr "Одна або кілька рядків версії (розділені комами) з виводу --list" -#: src/Console/AppConsole.vala:169 src/Gtk/AppGtk.vala:139 +#: src/Console/AppConsole.vala:173 src/Gtk/AppGtk.vala:127 msgid "Unknown option" msgstr "Невідомий параметр" -#: src/Console/AppConsole.vala:171 src/Console/AppConsole.vala:265 -#: src/Console/AppConsole.vala:294 +#: src/Console/AppConsole.vala:175 src/Console/AppConsole.vala:255 +#: src/Console/AppConsole.vala:284 msgid "Run" msgstr "Запуск" -#: src/Console/AppConsole.vala:171 +#: src/Console/AppConsole.vala:175 msgid "to list all options" msgstr "Показати усі параметри" -#: src/Console/AppConsole.vala:238 src/Console/AppConsole.vala:273 +#: src/Console/AppConsole.vala:227 src/Console/AppConsole.vala:263 msgid "No kernels specified" msgstr "Ядра не вказані" -#: src/Console/AppConsole.vala:244 +#: src/Console/AppConsole.vala:233 msgid "Multiple kernels selected for installation. Select only one." msgstr "Для встановлення вибрано кілька ядер. Виберіть лише одну." -#: src/Console/AppConsole.vala:262 src/Gtk/MainWindow.vala:100 +#: src/Console/AppConsole.vala:252 msgid "Could not find requested version" msgstr "Не вдалося знайти запитувану версію" -#: src/Console/AppConsole.vala:265 +#: src/Console/AppConsole.vala:255 msgid "and use a version string listed in first column" msgstr "і використовувати рядок версій, вказаний у першому стовпці" -#: src/Console/AppConsole.vala:293 +#: src/Console/AppConsole.vala:283 msgid "Command not specified" msgstr "Команда не вказана" -#: src/Console/AppConsole.vala:294 +#: src/Console/AppConsole.vala:284 msgid "to list all commands" msgstr "щоб відобразити всі команди" -#: src/Console/AppConsole.vala:360 +#: src/Console/AppConsole.vala:338 msgid "Show" msgstr "Показати" -#: src/Console/AppConsole.vala:365 src/Console/AppConsole.vala:377 +#: src/Console/AppConsole.vala:343 src/Console/AppConsole.vala:355 #, c-format msgid "Kernel %s Available" msgstr "Ядро %s Доступне" -#: src/Console/AppConsole.vala:367 src/Console/AppConsole.vala:379 -#: src/Gtk/MainWindow.vala:333 +#: src/Console/AppConsole.vala:345 src/Console/AppConsole.vala:357 +#: src/Gtk/MainWindow.vala:282 msgid "Install" msgstr "Встановити" -#: src/Gtk/AppGtk.vala:156 +#: src/Gtk/AppGtk.vala:141 +#, fuzzy +msgid "options" +msgstr "Параметри" + +#: src/Gtk/AppGtk.vala:145 msgid "Print debug information" msgstr "Роздрукувати зневадження" -#: src/Gtk/AppGtk.vala:157 +#: src/Gtk/AppGtk.vala:146 msgid "Show all options" msgstr "Показати усі параметри" -#: src/Gtk/CustomMessageDialog.vala:155 src/Gtk/ProgressWindow.vala:142 -#: src/Gtk/TerminalWindow.vala:148 -msgid "Cancel" -msgstr "Відміна" - -#: src/Gtk/CustomMessageDialog.vala:159 -msgid "Yes" -msgstr "Так" - -#: src/Gtk/CustomMessageDialog.vala:160 -msgid "No" -msgstr "Ні" - -#: src/Gtk/MainWindow.vala:146 +#: src/Gtk/MainWindow.vala:108 msgid "Kernel" msgstr "Ядро" -#: src/Gtk/MainWindow.vala:176 +#: src/Gtk/MainWindow.vala:138 msgid "Status" msgstr "Стан" -#: src/Gtk/MainWindow.vala:317 -msgid "Refresh" -msgstr "Оновити" - -#: src/Gtk/MainWindow.vala:324 src/Utility/TeeJee.System.vala:42 -#, fuzzy -msgid "Internet connection is not active" -msgstr "Інтернет з'єднання не активно." - -#: src/Gtk/MainWindow.vala:324 src/Gtk/MainWindow.vala:518 -#: src/Gtk/MainWindow.vala:634 -msgid "No Internet" -msgstr "Інтернет з'єднання відсутнє" - -#: src/Gtk/MainWindow.vala:344 +#: src/Gtk/MainWindow.vala:292 msgid "Uninstall" msgstr "Видалити" -#: src/Gtk/MainWindow.vala:377 src/Gtk/MainWindow.vala:410 -#: src/Gtk/MainWindow.vala:666 -msgid "Close window to exit..." -msgstr "Закрийте вікно, щоб вийти..." +#: src/Gtk/MainWindow.vala:302 +msgid "Changes" +msgstr "Зміни" -#: src/Gtk/MainWindow.vala:384 +#: src/Gtk/MainWindow.vala:323 msgid "Uninstall Old" msgstr "Видалити старе" -#: src/Gtk/MainWindow.vala:385 +#: src/Gtk/MainWindow.vala:324 msgid "Uninstall kernels older than running kernel" msgstr "Видалити ядра, старіші за запущене ядро" -#: src/Gtk/MainWindow.vala:417 -msgid "Changes" -msgstr "Зміни" +#: src/Gtk/MainWindow.vala:329 +msgid "Reload" +msgstr "" -#: src/Gtk/MainWindow.vala:428 src/Gtk/SettingsDialog.vala:50 +#: src/Gtk/MainWindow.vala:334 src/Gtk/SettingsDialog.vala:50 msgid "Settings" msgstr "Налаштування" -#: src/Gtk/MainWindow.vala:451 +#: src/Gtk/MainWindow.vala:339 msgid "About" msgstr "Про программу" -#: src/Gtk/MainWindow.vala:496 +#: src/Gtk/MainWindow.vala:344 +msgid "Exit" +msgstr "" + +#: src/Gtk/MainWindow.vala:412 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Програма оновлення ядра для дистрибутивів на базі Ubuntu" -#: src/Gtk/MainWindow.vala:497 +#: src/Gtk/MainWindow.vala:413 msgid "Forked" msgstr "Двоєний" -#: src/Gtk/MainWindow.vala:497 +#: src/Gtk/MainWindow.vala:413 msgid "Original" msgstr "Оригінал" -#: src/Gtk/MainWindow.vala:518 src/Gtk/MainWindow.vala:634 -msgid "Internet connection is not active." -msgstr "Інтернет з'єднання не активно." - -#: src/Gtk/MainWindow.vala:531 -msgid "Refreshing..." -msgstr "Оновлення..." +#: src/Gtk/MainWindow.vala:451 +msgid "Updating cached indexes" +msgstr "" -#: src/Gtk/MainWindow.vala:620 +#: src/Gtk/MainWindow.vala:533 msgid "available" msgstr "доступний" +#: src/Gtk/MainWindow.vala:567 src/Gtk/MainWindow.vala:601 +#: src/Gtk/MainWindow.vala:629 +msgid "DONE" +msgstr "" + +#: src/Gtk/ProgressWindow.vala:126 src/Gtk/TerminalWindow.vala:148 +msgid "Cancel" +msgstr "Відміна" + #: src/Gtk/SettingsDialog.vala:60 msgid "Notification" msgstr "Повідомлення" @@ -423,6 +400,10 @@ msgstr "Секунда(и)" msgid "Display" msgstr "Показ" +#: src/Gtk/SettingsDialog.vala:163 +msgid "Hide unstable and RC releases" +msgstr "Приховати нестабільні і RC" + #: src/Gtk/SettingsDialog.vala:177 msgid "Show N previous major versions " msgstr "Показати N попередніх основних версій " @@ -431,59 +412,55 @@ msgstr "Показати N попередніх основних версій " msgid "Other" msgstr "Інший" -#: src/Gtk/SettingsDialog.vala:200 -msgid "Skip internet connection check" -msgstr "Пропустити перевірку підключення до Інтернету" - -#: src/Gtk/SettingsDialog.vala:213 +#: src/Gtk/SettingsDialog.vala:203 msgid "Internet connection timeout in " msgstr "Час очікування підключення до Інтернету в " -#: src/Gtk/SettingsDialog.vala:228 +#: src/Gtk/SettingsDialog.vala:218 msgid "seconds" msgstr "секунди" -#: src/Gtk/SettingsDialog.vala:235 +#: src/Gtk/SettingsDialog.vala:225 msgid "Max concurrent downloads" msgstr "Максимальна кількість завантажень" -#: src/Gtk/TerminalWindow.vala:158 src/Utility/Gtk/AboutWindow.vala:294 +#: src/Gtk/TerminalWindow.vala:158 src/Utility/Gtk/AboutWindow.vala:287 msgid "Close" msgstr "Закрити" -#: src/Utility/Gtk/AboutWindow.vala:271 src/Utility/Gtk/AboutWindow.vala:288 +#: src/Utility/Gtk/AboutWindow.vala:264 src/Utility/Gtk/AboutWindow.vala:281 msgid "Credits" msgstr "Творці" -#: src/Utility/Gtk/AboutWindow.vala:284 +#: src/Utility/Gtk/AboutWindow.vala:277 msgid "Back" msgstr "Назад" -#: src/Utility/Gtk/AboutWindow.vala:313 +#: src/Utility/Gtk/AboutWindow.vala:306 msgid "Authors" msgstr "Автори" -#: src/Utility/Gtk/AboutWindow.vala:321 +#: src/Utility/Gtk/AboutWindow.vala:314 msgid "Contributions" msgstr "Внески" -#: src/Utility/Gtk/AboutWindow.vala:329 +#: src/Utility/Gtk/AboutWindow.vala:322 msgid "Artists" msgstr "Художники" -#: src/Utility/Gtk/AboutWindow.vala:337 +#: src/Utility/Gtk/AboutWindow.vala:330 msgid "Translators" msgstr "Перекладачі" -#: src/Utility/Gtk/AboutWindow.vala:345 +#: src/Utility/Gtk/AboutWindow.vala:338 msgid "Documenters" msgstr "Документатори" -#: src/Utility/Gtk/AboutWindow.vala:353 +#: src/Utility/Gtk/AboutWindow.vala:346 msgid "Third Party Inclusions" msgstr "Включення третіх осіб" -#: src/Utility/Gtk/GtkHelper.vala:59 +#: src/Utility/Gtk/GtkHelper.vala:49 msgid "Missing Icon" msgstr "Нема значка" @@ -515,10 +492,6 @@ msgstr "Не вдалося скопіювати файл" msgid "Failed to copy file" msgstr "Не вдалося скопіювати файл" -#: src/Utility/TeeJee.FileSystem.vala:157 -msgid "File not found" -msgstr "Файл не знайдено" - #: src/Utility/TeeJee.FileSystem.vala:171 msgid "File moved" msgstr "Файл переміщено" diff --git a/src/Common/DownloadManager.vala b/src/Common/DownloadManager.vala index 0c7349e9..ba694388 100644 --- a/src/Common/DownloadManager.vala +++ b/src/Common/DownloadManager.vala @@ -5,7 +5,7 @@ using TeeJee.ProcessHelper; using TeeJee.Misc; -public class DownloadTask : AsyncTask{ +public class DownloadTask : AsyncTask { // settings public bool status_in_kb = false; @@ -19,7 +19,7 @@ public class DownloadTask : AsyncTask{ private Gee.HashMap regex = null; - public DownloadTask(){ + public DownloadTask() { base(); @@ -47,23 +47,22 @@ public class DownloadTask : AsyncTask{ // execution ---------------------------- - public void add_to_queue(DownloadItem item){ + public void add_to_queue(DownloadItem item) { item.task = this; - + downloads.add(item); // set gid - 16 character hex string in lowercase - - do{ + do { item.gid = random_string(16,"0123456789abcdef").down(); } while (map.has_key(item.gid_key)); - + map[item.gid_key] = item; } - public void clear_queue(){ + public void clear_queue() { downloads.clear(); map.clear(); } @@ -74,7 +73,7 @@ public class DownloadTask : AsyncTask{ begin(); - if (status == AppStatus.RUNNING){ + if (status == AppStatus.RUNNING) { } } @@ -89,7 +88,7 @@ public class DownloadTask : AsyncTask{ log_debug("working_dir="+working_dir); string list = ""; string list_file = working_dir+"/download.list"; - foreach(var item in downloads){ + foreach (var item in downloads) { list += item.source_uri + "\n" + " gid=" + item.gid + "\n" + " dir=" + item.download_dir + "\n" @@ -100,24 +99,25 @@ public class DownloadTask : AsyncTask{ string cmd = "aria2c" + " --no-netrc true" + " -i '%s'".printf(escape_single_quote(list_file)) - + " --show-console-readout=false" + " --summary-interval=1" + " --auto-save-interval=1" - + " --human-readable=false" + " --enable-color=false" + " --allow-overwrite" + " --connect-timeout=%d".printf(connect_timeout) + " --timeout=%d".printf(timeout_secs) + " --max-concurrent-downloads=%d".printf(max_concurrent) + " --max-file-not-found=3" - + " --retry-wait=2"; + + " --retry-wait=2" + + " --show-console-readout=false" + + " --human-readable=false" + ; log_debug(cmd); return cmd; } - public override void parse_stdout_line(string out_line){ + public override void parse_stdout_line(string out_line) { if (is_terminated) { return; } @@ -125,7 +125,7 @@ public class DownloadTask : AsyncTask{ update_progress_parse_console_output(out_line); } - public override void parse_stderr_line(string err_line){ + public override void parse_stderr_line(string err_line) { if (is_terminated) { return; } @@ -160,7 +160,7 @@ public class DownloadTask : AsyncTask{ int64 rate = int64.parse(match.fetch(3).strip()); //string file = match.fetch(4).strip(); - if (map.has_key(gid_key)){ + if (map.has_key(gid_key)) { map[gid_key].rate = rate; map[gid_key].status = status; } @@ -178,10 +178,10 @@ public class DownloadTask : AsyncTask{ var rate = int64.parse(match.fetch(5).strip()); var eta = match.fetch(6).strip(); - if (map.has_key(gid_key)){ + if (map.has_key(gid_key)) { var item = map[gid_key]; item.bytes_received = received; - if (item.bytes_total == 0){ + if (item.bytes_total == 0) { item.bytes_total = total; } item.rate = rate; @@ -191,7 +191,7 @@ public class DownloadTask : AsyncTask{ status_line = item.status_line(); } - //log_debug(status_line); + log_debug(status_line); } else { //log_debug("unmatched: '%s'".printf(line)); @@ -200,7 +200,7 @@ public class DownloadTask : AsyncTask{ return true; } - protected override void finish_task(){ + protected override void finish_task() { } } @@ -223,34 +223,33 @@ public class DownloadItem : GLib.Object public DownloadTask task = null; public string file_path{ - owned get{ + owned get { return download_dir+"/"+file_name; } } public string gid_key{ - owned get{ + owned get { return gid.substring(0,6);; } } - public DownloadItem(string _source_uri, string _download_dir, string _file_name){ - + public DownloadItem(string _source_uri, string _download_dir, string _file_name) { + file_name = _file_name; download_dir = _download_dir; source_uri = _source_uri; } - public string status_line(){ + public string status_line() { - if (task.status_in_kb){ + if (task.status_in_kb) { return "%s / %s, %s/s (%s)".printf( format_file_size(bytes_received, false, "", true, 1), format_file_size(bytes_total, false, "", true, 1), format_file_size(rate, false, "", true, 1), eta).replace("\n",""); - } - else{ + } else { return "%s / %s, %s/s (%s)".printf( format_file_size(bytes_received), format_file_size(bytes_total), diff --git a/src/Common/LinuxKernel.vala b/src/Common/LinuxKernel.vala index 3f56dc16..740fe0e8 100644 --- a/src/Common/LinuxKernel.vala +++ b/src/Common/LinuxKernel.vala @@ -78,11 +78,12 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { // dep: lsb_release public static string check_distribution() { + log_debug("check_distribution()"); string dist = ""; string std_out, std_err; int status = exec_sync("lsb_release -sd", out std_out, out std_err); - if ((status == 0) && (std_out != null)){ + if ((status == 0) && (std_out != null)) { dist = std_out.strip(); log_msg(_("Distribution") + ": %s".printf(dist)); } @@ -92,11 +93,12 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { // dep: dpkg public static string check_package_architecture() { + log_debug("check_package_architecture()"); string arch = ""; string std_out, std_err; int status = exec_sync("dpkg --print-architecture", out std_out, out std_err); - if ((status == 0) && (std_out != null)){ + if ((status == 0) && (std_out != null)) { arch = std_out.strip(); log_msg(_("Architecture") + ": %s".printf(arch)); } @@ -106,6 +108,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { // dep: uname public static string check_running_kernel() { + log_debug("check_running_kernel()"); string ver = ""; string std_out; @@ -119,7 +122,8 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { } public static void initialize_regex() { - try{ + //log_debug("initialize_regex()"); + try { //linux-headers-3.4.75-030475-generic_3.4.75-030475.201312201255_amd64.deb rex_header = new Regex("(?:" + NATIVE_ARCH + """/|>)?linux-headers-[a-zA-Z0-9.\-_]*-generic_[a-zA-Z0-9.\-]*_""" + NATIVE_ARCH + ".deb"); @@ -134,8 +138,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { //linux-image-extra-3.4.75-030475-generic_3.4.75-030475.201312201255_amd64.deb rex_modules = new Regex("(?:" + NATIVE_ARCH + """/|>)?linux-modules-[a-zA-Z0-9.\-_]*-generic_[a-zA-Z0-9.\-]*_""" + NATIVE_ARCH + ".deb"); - } - catch (Error e) { + } catch (Error e) { log_error (e.message); } } @@ -150,16 +153,17 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { } public static void delete_cache() { - log_debug("delete_cache() deleting: \"%s\"".printf(CACHE_DIR)); + log_debug("delete_cache() '%s'".printf(CACHE_DIR)); kernel_list.clear(); - if (dir_exists(CACHE_DIR)){ + if (dir_exists(CACHE_DIR)) { bool ok = dir_delete(CACHE_DIR); if (ok) log_msg("Deleted '%s'".printf(CACHE_DIR)); } } // constructor - public LinuxKernel(string _name, bool _is_mainline){ + public LinuxKernel(string _name, bool _is_mainline) { + //log_debug("LinuxKernel("+_name+")"); // _name, kname includes the leading "v" and everything after the version number // same as what's in the urls on the kernel ppa index.html @@ -206,23 +210,18 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { } private static void query_thread(owned Notifier? notifier) { + log_debug("query_thread()"); App.progress_total = 1; App.progress_count = 0; var timer = timer_start(); long count = 0; - log_debug("query_thread() App.show_prev_majors: %d".printf(App.show_prev_majors)); - log_debug("query_thread() App.hide_unstable: "+App.hide_unstable.to_string()); - - bool is_connected = App.check_internet_connectivity(); - - if (is_connected) download_index(); + // download the main index.html listing all kernels + download_index(); load_index(); - // TODO: Implement locking for multiple download threads - - // download per-kernel index.html and CHANGES + // download the per-kernel index.html and CHANGES // init the progress display status_line = ""; @@ -233,8 +232,8 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { highest_maj = find_lowest_major_version_installed(); // determine the size of the job for the percent-done display - foreach(var k in kernel_list){ - if(!k.is_installed){ + foreach (var k in kernel_list){ + if(!k.is_installed) { if (k.version_maj < highest_maj-App.show_prev_majors) continue; if (App.hide_unstable && k.is_unstable) continue; } @@ -248,12 +247,12 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { var downloads = new Gee.ArrayList(); // add files to download list, and add kernels to kernel list - foreach(var k in kernel_list) { + foreach (var k in kernel_list) { if (cancelled) break; // skip some kernels for various reasons if (k.cached_page_exists) { - log_debug(k.version_main+" "+_("cached")); + //log_debug(k.version_main+" "+_("cached")); // load the index.html files we already had in cache k.load_cached_page(); continue; @@ -265,7 +264,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { if (App.hide_unstable && k.is_unstable) continue; } - log_debug(k.version_main+" "+_("GET")); + //log_debug(k.version_main+" "+_("GET")); // add index.html to download list var item = new DownloadItem(k.cached_page_uri, file_parent(k.cached_page), file_basename(k.cached_page)); @@ -281,11 +280,11 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { } // process the download list - if ((downloads.size > 0) && is_connected){ + if ((downloads.size > 0) && App.connection_status) { var mgr = new DownloadTask(); // add download list to queue - foreach(var item in downloads) mgr.add_to_queue(item); + foreach (var item in downloads) mgr.add_to_queue(item); mgr.status_in_kb = true; mgr.prg_count_total = progress_total; @@ -306,7 +305,8 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { print_progress_bar_finish(); // load the index.html files we just added to cache - foreach(var k in kernels_to_update) k.load_cached_page(); + foreach (var k in kernels_to_update) k.load_cached_page(); + if (notifier != null) notifier(timer, ref count); } @@ -323,6 +323,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { private static bool download_index() { check_if_initialized(); + if (!App.check_internet_connectivity()) return false; if (!file_exists(index_page)) App.index_is_fresh=false; if (App.index_is_fresh) return true; @@ -354,35 +355,31 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { } // read the main index.html listing all kernels - // https://kernel.ubuntu.com/~kernel-ppa/mainline/ - private static void load_index(){ - - kernel_list.clear(); + private static void load_index() { + log_debug("load_index()"); if (!file_exists(index_page)) return; string txt = file_read(index_page); + kernel_list.clear(); - //var list = new Gee.ArrayList(); - - try{ + try { // v3.0.16-oneiric/ - var rex = new Regex("""([a-zA-Z0-9\-._]+)[\/]*<\/a>"""); + var rex = new Regex("""v([a-zA-Z0-9\-._]+)[\/]*<\/a>"""); MatchInfo match; - // for each line in the file... - foreach(string line in txt.split("\n")){ - // find only the lines with a link - if (rex.match(line, 0, out match)){ - // ignore the links that don't start with "v" - if (!match.fetch(2).has_prefix("v")) continue; - // - var k = new LinuxKernel(match.fetch(1), true); - kernel_list.add(k); - } + foreach (string line in txt.split("\n")) { + //log_debug(line); + if (!rex.match(line, 0, out match)) continue; + //log_debug(line); + //log_debug(match.fetch(0)); // v3.1.8-precise/ + //log_debug(match.fetch(1)); // v3.1.8-precise/ the actual url from the href + //log_debug(match.fetch(2)); // 3.1.8-precise the display part, the leading v and trailing / are missing because they're not inside the 2nd () in the regex + var k = new LinuxKernel(match.fetch(1), true); + kernel_list.add(k); } - kernel_list.sort((a,b)=>{ + kernel_list.sort((a,b) => { return a.compare_to(b) * -1; }); } @@ -390,14 +387,12 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { log_error (e.message); } - //kernel_list = list; } - public static void check_installed(){ - + public static void check_installed() { log_debug("check_installed()"); - log_msg(string.nfill(70, '-')); + //log_msg(string.nfill(70, '-')); // foreach(var k in kernel_list){ // k.is_installed = false; @@ -408,9 +403,9 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { var pkg_versions = new Gee.ArrayList(); - foreach(var pkg in pkg_list_installed.values){ - if (pkg.pname.contains("linux-image")){ - if (!pkg_versions.contains(pkg.version_installed)){ + foreach (var pkg in pkg_list_installed.values) { + if (pkg.pname.contains("linux-image")) { + if (!pkg_versions.contains(pkg.version_installed)) { pkg_versions.add(pkg.version_installed); @@ -422,8 +417,8 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { pkern.set_apt_pkg_list(); bool found = false; - foreach(var k in kernel_list){ - if (k.version_main == pkern.version_main){ + foreach (var k in kernel_list) { + if (k.version_main == pkern.version_main) { found = true; k.apt_pkg_list = pkern.apt_pkg_list; break; @@ -435,8 +430,8 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { } } - foreach (string pkg_version in pkg_versions){ - foreach(var k in kernel_list){ + foreach (string pkg_version in pkg_versions) { + foreach (var k in kernel_list) { if (k.version_package == pkg_version) k.is_installed = true; } } @@ -453,13 +448,13 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { kernel_active = null; // scan mainline kernels - foreach(var k in kernel_list){ + foreach (var k in kernel_list) { if (!k.is_valid) continue; if (!k.is_mainline) continue; if (k.version_package.length > 0) { string ver_pkg_short = k.version_package[0 : k.version_package.last_index_of(".")]; - if (ver_pkg_short == RUNNING_KERNEL){ + if (ver_pkg_short == RUNNING_KERNEL) { k.is_running = true; k.is_installed = true; kernel_active = k; @@ -469,12 +464,12 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { } // scan ubuntu kernels - if (kernel_active == null){ - foreach(var k in kernel_list){ + if (kernel_active == null) { + foreach (var k in kernel_list) { if (!k.is_valid) continue; if (k.is_mainline) continue; - if (kern_running.version_main == k.version_main){ + if (kern_running.version_main == k.version_main) { k.is_running = true; k.is_installed = true; kernel_active = k; @@ -483,7 +478,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { } } - kernel_list.sort((a,b)=>{ + kernel_list.sort((a,b) => { return a.compare_to(b) * -1; }); @@ -491,25 +486,24 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { // find the highest installed version ---------------------- kernel_latest_installed = new LinuxKernel.from_version("0"); - foreach(var k in kernel_list){ + foreach(var k in kernel_list) { if (k.is_installed) { kernel_latest_installed = k; break; } } - log_msg(string.nfill(70, '-')); + //log_debug("Highest Installed: "+kernel_latest_installed.version_main); + //log_debug(string.nfill(70, '-')); } // scan kernel_list for versions newer than latest installed - //public static void check_updates(string from = ""){ - public static void check_updates(){ - //log_debug("check_updates("+from+")"); + public static void check_updates() { log_debug("check_updates()"); kernel_update_major = null; kernel_update_minor = null; kernel_latest_available = null; - foreach(var k in LinuxKernel.kernel_list){ + foreach(var k in LinuxKernel.kernel_list) { if (!k.is_valid) continue; if ((App.hide_unstable && k.is_unstable) && (!k.is_installed)) continue; if (kernel_latest_available == null) kernel_latest_available = k; @@ -574,7 +568,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { } } - public static void kunin_old(bool confirm){ + public static void kunin_old(bool confirm) { check_installed(); @@ -584,10 +578,10 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { bool found_running_kernel = false; - foreach(var k in LinuxKernel.kernel_list){ + foreach(var k in LinuxKernel.kernel_list) { if (!k.is_valid) continue; if (!k.is_installed) continue; - if (k.version_main == kern_running.version_main){ + if (k.version_main == kern_running.version_main) { found_running_kernel = true; continue; } @@ -595,7 +589,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { list.add(k); } - if (!found_running_kernel){ + if (!found_running_kernel) { log_error(_("Could not find running kernel in list!")); log_msg(string.nfill(70, '-')); return; @@ -609,14 +603,11 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { // confirm ------------------------------- - if (confirm){ + if (confirm) { var message = "\n%s:\n".printf(_("The following kernels will be uninstalled:")); - foreach(var kern in list){ - - message += " ▰ %s\n".printf(kern.version_main); - } + foreach (var kern in list) message += " ▰ %s\n".printf(kern.version_main); message += "\n%s (y/n): ".printf(_("Continue ?")); @@ -625,21 +616,21 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { int ch = stdin.getc(); - if (ch != 'y'){ return; } + if (ch != 'y') return; } // uninstall -------------------------------- kunin_list(list); } - public static void kinst_latest(bool point_update, bool confirm){ + public static void kinst_latest(bool point_update, bool confirm) { log_debug("kinst_latest()"); query(true); var kern_major = LinuxKernel.kernel_update_major; - if ((kern_major != null) && !point_update){ + if ((kern_major != null) && !point_update) { var message = "%s: %s".printf(_("Latest update"), kern_major.version_main); log_msg(message); @@ -650,7 +641,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { var kern_minor = LinuxKernel.kernel_update_minor; - if (kern_minor != null){ + if (kern_minor != null) { var message = "%s: %s".printf(_("Latest point update"), kern_minor.version_main); log_msg(message); @@ -659,14 +650,14 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { return; } - if ((kern_major == null) && (kern_minor == null)){ + if ((kern_major == null) && (kern_minor == null)) { log_msg(_("No updates found")); } log_msg(string.nfill(70, '-')); } - public static void kinst_update(LinuxKernel kern, bool confirm){ + public static void kinst_update(LinuxKernel kern, bool confirm) { if (confirm){ @@ -675,8 +666,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { stdout.flush(); int ch = stdin.getc(); - - if (ch != 'y'){ return; } + if (ch != 'y') return; } kern.kinst(); @@ -684,30 +674,32 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { // helpers - public static int find_lowest_major_version_installed(){ + public static int find_lowest_major_version_installed() { + log_debug("find_lowest_major_version_installed()"); + pkg_list_installed = Package.query_installed_packages(); int? major_version = null; - foreach(var pkg in pkg_list_installed.values){ - if (!pkg.pname.contains("linux-image") || !pkg.is_installed){ - continue; - } + foreach (var pkg in pkg_list_installed.values) { + if (!pkg.pname.contains("linux-image") || !pkg.is_installed) continue; bool is_mainline = false; var candidate = new LinuxKernel(pkg.version_installed, is_mainline); - if (major_version == null || candidate.version_maj < major_version){ + if (major_version == null || candidate.version_maj < major_version) { major_version = candidate.version_maj; } } - if (major_version == null){ + if (major_version == null) { major_version = new LinuxKernel.from_version(RUNNING_KERNEL).version_maj; } + log_debug("Lowest Installed Major: %d".printf(major_version)); + return major_version; } - public void split_version_string(string _version_string, out string ver_main){ + public void split_version_string(string _version_string, out string ver_main) { ver_main = ""; version_maj = 0; version_min = 0; @@ -734,7 +726,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { } else if (num == "rc") { saw_rc = true; } else { - switch(index){ + switch (index) { case 0: version_maj = int.parse(num); break; @@ -759,18 +751,16 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { ver_main = "%d.%d.%d%s".printf(version_maj,version_min,version_point,version_extra); try{ - if (!match.next()){ - break; - } + if (!match.next()) break; } - catch(Error e){ + catch(Error e) { break; } } } - public int compare_to(LinuxKernel b){ + public int compare_to(LinuxKernel b) { LinuxKernel a = this; string[] arr_a = a.version_main.split_set (".-_"); string[] arr_b = b.version_main.split_set (".-_"); @@ -779,10 +769,10 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { int x, y; // while both arrays have an element - while ((i < arr_a.length) && (i < arr_b.length)){ + while ((i < arr_a.length) && (i < arr_b.length)) { // continue if equal - if (arr_a[i] == arr_b[i]){ + if (arr_a[i] == arr_b[i]) { i++; continue; } @@ -790,64 +780,46 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { // check if number x = int.parse(arr_a[i]); y = int.parse(arr_b[i]); - if ((x > 0) && (y > 0)){ + if ((x > 0) && (y > 0)) { // both are numbers return (x - y); - } - else if ((x == 0) && (y == 0)){ + } else if ((x == 0) && (y == 0)) { // BKW - this is one place where "-rc3" gets compared to "-rc4" // both are strings //log_debug("strcmp("+arr_a[i]+","+arr_b[i]+")"); return strcmp(arr_a[i], arr_b[i]); - } - else{ - if (x > 0){ - return 1; - } - else{ - return -1; - } + } else { + if (x > 0) return 1; + return -1; } } // one array has less parts than the other and all corresponding parts are equal - if (i < arr_a.length){ + if (i < arr_a.length) { x = int.parse(arr_a[i]); - if (x > 0){ - return 1; - } - else{ - return -1; - } + if (x > 0) return 1; + return -1; } - if (i < arr_b.length){ + if (i < arr_b.length) { y = int.parse(arr_b[i]); - if (y > 0){ - return -1; - } - else{ - return 1; - } + if (y > 0) return -1; + return 1; } return (arr_a.length - arr_b.length) * -1; // smaller array is larger version } - public void mark_invalid(){ + public void mark_invalid() { string f = cache_subdir+"/invalid"; - if (!file_exists(f)){ - file_write(f, ""); - } + if (!file_exists(f)) file_write(f, ""); } - public void set_apt_pkg_list(){ - foreach(var pkg in pkg_list_installed.values){ - if (!pkg.pname.has_prefix("linux-")){ - continue; - } - if (pkg.version_installed == kver){ + public void set_apt_pkg_list() { + foreach(var pkg in pkg_list_installed.values) { + if (!pkg.pname.has_prefix("linux-")) continue; + if (pkg.version_installed == kver) { apt_pkg_list[pkg.pname] = pkg.pname; log_debug("Package: %s".printf(pkg.pname)); } @@ -856,7 +828,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { // properties - public bool is_unstable{ + public bool is_unstable { get { return kver.contains("-rc") || kver.contains("-unstable"); } @@ -869,66 +841,66 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { } } - public static string index_page{ + public static string index_page { owned get { return "%s/index.html".printf(CACHE_DIR); } } - public string cache_subdir{ + public string cache_subdir { owned get { return "%s/%s".printf(CACHE_DIR,version_main); } } - public string cached_page{ + public string cached_page { owned get { return "%s/index.html".printf(cache_subdir); } } - public string cached_page_uri{ + public string cached_page_uri { owned get { return page_uri; } } - public string changes_file{ + public string changes_file { owned get { return "%s/CHANGES".printf(cache_subdir); } } - public string changes_file_uri{ + public string changes_file_uri { owned get { return "%s%s".printf(page_uri, "CHANGES"); } } - public bool cached_page_exists{ + public bool cached_page_exists { get { return file_exists(cached_page); } } - public string tooltip_text(){ + public string tooltip_text() { string txt = ""; string list = ""; - foreach(string deb in deb_list.keys){ + foreach (string deb in deb_list.keys) { list += "\n"+deb; } - if (list.length > 0){ + if (list.length > 0) { txt += ""+_("Packages Available")+"\n"+list; } list = ""; - foreach(string deb in apt_pkg_list.keys){ + foreach(string deb in apt_pkg_list.keys) { list += "\n"+deb; } - if (list.length > 0){ + if (list.length > 0) { txt += "\n\n"+_("Packages Installed")+"\n"+list; } @@ -937,12 +909,13 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { // load - private void load_cached_page(){ - + private void load_cached_page() { + //log_debug("load_cached_page() '"+cached_page+"'"); + var list = new Gee.HashMap(); - if (!file_exists(cached_page)){ - //log_error("load_cached_page: " + _("File not found") + ": %s".printf(cached_page)); + if (!file_exists(cached_page)) { + log_error("load_cached_page(): " + _("File not found") + ": %s".printf(cached_page)); return; } @@ -950,44 +923,44 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { // parse index.html -------------------------- - try{ + try { ////same deb name// var rex = new Regex("""([a-zA-Z0-9\-._/]+)<\/a>"""); MatchInfo match; - foreach(string line in txt.split("\n")){ - if (rex.match(line, 0, out match)){ + foreach(string line in txt.split("\n")) { + if (rex.match(line, 0, out match)) { string file_name = match.fetch(2); string file_uri = "%s%s".printf(page_uri, match.fetch(1)); bool add = false; - if (rex_header.match(file_name, 0, out match)){ + if (rex_header.match(file_name, 0, out match)) { deb_header = file_name; add = true; } - if (rex_header_all.match(file_name, 0, out match)){ + if (rex_header_all.match(file_name, 0, out match)) { deb_header_all = file_name; add = true; } - if (rex_image.match(file_name, 0, out match)){ + if (rex_image.match(file_name, 0, out match)) { deb_image = file_name; version_package = match.fetch(1); add = true; } - if (rex_image_extra.match(file_name, 0, out match)){ + if (rex_image_extra.match(file_name, 0, out match)) { deb_image_extra = file_name; add = true; } - if (rex_modules.match(file_name, 0, out match)){ + if (rex_modules.match(file_name, 0, out match)) { deb_modules = file_name; add = true; } - if (add){ + if (add) { list[file_name] = file_uri; // add to list } } @@ -995,8 +968,8 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { // if ((deb_header.length == 0) || (deb_header_all.length == 0) || (deb_image.length == 0)) if (deb_image.length == 0) mark_invalid(); - } - catch (Error e) { + + } catch (Error e) { log_error (e.message); } @@ -1005,13 +978,13 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { // actions - public static void print_list(){ + public static void print_list() { log_msg(""); log_draw_line(); log_msg(_("Available Kernels")); log_draw_line(); - foreach(var k in kernel_list){ + foreach(var k in kernel_list) { if (!k.is_valid) continue; // check running/installed state before checking for hidden @@ -1030,23 +1003,23 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { } } - public static bool download_kernels(Gee.ArrayList selected_kernels){ + public static bool download_kernels(Gee.ArrayList selected_kernels) { foreach(var kern in selected_kernels) kern.download_packages(); return true; } // dep: aria2c - public bool download_packages(){ + public bool download_packages() { bool ok = true; check_if_initialized(); - foreach(string file_name in deb_list.keys){ + foreach (string file_name in deb_list.keys) { string dl_dir = cache_subdir; string file_path = "%s/%s".printf(dl_dir, file_name); - if (file_exists(file_path) && !file_exists(file_path + ".aria2c")){ + if (file_exists(file_path) && !file_exists(file_path + ".aria2c")) { continue; } @@ -1062,7 +1035,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { mgr.status_in_kb = true; mgr.execute(); - while (mgr.is_running()){ + while (mgr.is_running()) { sleep(200); @@ -1070,18 +1043,16 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { stdout.flush(); } - if (file_exists(file_path)){ + if (file_exists(file_path)) { stdout.printf("\r%-70s\n".printf(_("OK"))); stdout.flush(); - - } - else{ + } else { stdout.printf("\r%-70s\n".printf(_("ERROR"))); stdout.flush(); ok = false; } } - + return ok; } @@ -1089,11 +1060,13 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { public bool kinst() { // check if installed - if (is_installed){ + if (is_installed) { log_error(_("This kernel is already installed.")); return false; } + if (!App.check_internet_connectivity()) return false; + bool ok = download_packages(); int status = -1; @@ -1103,7 +1076,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { // full paths instead of env -C // https://github.com/bkw777/mainline/issues/128 - foreach(string file_name in deb_list.keys){ + foreach(string file_name in deb_list.keys) { flist += " '%s/%s'".printf(cache_subdir,file_name); log_debug("kinst() flist += %s/%s".printf(cache_subdir,file_name)); } @@ -1122,7 +1095,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { } // dep: dpkg - public static bool kunin_list(Gee.ArrayList selected_kernels){ + public static bool kunin_list(Gee.ArrayList selected_kernels) { bool ok = false; int status = -1; @@ -1131,7 +1104,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { string cmd = "pkexec env DISPLAY=${DISPLAY} XAUTHORITY=${XAUTHORITY} dpkg --purge"; string found = ""; - foreach(var kern in selected_kernels) { + foreach (var kern in selected_kernels) { log_debug(_("requested")+" "+kern.version_main); if (kern.is_running) { @@ -1140,7 +1113,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { } found = ""; - foreach(var pkg_name in kern.apt_pkg_list.values) { + foreach (var pkg_name in kern.apt_pkg_list.values) { //log_debug(pkg_name); if ( !pkg_name.has_prefix("linux-tools") && diff --git a/src/Common/Main.vala b/src/Common/Main.vala index 76493a8e..232a95ac 100644 --- a/src/Common/Main.vala +++ b/src/Common/Main.vala @@ -76,7 +76,6 @@ public class Main : GLib.Object{ public string requested_version = ""; public bool connection_checked = false; public bool connection_status = true; - public bool neterr_shown = false; public bool index_is_fresh = false; public int window_width = 800; public int window_height = 600; @@ -320,18 +319,17 @@ public class Main : GLib.Object{ } public bool check_internet_connectivity() { - if (connection_checked) return connection_status; string std_err, std_out; string cmd = "aria2c --no-netrc --no-conf --connect-timeout="+connect_timeout_seconds.to_string()+" --max-file-not-found=3 --retry-wait=2 --max-tries=3 --dry-run --quiet '"+ppa_uri+"'"; int status = exec_sync(cmd, out std_out, out std_err); - if (std_err.length > 0) log_error(std_err); + connection_status = false; if (status == 0) connection_status = true; - else connection_status = false; + else log_error(_("Can not reach")+" "+ppa_uri); connection_checked = true; return connection_status; diff --git a/src/Common/Package.vala b/src/Common/Package.vala index 1c2ae0d0..fda70136 100644 --- a/src/Common/Package.vala +++ b/src/Common/Package.vala @@ -36,17 +36,15 @@ public class Package : GLib.Object { public static string NATIVE_ARCH = ""; - public static void initialize(){ - string std_out, std_err; - exec_sync("dpkg --print-architecture", out std_out, out std_err); + public static void initialize() { } - public Package(string _name){ + public Package(string _name) { pname = _name; } - public bool is_foreign(){ - if (check_if_foreign(arch)){ + public bool is_foreign() { + if (check_if_foreign(arch)) { return true; } else{ @@ -54,7 +52,7 @@ public class Package : GLib.Object { } } - public static string get_id(string _name, string _arch){ + public static string get_id(string _name, string _arch) { string str = ""; str = "%s".printf(_name); if (check_if_foreign(_arch)){ @@ -63,7 +61,7 @@ public class Package : GLib.Object { return str; } - public static bool check_if_foreign(string architecture){ + public static bool check_if_foreign(string architecture) { if ((architecture.length > 0) && (architecture != NATIVE_ARCH) && (architecture != "all") && (architecture != "any")){ return true; } @@ -73,7 +71,6 @@ public class Package : GLib.Object { } public static Gee.HashMap query_installed_packages() { - log_debug("query_installed_packages()"); var list = new Gee.HashMap(); @@ -143,6 +140,7 @@ linux-image-unsigned-5.6.10-050610-generic|5.6.10-050610.202005052153||Linux ker } public static Gee.HashMap query_available_packages(string search_string) { + //log_debug("query_available_packages()"); var list = new Gee.HashMap(); diff --git a/src/Gtk/AppGtk.vala b/src/Gtk/AppGtk.vala index a2c2fda5..a79355f2 100644 --- a/src/Gtk/AppGtk.vala +++ b/src/Gtk/AppGtk.vala @@ -56,7 +56,7 @@ public class AppGtk : GLib.Object { var window = new MainWindow (); window.configure_event.connect ((event) => { - log_debug("resize: %dx%d@%dx%d".printf(event.width,event.height,event.x,event.y)); + //log_debug("resize: %dx%d@%dx%d".printf(event.width,event.height,event.x,event.y)); App.window_width = event.width; App.window_height = event.height; App.window_x = event.x; diff --git a/src/Gtk/MainWindow.vala b/src/Gtk/MainWindow.vala index c6ba19b8..315d713f 100644 --- a/src/Gtk/MainWindow.vala +++ b/src/Gtk/MainWindow.vala @@ -67,7 +67,7 @@ public class MainWindow : Gtk.Window { init_ui(); - refresh_cache(); + update_cache(); } private void init_ui(){ @@ -170,7 +170,7 @@ public class MainWindow : Gtk.Window { tv.set_tooltip_column(3); } - private void tv_row_activated(TreePath path, TreeViewColumn column){ + private void tv_row_activated(TreePath path, TreeViewColumn column) { TreeIter iter; tv.model.get_iter_from_string(out iter, path.to_string()); LinuxKernel kern; @@ -187,7 +187,7 @@ public class MainWindow : Gtk.Window { var paths = sel.get_selected_rows (out model); selected_kernels.clear(); - foreach(var path in paths){ + foreach (var path in paths) { LinuxKernel kern; model.get_iter(out iter, path); model.get (iter, 0, out kern, -1); @@ -218,7 +218,7 @@ public class MainWindow : Gtk.Window { TreeIter iter; bool odd_row = false; - foreach(var kern in LinuxKernel.kernel_list) { + foreach (var kern in LinuxKernel.kernel_list) { if (!kern.is_valid) continue; if (!kern.is_installed) { if (App.hide_unstable && kern.is_unstable) continue; @@ -275,7 +275,7 @@ public class MainWindow : Gtk.Window { private void init_actions(){ - var hbox = new Gtk.Box(Orientation.VERTICAL, 7); + var hbox = new Gtk.Box(Orientation.VERTICAL, 6); hbox_list.add (hbox); // install @@ -285,7 +285,7 @@ public class MainWindow : Gtk.Window { button.clicked.connect(() => { return_if_fail(selected_kernels.size == 1); - kinst(selected_kernels[0]); + do_install(selected_kernels[0]); }); // uninstall @@ -295,38 +295,7 @@ public class MainWindow : Gtk.Window { button.clicked.connect(() => { return_if_fail(selected_kernels.size > 0); - - var term = new TerminalWindow.with_parent(this, false, true); - string t_dir = create_tmp_dir(); - string t_file = get_temp_file_path(t_dir)+".sh"; - - term.script_complete.connect(()=>{ - term.allow_window_close(); - file_delete(t_file); - dir_delete(t_dir); - }); - - term.destroy.connect(()=>{ - this.present(); - refresh_cache(); - }); - - string names = ""; - foreach(var kern in selected_kernels){ - if (names.length > 0) names += ","; - names += "%s".printf(kern.version_main); - } - - string sh = BRANDING_SHORTNAME; - if (App.index_is_fresh) sh += " --index-is-fresh"; - if (LOG_DEBUG) sh += " --debug"; - sh += " --uninstall %s\n".printf(names) - + "echo \n" - + "echo '"+_("DONE")+"'\n" - ; - - save_bash_script_temp(sh,t_file); - term.execute_script(t_file,t_dir); + do_uninstall(selected_kernels); }); // changes @@ -335,64 +304,50 @@ public class MainWindow : Gtk.Window { btn_changes = button; button.clicked.connect(() => { - if ((selected_kernels.size == 1) && file_exists(selected_kernels[0].changes_file)){ - xdg_open(selected_kernels[0].changes_file); + if ((selected_kernels.size == 1) && file_exists(selected_kernels[0].changes_file)) { + uri_open("file://"+selected_kernels[0].changes_file); } }); - // uninstall-old - button = new Gtk.Button.with_label (_("Uninstall Old")); - button.set_tooltip_text(_("Uninstall kernels older than running kernel")); + // ppa + button = new Gtk.Button.with_label ("PPA"); hbox.pack_start (button, true, true, 0); button.clicked.connect(() => { - - var term = new TerminalWindow.with_parent(this, false, true); - string t_dir = create_tmp_dir(); - string t_file = get_temp_file_path(t_dir)+".sh"; - - term.script_complete.connect(()=>{ - term.allow_window_close(); - file_delete(t_file); - dir_delete(t_dir); - }); - - term.destroy.connect(()=>{ - this.present(); - refresh_cache(); - }); - - string sh = BRANDING_SHORTNAME+" --uninstall-old"; - if (App.index_is_fresh) sh += " --index-is-fresh"; - if (LOG_DEBUG) sh += " --debug"; - sh += "\n" - + "echo \n" - + "echo '"+_("DONE")+"'\n" - ; - - save_bash_script_temp(sh,t_file); - term.execute_script(t_file,t_dir); + string uri = App.ppa_uri; + if (selected_kernels.size == 1) uri += selected_kernels[0].kname; + uri_open(uri); }); + // uninstall-old + button = new Gtk.Button.with_label (_("Uninstall Old")); + button.set_tooltip_text(_("Uninstall kernels older than running kernel")); + hbox.pack_start (button, true, true, 0); + button.clicked.connect(do_purge); + // reload button = new Gtk.Button.with_label (_("Reload")); hbox.pack_start (button, true, true, 0); - //btn_refresh = button; - - button.clicked.connect(() => { - // when the user interactively presses reload, clear all state and try everything fresh - LinuxKernel.delete_cache(); - App.connection_checked=false; - App.neterr_shown=false; - refresh_cache(); - }); + button.clicked.connect(reload_cache); // settings button = new Gtk.Button.with_label (_("Settings")); hbox.pack_start (button, true, true, 0); + button.clicked.connect(do_settings); - button.clicked.connect(() => { + // about + button = new Gtk.Button.with_label (_("About")); + hbox.pack_start (button, true, true, 0); + button.clicked.connect(do_about); + // exit + button = new Gtk.Button.with_label (_("Exit")); + hbox.pack_start (button, true, true, 0); + button.clicked.connect(do_exit); + + } + + private void do_settings () { int _show_prev_majors = App.show_prev_majors; bool _hide_unstable = App.hide_unstable; @@ -401,31 +356,18 @@ public class MainWindow : Gtk.Window { dlg.destroy(); if ( - (_show_prev_majors != App.show_prev_majors) - || (_hide_unstable != App.hide_unstable) - ) { - refresh_cache(); + (_show_prev_majors != App.show_prev_majors) || + (_hide_unstable != App.hide_unstable) + ) { + reload_cache(); } - - }); - - // about - button = new Gtk.Button.with_label (_("About")); - hbox.pack_start (button, true, true, 0); - button.clicked.connect(btn_about_clicked); - - // exit - button = new Gtk.Button.with_label (_("Exit")); - hbox.pack_start (button, true, true, 0); - button.clicked.connect(btn_exit_clicked); - } - private void btn_exit_clicked () { + private void do_exit () { Gtk.main_quit(); } - private void btn_about_clicked () { + private void do_about () { var dialog = new AboutWindow(); dialog.set_transient_for (this); @@ -486,8 +428,17 @@ public class MainWindow : Gtk.Window { dialog.show_all(); } - private void refresh_cache() { - log_debug("refresh_cache()"); + // Full re-load. Delete cache and clear session state and start over. + private void reload_cache() { + log_debug("reload_cache()"); + LinuxKernel.delete_cache(); + App.connection_checked=false; + update_cache(); + } + + // Update the cache as optimally as possible. + private void update_cache() { + log_debug("update_cache()"); test_net(); @@ -497,7 +448,7 @@ public class MainWindow : Gtk.Window { return; } - string message = _("Refreshing..."); + string message = _("Updating cached indexes")+"..."; var progress_window = new ProgressWindow.with_parent(this, message, true); progress_window.show_all(); @@ -587,11 +538,11 @@ public class MainWindow : Gtk.Window { } } - public void kinst(LinuxKernel kern) { - + public void do_install(LinuxKernel kern) { return_if_fail(!kern.is_installed); - - test_net (); + // let it try even if we think the net is down + // just so the button responds instead of looking broken + //if (!test_net()) return; var term = new TerminalWindow.with_parent(this, false, true); string t_dir = create_tmp_dir(); @@ -605,7 +556,7 @@ public class MainWindow : Gtk.Window { term.destroy.connect(()=>{ this.present(); - refresh_cache(); + update_cache(); }); string sh = BRANDING_SHORTNAME; @@ -620,13 +571,72 @@ public class MainWindow : Gtk.Window { term.execute_script(t_file,t_dir); } - public void test_net() { - if (!App.check_internet_connectivity()) { - string failmsg = _("Can not reach")+" "+App.ppa_uri; - log_error(failmsg); - if (App.GUI_MODE && !App.neterr_shown) errbox(this,failmsg); - App.neterr_shown=true; + public void do_uninstall(Gee.ArrayList klist) { + var term = new TerminalWindow.with_parent(this, false, true); + string t_dir = create_tmp_dir(); + string t_file = get_temp_file_path(t_dir)+".sh"; + + term.script_complete.connect(()=>{ + term.allow_window_close(); + file_delete(t_file); + dir_delete(t_dir); + }); + + term.destroy.connect(()=>{ + this.present(); + update_cache(); + }); + + string names = ""; + foreach(var k in klist){ + if (names.length > 0) names += ","; + names += "%s".printf(k.version_main); } + + string sh = BRANDING_SHORTNAME; + if (App.index_is_fresh) sh += " --index-is-fresh"; + if (LOG_DEBUG) sh += " --debug"; + sh += " --uninstall %s\n".printf(names) + + "echo \n" + + "echo '"+_("DONE")+"'\n" + ; + + save_bash_script_temp(sh,t_file); + term.execute_script(t_file,t_dir); + } + + public void do_purge () { + var term = new TerminalWindow.with_parent(this, false, true); + string t_dir = create_tmp_dir(); + string t_file = get_temp_file_path(t_dir)+".sh"; + + term.script_complete.connect(()=>{ + term.allow_window_close(); + file_delete(t_file); + dir_delete(t_dir); + }); + + term.destroy.connect(()=>{ + this.present(); + update_cache(); + }); + + string sh = BRANDING_SHORTNAME+" --uninstall-old"; + if (App.index_is_fresh) sh += " --index-is-fresh"; + if (LOG_DEBUG) sh += " --debug"; + sh += "\n" + + "echo \n" + + "echo '"+_("DONE")+"'\n" + ; + + save_bash_script_temp(sh,t_file); + term.execute_script(t_file,t_dir); + } + + public bool test_net() { + if (App.connection_checked) return App.connection_status; + if (!App.check_internet_connectivity()) errbox(this,_("Can not reach")+" "+App.ppa_uri); + return App.connection_status; } } diff --git a/src/Utility/AsyncTask.vala b/src/Utility/AsyncTask.vala index f671ffc7..19e38dab 100644 --- a/src/Utility/AsyncTask.vala +++ b/src/Utility/AsyncTask.vala @@ -71,7 +71,7 @@ public abstract class AsyncTask : GLib.Object{ public signal void stderr_line_read(string line); public signal void task_complete(); - protected AsyncTask(){ + protected AsyncTask() { working_dir = create_tmp_dir(); script_file = working_dir+"/script.sh"; log_file = working_dir+"/task.log"; @@ -79,7 +79,7 @@ public abstract class AsyncTask : GLib.Object{ //regex = new Gee.HashMap(); // needs to be initialized again in instance constructor } - public bool begin(){ + public bool begin() { status = AppStatus.RUNNING; @@ -93,14 +93,14 @@ public abstract class AsyncTask : GLib.Object{ string[] spawn_args = {"sh", script_file}; string[] spawn_env = Environ.get(); + log_debug("AsyncTask:begin()"); + log_debug("working_dir="+working_dir); + try { // start timer timer = new GLib.Timer(); timer.start(); - log_debug("AsyncTask:begin():try"); - log_debug("working_dir="+working_dir); - // execute script file Process.spawn_async_with_pipes( working_dir, // working dir @@ -136,19 +136,19 @@ public abstract class AsyncTask : GLib.Object{ try { new Thread.try (null,read_stdout); } catch (Error e) { - log_error ("AsyncTask.begin():create_thread:read_stdout()"); - log_error (e.message); + log_error("AsyncTask.begin():create_thread:read_stdout()"); + log_error(e.message); } try { new Thread.try (null,read_stderr); } catch (Error e) { - log_error ("AsyncTask.begin():create_thread:read_stderr()"); - log_error (e.message); + log_error("AsyncTask.begin():create_thread:read_stderr()"); + log_error(e.message); } } catch (Error e) { - log_error ("AsyncTask.begin()"); + log_error("AsyncTask.begin()"); log_error(e.message); has_started = false; } @@ -186,8 +186,8 @@ public abstract class AsyncTask : GLib.Object{ } } catch (Error e) { - log_error ("AsyncTask.read_stdout()"); - log_error (e.message); + log_error("AsyncTask.read_stdout()"); + log_error(e.message); } } @@ -222,23 +222,23 @@ public abstract class AsyncTask : GLib.Object{ } } catch (Error e) { - log_error ("AsyncTask.read_stderr()"); - log_error (e.message); + log_error("AsyncTask.read_stderr()"); + log_error(e.message); } } public void write_stdin(string line){ - try{ + try { if (status == AppStatus.RUNNING){ dos_in.put_string(line + "\n"); } - else{ - log_error ("AsyncTask.write_stdin(): NOT RUNNING"); + else { + log_error("AsyncTask.write_stdin(): NOT RUNNING"); } } - catch(Error e){ - log_error ("AsyncTask.write_stdin(): %s".printf(line)); - log_error (e.message); + catch (Error e){ + log_error("AsyncTask.write_stdin(): %s".printf(line)); + log_error(e.message); } } @@ -252,21 +252,21 @@ public abstract class AsyncTask : GLib.Object{ finish_called = true; // dispose stdin - try{ + try { if ((dos_in != null) && !dos_in.is_closed() && !dos_in.is_closing()){ dos_in.close(); } } - catch(Error e){ + catch (Error e){ // ignore - //log_error ("AsyncTask.finish(): dos_in.close()"); - //log_error (e.message); + //log_error("AsyncTask.finish(): dos_in.close()"); + //log_error(e.message); } dos_in = null; GLib.FileUtils.close(input_fd); - try{ + try { // dispose log if ((dos_log != null) && !dos_log.is_closed() && !dos_log.is_closing()){ dos_log.close(); @@ -285,8 +285,6 @@ public abstract class AsyncTask : GLib.Object{ timer.stop(); - log_debug("AsyncTask:finish(): before finish_task()"); - finish_task(); dir_delete(working_dir); diff --git a/src/Utility/Gtk/AboutWindow.vala b/src/Utility/Gtk/AboutWindow.vala index 59fe90e6..98ce8764 100644 --- a/src/Utility/Gtk/AboutWindow.vala +++ b/src/Utility/Gtk/AboutWindow.vala @@ -235,14 +235,7 @@ public class AboutWindow : Dialog { lbtn_website.margin_top = 5; vbox_logo.add(lbtn_website); - lbtn_website.activate_link.connect(()=>{ - try{ - return Gtk.show_uri(null, lbtn_website.uri, Gdk.CURRENT_TIME); - } - catch(Error e){ - return false; - } - }); + lbtn_website.activate_link.connect(()=>{ uri_open(lbtn_website.uri); return true; }); //copyright lbl_copyright = new Label(""); @@ -379,14 +372,7 @@ public class AboutWindow : Dialog { link.uri = "http://" + val; } - link.activate_link.connect(()=>{ - try{ - return Gtk.show_uri(null, link.uri, Gdk.CURRENT_TIME); - } - catch(Error e){ - return false; - } - }); + link.activate_link.connect(() => { uri_open(link.uri); return true; }); } else{ var txt = text; diff --git a/src/Utility/TeeJee.FileSystem.vala b/src/Utility/TeeJee.FileSystem.vala index 17a5f8ea..c1db5080 100644 --- a/src/Utility/TeeJee.FileSystem.vala +++ b/src/Utility/TeeJee.FileSystem.vala @@ -38,16 +38,16 @@ namespace TeeJee.FileSystem{ public const int64 MiB = 1024 * KiB; public const int64 GiB = 1024 * MiB; public const int64 TiB = 1024 * GiB; - + // path helpers ---------------------------- - - public string file_parent(string f){ - log_debug("file_parent("+f+")"); + + public string file_parent(string f) { + //log_debug("file_parent("+f+")"); return File.new_for_path(f).get_parent().get_path(); } - public string file_basename(string f){ - log_debug("file_basename("+f+")"); + public string file_basename(string f) { + //log_debug("file_basename("+f+")"); return File.new_for_path(f).get_basename(); } @@ -66,8 +66,8 @@ namespace TeeJee.FileSystem{ try { var file = File.new_for_path (file_path); - if (file.query_exists ()) { - file.delete (); + if (file.query_exists()) { + file.delete(); log_debug(_("File deleted") + ": %s".printf(file_path)); } return true; diff --git a/src/Utility/TeeJee.System.vala b/src/Utility/TeeJee.System.vala index fad77180..5bb7b2ab 100644 --- a/src/Utility/TeeJee.System.vala +++ b/src/Utility/TeeJee.System.vala @@ -30,10 +30,16 @@ namespace TeeJee.System { // open ----------------------------- - public void xdg_open (string file) { - string cmd = "xdg-open '%s'".printf(escape_single_quote(file)); - log_debug(cmd); - exec_async(cmd); + public void uri_open (string uri) { + try { + AppInfo.launch_default_for_uri (uri,null); + } catch (Error e) { + warning ("Unable to launch %s", uri); + } + + // if/when above breaks, this works fine + //string cmd = "xdg-open '%s'".printf(escape_single_quote(uri)); + //exec_async(cmd); } // timers -------------------------------------------------- From b6309d36a8c74dd1c6e395e540b0778f8b9d518f Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Mon, 6 Mar 2023 01:49:58 -0500 Subject: [PATCH 237/567] AsyncTask threads --- po/messages.pot | 2 +- src/Utility/AsyncTask.vala | 15 +++------------ 2 files changed, 4 insertions(+), 13 deletions(-) diff --git a/po/messages.pot b/po/messages.pot index e79dd344..45a0536c 100644 --- a/po/messages.pot +++ b/po/messages.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline 1.1.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-06 01:15-0500\n" +"POT-Creation-Date: 2023-03-06 01:44-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/src/Utility/AsyncTask.vala b/src/Utility/AsyncTask.vala index 19e38dab..dc47ad47 100644 --- a/src/Utility/AsyncTask.vala +++ b/src/Utility/AsyncTask.vala @@ -133,19 +133,10 @@ public abstract class AsyncTask : GLib.Object{ dos_log = new DataOutputStream (file_stream); } - try { - new Thread.try (null,read_stdout); - } catch (Error e) { - log_error("AsyncTask.begin():create_thread:read_stdout()"); - log_error(e.message); - } + // read stdout & stderr + new Thread (null,read_stdout); + new Thread (null,read_stderr); - try { - new Thread.try (null,read_stderr); - } catch (Error e) { - log_error("AsyncTask.begin():create_thread:read_stderr()"); - log_error(e.message); - } } catch (Error e) { log_error("AsyncTask.begin()"); From d8accb29b7ad2003179464541977270f2c48e8ee Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Mon, 6 Mar 2023 02:35:30 -0500 Subject: [PATCH 238/567] Thread instead of void to support bionic --- .deb_build_number.mak | 2 +- Makefile | 2 +- po/de.po | 2 +- po/el.po | 2 +- po/es.po | 2 +- po/fr.po | 2 +- po/hr.po | 2 +- po/it.po | 2 +- po/ko.po | 2 +- po/messages.pot | 2 +- po/nl.po | 2 +- po/pl.po | 2 +- po/ru.po | 2 +- po/sv.po | 2 +- po/tr.po | 2 +- po/uk.po | 2 +- src/Common/LinuxKernel.vala | 8 ++++---- src/Utility/AsyncTask.vala | 24 +++++++++++++++--------- 18 files changed, 35 insertions(+), 29 deletions(-) diff --git a/.deb_build_number.mak b/.deb_build_number.mak index b9c71f13..29b0a777 100644 --- a/.deb_build_number.mak +++ b/.deb_build_number.mak @@ -1,3 +1,3 @@ # This file is generated by Makefile "make deb_build_number" DEB_PKG_VERSION := 1.1.1 -DEB_BUILD_NUMBER := 0002 +DEB_BUILD_NUMBER := 0003 diff --git a/Makefile b/Makefile index 84b5c619..6848b47a 100644 --- a/Makefile +++ b/Makefile @@ -157,7 +157,7 @@ $(dsc_file): debian/changelog $(misc_files) $(po_files) deb: $(deb_file) # To create the deb build env -# `pbuilder-dist` provided by `ubuntu-dev-tools` +# "pbuilder-dist" provided by "ubuntu-dev-tools" #sudo apt intsall ubuntu-dev-tools #pbuilder-dist `lsb_release -sc` create # To update the deb build env diff --git a/po/de.po b/po/de.po index 6a32a8ba..ce0b4ec7 100644 --- a/po/de.po +++ b/po/de.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-06 01:11-0500\n" +"POT-Creation-Date: 2023-03-06 02:18-0500\n" "PO-Revision-Date: 2023-02-20 18:40+0100\n" "Last-Translator: Marvin Meysel \n" "Language-Team: German\n" diff --git a/po/el.po b/po/el.po index 26b1f0e0..dc3656ee 100644 --- a/po/el.po +++ b/po/el.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-06 01:11-0500\n" +"POT-Creation-Date: 2023-03-06 02:18-0500\n" "PO-Revision-Date: 2023-01-10 02:03-0600\n" "Last-Translator: Vasilis Kosmidis \n" "Language-Team: Greek\n" diff --git a/po/es.po b/po/es.po index 1647cf58..fb245a3b 100644 --- a/po/es.po +++ b/po/es.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-06 01:11-0500\n" +"POT-Creation-Date: 2023-03-06 02:18-0500\n" "PO-Revision-Date: 2018-01-03 02:03-0600\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish\n" diff --git a/po/fr.po b/po/fr.po index 98ba2202..b0b913c6 100644 --- a/po/fr.po +++ b/po/fr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-06 01:11-0500\n" +"POT-Creation-Date: 2023-03-06 02:18-0500\n" "PO-Revision-Date: 2018-08-05 15:50+0200\n" "Last-Translator: Yolateng0 \n" "Language-Team: French\n" diff --git a/po/hr.po b/po/hr.po index 25e75086..51337321 100644 --- a/po/hr.po +++ b/po/hr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-06 01:11-0500\n" +"POT-Creation-Date: 2023-03-06 02:18-0500\n" "PO-Revision-Date: 2022-09-22 12:13+0200\n" "Last-Translator: gogo \n" "Language-Team: Croatian\n" diff --git a/po/it.po b/po/it.po index 2cdc17a7..8272c9ba 100644 --- a/po/it.po +++ b/po/it.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline 1.0.15\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-06 01:11-0500\n" +"POT-Creation-Date: 2023-03-06 02:18-0500\n" "PO-Revision-Date: 2020-08-22 15:35+0100\n" "Last-Translator: Albano Battistella \n" "Language-Team: Italian\n" diff --git a/po/ko.po b/po/ko.po index 73a0b96a..4b1f654d 100644 --- a/po/ko.po +++ b/po/ko.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline 1.0.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-06 01:11-0500\n" +"POT-Creation-Date: 2023-03-06 02:18-0500\n" "PO-Revision-Date: 2022-09-28 11:48+0900\n" "Last-Translator: Kevin Kim \n" "Language-Team: Korean\n" diff --git a/po/messages.pot b/po/messages.pot index 45a0536c..2ce8d596 100644 --- a/po/messages.pot +++ b/po/messages.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline 1.1.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-06 01:44-0500\n" +"POT-Creation-Date: 2023-03-06 02:27-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/po/nl.po b/po/nl.po index 39f2f3f6..96829d02 100644 --- a/po/nl.po +++ b/po/nl.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-06 01:11-0500\n" +"POT-Creation-Date: 2023-03-06 02:18-0500\n" "PO-Revision-Date: 2020-08-23 13:55+0200\n" "Last-Translator: Heimen Stoffels \n" "Language-Team: Dutch (Netherlands)\n" diff --git a/po/pl.po b/po/pl.po index 7d09387e..d099b285 100644 --- a/po/pl.po +++ b/po/pl.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-06 01:11-0500\n" +"POT-Creation-Date: 2023-03-06 02:18-0500\n" "PO-Revision-Date: 2021-09-17 10:29+0200\n" "Last-Translator: Viktor Sokyrko \n" "Language-Team: Polish\n" diff --git a/po/ru.po b/po/ru.po index 5b124f28..ca53b54a 100644 --- a/po/ru.po +++ b/po/ru.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-06 01:11-0500\n" +"POT-Creation-Date: 2023-03-06 02:18-0500\n" "PO-Revision-Date: 2023-03-01 20:22+0300\n" "Last-Translator: Faust3000 (Original) | Danik2343 (Update Transaltion) " "\n" diff --git a/po/sv.po b/po/sv.po index f5dd9d9f..ad4236e8 100644 --- a/po/sv.po +++ b/po/sv.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-06 01:11-0500\n" +"POT-Creation-Date: 2023-03-06 02:18-0500\n" "PO-Revision-Date: 2018-01-13 16:56+0100\n" "Last-Translator: Åke Engelbrektson \n" "Language-Team:Swedish\n" diff --git a/po/tr.po b/po/tr.po index 6d99e5ae..1def1329 100644 --- a/po/tr.po +++ b/po/tr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-06 01:11-0500\n" +"POT-Creation-Date: 2023-03-06 02:18-0500\n" "PO-Revision-Date: 2022-08-06 16:48+0300\n" "Last-Translator: Sabri Ünal \n" "Language-Team: Turkish\n" diff --git a/po/uk.po b/po/uk.po index abdd651a..8e22d3bc 100644 --- a/po/uk.po +++ b/po/uk.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-06 01:11-0500\n" +"POT-Creation-Date: 2023-03-06 02:18-0500\n" "PO-Revision-Date: 2019-07-25 11:00+0300\n" "Last-Translator: Serhii Golovko \n" "Language-Team: Ukranian\n" diff --git a/src/Common/LinuxKernel.vala b/src/Common/LinuxKernel.vala index 740fe0e8..8feb5bd3 100644 --- a/src/Common/LinuxKernel.vala +++ b/src/Common/LinuxKernel.vala @@ -200,7 +200,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { try { cancelled = false; - var worker = new Thread.try(null, () => query_thread((owned) notifier)); + var worker = new Thread.try(null, () => query_thread((owned) notifier) ); if (wait) worker.join(); @@ -209,7 +209,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { } } - private static void query_thread(owned Notifier? notifier) { + private static bool query_thread(owned Notifier? notifier) { log_debug("query_thread()"); App.progress_total = 1; App.progress_count = 0; @@ -311,12 +311,12 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { } check_installed(); - - //check_updates("query_thread()"); check_updates(); timer_elapsed(timer, true); if (notifier != null) notifier(timer, ref count, true); + + return true; } // download the main index.html listing all mainline kernels diff --git a/src/Utility/AsyncTask.vala b/src/Utility/AsyncTask.vala index dc47ad47..4ecd7ed1 100644 --- a/src/Utility/AsyncTask.vala +++ b/src/Utility/AsyncTask.vala @@ -134,8 +134,8 @@ public abstract class AsyncTask : GLib.Object{ } // read stdout & stderr - new Thread (null,read_stdout); - new Thread (null,read_stderr); + new Thread (null,read_stdout); + new Thread (null,read_stderr); } catch (Error e) { @@ -147,7 +147,7 @@ public abstract class AsyncTask : GLib.Object{ return has_started; } - private void read_stdout() { + private bool read_stdout() { try { stdout_is_open = true; @@ -179,16 +179,18 @@ public abstract class AsyncTask : GLib.Object{ catch (Error e) { log_error("AsyncTask.read_stdout()"); log_error(e.message); + return false; } + return true; } - private void read_stderr() { + private bool read_stderr() { try { stderr_is_open = true; err_line = dis_err.read_line (null); while (err_line != null) { - if (!is_terminated && (err_line.length > 0)){ + if (!is_terminated && (err_line.length > 0)) { error_msg += "%s\n".printf(err_line); parse_stderr_line(err_line); @@ -215,10 +217,13 @@ public abstract class AsyncTask : GLib.Object{ catch (Error e) { log_error("AsyncTask.read_stderr()"); log_error(e.message); + return false; } + return true; } - public void write_stdin(string line){ +/* + public void write_stdin(string line) { try { if (status == AppStatus.RUNNING){ dos_in.put_string(line + "\n"); @@ -232,14 +237,15 @@ public abstract class AsyncTask : GLib.Object{ log_error(e.message); } } - +*/ + protected abstract void parse_stdout_line(string out_line); protected abstract void parse_stderr_line(string err_line); - private void finish(){ + private void finish() { // finish() gets called by 2 threads but should be executed only once - if (finish_called) { return; } + if (finish_called) return; finish_called = true; // dispose stdin From aae7910739a06a335536d99f1ec6728cf0b08af2 Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Mon, 6 Mar 2023 02:49:11 -0500 Subject: [PATCH 239/567] deb build --- .deb_build_number.mak | 2 +- debian/changelog | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.deb_build_number.mak b/.deb_build_number.mak index 29b0a777..57de583a 100644 --- a/.deb_build_number.mak +++ b/.deb_build_number.mak @@ -1,3 +1,3 @@ # This file is generated by Makefile "make deb_build_number" DEB_PKG_VERSION := 1.1.1 -DEB_BUILD_NUMBER := 0003 +DEB_BUILD_NUMBER := 0001 diff --git a/debian/changelog b/debian/changelog index b2bb04ae..430e2875 100644 --- a/debian/changelog +++ b/debian/changelog @@ -3,7 +3,7 @@ mainline (1.1.1) unstable; urgency=medium * replaced deprecated Gtk.show_uri() and xdg_open() with new uri_open() * added PPA button to load the selected kernel's page from the mainline-ppa site - -- Brian K. White Mon, 06 Mar 2023 00:19:04 -0500 + -- Brian K. White Mon, 06 Mar 2023 02:43:44 -0500 mainline (1.1.0) unstable; urgency=medium From 9f9a21965df467b860ea32903ff908bb56a08439 Mon Sep 17 00:00:00 2001 From: "Brian K. White" <54458165+bkw777@users.noreply.github.com> Date: Mon, 6 Mar 2023 02:57:12 -0500 Subject: [PATCH 240/567] Update README.md --- README.md | 5 ----- 1 file changed, 5 deletions(-) diff --git a/README.md b/README.md index 8696674a..3b49204a 100644 --- a/README.md +++ b/README.md @@ -49,14 +49,10 @@ mainline-gtk * Kernel versions 5.15.7+ and libssl3 -> [Install libssl3](../../wiki/Install-libssl3) ### About -Written using Vala and GTK3. - mainline is a fork of [ukuu](https://github.com/teejee2008/ukuu) The original author stopped maintaining the original GPL version of ukuu and switched to a [paid license](https://teejeetech.in/tag/ukuu/) for future versions. ### Enhancements / Deviations from the original author's final GPL version -* (from [stevenpowerd](https://github.com/stevenpowered/ukuu)) Options controlling the internet connection check -* (from [cloyce](https://github.com/cloyce/ukuu)) Option to include or hide pre-release kernels * Changed name from "ukuu" to "mainline" * Removed all GRUB options * Removed all donate buttons, links, dialogs @@ -66,5 +62,4 @@ The original author stopped maintaining the original GPL version of ukuu and swi ### TODO & WIP * Make the notification bg process detect when the user logs off and exit itself. -* Save & restore window dimensions. * Move the notification/dbus code into the app and make an "applet mode" From 8001c94f06c4294d710f66070c11c6ad541b301d Mon Sep 17 00:00:00 2001 From: cappelikan Date: Mon, 6 Mar 2023 13:36:22 +0200 Subject: [PATCH 241/567] Update uk.po --- po/uk.po | 23 ++++++++++------------- 1 file changed, 10 insertions(+), 13 deletions(-) diff --git a/po/uk.po b/po/uk.po index 8e22d3bc..3a9fa4c6 100644 --- a/po/uk.po +++ b/po/uk.po @@ -22,14 +22,12 @@ msgid "Architecture" msgstr "Системна архитектура" #: src/Common/LinuxKernel.vala:295 -#, fuzzy msgid "Fetching individual kernel indexes..." -msgstr "Отримання індекса ..." +msgstr "Отримання окремих індексів ядра..." #: src/Common/LinuxKernel.vala:339 -#, fuzzy msgid "Fetching main index from" -msgstr "Отримання індекса ..." +msgstr "Отримання основного індексу з" #: src/Common/LinuxKernel.vala:593 msgid "Could not find running kernel in list!" @@ -107,21 +105,20 @@ msgid "This kernel is already installed." msgstr "Це ядро вже встановлено." #: src/Common/LinuxKernel.vala:1102 -#, fuzzy msgid "Uninstalling selected kernels" msgstr "Видаліть конкретні ядра" #: src/Common/LinuxKernel.vala:1108 msgid "requested" -msgstr "" +msgstr "запитуваний" #: src/Common/LinuxKernel.vala:1111 msgid "skipping the currently booted kernel" -msgstr "" +msgstr "пропускаючи поточне завантажене ядро" #: src/Common/LinuxKernel.vala:1127 msgid "found" -msgstr "" +msgstr "знайдено" #: src/Common/LinuxKernel.vala:1130 #, fuzzy @@ -138,7 +135,7 @@ msgstr "Повідомлення вимкнено" #: src/Common/Main.vala:332 src/Gtk/MainWindow.vala:638 msgid "Can not reach" -msgstr "" +msgstr "Не може дістатися" #: src/Common/Package.vala:131 src/Common/Package.vala:196 #, c-format @@ -317,7 +314,7 @@ msgstr "Видалити ядра, старіші за запущене ядро #: src/Gtk/MainWindow.vala:329 msgid "Reload" -msgstr "" +msgstr "Перезавантажити" #: src/Gtk/MainWindow.vala:334 src/Gtk/SettingsDialog.vala:50 msgid "Settings" @@ -329,7 +326,7 @@ msgstr "Про программу" #: src/Gtk/MainWindow.vala:344 msgid "Exit" -msgstr "" +msgstr "Вихід" #: src/Gtk/MainWindow.vala:412 msgid "Kernel upgrade utility for Ubuntu-based distributions" @@ -345,7 +342,7 @@ msgstr "Оригінал" #: src/Gtk/MainWindow.vala:451 msgid "Updating cached indexes" -msgstr "" +msgstr "Оновлення кешованих індексів" #: src/Gtk/MainWindow.vala:533 msgid "available" @@ -354,7 +351,7 @@ msgstr "доступний" #: src/Gtk/MainWindow.vala:567 src/Gtk/MainWindow.vala:601 #: src/Gtk/MainWindow.vala:629 msgid "DONE" -msgstr "" +msgstr "ГОТОВО" #: src/Gtk/ProgressWindow.vala:126 src/Gtk/TerminalWindow.vala:148 msgid "Cancel" From 5a4d2690a8ef291bf8a3a0ddb208e0f8d46b690c Mon Sep 17 00:00:00 2001 From: Danik2343 <38865696+Danik2343@users.noreply.github.com> Date: Mon, 6 Mar 2023 22:10:00 +0300 Subject: [PATCH 242/567] Update Russian Language --- po/ru.po | 40 +++++++++++++++++----------------------- 1 file changed, 17 insertions(+), 23 deletions(-) diff --git a/po/ru.po b/po/ru.po index ca53b54a..e974ad0e 100644 --- a/po/ru.po +++ b/po/ru.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-03-06 02:18-0500\n" -"PO-Revision-Date: 2023-03-01 20:22+0300\n" +"PO-Revision-Date: 2023-03-06 22:07+0300\n" "Last-Translator: Faust3000 (Original) | Danik2343 (Update Transaltion) " "\n" "Language-Team: Russian\n" @@ -23,14 +23,12 @@ msgid "Architecture" msgstr "Архитектура" #: src/Common/LinuxKernel.vala:295 -#, fuzzy msgid "Fetching individual kernel indexes..." -msgstr "Получение сведений..." +msgstr "Получение отдельных индексов ядер..." #: src/Common/LinuxKernel.vala:339 -#, fuzzy msgid "Fetching main index from" -msgstr "Получение сведений..." +msgstr "Получение основного индекса из" #: src/Common/LinuxKernel.vala:593 msgid "Could not find running kernel in list!" @@ -108,26 +106,24 @@ msgid "This kernel is already installed." msgstr "Это ядро уже установлено." #: src/Common/LinuxKernel.vala:1102 -#, fuzzy msgid "Uninstalling selected kernels" -msgstr "Установить указанное ядро" +msgstr "Удаление выбранных ядер" #: src/Common/LinuxKernel.vala:1108 msgid "requested" -msgstr "" +msgstr "requested" #: src/Common/LinuxKernel.vala:1111 msgid "skipping the currently booted kernel" -msgstr "" +msgstr "пропуск текущего загруженного ядра" #: src/Common/LinuxKernel.vala:1127 msgid "found" -msgstr "" +msgstr "найдено" #: src/Common/LinuxKernel.vala:1130 -#, fuzzy msgid "No packages to un-install!" -msgstr "Установленные пакеты" +msgstr "Нет пакетов для деинсталляции!" #: src/Common/Main.vala:259 msgid "Called from" @@ -139,7 +135,7 @@ msgstr "Уведомления отключены" #: src/Common/Main.vala:332 src/Gtk/MainWindow.vala:638 msgid "Can not reach" -msgstr "" +msgstr "Не удается получить" #: src/Common/Package.vala:131 src/Common/Package.vala:196 #, c-format @@ -196,7 +192,7 @@ msgstr "Скачать указанные ядра" #: src/Console/AppConsole.vala:82 msgid "Delete cached info about available kernels" -msgstr "" +msgstr "Удаление кэшированной информации о доступных ядрах" #: src/Console/AppConsole.vala:84 src/Gtk/AppGtk.vala:143 msgid "Options" @@ -204,12 +200,11 @@ msgstr "Параметры" #: src/Console/AppConsole.vala:86 msgid "Include unstable and RC releases" -msgstr "Включать нестабильные и релиз-кандидат-версии" +msgstr "Включать нестабильные и релиз-кандидат релизы" #: src/Console/AppConsole.vala:87 -#, fuzzy msgid "Exclude unstable and RC releases" -msgstr "Включать нестабильные и релиз-кандидат-версии" +msgstr "Исключить нестабильные и релиз-кандидат релизы" #: src/Console/AppConsole.vala:88 msgid "Enable verbose debugging output" @@ -282,9 +277,8 @@ msgid "Install" msgstr "Установить" #: src/Gtk/AppGtk.vala:141 -#, fuzzy msgid "options" -msgstr "Параметры" +msgstr "параметры" #: src/Gtk/AppGtk.vala:145 msgid "Print debug information" @@ -320,7 +314,7 @@ msgstr "Удалить более старшие установленные яд #: src/Gtk/MainWindow.vala:329 msgid "Reload" -msgstr "" +msgstr "Перезагрузить" #: src/Gtk/MainWindow.vala:334 src/Gtk/SettingsDialog.vala:50 msgid "Settings" @@ -332,7 +326,7 @@ msgstr "О программе" #: src/Gtk/MainWindow.vala:344 msgid "Exit" -msgstr "" +msgstr "Выход" #: src/Gtk/MainWindow.vala:412 msgid "Kernel upgrade utility for Ubuntu-based distributions" @@ -348,7 +342,7 @@ msgstr "Оригинал" #: src/Gtk/MainWindow.vala:451 msgid "Updating cached indexes" -msgstr "" +msgstr "Обновление кэшированных индексов" #: src/Gtk/MainWindow.vala:533 msgid "available" @@ -357,7 +351,7 @@ msgstr "доступно" #: src/Gtk/MainWindow.vala:567 src/Gtk/MainWindow.vala:601 #: src/Gtk/MainWindow.vala:629 msgid "DONE" -msgstr "" +msgstr "ГОТОВО" #: src/Gtk/ProgressWindow.vala:126 src/Gtk/TerminalWindow.vala:148 msgid "Cancel" From 67eb05591d632e101fcb296ae3be018771477ae7 Mon Sep 17 00:00:00 2001 From: cappelikan Date: Tue, 7 Mar 2023 04:38:31 +0200 Subject: [PATCH 243/567] Update uk.po --- po/uk.po | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/po/uk.po b/po/uk.po index 3a9fa4c6..b60885be 100644 --- a/po/uk.po +++ b/po/uk.po @@ -121,9 +121,8 @@ msgid "found" msgstr "знайдено" #: src/Common/LinuxKernel.vala:1130 -#, fuzzy msgid "No packages to un-install!" -msgstr "Встановлені пакети" +msgstr "Немає пакетів для видалення!" #: src/Common/Main.vala:259 msgid "Called from" @@ -192,7 +191,7 @@ msgstr "Завантажте конкретні ядра" #: src/Console/AppConsole.vala:82 msgid "Delete cached info about available kernels" -msgstr "" +msgstr "Видалити кешовану інформацію про доступні ядра" #: src/Console/AppConsole.vala:84 src/Gtk/AppGtk.vala:143 msgid "Options" @@ -203,9 +202,8 @@ msgid "Include unstable and RC releases" msgstr "Включати нестабільні і RC" #: src/Console/AppConsole.vala:87 -#, fuzzy msgid "Exclude unstable and RC releases" -msgstr "Включати нестабільні і RC" +msgstr "Виключити нестабільні та RC випуски" #: src/Console/AppConsole.vala:88 msgid "Enable verbose debugging output" @@ -276,9 +274,8 @@ msgid "Install" msgstr "Встановити" #: src/Gtk/AppGtk.vala:141 -#, fuzzy msgid "options" -msgstr "Параметри" +msgstr "параметри" #: src/Gtk/AppGtk.vala:145 msgid "Print debug information" From e8d45d3e7bba01479208f9db566a3e116cc3e982 Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Wed, 8 Mar 2023 03:37:04 -0500 Subject: [PATCH 244/567] dir_delete(), threshold_major, uninstall-old --- po/de.po | 107 ++++---------- po/el.po | 107 ++++---------- po/es.po | 109 ++++---------- po/fr.po | 107 ++++---------- po/hr.po | 107 ++++---------- po/it.po | 107 ++++---------- po/ko.po | 107 ++++---------- po/messages.pot | 107 ++++---------- po/nl.po | 107 ++++---------- po/pl.po | 107 ++++---------- po/ru.po | 107 ++++---------- po/sv.po | 109 ++++---------- po/tr.po | 107 ++++---------- po/uk.po | 107 ++++---------- src/Common/DownloadManager.vala | 2 +- src/Common/LinuxKernel.vala | 178 ++++++++-------------- src/Common/Package.vala | 4 +- src/Gtk/MainWindow.vala | 8 +- src/Utility/AsyncTask.vala | 36 ++--- src/Utility/TeeJee.FileSystem.vala | 123 ++++++---------- src/Utility/TeeJee.Misc.vala | 203 +++----------------------- src/Utility/TeeJee.ProcessHelper.vala | 36 ++--- 22 files changed, 570 insertions(+), 1522 deletions(-) diff --git a/po/de.po b/po/de.po index ce0b4ec7..06ff5bb5 100644 --- a/po/de.po +++ b/po/de.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-06 02:18-0500\n" +"POT-Creation-Date: 2023-03-08 01:01-0500\n" "PO-Revision-Date: 2023-02-20 18:40+0100\n" "Last-Translator: Marvin Meysel \n" "Language-Team: German\n" @@ -13,117 +13,117 @@ msgstr "" "X-Launchpad-Export-Date: 2017-04-13 11:48+0000\n" "X-Generator: Poedit 3.1.1\n" -#: src/Common/LinuxKernel.vala:88 +#: src/Common/LinuxKernel.vala:89 msgid "Distribution" msgstr "Distribution" -#: src/Common/LinuxKernel.vala:103 +#: src/Common/LinuxKernel.vala:104 msgid "Architecture" msgstr "Architektur" -#: src/Common/LinuxKernel.vala:295 +#: src/Common/LinuxKernel.vala:283 #, fuzzy msgid "Fetching individual kernel indexes..." msgstr "Index abrufen..." -#: src/Common/LinuxKernel.vala:339 +#: src/Common/LinuxKernel.vala:327 #, fuzzy msgid "Fetching main index from" msgstr "Index abrufen..." -#: src/Common/LinuxKernel.vala:593 +#: src/Common/LinuxKernel.vala:544 msgid "Could not find running kernel in list!" msgstr "Konnte keinen laufenden Kernel in der Liste finden!" -#: src/Common/LinuxKernel.vala:599 +#: src/Common/LinuxKernel.vala:550 msgid "Could not find any kernels to uninstall" msgstr "Es konnten keine Kernel zum Deinstallieren gefunden werden" -#: src/Common/LinuxKernel.vala:608 +#: src/Common/LinuxKernel.vala:559 msgid "The following kernels will be uninstalled:" msgstr "Die folgenden Kernel werden deinstalliert:" -#: src/Common/LinuxKernel.vala:612 +#: src/Common/LinuxKernel.vala:563 msgid "Continue ?" msgstr "Weiter ?" -#: src/Common/LinuxKernel.vala:635 src/Console/AppConsole.vala:298 +#: src/Common/LinuxKernel.vala:586 src/Console/AppConsole.vala:298 msgid "Latest update" msgstr "Neustes Update" -#: src/Common/LinuxKernel.vala:646 src/Console/AppConsole.vala:305 +#: src/Common/LinuxKernel.vala:597 src/Console/AppConsole.vala:305 msgid "Latest point update" msgstr "Letzte Punktaktualisierung" -#: src/Common/LinuxKernel.vala:654 src/Console/AppConsole.vala:310 +#: src/Common/LinuxKernel.vala:605 src/Console/AppConsole.vala:310 #: src/Console/AppConsole.vala:365 msgid "No updates found" msgstr "Keine Updates gefunden" -#: src/Common/LinuxKernel.vala:664 +#: src/Common/LinuxKernel.vala:615 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Kernel-Version %s installieren? (j/n):" -#: src/Common/LinuxKernel.vala:896 +#: src/Common/LinuxKernel.vala:838 msgid "Packages Available" msgstr "Verfügbare Pakete" -#: src/Common/LinuxKernel.vala:904 +#: src/Common/LinuxKernel.vala:843 msgid "Packages Installed" msgstr "Installierte Pakete" -#: src/Common/LinuxKernel.vala:918 src/Utility/TeeJee.FileSystem.vala:157 +#: src/Common/LinuxKernel.vala:856 src/Utility/TeeJee.FileSystem.vala:136 msgid "File not found" msgstr "Datei nicht gefunden " -#: src/Common/LinuxKernel.vala:984 +#: src/Common/LinuxKernel.vala:920 msgid "Available Kernels" msgstr "Verfügbare Kernel" -#: src/Common/LinuxKernel.vala:991 src/Gtk/MainWindow.vala:151 +#: src/Common/LinuxKernel.vala:927 src/Gtk/MainWindow.vala:151 msgid "Installed" msgstr "Installiert" -#: src/Common/LinuxKernel.vala:991 src/Gtk/MainWindow.vala:151 +#: src/Common/LinuxKernel.vala:927 src/Gtk/MainWindow.vala:151 #: src/Gtk/MainWindow.vala:523 src/Gtk/MainWindow.vala:537 msgid "Running" msgstr "Läuft" -#: src/Common/LinuxKernel.vala:1028 +#: src/Common/LinuxKernel.vala:964 msgid "Downloading" msgstr "Herunterladen" -#: src/Common/LinuxKernel.vala:1047 +#: src/Common/LinuxKernel.vala:983 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:1050 +#: src/Common/LinuxKernel.vala:986 msgid "ERROR" msgstr "Fehler" -#: src/Common/LinuxKernel.vala:1064 +#: src/Common/LinuxKernel.vala:1000 msgid "This kernel is already installed." msgstr "Dieser Kernel ist bereits installiert." -#: src/Common/LinuxKernel.vala:1102 +#: src/Common/LinuxKernel.vala:1038 #, fuzzy msgid "Uninstalling selected kernels" msgstr "Deinstallation des angegebenen Kernels" -#: src/Common/LinuxKernel.vala:1108 +#: src/Common/LinuxKernel.vala:1044 msgid "requested" msgstr "" -#: src/Common/LinuxKernel.vala:1111 +#: src/Common/LinuxKernel.vala:1047 msgid "skipping the currently booted kernel" msgstr "" -#: src/Common/LinuxKernel.vala:1127 +#: src/Common/LinuxKernel.vala:1063 msgid "found" msgstr "" -#: src/Common/LinuxKernel.vala:1130 +#: src/Common/LinuxKernel.vala:1066 #, fuzzy msgid "No packages to un-install!" msgstr "Installierte Pakete" @@ -141,7 +141,7 @@ msgstr "Benachrichtigungen sind deaktiviert" msgid "Can not reach" msgstr "Fehler beim lesen der Datei" -#: src/Common/Package.vala:131 src/Common/Package.vala:196 +#: src/Common/Package.vala:129 src/Common/Package.vala:194 #, c-format msgid "File not found: %s" msgstr "Datei nicht gefunden: %s" @@ -470,55 +470,6 @@ msgstr "Einschlüsse von Drittparteien" msgid "Missing Icon" msgstr "Fehlendes Symbol" -#: src/Utility/TeeJee.FileSystem.vala:71 -msgid "File deleted" -msgstr "Datei Gelöscht" - -#: src/Utility/TeeJee.FileSystem.vala:76 src/Utility/TeeJee.FileSystem.vala:240 -msgid "Failed to delete file" -msgstr "Fehler beim Löschen der Datei" - -#: src/Utility/TeeJee.FileSystem.vala:96 -msgid "Failed to read file" -msgstr "Fehler beim lesen der Datei" - -#: src/Utility/TeeJee.FileSystem.vala:123 -msgid "File saved" -msgstr "Datei gespeichert" - -#: src/Utility/TeeJee.FileSystem.vala:129 -msgid "Failed to write file" -msgstr "Fehler beim Schreiben der Datei" - -#: src/Utility/TeeJee.FileSystem.vala:141 -msgid "File copied" -msgstr "Datei kopiert" - -#: src/Utility/TeeJee.FileSystem.vala:148 -msgid "Failed to copy file" -msgstr "Fehler beim Kopieren der Datei" - -#: src/Utility/TeeJee.FileSystem.vala:171 -msgid "File moved" -msgstr "Datei Verschoben" - -#: src/Utility/TeeJee.FileSystem.vala:176 -msgid "Failed to move file" -msgstr "Fehler beim Verschieben der Datei" - -#: src/Utility/TeeJee.FileSystem.vala:217 -#: src/Utility/TeeJee.FileSystem.vala:220 -msgid "Created directory" -msgstr "Erstelltes Verzeichnis" - -#: src/Utility/TeeJee.FileSystem.vala:227 -msgid "Failed to create dir" -msgstr "Fehler beim Erstellten Verzeichnis" - -#: src/Utility/TeeJee.FileSystem.vala:239 -msgid "Deleted" -msgstr "Gelöscht" - #: src/Utility/TeeJee.Logging.vala:59 msgid "E" msgstr "E" diff --git a/po/el.po b/po/el.po index dc3656ee..fe300596 100644 --- a/po/el.po +++ b/po/el.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-06 02:18-0500\n" +"POT-Creation-Date: 2023-03-08 01:01-0500\n" "PO-Revision-Date: 2023-01-10 02:03-0600\n" "Last-Translator: Vasilis Kosmidis \n" "Language-Team: Greek\n" @@ -13,118 +13,118 @@ msgstr "" "X-Launchpad-Export-Date: 2017-04-13 11:48+0000\n" "X-Generator: Poedit 2.0.5\n" -#: src/Common/LinuxKernel.vala:88 +#: src/Common/LinuxKernel.vala:89 msgid "Distribution" msgstr "Διανομή" -#: src/Common/LinuxKernel.vala:103 +#: src/Common/LinuxKernel.vala:104 msgid "Architecture" msgstr "Αρχιτεκτονική" -#: src/Common/LinuxKernel.vala:295 +#: src/Common/LinuxKernel.vala:283 #, fuzzy msgid "Fetching individual kernel indexes..." msgstr "Ανάκτηση ευρετηρίου..." -#: src/Common/LinuxKernel.vala:339 +#: src/Common/LinuxKernel.vala:327 #, fuzzy msgid "Fetching main index from" msgstr "Ανάκτηση ευρετηρίου..." -#: src/Common/LinuxKernel.vala:593 +#: src/Common/LinuxKernel.vala:544 msgid "Could not find running kernel in list!" msgstr "Δεν ήταν δυνατή η εύρεση του τρέχοντος πυρήνα στη λίστα!" -#: src/Common/LinuxKernel.vala:599 +#: src/Common/LinuxKernel.vala:550 msgid "Could not find any kernels to uninstall" msgstr "Δεν βρέθηκε κανένας πυρήνας για απεγκατάσταση" -#: src/Common/LinuxKernel.vala:608 +#: src/Common/LinuxKernel.vala:559 #, fuzzy msgid "The following kernels will be uninstalled:" msgstr "Αυτός ο πυρήνας είναι ήδη εγκατεστημένος." -#: src/Common/LinuxKernel.vala:612 +#: src/Common/LinuxKernel.vala:563 msgid "Continue ?" msgstr "Συνέχεια;" -#: src/Common/LinuxKernel.vala:635 src/Console/AppConsole.vala:298 +#: src/Common/LinuxKernel.vala:586 src/Console/AppConsole.vala:298 msgid "Latest update" msgstr "Τελευταία αναβάθμιση" -#: src/Common/LinuxKernel.vala:646 src/Console/AppConsole.vala:305 +#: src/Common/LinuxKernel.vala:597 src/Console/AppConsole.vala:305 msgid "Latest point update" msgstr "Τελευταία ενημέρωση συντήρησης" -#: src/Common/LinuxKernel.vala:654 src/Console/AppConsole.vala:310 +#: src/Common/LinuxKernel.vala:605 src/Console/AppConsole.vala:310 #: src/Console/AppConsole.vala:365 msgid "No updates found" msgstr "Δεν βρέθηκαν ενημερώσεις" -#: src/Common/LinuxKernel.vala:664 +#: src/Common/LinuxKernel.vala:615 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Εγκατάσταση του πυρήνα έκδοσης %s ; (ν/ό):" -#: src/Common/LinuxKernel.vala:896 +#: src/Common/LinuxKernel.vala:838 msgid "Packages Available" msgstr "Διαθέσιμα πακέτα" -#: src/Common/LinuxKernel.vala:904 +#: src/Common/LinuxKernel.vala:843 msgid "Packages Installed" msgstr "Εγκατεστημένα πακέτα" -#: src/Common/LinuxKernel.vala:918 src/Utility/TeeJee.FileSystem.vala:157 +#: src/Common/LinuxKernel.vala:856 src/Utility/TeeJee.FileSystem.vala:136 msgid "File not found" msgstr "Το αρχείο δε βρέθηκε" -#: src/Common/LinuxKernel.vala:984 +#: src/Common/LinuxKernel.vala:920 msgid "Available Kernels" msgstr "Διαθέσιμοι πυρήνες" -#: src/Common/LinuxKernel.vala:991 src/Gtk/MainWindow.vala:151 +#: src/Common/LinuxKernel.vala:927 src/Gtk/MainWindow.vala:151 msgid "Installed" msgstr "Εγκατεστημένος" -#: src/Common/LinuxKernel.vala:991 src/Gtk/MainWindow.vala:151 +#: src/Common/LinuxKernel.vala:927 src/Gtk/MainWindow.vala:151 #: src/Gtk/MainWindow.vala:523 src/Gtk/MainWindow.vala:537 msgid "Running" msgstr "Ενεργός" -#: src/Common/LinuxKernel.vala:1028 +#: src/Common/LinuxKernel.vala:964 msgid "Downloading" msgstr "Λήψη" -#: src/Common/LinuxKernel.vala:1047 +#: src/Common/LinuxKernel.vala:983 msgid "OK" msgstr "ΟΚ" -#: src/Common/LinuxKernel.vala:1050 +#: src/Common/LinuxKernel.vala:986 msgid "ERROR" msgstr "ΣΦΑΛΜΑ" -#: src/Common/LinuxKernel.vala:1064 +#: src/Common/LinuxKernel.vala:1000 msgid "This kernel is already installed." msgstr "Αυτός ο πυρήνας είναι ήδη εγκατεστημένος." -#: src/Common/LinuxKernel.vala:1102 +#: src/Common/LinuxKernel.vala:1038 #, fuzzy msgid "Uninstalling selected kernels" msgstr "Απεγκατάσταση του καθορισμένου πυρήνα" -#: src/Common/LinuxKernel.vala:1108 +#: src/Common/LinuxKernel.vala:1044 msgid "requested" msgstr "" -#: src/Common/LinuxKernel.vala:1111 +#: src/Common/LinuxKernel.vala:1047 msgid "skipping the currently booted kernel" msgstr "" -#: src/Common/LinuxKernel.vala:1127 +#: src/Common/LinuxKernel.vala:1063 msgid "found" msgstr "" -#: src/Common/LinuxKernel.vala:1130 +#: src/Common/LinuxKernel.vala:1066 #, fuzzy msgid "No packages to un-install!" msgstr "Εγκατεστημένα πακέτα" @@ -142,7 +142,7 @@ msgstr "Οι ειδοποιήσεις είναι απενεργοποιημέν msgid "Can not reach" msgstr "Αποτυχία ανάγνωσης του αρχείου" -#: src/Common/Package.vala:131 src/Common/Package.vala:196 +#: src/Common/Package.vala:129 src/Common/Package.vala:194 #, c-format msgid "File not found: %s" msgstr "Το αρχείο δεν βρέθηκε: %s" @@ -469,55 +469,6 @@ msgstr "Συμπεριλήψεις τρίτων" msgid "Missing Icon" msgstr "Ελλείπον εικονίδιο" -#: src/Utility/TeeJee.FileSystem.vala:71 -msgid "File deleted" -msgstr "Το αρχείο διαγράφηκε" - -#: src/Utility/TeeJee.FileSystem.vala:76 src/Utility/TeeJee.FileSystem.vala:240 -msgid "Failed to delete file" -msgstr "Αποτυχία διαγραφής του αρχείου" - -#: src/Utility/TeeJee.FileSystem.vala:96 -msgid "Failed to read file" -msgstr "Αποτυχία ανάγνωσης του αρχείου" - -#: src/Utility/TeeJee.FileSystem.vala:123 -msgid "File saved" -msgstr "Το αρχείο αποθηκεύτηκε" - -#: src/Utility/TeeJee.FileSystem.vala:129 -msgid "Failed to write file" -msgstr "Αποτυχία εγγραφής αρχείου" - -#: src/Utility/TeeJee.FileSystem.vala:141 -msgid "File copied" -msgstr "Το αρχείο αντιγράφηκε" - -#: src/Utility/TeeJee.FileSystem.vala:148 -msgid "Failed to copy file" -msgstr "Αποτυχία αντιγραφής αρχείου" - -#: src/Utility/TeeJee.FileSystem.vala:171 -msgid "File moved" -msgstr "Το αρχείο μετακινήθηκε" - -#: src/Utility/TeeJee.FileSystem.vala:176 -msgid "Failed to move file" -msgstr "Αποτυχία μετακίνησης αρχείου" - -#: src/Utility/TeeJee.FileSystem.vala:217 -#: src/Utility/TeeJee.FileSystem.vala:220 -msgid "Created directory" -msgstr "Δημιουργήθηκε κατάλογος" - -#: src/Utility/TeeJee.FileSystem.vala:227 -msgid "Failed to create dir" -msgstr "Αποτυχία δημιουργίας καταλόγου" - -#: src/Utility/TeeJee.FileSystem.vala:239 -msgid "Deleted" -msgstr "Διαγράφηκε" - #: src/Utility/TeeJee.Logging.vala:59 msgid "E" msgstr "E" diff --git a/po/es.po b/po/es.po index fb245a3b..283d0c5f 100644 --- a/po/es.po +++ b/po/es.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-06 02:18-0500\n" +"POT-Creation-Date: 2023-03-08 01:01-0500\n" "PO-Revision-Date: 2018-01-03 02:03-0600\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish\n" @@ -13,119 +13,119 @@ msgstr "" "X-Launchpad-Export-Date: 2017-04-13 11:48+0000\n" "X-Generator: Poedit 2.0.5\n" -#: src/Common/LinuxKernel.vala:88 +#: src/Common/LinuxKernel.vala:89 msgid "Distribution" msgstr "Distribución" -#: src/Common/LinuxKernel.vala:103 +#: src/Common/LinuxKernel.vala:104 msgid "Architecture" msgstr "Arquitectura del sistema" -#: src/Common/LinuxKernel.vala:295 +#: src/Common/LinuxKernel.vala:283 #, fuzzy msgid "Fetching individual kernel indexes..." msgstr "Recuperando índice..." -#: src/Common/LinuxKernel.vala:339 +#: src/Common/LinuxKernel.vala:327 #, fuzzy msgid "Fetching main index from" msgstr "Recuperando índice..." -#: src/Common/LinuxKernel.vala:593 +#: src/Common/LinuxKernel.vala:544 msgid "Could not find running kernel in list!" msgstr "¡No se pudo encontrar el núcleo en ejecución en la lista!" -#: src/Common/LinuxKernel.vala:599 +#: src/Common/LinuxKernel.vala:550 #, fuzzy msgid "Could not find any kernels to uninstall" msgstr "Seleccione los núcleos que se desinstalarán" -#: src/Common/LinuxKernel.vala:608 +#: src/Common/LinuxKernel.vala:559 #, fuzzy msgid "The following kernels will be uninstalled:" msgstr "Los siguientes kernels serán eliminados:" -#: src/Common/LinuxKernel.vala:612 +#: src/Common/LinuxKernel.vala:563 msgid "Continue ?" msgstr "¿Continuar?" -#: src/Common/LinuxKernel.vala:635 src/Console/AppConsole.vala:298 +#: src/Common/LinuxKernel.vala:586 src/Console/AppConsole.vala:298 msgid "Latest update" msgstr "" -#: src/Common/LinuxKernel.vala:646 src/Console/AppConsole.vala:305 +#: src/Common/LinuxKernel.vala:597 src/Console/AppConsole.vala:305 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:654 src/Console/AppConsole.vala:310 +#: src/Common/LinuxKernel.vala:605 src/Console/AppConsole.vala:310 #: src/Console/AppConsole.vala:365 msgid "No updates found" msgstr "No se encontró ninguna actualización" -#: src/Common/LinuxKernel.vala:664 +#: src/Common/LinuxKernel.vala:615 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "" -#: src/Common/LinuxKernel.vala:896 +#: src/Common/LinuxKernel.vala:838 msgid "Packages Available" msgstr "Paquetes disponibles" -#: src/Common/LinuxKernel.vala:904 +#: src/Common/LinuxKernel.vala:843 msgid "Packages Installed" msgstr "Paquetes instalados" -#: src/Common/LinuxKernel.vala:918 src/Utility/TeeJee.FileSystem.vala:157 +#: src/Common/LinuxKernel.vala:856 src/Utility/TeeJee.FileSystem.vala:136 msgid "File not found" msgstr "No se encontró el archivo" -#: src/Common/LinuxKernel.vala:984 +#: src/Common/LinuxKernel.vala:920 msgid "Available Kernels" msgstr "Núcleos disponibles" -#: src/Common/LinuxKernel.vala:991 src/Gtk/MainWindow.vala:151 +#: src/Common/LinuxKernel.vala:927 src/Gtk/MainWindow.vala:151 msgid "Installed" msgstr "Instalado" -#: src/Common/LinuxKernel.vala:991 src/Gtk/MainWindow.vala:151 +#: src/Common/LinuxKernel.vala:927 src/Gtk/MainWindow.vala:151 #: src/Gtk/MainWindow.vala:523 src/Gtk/MainWindow.vala:537 msgid "Running" msgstr "En ejecución" -#: src/Common/LinuxKernel.vala:1028 +#: src/Common/LinuxKernel.vala:964 msgid "Downloading" msgstr "Descargando" -#: src/Common/LinuxKernel.vala:1047 +#: src/Common/LinuxKernel.vala:983 msgid "OK" msgstr "Aceptar" -#: src/Common/LinuxKernel.vala:1050 +#: src/Common/LinuxKernel.vala:986 msgid "ERROR" msgstr "ERROR" -#: src/Common/LinuxKernel.vala:1064 +#: src/Common/LinuxKernel.vala:1000 msgid "This kernel is already installed." msgstr "Este núcleo ya se instaló." -#: src/Common/LinuxKernel.vala:1102 +#: src/Common/LinuxKernel.vala:1038 #, fuzzy msgid "Uninstalling selected kernels" msgstr "Instalar núcleo troncal especificado" -#: src/Common/LinuxKernel.vala:1108 +#: src/Common/LinuxKernel.vala:1044 msgid "requested" msgstr "" -#: src/Common/LinuxKernel.vala:1111 +#: src/Common/LinuxKernel.vala:1047 msgid "skipping the currently booted kernel" msgstr "" -#: src/Common/LinuxKernel.vala:1127 +#: src/Common/LinuxKernel.vala:1063 msgid "found" msgstr "" -#: src/Common/LinuxKernel.vala:1130 +#: src/Common/LinuxKernel.vala:1066 #, fuzzy msgid "No packages to un-install!" msgstr "Paquetes instalados" @@ -144,7 +144,7 @@ msgstr "Notificación" msgid "Can not reach" msgstr "Falló la lectura del archivo" -#: src/Common/Package.vala:131 src/Common/Package.vala:196 +#: src/Common/Package.vala:129 src/Common/Package.vala:194 #, c-format msgid "File not found: %s" msgstr "No se encontró el archivo: %s" @@ -480,57 +480,6 @@ msgstr "Herramientas de terceros" msgid "Missing Icon" msgstr "Falta el icono" -#: src/Utility/TeeJee.FileSystem.vala:71 -#, fuzzy -msgid "File deleted" -msgstr "Se guardó el archivo" - -#: src/Utility/TeeJee.FileSystem.vala:76 src/Utility/TeeJee.FileSystem.vala:240 -#, fuzzy -msgid "Failed to delete file" -msgstr "Falló la escritura del archivo" - -#: src/Utility/TeeJee.FileSystem.vala:96 -msgid "Failed to read file" -msgstr "Falló la lectura del archivo" - -#: src/Utility/TeeJee.FileSystem.vala:123 -msgid "File saved" -msgstr "Se guardó el archivo" - -#: src/Utility/TeeJee.FileSystem.vala:129 -msgid "Failed to write file" -msgstr "Falló la escritura del archivo" - -#: src/Utility/TeeJee.FileSystem.vala:141 -msgid "File copied" -msgstr "Se copió el archivo" - -#: src/Utility/TeeJee.FileSystem.vala:148 -msgid "Failed to copy file" -msgstr "Falló la copia del archivo" - -#: src/Utility/TeeJee.FileSystem.vala:171 -msgid "File moved" -msgstr "Se trasladó el archivo" - -#: src/Utility/TeeJee.FileSystem.vala:176 -msgid "Failed to move file" -msgstr "Falló el traslado del archivo" - -#: src/Utility/TeeJee.FileSystem.vala:217 -#: src/Utility/TeeJee.FileSystem.vala:220 -msgid "Created directory" -msgstr "Se creó el directorio" - -#: src/Utility/TeeJee.FileSystem.vala:227 -msgid "Failed to create dir" -msgstr "Falló la creación del directorio" - -#: src/Utility/TeeJee.FileSystem.vala:239 -msgid "Deleted" -msgstr "" - #: src/Utility/TeeJee.Logging.vala:59 msgid "E" msgstr "E" diff --git a/po/fr.po b/po/fr.po index b0b913c6..e64ffc96 100644 --- a/po/fr.po +++ b/po/fr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-06 02:18-0500\n" +"POT-Creation-Date: 2023-03-08 01:01-0500\n" "PO-Revision-Date: 2018-08-05 15:50+0200\n" "Last-Translator: Yolateng0 \n" "Language-Team: French\n" @@ -13,119 +13,119 @@ msgstr "" "X-Launchpad-Export-Date: 2017-04-13 11:48+0000\n" "X-Generator: Poedit 2.0.6\n" -#: src/Common/LinuxKernel.vala:88 +#: src/Common/LinuxKernel.vala:89 msgid "Distribution" msgstr "Distribution" -#: src/Common/LinuxKernel.vala:103 +#: src/Common/LinuxKernel.vala:104 msgid "Architecture" msgstr "Architecture" -#: src/Common/LinuxKernel.vala:295 +#: src/Common/LinuxKernel.vala:283 #, fuzzy msgid "Fetching individual kernel indexes..." msgstr "Récupération de l'index..." -#: src/Common/LinuxKernel.vala:339 +#: src/Common/LinuxKernel.vala:327 #, fuzzy msgid "Fetching main index from" msgstr "Récupération de l'index..." -#: src/Common/LinuxKernel.vala:593 +#: src/Common/LinuxKernel.vala:544 msgid "Could not find running kernel in list!" msgstr "Impossible de trouver la version courante dans la liste!" -#: src/Common/LinuxKernel.vala:599 +#: src/Common/LinuxKernel.vala:550 #, fuzzy msgid "Could not find any kernels to uninstall" msgstr "Impossible de trouver de noyaux à supprimer" -#: src/Common/LinuxKernel.vala:608 +#: src/Common/LinuxKernel.vala:559 #, fuzzy msgid "The following kernels will be uninstalled:" msgstr "Les noyaux suivants seront supprimés:" -#: src/Common/LinuxKernel.vala:612 +#: src/Common/LinuxKernel.vala:563 msgid "Continue ?" msgstr "Reprendre ?" -#: src/Common/LinuxKernel.vala:635 src/Console/AppConsole.vala:298 +#: src/Common/LinuxKernel.vala:586 src/Console/AppConsole.vala:298 msgid "Latest update" msgstr "Dernière mise à jour" -#: src/Common/LinuxKernel.vala:646 src/Console/AppConsole.vala:305 +#: src/Common/LinuxKernel.vala:597 src/Console/AppConsole.vala:305 msgid "Latest point update" msgstr "Dernière mise à jour mineure" -#: src/Common/LinuxKernel.vala:654 src/Console/AppConsole.vala:310 +#: src/Common/LinuxKernel.vala:605 src/Console/AppConsole.vala:310 #: src/Console/AppConsole.vala:365 msgid "No updates found" msgstr "Aucune mise à jour disponible" -#: src/Common/LinuxKernel.vala:664 +#: src/Common/LinuxKernel.vala:615 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Installer le noyau en version %s ? (y/n): " -#: src/Common/LinuxKernel.vala:896 +#: src/Common/LinuxKernel.vala:838 msgid "Packages Available" msgstr "Paquets Disponibles" -#: src/Common/LinuxKernel.vala:904 +#: src/Common/LinuxKernel.vala:843 msgid "Packages Installed" msgstr "Paquets Installés" -#: src/Common/LinuxKernel.vala:918 src/Utility/TeeJee.FileSystem.vala:157 +#: src/Common/LinuxKernel.vala:856 src/Utility/TeeJee.FileSystem.vala:136 msgid "File not found" msgstr "Fichier non trouvé" -#: src/Common/LinuxKernel.vala:984 +#: src/Common/LinuxKernel.vala:920 msgid "Available Kernels" msgstr "Noyaux Disponibles" -#: src/Common/LinuxKernel.vala:991 src/Gtk/MainWindow.vala:151 +#: src/Common/LinuxKernel.vala:927 src/Gtk/MainWindow.vala:151 msgid "Installed" msgstr "Installé" -#: src/Common/LinuxKernel.vala:991 src/Gtk/MainWindow.vala:151 +#: src/Common/LinuxKernel.vala:927 src/Gtk/MainWindow.vala:151 #: src/Gtk/MainWindow.vala:523 src/Gtk/MainWindow.vala:537 msgid "Running" msgstr "Actuel" -#: src/Common/LinuxKernel.vala:1028 +#: src/Common/LinuxKernel.vala:964 msgid "Downloading" msgstr "Téléchargement" -#: src/Common/LinuxKernel.vala:1047 +#: src/Common/LinuxKernel.vala:983 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:1050 +#: src/Common/LinuxKernel.vala:986 msgid "ERROR" msgstr "ERREUR" -#: src/Common/LinuxKernel.vala:1064 +#: src/Common/LinuxKernel.vala:1000 msgid "This kernel is already installed." msgstr "Ce noyau est déjà installé." -#: src/Common/LinuxKernel.vala:1102 +#: src/Common/LinuxKernel.vala:1038 #, fuzzy msgid "Uninstalling selected kernels" msgstr "Installer les noyaux spécifiés" -#: src/Common/LinuxKernel.vala:1108 +#: src/Common/LinuxKernel.vala:1044 msgid "requested" msgstr "" -#: src/Common/LinuxKernel.vala:1111 +#: src/Common/LinuxKernel.vala:1047 msgid "skipping the currently booted kernel" msgstr "" -#: src/Common/LinuxKernel.vala:1127 +#: src/Common/LinuxKernel.vala:1063 msgid "found" msgstr "" -#: src/Common/LinuxKernel.vala:1130 +#: src/Common/LinuxKernel.vala:1066 #, fuzzy msgid "No packages to un-install!" msgstr "Paquets Installés" @@ -143,7 +143,7 @@ msgstr "Les notifications sont désactivées" msgid "Can not reach" msgstr "Impossible de lire le fichier" -#: src/Common/Package.vala:131 src/Common/Package.vala:196 +#: src/Common/Package.vala:129 src/Common/Package.vala:194 #, c-format msgid "File not found: %s" msgstr "Fichier non trouvé: %s" @@ -479,55 +479,6 @@ msgstr "Dépendances Tierces" msgid "Missing Icon" msgstr "Icône introuvable" -#: src/Utility/TeeJee.FileSystem.vala:71 -msgid "File deleted" -msgstr "Fichier supprimé" - -#: src/Utility/TeeJee.FileSystem.vala:76 src/Utility/TeeJee.FileSystem.vala:240 -msgid "Failed to delete file" -msgstr "Impossible d'écrire le fichier" - -#: src/Utility/TeeJee.FileSystem.vala:96 -msgid "Failed to read file" -msgstr "Impossible de lire le fichier" - -#: src/Utility/TeeJee.FileSystem.vala:123 -msgid "File saved" -msgstr "Fichier sauvegardé" - -#: src/Utility/TeeJee.FileSystem.vala:129 -msgid "Failed to write file" -msgstr "Impossible d'écrire le fichier" - -#: src/Utility/TeeJee.FileSystem.vala:141 -msgid "File copied" -msgstr "Fichier copié" - -#: src/Utility/TeeJee.FileSystem.vala:148 -msgid "Failed to copy file" -msgstr "Impossible de copier le fichier" - -#: src/Utility/TeeJee.FileSystem.vala:171 -msgid "File moved" -msgstr "Fichier déplacé" - -#: src/Utility/TeeJee.FileSystem.vala:176 -msgid "Failed to move file" -msgstr "Impossible de déplacer le fichier" - -#: src/Utility/TeeJee.FileSystem.vala:217 -#: src/Utility/TeeJee.FileSystem.vala:220 -msgid "Created directory" -msgstr "Dossier créé" - -#: src/Utility/TeeJee.FileSystem.vala:227 -msgid "Failed to create dir" -msgstr "Impossible de créer le nouveau dossier" - -#: src/Utility/TeeJee.FileSystem.vala:239 -msgid "Deleted" -msgstr "Supprimé" - #: src/Utility/TeeJee.Logging.vala:59 msgid "E" msgstr "E" diff --git a/po/hr.po b/po/hr.po index 51337321..e2959b06 100644 --- a/po/hr.po +++ b/po/hr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-06 02:18-0500\n" +"POT-Creation-Date: 2023-03-08 01:01-0500\n" "PO-Revision-Date: 2022-09-22 12:13+0200\n" "Last-Translator: gogo \n" "Language-Team: Croatian\n" @@ -13,117 +13,117 @@ msgstr "" "X-Launchpad-Export-Date: 2017-12-23 23:36+0000\n" "X-Generator: Poedit 3.0.1\n" -#: src/Common/LinuxKernel.vala:88 +#: src/Common/LinuxKernel.vala:89 msgid "Distribution" msgstr "Distribucija" -#: src/Common/LinuxKernel.vala:103 +#: src/Common/LinuxKernel.vala:104 msgid "Architecture" msgstr "Arhitektura" -#: src/Common/LinuxKernel.vala:295 +#: src/Common/LinuxKernel.vala:283 #, fuzzy msgid "Fetching individual kernel indexes..." msgstr "Preuzimanje sadržaja..." -#: src/Common/LinuxKernel.vala:339 +#: src/Common/LinuxKernel.vala:327 #, fuzzy msgid "Fetching main index from" msgstr "Preuzimanje sadržaja..." -#: src/Common/LinuxKernel.vala:593 +#: src/Common/LinuxKernel.vala:544 msgid "Could not find running kernel in list!" msgstr "Nemoguće je pronaći pokrenuti kernel na popisu!" -#: src/Common/LinuxKernel.vala:599 +#: src/Common/LinuxKernel.vala:550 msgid "Could not find any kernels to uninstall" msgstr "Nema pronađenih kernela za deinstaliranje" -#: src/Common/LinuxKernel.vala:608 +#: src/Common/LinuxKernel.vala:559 msgid "The following kernels will be uninstalled:" msgstr "Sljedeći kerneli će biti deinstalirani:" -#: src/Common/LinuxKernel.vala:612 +#: src/Common/LinuxKernel.vala:563 msgid "Continue ?" msgstr "Nastavi?" -#: src/Common/LinuxKernel.vala:635 src/Console/AppConsole.vala:298 +#: src/Common/LinuxKernel.vala:586 src/Console/AppConsole.vala:298 msgid "Latest update" msgstr "Najnovija nadopuna" -#: src/Common/LinuxKernel.vala:646 src/Console/AppConsole.vala:305 +#: src/Common/LinuxKernel.vala:597 src/Console/AppConsole.vala:305 msgid "Latest point update" msgstr "Najnovija ciljana nadopuna" -#: src/Common/LinuxKernel.vala:654 src/Console/AppConsole.vala:310 +#: src/Common/LinuxKernel.vala:605 src/Console/AppConsole.vala:310 #: src/Console/AppConsole.vala:365 msgid "No updates found" msgstr "Nema pronađenih nadopuna" -#: src/Common/LinuxKernel.vala:664 +#: src/Common/LinuxKernel.vala:615 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Instaliraj kernel inačice %s ? (d/n): " -#: src/Common/LinuxKernel.vala:896 +#: src/Common/LinuxKernel.vala:838 msgid "Packages Available" msgstr "Dostupni paketi" -#: src/Common/LinuxKernel.vala:904 +#: src/Common/LinuxKernel.vala:843 msgid "Packages Installed" msgstr "Instalirani paketi" -#: src/Common/LinuxKernel.vala:918 src/Utility/TeeJee.FileSystem.vala:157 +#: src/Common/LinuxKernel.vala:856 src/Utility/TeeJee.FileSystem.vala:136 msgid "File not found" msgstr "Datoteka nije pronađena" -#: src/Common/LinuxKernel.vala:984 +#: src/Common/LinuxKernel.vala:920 msgid "Available Kernels" msgstr "Dostupni kerneli" -#: src/Common/LinuxKernel.vala:991 src/Gtk/MainWindow.vala:151 +#: src/Common/LinuxKernel.vala:927 src/Gtk/MainWindow.vala:151 msgid "Installed" msgstr "Instalirano" -#: src/Common/LinuxKernel.vala:991 src/Gtk/MainWindow.vala:151 +#: src/Common/LinuxKernel.vala:927 src/Gtk/MainWindow.vala:151 #: src/Gtk/MainWindow.vala:523 src/Gtk/MainWindow.vala:537 msgid "Running" msgstr "Pokrenuto" -#: src/Common/LinuxKernel.vala:1028 +#: src/Common/LinuxKernel.vala:964 msgid "Downloading" msgstr "Preuzimanje" -#: src/Common/LinuxKernel.vala:1047 +#: src/Common/LinuxKernel.vala:983 msgid "OK" msgstr "U redu" -#: src/Common/LinuxKernel.vala:1050 +#: src/Common/LinuxKernel.vala:986 msgid "ERROR" msgstr "GREŠKA" -#: src/Common/LinuxKernel.vala:1064 +#: src/Common/LinuxKernel.vala:1000 msgid "This kernel is already installed." msgstr "Ovaj kernel je već instaliran." -#: src/Common/LinuxKernel.vala:1102 +#: src/Common/LinuxKernel.vala:1038 #, fuzzy msgid "Uninstalling selected kernels" msgstr "Deinstaliraj određene kernele" -#: src/Common/LinuxKernel.vala:1108 +#: src/Common/LinuxKernel.vala:1044 msgid "requested" msgstr "" -#: src/Common/LinuxKernel.vala:1111 +#: src/Common/LinuxKernel.vala:1047 msgid "skipping the currently booted kernel" msgstr "" -#: src/Common/LinuxKernel.vala:1127 +#: src/Common/LinuxKernel.vala:1063 msgid "found" msgstr "" -#: src/Common/LinuxKernel.vala:1130 +#: src/Common/LinuxKernel.vala:1066 #, fuzzy msgid "No packages to un-install!" msgstr "Instalirani paketi" @@ -141,7 +141,7 @@ msgstr "Obavijesti su onemogućene" msgid "Can not reach" msgstr "Neuspjelo čitanje datoteke" -#: src/Common/Package.vala:131 src/Common/Package.vala:196 +#: src/Common/Package.vala:129 src/Common/Package.vala:194 #, c-format msgid "File not found: %s" msgstr "Datoteka nije pronađena: %s" @@ -466,55 +466,6 @@ msgstr "Uključene treće strane" msgid "Missing Icon" msgstr "Ikone koje nedostaju" -#: src/Utility/TeeJee.FileSystem.vala:71 -msgid "File deleted" -msgstr "Datoteka je obrisana" - -#: src/Utility/TeeJee.FileSystem.vala:76 src/Utility/TeeJee.FileSystem.vala:240 -msgid "Failed to delete file" -msgstr "Neuspjelo brisanje datoteke" - -#: src/Utility/TeeJee.FileSystem.vala:96 -msgid "Failed to read file" -msgstr "Neuspjelo čitanje datoteke" - -#: src/Utility/TeeJee.FileSystem.vala:123 -msgid "File saved" -msgstr "Datoteka je spremljenja" - -#: src/Utility/TeeJee.FileSystem.vala:129 -msgid "Failed to write file" -msgstr "Neuspjelo zapisivanje datoteke" - -#: src/Utility/TeeJee.FileSystem.vala:141 -msgid "File copied" -msgstr "Datoteka kopirana" - -#: src/Utility/TeeJee.FileSystem.vala:148 -msgid "Failed to copy file" -msgstr "Neuspjelo kopiranje datoteke" - -#: src/Utility/TeeJee.FileSystem.vala:171 -msgid "File moved" -msgstr "Datoteka je premještena" - -#: src/Utility/TeeJee.FileSystem.vala:176 -msgid "Failed to move file" -msgstr "Neuspjelo premještanje datoteke" - -#: src/Utility/TeeJee.FileSystem.vala:217 -#: src/Utility/TeeJee.FileSystem.vala:220 -msgid "Created directory" -msgstr "Stvoren direktorij" - -#: src/Utility/TeeJee.FileSystem.vala:227 -msgid "Failed to create dir" -msgstr "Neuspjelo stvarnje direktorija" - -#: src/Utility/TeeJee.FileSystem.vala:239 -msgid "Deleted" -msgstr "Obrisano" - #: src/Utility/TeeJee.Logging.vala:59 msgid "E" msgstr "G" diff --git a/po/it.po b/po/it.po index 8272c9ba..4c3b9e51 100644 --- a/po/it.po +++ b/po/it.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline 1.0.15\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-06 02:18-0500\n" +"POT-Creation-Date: 2023-03-08 01:01-0500\n" "PO-Revision-Date: 2020-08-22 15:35+0100\n" "Last-Translator: Albano Battistella \n" "Language-Team: Italian\n" @@ -11,117 +11,117 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: src/Common/LinuxKernel.vala:88 +#: src/Common/LinuxKernel.vala:89 msgid "Distribution" msgstr "Distribuzione" -#: src/Common/LinuxKernel.vala:103 +#: src/Common/LinuxKernel.vala:104 msgid "Architecture" msgstr "Architettura" -#: src/Common/LinuxKernel.vala:295 +#: src/Common/LinuxKernel.vala:283 #, fuzzy msgid "Fetching individual kernel indexes..." msgstr "Recupero indice in corso..." -#: src/Common/LinuxKernel.vala:339 +#: src/Common/LinuxKernel.vala:327 #, fuzzy msgid "Fetching main index from" msgstr "Recupero indice in corso..." -#: src/Common/LinuxKernel.vala:593 +#: src/Common/LinuxKernel.vala:544 msgid "Could not find running kernel in list!" msgstr "Impossibile trovare il kernel in esecuzione nell'elenco!" -#: src/Common/LinuxKernel.vala:599 +#: src/Common/LinuxKernel.vala:550 msgid "Could not find any kernels to uninstall" msgstr "Impossibile trovare alcun kernel da rimuovere" -#: src/Common/LinuxKernel.vala:608 +#: src/Common/LinuxKernel.vala:559 msgid "The following kernels will be uninstalled:" msgstr "I seguenti kernel verranno rimossi:" -#: src/Common/LinuxKernel.vala:612 +#: src/Common/LinuxKernel.vala:563 msgid "Continue ?" msgstr "Continuare ?" -#: src/Common/LinuxKernel.vala:635 src/Console/AppConsole.vala:298 +#: src/Common/LinuxKernel.vala:586 src/Console/AppConsole.vala:298 msgid "Latest update" msgstr "Ultimo aggiornamento" -#: src/Common/LinuxKernel.vala:646 src/Console/AppConsole.vala:305 +#: src/Common/LinuxKernel.vala:597 src/Console/AppConsole.vala:305 msgid "Latest point update" msgstr "Ultimo aggiornamento del punto" -#: src/Common/LinuxKernel.vala:654 src/Console/AppConsole.vala:310 +#: src/Common/LinuxKernel.vala:605 src/Console/AppConsole.vala:310 #: src/Console/AppConsole.vala:365 msgid "No updates found" msgstr "Nessun aggiornamento trovato" -#: src/Common/LinuxKernel.vala:664 +#: src/Common/LinuxKernel.vala:615 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Installare la versione del kernel %s ? (y/n): " -#: src/Common/LinuxKernel.vala:896 +#: src/Common/LinuxKernel.vala:838 msgid "Packages Available" msgstr "Pacchetti disponibili" -#: src/Common/LinuxKernel.vala:904 +#: src/Common/LinuxKernel.vala:843 msgid "Packages Installed" msgstr "Pacchetti installati" -#: src/Common/LinuxKernel.vala:918 src/Utility/TeeJee.FileSystem.vala:157 +#: src/Common/LinuxKernel.vala:856 src/Utility/TeeJee.FileSystem.vala:136 msgid "File not found" msgstr "File non trovato" -#: src/Common/LinuxKernel.vala:984 +#: src/Common/LinuxKernel.vala:920 msgid "Available Kernels" msgstr "Kernel disponibili" -#: src/Common/LinuxKernel.vala:991 src/Gtk/MainWindow.vala:151 +#: src/Common/LinuxKernel.vala:927 src/Gtk/MainWindow.vala:151 msgid "Installed" msgstr "Installato" -#: src/Common/LinuxKernel.vala:991 src/Gtk/MainWindow.vala:151 +#: src/Common/LinuxKernel.vala:927 src/Gtk/MainWindow.vala:151 #: src/Gtk/MainWindow.vala:523 src/Gtk/MainWindow.vala:537 msgid "Running" msgstr "In esecuzione" -#: src/Common/LinuxKernel.vala:1028 +#: src/Common/LinuxKernel.vala:964 msgid "Downloading" msgstr "Download in corso" -#: src/Common/LinuxKernel.vala:1047 +#: src/Common/LinuxKernel.vala:983 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:1050 +#: src/Common/LinuxKernel.vala:986 msgid "ERROR" msgstr "ERRORE" -#: src/Common/LinuxKernel.vala:1064 +#: src/Common/LinuxKernel.vala:1000 msgid "This kernel is already installed." msgstr "Questo kernel è già installato" -#: src/Common/LinuxKernel.vala:1102 +#: src/Common/LinuxKernel.vala:1038 #, fuzzy msgid "Uninstalling selected kernels" msgstr "Disinstalla i kernel specificati" -#: src/Common/LinuxKernel.vala:1108 +#: src/Common/LinuxKernel.vala:1044 msgid "requested" msgstr "" -#: src/Common/LinuxKernel.vala:1111 +#: src/Common/LinuxKernel.vala:1047 msgid "skipping the currently booted kernel" msgstr "" -#: src/Common/LinuxKernel.vala:1127 +#: src/Common/LinuxKernel.vala:1063 msgid "found" msgstr "" -#: src/Common/LinuxKernel.vala:1130 +#: src/Common/LinuxKernel.vala:1066 #, fuzzy msgid "No packages to un-install!" msgstr "Pacchetti installati" @@ -139,7 +139,7 @@ msgstr "Le notifiche sono disabilitate" msgid "Can not reach" msgstr "Impossibile leggere il file" -#: src/Common/Package.vala:131 src/Common/Package.vala:196 +#: src/Common/Package.vala:129 src/Common/Package.vala:194 #, c-format msgid "File not found: %s" msgstr "File non trovato: %s" @@ -467,55 +467,6 @@ msgstr "Inclusioni di terze parti" msgid "Missing Icon" msgstr "Icona mancante" -#: src/Utility/TeeJee.FileSystem.vala:71 -msgid "File deleted" -msgstr "File eliminato" - -#: src/Utility/TeeJee.FileSystem.vala:76 src/Utility/TeeJee.FileSystem.vala:240 -msgid "Failed to delete file" -msgstr "Impossibile eliminare il file" - -#: src/Utility/TeeJee.FileSystem.vala:96 -msgid "Failed to read file" -msgstr "Impossibile leggere il file" - -#: src/Utility/TeeJee.FileSystem.vala:123 -msgid "File saved" -msgstr "File salvato" - -#: src/Utility/TeeJee.FileSystem.vala:129 -msgid "Failed to write file" -msgstr "Impossibile scrivere il file" - -#: src/Utility/TeeJee.FileSystem.vala:141 -msgid "File copied" -msgstr "File copiato" - -#: src/Utility/TeeJee.FileSystem.vala:148 -msgid "Failed to copy file" -msgstr "Impossibile copiare il file" - -#: src/Utility/TeeJee.FileSystem.vala:171 -msgid "File moved" -msgstr "File spostato" - -#: src/Utility/TeeJee.FileSystem.vala:176 -msgid "Failed to move file" -msgstr "Impossibile spostare il file" - -#: src/Utility/TeeJee.FileSystem.vala:217 -#: src/Utility/TeeJee.FileSystem.vala:220 -msgid "Created directory" -msgstr "Directory creata" - -#: src/Utility/TeeJee.FileSystem.vala:227 -msgid "Failed to create dir" -msgstr "Impossibile creare la directory" - -#: src/Utility/TeeJee.FileSystem.vala:239 -msgid "Deleted" -msgstr "Cancellato" - #: src/Utility/TeeJee.Logging.vala:59 msgid "E" msgstr "E" diff --git a/po/ko.po b/po/ko.po index 4b1f654d..069415fa 100644 --- a/po/ko.po +++ b/po/ko.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline 1.0.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-06 02:18-0500\n" +"POT-Creation-Date: 2023-03-08 01:01-0500\n" "PO-Revision-Date: 2022-09-28 11:48+0900\n" "Last-Translator: Kevin Kim \n" "Language-Team: Korean\n" @@ -13,117 +13,117 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Poedit 3.0.1\n" -#: src/Common/LinuxKernel.vala:88 +#: src/Common/LinuxKernel.vala:89 msgid "Distribution" msgstr "배포판" -#: src/Common/LinuxKernel.vala:103 +#: src/Common/LinuxKernel.vala:104 msgid "Architecture" msgstr "아키텍처" -#: src/Common/LinuxKernel.vala:295 +#: src/Common/LinuxKernel.vala:283 #, fuzzy msgid "Fetching individual kernel indexes..." msgstr "목록 가져오기..." -#: src/Common/LinuxKernel.vala:339 +#: src/Common/LinuxKernel.vala:327 #, fuzzy msgid "Fetching main index from" msgstr "목록 가져오기..." -#: src/Common/LinuxKernel.vala:593 +#: src/Common/LinuxKernel.vala:544 msgid "Could not find running kernel in list!" msgstr "목록에서 사용중인 커널을 찾을 수 없습니다!" -#: src/Common/LinuxKernel.vala:599 +#: src/Common/LinuxKernel.vala:550 msgid "Could not find any kernels to uninstall" msgstr "삭제할 커널을 찾을 수 없습니다" -#: src/Common/LinuxKernel.vala:608 +#: src/Common/LinuxKernel.vala:559 msgid "The following kernels will be uninstalled:" msgstr "아래 커널이 삭제됩니다:" -#: src/Common/LinuxKernel.vala:612 +#: src/Common/LinuxKernel.vala:563 msgid "Continue ?" msgstr "계속하시겠습니까?" -#: src/Common/LinuxKernel.vala:635 src/Console/AppConsole.vala:298 +#: src/Common/LinuxKernel.vala:586 src/Console/AppConsole.vala:298 msgid "Latest update" msgstr "최신 업데이트" -#: src/Common/LinuxKernel.vala:646 src/Console/AppConsole.vala:305 +#: src/Common/LinuxKernel.vala:597 src/Console/AppConsole.vala:305 msgid "Latest point update" msgstr "최신 포인트 업데이트" -#: src/Common/LinuxKernel.vala:654 src/Console/AppConsole.vala:310 +#: src/Common/LinuxKernel.vala:605 src/Console/AppConsole.vala:310 #: src/Console/AppConsole.vala:365 msgid "No updates found" msgstr "업데이트를 찾을 수 없습니다" -#: src/Common/LinuxKernel.vala:664 +#: src/Common/LinuxKernel.vala:615 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "커널 %s 버전을 설치하시겠습니까? (y/n): " -#: src/Common/LinuxKernel.vala:896 +#: src/Common/LinuxKernel.vala:838 msgid "Packages Available" msgstr "설치 가능한 패키지" -#: src/Common/LinuxKernel.vala:904 +#: src/Common/LinuxKernel.vala:843 msgid "Packages Installed" msgstr "설치된 패키지" -#: src/Common/LinuxKernel.vala:918 src/Utility/TeeJee.FileSystem.vala:157 +#: src/Common/LinuxKernel.vala:856 src/Utility/TeeJee.FileSystem.vala:136 msgid "File not found" msgstr "파일을 찾을 수 없습니다" -#: src/Common/LinuxKernel.vala:984 +#: src/Common/LinuxKernel.vala:920 msgid "Available Kernels" msgstr "설치 가능한 커널" -#: src/Common/LinuxKernel.vala:991 src/Gtk/MainWindow.vala:151 +#: src/Common/LinuxKernel.vala:927 src/Gtk/MainWindow.vala:151 msgid "Installed" msgstr "설치 됨" -#: src/Common/LinuxKernel.vala:991 src/Gtk/MainWindow.vala:151 +#: src/Common/LinuxKernel.vala:927 src/Gtk/MainWindow.vala:151 #: src/Gtk/MainWindow.vala:523 src/Gtk/MainWindow.vala:537 msgid "Running" msgstr "구동 중" -#: src/Common/LinuxKernel.vala:1028 +#: src/Common/LinuxKernel.vala:964 msgid "Downloading" msgstr "다운로드 중" -#: src/Common/LinuxKernel.vala:1047 +#: src/Common/LinuxKernel.vala:983 msgid "OK" msgstr "확인" -#: src/Common/LinuxKernel.vala:1050 +#: src/Common/LinuxKernel.vala:986 msgid "ERROR" msgstr "오류" -#: src/Common/LinuxKernel.vala:1064 +#: src/Common/LinuxKernel.vala:1000 msgid "This kernel is already installed." msgstr "이 커널은 이미 설치되었습니다." -#: src/Common/LinuxKernel.vala:1102 +#: src/Common/LinuxKernel.vala:1038 #, fuzzy msgid "Uninstalling selected kernels" msgstr "지정한 커널 삭제" -#: src/Common/LinuxKernel.vala:1108 +#: src/Common/LinuxKernel.vala:1044 msgid "requested" msgstr "" -#: src/Common/LinuxKernel.vala:1111 +#: src/Common/LinuxKernel.vala:1047 msgid "skipping the currently booted kernel" msgstr "" -#: src/Common/LinuxKernel.vala:1127 +#: src/Common/LinuxKernel.vala:1063 msgid "found" msgstr "" -#: src/Common/LinuxKernel.vala:1130 +#: src/Common/LinuxKernel.vala:1066 #, fuzzy msgid "No packages to un-install!" msgstr "설치된 패키지" @@ -141,7 +141,7 @@ msgstr "알림이 비활성화 되었습니다" msgid "Can not reach" msgstr "파일 읽기를 실패했습니다" -#: src/Common/Package.vala:131 src/Common/Package.vala:196 +#: src/Common/Package.vala:129 src/Common/Package.vala:194 #, c-format msgid "File not found: %s" msgstr "%s 파일을 찾을 수 없습니다" @@ -465,55 +465,6 @@ msgstr "서드파티 포함" msgid "Missing Icon" msgstr "아이콘을 찾을 수 없습니다" -#: src/Utility/TeeJee.FileSystem.vala:71 -msgid "File deleted" -msgstr "파일이 삭제되었습니다" - -#: src/Utility/TeeJee.FileSystem.vala:76 src/Utility/TeeJee.FileSystem.vala:240 -msgid "Failed to delete file" -msgstr "파일 삭제를 실패했습니다" - -#: src/Utility/TeeJee.FileSystem.vala:96 -msgid "Failed to read file" -msgstr "파일 읽기를 실패했습니다" - -#: src/Utility/TeeJee.FileSystem.vala:123 -msgid "File saved" -msgstr "파일을 저장했습니다" - -#: src/Utility/TeeJee.FileSystem.vala:129 -msgid "Failed to write file" -msgstr "파일 쓰기를 실패했습니다" - -#: src/Utility/TeeJee.FileSystem.vala:141 -msgid "File copied" -msgstr "파일을 복사했습니다" - -#: src/Utility/TeeJee.FileSystem.vala:148 -msgid "Failed to copy file" -msgstr "파일 복사를 실패했습니다" - -#: src/Utility/TeeJee.FileSystem.vala:171 -msgid "File moved" -msgstr "파일이 이동되었습니다" - -#: src/Utility/TeeJee.FileSystem.vala:176 -msgid "Failed to move file" -msgstr "파일 이동을 실패했습니다" - -#: src/Utility/TeeJee.FileSystem.vala:217 -#: src/Utility/TeeJee.FileSystem.vala:220 -msgid "Created directory" -msgstr "폴더를 생성했습니다" - -#: src/Utility/TeeJee.FileSystem.vala:227 -msgid "Failed to create dir" -msgstr "폴더 생성을 실패했습니다" - -#: src/Utility/TeeJee.FileSystem.vala:239 -msgid "Deleted" -msgstr "삭제되었습니다" - #: src/Utility/TeeJee.Logging.vala:59 msgid "E" msgstr "" diff --git a/po/messages.pot b/po/messages.pot index 2ce8d596..995d6753 100644 --- a/po/messages.pot +++ b/po/messages.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline 1.1.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-06 02:27-0500\n" +"POT-Creation-Date: 2023-03-08 01:51-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,114 +17,114 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" -#: src/Common/LinuxKernel.vala:88 +#: src/Common/LinuxKernel.vala:89 msgid "Distribution" msgstr "" -#: src/Common/LinuxKernel.vala:103 +#: src/Common/LinuxKernel.vala:104 msgid "Architecture" msgstr "" -#: src/Common/LinuxKernel.vala:295 +#: src/Common/LinuxKernel.vala:283 msgid "Fetching individual kernel indexes..." msgstr "" -#: src/Common/LinuxKernel.vala:339 +#: src/Common/LinuxKernel.vala:327 msgid "Fetching main index from" msgstr "" -#: src/Common/LinuxKernel.vala:593 +#: src/Common/LinuxKernel.vala:544 msgid "Could not find running kernel in list!" msgstr "" -#: src/Common/LinuxKernel.vala:599 +#: src/Common/LinuxKernel.vala:550 msgid "Could not find any kernels to uninstall" msgstr "" -#: src/Common/LinuxKernel.vala:608 +#: src/Common/LinuxKernel.vala:559 msgid "The following kernels will be uninstalled:" msgstr "" -#: src/Common/LinuxKernel.vala:612 +#: src/Common/LinuxKernel.vala:563 msgid "Continue ?" msgstr "" -#: src/Common/LinuxKernel.vala:635 src/Console/AppConsole.vala:298 +#: src/Common/LinuxKernel.vala:586 src/Console/AppConsole.vala:298 msgid "Latest update" msgstr "" -#: src/Common/LinuxKernel.vala:646 src/Console/AppConsole.vala:305 +#: src/Common/LinuxKernel.vala:597 src/Console/AppConsole.vala:305 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:654 src/Console/AppConsole.vala:310 +#: src/Common/LinuxKernel.vala:605 src/Console/AppConsole.vala:310 #: src/Console/AppConsole.vala:365 msgid "No updates found" msgstr "" -#: src/Common/LinuxKernel.vala:664 +#: src/Common/LinuxKernel.vala:615 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "" -#: src/Common/LinuxKernel.vala:896 +#: src/Common/LinuxKernel.vala:838 msgid "Packages Available" msgstr "" -#: src/Common/LinuxKernel.vala:904 +#: src/Common/LinuxKernel.vala:843 msgid "Packages Installed" msgstr "" -#: src/Common/LinuxKernel.vala:918 src/Utility/TeeJee.FileSystem.vala:157 +#: src/Common/LinuxKernel.vala:856 src/Utility/TeeJee.FileSystem.vala:136 msgid "File not found" msgstr "" -#: src/Common/LinuxKernel.vala:984 +#: src/Common/LinuxKernel.vala:920 msgid "Available Kernels" msgstr "" -#: src/Common/LinuxKernel.vala:991 src/Gtk/MainWindow.vala:151 +#: src/Common/LinuxKernel.vala:927 src/Gtk/MainWindow.vala:151 msgid "Installed" msgstr "" -#: src/Common/LinuxKernel.vala:991 src/Gtk/MainWindow.vala:151 +#: src/Common/LinuxKernel.vala:927 src/Gtk/MainWindow.vala:151 #: src/Gtk/MainWindow.vala:523 src/Gtk/MainWindow.vala:537 msgid "Running" msgstr "" -#: src/Common/LinuxKernel.vala:1028 +#: src/Common/LinuxKernel.vala:964 msgid "Downloading" msgstr "" -#: src/Common/LinuxKernel.vala:1047 +#: src/Common/LinuxKernel.vala:983 msgid "OK" msgstr "" -#: src/Common/LinuxKernel.vala:1050 +#: src/Common/LinuxKernel.vala:986 msgid "ERROR" msgstr "" -#: src/Common/LinuxKernel.vala:1064 +#: src/Common/LinuxKernel.vala:1000 msgid "This kernel is already installed." msgstr "" -#: src/Common/LinuxKernel.vala:1102 +#: src/Common/LinuxKernel.vala:1038 msgid "Uninstalling selected kernels" msgstr "" -#: src/Common/LinuxKernel.vala:1108 +#: src/Common/LinuxKernel.vala:1044 msgid "requested" msgstr "" -#: src/Common/LinuxKernel.vala:1111 +#: src/Common/LinuxKernel.vala:1047 msgid "skipping the currently booted kernel" msgstr "" -#: src/Common/LinuxKernel.vala:1127 +#: src/Common/LinuxKernel.vala:1063 msgid "found" msgstr "" -#: src/Common/LinuxKernel.vala:1130 +#: src/Common/LinuxKernel.vala:1066 msgid "No packages to un-install!" msgstr "" @@ -140,7 +140,7 @@ msgstr "" msgid "Can not reach" msgstr "" -#: src/Common/Package.vala:131 src/Common/Package.vala:196 +#: src/Common/Package.vala:129 src/Common/Package.vala:194 #, c-format msgid "File not found: %s" msgstr "" @@ -462,55 +462,6 @@ msgstr "" msgid "Missing Icon" msgstr "" -#: src/Utility/TeeJee.FileSystem.vala:71 -msgid "File deleted" -msgstr "" - -#: src/Utility/TeeJee.FileSystem.vala:76 src/Utility/TeeJee.FileSystem.vala:240 -msgid "Failed to delete file" -msgstr "" - -#: src/Utility/TeeJee.FileSystem.vala:96 -msgid "Failed to read file" -msgstr "" - -#: src/Utility/TeeJee.FileSystem.vala:123 -msgid "File saved" -msgstr "" - -#: src/Utility/TeeJee.FileSystem.vala:129 -msgid "Failed to write file" -msgstr "" - -#: src/Utility/TeeJee.FileSystem.vala:141 -msgid "File copied" -msgstr "" - -#: src/Utility/TeeJee.FileSystem.vala:148 -msgid "Failed to copy file" -msgstr "" - -#: src/Utility/TeeJee.FileSystem.vala:171 -msgid "File moved" -msgstr "" - -#: src/Utility/TeeJee.FileSystem.vala:176 -msgid "Failed to move file" -msgstr "" - -#: src/Utility/TeeJee.FileSystem.vala:217 -#: src/Utility/TeeJee.FileSystem.vala:220 -msgid "Created directory" -msgstr "" - -#: src/Utility/TeeJee.FileSystem.vala:227 -msgid "Failed to create dir" -msgstr "" - -#: src/Utility/TeeJee.FileSystem.vala:239 -msgid "Deleted" -msgstr "" - #: src/Utility/TeeJee.Logging.vala:59 msgid "E" msgstr "" diff --git a/po/nl.po b/po/nl.po index 96829d02..96ece0fa 100644 --- a/po/nl.po +++ b/po/nl.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-06 02:18-0500\n" +"POT-Creation-Date: 2023-03-08 01:01-0500\n" "PO-Revision-Date: 2020-08-23 13:55+0200\n" "Last-Translator: Heimen Stoffels \n" "Language-Team: Dutch (Netherlands)\n" @@ -13,119 +13,119 @@ msgstr "" "X-Generator: Poedit 2.4.1\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: src/Common/LinuxKernel.vala:88 +#: src/Common/LinuxKernel.vala:89 msgid "Distribution" msgstr "Distributie" -#: src/Common/LinuxKernel.vala:103 +#: src/Common/LinuxKernel.vala:104 msgid "Architecture" msgstr "Architectuur" -#: src/Common/LinuxKernel.vala:295 +#: src/Common/LinuxKernel.vala:283 #, fuzzy msgid "Fetching individual kernel indexes..." msgstr "Bezig met ophalen van index..." -#: src/Common/LinuxKernel.vala:339 +#: src/Common/LinuxKernel.vala:327 #, fuzzy msgid "Fetching main index from" msgstr "Bezig met ophalen van index..." -#: src/Common/LinuxKernel.vala:593 +#: src/Common/LinuxKernel.vala:544 msgid "Could not find running kernel in list!" msgstr "De in gebruik zijnde kernel staat niet op de lijst!" -#: src/Common/LinuxKernel.vala:599 +#: src/Common/LinuxKernel.vala:550 #, fuzzy msgid "Could not find any kernels to uninstall" msgstr "Er zijn geen te verwijderen kernels" -#: src/Common/LinuxKernel.vala:608 +#: src/Common/LinuxKernel.vala:559 #, fuzzy msgid "The following kernels will be uninstalled:" msgstr "De volgende kernels worden verwijderd:" -#: src/Common/LinuxKernel.vala:612 +#: src/Common/LinuxKernel.vala:563 msgid "Continue ?" msgstr "Wil je doorgaan?" -#: src/Common/LinuxKernel.vala:635 src/Console/AppConsole.vala:298 +#: src/Common/LinuxKernel.vala:586 src/Console/AppConsole.vala:298 msgid "Latest update" msgstr "Recentste update" -#: src/Common/LinuxKernel.vala:646 src/Console/AppConsole.vala:305 +#: src/Common/LinuxKernel.vala:597 src/Console/AppConsole.vala:305 msgid "Latest point update" msgstr "Recentste puntupdate" -#: src/Common/LinuxKernel.vala:654 src/Console/AppConsole.vala:310 +#: src/Common/LinuxKernel.vala:605 src/Console/AppConsole.vala:310 #: src/Console/AppConsole.vala:365 msgid "No updates found" msgstr "Geen updates gevonden" -#: src/Common/LinuxKernel.vala:664 +#: src/Common/LinuxKernel.vala:615 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Wil je versie %s installeren? (j/n): " -#: src/Common/LinuxKernel.vala:896 +#: src/Common/LinuxKernel.vala:838 msgid "Packages Available" msgstr "Beschikbare pakketten" -#: src/Common/LinuxKernel.vala:904 +#: src/Common/LinuxKernel.vala:843 msgid "Packages Installed" msgstr "Geïnstalleerde pakketten" -#: src/Common/LinuxKernel.vala:918 src/Utility/TeeJee.FileSystem.vala:157 +#: src/Common/LinuxKernel.vala:856 src/Utility/TeeJee.FileSystem.vala:136 msgid "File not found" msgstr "Het bestand is niet gevonden" -#: src/Common/LinuxKernel.vala:984 +#: src/Common/LinuxKernel.vala:920 msgid "Available Kernels" msgstr "Beschikbare kernels" -#: src/Common/LinuxKernel.vala:991 src/Gtk/MainWindow.vala:151 +#: src/Common/LinuxKernel.vala:927 src/Gtk/MainWindow.vala:151 msgid "Installed" msgstr "Geïnstalleerd" -#: src/Common/LinuxKernel.vala:991 src/Gtk/MainWindow.vala:151 +#: src/Common/LinuxKernel.vala:927 src/Gtk/MainWindow.vala:151 #: src/Gtk/MainWindow.vala:523 src/Gtk/MainWindow.vala:537 msgid "Running" msgstr "In gebruik" -#: src/Common/LinuxKernel.vala:1028 +#: src/Common/LinuxKernel.vala:964 msgid "Downloading" msgstr "Bezig met downloaden" -#: src/Common/LinuxKernel.vala:1047 +#: src/Common/LinuxKernel.vala:983 msgid "OK" msgstr "Oké" -#: src/Common/LinuxKernel.vala:1050 +#: src/Common/LinuxKernel.vala:986 msgid "ERROR" msgstr "FOUT" -#: src/Common/LinuxKernel.vala:1064 +#: src/Common/LinuxKernel.vala:1000 msgid "This kernel is already installed." msgstr "Deze kernel is al geïnstalleerd." -#: src/Common/LinuxKernel.vala:1102 +#: src/Common/LinuxKernel.vala:1038 #, fuzzy msgid "Uninstalling selected kernels" msgstr "Opgegeven kernels deïnstalleren" -#: src/Common/LinuxKernel.vala:1108 +#: src/Common/LinuxKernel.vala:1044 msgid "requested" msgstr "" -#: src/Common/LinuxKernel.vala:1111 +#: src/Common/LinuxKernel.vala:1047 msgid "skipping the currently booted kernel" msgstr "" -#: src/Common/LinuxKernel.vala:1127 +#: src/Common/LinuxKernel.vala:1063 msgid "found" msgstr "" -#: src/Common/LinuxKernel.vala:1130 +#: src/Common/LinuxKernel.vala:1066 #, fuzzy msgid "No packages to un-install!" msgstr "Geïnstalleerde pakketten" @@ -143,7 +143,7 @@ msgstr "Meldingen zijn uitgeschakeld" msgid "Can not reach" msgstr "Het bestand kan niet worden uitgelezen" -#: src/Common/Package.vala:131 src/Common/Package.vala:196 +#: src/Common/Package.vala:129 src/Common/Package.vala:194 #, c-format msgid "File not found: %s" msgstr "Bestand niet gevonden: %s" @@ -476,55 +476,6 @@ msgstr "Externe code" msgid "Missing Icon" msgstr "Ontbrekend pictogram" -#: src/Utility/TeeJee.FileSystem.vala:71 -msgid "File deleted" -msgstr "Het bestand is verwijderd" - -#: src/Utility/TeeJee.FileSystem.vala:76 src/Utility/TeeJee.FileSystem.vala:240 -msgid "Failed to delete file" -msgstr "Het bestand kan niet worden verwijderd" - -#: src/Utility/TeeJee.FileSystem.vala:96 -msgid "Failed to read file" -msgstr "Het bestand kan niet worden uitgelezen" - -#: src/Utility/TeeJee.FileSystem.vala:123 -msgid "File saved" -msgstr "Het bestand is opgeslagen" - -#: src/Utility/TeeJee.FileSystem.vala:129 -msgid "Failed to write file" -msgstr "Het bestand kan niet worden weggeschreven" - -#: src/Utility/TeeJee.FileSystem.vala:141 -msgid "File copied" -msgstr "Het bestand is gekopieerd" - -#: src/Utility/TeeJee.FileSystem.vala:148 -msgid "Failed to copy file" -msgstr "Het bestand kan niet worden gekopieerd" - -#: src/Utility/TeeJee.FileSystem.vala:171 -msgid "File moved" -msgstr "Het bestand is verplaatst" - -#: src/Utility/TeeJee.FileSystem.vala:176 -msgid "Failed to move file" -msgstr "Het bestand kan niet worden verplaatst" - -#: src/Utility/TeeJee.FileSystem.vala:217 -#: src/Utility/TeeJee.FileSystem.vala:220 -msgid "Created directory" -msgstr "De map is aangemaakt" - -#: src/Utility/TeeJee.FileSystem.vala:227 -msgid "Failed to create dir" -msgstr "De map kan niet worden aangemaakt" - -#: src/Utility/TeeJee.FileSystem.vala:239 -msgid "Deleted" -msgstr "Verwijderd" - #: src/Utility/TeeJee.Logging.vala:59 msgid "E" msgstr "E" diff --git a/po/pl.po b/po/pl.po index d099b285..e89d95aa 100644 --- a/po/pl.po +++ b/po/pl.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-06 02:18-0500\n" +"POT-Creation-Date: 2023-03-08 01:01-0500\n" "PO-Revision-Date: 2021-09-17 10:29+0200\n" "Last-Translator: Viktor Sokyrko \n" "Language-Team: Polish\n" @@ -12,118 +12,118 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Poedit 2.4.2\n" -#: src/Common/LinuxKernel.vala:88 +#: src/Common/LinuxKernel.vala:89 msgid "Distribution" msgstr "Dystrybucja" -#: src/Common/LinuxKernel.vala:103 +#: src/Common/LinuxKernel.vala:104 #, fuzzy msgid "Architecture" msgstr "Architektura systemu" -#: src/Common/LinuxKernel.vala:295 +#: src/Common/LinuxKernel.vala:283 #, fuzzy msgid "Fetching individual kernel indexes..." msgstr "Pobieranie indeksu..." -#: src/Common/LinuxKernel.vala:339 +#: src/Common/LinuxKernel.vala:327 #, fuzzy msgid "Fetching main index from" msgstr "Pobieranie indeksu..." -#: src/Common/LinuxKernel.vala:593 +#: src/Common/LinuxKernel.vala:544 msgid "Could not find running kernel in list!" msgstr "Nie można znaleźć uruchomionego jądra na liście!" -#: src/Common/LinuxKernel.vala:599 +#: src/Common/LinuxKernel.vala:550 msgid "Could not find any kernels to uninstall" msgstr "Nie udało się odnaleźć żadnych jąder do odinstalowania" -#: src/Common/LinuxKernel.vala:608 +#: src/Common/LinuxKernel.vala:559 msgid "The following kernels will be uninstalled:" msgstr "Następujące jądra zostaną odinstalowane:" -#: src/Common/LinuxKernel.vala:612 +#: src/Common/LinuxKernel.vala:563 msgid "Continue ?" msgstr "Kontynuowac?" -#: src/Common/LinuxKernel.vala:635 src/Console/AppConsole.vala:298 +#: src/Common/LinuxKernel.vala:586 src/Console/AppConsole.vala:298 msgid "Latest update" msgstr "Najnowsza aktualizacja" -#: src/Common/LinuxKernel.vala:646 src/Console/AppConsole.vala:305 +#: src/Common/LinuxKernel.vala:597 src/Console/AppConsole.vala:305 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:654 src/Console/AppConsole.vala:310 +#: src/Common/LinuxKernel.vala:605 src/Console/AppConsole.vala:310 #: src/Console/AppConsole.vala:365 msgid "No updates found" msgstr "Nie znaleziono aktualizacji" -#: src/Common/LinuxKernel.vala:664 +#: src/Common/LinuxKernel.vala:615 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Instaluj wersję jądra %s ? (t/n): " -#: src/Common/LinuxKernel.vala:896 +#: src/Common/LinuxKernel.vala:838 msgid "Packages Available" msgstr "Dostępne pakiety" -#: src/Common/LinuxKernel.vala:904 +#: src/Common/LinuxKernel.vala:843 msgid "Packages Installed" msgstr "Pakiety zainstalowane" -#: src/Common/LinuxKernel.vala:918 src/Utility/TeeJee.FileSystem.vala:157 +#: src/Common/LinuxKernel.vala:856 src/Utility/TeeJee.FileSystem.vala:136 msgid "File not found" msgstr "Nie odnaleziono pliku" -#: src/Common/LinuxKernel.vala:984 +#: src/Common/LinuxKernel.vala:920 msgid "Available Kernels" msgstr "Dostępne jądra" -#: src/Common/LinuxKernel.vala:991 src/Gtk/MainWindow.vala:151 +#: src/Common/LinuxKernel.vala:927 src/Gtk/MainWindow.vala:151 msgid "Installed" msgstr "Zainstalowany" -#: src/Common/LinuxKernel.vala:991 src/Gtk/MainWindow.vala:151 +#: src/Common/LinuxKernel.vala:927 src/Gtk/MainWindow.vala:151 #: src/Gtk/MainWindow.vala:523 src/Gtk/MainWindow.vala:537 msgid "Running" msgstr "Uruchomiony" -#: src/Common/LinuxKernel.vala:1028 +#: src/Common/LinuxKernel.vala:964 msgid "Downloading" msgstr "Pobieranie" -#: src/Common/LinuxKernel.vala:1047 +#: src/Common/LinuxKernel.vala:983 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:1050 +#: src/Common/LinuxKernel.vala:986 msgid "ERROR" msgstr "BŁĄD" -#: src/Common/LinuxKernel.vala:1064 +#: src/Common/LinuxKernel.vala:1000 msgid "This kernel is already installed." msgstr "To jądro jest już zainstalowane." -#: src/Common/LinuxKernel.vala:1102 +#: src/Common/LinuxKernel.vala:1038 #, fuzzy msgid "Uninstalling selected kernels" msgstr "Odinstaluj wybrane jądro" -#: src/Common/LinuxKernel.vala:1108 +#: src/Common/LinuxKernel.vala:1044 msgid "requested" msgstr "" -#: src/Common/LinuxKernel.vala:1111 +#: src/Common/LinuxKernel.vala:1047 msgid "skipping the currently booted kernel" msgstr "" -#: src/Common/LinuxKernel.vala:1127 +#: src/Common/LinuxKernel.vala:1063 msgid "found" msgstr "" -#: src/Common/LinuxKernel.vala:1130 +#: src/Common/LinuxKernel.vala:1066 #, fuzzy msgid "No packages to un-install!" msgstr "Pakiety zainstalowane" @@ -142,7 +142,7 @@ msgstr "Powiadomienia są wyłączone" msgid "Can not reach" msgstr "Nie udało się odczytać pliku" -#: src/Common/Package.vala:131 src/Common/Package.vala:196 +#: src/Common/Package.vala:129 src/Common/Package.vala:194 #, c-format msgid "File not found: %s" msgstr "Nie odnaleziono pliku: %s" @@ -477,55 +477,6 @@ msgstr "Narzędzia osób trzecich" msgid "Missing Icon" msgstr "Brakująca ikona" -#: src/Utility/TeeJee.FileSystem.vala:71 -msgid "File deleted" -msgstr "Plik usunięty" - -#: src/Utility/TeeJee.FileSystem.vala:76 src/Utility/TeeJee.FileSystem.vala:240 -msgid "Failed to delete file" -msgstr "Nie udało się usunąć pliku" - -#: src/Utility/TeeJee.FileSystem.vala:96 -msgid "Failed to read file" -msgstr "Nie udało się odczytać pliku" - -#: src/Utility/TeeJee.FileSystem.vala:123 -msgid "File saved" -msgstr "Plik zapisany" - -#: src/Utility/TeeJee.FileSystem.vala:129 -msgid "Failed to write file" -msgstr "Nie udało się zapisać pliku" - -#: src/Utility/TeeJee.FileSystem.vala:141 -msgid "File copied" -msgstr "Plik skopiowany" - -#: src/Utility/TeeJee.FileSystem.vala:148 -msgid "Failed to copy file" -msgstr "Nie udało się skopiować pliku" - -#: src/Utility/TeeJee.FileSystem.vala:171 -msgid "File moved" -msgstr "Plik przeniesiony" - -#: src/Utility/TeeJee.FileSystem.vala:176 -msgid "Failed to move file" -msgstr "Nie udało się przenieść pliku" - -#: src/Utility/TeeJee.FileSystem.vala:217 -#: src/Utility/TeeJee.FileSystem.vala:220 -msgid "Created directory" -msgstr "Utworzono katalog" - -#: src/Utility/TeeJee.FileSystem.vala:227 -msgid "Failed to create dir" -msgstr "Nie udało się utworzyć katalogu" - -#: src/Utility/TeeJee.FileSystem.vala:239 -msgid "Deleted" -msgstr "Usunięto" - #: src/Utility/TeeJee.Logging.vala:59 msgid "E" msgstr "E" diff --git a/po/ru.po b/po/ru.po index ca53b54a..72f52373 100644 --- a/po/ru.po +++ b/po/ru.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-06 02:18-0500\n" +"POT-Creation-Date: 2023-03-08 01:01-0500\n" "PO-Revision-Date: 2023-03-01 20:22+0300\n" "Last-Translator: Faust3000 (Original) | Danik2343 (Update Transaltion) " "\n" @@ -14,117 +14,117 @@ msgstr "" "X-Launchpad-Export-Date: 2016-12-13 11:48+0000\n" "X-Generator: Poedit 3.0.1\n" -#: src/Common/LinuxKernel.vala:88 +#: src/Common/LinuxKernel.vala:89 msgid "Distribution" msgstr "Дистрибутив" -#: src/Common/LinuxKernel.vala:103 +#: src/Common/LinuxKernel.vala:104 msgid "Architecture" msgstr "Архитектура" -#: src/Common/LinuxKernel.vala:295 +#: src/Common/LinuxKernel.vala:283 #, fuzzy msgid "Fetching individual kernel indexes..." msgstr "Получение сведений..." -#: src/Common/LinuxKernel.vala:339 +#: src/Common/LinuxKernel.vala:327 #, fuzzy msgid "Fetching main index from" msgstr "Получение сведений..." -#: src/Common/LinuxKernel.vala:593 +#: src/Common/LinuxKernel.vala:544 msgid "Could not find running kernel in list!" msgstr "Не удалось найти запущенное ядро в списке!" -#: src/Common/LinuxKernel.vala:599 +#: src/Common/LinuxKernel.vala:550 msgid "Could not find any kernels to uninstall" msgstr "Не удалось найти ядра для деинсталляции" -#: src/Common/LinuxKernel.vala:608 +#: src/Common/LinuxKernel.vala:559 msgid "The following kernels will be uninstalled:" msgstr "Следующие ядра будут деинсталлированы:" -#: src/Common/LinuxKernel.vala:612 +#: src/Common/LinuxKernel.vala:563 msgid "Continue ?" msgstr "Продолжить ?" -#: src/Common/LinuxKernel.vala:635 src/Console/AppConsole.vala:298 +#: src/Common/LinuxKernel.vala:586 src/Console/AppConsole.vala:298 msgid "Latest update" msgstr "Последнее обновление" -#: src/Common/LinuxKernel.vala:646 src/Console/AppConsole.vala:305 +#: src/Common/LinuxKernel.vala:597 src/Console/AppConsole.vala:305 msgid "Latest point update" msgstr "Последнее обновление пунктов" -#: src/Common/LinuxKernel.vala:654 src/Console/AppConsole.vala:310 +#: src/Common/LinuxKernel.vala:605 src/Console/AppConsole.vala:310 #: src/Console/AppConsole.vala:365 msgid "No updates found" msgstr "Обновлений не найдено" -#: src/Common/LinuxKernel.vala:664 +#: src/Common/LinuxKernel.vala:615 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Установить версию ядра %s ? (y/n): " -#: src/Common/LinuxKernel.vala:896 +#: src/Common/LinuxKernel.vala:838 msgid "Packages Available" msgstr "Доступные пакеты" -#: src/Common/LinuxKernel.vala:904 +#: src/Common/LinuxKernel.vala:843 msgid "Packages Installed" msgstr "Установленные пакеты" -#: src/Common/LinuxKernel.vala:918 src/Utility/TeeJee.FileSystem.vala:157 +#: src/Common/LinuxKernel.vala:856 src/Utility/TeeJee.FileSystem.vala:136 msgid "File not found" msgstr "Файл не найден" -#: src/Common/LinuxKernel.vala:984 +#: src/Common/LinuxKernel.vala:920 msgid "Available Kernels" msgstr "Доступные ядра" -#: src/Common/LinuxKernel.vala:991 src/Gtk/MainWindow.vala:151 +#: src/Common/LinuxKernel.vala:927 src/Gtk/MainWindow.vala:151 msgid "Installed" msgstr "Установлено" -#: src/Common/LinuxKernel.vala:991 src/Gtk/MainWindow.vala:151 +#: src/Common/LinuxKernel.vala:927 src/Gtk/MainWindow.vala:151 #: src/Gtk/MainWindow.vala:523 src/Gtk/MainWindow.vala:537 msgid "Running" msgstr "Используется" -#: src/Common/LinuxKernel.vala:1028 +#: src/Common/LinuxKernel.vala:964 msgid "Downloading" msgstr "Загрузка" -#: src/Common/LinuxKernel.vala:1047 +#: src/Common/LinuxKernel.vala:983 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:1050 +#: src/Common/LinuxKernel.vala:986 msgid "ERROR" msgstr "ОШИБКА" -#: src/Common/LinuxKernel.vala:1064 +#: src/Common/LinuxKernel.vala:1000 msgid "This kernel is already installed." msgstr "Это ядро уже установлено." -#: src/Common/LinuxKernel.vala:1102 +#: src/Common/LinuxKernel.vala:1038 #, fuzzy msgid "Uninstalling selected kernels" msgstr "Установить указанное ядро" -#: src/Common/LinuxKernel.vala:1108 +#: src/Common/LinuxKernel.vala:1044 msgid "requested" msgstr "" -#: src/Common/LinuxKernel.vala:1111 +#: src/Common/LinuxKernel.vala:1047 msgid "skipping the currently booted kernel" msgstr "" -#: src/Common/LinuxKernel.vala:1127 +#: src/Common/LinuxKernel.vala:1063 msgid "found" msgstr "" -#: src/Common/LinuxKernel.vala:1130 +#: src/Common/LinuxKernel.vala:1066 #, fuzzy msgid "No packages to un-install!" msgstr "Установленные пакеты" @@ -141,7 +141,7 @@ msgstr "Уведомления отключены" msgid "Can not reach" msgstr "" -#: src/Common/Package.vala:131 src/Common/Package.vala:196 +#: src/Common/Package.vala:129 src/Common/Package.vala:194 #, c-format msgid "File not found: %s" msgstr "Файл не найден: %s" @@ -467,55 +467,6 @@ msgstr "Включая сторонние инструменты" msgid "Missing Icon" msgstr "Значок отсутствует" -#: src/Utility/TeeJee.FileSystem.vala:71 -msgid "File deleted" -msgstr "Файл удалён" - -#: src/Utility/TeeJee.FileSystem.vala:76 src/Utility/TeeJee.FileSystem.vala:240 -msgid "Failed to delete file" -msgstr "Не удалось удалить файл" - -#: src/Utility/TeeJee.FileSystem.vala:96 -msgid "Failed to read file" -msgstr "Не удалось прочитать файл" - -#: src/Utility/TeeJee.FileSystem.vala:123 -msgid "File saved" -msgstr "Файл сохранён" - -#: src/Utility/TeeJee.FileSystem.vala:129 -msgid "Failed to write file" -msgstr "Не удалось записать файл" - -#: src/Utility/TeeJee.FileSystem.vala:141 -msgid "File copied" -msgstr "Файл скопирован" - -#: src/Utility/TeeJee.FileSystem.vala:148 -msgid "Failed to copy file" -msgstr "Не удалось скопировать файл" - -#: src/Utility/TeeJee.FileSystem.vala:171 -msgid "File moved" -msgstr "Файл перемещён" - -#: src/Utility/TeeJee.FileSystem.vala:176 -msgid "Failed to move file" -msgstr "Не удалось переместить файл" - -#: src/Utility/TeeJee.FileSystem.vala:217 -#: src/Utility/TeeJee.FileSystem.vala:220 -msgid "Created directory" -msgstr "Создана директория" - -#: src/Utility/TeeJee.FileSystem.vala:227 -msgid "Failed to create dir" -msgstr "Не удалось создать папку" - -#: src/Utility/TeeJee.FileSystem.vala:239 -msgid "Deleted" -msgstr "Удалено" - #: src/Utility/TeeJee.Logging.vala:59 msgid "E" msgstr "E" diff --git a/po/sv.po b/po/sv.po index ad4236e8..808f0cfa 100644 --- a/po/sv.po +++ b/po/sv.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-06 02:18-0500\n" +"POT-Creation-Date: 2023-03-08 01:01-0500\n" "PO-Revision-Date: 2018-01-13 16:56+0100\n" "Last-Translator: Åke Engelbrektson \n" "Language-Team:Swedish\n" @@ -13,121 +13,121 @@ msgstr "" "X-Generator: Poedit 1.8.7.1\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: src/Common/LinuxKernel.vala:88 +#: src/Common/LinuxKernel.vala:89 msgid "Distribution" msgstr "Distribution" -#: src/Common/LinuxKernel.vala:103 +#: src/Common/LinuxKernel.vala:104 #, fuzzy msgid "Architecture" msgstr "Systemarkitektur" -#: src/Common/LinuxKernel.vala:295 +#: src/Common/LinuxKernel.vala:283 #, fuzzy msgid "Fetching individual kernel indexes..." msgstr "Hämtar index för" -#: src/Common/LinuxKernel.vala:339 +#: src/Common/LinuxKernel.vala:327 #, fuzzy msgid "Fetching main index from" msgstr "Hämtar index för" -#: src/Common/LinuxKernel.vala:593 +#: src/Common/LinuxKernel.vala:544 #, fuzzy msgid "Could not find running kernel in list!" msgstr "Kunde inte hitta efterfrågad version" -#: src/Common/LinuxKernel.vala:599 +#: src/Common/LinuxKernel.vala:550 #, fuzzy msgid "Could not find any kernels to uninstall" msgstr "Välj kärnor för borttagning" -#: src/Common/LinuxKernel.vala:608 +#: src/Common/LinuxKernel.vala:559 #, fuzzy msgid "The following kernels will be uninstalled:" msgstr "Denna kärna är redan installerad" -#: src/Common/LinuxKernel.vala:612 +#: src/Common/LinuxKernel.vala:563 msgid "Continue ?" msgstr "" -#: src/Common/LinuxKernel.vala:635 src/Console/AppConsole.vala:298 +#: src/Common/LinuxKernel.vala:586 src/Console/AppConsole.vala:298 msgid "Latest update" msgstr "" -#: src/Common/LinuxKernel.vala:646 src/Console/AppConsole.vala:305 +#: src/Common/LinuxKernel.vala:597 src/Console/AppConsole.vala:305 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:654 src/Console/AppConsole.vala:310 +#: src/Common/LinuxKernel.vala:605 src/Console/AppConsole.vala:310 #: src/Console/AppConsole.vala:365 msgid "No updates found" msgstr "Inga uppdateringar hittades" -#: src/Common/LinuxKernel.vala:664 +#: src/Common/LinuxKernel.vala:615 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "" -#: src/Common/LinuxKernel.vala:896 +#: src/Common/LinuxKernel.vala:838 msgid "Packages Available" msgstr "Tillgängliga paket" -#: src/Common/LinuxKernel.vala:904 +#: src/Common/LinuxKernel.vala:843 msgid "Packages Installed" msgstr "Installerade paket" -#: src/Common/LinuxKernel.vala:918 src/Utility/TeeJee.FileSystem.vala:157 +#: src/Common/LinuxKernel.vala:856 src/Utility/TeeJee.FileSystem.vala:136 msgid "File not found" msgstr "Filen kan inte hittas" -#: src/Common/LinuxKernel.vala:984 +#: src/Common/LinuxKernel.vala:920 msgid "Available Kernels" msgstr "Tillgängliga kärnor" -#: src/Common/LinuxKernel.vala:991 src/Gtk/MainWindow.vala:151 +#: src/Common/LinuxKernel.vala:927 src/Gtk/MainWindow.vala:151 msgid "Installed" msgstr "Installerad" -#: src/Common/LinuxKernel.vala:991 src/Gtk/MainWindow.vala:151 +#: src/Common/LinuxKernel.vala:927 src/Gtk/MainWindow.vala:151 #: src/Gtk/MainWindow.vala:523 src/Gtk/MainWindow.vala:537 msgid "Running" msgstr "Körs" -#: src/Common/LinuxKernel.vala:1028 +#: src/Common/LinuxKernel.vala:964 msgid "Downloading" msgstr "Laddar ner" -#: src/Common/LinuxKernel.vala:1047 +#: src/Common/LinuxKernel.vala:983 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:1050 +#: src/Common/LinuxKernel.vala:986 msgid "ERROR" msgstr "FEL" -#: src/Common/LinuxKernel.vala:1064 +#: src/Common/LinuxKernel.vala:1000 msgid "This kernel is already installed." msgstr "Denna kärna är redan installerad" -#: src/Common/LinuxKernel.vala:1102 +#: src/Common/LinuxKernel.vala:1038 #, fuzzy msgid "Uninstalling selected kernels" msgstr "Installera specificerad kärna" -#: src/Common/LinuxKernel.vala:1108 +#: src/Common/LinuxKernel.vala:1044 msgid "requested" msgstr "" -#: src/Common/LinuxKernel.vala:1111 +#: src/Common/LinuxKernel.vala:1047 msgid "skipping the currently booted kernel" msgstr "" -#: src/Common/LinuxKernel.vala:1127 +#: src/Common/LinuxKernel.vala:1063 msgid "found" msgstr "" -#: src/Common/LinuxKernel.vala:1130 +#: src/Common/LinuxKernel.vala:1066 #, fuzzy msgid "No packages to un-install!" msgstr "Installerade paket" @@ -146,7 +146,7 @@ msgstr "Avisering" msgid "Can not reach" msgstr "Kunde inte läsa filen" -#: src/Common/Package.vala:131 src/Common/Package.vala:196 +#: src/Common/Package.vala:129 src/Common/Package.vala:194 #, c-format msgid "File not found: %s" msgstr "Filen kunde inte hittas: %s" @@ -486,57 +486,6 @@ msgstr "Tredjepartsverktyg" msgid "Missing Icon" msgstr "Saknad ikon" -#: src/Utility/TeeJee.FileSystem.vala:71 -#, fuzzy -msgid "File deleted" -msgstr "Fil sparad" - -#: src/Utility/TeeJee.FileSystem.vala:76 src/Utility/TeeJee.FileSystem.vala:240 -#, fuzzy -msgid "Failed to delete file" -msgstr "Kunde inte skriva filen" - -#: src/Utility/TeeJee.FileSystem.vala:96 -msgid "Failed to read file" -msgstr "Kunde inte läsa filen" - -#: src/Utility/TeeJee.FileSystem.vala:123 -msgid "File saved" -msgstr "Fil sparad" - -#: src/Utility/TeeJee.FileSystem.vala:129 -msgid "Failed to write file" -msgstr "Kunde inte skriva filen" - -#: src/Utility/TeeJee.FileSystem.vala:141 -msgid "File copied" -msgstr "Kopierade fil" - -#: src/Utility/TeeJee.FileSystem.vala:148 -msgid "Failed to copy file" -msgstr "Kunde inte kopiera filen" - -#: src/Utility/TeeJee.FileSystem.vala:171 -msgid "File moved" -msgstr "Fil flyttad" - -#: src/Utility/TeeJee.FileSystem.vala:176 -msgid "Failed to move file" -msgstr "Kunde inte flytta filen" - -#: src/Utility/TeeJee.FileSystem.vala:217 -#: src/Utility/TeeJee.FileSystem.vala:220 -msgid "Created directory" -msgstr "Skapade mapp" - -#: src/Utility/TeeJee.FileSystem.vala:227 -msgid "Failed to create dir" -msgstr "Kunde inte skapa mappen" - -#: src/Utility/TeeJee.FileSystem.vala:239 -msgid "Deleted" -msgstr "" - #: src/Utility/TeeJee.Logging.vala:59 msgid "E" msgstr "F" diff --git a/po/tr.po b/po/tr.po index 1def1329..ab63b128 100644 --- a/po/tr.po +++ b/po/tr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-06 02:18-0500\n" +"POT-Creation-Date: 2023-03-08 01:01-0500\n" "PO-Revision-Date: 2022-08-06 16:48+0300\n" "Last-Translator: Sabri Ünal \n" "Language-Team: Turkish\n" @@ -13,118 +13,118 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Poedit 3.1.1\n" -#: src/Common/LinuxKernel.vala:88 +#: src/Common/LinuxKernel.vala:89 msgid "Distribution" msgstr "Dağıtım" -#: src/Common/LinuxKernel.vala:103 +#: src/Common/LinuxKernel.vala:104 msgid "Architecture" msgstr "Sistem mimarisi" -#: src/Common/LinuxKernel.vala:295 +#: src/Common/LinuxKernel.vala:283 #, fuzzy msgid "Fetching individual kernel indexes..." msgstr "İçerik dizini alınıyor..." -#: src/Common/LinuxKernel.vala:339 +#: src/Common/LinuxKernel.vala:327 #, fuzzy msgid "Fetching main index from" msgstr "İçerik dizini alınıyor..." -#: src/Common/LinuxKernel.vala:593 +#: src/Common/LinuxKernel.vala:544 msgid "Could not find running kernel in list!" msgstr "Çalışan sürüm listede bulunamadı!" -#: src/Common/LinuxKernel.vala:599 +#: src/Common/LinuxKernel.vala:550 msgid "Could not find any kernels to uninstall" msgstr "Kaldırılacak çekirdek bulunamadı" -#: src/Common/LinuxKernel.vala:608 +#: src/Common/LinuxKernel.vala:559 msgid "The following kernels will be uninstalled:" msgstr "Aşağıdaki çekirdekler kaldırılacak:" -#: src/Common/LinuxKernel.vala:612 +#: src/Common/LinuxKernel.vala:563 msgid "Continue ?" msgstr "Devam edilsin mi?" -#: src/Common/LinuxKernel.vala:635 src/Console/AppConsole.vala:298 +#: src/Common/LinuxKernel.vala:586 src/Console/AppConsole.vala:298 msgid "Latest update" msgstr "Son güncelleme" # Point burada point release anlamında kullanılıyor. Örneğin 5.10.x sayısının en sonundaki x rakamı point release/nokta sürüm oluyor. -#: src/Common/LinuxKernel.vala:646 src/Console/AppConsole.vala:305 +#: src/Common/LinuxKernel.vala:597 src/Console/AppConsole.vala:305 msgid "Latest point update" msgstr "Son nokta güncellemesi" -#: src/Common/LinuxKernel.vala:654 src/Console/AppConsole.vala:310 +#: src/Common/LinuxKernel.vala:605 src/Console/AppConsole.vala:310 #: src/Console/AppConsole.vala:365 msgid "No updates found" msgstr "Güncelleme bulunamadı" -#: src/Common/LinuxKernel.vala:664 +#: src/Common/LinuxKernel.vala:615 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Linux Çekirdek Sürümü %s Kurulsun mu? (e/h): " -#: src/Common/LinuxKernel.vala:896 +#: src/Common/LinuxKernel.vala:838 msgid "Packages Available" msgstr "Mevcut Paketler" -#: src/Common/LinuxKernel.vala:904 +#: src/Common/LinuxKernel.vala:843 msgid "Packages Installed" msgstr "Kurulu Paketler" -#: src/Common/LinuxKernel.vala:918 src/Utility/TeeJee.FileSystem.vala:157 +#: src/Common/LinuxKernel.vala:856 src/Utility/TeeJee.FileSystem.vala:136 msgid "File not found" msgstr "Dosya bulunamadı" -#: src/Common/LinuxKernel.vala:984 +#: src/Common/LinuxKernel.vala:920 msgid "Available Kernels" msgstr "Mevcut Çekirdekler" -#: src/Common/LinuxKernel.vala:991 src/Gtk/MainWindow.vala:151 +#: src/Common/LinuxKernel.vala:927 src/Gtk/MainWindow.vala:151 msgid "Installed" msgstr "Kurulu" -#: src/Common/LinuxKernel.vala:991 src/Gtk/MainWindow.vala:151 +#: src/Common/LinuxKernel.vala:927 src/Gtk/MainWindow.vala:151 #: src/Gtk/MainWindow.vala:523 src/Gtk/MainWindow.vala:537 msgid "Running" msgstr "Çalışıyor" -#: src/Common/LinuxKernel.vala:1028 +#: src/Common/LinuxKernel.vala:964 msgid "Downloading" msgstr "İndiriliyor" -#: src/Common/LinuxKernel.vala:1047 +#: src/Common/LinuxKernel.vala:983 msgid "OK" msgstr "Tamam" -#: src/Common/LinuxKernel.vala:1050 +#: src/Common/LinuxKernel.vala:986 msgid "ERROR" msgstr "HATA" -#: src/Common/LinuxKernel.vala:1064 +#: src/Common/LinuxKernel.vala:1000 msgid "This kernel is already installed." msgstr "Bu çekirdek zaten kurulu." -#: src/Common/LinuxKernel.vala:1102 +#: src/Common/LinuxKernel.vala:1038 #, fuzzy msgid "Uninstalling selected kernels" msgstr "Belirtilen çekirdeğini kaldır" -#: src/Common/LinuxKernel.vala:1108 +#: src/Common/LinuxKernel.vala:1044 msgid "requested" msgstr "" -#: src/Common/LinuxKernel.vala:1111 +#: src/Common/LinuxKernel.vala:1047 msgid "skipping the currently booted kernel" msgstr "" -#: src/Common/LinuxKernel.vala:1127 +#: src/Common/LinuxKernel.vala:1063 msgid "found" msgstr "" -#: src/Common/LinuxKernel.vala:1130 +#: src/Common/LinuxKernel.vala:1066 #, fuzzy msgid "No packages to un-install!" msgstr "Kurulu Paketler" @@ -142,7 +142,7 @@ msgstr "Bildirimler devre dışı bırakılmış" msgid "Can not reach" msgstr "Dosya okunamadı" -#: src/Common/Package.vala:131 src/Common/Package.vala:196 +#: src/Common/Package.vala:129 src/Common/Package.vala:194 #, c-format msgid "File not found: %s" msgstr "%s dosyası bulunamadı" @@ -468,55 +468,6 @@ msgstr "Üçüncü Taraf Eklemeler" msgid "Missing Icon" msgstr "Eksik Simge" -#: src/Utility/TeeJee.FileSystem.vala:71 -msgid "File deleted" -msgstr "Dosya silindi" - -#: src/Utility/TeeJee.FileSystem.vala:76 src/Utility/TeeJee.FileSystem.vala:240 -msgid "Failed to delete file" -msgstr "Dosya silinemedi" - -#: src/Utility/TeeJee.FileSystem.vala:96 -msgid "Failed to read file" -msgstr "Dosya okunamadı" - -#: src/Utility/TeeJee.FileSystem.vala:123 -msgid "File saved" -msgstr "Dosya kaydedildi" - -#: src/Utility/TeeJee.FileSystem.vala:129 -msgid "Failed to write file" -msgstr "Dosya yazılamadı" - -#: src/Utility/TeeJee.FileSystem.vala:141 -msgid "File copied" -msgstr "Dosya kopyalandı" - -#: src/Utility/TeeJee.FileSystem.vala:148 -msgid "Failed to copy file" -msgstr "Dosya kopyalanamadı" - -#: src/Utility/TeeJee.FileSystem.vala:171 -msgid "File moved" -msgstr "Dosya taşındı" - -#: src/Utility/TeeJee.FileSystem.vala:176 -msgid "Failed to move file" -msgstr "Dosya taşınamadı" - -#: src/Utility/TeeJee.FileSystem.vala:217 -#: src/Utility/TeeJee.FileSystem.vala:220 -msgid "Created directory" -msgstr "Dizin oluşturuldu" - -#: src/Utility/TeeJee.FileSystem.vala:227 -msgid "Failed to create dir" -msgstr "Dizin oluşturulamadı" - -#: src/Utility/TeeJee.FileSystem.vala:239 -msgid "Deleted" -msgstr "Silindi" - #: src/Utility/TeeJee.Logging.vala:59 msgid "E" msgstr "H" diff --git a/po/uk.po b/po/uk.po index 3a9fa4c6..469e6d42 100644 --- a/po/uk.po +++ b/po/uk.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-06 02:18-0500\n" +"POT-Creation-Date: 2023-03-08 01:01-0500\n" "PO-Revision-Date: 2019-07-25 11:00+0300\n" "Last-Translator: Serhii Golovko \n" "Language-Team: Ukranian\n" @@ -13,114 +13,114 @@ msgstr "" "X-Launchpad-Export-Date: 2016-12-13 11:48+0000\n" "X-Generator: Poedit 2.2.1\n" -#: src/Common/LinuxKernel.vala:88 +#: src/Common/LinuxKernel.vala:89 msgid "Distribution" msgstr "Дистрибутив" -#: src/Common/LinuxKernel.vala:103 +#: src/Common/LinuxKernel.vala:104 msgid "Architecture" msgstr "Системна архитектура" -#: src/Common/LinuxKernel.vala:295 +#: src/Common/LinuxKernel.vala:283 msgid "Fetching individual kernel indexes..." msgstr "Отримання окремих індексів ядра..." -#: src/Common/LinuxKernel.vala:339 +#: src/Common/LinuxKernel.vala:327 msgid "Fetching main index from" msgstr "Отримання основного індексу з" -#: src/Common/LinuxKernel.vala:593 +#: src/Common/LinuxKernel.vala:544 msgid "Could not find running kernel in list!" msgstr "Не вдалося знайти запущене ядро у списку!" -#: src/Common/LinuxKernel.vala:599 +#: src/Common/LinuxKernel.vala:550 msgid "Could not find any kernels to uninstall" msgstr "Не вдалося знайти жодне ядро для вилучення" -#: src/Common/LinuxKernel.vala:608 +#: src/Common/LinuxKernel.vala:559 msgid "The following kernels will be uninstalled:" msgstr "Наступні ядра будуть видалені:" -#: src/Common/LinuxKernel.vala:612 +#: src/Common/LinuxKernel.vala:563 msgid "Continue ?" msgstr "Продовжувати ?" -#: src/Common/LinuxKernel.vala:635 src/Console/AppConsole.vala:298 +#: src/Common/LinuxKernel.vala:586 src/Console/AppConsole.vala:298 msgid "Latest update" msgstr "Останнє оновлення" -#: src/Common/LinuxKernel.vala:646 src/Console/AppConsole.vala:305 +#: src/Common/LinuxKernel.vala:597 src/Console/AppConsole.vala:305 msgid "Latest point update" msgstr "Остання точка оновлення" -#: src/Common/LinuxKernel.vala:654 src/Console/AppConsole.vala:310 +#: src/Common/LinuxKernel.vala:605 src/Console/AppConsole.vala:310 #: src/Console/AppConsole.vala:365 msgid "No updates found" msgstr "Оновлень не знайдено" -#: src/Common/LinuxKernel.vala:664 +#: src/Common/LinuxKernel.vala:615 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Встановити Ядро Версії %s ? (так/ні): " -#: src/Common/LinuxKernel.vala:896 +#: src/Common/LinuxKernel.vala:838 msgid "Packages Available" msgstr "Доступні пакети" -#: src/Common/LinuxKernel.vala:904 +#: src/Common/LinuxKernel.vala:843 msgid "Packages Installed" msgstr "Встановлені пакети" -#: src/Common/LinuxKernel.vala:918 src/Utility/TeeJee.FileSystem.vala:157 +#: src/Common/LinuxKernel.vala:856 src/Utility/TeeJee.FileSystem.vala:136 msgid "File not found" msgstr "Файл не знайдено" -#: src/Common/LinuxKernel.vala:984 +#: src/Common/LinuxKernel.vala:920 msgid "Available Kernels" msgstr "Доступні ядра" -#: src/Common/LinuxKernel.vala:991 src/Gtk/MainWindow.vala:151 +#: src/Common/LinuxKernel.vala:927 src/Gtk/MainWindow.vala:151 msgid "Installed" msgstr "Встановлено" -#: src/Common/LinuxKernel.vala:991 src/Gtk/MainWindow.vala:151 +#: src/Common/LinuxKernel.vala:927 src/Gtk/MainWindow.vala:151 #: src/Gtk/MainWindow.vala:523 src/Gtk/MainWindow.vala:537 msgid "Running" msgstr "Використовується" -#: src/Common/LinuxKernel.vala:1028 +#: src/Common/LinuxKernel.vala:964 msgid "Downloading" msgstr "Завантаження" -#: src/Common/LinuxKernel.vala:1047 +#: src/Common/LinuxKernel.vala:983 msgid "OK" msgstr "Добре" -#: src/Common/LinuxKernel.vala:1050 +#: src/Common/LinuxKernel.vala:986 msgid "ERROR" msgstr "ПОМИЛКА" -#: src/Common/LinuxKernel.vala:1064 +#: src/Common/LinuxKernel.vala:1000 msgid "This kernel is already installed." msgstr "Це ядро вже встановлено." -#: src/Common/LinuxKernel.vala:1102 +#: src/Common/LinuxKernel.vala:1038 msgid "Uninstalling selected kernels" msgstr "Видаліть конкретні ядра" -#: src/Common/LinuxKernel.vala:1108 +#: src/Common/LinuxKernel.vala:1044 msgid "requested" msgstr "запитуваний" -#: src/Common/LinuxKernel.vala:1111 +#: src/Common/LinuxKernel.vala:1047 msgid "skipping the currently booted kernel" msgstr "пропускаючи поточне завантажене ядро" -#: src/Common/LinuxKernel.vala:1127 +#: src/Common/LinuxKernel.vala:1063 msgid "found" msgstr "знайдено" -#: src/Common/LinuxKernel.vala:1130 +#: src/Common/LinuxKernel.vala:1066 #, fuzzy msgid "No packages to un-install!" msgstr "Встановлені пакети" @@ -137,7 +137,7 @@ msgstr "Повідомлення вимкнено" msgid "Can not reach" msgstr "Не може дістатися" -#: src/Common/Package.vala:131 src/Common/Package.vala:196 +#: src/Common/Package.vala:129 src/Common/Package.vala:194 #, c-format msgid "File not found: %s" msgstr "Файл не знайдено: %s" @@ -461,55 +461,6 @@ msgstr "Включення третіх осіб" msgid "Missing Icon" msgstr "Нема значка" -#: src/Utility/TeeJee.FileSystem.vala:71 -msgid "File deleted" -msgstr "Файл видалено" - -#: src/Utility/TeeJee.FileSystem.vala:76 src/Utility/TeeJee.FileSystem.vala:240 -msgid "Failed to delete file" -msgstr "Не вдалося видалити файл" - -#: src/Utility/TeeJee.FileSystem.vala:96 -msgid "Failed to read file" -msgstr "Не вдалося прочитати файл" - -#: src/Utility/TeeJee.FileSystem.vala:123 -msgid "File saved" -msgstr "Файл збережено" - -#: src/Utility/TeeJee.FileSystem.vala:129 -msgid "Failed to write file" -msgstr "Не вдалося записати файл" - -#: src/Utility/TeeJee.FileSystem.vala:141 -msgid "File copied" -msgstr "Не вдалося скопіювати файл" - -#: src/Utility/TeeJee.FileSystem.vala:148 -msgid "Failed to copy file" -msgstr "Не вдалося скопіювати файл" - -#: src/Utility/TeeJee.FileSystem.vala:171 -msgid "File moved" -msgstr "Файл переміщено" - -#: src/Utility/TeeJee.FileSystem.vala:176 -msgid "Failed to move file" -msgstr "Не вдалося перемістити файл" - -#: src/Utility/TeeJee.FileSystem.vala:217 -#: src/Utility/TeeJee.FileSystem.vala:220 -msgid "Created directory" -msgstr "Створений каталог" - -#: src/Utility/TeeJee.FileSystem.vala:227 -msgid "Failed to create dir" -msgstr "Не вдалося створити теку" - -#: src/Utility/TeeJee.FileSystem.vala:239 -msgid "Deleted" -msgstr "Видалено" - #: src/Utility/TeeJee.Logging.vala:59 msgid "E" msgstr "E" diff --git a/src/Common/DownloadManager.vala b/src/Common/DownloadManager.vala index ba694388..3dc7409f 100644 --- a/src/Common/DownloadManager.vala +++ b/src/Common/DownloadManager.vala @@ -191,7 +191,7 @@ public class DownloadTask : AsyncTask { status_line = item.status_line(); } - log_debug(status_line); + //log_debug(status_line); } else { //log_debug("unmatched: '%s'".printf(line)); diff --git a/src/Common/LinuxKernel.vala b/src/Common/LinuxKernel.vala index 8feb5bd3..123b5d2a 100644 --- a/src/Common/LinuxKernel.vala +++ b/src/Common/LinuxKernel.vala @@ -49,6 +49,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { public static LinuxKernel kernel_update_minor; public static LinuxKernel kernel_latest_available; public static LinuxKernel kernel_latest_installed; + public static LinuxKernel kernel_oldest_installed; public static Gee.ArrayList kernel_list = new Gee.ArrayList(); @@ -63,7 +64,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { public static int64 progress_total; public static int64 progress_count; public static bool cancelled; - public static int highest_maj; + public static int threshold_major; // class initialize @@ -153,12 +154,9 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { } public static void delete_cache() { - log_debug("delete_cache() '%s'".printf(CACHE_DIR)); + log_debug("delete_cache()"); kernel_list.clear(); - if (dir_exists(CACHE_DIR)) { - bool ok = dir_delete(CACHE_DIR); - if (ok) log_msg("Deleted '%s'".printf(CACHE_DIR)); - } + dir_delete(CACHE_DIR); } // constructor @@ -217,29 +215,19 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { var timer = timer_start(); long count = 0; - // download the main index.html listing all kernels + // ===== download the main index.html listing all kernels ===== download_index(); load_index(); - // download the per-kernel index.html and CHANGES + // ===== download the per-kernel index.html and CHANGES ===== // init the progress display status_line = ""; progress_total = 0; progress_count = 0; - // By default, display all kernels belonging to the oldest major version installed and up - highest_maj = find_lowest_major_version_installed(); - - // determine the size of the job for the percent-done display - foreach (var k in kernel_list){ - if(!k.is_installed) { - if (k.version_maj < highest_maj-App.show_prev_majors) continue; - if (App.hide_unstable && k.is_unstable) continue; - } - if (k.is_valid && !k.cached_page_exists) progress_total += 2; - if (notifier != null) notifier(timer, ref count); - } + find_threshold_major_version(); + log_debug("threshold_major %d".printf(threshold_major)); // list of kernels - 1 LinuxKernel object per kernel to update var kernels_to_update = new Gee.ArrayList(); @@ -260,7 +248,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { if (!k.is_valid) continue; if (!k.is_installed) { - if (k.version_maj < highest_maj-App.show_prev_majors) continue; + if (k.version_maj < threshold_major) continue; if (App.hide_unstable && k.is_unstable) continue; } @@ -281,11 +269,11 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { // process the download list if ((downloads.size > 0) && App.connection_status) { + progress_total = (int64) downloads.size; var mgr = new DownloadTask(); // add download list to queue foreach (var item in downloads) mgr.add_to_queue(item); - mgr.status_in_kb = true; mgr.prg_count_total = progress_total; @@ -295,7 +283,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { print_progress_bar_start(_("Fetching individual kernel indexes...")); // while downloading - while (mgr.is_running()){ + while (mgr.is_running()) { progress_count = mgr.prg_count; print_progress_bar((progress_count * 1.0) / progress_total); sleep(300); @@ -363,18 +351,14 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { kernel_list.clear(); try { - // v3.0.16-oneiric/ var rex = new Regex("""v([a-zA-Z0-9\-._]+)[\/]*<\/a>"""); + // v3.1.8-precise/ + // ###fetch(1)#### ##fetch(2)### MatchInfo match; foreach (string line in txt.split("\n")) { - //log_debug(line); if (!rex.match(line, 0, out match)) continue; - //log_debug(line); - //log_debug(match.fetch(0)); // v3.1.8-precise/ - //log_debug(match.fetch(1)); // v3.1.8-precise/ the actual url from the href - //log_debug(match.fetch(2)); // 3.1.8-precise the display part, the leading v and trailing / are missing because they're not inside the 2nd () in the regex var k = new LinuxKernel(match.fetch(1), true); kernel_list.add(k); } @@ -382,6 +366,14 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { kernel_list.sort((a,b) => { return a.compare_to(b) * -1; }); + + foreach (var k in kernel_list) { + if (k.is_valid) { + kernel_latest_available = k; + break; + } + } + } catch (Error e) { log_error (e.message); @@ -392,13 +384,6 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { public static void check_installed() { log_debug("check_installed()"); - //log_msg(string.nfill(70, '-')); - -// foreach(var k in kernel_list){ -// k.is_installed = false; -// k.is_running = false; -// } - pkg_list_installed = Package.query_installed_packages(); var pkg_versions = new Gee.ArrayList(); @@ -451,9 +436,9 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { foreach (var k in kernel_list) { if (!k.is_valid) continue; if (!k.is_mainline) continue; - if (k.version_package.length > 0) { string ver_pkg_short = k.version_package[0 : k.version_package.last_index_of(".")]; + //log_debug(ver_pkg_short+" "+RUNNING_KERNEL); if (ver_pkg_short == RUNNING_KERNEL) { k.is_running = true; k.is_installed = true; @@ -468,7 +453,6 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { foreach (var k in kernel_list) { if (!k.is_valid) continue; if (k.is_mainline) continue; - if (kern_running.version_main == k.version_main) { k.is_running = true; k.is_installed = true; @@ -482,17 +466,21 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { return a.compare_to(b) * -1; }); - log_msg(string.nfill(70, '-')); + //log_msg(string.nfill(70, '-')); - // find the highest installed version ---------------------- + // find the highest & lowest installed versions ---------------------- kernel_latest_installed = new LinuxKernel.from_version("0"); + kernel_oldest_installed = new LinuxKernel.from_version("0"); foreach(var k in kernel_list) { + //log_debug(k.version_main+" "+k.is_installed.to_string()); if (k.is_installed) { - kernel_latest_installed = k; - break; + if (kernel_latest_installed.version_maj==0) kernel_latest_installed = k; + kernel_oldest_installed = k; } } - //log_debug("Highest Installed: "+kernel_latest_installed.version_main); + log_debug("latest_installed: "+kernel_latest_installed.version_main); + log_debug("oldest_installed: "+kernel_oldest_installed.version_main); + //log_debug(string.nfill(70, '-')); } @@ -501,68 +489,30 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { log_debug("check_updates()"); kernel_update_major = null; kernel_update_minor = null; - kernel_latest_available = null; foreach(var k in LinuxKernel.kernel_list) { if (!k.is_valid) continue; - if ((App.hide_unstable && k.is_unstable) && (!k.is_installed)) continue; - if (kernel_latest_available == null) kernel_latest_available = k; if (k.is_installed) continue; + if (k.is_unstable && App.hide_unstable) continue; bool major_available = false; bool minor_available = false; - //string msg = "\n|tvm:"+k.version_main+"|tvr:%d".printf(k.version_rc)+"|"; - - //if(kernel_latest_installed!=null) msg += "i:"+kernel_latest_installed.version_main+"|"; - - //msg += "\n|" - //+ "i.M:%d|".printf(kernel_latest_installed.version_maj) - //+ "i.m:%d|".printf(kernel_latest_installed.version_min) - //+ "i.p:%d|".printf(kernel_latest_installed.version_point) - //+ "i.r:%d|".printf(kernel_latest_installed.version_rc) - //+ "\n|" - //+ "k.M:%d|".printf(k.version_maj) - //+ "k.m:%d|".printf(k.version_min) - //+ "k.p:%d|".printf(k.version_point) - //+ "k.r:%d|".printf(k.version_rc); - if (k.version_maj > kernel_latest_installed.version_maj) { - //msg += "u:M(M)|"; - major_available = true; - } + + if (k.version_maj > kernel_latest_installed.version_maj) major_available = true; else if (k.version_maj == kernel_latest_installed.version_maj) { - if (k.version_min > kernel_latest_installed.version_min) { - //msg += "u:M(m)|"; - major_available = true; - } + if (k.version_min > kernel_latest_installed.version_min) major_available = true; else if (k.version_min == kernel_latest_installed.version_min) { - if (k.version_point > kernel_latest_installed.version_point) { - //msg += "u:m(p)|"; - minor_available = true; - } + if (k.version_point > kernel_latest_installed.version_point) minor_available = true; else if (k.version_point == kernel_latest_installed.version_point) { - if (k.version_rc > kernel_latest_installed.version_rc) { - //msg += "u:m(r)|"; - minor_available = true; - } + if (k.version_rc > kernel_latest_installed.version_rc) minor_available = true; } } } - //msg += "\n|"; + if (major_available && (kernel_update_major == null)) kernel_update_major = k; - if (major_available && (kernel_update_major == null)) { - kernel_update_major = k; - //msg += "kuM:"+k.version_main+"|"; - } - - if (minor_available && (kernel_update_minor == null)) { - kernel_update_minor = k; - //msg += "kum:"+k.version_main+"|"; - } + if (minor_available && (kernel_update_minor == null)) kernel_update_minor = k; - //if(kernel_latest_available!=null) msg += "a:"+kernel_latest_available.version_main+"|"; - - //log_debug(msg); // stop if we have everything possible if ((kernel_update_major != null) && (kernel_update_minor != null) && (kernel_latest_available != null)) break; } @@ -585,7 +535,8 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { found_running_kernel = true; continue; } - if (k.compare_to(kern_running) > 0) continue; // FIXME, compare kernel_latest_installed + //if (k.compare_to(kern_running) > 0) continue; // FIXME, compare kernel_latest_installed + if (k.compare_to(kernel_latest_installed) > 0) continue; list.add(k); } @@ -674,29 +625,23 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { // helpers - public static int find_lowest_major_version_installed() { - log_debug("find_lowest_major_version_installed()"); + public static void find_threshold_major_version() { + log_debug("find_threshold_major_version()"); pkg_list_installed = Package.query_installed_packages(); - int? major_version = null; + // start from the running kernel and work down + kernel_oldest_installed = new LinuxKernel.from_version(RUNNING_KERNEL); + foreach (var pkg in pkg_list_installed.values) { if (!pkg.pname.contains("linux-image") || !pkg.is_installed) continue; - - bool is_mainline = false; - var candidate = new LinuxKernel(pkg.version_installed, is_mainline); - if (major_version == null || candidate.version_maj < major_version) { - major_version = candidate.version_maj; - } + var candidate = new LinuxKernel(pkg.version_installed, false); + if (candidate.version_maj < kernel_oldest_installed.version_maj) kernel_oldest_installed = candidate; } - if (major_version == null) { - major_version = new LinuxKernel.from_version(RUNNING_KERNEL).version_maj; - } + threshold_major = kernel_latest_available.version_maj - App.show_prev_majors; + if (kernel_oldest_installed.version_maj < threshold_major) threshold_major = kernel_oldest_installed.version_maj; - log_debug("Lowest Installed Major: %d".printf(major_version)); - - return major_version; } public void split_version_string(string _version_string, out string ver_main) { @@ -888,21 +833,14 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { string txt = ""; string list = ""; - foreach (string deb in deb_list.keys) { - list += "\n"+deb; - } + foreach (string deb in deb_list.keys) list += "\n"+deb; - if (list.length > 0) { - txt += ""+_("Packages Available")+"\n"+list; - } + if (list.length > 0) txt += ""+_("Packages Available")+"\n"+list; list = ""; - foreach(string deb in apt_pkg_list.keys) { - list += "\n"+deb; - } - if (list.length > 0) { - txt += "\n\n"+_("Packages Installed")+"\n"+list; - } + foreach (string deb in apt_pkg_list.keys) list += "\n"+deb; + + if (list.length > 0) txt += "\n\n"+_("Packages Installed")+"\n"+list; return txt; } @@ -960,9 +898,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { add = true; } - if (add) { - list[file_name] = file_uri; // add to list - } + if (add) list[file_name] = file_uri; } } @@ -993,7 +929,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { // hide hidden, but don't hide any installed if (!k.is_installed) { if (App.hide_unstable && k.is_unstable) continue; - if (k.version_maj < highest_maj-App.show_prev_majors) continue; + if (k.version_maj < threshold_major) continue; } // kern.kname "v5.6.11" -> cache download dir names, needed for --install, --remove diff --git a/src/Common/Package.vala b/src/Common/Package.vala index fda70136..fca43b34 100644 --- a/src/Common/Package.vala +++ b/src/Common/Package.vala @@ -98,9 +98,7 @@ linux-image-unsigned-5.6.10-050610-generic|5.6.10-050610.202005052153||Linux ker var dis = new DataInputStream (file.read()); while ((line = dis.read_line (null)) != null) { string[] arr = line.split("|"); - if (arr.length != 4) { - continue; - } + if (arr.length != 4) continue; string pname = arr[0].strip(); string arch = (pname.contains(":")) ? pname.split(":")[1].strip() : ""; diff --git a/src/Gtk/MainWindow.vala b/src/Gtk/MainWindow.vala index 315d713f..05e99d27 100644 --- a/src/Gtk/MainWindow.vala +++ b/src/Gtk/MainWindow.vala @@ -221,13 +221,13 @@ public class MainWindow : Gtk.Window { foreach (var kern in LinuxKernel.kernel_list) { if (!kern.is_valid) continue; if (!kern.is_installed) { - if (App.hide_unstable && kern.is_unstable) continue; - if (kern.version_maj < LinuxKernel.highest_maj-App.show_prev_majors) continue; + if (kern.is_unstable && App.hide_unstable) continue; + if (kern.version_maj < LinuxKernel.threshold_major) continue; } odd_row = !odd_row; - //add row + // add row model.append(out iter); model.set (iter, 0, kern); @@ -459,7 +459,7 @@ public class MainWindow : Gtk.Window { tv_refresh(); } - +// FIXME - not working private void update_progress_window(ProgressWindow progress_window, string message, GLib.Timer timer, ref long count, bool last = false) { if (last) { progress_window.destroy(); diff --git a/src/Utility/AsyncTask.vala b/src/Utility/AsyncTask.vala index 4ecd7ed1..0f381f61 100644 --- a/src/Utility/AsyncTask.vala +++ b/src/Utility/AsyncTask.vala @@ -64,7 +64,6 @@ public abstract class AsyncTask : GLib.Object{ public int64 prg_count = 0; public int64 prg_count_total = 0; public string eta = ""; - //public bool is_running = false; // signals public signal void stdout_line_read(string line); @@ -124,9 +123,9 @@ public abstract class AsyncTask : GLib.Object{ dis_err.newline_type = DataStreamNewlineType.ANY; // create log file - if (log_file.length > 0){ + if (log_file.length > 0) { var file = File.new_for_path(log_file); - if (file.query_exists()){ + if (file.query_exists()) { file.delete(); } var file_stream = file.create (FileCreateFlags.REPLACE_DESTINATION); @@ -150,29 +149,28 @@ public abstract class AsyncTask : GLib.Object{ private bool read_stdout() { try { stdout_is_open = true; - out_line = dis_out.read_line (null); while (out_line != null) { //log_msg("O: " + out_line); - if (!is_terminated && (out_line.length > 0)){ + if (!is_terminated && (out_line.length > 0)) { parse_stdout_line(out_line); - stdout_line_read(out_line); //signal + stdout_line_read(out_line); // signal } - out_line = dis_out.read_line (null); //read next + out_line = dis_out.read_line(null); // read next } stdout_is_open = false; // dispose stdout - if ((dis_out != null) && !dis_out.is_closed()){ + if ((dis_out != null) && !dis_out.is_closed()) { dis_out.close(); } - //dis_out.close(); + // dis_out.close(); dis_out = null; GLib.FileUtils.close(output_fd); // check if complete - if (!stdout_is_open && !stderr_is_open){ + if (!stdout_is_open && !stderr_is_open) { finish(); } } @@ -187,12 +185,10 @@ public abstract class AsyncTask : GLib.Object{ private bool read_stderr() { try { stderr_is_open = true; - err_line = dis_err.read_line (null); while (err_line != null) { if (!is_terminated && (err_line.length > 0)) { - error_msg += "%s\n".printf(err_line); - + // error_msg += "%s\n".printf(err_line); parse_stderr_line(err_line); stderr_line_read(err_line); //signal } @@ -202,15 +198,15 @@ public abstract class AsyncTask : GLib.Object{ stderr_is_open = false; // dispose stderr - if ((dis_err != null) && !dis_err.is_closed()){ + if ((dis_err != null) && !dis_err.is_closed()) { dis_err.close(); } - //dis_err.close(); + // dis_err.close(); dis_err = null; GLib.FileUtils.close(error_fd); // check if complete - if (!stdout_is_open && !stderr_is_open){ + if (!stdout_is_open && !stderr_is_open) { finish(); } } @@ -240,9 +236,9 @@ public abstract class AsyncTask : GLib.Object{ */ protected abstract void parse_stdout_line(string out_line); - + protected abstract void parse_stderr_line(string err_line); - + private void finish() { // finish() gets called by 2 threads but should be executed only once if (finish_called) return; @@ -286,9 +282,7 @@ public abstract class AsyncTask : GLib.Object{ dir_delete(working_dir); - if ((status != AppStatus.CANCELLED) && (status != AppStatus.PASSWORD_REQUIRED)) { - status = AppStatus.FINISHED; - } + if ((status != AppStatus.CANCELLED) && (status != AppStatus.PASSWORD_REQUIRED)) status = AppStatus.FINISHED; task_complete(); //signal } diff --git a/src/Utility/TeeJee.FileSystem.vala b/src/Utility/TeeJee.FileSystem.vala index c1db5080..26a498d5 100644 --- a/src/Utility/TeeJee.FileSystem.vala +++ b/src/Utility/TeeJee.FileSystem.vala @@ -53,106 +53,85 @@ namespace TeeJee.FileSystem{ // file helpers ----------------------------- - public bool file_exists (string file_path){ - /* Check if file exists */ + public bool file_exists(string file_path) { + //log_debug("file_exists("+file_path+")"); return (FileUtils.test(file_path, GLib.FileTest.EXISTS) && !FileUtils.test(file_path, GLib.FileTest.IS_DIR)); } - public bool file_delete(string file_path){ - /* Check and delete file */ + public bool file_delete(string file_path) { + //log_debug("file_delete("+file_path+")"); if(!file_exists(file_path)) return true; try { var file = File.new_for_path (file_path); - if (file.query_exists()) { - file.delete(); - log_debug(_("File deleted") + ": %s".printf(file_path)); - } + if (file.query_exists()) file.delete(); return true; } catch (Error e) { - log_error (e.message); - log_error(_("Failed to delete file") + ": %s".printf(file_path)); - return false; - } - + log_error (e.message); + return false; + } } - public string? file_read (string file_path){ - - /* Reads text from file */ + public string? file_read (string file_path) { + //log_debug("file_read("+file_path+")"); string txt; size_t size; - try{ + try { GLib.FileUtils.get_contents (file_path, out txt, out size); - return txt; } - catch (Error e){ - log_error (e.message); - log_error(_("Failed to read file") + ": %s".printf(file_path)); - } + catch (Error e) { log_error (e.message); } return null; } - public bool file_write (string f, string contents){ + public bool file_write (string f, string contents) { + //log_debug("file_write("+f+")"); - /* Write text to file */ - - log_debug("file_write("+f+")"); - - try{ + try { string d = file_parent(f); dir_create(d); var file = File.new_for_path (f); - if (file.query_exists ()) { - file.delete (); - } - + if (file.query_exists ()) file.delete (); + var file_stream = file.create (FileCreateFlags.REPLACE_DESTINATION); var data_stream = new DataOutputStream (file_stream); data_stream.put_string (contents); data_stream.close(); - log_debug(_("File saved") + ":" + f); - return true; } catch (Error e) { log_error (e.message); - log_error(_("Failed to write file") + ":" + f); return false; } } public bool file_copy (string src_file, string dest_file){ - try{ + //log_debug("file_copy('"+src_file+"','"+dest_file+"')"); + + try { var file_src = File.new_for_path (src_file); if (file_src.query_exists()) { var file_dest = File.new_for_path (dest_file); file_src.copy(file_dest,FileCopyFlags.OVERWRITE,null,null); - - log_debug(_("File copied") + ": '%s' → '%s'".printf(src_file, dest_file)); - - return true; + return true; } } - catch(Error e){ - log_error (e.message); - log_error(_("Failed to copy file") + ": '%s', '%s'".printf(src_file, dest_file)); - } + catch (Error e) { log_error (e.message); } return false; } public void file_move (string src_file, string dest_file){ - try{ + //log_debug("file_move('"+src_file+"','"+dest_file+"')"); + try { if (!file_exists(src_file)) { log_error(_("File not found") + ": '%s'".printf(src_file)); return; @@ -160,21 +139,14 @@ namespace TeeJee.FileSystem{ dir_create(file_parent(dest_file)); - if (file_exists(dest_file)){ - file_delete(dest_file); - } + if (file_exists(dest_file)) file_delete(dest_file); var file_src = File.new_for_path (src_file); var file_dest = File.new_for_path (dest_file); file_src.move(file_dest,FileCopyFlags.OVERWRITE,null,null); - log_debug(_("File moved") + ": '%s' → '%s'".printf(src_file, dest_file)); - - } - catch(Error e){ - log_error (e.message); - log_error(_("Failed to move file") + ": '%s' → '%s'".printf(src_file, dest_file)); } + catch(Error e) { log_error (e.message); } } // file info ----------------- @@ -199,50 +171,45 @@ namespace TeeJee.FileSystem{ // directory helpers ---------------------- public bool dir_exists (string dir_path){ - /* Check if directory exists */ return ( FileUtils.test(dir_path, GLib.FileTest.EXISTS) && FileUtils.test(dir_path, GLib.FileTest.IS_DIR)); } - public bool dir_create (string d, bool show_message = false){ - + public bool dir_create (string d) { log_debug("dir_create("+d+")"); - /* Creates a directory along with parents */ try{ var dir = File.parse_name (d); if (dir.query_exists () == false) { dir.make_directory_with_parents (null); - - if (show_message){ - log_msg(_("Created directory") + ": %s".printf(d)); - } - else{ - log_debug(_("Created directory") + ": %s".printf(d)); - } } return true; } catch (Error e) { log_error (e.message); - log_error(_("Failed to create dir") + ": %s".printf(d)); return false; } } - public bool dir_delete (string dir_path, bool show_message = false){ - /* Recursively deletes directory along with contents */ - + public bool dir_delete (string dir_path) { + log_debug("dir_delete("+dir_path+")"); if (!dir_exists(dir_path)) return true; + File d = File.new_for_path(dir_path); + try { _dir_delete(d); } + catch (Error e) { print ("Error: %s\n", e.message); } + return !dir_exists(dir_path); + } - string cmd = "rm -rf '%s'".printf(escape_single_quote(dir_path)); - int status = exec_sync(cmd); - string result = _("Deleted"); - if (status!=0) result = _("Failed to delete file"); - result += ": %s".printf(dir_path); - if (show_message) log_msg(result); else log_debug("dir_delete():"+result); - - return (status == 0); - + private void _dir_delete (File p) throws Error { + //log_debug("_dir_delete("+p.get_path()+")"); + FileEnumerator en = p.enumerate_children ("standard::*",FileQueryInfoFlags.NOFOLLOW_SYMLINKS,null); + FileInfo i = null; + while (((i = en.next_file (null)) != null)) { + //log_debug(i.get_name()); + File n = p.resolve_relative_path (i.get_name()); + if (i.get_file_type() == FileType.DIRECTORY) _dir_delete(n); + else n.delete(); + } + p.delete(); } // misc -------------------- diff --git a/src/Utility/TeeJee.Misc.vala b/src/Utility/TeeJee.Misc.vala index 2407b1d2..5a0912f3 100644 --- a/src/Utility/TeeJee.Misc.vala +++ b/src/Utility/TeeJee.Misc.vala @@ -31,128 +31,48 @@ namespace TeeJee.Misc { using TeeJee.ProcessHelper; // timestamp ---------------- - - public string timestamp (bool show_millis = false){ - /* Returns a formatted timestamp string */ - - // NOTE: format() does not support milliseconds + public string timestamp (bool show_millis = false) { DateTime now = new GLib.DateTime.now_local(); - - if (show_millis){ + + if (show_millis) { var msec = now.get_microsecond () / 1000; return "%s.%03d".printf(now.format("%H:%M:%S"), msec); } - else{ + else { return now.format ("%H:%M:%S"); } } - public string timestamp_numeric (){ - - /* Returns a numeric timestamp string */ - + public string timestamp_numeric () { return "%ld".printf((long) time_t ()); } - public string timestamp_for_path (){ - - /* Returns a formatted timestamp string */ - - Time t = Time.local (time_t ()); - return t.format ("%Y-%d-%m_%H-%M-%S"); - } - // string formatting ------------------------------------------------- - public string format_date(DateTime date){ - return date.format ("%Y-%m-%d %H:%M"); - } - - public string format_date_12_hour(DateTime date){ - return date.format ("%Y-%m-%d %I:%M %p"); - } - - public string format_duration (long millis){ - - /* Converts time in milliseconds to format '00:00:00.0' */ - - double time = millis / 1000.0; // time in seconds - - double hr = Math.floor(time / (60.0 * 60)); - time = time - (hr * 60 * 60); - double min = Math.floor(time / 60.0); - time = time - (min * 60); - double sec = Math.floor(time); - - return "%02.0lf:%02.0lf:%02.0lf".printf (hr, min, sec); - } - - public string format_time_left(int64 millis){ + public string format_time_left(int64 millis) { double mins = (millis * 1.0) / 60000; double secs = ((millis * 1.0) % 60000) / 1000; string txt = ""; - if (mins >= 1){ - txt += "%.0fm ".printf(mins); - } + if (mins >= 1) txt += "%.0fm ".printf(mins); txt += "%.0fs".printf(secs); return txt; } - - public double parse_time (string time){ - /* Converts time in format '00:00:00.0' to milliseconds */ - - string[] arr = time.split (":"); - double millis = 0; - if (arr.length >= 3){ - millis += double.parse(arr[0]) * 60 * 60; - millis += double.parse(arr[1]) * 60; - millis += double.parse(arr[2]); - } - return millis; - } - - public string string_replace(string str, string search, string replacement, int count = -1){ - string[] arr = str.split(search); - string new_txt = ""; - bool first = true; - - foreach(string part in arr){ - if (first){ - new_txt += part; - } - else{ - if (count == 0){ - new_txt += search; - new_txt += part; - } - else{ - new_txt += replacement; - new_txt += part; - count--; - } - } - first = false; - } - - return new_txt; - } - - public string escape_html(string html, bool pango_markup = true){ + public string escape_html(string html, bool pango_markup = true) { string txt = html; - if (pango_markup){ + if (pango_markup) { txt = txt .replace("\\u00", "") .replace("\\x" , ""); } - else{ + else { txt = txt - .replace(" ", " "); //pango markup throws an error with   + .replace(" ", " "); // pango markup throws an error with   } - + txt = txt .replace("&" , "&") .replace("\"", """) @@ -163,81 +83,14 @@ namespace TeeJee.Misc { return txt; } - public string unescape_html(string html){ - return html - .replace("&","&") - .replace(""","\"") - //.replace(" "," ") //pango markup throws an error with   - .replace("<","<") - .replace(">",">") - ; - } - - public string uri_encode(string path, bool encode_forward_slash){ - string uri = Uri.escape_string(path); - if (!encode_forward_slash){ - uri = uri.replace("%2F","/"); - } - return uri; - } - - public string uri_decode(string path){ + public string uri_decode(string path) { return Uri.unescape_string(path); } - public DateTime datetime_from_string (string date_time_string){ - - /* Converts date time string to DateTime - * - * Supported inputs: - * 'yyyy-MM-dd' - * 'yyyy-MM-dd HH' - * 'yyyy-MM-dd HH:mm' - * 'yyyy-MM-dd HH:mm:ss' - * */ - - string[] arr = date_time_string.replace(":"," ").replace("-"," ").strip().split(" "); - - int year = (arr.length >= 3) ? int.parse(arr[0]) : 0; - int month = (arr.length >= 3) ? int.parse(arr[1]) : 0; - int day = (arr.length >= 3) ? int.parse(arr[2]) : 0; - int hour = (arr.length >= 4) ? int.parse(arr[3]) : 0; - int min = (arr.length >= 5) ? int.parse(arr[4]) : 0; - int sec = (arr.length >= 6) ? int.parse(arr[5]) : 0; - - return new DateTime.utc(year,month,day,hour,min,sec); - } - - public string break_string_by_word(string input_text){ - string text = ""; - string line = ""; - foreach(string part in input_text.split(" ")){ - line += part + " "; - if (line.length > 50){ - text += line.strip() + "\n"; - line = ""; - } - } - if (line.length > 0){ - text += line; - } - if (text.has_suffix("\n")){ - text = text[0:text.length-1].strip(); - } - return text; - } - - public string[] array_concat(string[] a, string[] b){ - string[] c = {}; - foreach(string str in a){ c += str; } - foreach(string str in b){ c += str; } - return c; - } - public string random_string(int length = 8, string charset = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz1234567890"){ string random = ""; - for(int i=0;i 0){ - for(int i = 0; i < length_complete; i++){ + if (length_complete > 0) { + for(int i = 0; i < length_complete; i++) { txt += "▓"; } } - if (length_remaining > 0){ - for(int i = 0; i < length_remaining; i++){ + if (length_remaining > 0) { + for(int i = 0; i < length_remaining; i++) { txt += "░"; } } txt += " %0.0f %% ".printf(fraction * 100.0); - - stdout.printf("\r%s".printf(txt)); + stdout.printf("\r%s".printf(txt)); stdout.flush(); } - private static void print_progress_bar_finish(){ + private static void print_progress_bar_finish() { print_progress_bar(1.0); stdout.printf("\n\n"); diff --git a/src/Utility/TeeJee.ProcessHelper.vala b/src/Utility/TeeJee.ProcessHelper.vala index e51b876e..cb125aaa 100644 --- a/src/Utility/TeeJee.ProcessHelper.vala +++ b/src/Utility/TeeJee.ProcessHelper.vala @@ -32,55 +32,55 @@ namespace TeeJee.ProcessHelper{ // execute process --------------------------------- // execute command synchronously - public int exec_sync (string cmd, out string? std_out = null, out string? std_err = null){ + public int exec_sync (string cmd, out string? std_out = null, out string? std_err = null) { try { int status; Process.spawn_command_line_sync (cmd, out std_out, out std_err, out status); return status; } - catch (Error e){ + catch (Error e) { log_error (e.message); return -1; } } // 20200510 bkw - execute command without waiting - public void exec_async (string cmd){ - try {Process.spawn_command_line_async (cmd);} - catch (SpawnError e) {log_error (e.message);} + public void exec_async (string cmd) { + try { Process.spawn_command_line_async (cmd); } + catch (SpawnError e) { log_error (e.message); } } // temp files ------------------------------------- // create a unique temp dir rooted at App.TMP_PREFIX // return full path to created dir - public string create_tmp_dir(){ + public string create_tmp_dir() { string d = App.TMP_PREFIX+"_%s".printf(random_string()); dir_create(d); return d; } // TODO replace with mkstemp - public string get_temp_file_path(string d){ + public string get_temp_file_path(string d) { return d + "/" + timestamp_numeric() + (new Rand()).next_int().to_string(); } // create a temporary bash script // return the script file path - public string? save_bash_script_temp (string cmds, string? file = null){ + public string? save_bash_script_temp (string cmds, string? file = null) { string f = file; - if ((file == null) || (file.length == 0)){ + if ((file == null) || (file.length == 0)) { string t_dir = create_tmp_dir(); f = get_temp_file_path(t_dir) + ".sh"; } + log_debug("save_bash_script_temp("+file+"):"+f); + string s = "#!/bin/bash\n" + cmds + "\n"; - log_debug("save_bash_script_temp("+file+"):"+f); - - if(file_write(f,s)){ + if (file_write(f,s)) { GLib.FileUtils.chmod (f, 0755); return f; } @@ -90,7 +90,7 @@ namespace TeeJee.ProcessHelper{ // find process ------------------------------- // dep: ps TODO: Rewrite using /proc - public bool process_is_running(long pid){ + public bool process_is_running(long pid) { /* Checks if given process is running */ @@ -112,7 +112,7 @@ namespace TeeJee.ProcessHelper{ } // dep: ps TODO: Rewrite using /proc - public int[] get_process_children (Pid parent_pid){ + public int[] get_process_children (Pid parent_pid) { /* Returns the list of child processes spawned by given process */ @@ -123,7 +123,7 @@ namespace TeeJee.ProcessHelper{ int[] procList = {}; string[] arr; - foreach (string line in std_out.split ("\n")){ + foreach (string line in std_out.split ("\n")) { arr = line.strip().split (" "); if (arr.length < 1) { continue; } @@ -139,7 +139,7 @@ namespace TeeJee.ProcessHelper{ // manage process --------------------------------- - public void process_quit(Pid process_pid, bool killChildren = true){ + public void process_quit(Pid process_pid, bool killChildren = true) { /* Kills specified process and its children (optional). * Sends signal SIGTERM to the process to allow it to quit gracefully. @@ -153,9 +153,9 @@ namespace TeeJee.ProcessHelper{ Posix.kill (process_pid, Posix.SIGTERM); #endif - if (killChildren){ + if (killChildren) { Pid childPid; - foreach (long pid in child_pids){ + foreach (long pid in child_pids) { childPid = (Pid) pid; #if VALA_0_40 Posix.kill (childPid, Posix.Signal.TERM); From 8f7ab8e30fdcbcc6819be53d698774fb91ca690a Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Wed, 8 Mar 2023 04:00:21 -0500 Subject: [PATCH 245/567] 1.1.2 --- .deb_build_number.mak | 2 +- BRANDING.mak | 2 +- README.md | 5 +++++ debian/changelog | 12 ++++++++++++ 4 files changed, 19 insertions(+), 2 deletions(-) diff --git a/.deb_build_number.mak b/.deb_build_number.mak index 57de583a..efb08b95 100644 --- a/.deb_build_number.mak +++ b/.deb_build_number.mak @@ -1,3 +1,3 @@ # This file is generated by Makefile "make deb_build_number" -DEB_PKG_VERSION := 1.1.1 +DEB_PKG_VERSION := 1.1.2 DEB_BUILD_NUMBER := 0001 diff --git a/BRANDING.mak b/BRANDING.mak index fdb246be..f2439109 100644 --- a/BRANDING.mak +++ b/BRANDING.mak @@ -3,7 +3,7 @@ VERSION_MAJOR = 1 VERSION_MINOR = 1 -VERSION_MICRO = 1 +VERSION_MICRO = 2 BRANDING_SHORTNAME = mainline BRANDING_LONGNAME = Ubuntu Mainline Kernel Installer BRANDING_AUTHORNAME = Brian K. White diff --git a/README.md b/README.md index 3b49204a..8696674a 100644 --- a/README.md +++ b/README.md @@ -49,10 +49,14 @@ mainline-gtk * Kernel versions 5.15.7+ and libssl3 -> [Install libssl3](../../wiki/Install-libssl3) ### About +Written using Vala and GTK3. + mainline is a fork of [ukuu](https://github.com/teejee2008/ukuu) The original author stopped maintaining the original GPL version of ukuu and switched to a [paid license](https://teejeetech.in/tag/ukuu/) for future versions. ### Enhancements / Deviations from the original author's final GPL version +* (from [stevenpowerd](https://github.com/stevenpowered/ukuu)) Options controlling the internet connection check +* (from [cloyce](https://github.com/cloyce/ukuu)) Option to include or hide pre-release kernels * Changed name from "ukuu" to "mainline" * Removed all GRUB options * Removed all donate buttons, links, dialogs @@ -62,4 +66,5 @@ The original author stopped maintaining the original GPL version of ukuu and swi ### TODO & WIP * Make the notification bg process detect when the user logs off and exit itself. +* Save & restore window dimensions. * Move the notification/dbus code into the app and make an "applet mode" diff --git a/debian/changelog b/debian/changelog index 430e2875..16ac926d 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,15 @@ +mainline (1.1.2) unstable; urgency=medium + + * dir_delete() replace system("rm -rf ...") with native code + * uninstall-old look at latest installed version instead of currently running version + * change the logic for determining the oldest version to display. + threshold_major = whechever is lower: latest_available-show_prev_majors or oldest_installed + + So you can keep show_previous_N_majors set at 0 to show only the most recent kernels by default, + yet still have access to all the kernels from your oldest installed kernel and up. + + -- Brian K. White Wed, 08 Mar 2023 03:51:23 -0500 + mainline (1.1.1) unstable; urgency=medium * replaced deprecated Gtk.show_uri() and xdg_open() with new uri_open() From 13ced04ef1743ccf33dcf700b41c9a6f12d0ad1a Mon Sep 17 00:00:00 2001 From: "Brian K. White" <54458165+bkw777@users.noreply.github.com> Date: Wed, 8 Mar 2023 04:17:49 -0500 Subject: [PATCH 246/567] Update README.md --- README.md | 5 ----- 1 file changed, 5 deletions(-) diff --git a/README.md b/README.md index 8696674a..3b49204a 100644 --- a/README.md +++ b/README.md @@ -49,14 +49,10 @@ mainline-gtk * Kernel versions 5.15.7+ and libssl3 -> [Install libssl3](../../wiki/Install-libssl3) ### About -Written using Vala and GTK3. - mainline is a fork of [ukuu](https://github.com/teejee2008/ukuu) The original author stopped maintaining the original GPL version of ukuu and switched to a [paid license](https://teejeetech.in/tag/ukuu/) for future versions. ### Enhancements / Deviations from the original author's final GPL version -* (from [stevenpowerd](https://github.com/stevenpowered/ukuu)) Options controlling the internet connection check -* (from [cloyce](https://github.com/cloyce/ukuu)) Option to include or hide pre-release kernels * Changed name from "ukuu" to "mainline" * Removed all GRUB options * Removed all donate buttons, links, dialogs @@ -66,5 +62,4 @@ The original author stopped maintaining the original GPL version of ukuu and swi ### TODO & WIP * Make the notification bg process detect when the user logs off and exit itself. -* Save & restore window dimensions. * Move the notification/dbus code into the app and make an "applet mode" From 2dc05f71e9cf15a446fdee174230a5eba82724c2 Mon Sep 17 00:00:00 2001 From: "Brian K. White" <54458165+bkw777@users.noreply.github.com> Date: Wed, 8 Mar 2023 15:50:34 -0500 Subject: [PATCH 247/567] Update README.md --- README.md | 45 +++++++++++++++++++++++++++------------------ 1 file changed, 27 insertions(+), 18 deletions(-) diff --git a/README.md b/README.md index 3b49204a..dac747bd 100644 --- a/README.md +++ b/README.md @@ -1,25 +1,26 @@ ### Ubuntu Mainline Kernel Installer -A tool for installing the latest Linux kernels on Ubuntu-based distributions. +A tool for installing the latest Linux kernels from the [ubuntu mainline ppa](https://kernel.ubuntu.com/~kernel-ppa/mainline/) onto debian-based distributions. ![Main window screenshot](main_window.png) ### Features * Fetches the list of available kernels from the [Ubuntu Mainline PPA](http://kernel.ubuntu.com/~kernel-ppa/mainline/) -* Optionally watches and displays notifications when a new kernel update is available -* Downloads and installs packages automatically * Display available and installed kernels conveniently -* Install/Uninstall kernels from gui * For each kernel, the related packages (headers & modules) are installed or uninstalled at the same time +* Optionally watches and sends desktop notifications when a new kernel update is available -### Install -Minimal .deb packages are in [releases](../../releases/latest). (Usually just a single deb for any given release). +### Not Features +* Care if the kernels run or boot or are compatible with your system beyond the basic plaform arch and whatever dependencies the .deb packages declare and dpkg enforces. The mainline-ppa kernel deb packages are produced with no warranty. When they work, great, when they don't, don't use them. This app intentionally does not even touch a single grub or bootloader file itself. All it does is download .deb packages that the ubuntu kernel team authors, and runs dpkg to install them the same way you would manually. -Better: [cappelikan](https://github.com/cappelikan) maintains a [PPA](https://code.launchpad.net/~cappelikan/+archive/ubuntu/ppa) +### Install +The [PPA](https://code.launchpad.net/~cappelikan/+archive/ubuntu/ppa) is kindly maintained by [cappelikan](https://github.com/cappelikan) ``` sudo add-apt-repository ppa:cappelikan/ppa sudo apt update sudo apt install mainline ``` +There is also usually a single reference .deb package in [releases](../../releases/latest), generated by ```make release_deb``` +but it is usually not current. ### Build ``` @@ -36,30 +37,38 @@ Look for System -> Ubuntu Mainline Kernel Installer in your desktop's Applicatio Otherwise: CLI ``` -mainline --help -mainline +$ mainline --help +$ mainline ``` GUI ``` -mainline-gtk +$ mainline-gtk ``` -### Help -* Secure Boot -> Possibly useful, I have not tried: https://github.com/M-P-P-C/Signing-a-Linux-Kernel-for-Secure-Boot +Note that neither of those commands invoked sudo or pkexec or other su-alike. +The app runs as the user and uses pkexec internally just for the dpkg command. + +### Help / FAQ + +* Secure Boot + Possibly useful, I have not tried: + https://github.com/M-P-P-C/Signing-a-Linux-Kernel-for-Secure-Boot -* Kernel versions 5.15.7+ and libssl3 -> [Install libssl3](../../wiki/Install-libssl3) +* Kernel versions 5.15.7+ and libssl3 + [Install libssl3](../../wiki/Install-libssl3) ### About mainline is a fork of [ukuu](https://github.com/teejee2008/ukuu) -The original author stopped maintaining the original GPL version of ukuu and switched to a [paid license](https://teejeetech.in/tag/ukuu/) for future versions. ### Enhancements / Deviations from the original author's final GPL version * Changed name from "ukuu" to "mainline" * Removed all GRUB options * Removed all donate buttons, links, dialogs -* Remove source cruft -* Better temp and cache directory behavior +* Removed un-related/un-used code +* Better temp and cache management * Better desktop notification behavior +* Slow but ongoing re-writes of most parts ### TODO & WIP -* Make the notification bg process detect when the user logs off and exit itself. -* Move the notification/dbus code into the app and make an "applet mode" +* Make the background process for notifications detect when the user logs out of the desktop session and exit itself +* Move the notification/dbus code from the current shell script into the app and make an "applet mode" +* Combine the gtk and cli apps into one, or, make the gtk app into a pure front-end for the cli app, either way is better than the current mix of overlapping concerns and duplicate logic From dd3915b76e64dafcbbcd7c292f1e4a6e6a423f48 Mon Sep 17 00:00:00 2001 From: "Brian K. White" <54458165+bkw777@users.noreply.github.com> Date: Wed, 8 Mar 2023 17:03:54 -0500 Subject: [PATCH 248/567] Update README.md --- README.md | 60 +++++++++++++++++++++++++++++++++++++++++-------------- 1 file changed, 45 insertions(+), 15 deletions(-) diff --git a/README.md b/README.md index dac747bd..e7e5cc63 100644 --- a/README.md +++ b/README.md @@ -3,11 +3,23 @@ A tool for installing the latest Linux kernels from the [ubuntu mainline ppa](ht ![Main window screenshot](main_window.png) +### About +mainline is a fork of [ukuu](https://github.com/teejee2008/ukuu) + +### Changes +* Changed name from "ukuu" to "mainline" +* Removed all GRUB / bootloader options +* Removed all donate buttons, links, dialogs +* Removed un-related/un-used code +* Better temp and cache management +* Better desktop notification behavior +* Slow but ongoing re-writes of most parts + ### Features -* Fetches the list of available kernels from the [Ubuntu Mainline PPA](http://kernel.ubuntu.com/~kernel-ppa/mainline/) -* Display available and installed kernels conveniently -* For each kernel, the related packages (headers & modules) are installed or uninstalled at the same time -* Optionally watches and sends desktop notifications when a new kernel update is available +* Download the list of available kernels from the [Ubuntu Mainline PPA](http://kernel.ubuntu.com/~kernel-ppa/mainline/) +* Display, install, uninstall, available and installed kernels conveniently, gui and cli +* For each kernel, the related headers & modules packages are automatically grouped and installed or uninstalled at the same time +* Optionally monitor and send desktop notifications when new kernels become available ### Not Features * Care if the kernels run or boot or are compatible with your system beyond the basic plaform arch and whatever dependencies the .deb packages declare and dpkg enforces. The mainline-ppa kernel deb packages are produced with no warranty. When they work, great, when they don't, don't use them. This app intentionally does not even touch a single grub or bootloader file itself. All it does is download .deb packages that the ubuntu kernel team authors, and runs dpkg to install them the same way you would manually. @@ -47,6 +59,32 @@ $ mainline-gtk Note that neither of those commands invoked sudo or pkexec or other su-alike. The app runs as the user and uses pkexec internally just for the dpkg command. +**Install** downloads and installs the selected kernel + +**Uninstall** uninstalls the selected kernel(1) + +**Changes** displays the CHANGES file for the selected kernel + +**PPA** launches your default https:// handler to the web page for the selected kernel +If no kernels are selected (when first launching the app before clicking on any) launches the main page listing all the kernels. + +**Uninstall Old** uninstalls all installed kernels below the latest installed version(1) + +**Reload** deletes, re-downloads, and re-reads the local cached copies of all the index.html's from the mainline-ppa web site, and regenerates the displayed list. +Management of these files has been a problem with this app in the past due to various spaghetti code and permissions issues. +This is much better now, but there can still be occasional glitches from bad downloads or sometimes the upstream contents change after your copy was downloaded. For instance a kernel might be invalid when you happened to first cache it, and then later become valid (failed build that later succeeded), but your local cached info about that kernel doesn't know it, etc. +Normally the app tries not to re-download things as much as possible for speed and annoyance reasons. The main index is always re-downloaded at least once every start-up, but the individual pages for each kernel are cached and never re-downloaded by default, only new/missing ones are downloaded. +That can lead to some files being stale or wrong over time, so, to compensate for that, this button just makes it as convenient as possible to force a full re-load any time you want. + +**Settings** access the [settings](settings.md) dialog to configure various options + +**About** basic info and credits + +**Exit** order pizza + +(1) In all cases the currently running kernel is protected and the app will not uninstall the currently running kernel. +For the single manual uninstall button, the button simply isn't activated. For the cli app if you manually give that version, it will simply ignore it. For uninstall-old, either gui or cli, the currently running kernel is simply skipped over when scanning and building the list of uninstall candidates. + ### Help / FAQ * Secure Boot @@ -56,17 +94,9 @@ The app runs as the user and uses pkexec internally just for the dpkg command. * Kernel versions 5.15.7+ and libssl3 [Install libssl3](../../wiki/Install-libssl3) -### About -mainline is a fork of [ukuu](https://github.com/teejee2008/ukuu) - -### Enhancements / Deviations from the original author's final GPL version -* Changed name from "ukuu" to "mainline" -* Removed all GRUB options -* Removed all donate buttons, links, dialogs -* Removed un-related/un-used code -* Better temp and cache management -* Better desktop notification behavior -* Slow but ongoing re-writes of most parts +* Missing kernels + Failed or incomplete builds for your platform/arch are not included in the list. + If you think the list is missing something, press the "PPA" button to jump to the mainline-ppa web site where the .deb packages come from, and look at the build results for the missing kernel, and you will usually find that it is a failed or incomplete build for your arch, and can not be installed. ### TODO & WIP * Make the background process for notifications detect when the user logs out of the desktop session and exit itself From 756bd2ee6238c9c670f6c3cd56a5342ddd8e6b84 Mon Sep 17 00:00:00 2001 From: Matthaiks <3577122+Matthaiks@users.noreply.github.com> Date: Wed, 8 Mar 2023 23:42:56 +0100 Subject: [PATCH 249/567] Update Polish translation --- po/pl.po | 124 ++++++++++++++++++++++++------------------------------- 1 file changed, 53 insertions(+), 71 deletions(-) diff --git a/po/pl.po b/po/pl.po index e89d95aa..a91a11bc 100644 --- a/po/pl.po +++ b/po/pl.po @@ -2,34 +2,31 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-08 01:01-0500\n" -"PO-Revision-Date: 2021-09-17 10:29+0200\n" -"Last-Translator: Viktor Sokyrko \n" +"POT-Creation-Date: 2023-03-08 01:51-0500\n" +"PO-Revision-Date: 2023-03-08 23:39+0100\n" +"Last-Translator: Matthaiks\n" "Language-Team: Polish\n" "Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Poedit 2.4.2\n" +"X-Generator: Poedit 3.2\n" #: src/Common/LinuxKernel.vala:89 msgid "Distribution" msgstr "Dystrybucja" #: src/Common/LinuxKernel.vala:104 -#, fuzzy msgid "Architecture" -msgstr "Architektura systemu" +msgstr "Architektura" #: src/Common/LinuxKernel.vala:283 -#, fuzzy msgid "Fetching individual kernel indexes..." -msgstr "Pobieranie indeksu..." +msgstr "Pobieranie indywidualnych indeksów jądra..." #: src/Common/LinuxKernel.vala:327 -#, fuzzy msgid "Fetching main index from" -msgstr "Pobieranie indeksu..." +msgstr "Pobieranie głównego indeksu" #: src/Common/LinuxKernel.vala:544 msgid "Could not find running kernel in list!" @@ -37,7 +34,7 @@ msgstr "Nie można znaleźć uruchomionego jądra na liście!" #: src/Common/LinuxKernel.vala:550 msgid "Could not find any kernels to uninstall" -msgstr "Nie udało się odnaleźć żadnych jąder do odinstalowania" +msgstr "Nie można znaleźć żadnych jąder do odinstalowania" #: src/Common/LinuxKernel.vala:559 msgid "The following kernels will be uninstalled:" @@ -45,7 +42,7 @@ msgstr "Następujące jądra zostaną odinstalowane:" #: src/Common/LinuxKernel.vala:563 msgid "Continue ?" -msgstr "Kontynuowac?" +msgstr "Kontynuować?" #: src/Common/LinuxKernel.vala:586 src/Console/AppConsole.vala:298 msgid "Latest update" @@ -53,7 +50,7 @@ msgstr "Najnowsza aktualizacja" #: src/Common/LinuxKernel.vala:597 src/Console/AppConsole.vala:305 msgid "Latest point update" -msgstr "" +msgstr "Najnowsza aktualizacja punktowa" #: src/Common/LinuxKernel.vala:605 src/Console/AppConsole.vala:310 #: src/Console/AppConsole.vala:365 @@ -63,7 +60,7 @@ msgstr "Nie znaleziono aktualizacji" #: src/Common/LinuxKernel.vala:615 #, c-format msgid "Install Kernel Version %s ? (y/n): " -msgstr "Instaluj wersję jądra %s ? (t/n): " +msgstr "Zainstalować wersję jądra %s? (t/n): " #: src/Common/LinuxKernel.vala:838 msgid "Packages Available" @@ -83,12 +80,12 @@ msgstr "Dostępne jądra" #: src/Common/LinuxKernel.vala:927 src/Gtk/MainWindow.vala:151 msgid "Installed" -msgstr "Zainstalowany" +msgstr "Zainstalowane" #: src/Common/LinuxKernel.vala:927 src/Gtk/MainWindow.vala:151 #: src/Gtk/MainWindow.vala:523 src/Gtk/MainWindow.vala:537 msgid "Running" -msgstr "Uruchomiony" +msgstr "Uruchomione" #: src/Common/LinuxKernel.vala:964 msgid "Downloading" @@ -107,40 +104,36 @@ msgid "This kernel is already installed." msgstr "To jądro jest już zainstalowane." #: src/Common/LinuxKernel.vala:1038 -#, fuzzy msgid "Uninstalling selected kernels" -msgstr "Odinstaluj wybrane jądro" +msgstr "Odinstalowanie wybranych jąder" #: src/Common/LinuxKernel.vala:1044 msgid "requested" -msgstr "" +msgstr "zażądane" #: src/Common/LinuxKernel.vala:1047 msgid "skipping the currently booted kernel" -msgstr "" +msgstr "pominięcie aktualnie uruchomionego jądra" #: src/Common/LinuxKernel.vala:1063 msgid "found" -msgstr "" +msgstr "znalezione" #: src/Common/LinuxKernel.vala:1066 -#, fuzzy msgid "No packages to un-install!" -msgstr "Pakiety zainstalowane" +msgstr "Brak pakietów do odinstalowania!" #: src/Common/Main.vala:259 -#, fuzzy msgid "Called from" -msgstr "Wywołane z" +msgstr "Wywołano z" #: src/Common/Main.vala:293 msgid "Notifications are disabled" msgstr "Powiadomienia są wyłączone" #: src/Common/Main.vala:332 src/Gtk/MainWindow.vala:638 -#, fuzzy msgid "Can not reach" -msgstr "Nie udało się odczytać pliku" +msgstr "Nie można dotrzeć" #: src/Common/Package.vala:129 src/Common/Package.vala:194 #, c-format @@ -157,11 +150,11 @@ msgstr "Polecenia" #: src/Console/AppConsole.vala:72 msgid "Check for kernel updates" -msgstr "Sprawdź aktualizacje jądra" +msgstr "Sprawdź nowe wersje jądra" #: src/Console/AppConsole.vala:73 msgid "Check for kernel updates and notify current user" -msgstr "Sprawdź aktualizacje jądra i powiadom bieżącego użytkownika" +msgstr "Sprawdź nowe wersje jądra i powiadom bieżącego użytkownika" #: src/Console/AppConsole.vala:74 msgid "List all available mainline kernels" @@ -172,13 +165,12 @@ msgid "List installed kernels" msgstr "Wyświetl listę zainstalowanych jąder" #: src/Console/AppConsole.vala:76 -#, fuzzy msgid "Install latest mainline kernel" -msgstr "Zainstaluj wybrane jądro" +msgstr "Zainstaluj najnowsze jądro" #: src/Console/AppConsole.vala:77 msgid "Install latest point update for current series" -msgstr "" +msgstr "Zainstaluj najnowszą aktualizację punktową dla bieżącej serii" #: src/Console/AppConsole.vala:78 msgid "Install specified mainline kernel" @@ -198,7 +190,7 @@ msgstr "Pobierz wybrane jądra" #: src/Console/AppConsole.vala:82 msgid "Delete cached info about available kernels" -msgstr "" +msgstr "Usuń informacje z pamięci podręcznej o dostępnych jądrach" #: src/Console/AppConsole.vala:84 src/Gtk/AppGtk.vala:143 msgid "Options" @@ -209,26 +201,22 @@ msgid "Include unstable and RC releases" msgstr "Uwzględnij wydania niestabilne i RC" #: src/Console/AppConsole.vala:87 -#, fuzzy msgid "Exclude unstable and RC releases" -msgstr "Uwzględnij wydania niestabilne i RC" +msgstr "Wyklucz wersje niestabilne i RC" #: src/Console/AppConsole.vala:88 msgid "Enable verbose debugging output" -msgstr "Włącz szczegółowe wyjście debugowania" +msgstr "Włącz szczegółowe dane wyjściowe debugowania" #: src/Console/AppConsole.vala:89 -#, fuzzy msgid "Assume Yes for all prompts (non-interactive mode)" -msgstr "Załóż Tak dla wszystkich monitów (tryb nieinteraktywny) " +msgstr "Przyjmij Tak dla wszystkich monitów (tryb nieinteraktywny)" #: src/Console/AppConsole.vala:92 -#, fuzzy msgid "A version string taken from the output of --list" -msgstr "Ciąg wersji pobrany z wyjścia --list" +msgstr "Ciąg wersji pobrany z danych wyjściowych --list" #: src/Console/AppConsole.vala:93 -#, fuzzy msgid "" "One or more version strings (comma-separated) taken from the output of --list" msgstr "" @@ -246,11 +234,11 @@ msgstr "Uruchom" #: src/Console/AppConsole.vala:175 msgid "to list all options" -msgstr "żeby pokazać wszystkie opcje" +msgstr "do wyświetlenia wszystkich opcji" #: src/Console/AppConsole.vala:227 src/Console/AppConsole.vala:263 msgid "No kernels specified" -msgstr "Nie podano żadnego jądra" +msgstr "Nie wybrano jąder" #: src/Console/AppConsole.vala:233 msgid "Multiple kernels selected for installation. Select only one." @@ -261,17 +249,16 @@ msgid "Could not find requested version" msgstr "Nie można odnaleźć żądanej wersji" #: src/Console/AppConsole.vala:255 -#, fuzzy msgid "and use a version string listed in first column" -msgstr "i użyj ciągu wersji wymienionego w pierwszej kolumnie" +msgstr "i użyć numeru wersji wymienionego w pierwszej kolumnie" #: src/Console/AppConsole.vala:283 msgid "Command not specified" -msgstr "Nie podano polecenia" +msgstr "Nie określono polecenia" #: src/Console/AppConsole.vala:284 msgid "to list all commands" -msgstr "żeby pokazać wszystkie polecenia" +msgstr "do wyświetlenia wszystkich poleceń" #: src/Console/AppConsole.vala:338 msgid "Show" @@ -280,7 +267,7 @@ msgstr "Pokaż" #: src/Console/AppConsole.vala:343 src/Console/AppConsole.vala:355 #, c-format msgid "Kernel %s Available" -msgstr "Dostępne jądro %s" +msgstr "Dostępne %s jądra" #: src/Console/AppConsole.vala:345 src/Console/AppConsole.vala:357 #: src/Gtk/MainWindow.vala:282 @@ -288,9 +275,8 @@ msgid "Install" msgstr "Zainstaluj" #: src/Gtk/AppGtk.vala:141 -#, fuzzy msgid "options" -msgstr "Opcje" +msgstr "opcje" #: src/Gtk/AppGtk.vala:145 msgid "Print debug information" @@ -318,15 +304,15 @@ msgstr "Zmiany" #: src/Gtk/MainWindow.vala:323 msgid "Uninstall Old" -msgstr "Odinstaluj Stare" +msgstr "Odinstaluj stare" #: src/Gtk/MainWindow.vala:324 msgid "Uninstall kernels older than running kernel" -msgstr "Odinstaluj jądra starsze niż uruchomione" +msgstr "Odinstaluj jądra starsze niż działające jądro" #: src/Gtk/MainWindow.vala:329 msgid "Reload" -msgstr "" +msgstr "Załaduj ponownie" #: src/Gtk/MainWindow.vala:334 src/Gtk/SettingsDialog.vala:50 msgid "Settings" @@ -338,7 +324,7 @@ msgstr "O programie" #: src/Gtk/MainWindow.vala:344 msgid "Exit" -msgstr "" +msgstr "Wyjdź" #: src/Gtk/MainWindow.vala:412 msgid "Kernel upgrade utility for Ubuntu-based distributions" @@ -346,18 +332,16 @@ msgstr "Narzędzie uaktualniania jądra dla dystrybucji z rodziny Ubuntu" #: src/Gtk/MainWindow.vala:413 msgid "Forked" -msgstr "" +msgstr "Sforkowane" #: src/Gtk/MainWindow.vala:413 msgid "Original" -msgstr "" +msgstr "Oryginalne" #: src/Gtk/MainWindow.vala:451 msgid "Updating cached indexes" -msgstr "" +msgstr "Aktualizowanie indeksów w pamięci podręcznej" -# Should be a single word at the end of the line. -# For example: "5.13.16 available" #: src/Gtk/MainWindow.vala:533 msgid "available" msgstr "dostępne" @@ -365,7 +349,7 @@ msgstr "dostępne" #: src/Gtk/MainWindow.vala:567 src/Gtk/MainWindow.vala:601 #: src/Gtk/MainWindow.vala:629 msgid "DONE" -msgstr "" +msgstr "GOTOWE" #: src/Gtk/ProgressWindow.vala:126 src/Gtk/TerminalWindow.vala:148 msgid "Cancel" @@ -385,7 +369,7 @@ msgstr "Powiadom, jeśli pojawi się wersja punktowa" #: src/Gtk/SettingsDialog.vala:89 msgid "(Allowing intervals in seconds for --debug)" -msgstr "" +msgstr "(Zezwalanie na interwały w sekundach dla --debug)" #: src/Gtk/SettingsDialog.vala:112 msgid "Check every" @@ -393,23 +377,23 @@ msgstr "Sprawdzaj co" #: src/Gtk/SettingsDialog.vala:142 msgid "Hour(s)" -msgstr "Godzin(y)" +msgstr "godziny" #: src/Gtk/SettingsDialog.vala:144 msgid "Day(s)" -msgstr "Dni" +msgstr "dni" #: src/Gtk/SettingsDialog.vala:146 msgid "Week(s)" -msgstr "Tygodni" +msgstr "tygodnie" #: src/Gtk/SettingsDialog.vala:149 msgid "Second(s)" -msgstr "Sekund(a)" +msgstr "sekundy" #: src/Gtk/SettingsDialog.vala:155 msgid "Display" -msgstr "Pokaż" +msgstr "Wyświetl" #: src/Gtk/SettingsDialog.vala:163 msgid "Hide unstable and RC releases" @@ -424,13 +408,12 @@ msgid "Other" msgstr "Inne" #: src/Gtk/SettingsDialog.vala:203 -#, fuzzy msgid "Internet connection timeout in " -msgstr "Limit czasu połączenia z Internetem za" +msgstr "Limit czasu połączenia internetowego w " #: src/Gtk/SettingsDialog.vala:218 msgid "seconds" -msgstr "sekund" +msgstr "sekundach" #: src/Gtk/SettingsDialog.vala:225 msgid "Max concurrent downloads" @@ -469,9 +452,8 @@ msgid "Documenters" msgstr "Dokumentujący" #: src/Utility/Gtk/AboutWindow.vala:346 -#, fuzzy msgid "Third Party Inclusions" -msgstr "Narzędzia osób trzecich" +msgstr "Włączenia stron trzecich" #: src/Utility/Gtk/GtkHelper.vala:49 msgid "Missing Icon" From d055ab4caf30f9158d2797c75540d800ab435a81 Mon Sep 17 00:00:00 2001 From: "Brian K. White" <54458165+bkw777@users.noreply.github.com> Date: Wed, 8 Mar 2023 18:05:14 -0500 Subject: [PATCH 250/567] Create settings.md --- settings.md | 44 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 settings.md diff --git a/settings.md b/settings.md new file mode 100644 index 00000000..bfc473d1 --- /dev/null +++ b/settings.md @@ -0,0 +1,44 @@ +# Settings + +## Notification +\[ \] Notify if a major release is available +\[ \] Notify if a point release is available +Check every \[#\] \[units\] + +Starts a background process that peridodically checks for new kernels and sends a desktop notification if a kernel is available that you don't have installed yet. +The monitor is installed in your desktop autostart folder such that it is started in the background any time you log in. +It is removed by unselecting both checkboxes. + +## Display +\[ \] Hide unstable and RC releases +Excludes less stable more bleeding edge -rc kernels from the list. + +Show N previous major versions \[#\] +Defines a threshold value for the oldest major version to include in the display, as an offset from the whatever the current latest version is. + +The algorithm is essentially this (pseudocode): +threshold_major = min( latest_available - N , oldest_installed ) + +IE, the latest major version available minus N, or the oldest major version you have installed, whichever is lower. + +Generally, you want this setting to just be 0. +It's really only even a configurable option because in the past it was dumber, and you needed the option to set it to 1 or 2 in order to cover the times when each new major version gets it's first viable kernel, but you still need to see the more new point releases of the previous major version for a while, and you also just in general usually want to have access to all newer point releases for any (mainline) kernel that you have installed, whatever they are. +Now, with this threshold_major rule, and N=0, you get the following behavior: + +Most of the time, you will have one or more kernels installed of the same major version as whatever is current at the time, and the list will only include the kernels from that one latest major version. It always includes all point releases for any given major version. +So today, that means you have a 6.2.2 installed and the list shows all of the 6.x.x versions. + +Then 7.0.0 comes out. + +All else being equal, latest=7 and N=0 and 7-0=0 means on that day the list will only show 7.0.0 and nothing else except whatever ones you actually have installed. + +But there is also 6.3.0 available you might have wanted to use, but you never got a chance to see it, and never will get a chace to see 6.3.1 etc. +So the above rule just adds another element to also consider whatever is the oldest mainline kernel you have installed, and set the threshold to that major version, or to latest-N, whichever is lower. + +On the other hand, if you explicitly *want* to see a bigger list including older kerneles, even if you don't have any of those installed, you can set N to 1 or greater, and you can get all the 6.x, all the 5.x, or more. + +**Other** +Internet connection timeout in \[##\] seconds +Max concurrent downloads \[#\] + +These correspond to options for aria2c used to download index.html and deb package files in the background. From 4b1cccc4206000bdd317e2d865a41465cce65555 Mon Sep 17 00:00:00 2001 From: "Brian K. White" <54458165+bkw777@users.noreply.github.com> Date: Wed, 8 Mar 2023 18:20:39 -0500 Subject: [PATCH 251/567] Update settings.md --- settings.md | 18 ++++++++---------- 1 file changed, 8 insertions(+), 10 deletions(-) diff --git a/settings.md b/settings.md index bfc473d1..7ec7e026 100644 --- a/settings.md +++ b/settings.md @@ -1,19 +1,18 @@ # Settings ## Notification -\[ \] Notify if a major release is available -\[ \] Notify if a point release is available -Check every \[#\] \[units\] - +**\[ \] Notify if a major release is available** +**\[ \] Notify if a point release is available** +**Check every \[#\] \[units\]** Starts a background process that peridodically checks for new kernels and sends a desktop notification if a kernel is available that you don't have installed yet. The monitor is installed in your desktop autostart folder such that it is started in the background any time you log in. It is removed by unselecting both checkboxes. ## Display -\[ \] Hide unstable and RC releases +**\[ \] Hide unstable and RC releases** Excludes less stable more bleeding edge -rc kernels from the list. -Show N previous major versions \[#\] +**Show N previous major versions \[#\]** Defines a threshold value for the oldest major version to include in the display, as an offset from the whatever the current latest version is. The algorithm is essentially this (pseudocode): @@ -37,8 +36,7 @@ So the above rule just adds another element to also consider whatever is the old On the other hand, if you explicitly *want* to see a bigger list including older kerneles, even if you don't have any of those installed, you can set N to 1 or greater, and you can get all the 6.x, all the 5.x, or more. -**Other** -Internet connection timeout in \[##\] seconds -Max concurrent downloads \[#\] - +## Other +**Internet connection timeout in \[##\] seconds** +**Max concurrent downloads \[#\]** These correspond to options for aria2c used to download index.html and deb package files in the background. From 505d86b197123bfe31f8e4b1fea7cc4b066dcc5f Mon Sep 17 00:00:00 2001 From: "Brian K. White" <54458165+bkw777@users.noreply.github.com> Date: Wed, 8 Mar 2023 18:25:24 -0500 Subject: [PATCH 252/567] Update settings.md --- settings.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/settings.md b/settings.md index 7ec7e026..06d4bebd 100644 --- a/settings.md +++ b/settings.md @@ -29,7 +29,7 @@ So today, that means you have a 6.2.2 installed and the list shows all of the 6. Then 7.0.0 comes out. -All else being equal, latest=7 and N=0 and 7-0=0 means on that day the list will only show 7.0.0 and nothing else except whatever ones you actually have installed. +All else being equal, latest=7 and N=0 and 7-0=7 means on that day the list will only show 7.0.0 and nothing else except whatever ones you actually have installed. But there is also 6.3.0 available you might have wanted to use, but you never got a chance to see it, and never will get a chace to see 6.3.1 etc. So the above rule just adds another element to also consider whatever is the oldest mainline kernel you have installed, and set the threshold to that major version, or to latest-N, whichever is lower. From 4d5e8b6296b155b0c2f02d8378657dfbf17eb3fd Mon Sep 17 00:00:00 2001 From: "Brian K. White" <54458165+bkw777@users.noreply.github.com> Date: Wed, 8 Mar 2023 18:31:31 -0500 Subject: [PATCH 253/567] Update settings.md --- settings.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/settings.md b/settings.md index 06d4bebd..db55bc6c 100644 --- a/settings.md +++ b/settings.md @@ -34,6 +34,8 @@ All else being equal, latest=7 and N=0 and 7-0=7 means on that day the list will But there is also 6.3.0 available you might have wanted to use, but you never got a chance to see it, and never will get a chace to see 6.3.1 etc. So the above rule just adds another element to also consider whatever is the oldest mainline kernel you have installed, and set the threshold to that major version, or to latest-N, whichever is lower. +So for a while, as long as you have any 6.x installed, the list will include all of the 6.x.x and all of the 7.x.x. The list will still be not too slow for a while when there are not many 7.x.x yet, and later when you uninstall your last 6.x naturally, all the 6.x.x will go away then automatically, and you'll have only 7.x.x. + On the other hand, if you explicitly *want* to see a bigger list including older kerneles, even if you don't have any of those installed, you can set N to 1 or greater, and you can get all the 6.x, all the 5.x, or more. ## Other From 6ea22eed1b5b0d48d416add80b00966a55b9edfd Mon Sep 17 00:00:00 2001 From: "Brian K. White" <54458165+bkw777@users.noreply.github.com> Date: Wed, 8 Mar 2023 18:39:03 -0500 Subject: [PATCH 254/567] Update settings.md --- settings.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/settings.md b/settings.md index db55bc6c..d0471881 100644 --- a/settings.md +++ b/settings.md @@ -29,7 +29,7 @@ So today, that means you have a 6.2.2 installed and the list shows all of the 6. Then 7.0.0 comes out. -All else being equal, latest=7 and N=0 and 7-0=7 means on that day the list will only show 7.0.0 and nothing else except whatever ones you actually have installed. +All else being equal, latest=7 and N=0 and 7-0=7 means on that day the list would only show 7.0.0 and nothing else except whatever individual ones you actually have installed. But there is also 6.3.0 available you might have wanted to use, but you never got a chance to see it, and never will get a chace to see 6.3.1 etc. So the above rule just adds another element to also consider whatever is the oldest mainline kernel you have installed, and set the threshold to that major version, or to latest-N, whichever is lower. @@ -38,6 +38,9 @@ So for a while, as long as you have any 6.x installed, the list will include all On the other hand, if you explicitly *want* to see a bigger list including older kerneles, even if you don't have any of those installed, you can set N to 1 or greater, and you can get all the 6.x, all the 5.x, or more. +Distro kernels are not factored. +If the latest mainline available are 7.x and 6.x, and you also have a 5.x installed from ubuntu, the threshold is not set to 5.x. The purpose of setting the floor at your oldest installed kernel is so that you can see any *mainline* point releases available that might exist after your installed versions, so that you could still update to the latest 6.x even after 7.x becomes available, without having to deal with loading two full generations all the time if you don't actually need the previous generation. The distro provided kernels are unrelated. They are only even displayed in the list for completeness and for the convenience of un-installing. + ## Other **Internet connection timeout in \[##\] seconds** **Max concurrent downloads \[#\]** From 89cd9ebb08bfe7efddb282ec0d608d6cb884e125 Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Wed, 8 Mar 2023 23:58:29 -0500 Subject: [PATCH 255/567] remove un-used code --- TRANSLATORS | 2 +- po/de.po | 4 +- po/el.po | 4 +- po/es.po | 4 +- po/fr.po | 4 +- po/hr.po | 4 +- po/it.po | 4 +- po/ko.po | 4 +- po/messages.pot | 6 +- po/nl.po | 4 +- po/pl.po | 4 +- po/ru.po | 4 +- po/sv.po | 4 +- po/tr.po | 4 +- po/uk.po | 4 +- src/Common/Package.vala | 119 +++---------------------------- src/Utility/Gtk/AboutWindow.vala | 6 +- 17 files changed, 43 insertions(+), 142 deletions(-) diff --git a/TRANSLATORS b/TRANSLATORS index 8945dc18..d86e240f 100644 --- a/TRANSLATORS +++ b/TRANSLATORS @@ -6,7 +6,7 @@ hr: gogo it: Albano Battistella ko: Kevin Kim nl: Heimen Stoffels -pl: Viktor Sokyrko +pl: Matthaiks ru: Faust3000 (Original) | Danik2343 (Update Transaltio sv: Åke Engelbrektson tr: Sabri Ünal diff --git a/po/de.po b/po/de.po index 06ff5bb5..bf1f1be0 100644 --- a/po/de.po +++ b/po/de.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-08 01:01-0500\n" +"POT-Creation-Date: 2023-03-08 23:46-0500\n" "PO-Revision-Date: 2023-02-20 18:40+0100\n" "Last-Translator: Marvin Meysel \n" "Language-Team: German\n" @@ -141,7 +141,7 @@ msgstr "Benachrichtigungen sind deaktiviert" msgid "Can not reach" msgstr "Fehler beim lesen der Datei" -#: src/Common/Package.vala:129 src/Common/Package.vala:194 +#: src/Common/Package.vala:95 #, c-format msgid "File not found: %s" msgstr "Datei nicht gefunden: %s" diff --git a/po/el.po b/po/el.po index fe300596..3069ca5f 100644 --- a/po/el.po +++ b/po/el.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-08 01:01-0500\n" +"POT-Creation-Date: 2023-03-08 23:46-0500\n" "PO-Revision-Date: 2023-01-10 02:03-0600\n" "Last-Translator: Vasilis Kosmidis \n" "Language-Team: Greek\n" @@ -142,7 +142,7 @@ msgstr "Οι ειδοποιήσεις είναι απενεργοποιημέν msgid "Can not reach" msgstr "Αποτυχία ανάγνωσης του αρχείου" -#: src/Common/Package.vala:129 src/Common/Package.vala:194 +#: src/Common/Package.vala:95 #, c-format msgid "File not found: %s" msgstr "Το αρχείο δεν βρέθηκε: %s" diff --git a/po/es.po b/po/es.po index 283d0c5f..333f696d 100644 --- a/po/es.po +++ b/po/es.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-08 01:01-0500\n" +"POT-Creation-Date: 2023-03-08 23:46-0500\n" "PO-Revision-Date: 2018-01-03 02:03-0600\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish\n" @@ -144,7 +144,7 @@ msgstr "Notificación" msgid "Can not reach" msgstr "Falló la lectura del archivo" -#: src/Common/Package.vala:129 src/Common/Package.vala:194 +#: src/Common/Package.vala:95 #, c-format msgid "File not found: %s" msgstr "No se encontró el archivo: %s" diff --git a/po/fr.po b/po/fr.po index e64ffc96..89d51c68 100644 --- a/po/fr.po +++ b/po/fr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-08 01:01-0500\n" +"POT-Creation-Date: 2023-03-08 23:46-0500\n" "PO-Revision-Date: 2018-08-05 15:50+0200\n" "Last-Translator: Yolateng0 \n" "Language-Team: French\n" @@ -143,7 +143,7 @@ msgstr "Les notifications sont désactivées" msgid "Can not reach" msgstr "Impossible de lire le fichier" -#: src/Common/Package.vala:129 src/Common/Package.vala:194 +#: src/Common/Package.vala:95 #, c-format msgid "File not found: %s" msgstr "Fichier non trouvé: %s" diff --git a/po/hr.po b/po/hr.po index e2959b06..139693e2 100644 --- a/po/hr.po +++ b/po/hr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-08 01:01-0500\n" +"POT-Creation-Date: 2023-03-08 23:46-0500\n" "PO-Revision-Date: 2022-09-22 12:13+0200\n" "Last-Translator: gogo \n" "Language-Team: Croatian\n" @@ -141,7 +141,7 @@ msgstr "Obavijesti su onemogućene" msgid "Can not reach" msgstr "Neuspjelo čitanje datoteke" -#: src/Common/Package.vala:129 src/Common/Package.vala:194 +#: src/Common/Package.vala:95 #, c-format msgid "File not found: %s" msgstr "Datoteka nije pronađena: %s" diff --git a/po/it.po b/po/it.po index 4c3b9e51..fd97dffb 100644 --- a/po/it.po +++ b/po/it.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline 1.0.15\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-08 01:01-0500\n" +"POT-Creation-Date: 2023-03-08 23:46-0500\n" "PO-Revision-Date: 2020-08-22 15:35+0100\n" "Last-Translator: Albano Battistella \n" "Language-Team: Italian\n" @@ -139,7 +139,7 @@ msgstr "Le notifiche sono disabilitate" msgid "Can not reach" msgstr "Impossibile leggere il file" -#: src/Common/Package.vala:129 src/Common/Package.vala:194 +#: src/Common/Package.vala:95 #, c-format msgid "File not found: %s" msgstr "File non trovato: %s" diff --git a/po/ko.po b/po/ko.po index 069415fa..cba900da 100644 --- a/po/ko.po +++ b/po/ko.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline 1.0.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-08 01:01-0500\n" +"POT-Creation-Date: 2023-03-08 23:46-0500\n" "PO-Revision-Date: 2022-09-28 11:48+0900\n" "Last-Translator: Kevin Kim \n" "Language-Team: Korean\n" @@ -141,7 +141,7 @@ msgstr "알림이 비활성화 되었습니다" msgid "Can not reach" msgstr "파일 읽기를 실패했습니다" -#: src/Common/Package.vala:129 src/Common/Package.vala:194 +#: src/Common/Package.vala:95 #, c-format msgid "File not found: %s" msgstr "%s 파일을 찾을 수 없습니다" diff --git a/po/messages.pot b/po/messages.pot index 995d6753..751ca692 100644 --- a/po/messages.pot +++ b/po/messages.pot @@ -6,9 +6,9 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: mainline 1.1.1\n" +"Project-Id-Version: mainline 1.1.2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-08 01:51-0500\n" +"POT-Creation-Date: 2023-03-08 23:46-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -140,7 +140,7 @@ msgstr "" msgid "Can not reach" msgstr "" -#: src/Common/Package.vala:129 src/Common/Package.vala:194 +#: src/Common/Package.vala:95 #, c-format msgid "File not found: %s" msgstr "" diff --git a/po/nl.po b/po/nl.po index 96ece0fa..d26d3df2 100644 --- a/po/nl.po +++ b/po/nl.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-08 01:01-0500\n" +"POT-Creation-Date: 2023-03-08 23:46-0500\n" "PO-Revision-Date: 2020-08-23 13:55+0200\n" "Last-Translator: Heimen Stoffels \n" "Language-Team: Dutch (Netherlands)\n" @@ -143,7 +143,7 @@ msgstr "Meldingen zijn uitgeschakeld" msgid "Can not reach" msgstr "Het bestand kan niet worden uitgelezen" -#: src/Common/Package.vala:129 src/Common/Package.vala:194 +#: src/Common/Package.vala:95 #, c-format msgid "File not found: %s" msgstr "Bestand niet gevonden: %s" diff --git a/po/pl.po b/po/pl.po index a91a11bc..bd679f69 100644 --- a/po/pl.po +++ b/po/pl.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-08 01:51-0500\n" +"POT-Creation-Date: 2023-03-08 23:46-0500\n" "PO-Revision-Date: 2023-03-08 23:39+0100\n" "Last-Translator: Matthaiks\n" "Language-Team: Polish\n" @@ -135,7 +135,7 @@ msgstr "Powiadomienia są wyłączone" msgid "Can not reach" msgstr "Nie można dotrzeć" -#: src/Common/Package.vala:129 src/Common/Package.vala:194 +#: src/Common/Package.vala:95 #, c-format msgid "File not found: %s" msgstr "Nie odnaleziono pliku: %s" diff --git a/po/ru.po b/po/ru.po index 72f52373..e07d5303 100644 --- a/po/ru.po +++ b/po/ru.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-08 01:01-0500\n" +"POT-Creation-Date: 2023-03-08 23:46-0500\n" "PO-Revision-Date: 2023-03-01 20:22+0300\n" "Last-Translator: Faust3000 (Original) | Danik2343 (Update Transaltion) " "\n" @@ -141,7 +141,7 @@ msgstr "Уведомления отключены" msgid "Can not reach" msgstr "" -#: src/Common/Package.vala:129 src/Common/Package.vala:194 +#: src/Common/Package.vala:95 #, c-format msgid "File not found: %s" msgstr "Файл не найден: %s" diff --git a/po/sv.po b/po/sv.po index 808f0cfa..6908e212 100644 --- a/po/sv.po +++ b/po/sv.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-08 01:01-0500\n" +"POT-Creation-Date: 2023-03-08 23:46-0500\n" "PO-Revision-Date: 2018-01-13 16:56+0100\n" "Last-Translator: Åke Engelbrektson \n" "Language-Team:Swedish\n" @@ -146,7 +146,7 @@ msgstr "Avisering" msgid "Can not reach" msgstr "Kunde inte läsa filen" -#: src/Common/Package.vala:129 src/Common/Package.vala:194 +#: src/Common/Package.vala:95 #, c-format msgid "File not found: %s" msgstr "Filen kunde inte hittas: %s" diff --git a/po/tr.po b/po/tr.po index ab63b128..9d589471 100644 --- a/po/tr.po +++ b/po/tr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-08 01:01-0500\n" +"POT-Creation-Date: 2023-03-08 23:46-0500\n" "PO-Revision-Date: 2022-08-06 16:48+0300\n" "Last-Translator: Sabri Ünal \n" "Language-Team: Turkish\n" @@ -142,7 +142,7 @@ msgstr "Bildirimler devre dışı bırakılmış" msgid "Can not reach" msgstr "Dosya okunamadı" -#: src/Common/Package.vala:129 src/Common/Package.vala:194 +#: src/Common/Package.vala:95 #, c-format msgid "File not found: %s" msgstr "%s dosyası bulunamadı" diff --git a/po/uk.po b/po/uk.po index 469e6d42..339444e9 100644 --- a/po/uk.po +++ b/po/uk.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-08 01:01-0500\n" +"POT-Creation-Date: 2023-03-08 23:46-0500\n" "PO-Revision-Date: 2019-07-25 11:00+0300\n" "Last-Translator: Serhii Golovko \n" "Language-Team: Ukranian\n" @@ -137,7 +137,7 @@ msgstr "Повідомлення вимкнено" msgid "Can not reach" msgstr "Не може дістатися" -#: src/Common/Package.vala:129 src/Common/Package.vala:194 +#: src/Common/Package.vala:95 #, c-format msgid "File not found: %s" msgstr "Файл не знайдено: %s" diff --git a/src/Common/Package.vala b/src/Common/Package.vala index fca43b34..4dc51864 100644 --- a/src/Common/Package.vala +++ b/src/Common/Package.vala @@ -6,33 +6,11 @@ using TeeJee.Misc; public class Package : GLib.Object { public string id = ""; public string pname = ""; - public string description = ""; - public string server = ""; - public string repo = ""; - public string repo_section = ""; public string arch = ""; - public string section = ""; public string version = ""; public string version_installed = ""; - public string version_available = ""; - public string depends = ""; - public string deb_file_name = ""; - public string deb_uri = ""; - public int64 deb_size = 0; - public string deb_md5hash = ""; - - public bool is_selected = false; - public bool is_available = false; public bool is_installed = false; - public bool is_default = false; - public bool is_automatic = false; - public bool is_manual = false; - public bool is_deb = false; - - // convenience members - public bool is_visible = false; - public bool in_backup_list = false; public static string NATIVE_ARCH = ""; @@ -43,16 +21,8 @@ public class Package : GLib.Object { pname = _name; } - public bool is_foreign() { - if (check_if_foreign(arch)) { - return true; - } - else{ - return false; - } - } - public static string get_id(string _name, string _arch) { + log_debug("get_id("+_name+","+_arch+")"); string str = ""; str = "%s".printf(_name); if (check_if_foreign(_arch)){ @@ -62,10 +32,10 @@ public class Package : GLib.Object { } public static bool check_if_foreign(string architecture) { - if ((architecture.length > 0) && (architecture != NATIVE_ARCH) && (architecture != "all") && (architecture != "any")){ + log_debug("check_if_foreign("+architecture+")"); + if ((architecture.length > 0) && (architecture != NATIVE_ARCH) && (architecture != "all") && (architecture != "any")) { return true; - } - else{ + } else { return false; } } @@ -81,13 +51,13 @@ public class Package : GLib.Object { // get installed packages from aptitude -------------- string std_out, std_err; - exec_sync("aptitude search --disable-columns -F '%p|%v|%M|%d' '?installed'", out std_out, out std_err); + exec_sync("aptitude search --disable-columns -F '%p|%v' '?installed'", out std_out, out std_err); file_write(t_file, std_out); /* -linux-headers-5.6.10-050610|5.6.10-050610.202005052153||Header files related to Linux kernel version 5.6.10 -linux-headers-5.6.10-050610-generic|5.6.10-050610.202005052153||Linux kernel headers for version 5.6.10 on 64 bit x86 SMP -linux-image-unsigned-5.3.0-51-generic|5.3.0-51.44||Linux kernel image for version 5.3.0 on 64 bit x86 SMP -linux-image-unsigned-5.6.10-050610-generic|5.6.10-050610.202005052153||Linux kernel image for version 5.6.10 on 64 bit x86 SMP +linux-headers-5.6.10-050610|5.6.10-050610.202005052153 +linux-headers-5.6.10-050610-generic|5.6.10-050610.202005052153 +linux-image-unsigned-5.3.0-51-generic|5.3.0-51.44 +linux-image-unsigned-5.6.10-050610-generic|5.6.10-050610.202005052153 */ // parse ------------------------ @@ -98,79 +68,12 @@ linux-image-unsigned-5.6.10-050610-generic|5.6.10-050610.202005052153||Linux ker var dis = new DataInputStream (file.read()); while ((line = dis.read_line (null)) != null) { string[] arr = line.split("|"); - if (arr.length != 4) continue; - - string pname = arr[0].strip(); - string arch = (pname.contains(":")) ? pname.split(":")[1].strip() : ""; - if (pname.contains(":")) { pname = pname.split(":")[0]; } - string version = arr[1].strip(); - string auto = arr[2].strip(); - string desc = arr[3].strip(); - - string id = Package.get_id(pname,arch); - - Package pkg = null; - if (!list.has_key(id)) { - pkg = new Package(pname); - pkg.arch = arch; - pkg.description = desc; - pkg.id = Package.get_id(pkg.pname,pkg.arch); - list[pkg.id] = pkg; - } - - if (pkg != null){ - pkg.is_installed = true; - pkg.is_automatic = (auto == "A"); - pkg.version_installed = version; - } - } - } - else { - log_error (_("File not found: %s").printf(t_file)); - } - } - catch (Error e) { - log_error (e.message); - } - file_delete(t_file); - dir_delete(t_dir); - return list; - } - - public static Gee.HashMap query_available_packages(string search_string) { - //log_debug("query_available_packages()"); - - var list = new Gee.HashMap(); - - string t_dir = create_tmp_dir(); - string t_file = get_temp_file_path(t_dir); - - // get installed packages from aptitude -------------- - - string std_out, std_err; - string cmd = "aptitude search --disable-columns -F '%%p|%%v|%%M|%%d' '!installed ?architecture(native) %s'".printf(search_string); - exec_sync(cmd, out std_out, out std_err); - file_write(t_file, std_out); - - // parse ------------------------ - - try { - string line; - var file = File.new_for_path (t_file); - if (file.query_exists ()) { - var dis = new DataInputStream (file.read()); - while ((line = dis.read_line (null)) != null) { - string[] arr = line.split("|"); - if (arr.length != 4) { - continue; - } + if (arr.length != 2) continue; string pname = arr[0].strip(); string arch = (pname.contains(":")) ? pname.split(":")[1].strip() : ""; if (pname.contains(":")) { pname = pname.split(":")[0]; } string version = arr[1].strip(); - string auto = arr[2].strip(); - string desc = arr[3].strip(); string id = Package.get_id(pname,arch); @@ -178,14 +81,12 @@ linux-image-unsigned-5.6.10-050610-generic|5.6.10-050610.202005052153||Linux ker if (!list.has_key(id)) { pkg = new Package(pname); pkg.arch = arch; - pkg.description = desc; pkg.id = Package.get_id(pkg.pname,pkg.arch); list[pkg.id] = pkg; } if (pkg != null){ pkg.is_installed = true; - pkg.is_automatic = (auto == "A"); pkg.version_installed = version; } } diff --git a/src/Utility/Gtk/AboutWindow.vala b/src/Utility/Gtk/AboutWindow.vala index 98ce8764..40ced85b 100644 --- a/src/Utility/Gtk/AboutWindow.vala +++ b/src/Utility/Gtk/AboutWindow.vala @@ -158,11 +158,11 @@ public class AboutWindow : Dialog { } private string _version = ""; - public string version{ - get{ + public string version { + get { return _version; } - set{ + set { _version = value; } } From c0f0f2191dc6b53bfe505a0260d8ab819fde8e75 Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Thu, 9 Mar 2023 06:12:45 -0500 Subject: [PATCH 256/567] remove aptitude dependency --- .deb_build_number.mak | 4 +- BRANDING.mak | 2 +- README.md | 2 +- README.md.src | 104 +++++++++++++++++++++----------- debian/changelog | 6 ++ debian/control | 2 +- debian/control.src | 2 +- po/de.po | 90 +++++++++++++-------------- po/el.po | 90 +++++++++++++-------------- po/es.po | 90 +++++++++++++-------------- po/fr.po | 90 +++++++++++++-------------- po/hr.po | 90 +++++++++++++-------------- po/it.po | 90 +++++++++++++-------------- po/ko.po | 90 +++++++++++++-------------- po/messages.pot | 86 +++++++++++++------------- po/nl.po | 90 +++++++++++++-------------- po/pl.po | 90 +++++++++++++-------------- po/ru.po | 90 +++++++++++++-------------- po/sv.po | 90 +++++++++++++-------------- po/tr.po | 90 +++++++++++++-------------- po/uk.po | 90 +++++++++++++-------------- settings.md | 2 +- src/Common/DownloadManager.vala | 4 +- src/Common/LinuxKernel.vala | 38 ++++-------- src/Common/Package.vala | 68 +++++---------------- src/Console/AppConsole.vala | 4 +- src/Gtk/MainWindow.vala | 31 ++-------- src/Gtk/ProgressWindow.vala | 13 ++-- 28 files changed, 752 insertions(+), 786 deletions(-) diff --git a/.deb_build_number.mak b/.deb_build_number.mak index efb08b95..29a85ae7 100644 --- a/.deb_build_number.mak +++ b/.deb_build_number.mak @@ -1,3 +1,3 @@ # This file is generated by Makefile "make deb_build_number" -DEB_PKG_VERSION := 1.1.2 -DEB_BUILD_NUMBER := 0001 +DEB_PKG_VERSION := 1.1.3 +DEB_BUILD_NUMBER := 0000 diff --git a/BRANDING.mak b/BRANDING.mak index f2439109..3e0dedb5 100644 --- a/BRANDING.mak +++ b/BRANDING.mak @@ -3,7 +3,7 @@ VERSION_MAJOR = 1 VERSION_MINOR = 1 -VERSION_MICRO = 2 +VERSION_MICRO = 3 BRANDING_SHORTNAME = mainline BRANDING_LONGNAME = Ubuntu Mainline Kernel Installer BRANDING_AUTHORNAME = Brian K. White diff --git a/README.md b/README.md index e7e5cc63..5d109fae 100644 --- a/README.md +++ b/README.md @@ -36,7 +36,7 @@ but it is usually not current. ### Build ``` -sudo apt install libgee-0.8-dev libjson-glib-dev libvte-2.91-dev valac aria2 lsb-release aptitude make gettext dpkg-dev +sudo apt install libgee-0.8-dev libjson-glib-dev libvte-2.91-dev valac aria2 lsb-release make gettext dpkg-dev git clone https://github.com/bkw777/mainline.git cd mainline make diff --git a/README.md.src b/README.md.src index e5330506..1b393081 100644 --- a/README.md.src +++ b/README.md.src @@ -1,29 +1,42 @@ ### BRANDING_LONGNAME -A tool for installing the latest Linux kernels on Ubuntu-based distributions. +A tool for installing the latest Linux kernels from the [ubuntu mainline ppa](https://kernel.ubuntu.com/~kernel-ppa/mainline/) onto debian-based distributions. ![Main window screenshot](main_window.png) +### About +BRANDING_SHORTNAME is a fork of [ukuu](https://github.com/teejee2008/ukuu) + +### Changes +* Changed name from "ukuu" to "BRANDING_SHORTNAME" +* Removed all GRUB / bootloader options +* Removed all donate buttons, links, dialogs +* Removed un-related/un-used code +* Better temp and cache management +* Better desktop notification behavior +* Slow but ongoing re-writes of most parts + ### Features -* Fetches the list of available kernels from the [Ubuntu Mainline PPA](http://kernel.ubuntu.com/~kernel-ppa/mainline/) -* Optionally watches and displays notifications when a new kernel update is available -* Downloads and installs packages automatically -* Display available and installed kernels conveniently -* Install/Uninstall kernels from gui -* For each kernel, the related packages (headers & modules) are installed or uninstalled at the same time +* Download the list of available kernels from the [Ubuntu Mainline PPA](http://kernel.ubuntu.com/~kernel-ppa/mainline/) +* Display, install, uninstall, available and installed kernels conveniently, gui and cli +* For each kernel, the related headers & modules packages are automatically grouped and installed or uninstalled at the same time +* Optionally monitor and send desktop notifications when new kernels become available -### Install -Minimal .deb packages are in [releases](../../releases/latest). (Usually just a single deb for any given release). +### Not Features +* Care if the kernels run or boot or are compatible with your system beyond the basic plaform arch and whatever dependencies the .deb packages declare and dpkg enforces. The mainline-ppa kernel deb packages are produced with no warranty. When they work, great, when they don't, don't use them. This app intentionally does not even touch a single grub or bootloader file itself. All it does is download .deb packages that the ubuntu kernel team authors, and runs dpkg to install them the same way you would manually. -Better: [cappelikan](https://github.com/cappelikan) maintains a [PPA](https://code.launchpad.net/~cappelikan/+archive/ubuntu/ppa) +### Install +The [PPA](https://code.launchpad.net/~cappelikan/+archive/ubuntu/ppa) is kindly maintained by [cappelikan](https://github.com/cappelikan) ``` sudo add-apt-repository ppa:cappelikan/ppa sudo apt update -sudo apt install mainline +sudo apt install BRANDING_SHORTNAME ``` +There is also usually a single reference .deb package in [releases](../../releases/latest), generated by ```make release_deb``` +but it is usually not current. ### Build ``` -sudo apt install libgee-0.8-dev libjson-glib-dev libvte-2.91-dev valac aria2 lsb-release aptitude make gettext dpkg-dev +sudo apt install libgee-0.8-dev libjson-glib-dev libvte-2.91-dev valac aria2 lsb-release make gettext dpkg-dev git clone BRANDING_GITREPO cd BRANDING_SHORTNAME make @@ -31,40 +44,61 @@ sudo make install ``` ### Usage -Look for System -> Ubuntu Mainline Kernel Installer in your desktop's Applications/Start menu. +Look for System -> BRANDING_LONGNAME in your desktop's Applications/Start menu. Otherwise: CLI ``` -mainline --help -mainline +$ BRANDING_SHORTNAME --help +$ BRANDING_SHORTNAME ``` GUI ``` -mainline-gtk +$ BRANDING_SHORTNAME-gtk ``` -### Help -* Secure Boot -> Possibly useful, I have not tried: https://github.com/M-P-P-C/Signing-a-Linux-Kernel-for-Secure-Boot +Note that neither of those commands invoked sudo or pkexec or other su-alike. +The app runs as the user and uses pkexec internally just for the dpkg command. -* Kernel versions 5.15.7+ and libssl3 -> [Install libssl3](../../wiki/Install-libssl3) +**Install** downloads and installs the selected kernel -### About -Written using Vala and GTK3. +**Uninstall** uninstalls the selected kernel(1) -BRANDING_SHORTNAME is a fork of [ukuu](https://github.com/teejee2008/ukuu) -The original author stopped maintaining the original GPL version of ukuu and switched to a [paid license](https://teejeetech.in/tag/ukuu/) for future versions. +**Changes** displays the CHANGES file for the selected kernel -### Enhancements / Deviations from the original author's final GPL version -* (from [stevenpowerd](https://github.com/stevenpowered/ukuu)) Options controlling the internet connection check -* (from [cloyce](https://github.com/cloyce/ukuu)) Option to include or hide pre-release kernels -* Changed name from "ukuu" to "BRANDING_SHORTNAME" -* Removed all GRUB options -* Removed all donate buttons, links, dialogs -* Remove source cruft -* Better temp and cache directory behavior -* Better desktop notification behavior +**PPA** launches your default https:// handler to the web page for the selected kernel +If no kernels are selected (when first launching the app before clicking on any) launches the main page listing all the kernels. + +**Uninstall Old** uninstalls all installed kernels below the latest installed version(1) + +**Reload** deletes, re-downloads, and re-reads the local cached copies of all the index.html's from the mainline-ppa web site, and regenerates the displayed list. +Management of these files has been a problem with this app in the past due to various spaghetti code and permissions issues. +This is much better now, but there can still be occasional glitches from bad downloads or sometimes the upstream contents change after your copy was downloaded. For instance a kernel might be invalid when you happened to first cache it, and then later become valid (failed build that later succeeded), but your local cached info about that kernel doesn't know it, etc. +Normally the app tries not to re-download things as much as possible for speed and annoyance reasons. The main index is always re-downloaded at least once every start-up, but the individual pages for each kernel are cached and never re-downloaded by default, only new/missing ones are downloaded. +That can lead to some files being stale or wrong over time, so, to compensate for that, this button just makes it as convenient as possible to force a full re-load any time you want. + +**Settings** access the [settings](settings.md) dialog to configure various options + +**About** basic info and credits + +**Exit** order pizza + +(1) In all cases the currently running kernel is protected and the app will not uninstall the currently running kernel. +For the single manual uninstall button, the button simply isn't activated. For the cli app if you manually give that version, it will simply ignore it. For uninstall-old, either gui or cli, the currently running kernel is simply skipped over when scanning and building the list of uninstall candidates. + +### Help / FAQ + +* Secure Boot + Possibly useful, I have not tried: + https://github.com/M-P-P-C/Signing-a-Linux-Kernel-for-Secure-Boot + +* Kernel versions 5.15.7+ and libssl3 + [Install libssl3](../../wiki/Install-libssl3) + +* Missing kernels + Failed or incomplete builds for your platform/arch are not included in the list. + If you think the list is missing something, press the "PPA" button to jump to the mainline-ppa web site where the .deb packages come from, and look at the build results for the missing kernel, and you will usually find that it is a failed or incomplete build for your arch, and can not be installed. ### TODO & WIP -* Make the notification bg process detect when the user logs off and exit itself. -* Save & restore window dimensions. -* Move the notification/dbus code into the app and make an "applet mode" +* Make the background process for notifications detect when the user logs out of the desktop session and exit itself +* Move the notification/dbus code from the current shell script into the app and make an "applet mode" +* Combine the gtk and cli apps into one, or, make the gtk app into a pure front-end for the cli app, either way is better than the current mix of overlapping concerns and duplicate logic diff --git a/debian/changelog b/debian/changelog index 16ac926d..41c111b2 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +mainline (1.1.3) unstable; urgency=medium + + * Removed aptitude dependency. Now only needs dpkg. + + -- Brian K. White Thu, 09 Mar 2023 06:06:59 -0500 + mainline (1.1.2) unstable; urgency=medium * dir_delete() replace system("rm -rf ...") with native code diff --git a/debian/control b/debian/control index 352b4827..e34dff77 100644 --- a/debian/control +++ b/debian/control @@ -8,7 +8,7 @@ Homepage: https://github.com/bkw777/mainline Package: mainline Architecture: any -Depends: ${shlibs:Depends}, ${misc:Depends}, aptitude, aria2, lsb-release +Depends: ${shlibs:Depends}, ${misc:Depends}, aria2, lsb-release Recommends: Description: Kernel Update Utility for Ubuntu-based distributions Utility for installing mainline Linux kernels on Ubuntu-based distributions. diff --git a/debian/control.src b/debian/control.src index 735768c8..490d85d1 100644 --- a/debian/control.src +++ b/debian/control.src @@ -8,7 +8,7 @@ Homepage: BRANDING_WEBSITE Package: BRANDING_SHORTNAME Architecture: any -Depends: ${shlibs:Depends}, ${misc:Depends}, aptitude, aria2, lsb-release +Depends: ${shlibs:Depends}, ${misc:Depends}, aria2, lsb-release Recommends: Description: Kernel Update Utility for Ubuntu-based distributions Utility for installing mainline Linux kernels on Ubuntu-based distributions. diff --git a/po/de.po b/po/de.po index bf1f1be0..b90d1d10 100644 --- a/po/de.po +++ b/po/de.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-08 23:46-0500\n" +"POT-Creation-Date: 2023-03-09 05:17-0500\n" "PO-Revision-Date: 2023-02-20 18:40+0100\n" "Last-Translator: Marvin Meysel \n" "Language-Team: German\n" @@ -31,99 +31,99 @@ msgstr "Index abrufen..." msgid "Fetching main index from" msgstr "Index abrufen..." -#: src/Common/LinuxKernel.vala:544 +#: src/Common/LinuxKernel.vala:539 msgid "Could not find running kernel in list!" msgstr "Konnte keinen laufenden Kernel in der Liste finden!" -#: src/Common/LinuxKernel.vala:550 +#: src/Common/LinuxKernel.vala:545 msgid "Could not find any kernels to uninstall" msgstr "Es konnten keine Kernel zum Deinstallieren gefunden werden" -#: src/Common/LinuxKernel.vala:559 +#: src/Common/LinuxKernel.vala:554 msgid "The following kernels will be uninstalled:" msgstr "Die folgenden Kernel werden deinstalliert:" -#: src/Common/LinuxKernel.vala:563 +#: src/Common/LinuxKernel.vala:558 msgid "Continue ?" msgstr "Weiter ?" -#: src/Common/LinuxKernel.vala:586 src/Console/AppConsole.vala:298 +#: src/Common/LinuxKernel.vala:581 src/Console/AppConsole.vala:298 msgid "Latest update" msgstr "Neustes Update" -#: src/Common/LinuxKernel.vala:597 src/Console/AppConsole.vala:305 +#: src/Common/LinuxKernel.vala:592 src/Console/AppConsole.vala:305 msgid "Latest point update" msgstr "Letzte Punktaktualisierung" -#: src/Common/LinuxKernel.vala:605 src/Console/AppConsole.vala:310 +#: src/Common/LinuxKernel.vala:600 src/Console/AppConsole.vala:310 #: src/Console/AppConsole.vala:365 msgid "No updates found" msgstr "Keine Updates gefunden" -#: src/Common/LinuxKernel.vala:615 +#: src/Common/LinuxKernel.vala:610 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Kernel-Version %s installieren? (j/n):" -#: src/Common/LinuxKernel.vala:838 +#: src/Common/LinuxKernel.vala:832 msgid "Packages Available" msgstr "Verfügbare Pakete" -#: src/Common/LinuxKernel.vala:843 +#: src/Common/LinuxKernel.vala:837 msgid "Packages Installed" msgstr "Installierte Pakete" -#: src/Common/LinuxKernel.vala:856 src/Utility/TeeJee.FileSystem.vala:136 +#: src/Common/LinuxKernel.vala:850 src/Utility/TeeJee.FileSystem.vala:136 msgid "File not found" msgstr "Datei nicht gefunden " -#: src/Common/LinuxKernel.vala:920 +#: src/Common/LinuxKernel.vala:915 msgid "Available Kernels" msgstr "Verfügbare Kernel" -#: src/Common/LinuxKernel.vala:927 src/Gtk/MainWindow.vala:151 +#: src/Common/LinuxKernel.vala:922 src/Gtk/MainWindow.vala:151 msgid "Installed" msgstr "Installiert" -#: src/Common/LinuxKernel.vala:927 src/Gtk/MainWindow.vala:151 -#: src/Gtk/MainWindow.vala:523 src/Gtk/MainWindow.vala:537 +#: src/Common/LinuxKernel.vala:922 src/Gtk/MainWindow.vala:151 +#: src/Gtk/MainWindow.vala:502 src/Gtk/MainWindow.vala:516 msgid "Running" msgstr "Läuft" -#: src/Common/LinuxKernel.vala:964 +#: src/Common/LinuxKernel.vala:957 msgid "Downloading" msgstr "Herunterladen" -#: src/Common/LinuxKernel.vala:983 +#: src/Common/LinuxKernel.vala:976 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:986 +#: src/Common/LinuxKernel.vala:979 msgid "ERROR" msgstr "Fehler" -#: src/Common/LinuxKernel.vala:1000 +#: src/Common/LinuxKernel.vala:993 msgid "This kernel is already installed." msgstr "Dieser Kernel ist bereits installiert." -#: src/Common/LinuxKernel.vala:1038 +#: src/Common/LinuxKernel.vala:1024 #, fuzzy msgid "Uninstalling selected kernels" msgstr "Deinstallation des angegebenen Kernels" -#: src/Common/LinuxKernel.vala:1044 +#: src/Common/LinuxKernel.vala:1030 msgid "requested" msgstr "" -#: src/Common/LinuxKernel.vala:1047 +#: src/Common/LinuxKernel.vala:1033 msgid "skipping the currently booted kernel" msgstr "" -#: src/Common/LinuxKernel.vala:1063 +#: src/Common/LinuxKernel.vala:1049 msgid "found" msgstr "" -#: src/Common/LinuxKernel.vala:1066 +#: src/Common/LinuxKernel.vala:1052 #, fuzzy msgid "No packages to un-install!" msgstr "Installierte Pakete" @@ -136,15 +136,15 @@ msgstr "Angerufen von" msgid "Notifications are disabled" msgstr "Benachrichtigungen sind deaktiviert" -#: src/Common/Main.vala:332 src/Gtk/MainWindow.vala:638 +#: src/Common/Main.vala:332 src/Gtk/MainWindow.vala:617 #, fuzzy msgid "Can not reach" msgstr "Fehler beim lesen der Datei" -#: src/Common/Package.vala:95 -#, c-format +#: src/Common/Package.vala:60 +#, fuzzy, c-format msgid "File not found: %s" -msgstr "Datei nicht gefunden: %s" +msgstr "Datei nicht gefunden " #: src/Console/AppConsole.vala:68 src/Gtk/AppGtk.vala:141 msgid "Syntax" @@ -280,7 +280,7 @@ msgid "Kernel %s Available" msgstr "Kernel %s verfügbar" #: src/Console/AppConsole.vala:345 src/Console/AppConsole.vala:357 -#: src/Gtk/MainWindow.vala:282 +#: src/Gtk/MainWindow.vala:261 msgid "Install" msgstr "Installieren" @@ -305,60 +305,60 @@ msgstr "Kernel" msgid "Status" msgstr "Status" -#: src/Gtk/MainWindow.vala:292 +#: src/Gtk/MainWindow.vala:271 msgid "Uninstall" msgstr "Deinstallieren" -#: src/Gtk/MainWindow.vala:302 +#: src/Gtk/MainWindow.vala:281 msgid "Changes" msgstr "Änderungen" -#: src/Gtk/MainWindow.vala:323 +#: src/Gtk/MainWindow.vala:302 msgid "Uninstall Old" msgstr "Alte deinstallieren" -#: src/Gtk/MainWindow.vala:324 +#: src/Gtk/MainWindow.vala:303 msgid "Uninstall kernels older than running kernel" msgstr "Deinstallation von Kerneln, die älter sind als der aktuelle Kernel" -#: src/Gtk/MainWindow.vala:329 +#: src/Gtk/MainWindow.vala:308 msgid "Reload" msgstr "" -#: src/Gtk/MainWindow.vala:334 src/Gtk/SettingsDialog.vala:50 +#: src/Gtk/MainWindow.vala:313 src/Gtk/SettingsDialog.vala:50 msgid "Settings" msgstr "Einstellungen" -#: src/Gtk/MainWindow.vala:339 +#: src/Gtk/MainWindow.vala:318 msgid "About" msgstr "Über" -#: src/Gtk/MainWindow.vala:344 +#: src/Gtk/MainWindow.vala:323 msgid "Exit" msgstr "" -#: src/Gtk/MainWindow.vala:412 +#: src/Gtk/MainWindow.vala:391 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Kernel-Upgrade-Dienstprogramm für Ubuntu-basierte Distributionen" -#: src/Gtk/MainWindow.vala:413 +#: src/Gtk/MainWindow.vala:392 msgid "Forked" msgstr "Forked" -#: src/Gtk/MainWindow.vala:413 +#: src/Gtk/MainWindow.vala:392 msgid "Original" msgstr "Original" -#: src/Gtk/MainWindow.vala:451 +#: src/Gtk/MainWindow.vala:430 msgid "Updating cached indexes" msgstr "" -#: src/Gtk/MainWindow.vala:533 +#: src/Gtk/MainWindow.vala:512 msgid "available" msgstr "Verfügbar" -#: src/Gtk/MainWindow.vala:567 src/Gtk/MainWindow.vala:601 -#: src/Gtk/MainWindow.vala:629 +#: src/Gtk/MainWindow.vala:546 src/Gtk/MainWindow.vala:580 +#: src/Gtk/MainWindow.vala:608 msgid "DONE" msgstr "" diff --git a/po/el.po b/po/el.po index 3069ca5f..da5104ce 100644 --- a/po/el.po +++ b/po/el.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-08 23:46-0500\n" +"POT-Creation-Date: 2023-03-09 05:17-0500\n" "PO-Revision-Date: 2023-01-10 02:03-0600\n" "Last-Translator: Vasilis Kosmidis \n" "Language-Team: Greek\n" @@ -31,100 +31,100 @@ msgstr "Ανάκτηση ευρετηρίου..." msgid "Fetching main index from" msgstr "Ανάκτηση ευρετηρίου..." -#: src/Common/LinuxKernel.vala:544 +#: src/Common/LinuxKernel.vala:539 msgid "Could not find running kernel in list!" msgstr "Δεν ήταν δυνατή η εύρεση του τρέχοντος πυρήνα στη λίστα!" -#: src/Common/LinuxKernel.vala:550 +#: src/Common/LinuxKernel.vala:545 msgid "Could not find any kernels to uninstall" msgstr "Δεν βρέθηκε κανένας πυρήνας για απεγκατάσταση" -#: src/Common/LinuxKernel.vala:559 +#: src/Common/LinuxKernel.vala:554 #, fuzzy msgid "The following kernels will be uninstalled:" msgstr "Αυτός ο πυρήνας είναι ήδη εγκατεστημένος." -#: src/Common/LinuxKernel.vala:563 +#: src/Common/LinuxKernel.vala:558 msgid "Continue ?" msgstr "Συνέχεια;" -#: src/Common/LinuxKernel.vala:586 src/Console/AppConsole.vala:298 +#: src/Common/LinuxKernel.vala:581 src/Console/AppConsole.vala:298 msgid "Latest update" msgstr "Τελευταία αναβάθμιση" -#: src/Common/LinuxKernel.vala:597 src/Console/AppConsole.vala:305 +#: src/Common/LinuxKernel.vala:592 src/Console/AppConsole.vala:305 msgid "Latest point update" msgstr "Τελευταία ενημέρωση συντήρησης" -#: src/Common/LinuxKernel.vala:605 src/Console/AppConsole.vala:310 +#: src/Common/LinuxKernel.vala:600 src/Console/AppConsole.vala:310 #: src/Console/AppConsole.vala:365 msgid "No updates found" msgstr "Δεν βρέθηκαν ενημερώσεις" -#: src/Common/LinuxKernel.vala:615 +#: src/Common/LinuxKernel.vala:610 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Εγκατάσταση του πυρήνα έκδοσης %s ; (ν/ό):" -#: src/Common/LinuxKernel.vala:838 +#: src/Common/LinuxKernel.vala:832 msgid "Packages Available" msgstr "Διαθέσιμα πακέτα" -#: src/Common/LinuxKernel.vala:843 +#: src/Common/LinuxKernel.vala:837 msgid "Packages Installed" msgstr "Εγκατεστημένα πακέτα" -#: src/Common/LinuxKernel.vala:856 src/Utility/TeeJee.FileSystem.vala:136 +#: src/Common/LinuxKernel.vala:850 src/Utility/TeeJee.FileSystem.vala:136 msgid "File not found" msgstr "Το αρχείο δε βρέθηκε" -#: src/Common/LinuxKernel.vala:920 +#: src/Common/LinuxKernel.vala:915 msgid "Available Kernels" msgstr "Διαθέσιμοι πυρήνες" -#: src/Common/LinuxKernel.vala:927 src/Gtk/MainWindow.vala:151 +#: src/Common/LinuxKernel.vala:922 src/Gtk/MainWindow.vala:151 msgid "Installed" msgstr "Εγκατεστημένος" -#: src/Common/LinuxKernel.vala:927 src/Gtk/MainWindow.vala:151 -#: src/Gtk/MainWindow.vala:523 src/Gtk/MainWindow.vala:537 +#: src/Common/LinuxKernel.vala:922 src/Gtk/MainWindow.vala:151 +#: src/Gtk/MainWindow.vala:502 src/Gtk/MainWindow.vala:516 msgid "Running" msgstr "Ενεργός" -#: src/Common/LinuxKernel.vala:964 +#: src/Common/LinuxKernel.vala:957 msgid "Downloading" msgstr "Λήψη" -#: src/Common/LinuxKernel.vala:983 +#: src/Common/LinuxKernel.vala:976 msgid "OK" msgstr "ΟΚ" -#: src/Common/LinuxKernel.vala:986 +#: src/Common/LinuxKernel.vala:979 msgid "ERROR" msgstr "ΣΦΑΛΜΑ" -#: src/Common/LinuxKernel.vala:1000 +#: src/Common/LinuxKernel.vala:993 msgid "This kernel is already installed." msgstr "Αυτός ο πυρήνας είναι ήδη εγκατεστημένος." -#: src/Common/LinuxKernel.vala:1038 +#: src/Common/LinuxKernel.vala:1024 #, fuzzy msgid "Uninstalling selected kernels" msgstr "Απεγκατάσταση του καθορισμένου πυρήνα" -#: src/Common/LinuxKernel.vala:1044 +#: src/Common/LinuxKernel.vala:1030 msgid "requested" msgstr "" -#: src/Common/LinuxKernel.vala:1047 +#: src/Common/LinuxKernel.vala:1033 msgid "skipping the currently booted kernel" msgstr "" -#: src/Common/LinuxKernel.vala:1063 +#: src/Common/LinuxKernel.vala:1049 msgid "found" msgstr "" -#: src/Common/LinuxKernel.vala:1066 +#: src/Common/LinuxKernel.vala:1052 #, fuzzy msgid "No packages to un-install!" msgstr "Εγκατεστημένα πακέτα" @@ -137,15 +137,15 @@ msgstr "Κλήθηκε από" msgid "Notifications are disabled" msgstr "Οι ειδοποιήσεις είναι απενεργοποιημένες" -#: src/Common/Main.vala:332 src/Gtk/MainWindow.vala:638 +#: src/Common/Main.vala:332 src/Gtk/MainWindow.vala:617 #, fuzzy msgid "Can not reach" msgstr "Αποτυχία ανάγνωσης του αρχείου" -#: src/Common/Package.vala:95 -#, c-format +#: src/Common/Package.vala:60 +#, fuzzy, c-format msgid "File not found: %s" -msgstr "Το αρχείο δεν βρέθηκε: %s" +msgstr "Το αρχείο δε βρέθηκε" #: src/Console/AppConsole.vala:68 src/Gtk/AppGtk.vala:141 msgid "Syntax" @@ -279,7 +279,7 @@ msgid "Kernel %s Available" msgstr "Πυρήνας %s διαθέσιμος" #: src/Console/AppConsole.vala:345 src/Console/AppConsole.vala:357 -#: src/Gtk/MainWindow.vala:282 +#: src/Gtk/MainWindow.vala:261 msgid "Install" msgstr "Εγκατάσταση" @@ -304,60 +304,60 @@ msgstr "Πυρήνας" msgid "Status" msgstr "Κατάσταση" -#: src/Gtk/MainWindow.vala:292 +#: src/Gtk/MainWindow.vala:271 msgid "Uninstall" msgstr "Απεγκατάσταση" -#: src/Gtk/MainWindow.vala:302 +#: src/Gtk/MainWindow.vala:281 msgid "Changes" msgstr "Αλλαγές" -#: src/Gtk/MainWindow.vala:323 +#: src/Gtk/MainWindow.vala:302 msgid "Uninstall Old" msgstr "Απεγκατάσταση παλαιών" -#: src/Gtk/MainWindow.vala:324 +#: src/Gtk/MainWindow.vala:303 msgid "Uninstall kernels older than running kernel" msgstr "Απεγκαταστήστε πυρήνες παλαιότερους από τον ενεργό" -#: src/Gtk/MainWindow.vala:329 +#: src/Gtk/MainWindow.vala:308 msgid "Reload" msgstr "" -#: src/Gtk/MainWindow.vala:334 src/Gtk/SettingsDialog.vala:50 +#: src/Gtk/MainWindow.vala:313 src/Gtk/SettingsDialog.vala:50 msgid "Settings" msgstr "Ρυθμίσεις" -#: src/Gtk/MainWindow.vala:339 +#: src/Gtk/MainWindow.vala:318 msgid "About" msgstr "Σχετικά" -#: src/Gtk/MainWindow.vala:344 +#: src/Gtk/MainWindow.vala:323 msgid "Exit" msgstr "" -#: src/Gtk/MainWindow.vala:412 +#: src/Gtk/MainWindow.vala:391 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Πρόγραμμα αναβάθμισης πυρήνα για διανομές που βασίζονται στο Ubuntu" -#: src/Gtk/MainWindow.vala:413 +#: src/Gtk/MainWindow.vala:392 msgid "Forked" msgstr "Forked" -#: src/Gtk/MainWindow.vala:413 +#: src/Gtk/MainWindow.vala:392 msgid "Original" msgstr "Πρωτότυπο" -#: src/Gtk/MainWindow.vala:451 +#: src/Gtk/MainWindow.vala:430 msgid "Updating cached indexes" msgstr "" -#: src/Gtk/MainWindow.vala:533 +#: src/Gtk/MainWindow.vala:512 msgid "available" msgstr "διαθέσιμος" -#: src/Gtk/MainWindow.vala:567 src/Gtk/MainWindow.vala:601 -#: src/Gtk/MainWindow.vala:629 +#: src/Gtk/MainWindow.vala:546 src/Gtk/MainWindow.vala:580 +#: src/Gtk/MainWindow.vala:608 msgid "DONE" msgstr "" diff --git a/po/es.po b/po/es.po index 333f696d..96b4f9b0 100644 --- a/po/es.po +++ b/po/es.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-08 23:46-0500\n" +"POT-Creation-Date: 2023-03-09 05:17-0500\n" "PO-Revision-Date: 2018-01-03 02:03-0600\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish\n" @@ -31,101 +31,101 @@ msgstr "Recuperando índice..." msgid "Fetching main index from" msgstr "Recuperando índice..." -#: src/Common/LinuxKernel.vala:544 +#: src/Common/LinuxKernel.vala:539 msgid "Could not find running kernel in list!" msgstr "¡No se pudo encontrar el núcleo en ejecución en la lista!" -#: src/Common/LinuxKernel.vala:550 +#: src/Common/LinuxKernel.vala:545 #, fuzzy msgid "Could not find any kernels to uninstall" msgstr "Seleccione los núcleos que se desinstalarán" -#: src/Common/LinuxKernel.vala:559 +#: src/Common/LinuxKernel.vala:554 #, fuzzy msgid "The following kernels will be uninstalled:" msgstr "Los siguientes kernels serán eliminados:" -#: src/Common/LinuxKernel.vala:563 +#: src/Common/LinuxKernel.vala:558 msgid "Continue ?" msgstr "¿Continuar?" -#: src/Common/LinuxKernel.vala:586 src/Console/AppConsole.vala:298 +#: src/Common/LinuxKernel.vala:581 src/Console/AppConsole.vala:298 msgid "Latest update" msgstr "" -#: src/Common/LinuxKernel.vala:597 src/Console/AppConsole.vala:305 +#: src/Common/LinuxKernel.vala:592 src/Console/AppConsole.vala:305 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:605 src/Console/AppConsole.vala:310 +#: src/Common/LinuxKernel.vala:600 src/Console/AppConsole.vala:310 #: src/Console/AppConsole.vala:365 msgid "No updates found" msgstr "No se encontró ninguna actualización" -#: src/Common/LinuxKernel.vala:615 +#: src/Common/LinuxKernel.vala:610 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "" -#: src/Common/LinuxKernel.vala:838 +#: src/Common/LinuxKernel.vala:832 msgid "Packages Available" msgstr "Paquetes disponibles" -#: src/Common/LinuxKernel.vala:843 +#: src/Common/LinuxKernel.vala:837 msgid "Packages Installed" msgstr "Paquetes instalados" -#: src/Common/LinuxKernel.vala:856 src/Utility/TeeJee.FileSystem.vala:136 +#: src/Common/LinuxKernel.vala:850 src/Utility/TeeJee.FileSystem.vala:136 msgid "File not found" msgstr "No se encontró el archivo" -#: src/Common/LinuxKernel.vala:920 +#: src/Common/LinuxKernel.vala:915 msgid "Available Kernels" msgstr "Núcleos disponibles" -#: src/Common/LinuxKernel.vala:927 src/Gtk/MainWindow.vala:151 +#: src/Common/LinuxKernel.vala:922 src/Gtk/MainWindow.vala:151 msgid "Installed" msgstr "Instalado" -#: src/Common/LinuxKernel.vala:927 src/Gtk/MainWindow.vala:151 -#: src/Gtk/MainWindow.vala:523 src/Gtk/MainWindow.vala:537 +#: src/Common/LinuxKernel.vala:922 src/Gtk/MainWindow.vala:151 +#: src/Gtk/MainWindow.vala:502 src/Gtk/MainWindow.vala:516 msgid "Running" msgstr "En ejecución" -#: src/Common/LinuxKernel.vala:964 +#: src/Common/LinuxKernel.vala:957 msgid "Downloading" msgstr "Descargando" -#: src/Common/LinuxKernel.vala:983 +#: src/Common/LinuxKernel.vala:976 msgid "OK" msgstr "Aceptar" -#: src/Common/LinuxKernel.vala:986 +#: src/Common/LinuxKernel.vala:979 msgid "ERROR" msgstr "ERROR" -#: src/Common/LinuxKernel.vala:1000 +#: src/Common/LinuxKernel.vala:993 msgid "This kernel is already installed." msgstr "Este núcleo ya se instaló." -#: src/Common/LinuxKernel.vala:1038 +#: src/Common/LinuxKernel.vala:1024 #, fuzzy msgid "Uninstalling selected kernels" msgstr "Instalar núcleo troncal especificado" -#: src/Common/LinuxKernel.vala:1044 +#: src/Common/LinuxKernel.vala:1030 msgid "requested" msgstr "" -#: src/Common/LinuxKernel.vala:1047 +#: src/Common/LinuxKernel.vala:1033 msgid "skipping the currently booted kernel" msgstr "" -#: src/Common/LinuxKernel.vala:1063 +#: src/Common/LinuxKernel.vala:1049 msgid "found" msgstr "" -#: src/Common/LinuxKernel.vala:1066 +#: src/Common/LinuxKernel.vala:1052 #, fuzzy msgid "No packages to un-install!" msgstr "Paquetes instalados" @@ -139,15 +139,15 @@ msgstr "" msgid "Notifications are disabled" msgstr "Notificación" -#: src/Common/Main.vala:332 src/Gtk/MainWindow.vala:638 +#: src/Common/Main.vala:332 src/Gtk/MainWindow.vala:617 #, fuzzy msgid "Can not reach" msgstr "Falló la lectura del archivo" -#: src/Common/Package.vala:95 -#, c-format +#: src/Common/Package.vala:60 +#, fuzzy, c-format msgid "File not found: %s" -msgstr "No se encontró el archivo: %s" +msgstr "No se encontró el archivo" #: src/Console/AppConsole.vala:68 src/Gtk/AppGtk.vala:141 msgid "Syntax" @@ -284,7 +284,7 @@ msgid "Kernel %s Available" msgstr "Paquetes disponibles" #: src/Console/AppConsole.vala:345 src/Console/AppConsole.vala:357 -#: src/Gtk/MainWindow.vala:282 +#: src/Gtk/MainWindow.vala:261 msgid "Install" msgstr "Instalar" @@ -309,64 +309,64 @@ msgstr "Núcleo" msgid "Status" msgstr "Estado" -#: src/Gtk/MainWindow.vala:292 +#: src/Gtk/MainWindow.vala:271 #, fuzzy msgid "Uninstall" msgstr "Instalar" -#: src/Gtk/MainWindow.vala:302 +#: src/Gtk/MainWindow.vala:281 msgid "Changes" msgstr "Cambios" -#: src/Gtk/MainWindow.vala:323 +#: src/Gtk/MainWindow.vala:302 #, fuzzy msgid "Uninstall Old" msgstr "Desinstalación finalizada" -#: src/Gtk/MainWindow.vala:324 +#: src/Gtk/MainWindow.vala:303 msgid "Uninstall kernels older than running kernel" msgstr "" -#: src/Gtk/MainWindow.vala:329 +#: src/Gtk/MainWindow.vala:308 msgid "Reload" msgstr "" -#: src/Gtk/MainWindow.vala:334 src/Gtk/SettingsDialog.vala:50 +#: src/Gtk/MainWindow.vala:313 src/Gtk/SettingsDialog.vala:50 msgid "Settings" msgstr "Configuración" -#: src/Gtk/MainWindow.vala:339 +#: src/Gtk/MainWindow.vala:318 msgid "About" msgstr "Acerca de" -#: src/Gtk/MainWindow.vala:344 +#: src/Gtk/MainWindow.vala:323 msgid "Exit" msgstr "" -#: src/Gtk/MainWindow.vala:412 +#: src/Gtk/MainWindow.vala:391 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "" "Herramienta de renovación de núcleo para distribuciones basadas en Ubuntu" -#: src/Gtk/MainWindow.vala:413 +#: src/Gtk/MainWindow.vala:392 msgid "Forked" msgstr "" -#: src/Gtk/MainWindow.vala:413 +#: src/Gtk/MainWindow.vala:392 msgid "Original" msgstr "" -#: src/Gtk/MainWindow.vala:451 +#: src/Gtk/MainWindow.vala:430 msgid "Updating cached indexes" msgstr "" -#: src/Gtk/MainWindow.vala:533 +#: src/Gtk/MainWindow.vala:512 #, fuzzy msgid "available" msgstr "Paquetes disponibles" -#: src/Gtk/MainWindow.vala:567 src/Gtk/MainWindow.vala:601 -#: src/Gtk/MainWindow.vala:629 +#: src/Gtk/MainWindow.vala:546 src/Gtk/MainWindow.vala:580 +#: src/Gtk/MainWindow.vala:608 msgid "DONE" msgstr "" diff --git a/po/fr.po b/po/fr.po index 89d51c68..976ffa15 100644 --- a/po/fr.po +++ b/po/fr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-08 23:46-0500\n" +"POT-Creation-Date: 2023-03-09 05:17-0500\n" "PO-Revision-Date: 2018-08-05 15:50+0200\n" "Last-Translator: Yolateng0 \n" "Language-Team: French\n" @@ -31,101 +31,101 @@ msgstr "Récupération de l'index..." msgid "Fetching main index from" msgstr "Récupération de l'index..." -#: src/Common/LinuxKernel.vala:544 +#: src/Common/LinuxKernel.vala:539 msgid "Could not find running kernel in list!" msgstr "Impossible de trouver la version courante dans la liste!" -#: src/Common/LinuxKernel.vala:550 +#: src/Common/LinuxKernel.vala:545 #, fuzzy msgid "Could not find any kernels to uninstall" msgstr "Impossible de trouver de noyaux à supprimer" -#: src/Common/LinuxKernel.vala:559 +#: src/Common/LinuxKernel.vala:554 #, fuzzy msgid "The following kernels will be uninstalled:" msgstr "Les noyaux suivants seront supprimés:" -#: src/Common/LinuxKernel.vala:563 +#: src/Common/LinuxKernel.vala:558 msgid "Continue ?" msgstr "Reprendre ?" -#: src/Common/LinuxKernel.vala:586 src/Console/AppConsole.vala:298 +#: src/Common/LinuxKernel.vala:581 src/Console/AppConsole.vala:298 msgid "Latest update" msgstr "Dernière mise à jour" -#: src/Common/LinuxKernel.vala:597 src/Console/AppConsole.vala:305 +#: src/Common/LinuxKernel.vala:592 src/Console/AppConsole.vala:305 msgid "Latest point update" msgstr "Dernière mise à jour mineure" -#: src/Common/LinuxKernel.vala:605 src/Console/AppConsole.vala:310 +#: src/Common/LinuxKernel.vala:600 src/Console/AppConsole.vala:310 #: src/Console/AppConsole.vala:365 msgid "No updates found" msgstr "Aucune mise à jour disponible" -#: src/Common/LinuxKernel.vala:615 +#: src/Common/LinuxKernel.vala:610 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Installer le noyau en version %s ? (y/n): " -#: src/Common/LinuxKernel.vala:838 +#: src/Common/LinuxKernel.vala:832 msgid "Packages Available" msgstr "Paquets Disponibles" -#: src/Common/LinuxKernel.vala:843 +#: src/Common/LinuxKernel.vala:837 msgid "Packages Installed" msgstr "Paquets Installés" -#: src/Common/LinuxKernel.vala:856 src/Utility/TeeJee.FileSystem.vala:136 +#: src/Common/LinuxKernel.vala:850 src/Utility/TeeJee.FileSystem.vala:136 msgid "File not found" msgstr "Fichier non trouvé" -#: src/Common/LinuxKernel.vala:920 +#: src/Common/LinuxKernel.vala:915 msgid "Available Kernels" msgstr "Noyaux Disponibles" -#: src/Common/LinuxKernel.vala:927 src/Gtk/MainWindow.vala:151 +#: src/Common/LinuxKernel.vala:922 src/Gtk/MainWindow.vala:151 msgid "Installed" msgstr "Installé" -#: src/Common/LinuxKernel.vala:927 src/Gtk/MainWindow.vala:151 -#: src/Gtk/MainWindow.vala:523 src/Gtk/MainWindow.vala:537 +#: src/Common/LinuxKernel.vala:922 src/Gtk/MainWindow.vala:151 +#: src/Gtk/MainWindow.vala:502 src/Gtk/MainWindow.vala:516 msgid "Running" msgstr "Actuel" -#: src/Common/LinuxKernel.vala:964 +#: src/Common/LinuxKernel.vala:957 msgid "Downloading" msgstr "Téléchargement" -#: src/Common/LinuxKernel.vala:983 +#: src/Common/LinuxKernel.vala:976 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:986 +#: src/Common/LinuxKernel.vala:979 msgid "ERROR" msgstr "ERREUR" -#: src/Common/LinuxKernel.vala:1000 +#: src/Common/LinuxKernel.vala:993 msgid "This kernel is already installed." msgstr "Ce noyau est déjà installé." -#: src/Common/LinuxKernel.vala:1038 +#: src/Common/LinuxKernel.vala:1024 #, fuzzy msgid "Uninstalling selected kernels" msgstr "Installer les noyaux spécifiés" -#: src/Common/LinuxKernel.vala:1044 +#: src/Common/LinuxKernel.vala:1030 msgid "requested" msgstr "" -#: src/Common/LinuxKernel.vala:1047 +#: src/Common/LinuxKernel.vala:1033 msgid "skipping the currently booted kernel" msgstr "" -#: src/Common/LinuxKernel.vala:1063 +#: src/Common/LinuxKernel.vala:1049 msgid "found" msgstr "" -#: src/Common/LinuxKernel.vala:1066 +#: src/Common/LinuxKernel.vala:1052 #, fuzzy msgid "No packages to un-install!" msgstr "Paquets Installés" @@ -138,15 +138,15 @@ msgstr "" msgid "Notifications are disabled" msgstr "Les notifications sont désactivées" -#: src/Common/Main.vala:332 src/Gtk/MainWindow.vala:638 +#: src/Common/Main.vala:332 src/Gtk/MainWindow.vala:617 #, fuzzy msgid "Can not reach" msgstr "Impossible de lire le fichier" -#: src/Common/Package.vala:95 -#, c-format +#: src/Common/Package.vala:60 +#, fuzzy, c-format msgid "File not found: %s" -msgstr "Fichier non trouvé: %s" +msgstr "Fichier non trouvé" #: src/Console/AppConsole.vala:68 src/Gtk/AppGtk.vala:141 msgid "Syntax" @@ -284,7 +284,7 @@ msgid "Kernel %s Available" msgstr "Paquet %s disponibles" #: src/Console/AppConsole.vala:345 src/Console/AppConsole.vala:357 -#: src/Gtk/MainWindow.vala:282 +#: src/Gtk/MainWindow.vala:261 msgid "Install" msgstr "Installer" @@ -309,65 +309,65 @@ msgstr "Noyau" msgid "Status" msgstr "Statut" -#: src/Gtk/MainWindow.vala:292 +#: src/Gtk/MainWindow.vala:271 #, fuzzy msgid "Uninstall" msgstr "Installer" -#: src/Gtk/MainWindow.vala:302 +#: src/Gtk/MainWindow.vala:281 msgid "Changes" msgstr "Changements" -#: src/Gtk/MainWindow.vala:323 +#: src/Gtk/MainWindow.vala:302 #, fuzzy msgid "Uninstall Old" msgstr "Désinstallation complète" -#: src/Gtk/MainWindow.vala:324 +#: src/Gtk/MainWindow.vala:303 #, fuzzy msgid "Uninstall kernels older than running kernel" msgstr "Désinstalle les noyaux plus anciens que le noyau courant" -#: src/Gtk/MainWindow.vala:329 +#: src/Gtk/MainWindow.vala:308 msgid "Reload" msgstr "" -#: src/Gtk/MainWindow.vala:334 src/Gtk/SettingsDialog.vala:50 +#: src/Gtk/MainWindow.vala:313 src/Gtk/SettingsDialog.vala:50 msgid "Settings" msgstr "Paramètres" -#: src/Gtk/MainWindow.vala:339 +#: src/Gtk/MainWindow.vala:318 msgid "About" msgstr "À propos" -#: src/Gtk/MainWindow.vala:344 +#: src/Gtk/MainWindow.vala:323 msgid "Exit" msgstr "" -#: src/Gtk/MainWindow.vala:412 +#: src/Gtk/MainWindow.vala:391 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "" "Utilitaire de mise à niveau des noyaux pour les distributions basées sur " "Ubuntu" -#: src/Gtk/MainWindow.vala:413 +#: src/Gtk/MainWindow.vala:392 msgid "Forked" msgstr "Version forkée :" -#: src/Gtk/MainWindow.vala:413 +#: src/Gtk/MainWindow.vala:392 msgid "Original" msgstr "Version originale :" -#: src/Gtk/MainWindow.vala:451 +#: src/Gtk/MainWindow.vala:430 msgid "Updating cached indexes" msgstr "" -#: src/Gtk/MainWindow.vala:533 +#: src/Gtk/MainWindow.vala:512 msgid "available" msgstr "disponible" -#: src/Gtk/MainWindow.vala:567 src/Gtk/MainWindow.vala:601 -#: src/Gtk/MainWindow.vala:629 +#: src/Gtk/MainWindow.vala:546 src/Gtk/MainWindow.vala:580 +#: src/Gtk/MainWindow.vala:608 msgid "DONE" msgstr "" diff --git a/po/hr.po b/po/hr.po index 139693e2..2ce22387 100644 --- a/po/hr.po +++ b/po/hr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-08 23:46-0500\n" +"POT-Creation-Date: 2023-03-09 05:17-0500\n" "PO-Revision-Date: 2022-09-22 12:13+0200\n" "Last-Translator: gogo \n" "Language-Team: Croatian\n" @@ -31,99 +31,99 @@ msgstr "Preuzimanje sadržaja..." msgid "Fetching main index from" msgstr "Preuzimanje sadržaja..." -#: src/Common/LinuxKernel.vala:544 +#: src/Common/LinuxKernel.vala:539 msgid "Could not find running kernel in list!" msgstr "Nemoguće je pronaći pokrenuti kernel na popisu!" -#: src/Common/LinuxKernel.vala:550 +#: src/Common/LinuxKernel.vala:545 msgid "Could not find any kernels to uninstall" msgstr "Nema pronađenih kernela za deinstaliranje" -#: src/Common/LinuxKernel.vala:559 +#: src/Common/LinuxKernel.vala:554 msgid "The following kernels will be uninstalled:" msgstr "Sljedeći kerneli će biti deinstalirani:" -#: src/Common/LinuxKernel.vala:563 +#: src/Common/LinuxKernel.vala:558 msgid "Continue ?" msgstr "Nastavi?" -#: src/Common/LinuxKernel.vala:586 src/Console/AppConsole.vala:298 +#: src/Common/LinuxKernel.vala:581 src/Console/AppConsole.vala:298 msgid "Latest update" msgstr "Najnovija nadopuna" -#: src/Common/LinuxKernel.vala:597 src/Console/AppConsole.vala:305 +#: src/Common/LinuxKernel.vala:592 src/Console/AppConsole.vala:305 msgid "Latest point update" msgstr "Najnovija ciljana nadopuna" -#: src/Common/LinuxKernel.vala:605 src/Console/AppConsole.vala:310 +#: src/Common/LinuxKernel.vala:600 src/Console/AppConsole.vala:310 #: src/Console/AppConsole.vala:365 msgid "No updates found" msgstr "Nema pronađenih nadopuna" -#: src/Common/LinuxKernel.vala:615 +#: src/Common/LinuxKernel.vala:610 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Instaliraj kernel inačice %s ? (d/n): " -#: src/Common/LinuxKernel.vala:838 +#: src/Common/LinuxKernel.vala:832 msgid "Packages Available" msgstr "Dostupni paketi" -#: src/Common/LinuxKernel.vala:843 +#: src/Common/LinuxKernel.vala:837 msgid "Packages Installed" msgstr "Instalirani paketi" -#: src/Common/LinuxKernel.vala:856 src/Utility/TeeJee.FileSystem.vala:136 +#: src/Common/LinuxKernel.vala:850 src/Utility/TeeJee.FileSystem.vala:136 msgid "File not found" msgstr "Datoteka nije pronađena" -#: src/Common/LinuxKernel.vala:920 +#: src/Common/LinuxKernel.vala:915 msgid "Available Kernels" msgstr "Dostupni kerneli" -#: src/Common/LinuxKernel.vala:927 src/Gtk/MainWindow.vala:151 +#: src/Common/LinuxKernel.vala:922 src/Gtk/MainWindow.vala:151 msgid "Installed" msgstr "Instalirano" -#: src/Common/LinuxKernel.vala:927 src/Gtk/MainWindow.vala:151 -#: src/Gtk/MainWindow.vala:523 src/Gtk/MainWindow.vala:537 +#: src/Common/LinuxKernel.vala:922 src/Gtk/MainWindow.vala:151 +#: src/Gtk/MainWindow.vala:502 src/Gtk/MainWindow.vala:516 msgid "Running" msgstr "Pokrenuto" -#: src/Common/LinuxKernel.vala:964 +#: src/Common/LinuxKernel.vala:957 msgid "Downloading" msgstr "Preuzimanje" -#: src/Common/LinuxKernel.vala:983 +#: src/Common/LinuxKernel.vala:976 msgid "OK" msgstr "U redu" -#: src/Common/LinuxKernel.vala:986 +#: src/Common/LinuxKernel.vala:979 msgid "ERROR" msgstr "GREŠKA" -#: src/Common/LinuxKernel.vala:1000 +#: src/Common/LinuxKernel.vala:993 msgid "This kernel is already installed." msgstr "Ovaj kernel je već instaliran." -#: src/Common/LinuxKernel.vala:1038 +#: src/Common/LinuxKernel.vala:1024 #, fuzzy msgid "Uninstalling selected kernels" msgstr "Deinstaliraj određene kernele" -#: src/Common/LinuxKernel.vala:1044 +#: src/Common/LinuxKernel.vala:1030 msgid "requested" msgstr "" -#: src/Common/LinuxKernel.vala:1047 +#: src/Common/LinuxKernel.vala:1033 msgid "skipping the currently booted kernel" msgstr "" -#: src/Common/LinuxKernel.vala:1063 +#: src/Common/LinuxKernel.vala:1049 msgid "found" msgstr "" -#: src/Common/LinuxKernel.vala:1066 +#: src/Common/LinuxKernel.vala:1052 #, fuzzy msgid "No packages to un-install!" msgstr "Instalirani paketi" @@ -136,15 +136,15 @@ msgstr "Pozvano od" msgid "Notifications are disabled" msgstr "Obavijesti su onemogućene" -#: src/Common/Main.vala:332 src/Gtk/MainWindow.vala:638 +#: src/Common/Main.vala:332 src/Gtk/MainWindow.vala:617 #, fuzzy msgid "Can not reach" msgstr "Neuspjelo čitanje datoteke" -#: src/Common/Package.vala:95 -#, c-format +#: src/Common/Package.vala:60 +#, fuzzy, c-format msgid "File not found: %s" -msgstr "Datoteka nije pronađena: %s" +msgstr "Datoteka nije pronađena" #: src/Console/AppConsole.vala:68 src/Gtk/AppGtk.vala:141 msgid "Syntax" @@ -276,7 +276,7 @@ msgid "Kernel %s Available" msgstr "Kernel %s je dostupan" #: src/Console/AppConsole.vala:345 src/Console/AppConsole.vala:357 -#: src/Gtk/MainWindow.vala:282 +#: src/Gtk/MainWindow.vala:261 msgid "Install" msgstr "Instaliraj" @@ -301,60 +301,60 @@ msgstr "Kernel" msgid "Status" msgstr "Stanje" -#: src/Gtk/MainWindow.vala:292 +#: src/Gtk/MainWindow.vala:271 msgid "Uninstall" msgstr "Deinstaliraj" -#: src/Gtk/MainWindow.vala:302 +#: src/Gtk/MainWindow.vala:281 msgid "Changes" msgstr "Promjene" -#: src/Gtk/MainWindow.vala:323 +#: src/Gtk/MainWindow.vala:302 msgid "Uninstall Old" msgstr "Deinstaliraj staro" -#: src/Gtk/MainWindow.vala:324 +#: src/Gtk/MainWindow.vala:303 msgid "Uninstall kernels older than running kernel" msgstr "Deinstaliraj kernele starije od pokrenutog krenela" -#: src/Gtk/MainWindow.vala:329 +#: src/Gtk/MainWindow.vala:308 msgid "Reload" msgstr "" -#: src/Gtk/MainWindow.vala:334 src/Gtk/SettingsDialog.vala:50 +#: src/Gtk/MainWindow.vala:313 src/Gtk/SettingsDialog.vala:50 msgid "Settings" msgstr "Postavke" -#: src/Gtk/MainWindow.vala:339 +#: src/Gtk/MainWindow.vala:318 msgid "About" msgstr "O programu" -#: src/Gtk/MainWindow.vala:344 +#: src/Gtk/MainWindow.vala:323 msgid "Exit" msgstr "" -#: src/Gtk/MainWindow.vala:412 +#: src/Gtk/MainWindow.vala:391 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Alat za nadogradnju kernela Ubuntu temeljenih distribucija" -#: src/Gtk/MainWindow.vala:413 +#: src/Gtk/MainWindow.vala:392 msgid "Forked" msgstr "Forkano" -#: src/Gtk/MainWindow.vala:413 +#: src/Gtk/MainWindow.vala:392 msgid "Original" msgstr "Izvornik" -#: src/Gtk/MainWindow.vala:451 +#: src/Gtk/MainWindow.vala:430 msgid "Updating cached indexes" msgstr "" -#: src/Gtk/MainWindow.vala:533 +#: src/Gtk/MainWindow.vala:512 msgid "available" msgstr "dostupno" -#: src/Gtk/MainWindow.vala:567 src/Gtk/MainWindow.vala:601 -#: src/Gtk/MainWindow.vala:629 +#: src/Gtk/MainWindow.vala:546 src/Gtk/MainWindow.vala:580 +#: src/Gtk/MainWindow.vala:608 msgid "DONE" msgstr "" diff --git a/po/it.po b/po/it.po index fd97dffb..a683d495 100644 --- a/po/it.po +++ b/po/it.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline 1.0.15\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-08 23:46-0500\n" +"POT-Creation-Date: 2023-03-09 05:17-0500\n" "PO-Revision-Date: 2020-08-22 15:35+0100\n" "Last-Translator: Albano Battistella \n" "Language-Team: Italian\n" @@ -29,99 +29,99 @@ msgstr "Recupero indice in corso..." msgid "Fetching main index from" msgstr "Recupero indice in corso..." -#: src/Common/LinuxKernel.vala:544 +#: src/Common/LinuxKernel.vala:539 msgid "Could not find running kernel in list!" msgstr "Impossibile trovare il kernel in esecuzione nell'elenco!" -#: src/Common/LinuxKernel.vala:550 +#: src/Common/LinuxKernel.vala:545 msgid "Could not find any kernels to uninstall" msgstr "Impossibile trovare alcun kernel da rimuovere" -#: src/Common/LinuxKernel.vala:559 +#: src/Common/LinuxKernel.vala:554 msgid "The following kernels will be uninstalled:" msgstr "I seguenti kernel verranno rimossi:" -#: src/Common/LinuxKernel.vala:563 +#: src/Common/LinuxKernel.vala:558 msgid "Continue ?" msgstr "Continuare ?" -#: src/Common/LinuxKernel.vala:586 src/Console/AppConsole.vala:298 +#: src/Common/LinuxKernel.vala:581 src/Console/AppConsole.vala:298 msgid "Latest update" msgstr "Ultimo aggiornamento" -#: src/Common/LinuxKernel.vala:597 src/Console/AppConsole.vala:305 +#: src/Common/LinuxKernel.vala:592 src/Console/AppConsole.vala:305 msgid "Latest point update" msgstr "Ultimo aggiornamento del punto" -#: src/Common/LinuxKernel.vala:605 src/Console/AppConsole.vala:310 +#: src/Common/LinuxKernel.vala:600 src/Console/AppConsole.vala:310 #: src/Console/AppConsole.vala:365 msgid "No updates found" msgstr "Nessun aggiornamento trovato" -#: src/Common/LinuxKernel.vala:615 +#: src/Common/LinuxKernel.vala:610 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Installare la versione del kernel %s ? (y/n): " -#: src/Common/LinuxKernel.vala:838 +#: src/Common/LinuxKernel.vala:832 msgid "Packages Available" msgstr "Pacchetti disponibili" -#: src/Common/LinuxKernel.vala:843 +#: src/Common/LinuxKernel.vala:837 msgid "Packages Installed" msgstr "Pacchetti installati" -#: src/Common/LinuxKernel.vala:856 src/Utility/TeeJee.FileSystem.vala:136 +#: src/Common/LinuxKernel.vala:850 src/Utility/TeeJee.FileSystem.vala:136 msgid "File not found" msgstr "File non trovato" -#: src/Common/LinuxKernel.vala:920 +#: src/Common/LinuxKernel.vala:915 msgid "Available Kernels" msgstr "Kernel disponibili" -#: src/Common/LinuxKernel.vala:927 src/Gtk/MainWindow.vala:151 +#: src/Common/LinuxKernel.vala:922 src/Gtk/MainWindow.vala:151 msgid "Installed" msgstr "Installato" -#: src/Common/LinuxKernel.vala:927 src/Gtk/MainWindow.vala:151 -#: src/Gtk/MainWindow.vala:523 src/Gtk/MainWindow.vala:537 +#: src/Common/LinuxKernel.vala:922 src/Gtk/MainWindow.vala:151 +#: src/Gtk/MainWindow.vala:502 src/Gtk/MainWindow.vala:516 msgid "Running" msgstr "In esecuzione" -#: src/Common/LinuxKernel.vala:964 +#: src/Common/LinuxKernel.vala:957 msgid "Downloading" msgstr "Download in corso" -#: src/Common/LinuxKernel.vala:983 +#: src/Common/LinuxKernel.vala:976 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:986 +#: src/Common/LinuxKernel.vala:979 msgid "ERROR" msgstr "ERRORE" -#: src/Common/LinuxKernel.vala:1000 +#: src/Common/LinuxKernel.vala:993 msgid "This kernel is already installed." msgstr "Questo kernel è già installato" -#: src/Common/LinuxKernel.vala:1038 +#: src/Common/LinuxKernel.vala:1024 #, fuzzy msgid "Uninstalling selected kernels" msgstr "Disinstalla i kernel specificati" -#: src/Common/LinuxKernel.vala:1044 +#: src/Common/LinuxKernel.vala:1030 msgid "requested" msgstr "" -#: src/Common/LinuxKernel.vala:1047 +#: src/Common/LinuxKernel.vala:1033 msgid "skipping the currently booted kernel" msgstr "" -#: src/Common/LinuxKernel.vala:1063 +#: src/Common/LinuxKernel.vala:1049 msgid "found" msgstr "" -#: src/Common/LinuxKernel.vala:1066 +#: src/Common/LinuxKernel.vala:1052 #, fuzzy msgid "No packages to un-install!" msgstr "Pacchetti installati" @@ -134,15 +134,15 @@ msgstr "Chiamata da" msgid "Notifications are disabled" msgstr "Le notifiche sono disabilitate" -#: src/Common/Main.vala:332 src/Gtk/MainWindow.vala:638 +#: src/Common/Main.vala:332 src/Gtk/MainWindow.vala:617 #, fuzzy msgid "Can not reach" msgstr "Impossibile leggere il file" -#: src/Common/Package.vala:95 -#, c-format +#: src/Common/Package.vala:60 +#, fuzzy, c-format msgid "File not found: %s" -msgstr "File non trovato: %s" +msgstr "File non trovato" #: src/Console/AppConsole.vala:68 src/Gtk/AppGtk.vala:141 msgid "Syntax" @@ -277,7 +277,7 @@ msgid "Kernel %s Available" msgstr "Kernel %s Disponibile" #: src/Console/AppConsole.vala:345 src/Console/AppConsole.vala:357 -#: src/Gtk/MainWindow.vala:282 +#: src/Gtk/MainWindow.vala:261 msgid "Install" msgstr "Installa" @@ -302,60 +302,60 @@ msgstr "Kernel" msgid "Status" msgstr "Stato" -#: src/Gtk/MainWindow.vala:292 +#: src/Gtk/MainWindow.vala:271 msgid "Uninstall" msgstr "Disinstalla" -#: src/Gtk/MainWindow.vala:302 +#: src/Gtk/MainWindow.vala:281 msgid "Changes" msgstr "Modifiche" -#: src/Gtk/MainWindow.vala:323 +#: src/Gtk/MainWindow.vala:302 msgid "Uninstall Old" msgstr "Disinstalla i vecchi" -#: src/Gtk/MainWindow.vala:324 +#: src/Gtk/MainWindow.vala:303 msgid "Uninstall kernels older than running kernel" msgstr "Rimuovere i kernel installati più vecchi del kernel in esecuzione" -#: src/Gtk/MainWindow.vala:329 +#: src/Gtk/MainWindow.vala:308 msgid "Reload" msgstr "" -#: src/Gtk/MainWindow.vala:334 src/Gtk/SettingsDialog.vala:50 +#: src/Gtk/MainWindow.vala:313 src/Gtk/SettingsDialog.vala:50 msgid "Settings" msgstr "Impostazioni" -#: src/Gtk/MainWindow.vala:339 +#: src/Gtk/MainWindow.vala:318 msgid "About" msgstr "Informazioni" -#: src/Gtk/MainWindow.vala:344 +#: src/Gtk/MainWindow.vala:323 msgid "Exit" msgstr "" -#: src/Gtk/MainWindow.vala:412 +#: src/Gtk/MainWindow.vala:391 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Utilità di aggiornamento del kernel per distribuzioni basate su Ubuntu" -#: src/Gtk/MainWindow.vala:413 +#: src/Gtk/MainWindow.vala:392 msgid "Forked" msgstr "Forked" -#: src/Gtk/MainWindow.vala:413 +#: src/Gtk/MainWindow.vala:392 msgid "Original" msgstr "Originale" -#: src/Gtk/MainWindow.vala:451 +#: src/Gtk/MainWindow.vala:430 msgid "Updating cached indexes" msgstr "" -#: src/Gtk/MainWindow.vala:533 +#: src/Gtk/MainWindow.vala:512 msgid "available" msgstr "disponibile" -#: src/Gtk/MainWindow.vala:567 src/Gtk/MainWindow.vala:601 -#: src/Gtk/MainWindow.vala:629 +#: src/Gtk/MainWindow.vala:546 src/Gtk/MainWindow.vala:580 +#: src/Gtk/MainWindow.vala:608 msgid "DONE" msgstr "" diff --git a/po/ko.po b/po/ko.po index cba900da..558f34de 100644 --- a/po/ko.po +++ b/po/ko.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline 1.0.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-08 23:46-0500\n" +"POT-Creation-Date: 2023-03-09 05:17-0500\n" "PO-Revision-Date: 2022-09-28 11:48+0900\n" "Last-Translator: Kevin Kim \n" "Language-Team: Korean\n" @@ -31,99 +31,99 @@ msgstr "목록 가져오기..." msgid "Fetching main index from" msgstr "목록 가져오기..." -#: src/Common/LinuxKernel.vala:544 +#: src/Common/LinuxKernel.vala:539 msgid "Could not find running kernel in list!" msgstr "목록에서 사용중인 커널을 찾을 수 없습니다!" -#: src/Common/LinuxKernel.vala:550 +#: src/Common/LinuxKernel.vala:545 msgid "Could not find any kernels to uninstall" msgstr "삭제할 커널을 찾을 수 없습니다" -#: src/Common/LinuxKernel.vala:559 +#: src/Common/LinuxKernel.vala:554 msgid "The following kernels will be uninstalled:" msgstr "아래 커널이 삭제됩니다:" -#: src/Common/LinuxKernel.vala:563 +#: src/Common/LinuxKernel.vala:558 msgid "Continue ?" msgstr "계속하시겠습니까?" -#: src/Common/LinuxKernel.vala:586 src/Console/AppConsole.vala:298 +#: src/Common/LinuxKernel.vala:581 src/Console/AppConsole.vala:298 msgid "Latest update" msgstr "최신 업데이트" -#: src/Common/LinuxKernel.vala:597 src/Console/AppConsole.vala:305 +#: src/Common/LinuxKernel.vala:592 src/Console/AppConsole.vala:305 msgid "Latest point update" msgstr "최신 포인트 업데이트" -#: src/Common/LinuxKernel.vala:605 src/Console/AppConsole.vala:310 +#: src/Common/LinuxKernel.vala:600 src/Console/AppConsole.vala:310 #: src/Console/AppConsole.vala:365 msgid "No updates found" msgstr "업데이트를 찾을 수 없습니다" -#: src/Common/LinuxKernel.vala:615 +#: src/Common/LinuxKernel.vala:610 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "커널 %s 버전을 설치하시겠습니까? (y/n): " -#: src/Common/LinuxKernel.vala:838 +#: src/Common/LinuxKernel.vala:832 msgid "Packages Available" msgstr "설치 가능한 패키지" -#: src/Common/LinuxKernel.vala:843 +#: src/Common/LinuxKernel.vala:837 msgid "Packages Installed" msgstr "설치된 패키지" -#: src/Common/LinuxKernel.vala:856 src/Utility/TeeJee.FileSystem.vala:136 +#: src/Common/LinuxKernel.vala:850 src/Utility/TeeJee.FileSystem.vala:136 msgid "File not found" msgstr "파일을 찾을 수 없습니다" -#: src/Common/LinuxKernel.vala:920 +#: src/Common/LinuxKernel.vala:915 msgid "Available Kernels" msgstr "설치 가능한 커널" -#: src/Common/LinuxKernel.vala:927 src/Gtk/MainWindow.vala:151 +#: src/Common/LinuxKernel.vala:922 src/Gtk/MainWindow.vala:151 msgid "Installed" msgstr "설치 됨" -#: src/Common/LinuxKernel.vala:927 src/Gtk/MainWindow.vala:151 -#: src/Gtk/MainWindow.vala:523 src/Gtk/MainWindow.vala:537 +#: src/Common/LinuxKernel.vala:922 src/Gtk/MainWindow.vala:151 +#: src/Gtk/MainWindow.vala:502 src/Gtk/MainWindow.vala:516 msgid "Running" msgstr "구동 중" -#: src/Common/LinuxKernel.vala:964 +#: src/Common/LinuxKernel.vala:957 msgid "Downloading" msgstr "다운로드 중" -#: src/Common/LinuxKernel.vala:983 +#: src/Common/LinuxKernel.vala:976 msgid "OK" msgstr "확인" -#: src/Common/LinuxKernel.vala:986 +#: src/Common/LinuxKernel.vala:979 msgid "ERROR" msgstr "오류" -#: src/Common/LinuxKernel.vala:1000 +#: src/Common/LinuxKernel.vala:993 msgid "This kernel is already installed." msgstr "이 커널은 이미 설치되었습니다." -#: src/Common/LinuxKernel.vala:1038 +#: src/Common/LinuxKernel.vala:1024 #, fuzzy msgid "Uninstalling selected kernels" msgstr "지정한 커널 삭제" -#: src/Common/LinuxKernel.vala:1044 +#: src/Common/LinuxKernel.vala:1030 msgid "requested" msgstr "" -#: src/Common/LinuxKernel.vala:1047 +#: src/Common/LinuxKernel.vala:1033 msgid "skipping the currently booted kernel" msgstr "" -#: src/Common/LinuxKernel.vala:1063 +#: src/Common/LinuxKernel.vala:1049 msgid "found" msgstr "" -#: src/Common/LinuxKernel.vala:1066 +#: src/Common/LinuxKernel.vala:1052 #, fuzzy msgid "No packages to un-install!" msgstr "설치된 패키지" @@ -136,15 +136,15 @@ msgstr "에서 호출" msgid "Notifications are disabled" msgstr "알림이 비활성화 되었습니다" -#: src/Common/Main.vala:332 src/Gtk/MainWindow.vala:638 +#: src/Common/Main.vala:332 src/Gtk/MainWindow.vala:617 #, fuzzy msgid "Can not reach" msgstr "파일 읽기를 실패했습니다" -#: src/Common/Package.vala:95 -#, c-format +#: src/Common/Package.vala:60 +#, fuzzy, c-format msgid "File not found: %s" -msgstr "%s 파일을 찾을 수 없습니다" +msgstr "파일을 찾을 수 없습니다" #: src/Console/AppConsole.vala:68 src/Gtk/AppGtk.vala:141 msgid "Syntax" @@ -275,7 +275,7 @@ msgid "Kernel %s Available" msgstr "커널 %s 사용 가능" #: src/Console/AppConsole.vala:345 src/Console/AppConsole.vala:357 -#: src/Gtk/MainWindow.vala:282 +#: src/Gtk/MainWindow.vala:261 msgid "Install" msgstr "설치" @@ -300,60 +300,60 @@ msgstr "커널" msgid "Status" msgstr "상태" -#: src/Gtk/MainWindow.vala:292 +#: src/Gtk/MainWindow.vala:271 msgid "Uninstall" msgstr "삭제" -#: src/Gtk/MainWindow.vala:302 +#: src/Gtk/MainWindow.vala:281 msgid "Changes" msgstr "변경사항" -#: src/Gtk/MainWindow.vala:323 +#: src/Gtk/MainWindow.vala:302 msgid "Uninstall Old" msgstr "오래된 커널 제거" -#: src/Gtk/MainWindow.vala:324 +#: src/Gtk/MainWindow.vala:303 msgid "Uninstall kernels older than running kernel" msgstr "현재 사용 중인 커널보다 이전 버전의 커널을 제거" -#: src/Gtk/MainWindow.vala:329 +#: src/Gtk/MainWindow.vala:308 msgid "Reload" msgstr "" -#: src/Gtk/MainWindow.vala:334 src/Gtk/SettingsDialog.vala:50 +#: src/Gtk/MainWindow.vala:313 src/Gtk/SettingsDialog.vala:50 msgid "Settings" msgstr "설정" -#: src/Gtk/MainWindow.vala:339 +#: src/Gtk/MainWindow.vala:318 msgid "About" msgstr "정보" -#: src/Gtk/MainWindow.vala:344 +#: src/Gtk/MainWindow.vala:323 msgid "Exit" msgstr "" -#: src/Gtk/MainWindow.vala:412 +#: src/Gtk/MainWindow.vala:391 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "우분투 기반 배포판의 커널 업그레이드 도구" -#: src/Gtk/MainWindow.vala:413 +#: src/Gtk/MainWindow.vala:392 msgid "Forked" msgstr "" -#: src/Gtk/MainWindow.vala:413 +#: src/Gtk/MainWindow.vala:392 msgid "Original" msgstr "" -#: src/Gtk/MainWindow.vala:451 +#: src/Gtk/MainWindow.vala:430 msgid "Updating cached indexes" msgstr "" -#: src/Gtk/MainWindow.vala:533 +#: src/Gtk/MainWindow.vala:512 msgid "available" msgstr "사용가능" -#: src/Gtk/MainWindow.vala:567 src/Gtk/MainWindow.vala:601 -#: src/Gtk/MainWindow.vala:629 +#: src/Gtk/MainWindow.vala:546 src/Gtk/MainWindow.vala:580 +#: src/Gtk/MainWindow.vala:608 msgid "DONE" msgstr "" diff --git a/po/messages.pot b/po/messages.pot index 751ca692..5ab97522 100644 --- a/po/messages.pot +++ b/po/messages.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline 1.1.2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-08 23:46-0500\n" +"POT-Creation-Date: 2023-03-09 06:04-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -33,98 +33,98 @@ msgstr "" msgid "Fetching main index from" msgstr "" -#: src/Common/LinuxKernel.vala:544 +#: src/Common/LinuxKernel.vala:539 msgid "Could not find running kernel in list!" msgstr "" -#: src/Common/LinuxKernel.vala:550 +#: src/Common/LinuxKernel.vala:545 msgid "Could not find any kernels to uninstall" msgstr "" -#: src/Common/LinuxKernel.vala:559 +#: src/Common/LinuxKernel.vala:554 msgid "The following kernels will be uninstalled:" msgstr "" -#: src/Common/LinuxKernel.vala:563 +#: src/Common/LinuxKernel.vala:558 msgid "Continue ?" msgstr "" -#: src/Common/LinuxKernel.vala:586 src/Console/AppConsole.vala:298 +#: src/Common/LinuxKernel.vala:581 src/Console/AppConsole.vala:298 msgid "Latest update" msgstr "" -#: src/Common/LinuxKernel.vala:597 src/Console/AppConsole.vala:305 +#: src/Common/LinuxKernel.vala:592 src/Console/AppConsole.vala:305 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:605 src/Console/AppConsole.vala:310 +#: src/Common/LinuxKernel.vala:600 src/Console/AppConsole.vala:310 #: src/Console/AppConsole.vala:365 msgid "No updates found" msgstr "" -#: src/Common/LinuxKernel.vala:615 +#: src/Common/LinuxKernel.vala:610 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "" -#: src/Common/LinuxKernel.vala:838 +#: src/Common/LinuxKernel.vala:832 msgid "Packages Available" msgstr "" -#: src/Common/LinuxKernel.vala:843 +#: src/Common/LinuxKernel.vala:837 msgid "Packages Installed" msgstr "" -#: src/Common/LinuxKernel.vala:856 src/Utility/TeeJee.FileSystem.vala:136 +#: src/Common/LinuxKernel.vala:850 src/Utility/TeeJee.FileSystem.vala:136 msgid "File not found" msgstr "" -#: src/Common/LinuxKernel.vala:920 +#: src/Common/LinuxKernel.vala:915 msgid "Available Kernels" msgstr "" -#: src/Common/LinuxKernel.vala:927 src/Gtk/MainWindow.vala:151 +#: src/Common/LinuxKernel.vala:922 src/Gtk/MainWindow.vala:151 msgid "Installed" msgstr "" -#: src/Common/LinuxKernel.vala:927 src/Gtk/MainWindow.vala:151 -#: src/Gtk/MainWindow.vala:523 src/Gtk/MainWindow.vala:537 +#: src/Common/LinuxKernel.vala:922 src/Gtk/MainWindow.vala:151 +#: src/Gtk/MainWindow.vala:502 src/Gtk/MainWindow.vala:516 msgid "Running" msgstr "" -#: src/Common/LinuxKernel.vala:964 +#: src/Common/LinuxKernel.vala:957 msgid "Downloading" msgstr "" -#: src/Common/LinuxKernel.vala:983 +#: src/Common/LinuxKernel.vala:976 msgid "OK" msgstr "" -#: src/Common/LinuxKernel.vala:986 +#: src/Common/LinuxKernel.vala:979 msgid "ERROR" msgstr "" -#: src/Common/LinuxKernel.vala:1000 +#: src/Common/LinuxKernel.vala:993 msgid "This kernel is already installed." msgstr "" -#: src/Common/LinuxKernel.vala:1038 +#: src/Common/LinuxKernel.vala:1024 msgid "Uninstalling selected kernels" msgstr "" -#: src/Common/LinuxKernel.vala:1044 +#: src/Common/LinuxKernel.vala:1030 msgid "requested" msgstr "" -#: src/Common/LinuxKernel.vala:1047 +#: src/Common/LinuxKernel.vala:1033 msgid "skipping the currently booted kernel" msgstr "" -#: src/Common/LinuxKernel.vala:1063 +#: src/Common/LinuxKernel.vala:1049 msgid "found" msgstr "" -#: src/Common/LinuxKernel.vala:1066 +#: src/Common/LinuxKernel.vala:1052 msgid "No packages to un-install!" msgstr "" @@ -136,11 +136,11 @@ msgstr "" msgid "Notifications are disabled" msgstr "" -#: src/Common/Main.vala:332 src/Gtk/MainWindow.vala:638 +#: src/Common/Main.vala:332 src/Gtk/MainWindow.vala:617 msgid "Can not reach" msgstr "" -#: src/Common/Package.vala:95 +#: src/Common/Package.vala:60 #, c-format msgid "File not found: %s" msgstr "" @@ -273,7 +273,7 @@ msgid "Kernel %s Available" msgstr "" #: src/Console/AppConsole.vala:345 src/Console/AppConsole.vala:357 -#: src/Gtk/MainWindow.vala:282 +#: src/Gtk/MainWindow.vala:261 msgid "Install" msgstr "" @@ -297,60 +297,60 @@ msgstr "" msgid "Status" msgstr "" -#: src/Gtk/MainWindow.vala:292 +#: src/Gtk/MainWindow.vala:271 msgid "Uninstall" msgstr "" -#: src/Gtk/MainWindow.vala:302 +#: src/Gtk/MainWindow.vala:281 msgid "Changes" msgstr "" -#: src/Gtk/MainWindow.vala:323 +#: src/Gtk/MainWindow.vala:302 msgid "Uninstall Old" msgstr "" -#: src/Gtk/MainWindow.vala:324 +#: src/Gtk/MainWindow.vala:303 msgid "Uninstall kernels older than running kernel" msgstr "" -#: src/Gtk/MainWindow.vala:329 +#: src/Gtk/MainWindow.vala:308 msgid "Reload" msgstr "" -#: src/Gtk/MainWindow.vala:334 src/Gtk/SettingsDialog.vala:50 +#: src/Gtk/MainWindow.vala:313 src/Gtk/SettingsDialog.vala:50 msgid "Settings" msgstr "" -#: src/Gtk/MainWindow.vala:339 +#: src/Gtk/MainWindow.vala:318 msgid "About" msgstr "" -#: src/Gtk/MainWindow.vala:344 +#: src/Gtk/MainWindow.vala:323 msgid "Exit" msgstr "" -#: src/Gtk/MainWindow.vala:412 +#: src/Gtk/MainWindow.vala:391 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "" -#: src/Gtk/MainWindow.vala:413 +#: src/Gtk/MainWindow.vala:392 msgid "Forked" msgstr "" -#: src/Gtk/MainWindow.vala:413 +#: src/Gtk/MainWindow.vala:392 msgid "Original" msgstr "" -#: src/Gtk/MainWindow.vala:451 +#: src/Gtk/MainWindow.vala:430 msgid "Updating cached indexes" msgstr "" -#: src/Gtk/MainWindow.vala:533 +#: src/Gtk/MainWindow.vala:512 msgid "available" msgstr "" -#: src/Gtk/MainWindow.vala:567 src/Gtk/MainWindow.vala:601 -#: src/Gtk/MainWindow.vala:629 +#: src/Gtk/MainWindow.vala:546 src/Gtk/MainWindow.vala:580 +#: src/Gtk/MainWindow.vala:608 msgid "DONE" msgstr "" diff --git a/po/nl.po b/po/nl.po index d26d3df2..2d7a1685 100644 --- a/po/nl.po +++ b/po/nl.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-08 23:46-0500\n" +"POT-Creation-Date: 2023-03-09 05:17-0500\n" "PO-Revision-Date: 2020-08-23 13:55+0200\n" "Last-Translator: Heimen Stoffels \n" "Language-Team: Dutch (Netherlands)\n" @@ -31,101 +31,101 @@ msgstr "Bezig met ophalen van index..." msgid "Fetching main index from" msgstr "Bezig met ophalen van index..." -#: src/Common/LinuxKernel.vala:544 +#: src/Common/LinuxKernel.vala:539 msgid "Could not find running kernel in list!" msgstr "De in gebruik zijnde kernel staat niet op de lijst!" -#: src/Common/LinuxKernel.vala:550 +#: src/Common/LinuxKernel.vala:545 #, fuzzy msgid "Could not find any kernels to uninstall" msgstr "Er zijn geen te verwijderen kernels" -#: src/Common/LinuxKernel.vala:559 +#: src/Common/LinuxKernel.vala:554 #, fuzzy msgid "The following kernels will be uninstalled:" msgstr "De volgende kernels worden verwijderd:" -#: src/Common/LinuxKernel.vala:563 +#: src/Common/LinuxKernel.vala:558 msgid "Continue ?" msgstr "Wil je doorgaan?" -#: src/Common/LinuxKernel.vala:586 src/Console/AppConsole.vala:298 +#: src/Common/LinuxKernel.vala:581 src/Console/AppConsole.vala:298 msgid "Latest update" msgstr "Recentste update" -#: src/Common/LinuxKernel.vala:597 src/Console/AppConsole.vala:305 +#: src/Common/LinuxKernel.vala:592 src/Console/AppConsole.vala:305 msgid "Latest point update" msgstr "Recentste puntupdate" -#: src/Common/LinuxKernel.vala:605 src/Console/AppConsole.vala:310 +#: src/Common/LinuxKernel.vala:600 src/Console/AppConsole.vala:310 #: src/Console/AppConsole.vala:365 msgid "No updates found" msgstr "Geen updates gevonden" -#: src/Common/LinuxKernel.vala:615 +#: src/Common/LinuxKernel.vala:610 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Wil je versie %s installeren? (j/n): " -#: src/Common/LinuxKernel.vala:838 +#: src/Common/LinuxKernel.vala:832 msgid "Packages Available" msgstr "Beschikbare pakketten" -#: src/Common/LinuxKernel.vala:843 +#: src/Common/LinuxKernel.vala:837 msgid "Packages Installed" msgstr "Geïnstalleerde pakketten" -#: src/Common/LinuxKernel.vala:856 src/Utility/TeeJee.FileSystem.vala:136 +#: src/Common/LinuxKernel.vala:850 src/Utility/TeeJee.FileSystem.vala:136 msgid "File not found" msgstr "Het bestand is niet gevonden" -#: src/Common/LinuxKernel.vala:920 +#: src/Common/LinuxKernel.vala:915 msgid "Available Kernels" msgstr "Beschikbare kernels" -#: src/Common/LinuxKernel.vala:927 src/Gtk/MainWindow.vala:151 +#: src/Common/LinuxKernel.vala:922 src/Gtk/MainWindow.vala:151 msgid "Installed" msgstr "Geïnstalleerd" -#: src/Common/LinuxKernel.vala:927 src/Gtk/MainWindow.vala:151 -#: src/Gtk/MainWindow.vala:523 src/Gtk/MainWindow.vala:537 +#: src/Common/LinuxKernel.vala:922 src/Gtk/MainWindow.vala:151 +#: src/Gtk/MainWindow.vala:502 src/Gtk/MainWindow.vala:516 msgid "Running" msgstr "In gebruik" -#: src/Common/LinuxKernel.vala:964 +#: src/Common/LinuxKernel.vala:957 msgid "Downloading" msgstr "Bezig met downloaden" -#: src/Common/LinuxKernel.vala:983 +#: src/Common/LinuxKernel.vala:976 msgid "OK" msgstr "Oké" -#: src/Common/LinuxKernel.vala:986 +#: src/Common/LinuxKernel.vala:979 msgid "ERROR" msgstr "FOUT" -#: src/Common/LinuxKernel.vala:1000 +#: src/Common/LinuxKernel.vala:993 msgid "This kernel is already installed." msgstr "Deze kernel is al geïnstalleerd." -#: src/Common/LinuxKernel.vala:1038 +#: src/Common/LinuxKernel.vala:1024 #, fuzzy msgid "Uninstalling selected kernels" msgstr "Opgegeven kernels deïnstalleren" -#: src/Common/LinuxKernel.vala:1044 +#: src/Common/LinuxKernel.vala:1030 msgid "requested" msgstr "" -#: src/Common/LinuxKernel.vala:1047 +#: src/Common/LinuxKernel.vala:1033 msgid "skipping the currently booted kernel" msgstr "" -#: src/Common/LinuxKernel.vala:1063 +#: src/Common/LinuxKernel.vala:1049 msgid "found" msgstr "" -#: src/Common/LinuxKernel.vala:1066 +#: src/Common/LinuxKernel.vala:1052 #, fuzzy msgid "No packages to un-install!" msgstr "Geïnstalleerde pakketten" @@ -138,15 +138,15 @@ msgstr "Aangeroepen door" msgid "Notifications are disabled" msgstr "Meldingen zijn uitgeschakeld" -#: src/Common/Main.vala:332 src/Gtk/MainWindow.vala:638 +#: src/Common/Main.vala:332 src/Gtk/MainWindow.vala:617 #, fuzzy msgid "Can not reach" msgstr "Het bestand kan niet worden uitgelezen" -#: src/Common/Package.vala:95 -#, c-format +#: src/Common/Package.vala:60 +#, fuzzy, c-format msgid "File not found: %s" -msgstr "Bestand niet gevonden: %s" +msgstr "Het bestand is niet gevonden" #: src/Console/AppConsole.vala:68 src/Gtk/AppGtk.vala:141 msgid "Syntax" @@ -283,7 +283,7 @@ msgid "Kernel %s Available" msgstr "Kernel %s is beschikbaar" #: src/Console/AppConsole.vala:345 src/Console/AppConsole.vala:357 -#: src/Gtk/MainWindow.vala:282 +#: src/Gtk/MainWindow.vala:261 msgid "Install" msgstr "Installeren" @@ -308,63 +308,63 @@ msgstr "Kernel" msgid "Status" msgstr "Status" -#: src/Gtk/MainWindow.vala:292 +#: src/Gtk/MainWindow.vala:271 #, fuzzy msgid "Uninstall" msgstr "Installeren" -#: src/Gtk/MainWindow.vala:302 +#: src/Gtk/MainWindow.vala:281 msgid "Changes" msgstr "Wijzigingen" -#: src/Gtk/MainWindow.vala:323 +#: src/Gtk/MainWindow.vala:302 #, fuzzy msgid "Uninstall Old" msgstr "Deïnstalleren voltooid" -#: src/Gtk/MainWindow.vala:324 +#: src/Gtk/MainWindow.vala:303 #, fuzzy msgid "Uninstall kernels older than running kernel" msgstr "Geïnstalleerde kernels verwijderen die ouder zijn dan de huidige" -#: src/Gtk/MainWindow.vala:329 +#: src/Gtk/MainWindow.vala:308 msgid "Reload" msgstr "" -#: src/Gtk/MainWindow.vala:334 src/Gtk/SettingsDialog.vala:50 +#: src/Gtk/MainWindow.vala:313 src/Gtk/SettingsDialog.vala:50 msgid "Settings" msgstr "Instellingen" -#: src/Gtk/MainWindow.vala:339 +#: src/Gtk/MainWindow.vala:318 msgid "About" msgstr "Over" -#: src/Gtk/MainWindow.vala:344 +#: src/Gtk/MainWindow.vala:323 msgid "Exit" msgstr "" -#: src/Gtk/MainWindow.vala:412 +#: src/Gtk/MainWindow.vala:391 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Een kernelupgradehulpmiddel voor op Ubuntu gebaseerde distributies" -#: src/Gtk/MainWindow.vala:413 +#: src/Gtk/MainWindow.vala:392 msgid "Forked" msgstr "Geforkt" -#: src/Gtk/MainWindow.vala:413 +#: src/Gtk/MainWindow.vala:392 msgid "Original" msgstr "Origineel" -#: src/Gtk/MainWindow.vala:451 +#: src/Gtk/MainWindow.vala:430 msgid "Updating cached indexes" msgstr "" -#: src/Gtk/MainWindow.vala:533 +#: src/Gtk/MainWindow.vala:512 msgid "available" msgstr "beschikbaar" -#: src/Gtk/MainWindow.vala:567 src/Gtk/MainWindow.vala:601 -#: src/Gtk/MainWindow.vala:629 +#: src/Gtk/MainWindow.vala:546 src/Gtk/MainWindow.vala:580 +#: src/Gtk/MainWindow.vala:608 msgid "DONE" msgstr "" diff --git a/po/pl.po b/po/pl.po index bd679f69..a6aed6d6 100644 --- a/po/pl.po +++ b/po/pl.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-08 23:46-0500\n" +"POT-Creation-Date: 2023-03-09 05:17-0500\n" "PO-Revision-Date: 2023-03-08 23:39+0100\n" "Last-Translator: Matthaiks\n" "Language-Team: Polish\n" @@ -28,98 +28,98 @@ msgstr "Pobieranie indywidualnych indeksów jądra..." msgid "Fetching main index from" msgstr "Pobieranie głównego indeksu" -#: src/Common/LinuxKernel.vala:544 +#: src/Common/LinuxKernel.vala:539 msgid "Could not find running kernel in list!" msgstr "Nie można znaleźć uruchomionego jądra na liście!" -#: src/Common/LinuxKernel.vala:550 +#: src/Common/LinuxKernel.vala:545 msgid "Could not find any kernels to uninstall" msgstr "Nie można znaleźć żadnych jąder do odinstalowania" -#: src/Common/LinuxKernel.vala:559 +#: src/Common/LinuxKernel.vala:554 msgid "The following kernels will be uninstalled:" msgstr "Następujące jądra zostaną odinstalowane:" -#: src/Common/LinuxKernel.vala:563 +#: src/Common/LinuxKernel.vala:558 msgid "Continue ?" msgstr "Kontynuować?" -#: src/Common/LinuxKernel.vala:586 src/Console/AppConsole.vala:298 +#: src/Common/LinuxKernel.vala:581 src/Console/AppConsole.vala:298 msgid "Latest update" msgstr "Najnowsza aktualizacja" -#: src/Common/LinuxKernel.vala:597 src/Console/AppConsole.vala:305 +#: src/Common/LinuxKernel.vala:592 src/Console/AppConsole.vala:305 msgid "Latest point update" msgstr "Najnowsza aktualizacja punktowa" -#: src/Common/LinuxKernel.vala:605 src/Console/AppConsole.vala:310 +#: src/Common/LinuxKernel.vala:600 src/Console/AppConsole.vala:310 #: src/Console/AppConsole.vala:365 msgid "No updates found" msgstr "Nie znaleziono aktualizacji" -#: src/Common/LinuxKernel.vala:615 +#: src/Common/LinuxKernel.vala:610 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Zainstalować wersję jądra %s? (t/n): " -#: src/Common/LinuxKernel.vala:838 +#: src/Common/LinuxKernel.vala:832 msgid "Packages Available" msgstr "Dostępne pakiety" -#: src/Common/LinuxKernel.vala:843 +#: src/Common/LinuxKernel.vala:837 msgid "Packages Installed" msgstr "Pakiety zainstalowane" -#: src/Common/LinuxKernel.vala:856 src/Utility/TeeJee.FileSystem.vala:136 +#: src/Common/LinuxKernel.vala:850 src/Utility/TeeJee.FileSystem.vala:136 msgid "File not found" msgstr "Nie odnaleziono pliku" -#: src/Common/LinuxKernel.vala:920 +#: src/Common/LinuxKernel.vala:915 msgid "Available Kernels" msgstr "Dostępne jądra" -#: src/Common/LinuxKernel.vala:927 src/Gtk/MainWindow.vala:151 +#: src/Common/LinuxKernel.vala:922 src/Gtk/MainWindow.vala:151 msgid "Installed" msgstr "Zainstalowane" -#: src/Common/LinuxKernel.vala:927 src/Gtk/MainWindow.vala:151 -#: src/Gtk/MainWindow.vala:523 src/Gtk/MainWindow.vala:537 +#: src/Common/LinuxKernel.vala:922 src/Gtk/MainWindow.vala:151 +#: src/Gtk/MainWindow.vala:502 src/Gtk/MainWindow.vala:516 msgid "Running" msgstr "Uruchomione" -#: src/Common/LinuxKernel.vala:964 +#: src/Common/LinuxKernel.vala:957 msgid "Downloading" msgstr "Pobieranie" -#: src/Common/LinuxKernel.vala:983 +#: src/Common/LinuxKernel.vala:976 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:986 +#: src/Common/LinuxKernel.vala:979 msgid "ERROR" msgstr "BŁĄD" -#: src/Common/LinuxKernel.vala:1000 +#: src/Common/LinuxKernel.vala:993 msgid "This kernel is already installed." msgstr "To jądro jest już zainstalowane." -#: src/Common/LinuxKernel.vala:1038 +#: src/Common/LinuxKernel.vala:1024 msgid "Uninstalling selected kernels" msgstr "Odinstalowanie wybranych jąder" -#: src/Common/LinuxKernel.vala:1044 +#: src/Common/LinuxKernel.vala:1030 msgid "requested" msgstr "zażądane" -#: src/Common/LinuxKernel.vala:1047 +#: src/Common/LinuxKernel.vala:1033 msgid "skipping the currently booted kernel" msgstr "pominięcie aktualnie uruchomionego jądra" -#: src/Common/LinuxKernel.vala:1063 +#: src/Common/LinuxKernel.vala:1049 msgid "found" msgstr "znalezione" -#: src/Common/LinuxKernel.vala:1066 +#: src/Common/LinuxKernel.vala:1052 msgid "No packages to un-install!" msgstr "Brak pakietów do odinstalowania!" @@ -131,14 +131,14 @@ msgstr "Wywołano z" msgid "Notifications are disabled" msgstr "Powiadomienia są wyłączone" -#: src/Common/Main.vala:332 src/Gtk/MainWindow.vala:638 +#: src/Common/Main.vala:332 src/Gtk/MainWindow.vala:617 msgid "Can not reach" msgstr "Nie można dotrzeć" -#: src/Common/Package.vala:95 -#, c-format +#: src/Common/Package.vala:60 +#, fuzzy, c-format msgid "File not found: %s" -msgstr "Nie odnaleziono pliku: %s" +msgstr "Nie odnaleziono pliku" #: src/Console/AppConsole.vala:68 src/Gtk/AppGtk.vala:141 msgid "Syntax" @@ -270,7 +270,7 @@ msgid "Kernel %s Available" msgstr "Dostępne %s jądra" #: src/Console/AppConsole.vala:345 src/Console/AppConsole.vala:357 -#: src/Gtk/MainWindow.vala:282 +#: src/Gtk/MainWindow.vala:261 msgid "Install" msgstr "Zainstaluj" @@ -294,60 +294,60 @@ msgstr "Jądro" msgid "Status" msgstr "Status" -#: src/Gtk/MainWindow.vala:292 +#: src/Gtk/MainWindow.vala:271 msgid "Uninstall" msgstr "Odinstaluj" -#: src/Gtk/MainWindow.vala:302 +#: src/Gtk/MainWindow.vala:281 msgid "Changes" msgstr "Zmiany" -#: src/Gtk/MainWindow.vala:323 +#: src/Gtk/MainWindow.vala:302 msgid "Uninstall Old" msgstr "Odinstaluj stare" -#: src/Gtk/MainWindow.vala:324 +#: src/Gtk/MainWindow.vala:303 msgid "Uninstall kernels older than running kernel" msgstr "Odinstaluj jądra starsze niż działające jądro" -#: src/Gtk/MainWindow.vala:329 +#: src/Gtk/MainWindow.vala:308 msgid "Reload" msgstr "Załaduj ponownie" -#: src/Gtk/MainWindow.vala:334 src/Gtk/SettingsDialog.vala:50 +#: src/Gtk/MainWindow.vala:313 src/Gtk/SettingsDialog.vala:50 msgid "Settings" msgstr "Ustawienia" -#: src/Gtk/MainWindow.vala:339 +#: src/Gtk/MainWindow.vala:318 msgid "About" msgstr "O programie" -#: src/Gtk/MainWindow.vala:344 +#: src/Gtk/MainWindow.vala:323 msgid "Exit" msgstr "Wyjdź" -#: src/Gtk/MainWindow.vala:412 +#: src/Gtk/MainWindow.vala:391 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Narzędzie uaktualniania jądra dla dystrybucji z rodziny Ubuntu" -#: src/Gtk/MainWindow.vala:413 +#: src/Gtk/MainWindow.vala:392 msgid "Forked" msgstr "Sforkowane" -#: src/Gtk/MainWindow.vala:413 +#: src/Gtk/MainWindow.vala:392 msgid "Original" msgstr "Oryginalne" -#: src/Gtk/MainWindow.vala:451 +#: src/Gtk/MainWindow.vala:430 msgid "Updating cached indexes" msgstr "Aktualizowanie indeksów w pamięci podręcznej" -#: src/Gtk/MainWindow.vala:533 +#: src/Gtk/MainWindow.vala:512 msgid "available" msgstr "dostępne" -#: src/Gtk/MainWindow.vala:567 src/Gtk/MainWindow.vala:601 -#: src/Gtk/MainWindow.vala:629 +#: src/Gtk/MainWindow.vala:546 src/Gtk/MainWindow.vala:580 +#: src/Gtk/MainWindow.vala:608 msgid "DONE" msgstr "GOTOWE" diff --git a/po/ru.po b/po/ru.po index e07d5303..0dc9af36 100644 --- a/po/ru.po +++ b/po/ru.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-08 23:46-0500\n" +"POT-Creation-Date: 2023-03-09 05:17-0500\n" "PO-Revision-Date: 2023-03-01 20:22+0300\n" "Last-Translator: Faust3000 (Original) | Danik2343 (Update Transaltion) " "\n" @@ -32,99 +32,99 @@ msgstr "Получение сведений..." msgid "Fetching main index from" msgstr "Получение сведений..." -#: src/Common/LinuxKernel.vala:544 +#: src/Common/LinuxKernel.vala:539 msgid "Could not find running kernel in list!" msgstr "Не удалось найти запущенное ядро в списке!" -#: src/Common/LinuxKernel.vala:550 +#: src/Common/LinuxKernel.vala:545 msgid "Could not find any kernels to uninstall" msgstr "Не удалось найти ядра для деинсталляции" -#: src/Common/LinuxKernel.vala:559 +#: src/Common/LinuxKernel.vala:554 msgid "The following kernels will be uninstalled:" msgstr "Следующие ядра будут деинсталлированы:" -#: src/Common/LinuxKernel.vala:563 +#: src/Common/LinuxKernel.vala:558 msgid "Continue ?" msgstr "Продолжить ?" -#: src/Common/LinuxKernel.vala:586 src/Console/AppConsole.vala:298 +#: src/Common/LinuxKernel.vala:581 src/Console/AppConsole.vala:298 msgid "Latest update" msgstr "Последнее обновление" -#: src/Common/LinuxKernel.vala:597 src/Console/AppConsole.vala:305 +#: src/Common/LinuxKernel.vala:592 src/Console/AppConsole.vala:305 msgid "Latest point update" msgstr "Последнее обновление пунктов" -#: src/Common/LinuxKernel.vala:605 src/Console/AppConsole.vala:310 +#: src/Common/LinuxKernel.vala:600 src/Console/AppConsole.vala:310 #: src/Console/AppConsole.vala:365 msgid "No updates found" msgstr "Обновлений не найдено" -#: src/Common/LinuxKernel.vala:615 +#: src/Common/LinuxKernel.vala:610 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Установить версию ядра %s ? (y/n): " -#: src/Common/LinuxKernel.vala:838 +#: src/Common/LinuxKernel.vala:832 msgid "Packages Available" msgstr "Доступные пакеты" -#: src/Common/LinuxKernel.vala:843 +#: src/Common/LinuxKernel.vala:837 msgid "Packages Installed" msgstr "Установленные пакеты" -#: src/Common/LinuxKernel.vala:856 src/Utility/TeeJee.FileSystem.vala:136 +#: src/Common/LinuxKernel.vala:850 src/Utility/TeeJee.FileSystem.vala:136 msgid "File not found" msgstr "Файл не найден" -#: src/Common/LinuxKernel.vala:920 +#: src/Common/LinuxKernel.vala:915 msgid "Available Kernels" msgstr "Доступные ядра" -#: src/Common/LinuxKernel.vala:927 src/Gtk/MainWindow.vala:151 +#: src/Common/LinuxKernel.vala:922 src/Gtk/MainWindow.vala:151 msgid "Installed" msgstr "Установлено" -#: src/Common/LinuxKernel.vala:927 src/Gtk/MainWindow.vala:151 -#: src/Gtk/MainWindow.vala:523 src/Gtk/MainWindow.vala:537 +#: src/Common/LinuxKernel.vala:922 src/Gtk/MainWindow.vala:151 +#: src/Gtk/MainWindow.vala:502 src/Gtk/MainWindow.vala:516 msgid "Running" msgstr "Используется" -#: src/Common/LinuxKernel.vala:964 +#: src/Common/LinuxKernel.vala:957 msgid "Downloading" msgstr "Загрузка" -#: src/Common/LinuxKernel.vala:983 +#: src/Common/LinuxKernel.vala:976 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:986 +#: src/Common/LinuxKernel.vala:979 msgid "ERROR" msgstr "ОШИБКА" -#: src/Common/LinuxKernel.vala:1000 +#: src/Common/LinuxKernel.vala:993 msgid "This kernel is already installed." msgstr "Это ядро уже установлено." -#: src/Common/LinuxKernel.vala:1038 +#: src/Common/LinuxKernel.vala:1024 #, fuzzy msgid "Uninstalling selected kernels" msgstr "Установить указанное ядро" -#: src/Common/LinuxKernel.vala:1044 +#: src/Common/LinuxKernel.vala:1030 msgid "requested" msgstr "" -#: src/Common/LinuxKernel.vala:1047 +#: src/Common/LinuxKernel.vala:1033 msgid "skipping the currently booted kernel" msgstr "" -#: src/Common/LinuxKernel.vala:1063 +#: src/Common/LinuxKernel.vala:1049 msgid "found" msgstr "" -#: src/Common/LinuxKernel.vala:1066 +#: src/Common/LinuxKernel.vala:1052 #, fuzzy msgid "No packages to un-install!" msgstr "Установленные пакеты" @@ -137,14 +137,14 @@ msgstr "Вызван из" msgid "Notifications are disabled" msgstr "Уведомления отключены" -#: src/Common/Main.vala:332 src/Gtk/MainWindow.vala:638 +#: src/Common/Main.vala:332 src/Gtk/MainWindow.vala:617 msgid "Can not reach" msgstr "" -#: src/Common/Package.vala:95 -#, c-format +#: src/Common/Package.vala:60 +#, fuzzy, c-format msgid "File not found: %s" -msgstr "Файл не найден: %s" +msgstr "Файл не найден" #: src/Console/AppConsole.vala:68 src/Gtk/AppGtk.vala:141 msgid "Syntax" @@ -277,7 +277,7 @@ msgid "Kernel %s Available" msgstr "Доступно ядро %s" #: src/Console/AppConsole.vala:345 src/Console/AppConsole.vala:357 -#: src/Gtk/MainWindow.vala:282 +#: src/Gtk/MainWindow.vala:261 msgid "Install" msgstr "Установить" @@ -302,60 +302,60 @@ msgstr "Ядро" msgid "Status" msgstr "Состояние" -#: src/Gtk/MainWindow.vala:292 +#: src/Gtk/MainWindow.vala:271 msgid "Uninstall" msgstr "Удалить" -#: src/Gtk/MainWindow.vala:302 +#: src/Gtk/MainWindow.vala:281 msgid "Changes" msgstr "Изменения" -#: src/Gtk/MainWindow.vala:323 +#: src/Gtk/MainWindow.vala:302 msgid "Uninstall Old" msgstr "Удалить старые" -#: src/Gtk/MainWindow.vala:324 +#: src/Gtk/MainWindow.vala:303 msgid "Uninstall kernels older than running kernel" msgstr "Удалить более старшие установленные ядра, чем используемое" -#: src/Gtk/MainWindow.vala:329 +#: src/Gtk/MainWindow.vala:308 msgid "Reload" msgstr "" -#: src/Gtk/MainWindow.vala:334 src/Gtk/SettingsDialog.vala:50 +#: src/Gtk/MainWindow.vala:313 src/Gtk/SettingsDialog.vala:50 msgid "Settings" msgstr "Настройки" -#: src/Gtk/MainWindow.vala:339 +#: src/Gtk/MainWindow.vala:318 msgid "About" msgstr "О программе" -#: src/Gtk/MainWindow.vala:344 +#: src/Gtk/MainWindow.vala:323 msgid "Exit" msgstr "" -#: src/Gtk/MainWindow.vala:412 +#: src/Gtk/MainWindow.vala:391 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Программа обновления ядра для дистрибутивов на базе Ubuntu" -#: src/Gtk/MainWindow.vala:413 +#: src/Gtk/MainWindow.vala:392 msgid "Forked" msgstr "Форк" -#: src/Gtk/MainWindow.vala:413 +#: src/Gtk/MainWindow.vala:392 msgid "Original" msgstr "Оригинал" -#: src/Gtk/MainWindow.vala:451 +#: src/Gtk/MainWindow.vala:430 msgid "Updating cached indexes" msgstr "" -#: src/Gtk/MainWindow.vala:533 +#: src/Gtk/MainWindow.vala:512 msgid "available" msgstr "доступно" -#: src/Gtk/MainWindow.vala:567 src/Gtk/MainWindow.vala:601 -#: src/Gtk/MainWindow.vala:629 +#: src/Gtk/MainWindow.vala:546 src/Gtk/MainWindow.vala:580 +#: src/Gtk/MainWindow.vala:608 msgid "DONE" msgstr "" diff --git a/po/sv.po b/po/sv.po index 6908e212..2baa8fb3 100644 --- a/po/sv.po +++ b/po/sv.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-08 23:46-0500\n" +"POT-Creation-Date: 2023-03-09 05:17-0500\n" "PO-Revision-Date: 2018-01-13 16:56+0100\n" "Last-Translator: Åke Engelbrektson \n" "Language-Team:Swedish\n" @@ -32,102 +32,102 @@ msgstr "Hämtar index för" msgid "Fetching main index from" msgstr "Hämtar index för" -#: src/Common/LinuxKernel.vala:544 +#: src/Common/LinuxKernel.vala:539 #, fuzzy msgid "Could not find running kernel in list!" msgstr "Kunde inte hitta efterfrågad version" -#: src/Common/LinuxKernel.vala:550 +#: src/Common/LinuxKernel.vala:545 #, fuzzy msgid "Could not find any kernels to uninstall" msgstr "Välj kärnor för borttagning" -#: src/Common/LinuxKernel.vala:559 +#: src/Common/LinuxKernel.vala:554 #, fuzzy msgid "The following kernels will be uninstalled:" msgstr "Denna kärna är redan installerad" -#: src/Common/LinuxKernel.vala:563 +#: src/Common/LinuxKernel.vala:558 msgid "Continue ?" msgstr "" -#: src/Common/LinuxKernel.vala:586 src/Console/AppConsole.vala:298 +#: src/Common/LinuxKernel.vala:581 src/Console/AppConsole.vala:298 msgid "Latest update" msgstr "" -#: src/Common/LinuxKernel.vala:597 src/Console/AppConsole.vala:305 +#: src/Common/LinuxKernel.vala:592 src/Console/AppConsole.vala:305 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:605 src/Console/AppConsole.vala:310 +#: src/Common/LinuxKernel.vala:600 src/Console/AppConsole.vala:310 #: src/Console/AppConsole.vala:365 msgid "No updates found" msgstr "Inga uppdateringar hittades" -#: src/Common/LinuxKernel.vala:615 +#: src/Common/LinuxKernel.vala:610 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "" -#: src/Common/LinuxKernel.vala:838 +#: src/Common/LinuxKernel.vala:832 msgid "Packages Available" msgstr "Tillgängliga paket" -#: src/Common/LinuxKernel.vala:843 +#: src/Common/LinuxKernel.vala:837 msgid "Packages Installed" msgstr "Installerade paket" -#: src/Common/LinuxKernel.vala:856 src/Utility/TeeJee.FileSystem.vala:136 +#: src/Common/LinuxKernel.vala:850 src/Utility/TeeJee.FileSystem.vala:136 msgid "File not found" msgstr "Filen kan inte hittas" -#: src/Common/LinuxKernel.vala:920 +#: src/Common/LinuxKernel.vala:915 msgid "Available Kernels" msgstr "Tillgängliga kärnor" -#: src/Common/LinuxKernel.vala:927 src/Gtk/MainWindow.vala:151 +#: src/Common/LinuxKernel.vala:922 src/Gtk/MainWindow.vala:151 msgid "Installed" msgstr "Installerad" -#: src/Common/LinuxKernel.vala:927 src/Gtk/MainWindow.vala:151 -#: src/Gtk/MainWindow.vala:523 src/Gtk/MainWindow.vala:537 +#: src/Common/LinuxKernel.vala:922 src/Gtk/MainWindow.vala:151 +#: src/Gtk/MainWindow.vala:502 src/Gtk/MainWindow.vala:516 msgid "Running" msgstr "Körs" -#: src/Common/LinuxKernel.vala:964 +#: src/Common/LinuxKernel.vala:957 msgid "Downloading" msgstr "Laddar ner" -#: src/Common/LinuxKernel.vala:983 +#: src/Common/LinuxKernel.vala:976 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:986 +#: src/Common/LinuxKernel.vala:979 msgid "ERROR" msgstr "FEL" -#: src/Common/LinuxKernel.vala:1000 +#: src/Common/LinuxKernel.vala:993 msgid "This kernel is already installed." msgstr "Denna kärna är redan installerad" -#: src/Common/LinuxKernel.vala:1038 +#: src/Common/LinuxKernel.vala:1024 #, fuzzy msgid "Uninstalling selected kernels" msgstr "Installera specificerad kärna" -#: src/Common/LinuxKernel.vala:1044 +#: src/Common/LinuxKernel.vala:1030 msgid "requested" msgstr "" -#: src/Common/LinuxKernel.vala:1047 +#: src/Common/LinuxKernel.vala:1033 msgid "skipping the currently booted kernel" msgstr "" -#: src/Common/LinuxKernel.vala:1063 +#: src/Common/LinuxKernel.vala:1049 msgid "found" msgstr "" -#: src/Common/LinuxKernel.vala:1066 +#: src/Common/LinuxKernel.vala:1052 #, fuzzy msgid "No packages to un-install!" msgstr "Installerade paket" @@ -141,15 +141,15 @@ msgstr "" msgid "Notifications are disabled" msgstr "Avisering" -#: src/Common/Main.vala:332 src/Gtk/MainWindow.vala:638 +#: src/Common/Main.vala:332 src/Gtk/MainWindow.vala:617 #, fuzzy msgid "Can not reach" msgstr "Kunde inte läsa filen" -#: src/Common/Package.vala:95 -#, c-format +#: src/Common/Package.vala:60 +#, fuzzy, c-format msgid "File not found: %s" -msgstr "Filen kunde inte hittas: %s" +msgstr "Filen kan inte hittas" #: src/Console/AppConsole.vala:68 src/Gtk/AppGtk.vala:141 msgid "Syntax" @@ -290,7 +290,7 @@ msgid "Kernel %s Available" msgstr "Tillgängliga paket" #: src/Console/AppConsole.vala:345 src/Console/AppConsole.vala:357 -#: src/Gtk/MainWindow.vala:282 +#: src/Gtk/MainWindow.vala:261 msgid "Install" msgstr "Installera" @@ -315,64 +315,64 @@ msgstr "Kärna" msgid "Status" msgstr "Status" -#: src/Gtk/MainWindow.vala:292 +#: src/Gtk/MainWindow.vala:271 #, fuzzy msgid "Uninstall" msgstr "Installera" -#: src/Gtk/MainWindow.vala:302 +#: src/Gtk/MainWindow.vala:281 msgid "Changes" msgstr "Ändringar" -#: src/Gtk/MainWindow.vala:323 +#: src/Gtk/MainWindow.vala:302 #, fuzzy msgid "Uninstall Old" msgstr "Avinstallation slutförd" -#: src/Gtk/MainWindow.vala:324 +#: src/Gtk/MainWindow.vala:303 #, fuzzy msgid "Uninstall kernels older than running kernel" msgstr "Ta bort installerade kärnor äldre än den som körs" -#: src/Gtk/MainWindow.vala:329 +#: src/Gtk/MainWindow.vala:308 msgid "Reload" msgstr "" -#: src/Gtk/MainWindow.vala:334 src/Gtk/SettingsDialog.vala:50 +#: src/Gtk/MainWindow.vala:313 src/Gtk/SettingsDialog.vala:50 msgid "Settings" msgstr "Inställningar" -#: src/Gtk/MainWindow.vala:339 +#: src/Gtk/MainWindow.vala:318 msgid "About" msgstr "Om" -#: src/Gtk/MainWindow.vala:344 +#: src/Gtk/MainWindow.vala:323 msgid "Exit" msgstr "" -#: src/Gtk/MainWindow.vala:412 +#: src/Gtk/MainWindow.vala:391 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Kärnuppgraderingsverktyg för Ubuntu-baserade distributioner" -#: src/Gtk/MainWindow.vala:413 +#: src/Gtk/MainWindow.vala:392 msgid "Forked" msgstr "" -#: src/Gtk/MainWindow.vala:413 +#: src/Gtk/MainWindow.vala:392 msgid "Original" msgstr "" -#: src/Gtk/MainWindow.vala:451 +#: src/Gtk/MainWindow.vala:430 msgid "Updating cached indexes" msgstr "" -#: src/Gtk/MainWindow.vala:533 +#: src/Gtk/MainWindow.vala:512 #, fuzzy msgid "available" msgstr "Tillgängliga paket" -#: src/Gtk/MainWindow.vala:567 src/Gtk/MainWindow.vala:601 -#: src/Gtk/MainWindow.vala:629 +#: src/Gtk/MainWindow.vala:546 src/Gtk/MainWindow.vala:580 +#: src/Gtk/MainWindow.vala:608 msgid "DONE" msgstr "" diff --git a/po/tr.po b/po/tr.po index 9d589471..c0a768ca 100644 --- a/po/tr.po +++ b/po/tr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-08 23:46-0500\n" +"POT-Creation-Date: 2023-03-09 05:17-0500\n" "PO-Revision-Date: 2022-08-06 16:48+0300\n" "Last-Translator: Sabri Ünal \n" "Language-Team: Turkish\n" @@ -31,100 +31,100 @@ msgstr "İçerik dizini alınıyor..." msgid "Fetching main index from" msgstr "İçerik dizini alınıyor..." -#: src/Common/LinuxKernel.vala:544 +#: src/Common/LinuxKernel.vala:539 msgid "Could not find running kernel in list!" msgstr "Çalışan sürüm listede bulunamadı!" -#: src/Common/LinuxKernel.vala:550 +#: src/Common/LinuxKernel.vala:545 msgid "Could not find any kernels to uninstall" msgstr "Kaldırılacak çekirdek bulunamadı" -#: src/Common/LinuxKernel.vala:559 +#: src/Common/LinuxKernel.vala:554 msgid "The following kernels will be uninstalled:" msgstr "Aşağıdaki çekirdekler kaldırılacak:" -#: src/Common/LinuxKernel.vala:563 +#: src/Common/LinuxKernel.vala:558 msgid "Continue ?" msgstr "Devam edilsin mi?" -#: src/Common/LinuxKernel.vala:586 src/Console/AppConsole.vala:298 +#: src/Common/LinuxKernel.vala:581 src/Console/AppConsole.vala:298 msgid "Latest update" msgstr "Son güncelleme" # Point burada point release anlamında kullanılıyor. Örneğin 5.10.x sayısının en sonundaki x rakamı point release/nokta sürüm oluyor. -#: src/Common/LinuxKernel.vala:597 src/Console/AppConsole.vala:305 +#: src/Common/LinuxKernel.vala:592 src/Console/AppConsole.vala:305 msgid "Latest point update" msgstr "Son nokta güncellemesi" -#: src/Common/LinuxKernel.vala:605 src/Console/AppConsole.vala:310 +#: src/Common/LinuxKernel.vala:600 src/Console/AppConsole.vala:310 #: src/Console/AppConsole.vala:365 msgid "No updates found" msgstr "Güncelleme bulunamadı" -#: src/Common/LinuxKernel.vala:615 +#: src/Common/LinuxKernel.vala:610 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Linux Çekirdek Sürümü %s Kurulsun mu? (e/h): " -#: src/Common/LinuxKernel.vala:838 +#: src/Common/LinuxKernel.vala:832 msgid "Packages Available" msgstr "Mevcut Paketler" -#: src/Common/LinuxKernel.vala:843 +#: src/Common/LinuxKernel.vala:837 msgid "Packages Installed" msgstr "Kurulu Paketler" -#: src/Common/LinuxKernel.vala:856 src/Utility/TeeJee.FileSystem.vala:136 +#: src/Common/LinuxKernel.vala:850 src/Utility/TeeJee.FileSystem.vala:136 msgid "File not found" msgstr "Dosya bulunamadı" -#: src/Common/LinuxKernel.vala:920 +#: src/Common/LinuxKernel.vala:915 msgid "Available Kernels" msgstr "Mevcut Çekirdekler" -#: src/Common/LinuxKernel.vala:927 src/Gtk/MainWindow.vala:151 +#: src/Common/LinuxKernel.vala:922 src/Gtk/MainWindow.vala:151 msgid "Installed" msgstr "Kurulu" -#: src/Common/LinuxKernel.vala:927 src/Gtk/MainWindow.vala:151 -#: src/Gtk/MainWindow.vala:523 src/Gtk/MainWindow.vala:537 +#: src/Common/LinuxKernel.vala:922 src/Gtk/MainWindow.vala:151 +#: src/Gtk/MainWindow.vala:502 src/Gtk/MainWindow.vala:516 msgid "Running" msgstr "Çalışıyor" -#: src/Common/LinuxKernel.vala:964 +#: src/Common/LinuxKernel.vala:957 msgid "Downloading" msgstr "İndiriliyor" -#: src/Common/LinuxKernel.vala:983 +#: src/Common/LinuxKernel.vala:976 msgid "OK" msgstr "Tamam" -#: src/Common/LinuxKernel.vala:986 +#: src/Common/LinuxKernel.vala:979 msgid "ERROR" msgstr "HATA" -#: src/Common/LinuxKernel.vala:1000 +#: src/Common/LinuxKernel.vala:993 msgid "This kernel is already installed." msgstr "Bu çekirdek zaten kurulu." -#: src/Common/LinuxKernel.vala:1038 +#: src/Common/LinuxKernel.vala:1024 #, fuzzy msgid "Uninstalling selected kernels" msgstr "Belirtilen çekirdeğini kaldır" -#: src/Common/LinuxKernel.vala:1044 +#: src/Common/LinuxKernel.vala:1030 msgid "requested" msgstr "" -#: src/Common/LinuxKernel.vala:1047 +#: src/Common/LinuxKernel.vala:1033 msgid "skipping the currently booted kernel" msgstr "" -#: src/Common/LinuxKernel.vala:1063 +#: src/Common/LinuxKernel.vala:1049 msgid "found" msgstr "" -#: src/Common/LinuxKernel.vala:1066 +#: src/Common/LinuxKernel.vala:1052 #, fuzzy msgid "No packages to un-install!" msgstr "Kurulu Paketler" @@ -137,15 +137,15 @@ msgstr "Çağrı konumu" msgid "Notifications are disabled" msgstr "Bildirimler devre dışı bırakılmış" -#: src/Common/Main.vala:332 src/Gtk/MainWindow.vala:638 +#: src/Common/Main.vala:332 src/Gtk/MainWindow.vala:617 #, fuzzy msgid "Can not reach" msgstr "Dosya okunamadı" -#: src/Common/Package.vala:95 -#, c-format +#: src/Common/Package.vala:60 +#, fuzzy, c-format msgid "File not found: %s" -msgstr "%s dosyası bulunamadı" +msgstr "Dosya bulunamadı" #: src/Console/AppConsole.vala:68 src/Gtk/AppGtk.vala:141 msgid "Syntax" @@ -278,7 +278,7 @@ msgid "Kernel %s Available" msgstr "Çekirdek %s Kullanılabilir" #: src/Console/AppConsole.vala:345 src/Console/AppConsole.vala:357 -#: src/Gtk/MainWindow.vala:282 +#: src/Gtk/MainWindow.vala:261 msgid "Install" msgstr "Kur" @@ -303,60 +303,60 @@ msgstr "Çekirdek" msgid "Status" msgstr "Durum" -#: src/Gtk/MainWindow.vala:292 +#: src/Gtk/MainWindow.vala:271 msgid "Uninstall" msgstr "Kaldır" -#: src/Gtk/MainWindow.vala:302 +#: src/Gtk/MainWindow.vala:281 msgid "Changes" msgstr "Değişiklikler" -#: src/Gtk/MainWindow.vala:323 +#: src/Gtk/MainWindow.vala:302 msgid "Uninstall Old" msgstr "Eskileri Kaldır" -#: src/Gtk/MainWindow.vala:324 +#: src/Gtk/MainWindow.vala:303 msgid "Uninstall kernels older than running kernel" msgstr "Çalışan çekirdekten daha eski çekirdekleri kaldır" -#: src/Gtk/MainWindow.vala:329 +#: src/Gtk/MainWindow.vala:308 msgid "Reload" msgstr "" -#: src/Gtk/MainWindow.vala:334 src/Gtk/SettingsDialog.vala:50 +#: src/Gtk/MainWindow.vala:313 src/Gtk/SettingsDialog.vala:50 msgid "Settings" msgstr "Ayarlar" -#: src/Gtk/MainWindow.vala:339 +#: src/Gtk/MainWindow.vala:318 msgid "About" msgstr "Hakkında" -#: src/Gtk/MainWindow.vala:344 +#: src/Gtk/MainWindow.vala:323 msgid "Exit" msgstr "" -#: src/Gtk/MainWindow.vala:412 +#: src/Gtk/MainWindow.vala:391 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Ubuntu tabanlı dağıtımlar için çekirdek güncelleme aracı" -#: src/Gtk/MainWindow.vala:413 +#: src/Gtk/MainWindow.vala:392 msgid "Forked" msgstr "Çatallandı" -#: src/Gtk/MainWindow.vala:413 +#: src/Gtk/MainWindow.vala:392 msgid "Original" msgstr "Özgün" -#: src/Gtk/MainWindow.vala:451 +#: src/Gtk/MainWindow.vala:430 msgid "Updating cached indexes" msgstr "" -#: src/Gtk/MainWindow.vala:533 +#: src/Gtk/MainWindow.vala:512 msgid "available" msgstr "mevcut" -#: src/Gtk/MainWindow.vala:567 src/Gtk/MainWindow.vala:601 -#: src/Gtk/MainWindow.vala:629 +#: src/Gtk/MainWindow.vala:546 src/Gtk/MainWindow.vala:580 +#: src/Gtk/MainWindow.vala:608 msgid "DONE" msgstr "" diff --git a/po/uk.po b/po/uk.po index 339444e9..0d4c32c1 100644 --- a/po/uk.po +++ b/po/uk.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-08 23:46-0500\n" +"POT-Creation-Date: 2023-03-09 05:17-0500\n" "PO-Revision-Date: 2019-07-25 11:00+0300\n" "Last-Translator: Serhii Golovko \n" "Language-Team: Ukranian\n" @@ -29,98 +29,98 @@ msgstr "Отримання окремих індексів ядра..." msgid "Fetching main index from" msgstr "Отримання основного індексу з" -#: src/Common/LinuxKernel.vala:544 +#: src/Common/LinuxKernel.vala:539 msgid "Could not find running kernel in list!" msgstr "Не вдалося знайти запущене ядро у списку!" -#: src/Common/LinuxKernel.vala:550 +#: src/Common/LinuxKernel.vala:545 msgid "Could not find any kernels to uninstall" msgstr "Не вдалося знайти жодне ядро для вилучення" -#: src/Common/LinuxKernel.vala:559 +#: src/Common/LinuxKernel.vala:554 msgid "The following kernels will be uninstalled:" msgstr "Наступні ядра будуть видалені:" -#: src/Common/LinuxKernel.vala:563 +#: src/Common/LinuxKernel.vala:558 msgid "Continue ?" msgstr "Продовжувати ?" -#: src/Common/LinuxKernel.vala:586 src/Console/AppConsole.vala:298 +#: src/Common/LinuxKernel.vala:581 src/Console/AppConsole.vala:298 msgid "Latest update" msgstr "Останнє оновлення" -#: src/Common/LinuxKernel.vala:597 src/Console/AppConsole.vala:305 +#: src/Common/LinuxKernel.vala:592 src/Console/AppConsole.vala:305 msgid "Latest point update" msgstr "Остання точка оновлення" -#: src/Common/LinuxKernel.vala:605 src/Console/AppConsole.vala:310 +#: src/Common/LinuxKernel.vala:600 src/Console/AppConsole.vala:310 #: src/Console/AppConsole.vala:365 msgid "No updates found" msgstr "Оновлень не знайдено" -#: src/Common/LinuxKernel.vala:615 +#: src/Common/LinuxKernel.vala:610 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Встановити Ядро Версії %s ? (так/ні): " -#: src/Common/LinuxKernel.vala:838 +#: src/Common/LinuxKernel.vala:832 msgid "Packages Available" msgstr "Доступні пакети" -#: src/Common/LinuxKernel.vala:843 +#: src/Common/LinuxKernel.vala:837 msgid "Packages Installed" msgstr "Встановлені пакети" -#: src/Common/LinuxKernel.vala:856 src/Utility/TeeJee.FileSystem.vala:136 +#: src/Common/LinuxKernel.vala:850 src/Utility/TeeJee.FileSystem.vala:136 msgid "File not found" msgstr "Файл не знайдено" -#: src/Common/LinuxKernel.vala:920 +#: src/Common/LinuxKernel.vala:915 msgid "Available Kernels" msgstr "Доступні ядра" -#: src/Common/LinuxKernel.vala:927 src/Gtk/MainWindow.vala:151 +#: src/Common/LinuxKernel.vala:922 src/Gtk/MainWindow.vala:151 msgid "Installed" msgstr "Встановлено" -#: src/Common/LinuxKernel.vala:927 src/Gtk/MainWindow.vala:151 -#: src/Gtk/MainWindow.vala:523 src/Gtk/MainWindow.vala:537 +#: src/Common/LinuxKernel.vala:922 src/Gtk/MainWindow.vala:151 +#: src/Gtk/MainWindow.vala:502 src/Gtk/MainWindow.vala:516 msgid "Running" msgstr "Використовується" -#: src/Common/LinuxKernel.vala:964 +#: src/Common/LinuxKernel.vala:957 msgid "Downloading" msgstr "Завантаження" -#: src/Common/LinuxKernel.vala:983 +#: src/Common/LinuxKernel.vala:976 msgid "OK" msgstr "Добре" -#: src/Common/LinuxKernel.vala:986 +#: src/Common/LinuxKernel.vala:979 msgid "ERROR" msgstr "ПОМИЛКА" -#: src/Common/LinuxKernel.vala:1000 +#: src/Common/LinuxKernel.vala:993 msgid "This kernel is already installed." msgstr "Це ядро вже встановлено." -#: src/Common/LinuxKernel.vala:1038 +#: src/Common/LinuxKernel.vala:1024 msgid "Uninstalling selected kernels" msgstr "Видаліть конкретні ядра" -#: src/Common/LinuxKernel.vala:1044 +#: src/Common/LinuxKernel.vala:1030 msgid "requested" msgstr "запитуваний" -#: src/Common/LinuxKernel.vala:1047 +#: src/Common/LinuxKernel.vala:1033 msgid "skipping the currently booted kernel" msgstr "пропускаючи поточне завантажене ядро" -#: src/Common/LinuxKernel.vala:1063 +#: src/Common/LinuxKernel.vala:1049 msgid "found" msgstr "знайдено" -#: src/Common/LinuxKernel.vala:1066 +#: src/Common/LinuxKernel.vala:1052 #, fuzzy msgid "No packages to un-install!" msgstr "Встановлені пакети" @@ -133,14 +133,14 @@ msgstr "Викликано з" msgid "Notifications are disabled" msgstr "Повідомлення вимкнено" -#: src/Common/Main.vala:332 src/Gtk/MainWindow.vala:638 +#: src/Common/Main.vala:332 src/Gtk/MainWindow.vala:617 msgid "Can not reach" msgstr "Не може дістатися" -#: src/Common/Package.vala:95 -#, c-format +#: src/Common/Package.vala:60 +#, fuzzy, c-format msgid "File not found: %s" -msgstr "Файл не знайдено: %s" +msgstr "Файл не знайдено" #: src/Console/AppConsole.vala:68 src/Gtk/AppGtk.vala:141 msgid "Syntax" @@ -271,7 +271,7 @@ msgid "Kernel %s Available" msgstr "Ядро %s Доступне" #: src/Console/AppConsole.vala:345 src/Console/AppConsole.vala:357 -#: src/Gtk/MainWindow.vala:282 +#: src/Gtk/MainWindow.vala:261 msgid "Install" msgstr "Встановити" @@ -296,60 +296,60 @@ msgstr "Ядро" msgid "Status" msgstr "Стан" -#: src/Gtk/MainWindow.vala:292 +#: src/Gtk/MainWindow.vala:271 msgid "Uninstall" msgstr "Видалити" -#: src/Gtk/MainWindow.vala:302 +#: src/Gtk/MainWindow.vala:281 msgid "Changes" msgstr "Зміни" -#: src/Gtk/MainWindow.vala:323 +#: src/Gtk/MainWindow.vala:302 msgid "Uninstall Old" msgstr "Видалити старе" -#: src/Gtk/MainWindow.vala:324 +#: src/Gtk/MainWindow.vala:303 msgid "Uninstall kernels older than running kernel" msgstr "Видалити ядра, старіші за запущене ядро" -#: src/Gtk/MainWindow.vala:329 +#: src/Gtk/MainWindow.vala:308 msgid "Reload" msgstr "Перезавантажити" -#: src/Gtk/MainWindow.vala:334 src/Gtk/SettingsDialog.vala:50 +#: src/Gtk/MainWindow.vala:313 src/Gtk/SettingsDialog.vala:50 msgid "Settings" msgstr "Налаштування" -#: src/Gtk/MainWindow.vala:339 +#: src/Gtk/MainWindow.vala:318 msgid "About" msgstr "Про программу" -#: src/Gtk/MainWindow.vala:344 +#: src/Gtk/MainWindow.vala:323 msgid "Exit" msgstr "Вихід" -#: src/Gtk/MainWindow.vala:412 +#: src/Gtk/MainWindow.vala:391 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Програма оновлення ядра для дистрибутивів на базі Ubuntu" -#: src/Gtk/MainWindow.vala:413 +#: src/Gtk/MainWindow.vala:392 msgid "Forked" msgstr "Двоєний" -#: src/Gtk/MainWindow.vala:413 +#: src/Gtk/MainWindow.vala:392 msgid "Original" msgstr "Оригінал" -#: src/Gtk/MainWindow.vala:451 +#: src/Gtk/MainWindow.vala:430 msgid "Updating cached indexes" msgstr "Оновлення кешованих індексів" -#: src/Gtk/MainWindow.vala:533 +#: src/Gtk/MainWindow.vala:512 msgid "available" msgstr "доступний" -#: src/Gtk/MainWindow.vala:567 src/Gtk/MainWindow.vala:601 -#: src/Gtk/MainWindow.vala:629 +#: src/Gtk/MainWindow.vala:546 src/Gtk/MainWindow.vala:580 +#: src/Gtk/MainWindow.vala:608 msgid "DONE" msgstr "ГОТОВО" diff --git a/settings.md b/settings.md index d0471881..27098e57 100644 --- a/settings.md +++ b/settings.md @@ -4,7 +4,7 @@ **\[ \] Notify if a major release is available** **\[ \] Notify if a point release is available** **Check every \[#\] \[units\]** -Starts a background process that peridodically checks for new kernels and sends a desktop notification if a kernel is available that you don't have installed yet. +Starts a background process that periodically checks for new kernels and sends a desktop notification if a kernel is available that you don't have installed yet. The monitor is installed in your desktop autostart folder such that it is started in the background any time you log in. It is removed by unselecting both checkboxes. diff --git a/src/Common/DownloadManager.vala b/src/Common/DownloadManager.vala index 3dc7409f..db621cdd 100644 --- a/src/Common/DownloadManager.vala +++ b/src/Common/DownloadManager.vala @@ -222,13 +222,13 @@ public class DownloadItem : GLib.Object public DownloadTask task = null; - public string file_path{ + public string file_path { owned get { return download_dir+"/"+file_name; } } - public string gid_key{ + public string gid_key { owned get { return gid.substring(0,6);; } diff --git a/src/Common/LinuxKernel.vala b/src/Common/LinuxKernel.vala index 123b5d2a..bdbcdb35 100644 --- a/src/Common/LinuxKernel.vala +++ b/src/Common/LinuxKernel.vala @@ -389,14 +389,10 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { var pkg_versions = new Gee.ArrayList(); foreach (var pkg in pkg_list_installed.values) { - if (pkg.pname.contains("linux-image")) { - if (!pkg_versions.contains(pkg.version_installed)) { + pkg_versions.add(pkg.version); + if (pkg.pname.contains("linux-image-")) log_msg("Found installed : "+pkg.version); - pkg_versions.add(pkg.version_installed); - - log_msg("Found installed" + ": %s".printf(pkg.version_installed)); - - string pkern_name = pkg.version_installed; + string pkern_name = pkg.version; var pkern = new LinuxKernel(pkern_name, false); pkern.is_installed = true; pkern.set_apt_pkg_list(); @@ -411,12 +407,11 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { } if (!found) kernel_list.add(pkern); - } - } } foreach (string pkg_version in pkg_versions) { foreach (var k in kernel_list) { + // FIXME doesn't always match if (k.version_package == pkg_version) k.is_installed = true; } } @@ -634,8 +629,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { kernel_oldest_installed = new LinuxKernel.from_version(RUNNING_KERNEL); foreach (var pkg in pkg_list_installed.values) { - if (!pkg.pname.contains("linux-image") || !pkg.is_installed) continue; - var candidate = new LinuxKernel(pkg.version_installed, false); + var candidate = new LinuxKernel(pkg.version, false); if (candidate.version_maj < kernel_oldest_installed.version_maj) kernel_oldest_installed = candidate; } @@ -764,7 +758,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { public void set_apt_pkg_list() { foreach(var pkg in pkg_list_installed.values) { if (!pkg.pname.has_prefix("linux-")) continue; - if (pkg.version_installed == kver) { + if (pkg.version == kver) { apt_pkg_list[pkg.pname] = pkg.pname; log_debug("Package: %s".printf(pkg.pname)); } @@ -868,7 +862,8 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { foreach(string line in txt.split("\n")) { if (rex.match(line, 0, out match)) { - string file_name = match.fetch(2); + + string file_name = Path.get_basename (match.fetch(2)); string file_uri = "%s%s".printf(page_uri, match.fetch(1)); bool add = false; @@ -940,7 +935,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { } public static bool download_kernels(Gee.ArrayList selected_kernels) { - foreach(var kern in selected_kernels) kern.download_packages(); + foreach (var kern in selected_kernels) kern.download_packages(); return true; } @@ -955,9 +950,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { string dl_dir = cache_subdir; string file_path = "%s/%s".printf(dl_dir, file_name); - if (file_exists(file_path) && !file_exists(file_path + ".aria2c")) { - continue; - } + if (file_exists(file_path) && !file_exists(file_path + ".aria2c")) continue; dir_create(dl_dir); @@ -1012,18 +1005,11 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { // full paths instead of env -C // https://github.com/bkw777/mainline/issues/128 - foreach(string file_name in deb_list.keys) { - flist += " '%s/%s'".printf(cache_subdir,file_name); - log_debug("kinst() flist += %s/%s".printf(cache_subdir,file_name)); - } - + foreach (string file_name in deb_list.keys) flist += " '"+cache_subdir+"/"+file_name+"'"; string cmd = "pkexec env DISPLAY=${DISPLAY} XAUTHORITY=${XAUTHORITY} dpkg --install "+flist; - status = Posix.system(cmd); ok = (status == 0); - - // TODO blergh, get the arch subdir seperated out of file_name - dir_delete(cache_subdir+"/"+NATIVE_ARCH); + foreach (string file_name in deb_list.keys) file_delete(cache_subdir+"/"+file_name); } diff --git a/src/Common/Package.vala b/src/Common/Package.vala index 4dc51864..925d33c5 100644 --- a/src/Common/Package.vala +++ b/src/Common/Package.vala @@ -4,16 +4,12 @@ using TeeJee.ProcessHelper; using TeeJee.Misc; public class Package : GLib.Object { - public string id = ""; public string pname = ""; public string arch = ""; public string version = ""; - public string version_installed = ""; public bool is_installed = false; - public static string NATIVE_ARCH = ""; - public static void initialize() { } @@ -21,46 +17,20 @@ public class Package : GLib.Object { pname = _name; } - public static string get_id(string _name, string _arch) { - log_debug("get_id("+_name+","+_arch+")"); - string str = ""; - str = "%s".printf(_name); - if (check_if_foreign(_arch)){ - str = str + ":%s".printf(_arch); // make it unique - } - return str; - } - - public static bool check_if_foreign(string architecture) { - log_debug("check_if_foreign("+architecture+")"); - if ((architecture.length > 0) && (architecture != NATIVE_ARCH) && (architecture != "all") && (architecture != "any")) { - return true; - } else { - return false; - } - } - public static Gee.HashMap query_installed_packages() { log_debug("query_installed_packages()"); - var list = new Gee.HashMap(); + // get installed packages from dpkg -------------- string t_dir = create_tmp_dir(); string t_file = get_temp_file_path(t_dir); - - // get installed packages from aptitude -------------- - string std_out, std_err; - exec_sync("aptitude search --disable-columns -F '%p|%v' '?installed'", out std_out, out std_err); + exec_sync("dpkg-query -f '${Package}|${Version}|${Architecture}|${db:Status-Abbrev}\n' -W 'linux-image-*' 'linux-modules-*' 'linux-headers-*'", out std_out, out std_err); file_write(t_file, std_out); -/* -linux-headers-5.6.10-050610|5.6.10-050610.202005052153 -linux-headers-5.6.10-050610-generic|5.6.10-050610.202005052153 -linux-image-unsigned-5.3.0-51-generic|5.3.0-51.44 -linux-image-unsigned-5.6.10-050610-generic|5.6.10-050610.202005052153 -*/ + // parse ------------------------ + var list = new Gee.HashMap(); try { string line; var file = File.new_for_path (t_file); @@ -68,27 +38,22 @@ linux-image-unsigned-5.6.10-050610-generic|5.6.10-050610.202005052153 var dis = new DataInputStream (file.read()); while ((line = dis.read_line (null)) != null) { string[] arr = line.split("|"); - if (arr.length != 2) continue; + if (arr.length != 4) continue; + if (arr[3].substring(1,1) != "i" ) continue; + + string name = arr[0].strip(); + string vers = arr[1].strip(); + string arch = arr[2].strip(); - string pname = arr[0].strip(); - string arch = (pname.contains(":")) ? pname.split(":")[1].strip() : ""; - if (pname.contains(":")) { pname = pname.split(":")[0]; } - string version = arr[1].strip(); + if (arch != LinuxKernel.NATIVE_ARCH && arch != "all" && arch != "any") continue; - string id = Package.get_id(pname,arch); + var pkg = new Package(name); + pkg.version = vers; + pkg.arch = arch; + list[name] = pkg; - Package pkg = null; - if (!list.has_key(id)) { - pkg = new Package(pname); - pkg.arch = arch; - pkg.id = Package.get_id(pkg.pname,pkg.arch); - list[pkg.id] = pkg; - } + //log_debug("pkg: "+pkg.pname+"|"+pkg.version+"|"+pkg.arch); - if (pkg != null){ - pkg.is_installed = true; - pkg.version_installed = version; - } } } else { @@ -98,7 +63,6 @@ linux-image-unsigned-5.6.10-050610-generic|5.6.10-050610.202005052153 catch (Error e) { log_error (e.message); } - file_delete(t_file); dir_delete(t_dir); return list; } diff --git a/src/Console/AppConsole.vala b/src/Console/AppConsole.vala index 15f391e3..a265e821 100644 --- a/src/Console/AppConsole.vala +++ b/src/Console/AppConsole.vala @@ -267,7 +267,7 @@ public class AppConsole : GLib.Object { switch(cmd){ case "--download": return LinuxKernel.download_kernels(list); - + case "--remove": // back compat case "--uninstall": return LinuxKernel.kunin_list(list); @@ -277,7 +277,7 @@ public class AppConsole : GLib.Object { } break; - + default: // unknown option log_error(_("Command not specified")); diff --git a/src/Gtk/MainWindow.vala b/src/Gtk/MainWindow.vala index 05e99d27..4aa8bc35 100644 --- a/src/Gtk/MainWindow.vala +++ b/src/Gtk/MainWindow.vala @@ -151,23 +151,8 @@ public class MainWindow : Gtk.Window { ((Gtk.CellRendererText) cell).text = kern.is_running ? _("Running") : (kern.is_installed ? _("Installed") : ""); }); - //column - col = new TreeViewColumn(); - col.title = ""; - tv.append_column(col); - - //cell text - cellText = new CellRendererText(); - cellText.width = 10; - cellText.ellipsize = Pango.EllipsizeMode.END; - col.pack_start (cellText, false); - - col.set_cell_data_func (cellText, (cell_layout, cell, model, iter)=>{ - bool odd_row; - model.get (iter, 2, out odd_row, -1); - }); - tv.set_tooltip_column(3); + } private void tv_row_activated(TreePath path, TreeViewColumn column) { @@ -231,17 +216,11 @@ public class MainWindow : Gtk.Window { model.append(out iter); model.set (iter, 0, kern); - if (kern.is_mainline){ - if (kern.is_unstable){ - model.set (iter, 1, pix_mainline_rc); - } - else{ - model.set (iter, 1, pix_mainline); - } - } - else{ - model.set (iter, 1, pix_ubuntu); + if (kern.is_mainline) { + if (kern.is_unstable) model.set (iter, 1, pix_mainline_rc); + else model.set (iter, 1, pix_mainline); } + else model.set (iter, 1, pix_ubuntu); model.set (iter, 2, odd_row); model.set (iter, 3, kern.tooltip_text()); diff --git a/src/Gtk/ProgressWindow.vala b/src/Gtk/ProgressWindow.vala index 3a736853..47cd3bbb 100644 --- a/src/Gtk/ProgressWindow.vala +++ b/src/Gtk/ProgressWindow.vala @@ -141,19 +141,16 @@ public class ProgressWindow : Gtk.Window { // common - public void update_message(string msg){ - - if (msg.length > 0){ - lbl_msg.label = msg; - } + public void update_message(string msg) { + if (msg.length > 0) lbl_msg.label = msg; } - public void update_status_line(bool clear = false){ + public void update_status_line(bool clear = false) { - if (clear){ + if (clear) { lbl_status.label = ""; } - else{ + else { lbl_status.label = App.status_line; } From 059b6021e1ac53bcc991be6e20d33f63e102fa3d Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Fri, 10 Mar 2023 09:46:47 -0500 Subject: [PATCH 257/567] check_installed(), load_index(), update_progress_window(), notify install button --- .deb_build_number.mak | 2 +- BRANDING.mak | 2 +- debian/changelog | 9 + po/de.po | 269 +++++++++---------- po/el.po | 271 +++++++++---------- po/es.po | 270 +++++++++---------- po/fr.po | 273 +++++++++---------- po/hr.po | 269 +++++++++---------- po/it.po | 269 +++++++++---------- po/ko.po | 269 +++++++++---------- po/messages.pot | 264 +++++++++---------- po/nl.po | 273 +++++++++---------- po/pl.po | 271 +++++++++---------- po/ru.po | 269 +++++++++---------- po/sv.po | 271 ++++++++++--------- po/tr.po | 271 +++++++++---------- po/uk.po | 271 +++++++++---------- src/Common/DownloadManager.vala | 24 +- src/Common/LinuxKernel.vala | 364 +++++++++++++------------- src/Common/Main.vala | 33 +-- src/Common/OSDNotify.vala | 12 +- src/Common/Package.vala | 20 +- src/Console/AppConsole.vala | 55 ++-- src/Gtk/AppGtk.vala | 20 +- src/Gtk/MainWindow.vala | 50 ++-- src/Gtk/ProgressWindow.vala | 6 +- src/Gtk/SettingsDialog.vala | 71 ++--- src/Gtk/TerminalWindow.vala | 28 +- src/Utility/AsyncTask.vala | 56 ++-- src/Utility/TeeJee.FileSystem.vala | 68 ++--- src/Utility/TeeJee.Logging.vala | 57 ++-- src/Utility/TeeJee.Misc.vala | 15 +- src/Utility/TeeJee.ProcessHelper.vala | 4 +- src/Utility/TeeJee.System.vala | 9 +- 34 files changed, 2301 insertions(+), 2384 deletions(-) diff --git a/.deb_build_number.mak b/.deb_build_number.mak index 29a85ae7..11206f19 100644 --- a/.deb_build_number.mak +++ b/.deb_build_number.mak @@ -1,3 +1,3 @@ # This file is generated by Makefile "make deb_build_number" -DEB_PKG_VERSION := 1.1.3 +DEB_PKG_VERSION := 1.1.4 DEB_BUILD_NUMBER := 0000 diff --git a/BRANDING.mak b/BRANDING.mak index 3e0dedb5..e47080be 100644 --- a/BRANDING.mak +++ b/BRANDING.mak @@ -3,7 +3,7 @@ VERSION_MAJOR = 1 VERSION_MINOR = 1 -VERSION_MICRO = 3 +VERSION_MICRO = 4 BRANDING_SHORTNAME = mainline BRANDING_LONGNAME = Ubuntu Mainline Kernel Installer BRANDING_AUTHORNAME = Brian K. White diff --git a/debian/changelog b/debian/changelog index 41c111b2..4b7ec273 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,12 @@ +mainline (1.1.4) unstable; urgency=medium + + * fix name/version matching for installed non-mainline packages + fixes https://github.com/bkw777/mainline/issues/141 + * fix the progress window progress indication + * don't update_dpkg_list() twice for no reason + + -- Brian K. White Fri, 10 Mar 2023 02:03:35 -0500 + mainline (1.1.3) unstable; urgency=medium * Removed aptitude dependency. Now only needs dpkg. diff --git a/po/de.po b/po/de.po index b90d1d10..8f573998 100644 --- a/po/de.po +++ b/po/de.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-09 05:17-0500\n" +"POT-Creation-Date: 2023-03-10 09:00-0500\n" "PO-Revision-Date: 2023-02-20 18:40+0100\n" "Last-Translator: Marvin Meysel \n" "Language-Team: German\n" @@ -21,348 +21,348 @@ msgstr "Distribution" msgid "Architecture" msgstr "Architektur" -#: src/Common/LinuxKernel.vala:283 +#: src/Common/LinuxKernel.vala:282 #, fuzzy -msgid "Fetching individual kernel indexes..." +msgid "Fetching individual kernel indexes" msgstr "Index abrufen..." #: src/Common/LinuxKernel.vala:327 -#, fuzzy -msgid "Fetching main index from" -msgstr "Index abrufen..." - -#: src/Common/LinuxKernel.vala:539 -msgid "Could not find running kernel in list!" -msgstr "Konnte keinen laufenden Kernel in der Liste finden!" - -#: src/Common/LinuxKernel.vala:545 -msgid "Could not find any kernels to uninstall" -msgstr "Es konnten keine Kernel zum Deinstallieren gefunden werden" - -#: src/Common/LinuxKernel.vala:554 -msgid "The following kernels will be uninstalled:" -msgstr "Die folgenden Kernel werden deinstalliert:" - -#: src/Common/LinuxKernel.vala:558 -msgid "Continue ?" -msgstr "Weiter ?" - -#: src/Common/LinuxKernel.vala:581 src/Console/AppConsole.vala:298 -msgid "Latest update" -msgstr "Neustes Update" - -#: src/Common/LinuxKernel.vala:592 src/Console/AppConsole.vala:305 -msgid "Latest point update" -msgstr "Letzte Punktaktualisierung" - -#: src/Common/LinuxKernel.vala:600 src/Console/AppConsole.vala:310 -#: src/Console/AppConsole.vala:365 -msgid "No updates found" -msgstr "Keine Updates gefunden" - -#: src/Common/LinuxKernel.vala:610 -#, c-format -msgid "Install Kernel Version %s ? (y/n): " -msgstr "Kernel-Version %s installieren? (j/n):" +msgid "Updating from" +msgstr "" -#: src/Common/LinuxKernel.vala:832 +#: src/Common/LinuxKernel.vala:736 msgid "Packages Available" msgstr "Verfügbare Pakete" -#: src/Common/LinuxKernel.vala:837 +#: src/Common/LinuxKernel.vala:741 msgid "Packages Installed" msgstr "Installierte Pakete" -#: src/Common/LinuxKernel.vala:850 src/Utility/TeeJee.FileSystem.vala:136 +#: src/Common/LinuxKernel.vala:754 src/Utility/TeeJee.FileSystem.vala:136 msgid "File not found" msgstr "Datei nicht gefunden " -#: src/Common/LinuxKernel.vala:915 +#: src/Common/LinuxKernel.vala:819 msgid "Available Kernels" msgstr "Verfügbare Kernel" -#: src/Common/LinuxKernel.vala:922 src/Gtk/MainWindow.vala:151 +#: src/Common/LinuxKernel.vala:826 src/Gtk/MainWindow.vala:158 msgid "Installed" msgstr "Installiert" -#: src/Common/LinuxKernel.vala:922 src/Gtk/MainWindow.vala:151 -#: src/Gtk/MainWindow.vala:502 src/Gtk/MainWindow.vala:516 +#: src/Common/LinuxKernel.vala:826 src/Gtk/MainWindow.vala:158 +#: src/Gtk/MainWindow.vala:504 src/Gtk/MainWindow.vala:517 msgid "Running" msgstr "Läuft" -#: src/Common/LinuxKernel.vala:957 +#: src/Common/LinuxKernel.vala:861 msgid "Downloading" msgstr "Herunterladen" -#: src/Common/LinuxKernel.vala:976 +#: src/Common/LinuxKernel.vala:880 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:979 +#: src/Common/LinuxKernel.vala:883 msgid "ERROR" msgstr "Fehler" -#: src/Common/LinuxKernel.vala:993 +#: src/Common/LinuxKernel.vala:897 msgid "This kernel is already installed." msgstr "Dieser Kernel ist bereits installiert." -#: src/Common/LinuxKernel.vala:1024 +#: src/Common/LinuxKernel.vala:927 #, fuzzy msgid "Uninstalling selected kernels" msgstr "Deinstallation des angegebenen Kernels" -#: src/Common/LinuxKernel.vala:1030 +#: src/Common/LinuxKernel.vala:933 msgid "requested" msgstr "" -#: src/Common/LinuxKernel.vala:1033 +#: src/Common/LinuxKernel.vala:936 msgid "skipping the currently booted kernel" msgstr "" -#: src/Common/LinuxKernel.vala:1049 +#: src/Common/LinuxKernel.vala:952 msgid "found" msgstr "" -#: src/Common/LinuxKernel.vala:1052 +#: src/Common/LinuxKernel.vala:955 #, fuzzy msgid "No packages to un-install!" msgstr "Installierte Pakete" -#: src/Common/Main.vala:259 +#: src/Common/LinuxKernel.vala:994 +#, fuzzy +msgid "Could not find running kernel in list" +msgstr "Konnte keinen laufenden Kernel in der Liste finden!" + +#: src/Common/LinuxKernel.vala:1000 +msgid "Could not find any kernels to uninstall" +msgstr "Es konnten keine Kernel zum Deinstallieren gefunden werden" + +#: src/Common/LinuxKernel.vala:1009 +msgid "The following kernels will be uninstalled:" +msgstr "Die folgenden Kernel werden deinstalliert:" + +#: src/Common/LinuxKernel.vala:1013 +msgid "Continue ?" +msgstr "Weiter ?" + +#: src/Common/LinuxKernel.vala:1036 src/Console/AppConsole.vala:291 +msgid "Latest update" +msgstr "Neustes Update" + +#: src/Common/LinuxKernel.vala:1047 src/Console/AppConsole.vala:298 +msgid "Latest point update" +msgstr "Letzte Punktaktualisierung" + +#: src/Common/LinuxKernel.vala:1055 src/Console/AppConsole.vala:303 +#: src/Console/AppConsole.vala:358 +msgid "No updates found" +msgstr "Keine Updates gefunden" + +#: src/Common/LinuxKernel.vala:1064 +#, c-format +msgid "Install Kernel Version %s ? (y/n): " +msgstr "Kernel-Version %s installieren? (j/n):" + +#: src/Common/Main.vala:253 msgid "Called from" msgstr "Angerufen von" -#: src/Common/Main.vala:293 +#: src/Common/Main.vala:287 msgid "Notifications are disabled" msgstr "Benachrichtigungen sind deaktiviert" -#: src/Common/Main.vala:332 src/Gtk/MainWindow.vala:617 +#: src/Common/Main.vala:325 src/Gtk/MainWindow.vala:615 #, fuzzy msgid "Can not reach" msgstr "Fehler beim lesen der Datei" -#: src/Common/Package.vala:60 +#: src/Common/Package.vala:57 #, fuzzy, c-format msgid "File not found: %s" msgstr "Datei nicht gefunden " -#: src/Console/AppConsole.vala:68 src/Gtk/AppGtk.vala:141 +#: src/Console/AppConsole.vala:62 src/Gtk/AppGtk.vala:143 msgid "Syntax" msgstr "Syntax" -#: src/Console/AppConsole.vala:70 +#: src/Console/AppConsole.vala:64 msgid "Commands" msgstr "Befehle" -#: src/Console/AppConsole.vala:72 +#: src/Console/AppConsole.vala:66 msgid "Check for kernel updates" msgstr "Nach Kernel-Updates suchen" -#: src/Console/AppConsole.vala:73 +#: src/Console/AppConsole.vala:67 msgid "Check for kernel updates and notify current user" msgstr "" "Prüfung auf Kernel-Updates und Benachrichtigung des aktuellen Benutzers" -#: src/Console/AppConsole.vala:74 +#: src/Console/AppConsole.vala:68 msgid "List all available mainline kernels" msgstr "Alle verfügbaren Mainline-Kernel auflisten" -#: src/Console/AppConsole.vala:75 +#: src/Console/AppConsole.vala:69 msgid "List installed kernels" msgstr "Installierte Kernel auflisten" -#: src/Console/AppConsole.vala:76 +#: src/Console/AppConsole.vala:70 msgid "Install latest mainline kernel" msgstr "Installieren Sie den neuesten Mainline-Kernel" -#: src/Console/AppConsole.vala:77 +#: src/Console/AppConsole.vala:71 msgid "Install latest point update for current series" msgstr "Neueste Punktaktualisierung für die aktuelle Serie installieren" -#: src/Console/AppConsole.vala:78 +#: src/Console/AppConsole.vala:72 msgid "Install specified mainline kernel" msgstr "Angegebenen Mainline-Kernel installieren" -#: src/Console/AppConsole.vala:79 +#: src/Console/AppConsole.vala:73 msgid "Uninstall specified kernel" msgstr "Deinstallation des angegebenen Kernels" -#: src/Console/AppConsole.vala:80 +#: src/Console/AppConsole.vala:74 msgid "Uninstall kernels older than the running kernel" msgstr "Deinstallation von Kerneln, die älter sind als der aktuelle Kernel" -#: src/Console/AppConsole.vala:81 +#: src/Console/AppConsole.vala:75 msgid "Download specified kernels" msgstr "Herunterladen bestimmter Kernel" -#: src/Console/AppConsole.vala:82 +#: src/Console/AppConsole.vala:76 msgid "Delete cached info about available kernels" msgstr "" -#: src/Console/AppConsole.vala:84 src/Gtk/AppGtk.vala:143 +#: src/Console/AppConsole.vala:78 src/Gtk/AppGtk.vala:145 msgid "Options" msgstr "Optionen" -#: src/Console/AppConsole.vala:86 +#: src/Console/AppConsole.vala:80 msgid "Include unstable and RC releases" msgstr "Unstable- und RC-Versionen einbeziehen" -#: src/Console/AppConsole.vala:87 +#: src/Console/AppConsole.vala:81 #, fuzzy msgid "Exclude unstable and RC releases" msgstr "Unstable- und RC-Versionen einbeziehen" -#: src/Console/AppConsole.vala:88 +#: src/Console/AppConsole.vala:82 msgid "Enable verbose debugging output" msgstr "Ausführliche Debugging-Ausgabe einschalten" -#: src/Console/AppConsole.vala:89 +#: src/Console/AppConsole.vala:83 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "Alle Aufforderungen mit Ja beantworten (nicht interaktiver Modus)" -#: src/Console/AppConsole.vala:92 +#: src/Console/AppConsole.vala:86 msgid "A version string taken from the output of --list" msgstr "Eine Versionszeichenfolge aus der Ausgabe von --list" -#: src/Console/AppConsole.vala:93 +#: src/Console/AppConsole.vala:87 msgid "" "One or more version strings (comma-separated) taken from the output of --list" msgstr "" "Eine oder mehrere (durch Komma getrennte) Versionszeichenfolgen aus der " "Ausgabe von --list" -#: src/Console/AppConsole.vala:173 src/Gtk/AppGtk.vala:127 +#: src/Console/AppConsole.vala:164 src/Gtk/AppGtk.vala:129 msgid "Unknown option" msgstr "Unbekannte Option" -#: src/Console/AppConsole.vala:175 src/Console/AppConsole.vala:255 -#: src/Console/AppConsole.vala:284 +#: src/Console/AppConsole.vala:165 src/Console/AppConsole.vala:249 +#: src/Console/AppConsole.vala:277 msgid "Run" msgstr "Ausführen" -#: src/Console/AppConsole.vala:175 +#: src/Console/AppConsole.vala:165 msgid "to list all options" msgstr "um alle Optionen aufzulisten" -#: src/Console/AppConsole.vala:227 src/Console/AppConsole.vala:263 +#: src/Console/AppConsole.vala:217 src/Console/AppConsole.vala:257 msgid "No kernels specified" msgstr "Keine Kernel angegeben" -#: src/Console/AppConsole.vala:233 +#: src/Console/AppConsole.vala:223 msgid "Multiple kernels selected for installation. Select only one." msgstr "" "Mehrere Kernel für die Installation ausgewählt. Wählen Sie nur einen aus." -#: src/Console/AppConsole.vala:252 +#: src/Console/AppConsole.vala:246 msgid "Could not find requested version" msgstr "Die gewünschte Version konnte nicht gefunden werden" -#: src/Console/AppConsole.vala:255 +#: src/Console/AppConsole.vala:249 msgid "and use a version string listed in first column" msgstr "" "und verwenden Sie eine in der ersten Spalte aufgeführte Versionszeichenfolge" -#: src/Console/AppConsole.vala:283 +#: src/Console/AppConsole.vala:276 msgid "Command not specified" msgstr "Befehl nicht angegeben" -#: src/Console/AppConsole.vala:284 +#: src/Console/AppConsole.vala:277 msgid "to list all commands" msgstr "um alle Befehle aufzulisten" -#: src/Console/AppConsole.vala:338 +#: src/Console/AppConsole.vala:331 src/Gtk/SettingsDialog.vala:166 msgid "Show" msgstr "Zeigen" -#: src/Console/AppConsole.vala:343 src/Console/AppConsole.vala:355 +#: src/Console/AppConsole.vala:336 src/Console/AppConsole.vala:348 #, c-format msgid "Kernel %s Available" msgstr "Kernel %s verfügbar" -#: src/Console/AppConsole.vala:345 src/Console/AppConsole.vala:357 -#: src/Gtk/MainWindow.vala:261 +#: src/Console/AppConsole.vala:338 src/Console/AppConsole.vala:350 +#: src/Gtk/MainWindow.vala:270 msgid "Install" msgstr "Installieren" -#: src/Gtk/AppGtk.vala:141 +#: src/Gtk/AppGtk.vala:143 #, fuzzy msgid "options" msgstr "Optionen" -#: src/Gtk/AppGtk.vala:145 +#: src/Gtk/AppGtk.vala:147 msgid "Print debug information" msgstr "Zeige Debug Informationen" -#: src/Gtk/AppGtk.vala:146 +#: src/Gtk/AppGtk.vala:148 msgid "Show all options" msgstr "Alle Optionen anzeigen" -#: src/Gtk/MainWindow.vala:108 +#: src/Gtk/MainWindow.vala:115 msgid "Kernel" msgstr "Kernel" -#: src/Gtk/MainWindow.vala:138 +#: src/Gtk/MainWindow.vala:145 msgid "Status" msgstr "Status" -#: src/Gtk/MainWindow.vala:271 +#: src/Gtk/MainWindow.vala:280 msgid "Uninstall" msgstr "Deinstallieren" -#: src/Gtk/MainWindow.vala:281 +#: src/Gtk/MainWindow.vala:290 msgid "Changes" msgstr "Änderungen" -#: src/Gtk/MainWindow.vala:302 +#: src/Gtk/MainWindow.vala:312 msgid "Uninstall Old" msgstr "Alte deinstallieren" -#: src/Gtk/MainWindow.vala:303 +#: src/Gtk/MainWindow.vala:313 msgid "Uninstall kernels older than running kernel" msgstr "Deinstallation von Kerneln, die älter sind als der aktuelle Kernel" -#: src/Gtk/MainWindow.vala:308 +#: src/Gtk/MainWindow.vala:318 msgid "Reload" msgstr "" -#: src/Gtk/MainWindow.vala:313 src/Gtk/SettingsDialog.vala:50 +#: src/Gtk/MainWindow.vala:323 src/Gtk/SettingsDialog.vala:50 msgid "Settings" msgstr "Einstellungen" -#: src/Gtk/MainWindow.vala:318 +#: src/Gtk/MainWindow.vala:328 msgid "About" msgstr "Über" -#: src/Gtk/MainWindow.vala:323 +#: src/Gtk/MainWindow.vala:333 msgid "Exit" msgstr "" -#: src/Gtk/MainWindow.vala:391 +#: src/Gtk/MainWindow.vala:401 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Kernel-Upgrade-Dienstprogramm für Ubuntu-basierte Distributionen" -#: src/Gtk/MainWindow.vala:392 +#: src/Gtk/MainWindow.vala:402 msgid "Forked" msgstr "Forked" -#: src/Gtk/MainWindow.vala:392 +#: src/Gtk/MainWindow.vala:402 msgid "Original" msgstr "Original" -#: src/Gtk/MainWindow.vala:430 -msgid "Updating cached indexes" +#: src/Gtk/MainWindow.vala:440 +msgid "Updating kernels" msgstr "" -#: src/Gtk/MainWindow.vala:512 +#: src/Gtk/MainWindow.vala:513 msgid "available" msgstr "Verfügbar" -#: src/Gtk/MainWindow.vala:546 src/Gtk/MainWindow.vala:580 -#: src/Gtk/MainWindow.vala:608 +#: src/Gtk/MainWindow.vala:546 src/Gtk/MainWindow.vala:579 +#: src/Gtk/MainWindow.vala:606 msgid "DONE" msgstr "" -#: src/Gtk/ProgressWindow.vala:126 src/Gtk/TerminalWindow.vala:148 +#: src/Gtk/ProgressWindow.vala:127 src/Gtk/TerminalWindow.vala:144 msgid "Cancel" msgstr "Abbrechen" @@ -374,63 +374,64 @@ msgstr "Benachrichtigung" msgid "Notify if a major release is available" msgstr "Benachrichtigen, wenn eine größere Version verfügbar ist" -#: src/Gtk/SettingsDialog.vala:78 +#: src/Gtk/SettingsDialog.vala:76 msgid "Notify if a point release is available" msgstr "Benachrichtigen, wenn eine Punktfreigabe verfügbar ist" -#: src/Gtk/SettingsDialog.vala:89 +#: src/Gtk/SettingsDialog.vala:87 msgid "(Allowing intervals in seconds for --debug)" msgstr "(Erlaubt Intervalle in Sekunden für --debug)" -#: src/Gtk/SettingsDialog.vala:112 +#: src/Gtk/SettingsDialog.vala:110 msgid "Check every" msgstr "Prüfen Sie jede" -#: src/Gtk/SettingsDialog.vala:142 +#: src/Gtk/SettingsDialog.vala:135 msgid "Hour(s)" msgstr "Stunde(n)" -#: src/Gtk/SettingsDialog.vala:144 +#: src/Gtk/SettingsDialog.vala:137 msgid "Day(s)" msgstr "Tag(e)" -#: src/Gtk/SettingsDialog.vala:146 +#: src/Gtk/SettingsDialog.vala:139 msgid "Week(s)" msgstr "Woche(n)" -#: src/Gtk/SettingsDialog.vala:149 +#: src/Gtk/SettingsDialog.vala:142 msgid "Second(s)" msgstr "Sekunde(n)" -#: src/Gtk/SettingsDialog.vala:155 +#: src/Gtk/SettingsDialog.vala:148 msgid "Display" msgstr "Anzeige" -#: src/Gtk/SettingsDialog.vala:163 +#: src/Gtk/SettingsDialog.vala:156 msgid "Hide unstable and RC releases" msgstr "Unstable- und RC-Versionen ausblenden" -#: src/Gtk/SettingsDialog.vala:177 -msgid "Show N previous major versions " +#: src/Gtk/SettingsDialog.vala:178 +#, fuzzy +msgid "previous major versions " msgstr "N frühere Hauptversionen anzeigen" -#: src/Gtk/SettingsDialog.vala:192 +#: src/Gtk/SettingsDialog.vala:182 msgid "Other" msgstr "Anderes" -#: src/Gtk/SettingsDialog.vala:203 +#: src/Gtk/SettingsDialog.vala:193 msgid "Internet connection timeout in " msgstr "Zeitüberschreitung der Internetverbindung in" -#: src/Gtk/SettingsDialog.vala:218 +#: src/Gtk/SettingsDialog.vala:205 msgid "seconds" msgstr "Sekunden" -#: src/Gtk/SettingsDialog.vala:225 +#: src/Gtk/SettingsDialog.vala:212 msgid "Max concurrent downloads" msgstr "Maximale Anzahl gleichzeitiger Downloads" -#: src/Gtk/TerminalWindow.vala:158 src/Utility/Gtk/AboutWindow.vala:287 +#: src/Gtk/TerminalWindow.vala:154 src/Utility/Gtk/AboutWindow.vala:287 msgid "Close" msgstr "Schließen" @@ -470,10 +471,10 @@ msgstr "Einschlüsse von Drittparteien" msgid "Missing Icon" msgstr "Fehlendes Symbol" -#: src/Utility/TeeJee.Logging.vala:59 +#: src/Utility/TeeJee.Logging.vala:52 msgid "E" msgstr "E" -#: src/Utility/TeeJee.Logging.vala:84 +#: src/Utility/TeeJee.Logging.vala:68 msgid "D" msgstr "D" diff --git a/po/el.po b/po/el.po index da5104ce..8c104870 100644 --- a/po/el.po +++ b/po/el.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-09 05:17-0500\n" +"POT-Creation-Date: 2023-03-10 09:00-0500\n" "PO-Revision-Date: 2023-01-10 02:03-0600\n" "Last-Translator: Vasilis Kosmidis \n" "Language-Team: Greek\n" @@ -21,347 +21,347 @@ msgstr "Διανομή" msgid "Architecture" msgstr "Αρχιτεκτονική" -#: src/Common/LinuxKernel.vala:283 +#: src/Common/LinuxKernel.vala:282 #, fuzzy -msgid "Fetching individual kernel indexes..." +msgid "Fetching individual kernel indexes" msgstr "Ανάκτηση ευρετηρίου..." #: src/Common/LinuxKernel.vala:327 -#, fuzzy -msgid "Fetching main index from" -msgstr "Ανάκτηση ευρετηρίου..." - -#: src/Common/LinuxKernel.vala:539 -msgid "Could not find running kernel in list!" -msgstr "Δεν ήταν δυνατή η εύρεση του τρέχοντος πυρήνα στη λίστα!" - -#: src/Common/LinuxKernel.vala:545 -msgid "Could not find any kernels to uninstall" -msgstr "Δεν βρέθηκε κανένας πυρήνας για απεγκατάσταση" - -#: src/Common/LinuxKernel.vala:554 -#, fuzzy -msgid "The following kernels will be uninstalled:" -msgstr "Αυτός ο πυρήνας είναι ήδη εγκατεστημένος." - -#: src/Common/LinuxKernel.vala:558 -msgid "Continue ?" -msgstr "Συνέχεια;" - -#: src/Common/LinuxKernel.vala:581 src/Console/AppConsole.vala:298 -msgid "Latest update" -msgstr "Τελευταία αναβάθμιση" - -#: src/Common/LinuxKernel.vala:592 src/Console/AppConsole.vala:305 -msgid "Latest point update" -msgstr "Τελευταία ενημέρωση συντήρησης" - -#: src/Common/LinuxKernel.vala:600 src/Console/AppConsole.vala:310 -#: src/Console/AppConsole.vala:365 -msgid "No updates found" -msgstr "Δεν βρέθηκαν ενημερώσεις" - -#: src/Common/LinuxKernel.vala:610 -#, c-format -msgid "Install Kernel Version %s ? (y/n): " -msgstr "Εγκατάσταση του πυρήνα έκδοσης %s ; (ν/ό):" +msgid "Updating from" +msgstr "" -#: src/Common/LinuxKernel.vala:832 +#: src/Common/LinuxKernel.vala:736 msgid "Packages Available" msgstr "Διαθέσιμα πακέτα" -#: src/Common/LinuxKernel.vala:837 +#: src/Common/LinuxKernel.vala:741 msgid "Packages Installed" msgstr "Εγκατεστημένα πακέτα" -#: src/Common/LinuxKernel.vala:850 src/Utility/TeeJee.FileSystem.vala:136 +#: src/Common/LinuxKernel.vala:754 src/Utility/TeeJee.FileSystem.vala:136 msgid "File not found" msgstr "Το αρχείο δε βρέθηκε" -#: src/Common/LinuxKernel.vala:915 +#: src/Common/LinuxKernel.vala:819 msgid "Available Kernels" msgstr "Διαθέσιμοι πυρήνες" -#: src/Common/LinuxKernel.vala:922 src/Gtk/MainWindow.vala:151 +#: src/Common/LinuxKernel.vala:826 src/Gtk/MainWindow.vala:158 msgid "Installed" msgstr "Εγκατεστημένος" -#: src/Common/LinuxKernel.vala:922 src/Gtk/MainWindow.vala:151 -#: src/Gtk/MainWindow.vala:502 src/Gtk/MainWindow.vala:516 +#: src/Common/LinuxKernel.vala:826 src/Gtk/MainWindow.vala:158 +#: src/Gtk/MainWindow.vala:504 src/Gtk/MainWindow.vala:517 msgid "Running" msgstr "Ενεργός" -#: src/Common/LinuxKernel.vala:957 +#: src/Common/LinuxKernel.vala:861 msgid "Downloading" msgstr "Λήψη" -#: src/Common/LinuxKernel.vala:976 +#: src/Common/LinuxKernel.vala:880 msgid "OK" msgstr "ΟΚ" -#: src/Common/LinuxKernel.vala:979 +#: src/Common/LinuxKernel.vala:883 msgid "ERROR" msgstr "ΣΦΑΛΜΑ" -#: src/Common/LinuxKernel.vala:993 +#: src/Common/LinuxKernel.vala:897 msgid "This kernel is already installed." msgstr "Αυτός ο πυρήνας είναι ήδη εγκατεστημένος." -#: src/Common/LinuxKernel.vala:1024 +#: src/Common/LinuxKernel.vala:927 #, fuzzy msgid "Uninstalling selected kernels" msgstr "Απεγκατάσταση του καθορισμένου πυρήνα" -#: src/Common/LinuxKernel.vala:1030 +#: src/Common/LinuxKernel.vala:933 msgid "requested" msgstr "" -#: src/Common/LinuxKernel.vala:1033 +#: src/Common/LinuxKernel.vala:936 msgid "skipping the currently booted kernel" msgstr "" -#: src/Common/LinuxKernel.vala:1049 +#: src/Common/LinuxKernel.vala:952 msgid "found" msgstr "" -#: src/Common/LinuxKernel.vala:1052 +#: src/Common/LinuxKernel.vala:955 #, fuzzy msgid "No packages to un-install!" msgstr "Εγκατεστημένα πακέτα" -#: src/Common/Main.vala:259 +#: src/Common/LinuxKernel.vala:994 +#, fuzzy +msgid "Could not find running kernel in list" +msgstr "Δεν ήταν δυνατή η εύρεση του τρέχοντος πυρήνα στη λίστα!" + +#: src/Common/LinuxKernel.vala:1000 +msgid "Could not find any kernels to uninstall" +msgstr "Δεν βρέθηκε κανένας πυρήνας για απεγκατάσταση" + +#: src/Common/LinuxKernel.vala:1009 +#, fuzzy +msgid "The following kernels will be uninstalled:" +msgstr "Αυτός ο πυρήνας είναι ήδη εγκατεστημένος." + +#: src/Common/LinuxKernel.vala:1013 +msgid "Continue ?" +msgstr "Συνέχεια;" + +#: src/Common/LinuxKernel.vala:1036 src/Console/AppConsole.vala:291 +msgid "Latest update" +msgstr "Τελευταία αναβάθμιση" + +#: src/Common/LinuxKernel.vala:1047 src/Console/AppConsole.vala:298 +msgid "Latest point update" +msgstr "Τελευταία ενημέρωση συντήρησης" + +#: src/Common/LinuxKernel.vala:1055 src/Console/AppConsole.vala:303 +#: src/Console/AppConsole.vala:358 +msgid "No updates found" +msgstr "Δεν βρέθηκαν ενημερώσεις" + +#: src/Common/LinuxKernel.vala:1064 +#, c-format +msgid "Install Kernel Version %s ? (y/n): " +msgstr "Εγκατάσταση του πυρήνα έκδοσης %s ; (ν/ό):" + +#: src/Common/Main.vala:253 msgid "Called from" msgstr "Κλήθηκε από" -#: src/Common/Main.vala:293 +#: src/Common/Main.vala:287 msgid "Notifications are disabled" msgstr "Οι ειδοποιήσεις είναι απενεργοποιημένες" -#: src/Common/Main.vala:332 src/Gtk/MainWindow.vala:617 +#: src/Common/Main.vala:325 src/Gtk/MainWindow.vala:615 #, fuzzy msgid "Can not reach" msgstr "Αποτυχία ανάγνωσης του αρχείου" -#: src/Common/Package.vala:60 +#: src/Common/Package.vala:57 #, fuzzy, c-format msgid "File not found: %s" msgstr "Το αρχείο δε βρέθηκε" -#: src/Console/AppConsole.vala:68 src/Gtk/AppGtk.vala:141 +#: src/Console/AppConsole.vala:62 src/Gtk/AppGtk.vala:143 msgid "Syntax" msgstr "Σύνταξη" -#: src/Console/AppConsole.vala:70 +#: src/Console/AppConsole.vala:64 msgid "Commands" msgstr "Εντολές" -#: src/Console/AppConsole.vala:72 +#: src/Console/AppConsole.vala:66 msgid "Check for kernel updates" msgstr "Έλεγχος για ενημερώσεις πυρήνα" -#: src/Console/AppConsole.vala:73 +#: src/Console/AppConsole.vala:67 msgid "Check for kernel updates and notify current user" msgstr "Έλεγχος για ενημερώσεις πυρήνα και ειδοποίηση τρέχοντα χρήστη" -#: src/Console/AppConsole.vala:74 +#: src/Console/AppConsole.vala:68 msgid "List all available mainline kernels" msgstr "Εμφάνιση όλων των διαθέσιμων πυρήνων mainline" -#: src/Console/AppConsole.vala:75 +#: src/Console/AppConsole.vala:69 msgid "List installed kernels" msgstr "Εμφάνιση εγκατεστημένων πυρήνων" -#: src/Console/AppConsole.vala:76 +#: src/Console/AppConsole.vala:70 msgid "Install latest mainline kernel" msgstr "Εγκατάσταση του πιο πρόσφατου πυρήνα mainline" -#: src/Console/AppConsole.vala:77 +#: src/Console/AppConsole.vala:71 msgid "Install latest point update for current series" msgstr "Εγκαταστήστε την τελευταία ενημέρωση συντήρησης για την τρέχουσα σειρά" -#: src/Console/AppConsole.vala:78 +#: src/Console/AppConsole.vala:72 msgid "Install specified mainline kernel" msgstr "Εγκατάσταση του καθορισμένου mainline πυρήνα" -#: src/Console/AppConsole.vala:79 +#: src/Console/AppConsole.vala:73 msgid "Uninstall specified kernel" msgstr "Απεγκατάσταση του καθορισμένου πυρήνα" -#: src/Console/AppConsole.vala:80 +#: src/Console/AppConsole.vala:74 msgid "Uninstall kernels older than the running kernel" msgstr "Απεγκατάσταση πυρήνων παλαιότερων από τον ενεργό" -#: src/Console/AppConsole.vala:81 +#: src/Console/AppConsole.vala:75 msgid "Download specified kernels" msgstr "Λήψη των καθορισμένων πυρήνων" -#: src/Console/AppConsole.vala:82 +#: src/Console/AppConsole.vala:76 msgid "Delete cached info about available kernels" msgstr "" -#: src/Console/AppConsole.vala:84 src/Gtk/AppGtk.vala:143 +#: src/Console/AppConsole.vala:78 src/Gtk/AppGtk.vala:145 msgid "Options" msgstr "Επιλογές" -#: src/Console/AppConsole.vala:86 +#: src/Console/AppConsole.vala:80 msgid "Include unstable and RC releases" msgstr "Συμπεριλάβετε ασταθείς και RC εκδόσεις" -#: src/Console/AppConsole.vala:87 +#: src/Console/AppConsole.vala:81 #, fuzzy msgid "Exclude unstable and RC releases" msgstr "Συμπεριλάβετε ασταθείς και RC εκδόσεις" -#: src/Console/AppConsole.vala:88 +#: src/Console/AppConsole.vala:82 msgid "Enable verbose debugging output" msgstr "Ενεργοποίηση αναλυτικής εξόδου εντοπισμού σφαλμάτων" -#: src/Console/AppConsole.vala:89 +#: src/Console/AppConsole.vala:83 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "Υποθέστε Ναι για όλα τα μηνύματα (μη διαδραστική λειτουργία)" -#: src/Console/AppConsole.vala:92 +#: src/Console/AppConsole.vala:86 msgid "A version string taken from the output of --list" msgstr "Μια συμβολοσειρά έκδοσης που λαμβάνεται από την έξοδο του --list" -#: src/Console/AppConsole.vala:93 +#: src/Console/AppConsole.vala:87 msgid "" "One or more version strings (comma-separated) taken from the output of --list" msgstr "" "Μία ή περισσότερες συμβολοσειρές έκδοσης (χωρισμένες με κόμμα) που " "λαμβάνονται από την έξοδο του --list" -#: src/Console/AppConsole.vala:173 src/Gtk/AppGtk.vala:127 +#: src/Console/AppConsole.vala:164 src/Gtk/AppGtk.vala:129 msgid "Unknown option" msgstr "Άγνωστη επιλογή" -#: src/Console/AppConsole.vala:175 src/Console/AppConsole.vala:255 -#: src/Console/AppConsole.vala:284 +#: src/Console/AppConsole.vala:165 src/Console/AppConsole.vala:249 +#: src/Console/AppConsole.vala:277 msgid "Run" msgstr "Τρέξτε" -#: src/Console/AppConsole.vala:175 +#: src/Console/AppConsole.vala:165 msgid "to list all options" msgstr "για να παραθέσετε όλες τις επιλογές" -#: src/Console/AppConsole.vala:227 src/Console/AppConsole.vala:263 +#: src/Console/AppConsole.vala:217 src/Console/AppConsole.vala:257 msgid "No kernels specified" msgstr "Δεν έχουν καθοριστεί πυρήνες" -#: src/Console/AppConsole.vala:233 +#: src/Console/AppConsole.vala:223 msgid "Multiple kernels selected for installation. Select only one." msgstr "Επιλέχθηκαν πολλαπλοί πυρήνες για εγκατάσταση. Επιλέξτε μόνο ένα." -#: src/Console/AppConsole.vala:252 +#: src/Console/AppConsole.vala:246 msgid "Could not find requested version" msgstr "Δε βρέθηκε η ζητούμενη έκδοση" -#: src/Console/AppConsole.vala:255 +#: src/Console/AppConsole.vala:249 msgid "and use a version string listed in first column" msgstr "" "και χρησιμοποιήστε μια συμβολοσειρά έκδοσης που αναφέρεται στην πρώτη στήλη" -#: src/Console/AppConsole.vala:283 +#: src/Console/AppConsole.vala:276 msgid "Command not specified" msgstr "Η εντολή δεν προσδιορίστηκε" -#: src/Console/AppConsole.vala:284 +#: src/Console/AppConsole.vala:277 msgid "to list all commands" msgstr "για να παραθέσετε όλες τις εντολές" -#: src/Console/AppConsole.vala:338 +#: src/Console/AppConsole.vala:331 src/Gtk/SettingsDialog.vala:166 msgid "Show" msgstr "Προβολή" -#: src/Console/AppConsole.vala:343 src/Console/AppConsole.vala:355 +#: src/Console/AppConsole.vala:336 src/Console/AppConsole.vala:348 #, c-format msgid "Kernel %s Available" msgstr "Πυρήνας %s διαθέσιμος" -#: src/Console/AppConsole.vala:345 src/Console/AppConsole.vala:357 -#: src/Gtk/MainWindow.vala:261 +#: src/Console/AppConsole.vala:338 src/Console/AppConsole.vala:350 +#: src/Gtk/MainWindow.vala:270 msgid "Install" msgstr "Εγκατάσταση" -#: src/Gtk/AppGtk.vala:141 +#: src/Gtk/AppGtk.vala:143 #, fuzzy msgid "options" msgstr "Επιλογές" -#: src/Gtk/AppGtk.vala:145 +#: src/Gtk/AppGtk.vala:147 msgid "Print debug information" msgstr "Εκτύπωση πληροφοριών εντοπισμού σφαλμάτων" -#: src/Gtk/AppGtk.vala:146 +#: src/Gtk/AppGtk.vala:148 msgid "Show all options" msgstr "Εμφάνιση όλων των επιλογών" -#: src/Gtk/MainWindow.vala:108 +#: src/Gtk/MainWindow.vala:115 msgid "Kernel" msgstr "Πυρήνας" -#: src/Gtk/MainWindow.vala:138 +#: src/Gtk/MainWindow.vala:145 msgid "Status" msgstr "Κατάσταση" -#: src/Gtk/MainWindow.vala:271 +#: src/Gtk/MainWindow.vala:280 msgid "Uninstall" msgstr "Απεγκατάσταση" -#: src/Gtk/MainWindow.vala:281 +#: src/Gtk/MainWindow.vala:290 msgid "Changes" msgstr "Αλλαγές" -#: src/Gtk/MainWindow.vala:302 +#: src/Gtk/MainWindow.vala:312 msgid "Uninstall Old" msgstr "Απεγκατάσταση παλαιών" -#: src/Gtk/MainWindow.vala:303 +#: src/Gtk/MainWindow.vala:313 msgid "Uninstall kernels older than running kernel" msgstr "Απεγκαταστήστε πυρήνες παλαιότερους από τον ενεργό" -#: src/Gtk/MainWindow.vala:308 +#: src/Gtk/MainWindow.vala:318 msgid "Reload" msgstr "" -#: src/Gtk/MainWindow.vala:313 src/Gtk/SettingsDialog.vala:50 +#: src/Gtk/MainWindow.vala:323 src/Gtk/SettingsDialog.vala:50 msgid "Settings" msgstr "Ρυθμίσεις" -#: src/Gtk/MainWindow.vala:318 +#: src/Gtk/MainWindow.vala:328 msgid "About" msgstr "Σχετικά" -#: src/Gtk/MainWindow.vala:323 +#: src/Gtk/MainWindow.vala:333 msgid "Exit" msgstr "" -#: src/Gtk/MainWindow.vala:391 +#: src/Gtk/MainWindow.vala:401 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Πρόγραμμα αναβάθμισης πυρήνα για διανομές που βασίζονται στο Ubuntu" -#: src/Gtk/MainWindow.vala:392 +#: src/Gtk/MainWindow.vala:402 msgid "Forked" msgstr "Forked" -#: src/Gtk/MainWindow.vala:392 +#: src/Gtk/MainWindow.vala:402 msgid "Original" msgstr "Πρωτότυπο" -#: src/Gtk/MainWindow.vala:430 -msgid "Updating cached indexes" +#: src/Gtk/MainWindow.vala:440 +msgid "Updating kernels" msgstr "" -#: src/Gtk/MainWindow.vala:512 +#: src/Gtk/MainWindow.vala:513 msgid "available" msgstr "διαθέσιμος" -#: src/Gtk/MainWindow.vala:546 src/Gtk/MainWindow.vala:580 -#: src/Gtk/MainWindow.vala:608 +#: src/Gtk/MainWindow.vala:546 src/Gtk/MainWindow.vala:579 +#: src/Gtk/MainWindow.vala:606 msgid "DONE" msgstr "" -#: src/Gtk/ProgressWindow.vala:126 src/Gtk/TerminalWindow.vala:148 +#: src/Gtk/ProgressWindow.vala:127 src/Gtk/TerminalWindow.vala:144 msgid "Cancel" msgstr "Άκυρο" @@ -373,63 +373,64 @@ msgstr "Ειδοποίηση" msgid "Notify if a major release is available" msgstr "Ειδοποίηση αν είναι διαθέσιμη κύρια έκδοση" -#: src/Gtk/SettingsDialog.vala:78 +#: src/Gtk/SettingsDialog.vala:76 msgid "Notify if a point release is available" msgstr "Ειδοποίηση αν είναι διαθέσιμη έκδοση συντήρησης" -#: src/Gtk/SettingsDialog.vala:89 +#: src/Gtk/SettingsDialog.vala:87 msgid "(Allowing intervals in seconds for --debug)" msgstr "(Επιτρέποντας διαστήματα σε δευτερόλεπτα για --debug)" -#: src/Gtk/SettingsDialog.vala:112 +#: src/Gtk/SettingsDialog.vala:110 msgid "Check every" msgstr "Έλεγχος κάθε" -#: src/Gtk/SettingsDialog.vala:142 +#: src/Gtk/SettingsDialog.vala:135 msgid "Hour(s)" msgstr "Ώρες" -#: src/Gtk/SettingsDialog.vala:144 +#: src/Gtk/SettingsDialog.vala:137 msgid "Day(s)" msgstr "Ημέρες" -#: src/Gtk/SettingsDialog.vala:146 +#: src/Gtk/SettingsDialog.vala:139 msgid "Week(s)" msgstr "Εβδομάδες" -#: src/Gtk/SettingsDialog.vala:149 +#: src/Gtk/SettingsDialog.vala:142 msgid "Second(s)" msgstr "Δευτερόλεπτα" -#: src/Gtk/SettingsDialog.vala:155 +#: src/Gtk/SettingsDialog.vala:148 msgid "Display" msgstr "Απεικόνιση" -#: src/Gtk/SettingsDialog.vala:163 +#: src/Gtk/SettingsDialog.vala:156 msgid "Hide unstable and RC releases" msgstr "Απόκρυψη ασταθών και RC εκδόσεων" -#: src/Gtk/SettingsDialog.vala:177 -msgid "Show N previous major versions " +#: src/Gtk/SettingsDialog.vala:178 +#, fuzzy +msgid "previous major versions " msgstr "Εμφάνιση N προηγούμενων κύριων εκδόσεων " -#: src/Gtk/SettingsDialog.vala:192 +#: src/Gtk/SettingsDialog.vala:182 msgid "Other" msgstr "Άλλες" -#: src/Gtk/SettingsDialog.vala:203 +#: src/Gtk/SettingsDialog.vala:193 msgid "Internet connection timeout in " msgstr "Λήξη χρονικού ορίου σύνδεσης στο διαδίκτυο " -#: src/Gtk/SettingsDialog.vala:218 +#: src/Gtk/SettingsDialog.vala:205 msgid "seconds" msgstr "δευτερόλεπτα" -#: src/Gtk/SettingsDialog.vala:225 +#: src/Gtk/SettingsDialog.vala:212 msgid "Max concurrent downloads" msgstr "Μέγιστες ταυτόχρονες λήψεις" -#: src/Gtk/TerminalWindow.vala:158 src/Utility/Gtk/AboutWindow.vala:287 +#: src/Gtk/TerminalWindow.vala:154 src/Utility/Gtk/AboutWindow.vala:287 msgid "Close" msgstr "Κλείσιμο" @@ -469,10 +470,10 @@ msgstr "Συμπεριλήψεις τρίτων" msgid "Missing Icon" msgstr "Ελλείπον εικονίδιο" -#: src/Utility/TeeJee.Logging.vala:59 +#: src/Utility/TeeJee.Logging.vala:52 msgid "E" msgstr "E" -#: src/Utility/TeeJee.Logging.vala:84 +#: src/Utility/TeeJee.Logging.vala:68 msgid "D" msgstr "D" diff --git a/po/es.po b/po/es.po index 96b4f9b0..3c0e918e 100644 --- a/po/es.po +++ b/po/es.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-09 05:17-0500\n" +"POT-Creation-Date: 2023-03-10 09:00-0500\n" "PO-Revision-Date: 2018-01-03 02:03-0600\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish\n" @@ -21,356 +21,356 @@ msgstr "Distribución" msgid "Architecture" msgstr "Arquitectura del sistema" -#: src/Common/LinuxKernel.vala:283 +#: src/Common/LinuxKernel.vala:282 #, fuzzy -msgid "Fetching individual kernel indexes..." +msgid "Fetching individual kernel indexes" msgstr "Recuperando índice..." #: src/Common/LinuxKernel.vala:327 -#, fuzzy -msgid "Fetching main index from" -msgstr "Recuperando índice..." - -#: src/Common/LinuxKernel.vala:539 -msgid "Could not find running kernel in list!" -msgstr "¡No se pudo encontrar el núcleo en ejecución en la lista!" - -#: src/Common/LinuxKernel.vala:545 -#, fuzzy -msgid "Could not find any kernels to uninstall" -msgstr "Seleccione los núcleos que se desinstalarán" - -#: src/Common/LinuxKernel.vala:554 -#, fuzzy -msgid "The following kernels will be uninstalled:" -msgstr "Los siguientes kernels serán eliminados:" - -#: src/Common/LinuxKernel.vala:558 -msgid "Continue ?" -msgstr "¿Continuar?" - -#: src/Common/LinuxKernel.vala:581 src/Console/AppConsole.vala:298 -msgid "Latest update" -msgstr "" - -#: src/Common/LinuxKernel.vala:592 src/Console/AppConsole.vala:305 -msgid "Latest point update" +msgid "Updating from" msgstr "" -#: src/Common/LinuxKernel.vala:600 src/Console/AppConsole.vala:310 -#: src/Console/AppConsole.vala:365 -msgid "No updates found" -msgstr "No se encontró ninguna actualización" - -#: src/Common/LinuxKernel.vala:610 -#, c-format -msgid "Install Kernel Version %s ? (y/n): " -msgstr "" - -#: src/Common/LinuxKernel.vala:832 +#: src/Common/LinuxKernel.vala:736 msgid "Packages Available" msgstr "Paquetes disponibles" -#: src/Common/LinuxKernel.vala:837 +#: src/Common/LinuxKernel.vala:741 msgid "Packages Installed" msgstr "Paquetes instalados" -#: src/Common/LinuxKernel.vala:850 src/Utility/TeeJee.FileSystem.vala:136 +#: src/Common/LinuxKernel.vala:754 src/Utility/TeeJee.FileSystem.vala:136 msgid "File not found" msgstr "No se encontró el archivo" -#: src/Common/LinuxKernel.vala:915 +#: src/Common/LinuxKernel.vala:819 msgid "Available Kernels" msgstr "Núcleos disponibles" -#: src/Common/LinuxKernel.vala:922 src/Gtk/MainWindow.vala:151 +#: src/Common/LinuxKernel.vala:826 src/Gtk/MainWindow.vala:158 msgid "Installed" msgstr "Instalado" -#: src/Common/LinuxKernel.vala:922 src/Gtk/MainWindow.vala:151 -#: src/Gtk/MainWindow.vala:502 src/Gtk/MainWindow.vala:516 +#: src/Common/LinuxKernel.vala:826 src/Gtk/MainWindow.vala:158 +#: src/Gtk/MainWindow.vala:504 src/Gtk/MainWindow.vala:517 msgid "Running" msgstr "En ejecución" -#: src/Common/LinuxKernel.vala:957 +#: src/Common/LinuxKernel.vala:861 msgid "Downloading" msgstr "Descargando" -#: src/Common/LinuxKernel.vala:976 +#: src/Common/LinuxKernel.vala:880 msgid "OK" msgstr "Aceptar" -#: src/Common/LinuxKernel.vala:979 +#: src/Common/LinuxKernel.vala:883 msgid "ERROR" msgstr "ERROR" -#: src/Common/LinuxKernel.vala:993 +#: src/Common/LinuxKernel.vala:897 msgid "This kernel is already installed." msgstr "Este núcleo ya se instaló." -#: src/Common/LinuxKernel.vala:1024 +#: src/Common/LinuxKernel.vala:927 #, fuzzy msgid "Uninstalling selected kernels" msgstr "Instalar núcleo troncal especificado" -#: src/Common/LinuxKernel.vala:1030 +#: src/Common/LinuxKernel.vala:933 msgid "requested" msgstr "" -#: src/Common/LinuxKernel.vala:1033 +#: src/Common/LinuxKernel.vala:936 msgid "skipping the currently booted kernel" msgstr "" -#: src/Common/LinuxKernel.vala:1049 +#: src/Common/LinuxKernel.vala:952 msgid "found" msgstr "" -#: src/Common/LinuxKernel.vala:1052 +#: src/Common/LinuxKernel.vala:955 #, fuzzy msgid "No packages to un-install!" msgstr "Paquetes instalados" -#: src/Common/Main.vala:259 +#: src/Common/LinuxKernel.vala:994 +#, fuzzy +msgid "Could not find running kernel in list" +msgstr "¡No se pudo encontrar el núcleo en ejecución en la lista!" + +#: src/Common/LinuxKernel.vala:1000 +#, fuzzy +msgid "Could not find any kernels to uninstall" +msgstr "Seleccione los núcleos que se desinstalarán" + +#: src/Common/LinuxKernel.vala:1009 +#, fuzzy +msgid "The following kernels will be uninstalled:" +msgstr "Los siguientes kernels serán eliminados:" + +#: src/Common/LinuxKernel.vala:1013 +msgid "Continue ?" +msgstr "¿Continuar?" + +#: src/Common/LinuxKernel.vala:1036 src/Console/AppConsole.vala:291 +msgid "Latest update" +msgstr "" + +#: src/Common/LinuxKernel.vala:1047 src/Console/AppConsole.vala:298 +msgid "Latest point update" +msgstr "" + +#: src/Common/LinuxKernel.vala:1055 src/Console/AppConsole.vala:303 +#: src/Console/AppConsole.vala:358 +msgid "No updates found" +msgstr "No se encontró ninguna actualización" + +#: src/Common/LinuxKernel.vala:1064 +#, c-format +msgid "Install Kernel Version %s ? (y/n): " +msgstr "" + +#: src/Common/Main.vala:253 msgid "Called from" msgstr "" -#: src/Common/Main.vala:293 +#: src/Common/Main.vala:287 #, fuzzy msgid "Notifications are disabled" msgstr "Notificación" -#: src/Common/Main.vala:332 src/Gtk/MainWindow.vala:617 +#: src/Common/Main.vala:325 src/Gtk/MainWindow.vala:615 #, fuzzy msgid "Can not reach" msgstr "Falló la lectura del archivo" -#: src/Common/Package.vala:60 +#: src/Common/Package.vala:57 #, fuzzy, c-format msgid "File not found: %s" msgstr "No se encontró el archivo" -#: src/Console/AppConsole.vala:68 src/Gtk/AppGtk.vala:141 +#: src/Console/AppConsole.vala:62 src/Gtk/AppGtk.vala:143 msgid "Syntax" msgstr "Sintaxis" -#: src/Console/AppConsole.vala:70 +#: src/Console/AppConsole.vala:64 msgid "Commands" msgstr "Comandos" -#: src/Console/AppConsole.vala:72 +#: src/Console/AppConsole.vala:66 msgid "Check for kernel updates" msgstr "Buscar actualizaciones del núcleo" -#: src/Console/AppConsole.vala:73 +#: src/Console/AppConsole.vala:67 msgid "Check for kernel updates and notify current user" msgstr "Compruebe las actualizaciones del kernel y notifique al usuario actual" -#: src/Console/AppConsole.vala:74 +#: src/Console/AppConsole.vala:68 msgid "List all available mainline kernels" msgstr "Mostrar todos los núcleos troncales disponibles" -#: src/Console/AppConsole.vala:75 +#: src/Console/AppConsole.vala:69 msgid "List installed kernels" msgstr "Mostrar kernels disponibles" -#: src/Console/AppConsole.vala:76 +#: src/Console/AppConsole.vala:70 msgid "Install latest mainline kernel" msgstr "Instalar kernel troncal especificado" -#: src/Console/AppConsole.vala:77 +#: src/Console/AppConsole.vala:71 msgid "Install latest point update for current series" msgstr "" -#: src/Console/AppConsole.vala:78 +#: src/Console/AppConsole.vala:72 msgid "Install specified mainline kernel" msgstr "Instalar núcleo troncal especificado" -#: src/Console/AppConsole.vala:79 +#: src/Console/AppConsole.vala:73 #, fuzzy msgid "Uninstall specified kernel" msgstr "Instalar núcleo troncal especificado" -#: src/Console/AppConsole.vala:80 +#: src/Console/AppConsole.vala:74 msgid "Uninstall kernels older than the running kernel" msgstr "" -#: src/Console/AppConsole.vala:81 +#: src/Console/AppConsole.vala:75 #, fuzzy msgid "Download specified kernels" msgstr "Descargar paquetes del núcleo especificado" -#: src/Console/AppConsole.vala:82 +#: src/Console/AppConsole.vala:76 msgid "Delete cached info about available kernels" msgstr "" -#: src/Console/AppConsole.vala:84 src/Gtk/AppGtk.vala:143 +#: src/Console/AppConsole.vala:78 src/Gtk/AppGtk.vala:145 msgid "Options" msgstr "Opciones" -#: src/Console/AppConsole.vala:86 +#: src/Console/AppConsole.vala:80 #, fuzzy msgid "Include unstable and RC releases" msgstr "Ocultar versiones inestables y RC" -#: src/Console/AppConsole.vala:87 +#: src/Console/AppConsole.vala:81 #, fuzzy msgid "Exclude unstable and RC releases" msgstr "Ocultar versiones inestables y RC" -#: src/Console/AppConsole.vala:88 +#: src/Console/AppConsole.vala:82 msgid "Enable verbose debugging output" msgstr "" -#: src/Console/AppConsole.vala:89 +#: src/Console/AppConsole.vala:83 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "Asumir Sí para todas las solicitudes (modo no interactivo)" -#: src/Console/AppConsole.vala:92 +#: src/Console/AppConsole.vala:86 msgid "A version string taken from the output of --list" msgstr "" -#: src/Console/AppConsole.vala:93 +#: src/Console/AppConsole.vala:87 msgid "" "One or more version strings (comma-separated) taken from the output of --list" msgstr "" -#: src/Console/AppConsole.vala:173 src/Gtk/AppGtk.vala:127 +#: src/Console/AppConsole.vala:164 src/Gtk/AppGtk.vala:129 msgid "Unknown option" msgstr "Opción desconocida" -#: src/Console/AppConsole.vala:175 src/Console/AppConsole.vala:255 -#: src/Console/AppConsole.vala:284 +#: src/Console/AppConsole.vala:165 src/Console/AppConsole.vala:249 +#: src/Console/AppConsole.vala:277 #, fuzzy msgid "Run" msgstr "En ejecución" -#: src/Console/AppConsole.vala:175 +#: src/Console/AppConsole.vala:165 #, fuzzy msgid "to list all options" msgstr "Mostrar todas las opciones" -#: src/Console/AppConsole.vala:227 src/Console/AppConsole.vala:263 +#: src/Console/AppConsole.vala:217 src/Console/AppConsole.vala:257 msgid "No kernels specified" msgstr "" -#: src/Console/AppConsole.vala:233 +#: src/Console/AppConsole.vala:223 msgid "Multiple kernels selected for installation. Select only one." msgstr "Se seleccionaron varios núcleos para su instalación. Elija solo uno." -#: src/Console/AppConsole.vala:252 +#: src/Console/AppConsole.vala:246 msgid "Could not find requested version" msgstr "No se pudo encontrar la versión solicitada" -#: src/Console/AppConsole.vala:255 +#: src/Console/AppConsole.vala:249 msgid "and use a version string listed in first column" msgstr "" -#: src/Console/AppConsole.vala:283 +#: src/Console/AppConsole.vala:276 msgid "Command not specified" msgstr "Coomand no especificado" -#: src/Console/AppConsole.vala:284 +#: src/Console/AppConsole.vala:277 #, fuzzy msgid "to list all commands" msgstr "Mostrar todas las opciones" -#: src/Console/AppConsole.vala:338 +#: src/Console/AppConsole.vala:331 src/Gtk/SettingsDialog.vala:166 msgid "Show" msgstr "" -#: src/Console/AppConsole.vala:343 src/Console/AppConsole.vala:355 +#: src/Console/AppConsole.vala:336 src/Console/AppConsole.vala:348 #, fuzzy, c-format msgid "Kernel %s Available" msgstr "Paquetes disponibles" -#: src/Console/AppConsole.vala:345 src/Console/AppConsole.vala:357 -#: src/Gtk/MainWindow.vala:261 +#: src/Console/AppConsole.vala:338 src/Console/AppConsole.vala:350 +#: src/Gtk/MainWindow.vala:270 msgid "Install" msgstr "Instalar" -#: src/Gtk/AppGtk.vala:141 +#: src/Gtk/AppGtk.vala:143 #, fuzzy msgid "options" msgstr "Opciones" -#: src/Gtk/AppGtk.vala:145 +#: src/Gtk/AppGtk.vala:147 msgid "Print debug information" msgstr "Mostrar información de depuración" -#: src/Gtk/AppGtk.vala:146 +#: src/Gtk/AppGtk.vala:148 msgid "Show all options" msgstr "Mostrar todas las opciones" -#: src/Gtk/MainWindow.vala:108 +#: src/Gtk/MainWindow.vala:115 msgid "Kernel" msgstr "Núcleo" -#: src/Gtk/MainWindow.vala:138 +#: src/Gtk/MainWindow.vala:145 msgid "Status" msgstr "Estado" -#: src/Gtk/MainWindow.vala:271 +#: src/Gtk/MainWindow.vala:280 #, fuzzy msgid "Uninstall" msgstr "Instalar" -#: src/Gtk/MainWindow.vala:281 +#: src/Gtk/MainWindow.vala:290 msgid "Changes" msgstr "Cambios" -#: src/Gtk/MainWindow.vala:302 +#: src/Gtk/MainWindow.vala:312 #, fuzzy msgid "Uninstall Old" msgstr "Desinstalación finalizada" -#: src/Gtk/MainWindow.vala:303 +#: src/Gtk/MainWindow.vala:313 msgid "Uninstall kernels older than running kernel" msgstr "" -#: src/Gtk/MainWindow.vala:308 +#: src/Gtk/MainWindow.vala:318 msgid "Reload" msgstr "" -#: src/Gtk/MainWindow.vala:313 src/Gtk/SettingsDialog.vala:50 +#: src/Gtk/MainWindow.vala:323 src/Gtk/SettingsDialog.vala:50 msgid "Settings" msgstr "Configuración" -#: src/Gtk/MainWindow.vala:318 +#: src/Gtk/MainWindow.vala:328 msgid "About" msgstr "Acerca de" -#: src/Gtk/MainWindow.vala:323 +#: src/Gtk/MainWindow.vala:333 msgid "Exit" msgstr "" -#: src/Gtk/MainWindow.vala:391 +#: src/Gtk/MainWindow.vala:401 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "" "Herramienta de renovación de núcleo para distribuciones basadas en Ubuntu" -#: src/Gtk/MainWindow.vala:392 +#: src/Gtk/MainWindow.vala:402 msgid "Forked" msgstr "" -#: src/Gtk/MainWindow.vala:392 +#: src/Gtk/MainWindow.vala:402 msgid "Original" msgstr "" -#: src/Gtk/MainWindow.vala:430 -msgid "Updating cached indexes" +#: src/Gtk/MainWindow.vala:440 +msgid "Updating kernels" msgstr "" -#: src/Gtk/MainWindow.vala:512 +#: src/Gtk/MainWindow.vala:513 #, fuzzy msgid "available" msgstr "Paquetes disponibles" -#: src/Gtk/MainWindow.vala:546 src/Gtk/MainWindow.vala:580 -#: src/Gtk/MainWindow.vala:608 +#: src/Gtk/MainWindow.vala:546 src/Gtk/MainWindow.vala:579 +#: src/Gtk/MainWindow.vala:606 msgid "DONE" msgstr "" -#: src/Gtk/ProgressWindow.vala:126 src/Gtk/TerminalWindow.vala:148 +#: src/Gtk/ProgressWindow.vala:127 src/Gtk/TerminalWindow.vala:144 msgid "Cancel" msgstr "Cancelar" @@ -382,64 +382,64 @@ msgstr "Notificación" msgid "Notify if a major release is available" msgstr "Notificar si hay una versión importante disponible" -#: src/Gtk/SettingsDialog.vala:78 +#: src/Gtk/SettingsDialog.vala:76 msgid "Notify if a point release is available" msgstr "Notificar si hay una versión puntual disponible" -#: src/Gtk/SettingsDialog.vala:89 +#: src/Gtk/SettingsDialog.vala:87 msgid "(Allowing intervals in seconds for --debug)" msgstr "" -#: src/Gtk/SettingsDialog.vala:112 +#: src/Gtk/SettingsDialog.vala:110 msgid "Check every" msgstr "Comprobar cada" -#: src/Gtk/SettingsDialog.vala:142 +#: src/Gtk/SettingsDialog.vala:135 msgid "Hour(s)" msgstr "Horas" -#: src/Gtk/SettingsDialog.vala:144 +#: src/Gtk/SettingsDialog.vala:137 msgid "Day(s)" msgstr "Días" -#: src/Gtk/SettingsDialog.vala:146 +#: src/Gtk/SettingsDialog.vala:139 msgid "Week(s)" msgstr "Semanas" -#: src/Gtk/SettingsDialog.vala:149 +#: src/Gtk/SettingsDialog.vala:142 msgid "Second(s)" msgstr "" -#: src/Gtk/SettingsDialog.vala:155 +#: src/Gtk/SettingsDialog.vala:148 msgid "Display" msgstr "Mostrar" -#: src/Gtk/SettingsDialog.vala:163 +#: src/Gtk/SettingsDialog.vala:156 msgid "Hide unstable and RC releases" msgstr "Ocultar versiones inestables y RC" -#: src/Gtk/SettingsDialog.vala:177 -msgid "Show N previous major versions " +#: src/Gtk/SettingsDialog.vala:178 +msgid "previous major versions " msgstr "" -#: src/Gtk/SettingsDialog.vala:192 +#: src/Gtk/SettingsDialog.vala:182 msgid "Other" msgstr "" -#: src/Gtk/SettingsDialog.vala:203 +#: src/Gtk/SettingsDialog.vala:193 #, fuzzy msgid "Internet connection timeout in " msgstr "La conexión a Internet está inactiva" -#: src/Gtk/SettingsDialog.vala:218 +#: src/Gtk/SettingsDialog.vala:205 msgid "seconds" msgstr "" -#: src/Gtk/SettingsDialog.vala:225 +#: src/Gtk/SettingsDialog.vala:212 msgid "Max concurrent downloads" msgstr "" -#: src/Gtk/TerminalWindow.vala:158 src/Utility/Gtk/AboutWindow.vala:287 +#: src/Gtk/TerminalWindow.vala:154 src/Utility/Gtk/AboutWindow.vala:287 msgid "Close" msgstr "Cerrar" @@ -480,10 +480,10 @@ msgstr "Herramientas de terceros" msgid "Missing Icon" msgstr "Falta el icono" -#: src/Utility/TeeJee.Logging.vala:59 +#: src/Utility/TeeJee.Logging.vala:52 msgid "E" msgstr "E" -#: src/Utility/TeeJee.Logging.vala:84 +#: src/Utility/TeeJee.Logging.vala:68 msgid "D" msgstr "" diff --git a/po/fr.po b/po/fr.po index 976ffa15..f5174896 100644 --- a/po/fr.po +++ b/po/fr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-09 05:17-0500\n" +"POT-Creation-Date: 2023-03-10 09:00-0500\n" "PO-Revision-Date: 2018-08-05 15:50+0200\n" "Last-Translator: Yolateng0 \n" "Language-Team: French\n" @@ -21,357 +21,357 @@ msgstr "Distribution" msgid "Architecture" msgstr "Architecture" -#: src/Common/LinuxKernel.vala:283 +#: src/Common/LinuxKernel.vala:282 #, fuzzy -msgid "Fetching individual kernel indexes..." +msgid "Fetching individual kernel indexes" msgstr "Récupération de l'index..." #: src/Common/LinuxKernel.vala:327 -#, fuzzy -msgid "Fetching main index from" -msgstr "Récupération de l'index..." - -#: src/Common/LinuxKernel.vala:539 -msgid "Could not find running kernel in list!" -msgstr "Impossible de trouver la version courante dans la liste!" - -#: src/Common/LinuxKernel.vala:545 -#, fuzzy -msgid "Could not find any kernels to uninstall" -msgstr "Impossible de trouver de noyaux à supprimer" - -#: src/Common/LinuxKernel.vala:554 -#, fuzzy -msgid "The following kernels will be uninstalled:" -msgstr "Les noyaux suivants seront supprimés:" - -#: src/Common/LinuxKernel.vala:558 -msgid "Continue ?" -msgstr "Reprendre ?" - -#: src/Common/LinuxKernel.vala:581 src/Console/AppConsole.vala:298 -msgid "Latest update" -msgstr "Dernière mise à jour" - -#: src/Common/LinuxKernel.vala:592 src/Console/AppConsole.vala:305 -msgid "Latest point update" -msgstr "Dernière mise à jour mineure" - -#: src/Common/LinuxKernel.vala:600 src/Console/AppConsole.vala:310 -#: src/Console/AppConsole.vala:365 -msgid "No updates found" -msgstr "Aucune mise à jour disponible" - -#: src/Common/LinuxKernel.vala:610 -#, c-format -msgid "Install Kernel Version %s ? (y/n): " -msgstr "Installer le noyau en version %s ? (y/n): " +msgid "Updating from" +msgstr "" -#: src/Common/LinuxKernel.vala:832 +#: src/Common/LinuxKernel.vala:736 msgid "Packages Available" msgstr "Paquets Disponibles" -#: src/Common/LinuxKernel.vala:837 +#: src/Common/LinuxKernel.vala:741 msgid "Packages Installed" msgstr "Paquets Installés" -#: src/Common/LinuxKernel.vala:850 src/Utility/TeeJee.FileSystem.vala:136 +#: src/Common/LinuxKernel.vala:754 src/Utility/TeeJee.FileSystem.vala:136 msgid "File not found" msgstr "Fichier non trouvé" -#: src/Common/LinuxKernel.vala:915 +#: src/Common/LinuxKernel.vala:819 msgid "Available Kernels" msgstr "Noyaux Disponibles" -#: src/Common/LinuxKernel.vala:922 src/Gtk/MainWindow.vala:151 +#: src/Common/LinuxKernel.vala:826 src/Gtk/MainWindow.vala:158 msgid "Installed" msgstr "Installé" -#: src/Common/LinuxKernel.vala:922 src/Gtk/MainWindow.vala:151 -#: src/Gtk/MainWindow.vala:502 src/Gtk/MainWindow.vala:516 +#: src/Common/LinuxKernel.vala:826 src/Gtk/MainWindow.vala:158 +#: src/Gtk/MainWindow.vala:504 src/Gtk/MainWindow.vala:517 msgid "Running" msgstr "Actuel" -#: src/Common/LinuxKernel.vala:957 +#: src/Common/LinuxKernel.vala:861 msgid "Downloading" msgstr "Téléchargement" -#: src/Common/LinuxKernel.vala:976 +#: src/Common/LinuxKernel.vala:880 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:979 +#: src/Common/LinuxKernel.vala:883 msgid "ERROR" msgstr "ERREUR" -#: src/Common/LinuxKernel.vala:993 +#: src/Common/LinuxKernel.vala:897 msgid "This kernel is already installed." msgstr "Ce noyau est déjà installé." -#: src/Common/LinuxKernel.vala:1024 +#: src/Common/LinuxKernel.vala:927 #, fuzzy msgid "Uninstalling selected kernels" msgstr "Installer les noyaux spécifiés" -#: src/Common/LinuxKernel.vala:1030 +#: src/Common/LinuxKernel.vala:933 msgid "requested" msgstr "" -#: src/Common/LinuxKernel.vala:1033 +#: src/Common/LinuxKernel.vala:936 msgid "skipping the currently booted kernel" msgstr "" -#: src/Common/LinuxKernel.vala:1049 +#: src/Common/LinuxKernel.vala:952 msgid "found" msgstr "" -#: src/Common/LinuxKernel.vala:1052 +#: src/Common/LinuxKernel.vala:955 #, fuzzy msgid "No packages to un-install!" msgstr "Paquets Installés" -#: src/Common/Main.vala:259 +#: src/Common/LinuxKernel.vala:994 +#, fuzzy +msgid "Could not find running kernel in list" +msgstr "Impossible de trouver la version courante dans la liste!" + +#: src/Common/LinuxKernel.vala:1000 +#, fuzzy +msgid "Could not find any kernels to uninstall" +msgstr "Impossible de trouver de noyaux à supprimer" + +#: src/Common/LinuxKernel.vala:1009 +#, fuzzy +msgid "The following kernels will be uninstalled:" +msgstr "Les noyaux suivants seront supprimés:" + +#: src/Common/LinuxKernel.vala:1013 +msgid "Continue ?" +msgstr "Reprendre ?" + +#: src/Common/LinuxKernel.vala:1036 src/Console/AppConsole.vala:291 +msgid "Latest update" +msgstr "Dernière mise à jour" + +#: src/Common/LinuxKernel.vala:1047 src/Console/AppConsole.vala:298 +msgid "Latest point update" +msgstr "Dernière mise à jour mineure" + +#: src/Common/LinuxKernel.vala:1055 src/Console/AppConsole.vala:303 +#: src/Console/AppConsole.vala:358 +msgid "No updates found" +msgstr "Aucune mise à jour disponible" + +#: src/Common/LinuxKernel.vala:1064 +#, c-format +msgid "Install Kernel Version %s ? (y/n): " +msgstr "Installer le noyau en version %s ? (y/n): " + +#: src/Common/Main.vala:253 msgid "Called from" msgstr "" -#: src/Common/Main.vala:293 +#: src/Common/Main.vala:287 msgid "Notifications are disabled" msgstr "Les notifications sont désactivées" -#: src/Common/Main.vala:332 src/Gtk/MainWindow.vala:617 +#: src/Common/Main.vala:325 src/Gtk/MainWindow.vala:615 #, fuzzy msgid "Can not reach" msgstr "Impossible de lire le fichier" -#: src/Common/Package.vala:60 +#: src/Common/Package.vala:57 #, fuzzy, c-format msgid "File not found: %s" msgstr "Fichier non trouvé" -#: src/Console/AppConsole.vala:68 src/Gtk/AppGtk.vala:141 +#: src/Console/AppConsole.vala:62 src/Gtk/AppGtk.vala:143 msgid "Syntax" msgstr "Syntaxe" -#: src/Console/AppConsole.vala:70 +#: src/Console/AppConsole.vala:64 msgid "Commands" msgstr "Commandes" -#: src/Console/AppConsole.vala:72 +#: src/Console/AppConsole.vala:66 msgid "Check for kernel updates" msgstr "Vérifier les mises à jour de noyau" -#: src/Console/AppConsole.vala:73 +#: src/Console/AppConsole.vala:67 msgid "Check for kernel updates and notify current user" msgstr "Vérifier les mises à jour de noyau et notifier l'utilisateur" -#: src/Console/AppConsole.vala:74 +#: src/Console/AppConsole.vala:68 msgid "List all available mainline kernels" msgstr "Lister tous les noyaux mainline disponibles" -#: src/Console/AppConsole.vala:75 +#: src/Console/AppConsole.vala:69 msgid "List installed kernels" msgstr "Lister les noyaux installés" -#: src/Console/AppConsole.vala:76 +#: src/Console/AppConsole.vala:70 msgid "Install latest mainline kernel" msgstr "Installer le dernier noyau mainline" -#: src/Console/AppConsole.vala:77 +#: src/Console/AppConsole.vala:71 msgid "Install latest point update for current series" msgstr "Installer la dernière version mineure pour la série courante" -#: src/Console/AppConsole.vala:78 +#: src/Console/AppConsole.vala:72 msgid "Install specified mainline kernel" msgstr "Installer le noyau mainline spécifié" -#: src/Console/AppConsole.vala:79 +#: src/Console/AppConsole.vala:73 #, fuzzy msgid "Uninstall specified kernel" msgstr "Installer les noyaux spécifiés" -#: src/Console/AppConsole.vala:80 +#: src/Console/AppConsole.vala:74 #, fuzzy msgid "Uninstall kernels older than the running kernel" msgstr "Désinstalle les noyaux plus anciens que le noyau courant" -#: src/Console/AppConsole.vala:81 +#: src/Console/AppConsole.vala:75 msgid "Download specified kernels" msgstr "Télécharger les noyaux spécifiés" -#: src/Console/AppConsole.vala:82 +#: src/Console/AppConsole.vala:76 msgid "Delete cached info about available kernels" msgstr "" -#: src/Console/AppConsole.vala:84 src/Gtk/AppGtk.vala:143 +#: src/Console/AppConsole.vala:78 src/Gtk/AppGtk.vala:145 msgid "Options" msgstr "Options" -#: src/Console/AppConsole.vala:86 +#: src/Console/AppConsole.vala:80 #, fuzzy msgid "Include unstable and RC releases" msgstr "Cacher les versions instables et RC" -#: src/Console/AppConsole.vala:87 +#: src/Console/AppConsole.vala:81 #, fuzzy msgid "Exclude unstable and RC releases" msgstr "Cacher les versions instables et RC" -#: src/Console/AppConsole.vala:88 +#: src/Console/AppConsole.vala:82 msgid "Enable verbose debugging output" msgstr "Active la sortie verbeuse de débogage" -#: src/Console/AppConsole.vala:89 +#: src/Console/AppConsole.vala:83 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "" -#: src/Console/AppConsole.vala:92 +#: src/Console/AppConsole.vala:86 msgid "A version string taken from the output of --list" msgstr "Une version prise du resultat de --list" -#: src/Console/AppConsole.vala:93 +#: src/Console/AppConsole.vala:87 msgid "" "One or more version strings (comma-separated) taken from the output of --list" msgstr "" "Une ou plusieurs versions (séparées par des virgules) prises du résultat de " "--list" -#: src/Console/AppConsole.vala:173 src/Gtk/AppGtk.vala:127 +#: src/Console/AppConsole.vala:164 src/Gtk/AppGtk.vala:129 msgid "Unknown option" msgstr "Option inconnue" -#: src/Console/AppConsole.vala:175 src/Console/AppConsole.vala:255 -#: src/Console/AppConsole.vala:284 +#: src/Console/AppConsole.vala:165 src/Console/AppConsole.vala:249 +#: src/Console/AppConsole.vala:277 msgid "Run" msgstr "Executez" -#: src/Console/AppConsole.vala:175 +#: src/Console/AppConsole.vala:165 msgid "to list all options" msgstr "pour afficher toutes les options" -#: src/Console/AppConsole.vala:227 src/Console/AppConsole.vala:263 +#: src/Console/AppConsole.vala:217 src/Console/AppConsole.vala:257 msgid "No kernels specified" msgstr "Aucun noyau spécifié" -#: src/Console/AppConsole.vala:233 +#: src/Console/AppConsole.vala:223 msgid "Multiple kernels selected for installation. Select only one." msgstr "" "Plusieurs noyaux sélectionnés pour être installés. Sélectionnez en seulement " "un." -#: src/Console/AppConsole.vala:252 +#: src/Console/AppConsole.vala:246 msgid "Could not find requested version" msgstr "Impossible de trouver la version demandée" -#: src/Console/AppConsole.vala:255 +#: src/Console/AppConsole.vala:249 msgid "and use a version string listed in first column" msgstr "" -#: src/Console/AppConsole.vala:283 +#: src/Console/AppConsole.vala:276 msgid "Command not specified" msgstr "Pas de commande fournie" -#: src/Console/AppConsole.vala:284 +#: src/Console/AppConsole.vala:277 msgid "to list all commands" msgstr "pour afficher toutes les commandes" -#: src/Console/AppConsole.vala:338 +#: src/Console/AppConsole.vala:331 src/Gtk/SettingsDialog.vala:166 msgid "Show" msgstr "Montrer" -#: src/Console/AppConsole.vala:343 src/Console/AppConsole.vala:355 +#: src/Console/AppConsole.vala:336 src/Console/AppConsole.vala:348 #, c-format msgid "Kernel %s Available" msgstr "Paquet %s disponibles" -#: src/Console/AppConsole.vala:345 src/Console/AppConsole.vala:357 -#: src/Gtk/MainWindow.vala:261 +#: src/Console/AppConsole.vala:338 src/Console/AppConsole.vala:350 +#: src/Gtk/MainWindow.vala:270 msgid "Install" msgstr "Installer" -#: src/Gtk/AppGtk.vala:141 +#: src/Gtk/AppGtk.vala:143 #, fuzzy msgid "options" msgstr "Options" -#: src/Gtk/AppGtk.vala:145 +#: src/Gtk/AppGtk.vala:147 msgid "Print debug information" msgstr "Afficher les informations de débogage" -#: src/Gtk/AppGtk.vala:146 +#: src/Gtk/AppGtk.vala:148 msgid "Show all options" msgstr "Afficher toutes les options" -#: src/Gtk/MainWindow.vala:108 +#: src/Gtk/MainWindow.vala:115 msgid "Kernel" msgstr "Noyau" -#: src/Gtk/MainWindow.vala:138 +#: src/Gtk/MainWindow.vala:145 msgid "Status" msgstr "Statut" -#: src/Gtk/MainWindow.vala:271 +#: src/Gtk/MainWindow.vala:280 #, fuzzy msgid "Uninstall" msgstr "Installer" -#: src/Gtk/MainWindow.vala:281 +#: src/Gtk/MainWindow.vala:290 msgid "Changes" msgstr "Changements" -#: src/Gtk/MainWindow.vala:302 +#: src/Gtk/MainWindow.vala:312 #, fuzzy msgid "Uninstall Old" msgstr "Désinstallation complète" -#: src/Gtk/MainWindow.vala:303 +#: src/Gtk/MainWindow.vala:313 #, fuzzy msgid "Uninstall kernels older than running kernel" msgstr "Désinstalle les noyaux plus anciens que le noyau courant" -#: src/Gtk/MainWindow.vala:308 +#: src/Gtk/MainWindow.vala:318 msgid "Reload" msgstr "" -#: src/Gtk/MainWindow.vala:313 src/Gtk/SettingsDialog.vala:50 +#: src/Gtk/MainWindow.vala:323 src/Gtk/SettingsDialog.vala:50 msgid "Settings" msgstr "Paramètres" -#: src/Gtk/MainWindow.vala:318 +#: src/Gtk/MainWindow.vala:328 msgid "About" msgstr "À propos" -#: src/Gtk/MainWindow.vala:323 +#: src/Gtk/MainWindow.vala:333 msgid "Exit" msgstr "" -#: src/Gtk/MainWindow.vala:391 +#: src/Gtk/MainWindow.vala:401 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "" "Utilitaire de mise à niveau des noyaux pour les distributions basées sur " "Ubuntu" -#: src/Gtk/MainWindow.vala:392 +#: src/Gtk/MainWindow.vala:402 msgid "Forked" msgstr "Version forkée :" -#: src/Gtk/MainWindow.vala:392 +#: src/Gtk/MainWindow.vala:402 msgid "Original" msgstr "Version originale :" -#: src/Gtk/MainWindow.vala:430 -msgid "Updating cached indexes" +#: src/Gtk/MainWindow.vala:440 +msgid "Updating kernels" msgstr "" -#: src/Gtk/MainWindow.vala:512 +#: src/Gtk/MainWindow.vala:513 msgid "available" msgstr "disponible" -#: src/Gtk/MainWindow.vala:546 src/Gtk/MainWindow.vala:580 -#: src/Gtk/MainWindow.vala:608 +#: src/Gtk/MainWindow.vala:546 src/Gtk/MainWindow.vala:579 +#: src/Gtk/MainWindow.vala:606 msgid "DONE" msgstr "" -#: src/Gtk/ProgressWindow.vala:126 src/Gtk/TerminalWindow.vala:148 +#: src/Gtk/ProgressWindow.vala:127 src/Gtk/TerminalWindow.vala:144 msgid "Cancel" msgstr "Annuler" @@ -383,63 +383,64 @@ msgstr "Notification" msgid "Notify if a major release is available" msgstr "Notifier si une version stable majeure est disponible" -#: src/Gtk/SettingsDialog.vala:78 +#: src/Gtk/SettingsDialog.vala:76 msgid "Notify if a point release is available" msgstr "Notifier si une version stable mineure est disponible" -#: src/Gtk/SettingsDialog.vala:89 +#: src/Gtk/SettingsDialog.vala:87 msgid "(Allowing intervals in seconds for --debug)" msgstr "" -#: src/Gtk/SettingsDialog.vala:112 +#: src/Gtk/SettingsDialog.vala:110 msgid "Check every" msgstr "Vérifier toutes les" -#: src/Gtk/SettingsDialog.vala:142 +#: src/Gtk/SettingsDialog.vala:135 msgid "Hour(s)" msgstr "Heure(s)" -#: src/Gtk/SettingsDialog.vala:144 +#: src/Gtk/SettingsDialog.vala:137 msgid "Day(s)" msgstr "Jour(s)" -#: src/Gtk/SettingsDialog.vala:146 +#: src/Gtk/SettingsDialog.vala:139 msgid "Week(s)" msgstr "Semaine(s)" -#: src/Gtk/SettingsDialog.vala:149 +#: src/Gtk/SettingsDialog.vala:142 msgid "Second(s)" msgstr "Seconde(s)" -#: src/Gtk/SettingsDialog.vala:155 +#: src/Gtk/SettingsDialog.vala:148 msgid "Display" msgstr "Affichage" -#: src/Gtk/SettingsDialog.vala:163 +#: src/Gtk/SettingsDialog.vala:156 msgid "Hide unstable and RC releases" msgstr "Cacher les versions instables et RC" -#: src/Gtk/SettingsDialog.vala:177 -msgid "Show N previous major versions " +#: src/Gtk/SettingsDialog.vala:178 +#, fuzzy +msgid "previous major versions " msgstr "Montrer les N dernières versions majeures" -#: src/Gtk/SettingsDialog.vala:192 +#: src/Gtk/SettingsDialog.vala:182 msgid "Other" msgstr "Autre" -#: src/Gtk/SettingsDialog.vala:203 +#: src/Gtk/SettingsDialog.vala:193 msgid "Internet connection timeout in " msgstr "Attendre la connection internet " -#: src/Gtk/SettingsDialog.vala:218 +#: src/Gtk/SettingsDialog.vala:205 msgid "seconds" msgstr "secondes" -#: src/Gtk/SettingsDialog.vala:225 +#: src/Gtk/SettingsDialog.vala:212 msgid "Max concurrent downloads" msgstr "Nombre maximum de téléchargements parallèles" -#: src/Gtk/TerminalWindow.vala:158 src/Utility/Gtk/AboutWindow.vala:287 +#: src/Gtk/TerminalWindow.vala:154 src/Utility/Gtk/AboutWindow.vala:287 msgid "Close" msgstr "Fermer" @@ -479,10 +480,10 @@ msgstr "Dépendances Tierces" msgid "Missing Icon" msgstr "Icône introuvable" -#: src/Utility/TeeJee.Logging.vala:59 +#: src/Utility/TeeJee.Logging.vala:52 msgid "E" msgstr "E" -#: src/Utility/TeeJee.Logging.vala:84 +#: src/Utility/TeeJee.Logging.vala:68 msgid "D" msgstr "D" diff --git a/po/hr.po b/po/hr.po index 2ce22387..0da6a092 100644 --- a/po/hr.po +++ b/po/hr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-09 05:17-0500\n" +"POT-Creation-Date: 2023-03-10 09:00-0500\n" "PO-Revision-Date: 2022-09-22 12:13+0200\n" "Last-Translator: gogo \n" "Language-Team: Croatian\n" @@ -21,344 +21,344 @@ msgstr "Distribucija" msgid "Architecture" msgstr "Arhitektura" -#: src/Common/LinuxKernel.vala:283 +#: src/Common/LinuxKernel.vala:282 #, fuzzy -msgid "Fetching individual kernel indexes..." +msgid "Fetching individual kernel indexes" msgstr "Preuzimanje sadržaja..." #: src/Common/LinuxKernel.vala:327 -#, fuzzy -msgid "Fetching main index from" -msgstr "Preuzimanje sadržaja..." - -#: src/Common/LinuxKernel.vala:539 -msgid "Could not find running kernel in list!" -msgstr "Nemoguće je pronaći pokrenuti kernel na popisu!" - -#: src/Common/LinuxKernel.vala:545 -msgid "Could not find any kernels to uninstall" -msgstr "Nema pronađenih kernela za deinstaliranje" - -#: src/Common/LinuxKernel.vala:554 -msgid "The following kernels will be uninstalled:" -msgstr "Sljedeći kerneli će biti deinstalirani:" - -#: src/Common/LinuxKernel.vala:558 -msgid "Continue ?" -msgstr "Nastavi?" - -#: src/Common/LinuxKernel.vala:581 src/Console/AppConsole.vala:298 -msgid "Latest update" -msgstr "Najnovija nadopuna" - -#: src/Common/LinuxKernel.vala:592 src/Console/AppConsole.vala:305 -msgid "Latest point update" -msgstr "Najnovija ciljana nadopuna" - -#: src/Common/LinuxKernel.vala:600 src/Console/AppConsole.vala:310 -#: src/Console/AppConsole.vala:365 -msgid "No updates found" -msgstr "Nema pronađenih nadopuna" - -#: src/Common/LinuxKernel.vala:610 -#, c-format -msgid "Install Kernel Version %s ? (y/n): " -msgstr "Instaliraj kernel inačice %s ? (d/n): " +msgid "Updating from" +msgstr "" -#: src/Common/LinuxKernel.vala:832 +#: src/Common/LinuxKernel.vala:736 msgid "Packages Available" msgstr "Dostupni paketi" -#: src/Common/LinuxKernel.vala:837 +#: src/Common/LinuxKernel.vala:741 msgid "Packages Installed" msgstr "Instalirani paketi" -#: src/Common/LinuxKernel.vala:850 src/Utility/TeeJee.FileSystem.vala:136 +#: src/Common/LinuxKernel.vala:754 src/Utility/TeeJee.FileSystem.vala:136 msgid "File not found" msgstr "Datoteka nije pronađena" -#: src/Common/LinuxKernel.vala:915 +#: src/Common/LinuxKernel.vala:819 msgid "Available Kernels" msgstr "Dostupni kerneli" -#: src/Common/LinuxKernel.vala:922 src/Gtk/MainWindow.vala:151 +#: src/Common/LinuxKernel.vala:826 src/Gtk/MainWindow.vala:158 msgid "Installed" msgstr "Instalirano" -#: src/Common/LinuxKernel.vala:922 src/Gtk/MainWindow.vala:151 -#: src/Gtk/MainWindow.vala:502 src/Gtk/MainWindow.vala:516 +#: src/Common/LinuxKernel.vala:826 src/Gtk/MainWindow.vala:158 +#: src/Gtk/MainWindow.vala:504 src/Gtk/MainWindow.vala:517 msgid "Running" msgstr "Pokrenuto" -#: src/Common/LinuxKernel.vala:957 +#: src/Common/LinuxKernel.vala:861 msgid "Downloading" msgstr "Preuzimanje" -#: src/Common/LinuxKernel.vala:976 +#: src/Common/LinuxKernel.vala:880 msgid "OK" msgstr "U redu" -#: src/Common/LinuxKernel.vala:979 +#: src/Common/LinuxKernel.vala:883 msgid "ERROR" msgstr "GREŠKA" -#: src/Common/LinuxKernel.vala:993 +#: src/Common/LinuxKernel.vala:897 msgid "This kernel is already installed." msgstr "Ovaj kernel je već instaliran." -#: src/Common/LinuxKernel.vala:1024 +#: src/Common/LinuxKernel.vala:927 #, fuzzy msgid "Uninstalling selected kernels" msgstr "Deinstaliraj određene kernele" -#: src/Common/LinuxKernel.vala:1030 +#: src/Common/LinuxKernel.vala:933 msgid "requested" msgstr "" -#: src/Common/LinuxKernel.vala:1033 +#: src/Common/LinuxKernel.vala:936 msgid "skipping the currently booted kernel" msgstr "" -#: src/Common/LinuxKernel.vala:1049 +#: src/Common/LinuxKernel.vala:952 msgid "found" msgstr "" -#: src/Common/LinuxKernel.vala:1052 +#: src/Common/LinuxKernel.vala:955 #, fuzzy msgid "No packages to un-install!" msgstr "Instalirani paketi" -#: src/Common/Main.vala:259 +#: src/Common/LinuxKernel.vala:994 +#, fuzzy +msgid "Could not find running kernel in list" +msgstr "Nemoguće je pronaći pokrenuti kernel na popisu!" + +#: src/Common/LinuxKernel.vala:1000 +msgid "Could not find any kernels to uninstall" +msgstr "Nema pronađenih kernela za deinstaliranje" + +#: src/Common/LinuxKernel.vala:1009 +msgid "The following kernels will be uninstalled:" +msgstr "Sljedeći kerneli će biti deinstalirani:" + +#: src/Common/LinuxKernel.vala:1013 +msgid "Continue ?" +msgstr "Nastavi?" + +#: src/Common/LinuxKernel.vala:1036 src/Console/AppConsole.vala:291 +msgid "Latest update" +msgstr "Najnovija nadopuna" + +#: src/Common/LinuxKernel.vala:1047 src/Console/AppConsole.vala:298 +msgid "Latest point update" +msgstr "Najnovija ciljana nadopuna" + +#: src/Common/LinuxKernel.vala:1055 src/Console/AppConsole.vala:303 +#: src/Console/AppConsole.vala:358 +msgid "No updates found" +msgstr "Nema pronađenih nadopuna" + +#: src/Common/LinuxKernel.vala:1064 +#, c-format +msgid "Install Kernel Version %s ? (y/n): " +msgstr "Instaliraj kernel inačice %s ? (d/n): " + +#: src/Common/Main.vala:253 msgid "Called from" msgstr "Pozvano od" -#: src/Common/Main.vala:293 +#: src/Common/Main.vala:287 msgid "Notifications are disabled" msgstr "Obavijesti su onemogućene" -#: src/Common/Main.vala:332 src/Gtk/MainWindow.vala:617 +#: src/Common/Main.vala:325 src/Gtk/MainWindow.vala:615 #, fuzzy msgid "Can not reach" msgstr "Neuspjelo čitanje datoteke" -#: src/Common/Package.vala:60 +#: src/Common/Package.vala:57 #, fuzzy, c-format msgid "File not found: %s" msgstr "Datoteka nije pronađena" -#: src/Console/AppConsole.vala:68 src/Gtk/AppGtk.vala:141 +#: src/Console/AppConsole.vala:62 src/Gtk/AppGtk.vala:143 msgid "Syntax" msgstr "Sintaksa" -#: src/Console/AppConsole.vala:70 +#: src/Console/AppConsole.vala:64 msgid "Commands" msgstr "Naredbe" -#: src/Console/AppConsole.vala:72 +#: src/Console/AppConsole.vala:66 msgid "Check for kernel updates" msgstr "Provjeri nadopune kernela" -#: src/Console/AppConsole.vala:73 +#: src/Console/AppConsole.vala:67 msgid "Check for kernel updates and notify current user" msgstr "Provjeri nadopune kernela i obavijesti trenutnog korisnika" -#: src/Console/AppConsole.vala:74 +#: src/Console/AppConsole.vala:68 msgid "List all available mainline kernels" msgstr "Prikaži sve mainline kernele" -#: src/Console/AppConsole.vala:75 +#: src/Console/AppConsole.vala:69 msgid "List installed kernels" msgstr "Prikaži instalirane kernele" -#: src/Console/AppConsole.vala:76 +#: src/Console/AppConsole.vala:70 msgid "Install latest mainline kernel" msgstr "Instaliraj najnoviji mainline kernel" -#: src/Console/AppConsole.vala:77 +#: src/Console/AppConsole.vala:71 msgid "Install latest point update for current series" msgstr "Instaliraj najnoviju ciljanu nadopunu za trenutnu seriju" -#: src/Console/AppConsole.vala:78 +#: src/Console/AppConsole.vala:72 msgid "Install specified mainline kernel" msgstr "Instaliraj određeni mainline kernel" -#: src/Console/AppConsole.vala:79 +#: src/Console/AppConsole.vala:73 msgid "Uninstall specified kernel" msgstr "Deinstaliraj određene kernele" -#: src/Console/AppConsole.vala:80 +#: src/Console/AppConsole.vala:74 msgid "Uninstall kernels older than the running kernel" msgstr "Deinstaliraj starije kernele od trenutno pokrenutog krenela" -#: src/Console/AppConsole.vala:81 +#: src/Console/AppConsole.vala:75 msgid "Download specified kernels" msgstr "Preuzmi određene kernele" -#: src/Console/AppConsole.vala:82 +#: src/Console/AppConsole.vala:76 msgid "Delete cached info about available kernels" msgstr "" -#: src/Console/AppConsole.vala:84 src/Gtk/AppGtk.vala:143 +#: src/Console/AppConsole.vala:78 src/Gtk/AppGtk.vala:145 msgid "Options" msgstr "Mogućnosti" -#: src/Console/AppConsole.vala:86 +#: src/Console/AppConsole.vala:80 msgid "Include unstable and RC releases" msgstr "Uključi predizdanja i nestabilne kernele" -#: src/Console/AppConsole.vala:87 +#: src/Console/AppConsole.vala:81 #, fuzzy msgid "Exclude unstable and RC releases" msgstr "Uključi predizdanja i nestabilne kernele" -#: src/Console/AppConsole.vala:88 +#: src/Console/AppConsole.vala:82 msgid "Enable verbose debugging output" msgstr "Omogući opširnije zapisivanje" -#: src/Console/AppConsole.vala:89 +#: src/Console/AppConsole.vala:83 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "Pretpostavi Da za sve upite (neinteraktivan način rada)" -#: src/Console/AppConsole.vala:92 +#: src/Console/AppConsole.vala:86 msgid "A version string taken from the output of --list" msgstr "Izraz inačice uzet iz zapisa --list" -#: src/Console/AppConsole.vala:93 +#: src/Console/AppConsole.vala:87 msgid "" "One or more version strings (comma-separated) taken from the output of --list" msgstr "" "Jedan ili više izraza inačice (zarezom odvojeni) uzetih iz zapisa --list" -#: src/Console/AppConsole.vala:173 src/Gtk/AppGtk.vala:127 +#: src/Console/AppConsole.vala:164 src/Gtk/AppGtk.vala:129 msgid "Unknown option" msgstr "Nepoznata mogućnost" -#: src/Console/AppConsole.vala:175 src/Console/AppConsole.vala:255 -#: src/Console/AppConsole.vala:284 +#: src/Console/AppConsole.vala:165 src/Console/AppConsole.vala:249 +#: src/Console/AppConsole.vala:277 msgid "Run" msgstr "Pokreni" -#: src/Console/AppConsole.vala:175 +#: src/Console/AppConsole.vala:165 msgid "to list all options" msgstr "za prikaz svih mogućnosti" -#: src/Console/AppConsole.vala:227 src/Console/AppConsole.vala:263 +#: src/Console/AppConsole.vala:217 src/Console/AppConsole.vala:257 msgid "No kernels specified" msgstr "Nema određenih kernela" -#: src/Console/AppConsole.vala:233 +#: src/Console/AppConsole.vala:223 msgid "Multiple kernels selected for installation. Select only one." msgstr "Više kernela je odabrano za instalaciju. odaberite samo jedan." -#: src/Console/AppConsole.vala:252 +#: src/Console/AppConsole.vala:246 msgid "Could not find requested version" msgstr "Nemoguće je pronaći zatraženu inačicu" -#: src/Console/AppConsole.vala:255 +#: src/Console/AppConsole.vala:249 msgid "and use a version string listed in first column" msgstr "i koristite izraz inačice prikazan u prvom stupcu" -#: src/Console/AppConsole.vala:283 +#: src/Console/AppConsole.vala:276 msgid "Command not specified" msgstr "Naredba nije navedena" -#: src/Console/AppConsole.vala:284 +#: src/Console/AppConsole.vala:277 msgid "to list all commands" msgstr "za prikaz svih mogućnosti" -#: src/Console/AppConsole.vala:338 +#: src/Console/AppConsole.vala:331 src/Gtk/SettingsDialog.vala:166 msgid "Show" msgstr "Prikaži" -#: src/Console/AppConsole.vala:343 src/Console/AppConsole.vala:355 +#: src/Console/AppConsole.vala:336 src/Console/AppConsole.vala:348 #, c-format msgid "Kernel %s Available" msgstr "Kernel %s je dostupan" -#: src/Console/AppConsole.vala:345 src/Console/AppConsole.vala:357 -#: src/Gtk/MainWindow.vala:261 +#: src/Console/AppConsole.vala:338 src/Console/AppConsole.vala:350 +#: src/Gtk/MainWindow.vala:270 msgid "Install" msgstr "Instaliraj" -#: src/Gtk/AppGtk.vala:141 +#: src/Gtk/AppGtk.vala:143 #, fuzzy msgid "options" msgstr "Mogućnosti" -#: src/Gtk/AppGtk.vala:145 +#: src/Gtk/AppGtk.vala:147 msgid "Print debug information" msgstr "Ispiši informacije otklanjanja grešaka" -#: src/Gtk/AppGtk.vala:146 +#: src/Gtk/AppGtk.vala:148 msgid "Show all options" msgstr "Prikaži sve mogućnosti" -#: src/Gtk/MainWindow.vala:108 +#: src/Gtk/MainWindow.vala:115 msgid "Kernel" msgstr "Kernel" -#: src/Gtk/MainWindow.vala:138 +#: src/Gtk/MainWindow.vala:145 msgid "Status" msgstr "Stanje" -#: src/Gtk/MainWindow.vala:271 +#: src/Gtk/MainWindow.vala:280 msgid "Uninstall" msgstr "Deinstaliraj" -#: src/Gtk/MainWindow.vala:281 +#: src/Gtk/MainWindow.vala:290 msgid "Changes" msgstr "Promjene" -#: src/Gtk/MainWindow.vala:302 +#: src/Gtk/MainWindow.vala:312 msgid "Uninstall Old" msgstr "Deinstaliraj staro" -#: src/Gtk/MainWindow.vala:303 +#: src/Gtk/MainWindow.vala:313 msgid "Uninstall kernels older than running kernel" msgstr "Deinstaliraj kernele starije od pokrenutog krenela" -#: src/Gtk/MainWindow.vala:308 +#: src/Gtk/MainWindow.vala:318 msgid "Reload" msgstr "" -#: src/Gtk/MainWindow.vala:313 src/Gtk/SettingsDialog.vala:50 +#: src/Gtk/MainWindow.vala:323 src/Gtk/SettingsDialog.vala:50 msgid "Settings" msgstr "Postavke" -#: src/Gtk/MainWindow.vala:318 +#: src/Gtk/MainWindow.vala:328 msgid "About" msgstr "O programu" -#: src/Gtk/MainWindow.vala:323 +#: src/Gtk/MainWindow.vala:333 msgid "Exit" msgstr "" -#: src/Gtk/MainWindow.vala:391 +#: src/Gtk/MainWindow.vala:401 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Alat za nadogradnju kernela Ubuntu temeljenih distribucija" -#: src/Gtk/MainWindow.vala:392 +#: src/Gtk/MainWindow.vala:402 msgid "Forked" msgstr "Forkano" -#: src/Gtk/MainWindow.vala:392 +#: src/Gtk/MainWindow.vala:402 msgid "Original" msgstr "Izvornik" -#: src/Gtk/MainWindow.vala:430 -msgid "Updating cached indexes" +#: src/Gtk/MainWindow.vala:440 +msgid "Updating kernels" msgstr "" -#: src/Gtk/MainWindow.vala:512 +#: src/Gtk/MainWindow.vala:513 msgid "available" msgstr "dostupno" -#: src/Gtk/MainWindow.vala:546 src/Gtk/MainWindow.vala:580 -#: src/Gtk/MainWindow.vala:608 +#: src/Gtk/MainWindow.vala:546 src/Gtk/MainWindow.vala:579 +#: src/Gtk/MainWindow.vala:606 msgid "DONE" msgstr "" -#: src/Gtk/ProgressWindow.vala:126 src/Gtk/TerminalWindow.vala:148 +#: src/Gtk/ProgressWindow.vala:127 src/Gtk/TerminalWindow.vala:144 msgid "Cancel" msgstr "Odustani" @@ -370,63 +370,64 @@ msgstr "Obavijesti" msgid "Notify if a major release is available" msgstr "Obavijesti kada je glavno izdanje dostupno" -#: src/Gtk/SettingsDialog.vala:78 +#: src/Gtk/SettingsDialog.vala:76 msgid "Notify if a point release is available" msgstr "Obavijesti kada je pojedino izdanje dostupno" -#: src/Gtk/SettingsDialog.vala:89 +#: src/Gtk/SettingsDialog.vala:87 msgid "(Allowing intervals in seconds for --debug)" msgstr "(Dopuštena razdoblja u sekundama za --debug)" -#: src/Gtk/SettingsDialog.vala:112 +#: src/Gtk/SettingsDialog.vala:110 msgid "Check every" msgstr "Provjeri svaka" -#: src/Gtk/SettingsDialog.vala:142 +#: src/Gtk/SettingsDialog.vala:135 msgid "Hour(s)" msgstr "Sat(a)" -#: src/Gtk/SettingsDialog.vala:144 +#: src/Gtk/SettingsDialog.vala:137 msgid "Day(s)" msgstr "Dan(a)" -#: src/Gtk/SettingsDialog.vala:146 +#: src/Gtk/SettingsDialog.vala:139 msgid "Week(s)" msgstr "Tjedan(a)" -#: src/Gtk/SettingsDialog.vala:149 +#: src/Gtk/SettingsDialog.vala:142 msgid "Second(s)" msgstr "Sekund(e)" -#: src/Gtk/SettingsDialog.vala:155 +#: src/Gtk/SettingsDialog.vala:148 msgid "Display" msgstr "Prikaz" -#: src/Gtk/SettingsDialog.vala:163 +#: src/Gtk/SettingsDialog.vala:156 msgid "Hide unstable and RC releases" msgstr "Sakrij nestabilne kernele i predizdanja" -#: src/Gtk/SettingsDialog.vala:177 -msgid "Show N previous major versions " +#: src/Gtk/SettingsDialog.vala:178 +#, fuzzy +msgid "previous major versions " msgstr "Prikaži N prijašnjih glavnih izdanja " -#: src/Gtk/SettingsDialog.vala:192 +#: src/Gtk/SettingsDialog.vala:182 msgid "Other" msgstr "Ostalo" -#: src/Gtk/SettingsDialog.vala:203 +#: src/Gtk/SettingsDialog.vala:193 msgid "Internet connection timeout in " msgstr "Istek internet povezivanja za " -#: src/Gtk/SettingsDialog.vala:218 +#: src/Gtk/SettingsDialog.vala:205 msgid "seconds" msgstr "sekunde" -#: src/Gtk/SettingsDialog.vala:225 +#: src/Gtk/SettingsDialog.vala:212 msgid "Max concurrent downloads" msgstr "Najviše istodobnih preuzimanja" -#: src/Gtk/TerminalWindow.vala:158 src/Utility/Gtk/AboutWindow.vala:287 +#: src/Gtk/TerminalWindow.vala:154 src/Utility/Gtk/AboutWindow.vala:287 msgid "Close" msgstr "Zatvori" @@ -466,10 +467,10 @@ msgstr "Uključene treće strane" msgid "Missing Icon" msgstr "Ikone koje nedostaju" -#: src/Utility/TeeJee.Logging.vala:59 +#: src/Utility/TeeJee.Logging.vala:52 msgid "E" msgstr "G" -#: src/Utility/TeeJee.Logging.vala:84 +#: src/Utility/TeeJee.Logging.vala:68 msgid "D" msgstr "D" diff --git a/po/it.po b/po/it.po index a683d495..5260506c 100644 --- a/po/it.po +++ b/po/it.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline 1.0.15\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-09 05:17-0500\n" +"POT-Creation-Date: 2023-03-10 09:00-0500\n" "PO-Revision-Date: 2020-08-22 15:35+0100\n" "Last-Translator: Albano Battistella \n" "Language-Team: Italian\n" @@ -19,347 +19,347 @@ msgstr "Distribuzione" msgid "Architecture" msgstr "Architettura" -#: src/Common/LinuxKernel.vala:283 +#: src/Common/LinuxKernel.vala:282 #, fuzzy -msgid "Fetching individual kernel indexes..." +msgid "Fetching individual kernel indexes" msgstr "Recupero indice in corso..." #: src/Common/LinuxKernel.vala:327 -#, fuzzy -msgid "Fetching main index from" -msgstr "Recupero indice in corso..." - -#: src/Common/LinuxKernel.vala:539 -msgid "Could not find running kernel in list!" -msgstr "Impossibile trovare il kernel in esecuzione nell'elenco!" - -#: src/Common/LinuxKernel.vala:545 -msgid "Could not find any kernels to uninstall" -msgstr "Impossibile trovare alcun kernel da rimuovere" - -#: src/Common/LinuxKernel.vala:554 -msgid "The following kernels will be uninstalled:" -msgstr "I seguenti kernel verranno rimossi:" - -#: src/Common/LinuxKernel.vala:558 -msgid "Continue ?" -msgstr "Continuare ?" - -#: src/Common/LinuxKernel.vala:581 src/Console/AppConsole.vala:298 -msgid "Latest update" -msgstr "Ultimo aggiornamento" - -#: src/Common/LinuxKernel.vala:592 src/Console/AppConsole.vala:305 -msgid "Latest point update" -msgstr "Ultimo aggiornamento del punto" - -#: src/Common/LinuxKernel.vala:600 src/Console/AppConsole.vala:310 -#: src/Console/AppConsole.vala:365 -msgid "No updates found" -msgstr "Nessun aggiornamento trovato" - -#: src/Common/LinuxKernel.vala:610 -#, c-format -msgid "Install Kernel Version %s ? (y/n): " -msgstr "Installare la versione del kernel %s ? (y/n): " +msgid "Updating from" +msgstr "" -#: src/Common/LinuxKernel.vala:832 +#: src/Common/LinuxKernel.vala:736 msgid "Packages Available" msgstr "Pacchetti disponibili" -#: src/Common/LinuxKernel.vala:837 +#: src/Common/LinuxKernel.vala:741 msgid "Packages Installed" msgstr "Pacchetti installati" -#: src/Common/LinuxKernel.vala:850 src/Utility/TeeJee.FileSystem.vala:136 +#: src/Common/LinuxKernel.vala:754 src/Utility/TeeJee.FileSystem.vala:136 msgid "File not found" msgstr "File non trovato" -#: src/Common/LinuxKernel.vala:915 +#: src/Common/LinuxKernel.vala:819 msgid "Available Kernels" msgstr "Kernel disponibili" -#: src/Common/LinuxKernel.vala:922 src/Gtk/MainWindow.vala:151 +#: src/Common/LinuxKernel.vala:826 src/Gtk/MainWindow.vala:158 msgid "Installed" msgstr "Installato" -#: src/Common/LinuxKernel.vala:922 src/Gtk/MainWindow.vala:151 -#: src/Gtk/MainWindow.vala:502 src/Gtk/MainWindow.vala:516 +#: src/Common/LinuxKernel.vala:826 src/Gtk/MainWindow.vala:158 +#: src/Gtk/MainWindow.vala:504 src/Gtk/MainWindow.vala:517 msgid "Running" msgstr "In esecuzione" -#: src/Common/LinuxKernel.vala:957 +#: src/Common/LinuxKernel.vala:861 msgid "Downloading" msgstr "Download in corso" -#: src/Common/LinuxKernel.vala:976 +#: src/Common/LinuxKernel.vala:880 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:979 +#: src/Common/LinuxKernel.vala:883 msgid "ERROR" msgstr "ERRORE" -#: src/Common/LinuxKernel.vala:993 +#: src/Common/LinuxKernel.vala:897 msgid "This kernel is already installed." msgstr "Questo kernel è già installato" -#: src/Common/LinuxKernel.vala:1024 +#: src/Common/LinuxKernel.vala:927 #, fuzzy msgid "Uninstalling selected kernels" msgstr "Disinstalla i kernel specificati" -#: src/Common/LinuxKernel.vala:1030 +#: src/Common/LinuxKernel.vala:933 msgid "requested" msgstr "" -#: src/Common/LinuxKernel.vala:1033 +#: src/Common/LinuxKernel.vala:936 msgid "skipping the currently booted kernel" msgstr "" -#: src/Common/LinuxKernel.vala:1049 +#: src/Common/LinuxKernel.vala:952 msgid "found" msgstr "" -#: src/Common/LinuxKernel.vala:1052 +#: src/Common/LinuxKernel.vala:955 #, fuzzy msgid "No packages to un-install!" msgstr "Pacchetti installati" -#: src/Common/Main.vala:259 +#: src/Common/LinuxKernel.vala:994 +#, fuzzy +msgid "Could not find running kernel in list" +msgstr "Impossibile trovare il kernel in esecuzione nell'elenco!" + +#: src/Common/LinuxKernel.vala:1000 +msgid "Could not find any kernels to uninstall" +msgstr "Impossibile trovare alcun kernel da rimuovere" + +#: src/Common/LinuxKernel.vala:1009 +msgid "The following kernels will be uninstalled:" +msgstr "I seguenti kernel verranno rimossi:" + +#: src/Common/LinuxKernel.vala:1013 +msgid "Continue ?" +msgstr "Continuare ?" + +#: src/Common/LinuxKernel.vala:1036 src/Console/AppConsole.vala:291 +msgid "Latest update" +msgstr "Ultimo aggiornamento" + +#: src/Common/LinuxKernel.vala:1047 src/Console/AppConsole.vala:298 +msgid "Latest point update" +msgstr "Ultimo aggiornamento del punto" + +#: src/Common/LinuxKernel.vala:1055 src/Console/AppConsole.vala:303 +#: src/Console/AppConsole.vala:358 +msgid "No updates found" +msgstr "Nessun aggiornamento trovato" + +#: src/Common/LinuxKernel.vala:1064 +#, c-format +msgid "Install Kernel Version %s ? (y/n): " +msgstr "Installare la versione del kernel %s ? (y/n): " + +#: src/Common/Main.vala:253 msgid "Called from" msgstr "Chiamata da" -#: src/Common/Main.vala:293 +#: src/Common/Main.vala:287 msgid "Notifications are disabled" msgstr "Le notifiche sono disabilitate" -#: src/Common/Main.vala:332 src/Gtk/MainWindow.vala:617 +#: src/Common/Main.vala:325 src/Gtk/MainWindow.vala:615 #, fuzzy msgid "Can not reach" msgstr "Impossibile leggere il file" -#: src/Common/Package.vala:60 +#: src/Common/Package.vala:57 #, fuzzy, c-format msgid "File not found: %s" msgstr "File non trovato" -#: src/Console/AppConsole.vala:68 src/Gtk/AppGtk.vala:141 +#: src/Console/AppConsole.vala:62 src/Gtk/AppGtk.vala:143 msgid "Syntax" msgstr "Sintassi" -#: src/Console/AppConsole.vala:70 +#: src/Console/AppConsole.vala:64 msgid "Commands" msgstr "Comandi" -#: src/Console/AppConsole.vala:72 +#: src/Console/AppConsole.vala:66 msgid "Check for kernel updates" msgstr "Verifica aggiornamenti per il kernel" -#: src/Console/AppConsole.vala:73 +#: src/Console/AppConsole.vala:67 msgid "Check for kernel updates and notify current user" msgstr "" "Verifica la disponibilità di aggiornamenti del kerneled avvisa l'utente " "corrente" -#: src/Console/AppConsole.vala:74 +#: src/Console/AppConsole.vala:68 msgid "List all available mainline kernels" msgstr "Elenca tutti i kernel mainline disponibili" -#: src/Console/AppConsole.vala:75 +#: src/Console/AppConsole.vala:69 msgid "List installed kernels" msgstr "Elenca i kernel installati" -#: src/Console/AppConsole.vala:76 +#: src/Console/AppConsole.vala:70 msgid "Install latest mainline kernel" msgstr "Installa ultimo kernel mainline" -#: src/Console/AppConsole.vala:77 +#: src/Console/AppConsole.vala:71 msgid "Install latest point update for current series" msgstr "installa l'ultimo rilascio parziale per le serie attuali" -#: src/Console/AppConsole.vala:78 +#: src/Console/AppConsole.vala:72 msgid "Install specified mainline kernel" msgstr "Installa kernel mainline specificato" -#: src/Console/AppConsole.vala:79 +#: src/Console/AppConsole.vala:73 msgid "Uninstall specified kernel" msgstr "Disinstalla i kernel specificati" -#: src/Console/AppConsole.vala:80 +#: src/Console/AppConsole.vala:74 msgid "Uninstall kernels older than the running kernel" msgstr "Rimuovere i kernel installati più vecchi del kernel in esecuzione" -#: src/Console/AppConsole.vala:81 +#: src/Console/AppConsole.vala:75 msgid "Download specified kernels" msgstr "Scarica i kernel specificati" -#: src/Console/AppConsole.vala:82 +#: src/Console/AppConsole.vala:76 msgid "Delete cached info about available kernels" msgstr "" -#: src/Console/AppConsole.vala:84 src/Gtk/AppGtk.vala:143 +#: src/Console/AppConsole.vala:78 src/Gtk/AppGtk.vala:145 msgid "Options" msgstr "Opzioni" -#: src/Console/AppConsole.vala:86 +#: src/Console/AppConsole.vala:80 msgid "Include unstable and RC releases" msgstr "Includi versioni instabili e RC" -#: src/Console/AppConsole.vala:87 +#: src/Console/AppConsole.vala:81 #, fuzzy msgid "Exclude unstable and RC releases" msgstr "Includi versioni instabili e RC" -#: src/Console/AppConsole.vala:88 +#: src/Console/AppConsole.vala:82 msgid "Enable verbose debugging output" msgstr "Abilita l'output di debug dettagliato" -#: src/Console/AppConsole.vala:89 +#: src/Console/AppConsole.vala:83 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "Imposta Sì per tutte le richieste (modalità non interattiva)" -#: src/Console/AppConsole.vala:92 +#: src/Console/AppConsole.vala:86 msgid "A version string taken from the output of --list" msgstr "Una stringa di versione presa dall'output di --list" -#: src/Console/AppConsole.vala:93 +#: src/Console/AppConsole.vala:87 msgid "" "One or more version strings (comma-separated) taken from the output of --list" msgstr "" "Una o più stringhe di versione (separate da virgole) prese dall'output di --" "list" -#: src/Console/AppConsole.vala:173 src/Gtk/AppGtk.vala:127 +#: src/Console/AppConsole.vala:164 src/Gtk/AppGtk.vala:129 msgid "Unknown option" msgstr "Opzione sconosciuta" -#: src/Console/AppConsole.vala:175 src/Console/AppConsole.vala:255 -#: src/Console/AppConsole.vala:284 +#: src/Console/AppConsole.vala:165 src/Console/AppConsole.vala:249 +#: src/Console/AppConsole.vala:277 msgid "Run" msgstr "In corso" -#: src/Console/AppConsole.vala:175 +#: src/Console/AppConsole.vala:165 msgid "to list all options" msgstr "Elencare tutte le opzioni" -#: src/Console/AppConsole.vala:227 src/Console/AppConsole.vala:263 +#: src/Console/AppConsole.vala:217 src/Console/AppConsole.vala:257 msgid "No kernels specified" msgstr "Nessun kernel specificato" -#: src/Console/AppConsole.vala:233 +#: src/Console/AppConsole.vala:223 msgid "Multiple kernels selected for installation. Select only one." msgstr "Più kernel selezionati per l'installazione. Selezionare uno solo." -#: src/Console/AppConsole.vala:252 +#: src/Console/AppConsole.vala:246 msgid "Could not find requested version" msgstr "Impossibile trovare la versione richiesta" -#: src/Console/AppConsole.vala:255 +#: src/Console/AppConsole.vala:249 msgid "and use a version string listed in first column" msgstr "e usa una stringa di versione elencata nella prima colonna" -#: src/Console/AppConsole.vala:283 +#: src/Console/AppConsole.vala:276 msgid "Command not specified" msgstr "Comando non specificato" -#: src/Console/AppConsole.vala:284 +#: src/Console/AppConsole.vala:277 msgid "to list all commands" msgstr "Elencare tutti i comandi" -#: src/Console/AppConsole.vala:338 +#: src/Console/AppConsole.vala:331 src/Gtk/SettingsDialog.vala:166 msgid "Show" msgstr "Mostra" -#: src/Console/AppConsole.vala:343 src/Console/AppConsole.vala:355 +#: src/Console/AppConsole.vala:336 src/Console/AppConsole.vala:348 #, c-format msgid "Kernel %s Available" msgstr "Kernel %s Disponibile" -#: src/Console/AppConsole.vala:345 src/Console/AppConsole.vala:357 -#: src/Gtk/MainWindow.vala:261 +#: src/Console/AppConsole.vala:338 src/Console/AppConsole.vala:350 +#: src/Gtk/MainWindow.vala:270 msgid "Install" msgstr "Installa" -#: src/Gtk/AppGtk.vala:141 +#: src/Gtk/AppGtk.vala:143 #, fuzzy msgid "options" msgstr "Opzioni" -#: src/Gtk/AppGtk.vala:145 +#: src/Gtk/AppGtk.vala:147 msgid "Print debug information" msgstr "Stampa le informazioni di debug" -#: src/Gtk/AppGtk.vala:146 +#: src/Gtk/AppGtk.vala:148 msgid "Show all options" msgstr "Mostra tutte le opzioni" -#: src/Gtk/MainWindow.vala:108 +#: src/Gtk/MainWindow.vala:115 msgid "Kernel" msgstr "Kernel" -#: src/Gtk/MainWindow.vala:138 +#: src/Gtk/MainWindow.vala:145 msgid "Status" msgstr "Stato" -#: src/Gtk/MainWindow.vala:271 +#: src/Gtk/MainWindow.vala:280 msgid "Uninstall" msgstr "Disinstalla" -#: src/Gtk/MainWindow.vala:281 +#: src/Gtk/MainWindow.vala:290 msgid "Changes" msgstr "Modifiche" -#: src/Gtk/MainWindow.vala:302 +#: src/Gtk/MainWindow.vala:312 msgid "Uninstall Old" msgstr "Disinstalla i vecchi" -#: src/Gtk/MainWindow.vala:303 +#: src/Gtk/MainWindow.vala:313 msgid "Uninstall kernels older than running kernel" msgstr "Rimuovere i kernel installati più vecchi del kernel in esecuzione" -#: src/Gtk/MainWindow.vala:308 +#: src/Gtk/MainWindow.vala:318 msgid "Reload" msgstr "" -#: src/Gtk/MainWindow.vala:313 src/Gtk/SettingsDialog.vala:50 +#: src/Gtk/MainWindow.vala:323 src/Gtk/SettingsDialog.vala:50 msgid "Settings" msgstr "Impostazioni" -#: src/Gtk/MainWindow.vala:318 +#: src/Gtk/MainWindow.vala:328 msgid "About" msgstr "Informazioni" -#: src/Gtk/MainWindow.vala:323 +#: src/Gtk/MainWindow.vala:333 msgid "Exit" msgstr "" -#: src/Gtk/MainWindow.vala:391 +#: src/Gtk/MainWindow.vala:401 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Utilità di aggiornamento del kernel per distribuzioni basate su Ubuntu" -#: src/Gtk/MainWindow.vala:392 +#: src/Gtk/MainWindow.vala:402 msgid "Forked" msgstr "Forked" -#: src/Gtk/MainWindow.vala:392 +#: src/Gtk/MainWindow.vala:402 msgid "Original" msgstr "Originale" -#: src/Gtk/MainWindow.vala:430 -msgid "Updating cached indexes" +#: src/Gtk/MainWindow.vala:440 +msgid "Updating kernels" msgstr "" -#: src/Gtk/MainWindow.vala:512 +#: src/Gtk/MainWindow.vala:513 msgid "available" msgstr "disponibile" -#: src/Gtk/MainWindow.vala:546 src/Gtk/MainWindow.vala:580 -#: src/Gtk/MainWindow.vala:608 +#: src/Gtk/MainWindow.vala:546 src/Gtk/MainWindow.vala:579 +#: src/Gtk/MainWindow.vala:606 msgid "DONE" msgstr "" -#: src/Gtk/ProgressWindow.vala:126 src/Gtk/TerminalWindow.vala:148 +#: src/Gtk/ProgressWindow.vala:127 src/Gtk/TerminalWindow.vala:144 msgid "Cancel" msgstr "Cancella" @@ -371,63 +371,64 @@ msgstr "Notifica" msgid "Notify if a major release is available" msgstr "Avvisa se è disponibile una versione principale" -#: src/Gtk/SettingsDialog.vala:78 +#: src/Gtk/SettingsDialog.vala:76 msgid "Notify if a point release is available" msgstr "Avvisa se è disponibile un rilascio parziale" -#: src/Gtk/SettingsDialog.vala:89 +#: src/Gtk/SettingsDialog.vala:87 msgid "(Allowing intervals in seconds for --debug)" msgstr "(Consentire intervalli in secondi per --debug)" -#: src/Gtk/SettingsDialog.vala:112 +#: src/Gtk/SettingsDialog.vala:110 msgid "Check every" msgstr "Controlla ogni" -#: src/Gtk/SettingsDialog.vala:142 +#: src/Gtk/SettingsDialog.vala:135 msgid "Hour(s)" msgstr "Ora(e)" -#: src/Gtk/SettingsDialog.vala:144 +#: src/Gtk/SettingsDialog.vala:137 msgid "Day(s)" msgstr "Giorno(i)" -#: src/Gtk/SettingsDialog.vala:146 +#: src/Gtk/SettingsDialog.vala:139 msgid "Week(s)" msgstr "Settimana(e)" -#: src/Gtk/SettingsDialog.vala:149 +#: src/Gtk/SettingsDialog.vala:142 msgid "Second(s)" msgstr "Secondo(i)" -#: src/Gtk/SettingsDialog.vala:155 +#: src/Gtk/SettingsDialog.vala:148 msgid "Display" msgstr "Visualizza" -#: src/Gtk/SettingsDialog.vala:163 +#: src/Gtk/SettingsDialog.vala:156 msgid "Hide unstable and RC releases" msgstr "Nascondi versioni instabili e RC" -#: src/Gtk/SettingsDialog.vala:177 -msgid "Show N previous major versions " +#: src/Gtk/SettingsDialog.vala:178 +#, fuzzy +msgid "previous major versions " msgstr "Mostra N versioni principali precedenti" -#: src/Gtk/SettingsDialog.vala:192 +#: src/Gtk/SettingsDialog.vala:182 msgid "Other" msgstr "Altro" -#: src/Gtk/SettingsDialog.vala:203 +#: src/Gtk/SettingsDialog.vala:193 msgid "Internet connection timeout in " msgstr "Timeout connessione Internet in" -#: src/Gtk/SettingsDialog.vala:218 +#: src/Gtk/SettingsDialog.vala:205 msgid "seconds" msgstr "secondi" -#: src/Gtk/SettingsDialog.vala:225 +#: src/Gtk/SettingsDialog.vala:212 msgid "Max concurrent downloads" msgstr "Numero massimo di download simultanei" -#: src/Gtk/TerminalWindow.vala:158 src/Utility/Gtk/AboutWindow.vala:287 +#: src/Gtk/TerminalWindow.vala:154 src/Utility/Gtk/AboutWindow.vala:287 msgid "Close" msgstr "Chiudi" @@ -467,10 +468,10 @@ msgstr "Inclusioni di terze parti" msgid "Missing Icon" msgstr "Icona mancante" -#: src/Utility/TeeJee.Logging.vala:59 +#: src/Utility/TeeJee.Logging.vala:52 msgid "E" msgstr "E" -#: src/Utility/TeeJee.Logging.vala:84 +#: src/Utility/TeeJee.Logging.vala:68 msgid "D" msgstr "D" diff --git a/po/ko.po b/po/ko.po index 558f34de..d39db87b 100644 --- a/po/ko.po +++ b/po/ko.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline 1.0.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-09 05:17-0500\n" +"POT-Creation-Date: 2023-03-10 09:00-0500\n" "PO-Revision-Date: 2022-09-28 11:48+0900\n" "Last-Translator: Kevin Kim \n" "Language-Team: Korean\n" @@ -21,343 +21,343 @@ msgstr "배포판" msgid "Architecture" msgstr "아키텍처" -#: src/Common/LinuxKernel.vala:283 +#: src/Common/LinuxKernel.vala:282 #, fuzzy -msgid "Fetching individual kernel indexes..." +msgid "Fetching individual kernel indexes" msgstr "목록 가져오기..." #: src/Common/LinuxKernel.vala:327 -#, fuzzy -msgid "Fetching main index from" -msgstr "목록 가져오기..." - -#: src/Common/LinuxKernel.vala:539 -msgid "Could not find running kernel in list!" -msgstr "목록에서 사용중인 커널을 찾을 수 없습니다!" - -#: src/Common/LinuxKernel.vala:545 -msgid "Could not find any kernels to uninstall" -msgstr "삭제할 커널을 찾을 수 없습니다" - -#: src/Common/LinuxKernel.vala:554 -msgid "The following kernels will be uninstalled:" -msgstr "아래 커널이 삭제됩니다:" - -#: src/Common/LinuxKernel.vala:558 -msgid "Continue ?" -msgstr "계속하시겠습니까?" - -#: src/Common/LinuxKernel.vala:581 src/Console/AppConsole.vala:298 -msgid "Latest update" -msgstr "최신 업데이트" - -#: src/Common/LinuxKernel.vala:592 src/Console/AppConsole.vala:305 -msgid "Latest point update" -msgstr "최신 포인트 업데이트" - -#: src/Common/LinuxKernel.vala:600 src/Console/AppConsole.vala:310 -#: src/Console/AppConsole.vala:365 -msgid "No updates found" -msgstr "업데이트를 찾을 수 없습니다" - -#: src/Common/LinuxKernel.vala:610 -#, c-format -msgid "Install Kernel Version %s ? (y/n): " -msgstr "커널 %s 버전을 설치하시겠습니까? (y/n): " +msgid "Updating from" +msgstr "" -#: src/Common/LinuxKernel.vala:832 +#: src/Common/LinuxKernel.vala:736 msgid "Packages Available" msgstr "설치 가능한 패키지" -#: src/Common/LinuxKernel.vala:837 +#: src/Common/LinuxKernel.vala:741 msgid "Packages Installed" msgstr "설치된 패키지" -#: src/Common/LinuxKernel.vala:850 src/Utility/TeeJee.FileSystem.vala:136 +#: src/Common/LinuxKernel.vala:754 src/Utility/TeeJee.FileSystem.vala:136 msgid "File not found" msgstr "파일을 찾을 수 없습니다" -#: src/Common/LinuxKernel.vala:915 +#: src/Common/LinuxKernel.vala:819 msgid "Available Kernels" msgstr "설치 가능한 커널" -#: src/Common/LinuxKernel.vala:922 src/Gtk/MainWindow.vala:151 +#: src/Common/LinuxKernel.vala:826 src/Gtk/MainWindow.vala:158 msgid "Installed" msgstr "설치 됨" -#: src/Common/LinuxKernel.vala:922 src/Gtk/MainWindow.vala:151 -#: src/Gtk/MainWindow.vala:502 src/Gtk/MainWindow.vala:516 +#: src/Common/LinuxKernel.vala:826 src/Gtk/MainWindow.vala:158 +#: src/Gtk/MainWindow.vala:504 src/Gtk/MainWindow.vala:517 msgid "Running" msgstr "구동 중" -#: src/Common/LinuxKernel.vala:957 +#: src/Common/LinuxKernel.vala:861 msgid "Downloading" msgstr "다운로드 중" -#: src/Common/LinuxKernel.vala:976 +#: src/Common/LinuxKernel.vala:880 msgid "OK" msgstr "확인" -#: src/Common/LinuxKernel.vala:979 +#: src/Common/LinuxKernel.vala:883 msgid "ERROR" msgstr "오류" -#: src/Common/LinuxKernel.vala:993 +#: src/Common/LinuxKernel.vala:897 msgid "This kernel is already installed." msgstr "이 커널은 이미 설치되었습니다." -#: src/Common/LinuxKernel.vala:1024 +#: src/Common/LinuxKernel.vala:927 #, fuzzy msgid "Uninstalling selected kernels" msgstr "지정한 커널 삭제" -#: src/Common/LinuxKernel.vala:1030 +#: src/Common/LinuxKernel.vala:933 msgid "requested" msgstr "" -#: src/Common/LinuxKernel.vala:1033 +#: src/Common/LinuxKernel.vala:936 msgid "skipping the currently booted kernel" msgstr "" -#: src/Common/LinuxKernel.vala:1049 +#: src/Common/LinuxKernel.vala:952 msgid "found" msgstr "" -#: src/Common/LinuxKernel.vala:1052 +#: src/Common/LinuxKernel.vala:955 #, fuzzy msgid "No packages to un-install!" msgstr "설치된 패키지" -#: src/Common/Main.vala:259 +#: src/Common/LinuxKernel.vala:994 +#, fuzzy +msgid "Could not find running kernel in list" +msgstr "목록에서 사용중인 커널을 찾을 수 없습니다!" + +#: src/Common/LinuxKernel.vala:1000 +msgid "Could not find any kernels to uninstall" +msgstr "삭제할 커널을 찾을 수 없습니다" + +#: src/Common/LinuxKernel.vala:1009 +msgid "The following kernels will be uninstalled:" +msgstr "아래 커널이 삭제됩니다:" + +#: src/Common/LinuxKernel.vala:1013 +msgid "Continue ?" +msgstr "계속하시겠습니까?" + +#: src/Common/LinuxKernel.vala:1036 src/Console/AppConsole.vala:291 +msgid "Latest update" +msgstr "최신 업데이트" + +#: src/Common/LinuxKernel.vala:1047 src/Console/AppConsole.vala:298 +msgid "Latest point update" +msgstr "최신 포인트 업데이트" + +#: src/Common/LinuxKernel.vala:1055 src/Console/AppConsole.vala:303 +#: src/Console/AppConsole.vala:358 +msgid "No updates found" +msgstr "업데이트를 찾을 수 없습니다" + +#: src/Common/LinuxKernel.vala:1064 +#, c-format +msgid "Install Kernel Version %s ? (y/n): " +msgstr "커널 %s 버전을 설치하시겠습니까? (y/n): " + +#: src/Common/Main.vala:253 msgid "Called from" msgstr "에서 호출" -#: src/Common/Main.vala:293 +#: src/Common/Main.vala:287 msgid "Notifications are disabled" msgstr "알림이 비활성화 되었습니다" -#: src/Common/Main.vala:332 src/Gtk/MainWindow.vala:617 +#: src/Common/Main.vala:325 src/Gtk/MainWindow.vala:615 #, fuzzy msgid "Can not reach" msgstr "파일 읽기를 실패했습니다" -#: src/Common/Package.vala:60 +#: src/Common/Package.vala:57 #, fuzzy, c-format msgid "File not found: %s" msgstr "파일을 찾을 수 없습니다" -#: src/Console/AppConsole.vala:68 src/Gtk/AppGtk.vala:141 +#: src/Console/AppConsole.vala:62 src/Gtk/AppGtk.vala:143 msgid "Syntax" msgstr "문법" -#: src/Console/AppConsole.vala:70 +#: src/Console/AppConsole.vala:64 msgid "Commands" msgstr "명령어" -#: src/Console/AppConsole.vala:72 +#: src/Console/AppConsole.vala:66 msgid "Check for kernel updates" msgstr "커널 업데이트 확인" -#: src/Console/AppConsole.vala:73 +#: src/Console/AppConsole.vala:67 msgid "Check for kernel updates and notify current user" msgstr "커널 업데이트를 확인하고 현재 사용자에게 알림" -#: src/Console/AppConsole.vala:74 +#: src/Console/AppConsole.vala:68 msgid "List all available mainline kernels" msgstr "사용 가능한 모든 메인라인 커널 보기" -#: src/Console/AppConsole.vala:75 +#: src/Console/AppConsole.vala:69 msgid "List installed kernels" msgstr "설치된 커널 보기" -#: src/Console/AppConsole.vala:76 +#: src/Console/AppConsole.vala:70 msgid "Install latest mainline kernel" msgstr "최신 메인라인 커널 설치" -#: src/Console/AppConsole.vala:77 +#: src/Console/AppConsole.vala:71 msgid "Install latest point update for current series" msgstr "현재 사용중인 배포판을 위한 최신 포인트 업데이트 설치" -#: src/Console/AppConsole.vala:78 +#: src/Console/AppConsole.vala:72 msgid "Install specified mainline kernel" msgstr "지정한 메인라인 커널 설치" -#: src/Console/AppConsole.vala:79 +#: src/Console/AppConsole.vala:73 msgid "Uninstall specified kernel" msgstr "지정한 커널 삭제" -#: src/Console/AppConsole.vala:80 +#: src/Console/AppConsole.vala:74 msgid "Uninstall kernels older than the running kernel" msgstr "현재 사용중인 커널보다 이전 버전의 설치된 커널을 제거" -#: src/Console/AppConsole.vala:81 +#: src/Console/AppConsole.vala:75 msgid "Download specified kernels" msgstr "지정한 커널 다운로드" -#: src/Console/AppConsole.vala:82 +#: src/Console/AppConsole.vala:76 msgid "Delete cached info about available kernels" msgstr "" -#: src/Console/AppConsole.vala:84 src/Gtk/AppGtk.vala:143 +#: src/Console/AppConsole.vala:78 src/Gtk/AppGtk.vala:145 msgid "Options" msgstr "옵션" -#: src/Console/AppConsole.vala:86 +#: src/Console/AppConsole.vala:80 msgid "Include unstable and RC releases" msgstr "목록에서 unstable, RC 버전 포함" -#: src/Console/AppConsole.vala:87 +#: src/Console/AppConsole.vala:81 #, fuzzy msgid "Exclude unstable and RC releases" msgstr "목록에서 unstable, RC 버전 포함" -#: src/Console/AppConsole.vala:88 +#: src/Console/AppConsole.vala:82 msgid "Enable verbose debugging output" msgstr "디버깅을 위한 진행 과정 보이기 활성화" -#: src/Console/AppConsole.vala:89 +#: src/Console/AppConsole.vala:83 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "모든 물음에 자동으로 \"예\"라고 가정 (비 대화형 모드)" -#: src/Console/AppConsole.vala:92 +#: src/Console/AppConsole.vala:86 msgid "A version string taken from the output of --list" msgstr "--list 의 출력에서 가져온 버전 문자열" -#: src/Console/AppConsole.vala:93 +#: src/Console/AppConsole.vala:87 msgid "" "One or more version strings (comma-separated) taken from the output of --list" msgstr "--list 의 출력에서 가져온 하나 이상의 버전 문자열 (쉼표로 구분)" -#: src/Console/AppConsole.vala:173 src/Gtk/AppGtk.vala:127 +#: src/Console/AppConsole.vala:164 src/Gtk/AppGtk.vala:129 msgid "Unknown option" msgstr "알 수 없는 옵션" -#: src/Console/AppConsole.vala:175 src/Console/AppConsole.vala:255 -#: src/Console/AppConsole.vala:284 +#: src/Console/AppConsole.vala:165 src/Console/AppConsole.vala:249 +#: src/Console/AppConsole.vala:277 msgid "Run" msgstr "실행" -#: src/Console/AppConsole.vala:175 +#: src/Console/AppConsole.vala:165 msgid "to list all options" msgstr "모든 옵션을 나열" -#: src/Console/AppConsole.vala:227 src/Console/AppConsole.vala:263 +#: src/Console/AppConsole.vala:217 src/Console/AppConsole.vala:257 msgid "No kernels specified" msgstr "지정한 커널이 없습니다" -#: src/Console/AppConsole.vala:233 +#: src/Console/AppConsole.vala:223 msgid "Multiple kernels selected for installation. Select only one." msgstr "설치할 커널이 여러개 선택되었습니다. 하나의 커널만 선택하세요." -#: src/Console/AppConsole.vala:252 +#: src/Console/AppConsole.vala:246 msgid "Could not find requested version" msgstr "요청한 버전을 찾을 수 없습니다" -#: src/Console/AppConsole.vala:255 +#: src/Console/AppConsole.vala:249 msgid "and use a version string listed in first column" msgstr "첫 번째 열에 나열된 버전 문자열을 사용" -#: src/Console/AppConsole.vala:283 +#: src/Console/AppConsole.vala:276 msgid "Command not specified" msgstr "지정한 명령어가 없습니다" -#: src/Console/AppConsole.vala:284 +#: src/Console/AppConsole.vala:277 msgid "to list all commands" msgstr "모든 명령어 나열" -#: src/Console/AppConsole.vala:338 +#: src/Console/AppConsole.vala:331 src/Gtk/SettingsDialog.vala:166 msgid "Show" msgstr "보이기" -#: src/Console/AppConsole.vala:343 src/Console/AppConsole.vala:355 +#: src/Console/AppConsole.vala:336 src/Console/AppConsole.vala:348 #, c-format msgid "Kernel %s Available" msgstr "커널 %s 사용 가능" -#: src/Console/AppConsole.vala:345 src/Console/AppConsole.vala:357 -#: src/Gtk/MainWindow.vala:261 +#: src/Console/AppConsole.vala:338 src/Console/AppConsole.vala:350 +#: src/Gtk/MainWindow.vala:270 msgid "Install" msgstr "설치" -#: src/Gtk/AppGtk.vala:141 +#: src/Gtk/AppGtk.vala:143 #, fuzzy msgid "options" msgstr "옵션" -#: src/Gtk/AppGtk.vala:145 +#: src/Gtk/AppGtk.vala:147 msgid "Print debug information" msgstr "디버그 정보 출력" -#: src/Gtk/AppGtk.vala:146 +#: src/Gtk/AppGtk.vala:148 msgid "Show all options" msgstr "모든 옵션 보기" -#: src/Gtk/MainWindow.vala:108 +#: src/Gtk/MainWindow.vala:115 msgid "Kernel" msgstr "커널" -#: src/Gtk/MainWindow.vala:138 +#: src/Gtk/MainWindow.vala:145 msgid "Status" msgstr "상태" -#: src/Gtk/MainWindow.vala:271 +#: src/Gtk/MainWindow.vala:280 msgid "Uninstall" msgstr "삭제" -#: src/Gtk/MainWindow.vala:281 +#: src/Gtk/MainWindow.vala:290 msgid "Changes" msgstr "변경사항" -#: src/Gtk/MainWindow.vala:302 +#: src/Gtk/MainWindow.vala:312 msgid "Uninstall Old" msgstr "오래된 커널 제거" -#: src/Gtk/MainWindow.vala:303 +#: src/Gtk/MainWindow.vala:313 msgid "Uninstall kernels older than running kernel" msgstr "현재 사용 중인 커널보다 이전 버전의 커널을 제거" -#: src/Gtk/MainWindow.vala:308 +#: src/Gtk/MainWindow.vala:318 msgid "Reload" msgstr "" -#: src/Gtk/MainWindow.vala:313 src/Gtk/SettingsDialog.vala:50 +#: src/Gtk/MainWindow.vala:323 src/Gtk/SettingsDialog.vala:50 msgid "Settings" msgstr "설정" -#: src/Gtk/MainWindow.vala:318 +#: src/Gtk/MainWindow.vala:328 msgid "About" msgstr "정보" -#: src/Gtk/MainWindow.vala:323 +#: src/Gtk/MainWindow.vala:333 msgid "Exit" msgstr "" -#: src/Gtk/MainWindow.vala:391 +#: src/Gtk/MainWindow.vala:401 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "우분투 기반 배포판의 커널 업그레이드 도구" -#: src/Gtk/MainWindow.vala:392 +#: src/Gtk/MainWindow.vala:402 msgid "Forked" msgstr "" -#: src/Gtk/MainWindow.vala:392 +#: src/Gtk/MainWindow.vala:402 msgid "Original" msgstr "" -#: src/Gtk/MainWindow.vala:430 -msgid "Updating cached indexes" +#: src/Gtk/MainWindow.vala:440 +msgid "Updating kernels" msgstr "" -#: src/Gtk/MainWindow.vala:512 +#: src/Gtk/MainWindow.vala:513 msgid "available" msgstr "사용가능" -#: src/Gtk/MainWindow.vala:546 src/Gtk/MainWindow.vala:580 -#: src/Gtk/MainWindow.vala:608 +#: src/Gtk/MainWindow.vala:546 src/Gtk/MainWindow.vala:579 +#: src/Gtk/MainWindow.vala:606 msgid "DONE" msgstr "" -#: src/Gtk/ProgressWindow.vala:126 src/Gtk/TerminalWindow.vala:148 +#: src/Gtk/ProgressWindow.vala:127 src/Gtk/TerminalWindow.vala:144 msgid "Cancel" msgstr "취소" @@ -369,63 +369,64 @@ msgstr "알림" msgid "Notify if a major release is available" msgstr "메이저 릴리즈가 있으면 알림" -#: src/Gtk/SettingsDialog.vala:78 +#: src/Gtk/SettingsDialog.vala:76 msgid "Notify if a point release is available" msgstr "포인트 릴리즈가 있으면 알림" -#: src/Gtk/SettingsDialog.vala:89 +#: src/Gtk/SettingsDialog.vala:87 msgid "(Allowing intervals in seconds for --debug)" msgstr "(--debug 를 위한 몇초간 지연 허용)" -#: src/Gtk/SettingsDialog.vala:112 +#: src/Gtk/SettingsDialog.vala:110 msgid "Check every" msgstr "확인 주기" -#: src/Gtk/SettingsDialog.vala:142 +#: src/Gtk/SettingsDialog.vala:135 msgid "Hour(s)" msgstr "시간" -#: src/Gtk/SettingsDialog.vala:144 +#: src/Gtk/SettingsDialog.vala:137 msgid "Day(s)" msgstr "일" -#: src/Gtk/SettingsDialog.vala:146 +#: src/Gtk/SettingsDialog.vala:139 msgid "Week(s)" msgstr "주" -#: src/Gtk/SettingsDialog.vala:149 +#: src/Gtk/SettingsDialog.vala:142 msgid "Second(s)" msgstr "초" -#: src/Gtk/SettingsDialog.vala:155 +#: src/Gtk/SettingsDialog.vala:148 msgid "Display" msgstr "보이기" -#: src/Gtk/SettingsDialog.vala:163 +#: src/Gtk/SettingsDialog.vala:156 msgid "Hide unstable and RC releases" msgstr "목록에서 unstable, RC 버전 포함" -#: src/Gtk/SettingsDialog.vala:177 -msgid "Show N previous major versions " +#: src/Gtk/SettingsDialog.vala:178 +#, fuzzy +msgid "previous major versions " msgstr "보여 질 이전 메이저 버전 수 " -#: src/Gtk/SettingsDialog.vala:192 +#: src/Gtk/SettingsDialog.vala:182 msgid "Other" msgstr "기타" -#: src/Gtk/SettingsDialog.vala:203 +#: src/Gtk/SettingsDialog.vala:193 msgid "Internet connection timeout in " msgstr "인터넷 연결 타임아웃 시간 " -#: src/Gtk/SettingsDialog.vala:218 +#: src/Gtk/SettingsDialog.vala:205 msgid "seconds" msgstr "초" -#: src/Gtk/SettingsDialog.vala:225 +#: src/Gtk/SettingsDialog.vala:212 msgid "Max concurrent downloads" msgstr "동시 다운로드 최대 수" -#: src/Gtk/TerminalWindow.vala:158 src/Utility/Gtk/AboutWindow.vala:287 +#: src/Gtk/TerminalWindow.vala:154 src/Utility/Gtk/AboutWindow.vala:287 msgid "Close" msgstr "닫기" @@ -465,10 +466,10 @@ msgstr "서드파티 포함" msgid "Missing Icon" msgstr "아이콘을 찾을 수 없습니다" -#: src/Utility/TeeJee.Logging.vala:59 +#: src/Utility/TeeJee.Logging.vala:52 msgid "E" msgstr "" -#: src/Utility/TeeJee.Logging.vala:84 +#: src/Utility/TeeJee.Logging.vala:68 msgid "D" msgstr "" diff --git a/po/messages.pot b/po/messages.pot index 5ab97522..2f5a8aba 100644 --- a/po/messages.pot +++ b/po/messages.pot @@ -6,9 +6,9 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: mainline 1.1.2\n" +"Project-Id-Version: mainline 1.1.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-09 06:04-0500\n" +"POT-Creation-Date: 2023-03-10 09:32-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -25,336 +25,336 @@ msgstr "" msgid "Architecture" msgstr "" -#: src/Common/LinuxKernel.vala:283 -msgid "Fetching individual kernel indexes..." +#: src/Common/LinuxKernel.vala:282 +msgid "Fetching individual kernel indexes" msgstr "" #: src/Common/LinuxKernel.vala:327 -msgid "Fetching main index from" +msgid "Updating from" msgstr "" -#: src/Common/LinuxKernel.vala:539 -msgid "Could not find running kernel in list!" +#: src/Common/LinuxKernel.vala:736 +msgid "Packages Available" msgstr "" -#: src/Common/LinuxKernel.vala:545 -msgid "Could not find any kernels to uninstall" +#: src/Common/LinuxKernel.vala:741 +msgid "Packages Installed" msgstr "" -#: src/Common/LinuxKernel.vala:554 -msgid "The following kernels will be uninstalled:" +#: src/Common/LinuxKernel.vala:754 src/Utility/TeeJee.FileSystem.vala:136 +msgid "File not found" msgstr "" -#: src/Common/LinuxKernel.vala:558 -msgid "Continue ?" +#: src/Common/LinuxKernel.vala:819 +msgid "Available Kernels" msgstr "" -#: src/Common/LinuxKernel.vala:581 src/Console/AppConsole.vala:298 -msgid "Latest update" +#: src/Common/LinuxKernel.vala:826 src/Gtk/MainWindow.vala:158 +msgid "Installed" msgstr "" -#: src/Common/LinuxKernel.vala:592 src/Console/AppConsole.vala:305 -msgid "Latest point update" +#: src/Common/LinuxKernel.vala:826 src/Gtk/MainWindow.vala:158 +#: src/Gtk/MainWindow.vala:504 src/Gtk/MainWindow.vala:517 +msgid "Running" msgstr "" -#: src/Common/LinuxKernel.vala:600 src/Console/AppConsole.vala:310 -#: src/Console/AppConsole.vala:365 -msgid "No updates found" +#: src/Common/LinuxKernel.vala:861 +msgid "Downloading" msgstr "" -#: src/Common/LinuxKernel.vala:610 -#, c-format -msgid "Install Kernel Version %s ? (y/n): " +#: src/Common/LinuxKernel.vala:880 +msgid "OK" msgstr "" -#: src/Common/LinuxKernel.vala:832 -msgid "Packages Available" +#: src/Common/LinuxKernel.vala:883 +msgid "ERROR" msgstr "" -#: src/Common/LinuxKernel.vala:837 -msgid "Packages Installed" +#: src/Common/LinuxKernel.vala:897 +msgid "This kernel is already installed." msgstr "" -#: src/Common/LinuxKernel.vala:850 src/Utility/TeeJee.FileSystem.vala:136 -msgid "File not found" +#: src/Common/LinuxKernel.vala:927 +msgid "Uninstalling selected kernels" msgstr "" -#: src/Common/LinuxKernel.vala:915 -msgid "Available Kernels" +#: src/Common/LinuxKernel.vala:933 +msgid "requested" msgstr "" -#: src/Common/LinuxKernel.vala:922 src/Gtk/MainWindow.vala:151 -msgid "Installed" +#: src/Common/LinuxKernel.vala:936 +msgid "skipping the currently booted kernel" msgstr "" -#: src/Common/LinuxKernel.vala:922 src/Gtk/MainWindow.vala:151 -#: src/Gtk/MainWindow.vala:502 src/Gtk/MainWindow.vala:516 -msgid "Running" +#: src/Common/LinuxKernel.vala:952 +msgid "found" msgstr "" -#: src/Common/LinuxKernel.vala:957 -msgid "Downloading" +#: src/Common/LinuxKernel.vala:955 +msgid "No packages to un-install!" msgstr "" -#: src/Common/LinuxKernel.vala:976 -msgid "OK" +#: src/Common/LinuxKernel.vala:994 +msgid "Could not find running kernel in list" msgstr "" -#: src/Common/LinuxKernel.vala:979 -msgid "ERROR" +#: src/Common/LinuxKernel.vala:1000 +msgid "Could not find any kernels to uninstall" msgstr "" -#: src/Common/LinuxKernel.vala:993 -msgid "This kernel is already installed." +#: src/Common/LinuxKernel.vala:1009 +msgid "The following kernels will be uninstalled:" msgstr "" -#: src/Common/LinuxKernel.vala:1024 -msgid "Uninstalling selected kernels" +#: src/Common/LinuxKernel.vala:1013 +msgid "Continue ?" msgstr "" -#: src/Common/LinuxKernel.vala:1030 -msgid "requested" +#: src/Common/LinuxKernel.vala:1036 src/Console/AppConsole.vala:291 +msgid "Latest update" msgstr "" -#: src/Common/LinuxKernel.vala:1033 -msgid "skipping the currently booted kernel" +#: src/Common/LinuxKernel.vala:1047 src/Console/AppConsole.vala:298 +msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:1049 -msgid "found" +#: src/Common/LinuxKernel.vala:1055 src/Console/AppConsole.vala:303 +#: src/Console/AppConsole.vala:358 +msgid "No updates found" msgstr "" -#: src/Common/LinuxKernel.vala:1052 -msgid "No packages to un-install!" +#: src/Common/LinuxKernel.vala:1064 +#, c-format +msgid "Install Kernel Version %s ? (y/n): " msgstr "" -#: src/Common/Main.vala:259 +#: src/Common/Main.vala:253 msgid "Called from" msgstr "" -#: src/Common/Main.vala:293 +#: src/Common/Main.vala:287 msgid "Notifications are disabled" msgstr "" -#: src/Common/Main.vala:332 src/Gtk/MainWindow.vala:617 +#: src/Common/Main.vala:325 src/Gtk/MainWindow.vala:615 msgid "Can not reach" msgstr "" -#: src/Common/Package.vala:60 +#: src/Common/Package.vala:57 #, c-format msgid "File not found: %s" msgstr "" -#: src/Console/AppConsole.vala:68 src/Gtk/AppGtk.vala:141 +#: src/Console/AppConsole.vala:62 src/Gtk/AppGtk.vala:143 msgid "Syntax" msgstr "" -#: src/Console/AppConsole.vala:70 +#: src/Console/AppConsole.vala:64 msgid "Commands" msgstr "" -#: src/Console/AppConsole.vala:72 +#: src/Console/AppConsole.vala:66 msgid "Check for kernel updates" msgstr "" -#: src/Console/AppConsole.vala:73 +#: src/Console/AppConsole.vala:67 msgid "Check for kernel updates and notify current user" msgstr "" -#: src/Console/AppConsole.vala:74 +#: src/Console/AppConsole.vala:68 msgid "List all available mainline kernels" msgstr "" -#: src/Console/AppConsole.vala:75 +#: src/Console/AppConsole.vala:69 msgid "List installed kernels" msgstr "" -#: src/Console/AppConsole.vala:76 +#: src/Console/AppConsole.vala:70 msgid "Install latest mainline kernel" msgstr "" -#: src/Console/AppConsole.vala:77 +#: src/Console/AppConsole.vala:71 msgid "Install latest point update for current series" msgstr "" -#: src/Console/AppConsole.vala:78 +#: src/Console/AppConsole.vala:72 msgid "Install specified mainline kernel" msgstr "" -#: src/Console/AppConsole.vala:79 +#: src/Console/AppConsole.vala:73 msgid "Uninstall specified kernel" msgstr "" -#: src/Console/AppConsole.vala:80 +#: src/Console/AppConsole.vala:74 msgid "Uninstall kernels older than the running kernel" msgstr "" -#: src/Console/AppConsole.vala:81 +#: src/Console/AppConsole.vala:75 msgid "Download specified kernels" msgstr "" -#: src/Console/AppConsole.vala:82 +#: src/Console/AppConsole.vala:76 msgid "Delete cached info about available kernels" msgstr "" -#: src/Console/AppConsole.vala:84 src/Gtk/AppGtk.vala:143 +#: src/Console/AppConsole.vala:78 src/Gtk/AppGtk.vala:145 msgid "Options" msgstr "" -#: src/Console/AppConsole.vala:86 +#: src/Console/AppConsole.vala:80 msgid "Include unstable and RC releases" msgstr "" -#: src/Console/AppConsole.vala:87 +#: src/Console/AppConsole.vala:81 msgid "Exclude unstable and RC releases" msgstr "" -#: src/Console/AppConsole.vala:88 +#: src/Console/AppConsole.vala:82 msgid "Enable verbose debugging output" msgstr "" -#: src/Console/AppConsole.vala:89 +#: src/Console/AppConsole.vala:83 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "" -#: src/Console/AppConsole.vala:92 +#: src/Console/AppConsole.vala:86 msgid "A version string taken from the output of --list" msgstr "" -#: src/Console/AppConsole.vala:93 +#: src/Console/AppConsole.vala:87 msgid "" "One or more version strings (comma-separated) taken from the output of --list" msgstr "" -#: src/Console/AppConsole.vala:173 src/Gtk/AppGtk.vala:127 +#: src/Console/AppConsole.vala:164 src/Gtk/AppGtk.vala:129 msgid "Unknown option" msgstr "" -#: src/Console/AppConsole.vala:175 src/Console/AppConsole.vala:255 -#: src/Console/AppConsole.vala:284 +#: src/Console/AppConsole.vala:165 src/Console/AppConsole.vala:249 +#: src/Console/AppConsole.vala:277 msgid "Run" msgstr "" -#: src/Console/AppConsole.vala:175 +#: src/Console/AppConsole.vala:165 msgid "to list all options" msgstr "" -#: src/Console/AppConsole.vala:227 src/Console/AppConsole.vala:263 +#: src/Console/AppConsole.vala:217 src/Console/AppConsole.vala:257 msgid "No kernels specified" msgstr "" -#: src/Console/AppConsole.vala:233 +#: src/Console/AppConsole.vala:223 msgid "Multiple kernels selected for installation. Select only one." msgstr "" -#: src/Console/AppConsole.vala:252 +#: src/Console/AppConsole.vala:246 msgid "Could not find requested version" msgstr "" -#: src/Console/AppConsole.vala:255 +#: src/Console/AppConsole.vala:249 msgid "and use a version string listed in first column" msgstr "" -#: src/Console/AppConsole.vala:283 +#: src/Console/AppConsole.vala:276 msgid "Command not specified" msgstr "" -#: src/Console/AppConsole.vala:284 +#: src/Console/AppConsole.vala:277 msgid "to list all commands" msgstr "" -#: src/Console/AppConsole.vala:338 +#: src/Console/AppConsole.vala:331 src/Gtk/SettingsDialog.vala:166 msgid "Show" msgstr "" -#: src/Console/AppConsole.vala:343 src/Console/AppConsole.vala:355 +#: src/Console/AppConsole.vala:336 src/Console/AppConsole.vala:348 #, c-format msgid "Kernel %s Available" msgstr "" -#: src/Console/AppConsole.vala:345 src/Console/AppConsole.vala:357 -#: src/Gtk/MainWindow.vala:261 +#: src/Console/AppConsole.vala:338 src/Console/AppConsole.vala:350 +#: src/Gtk/MainWindow.vala:270 msgid "Install" msgstr "" -#: src/Gtk/AppGtk.vala:141 +#: src/Gtk/AppGtk.vala:143 msgid "options" msgstr "" -#: src/Gtk/AppGtk.vala:145 +#: src/Gtk/AppGtk.vala:147 msgid "Print debug information" msgstr "" -#: src/Gtk/AppGtk.vala:146 +#: src/Gtk/AppGtk.vala:148 msgid "Show all options" msgstr "" -#: src/Gtk/MainWindow.vala:108 +#: src/Gtk/MainWindow.vala:115 msgid "Kernel" msgstr "" -#: src/Gtk/MainWindow.vala:138 +#: src/Gtk/MainWindow.vala:145 msgid "Status" msgstr "" -#: src/Gtk/MainWindow.vala:271 +#: src/Gtk/MainWindow.vala:280 msgid "Uninstall" msgstr "" -#: src/Gtk/MainWindow.vala:281 +#: src/Gtk/MainWindow.vala:290 msgid "Changes" msgstr "" -#: src/Gtk/MainWindow.vala:302 +#: src/Gtk/MainWindow.vala:312 msgid "Uninstall Old" msgstr "" -#: src/Gtk/MainWindow.vala:303 +#: src/Gtk/MainWindow.vala:313 msgid "Uninstall kernels older than running kernel" msgstr "" -#: src/Gtk/MainWindow.vala:308 +#: src/Gtk/MainWindow.vala:318 msgid "Reload" msgstr "" -#: src/Gtk/MainWindow.vala:313 src/Gtk/SettingsDialog.vala:50 +#: src/Gtk/MainWindow.vala:323 src/Gtk/SettingsDialog.vala:50 msgid "Settings" msgstr "" -#: src/Gtk/MainWindow.vala:318 +#: src/Gtk/MainWindow.vala:328 msgid "About" msgstr "" -#: src/Gtk/MainWindow.vala:323 +#: src/Gtk/MainWindow.vala:333 msgid "Exit" msgstr "" -#: src/Gtk/MainWindow.vala:391 +#: src/Gtk/MainWindow.vala:401 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "" -#: src/Gtk/MainWindow.vala:392 +#: src/Gtk/MainWindow.vala:402 msgid "Forked" msgstr "" -#: src/Gtk/MainWindow.vala:392 +#: src/Gtk/MainWindow.vala:402 msgid "Original" msgstr "" -#: src/Gtk/MainWindow.vala:430 -msgid "Updating cached indexes" +#: src/Gtk/MainWindow.vala:440 +msgid "Updating kernels" msgstr "" -#: src/Gtk/MainWindow.vala:512 +#: src/Gtk/MainWindow.vala:513 msgid "available" msgstr "" -#: src/Gtk/MainWindow.vala:546 src/Gtk/MainWindow.vala:580 -#: src/Gtk/MainWindow.vala:608 +#: src/Gtk/MainWindow.vala:546 src/Gtk/MainWindow.vala:579 +#: src/Gtk/MainWindow.vala:606 msgid "DONE" msgstr "" -#: src/Gtk/ProgressWindow.vala:126 src/Gtk/TerminalWindow.vala:148 +#: src/Gtk/ProgressWindow.vala:127 src/Gtk/TerminalWindow.vala:144 msgid "Cancel" msgstr "" @@ -366,63 +366,63 @@ msgstr "" msgid "Notify if a major release is available" msgstr "" -#: src/Gtk/SettingsDialog.vala:78 +#: src/Gtk/SettingsDialog.vala:76 msgid "Notify if a point release is available" msgstr "" -#: src/Gtk/SettingsDialog.vala:89 +#: src/Gtk/SettingsDialog.vala:87 msgid "(Allowing intervals in seconds for --debug)" msgstr "" -#: src/Gtk/SettingsDialog.vala:112 +#: src/Gtk/SettingsDialog.vala:110 msgid "Check every" msgstr "" -#: src/Gtk/SettingsDialog.vala:142 +#: src/Gtk/SettingsDialog.vala:135 msgid "Hour(s)" msgstr "" -#: src/Gtk/SettingsDialog.vala:144 +#: src/Gtk/SettingsDialog.vala:137 msgid "Day(s)" msgstr "" -#: src/Gtk/SettingsDialog.vala:146 +#: src/Gtk/SettingsDialog.vala:139 msgid "Week(s)" msgstr "" -#: src/Gtk/SettingsDialog.vala:149 +#: src/Gtk/SettingsDialog.vala:142 msgid "Second(s)" msgstr "" -#: src/Gtk/SettingsDialog.vala:155 +#: src/Gtk/SettingsDialog.vala:148 msgid "Display" msgstr "" -#: src/Gtk/SettingsDialog.vala:163 +#: src/Gtk/SettingsDialog.vala:156 msgid "Hide unstable and RC releases" msgstr "" -#: src/Gtk/SettingsDialog.vala:177 -msgid "Show N previous major versions " +#: src/Gtk/SettingsDialog.vala:178 +msgid "previous major versions " msgstr "" -#: src/Gtk/SettingsDialog.vala:192 +#: src/Gtk/SettingsDialog.vala:182 msgid "Other" msgstr "" -#: src/Gtk/SettingsDialog.vala:203 +#: src/Gtk/SettingsDialog.vala:193 msgid "Internet connection timeout in " msgstr "" -#: src/Gtk/SettingsDialog.vala:218 +#: src/Gtk/SettingsDialog.vala:205 msgid "seconds" msgstr "" -#: src/Gtk/SettingsDialog.vala:225 +#: src/Gtk/SettingsDialog.vala:212 msgid "Max concurrent downloads" msgstr "" -#: src/Gtk/TerminalWindow.vala:158 src/Utility/Gtk/AboutWindow.vala:287 +#: src/Gtk/TerminalWindow.vala:154 src/Utility/Gtk/AboutWindow.vala:287 msgid "Close" msgstr "" @@ -462,10 +462,10 @@ msgstr "" msgid "Missing Icon" msgstr "" -#: src/Utility/TeeJee.Logging.vala:59 +#: src/Utility/TeeJee.Logging.vala:52 msgid "E" msgstr "" -#: src/Utility/TeeJee.Logging.vala:84 +#: src/Utility/TeeJee.Logging.vala:68 msgid "D" msgstr "" diff --git a/po/nl.po b/po/nl.po index 2d7a1685..ac3bde81 100644 --- a/po/nl.po +++ b/po/nl.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-09 05:17-0500\n" +"POT-Creation-Date: 2023-03-10 09:00-0500\n" "PO-Revision-Date: 2020-08-23 13:55+0200\n" "Last-Translator: Heimen Stoffels \n" "Language-Team: Dutch (Netherlands)\n" @@ -21,354 +21,354 @@ msgstr "Distributie" msgid "Architecture" msgstr "Architectuur" -#: src/Common/LinuxKernel.vala:283 +#: src/Common/LinuxKernel.vala:282 #, fuzzy -msgid "Fetching individual kernel indexes..." +msgid "Fetching individual kernel indexes" msgstr "Bezig met ophalen van index..." #: src/Common/LinuxKernel.vala:327 -#, fuzzy -msgid "Fetching main index from" -msgstr "Bezig met ophalen van index..." - -#: src/Common/LinuxKernel.vala:539 -msgid "Could not find running kernel in list!" -msgstr "De in gebruik zijnde kernel staat niet op de lijst!" - -#: src/Common/LinuxKernel.vala:545 -#, fuzzy -msgid "Could not find any kernels to uninstall" -msgstr "Er zijn geen te verwijderen kernels" - -#: src/Common/LinuxKernel.vala:554 -#, fuzzy -msgid "The following kernels will be uninstalled:" -msgstr "De volgende kernels worden verwijderd:" - -#: src/Common/LinuxKernel.vala:558 -msgid "Continue ?" -msgstr "Wil je doorgaan?" - -#: src/Common/LinuxKernel.vala:581 src/Console/AppConsole.vala:298 -msgid "Latest update" -msgstr "Recentste update" - -#: src/Common/LinuxKernel.vala:592 src/Console/AppConsole.vala:305 -msgid "Latest point update" -msgstr "Recentste puntupdate" - -#: src/Common/LinuxKernel.vala:600 src/Console/AppConsole.vala:310 -#: src/Console/AppConsole.vala:365 -msgid "No updates found" -msgstr "Geen updates gevonden" - -#: src/Common/LinuxKernel.vala:610 -#, c-format -msgid "Install Kernel Version %s ? (y/n): " -msgstr "Wil je versie %s installeren? (j/n): " +msgid "Updating from" +msgstr "" -#: src/Common/LinuxKernel.vala:832 +#: src/Common/LinuxKernel.vala:736 msgid "Packages Available" msgstr "Beschikbare pakketten" -#: src/Common/LinuxKernel.vala:837 +#: src/Common/LinuxKernel.vala:741 msgid "Packages Installed" msgstr "Geïnstalleerde pakketten" -#: src/Common/LinuxKernel.vala:850 src/Utility/TeeJee.FileSystem.vala:136 +#: src/Common/LinuxKernel.vala:754 src/Utility/TeeJee.FileSystem.vala:136 msgid "File not found" msgstr "Het bestand is niet gevonden" -#: src/Common/LinuxKernel.vala:915 +#: src/Common/LinuxKernel.vala:819 msgid "Available Kernels" msgstr "Beschikbare kernels" -#: src/Common/LinuxKernel.vala:922 src/Gtk/MainWindow.vala:151 +#: src/Common/LinuxKernel.vala:826 src/Gtk/MainWindow.vala:158 msgid "Installed" msgstr "Geïnstalleerd" -#: src/Common/LinuxKernel.vala:922 src/Gtk/MainWindow.vala:151 -#: src/Gtk/MainWindow.vala:502 src/Gtk/MainWindow.vala:516 +#: src/Common/LinuxKernel.vala:826 src/Gtk/MainWindow.vala:158 +#: src/Gtk/MainWindow.vala:504 src/Gtk/MainWindow.vala:517 msgid "Running" msgstr "In gebruik" -#: src/Common/LinuxKernel.vala:957 +#: src/Common/LinuxKernel.vala:861 msgid "Downloading" msgstr "Bezig met downloaden" -#: src/Common/LinuxKernel.vala:976 +#: src/Common/LinuxKernel.vala:880 msgid "OK" msgstr "Oké" -#: src/Common/LinuxKernel.vala:979 +#: src/Common/LinuxKernel.vala:883 msgid "ERROR" msgstr "FOUT" -#: src/Common/LinuxKernel.vala:993 +#: src/Common/LinuxKernel.vala:897 msgid "This kernel is already installed." msgstr "Deze kernel is al geïnstalleerd." -#: src/Common/LinuxKernel.vala:1024 +#: src/Common/LinuxKernel.vala:927 #, fuzzy msgid "Uninstalling selected kernels" msgstr "Opgegeven kernels deïnstalleren" -#: src/Common/LinuxKernel.vala:1030 +#: src/Common/LinuxKernel.vala:933 msgid "requested" msgstr "" -#: src/Common/LinuxKernel.vala:1033 +#: src/Common/LinuxKernel.vala:936 msgid "skipping the currently booted kernel" msgstr "" -#: src/Common/LinuxKernel.vala:1049 +#: src/Common/LinuxKernel.vala:952 msgid "found" msgstr "" -#: src/Common/LinuxKernel.vala:1052 +#: src/Common/LinuxKernel.vala:955 #, fuzzy msgid "No packages to un-install!" msgstr "Geïnstalleerde pakketten" -#: src/Common/Main.vala:259 +#: src/Common/LinuxKernel.vala:994 +#, fuzzy +msgid "Could not find running kernel in list" +msgstr "De in gebruik zijnde kernel staat niet op de lijst!" + +#: src/Common/LinuxKernel.vala:1000 +#, fuzzy +msgid "Could not find any kernels to uninstall" +msgstr "Er zijn geen te verwijderen kernels" + +#: src/Common/LinuxKernel.vala:1009 +#, fuzzy +msgid "The following kernels will be uninstalled:" +msgstr "De volgende kernels worden verwijderd:" + +#: src/Common/LinuxKernel.vala:1013 +msgid "Continue ?" +msgstr "Wil je doorgaan?" + +#: src/Common/LinuxKernel.vala:1036 src/Console/AppConsole.vala:291 +msgid "Latest update" +msgstr "Recentste update" + +#: src/Common/LinuxKernel.vala:1047 src/Console/AppConsole.vala:298 +msgid "Latest point update" +msgstr "Recentste puntupdate" + +#: src/Common/LinuxKernel.vala:1055 src/Console/AppConsole.vala:303 +#: src/Console/AppConsole.vala:358 +msgid "No updates found" +msgstr "Geen updates gevonden" + +#: src/Common/LinuxKernel.vala:1064 +#, c-format +msgid "Install Kernel Version %s ? (y/n): " +msgstr "Wil je versie %s installeren? (j/n): " + +#: src/Common/Main.vala:253 msgid "Called from" msgstr "Aangeroepen door" -#: src/Common/Main.vala:293 +#: src/Common/Main.vala:287 msgid "Notifications are disabled" msgstr "Meldingen zijn uitgeschakeld" -#: src/Common/Main.vala:332 src/Gtk/MainWindow.vala:617 +#: src/Common/Main.vala:325 src/Gtk/MainWindow.vala:615 #, fuzzy msgid "Can not reach" msgstr "Het bestand kan niet worden uitgelezen" -#: src/Common/Package.vala:60 +#: src/Common/Package.vala:57 #, fuzzy, c-format msgid "File not found: %s" msgstr "Het bestand is niet gevonden" -#: src/Console/AppConsole.vala:68 src/Gtk/AppGtk.vala:141 +#: src/Console/AppConsole.vala:62 src/Gtk/AppGtk.vala:143 msgid "Syntax" msgstr "Syntax" -#: src/Console/AppConsole.vala:70 +#: src/Console/AppConsole.vala:64 msgid "Commands" msgstr "Opdrachten" -#: src/Console/AppConsole.vala:72 +#: src/Console/AppConsole.vala:66 msgid "Check for kernel updates" msgstr "Controleren op kernelupdates" -#: src/Console/AppConsole.vala:73 +#: src/Console/AppConsole.vala:67 msgid "Check for kernel updates and notify current user" msgstr "Controleren op kernelupdates en gebruiker op de hoogte brengen" -#: src/Console/AppConsole.vala:74 +#: src/Console/AppConsole.vala:68 msgid "List all available mainline kernels" msgstr "Alle beschikbare mainline-kernels tonen" -#: src/Console/AppConsole.vala:75 +#: src/Console/AppConsole.vala:69 msgid "List installed kernels" msgstr "Alle geïnstalleerde kernels tonen" -#: src/Console/AppConsole.vala:76 +#: src/Console/AppConsole.vala:70 msgid "Install latest mainline kernel" msgstr "Recentste mainline-kernel installeren" -#: src/Console/AppConsole.vala:77 +#: src/Console/AppConsole.vala:71 msgid "Install latest point update for current series" msgstr "Recentste puntupdate uit huidige editie installeren" -#: src/Console/AppConsole.vala:78 +#: src/Console/AppConsole.vala:72 msgid "Install specified mainline kernel" msgstr "Opgegeven mainline-kernel installeren" -#: src/Console/AppConsole.vala:79 +#: src/Console/AppConsole.vala:73 #, fuzzy msgid "Uninstall specified kernel" msgstr "Opgegeven kernels deïnstalleren" -#: src/Console/AppConsole.vala:80 +#: src/Console/AppConsole.vala:74 #, fuzzy msgid "Uninstall kernels older than the running kernel" msgstr "Geïnstalleerde kernels verwijderen die ouder zijn dan de huidige" -#: src/Console/AppConsole.vala:81 +#: src/Console/AppConsole.vala:75 msgid "Download specified kernels" msgstr "Opgegeven kernels downloaden" -#: src/Console/AppConsole.vala:82 +#: src/Console/AppConsole.vala:76 msgid "Delete cached info about available kernels" msgstr "" -#: src/Console/AppConsole.vala:84 src/Gtk/AppGtk.vala:143 +#: src/Console/AppConsole.vala:78 src/Gtk/AppGtk.vala:145 msgid "Options" msgstr "Opties" -#: src/Console/AppConsole.vala:86 +#: src/Console/AppConsole.vala:80 #, fuzzy msgid "Include unstable and RC releases" msgstr "Instabiele en rc-uitgaven verbergen" -#: src/Console/AppConsole.vala:87 +#: src/Console/AppConsole.vala:81 #, fuzzy msgid "Exclude unstable and RC releases" msgstr "Instabiele en rc-uitgaven verbergen" -#: src/Console/AppConsole.vala:88 +#: src/Console/AppConsole.vala:82 msgid "Enable verbose debugging output" msgstr "Foutopsporingsinformatie vastleggen" -#: src/Console/AppConsole.vala:89 +#: src/Console/AppConsole.vala:83 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "Ja op alles (in de niet-interactieve modus)" -#: src/Console/AppConsole.vala:92 +#: src/Console/AppConsole.vala:86 msgid "A version string taken from the output of --list" msgstr "Een versietekenreeks uit de uitvoer van --list" -#: src/Console/AppConsole.vala:93 +#: src/Console/AppConsole.vala:87 msgid "" "One or more version strings (comma-separated) taken from the output of --list" msgstr "" "Eén of meerdere versietekenreeksen (kommagescheiden) uit de uitvoer van --" "list" -#: src/Console/AppConsole.vala:173 src/Gtk/AppGtk.vala:127 +#: src/Console/AppConsole.vala:164 src/Gtk/AppGtk.vala:129 msgid "Unknown option" msgstr "Onbekende optie" -#: src/Console/AppConsole.vala:175 src/Console/AppConsole.vala:255 -#: src/Console/AppConsole.vala:284 +#: src/Console/AppConsole.vala:165 src/Console/AppConsole.vala:249 +#: src/Console/AppConsole.vala:277 msgid "Run" msgstr "Uitvoeren" -#: src/Console/AppConsole.vala:175 +#: src/Console/AppConsole.vala:165 msgid "to list all options" msgstr "om alle opties te tonen" -#: src/Console/AppConsole.vala:227 src/Console/AppConsole.vala:263 +#: src/Console/AppConsole.vala:217 src/Console/AppConsole.vala:257 msgid "No kernels specified" msgstr "Geen kernels opgegeven" -#: src/Console/AppConsole.vala:233 +#: src/Console/AppConsole.vala:223 msgid "Multiple kernels selected for installation. Select only one." msgstr "" "Er zijn meerdere te installeren kernels geselecteerd. Selecteer er één." -#: src/Console/AppConsole.vala:252 +#: src/Console/AppConsole.vala:246 msgid "Could not find requested version" msgstr "De vereiste versie kan niet worden gevonden" -#: src/Console/AppConsole.vala:255 +#: src/Console/AppConsole.vala:249 msgid "and use a version string listed in first column" msgstr "en gebruik een versietekenreeks in de eerste kolom" -#: src/Console/AppConsole.vala:283 +#: src/Console/AppConsole.vala:276 msgid "Command not specified" msgstr "Geen opdracht opgegeven" -#: src/Console/AppConsole.vala:284 +#: src/Console/AppConsole.vala:277 msgid "to list all commands" msgstr "om alle opdrachten te tonen" -#: src/Console/AppConsole.vala:338 +#: src/Console/AppConsole.vala:331 src/Gtk/SettingsDialog.vala:166 msgid "Show" msgstr "Tonen" -#: src/Console/AppConsole.vala:343 src/Console/AppConsole.vala:355 +#: src/Console/AppConsole.vala:336 src/Console/AppConsole.vala:348 #, c-format msgid "Kernel %s Available" msgstr "Kernel %s is beschikbaar" -#: src/Console/AppConsole.vala:345 src/Console/AppConsole.vala:357 -#: src/Gtk/MainWindow.vala:261 +#: src/Console/AppConsole.vala:338 src/Console/AppConsole.vala:350 +#: src/Gtk/MainWindow.vala:270 msgid "Install" msgstr "Installeren" -#: src/Gtk/AppGtk.vala:141 +#: src/Gtk/AppGtk.vala:143 #, fuzzy msgid "options" msgstr "Opties" -#: src/Gtk/AppGtk.vala:145 +#: src/Gtk/AppGtk.vala:147 msgid "Print debug information" msgstr "Foutopsporingsinformatie tonen" -#: src/Gtk/AppGtk.vala:146 +#: src/Gtk/AppGtk.vala:148 msgid "Show all options" msgstr "Alle opties tonen" -#: src/Gtk/MainWindow.vala:108 +#: src/Gtk/MainWindow.vala:115 msgid "Kernel" msgstr "Kernel" -#: src/Gtk/MainWindow.vala:138 +#: src/Gtk/MainWindow.vala:145 msgid "Status" msgstr "Status" -#: src/Gtk/MainWindow.vala:271 +#: src/Gtk/MainWindow.vala:280 #, fuzzy msgid "Uninstall" msgstr "Installeren" -#: src/Gtk/MainWindow.vala:281 +#: src/Gtk/MainWindow.vala:290 msgid "Changes" msgstr "Wijzigingen" -#: src/Gtk/MainWindow.vala:302 +#: src/Gtk/MainWindow.vala:312 #, fuzzy msgid "Uninstall Old" msgstr "Deïnstalleren voltooid" -#: src/Gtk/MainWindow.vala:303 +#: src/Gtk/MainWindow.vala:313 #, fuzzy msgid "Uninstall kernels older than running kernel" msgstr "Geïnstalleerde kernels verwijderen die ouder zijn dan de huidige" -#: src/Gtk/MainWindow.vala:308 +#: src/Gtk/MainWindow.vala:318 msgid "Reload" msgstr "" -#: src/Gtk/MainWindow.vala:313 src/Gtk/SettingsDialog.vala:50 +#: src/Gtk/MainWindow.vala:323 src/Gtk/SettingsDialog.vala:50 msgid "Settings" msgstr "Instellingen" -#: src/Gtk/MainWindow.vala:318 +#: src/Gtk/MainWindow.vala:328 msgid "About" msgstr "Over" -#: src/Gtk/MainWindow.vala:323 +#: src/Gtk/MainWindow.vala:333 msgid "Exit" msgstr "" -#: src/Gtk/MainWindow.vala:391 +#: src/Gtk/MainWindow.vala:401 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Een kernelupgradehulpmiddel voor op Ubuntu gebaseerde distributies" -#: src/Gtk/MainWindow.vala:392 +#: src/Gtk/MainWindow.vala:402 msgid "Forked" msgstr "Geforkt" -#: src/Gtk/MainWindow.vala:392 +#: src/Gtk/MainWindow.vala:402 msgid "Original" msgstr "Origineel" -#: src/Gtk/MainWindow.vala:430 -msgid "Updating cached indexes" +#: src/Gtk/MainWindow.vala:440 +msgid "Updating kernels" msgstr "" -#: src/Gtk/MainWindow.vala:512 +#: src/Gtk/MainWindow.vala:513 msgid "available" msgstr "beschikbaar" -#: src/Gtk/MainWindow.vala:546 src/Gtk/MainWindow.vala:580 -#: src/Gtk/MainWindow.vala:608 +#: src/Gtk/MainWindow.vala:546 src/Gtk/MainWindow.vala:579 +#: src/Gtk/MainWindow.vala:606 msgid "DONE" msgstr "" -#: src/Gtk/ProgressWindow.vala:126 src/Gtk/TerminalWindow.vala:148 +#: src/Gtk/ProgressWindow.vala:127 src/Gtk/TerminalWindow.vala:144 msgid "Cancel" msgstr "Annuleren" @@ -380,63 +380,64 @@ msgstr "Melding" msgid "Notify if a major release is available" msgstr "Melding tonen als er een grote update beschikbaar is" -#: src/Gtk/SettingsDialog.vala:78 +#: src/Gtk/SettingsDialog.vala:76 msgid "Notify if a point release is available" msgstr "Melding tonen als er een puntupdate beschikbaar is" -#: src/Gtk/SettingsDialog.vala:89 +#: src/Gtk/SettingsDialog.vala:87 msgid "(Allowing intervals in seconds for --debug)" msgstr "(staat tussenpozen in seconden toe voor --debug)" -#: src/Gtk/SettingsDialog.vala:112 +#: src/Gtk/SettingsDialog.vala:110 msgid "Check every" msgstr "Controleren, elke" -#: src/Gtk/SettingsDialog.vala:142 +#: src/Gtk/SettingsDialog.vala:135 msgid "Hour(s)" msgstr "uur" -#: src/Gtk/SettingsDialog.vala:144 +#: src/Gtk/SettingsDialog.vala:137 msgid "Day(s)" msgstr "dag(en)" -#: src/Gtk/SettingsDialog.vala:146 +#: src/Gtk/SettingsDialog.vala:139 msgid "Week(s)" msgstr "week/weken" -#: src/Gtk/SettingsDialog.vala:149 +#: src/Gtk/SettingsDialog.vala:142 msgid "Second(s)" msgstr "seconde(n)" -#: src/Gtk/SettingsDialog.vala:155 +#: src/Gtk/SettingsDialog.vala:148 msgid "Display" msgstr "Weergave" -#: src/Gtk/SettingsDialog.vala:163 +#: src/Gtk/SettingsDialog.vala:156 msgid "Hide unstable and RC releases" msgstr "Instabiele en rc-uitgaven verbergen" -#: src/Gtk/SettingsDialog.vala:177 -msgid "Show N previous major versions " +#: src/Gtk/SettingsDialog.vala:178 +#, fuzzy +msgid "previous major versions " msgstr "X aantal grote updates tonen " -#: src/Gtk/SettingsDialog.vala:192 +#: src/Gtk/SettingsDialog.vala:182 msgid "Other" msgstr "Overig" -#: src/Gtk/SettingsDialog.vala:203 +#: src/Gtk/SettingsDialog.vala:193 msgid "Internet connection timeout in " msgstr "Verbindingstime-out na " -#: src/Gtk/SettingsDialog.vala:218 +#: src/Gtk/SettingsDialog.vala:205 msgid "seconds" msgstr "seconden" -#: src/Gtk/SettingsDialog.vala:225 +#: src/Gtk/SettingsDialog.vala:212 msgid "Max concurrent downloads" msgstr "Max. aantal gelijktijdige downloads" -#: src/Gtk/TerminalWindow.vala:158 src/Utility/Gtk/AboutWindow.vala:287 +#: src/Gtk/TerminalWindow.vala:154 src/Utility/Gtk/AboutWindow.vala:287 msgid "Close" msgstr "Sluiten" @@ -476,10 +477,10 @@ msgstr "Externe code" msgid "Missing Icon" msgstr "Ontbrekend pictogram" -#: src/Utility/TeeJee.Logging.vala:59 +#: src/Utility/TeeJee.Logging.vala:52 msgid "E" msgstr "E" -#: src/Utility/TeeJee.Logging.vala:84 +#: src/Utility/TeeJee.Logging.vala:68 msgid "D" msgstr "D" diff --git a/po/pl.po b/po/pl.po index a6aed6d6..8615f13c 100644 --- a/po/pl.po +++ b/po/pl.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-09 05:17-0500\n" +"POT-Creation-Date: 2023-03-10 09:00-0500\n" "PO-Revision-Date: 2023-03-08 23:39+0100\n" "Last-Translator: Matthaiks\n" "Language-Team: Polish\n" @@ -20,338 +20,340 @@ msgstr "Dystrybucja" msgid "Architecture" msgstr "Architektura" -#: src/Common/LinuxKernel.vala:283 -msgid "Fetching individual kernel indexes..." +#: src/Common/LinuxKernel.vala:282 +#, fuzzy +msgid "Fetching individual kernel indexes" msgstr "Pobieranie indywidualnych indeksów jądra..." #: src/Common/LinuxKernel.vala:327 -msgid "Fetching main index from" -msgstr "Pobieranie głównego indeksu" - -#: src/Common/LinuxKernel.vala:539 -msgid "Could not find running kernel in list!" -msgstr "Nie można znaleźć uruchomionego jądra na liście!" - -#: src/Common/LinuxKernel.vala:545 -msgid "Could not find any kernels to uninstall" -msgstr "Nie można znaleźć żadnych jąder do odinstalowania" - -#: src/Common/LinuxKernel.vala:554 -msgid "The following kernels will be uninstalled:" -msgstr "Następujące jądra zostaną odinstalowane:" - -#: src/Common/LinuxKernel.vala:558 -msgid "Continue ?" -msgstr "Kontynuować?" - -#: src/Common/LinuxKernel.vala:581 src/Console/AppConsole.vala:298 -msgid "Latest update" -msgstr "Najnowsza aktualizacja" - -#: src/Common/LinuxKernel.vala:592 src/Console/AppConsole.vala:305 -msgid "Latest point update" -msgstr "Najnowsza aktualizacja punktowa" - -#: src/Common/LinuxKernel.vala:600 src/Console/AppConsole.vala:310 -#: src/Console/AppConsole.vala:365 -msgid "No updates found" -msgstr "Nie znaleziono aktualizacji" - -#: src/Common/LinuxKernel.vala:610 -#, c-format -msgid "Install Kernel Version %s ? (y/n): " -msgstr "Zainstalować wersję jądra %s? (t/n): " +msgid "Updating from" +msgstr "" -#: src/Common/LinuxKernel.vala:832 +#: src/Common/LinuxKernel.vala:736 msgid "Packages Available" msgstr "Dostępne pakiety" -#: src/Common/LinuxKernel.vala:837 +#: src/Common/LinuxKernel.vala:741 msgid "Packages Installed" msgstr "Pakiety zainstalowane" -#: src/Common/LinuxKernel.vala:850 src/Utility/TeeJee.FileSystem.vala:136 +#: src/Common/LinuxKernel.vala:754 src/Utility/TeeJee.FileSystem.vala:136 msgid "File not found" msgstr "Nie odnaleziono pliku" -#: src/Common/LinuxKernel.vala:915 +#: src/Common/LinuxKernel.vala:819 msgid "Available Kernels" msgstr "Dostępne jądra" -#: src/Common/LinuxKernel.vala:922 src/Gtk/MainWindow.vala:151 +#: src/Common/LinuxKernel.vala:826 src/Gtk/MainWindow.vala:158 msgid "Installed" msgstr "Zainstalowane" -#: src/Common/LinuxKernel.vala:922 src/Gtk/MainWindow.vala:151 -#: src/Gtk/MainWindow.vala:502 src/Gtk/MainWindow.vala:516 +#: src/Common/LinuxKernel.vala:826 src/Gtk/MainWindow.vala:158 +#: src/Gtk/MainWindow.vala:504 src/Gtk/MainWindow.vala:517 msgid "Running" msgstr "Uruchomione" -#: src/Common/LinuxKernel.vala:957 +#: src/Common/LinuxKernel.vala:861 msgid "Downloading" msgstr "Pobieranie" -#: src/Common/LinuxKernel.vala:976 +#: src/Common/LinuxKernel.vala:880 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:979 +#: src/Common/LinuxKernel.vala:883 msgid "ERROR" msgstr "BŁĄD" -#: src/Common/LinuxKernel.vala:993 +#: src/Common/LinuxKernel.vala:897 msgid "This kernel is already installed." msgstr "To jądro jest już zainstalowane." -#: src/Common/LinuxKernel.vala:1024 +#: src/Common/LinuxKernel.vala:927 msgid "Uninstalling selected kernels" msgstr "Odinstalowanie wybranych jąder" -#: src/Common/LinuxKernel.vala:1030 +#: src/Common/LinuxKernel.vala:933 msgid "requested" msgstr "zażądane" -#: src/Common/LinuxKernel.vala:1033 +#: src/Common/LinuxKernel.vala:936 msgid "skipping the currently booted kernel" msgstr "pominięcie aktualnie uruchomionego jądra" -#: src/Common/LinuxKernel.vala:1049 +#: src/Common/LinuxKernel.vala:952 msgid "found" msgstr "znalezione" -#: src/Common/LinuxKernel.vala:1052 +#: src/Common/LinuxKernel.vala:955 msgid "No packages to un-install!" msgstr "Brak pakietów do odinstalowania!" -#: src/Common/Main.vala:259 +#: src/Common/LinuxKernel.vala:994 +#, fuzzy +msgid "Could not find running kernel in list" +msgstr "Nie można znaleźć uruchomionego jądra na liście!" + +#: src/Common/LinuxKernel.vala:1000 +msgid "Could not find any kernels to uninstall" +msgstr "Nie można znaleźć żadnych jąder do odinstalowania" + +#: src/Common/LinuxKernel.vala:1009 +msgid "The following kernels will be uninstalled:" +msgstr "Następujące jądra zostaną odinstalowane:" + +#: src/Common/LinuxKernel.vala:1013 +msgid "Continue ?" +msgstr "Kontynuować?" + +#: src/Common/LinuxKernel.vala:1036 src/Console/AppConsole.vala:291 +msgid "Latest update" +msgstr "Najnowsza aktualizacja" + +#: src/Common/LinuxKernel.vala:1047 src/Console/AppConsole.vala:298 +msgid "Latest point update" +msgstr "Najnowsza aktualizacja punktowa" + +#: src/Common/LinuxKernel.vala:1055 src/Console/AppConsole.vala:303 +#: src/Console/AppConsole.vala:358 +msgid "No updates found" +msgstr "Nie znaleziono aktualizacji" + +#: src/Common/LinuxKernel.vala:1064 +#, c-format +msgid "Install Kernel Version %s ? (y/n): " +msgstr "Zainstalować wersję jądra %s? (t/n): " + +#: src/Common/Main.vala:253 msgid "Called from" msgstr "Wywołano z" -#: src/Common/Main.vala:293 +#: src/Common/Main.vala:287 msgid "Notifications are disabled" msgstr "Powiadomienia są wyłączone" -#: src/Common/Main.vala:332 src/Gtk/MainWindow.vala:617 +#: src/Common/Main.vala:325 src/Gtk/MainWindow.vala:615 msgid "Can not reach" msgstr "Nie można dotrzeć" -#: src/Common/Package.vala:60 +#: src/Common/Package.vala:57 #, fuzzy, c-format msgid "File not found: %s" msgstr "Nie odnaleziono pliku" -#: src/Console/AppConsole.vala:68 src/Gtk/AppGtk.vala:141 +#: src/Console/AppConsole.vala:62 src/Gtk/AppGtk.vala:143 msgid "Syntax" msgstr "Składnia" -#: src/Console/AppConsole.vala:70 +#: src/Console/AppConsole.vala:64 msgid "Commands" msgstr "Polecenia" -#: src/Console/AppConsole.vala:72 +#: src/Console/AppConsole.vala:66 msgid "Check for kernel updates" msgstr "Sprawdź nowe wersje jądra" -#: src/Console/AppConsole.vala:73 +#: src/Console/AppConsole.vala:67 msgid "Check for kernel updates and notify current user" msgstr "Sprawdź nowe wersje jądra i powiadom bieżącego użytkownika" -#: src/Console/AppConsole.vala:74 +#: src/Console/AppConsole.vala:68 msgid "List all available mainline kernels" msgstr "Pokaż wszystkie dostępne jądra" -#: src/Console/AppConsole.vala:75 +#: src/Console/AppConsole.vala:69 msgid "List installed kernels" msgstr "Wyświetl listę zainstalowanych jąder" -#: src/Console/AppConsole.vala:76 +#: src/Console/AppConsole.vala:70 msgid "Install latest mainline kernel" msgstr "Zainstaluj najnowsze jądro" -#: src/Console/AppConsole.vala:77 +#: src/Console/AppConsole.vala:71 msgid "Install latest point update for current series" msgstr "Zainstaluj najnowszą aktualizację punktową dla bieżącej serii" -#: src/Console/AppConsole.vala:78 +#: src/Console/AppConsole.vala:72 msgid "Install specified mainline kernel" msgstr "Zainstaluj wybrane jądro" -#: src/Console/AppConsole.vala:79 +#: src/Console/AppConsole.vala:73 msgid "Uninstall specified kernel" msgstr "Odinstaluj wybrane jądro" -#: src/Console/AppConsole.vala:80 +#: src/Console/AppConsole.vala:74 msgid "Uninstall kernels older than the running kernel" msgstr "Odinstaluj jądra starsze niż działające jądro" -#: src/Console/AppConsole.vala:81 +#: src/Console/AppConsole.vala:75 msgid "Download specified kernels" msgstr "Pobierz wybrane jądra" -#: src/Console/AppConsole.vala:82 +#: src/Console/AppConsole.vala:76 msgid "Delete cached info about available kernels" msgstr "Usuń informacje z pamięci podręcznej o dostępnych jądrach" -#: src/Console/AppConsole.vala:84 src/Gtk/AppGtk.vala:143 +#: src/Console/AppConsole.vala:78 src/Gtk/AppGtk.vala:145 msgid "Options" msgstr "Opcje" -#: src/Console/AppConsole.vala:86 +#: src/Console/AppConsole.vala:80 msgid "Include unstable and RC releases" msgstr "Uwzględnij wydania niestabilne i RC" -#: src/Console/AppConsole.vala:87 +#: src/Console/AppConsole.vala:81 msgid "Exclude unstable and RC releases" msgstr "Wyklucz wersje niestabilne i RC" -#: src/Console/AppConsole.vala:88 +#: src/Console/AppConsole.vala:82 msgid "Enable verbose debugging output" msgstr "Włącz szczegółowe dane wyjściowe debugowania" -#: src/Console/AppConsole.vala:89 +#: src/Console/AppConsole.vala:83 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "Przyjmij Tak dla wszystkich monitów (tryb nieinteraktywny)" -#: src/Console/AppConsole.vala:92 +#: src/Console/AppConsole.vala:86 msgid "A version string taken from the output of --list" msgstr "Ciąg wersji pobrany z danych wyjściowych --list" -#: src/Console/AppConsole.vala:93 +#: src/Console/AppConsole.vala:87 msgid "" "One or more version strings (comma-separated) taken from the output of --list" msgstr "" "Jeden lub więcej ciągów wersji (oddzielonych przecinkami) pobranych z " "wyjścia --list" -#: src/Console/AppConsole.vala:173 src/Gtk/AppGtk.vala:127 +#: src/Console/AppConsole.vala:164 src/Gtk/AppGtk.vala:129 msgid "Unknown option" msgstr "Nieznana opcja" -#: src/Console/AppConsole.vala:175 src/Console/AppConsole.vala:255 -#: src/Console/AppConsole.vala:284 +#: src/Console/AppConsole.vala:165 src/Console/AppConsole.vala:249 +#: src/Console/AppConsole.vala:277 msgid "Run" msgstr "Uruchom" -#: src/Console/AppConsole.vala:175 +#: src/Console/AppConsole.vala:165 msgid "to list all options" msgstr "do wyświetlenia wszystkich opcji" -#: src/Console/AppConsole.vala:227 src/Console/AppConsole.vala:263 +#: src/Console/AppConsole.vala:217 src/Console/AppConsole.vala:257 msgid "No kernels specified" msgstr "Nie wybrano jąder" -#: src/Console/AppConsole.vala:233 +#: src/Console/AppConsole.vala:223 msgid "Multiple kernels selected for installation. Select only one." msgstr "Wybrano kilka jąder do instalacji. Wybierz tylko jedno." -#: src/Console/AppConsole.vala:252 +#: src/Console/AppConsole.vala:246 msgid "Could not find requested version" msgstr "Nie można odnaleźć żądanej wersji" -#: src/Console/AppConsole.vala:255 +#: src/Console/AppConsole.vala:249 msgid "and use a version string listed in first column" msgstr "i użyć numeru wersji wymienionego w pierwszej kolumnie" -#: src/Console/AppConsole.vala:283 +#: src/Console/AppConsole.vala:276 msgid "Command not specified" msgstr "Nie określono polecenia" -#: src/Console/AppConsole.vala:284 +#: src/Console/AppConsole.vala:277 msgid "to list all commands" msgstr "do wyświetlenia wszystkich poleceń" -#: src/Console/AppConsole.vala:338 +#: src/Console/AppConsole.vala:331 src/Gtk/SettingsDialog.vala:166 msgid "Show" msgstr "Pokaż" -#: src/Console/AppConsole.vala:343 src/Console/AppConsole.vala:355 +#: src/Console/AppConsole.vala:336 src/Console/AppConsole.vala:348 #, c-format msgid "Kernel %s Available" msgstr "Dostępne %s jądra" -#: src/Console/AppConsole.vala:345 src/Console/AppConsole.vala:357 -#: src/Gtk/MainWindow.vala:261 +#: src/Console/AppConsole.vala:338 src/Console/AppConsole.vala:350 +#: src/Gtk/MainWindow.vala:270 msgid "Install" msgstr "Zainstaluj" -#: src/Gtk/AppGtk.vala:141 +#: src/Gtk/AppGtk.vala:143 msgid "options" msgstr "opcje" -#: src/Gtk/AppGtk.vala:145 +#: src/Gtk/AppGtk.vala:147 msgid "Print debug information" msgstr "Wypisz informacje debugujące" -#: src/Gtk/AppGtk.vala:146 +#: src/Gtk/AppGtk.vala:148 msgid "Show all options" msgstr "Pokaż wszystkie opcje" -#: src/Gtk/MainWindow.vala:108 +#: src/Gtk/MainWindow.vala:115 msgid "Kernel" msgstr "Jądro" -#: src/Gtk/MainWindow.vala:138 +#: src/Gtk/MainWindow.vala:145 msgid "Status" msgstr "Status" -#: src/Gtk/MainWindow.vala:271 +#: src/Gtk/MainWindow.vala:280 msgid "Uninstall" msgstr "Odinstaluj" -#: src/Gtk/MainWindow.vala:281 +#: src/Gtk/MainWindow.vala:290 msgid "Changes" msgstr "Zmiany" -#: src/Gtk/MainWindow.vala:302 +#: src/Gtk/MainWindow.vala:312 msgid "Uninstall Old" msgstr "Odinstaluj stare" -#: src/Gtk/MainWindow.vala:303 +#: src/Gtk/MainWindow.vala:313 msgid "Uninstall kernels older than running kernel" msgstr "Odinstaluj jądra starsze niż działające jądro" -#: src/Gtk/MainWindow.vala:308 +#: src/Gtk/MainWindow.vala:318 msgid "Reload" msgstr "Załaduj ponownie" -#: src/Gtk/MainWindow.vala:313 src/Gtk/SettingsDialog.vala:50 +#: src/Gtk/MainWindow.vala:323 src/Gtk/SettingsDialog.vala:50 msgid "Settings" msgstr "Ustawienia" -#: src/Gtk/MainWindow.vala:318 +#: src/Gtk/MainWindow.vala:328 msgid "About" msgstr "O programie" -#: src/Gtk/MainWindow.vala:323 +#: src/Gtk/MainWindow.vala:333 msgid "Exit" msgstr "Wyjdź" -#: src/Gtk/MainWindow.vala:391 +#: src/Gtk/MainWindow.vala:401 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Narzędzie uaktualniania jądra dla dystrybucji z rodziny Ubuntu" -#: src/Gtk/MainWindow.vala:392 +#: src/Gtk/MainWindow.vala:402 msgid "Forked" msgstr "Sforkowane" -#: src/Gtk/MainWindow.vala:392 +#: src/Gtk/MainWindow.vala:402 msgid "Original" msgstr "Oryginalne" -#: src/Gtk/MainWindow.vala:430 -msgid "Updating cached indexes" -msgstr "Aktualizowanie indeksów w pamięci podręcznej" +#: src/Gtk/MainWindow.vala:440 +msgid "Updating kernels" +msgstr "" -#: src/Gtk/MainWindow.vala:512 +#: src/Gtk/MainWindow.vala:513 msgid "available" msgstr "dostępne" -#: src/Gtk/MainWindow.vala:546 src/Gtk/MainWindow.vala:580 -#: src/Gtk/MainWindow.vala:608 +#: src/Gtk/MainWindow.vala:546 src/Gtk/MainWindow.vala:579 +#: src/Gtk/MainWindow.vala:606 msgid "DONE" msgstr "GOTOWE" -#: src/Gtk/ProgressWindow.vala:126 src/Gtk/TerminalWindow.vala:148 +#: src/Gtk/ProgressWindow.vala:127 src/Gtk/TerminalWindow.vala:144 msgid "Cancel" msgstr "Anuluj" @@ -363,63 +365,64 @@ msgstr "Powiadomienia" msgid "Notify if a major release is available" msgstr "Powiadom, jeśli pojawi się główna wersja" -#: src/Gtk/SettingsDialog.vala:78 +#: src/Gtk/SettingsDialog.vala:76 msgid "Notify if a point release is available" msgstr "Powiadom, jeśli pojawi się wersja punktowa" -#: src/Gtk/SettingsDialog.vala:89 +#: src/Gtk/SettingsDialog.vala:87 msgid "(Allowing intervals in seconds for --debug)" msgstr "(Zezwalanie na interwały w sekundach dla --debug)" -#: src/Gtk/SettingsDialog.vala:112 +#: src/Gtk/SettingsDialog.vala:110 msgid "Check every" msgstr "Sprawdzaj co" -#: src/Gtk/SettingsDialog.vala:142 +#: src/Gtk/SettingsDialog.vala:135 msgid "Hour(s)" msgstr "godziny" -#: src/Gtk/SettingsDialog.vala:144 +#: src/Gtk/SettingsDialog.vala:137 msgid "Day(s)" msgstr "dni" -#: src/Gtk/SettingsDialog.vala:146 +#: src/Gtk/SettingsDialog.vala:139 msgid "Week(s)" msgstr "tygodnie" -#: src/Gtk/SettingsDialog.vala:149 +#: src/Gtk/SettingsDialog.vala:142 msgid "Second(s)" msgstr "sekundy" -#: src/Gtk/SettingsDialog.vala:155 +#: src/Gtk/SettingsDialog.vala:148 msgid "Display" msgstr "Wyświetl" -#: src/Gtk/SettingsDialog.vala:163 +#: src/Gtk/SettingsDialog.vala:156 msgid "Hide unstable and RC releases" msgstr "Ukryj wydania niestabilne i RC" -#: src/Gtk/SettingsDialog.vala:177 -msgid "Show N previous major versions " +#: src/Gtk/SettingsDialog.vala:178 +#, fuzzy +msgid "previous major versions " msgstr "Pokaż N poprzednich głównych wersji " -#: src/Gtk/SettingsDialog.vala:192 +#: src/Gtk/SettingsDialog.vala:182 msgid "Other" msgstr "Inne" -#: src/Gtk/SettingsDialog.vala:203 +#: src/Gtk/SettingsDialog.vala:193 msgid "Internet connection timeout in " msgstr "Limit czasu połączenia internetowego w " -#: src/Gtk/SettingsDialog.vala:218 +#: src/Gtk/SettingsDialog.vala:205 msgid "seconds" msgstr "sekundach" -#: src/Gtk/SettingsDialog.vala:225 +#: src/Gtk/SettingsDialog.vala:212 msgid "Max concurrent downloads" msgstr "Maksymalna liczba jednoczesnych pobrań" -#: src/Gtk/TerminalWindow.vala:158 src/Utility/Gtk/AboutWindow.vala:287 +#: src/Gtk/TerminalWindow.vala:154 src/Utility/Gtk/AboutWindow.vala:287 msgid "Close" msgstr "Zamknij" @@ -459,10 +462,10 @@ msgstr "Włączenia stron trzecich" msgid "Missing Icon" msgstr "Brakująca ikona" -#: src/Utility/TeeJee.Logging.vala:59 +#: src/Utility/TeeJee.Logging.vala:52 msgid "E" msgstr "E" -#: src/Utility/TeeJee.Logging.vala:84 +#: src/Utility/TeeJee.Logging.vala:68 msgid "D" msgstr "D" diff --git a/po/ru.po b/po/ru.po index 0dc9af36..14b15af2 100644 --- a/po/ru.po +++ b/po/ru.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-09 05:17-0500\n" +"POT-Creation-Date: 2023-03-10 09:00-0500\n" "PO-Revision-Date: 2023-03-01 20:22+0300\n" "Last-Translator: Faust3000 (Original) | Danik2343 (Update Transaltion) " "\n" @@ -22,344 +22,344 @@ msgstr "Дистрибутив" msgid "Architecture" msgstr "Архитектура" -#: src/Common/LinuxKernel.vala:283 +#: src/Common/LinuxKernel.vala:282 #, fuzzy -msgid "Fetching individual kernel indexes..." +msgid "Fetching individual kernel indexes" msgstr "Получение сведений..." #: src/Common/LinuxKernel.vala:327 -#, fuzzy -msgid "Fetching main index from" -msgstr "Получение сведений..." - -#: src/Common/LinuxKernel.vala:539 -msgid "Could not find running kernel in list!" -msgstr "Не удалось найти запущенное ядро в списке!" - -#: src/Common/LinuxKernel.vala:545 -msgid "Could not find any kernels to uninstall" -msgstr "Не удалось найти ядра для деинсталляции" - -#: src/Common/LinuxKernel.vala:554 -msgid "The following kernels will be uninstalled:" -msgstr "Следующие ядра будут деинсталлированы:" - -#: src/Common/LinuxKernel.vala:558 -msgid "Continue ?" -msgstr "Продолжить ?" - -#: src/Common/LinuxKernel.vala:581 src/Console/AppConsole.vala:298 -msgid "Latest update" -msgstr "Последнее обновление" - -#: src/Common/LinuxKernel.vala:592 src/Console/AppConsole.vala:305 -msgid "Latest point update" -msgstr "Последнее обновление пунктов" - -#: src/Common/LinuxKernel.vala:600 src/Console/AppConsole.vala:310 -#: src/Console/AppConsole.vala:365 -msgid "No updates found" -msgstr "Обновлений не найдено" - -#: src/Common/LinuxKernel.vala:610 -#, c-format -msgid "Install Kernel Version %s ? (y/n): " -msgstr "Установить версию ядра %s ? (y/n): " +msgid "Updating from" +msgstr "" -#: src/Common/LinuxKernel.vala:832 +#: src/Common/LinuxKernel.vala:736 msgid "Packages Available" msgstr "Доступные пакеты" -#: src/Common/LinuxKernel.vala:837 +#: src/Common/LinuxKernel.vala:741 msgid "Packages Installed" msgstr "Установленные пакеты" -#: src/Common/LinuxKernel.vala:850 src/Utility/TeeJee.FileSystem.vala:136 +#: src/Common/LinuxKernel.vala:754 src/Utility/TeeJee.FileSystem.vala:136 msgid "File not found" msgstr "Файл не найден" -#: src/Common/LinuxKernel.vala:915 +#: src/Common/LinuxKernel.vala:819 msgid "Available Kernels" msgstr "Доступные ядра" -#: src/Common/LinuxKernel.vala:922 src/Gtk/MainWindow.vala:151 +#: src/Common/LinuxKernel.vala:826 src/Gtk/MainWindow.vala:158 msgid "Installed" msgstr "Установлено" -#: src/Common/LinuxKernel.vala:922 src/Gtk/MainWindow.vala:151 -#: src/Gtk/MainWindow.vala:502 src/Gtk/MainWindow.vala:516 +#: src/Common/LinuxKernel.vala:826 src/Gtk/MainWindow.vala:158 +#: src/Gtk/MainWindow.vala:504 src/Gtk/MainWindow.vala:517 msgid "Running" msgstr "Используется" -#: src/Common/LinuxKernel.vala:957 +#: src/Common/LinuxKernel.vala:861 msgid "Downloading" msgstr "Загрузка" -#: src/Common/LinuxKernel.vala:976 +#: src/Common/LinuxKernel.vala:880 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:979 +#: src/Common/LinuxKernel.vala:883 msgid "ERROR" msgstr "ОШИБКА" -#: src/Common/LinuxKernel.vala:993 +#: src/Common/LinuxKernel.vala:897 msgid "This kernel is already installed." msgstr "Это ядро уже установлено." -#: src/Common/LinuxKernel.vala:1024 +#: src/Common/LinuxKernel.vala:927 #, fuzzy msgid "Uninstalling selected kernels" msgstr "Установить указанное ядро" -#: src/Common/LinuxKernel.vala:1030 +#: src/Common/LinuxKernel.vala:933 msgid "requested" msgstr "" -#: src/Common/LinuxKernel.vala:1033 +#: src/Common/LinuxKernel.vala:936 msgid "skipping the currently booted kernel" msgstr "" -#: src/Common/LinuxKernel.vala:1049 +#: src/Common/LinuxKernel.vala:952 msgid "found" msgstr "" -#: src/Common/LinuxKernel.vala:1052 +#: src/Common/LinuxKernel.vala:955 #, fuzzy msgid "No packages to un-install!" msgstr "Установленные пакеты" -#: src/Common/Main.vala:259 +#: src/Common/LinuxKernel.vala:994 +#, fuzzy +msgid "Could not find running kernel in list" +msgstr "Не удалось найти запущенное ядро в списке!" + +#: src/Common/LinuxKernel.vala:1000 +msgid "Could not find any kernels to uninstall" +msgstr "Не удалось найти ядра для деинсталляции" + +#: src/Common/LinuxKernel.vala:1009 +msgid "The following kernels will be uninstalled:" +msgstr "Следующие ядра будут деинсталлированы:" + +#: src/Common/LinuxKernel.vala:1013 +msgid "Continue ?" +msgstr "Продолжить ?" + +#: src/Common/LinuxKernel.vala:1036 src/Console/AppConsole.vala:291 +msgid "Latest update" +msgstr "Последнее обновление" + +#: src/Common/LinuxKernel.vala:1047 src/Console/AppConsole.vala:298 +msgid "Latest point update" +msgstr "Последнее обновление пунктов" + +#: src/Common/LinuxKernel.vala:1055 src/Console/AppConsole.vala:303 +#: src/Console/AppConsole.vala:358 +msgid "No updates found" +msgstr "Обновлений не найдено" + +#: src/Common/LinuxKernel.vala:1064 +#, c-format +msgid "Install Kernel Version %s ? (y/n): " +msgstr "Установить версию ядра %s ? (y/n): " + +#: src/Common/Main.vala:253 msgid "Called from" msgstr "Вызван из" -#: src/Common/Main.vala:293 +#: src/Common/Main.vala:287 msgid "Notifications are disabled" msgstr "Уведомления отключены" -#: src/Common/Main.vala:332 src/Gtk/MainWindow.vala:617 +#: src/Common/Main.vala:325 src/Gtk/MainWindow.vala:615 msgid "Can not reach" msgstr "" -#: src/Common/Package.vala:60 +#: src/Common/Package.vala:57 #, fuzzy, c-format msgid "File not found: %s" msgstr "Файл не найден" -#: src/Console/AppConsole.vala:68 src/Gtk/AppGtk.vala:141 +#: src/Console/AppConsole.vala:62 src/Gtk/AppGtk.vala:143 msgid "Syntax" msgstr "Синтаксис" -#: src/Console/AppConsole.vala:70 +#: src/Console/AppConsole.vala:64 msgid "Commands" msgstr "Комманды" -#: src/Console/AppConsole.vala:72 +#: src/Console/AppConsole.vala:66 msgid "Check for kernel updates" msgstr "Проверить обновления ядра" -#: src/Console/AppConsole.vala:73 +#: src/Console/AppConsole.vala:67 msgid "Check for kernel updates and notify current user" msgstr "Проверить обновления ядра и уведомить текущего пользователя" -#: src/Console/AppConsole.vala:74 +#: src/Console/AppConsole.vala:68 msgid "List all available mainline kernels" msgstr "Список всех доступных основных ядер" -#: src/Console/AppConsole.vala:75 +#: src/Console/AppConsole.vala:69 msgid "List installed kernels" msgstr "Список установленных ядер" -#: src/Console/AppConsole.vala:76 +#: src/Console/AppConsole.vala:70 msgid "Install latest mainline kernel" msgstr "Установите последнюю версию основного ядра" -#: src/Console/AppConsole.vala:77 +#: src/Console/AppConsole.vala:71 msgid "Install latest point update for current series" msgstr "Установить последнее обновление точек для текущей серии" -#: src/Console/AppConsole.vala:78 +#: src/Console/AppConsole.vala:72 msgid "Install specified mainline kernel" msgstr "Установить указанную ветку основного ядра" -#: src/Console/AppConsole.vala:79 +#: src/Console/AppConsole.vala:73 msgid "Uninstall specified kernel" msgstr "Установить указанное ядро" -#: src/Console/AppConsole.vala:80 +#: src/Console/AppConsole.vala:74 msgid "Uninstall kernels older than the running kernel" msgstr "Удалить более старшие установленные ядра, чем используемое ядро" -#: src/Console/AppConsole.vala:81 +#: src/Console/AppConsole.vala:75 msgid "Download specified kernels" msgstr "Скачать указанные ядра" -#: src/Console/AppConsole.vala:82 +#: src/Console/AppConsole.vala:76 msgid "Delete cached info about available kernels" msgstr "" -#: src/Console/AppConsole.vala:84 src/Gtk/AppGtk.vala:143 +#: src/Console/AppConsole.vala:78 src/Gtk/AppGtk.vala:145 msgid "Options" msgstr "Параметры" -#: src/Console/AppConsole.vala:86 +#: src/Console/AppConsole.vala:80 msgid "Include unstable and RC releases" msgstr "Включать нестабильные и релиз-кандидат-версии" -#: src/Console/AppConsole.vala:87 +#: src/Console/AppConsole.vala:81 #, fuzzy msgid "Exclude unstable and RC releases" msgstr "Включать нестабильные и релиз-кандидат-версии" -#: src/Console/AppConsole.vala:88 +#: src/Console/AppConsole.vala:82 msgid "Enable verbose debugging output" msgstr "Включить подробный отладочный вывод" -#: src/Console/AppConsole.vala:89 +#: src/Console/AppConsole.vala:83 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "Предполагать \"Да\" для всех запросов (неинтерактивный режим)" -#: src/Console/AppConsole.vala:92 +#: src/Console/AppConsole.vala:86 msgid "A version string taken from the output of --list" msgstr "Строка версии, взятая из вывода --list" -#: src/Console/AppConsole.vala:93 +#: src/Console/AppConsole.vala:87 msgid "" "One or more version strings (comma-separated) taken from the output of --list" msgstr "" "Одна или несколько строк версий (разделенных запятыми), взятых из вывода --" "list" -#: src/Console/AppConsole.vala:173 src/Gtk/AppGtk.vala:127 +#: src/Console/AppConsole.vala:164 src/Gtk/AppGtk.vala:129 msgid "Unknown option" msgstr "Неизвестный параметр" -#: src/Console/AppConsole.vala:175 src/Console/AppConsole.vala:255 -#: src/Console/AppConsole.vala:284 +#: src/Console/AppConsole.vala:165 src/Console/AppConsole.vala:249 +#: src/Console/AppConsole.vala:277 msgid "Run" msgstr "Используется" -#: src/Console/AppConsole.vala:175 +#: src/Console/AppConsole.vala:165 msgid "to list all options" msgstr "чтобы перечислить все параметры" -#: src/Console/AppConsole.vala:227 src/Console/AppConsole.vala:263 +#: src/Console/AppConsole.vala:217 src/Console/AppConsole.vala:257 msgid "No kernels specified" msgstr "Ядра не указаны" -#: src/Console/AppConsole.vala:233 +#: src/Console/AppConsole.vala:223 msgid "Multiple kernels selected for installation. Select only one." msgstr "Для установки выбрано несколько ядер. Выберите только одно." -#: src/Console/AppConsole.vala:252 +#: src/Console/AppConsole.vala:246 msgid "Could not find requested version" msgstr "Не удалось найти запрошенную версию" -#: src/Console/AppConsole.vala:255 +#: src/Console/AppConsole.vala:249 msgid "and use a version string listed in first column" msgstr "и использовать строку версии, указанную в первом столбце" -#: src/Console/AppConsole.vala:283 +#: src/Console/AppConsole.vala:276 msgid "Command not specified" msgstr "Команда не указана" -#: src/Console/AppConsole.vala:284 +#: src/Console/AppConsole.vala:277 msgid "to list all commands" msgstr "чтобы перечислить все команды" -#: src/Console/AppConsole.vala:338 +#: src/Console/AppConsole.vala:331 src/Gtk/SettingsDialog.vala:166 msgid "Show" msgstr "Показать" -#: src/Console/AppConsole.vala:343 src/Console/AppConsole.vala:355 +#: src/Console/AppConsole.vala:336 src/Console/AppConsole.vala:348 #, c-format msgid "Kernel %s Available" msgstr "Доступно ядро %s" -#: src/Console/AppConsole.vala:345 src/Console/AppConsole.vala:357 -#: src/Gtk/MainWindow.vala:261 +#: src/Console/AppConsole.vala:338 src/Console/AppConsole.vala:350 +#: src/Gtk/MainWindow.vala:270 msgid "Install" msgstr "Установить" -#: src/Gtk/AppGtk.vala:141 +#: src/Gtk/AppGtk.vala:143 #, fuzzy msgid "options" msgstr "Параметры" -#: src/Gtk/AppGtk.vala:145 +#: src/Gtk/AppGtk.vala:147 msgid "Print debug information" msgstr "Распечатать отладочную информацию" -#: src/Gtk/AppGtk.vala:146 +#: src/Gtk/AppGtk.vala:148 msgid "Show all options" msgstr "Показать все параметры" -#: src/Gtk/MainWindow.vala:108 +#: src/Gtk/MainWindow.vala:115 msgid "Kernel" msgstr "Ядро" -#: src/Gtk/MainWindow.vala:138 +#: src/Gtk/MainWindow.vala:145 msgid "Status" msgstr "Состояние" -#: src/Gtk/MainWindow.vala:271 +#: src/Gtk/MainWindow.vala:280 msgid "Uninstall" msgstr "Удалить" -#: src/Gtk/MainWindow.vala:281 +#: src/Gtk/MainWindow.vala:290 msgid "Changes" msgstr "Изменения" -#: src/Gtk/MainWindow.vala:302 +#: src/Gtk/MainWindow.vala:312 msgid "Uninstall Old" msgstr "Удалить старые" -#: src/Gtk/MainWindow.vala:303 +#: src/Gtk/MainWindow.vala:313 msgid "Uninstall kernels older than running kernel" msgstr "Удалить более старшие установленные ядра, чем используемое" -#: src/Gtk/MainWindow.vala:308 +#: src/Gtk/MainWindow.vala:318 msgid "Reload" msgstr "" -#: src/Gtk/MainWindow.vala:313 src/Gtk/SettingsDialog.vala:50 +#: src/Gtk/MainWindow.vala:323 src/Gtk/SettingsDialog.vala:50 msgid "Settings" msgstr "Настройки" -#: src/Gtk/MainWindow.vala:318 +#: src/Gtk/MainWindow.vala:328 msgid "About" msgstr "О программе" -#: src/Gtk/MainWindow.vala:323 +#: src/Gtk/MainWindow.vala:333 msgid "Exit" msgstr "" -#: src/Gtk/MainWindow.vala:391 +#: src/Gtk/MainWindow.vala:401 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Программа обновления ядра для дистрибутивов на базе Ubuntu" -#: src/Gtk/MainWindow.vala:392 +#: src/Gtk/MainWindow.vala:402 msgid "Forked" msgstr "Форк" -#: src/Gtk/MainWindow.vala:392 +#: src/Gtk/MainWindow.vala:402 msgid "Original" msgstr "Оригинал" -#: src/Gtk/MainWindow.vala:430 -msgid "Updating cached indexes" +#: src/Gtk/MainWindow.vala:440 +msgid "Updating kernels" msgstr "" -#: src/Gtk/MainWindow.vala:512 +#: src/Gtk/MainWindow.vala:513 msgid "available" msgstr "доступно" -#: src/Gtk/MainWindow.vala:546 src/Gtk/MainWindow.vala:580 -#: src/Gtk/MainWindow.vala:608 +#: src/Gtk/MainWindow.vala:546 src/Gtk/MainWindow.vala:579 +#: src/Gtk/MainWindow.vala:606 msgid "DONE" msgstr "" -#: src/Gtk/ProgressWindow.vala:126 src/Gtk/TerminalWindow.vala:148 +#: src/Gtk/ProgressWindow.vala:127 src/Gtk/TerminalWindow.vala:144 msgid "Cancel" msgstr "Отмена" @@ -371,63 +371,64 @@ msgstr "Уведомления" msgid "Notify if a major release is available" msgstr "Уведомлять, если доступно крупное обновление" -#: src/Gtk/SettingsDialog.vala:78 +#: src/Gtk/SettingsDialog.vala:76 msgid "Notify if a point release is available" msgstr "Уведомлять, если доступно небольшое обновление" -#: src/Gtk/SettingsDialog.vala:89 +#: src/Gtk/SettingsDialog.vala:87 msgid "(Allowing intervals in seconds for --debug)" msgstr "(Разрешение интервалов в секундах для --debug)" -#: src/Gtk/SettingsDialog.vala:112 +#: src/Gtk/SettingsDialog.vala:110 msgid "Check every" msgstr "Проверять каждые" -#: src/Gtk/SettingsDialog.vala:142 +#: src/Gtk/SettingsDialog.vala:135 msgid "Hour(s)" msgstr "Час(ов)" -#: src/Gtk/SettingsDialog.vala:144 +#: src/Gtk/SettingsDialog.vala:137 msgid "Day(s)" msgstr "День(дней)" -#: src/Gtk/SettingsDialog.vala:146 +#: src/Gtk/SettingsDialog.vala:139 msgid "Week(s)" msgstr "Неделю(ли)" -#: src/Gtk/SettingsDialog.vala:149 +#: src/Gtk/SettingsDialog.vala:142 msgid "Second(s)" msgstr "Секунду(ды)" -#: src/Gtk/SettingsDialog.vala:155 +#: src/Gtk/SettingsDialog.vala:148 msgid "Display" msgstr "Отображение" -#: src/Gtk/SettingsDialog.vala:163 +#: src/Gtk/SettingsDialog.vala:156 msgid "Hide unstable and RC releases" msgstr "Скрыть нестабильные и релиз-кандидат версии" -#: src/Gtk/SettingsDialog.vala:177 -msgid "Show N previous major versions " +#: src/Gtk/SettingsDialog.vala:178 +#, fuzzy +msgid "previous major versions " msgstr "Показать N предыдущих основных версий " -#: src/Gtk/SettingsDialog.vala:192 +#: src/Gtk/SettingsDialog.vala:182 msgid "Other" msgstr "Прочее" -#: src/Gtk/SettingsDialog.vala:203 +#: src/Gtk/SettingsDialog.vala:193 msgid "Internet connection timeout in " msgstr "Таймаут подключения к Интернету в " -#: src/Gtk/SettingsDialog.vala:218 +#: src/Gtk/SettingsDialog.vala:205 msgid "seconds" msgstr "секунд" -#: src/Gtk/SettingsDialog.vala:225 +#: src/Gtk/SettingsDialog.vala:212 msgid "Max concurrent downloads" msgstr "Максимальное количество одновременных загрузок" -#: src/Gtk/TerminalWindow.vala:158 src/Utility/Gtk/AboutWindow.vala:287 +#: src/Gtk/TerminalWindow.vala:154 src/Utility/Gtk/AboutWindow.vala:287 msgid "Close" msgstr "Закрыть" @@ -467,10 +468,10 @@ msgstr "Включая сторонние инструменты" msgid "Missing Icon" msgstr "Значок отсутствует" -#: src/Utility/TeeJee.Logging.vala:59 +#: src/Utility/TeeJee.Logging.vala:52 msgid "E" msgstr "E" -#: src/Utility/TeeJee.Logging.vala:84 +#: src/Utility/TeeJee.Logging.vala:68 msgid "D" msgstr "D" diff --git a/po/sv.po b/po/sv.po index 2baa8fb3..53d0aa57 100644 --- a/po/sv.po +++ b/po/sv.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-09 05:17-0500\n" +"POT-Creation-Date: 2023-03-10 09:00-0500\n" "PO-Revision-Date: 2018-01-13 16:56+0100\n" "Last-Translator: Åke Engelbrektson \n" "Language-Team:Swedish\n" @@ -22,361 +22,360 @@ msgstr "Distribution" msgid "Architecture" msgstr "Systemarkitektur" -#: src/Common/LinuxKernel.vala:283 +#: src/Common/LinuxKernel.vala:282 #, fuzzy -msgid "Fetching individual kernel indexes..." +msgid "Fetching individual kernel indexes" msgstr "Hämtar index för" #: src/Common/LinuxKernel.vala:327 -#, fuzzy -msgid "Fetching main index from" -msgstr "Hämtar index för" - -#: src/Common/LinuxKernel.vala:539 -#, fuzzy -msgid "Could not find running kernel in list!" -msgstr "Kunde inte hitta efterfrågad version" - -#: src/Common/LinuxKernel.vala:545 -#, fuzzy -msgid "Could not find any kernels to uninstall" -msgstr "Välj kärnor för borttagning" - -#: src/Common/LinuxKernel.vala:554 -#, fuzzy -msgid "The following kernels will be uninstalled:" -msgstr "Denna kärna är redan installerad" - -#: src/Common/LinuxKernel.vala:558 -msgid "Continue ?" -msgstr "" - -#: src/Common/LinuxKernel.vala:581 src/Console/AppConsole.vala:298 -msgid "Latest update" -msgstr "" - -#: src/Common/LinuxKernel.vala:592 src/Console/AppConsole.vala:305 -msgid "Latest point update" +msgid "Updating from" msgstr "" -#: src/Common/LinuxKernel.vala:600 src/Console/AppConsole.vala:310 -#: src/Console/AppConsole.vala:365 -msgid "No updates found" -msgstr "Inga uppdateringar hittades" - -#: src/Common/LinuxKernel.vala:610 -#, c-format -msgid "Install Kernel Version %s ? (y/n): " -msgstr "" - -#: src/Common/LinuxKernel.vala:832 +#: src/Common/LinuxKernel.vala:736 msgid "Packages Available" msgstr "Tillgängliga paket" -#: src/Common/LinuxKernel.vala:837 +#: src/Common/LinuxKernel.vala:741 msgid "Packages Installed" msgstr "Installerade paket" -#: src/Common/LinuxKernel.vala:850 src/Utility/TeeJee.FileSystem.vala:136 +#: src/Common/LinuxKernel.vala:754 src/Utility/TeeJee.FileSystem.vala:136 msgid "File not found" msgstr "Filen kan inte hittas" -#: src/Common/LinuxKernel.vala:915 +#: src/Common/LinuxKernel.vala:819 msgid "Available Kernels" msgstr "Tillgängliga kärnor" -#: src/Common/LinuxKernel.vala:922 src/Gtk/MainWindow.vala:151 +#: src/Common/LinuxKernel.vala:826 src/Gtk/MainWindow.vala:158 msgid "Installed" msgstr "Installerad" -#: src/Common/LinuxKernel.vala:922 src/Gtk/MainWindow.vala:151 -#: src/Gtk/MainWindow.vala:502 src/Gtk/MainWindow.vala:516 +#: src/Common/LinuxKernel.vala:826 src/Gtk/MainWindow.vala:158 +#: src/Gtk/MainWindow.vala:504 src/Gtk/MainWindow.vala:517 msgid "Running" msgstr "Körs" -#: src/Common/LinuxKernel.vala:957 +#: src/Common/LinuxKernel.vala:861 msgid "Downloading" msgstr "Laddar ner" -#: src/Common/LinuxKernel.vala:976 +#: src/Common/LinuxKernel.vala:880 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:979 +#: src/Common/LinuxKernel.vala:883 msgid "ERROR" msgstr "FEL" -#: src/Common/LinuxKernel.vala:993 +#: src/Common/LinuxKernel.vala:897 msgid "This kernel is already installed." msgstr "Denna kärna är redan installerad" -#: src/Common/LinuxKernel.vala:1024 +#: src/Common/LinuxKernel.vala:927 #, fuzzy msgid "Uninstalling selected kernels" msgstr "Installera specificerad kärna" -#: src/Common/LinuxKernel.vala:1030 +#: src/Common/LinuxKernel.vala:933 msgid "requested" msgstr "" -#: src/Common/LinuxKernel.vala:1033 +#: src/Common/LinuxKernel.vala:936 msgid "skipping the currently booted kernel" msgstr "" -#: src/Common/LinuxKernel.vala:1049 +#: src/Common/LinuxKernel.vala:952 msgid "found" msgstr "" -#: src/Common/LinuxKernel.vala:1052 +#: src/Common/LinuxKernel.vala:955 #, fuzzy msgid "No packages to un-install!" msgstr "Installerade paket" -#: src/Common/Main.vala:259 +#: src/Common/LinuxKernel.vala:994 +#, fuzzy +msgid "Could not find running kernel in list" +msgstr "Kunde inte hitta efterfrågad version" + +#: src/Common/LinuxKernel.vala:1000 +#, fuzzy +msgid "Could not find any kernels to uninstall" +msgstr "Välj kärnor för borttagning" + +#: src/Common/LinuxKernel.vala:1009 +#, fuzzy +msgid "The following kernels will be uninstalled:" +msgstr "Denna kärna är redan installerad" + +#: src/Common/LinuxKernel.vala:1013 +msgid "Continue ?" +msgstr "" + +#: src/Common/LinuxKernel.vala:1036 src/Console/AppConsole.vala:291 +msgid "Latest update" +msgstr "" + +#: src/Common/LinuxKernel.vala:1047 src/Console/AppConsole.vala:298 +msgid "Latest point update" +msgstr "" + +#: src/Common/LinuxKernel.vala:1055 src/Console/AppConsole.vala:303 +#: src/Console/AppConsole.vala:358 +msgid "No updates found" +msgstr "Inga uppdateringar hittades" + +#: src/Common/LinuxKernel.vala:1064 +#, c-format +msgid "Install Kernel Version %s ? (y/n): " +msgstr "" + +#: src/Common/Main.vala:253 msgid "Called from" msgstr "" -#: src/Common/Main.vala:293 +#: src/Common/Main.vala:287 #, fuzzy msgid "Notifications are disabled" msgstr "Avisering" -#: src/Common/Main.vala:332 src/Gtk/MainWindow.vala:617 +#: src/Common/Main.vala:325 src/Gtk/MainWindow.vala:615 #, fuzzy msgid "Can not reach" msgstr "Kunde inte läsa filen" -#: src/Common/Package.vala:60 +#: src/Common/Package.vala:57 #, fuzzy, c-format msgid "File not found: %s" msgstr "Filen kan inte hittas" -#: src/Console/AppConsole.vala:68 src/Gtk/AppGtk.vala:141 +#: src/Console/AppConsole.vala:62 src/Gtk/AppGtk.vala:143 msgid "Syntax" msgstr "Syntax" -#: src/Console/AppConsole.vala:70 +#: src/Console/AppConsole.vala:64 msgid "Commands" msgstr "" -#: src/Console/AppConsole.vala:72 +#: src/Console/AppConsole.vala:66 msgid "Check for kernel updates" msgstr "Sök efter kärnuppdateringar" -#: src/Console/AppConsole.vala:73 +#: src/Console/AppConsole.vala:67 #, fuzzy msgid "Check for kernel updates and notify current user" msgstr "Sök efter kärnuppdateringar" -#: src/Console/AppConsole.vala:74 +#: src/Console/AppConsole.vala:68 msgid "List all available mainline kernels" msgstr "Lista alla tillgängliga kärnor" -#: src/Console/AppConsole.vala:75 +#: src/Console/AppConsole.vala:69 #, fuzzy msgid "List installed kernels" msgstr "Lista tillgängliga kärnor" -#: src/Console/AppConsole.vala:76 +#: src/Console/AppConsole.vala:70 #, fuzzy msgid "Install latest mainline kernel" msgstr "Installera specificerad kärna" -#: src/Console/AppConsole.vala:77 +#: src/Console/AppConsole.vala:71 msgid "Install latest point update for current series" msgstr "" -#: src/Console/AppConsole.vala:78 +#: src/Console/AppConsole.vala:72 msgid "Install specified mainline kernel" msgstr "Installera specificerad kärna" -#: src/Console/AppConsole.vala:79 +#: src/Console/AppConsole.vala:73 #, fuzzy msgid "Uninstall specified kernel" msgstr "Installera specificerad kärna" -#: src/Console/AppConsole.vala:80 +#: src/Console/AppConsole.vala:74 #, fuzzy msgid "Uninstall kernels older than the running kernel" msgstr "Ta bort installerade kärnor äldre än den som körs" -#: src/Console/AppConsole.vala:81 +#: src/Console/AppConsole.vala:75 #, fuzzy msgid "Download specified kernels" msgstr "Ladda ner paket för specificerad kärna" -#: src/Console/AppConsole.vala:82 +#: src/Console/AppConsole.vala:76 msgid "Delete cached info about available kernels" msgstr "" -#: src/Console/AppConsole.vala:84 src/Gtk/AppGtk.vala:143 +#: src/Console/AppConsole.vala:78 src/Gtk/AppGtk.vala:145 msgid "Options" msgstr "Alternativ" -#: src/Console/AppConsole.vala:86 +#: src/Console/AppConsole.vala:80 #, fuzzy msgid "Include unstable and RC releases" msgstr "Dölj instabila- och RC-publiceringar" -#: src/Console/AppConsole.vala:87 +#: src/Console/AppConsole.vala:81 #, fuzzy msgid "Exclude unstable and RC releases" msgstr "Dölj instabila- och RC-publiceringar" -#: src/Console/AppConsole.vala:88 +#: src/Console/AppConsole.vala:82 msgid "Enable verbose debugging output" msgstr "" -#: src/Console/AppConsole.vala:89 +#: src/Console/AppConsole.vala:83 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "" -#: src/Console/AppConsole.vala:92 +#: src/Console/AppConsole.vala:86 msgid "A version string taken from the output of --list" msgstr "" -#: src/Console/AppConsole.vala:93 +#: src/Console/AppConsole.vala:87 msgid "" "One or more version strings (comma-separated) taken from the output of --list" msgstr "" -#: src/Console/AppConsole.vala:173 src/Gtk/AppGtk.vala:127 +#: src/Console/AppConsole.vala:164 src/Gtk/AppGtk.vala:129 msgid "Unknown option" msgstr "Okänt alternativ" -#: src/Console/AppConsole.vala:175 src/Console/AppConsole.vala:255 -#: src/Console/AppConsole.vala:284 +#: src/Console/AppConsole.vala:165 src/Console/AppConsole.vala:249 +#: src/Console/AppConsole.vala:277 #, fuzzy msgid "Run" msgstr "Körs" -#: src/Console/AppConsole.vala:175 +#: src/Console/AppConsole.vala:165 #, fuzzy msgid "to list all options" msgstr "Visa alla alternativ" -#: src/Console/AppConsole.vala:227 src/Console/AppConsole.vala:263 +#: src/Console/AppConsole.vala:217 src/Console/AppConsole.vala:257 msgid "No kernels specified" msgstr "" -#: src/Console/AppConsole.vala:233 +#: src/Console/AppConsole.vala:223 msgid "Multiple kernels selected for installation. Select only one." msgstr "Flera kärnor valda för installation. Välj endast en." -#: src/Console/AppConsole.vala:252 +#: src/Console/AppConsole.vala:246 msgid "Could not find requested version" msgstr "Kunde inte hitta efterfrågad version" -#: src/Console/AppConsole.vala:255 +#: src/Console/AppConsole.vala:249 msgid "and use a version string listed in first column" msgstr "" -#: src/Console/AppConsole.vala:283 +#: src/Console/AppConsole.vala:276 msgid "Command not specified" msgstr "" -#: src/Console/AppConsole.vala:284 +#: src/Console/AppConsole.vala:277 #, fuzzy msgid "to list all commands" msgstr "Visa alla alternativ" -#: src/Console/AppConsole.vala:338 +#: src/Console/AppConsole.vala:331 src/Gtk/SettingsDialog.vala:166 msgid "Show" msgstr "" -#: src/Console/AppConsole.vala:343 src/Console/AppConsole.vala:355 +#: src/Console/AppConsole.vala:336 src/Console/AppConsole.vala:348 #, fuzzy, c-format msgid "Kernel %s Available" msgstr "Tillgängliga paket" -#: src/Console/AppConsole.vala:345 src/Console/AppConsole.vala:357 -#: src/Gtk/MainWindow.vala:261 +#: src/Console/AppConsole.vala:338 src/Console/AppConsole.vala:350 +#: src/Gtk/MainWindow.vala:270 msgid "Install" msgstr "Installera" -#: src/Gtk/AppGtk.vala:141 +#: src/Gtk/AppGtk.vala:143 #, fuzzy msgid "options" msgstr "Alternativ" -#: src/Gtk/AppGtk.vala:145 +#: src/Gtk/AppGtk.vala:147 msgid "Print debug information" msgstr "Skriv ut felsökningsinformation" -#: src/Gtk/AppGtk.vala:146 +#: src/Gtk/AppGtk.vala:148 msgid "Show all options" msgstr "Visa alla alternativ" -#: src/Gtk/MainWindow.vala:108 +#: src/Gtk/MainWindow.vala:115 msgid "Kernel" msgstr "Kärna" -#: src/Gtk/MainWindow.vala:138 +#: src/Gtk/MainWindow.vala:145 msgid "Status" msgstr "Status" -#: src/Gtk/MainWindow.vala:271 +#: src/Gtk/MainWindow.vala:280 #, fuzzy msgid "Uninstall" msgstr "Installera" -#: src/Gtk/MainWindow.vala:281 +#: src/Gtk/MainWindow.vala:290 msgid "Changes" msgstr "Ändringar" -#: src/Gtk/MainWindow.vala:302 +#: src/Gtk/MainWindow.vala:312 #, fuzzy msgid "Uninstall Old" msgstr "Avinstallation slutförd" -#: src/Gtk/MainWindow.vala:303 +#: src/Gtk/MainWindow.vala:313 #, fuzzy msgid "Uninstall kernels older than running kernel" msgstr "Ta bort installerade kärnor äldre än den som körs" -#: src/Gtk/MainWindow.vala:308 +#: src/Gtk/MainWindow.vala:318 msgid "Reload" msgstr "" -#: src/Gtk/MainWindow.vala:313 src/Gtk/SettingsDialog.vala:50 +#: src/Gtk/MainWindow.vala:323 src/Gtk/SettingsDialog.vala:50 msgid "Settings" msgstr "Inställningar" -#: src/Gtk/MainWindow.vala:318 +#: src/Gtk/MainWindow.vala:328 msgid "About" msgstr "Om" -#: src/Gtk/MainWindow.vala:323 +#: src/Gtk/MainWindow.vala:333 msgid "Exit" msgstr "" -#: src/Gtk/MainWindow.vala:391 +#: src/Gtk/MainWindow.vala:401 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Kärnuppgraderingsverktyg för Ubuntu-baserade distributioner" -#: src/Gtk/MainWindow.vala:392 +#: src/Gtk/MainWindow.vala:402 msgid "Forked" msgstr "" -#: src/Gtk/MainWindow.vala:392 +#: src/Gtk/MainWindow.vala:402 msgid "Original" msgstr "" -#: src/Gtk/MainWindow.vala:430 -msgid "Updating cached indexes" +#: src/Gtk/MainWindow.vala:440 +msgid "Updating kernels" msgstr "" -#: src/Gtk/MainWindow.vala:512 +#: src/Gtk/MainWindow.vala:513 #, fuzzy msgid "available" msgstr "Tillgängliga paket" -#: src/Gtk/MainWindow.vala:546 src/Gtk/MainWindow.vala:580 -#: src/Gtk/MainWindow.vala:608 +#: src/Gtk/MainWindow.vala:546 src/Gtk/MainWindow.vala:579 +#: src/Gtk/MainWindow.vala:606 msgid "DONE" msgstr "" -#: src/Gtk/ProgressWindow.vala:126 src/Gtk/TerminalWindow.vala:148 +#: src/Gtk/ProgressWindow.vala:127 src/Gtk/TerminalWindow.vala:144 msgid "Cancel" msgstr "Avbryt" @@ -388,64 +387,64 @@ msgstr "Avisering" msgid "Notify if a major release is available" msgstr "Meddela om en ny (stor) uppdatering finns tillgänglig" -#: src/Gtk/SettingsDialog.vala:78 +#: src/Gtk/SettingsDialog.vala:76 msgid "Notify if a point release is available" msgstr "Meddela om en ny (mindre) uppdatering finns tillgänglig" -#: src/Gtk/SettingsDialog.vala:89 +#: src/Gtk/SettingsDialog.vala:87 msgid "(Allowing intervals in seconds for --debug)" msgstr "" -#: src/Gtk/SettingsDialog.vala:112 +#: src/Gtk/SettingsDialog.vala:110 msgid "Check every" msgstr "Kontrollera varje" -#: src/Gtk/SettingsDialog.vala:142 +#: src/Gtk/SettingsDialog.vala:135 msgid "Hour(s)" msgstr "Timma(r)" -#: src/Gtk/SettingsDialog.vala:144 +#: src/Gtk/SettingsDialog.vala:137 msgid "Day(s)" msgstr "Dag(ar)" -#: src/Gtk/SettingsDialog.vala:146 +#: src/Gtk/SettingsDialog.vala:139 msgid "Week(s)" msgstr "Veckor" -#: src/Gtk/SettingsDialog.vala:149 +#: src/Gtk/SettingsDialog.vala:142 msgid "Second(s)" msgstr "" -#: src/Gtk/SettingsDialog.vala:155 +#: src/Gtk/SettingsDialog.vala:148 msgid "Display" msgstr "Visa" -#: src/Gtk/SettingsDialog.vala:163 +#: src/Gtk/SettingsDialog.vala:156 msgid "Hide unstable and RC releases" msgstr "Dölj instabila- och RC-publiceringar" -#: src/Gtk/SettingsDialog.vala:177 -msgid "Show N previous major versions " +#: src/Gtk/SettingsDialog.vala:178 +msgid "previous major versions " msgstr "" -#: src/Gtk/SettingsDialog.vala:192 +#: src/Gtk/SettingsDialog.vala:182 msgid "Other" msgstr "" -#: src/Gtk/SettingsDialog.vala:203 +#: src/Gtk/SettingsDialog.vala:193 #, fuzzy msgid "Internet connection timeout in " msgstr "Internetuppkopplingen är inte aktiv" -#: src/Gtk/SettingsDialog.vala:218 +#: src/Gtk/SettingsDialog.vala:205 msgid "seconds" msgstr "" -#: src/Gtk/SettingsDialog.vala:225 +#: src/Gtk/SettingsDialog.vala:212 msgid "Max concurrent downloads" msgstr "" -#: src/Gtk/TerminalWindow.vala:158 src/Utility/Gtk/AboutWindow.vala:287 +#: src/Gtk/TerminalWindow.vala:154 src/Utility/Gtk/AboutWindow.vala:287 msgid "Close" msgstr "Stäng" @@ -486,10 +485,10 @@ msgstr "Tredjepartsverktyg" msgid "Missing Icon" msgstr "Saknad ikon" -#: src/Utility/TeeJee.Logging.vala:59 +#: src/Utility/TeeJee.Logging.vala:52 msgid "E" msgstr "F" -#: src/Utility/TeeJee.Logging.vala:84 +#: src/Utility/TeeJee.Logging.vala:68 msgid "D" msgstr "" diff --git a/po/tr.po b/po/tr.po index c0a768ca..08928cd3 100644 --- a/po/tr.po +++ b/po/tr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-09 05:17-0500\n" +"POT-Creation-Date: 2023-03-10 09:00-0500\n" "PO-Revision-Date: 2022-08-06 16:48+0300\n" "Last-Translator: Sabri Ünal \n" "Language-Team: Turkish\n" @@ -21,346 +21,346 @@ msgstr "Dağıtım" msgid "Architecture" msgstr "Sistem mimarisi" -#: src/Common/LinuxKernel.vala:283 +#: src/Common/LinuxKernel.vala:282 #, fuzzy -msgid "Fetching individual kernel indexes..." +msgid "Fetching individual kernel indexes" msgstr "İçerik dizini alınıyor..." #: src/Common/LinuxKernel.vala:327 -#, fuzzy -msgid "Fetching main index from" -msgstr "İçerik dizini alınıyor..." - -#: src/Common/LinuxKernel.vala:539 -msgid "Could not find running kernel in list!" -msgstr "Çalışan sürüm listede bulunamadı!" - -#: src/Common/LinuxKernel.vala:545 -msgid "Could not find any kernels to uninstall" -msgstr "Kaldırılacak çekirdek bulunamadı" - -#: src/Common/LinuxKernel.vala:554 -msgid "The following kernels will be uninstalled:" -msgstr "Aşağıdaki çekirdekler kaldırılacak:" - -#: src/Common/LinuxKernel.vala:558 -msgid "Continue ?" -msgstr "Devam edilsin mi?" - -#: src/Common/LinuxKernel.vala:581 src/Console/AppConsole.vala:298 -msgid "Latest update" -msgstr "Son güncelleme" - -# Point burada point release anlamında kullanılıyor. Örneğin 5.10.x sayısının en sonundaki x rakamı point release/nokta sürüm oluyor. -#: src/Common/LinuxKernel.vala:592 src/Console/AppConsole.vala:305 -msgid "Latest point update" -msgstr "Son nokta güncellemesi" - -#: src/Common/LinuxKernel.vala:600 src/Console/AppConsole.vala:310 -#: src/Console/AppConsole.vala:365 -msgid "No updates found" -msgstr "Güncelleme bulunamadı" - -#: src/Common/LinuxKernel.vala:610 -#, c-format -msgid "Install Kernel Version %s ? (y/n): " -msgstr "Linux Çekirdek Sürümü %s Kurulsun mu? (e/h): " +msgid "Updating from" +msgstr "" -#: src/Common/LinuxKernel.vala:832 +#: src/Common/LinuxKernel.vala:736 msgid "Packages Available" msgstr "Mevcut Paketler" -#: src/Common/LinuxKernel.vala:837 +#: src/Common/LinuxKernel.vala:741 msgid "Packages Installed" msgstr "Kurulu Paketler" -#: src/Common/LinuxKernel.vala:850 src/Utility/TeeJee.FileSystem.vala:136 +#: src/Common/LinuxKernel.vala:754 src/Utility/TeeJee.FileSystem.vala:136 msgid "File not found" msgstr "Dosya bulunamadı" -#: src/Common/LinuxKernel.vala:915 +#: src/Common/LinuxKernel.vala:819 msgid "Available Kernels" msgstr "Mevcut Çekirdekler" -#: src/Common/LinuxKernel.vala:922 src/Gtk/MainWindow.vala:151 +#: src/Common/LinuxKernel.vala:826 src/Gtk/MainWindow.vala:158 msgid "Installed" msgstr "Kurulu" -#: src/Common/LinuxKernel.vala:922 src/Gtk/MainWindow.vala:151 -#: src/Gtk/MainWindow.vala:502 src/Gtk/MainWindow.vala:516 +#: src/Common/LinuxKernel.vala:826 src/Gtk/MainWindow.vala:158 +#: src/Gtk/MainWindow.vala:504 src/Gtk/MainWindow.vala:517 msgid "Running" msgstr "Çalışıyor" -#: src/Common/LinuxKernel.vala:957 +#: src/Common/LinuxKernel.vala:861 msgid "Downloading" msgstr "İndiriliyor" -#: src/Common/LinuxKernel.vala:976 +#: src/Common/LinuxKernel.vala:880 msgid "OK" msgstr "Tamam" -#: src/Common/LinuxKernel.vala:979 +#: src/Common/LinuxKernel.vala:883 msgid "ERROR" msgstr "HATA" -#: src/Common/LinuxKernel.vala:993 +#: src/Common/LinuxKernel.vala:897 msgid "This kernel is already installed." msgstr "Bu çekirdek zaten kurulu." -#: src/Common/LinuxKernel.vala:1024 +#: src/Common/LinuxKernel.vala:927 #, fuzzy msgid "Uninstalling selected kernels" msgstr "Belirtilen çekirdeğini kaldır" -#: src/Common/LinuxKernel.vala:1030 +#: src/Common/LinuxKernel.vala:933 msgid "requested" msgstr "" -#: src/Common/LinuxKernel.vala:1033 +#: src/Common/LinuxKernel.vala:936 msgid "skipping the currently booted kernel" msgstr "" -#: src/Common/LinuxKernel.vala:1049 +#: src/Common/LinuxKernel.vala:952 msgid "found" msgstr "" -#: src/Common/LinuxKernel.vala:1052 +#: src/Common/LinuxKernel.vala:955 #, fuzzy msgid "No packages to un-install!" msgstr "Kurulu Paketler" -#: src/Common/Main.vala:259 +#: src/Common/LinuxKernel.vala:994 +#, fuzzy +msgid "Could not find running kernel in list" +msgstr "Çalışan sürüm listede bulunamadı!" + +#: src/Common/LinuxKernel.vala:1000 +msgid "Could not find any kernels to uninstall" +msgstr "Kaldırılacak çekirdek bulunamadı" + +#: src/Common/LinuxKernel.vala:1009 +msgid "The following kernels will be uninstalled:" +msgstr "Aşağıdaki çekirdekler kaldırılacak:" + +#: src/Common/LinuxKernel.vala:1013 +msgid "Continue ?" +msgstr "Devam edilsin mi?" + +#: src/Common/LinuxKernel.vala:1036 src/Console/AppConsole.vala:291 +msgid "Latest update" +msgstr "Son güncelleme" + +# Point burada point release anlamında kullanılıyor. Örneğin 5.10.x sayısının en sonundaki x rakamı point release/nokta sürüm oluyor. +#: src/Common/LinuxKernel.vala:1047 src/Console/AppConsole.vala:298 +msgid "Latest point update" +msgstr "Son nokta güncellemesi" + +#: src/Common/LinuxKernel.vala:1055 src/Console/AppConsole.vala:303 +#: src/Console/AppConsole.vala:358 +msgid "No updates found" +msgstr "Güncelleme bulunamadı" + +#: src/Common/LinuxKernel.vala:1064 +#, c-format +msgid "Install Kernel Version %s ? (y/n): " +msgstr "Linux Çekirdek Sürümü %s Kurulsun mu? (e/h): " + +#: src/Common/Main.vala:253 msgid "Called from" msgstr "Çağrı konumu" -#: src/Common/Main.vala:293 +#: src/Common/Main.vala:287 msgid "Notifications are disabled" msgstr "Bildirimler devre dışı bırakılmış" -#: src/Common/Main.vala:332 src/Gtk/MainWindow.vala:617 +#: src/Common/Main.vala:325 src/Gtk/MainWindow.vala:615 #, fuzzy msgid "Can not reach" msgstr "Dosya okunamadı" -#: src/Common/Package.vala:60 +#: src/Common/Package.vala:57 #, fuzzy, c-format msgid "File not found: %s" msgstr "Dosya bulunamadı" -#: src/Console/AppConsole.vala:68 src/Gtk/AppGtk.vala:141 +#: src/Console/AppConsole.vala:62 src/Gtk/AppGtk.vala:143 msgid "Syntax" msgstr "Sözdizimi" -#: src/Console/AppConsole.vala:70 +#: src/Console/AppConsole.vala:64 msgid "Commands" msgstr "Komutlar" -#: src/Console/AppConsole.vala:72 +#: src/Console/AppConsole.vala:66 msgid "Check for kernel updates" msgstr "Çekirdek güncellemelerini kontrol et" -#: src/Console/AppConsole.vala:73 +#: src/Console/AppConsole.vala:67 msgid "Check for kernel updates and notify current user" msgstr "Çekirdek güncellemelerini kontrol et ve mevcut kullanıcıyı uyar" -#: src/Console/AppConsole.vala:74 +#: src/Console/AppConsole.vala:68 msgid "List all available mainline kernels" msgstr "Tüm mainline çekirdeklerini listele" -#: src/Console/AppConsole.vala:75 +#: src/Console/AppConsole.vala:69 msgid "List installed kernels" msgstr "Kurulu çekirdekleri listele" -#: src/Console/AppConsole.vala:76 +#: src/Console/AppConsole.vala:70 msgid "Install latest mainline kernel" msgstr "En son mainline çekirdeğini kur" -#: src/Console/AppConsole.vala:77 +#: src/Console/AppConsole.vala:71 msgid "Install latest point update for current series" msgstr "Mevcut çekirdek serisi için en son nokta güncellemesini kur" -#: src/Console/AppConsole.vala:78 +#: src/Console/AppConsole.vala:72 msgid "Install specified mainline kernel" msgstr "Belirtilen mainline çekirdeğini kur" -#: src/Console/AppConsole.vala:79 +#: src/Console/AppConsole.vala:73 msgid "Uninstall specified kernel" msgstr "Belirtilen çekirdeğini kaldır" -#: src/Console/AppConsole.vala:80 +#: src/Console/AppConsole.vala:74 msgid "Uninstall kernels older than the running kernel" msgstr "Çalışan çekirdekten daha eski çekirdekleri kaldır" -#: src/Console/AppConsole.vala:81 +#: src/Console/AppConsole.vala:75 msgid "Download specified kernels" msgstr "Belirtilen çekirdekleri indir" -#: src/Console/AppConsole.vala:82 +#: src/Console/AppConsole.vala:76 msgid "Delete cached info about available kernels" msgstr "" -#: src/Console/AppConsole.vala:84 src/Gtk/AppGtk.vala:143 +#: src/Console/AppConsole.vala:78 src/Gtk/AppGtk.vala:145 msgid "Options" msgstr "Seçenekler" -#: src/Console/AppConsole.vala:86 +#: src/Console/AppConsole.vala:80 msgid "Include unstable and RC releases" msgstr "Kararsız ve RC sürümleri dahil et" -#: src/Console/AppConsole.vala:87 +#: src/Console/AppConsole.vala:81 #, fuzzy msgid "Exclude unstable and RC releases" msgstr "Kararsız ve RC sürümleri dahil et" -#: src/Console/AppConsole.vala:88 +#: src/Console/AppConsole.vala:82 msgid "Enable verbose debugging output" msgstr "Ayrıntılı hata ayıklama çıktısını etkinleştir" -#: src/Console/AppConsole.vala:89 +#: src/Console/AppConsole.vala:83 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "Tüm istemler için Evet'i kabul edin (etkileşimsiz kip)" -#: src/Console/AppConsole.vala:92 +#: src/Console/AppConsole.vala:86 msgid "A version string taken from the output of --list" msgstr "--list çıktısından alınan sürüm dizgesi" -#: src/Console/AppConsole.vala:93 +#: src/Console/AppConsole.vala:87 msgid "" "One or more version strings (comma-separated) taken from the output of --list" msgstr "" "--list çıktısından alınan bir veya daha fazla sürüm dizgesi (virgülle " "ayrılmış)" -#: src/Console/AppConsole.vala:173 src/Gtk/AppGtk.vala:127 +#: src/Console/AppConsole.vala:164 src/Gtk/AppGtk.vala:129 msgid "Unknown option" msgstr "Bilinmeyen seçenek" -#: src/Console/AppConsole.vala:175 src/Console/AppConsole.vala:255 -#: src/Console/AppConsole.vala:284 +#: src/Console/AppConsole.vala:165 src/Console/AppConsole.vala:249 +#: src/Console/AppConsole.vala:277 msgid "Run" msgstr "Çalıştır" -#: src/Console/AppConsole.vala:175 +#: src/Console/AppConsole.vala:165 msgid "to list all options" msgstr "tüm seçenekleri listele" -#: src/Console/AppConsole.vala:227 src/Console/AppConsole.vala:263 +#: src/Console/AppConsole.vala:217 src/Console/AppConsole.vala:257 msgid "No kernels specified" msgstr "Çekirdek belirtilmedi" -#: src/Console/AppConsole.vala:233 +#: src/Console/AppConsole.vala:223 msgid "Multiple kernels selected for installation. Select only one." msgstr "Kurulum için birden fazla çekirdek seçildi. Sadece bir tane seçiniz." -#: src/Console/AppConsole.vala:252 +#: src/Console/AppConsole.vala:246 msgid "Could not find requested version" msgstr "İstenen sürüm bulunamadı" -#: src/Console/AppConsole.vala:255 +#: src/Console/AppConsole.vala:249 msgid "and use a version string listed in first column" msgstr "ve ilk sütunda listelenen bir sürüm dizgesini kullanın" -#: src/Console/AppConsole.vala:283 +#: src/Console/AppConsole.vala:276 msgid "Command not specified" msgstr "Komut belirtilmedi" -#: src/Console/AppConsole.vala:284 +#: src/Console/AppConsole.vala:277 msgid "to list all commands" msgstr "tüm komutları listele" -#: src/Console/AppConsole.vala:338 +#: src/Console/AppConsole.vala:331 src/Gtk/SettingsDialog.vala:166 msgid "Show" msgstr "Göster" -#: src/Console/AppConsole.vala:343 src/Console/AppConsole.vala:355 +#: src/Console/AppConsole.vala:336 src/Console/AppConsole.vala:348 #, c-format msgid "Kernel %s Available" msgstr "Çekirdek %s Kullanılabilir" -#: src/Console/AppConsole.vala:345 src/Console/AppConsole.vala:357 -#: src/Gtk/MainWindow.vala:261 +#: src/Console/AppConsole.vala:338 src/Console/AppConsole.vala:350 +#: src/Gtk/MainWindow.vala:270 msgid "Install" msgstr "Kur" -#: src/Gtk/AppGtk.vala:141 +#: src/Gtk/AppGtk.vala:143 #, fuzzy msgid "options" msgstr "Seçenekler" -#: src/Gtk/AppGtk.vala:145 +#: src/Gtk/AppGtk.vala:147 msgid "Print debug information" msgstr "Hata ayıklama bilgisini yazdır" -#: src/Gtk/AppGtk.vala:146 +#: src/Gtk/AppGtk.vala:148 msgid "Show all options" msgstr "Tüm seçenekleri göster" -#: src/Gtk/MainWindow.vala:108 +#: src/Gtk/MainWindow.vala:115 msgid "Kernel" msgstr "Çekirdek" -#: src/Gtk/MainWindow.vala:138 +#: src/Gtk/MainWindow.vala:145 msgid "Status" msgstr "Durum" -#: src/Gtk/MainWindow.vala:271 +#: src/Gtk/MainWindow.vala:280 msgid "Uninstall" msgstr "Kaldır" -#: src/Gtk/MainWindow.vala:281 +#: src/Gtk/MainWindow.vala:290 msgid "Changes" msgstr "Değişiklikler" -#: src/Gtk/MainWindow.vala:302 +#: src/Gtk/MainWindow.vala:312 msgid "Uninstall Old" msgstr "Eskileri Kaldır" -#: src/Gtk/MainWindow.vala:303 +#: src/Gtk/MainWindow.vala:313 msgid "Uninstall kernels older than running kernel" msgstr "Çalışan çekirdekten daha eski çekirdekleri kaldır" -#: src/Gtk/MainWindow.vala:308 +#: src/Gtk/MainWindow.vala:318 msgid "Reload" msgstr "" -#: src/Gtk/MainWindow.vala:313 src/Gtk/SettingsDialog.vala:50 +#: src/Gtk/MainWindow.vala:323 src/Gtk/SettingsDialog.vala:50 msgid "Settings" msgstr "Ayarlar" -#: src/Gtk/MainWindow.vala:318 +#: src/Gtk/MainWindow.vala:328 msgid "About" msgstr "Hakkında" -#: src/Gtk/MainWindow.vala:323 +#: src/Gtk/MainWindow.vala:333 msgid "Exit" msgstr "" -#: src/Gtk/MainWindow.vala:391 +#: src/Gtk/MainWindow.vala:401 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Ubuntu tabanlı dağıtımlar için çekirdek güncelleme aracı" -#: src/Gtk/MainWindow.vala:392 +#: src/Gtk/MainWindow.vala:402 msgid "Forked" msgstr "Çatallandı" -#: src/Gtk/MainWindow.vala:392 +#: src/Gtk/MainWindow.vala:402 msgid "Original" msgstr "Özgün" -#: src/Gtk/MainWindow.vala:430 -msgid "Updating cached indexes" +#: src/Gtk/MainWindow.vala:440 +msgid "Updating kernels" msgstr "" -#: src/Gtk/MainWindow.vala:512 +#: src/Gtk/MainWindow.vala:513 msgid "available" msgstr "mevcut" -#: src/Gtk/MainWindow.vala:546 src/Gtk/MainWindow.vala:580 -#: src/Gtk/MainWindow.vala:608 +#: src/Gtk/MainWindow.vala:546 src/Gtk/MainWindow.vala:579 +#: src/Gtk/MainWindow.vala:606 msgid "DONE" msgstr "" -#: src/Gtk/ProgressWindow.vala:126 src/Gtk/TerminalWindow.vala:148 +#: src/Gtk/ProgressWindow.vala:127 src/Gtk/TerminalWindow.vala:144 msgid "Cancel" msgstr "İptal Et" @@ -372,63 +372,64 @@ msgstr "Bildirim" msgid "Notify if a major release is available" msgstr "Ana sürüm mevcutsa bildir" -#: src/Gtk/SettingsDialog.vala:78 +#: src/Gtk/SettingsDialog.vala:76 msgid "Notify if a point release is available" msgstr "Nokta sürüm mevcutsa bildir" -#: src/Gtk/SettingsDialog.vala:89 +#: src/Gtk/SettingsDialog.vala:87 msgid "(Allowing intervals in seconds for --debug)" msgstr "(--debug için saniye cinsinden aralıklara izin verir)" -#: src/Gtk/SettingsDialog.vala:112 +#: src/Gtk/SettingsDialog.vala:110 msgid "Check every" msgstr "Kontrol aralığı" -#: src/Gtk/SettingsDialog.vala:142 +#: src/Gtk/SettingsDialog.vala:135 msgid "Hour(s)" msgstr "Saat" -#: src/Gtk/SettingsDialog.vala:144 +#: src/Gtk/SettingsDialog.vala:137 msgid "Day(s)" msgstr "Gün" -#: src/Gtk/SettingsDialog.vala:146 +#: src/Gtk/SettingsDialog.vala:139 msgid "Week(s)" msgstr "Hafta" -#: src/Gtk/SettingsDialog.vala:149 +#: src/Gtk/SettingsDialog.vala:142 msgid "Second(s)" msgstr "Saniye" -#: src/Gtk/SettingsDialog.vala:155 +#: src/Gtk/SettingsDialog.vala:148 msgid "Display" msgstr "Gösterim" -#: src/Gtk/SettingsDialog.vala:163 +#: src/Gtk/SettingsDialog.vala:156 msgid "Hide unstable and RC releases" msgstr "Kararsız ve RC sürümleri gizle" -#: src/Gtk/SettingsDialog.vala:177 -msgid "Show N previous major versions " +#: src/Gtk/SettingsDialog.vala:178 +#, fuzzy +msgid "previous major versions " msgstr "Önceki ana sürümleri gösterme sayısı " -#: src/Gtk/SettingsDialog.vala:192 +#: src/Gtk/SettingsDialog.vala:182 msgid "Other" msgstr "Diğer" -#: src/Gtk/SettingsDialog.vala:203 +#: src/Gtk/SettingsDialog.vala:193 msgid "Internet connection timeout in " msgstr "İnternet bağlantısı zaman aşımı " -#: src/Gtk/SettingsDialog.vala:218 +#: src/Gtk/SettingsDialog.vala:205 msgid "seconds" msgstr "saniye" -#: src/Gtk/SettingsDialog.vala:225 +#: src/Gtk/SettingsDialog.vala:212 msgid "Max concurrent downloads" msgstr "Azami eşzamanlı indirme" -#: src/Gtk/TerminalWindow.vala:158 src/Utility/Gtk/AboutWindow.vala:287 +#: src/Gtk/TerminalWindow.vala:154 src/Utility/Gtk/AboutWindow.vala:287 msgid "Close" msgstr "Kapat" @@ -468,10 +469,10 @@ msgstr "Üçüncü Taraf Eklemeler" msgid "Missing Icon" msgstr "Eksik Simge" -#: src/Utility/TeeJee.Logging.vala:59 +#: src/Utility/TeeJee.Logging.vala:52 msgid "E" msgstr "H" -#: src/Utility/TeeJee.Logging.vala:84 +#: src/Utility/TeeJee.Logging.vala:68 msgid "D" msgstr "S" diff --git a/po/uk.po b/po/uk.po index 0d4c32c1..7070ef88 100644 --- a/po/uk.po +++ b/po/uk.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-09 05:17-0500\n" +"POT-Creation-Date: 2023-03-10 09:00-0500\n" "PO-Revision-Date: 2019-07-25 11:00+0300\n" "Last-Translator: Serhii Golovko \n" "Language-Team: Ukranian\n" @@ -21,339 +21,341 @@ msgstr "Дистрибутив" msgid "Architecture" msgstr "Системна архитектура" -#: src/Common/LinuxKernel.vala:283 -msgid "Fetching individual kernel indexes..." +#: src/Common/LinuxKernel.vala:282 +#, fuzzy +msgid "Fetching individual kernel indexes" msgstr "Отримання окремих індексів ядра..." #: src/Common/LinuxKernel.vala:327 -msgid "Fetching main index from" -msgstr "Отримання основного індексу з" - -#: src/Common/LinuxKernel.vala:539 -msgid "Could not find running kernel in list!" -msgstr "Не вдалося знайти запущене ядро у списку!" - -#: src/Common/LinuxKernel.vala:545 -msgid "Could not find any kernels to uninstall" -msgstr "Не вдалося знайти жодне ядро для вилучення" - -#: src/Common/LinuxKernel.vala:554 -msgid "The following kernels will be uninstalled:" -msgstr "Наступні ядра будуть видалені:" - -#: src/Common/LinuxKernel.vala:558 -msgid "Continue ?" -msgstr "Продовжувати ?" - -#: src/Common/LinuxKernel.vala:581 src/Console/AppConsole.vala:298 -msgid "Latest update" -msgstr "Останнє оновлення" - -#: src/Common/LinuxKernel.vala:592 src/Console/AppConsole.vala:305 -msgid "Latest point update" -msgstr "Остання точка оновлення" - -#: src/Common/LinuxKernel.vala:600 src/Console/AppConsole.vala:310 -#: src/Console/AppConsole.vala:365 -msgid "No updates found" -msgstr "Оновлень не знайдено" - -#: src/Common/LinuxKernel.vala:610 -#, c-format -msgid "Install Kernel Version %s ? (y/n): " -msgstr "Встановити Ядро Версії %s ? (так/ні): " +msgid "Updating from" +msgstr "" -#: src/Common/LinuxKernel.vala:832 +#: src/Common/LinuxKernel.vala:736 msgid "Packages Available" msgstr "Доступні пакети" -#: src/Common/LinuxKernel.vala:837 +#: src/Common/LinuxKernel.vala:741 msgid "Packages Installed" msgstr "Встановлені пакети" -#: src/Common/LinuxKernel.vala:850 src/Utility/TeeJee.FileSystem.vala:136 +#: src/Common/LinuxKernel.vala:754 src/Utility/TeeJee.FileSystem.vala:136 msgid "File not found" msgstr "Файл не знайдено" -#: src/Common/LinuxKernel.vala:915 +#: src/Common/LinuxKernel.vala:819 msgid "Available Kernels" msgstr "Доступні ядра" -#: src/Common/LinuxKernel.vala:922 src/Gtk/MainWindow.vala:151 +#: src/Common/LinuxKernel.vala:826 src/Gtk/MainWindow.vala:158 msgid "Installed" msgstr "Встановлено" -#: src/Common/LinuxKernel.vala:922 src/Gtk/MainWindow.vala:151 -#: src/Gtk/MainWindow.vala:502 src/Gtk/MainWindow.vala:516 +#: src/Common/LinuxKernel.vala:826 src/Gtk/MainWindow.vala:158 +#: src/Gtk/MainWindow.vala:504 src/Gtk/MainWindow.vala:517 msgid "Running" msgstr "Використовується" -#: src/Common/LinuxKernel.vala:957 +#: src/Common/LinuxKernel.vala:861 msgid "Downloading" msgstr "Завантаження" -#: src/Common/LinuxKernel.vala:976 +#: src/Common/LinuxKernel.vala:880 msgid "OK" msgstr "Добре" -#: src/Common/LinuxKernel.vala:979 +#: src/Common/LinuxKernel.vala:883 msgid "ERROR" msgstr "ПОМИЛКА" -#: src/Common/LinuxKernel.vala:993 +#: src/Common/LinuxKernel.vala:897 msgid "This kernel is already installed." msgstr "Це ядро вже встановлено." -#: src/Common/LinuxKernel.vala:1024 +#: src/Common/LinuxKernel.vala:927 msgid "Uninstalling selected kernels" msgstr "Видаліть конкретні ядра" -#: src/Common/LinuxKernel.vala:1030 +#: src/Common/LinuxKernel.vala:933 msgid "requested" msgstr "запитуваний" -#: src/Common/LinuxKernel.vala:1033 +#: src/Common/LinuxKernel.vala:936 msgid "skipping the currently booted kernel" msgstr "пропускаючи поточне завантажене ядро" -#: src/Common/LinuxKernel.vala:1049 +#: src/Common/LinuxKernel.vala:952 msgid "found" msgstr "знайдено" -#: src/Common/LinuxKernel.vala:1052 +#: src/Common/LinuxKernel.vala:955 #, fuzzy msgid "No packages to un-install!" msgstr "Встановлені пакети" -#: src/Common/Main.vala:259 +#: src/Common/LinuxKernel.vala:994 +#, fuzzy +msgid "Could not find running kernel in list" +msgstr "Не вдалося знайти запущене ядро у списку!" + +#: src/Common/LinuxKernel.vala:1000 +msgid "Could not find any kernels to uninstall" +msgstr "Не вдалося знайти жодне ядро для вилучення" + +#: src/Common/LinuxKernel.vala:1009 +msgid "The following kernels will be uninstalled:" +msgstr "Наступні ядра будуть видалені:" + +#: src/Common/LinuxKernel.vala:1013 +msgid "Continue ?" +msgstr "Продовжувати ?" + +#: src/Common/LinuxKernel.vala:1036 src/Console/AppConsole.vala:291 +msgid "Latest update" +msgstr "Останнє оновлення" + +#: src/Common/LinuxKernel.vala:1047 src/Console/AppConsole.vala:298 +msgid "Latest point update" +msgstr "Остання точка оновлення" + +#: src/Common/LinuxKernel.vala:1055 src/Console/AppConsole.vala:303 +#: src/Console/AppConsole.vala:358 +msgid "No updates found" +msgstr "Оновлень не знайдено" + +#: src/Common/LinuxKernel.vala:1064 +#, c-format +msgid "Install Kernel Version %s ? (y/n): " +msgstr "Встановити Ядро Версії %s ? (так/ні): " + +#: src/Common/Main.vala:253 msgid "Called from" msgstr "Викликано з" -#: src/Common/Main.vala:293 +#: src/Common/Main.vala:287 msgid "Notifications are disabled" msgstr "Повідомлення вимкнено" -#: src/Common/Main.vala:332 src/Gtk/MainWindow.vala:617 +#: src/Common/Main.vala:325 src/Gtk/MainWindow.vala:615 msgid "Can not reach" msgstr "Не може дістатися" -#: src/Common/Package.vala:60 +#: src/Common/Package.vala:57 #, fuzzy, c-format msgid "File not found: %s" msgstr "Файл не знайдено" -#: src/Console/AppConsole.vala:68 src/Gtk/AppGtk.vala:141 +#: src/Console/AppConsole.vala:62 src/Gtk/AppGtk.vala:143 msgid "Syntax" msgstr "Синтаксис" -#: src/Console/AppConsole.vala:70 +#: src/Console/AppConsole.vala:64 msgid "Commands" msgstr "Команди" -#: src/Console/AppConsole.vala:72 +#: src/Console/AppConsole.vala:66 msgid "Check for kernel updates" msgstr "Перевірити оновлення ядра" -#: src/Console/AppConsole.vala:73 +#: src/Console/AppConsole.vala:67 msgid "Check for kernel updates and notify current user" msgstr "Перевірте наявність оновлень ядра та повідомте поточного користувача" -#: src/Console/AppConsole.vala:74 +#: src/Console/AppConsole.vala:68 msgid "List all available mainline kernels" msgstr "Список усіх доступних основних ядер" -#: src/Console/AppConsole.vala:75 +#: src/Console/AppConsole.vala:69 msgid "List installed kernels" msgstr "Список встановлених ядер" -#: src/Console/AppConsole.vala:76 +#: src/Console/AppConsole.vala:70 msgid "Install latest mainline kernel" msgstr "Встановіть останнє основне ядро" -#: src/Console/AppConsole.vala:77 +#: src/Console/AppConsole.vala:71 msgid "Install latest point update for current series" msgstr "Встановіть останню точку оновлення для поточної серії" -#: src/Console/AppConsole.vala:78 +#: src/Console/AppConsole.vala:72 msgid "Install specified mainline kernel" msgstr "Встановіть конкретне основне ядро" -#: src/Console/AppConsole.vala:79 +#: src/Console/AppConsole.vala:73 msgid "Uninstall specified kernel" msgstr "Видаліть конкретні ядра" -#: src/Console/AppConsole.vala:80 +#: src/Console/AppConsole.vala:74 msgid "Uninstall kernels older than the running kernel" msgstr "Видаліть ядра, старші за запущене ядро" -#: src/Console/AppConsole.vala:81 +#: src/Console/AppConsole.vala:75 msgid "Download specified kernels" msgstr "Завантажте конкретні ядра" -#: src/Console/AppConsole.vala:82 +#: src/Console/AppConsole.vala:76 msgid "Delete cached info about available kernels" msgstr "" -#: src/Console/AppConsole.vala:84 src/Gtk/AppGtk.vala:143 +#: src/Console/AppConsole.vala:78 src/Gtk/AppGtk.vala:145 msgid "Options" msgstr "Параметри" -#: src/Console/AppConsole.vala:86 +#: src/Console/AppConsole.vala:80 msgid "Include unstable and RC releases" msgstr "Включати нестабільні і RC" -#: src/Console/AppConsole.vala:87 +#: src/Console/AppConsole.vala:81 #, fuzzy msgid "Exclude unstable and RC releases" msgstr "Включати нестабільні і RC" -#: src/Console/AppConsole.vala:88 +#: src/Console/AppConsole.vala:82 msgid "Enable verbose debugging output" msgstr "Увімкнути вивід налагодження" -#: src/Console/AppConsole.vala:89 +#: src/Console/AppConsole.vala:83 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "Так для всіх підказок (неінтерактивний режим)" -#: src/Console/AppConsole.vala:92 +#: src/Console/AppConsole.vala:86 msgid "A version string taken from the output of --list" msgstr "Рядок версій, взятий з виводу --list" -#: src/Console/AppConsole.vala:93 +#: src/Console/AppConsole.vala:87 msgid "" "One or more version strings (comma-separated) taken from the output of --list" msgstr "Одна або кілька рядків версії (розділені комами) з виводу --list" -#: src/Console/AppConsole.vala:173 src/Gtk/AppGtk.vala:127 +#: src/Console/AppConsole.vala:164 src/Gtk/AppGtk.vala:129 msgid "Unknown option" msgstr "Невідомий параметр" -#: src/Console/AppConsole.vala:175 src/Console/AppConsole.vala:255 -#: src/Console/AppConsole.vala:284 +#: src/Console/AppConsole.vala:165 src/Console/AppConsole.vala:249 +#: src/Console/AppConsole.vala:277 msgid "Run" msgstr "Запуск" -#: src/Console/AppConsole.vala:175 +#: src/Console/AppConsole.vala:165 msgid "to list all options" msgstr "Показати усі параметри" -#: src/Console/AppConsole.vala:227 src/Console/AppConsole.vala:263 +#: src/Console/AppConsole.vala:217 src/Console/AppConsole.vala:257 msgid "No kernels specified" msgstr "Ядра не вказані" -#: src/Console/AppConsole.vala:233 +#: src/Console/AppConsole.vala:223 msgid "Multiple kernels selected for installation. Select only one." msgstr "Для встановлення вибрано кілька ядер. Виберіть лише одну." -#: src/Console/AppConsole.vala:252 +#: src/Console/AppConsole.vala:246 msgid "Could not find requested version" msgstr "Не вдалося знайти запитувану версію" -#: src/Console/AppConsole.vala:255 +#: src/Console/AppConsole.vala:249 msgid "and use a version string listed in first column" msgstr "і використовувати рядок версій, вказаний у першому стовпці" -#: src/Console/AppConsole.vala:283 +#: src/Console/AppConsole.vala:276 msgid "Command not specified" msgstr "Команда не вказана" -#: src/Console/AppConsole.vala:284 +#: src/Console/AppConsole.vala:277 msgid "to list all commands" msgstr "щоб відобразити всі команди" -#: src/Console/AppConsole.vala:338 +#: src/Console/AppConsole.vala:331 src/Gtk/SettingsDialog.vala:166 msgid "Show" msgstr "Показати" -#: src/Console/AppConsole.vala:343 src/Console/AppConsole.vala:355 +#: src/Console/AppConsole.vala:336 src/Console/AppConsole.vala:348 #, c-format msgid "Kernel %s Available" msgstr "Ядро %s Доступне" -#: src/Console/AppConsole.vala:345 src/Console/AppConsole.vala:357 -#: src/Gtk/MainWindow.vala:261 +#: src/Console/AppConsole.vala:338 src/Console/AppConsole.vala:350 +#: src/Gtk/MainWindow.vala:270 msgid "Install" msgstr "Встановити" -#: src/Gtk/AppGtk.vala:141 +#: src/Gtk/AppGtk.vala:143 #, fuzzy msgid "options" msgstr "Параметри" -#: src/Gtk/AppGtk.vala:145 +#: src/Gtk/AppGtk.vala:147 msgid "Print debug information" msgstr "Роздрукувати зневадження" -#: src/Gtk/AppGtk.vala:146 +#: src/Gtk/AppGtk.vala:148 msgid "Show all options" msgstr "Показати усі параметри" -#: src/Gtk/MainWindow.vala:108 +#: src/Gtk/MainWindow.vala:115 msgid "Kernel" msgstr "Ядро" -#: src/Gtk/MainWindow.vala:138 +#: src/Gtk/MainWindow.vala:145 msgid "Status" msgstr "Стан" -#: src/Gtk/MainWindow.vala:271 +#: src/Gtk/MainWindow.vala:280 msgid "Uninstall" msgstr "Видалити" -#: src/Gtk/MainWindow.vala:281 +#: src/Gtk/MainWindow.vala:290 msgid "Changes" msgstr "Зміни" -#: src/Gtk/MainWindow.vala:302 +#: src/Gtk/MainWindow.vala:312 msgid "Uninstall Old" msgstr "Видалити старе" -#: src/Gtk/MainWindow.vala:303 +#: src/Gtk/MainWindow.vala:313 msgid "Uninstall kernels older than running kernel" msgstr "Видалити ядра, старіші за запущене ядро" -#: src/Gtk/MainWindow.vala:308 +#: src/Gtk/MainWindow.vala:318 msgid "Reload" msgstr "Перезавантажити" -#: src/Gtk/MainWindow.vala:313 src/Gtk/SettingsDialog.vala:50 +#: src/Gtk/MainWindow.vala:323 src/Gtk/SettingsDialog.vala:50 msgid "Settings" msgstr "Налаштування" -#: src/Gtk/MainWindow.vala:318 +#: src/Gtk/MainWindow.vala:328 msgid "About" msgstr "Про программу" -#: src/Gtk/MainWindow.vala:323 +#: src/Gtk/MainWindow.vala:333 msgid "Exit" msgstr "Вихід" -#: src/Gtk/MainWindow.vala:391 +#: src/Gtk/MainWindow.vala:401 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Програма оновлення ядра для дистрибутивів на базі Ubuntu" -#: src/Gtk/MainWindow.vala:392 +#: src/Gtk/MainWindow.vala:402 msgid "Forked" msgstr "Двоєний" -#: src/Gtk/MainWindow.vala:392 +#: src/Gtk/MainWindow.vala:402 msgid "Original" msgstr "Оригінал" -#: src/Gtk/MainWindow.vala:430 -msgid "Updating cached indexes" -msgstr "Оновлення кешованих індексів" +#: src/Gtk/MainWindow.vala:440 +msgid "Updating kernels" +msgstr "" -#: src/Gtk/MainWindow.vala:512 +#: src/Gtk/MainWindow.vala:513 msgid "available" msgstr "доступний" -#: src/Gtk/MainWindow.vala:546 src/Gtk/MainWindow.vala:580 -#: src/Gtk/MainWindow.vala:608 +#: src/Gtk/MainWindow.vala:546 src/Gtk/MainWindow.vala:579 +#: src/Gtk/MainWindow.vala:606 msgid "DONE" msgstr "ГОТОВО" -#: src/Gtk/ProgressWindow.vala:126 src/Gtk/TerminalWindow.vala:148 +#: src/Gtk/ProgressWindow.vala:127 src/Gtk/TerminalWindow.vala:144 msgid "Cancel" msgstr "Відміна" @@ -365,63 +367,64 @@ msgstr "Повідомлення" msgid "Notify if a major release is available" msgstr "Повідомити, чи доступний великий випуск" -#: src/Gtk/SettingsDialog.vala:78 +#: src/Gtk/SettingsDialog.vala:76 msgid "Notify if a point release is available" msgstr "Повідомити, чи доступний невеликий випуск" -#: src/Gtk/SettingsDialog.vala:89 +#: src/Gtk/SettingsDialog.vala:87 msgid "(Allowing intervals in seconds for --debug)" msgstr "(Дозволити інтервали в секундах для --debug)" -#: src/Gtk/SettingsDialog.vala:112 +#: src/Gtk/SettingsDialog.vala:110 msgid "Check every" msgstr "Перевіряти кожні" -#: src/Gtk/SettingsDialog.vala:142 +#: src/Gtk/SettingsDialog.vala:135 msgid "Hour(s)" msgstr "Година(Годин)" -#: src/Gtk/SettingsDialog.vala:144 +#: src/Gtk/SettingsDialog.vala:137 msgid "Day(s)" msgstr "День(Днів)" -#: src/Gtk/SettingsDialog.vala:146 +#: src/Gtk/SettingsDialog.vala:139 msgid "Week(s)" msgstr "Тиждень(ні)" -#: src/Gtk/SettingsDialog.vala:149 +#: src/Gtk/SettingsDialog.vala:142 msgid "Second(s)" msgstr "Секунда(и)" -#: src/Gtk/SettingsDialog.vala:155 +#: src/Gtk/SettingsDialog.vala:148 msgid "Display" msgstr "Показ" -#: src/Gtk/SettingsDialog.vala:163 +#: src/Gtk/SettingsDialog.vala:156 msgid "Hide unstable and RC releases" msgstr "Приховати нестабільні і RC" -#: src/Gtk/SettingsDialog.vala:177 -msgid "Show N previous major versions " +#: src/Gtk/SettingsDialog.vala:178 +#, fuzzy +msgid "previous major versions " msgstr "Показати N попередніх основних версій " -#: src/Gtk/SettingsDialog.vala:192 +#: src/Gtk/SettingsDialog.vala:182 msgid "Other" msgstr "Інший" -#: src/Gtk/SettingsDialog.vala:203 +#: src/Gtk/SettingsDialog.vala:193 msgid "Internet connection timeout in " msgstr "Час очікування підключення до Інтернету в " -#: src/Gtk/SettingsDialog.vala:218 +#: src/Gtk/SettingsDialog.vala:205 msgid "seconds" msgstr "секунди" -#: src/Gtk/SettingsDialog.vala:225 +#: src/Gtk/SettingsDialog.vala:212 msgid "Max concurrent downloads" msgstr "Максимальна кількість завантажень" -#: src/Gtk/TerminalWindow.vala:158 src/Utility/Gtk/AboutWindow.vala:287 +#: src/Gtk/TerminalWindow.vala:154 src/Utility/Gtk/AboutWindow.vala:287 msgid "Close" msgstr "Закрити" @@ -461,10 +464,10 @@ msgstr "Включення третіх осіб" msgid "Missing Icon" msgstr "Нема значка" -#: src/Utility/TeeJee.Logging.vala:59 +#: src/Utility/TeeJee.Logging.vala:52 msgid "E" msgstr "E" -#: src/Utility/TeeJee.Logging.vala:84 +#: src/Utility/TeeJee.Logging.vala:68 msgid "D" msgstr "D" diff --git a/src/Common/DownloadManager.vala b/src/Common/DownloadManager.vala index db621cdd..203e2061 100644 --- a/src/Common/DownloadManager.vala +++ b/src/Common/DownloadManager.vala @@ -118,25 +118,17 @@ public class DownloadTask : AsyncTask { } public override void parse_stdout_line(string out_line) { - if (is_terminated) { - return; - } - + if (is_terminated) return; update_progress_parse_console_output(out_line); } public override void parse_stderr_line(string err_line) { - if (is_terminated) { - return; - } - + if (is_terminated) return; update_progress_parse_console_output(err_line); } public bool update_progress_parse_console_output (string line) { - if ((line == null) || (line.length == 0)) { - return true; - } + if ((line == null) || (line.length == 0)) return true; //log_debug(line); @@ -181,13 +173,10 @@ public class DownloadTask : AsyncTask { if (map.has_key(gid_key)) { var item = map[gid_key]; item.bytes_received = received; - if (item.bytes_total == 0) { - item.bytes_total = total; - } + if (item.bytes_total == 0) item.bytes_total = total; item.rate = rate; item.eta = eta; item.status = "RUNNING"; - status_line = item.status_line(); } @@ -206,8 +195,7 @@ public class DownloadTask : AsyncTask { public class DownloadItem : GLib.Object { - /* File is saved as 'file_name' not the source file name. - */ + // File is saved as 'file_name' not the source file name. public string file_name = ""; public string download_dir = ""; @@ -235,14 +223,12 @@ public class DownloadItem : GLib.Object } public DownloadItem(string _source_uri, string _download_dir, string _file_name) { - file_name = _file_name; download_dir = _download_dir; source_uri = _source_uri; } public string status_line() { - if (task.status_in_kb) { return "%s / %s, %s/s (%s)".printf( format_file_size(bytes_received, false, "", true, 1), diff --git a/src/Common/LinuxKernel.vala b/src/Common/LinuxKernel.vala index bdbcdb35..57591415 100644 --- a/src/Common/LinuxKernel.vala +++ b/src/Common/LinuxKernel.vala @@ -19,10 +19,10 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { public int version_rc = -1; public Gee.HashMap deb_list = new Gee.HashMap(); - public Gee.HashMap apt_pkg_list = new Gee.HashMap(); + public Gee.HashMap pkg_list = new Gee.HashMap(); public static Gee.HashMap pkg_list_installed; - + public bool is_installed = false; public bool is_running = false; public bool is_mainline = false; @@ -64,7 +64,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { public static int64 progress_total; public static int64 progress_count; public static bool cancelled; - public static int threshold_major; + public static int threshold_major = 0; // class initialize @@ -214,20 +214,19 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { var timer = timer_start(); long count = 0; + status_line = ""; + progress_total = 0; + progress_count = 0; // ===== download the main index.html listing all kernels ===== download_index(); load_index(); - // ===== download the per-kernel index.html and CHANGES ===== - - // init the progress display - status_line = ""; - progress_total = 0; - progress_count = 0; - + // find the oldest major version to include + Package.update_dpkg_list(); find_threshold_major_version(); - log_debug("threshold_major %d".printf(threshold_major)); + + // ===== download the per-kernel index.html and CHANGES ===== // list of kernels - 1 LinuxKernel object per kernel to update var kernels_to_update = new Gee.ArrayList(); @@ -245,12 +244,12 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { k.load_cached_page(); continue; } + if (!k.is_valid) continue; - if (!k.is_installed) { - if (k.version_maj < threshold_major) continue; - if (App.hide_unstable && k.is_unstable) continue; - } + if (k.version_maj < threshold_major) continue; + + if (App.hide_unstable && k.is_unstable) continue; //log_debug(k.version_main+" "+_("GET")); @@ -280,13 +279,14 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { // start downloading mgr.execute(); - print_progress_bar_start(_("Fetching individual kernel indexes...")); + print_progress_bar_start(_("Fetching individual kernel indexes")+"..."); // while downloading while (mgr.is_running()) { progress_count = mgr.prg_count; print_progress_bar((progress_count * 1.0) / progress_total); - sleep(300); + sleep(250); + if (notifier != null) notifier(timer, ref count); } // done downloading @@ -324,9 +324,9 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { mgr.status_in_kb = true; mgr.execute(); - var msg = _("Fetching main index from")+" "+PPA_URI; + var msg = _("Updating from")+":\n"+PPA_URI; log_msg(msg); - status_line = msg.strip(); + //status_line = msg.strip(); while (mgr.is_running()) sleep(500); @@ -335,8 +335,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { App.index_is_fresh=true; log_msg("OK"); return true; - } - else { + } else { log_error("ERR"); return false; } @@ -360,20 +359,16 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { foreach (string line in txt.split("\n")) { if (!rex.match(line, 0, out match)) continue; var k = new LinuxKernel(match.fetch(1), true); + if (!k.is_valid) continue; + if (k.is_unstable && App.hide_unstable) continue; kernel_list.add(k); + log_debug("kernel_list.add("+k.kname+")"); } - kernel_list.sort((a,b) => { - return a.compare_to(b) * -1; - }); - - foreach (var k in kernel_list) { - if (k.is_valid) { - kernel_latest_available = k; - break; - } - } + kernel_list.sort((a,b) => { return a.compare_to(b) * -1; }); + kernel_latest_available = kernel_list[0]; + log_debug("latest_available: "+kernel_latest_available.version_main); } catch (Error e) { log_error (e.message); @@ -384,35 +379,50 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { public static void check_installed() { log_debug("check_installed()"); - pkg_list_installed = Package.query_installed_packages(); - var pkg_versions = new Gee.ArrayList(); - foreach (var pkg in pkg_list_installed.values) { - pkg_versions.add(pkg.version); - if (pkg.pname.contains("linux-image-")) log_msg("Found installed : "+pkg.version); - - string pkern_name = pkg.version; - var pkern = new LinuxKernel(pkern_name, false); - pkern.is_installed = true; - pkern.set_apt_pkg_list(); - - bool found = false; - foreach (var k in kernel_list) { - if (k.version_main == pkern.version_main) { - found = true; - k.apt_pkg_list = pkern.apt_pkg_list; - break; - } - } + foreach (var pkg in Package.dpkg_list) { + if (!pkg.pname.has_prefix("linux-image-")) continue; + log_msg("Found installed : "+pkg.version); + pkg_versions.add(pkg.version); + + // temp kernel object for current pkg + string pkern_name = pkg.version; + var pkern = new LinuxKernel(pkern_name, false); + pkern.is_installed = true; + pkern.set_pkg_list(); - if (!found) kernel_list.add(pkern); + // search the mainline list for matching package name + // fill k.pkg_list list of assosciated pkgs + bool found = false; + foreach (var k in kernel_list) { + if (!k.is_valid) continue; + if (k.version_maj { return a.compare_to(b) * -1; }); - //log_msg(string.nfill(70, '-')); - // find the highest & lowest installed versions ---------------------- kernel_latest_installed = new LinuxKernel.from_version("0"); kernel_oldest_installed = new LinuxKernel.from_version("0"); foreach(var k in kernel_list) { - //log_debug(k.version_main+" "+k.is_installed.to_string()); if (k.is_installed) { if (kernel_latest_installed.version_maj==0) kernel_latest_installed = k; kernel_oldest_installed = k; } } + +// log_debug("latest_available: "+kernel_latest_available.version_main); log_debug("latest_installed: "+kernel_latest_installed.version_main); log_debug("oldest_installed: "+kernel_oldest_installed.version_main); - - //log_debug(string.nfill(70, '-')); } // scan kernel_list for versions newer than latest installed @@ -513,129 +520,25 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { } } - public static void kunin_old(bool confirm) { - - check_installed(); - - var list = new Gee.ArrayList(); - - var kern_running = new LinuxKernel.from_version(RUNNING_KERNEL); - - bool found_running_kernel = false; - - foreach(var k in LinuxKernel.kernel_list) { - if (!k.is_valid) continue; - if (!k.is_installed) continue; - if (k.version_main == kern_running.version_main) { - found_running_kernel = true; - continue; - } - //if (k.compare_to(kern_running) > 0) continue; // FIXME, compare kernel_latest_installed - if (k.compare_to(kernel_latest_installed) > 0) continue; - list.add(k); - } - - if (!found_running_kernel) { - log_error(_("Could not find running kernel in list!")); - log_msg(string.nfill(70, '-')); - return; - } - - if (list.size == 0){ - log_msg(_("Could not find any kernels to uninstall")); - log_msg(string.nfill(70, '-')); - return; - } - - // confirm ------------------------------- - - if (confirm) { - - var message = "\n%s:\n".printf(_("The following kernels will be uninstalled:")); - - foreach (var kern in list) message += " ▰ %s\n".printf(kern.version_main); - - message += "\n%s (y/n): ".printf(_("Continue ?")); - - stdout.printf(message); - stdout.flush(); - - int ch = stdin.getc(); - - if (ch != 'y') return; - } - - // uninstall -------------------------------- - kunin_list(list); - } - - public static void kinst_latest(bool point_update, bool confirm) { - log_debug("kinst_latest()"); - - query(true); - - var kern_major = LinuxKernel.kernel_update_major; - - if ((kern_major != null) && !point_update) { - - var message = "%s: %s".printf(_("Latest update"), kern_major.version_main); - log_msg(message); - - kinst_update(kern_major, confirm); - return; - } - - var kern_minor = LinuxKernel.kernel_update_minor; - - if (kern_minor != null) { - - var message = "%s: %s".printf(_("Latest point update"), kern_minor.version_main); - log_msg(message); - - kinst_update(kern_minor, confirm); - return; - } - - if ((kern_major == null) && (kern_minor == null)) { - log_msg(_("No updates found")); - } - - log_msg(string.nfill(70, '-')); - } - - public static void kinst_update(LinuxKernel kern, bool confirm) { - - if (confirm){ - - var message = "\n" + _("Install Kernel Version %s ? (y/n): ").printf(kern.version_main); - stdout.printf(message); - stdout.flush(); - - int ch = stdin.getc(); - if (ch != 'y') return; - } - - kern.kinst(); - } - // helpers public static void find_threshold_major_version() { log_debug("find_threshold_major_version()"); - pkg_list_installed = Package.query_installed_packages(); + //Package.update_dpkg_list(); // start from the running kernel and work down kernel_oldest_installed = new LinuxKernel.from_version(RUNNING_KERNEL); - foreach (var pkg in pkg_list_installed.values) { + foreach (var pkg in Package.dpkg_list) { + if (!pkg.pname.has_prefix("linux-image-")) continue; var candidate = new LinuxKernel(pkg.version, false); if (candidate.version_maj < kernel_oldest_installed.version_maj) kernel_oldest_installed = candidate; } threshold_major = kernel_latest_available.version_maj - App.show_prev_majors; if (kernel_oldest_installed.version_maj < threshold_major) threshold_major = kernel_oldest_installed.version_maj; - + log_debug("threshold_major %d".printf(threshold_major)); } public void split_version_string(string _version_string, out string ver_main) { @@ -755,12 +658,13 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { if (!file_exists(f)) file_write(f, ""); } - public void set_apt_pkg_list() { - foreach(var pkg in pkg_list_installed.values) { + public void set_pkg_list() { + log_debug("set_pkg_list() kname:"+kname+" kver:"+kver+" version_main:"+version_main); + foreach(var pkg in Package.dpkg_list) { if (!pkg.pname.has_prefix("linux-")) continue; if (pkg.version == kver) { - apt_pkg_list[pkg.pname] = pkg.pname; - log_debug("Package: %s".printf(pkg.pname)); + pkg_list[pkg.pname] = pkg.pname; + log_debug("Package: "+pkg.pname); } } } @@ -832,7 +736,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { if (list.length > 0) txt += ""+_("Packages Available")+"\n"+list; list = ""; - foreach (string deb in apt_pkg_list.keys) list += "\n"+deb; + foreach (string deb in pkg_list.keys) list += "\n"+deb; if (list.length > 0) txt += "\n\n"+_("Packages Installed")+"\n"+list; @@ -1001,10 +905,9 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { if (ok) { - var flist = ""; - // full paths instead of env -C // https://github.com/bkw777/mainline/issues/128 + var flist = ""; foreach (string file_name in deb_list.keys) flist += " '"+cache_subdir+"/"+file_name+"'"; string cmd = "pkexec env DISPLAY=${DISPLAY} XAUTHORITY=${XAUTHORITY} dpkg --install "+flist; status = Posix.system(cmd); @@ -1026,16 +929,16 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { string cmd = "pkexec env DISPLAY=${DISPLAY} XAUTHORITY=${XAUTHORITY} dpkg --purge"; string found = ""; - foreach (var kern in selected_kernels) { - log_debug(_("requested")+" "+kern.version_main); + foreach (var k in selected_kernels) { + log_debug(_("requested")+" "+k.version_main); - if (kern.is_running) { + if (k.is_running) { log_error(_("skipping the currently booted kernel")); continue; } found = ""; - foreach (var pkg_name in kern.apt_pkg_list.values) { + foreach (var pkg_name in k.pkg_list.values) { //log_debug(pkg_name); if ( !pkg_name.has_prefix("linux-tools") && @@ -1062,4 +965,111 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { return ok; } + public static void kunin_old(bool confirm) { + + download_index(); + load_index(); + Package.update_dpkg_list(); + find_threshold_major_version(); + check_installed(); + + var list = new Gee.ArrayList(); + + var kern_running = new LinuxKernel.from_version(RUNNING_KERNEL); + + bool found_running_kernel = false; + + foreach(var k in LinuxKernel.kernel_list) { + if (!k.is_valid) continue; + if (!k.is_installed) continue; + if (k.version_main == kern_running.version_main) { + found_running_kernel = true; + continue; + } + if (k.compare_to(kernel_latest_installed) > 0) continue; + list.add(k); + } + + if (!found_running_kernel) { + log_error(_("Could not find running kernel in list")); + //log_msg(string.nfill(70, '-')); + return; + } + + if (list.size == 0){ + log_msg(_("Could not find any kernels to uninstall")); + //log_msg(string.nfill(70, '-')); + return; + } + + // confirm ------------------------------- + + if (confirm) { + + var message = "\n%s:\n".printf(_("The following kernels will be uninstalled:")); + + foreach (var kern in list) message += " ▰ %s\n".printf(kern.version_main); + + message += "\n%s (y/n): ".printf(_("Continue ?")); + + stdout.printf(message); + stdout.flush(); + + int ch = stdin.getc(); + + if (ch != 'y') return; + } + + // uninstall -------------------------------- + kunin_list(list); + } + + public static void kinst_latest(bool point_update, bool confirm) { + log_debug("kinst_latest()"); + + query(true); + + var kern_major = LinuxKernel.kernel_update_major; + + if ((kern_major != null) && !point_update) { + + var message = "%s: %s".printf(_("Latest update"), kern_major.version_main); + log_msg(message); + + kinst_update(kern_major, confirm); + return; + } + + var kern_minor = LinuxKernel.kernel_update_minor; + + if (kern_minor != null) { + + var message = "%s: %s".printf(_("Latest point update"), kern_minor.version_main); + log_msg(message); + + kinst_update(kern_minor, confirm); + return; + } + + if ((kern_major == null) && (kern_minor == null)) { + log_msg(_("No updates found")); + } + + } + + public static void kinst_update(LinuxKernel kern, bool confirm) { + + if (confirm){ + + var message = "\n" + _("Install Kernel Version %s ? (y/n): ").printf(kern.version_main); + stdout.printf(message); + stdout.flush(); + + int ch = stdin.getc(); + if (ch != 'y') return; + } + + kern.kinst(); + } + } diff --git a/src/Common/Main.vala b/src/Common/Main.vala index 232a95ac..4a3579a0 100644 --- a/src/Common/Main.vala +++ b/src/Common/Main.vala @@ -46,7 +46,7 @@ private const string APP_LIB_DIR = INSTALL_PREFIX + "/lib/" + BRANDING_SHORTNAME extern void exit(int exit_code); -public class Main : GLib.Object{ +public class Main : GLib.Object { // constants ---------- @@ -99,7 +99,7 @@ public class Main : GLib.Object{ // constructors ------------ - public Main(string[] arg0, bool _gui_mode){ + public Main(string[] arg0, bool _gui_mode) { //log_msg("Main()"); GUI_MODE = _gui_mode; @@ -138,16 +138,10 @@ public class Main : GLib.Object{ // todo: consider get_user_runtime_dir() or get_user_cache_dir() TMP_PREFIX = Environment.get_tmp_dir() + "/." + BRANDING_SHORTNAME; + } - // possible future option - delete cache on every startup and exit - // do not do this without rigging up a way to suppress it when the gui app runs the console app - // like --index-is-fresh but maybe --keep-index or --batch - //LinuxKernel.delete_cache(); + public void save_app_config() { - } - - public void save_app_config(){ - var config = new Json.Object(); config.set_string_member("ppa_uri", ppa_uri); config.set_string_member("notify_major", notify_major.to_string()); @@ -173,20 +167,20 @@ public class Main : GLib.Object{ try{ json.to_file(APP_CONFIG_FILE); } catch (Error e) { - log_error (e.message); - } + log_error (e.message); + } - log_debug("Saved config file: %s".printf(APP_CONFIG_FILE)); + log_debug("Saved config file: %s".printf(APP_CONFIG_FILE)); update_notification_files(); } - public void update_notification_files(){ + public void update_notification_files() { update_startup_script(); - update_startup_desktop_file(); + update_startup_desktop_file(); } - public void load_app_config(){ + public void load_app_config() { var f = File.new_for_path(APP_CONFIG_FILE); @@ -234,7 +228,7 @@ public class Main : GLib.Object{ // construct the commandline argument for "sleep" int count = App.notify_interval_value; string suffix = "h"; - switch (App.notify_interval_unit){ + switch (App.notify_interval_unit) { case 0: // hour suffix = "h"; break; @@ -299,7 +293,7 @@ public class Main : GLib.Object{ } private void update_startup_desktop_file() { - if (notify_minor || notify_major){ + if (notify_minor || notify_major) { string txt = "[Desktop Entry]\n" + "Type=Application\n" @@ -312,8 +306,7 @@ public class Main : GLib.Object{ file_write(STARTUP_DESKTOP_FILE, txt); - } - else{ + } else { file_delete(STARTUP_DESKTOP_FILE); } } diff --git a/src/Common/OSDNotify.vala b/src/Common/OSDNotify.vala index c1958729..48602022 100644 --- a/src/Common/OSDNotify.vala +++ b/src/Common/OSDNotify.vala @@ -33,17 +33,17 @@ public class OSDNotify : GLib.Object { // send a desktop notification // re-use the notification id for subsequent re-sends/updates - public static int notify_send (string summary = "", string body = "", Gee.ArrayList actions = new Gee.ArrayList(), string close_action = ""){ + public static int notify_send (string summary = "", string body = "", Gee.ArrayList actions = new Gee.ArrayList(), string close_action = "") { int retVal = 0; long seconds = 9999; - if (dt_last_notification != null){ + if (dt_last_notification != null) { DateTime dt_end = new DateTime.now_local(); TimeSpan elapsed = dt_end.difference(dt_last_notification); seconds = (long)(elapsed * 1.0 / TimeSpan.SECOND); } - if (seconds > MIN_NOTIFICATION_INTERVAL){ + if (seconds > MIN_NOTIFICATION_INTERVAL) { string s = APP_LIB_DIR+"/notify_send/notify-send.sh" @@ -53,14 +53,16 @@ public class OSDNotify : GLib.Object { + " -a "+BRANDING_SHORTNAME + " -i "+BRANDING_SHORTNAME + " -t 0" - + " -f "; + + " -f " + ; if (close_action != "") s += " -l \""+close_action+"\""; foreach (string a in actions) s += " -o \""+a+"\""; s += " \""+summary+"\"" - + " \""+body+"\""; + + " \""+body+"\"" + ; log_debug (s); exec_async (s); diff --git a/src/Common/Package.vala b/src/Common/Package.vala index 925d33c5..68634376 100644 --- a/src/Common/Package.vala +++ b/src/Common/Package.vala @@ -7,19 +7,19 @@ public class Package : GLib.Object { public string pname = ""; public string arch = ""; public string version = ""; - public bool is_installed = false; + public static Gee.ArrayList dpkg_list = new Gee.ArrayList(); public static void initialize() { + new Package(""); } public Package(string _name) { pname = _name; } - public static Gee.HashMap query_installed_packages() { - log_debug("query_installed_packages()"); - + public static void update_dpkg_list() { + log_debug("update_dpkg_list()"); // get installed packages from dpkg -------------- string t_dir = create_tmp_dir(); @@ -30,12 +30,12 @@ public class Package : GLib.Object { // parse ------------------------ - var list = new Gee.HashMap(); try { string line; var file = File.new_for_path (t_file); if (file.query_exists ()) { var dis = new DataInputStream (file.read()); + dpkg_list.clear(); while ((line = dis.read_line (null)) != null) { string[] arr = line.split("|"); if (arr.length != 4) continue; @@ -50,13 +50,10 @@ public class Package : GLib.Object { var pkg = new Package(name); pkg.version = vers; pkg.arch = arch; - list[name] = pkg; - - //log_debug("pkg: "+pkg.pname+"|"+pkg.version+"|"+pkg.arch); - + dpkg_list.add(pkg); + log_debug("dpkg_list.add("+pkg.pname+") version:"+pkg.version+" arch:"+pkg.arch); } - } - else { + } else { log_error (_("File not found: %s").printf(t_file)); } } @@ -64,6 +61,5 @@ public class Package : GLib.Object { log_error (e.message); } dir_delete(t_dir); - return list; } } diff --git a/src/Console/AppConsole.vala b/src/Console/AppConsole.vala index a265e821..8b9e1d46 100644 --- a/src/Console/AppConsole.vala +++ b/src/Console/AppConsole.vala @@ -45,12 +45,6 @@ public class AppConsole : GLib.Object { bool is_success = console.parse_arguments(args); - // possible future option - delete cache on every startup and exit - // do not do this without rigging up a way to suppress it when the gui app runs the console app - // like --index-is-fresh but maybe --keep-index or --batch - //LinuxKernel.delete_cache(); - - //log_debug("END AppConsole main()"); return (is_success) ? 0 : 1; } @@ -97,9 +91,7 @@ public class AppConsole : GLib.Object { public bool parse_arguments(string[] args) { string txt = BRANDING_SHORTNAME + " "; - for (int k = 1; k < args.length; k++) { - txt += "'%s' ".printf(args[k]); - } + for (int k = 1; k < args.length; k++) txt += "'%s' ".printf(args[k]); // check argument count ----------------- @@ -151,15 +143,14 @@ public class AppConsole : GLib.Object { cmd = args[k].down(); break; - case "--download": - case "--install": case "--remove": // back compat case "--uninstall": + case "--download": + case "--install": + // FUGLY cmd = args[k].down(); - - if (++k < args.length){ - cmd_versions = args[k]; - } + if (++k < args.length) cmd_versions = args[k]; + if (cmd == "--remove") cmd="--uninstall"; // re-write so we don't have to check all synonyms later blergh crap break; case "--help": @@ -171,8 +162,7 @@ public class AppConsole : GLib.Object { default: // unknown option log_error(_("Unknown option") + ": %s".printf(args[k])); - // FIXME use argv[0] instead of hardcoded app name - log_error(_("Run")+" '"+BRANDING_SHORTNAME+" --help' "+_("to list all options")); + log_error(_("Run")+" '"+args[0]+" --help' "+_("to list all options")); return false; } } @@ -188,6 +178,7 @@ public class AppConsole : GLib.Object { case "--list-installed": + Package.update_dpkg_list(); LinuxKernel.check_installed(); break; @@ -220,10 +211,9 @@ public class AppConsole : GLib.Object { case "--download": case "--install": - case "--remove": // back compat case "--uninstall": - if (cmd_versions.length==0){ + if (cmd_versions.length==0) { log_error(_("No kernels specified")); exit(1); } @@ -240,38 +230,41 @@ public class AppConsole : GLib.Object { foreach(string requested_version in requested_versions) { LinuxKernel kern_requested = null; - foreach(var kern in LinuxKernel.kernel_list) { + foreach(var k in LinuxKernel.kernel_list) { // match --list output - if (kern.version_main == requested_version) { - kern_requested = kern; + // FIXME version_main can dupe with mainline & distro pkgs of the same version + // if cmd is uninstall, must also match k.is_installed + // but if cmd is download or install, must IGNORE k.is_installed + // extra FUGLY because this whole cmdline parser is redundant junk + if (k.version_main == requested_version && (cmd != "--uninstall" || k.is_installed)) { + kern_requested = k; break; } } if (kern_requested == null) { var msg = _("Could not find requested version"); - msg += ": %s".printf(requested_version); + msg += ": "+requested_version; log_error(msg); - log_error(_("Run")+" '"+BRANDING_SHORTNAME+" --list' "+_("and use a version string listed in first column")); + log_error(_("Run")+" '"+args[0]+" --list' "+_("and use a version string listed in first column")); exit(1); } list.add(kern_requested); } - if (list.size == 0){ + if (list.size == 0) { log_error(_("No kernels specified")); exit(1); } - switch(cmd){ + switch (cmd) { case "--download": return LinuxKernel.download_kernels(list); - case "--remove": // back compat case "--uninstall": return LinuxKernel.kunin_list(list); - + case "--install": return list[0].kinst(); } @@ -281,14 +274,14 @@ public class AppConsole : GLib.Object { default: // unknown option log_error(_("Command not specified")); - log_error(_("Run")+" '"+BRANDING_SHORTNAME+" --help' "+_("to list all commands")); + log_error(_("Run")+" '"+args[0]+" --help' "+_("to list all commands")); break; } return true; } - private void print_updates(){ + private void print_updates() { LinuxKernel.query(true); @@ -313,7 +306,7 @@ public class AppConsole : GLib.Object { log_msg(string.nfill(70, '-')); } - private void notify_user(){ + private void notify_user() { LinuxKernel.query(true); diff --git a/src/Gtk/AppGtk.vala b/src/Gtk/AppGtk.vala index a79355f2..de26355e 100644 --- a/src/Gtk/AppGtk.vala +++ b/src/Gtk/AppGtk.vala @@ -89,12 +89,6 @@ public class AppGtk : GLib.Object { App.window_y != App._window_y ) App.save_app_config(); - // possible future option - delete cache on every startup and exit - // do not do this without rigging up a way to suppress it when the gui app runs the console app - // like --index-is-fresh but maybe --keep-index or --batch - //LinuxKernel.delete_cache(); - - //log_debug("END AppGtk main()"); return 0; } @@ -108,14 +102,22 @@ public class AppGtk : GLib.Object { public static bool parse_arguments(string[] args) { // parse options - for (int k = 1; k < args.length; k++) + for (int o = 1; o < args.length; o++) { - switch (args[k].down()) { + switch (args[o].down()) { case "--debug": LOG_DEBUG = true; break; + // this is used by the notifications + case "--install": + if (++o < args.length) { + App.command = "install"; + App.requested_version = args[o].down(); + } + break; + case "--help": case "--h": case "-h": @@ -124,7 +126,7 @@ public class AppGtk : GLib.Object { break; default: - log_error(_("Unknown option") + ": %s".printf(args[k])); + log_error(_("Unknown option") + ": %s".printf(args[o])); log_msg(help_message()); exit(1); break; diff --git a/src/Gtk/MainWindow.vala b/src/Gtk/MainWindow.vala index 4aa8bc35..df89babd 100644 --- a/src/Gtk/MainWindow.vala +++ b/src/Gtk/MainWindow.vala @@ -41,6 +41,7 @@ public class MainWindow : Gtk.Window { private Gtk.Button btn_install; private Gtk.Button btn_uninstall; private Gtk.Button btn_changes; + private Gtk.Button btn_ppa; private Gtk.Label lbl_info; // helper members @@ -68,9 +69,15 @@ public class MainWindow : Gtk.Window { init_ui(); update_cache(); + + if (App.command == "install") { + var k = new LinuxKernel.from_version(App.requested_version); + do_install(k); + } + } - private void init_ui(){ + private void init_ui() { init_treeview(); init_actions(); init_infobar(); @@ -164,7 +171,7 @@ public class MainWindow : Gtk.Window { set_button_state(); } - private void tv_selection_changed(){ + private void tv_selection_changed() { var sel = tv.get_selection(); TreeModel model; @@ -183,7 +190,7 @@ public class MainWindow : Gtk.Window { set_button_state(); } - private void tv_refresh(){ + private void tv_refresh() { log_debug("tv_refresh()"); var model = new Gtk.ListStore(4, typeof(LinuxKernel), typeof(Gdk.Pixbuf), typeof(bool), typeof(string)); @@ -240,19 +247,21 @@ public class MainWindow : Gtk.Window { btn_install.sensitive = false; btn_uninstall.sensitive = false; btn_changes.sensitive = false; + btn_ppa.sensitive = true; } else { // only allow selecting a single kernel for install/uninstall, examine the installed state btn_install.sensitive = (selected_kernels.size == 1) && !selected_kernels[0].is_installed; btn_uninstall.sensitive = selected_kernels[0].is_installed && !selected_kernels[0].is_running; + btn_changes.sensitive = (selected_kernels.size == 1) && file_exists(selected_kernels[0].changes_file); + btn_ppa.sensitive = (selected_kernels.size == 1) && selected_kernels[0].is_mainline; // allow selecting multiple kernels for install/uninstall, but IF only a single selected, examine the installed state // (the rest of the app does not have loops to process a list yet) //btn_install.sensitive = selected_kernels.size == 1 ? !selected_kernels[0].is_installed : true; //btn_uninstall.sensitive = selected_kernels.size == 1 ? selected_kernels[0].is_installed && !selected_kernels[0].is_running : true; - btn_changes.sensitive = (selected_kernels.size == 1) && file_exists(selected_kernels[0].changes_file); } } - private void init_actions(){ + private void init_actions() { var hbox = new Gtk.Box(Orientation.VERTICAL, 6); hbox_list.add (hbox); @@ -291,6 +300,7 @@ public class MainWindow : Gtk.Window { // ppa button = new Gtk.Button.with_label ("PPA"); hbox.pack_start (button, true, true, 0); + btn_ppa = button; button.clicked.connect(() => { string uri = App.ppa_uri; @@ -427,7 +437,7 @@ public class MainWindow : Gtk.Window { return; } - string message = _("Updating cached indexes")+"..."; + string message = _("Updating kernels"); var progress_window = new ProgressWindow.with_parent(this, message, true); progress_window.show_all(); @@ -438,7 +448,6 @@ public class MainWindow : Gtk.Window { tv_refresh(); } -// FIXME - not working private void update_progress_window(ProgressWindow progress_window, string message, GLib.Timer timer, ref long count, bool last = false) { if (last) { progress_window.destroy(); @@ -453,18 +462,11 @@ public class MainWindow : Gtk.Window { App.progress_total = LinuxKernel.progress_total; App.progress_count = LinuxKernel.progress_count; - ulong ms_elapsed = timer_elapsed(timer, false); int64 remaining_count = App.progress_total - App.progress_count; - int64 ms_remaining = (int64)((ms_elapsed * 1.0) / App.progress_count) * remaining_count; - - string time_remaining = ""; - if ((count % 5) == 0){ - time_remaining = format_time_left(ms_remaining); - } Gdk.threads_add_idle_full(0, () => { if (App.progress_total > 0) - progress_window.update_message("%s %s/%s (%s)".printf(message, App.progress_count.to_string(), App.progress_total.to_string(), time_remaining)); + progress_window.update_message("%s %s/%s".printf(message, App.progress_count.to_string(), App.progress_total.to_string())); progress_window.update_status_line(); return false; @@ -473,7 +475,7 @@ public class MainWindow : Gtk.Window { count++; } - private void init_infobar(){ + private void init_infobar() { // scrolled var scrolled = new ScrolledWindow(null, null); @@ -495,20 +497,19 @@ public class MainWindow : Gtk.Window { hbox.add(lbl_info); } - private void set_infobar(){ + private void set_infobar() { - if (LinuxKernel.kernel_active != null){ + if (LinuxKernel.kernel_active != null) { lbl_info.label = _("Running")+" %s".printf(LinuxKernel.kernel_active.version_main); - if (LinuxKernel.kernel_active.is_mainline){ + if (LinuxKernel.kernel_active.is_mainline) { lbl_info.label += " (mainline)"; - } - else{ + } else { lbl_info.label += " (ubuntu)"; } - if (LinuxKernel.kernel_latest_available.compare_to(LinuxKernel.kernel_latest_installed) > 0){ + if (LinuxKernel.kernel_latest_available.compare_to(LinuxKernel.kernel_latest_installed) > 0) { lbl_info.label += " ~ %s ".printf(LinuxKernel.kernel_latest_available.version_main)+_("available"); } } @@ -529,7 +530,6 @@ public class MainWindow : Gtk.Window { term.script_complete.connect(()=>{ term.allow_window_close(); - file_delete(t_file); dir_delete(t_dir); }); @@ -557,7 +557,6 @@ public class MainWindow : Gtk.Window { term.script_complete.connect(()=>{ term.allow_window_close(); - file_delete(t_file); dir_delete(t_dir); }); @@ -567,7 +566,7 @@ public class MainWindow : Gtk.Window { }); string names = ""; - foreach(var k in klist){ + foreach(var k in klist) { if (names.length > 0) names += ","; names += "%s".printf(k.version_main); } @@ -591,7 +590,6 @@ public class MainWindow : Gtk.Window { term.script_complete.connect(()=>{ term.allow_window_close(); - file_delete(t_file); dir_delete(t_dir); }); diff --git a/src/Gtk/ProgressWindow.vala b/src/Gtk/ProgressWindow.vala index 47cd3bbb..5421107c 100644 --- a/src/Gtk/ProgressWindow.vala +++ b/src/Gtk/ProgressWindow.vala @@ -56,7 +56,8 @@ public class ProgressWindow : Gtk.Window { set_modal(true); set_decorated(false); set_type_hint(Gdk.WindowTypeHint.DIALOG); - window_position = WindowPosition.CENTER; + //window_position = WindowPosition.CENTER; + window_position = WindowPosition.CENTER_ON_PARENT; set_default_size(def_width, def_height); @@ -149,8 +150,7 @@ public class ProgressWindow : Gtk.Window { if (clear) { lbl_status.label = ""; - } - else { + } else { lbl_status.label = App.status_line; } diff --git a/src/Gtk/SettingsDialog.vala b/src/Gtk/SettingsDialog.vala index 41b1f7d5..2f52b4b5 100644 --- a/src/Gtk/SettingsDialog.vala +++ b/src/Gtk/SettingsDialog.vala @@ -70,17 +70,15 @@ public class SettingsDialog : Gtk.Dialog { vbox_main.add(chk); chk_notify_major = chk; - chk.toggled.connect(()=>{ - App.notify_major = chk_notify_major.active; - }); - + chk.toggled.connect(()=>{ App.notify_major = chk_notify_major.active; }); + // chk_notify_minor chk = new Gtk.CheckButton.with_label(_("Notify if a point release is available")); chk.active = App.notify_minor; chk.margin_start = 6; vbox_main.add(chk); chk_notify_minor = chk; - + chk.toggled.connect(()=>{ App.notify_minor = chk_notify_minor.active; }); @@ -108,7 +106,7 @@ public class SettingsDialog : Gtk.Dialog { var hbox = new Gtk.Box(Orientation.HORIZONTAL, 6); vbox_main.add (hbox); - + label = new Label(_("Check every")); label.xalign = (float) 0.0; label.margin_start = 6; @@ -120,24 +118,19 @@ public class SettingsDialog : Gtk.Dialog { hbox.add(spin); var spin_notify = spin; - spin.changed.connect(()=>{ - App.notify_interval_value = (int) spin_notify.get_value(); - }); + spin.changed.connect(()=>{ App.notify_interval_value = (int) spin_notify.get_value(); }); // notify interval unit var combo = new Gtk.ComboBox(); var cell_text = new Gtk.CellRendererText(); - combo.pack_start(cell_text, false); - combo.set_attributes(cell_text, "text", 0); - hbox.add(combo); + combo.pack_start(cell_text, false); + combo.set_attributes(cell_text, "text", 0); + hbox.add(combo); - combo.changed.connect(()=>{ - App.notify_interval_unit = combo.active; - //log_debug("combo: %lf".printf(combo.active)); - }); + combo.changed.connect(()=>{ App.notify_interval_unit = combo.active; }); - TreeIter iter; - var model = new Gtk.ListStore (1, typeof (string)); + TreeIter iter; + var model = new Gtk.ListStore (1, typeof (string)); model.append (out iter); model.set (iter,0,_("Hour(s)")); model.append (out iter); @@ -150,7 +143,7 @@ public class SettingsDialog : Gtk.Dialog { } combo.set_model(model); combo.set_active(App.notify_interval_unit); - + // _Display_ label = new Label("" + _("Display") + ""); label.set_use_markup(true); @@ -165,16 +158,13 @@ public class SettingsDialog : Gtk.Dialog { chk.margin_start = 6; vbox_main.add(chk); chk_hide_unstable = chk; - - chk.toggled.connect(()=>{ - App.hide_unstable = chk_hide_unstable.active; - }); + chk.toggled.connect(()=>{ App.hide_unstable = chk_hide_unstable.active; }); - // kernel version threshold + // kernel version threshold hbox = new Gtk.Box(Orientation.HORIZONTAL, 6); vbox_main.add (hbox); + label = new Label(_("Show")); - label = new Label(_("Show N previous major versions ")); label.xalign = (float) 0.0; label.margin_start = 6; hbox.add (label); @@ -183,10 +173,10 @@ public class SettingsDialog : Gtk.Dialog { var spm_spin = new Gtk.SpinButton (spm_adj, 1, 0); spm_spin.xalign = (float) 0.5; hbox.add(spm_spin); + spm_spin.changed.connect(()=>{ App.show_prev_majors = (int) spm_spin.get_value(); }); - spm_spin.changed.connect(()=>{ - App.show_prev_majors = (int) spm_spin.get_value(); - }); + label = new Label(_("previous major versions ")); + hbox.add(label); // other label = new Label("" + _("Other") + ""); @@ -210,15 +200,12 @@ public class SettingsDialog : Gtk.Dialog { spin.xalign = (float) 0.5; hbox.add(spin); var spin_timeout = spin; - - spin.changed.connect(()=>{ - App.connect_timeout_seconds = (int) spin_timeout.get_value(); - }); + spin.changed.connect(()=>{ App.connect_timeout_seconds = (int) spin_timeout.get_value(); }); label = new Label(_("seconds")); - hbox.add(label); + hbox.add(label); - // concurrent downloads + // concurrent downloads hbox = new Gtk.Box(Orientation.HORIZONTAL, 6); vbox_main.add (hbox); @@ -233,21 +220,15 @@ public class SettingsDialog : Gtk.Dialog { hbox.add(spin); var spin_concurrent = spin; - spin.changed.connect(()=>{ - App.concurrent_downloads = (int) spin_concurrent.get_value(); - }); + spin.changed.connect(()=>{ App.concurrent_downloads = (int) spin_concurrent.get_value(); }); // actions ------------------------- - - // ok - var button = (Button) add_button ("gtk-ok", Gtk.ResponseType.ACCEPT); - button.clicked.connect(()=>{ - this.close(); - }); + // ok + var button = (Button) add_button ("gtk-ok", Gtk.ResponseType.ACCEPT); + button.clicked.connect(()=>{ this.close(); }); this.destroy.connect(btn_ok_click); - - show_all(); + show_all(); } private void btn_ok_click() { diff --git a/src/Gtk/TerminalWindow.vala b/src/Gtk/TerminalWindow.vala index 5a1b4ef3..526a5348 100644 --- a/src/Gtk/TerminalWindow.vala +++ b/src/Gtk/TerminalWindow.vala @@ -58,28 +58,24 @@ public class TerminalWindow : Gtk.Window { } set_modal(true); - window_position = WindowPosition.CENTER; - - if (fullscreen) { - this.fullscreen(); - } + //window_position = WindowPosition.CENTER; + window_position = WindowPosition.CENTER_ON_PARENT; + if (fullscreen) this.fullscreen(); this.delete_event.connect(cancel_window_close); - + init_window(); show_all(); btn_cancel.visible = false; btn_close.visible = false; - - if (show_cancel_button){ - allow_cancel(); - } + + if (show_cancel_button) allow_cancel(); } - public bool cancel_window_close(){ - // do not allow window to close + public bool cancel_window_close() { + // do not allow window to close return true; } @@ -175,7 +171,7 @@ public class TerminalWindow : Gtk.Window { process_quit(child_pid); } - public void execute_script(string f, string d){ + public void execute_script(string f, string d) { string[] argv = {"sh", f}; string[] env = Environ.get(); @@ -204,15 +200,11 @@ public class TerminalWindow : Gtk.Window { } } - public void script_exit(int status){ - + public void script_exit(int status) { is_running = false; - btn_cancel.visible = false; btn_close.visible = true; - script_complete(); - } public void allow_window_close(bool allow = true) { diff --git a/src/Utility/AsyncTask.vala b/src/Utility/AsyncTask.vala index 0f381f61..d791e5e5 100644 --- a/src/Utility/AsyncTask.vala +++ b/src/Utility/AsyncTask.vala @@ -28,7 +28,7 @@ using TeeJee.ProcessHelper; using TeeJee.System; using TeeJee.Misc; -public abstract class AsyncTask : GLib.Object{ +public abstract class AsyncTask : GLib.Object { private string err_line = ""; private string out_line = ""; @@ -102,15 +102,15 @@ public abstract class AsyncTask : GLib.Object{ // execute script file Process.spawn_async_with_pipes( - working_dir, // working dir - spawn_args, // argv - spawn_env, // environment - SpawnFlags.SEARCH_PATH, - null, // child_setup - out child_pid, - out input_fd, - out output_fd, - out error_fd); + working_dir, // working dir + spawn_args, // argv + spawn_env, // environment + SpawnFlags.SEARCH_PATH, + null, // child_setup + out child_pid, + out input_fd, + out output_fd, + out error_fd); // create stream readers UnixOutputStream uos_in = new UnixOutputStream(input_fd, false); @@ -125,9 +125,7 @@ public abstract class AsyncTask : GLib.Object{ // create log file if (log_file.length > 0) { var file = File.new_for_path(log_file); - if (file.query_exists()) { - file.delete(); - } + if (file.query_exists()) file.delete(); var file_stream = file.create (FileCreateFlags.REPLACE_DESTINATION); dos_log = new DataOutputStream (file_stream); } @@ -162,17 +160,15 @@ public abstract class AsyncTask : GLib.Object{ stdout_is_open = false; // dispose stdout - if ((dis_out != null) && !dis_out.is_closed()) { - dis_out.close(); - } + if ((dis_out != null) && !dis_out.is_closed()) dis_out.close(); + // dis_out.close(); dis_out = null; GLib.FileUtils.close(output_fd); // check if complete - if (!stdout_is_open && !stderr_is_open) { - finish(); - } + if (!stdout_is_open && !stderr_is_open) finish(); + } catch (Error e) { log_error("AsyncTask.read_stdout()"); @@ -181,7 +177,7 @@ public abstract class AsyncTask : GLib.Object{ } return true; } - + private bool read_stderr() { try { stderr_is_open = true; @@ -198,17 +194,15 @@ public abstract class AsyncTask : GLib.Object{ stderr_is_open = false; // dispose stderr - if ((dis_err != null) && !dis_err.is_closed()) { - dis_err.close(); - } + if ((dis_err != null) && !dis_err.is_closed()) dis_err.close(); + // dis_err.close(); dis_err = null; GLib.FileUtils.close(error_fd); // check if complete - if (!stdout_is_open && !stderr_is_open) { - finish(); - } + if (!stdout_is_open && !stderr_is_open) finish(); + } catch (Error e) { log_error("AsyncTask.read_stderr()"); @@ -246,24 +240,20 @@ public abstract class AsyncTask : GLib.Object{ // dispose stdin try { - if ((dos_in != null) && !dos_in.is_closed() && !dos_in.is_closing()){ - dos_in.close(); - } + if ((dos_in != null) && !dos_in.is_closed() && !dos_in.is_closing()) dos_in.close(); } catch (Error e){ // ignore //log_error("AsyncTask.finish(): dos_in.close()"); //log_error(e.message); } - + dos_in = null; GLib.FileUtils.close(input_fd); try { // dispose log - if ((dos_log != null) && !dos_log.is_closed() && !dos_log.is_closing()){ - dos_log.close(); - } + if ((dos_log != null) && !dos_log.is_closed() && !dos_log.is_closing()) dos_log.close(); dos_log = null; } catch (Error e) { diff --git a/src/Utility/TeeJee.FileSystem.vala b/src/Utility/TeeJee.FileSystem.vala index 26a498d5..a015db7b 100644 --- a/src/Utility/TeeJee.FileSystem.vala +++ b/src/Utility/TeeJee.FileSystem.vala @@ -22,7 +22,7 @@ * */ -namespace TeeJee.FileSystem{ +namespace TeeJee.FileSystem { /* Convenience functions for handling files and directories */ @@ -113,7 +113,7 @@ namespace TeeJee.FileSystem{ } } - public bool file_copy (string src_file, string dest_file){ + public bool file_copy (string src_file, string dest_file) { //log_debug("file_copy('"+src_file+"','"+dest_file+"')"); try { @@ -129,7 +129,7 @@ namespace TeeJee.FileSystem{ return false; } - public void file_move (string src_file, string dest_file){ + public void file_move (string src_file, string dest_file) { //log_debug("file_move('"+src_file+"','"+dest_file+"')"); try { if (!file_exists(src_file)) { @@ -151,17 +151,17 @@ namespace TeeJee.FileSystem{ // file info ----------------- - public int64 file_get_size(string file_path){ - try{ + public int64 file_get_size(string file_path) { + try { File file = File.parse_name (file_path); - if (FileUtils.test(file_path, GLib.FileTest.EXISTS)){ + if (FileUtils.test(file_path, GLib.FileTest.EXISTS)) { if (FileUtils.test(file_path, GLib.FileTest.IS_REGULAR) - && !FileUtils.test(file_path, GLib.FileTest.IS_SYMLINK)){ + && !FileUtils.test(file_path, GLib.FileTest.IS_SYMLINK)) { return file.query_info("standard::size",0).get_size(); } } } - catch(Error e){ + catch(Error e) { log_error (e.message); } @@ -169,8 +169,8 @@ namespace TeeJee.FileSystem{ } // directory helpers ---------------------- - - public bool dir_exists (string dir_path){ + + public bool dir_exists (string dir_path) { return ( FileUtils.test(dir_path, GLib.FileTest.EXISTS) && FileUtils.test(dir_path, GLib.FileTest.IS_DIR)); } @@ -178,10 +178,8 @@ namespace TeeJee.FileSystem{ log_debug("dir_create("+d+")"); try{ - var dir = File.parse_name (d); - if (dir.query_exists () == false) { - dir.make_directory_with_parents (null); - } + var dir = File.parse_name(d); + if (!dir.query_exists()) dir.make_directory_with_parents(); return true; } catch (Error e) { @@ -216,50 +214,36 @@ namespace TeeJee.FileSystem{ public string format_file_size ( uint64 size, bool binary_units = false, - string unit = "", bool show_units = true, int decimals = 1){ - + string unit = "", bool show_units = true, int decimals = 1) { + int64 unit_k = binary_units ? 1024 : 1000; int64 unit_m = binary_units ? 1024 * unit_k : 1000 * unit_k; int64 unit_g = binary_units ? 1024 * unit_m : 1000 * unit_m; int64 unit_t = binary_units ? 1024 * unit_g : 1000 * unit_g; string txt = ""; - - if ((size > unit_t) && ((unit.length == 0) || (unit == "t"))){ + + if ((size > unit_t) && ((unit.length == 0) || (unit == "t"))) { txt += ("%%'0.%df".printf(decimals)).printf(size / (1.0 * unit_t)); - if (show_units){ - txt += " %sB".printf(binary_units ? "Ti" : "T"); - } - } - else if ((size > unit_g) && ((unit.length == 0) || (unit == "g"))){ + if (show_units) txt += " %sB".printf(binary_units ? "Ti" : "T"); + } else if ((size > unit_g) && ((unit.length == 0) || (unit == "g"))) { txt += ("%%'0.%df".printf(decimals)).printf(size / (1.0 * unit_g)); - if (show_units){ - txt += " %sB".printf(binary_units ? "Gi" : "G"); - } - } - else if ((size > unit_m) && ((unit.length == 0) || (unit == "m"))){ + if (show_units) txt += " %sB".printf(binary_units ? "Gi" : "G"); + } else if ((size > unit_m) && ((unit.length == 0) || (unit == "m"))) { txt += ("%%'0.%df".printf(decimals)).printf(size / (1.0 * unit_m)); - if (show_units){ - txt += " %sB".printf(binary_units ? "Mi" : "M"); - } - } - else if ((size > unit_k) && ((unit.length == 0) || (unit == "k"))){ + if (show_units) txt += " %sB".printf(binary_units ? "Mi" : "M"); + } else if ((size > unit_k) && ((unit.length == 0) || (unit == "k"))) { txt += ("%%'0.%df".printf(decimals)).printf(size / (1.0 * unit_k)); - if (show_units){ - txt += " %sB".printf(binary_units ? "Ki" : "K"); - } - } - else{ + if (show_units) txt += " %sB".printf(binary_units ? "Ki" : "K"); + } else { txt += "%'0lu".printf(size); - if (show_units){ - txt += " B"; - } + if (show_units) txt += " B"; } return txt; } - public string escape_single_quote(string file_path){ + public string escape_single_quote(string file_path) { return file_path.replace("'","'\\''"); } diff --git a/src/Utility/TeeJee.Logging.vala b/src/Utility/TeeJee.Logging.vala index a1497955..f062c9c3 100644 --- a/src/Utility/TeeJee.Logging.vala +++ b/src/Utility/TeeJee.Logging.vala @@ -22,7 +22,7 @@ * */ -namespace TeeJee.Logging{ +namespace TeeJee.Logging { /* Functions for logging messages to console and log files */ @@ -33,87 +33,66 @@ namespace TeeJee.Logging{ public bool LOG_ENABLE = true; public bool LOG_DEBUG = false; - public void log_msg (string message){ - - if (!LOG_ENABLE) { return; } - + public void log_msg (string message) { + if (!LOG_ENABLE) return; string s = message+"\n"; - stdout.printf(s); stdout.flush(); try { - if (dos_log != null){ - dos_log.put_string ("[%s] %s\n".printf(timestamp(), message)); - } + if (dos_log != null) dos_log.put_string ("[%s] %s\n".printf(timestamp(), message)); } catch (Error e) { stdout.printf (e.message); } } - public void log_error (string message){ - - if (!LOG_ENABLE) { return; } - + public void log_error (string message) { + if (!LOG_ENABLE) return; string s = _("E") + ": " + message + "\n"; - stdout.printf(s); stdout.flush(); - + try { string str = "[%s] %s\n".printf(timestamp(),message); - - if (dos_log != null){ - dos_log.put_string (str); - } - - if (err_log != null){ - err_log += s; - } + if (dos_log != null) dos_log.put_string (str); + if (err_log != null) err_log += s; } catch (Error e) { stdout.printf (e.message); } } - public void log_debug (string message){ - if (!LOG_ENABLE) { return; } - - if (LOG_DEBUG){ - log_msg (_("D") + ": " + message); - } + public void log_debug (string message) { + if (!LOG_ENABLE) return; + if (LOG_DEBUG) log_msg (_("D") + ": " + message); try { - if (dos_log != null){ - dos_log.put_string ("[%s] %s\n".printf(timestamp(), message)); - } + if (dos_log != null) dos_log.put_string ("[%s] %s\n".printf(timestamp(), message)); } catch (Error e) { stdout.printf (e.message); } } - public void log_to_file (string message, bool highlight = false){ + public void log_to_file (string message, bool highlight = false) { try { - if (dos_log != null){ - dos_log.put_string ("[%s] %s\n".printf(timestamp(), message)); - } + if (dos_log != null) dos_log.put_string ("[%s] %s\n".printf(timestamp(), message)); } catch (Error e) { stdout.printf (e.message); } } - public void log_draw_line(){ + public void log_draw_line() { log_msg(string.nfill(70,'=')); } - public void err_log_clear(){ + public void err_log_clear() { err_log = ""; } - public void err_log_disable(){ + public void err_log_disable() { err_log = null; } } diff --git a/src/Utility/TeeJee.Misc.vala b/src/Utility/TeeJee.Misc.vala index 5a0912f3..113d031b 100644 --- a/src/Utility/TeeJee.Misc.vala +++ b/src/Utility/TeeJee.Misc.vala @@ -37,15 +37,14 @@ namespace TeeJee.Misc { DateTime now = new GLib.DateTime.now_local(); if (show_millis) { - var msec = now.get_microsecond () / 1000; + var msec = now.get_microsecond() / 1000; return "%s.%03d".printf(now.format("%H:%M:%S"), msec); - } - else { + } else { return now.format ("%H:%M:%S"); } } - public string timestamp_numeric () { + public string timestamp_numeric() { return "%ld".printf((long) time_t ()); } @@ -67,8 +66,7 @@ namespace TeeJee.Misc { txt = txt .replace("\\u00", "") .replace("\\x" , ""); - } - else { + } else { txt = txt .replace(" ", " "); // pango markup throws an error with   } @@ -114,14 +112,12 @@ namespace TeeJee.Misc { MatchInfo match; if (regex.match(line, 0, out match)) { return match; - } - else{ + } else { return null; } } private static void print_progress_bar_start(string message) { - log_msg("\n%s\n".printf(message)); } @@ -154,7 +150,6 @@ namespace TeeJee.Misc { } private static void print_progress_bar_finish() { - print_progress_bar(1.0); stdout.printf("\n\n"); stdout.flush(); diff --git a/src/Utility/TeeJee.ProcessHelper.vala b/src/Utility/TeeJee.ProcessHelper.vala index cb125aaa..a94816ac 100644 --- a/src/Utility/TeeJee.ProcessHelper.vala +++ b/src/Utility/TeeJee.ProcessHelper.vala @@ -22,13 +22,11 @@ * */ -namespace TeeJee.ProcessHelper{ +namespace TeeJee.ProcessHelper { using TeeJee.Logging; using TeeJee.FileSystem; using TeeJee.Misc; - /* Convenience functions for executing commands and managing processes */ - // execute process --------------------------------- // execute command synchronously diff --git a/src/Utility/TeeJee.System.vala b/src/Utility/TeeJee.System.vala index 5bb7b2ab..6305b8bc 100644 --- a/src/Utility/TeeJee.System.vala +++ b/src/Utility/TeeJee.System.vala @@ -36,10 +36,6 @@ namespace TeeJee.System { } catch (Error e) { warning ("Unable to launch %s", uri); } - - // if/when above breaks, this works fine - //string cmd = "xdg-open '%s'".printf(escape_single_quote(uri)); - //exec_async(cmd); } // timers -------------------------------------------------- @@ -54,9 +50,8 @@ namespace TeeJee.System { ulong microseconds; double seconds; seconds = timer.elapsed (out microseconds); - if (stop){ - timer.stop(); - } + if (stop) timer.stop(); + return (ulong)((seconds * 1000 ) + (microseconds / 1000)); } From ae669ed64ca3ba287cef6c89c9c1570123975d1c Mon Sep 17 00:00:00 2001 From: Matthaiks <3577122+Matthaiks@users.noreply.github.com> Date: Fri, 10 Mar 2023 16:08:23 +0100 Subject: [PATCH 258/567] Update Polish translation --- po/pl.po | 21 +++++++++------------ 1 file changed, 9 insertions(+), 12 deletions(-) diff --git a/po/pl.po b/po/pl.po index 8615f13c..a834769b 100644 --- a/po/pl.po +++ b/po/pl.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-10 09:00-0500\n" -"PO-Revision-Date: 2023-03-08 23:39+0100\n" +"POT-Creation-Date: 2023-03-10 09:32-0500\n" +"PO-Revision-Date: 2023-03-10 16:07+0100\n" "Last-Translator: Matthaiks\n" "Language-Team: Polish\n" "Language: pl\n" @@ -21,13 +21,12 @@ msgid "Architecture" msgstr "Architektura" #: src/Common/LinuxKernel.vala:282 -#, fuzzy msgid "Fetching individual kernel indexes" -msgstr "Pobieranie indywidualnych indeksów jądra..." +msgstr "Pobieranie indywidualnych indeksów jąder" #: src/Common/LinuxKernel.vala:327 msgid "Updating from" -msgstr "" +msgstr "Aktualizowanie z" #: src/Common/LinuxKernel.vala:736 msgid "Packages Available" @@ -91,9 +90,8 @@ msgid "No packages to un-install!" msgstr "Brak pakietów do odinstalowania!" #: src/Common/LinuxKernel.vala:994 -#, fuzzy msgid "Could not find running kernel in list" -msgstr "Nie można znaleźć uruchomionego jądra na liście!" +msgstr "Nie można znaleźć uruchomionego jądra na liście" #: src/Common/LinuxKernel.vala:1000 msgid "Could not find any kernels to uninstall" @@ -138,9 +136,9 @@ msgid "Can not reach" msgstr "Nie można dotrzeć" #: src/Common/Package.vala:57 -#, fuzzy, c-format +#, c-format msgid "File not found: %s" -msgstr "Nie odnaleziono pliku" +msgstr "Nie znaleziono pliku: %s" #: src/Console/AppConsole.vala:62 src/Gtk/AppGtk.vala:143 msgid "Syntax" @@ -342,7 +340,7 @@ msgstr "Oryginalne" #: src/Gtk/MainWindow.vala:440 msgid "Updating kernels" -msgstr "" +msgstr "Aktualizowanie jąder" #: src/Gtk/MainWindow.vala:513 msgid "available" @@ -402,9 +400,8 @@ msgid "Hide unstable and RC releases" msgstr "Ukryj wydania niestabilne i RC" #: src/Gtk/SettingsDialog.vala:178 -#, fuzzy msgid "previous major versions " -msgstr "Pokaż N poprzednich głównych wersji " +msgstr "poprzednie główne wersje " #: src/Gtk/SettingsDialog.vala:182 msgid "Other" From 9f200ca28c6e68fef13cd7530adff34afcc65903 Mon Sep 17 00:00:00 2001 From: Jonas Gorski Date: Fri, 10 Mar 2023 16:43:38 +0100 Subject: [PATCH 259/567] make --install-point offer latest point releases only again Commit d7943e56e7b73a2d96b862195f514e9c0dca0c5c ("readme wips") accidentally merged the cases for "--install-latest" and "--install-point", missing that "--install-point" uses different parameters for LinuxKernel::kinst_latest(). Fix this by restoring the separate case for "--install-point" and let it pass true again to LinuxKernel::kinst_latest() for point_update. Before: $ mainline --install 6.1.15 ... $ mainline --install-point mainline 1.1.4 Distribution: Ubuntu 22.04.2 LTS Architecture: amd64 Running kernel: 5.19.0-35-generic Updating from: https://kernel.ubuntu.com/~kernel-ppa/mainline/ OK Found installed : 5.15.0-67.74 Found installed : 5.19.0-35.36~22.04.1 Found installed : 5.15.0.67.65 Found installed : 5.19.0.35.36~22.04.10 Found installed : 6.1.15-060115.202303030632 Latest update: 6.2.3 Install Kernel Version 6.2.3 ? (y/n): After: $ mainline --install-point mainline 1.1.4 Distribution: Ubuntu 22.04.2 LTS Architecture: amd64 Running kernel: 5.19.0-35-generic Updating from: https://kernel.ubuntu.com/~kernel-ppa/mainline/ OK Found installed : 5.15.0-67.74 Found installed : 5.19.0-35.36~22.04.1 Found installed : 5.15.0.67.65 Found installed : 5.19.0.35.36~22.04.10 Found installed : 6.1.15-060115.202303030632 Latest point update: 6.1.16 Install Kernel Version 6.1.16 ? (y/n): Fixes #167 Signed-off-by: Jonas Gorski --- src/Console/AppConsole.vala | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/Console/AppConsole.vala b/src/Console/AppConsole.vala index 8b9e1d46..65c0f599 100644 --- a/src/Console/AppConsole.vala +++ b/src/Console/AppConsole.vala @@ -193,11 +193,15 @@ public class AppConsole : GLib.Object { break; case "--install-latest": - case "--install-point": LinuxKernel.kinst_latest(false, App.confirm); break; + case "--install-point": + + LinuxKernel.kinst_latest(true, App.confirm); + break; + case "--purge-old-kernels": // back compat case "--uninstall-old": From 7c733e3c457da5a9a3be80d16f82da22c570583c Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Fri, 10 Mar 2023 15:33:17 -0500 Subject: [PATCH 260/567] 1.1.5 --- .deb_build_number.mak | 2 +- BRANDING.mak | 2 +- debian/changelog | 6 ++++++ po/de.po | 32 ++++++++++++++++---------------- po/el.po | 32 ++++++++++++++++---------------- po/es.po | 32 ++++++++++++++++---------------- po/fr.po | 32 ++++++++++++++++---------------- po/hr.po | 32 ++++++++++++++++---------------- po/it.po | 32 ++++++++++++++++---------------- po/ko.po | 32 ++++++++++++++++---------------- po/messages.pot | 32 ++++++++++++++++---------------- po/nl.po | 32 ++++++++++++++++---------------- po/pl.po | 32 ++++++++++++++++---------------- po/ru.po | 32 ++++++++++++++++---------------- po/sv.po | 32 ++++++++++++++++---------------- po/tr.po | 32 ++++++++++++++++---------------- po/uk.po | 32 ++++++++++++++++---------------- 17 files changed, 232 insertions(+), 226 deletions(-) diff --git a/.deb_build_number.mak b/.deb_build_number.mak index 11206f19..8ccf2c56 100644 --- a/.deb_build_number.mak +++ b/.deb_build_number.mak @@ -1,3 +1,3 @@ # This file is generated by Makefile "make deb_build_number" -DEB_PKG_VERSION := 1.1.4 +DEB_PKG_VERSION := 1.1.5 DEB_BUILD_NUMBER := 0000 diff --git a/BRANDING.mak b/BRANDING.mak index e47080be..fd939e2e 100644 --- a/BRANDING.mak +++ b/BRANDING.mak @@ -3,7 +3,7 @@ VERSION_MAJOR = 1 VERSION_MINOR = 1 -VERSION_MICRO = 4 +VERSION_MICRO = 5 BRANDING_SHORTNAME = mainline BRANDING_LONGNAME = Ubuntu Mainline Kernel Installer BRANDING_AUTHORNAME = Brian K. White diff --git a/debian/changelog b/debian/changelog index 4b7ec273..432925d6 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +mainline (1.1.5) unstable; urgency=medium + + * Jonas Gorski fix "--install-point" broken by d7943e5 + + -- Brian K. White Fri, 10 Mar 2023 15:14:55 -0500 + mainline (1.1.4) unstable; urgency=medium * fix name/version matching for installed non-mainline packages diff --git a/po/de.po b/po/de.po index 8f573998..d920efbd 100644 --- a/po/de.po +++ b/po/de.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-10 09:00-0500\n" +"POT-Creation-Date: 2023-03-10 15:11-0500\n" "PO-Revision-Date: 2023-02-20 18:40+0100\n" "Last-Translator: Marvin Meysel \n" "Language-Team: German\n" @@ -110,16 +110,16 @@ msgstr "Die folgenden Kernel werden deinstalliert:" msgid "Continue ?" msgstr "Weiter ?" -#: src/Common/LinuxKernel.vala:1036 src/Console/AppConsole.vala:291 +#: src/Common/LinuxKernel.vala:1036 src/Console/AppConsole.vala:295 msgid "Latest update" msgstr "Neustes Update" -#: src/Common/LinuxKernel.vala:1047 src/Console/AppConsole.vala:298 +#: src/Common/LinuxKernel.vala:1047 src/Console/AppConsole.vala:302 msgid "Latest point update" msgstr "Letzte Punktaktualisierung" -#: src/Common/LinuxKernel.vala:1055 src/Console/AppConsole.vala:303 -#: src/Console/AppConsole.vala:358 +#: src/Common/LinuxKernel.vala:1055 src/Console/AppConsole.vala:307 +#: src/Console/AppConsole.vala:362 msgid "No updates found" msgstr "Keine Updates gefunden" @@ -235,8 +235,8 @@ msgstr "" msgid "Unknown option" msgstr "Unbekannte Option" -#: src/Console/AppConsole.vala:165 src/Console/AppConsole.vala:249 -#: src/Console/AppConsole.vala:277 +#: src/Console/AppConsole.vala:165 src/Console/AppConsole.vala:253 +#: src/Console/AppConsole.vala:281 msgid "Run" msgstr "Ausführen" @@ -244,42 +244,42 @@ msgstr "Ausführen" msgid "to list all options" msgstr "um alle Optionen aufzulisten" -#: src/Console/AppConsole.vala:217 src/Console/AppConsole.vala:257 +#: src/Console/AppConsole.vala:221 src/Console/AppConsole.vala:261 msgid "No kernels specified" msgstr "Keine Kernel angegeben" -#: src/Console/AppConsole.vala:223 +#: src/Console/AppConsole.vala:227 msgid "Multiple kernels selected for installation. Select only one." msgstr "" "Mehrere Kernel für die Installation ausgewählt. Wählen Sie nur einen aus." -#: src/Console/AppConsole.vala:246 +#: src/Console/AppConsole.vala:250 msgid "Could not find requested version" msgstr "Die gewünschte Version konnte nicht gefunden werden" -#: src/Console/AppConsole.vala:249 +#: src/Console/AppConsole.vala:253 msgid "and use a version string listed in first column" msgstr "" "und verwenden Sie eine in der ersten Spalte aufgeführte Versionszeichenfolge" -#: src/Console/AppConsole.vala:276 +#: src/Console/AppConsole.vala:280 msgid "Command not specified" msgstr "Befehl nicht angegeben" -#: src/Console/AppConsole.vala:277 +#: src/Console/AppConsole.vala:281 msgid "to list all commands" msgstr "um alle Befehle aufzulisten" -#: src/Console/AppConsole.vala:331 src/Gtk/SettingsDialog.vala:166 +#: src/Console/AppConsole.vala:335 src/Gtk/SettingsDialog.vala:166 msgid "Show" msgstr "Zeigen" -#: src/Console/AppConsole.vala:336 src/Console/AppConsole.vala:348 +#: src/Console/AppConsole.vala:340 src/Console/AppConsole.vala:352 #, c-format msgid "Kernel %s Available" msgstr "Kernel %s verfügbar" -#: src/Console/AppConsole.vala:338 src/Console/AppConsole.vala:350 +#: src/Console/AppConsole.vala:342 src/Console/AppConsole.vala:354 #: src/Gtk/MainWindow.vala:270 msgid "Install" msgstr "Installieren" diff --git a/po/el.po b/po/el.po index 8c104870..4dae7a63 100644 --- a/po/el.po +++ b/po/el.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-10 09:00-0500\n" +"POT-Creation-Date: 2023-03-10 15:11-0500\n" "PO-Revision-Date: 2023-01-10 02:03-0600\n" "Last-Translator: Vasilis Kosmidis \n" "Language-Team: Greek\n" @@ -111,16 +111,16 @@ msgstr "Αυτός ο πυρήνας είναι ήδη εγκατεστημέν msgid "Continue ?" msgstr "Συνέχεια;" -#: src/Common/LinuxKernel.vala:1036 src/Console/AppConsole.vala:291 +#: src/Common/LinuxKernel.vala:1036 src/Console/AppConsole.vala:295 msgid "Latest update" msgstr "Τελευταία αναβάθμιση" -#: src/Common/LinuxKernel.vala:1047 src/Console/AppConsole.vala:298 +#: src/Common/LinuxKernel.vala:1047 src/Console/AppConsole.vala:302 msgid "Latest point update" msgstr "Τελευταία ενημέρωση συντήρησης" -#: src/Common/LinuxKernel.vala:1055 src/Console/AppConsole.vala:303 -#: src/Console/AppConsole.vala:358 +#: src/Common/LinuxKernel.vala:1055 src/Console/AppConsole.vala:307 +#: src/Console/AppConsole.vala:362 msgid "No updates found" msgstr "Δεν βρέθηκαν ενημερώσεις" @@ -235,8 +235,8 @@ msgstr "" msgid "Unknown option" msgstr "Άγνωστη επιλογή" -#: src/Console/AppConsole.vala:165 src/Console/AppConsole.vala:249 -#: src/Console/AppConsole.vala:277 +#: src/Console/AppConsole.vala:165 src/Console/AppConsole.vala:253 +#: src/Console/AppConsole.vala:281 msgid "Run" msgstr "Τρέξτε" @@ -244,41 +244,41 @@ msgstr "Τρέξτε" msgid "to list all options" msgstr "για να παραθέσετε όλες τις επιλογές" -#: src/Console/AppConsole.vala:217 src/Console/AppConsole.vala:257 +#: src/Console/AppConsole.vala:221 src/Console/AppConsole.vala:261 msgid "No kernels specified" msgstr "Δεν έχουν καθοριστεί πυρήνες" -#: src/Console/AppConsole.vala:223 +#: src/Console/AppConsole.vala:227 msgid "Multiple kernels selected for installation. Select only one." msgstr "Επιλέχθηκαν πολλαπλοί πυρήνες για εγκατάσταση. Επιλέξτε μόνο ένα." -#: src/Console/AppConsole.vala:246 +#: src/Console/AppConsole.vala:250 msgid "Could not find requested version" msgstr "Δε βρέθηκε η ζητούμενη έκδοση" -#: src/Console/AppConsole.vala:249 +#: src/Console/AppConsole.vala:253 msgid "and use a version string listed in first column" msgstr "" "και χρησιμοποιήστε μια συμβολοσειρά έκδοσης που αναφέρεται στην πρώτη στήλη" -#: src/Console/AppConsole.vala:276 +#: src/Console/AppConsole.vala:280 msgid "Command not specified" msgstr "Η εντολή δεν προσδιορίστηκε" -#: src/Console/AppConsole.vala:277 +#: src/Console/AppConsole.vala:281 msgid "to list all commands" msgstr "για να παραθέσετε όλες τις εντολές" -#: src/Console/AppConsole.vala:331 src/Gtk/SettingsDialog.vala:166 +#: src/Console/AppConsole.vala:335 src/Gtk/SettingsDialog.vala:166 msgid "Show" msgstr "Προβολή" -#: src/Console/AppConsole.vala:336 src/Console/AppConsole.vala:348 +#: src/Console/AppConsole.vala:340 src/Console/AppConsole.vala:352 #, c-format msgid "Kernel %s Available" msgstr "Πυρήνας %s διαθέσιμος" -#: src/Console/AppConsole.vala:338 src/Console/AppConsole.vala:350 +#: src/Console/AppConsole.vala:342 src/Console/AppConsole.vala:354 #: src/Gtk/MainWindow.vala:270 msgid "Install" msgstr "Εγκατάσταση" diff --git a/po/es.po b/po/es.po index 3c0e918e..888f6c74 100644 --- a/po/es.po +++ b/po/es.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-10 09:00-0500\n" +"POT-Creation-Date: 2023-03-10 15:11-0500\n" "PO-Revision-Date: 2018-01-03 02:03-0600\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish\n" @@ -112,16 +112,16 @@ msgstr "Los siguientes kernels serán eliminados:" msgid "Continue ?" msgstr "¿Continuar?" -#: src/Common/LinuxKernel.vala:1036 src/Console/AppConsole.vala:291 +#: src/Common/LinuxKernel.vala:1036 src/Console/AppConsole.vala:295 msgid "Latest update" msgstr "" -#: src/Common/LinuxKernel.vala:1047 src/Console/AppConsole.vala:298 +#: src/Common/LinuxKernel.vala:1047 src/Console/AppConsole.vala:302 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:1055 src/Console/AppConsole.vala:303 -#: src/Console/AppConsole.vala:358 +#: src/Common/LinuxKernel.vala:1055 src/Console/AppConsole.vala:307 +#: src/Console/AppConsole.vala:362 msgid "No updates found" msgstr "No se encontró ninguna actualización" @@ -238,8 +238,8 @@ msgstr "" msgid "Unknown option" msgstr "Opción desconocida" -#: src/Console/AppConsole.vala:165 src/Console/AppConsole.vala:249 -#: src/Console/AppConsole.vala:277 +#: src/Console/AppConsole.vala:165 src/Console/AppConsole.vala:253 +#: src/Console/AppConsole.vala:281 #, fuzzy msgid "Run" msgstr "En ejecución" @@ -249,41 +249,41 @@ msgstr "En ejecución" msgid "to list all options" msgstr "Mostrar todas las opciones" -#: src/Console/AppConsole.vala:217 src/Console/AppConsole.vala:257 +#: src/Console/AppConsole.vala:221 src/Console/AppConsole.vala:261 msgid "No kernels specified" msgstr "" -#: src/Console/AppConsole.vala:223 +#: src/Console/AppConsole.vala:227 msgid "Multiple kernels selected for installation. Select only one." msgstr "Se seleccionaron varios núcleos para su instalación. Elija solo uno." -#: src/Console/AppConsole.vala:246 +#: src/Console/AppConsole.vala:250 msgid "Could not find requested version" msgstr "No se pudo encontrar la versión solicitada" -#: src/Console/AppConsole.vala:249 +#: src/Console/AppConsole.vala:253 msgid "and use a version string listed in first column" msgstr "" -#: src/Console/AppConsole.vala:276 +#: src/Console/AppConsole.vala:280 msgid "Command not specified" msgstr "Coomand no especificado" -#: src/Console/AppConsole.vala:277 +#: src/Console/AppConsole.vala:281 #, fuzzy msgid "to list all commands" msgstr "Mostrar todas las opciones" -#: src/Console/AppConsole.vala:331 src/Gtk/SettingsDialog.vala:166 +#: src/Console/AppConsole.vala:335 src/Gtk/SettingsDialog.vala:166 msgid "Show" msgstr "" -#: src/Console/AppConsole.vala:336 src/Console/AppConsole.vala:348 +#: src/Console/AppConsole.vala:340 src/Console/AppConsole.vala:352 #, fuzzy, c-format msgid "Kernel %s Available" msgstr "Paquetes disponibles" -#: src/Console/AppConsole.vala:338 src/Console/AppConsole.vala:350 +#: src/Console/AppConsole.vala:342 src/Console/AppConsole.vala:354 #: src/Gtk/MainWindow.vala:270 msgid "Install" msgstr "Instalar" diff --git a/po/fr.po b/po/fr.po index f5174896..8c56ab45 100644 --- a/po/fr.po +++ b/po/fr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-10 09:00-0500\n" +"POT-Creation-Date: 2023-03-10 15:11-0500\n" "PO-Revision-Date: 2018-08-05 15:50+0200\n" "Last-Translator: Yolateng0 \n" "Language-Team: French\n" @@ -112,16 +112,16 @@ msgstr "Les noyaux suivants seront supprimés:" msgid "Continue ?" msgstr "Reprendre ?" -#: src/Common/LinuxKernel.vala:1036 src/Console/AppConsole.vala:291 +#: src/Common/LinuxKernel.vala:1036 src/Console/AppConsole.vala:295 msgid "Latest update" msgstr "Dernière mise à jour" -#: src/Common/LinuxKernel.vala:1047 src/Console/AppConsole.vala:298 +#: src/Common/LinuxKernel.vala:1047 src/Console/AppConsole.vala:302 msgid "Latest point update" msgstr "Dernière mise à jour mineure" -#: src/Common/LinuxKernel.vala:1055 src/Console/AppConsole.vala:303 -#: src/Console/AppConsole.vala:358 +#: src/Common/LinuxKernel.vala:1055 src/Console/AppConsole.vala:307 +#: src/Console/AppConsole.vala:362 msgid "No updates found" msgstr "Aucune mise à jour disponible" @@ -239,8 +239,8 @@ msgstr "" msgid "Unknown option" msgstr "Option inconnue" -#: src/Console/AppConsole.vala:165 src/Console/AppConsole.vala:249 -#: src/Console/AppConsole.vala:277 +#: src/Console/AppConsole.vala:165 src/Console/AppConsole.vala:253 +#: src/Console/AppConsole.vala:281 msgid "Run" msgstr "Executez" @@ -248,42 +248,42 @@ msgstr "Executez" msgid "to list all options" msgstr "pour afficher toutes les options" -#: src/Console/AppConsole.vala:217 src/Console/AppConsole.vala:257 +#: src/Console/AppConsole.vala:221 src/Console/AppConsole.vala:261 msgid "No kernels specified" msgstr "Aucun noyau spécifié" -#: src/Console/AppConsole.vala:223 +#: src/Console/AppConsole.vala:227 msgid "Multiple kernels selected for installation. Select only one." msgstr "" "Plusieurs noyaux sélectionnés pour être installés. Sélectionnez en seulement " "un." -#: src/Console/AppConsole.vala:246 +#: src/Console/AppConsole.vala:250 msgid "Could not find requested version" msgstr "Impossible de trouver la version demandée" -#: src/Console/AppConsole.vala:249 +#: src/Console/AppConsole.vala:253 msgid "and use a version string listed in first column" msgstr "" -#: src/Console/AppConsole.vala:276 +#: src/Console/AppConsole.vala:280 msgid "Command not specified" msgstr "Pas de commande fournie" -#: src/Console/AppConsole.vala:277 +#: src/Console/AppConsole.vala:281 msgid "to list all commands" msgstr "pour afficher toutes les commandes" -#: src/Console/AppConsole.vala:331 src/Gtk/SettingsDialog.vala:166 +#: src/Console/AppConsole.vala:335 src/Gtk/SettingsDialog.vala:166 msgid "Show" msgstr "Montrer" -#: src/Console/AppConsole.vala:336 src/Console/AppConsole.vala:348 +#: src/Console/AppConsole.vala:340 src/Console/AppConsole.vala:352 #, c-format msgid "Kernel %s Available" msgstr "Paquet %s disponibles" -#: src/Console/AppConsole.vala:338 src/Console/AppConsole.vala:350 +#: src/Console/AppConsole.vala:342 src/Console/AppConsole.vala:354 #: src/Gtk/MainWindow.vala:270 msgid "Install" msgstr "Installer" diff --git a/po/hr.po b/po/hr.po index 0da6a092..f1d3cfbc 100644 --- a/po/hr.po +++ b/po/hr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-10 09:00-0500\n" +"POT-Creation-Date: 2023-03-10 15:11-0500\n" "PO-Revision-Date: 2022-09-22 12:13+0200\n" "Last-Translator: gogo \n" "Language-Team: Croatian\n" @@ -110,16 +110,16 @@ msgstr "Sljedeći kerneli će biti deinstalirani:" msgid "Continue ?" msgstr "Nastavi?" -#: src/Common/LinuxKernel.vala:1036 src/Console/AppConsole.vala:291 +#: src/Common/LinuxKernel.vala:1036 src/Console/AppConsole.vala:295 msgid "Latest update" msgstr "Najnovija nadopuna" -#: src/Common/LinuxKernel.vala:1047 src/Console/AppConsole.vala:298 +#: src/Common/LinuxKernel.vala:1047 src/Console/AppConsole.vala:302 msgid "Latest point update" msgstr "Najnovija ciljana nadopuna" -#: src/Common/LinuxKernel.vala:1055 src/Console/AppConsole.vala:303 -#: src/Console/AppConsole.vala:358 +#: src/Common/LinuxKernel.vala:1055 src/Console/AppConsole.vala:307 +#: src/Console/AppConsole.vala:362 msgid "No updates found" msgstr "Nema pronađenih nadopuna" @@ -233,8 +233,8 @@ msgstr "" msgid "Unknown option" msgstr "Nepoznata mogućnost" -#: src/Console/AppConsole.vala:165 src/Console/AppConsole.vala:249 -#: src/Console/AppConsole.vala:277 +#: src/Console/AppConsole.vala:165 src/Console/AppConsole.vala:253 +#: src/Console/AppConsole.vala:281 msgid "Run" msgstr "Pokreni" @@ -242,40 +242,40 @@ msgstr "Pokreni" msgid "to list all options" msgstr "za prikaz svih mogućnosti" -#: src/Console/AppConsole.vala:217 src/Console/AppConsole.vala:257 +#: src/Console/AppConsole.vala:221 src/Console/AppConsole.vala:261 msgid "No kernels specified" msgstr "Nema određenih kernela" -#: src/Console/AppConsole.vala:223 +#: src/Console/AppConsole.vala:227 msgid "Multiple kernels selected for installation. Select only one." msgstr "Više kernela je odabrano za instalaciju. odaberite samo jedan." -#: src/Console/AppConsole.vala:246 +#: src/Console/AppConsole.vala:250 msgid "Could not find requested version" msgstr "Nemoguće je pronaći zatraženu inačicu" -#: src/Console/AppConsole.vala:249 +#: src/Console/AppConsole.vala:253 msgid "and use a version string listed in first column" msgstr "i koristite izraz inačice prikazan u prvom stupcu" -#: src/Console/AppConsole.vala:276 +#: src/Console/AppConsole.vala:280 msgid "Command not specified" msgstr "Naredba nije navedena" -#: src/Console/AppConsole.vala:277 +#: src/Console/AppConsole.vala:281 msgid "to list all commands" msgstr "za prikaz svih mogućnosti" -#: src/Console/AppConsole.vala:331 src/Gtk/SettingsDialog.vala:166 +#: src/Console/AppConsole.vala:335 src/Gtk/SettingsDialog.vala:166 msgid "Show" msgstr "Prikaži" -#: src/Console/AppConsole.vala:336 src/Console/AppConsole.vala:348 +#: src/Console/AppConsole.vala:340 src/Console/AppConsole.vala:352 #, c-format msgid "Kernel %s Available" msgstr "Kernel %s je dostupan" -#: src/Console/AppConsole.vala:338 src/Console/AppConsole.vala:350 +#: src/Console/AppConsole.vala:342 src/Console/AppConsole.vala:354 #: src/Gtk/MainWindow.vala:270 msgid "Install" msgstr "Instaliraj" diff --git a/po/it.po b/po/it.po index 5260506c..add26ac2 100644 --- a/po/it.po +++ b/po/it.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline 1.0.15\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-10 09:00-0500\n" +"POT-Creation-Date: 2023-03-10 15:11-0500\n" "PO-Revision-Date: 2020-08-22 15:35+0100\n" "Last-Translator: Albano Battistella \n" "Language-Team: Italian\n" @@ -108,16 +108,16 @@ msgstr "I seguenti kernel verranno rimossi:" msgid "Continue ?" msgstr "Continuare ?" -#: src/Common/LinuxKernel.vala:1036 src/Console/AppConsole.vala:291 +#: src/Common/LinuxKernel.vala:1036 src/Console/AppConsole.vala:295 msgid "Latest update" msgstr "Ultimo aggiornamento" -#: src/Common/LinuxKernel.vala:1047 src/Console/AppConsole.vala:298 +#: src/Common/LinuxKernel.vala:1047 src/Console/AppConsole.vala:302 msgid "Latest point update" msgstr "Ultimo aggiornamento del punto" -#: src/Common/LinuxKernel.vala:1055 src/Console/AppConsole.vala:303 -#: src/Console/AppConsole.vala:358 +#: src/Common/LinuxKernel.vala:1055 src/Console/AppConsole.vala:307 +#: src/Console/AppConsole.vala:362 msgid "No updates found" msgstr "Nessun aggiornamento trovato" @@ -234,8 +234,8 @@ msgstr "" msgid "Unknown option" msgstr "Opzione sconosciuta" -#: src/Console/AppConsole.vala:165 src/Console/AppConsole.vala:249 -#: src/Console/AppConsole.vala:277 +#: src/Console/AppConsole.vala:165 src/Console/AppConsole.vala:253 +#: src/Console/AppConsole.vala:281 msgid "Run" msgstr "In corso" @@ -243,40 +243,40 @@ msgstr "In corso" msgid "to list all options" msgstr "Elencare tutte le opzioni" -#: src/Console/AppConsole.vala:217 src/Console/AppConsole.vala:257 +#: src/Console/AppConsole.vala:221 src/Console/AppConsole.vala:261 msgid "No kernels specified" msgstr "Nessun kernel specificato" -#: src/Console/AppConsole.vala:223 +#: src/Console/AppConsole.vala:227 msgid "Multiple kernels selected for installation. Select only one." msgstr "Più kernel selezionati per l'installazione. Selezionare uno solo." -#: src/Console/AppConsole.vala:246 +#: src/Console/AppConsole.vala:250 msgid "Could not find requested version" msgstr "Impossibile trovare la versione richiesta" -#: src/Console/AppConsole.vala:249 +#: src/Console/AppConsole.vala:253 msgid "and use a version string listed in first column" msgstr "e usa una stringa di versione elencata nella prima colonna" -#: src/Console/AppConsole.vala:276 +#: src/Console/AppConsole.vala:280 msgid "Command not specified" msgstr "Comando non specificato" -#: src/Console/AppConsole.vala:277 +#: src/Console/AppConsole.vala:281 msgid "to list all commands" msgstr "Elencare tutti i comandi" -#: src/Console/AppConsole.vala:331 src/Gtk/SettingsDialog.vala:166 +#: src/Console/AppConsole.vala:335 src/Gtk/SettingsDialog.vala:166 msgid "Show" msgstr "Mostra" -#: src/Console/AppConsole.vala:336 src/Console/AppConsole.vala:348 +#: src/Console/AppConsole.vala:340 src/Console/AppConsole.vala:352 #, c-format msgid "Kernel %s Available" msgstr "Kernel %s Disponibile" -#: src/Console/AppConsole.vala:338 src/Console/AppConsole.vala:350 +#: src/Console/AppConsole.vala:342 src/Console/AppConsole.vala:354 #: src/Gtk/MainWindow.vala:270 msgid "Install" msgstr "Installa" diff --git a/po/ko.po b/po/ko.po index d39db87b..f170dbb2 100644 --- a/po/ko.po +++ b/po/ko.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline 1.0.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-10 09:00-0500\n" +"POT-Creation-Date: 2023-03-10 15:11-0500\n" "PO-Revision-Date: 2022-09-28 11:48+0900\n" "Last-Translator: Kevin Kim \n" "Language-Team: Korean\n" @@ -110,16 +110,16 @@ msgstr "아래 커널이 삭제됩니다:" msgid "Continue ?" msgstr "계속하시겠습니까?" -#: src/Common/LinuxKernel.vala:1036 src/Console/AppConsole.vala:291 +#: src/Common/LinuxKernel.vala:1036 src/Console/AppConsole.vala:295 msgid "Latest update" msgstr "최신 업데이트" -#: src/Common/LinuxKernel.vala:1047 src/Console/AppConsole.vala:298 +#: src/Common/LinuxKernel.vala:1047 src/Console/AppConsole.vala:302 msgid "Latest point update" msgstr "최신 포인트 업데이트" -#: src/Common/LinuxKernel.vala:1055 src/Console/AppConsole.vala:303 -#: src/Console/AppConsole.vala:358 +#: src/Common/LinuxKernel.vala:1055 src/Console/AppConsole.vala:307 +#: src/Console/AppConsole.vala:362 msgid "No updates found" msgstr "업데이트를 찾을 수 없습니다" @@ -232,8 +232,8 @@ msgstr "--list 의 출력에서 가져온 하나 이상의 버전 문자열 (쉼 msgid "Unknown option" msgstr "알 수 없는 옵션" -#: src/Console/AppConsole.vala:165 src/Console/AppConsole.vala:249 -#: src/Console/AppConsole.vala:277 +#: src/Console/AppConsole.vala:165 src/Console/AppConsole.vala:253 +#: src/Console/AppConsole.vala:281 msgid "Run" msgstr "실행" @@ -241,40 +241,40 @@ msgstr "실행" msgid "to list all options" msgstr "모든 옵션을 나열" -#: src/Console/AppConsole.vala:217 src/Console/AppConsole.vala:257 +#: src/Console/AppConsole.vala:221 src/Console/AppConsole.vala:261 msgid "No kernels specified" msgstr "지정한 커널이 없습니다" -#: src/Console/AppConsole.vala:223 +#: src/Console/AppConsole.vala:227 msgid "Multiple kernels selected for installation. Select only one." msgstr "설치할 커널이 여러개 선택되었습니다. 하나의 커널만 선택하세요." -#: src/Console/AppConsole.vala:246 +#: src/Console/AppConsole.vala:250 msgid "Could not find requested version" msgstr "요청한 버전을 찾을 수 없습니다" -#: src/Console/AppConsole.vala:249 +#: src/Console/AppConsole.vala:253 msgid "and use a version string listed in first column" msgstr "첫 번째 열에 나열된 버전 문자열을 사용" -#: src/Console/AppConsole.vala:276 +#: src/Console/AppConsole.vala:280 msgid "Command not specified" msgstr "지정한 명령어가 없습니다" -#: src/Console/AppConsole.vala:277 +#: src/Console/AppConsole.vala:281 msgid "to list all commands" msgstr "모든 명령어 나열" -#: src/Console/AppConsole.vala:331 src/Gtk/SettingsDialog.vala:166 +#: src/Console/AppConsole.vala:335 src/Gtk/SettingsDialog.vala:166 msgid "Show" msgstr "보이기" -#: src/Console/AppConsole.vala:336 src/Console/AppConsole.vala:348 +#: src/Console/AppConsole.vala:340 src/Console/AppConsole.vala:352 #, c-format msgid "Kernel %s Available" msgstr "커널 %s 사용 가능" -#: src/Console/AppConsole.vala:338 src/Console/AppConsole.vala:350 +#: src/Console/AppConsole.vala:342 src/Console/AppConsole.vala:354 #: src/Gtk/MainWindow.vala:270 msgid "Install" msgstr "설치" diff --git a/po/messages.pot b/po/messages.pot index 2f5a8aba..e19f39dc 100644 --- a/po/messages.pot +++ b/po/messages.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline 1.1.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-10 09:32-0500\n" +"POT-Creation-Date: 2023-03-10 15:11-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -110,16 +110,16 @@ msgstr "" msgid "Continue ?" msgstr "" -#: src/Common/LinuxKernel.vala:1036 src/Console/AppConsole.vala:291 +#: src/Common/LinuxKernel.vala:1036 src/Console/AppConsole.vala:295 msgid "Latest update" msgstr "" -#: src/Common/LinuxKernel.vala:1047 src/Console/AppConsole.vala:298 +#: src/Common/LinuxKernel.vala:1047 src/Console/AppConsole.vala:302 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:1055 src/Console/AppConsole.vala:303 -#: src/Console/AppConsole.vala:358 +#: src/Common/LinuxKernel.vala:1055 src/Console/AppConsole.vala:307 +#: src/Console/AppConsole.vala:362 msgid "No updates found" msgstr "" @@ -230,8 +230,8 @@ msgstr "" msgid "Unknown option" msgstr "" -#: src/Console/AppConsole.vala:165 src/Console/AppConsole.vala:249 -#: src/Console/AppConsole.vala:277 +#: src/Console/AppConsole.vala:165 src/Console/AppConsole.vala:253 +#: src/Console/AppConsole.vala:281 msgid "Run" msgstr "" @@ -239,40 +239,40 @@ msgstr "" msgid "to list all options" msgstr "" -#: src/Console/AppConsole.vala:217 src/Console/AppConsole.vala:257 +#: src/Console/AppConsole.vala:221 src/Console/AppConsole.vala:261 msgid "No kernels specified" msgstr "" -#: src/Console/AppConsole.vala:223 +#: src/Console/AppConsole.vala:227 msgid "Multiple kernels selected for installation. Select only one." msgstr "" -#: src/Console/AppConsole.vala:246 +#: src/Console/AppConsole.vala:250 msgid "Could not find requested version" msgstr "" -#: src/Console/AppConsole.vala:249 +#: src/Console/AppConsole.vala:253 msgid "and use a version string listed in first column" msgstr "" -#: src/Console/AppConsole.vala:276 +#: src/Console/AppConsole.vala:280 msgid "Command not specified" msgstr "" -#: src/Console/AppConsole.vala:277 +#: src/Console/AppConsole.vala:281 msgid "to list all commands" msgstr "" -#: src/Console/AppConsole.vala:331 src/Gtk/SettingsDialog.vala:166 +#: src/Console/AppConsole.vala:335 src/Gtk/SettingsDialog.vala:166 msgid "Show" msgstr "" -#: src/Console/AppConsole.vala:336 src/Console/AppConsole.vala:348 +#: src/Console/AppConsole.vala:340 src/Console/AppConsole.vala:352 #, c-format msgid "Kernel %s Available" msgstr "" -#: src/Console/AppConsole.vala:338 src/Console/AppConsole.vala:350 +#: src/Console/AppConsole.vala:342 src/Console/AppConsole.vala:354 #: src/Gtk/MainWindow.vala:270 msgid "Install" msgstr "" diff --git a/po/nl.po b/po/nl.po index ac3bde81..bbb2999e 100644 --- a/po/nl.po +++ b/po/nl.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-10 09:00-0500\n" +"POT-Creation-Date: 2023-03-10 15:11-0500\n" "PO-Revision-Date: 2020-08-23 13:55+0200\n" "Last-Translator: Heimen Stoffels \n" "Language-Team: Dutch (Netherlands)\n" @@ -112,16 +112,16 @@ msgstr "De volgende kernels worden verwijderd:" msgid "Continue ?" msgstr "Wil je doorgaan?" -#: src/Common/LinuxKernel.vala:1036 src/Console/AppConsole.vala:291 +#: src/Common/LinuxKernel.vala:1036 src/Console/AppConsole.vala:295 msgid "Latest update" msgstr "Recentste update" -#: src/Common/LinuxKernel.vala:1047 src/Console/AppConsole.vala:298 +#: src/Common/LinuxKernel.vala:1047 src/Console/AppConsole.vala:302 msgid "Latest point update" msgstr "Recentste puntupdate" -#: src/Common/LinuxKernel.vala:1055 src/Console/AppConsole.vala:303 -#: src/Console/AppConsole.vala:358 +#: src/Common/LinuxKernel.vala:1055 src/Console/AppConsole.vala:307 +#: src/Console/AppConsole.vala:362 msgid "No updates found" msgstr "Geen updates gevonden" @@ -239,8 +239,8 @@ msgstr "" msgid "Unknown option" msgstr "Onbekende optie" -#: src/Console/AppConsole.vala:165 src/Console/AppConsole.vala:249 -#: src/Console/AppConsole.vala:277 +#: src/Console/AppConsole.vala:165 src/Console/AppConsole.vala:253 +#: src/Console/AppConsole.vala:281 msgid "Run" msgstr "Uitvoeren" @@ -248,41 +248,41 @@ msgstr "Uitvoeren" msgid "to list all options" msgstr "om alle opties te tonen" -#: src/Console/AppConsole.vala:217 src/Console/AppConsole.vala:257 +#: src/Console/AppConsole.vala:221 src/Console/AppConsole.vala:261 msgid "No kernels specified" msgstr "Geen kernels opgegeven" -#: src/Console/AppConsole.vala:223 +#: src/Console/AppConsole.vala:227 msgid "Multiple kernels selected for installation. Select only one." msgstr "" "Er zijn meerdere te installeren kernels geselecteerd. Selecteer er één." -#: src/Console/AppConsole.vala:246 +#: src/Console/AppConsole.vala:250 msgid "Could not find requested version" msgstr "De vereiste versie kan niet worden gevonden" -#: src/Console/AppConsole.vala:249 +#: src/Console/AppConsole.vala:253 msgid "and use a version string listed in first column" msgstr "en gebruik een versietekenreeks in de eerste kolom" -#: src/Console/AppConsole.vala:276 +#: src/Console/AppConsole.vala:280 msgid "Command not specified" msgstr "Geen opdracht opgegeven" -#: src/Console/AppConsole.vala:277 +#: src/Console/AppConsole.vala:281 msgid "to list all commands" msgstr "om alle opdrachten te tonen" -#: src/Console/AppConsole.vala:331 src/Gtk/SettingsDialog.vala:166 +#: src/Console/AppConsole.vala:335 src/Gtk/SettingsDialog.vala:166 msgid "Show" msgstr "Tonen" -#: src/Console/AppConsole.vala:336 src/Console/AppConsole.vala:348 +#: src/Console/AppConsole.vala:340 src/Console/AppConsole.vala:352 #, c-format msgid "Kernel %s Available" msgstr "Kernel %s is beschikbaar" -#: src/Console/AppConsole.vala:338 src/Console/AppConsole.vala:350 +#: src/Console/AppConsole.vala:342 src/Console/AppConsole.vala:354 #: src/Gtk/MainWindow.vala:270 msgid "Install" msgstr "Installeren" diff --git a/po/pl.po b/po/pl.po index a834769b..0e53e8e0 100644 --- a/po/pl.po +++ b/po/pl.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-10 09:32-0500\n" +"POT-Creation-Date: 2023-03-10 15:11-0500\n" "PO-Revision-Date: 2023-03-10 16:07+0100\n" "Last-Translator: Matthaiks\n" "Language-Team: Polish\n" @@ -105,16 +105,16 @@ msgstr "Następujące jądra zostaną odinstalowane:" msgid "Continue ?" msgstr "Kontynuować?" -#: src/Common/LinuxKernel.vala:1036 src/Console/AppConsole.vala:291 +#: src/Common/LinuxKernel.vala:1036 src/Console/AppConsole.vala:295 msgid "Latest update" msgstr "Najnowsza aktualizacja" -#: src/Common/LinuxKernel.vala:1047 src/Console/AppConsole.vala:298 +#: src/Common/LinuxKernel.vala:1047 src/Console/AppConsole.vala:302 msgid "Latest point update" msgstr "Najnowsza aktualizacja punktowa" -#: src/Common/LinuxKernel.vala:1055 src/Console/AppConsole.vala:303 -#: src/Console/AppConsole.vala:358 +#: src/Common/LinuxKernel.vala:1055 src/Console/AppConsole.vala:307 +#: src/Console/AppConsole.vala:362 msgid "No updates found" msgstr "Nie znaleziono aktualizacji" @@ -227,8 +227,8 @@ msgstr "" msgid "Unknown option" msgstr "Nieznana opcja" -#: src/Console/AppConsole.vala:165 src/Console/AppConsole.vala:249 -#: src/Console/AppConsole.vala:277 +#: src/Console/AppConsole.vala:165 src/Console/AppConsole.vala:253 +#: src/Console/AppConsole.vala:281 msgid "Run" msgstr "Uruchom" @@ -236,40 +236,40 @@ msgstr "Uruchom" msgid "to list all options" msgstr "do wyświetlenia wszystkich opcji" -#: src/Console/AppConsole.vala:217 src/Console/AppConsole.vala:257 +#: src/Console/AppConsole.vala:221 src/Console/AppConsole.vala:261 msgid "No kernels specified" msgstr "Nie wybrano jąder" -#: src/Console/AppConsole.vala:223 +#: src/Console/AppConsole.vala:227 msgid "Multiple kernels selected for installation. Select only one." msgstr "Wybrano kilka jąder do instalacji. Wybierz tylko jedno." -#: src/Console/AppConsole.vala:246 +#: src/Console/AppConsole.vala:250 msgid "Could not find requested version" msgstr "Nie można odnaleźć żądanej wersji" -#: src/Console/AppConsole.vala:249 +#: src/Console/AppConsole.vala:253 msgid "and use a version string listed in first column" msgstr "i użyć numeru wersji wymienionego w pierwszej kolumnie" -#: src/Console/AppConsole.vala:276 +#: src/Console/AppConsole.vala:280 msgid "Command not specified" msgstr "Nie określono polecenia" -#: src/Console/AppConsole.vala:277 +#: src/Console/AppConsole.vala:281 msgid "to list all commands" msgstr "do wyświetlenia wszystkich poleceń" -#: src/Console/AppConsole.vala:331 src/Gtk/SettingsDialog.vala:166 +#: src/Console/AppConsole.vala:335 src/Gtk/SettingsDialog.vala:166 msgid "Show" msgstr "Pokaż" -#: src/Console/AppConsole.vala:336 src/Console/AppConsole.vala:348 +#: src/Console/AppConsole.vala:340 src/Console/AppConsole.vala:352 #, c-format msgid "Kernel %s Available" msgstr "Dostępne %s jądra" -#: src/Console/AppConsole.vala:338 src/Console/AppConsole.vala:350 +#: src/Console/AppConsole.vala:342 src/Console/AppConsole.vala:354 #: src/Gtk/MainWindow.vala:270 msgid "Install" msgstr "Zainstaluj" diff --git a/po/ru.po b/po/ru.po index 6b784902..c4fd885d 100644 --- a/po/ru.po +++ b/po/ru.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-06 02:18-0500\n" +"POT-Creation-Date: 2023-03-10 15:11-0500\n" "PO-Revision-Date: 2023-03-06 22:07+0300\n" "Last-Translator: Faust3000 (Original) | Danik2343 (Update Transaltion) " "\n" @@ -111,16 +111,16 @@ msgstr "Следующие ядра будут деинсталлированы: msgid "Continue ?" msgstr "Продолжить ?" -#: src/Common/LinuxKernel.vala:1036 src/Console/AppConsole.vala:291 +#: src/Common/LinuxKernel.vala:1036 src/Console/AppConsole.vala:295 msgid "Latest update" msgstr "Последнее обновление" -#: src/Common/LinuxKernel.vala:1047 src/Console/AppConsole.vala:298 +#: src/Common/LinuxKernel.vala:1047 src/Console/AppConsole.vala:302 msgid "Latest point update" msgstr "Последнее обновление пунктов" -#: src/Common/LinuxKernel.vala:1055 src/Console/AppConsole.vala:303 -#: src/Console/AppConsole.vala:358 +#: src/Common/LinuxKernel.vala:1055 src/Console/AppConsole.vala:307 +#: src/Console/AppConsole.vala:362 msgid "No updates found" msgstr "Обновлений не найдено" @@ -234,8 +234,8 @@ msgstr "" msgid "Unknown option" msgstr "Неизвестный параметр" -#: src/Console/AppConsole.vala:165 src/Console/AppConsole.vala:249 -#: src/Console/AppConsole.vala:277 +#: src/Console/AppConsole.vala:165 src/Console/AppConsole.vala:253 +#: src/Console/AppConsole.vala:281 msgid "Run" msgstr "Используется" @@ -243,40 +243,40 @@ msgstr "Используется" msgid "to list all options" msgstr "чтобы перечислить все параметры" -#: src/Console/AppConsole.vala:217 src/Console/AppConsole.vala:257 +#: src/Console/AppConsole.vala:221 src/Console/AppConsole.vala:261 msgid "No kernels specified" msgstr "Ядра не указаны" -#: src/Console/AppConsole.vala:223 +#: src/Console/AppConsole.vala:227 msgid "Multiple kernels selected for installation. Select only one." msgstr "Для установки выбрано несколько ядер. Выберите только одно." -#: src/Console/AppConsole.vala:246 +#: src/Console/AppConsole.vala:250 msgid "Could not find requested version" msgstr "Не удалось найти запрошенную версию" -#: src/Console/AppConsole.vala:249 +#: src/Console/AppConsole.vala:253 msgid "and use a version string listed in first column" msgstr "и использовать строку версии, указанную в первом столбце" -#: src/Console/AppConsole.vala:276 +#: src/Console/AppConsole.vala:280 msgid "Command not specified" msgstr "Команда не указана" -#: src/Console/AppConsole.vala:277 +#: src/Console/AppConsole.vala:281 msgid "to list all commands" msgstr "чтобы перечислить все команды" -#: src/Console/AppConsole.vala:331 src/Gtk/SettingsDialog.vala:166 +#: src/Console/AppConsole.vala:335 src/Gtk/SettingsDialog.vala:166 msgid "Show" msgstr "Показать" -#: src/Console/AppConsole.vala:336 src/Console/AppConsole.vala:348 +#: src/Console/AppConsole.vala:340 src/Console/AppConsole.vala:352 #, c-format msgid "Kernel %s Available" msgstr "Доступно ядро %s" -#: src/Console/AppConsole.vala:338 src/Console/AppConsole.vala:350 +#: src/Console/AppConsole.vala:342 src/Console/AppConsole.vala:354 #: src/Gtk/MainWindow.vala:270 msgid "Install" msgstr "Установить" diff --git a/po/sv.po b/po/sv.po index 53d0aa57..df3427b3 100644 --- a/po/sv.po +++ b/po/sv.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-10 09:00-0500\n" +"POT-Creation-Date: 2023-03-10 15:11-0500\n" "PO-Revision-Date: 2018-01-13 16:56+0100\n" "Last-Translator: Åke Engelbrektson \n" "Language-Team:Swedish\n" @@ -113,16 +113,16 @@ msgstr "Denna kärna är redan installerad" msgid "Continue ?" msgstr "" -#: src/Common/LinuxKernel.vala:1036 src/Console/AppConsole.vala:291 +#: src/Common/LinuxKernel.vala:1036 src/Console/AppConsole.vala:295 msgid "Latest update" msgstr "" -#: src/Common/LinuxKernel.vala:1047 src/Console/AppConsole.vala:298 +#: src/Common/LinuxKernel.vala:1047 src/Console/AppConsole.vala:302 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:1055 src/Console/AppConsole.vala:303 -#: src/Console/AppConsole.vala:358 +#: src/Common/LinuxKernel.vala:1055 src/Console/AppConsole.vala:307 +#: src/Console/AppConsole.vala:362 msgid "No updates found" msgstr "Inga uppdateringar hittades" @@ -243,8 +243,8 @@ msgstr "" msgid "Unknown option" msgstr "Okänt alternativ" -#: src/Console/AppConsole.vala:165 src/Console/AppConsole.vala:249 -#: src/Console/AppConsole.vala:277 +#: src/Console/AppConsole.vala:165 src/Console/AppConsole.vala:253 +#: src/Console/AppConsole.vala:281 #, fuzzy msgid "Run" msgstr "Körs" @@ -254,41 +254,41 @@ msgstr "Körs" msgid "to list all options" msgstr "Visa alla alternativ" -#: src/Console/AppConsole.vala:217 src/Console/AppConsole.vala:257 +#: src/Console/AppConsole.vala:221 src/Console/AppConsole.vala:261 msgid "No kernels specified" msgstr "" -#: src/Console/AppConsole.vala:223 +#: src/Console/AppConsole.vala:227 msgid "Multiple kernels selected for installation. Select only one." msgstr "Flera kärnor valda för installation. Välj endast en." -#: src/Console/AppConsole.vala:246 +#: src/Console/AppConsole.vala:250 msgid "Could not find requested version" msgstr "Kunde inte hitta efterfrågad version" -#: src/Console/AppConsole.vala:249 +#: src/Console/AppConsole.vala:253 msgid "and use a version string listed in first column" msgstr "" -#: src/Console/AppConsole.vala:276 +#: src/Console/AppConsole.vala:280 msgid "Command not specified" msgstr "" -#: src/Console/AppConsole.vala:277 +#: src/Console/AppConsole.vala:281 #, fuzzy msgid "to list all commands" msgstr "Visa alla alternativ" -#: src/Console/AppConsole.vala:331 src/Gtk/SettingsDialog.vala:166 +#: src/Console/AppConsole.vala:335 src/Gtk/SettingsDialog.vala:166 msgid "Show" msgstr "" -#: src/Console/AppConsole.vala:336 src/Console/AppConsole.vala:348 +#: src/Console/AppConsole.vala:340 src/Console/AppConsole.vala:352 #, fuzzy, c-format msgid "Kernel %s Available" msgstr "Tillgängliga paket" -#: src/Console/AppConsole.vala:338 src/Console/AppConsole.vala:350 +#: src/Console/AppConsole.vala:342 src/Console/AppConsole.vala:354 #: src/Gtk/MainWindow.vala:270 msgid "Install" msgstr "Installera" diff --git a/po/tr.po b/po/tr.po index 08928cd3..b5af5670 100644 --- a/po/tr.po +++ b/po/tr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-10 09:00-0500\n" +"POT-Creation-Date: 2023-03-10 15:11-0500\n" "PO-Revision-Date: 2022-08-06 16:48+0300\n" "Last-Translator: Sabri Ünal \n" "Language-Team: Turkish\n" @@ -110,17 +110,17 @@ msgstr "Aşağıdaki çekirdekler kaldırılacak:" msgid "Continue ?" msgstr "Devam edilsin mi?" -#: src/Common/LinuxKernel.vala:1036 src/Console/AppConsole.vala:291 +#: src/Common/LinuxKernel.vala:1036 src/Console/AppConsole.vala:295 msgid "Latest update" msgstr "Son güncelleme" # Point burada point release anlamında kullanılıyor. Örneğin 5.10.x sayısının en sonundaki x rakamı point release/nokta sürüm oluyor. -#: src/Common/LinuxKernel.vala:1047 src/Console/AppConsole.vala:298 +#: src/Common/LinuxKernel.vala:1047 src/Console/AppConsole.vala:302 msgid "Latest point update" msgstr "Son nokta güncellemesi" -#: src/Common/LinuxKernel.vala:1055 src/Console/AppConsole.vala:303 -#: src/Console/AppConsole.vala:358 +#: src/Common/LinuxKernel.vala:1055 src/Console/AppConsole.vala:307 +#: src/Console/AppConsole.vala:362 msgid "No updates found" msgstr "Güncelleme bulunamadı" @@ -235,8 +235,8 @@ msgstr "" msgid "Unknown option" msgstr "Bilinmeyen seçenek" -#: src/Console/AppConsole.vala:165 src/Console/AppConsole.vala:249 -#: src/Console/AppConsole.vala:277 +#: src/Console/AppConsole.vala:165 src/Console/AppConsole.vala:253 +#: src/Console/AppConsole.vala:281 msgid "Run" msgstr "Çalıştır" @@ -244,40 +244,40 @@ msgstr "Çalıştır" msgid "to list all options" msgstr "tüm seçenekleri listele" -#: src/Console/AppConsole.vala:217 src/Console/AppConsole.vala:257 +#: src/Console/AppConsole.vala:221 src/Console/AppConsole.vala:261 msgid "No kernels specified" msgstr "Çekirdek belirtilmedi" -#: src/Console/AppConsole.vala:223 +#: src/Console/AppConsole.vala:227 msgid "Multiple kernels selected for installation. Select only one." msgstr "Kurulum için birden fazla çekirdek seçildi. Sadece bir tane seçiniz." -#: src/Console/AppConsole.vala:246 +#: src/Console/AppConsole.vala:250 msgid "Could not find requested version" msgstr "İstenen sürüm bulunamadı" -#: src/Console/AppConsole.vala:249 +#: src/Console/AppConsole.vala:253 msgid "and use a version string listed in first column" msgstr "ve ilk sütunda listelenen bir sürüm dizgesini kullanın" -#: src/Console/AppConsole.vala:276 +#: src/Console/AppConsole.vala:280 msgid "Command not specified" msgstr "Komut belirtilmedi" -#: src/Console/AppConsole.vala:277 +#: src/Console/AppConsole.vala:281 msgid "to list all commands" msgstr "tüm komutları listele" -#: src/Console/AppConsole.vala:331 src/Gtk/SettingsDialog.vala:166 +#: src/Console/AppConsole.vala:335 src/Gtk/SettingsDialog.vala:166 msgid "Show" msgstr "Göster" -#: src/Console/AppConsole.vala:336 src/Console/AppConsole.vala:348 +#: src/Console/AppConsole.vala:340 src/Console/AppConsole.vala:352 #, c-format msgid "Kernel %s Available" msgstr "Çekirdek %s Kullanılabilir" -#: src/Console/AppConsole.vala:338 src/Console/AppConsole.vala:350 +#: src/Console/AppConsole.vala:342 src/Console/AppConsole.vala:354 #: src/Gtk/MainWindow.vala:270 msgid "Install" msgstr "Kur" diff --git a/po/uk.po b/po/uk.po index 5f98ecfc..eedb057c 100644 --- a/po/uk.po +++ b/po/uk.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-10 09:00-0500\n" +"POT-Creation-Date: 2023-03-10 15:11-0500\n" "PO-Revision-Date: 2019-07-25 11:00+0300\n" "Last-Translator: Serhii Golovko \n" "Language-Team: Ukranian\n" @@ -107,16 +107,16 @@ msgstr "Наступні ядра будуть видалені:" msgid "Continue ?" msgstr "Продовжувати ?" -#: src/Common/LinuxKernel.vala:1036 src/Console/AppConsole.vala:291 +#: src/Common/LinuxKernel.vala:1036 src/Console/AppConsole.vala:295 msgid "Latest update" msgstr "Останнє оновлення" -#: src/Common/LinuxKernel.vala:1047 src/Console/AppConsole.vala:298 +#: src/Common/LinuxKernel.vala:1047 src/Console/AppConsole.vala:302 msgid "Latest point update" msgstr "Остання точка оновлення" -#: src/Common/LinuxKernel.vala:1055 src/Console/AppConsole.vala:303 -#: src/Console/AppConsole.vala:358 +#: src/Common/LinuxKernel.vala:1055 src/Console/AppConsole.vala:307 +#: src/Console/AppConsole.vala:362 msgid "No updates found" msgstr "Оновлень не знайдено" @@ -227,8 +227,8 @@ msgstr "Одна або кілька рядків версії (розділен msgid "Unknown option" msgstr "Невідомий параметр" -#: src/Console/AppConsole.vala:165 src/Console/AppConsole.vala:249 -#: src/Console/AppConsole.vala:277 +#: src/Console/AppConsole.vala:165 src/Console/AppConsole.vala:253 +#: src/Console/AppConsole.vala:281 msgid "Run" msgstr "Запуск" @@ -236,40 +236,40 @@ msgstr "Запуск" msgid "to list all options" msgstr "Показати усі параметри" -#: src/Console/AppConsole.vala:217 src/Console/AppConsole.vala:257 +#: src/Console/AppConsole.vala:221 src/Console/AppConsole.vala:261 msgid "No kernels specified" msgstr "Ядра не вказані" -#: src/Console/AppConsole.vala:223 +#: src/Console/AppConsole.vala:227 msgid "Multiple kernels selected for installation. Select only one." msgstr "Для встановлення вибрано кілька ядер. Виберіть лише одну." -#: src/Console/AppConsole.vala:246 +#: src/Console/AppConsole.vala:250 msgid "Could not find requested version" msgstr "Не вдалося знайти запитувану версію" -#: src/Console/AppConsole.vala:249 +#: src/Console/AppConsole.vala:253 msgid "and use a version string listed in first column" msgstr "і використовувати рядок версій, вказаний у першому стовпці" -#: src/Console/AppConsole.vala:276 +#: src/Console/AppConsole.vala:280 msgid "Command not specified" msgstr "Команда не вказана" -#: src/Console/AppConsole.vala:277 +#: src/Console/AppConsole.vala:281 msgid "to list all commands" msgstr "щоб відобразити всі команди" -#: src/Console/AppConsole.vala:331 src/Gtk/SettingsDialog.vala:166 +#: src/Console/AppConsole.vala:335 src/Gtk/SettingsDialog.vala:166 msgid "Show" msgstr "Показати" -#: src/Console/AppConsole.vala:336 src/Console/AppConsole.vala:348 +#: src/Console/AppConsole.vala:340 src/Console/AppConsole.vala:352 #, c-format msgid "Kernel %s Available" msgstr "Ядро %s Доступне" -#: src/Console/AppConsole.vala:338 src/Console/AppConsole.vala:350 +#: src/Console/AppConsole.vala:342 src/Console/AppConsole.vala:354 #: src/Gtk/MainWindow.vala:270 msgid "Install" msgstr "Встановити" From c9fa83051175141eddb39d8a84d0c3fc512dcb69 Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Sat, 11 Mar 2023 05:47:24 -0500 Subject: [PATCH 261/567] 1.1.5, add proxy support, fix --install-point --- .deb_build_number.mak | 2 +- Makefile | 6 +- README.md | 65 +++--- README.md.src | 65 +++--- debian/changelog | 5 +- po/de.po | 197 ++++++++--------- po/el.po | 197 ++++++++--------- po/es.po | 196 ++++++++--------- po/fr.po | 197 ++++++++--------- po/hr.po | 197 ++++++++--------- po/it.po | 197 ++++++++--------- po/ko.po | 197 ++++++++--------- po/messages.pot | 192 ++++++++--------- po/nl.po | 197 ++++++++--------- po/pl.po | 198 +++++++++--------- po/ru.po | 197 ++++++++--------- po/sv.po | 196 ++++++++--------- po/tr.po | 197 ++++++++--------- po/uk.po | 197 ++++++++--------- settings.md | 5 +- src/Common/DownloadManager.vala | 22 +- src/Common/LinuxKernel.vala | 72 +++---- src/Common/Main.vala | 60 +++--- src/Console/AppConsole.vala | 2 +- src/{Utility => }/Gtk/AboutWindow.vala | 8 +- src/Gtk/AppGtk.vala | 14 +- src/Gtk/MainWindow.vala | 35 ++-- src/Gtk/ProgressWindow.vala | 4 +- src/Gtk/SettingsDialog.vala | 31 ++- src/Gtk/TerminalWindow.vala | 4 +- .../Gtk/GtkHelper.vala => Gtk/l.gtk.vala} | 31 +-- src/Utility/TeeJee.System.vala | 61 ------ src/{Utility => lib}/AsyncTask.vala | 2 +- src/{Utility => lib}/TeeJee.FileSystem.vala | 56 ----- src/{Utility => lib}/TeeJee.JsonHelper.vala | 50 ++--- src/{Utility => lib}/TeeJee.Logging.vala | 34 --- src/{Utility => lib}/TeeJee.Misc.vala | 31 --- .../TeeJee.ProcessHelper.vala | 4 +- src/lib/l.time.vala | 21 ++ 39 files changed, 1668 insertions(+), 1774 deletions(-) rename src/{Utility => }/Gtk/AboutWindow.vala (97%) rename src/{Utility/Gtk/GtkHelper.vala => Gtk/l.gtk.vala} (61%) delete mode 100644 src/Utility/TeeJee.System.vala rename src/{Utility => lib}/AsyncTask.vala (99%) rename src/{Utility => lib}/TeeJee.FileSystem.vala (71%) rename src/{Utility => lib}/TeeJee.JsonHelper.vala (79%) rename src/{Utility => lib}/TeeJee.Logging.vala (66%) rename src/{Utility => lib}/TeeJee.Misc.vala (79%) rename src/{Utility => lib}/TeeJee.ProcessHelper.vala (96%) create mode 100644 src/lib/l.time.vala diff --git a/.deb_build_number.mak b/.deb_build_number.mak index 8ccf2c56..b96c37db 100644 --- a/.deb_build_number.mak +++ b/.deb_build_number.mak @@ -1,3 +1,3 @@ # This file is generated by Makefile "make deb_build_number" DEB_PKG_VERSION := 1.1.5 -DEB_BUILD_NUMBER := 0000 +DEB_BUILD_NUMBER := 0001 diff --git a/Makefile b/Makefile index 6848b47a..f18044c6 100644 --- a/Makefile +++ b/Makefile @@ -5,7 +5,7 @@ DEFAULT_PPA_URI := https://kernel.ubuntu.com/~kernel-ppa/mainline/ SHELL := /bin/bash CFLAGS := -O2 -VALACFLAGS := #--enable-deprecated +VALACFLAGS := prefix := /usr bindir := $(prefix)/bin @@ -43,9 +43,9 @@ misc_files := README.md \ debian/copyright \ # share/polkit-1/actions/$(BRANDING_SHORTNAME).policy -common_vala_files := src/Common/*.vala src/Utility/*.vala +common_vala_files := src/Common/*.vala src/lib/*.vala tui_vala_files := src/Console/*.vala -gui_vala_files := src/Gtk/*.vala src/Utility/Gtk/*.vala +gui_vala_files := src/Gtk/*.vala po_files := po/*.po pot_file := po/messages.pot diff --git a/README.md b/README.md index 5d109fae..ff937c09 100644 --- a/README.md +++ b/README.md @@ -1,30 +1,31 @@ -### Ubuntu Mainline Kernel Installer +# Ubuntu Mainline Kernel Installer A tool for installing the latest Linux kernels from the [ubuntu mainline ppa](https://kernel.ubuntu.com/~kernel-ppa/mainline/) onto debian-based distributions. ![Main window screenshot](main_window.png) -### About +## About mainline is a fork of [ukuu](https://github.com/teejee2008/ukuu) -### Changes +## Changes * Changed name from "ukuu" to "mainline" * Removed all GRUB / bootloader options * Removed all donate buttons, links, dialogs * Removed un-related/un-used code * Better temp and cache management * Better desktop notification behavior +* Reduced dependencies and system()s (still ongoing) * Slow but ongoing re-writes of most parts -### Features +## Features * Download the list of available kernels from the [Ubuntu Mainline PPA](http://kernel.ubuntu.com/~kernel-ppa/mainline/) * Display, install, uninstall, available and installed kernels conveniently, gui and cli * For each kernel, the related headers & modules packages are automatically grouped and installed or uninstalled at the same time * Optionally monitor and send desktop notifications when new kernels become available -### Not Features +## Not Features * Care if the kernels run or boot or are compatible with your system beyond the basic plaform arch and whatever dependencies the .deb packages declare and dpkg enforces. The mainline-ppa kernel deb packages are produced with no warranty. When they work, great, when they don't, don't use them. This app intentionally does not even touch a single grub or bootloader file itself. All it does is download .deb packages that the ubuntu kernel team authors, and runs dpkg to install them the same way you would manually. -### Install +# Install The [PPA](https://code.launchpad.net/~cappelikan/+archive/ubuntu/ppa) is kindly maintained by [cappelikan](https://github.com/cappelikan) ``` sudo add-apt-repository ppa:cappelikan/ppa @@ -34,7 +35,7 @@ sudo apt install mainline There is also usually a single reference .deb package in [releases](../../releases/latest), generated by ```make release_deb``` but it is usually not current. -### Build +# Build ``` sudo apt install libgee-0.8-dev libjson-glib-dev libvte-2.91-dev valac aria2 lsb-release make gettext dpkg-dev git clone https://github.com/bkw777/mainline.git @@ -43,7 +44,7 @@ make sudo make install ``` -### Usage +# Usage Look for System -> Ubuntu Mainline Kernel Installer in your desktop's Applications/Start menu. Otherwise: @@ -59,33 +60,34 @@ $ mainline-gtk Note that neither of those commands invoked sudo or pkexec or other su-alike. The app runs as the user and uses pkexec internally just for the dpkg command. -**Install** downloads and installs the selected kernel +## Buttons +**\[ Install \]** - downloads and installs the selected kernel -**Uninstall** uninstalls the selected kernel(1) +**\[ Uninstall \]** - uninstalls the selected kernel(1) -**Changes** displays the CHANGES file for the selected kernel +**\[ Changes \]** - displays the CHANGES file for the selected kernel -**PPA** launches your default https:// handler to the web page for the selected kernel +**\[ PPA \]** - launches your default https:// handler to the web page for the selected kernel If no kernels are selected (when first launching the app before clicking on any) launches the main page listing all the kernels. -**Uninstall Old** uninstalls all installed kernels below the latest installed version(1) +**\[ Uninstall Old \]** - uninstalls all installed kernels below the latest installed version(1) -**Reload** deletes, re-downloads, and re-reads the local cached copies of all the index.html's from the mainline-ppa web site, and regenerates the displayed list. +**\[ Reload \]** - deletes, re-downloads, and re-reads the local cached copies of all the index.html's from the mainline-ppa web site, and regenerates the displayed list. Management of these files has been a problem with this app in the past due to various spaghetti code and permissions issues. -This is much better now, but there can still be occasional glitches from bad downloads or sometimes the upstream contents change after your copy was downloaded. For instance a kernel might be invalid when you happened to first cache it, and then later become valid (failed build that later succeeded), but your local cached info about that kernel doesn't know it, etc. -Normally the app tries not to re-download things as much as possible for speed and annoyance reasons. The main index is always re-downloaded at least once every start-up, but the individual pages for each kernel are cached and never re-downloaded by default, only new/missing ones are downloaded. +This is much more reliable now, but there can still be glitches from bad downloads or sometimes the upstream contents change after your copy was downloaded. For instance a kernel might be invalid when you happened to first cache it, and then later become valid (failed build that later succeeded), but your local cached info about that kernel doesn't know it, etc. +Normally the app avoids re-downloading things as much as possible for speed and annoyance reasons. The main index is always re-downloaded at least once every start-up, but the individual pages for each kernel are cached and never re-downloaded by default, only new/missing ones are downloaded. That can lead to some files being stale or wrong over time, so, to compensate for that, this button just makes it as convenient as possible to force a full re-load any time you want. -**Settings** access the [settings](settings.md) dialog to configure various options +**\[ Settings \]** - access the [settings](settings.md) dialog to configure various options -**About** basic info and credits +**\[ About \]** - basic info and credits -**Exit** order pizza +**\[ Exit \]** - order pizza (1) In all cases the currently running kernel is protected and the app will not uninstall the currently running kernel. For the single manual uninstall button, the button simply isn't activated. For the cli app if you manually give that version, it will simply ignore it. For uninstall-old, either gui or cli, the currently running kernel is simply skipped over when scanning and building the list of uninstall candidates. -### Help / FAQ +# Help / FAQ * Secure Boot Possibly useful, I have not tried: @@ -95,10 +97,19 @@ For the single manual uninstall button, the button simply isn't activated. For t [Install libssl3](../../wiki/Install-libssl3) * Missing kernels - Failed or incomplete builds for your platform/arch are not included in the list. - If you think the list is missing something, press the "PPA" button to jump to the mainline-ppa web site where the .deb packages come from, and look at the build results for the missing kernel, and you will usually find that it is a failed or incomplete build for your arch, and can not be installed. - -### TODO & WIP -* Make the background process for notifications detect when the user logs out of the desktop session and exit itself -* Move the notification/dbus code from the current shell script into the app and make an "applet mode" -* Combine the gtk and cli apps into one, or, make the gtk app into a pure front-end for the cli app, either way is better than the current mix of overlapping concerns and duplicate logic + Failed or incomplete builds for your platform/arch are not shown. + If you think the list is missing something, and the "Reload" button didn't make it appear, press the "PPA" button to jump to the mainline-ppa web site where the .deb packages come from, and look at the build results for the missing kernel, and you will usually find that it is a failed or incomplete build for your arch, and can not be installed. + +# TODO & WIP +* Improve the how "invalid" is determined, perhaps use the "status" file as suggested in #71 +* Add some extra info into the version strings used for display and --install etc, to better handle multiple kernels of the same main version but from different sources, and other differences like builds and platform/feature options etc +* Replace system("aria2c ...") with libsoup or libcurl or similar +* Make the background process for notifications detect when the user logs out of the desktop session and exit itself +* Move the notification/dbus code from the current shell script into the app and make an "applet" mode +* Combine the gtk and cli apps into one, or, make the gtk app into a pure front-end for the cli app, either way +* Replace the commandline parser +* Allow attaching notes to each kernel +* Toggle display of invalid kernels so you could at least see they aren't simply missing, and use the "PPA" button too +* UI quick toggle for show/hide unstable/-rc kernels +* Right-click menu for more functions for a given kernel, such as reloading the cache just for a single kernel to check for new build status etc, without adding 18 buttons all over the ui. +* Support all installable kernel variants, not just "-generic" diff --git a/README.md.src b/README.md.src index 1b393081..cbdf135c 100644 --- a/README.md.src +++ b/README.md.src @@ -1,30 +1,31 @@ -### BRANDING_LONGNAME +# BRANDING_LONGNAME A tool for installing the latest Linux kernels from the [ubuntu mainline ppa](https://kernel.ubuntu.com/~kernel-ppa/mainline/) onto debian-based distributions. ![Main window screenshot](main_window.png) -### About +## About BRANDING_SHORTNAME is a fork of [ukuu](https://github.com/teejee2008/ukuu) -### Changes +## Changes * Changed name from "ukuu" to "BRANDING_SHORTNAME" * Removed all GRUB / bootloader options * Removed all donate buttons, links, dialogs * Removed un-related/un-used code * Better temp and cache management * Better desktop notification behavior +* Reduced dependencies and system()s (still ongoing) * Slow but ongoing re-writes of most parts -### Features +## Features * Download the list of available kernels from the [Ubuntu Mainline PPA](http://kernel.ubuntu.com/~kernel-ppa/mainline/) * Display, install, uninstall, available and installed kernels conveniently, gui and cli * For each kernel, the related headers & modules packages are automatically grouped and installed or uninstalled at the same time * Optionally monitor and send desktop notifications when new kernels become available -### Not Features +## Not Features * Care if the kernels run or boot or are compatible with your system beyond the basic plaform arch and whatever dependencies the .deb packages declare and dpkg enforces. The mainline-ppa kernel deb packages are produced with no warranty. When they work, great, when they don't, don't use them. This app intentionally does not even touch a single grub or bootloader file itself. All it does is download .deb packages that the ubuntu kernel team authors, and runs dpkg to install them the same way you would manually. -### Install +# Install The [PPA](https://code.launchpad.net/~cappelikan/+archive/ubuntu/ppa) is kindly maintained by [cappelikan](https://github.com/cappelikan) ``` sudo add-apt-repository ppa:cappelikan/ppa @@ -34,7 +35,7 @@ sudo apt install BRANDING_SHORTNAME There is also usually a single reference .deb package in [releases](../../releases/latest), generated by ```make release_deb``` but it is usually not current. -### Build +# Build ``` sudo apt install libgee-0.8-dev libjson-glib-dev libvte-2.91-dev valac aria2 lsb-release make gettext dpkg-dev git clone BRANDING_GITREPO @@ -43,7 +44,7 @@ make sudo make install ``` -### Usage +# Usage Look for System -> BRANDING_LONGNAME in your desktop's Applications/Start menu. Otherwise: @@ -59,33 +60,34 @@ $ BRANDING_SHORTNAME-gtk Note that neither of those commands invoked sudo or pkexec or other su-alike. The app runs as the user and uses pkexec internally just for the dpkg command. -**Install** downloads and installs the selected kernel +## Buttons +**\[ Install \]** - downloads and installs the selected kernel -**Uninstall** uninstalls the selected kernel(1) +**\[ Uninstall \]** - uninstalls the selected kernel(1) -**Changes** displays the CHANGES file for the selected kernel +**\[ Changes \]** - displays the CHANGES file for the selected kernel -**PPA** launches your default https:// handler to the web page for the selected kernel +**\[ PPA \]** - launches your default https:// handler to the web page for the selected kernel If no kernels are selected (when first launching the app before clicking on any) launches the main page listing all the kernels. -**Uninstall Old** uninstalls all installed kernels below the latest installed version(1) +**\[ Uninstall Old \]** - uninstalls all installed kernels below the latest installed version(1) -**Reload** deletes, re-downloads, and re-reads the local cached copies of all the index.html's from the mainline-ppa web site, and regenerates the displayed list. +**\[ Reload \]** - deletes, re-downloads, and re-reads the local cached copies of all the index.html's from the mainline-ppa web site, and regenerates the displayed list. Management of these files has been a problem with this app in the past due to various spaghetti code and permissions issues. -This is much better now, but there can still be occasional glitches from bad downloads or sometimes the upstream contents change after your copy was downloaded. For instance a kernel might be invalid when you happened to first cache it, and then later become valid (failed build that later succeeded), but your local cached info about that kernel doesn't know it, etc. -Normally the app tries not to re-download things as much as possible for speed and annoyance reasons. The main index is always re-downloaded at least once every start-up, but the individual pages for each kernel are cached and never re-downloaded by default, only new/missing ones are downloaded. +This is much more reliable now, but there can still be glitches from bad downloads or sometimes the upstream contents change after your copy was downloaded. For instance a kernel might be invalid when you happened to first cache it, and then later become valid (failed build that later succeeded), but your local cached info about that kernel doesn't know it, etc. +Normally the app avoids re-downloading things as much as possible for speed and annoyance reasons. The main index is always re-downloaded at least once every start-up, but the individual pages for each kernel are cached and never re-downloaded by default, only new/missing ones are downloaded. That can lead to some files being stale or wrong over time, so, to compensate for that, this button just makes it as convenient as possible to force a full re-load any time you want. -**Settings** access the [settings](settings.md) dialog to configure various options +**\[ Settings \]** - access the [settings](settings.md) dialog to configure various options -**About** basic info and credits +**\[ About \]** - basic info and credits -**Exit** order pizza +**\[ Exit \]** - order pizza (1) In all cases the currently running kernel is protected and the app will not uninstall the currently running kernel. For the single manual uninstall button, the button simply isn't activated. For the cli app if you manually give that version, it will simply ignore it. For uninstall-old, either gui or cli, the currently running kernel is simply skipped over when scanning and building the list of uninstall candidates. -### Help / FAQ +# Help / FAQ * Secure Boot Possibly useful, I have not tried: @@ -95,10 +97,19 @@ For the single manual uninstall button, the button simply isn't activated. For t [Install libssl3](../../wiki/Install-libssl3) * Missing kernels - Failed or incomplete builds for your platform/arch are not included in the list. - If you think the list is missing something, press the "PPA" button to jump to the mainline-ppa web site where the .deb packages come from, and look at the build results for the missing kernel, and you will usually find that it is a failed or incomplete build for your arch, and can not be installed. - -### TODO & WIP -* Make the background process for notifications detect when the user logs out of the desktop session and exit itself -* Move the notification/dbus code from the current shell script into the app and make an "applet mode" -* Combine the gtk and cli apps into one, or, make the gtk app into a pure front-end for the cli app, either way is better than the current mix of overlapping concerns and duplicate logic + Failed or incomplete builds for your platform/arch are not shown. + If you think the list is missing something, and the "Reload" button didn't make it appear, press the "PPA" button to jump to the mainline-ppa web site where the .deb packages come from, and look at the build results for the missing kernel, and you will usually find that it is a failed or incomplete build for your arch, and can not be installed. + +# TODO & WIP +* Improve the how "invalid" is determined, perhaps use the "status" file as suggested in #71 +* Add some extra info into the version strings used for display and --install etc, to better handle multiple kernels of the same main version but from different sources, and other differences like builds and platform/feature options etc +* Replace system("aria2c ...") with libsoup or libcurl or similar +* Make the background process for notifications detect when the user logs out of the desktop session and exit itself +* Move the notification/dbus code from the current shell script into the app and make an "applet" mode +* Combine the gtk and cli apps into one, or, make the gtk app into a pure front-end for the cli app, either way +* Replace the commandline parser +* Allow attaching notes to each kernel +* Toggle display of invalid kernels so you could at least see they aren't simply missing, and use the "PPA" button too +* UI quick toggle for show/hide unstable/-rc kernels +* Right-click menu for more functions for a given kernel, such as reloading the cache just for a single kernel to check for new build status etc, without adding 18 buttons all over the ui. +* Support all installable kernel variants, not just "-generic" diff --git a/debian/changelog b/debian/changelog index 432925d6..653aa05c 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,5 +1,6 @@ mainline (1.1.5) unstable; urgency=medium + * Add proxy setting * Jonas Gorski fix "--install-point" broken by d7943e5 -- Brian K. White Fri, 10 Mar 2023 15:14:55 -0500 @@ -24,9 +25,9 @@ mainline (1.1.2) unstable; urgency=medium * dir_delete() replace system("rm -rf ...") with native code * uninstall-old look at latest installed version instead of currently running version * change the logic for determining the oldest version to display. - threshold_major = whechever is lower: latest_available-show_prev_majors or oldest_installed + threshold_major = whichever is lower: latest_available-previous_majors or oldest_installed - So you can keep show_previous_N_majors set at 0 to show only the most recent kernels by default, + So you can keep show_N_previous_majors set at 0 to show only the most recent kernels by default, yet still have access to all the kernels from your oldest installed kernel and up. -- Brian K. White Wed, 08 Mar 2023 03:51:23 -0500 diff --git a/po/de.po b/po/de.po index d920efbd..3074b7ca 100644 --- a/po/de.po +++ b/po/de.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-10 15:11-0500\n" +"POT-Creation-Date: 2023-03-11 05:01-0500\n" "PO-Revision-Date: 2023-02-20 18:40+0100\n" "Last-Translator: Marvin Meysel \n" "Language-Team: German\n" @@ -13,11 +13,11 @@ msgstr "" "X-Launchpad-Export-Date: 2017-04-13 11:48+0000\n" "X-Generator: Poedit 3.1.1\n" -#: src/Common/LinuxKernel.vala:89 +#: src/Common/LinuxKernel.vala:87 msgid "Distribution" msgstr "Distribution" -#: src/Common/LinuxKernel.vala:104 +#: src/Common/LinuxKernel.vala:102 msgid "Architecture" msgstr "Architektur" @@ -30,113 +30,113 @@ msgstr "Index abrufen..." msgid "Updating from" msgstr "" -#: src/Common/LinuxKernel.vala:736 +#: src/Common/LinuxKernel.vala:738 msgid "Packages Available" msgstr "Verfügbare Pakete" -#: src/Common/LinuxKernel.vala:741 +#: src/Common/LinuxKernel.vala:743 msgid "Packages Installed" msgstr "Installierte Pakete" -#: src/Common/LinuxKernel.vala:754 src/Utility/TeeJee.FileSystem.vala:136 +#: src/Common/LinuxKernel.vala:756 src/lib/TeeJee.FileSystem.vala:121 msgid "File not found" msgstr "Datei nicht gefunden " -#: src/Common/LinuxKernel.vala:819 +#: src/Common/LinuxKernel.vala:821 msgid "Available Kernels" msgstr "Verfügbare Kernel" -#: src/Common/LinuxKernel.vala:826 src/Gtk/MainWindow.vala:158 +#: src/Common/LinuxKernel.vala:828 src/Gtk/MainWindow.vala:158 msgid "Installed" msgstr "Installiert" -#: src/Common/LinuxKernel.vala:826 src/Gtk/MainWindow.vala:158 -#: src/Gtk/MainWindow.vala:504 src/Gtk/MainWindow.vala:517 +#: src/Common/LinuxKernel.vala:828 src/Gtk/MainWindow.vala:158 +#: src/Gtk/MainWindow.vala:503 src/Gtk/MainWindow.vala:516 msgid "Running" msgstr "Läuft" -#: src/Common/LinuxKernel.vala:861 +#: src/Common/LinuxKernel.vala:863 msgid "Downloading" msgstr "Herunterladen" -#: src/Common/LinuxKernel.vala:880 +#: src/Common/LinuxKernel.vala:882 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:883 +#: src/Common/LinuxKernel.vala:885 msgid "ERROR" msgstr "Fehler" -#: src/Common/LinuxKernel.vala:897 +#: src/Common/LinuxKernel.vala:899 msgid "This kernel is already installed." msgstr "Dieser Kernel ist bereits installiert." -#: src/Common/LinuxKernel.vala:927 +#: src/Common/LinuxKernel.vala:929 #, fuzzy msgid "Uninstalling selected kernels" msgstr "Deinstallation des angegebenen Kernels" -#: src/Common/LinuxKernel.vala:933 +#: src/Common/LinuxKernel.vala:935 msgid "requested" msgstr "" -#: src/Common/LinuxKernel.vala:936 +#: src/Common/LinuxKernel.vala:938 msgid "skipping the currently booted kernel" msgstr "" -#: src/Common/LinuxKernel.vala:952 +#: src/Common/LinuxKernel.vala:954 msgid "found" msgstr "" -#: src/Common/LinuxKernel.vala:955 +#: src/Common/LinuxKernel.vala:957 #, fuzzy msgid "No packages to un-install!" msgstr "Installierte Pakete" -#: src/Common/LinuxKernel.vala:994 +#: src/Common/LinuxKernel.vala:996 #, fuzzy msgid "Could not find running kernel in list" msgstr "Konnte keinen laufenden Kernel in der Liste finden!" -#: src/Common/LinuxKernel.vala:1000 +#: src/Common/LinuxKernel.vala:1002 msgid "Could not find any kernels to uninstall" msgstr "Es konnten keine Kernel zum Deinstallieren gefunden werden" -#: src/Common/LinuxKernel.vala:1009 +#: src/Common/LinuxKernel.vala:1011 msgid "The following kernels will be uninstalled:" msgstr "Die folgenden Kernel werden deinstalliert:" -#: src/Common/LinuxKernel.vala:1013 +#: src/Common/LinuxKernel.vala:1015 msgid "Continue ?" msgstr "Weiter ?" -#: src/Common/LinuxKernel.vala:1036 src/Console/AppConsole.vala:295 +#: src/Common/LinuxKernel.vala:1038 src/Console/AppConsole.vala:295 msgid "Latest update" msgstr "Neustes Update" -#: src/Common/LinuxKernel.vala:1047 src/Console/AppConsole.vala:302 +#: src/Common/LinuxKernel.vala:1049 src/Console/AppConsole.vala:302 msgid "Latest point update" msgstr "Letzte Punktaktualisierung" -#: src/Common/LinuxKernel.vala:1055 src/Console/AppConsole.vala:307 +#: src/Common/LinuxKernel.vala:1057 src/Console/AppConsole.vala:307 #: src/Console/AppConsole.vala:362 msgid "No updates found" msgstr "Keine Updates gefunden" -#: src/Common/LinuxKernel.vala:1064 +#: src/Common/LinuxKernel.vala:1066 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Kernel-Version %s installieren? (j/n):" -#: src/Common/Main.vala:253 +#: src/Common/Main.vala:240 msgid "Called from" msgstr "Angerufen von" -#: src/Common/Main.vala:287 +#: src/Common/Main.vala:274 msgid "Notifications are disabled" msgstr "Benachrichtigungen sind deaktiviert" -#: src/Common/Main.vala:325 src/Gtk/MainWindow.vala:615 +#: src/Common/Main.vala:312 src/Gtk/MainWindow.vala:614 #, fuzzy msgid "Can not reach" msgstr "Fehler beim lesen der Datei" @@ -146,7 +146,7 @@ msgstr "Fehler beim lesen der Datei" msgid "File not found: %s" msgstr "Datei nicht gefunden " -#: src/Console/AppConsole.vala:62 src/Gtk/AppGtk.vala:143 +#: src/Console/AppConsole.vala:62 src/Gtk/AppGtk.vala:135 msgid "Syntax" msgstr "Syntax" @@ -199,7 +199,7 @@ msgstr "Herunterladen bestimmter Kernel" msgid "Delete cached info about available kernels" msgstr "" -#: src/Console/AppConsole.vala:78 src/Gtk/AppGtk.vala:145 +#: src/Console/AppConsole.vala:78 src/Gtk/AppGtk.vala:137 msgid "Options" msgstr "Optionen" @@ -231,7 +231,7 @@ msgstr "" "Eine oder mehrere (durch Komma getrennte) Versionszeichenfolgen aus der " "Ausgabe von --list" -#: src/Console/AppConsole.vala:164 src/Gtk/AppGtk.vala:129 +#: src/Console/AppConsole.vala:164 src/Gtk/AppGtk.vala:121 msgid "Unknown option" msgstr "Unbekannte Option" @@ -280,20 +280,56 @@ msgid "Kernel %s Available" msgstr "Kernel %s verfügbar" #: src/Console/AppConsole.vala:342 src/Console/AppConsole.vala:354 -#: src/Gtk/MainWindow.vala:270 +#: src/Gtk/MainWindow.vala:269 msgid "Install" msgstr "Installieren" -#: src/Gtk/AppGtk.vala:143 +#: src/Gtk/AboutWindow.vala:264 src/Gtk/AboutWindow.vala:281 +msgid "Credits" +msgstr "Credits" + +#: src/Gtk/AboutWindow.vala:277 +msgid "Back" +msgstr "Zurück" + +#: src/Gtk/AboutWindow.vala:287 src/Gtk/TerminalWindow.vala:154 +msgid "Close" +msgstr "Schließen" + +#: src/Gtk/AboutWindow.vala:306 +msgid "Authors" +msgstr "Autoren" + +#: src/Gtk/AboutWindow.vala:314 +msgid "Contributions" +msgstr "Beiträge" + +#: src/Gtk/AboutWindow.vala:322 +msgid "Artists" +msgstr "Künstler" + +#: src/Gtk/AboutWindow.vala:330 +msgid "Translators" +msgstr "Übersetzer" + +#: src/Gtk/AboutWindow.vala:338 +msgid "Documenters" +msgstr "Dokumentierer" + +#: src/Gtk/AboutWindow.vala:346 +msgid "Third Party Inclusions" +msgstr "Einschlüsse von Drittparteien" + +#: src/Gtk/AppGtk.vala:135 #, fuzzy msgid "options" msgstr "Optionen" -#: src/Gtk/AppGtk.vala:147 +#: src/Gtk/AppGtk.vala:139 msgid "Print debug information" msgstr "Zeige Debug Informationen" -#: src/Gtk/AppGtk.vala:148 +#: src/Gtk/AppGtk.vala:140 msgid "Show all options" msgstr "Alle Optionen anzeigen" @@ -305,60 +341,60 @@ msgstr "Kernel" msgid "Status" msgstr "Status" -#: src/Gtk/MainWindow.vala:280 +#: src/Gtk/MainWindow.vala:279 msgid "Uninstall" msgstr "Deinstallieren" -#: src/Gtk/MainWindow.vala:290 +#: src/Gtk/MainWindow.vala:289 msgid "Changes" msgstr "Änderungen" -#: src/Gtk/MainWindow.vala:312 +#: src/Gtk/MainWindow.vala:311 msgid "Uninstall Old" msgstr "Alte deinstallieren" -#: src/Gtk/MainWindow.vala:313 +#: src/Gtk/MainWindow.vala:312 msgid "Uninstall kernels older than running kernel" msgstr "Deinstallation von Kerneln, die älter sind als der aktuelle Kernel" -#: src/Gtk/MainWindow.vala:318 +#: src/Gtk/MainWindow.vala:317 msgid "Reload" msgstr "" -#: src/Gtk/MainWindow.vala:323 src/Gtk/SettingsDialog.vala:50 +#: src/Gtk/MainWindow.vala:322 src/Gtk/SettingsDialog.vala:50 msgid "Settings" msgstr "Einstellungen" -#: src/Gtk/MainWindow.vala:328 +#: src/Gtk/MainWindow.vala:327 msgid "About" msgstr "Über" -#: src/Gtk/MainWindow.vala:333 +#: src/Gtk/MainWindow.vala:332 msgid "Exit" msgstr "" -#: src/Gtk/MainWindow.vala:401 +#: src/Gtk/MainWindow.vala:400 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Kernel-Upgrade-Dienstprogramm für Ubuntu-basierte Distributionen" -#: src/Gtk/MainWindow.vala:402 +#: src/Gtk/MainWindow.vala:401 msgid "Forked" msgstr "Forked" -#: src/Gtk/MainWindow.vala:402 +#: src/Gtk/MainWindow.vala:401 msgid "Original" msgstr "Original" -#: src/Gtk/MainWindow.vala:440 +#: src/Gtk/MainWindow.vala:439 msgid "Updating kernels" msgstr "" -#: src/Gtk/MainWindow.vala:513 +#: src/Gtk/MainWindow.vala:512 msgid "available" msgstr "Verfügbar" -#: src/Gtk/MainWindow.vala:546 src/Gtk/MainWindow.vala:579 -#: src/Gtk/MainWindow.vala:606 +#: src/Gtk/MainWindow.vala:545 src/Gtk/MainWindow.vala:578 +#: src/Gtk/MainWindow.vala:605 msgid "DONE" msgstr "" @@ -403,8 +439,8 @@ msgid "Second(s)" msgstr "Sekunde(n)" #: src/Gtk/SettingsDialog.vala:148 -msgid "Display" -msgstr "Anzeige" +msgid "Filters" +msgstr "" #: src/Gtk/SettingsDialog.vala:156 msgid "Hide unstable and RC releases" @@ -412,15 +448,16 @@ msgstr "Unstable- und RC-Versionen ausblenden" #: src/Gtk/SettingsDialog.vala:178 #, fuzzy -msgid "previous major versions " +msgid "previous major versions" msgstr "N frühere Hauptversionen anzeigen" #: src/Gtk/SettingsDialog.vala:182 -msgid "Other" -msgstr "Anderes" +msgid "Network" +msgstr "" #: src/Gtk/SettingsDialog.vala:193 -msgid "Internet connection timeout in " +#, fuzzy +msgid "Internet connection timeout in" msgstr "Zeitüberschreitung der Internetverbindung in" #: src/Gtk/SettingsDialog.vala:205 @@ -431,50 +468,18 @@ msgstr "Sekunden" msgid "Max concurrent downloads" msgstr "Maximale Anzahl gleichzeitiger Downloads" -#: src/Gtk/TerminalWindow.vala:154 src/Utility/Gtk/AboutWindow.vala:287 -msgid "Close" -msgstr "Schließen" - -#: src/Utility/Gtk/AboutWindow.vala:264 src/Utility/Gtk/AboutWindow.vala:281 -msgid "Credits" -msgstr "Credits" - -#: src/Utility/Gtk/AboutWindow.vala:277 -msgid "Back" -msgstr "Zurück" - -#: src/Utility/Gtk/AboutWindow.vala:306 -msgid "Authors" -msgstr "Autoren" - -#: src/Utility/Gtk/AboutWindow.vala:314 -msgid "Contributions" -msgstr "Beiträge" - -#: src/Utility/Gtk/AboutWindow.vala:322 -msgid "Artists" -msgstr "Künstler" - -#: src/Utility/Gtk/AboutWindow.vala:330 -msgid "Translators" -msgstr "Übersetzer" - -#: src/Utility/Gtk/AboutWindow.vala:338 -msgid "Documenters" -msgstr "Dokumentierer" - -#: src/Utility/Gtk/AboutWindow.vala:346 -msgid "Third Party Inclusions" -msgstr "Einschlüsse von Drittparteien" +#: src/Gtk/SettingsDialog.vala:226 +msgid "Proxy" +msgstr "" -#: src/Utility/Gtk/GtkHelper.vala:49 +#: src/Gtk/l.gtk.vala:44 msgid "Missing Icon" msgstr "Fehlendes Symbol" -#: src/Utility/TeeJee.Logging.vala:52 +#: src/lib/TeeJee.Logging.vala:43 msgid "E" msgstr "E" -#: src/Utility/TeeJee.Logging.vala:68 +#: src/lib/TeeJee.Logging.vala:50 msgid "D" msgstr "D" diff --git a/po/el.po b/po/el.po index 4dae7a63..babf11e0 100644 --- a/po/el.po +++ b/po/el.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-10 15:11-0500\n" +"POT-Creation-Date: 2023-03-11 05:01-0500\n" "PO-Revision-Date: 2023-01-10 02:03-0600\n" "Last-Translator: Vasilis Kosmidis \n" "Language-Team: Greek\n" @@ -13,11 +13,11 @@ msgstr "" "X-Launchpad-Export-Date: 2017-04-13 11:48+0000\n" "X-Generator: Poedit 2.0.5\n" -#: src/Common/LinuxKernel.vala:89 +#: src/Common/LinuxKernel.vala:87 msgid "Distribution" msgstr "Διανομή" -#: src/Common/LinuxKernel.vala:104 +#: src/Common/LinuxKernel.vala:102 msgid "Architecture" msgstr "Αρχιτεκτονική" @@ -30,114 +30,114 @@ msgstr "Ανάκτηση ευρετηρίου..." msgid "Updating from" msgstr "" -#: src/Common/LinuxKernel.vala:736 +#: src/Common/LinuxKernel.vala:738 msgid "Packages Available" msgstr "Διαθέσιμα πακέτα" -#: src/Common/LinuxKernel.vala:741 +#: src/Common/LinuxKernel.vala:743 msgid "Packages Installed" msgstr "Εγκατεστημένα πακέτα" -#: src/Common/LinuxKernel.vala:754 src/Utility/TeeJee.FileSystem.vala:136 +#: src/Common/LinuxKernel.vala:756 src/lib/TeeJee.FileSystem.vala:121 msgid "File not found" msgstr "Το αρχείο δε βρέθηκε" -#: src/Common/LinuxKernel.vala:819 +#: src/Common/LinuxKernel.vala:821 msgid "Available Kernels" msgstr "Διαθέσιμοι πυρήνες" -#: src/Common/LinuxKernel.vala:826 src/Gtk/MainWindow.vala:158 +#: src/Common/LinuxKernel.vala:828 src/Gtk/MainWindow.vala:158 msgid "Installed" msgstr "Εγκατεστημένος" -#: src/Common/LinuxKernel.vala:826 src/Gtk/MainWindow.vala:158 -#: src/Gtk/MainWindow.vala:504 src/Gtk/MainWindow.vala:517 +#: src/Common/LinuxKernel.vala:828 src/Gtk/MainWindow.vala:158 +#: src/Gtk/MainWindow.vala:503 src/Gtk/MainWindow.vala:516 msgid "Running" msgstr "Ενεργός" -#: src/Common/LinuxKernel.vala:861 +#: src/Common/LinuxKernel.vala:863 msgid "Downloading" msgstr "Λήψη" -#: src/Common/LinuxKernel.vala:880 +#: src/Common/LinuxKernel.vala:882 msgid "OK" msgstr "ΟΚ" -#: src/Common/LinuxKernel.vala:883 +#: src/Common/LinuxKernel.vala:885 msgid "ERROR" msgstr "ΣΦΑΛΜΑ" -#: src/Common/LinuxKernel.vala:897 +#: src/Common/LinuxKernel.vala:899 msgid "This kernel is already installed." msgstr "Αυτός ο πυρήνας είναι ήδη εγκατεστημένος." -#: src/Common/LinuxKernel.vala:927 +#: src/Common/LinuxKernel.vala:929 #, fuzzy msgid "Uninstalling selected kernels" msgstr "Απεγκατάσταση του καθορισμένου πυρήνα" -#: src/Common/LinuxKernel.vala:933 +#: src/Common/LinuxKernel.vala:935 msgid "requested" msgstr "" -#: src/Common/LinuxKernel.vala:936 +#: src/Common/LinuxKernel.vala:938 msgid "skipping the currently booted kernel" msgstr "" -#: src/Common/LinuxKernel.vala:952 +#: src/Common/LinuxKernel.vala:954 msgid "found" msgstr "" -#: src/Common/LinuxKernel.vala:955 +#: src/Common/LinuxKernel.vala:957 #, fuzzy msgid "No packages to un-install!" msgstr "Εγκατεστημένα πακέτα" -#: src/Common/LinuxKernel.vala:994 +#: src/Common/LinuxKernel.vala:996 #, fuzzy msgid "Could not find running kernel in list" msgstr "Δεν ήταν δυνατή η εύρεση του τρέχοντος πυρήνα στη λίστα!" -#: src/Common/LinuxKernel.vala:1000 +#: src/Common/LinuxKernel.vala:1002 msgid "Could not find any kernels to uninstall" msgstr "Δεν βρέθηκε κανένας πυρήνας για απεγκατάσταση" -#: src/Common/LinuxKernel.vala:1009 +#: src/Common/LinuxKernel.vala:1011 #, fuzzy msgid "The following kernels will be uninstalled:" msgstr "Αυτός ο πυρήνας είναι ήδη εγκατεστημένος." -#: src/Common/LinuxKernel.vala:1013 +#: src/Common/LinuxKernel.vala:1015 msgid "Continue ?" msgstr "Συνέχεια;" -#: src/Common/LinuxKernel.vala:1036 src/Console/AppConsole.vala:295 +#: src/Common/LinuxKernel.vala:1038 src/Console/AppConsole.vala:295 msgid "Latest update" msgstr "Τελευταία αναβάθμιση" -#: src/Common/LinuxKernel.vala:1047 src/Console/AppConsole.vala:302 +#: src/Common/LinuxKernel.vala:1049 src/Console/AppConsole.vala:302 msgid "Latest point update" msgstr "Τελευταία ενημέρωση συντήρησης" -#: src/Common/LinuxKernel.vala:1055 src/Console/AppConsole.vala:307 +#: src/Common/LinuxKernel.vala:1057 src/Console/AppConsole.vala:307 #: src/Console/AppConsole.vala:362 msgid "No updates found" msgstr "Δεν βρέθηκαν ενημερώσεις" -#: src/Common/LinuxKernel.vala:1064 +#: src/Common/LinuxKernel.vala:1066 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Εγκατάσταση του πυρήνα έκδοσης %s ; (ν/ό):" -#: src/Common/Main.vala:253 +#: src/Common/Main.vala:240 msgid "Called from" msgstr "Κλήθηκε από" -#: src/Common/Main.vala:287 +#: src/Common/Main.vala:274 msgid "Notifications are disabled" msgstr "Οι ειδοποιήσεις είναι απενεργοποιημένες" -#: src/Common/Main.vala:325 src/Gtk/MainWindow.vala:615 +#: src/Common/Main.vala:312 src/Gtk/MainWindow.vala:614 #, fuzzy msgid "Can not reach" msgstr "Αποτυχία ανάγνωσης του αρχείου" @@ -147,7 +147,7 @@ msgstr "Αποτυχία ανάγνωσης του αρχείου" msgid "File not found: %s" msgstr "Το αρχείο δε βρέθηκε" -#: src/Console/AppConsole.vala:62 src/Gtk/AppGtk.vala:143 +#: src/Console/AppConsole.vala:62 src/Gtk/AppGtk.vala:135 msgid "Syntax" msgstr "Σύνταξη" @@ -199,7 +199,7 @@ msgstr "Λήψη των καθορισμένων πυρήνων" msgid "Delete cached info about available kernels" msgstr "" -#: src/Console/AppConsole.vala:78 src/Gtk/AppGtk.vala:145 +#: src/Console/AppConsole.vala:78 src/Gtk/AppGtk.vala:137 msgid "Options" msgstr "Επιλογές" @@ -231,7 +231,7 @@ msgstr "" "Μία ή περισσότερες συμβολοσειρές έκδοσης (χωρισμένες με κόμμα) που " "λαμβάνονται από την έξοδο του --list" -#: src/Console/AppConsole.vala:164 src/Gtk/AppGtk.vala:129 +#: src/Console/AppConsole.vala:164 src/Gtk/AppGtk.vala:121 msgid "Unknown option" msgstr "Άγνωστη επιλογή" @@ -279,20 +279,56 @@ msgid "Kernel %s Available" msgstr "Πυρήνας %s διαθέσιμος" #: src/Console/AppConsole.vala:342 src/Console/AppConsole.vala:354 -#: src/Gtk/MainWindow.vala:270 +#: src/Gtk/MainWindow.vala:269 msgid "Install" msgstr "Εγκατάσταση" -#: src/Gtk/AppGtk.vala:143 +#: src/Gtk/AboutWindow.vala:264 src/Gtk/AboutWindow.vala:281 +msgid "Credits" +msgstr "Μνεία" + +#: src/Gtk/AboutWindow.vala:277 +msgid "Back" +msgstr "Πίσω" + +#: src/Gtk/AboutWindow.vala:287 src/Gtk/TerminalWindow.vala:154 +msgid "Close" +msgstr "Κλείσιμο" + +#: src/Gtk/AboutWindow.vala:306 +msgid "Authors" +msgstr "Συγγραφείς" + +#: src/Gtk/AboutWindow.vala:314 +msgid "Contributions" +msgstr "Συνεισφορές" + +#: src/Gtk/AboutWindow.vala:322 +msgid "Artists" +msgstr "Καλλιτέχνες" + +#: src/Gtk/AboutWindow.vala:330 +msgid "Translators" +msgstr "Μεταφραστές" + +#: src/Gtk/AboutWindow.vala:338 +msgid "Documenters" +msgstr "Τεκμηριωτές" + +#: src/Gtk/AboutWindow.vala:346 +msgid "Third Party Inclusions" +msgstr "Συμπεριλήψεις τρίτων" + +#: src/Gtk/AppGtk.vala:135 #, fuzzy msgid "options" msgstr "Επιλογές" -#: src/Gtk/AppGtk.vala:147 +#: src/Gtk/AppGtk.vala:139 msgid "Print debug information" msgstr "Εκτύπωση πληροφοριών εντοπισμού σφαλμάτων" -#: src/Gtk/AppGtk.vala:148 +#: src/Gtk/AppGtk.vala:140 msgid "Show all options" msgstr "Εμφάνιση όλων των επιλογών" @@ -304,60 +340,60 @@ msgstr "Πυρήνας" msgid "Status" msgstr "Κατάσταση" -#: src/Gtk/MainWindow.vala:280 +#: src/Gtk/MainWindow.vala:279 msgid "Uninstall" msgstr "Απεγκατάσταση" -#: src/Gtk/MainWindow.vala:290 +#: src/Gtk/MainWindow.vala:289 msgid "Changes" msgstr "Αλλαγές" -#: src/Gtk/MainWindow.vala:312 +#: src/Gtk/MainWindow.vala:311 msgid "Uninstall Old" msgstr "Απεγκατάσταση παλαιών" -#: src/Gtk/MainWindow.vala:313 +#: src/Gtk/MainWindow.vala:312 msgid "Uninstall kernels older than running kernel" msgstr "Απεγκαταστήστε πυρήνες παλαιότερους από τον ενεργό" -#: src/Gtk/MainWindow.vala:318 +#: src/Gtk/MainWindow.vala:317 msgid "Reload" msgstr "" -#: src/Gtk/MainWindow.vala:323 src/Gtk/SettingsDialog.vala:50 +#: src/Gtk/MainWindow.vala:322 src/Gtk/SettingsDialog.vala:50 msgid "Settings" msgstr "Ρυθμίσεις" -#: src/Gtk/MainWindow.vala:328 +#: src/Gtk/MainWindow.vala:327 msgid "About" msgstr "Σχετικά" -#: src/Gtk/MainWindow.vala:333 +#: src/Gtk/MainWindow.vala:332 msgid "Exit" msgstr "" -#: src/Gtk/MainWindow.vala:401 +#: src/Gtk/MainWindow.vala:400 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Πρόγραμμα αναβάθμισης πυρήνα για διανομές που βασίζονται στο Ubuntu" -#: src/Gtk/MainWindow.vala:402 +#: src/Gtk/MainWindow.vala:401 msgid "Forked" msgstr "Forked" -#: src/Gtk/MainWindow.vala:402 +#: src/Gtk/MainWindow.vala:401 msgid "Original" msgstr "Πρωτότυπο" -#: src/Gtk/MainWindow.vala:440 +#: src/Gtk/MainWindow.vala:439 msgid "Updating kernels" msgstr "" -#: src/Gtk/MainWindow.vala:513 +#: src/Gtk/MainWindow.vala:512 msgid "available" msgstr "διαθέσιμος" -#: src/Gtk/MainWindow.vala:546 src/Gtk/MainWindow.vala:579 -#: src/Gtk/MainWindow.vala:606 +#: src/Gtk/MainWindow.vala:545 src/Gtk/MainWindow.vala:578 +#: src/Gtk/MainWindow.vala:605 msgid "DONE" msgstr "" @@ -402,8 +438,8 @@ msgid "Second(s)" msgstr "Δευτερόλεπτα" #: src/Gtk/SettingsDialog.vala:148 -msgid "Display" -msgstr "Απεικόνιση" +msgid "Filters" +msgstr "" #: src/Gtk/SettingsDialog.vala:156 msgid "Hide unstable and RC releases" @@ -411,15 +447,16 @@ msgstr "Απόκρυψη ασταθών και RC εκδόσεων" #: src/Gtk/SettingsDialog.vala:178 #, fuzzy -msgid "previous major versions " +msgid "previous major versions" msgstr "Εμφάνιση N προηγούμενων κύριων εκδόσεων " #: src/Gtk/SettingsDialog.vala:182 -msgid "Other" -msgstr "Άλλες" +msgid "Network" +msgstr "" #: src/Gtk/SettingsDialog.vala:193 -msgid "Internet connection timeout in " +#, fuzzy +msgid "Internet connection timeout in" msgstr "Λήξη χρονικού ορίου σύνδεσης στο διαδίκτυο " #: src/Gtk/SettingsDialog.vala:205 @@ -430,50 +467,18 @@ msgstr "δευτερόλεπτα" msgid "Max concurrent downloads" msgstr "Μέγιστες ταυτόχρονες λήψεις" -#: src/Gtk/TerminalWindow.vala:154 src/Utility/Gtk/AboutWindow.vala:287 -msgid "Close" -msgstr "Κλείσιμο" - -#: src/Utility/Gtk/AboutWindow.vala:264 src/Utility/Gtk/AboutWindow.vala:281 -msgid "Credits" -msgstr "Μνεία" - -#: src/Utility/Gtk/AboutWindow.vala:277 -msgid "Back" -msgstr "Πίσω" - -#: src/Utility/Gtk/AboutWindow.vala:306 -msgid "Authors" -msgstr "Συγγραφείς" - -#: src/Utility/Gtk/AboutWindow.vala:314 -msgid "Contributions" -msgstr "Συνεισφορές" - -#: src/Utility/Gtk/AboutWindow.vala:322 -msgid "Artists" -msgstr "Καλλιτέχνες" - -#: src/Utility/Gtk/AboutWindow.vala:330 -msgid "Translators" -msgstr "Μεταφραστές" - -#: src/Utility/Gtk/AboutWindow.vala:338 -msgid "Documenters" -msgstr "Τεκμηριωτές" - -#: src/Utility/Gtk/AboutWindow.vala:346 -msgid "Third Party Inclusions" -msgstr "Συμπεριλήψεις τρίτων" +#: src/Gtk/SettingsDialog.vala:226 +msgid "Proxy" +msgstr "" -#: src/Utility/Gtk/GtkHelper.vala:49 +#: src/Gtk/l.gtk.vala:44 msgid "Missing Icon" msgstr "Ελλείπον εικονίδιο" -#: src/Utility/TeeJee.Logging.vala:52 +#: src/lib/TeeJee.Logging.vala:43 msgid "E" msgstr "E" -#: src/Utility/TeeJee.Logging.vala:68 +#: src/lib/TeeJee.Logging.vala:50 msgid "D" msgstr "D" diff --git a/po/es.po b/po/es.po index 888f6c74..2a6bb0cc 100644 --- a/po/es.po +++ b/po/es.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-10 15:11-0500\n" +"POT-Creation-Date: 2023-03-11 05:01-0500\n" "PO-Revision-Date: 2018-01-03 02:03-0600\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish\n" @@ -13,11 +13,11 @@ msgstr "" "X-Launchpad-Export-Date: 2017-04-13 11:48+0000\n" "X-Generator: Poedit 2.0.5\n" -#: src/Common/LinuxKernel.vala:89 +#: src/Common/LinuxKernel.vala:87 msgid "Distribution" msgstr "Distribución" -#: src/Common/LinuxKernel.vala:104 +#: src/Common/LinuxKernel.vala:102 msgid "Architecture" msgstr "Arquitectura del sistema" @@ -30,116 +30,116 @@ msgstr "Recuperando índice..." msgid "Updating from" msgstr "" -#: src/Common/LinuxKernel.vala:736 +#: src/Common/LinuxKernel.vala:738 msgid "Packages Available" msgstr "Paquetes disponibles" -#: src/Common/LinuxKernel.vala:741 +#: src/Common/LinuxKernel.vala:743 msgid "Packages Installed" msgstr "Paquetes instalados" -#: src/Common/LinuxKernel.vala:754 src/Utility/TeeJee.FileSystem.vala:136 +#: src/Common/LinuxKernel.vala:756 src/lib/TeeJee.FileSystem.vala:121 msgid "File not found" msgstr "No se encontró el archivo" -#: src/Common/LinuxKernel.vala:819 +#: src/Common/LinuxKernel.vala:821 msgid "Available Kernels" msgstr "Núcleos disponibles" -#: src/Common/LinuxKernel.vala:826 src/Gtk/MainWindow.vala:158 +#: src/Common/LinuxKernel.vala:828 src/Gtk/MainWindow.vala:158 msgid "Installed" msgstr "Instalado" -#: src/Common/LinuxKernel.vala:826 src/Gtk/MainWindow.vala:158 -#: src/Gtk/MainWindow.vala:504 src/Gtk/MainWindow.vala:517 +#: src/Common/LinuxKernel.vala:828 src/Gtk/MainWindow.vala:158 +#: src/Gtk/MainWindow.vala:503 src/Gtk/MainWindow.vala:516 msgid "Running" msgstr "En ejecución" -#: src/Common/LinuxKernel.vala:861 +#: src/Common/LinuxKernel.vala:863 msgid "Downloading" msgstr "Descargando" -#: src/Common/LinuxKernel.vala:880 +#: src/Common/LinuxKernel.vala:882 msgid "OK" msgstr "Aceptar" -#: src/Common/LinuxKernel.vala:883 +#: src/Common/LinuxKernel.vala:885 msgid "ERROR" msgstr "ERROR" -#: src/Common/LinuxKernel.vala:897 +#: src/Common/LinuxKernel.vala:899 msgid "This kernel is already installed." msgstr "Este núcleo ya se instaló." -#: src/Common/LinuxKernel.vala:927 +#: src/Common/LinuxKernel.vala:929 #, fuzzy msgid "Uninstalling selected kernels" msgstr "Instalar núcleo troncal especificado" -#: src/Common/LinuxKernel.vala:933 +#: src/Common/LinuxKernel.vala:935 msgid "requested" msgstr "" -#: src/Common/LinuxKernel.vala:936 +#: src/Common/LinuxKernel.vala:938 msgid "skipping the currently booted kernel" msgstr "" -#: src/Common/LinuxKernel.vala:952 +#: src/Common/LinuxKernel.vala:954 msgid "found" msgstr "" -#: src/Common/LinuxKernel.vala:955 +#: src/Common/LinuxKernel.vala:957 #, fuzzy msgid "No packages to un-install!" msgstr "Paquetes instalados" -#: src/Common/LinuxKernel.vala:994 +#: src/Common/LinuxKernel.vala:996 #, fuzzy msgid "Could not find running kernel in list" msgstr "¡No se pudo encontrar el núcleo en ejecución en la lista!" -#: src/Common/LinuxKernel.vala:1000 +#: src/Common/LinuxKernel.vala:1002 #, fuzzy msgid "Could not find any kernels to uninstall" msgstr "Seleccione los núcleos que se desinstalarán" -#: src/Common/LinuxKernel.vala:1009 +#: src/Common/LinuxKernel.vala:1011 #, fuzzy msgid "The following kernels will be uninstalled:" msgstr "Los siguientes kernels serán eliminados:" -#: src/Common/LinuxKernel.vala:1013 +#: src/Common/LinuxKernel.vala:1015 msgid "Continue ?" msgstr "¿Continuar?" -#: src/Common/LinuxKernel.vala:1036 src/Console/AppConsole.vala:295 +#: src/Common/LinuxKernel.vala:1038 src/Console/AppConsole.vala:295 msgid "Latest update" msgstr "" -#: src/Common/LinuxKernel.vala:1047 src/Console/AppConsole.vala:302 +#: src/Common/LinuxKernel.vala:1049 src/Console/AppConsole.vala:302 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:1055 src/Console/AppConsole.vala:307 +#: src/Common/LinuxKernel.vala:1057 src/Console/AppConsole.vala:307 #: src/Console/AppConsole.vala:362 msgid "No updates found" msgstr "No se encontró ninguna actualización" -#: src/Common/LinuxKernel.vala:1064 +#: src/Common/LinuxKernel.vala:1066 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "" -#: src/Common/Main.vala:253 +#: src/Common/Main.vala:240 msgid "Called from" msgstr "" -#: src/Common/Main.vala:287 +#: src/Common/Main.vala:274 #, fuzzy msgid "Notifications are disabled" msgstr "Notificación" -#: src/Common/Main.vala:325 src/Gtk/MainWindow.vala:615 +#: src/Common/Main.vala:312 src/Gtk/MainWindow.vala:614 #, fuzzy msgid "Can not reach" msgstr "Falló la lectura del archivo" @@ -149,7 +149,7 @@ msgstr "Falló la lectura del archivo" msgid "File not found: %s" msgstr "No se encontró el archivo" -#: src/Console/AppConsole.vala:62 src/Gtk/AppGtk.vala:143 +#: src/Console/AppConsole.vala:62 src/Gtk/AppGtk.vala:135 msgid "Syntax" msgstr "Sintaxis" @@ -203,7 +203,7 @@ msgstr "Descargar paquetes del núcleo especificado" msgid "Delete cached info about available kernels" msgstr "" -#: src/Console/AppConsole.vala:78 src/Gtk/AppGtk.vala:145 +#: src/Console/AppConsole.vala:78 src/Gtk/AppGtk.vala:137 msgid "Options" msgstr "Opciones" @@ -234,7 +234,7 @@ msgid "" "One or more version strings (comma-separated) taken from the output of --list" msgstr "" -#: src/Console/AppConsole.vala:164 src/Gtk/AppGtk.vala:129 +#: src/Console/AppConsole.vala:164 src/Gtk/AppGtk.vala:121 msgid "Unknown option" msgstr "Opción desconocida" @@ -284,20 +284,57 @@ msgid "Kernel %s Available" msgstr "Paquetes disponibles" #: src/Console/AppConsole.vala:342 src/Console/AppConsole.vala:354 -#: src/Gtk/MainWindow.vala:270 +#: src/Gtk/MainWindow.vala:269 msgid "Install" msgstr "Instalar" -#: src/Gtk/AppGtk.vala:143 +#: src/Gtk/AboutWindow.vala:264 src/Gtk/AboutWindow.vala:281 +msgid "Credits" +msgstr "Créditos" + +#: src/Gtk/AboutWindow.vala:277 +msgid "Back" +msgstr "Atrás" + +#: src/Gtk/AboutWindow.vala:287 src/Gtk/TerminalWindow.vala:154 +msgid "Close" +msgstr "Cerrar" + +#: src/Gtk/AboutWindow.vala:306 +msgid "Authors" +msgstr "Autores" + +#: src/Gtk/AboutWindow.vala:314 +msgid "Contributions" +msgstr "Contribuciones" + +#: src/Gtk/AboutWindow.vala:322 +msgid "Artists" +msgstr "Artistas" + +#: src/Gtk/AboutWindow.vala:330 +msgid "Translators" +msgstr "Traductores" + +#: src/Gtk/AboutWindow.vala:338 +msgid "Documenters" +msgstr "Documentadores" + +#: src/Gtk/AboutWindow.vala:346 +#, fuzzy +msgid "Third Party Inclusions" +msgstr "Herramientas de terceros" + +#: src/Gtk/AppGtk.vala:135 #, fuzzy msgid "options" msgstr "Opciones" -#: src/Gtk/AppGtk.vala:147 +#: src/Gtk/AppGtk.vala:139 msgid "Print debug information" msgstr "Mostrar información de depuración" -#: src/Gtk/AppGtk.vala:148 +#: src/Gtk/AppGtk.vala:140 msgid "Show all options" msgstr "Mostrar todas las opciones" @@ -309,64 +346,64 @@ msgstr "Núcleo" msgid "Status" msgstr "Estado" -#: src/Gtk/MainWindow.vala:280 +#: src/Gtk/MainWindow.vala:279 #, fuzzy msgid "Uninstall" msgstr "Instalar" -#: src/Gtk/MainWindow.vala:290 +#: src/Gtk/MainWindow.vala:289 msgid "Changes" msgstr "Cambios" -#: src/Gtk/MainWindow.vala:312 +#: src/Gtk/MainWindow.vala:311 #, fuzzy msgid "Uninstall Old" msgstr "Desinstalación finalizada" -#: src/Gtk/MainWindow.vala:313 +#: src/Gtk/MainWindow.vala:312 msgid "Uninstall kernels older than running kernel" msgstr "" -#: src/Gtk/MainWindow.vala:318 +#: src/Gtk/MainWindow.vala:317 msgid "Reload" msgstr "" -#: src/Gtk/MainWindow.vala:323 src/Gtk/SettingsDialog.vala:50 +#: src/Gtk/MainWindow.vala:322 src/Gtk/SettingsDialog.vala:50 msgid "Settings" msgstr "Configuración" -#: src/Gtk/MainWindow.vala:328 +#: src/Gtk/MainWindow.vala:327 msgid "About" msgstr "Acerca de" -#: src/Gtk/MainWindow.vala:333 +#: src/Gtk/MainWindow.vala:332 msgid "Exit" msgstr "" -#: src/Gtk/MainWindow.vala:401 +#: src/Gtk/MainWindow.vala:400 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "" "Herramienta de renovación de núcleo para distribuciones basadas en Ubuntu" -#: src/Gtk/MainWindow.vala:402 +#: src/Gtk/MainWindow.vala:401 msgid "Forked" msgstr "" -#: src/Gtk/MainWindow.vala:402 +#: src/Gtk/MainWindow.vala:401 msgid "Original" msgstr "" -#: src/Gtk/MainWindow.vala:440 +#: src/Gtk/MainWindow.vala:439 msgid "Updating kernels" msgstr "" -#: src/Gtk/MainWindow.vala:513 +#: src/Gtk/MainWindow.vala:512 #, fuzzy msgid "available" msgstr "Paquetes disponibles" -#: src/Gtk/MainWindow.vala:546 src/Gtk/MainWindow.vala:579 -#: src/Gtk/MainWindow.vala:606 +#: src/Gtk/MainWindow.vala:545 src/Gtk/MainWindow.vala:578 +#: src/Gtk/MainWindow.vala:605 msgid "DONE" msgstr "" @@ -411,24 +448,24 @@ msgid "Second(s)" msgstr "" #: src/Gtk/SettingsDialog.vala:148 -msgid "Display" -msgstr "Mostrar" +msgid "Filters" +msgstr "" #: src/Gtk/SettingsDialog.vala:156 msgid "Hide unstable and RC releases" msgstr "Ocultar versiones inestables y RC" #: src/Gtk/SettingsDialog.vala:178 -msgid "previous major versions " +msgid "previous major versions" msgstr "" #: src/Gtk/SettingsDialog.vala:182 -msgid "Other" +msgid "Network" msgstr "" #: src/Gtk/SettingsDialog.vala:193 #, fuzzy -msgid "Internet connection timeout in " +msgid "Internet connection timeout in" msgstr "La conexión a Internet está inactiva" #: src/Gtk/SettingsDialog.vala:205 @@ -439,51 +476,18 @@ msgstr "" msgid "Max concurrent downloads" msgstr "" -#: src/Gtk/TerminalWindow.vala:154 src/Utility/Gtk/AboutWindow.vala:287 -msgid "Close" -msgstr "Cerrar" - -#: src/Utility/Gtk/AboutWindow.vala:264 src/Utility/Gtk/AboutWindow.vala:281 -msgid "Credits" -msgstr "Créditos" - -#: src/Utility/Gtk/AboutWindow.vala:277 -msgid "Back" -msgstr "Atrás" - -#: src/Utility/Gtk/AboutWindow.vala:306 -msgid "Authors" -msgstr "Autores" - -#: src/Utility/Gtk/AboutWindow.vala:314 -msgid "Contributions" -msgstr "Contribuciones" - -#: src/Utility/Gtk/AboutWindow.vala:322 -msgid "Artists" -msgstr "Artistas" - -#: src/Utility/Gtk/AboutWindow.vala:330 -msgid "Translators" -msgstr "Traductores" - -#: src/Utility/Gtk/AboutWindow.vala:338 -msgid "Documenters" -msgstr "Documentadores" - -#: src/Utility/Gtk/AboutWindow.vala:346 -#, fuzzy -msgid "Third Party Inclusions" -msgstr "Herramientas de terceros" +#: src/Gtk/SettingsDialog.vala:226 +msgid "Proxy" +msgstr "" -#: src/Utility/Gtk/GtkHelper.vala:49 +#: src/Gtk/l.gtk.vala:44 msgid "Missing Icon" msgstr "Falta el icono" -#: src/Utility/TeeJee.Logging.vala:52 +#: src/lib/TeeJee.Logging.vala:43 msgid "E" msgstr "E" -#: src/Utility/TeeJee.Logging.vala:68 +#: src/lib/TeeJee.Logging.vala:50 msgid "D" msgstr "" diff --git a/po/fr.po b/po/fr.po index 8c56ab45..05f07cc8 100644 --- a/po/fr.po +++ b/po/fr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-10 15:11-0500\n" +"POT-Creation-Date: 2023-03-11 05:01-0500\n" "PO-Revision-Date: 2018-08-05 15:50+0200\n" "Last-Translator: Yolateng0 \n" "Language-Team: French\n" @@ -13,11 +13,11 @@ msgstr "" "X-Launchpad-Export-Date: 2017-04-13 11:48+0000\n" "X-Generator: Poedit 2.0.6\n" -#: src/Common/LinuxKernel.vala:89 +#: src/Common/LinuxKernel.vala:87 msgid "Distribution" msgstr "Distribution" -#: src/Common/LinuxKernel.vala:104 +#: src/Common/LinuxKernel.vala:102 msgid "Architecture" msgstr "Architecture" @@ -30,115 +30,115 @@ msgstr "Récupération de l'index..." msgid "Updating from" msgstr "" -#: src/Common/LinuxKernel.vala:736 +#: src/Common/LinuxKernel.vala:738 msgid "Packages Available" msgstr "Paquets Disponibles" -#: src/Common/LinuxKernel.vala:741 +#: src/Common/LinuxKernel.vala:743 msgid "Packages Installed" msgstr "Paquets Installés" -#: src/Common/LinuxKernel.vala:754 src/Utility/TeeJee.FileSystem.vala:136 +#: src/Common/LinuxKernel.vala:756 src/lib/TeeJee.FileSystem.vala:121 msgid "File not found" msgstr "Fichier non trouvé" -#: src/Common/LinuxKernel.vala:819 +#: src/Common/LinuxKernel.vala:821 msgid "Available Kernels" msgstr "Noyaux Disponibles" -#: src/Common/LinuxKernel.vala:826 src/Gtk/MainWindow.vala:158 +#: src/Common/LinuxKernel.vala:828 src/Gtk/MainWindow.vala:158 msgid "Installed" msgstr "Installé" -#: src/Common/LinuxKernel.vala:826 src/Gtk/MainWindow.vala:158 -#: src/Gtk/MainWindow.vala:504 src/Gtk/MainWindow.vala:517 +#: src/Common/LinuxKernel.vala:828 src/Gtk/MainWindow.vala:158 +#: src/Gtk/MainWindow.vala:503 src/Gtk/MainWindow.vala:516 msgid "Running" msgstr "Actuel" -#: src/Common/LinuxKernel.vala:861 +#: src/Common/LinuxKernel.vala:863 msgid "Downloading" msgstr "Téléchargement" -#: src/Common/LinuxKernel.vala:880 +#: src/Common/LinuxKernel.vala:882 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:883 +#: src/Common/LinuxKernel.vala:885 msgid "ERROR" msgstr "ERREUR" -#: src/Common/LinuxKernel.vala:897 +#: src/Common/LinuxKernel.vala:899 msgid "This kernel is already installed." msgstr "Ce noyau est déjà installé." -#: src/Common/LinuxKernel.vala:927 +#: src/Common/LinuxKernel.vala:929 #, fuzzy msgid "Uninstalling selected kernels" msgstr "Installer les noyaux spécifiés" -#: src/Common/LinuxKernel.vala:933 +#: src/Common/LinuxKernel.vala:935 msgid "requested" msgstr "" -#: src/Common/LinuxKernel.vala:936 +#: src/Common/LinuxKernel.vala:938 msgid "skipping the currently booted kernel" msgstr "" -#: src/Common/LinuxKernel.vala:952 +#: src/Common/LinuxKernel.vala:954 msgid "found" msgstr "" -#: src/Common/LinuxKernel.vala:955 +#: src/Common/LinuxKernel.vala:957 #, fuzzy msgid "No packages to un-install!" msgstr "Paquets Installés" -#: src/Common/LinuxKernel.vala:994 +#: src/Common/LinuxKernel.vala:996 #, fuzzy msgid "Could not find running kernel in list" msgstr "Impossible de trouver la version courante dans la liste!" -#: src/Common/LinuxKernel.vala:1000 +#: src/Common/LinuxKernel.vala:1002 #, fuzzy msgid "Could not find any kernels to uninstall" msgstr "Impossible de trouver de noyaux à supprimer" -#: src/Common/LinuxKernel.vala:1009 +#: src/Common/LinuxKernel.vala:1011 #, fuzzy msgid "The following kernels will be uninstalled:" msgstr "Les noyaux suivants seront supprimés:" -#: src/Common/LinuxKernel.vala:1013 +#: src/Common/LinuxKernel.vala:1015 msgid "Continue ?" msgstr "Reprendre ?" -#: src/Common/LinuxKernel.vala:1036 src/Console/AppConsole.vala:295 +#: src/Common/LinuxKernel.vala:1038 src/Console/AppConsole.vala:295 msgid "Latest update" msgstr "Dernière mise à jour" -#: src/Common/LinuxKernel.vala:1047 src/Console/AppConsole.vala:302 +#: src/Common/LinuxKernel.vala:1049 src/Console/AppConsole.vala:302 msgid "Latest point update" msgstr "Dernière mise à jour mineure" -#: src/Common/LinuxKernel.vala:1055 src/Console/AppConsole.vala:307 +#: src/Common/LinuxKernel.vala:1057 src/Console/AppConsole.vala:307 #: src/Console/AppConsole.vala:362 msgid "No updates found" msgstr "Aucune mise à jour disponible" -#: src/Common/LinuxKernel.vala:1064 +#: src/Common/LinuxKernel.vala:1066 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Installer le noyau en version %s ? (y/n): " -#: src/Common/Main.vala:253 +#: src/Common/Main.vala:240 msgid "Called from" msgstr "" -#: src/Common/Main.vala:287 +#: src/Common/Main.vala:274 msgid "Notifications are disabled" msgstr "Les notifications sont désactivées" -#: src/Common/Main.vala:325 src/Gtk/MainWindow.vala:615 +#: src/Common/Main.vala:312 src/Gtk/MainWindow.vala:614 #, fuzzy msgid "Can not reach" msgstr "Impossible de lire le fichier" @@ -148,7 +148,7 @@ msgstr "Impossible de lire le fichier" msgid "File not found: %s" msgstr "Fichier non trouvé" -#: src/Console/AppConsole.vala:62 src/Gtk/AppGtk.vala:143 +#: src/Console/AppConsole.vala:62 src/Gtk/AppGtk.vala:135 msgid "Syntax" msgstr "Syntaxe" @@ -202,7 +202,7 @@ msgstr "Télécharger les noyaux spécifiés" msgid "Delete cached info about available kernels" msgstr "" -#: src/Console/AppConsole.vala:78 src/Gtk/AppGtk.vala:145 +#: src/Console/AppConsole.vala:78 src/Gtk/AppGtk.vala:137 msgid "Options" msgstr "Options" @@ -235,7 +235,7 @@ msgstr "" "Une ou plusieurs versions (séparées par des virgules) prises du résultat de " "--list" -#: src/Console/AppConsole.vala:164 src/Gtk/AppGtk.vala:129 +#: src/Console/AppConsole.vala:164 src/Gtk/AppGtk.vala:121 msgid "Unknown option" msgstr "Option inconnue" @@ -284,20 +284,56 @@ msgid "Kernel %s Available" msgstr "Paquet %s disponibles" #: src/Console/AppConsole.vala:342 src/Console/AppConsole.vala:354 -#: src/Gtk/MainWindow.vala:270 +#: src/Gtk/MainWindow.vala:269 msgid "Install" msgstr "Installer" -#: src/Gtk/AppGtk.vala:143 +#: src/Gtk/AboutWindow.vala:264 src/Gtk/AboutWindow.vala:281 +msgid "Credits" +msgstr "Crédits" + +#: src/Gtk/AboutWindow.vala:277 +msgid "Back" +msgstr "Retour" + +#: src/Gtk/AboutWindow.vala:287 src/Gtk/TerminalWindow.vala:154 +msgid "Close" +msgstr "Fermer" + +#: src/Gtk/AboutWindow.vala:306 +msgid "Authors" +msgstr "Auteurs" + +#: src/Gtk/AboutWindow.vala:314 +msgid "Contributions" +msgstr "Contributions" + +#: src/Gtk/AboutWindow.vala:322 +msgid "Artists" +msgstr "Artistes" + +#: src/Gtk/AboutWindow.vala:330 +msgid "Translators" +msgstr "Traducteurs" + +#: src/Gtk/AboutWindow.vala:338 +msgid "Documenters" +msgstr "Documentalistes" + +#: src/Gtk/AboutWindow.vala:346 +msgid "Third Party Inclusions" +msgstr "Dépendances Tierces" + +#: src/Gtk/AppGtk.vala:135 #, fuzzy msgid "options" msgstr "Options" -#: src/Gtk/AppGtk.vala:147 +#: src/Gtk/AppGtk.vala:139 msgid "Print debug information" msgstr "Afficher les informations de débogage" -#: src/Gtk/AppGtk.vala:148 +#: src/Gtk/AppGtk.vala:140 msgid "Show all options" msgstr "Afficher toutes les options" @@ -309,65 +345,65 @@ msgstr "Noyau" msgid "Status" msgstr "Statut" -#: src/Gtk/MainWindow.vala:280 +#: src/Gtk/MainWindow.vala:279 #, fuzzy msgid "Uninstall" msgstr "Installer" -#: src/Gtk/MainWindow.vala:290 +#: src/Gtk/MainWindow.vala:289 msgid "Changes" msgstr "Changements" -#: src/Gtk/MainWindow.vala:312 +#: src/Gtk/MainWindow.vala:311 #, fuzzy msgid "Uninstall Old" msgstr "Désinstallation complète" -#: src/Gtk/MainWindow.vala:313 +#: src/Gtk/MainWindow.vala:312 #, fuzzy msgid "Uninstall kernels older than running kernel" msgstr "Désinstalle les noyaux plus anciens que le noyau courant" -#: src/Gtk/MainWindow.vala:318 +#: src/Gtk/MainWindow.vala:317 msgid "Reload" msgstr "" -#: src/Gtk/MainWindow.vala:323 src/Gtk/SettingsDialog.vala:50 +#: src/Gtk/MainWindow.vala:322 src/Gtk/SettingsDialog.vala:50 msgid "Settings" msgstr "Paramètres" -#: src/Gtk/MainWindow.vala:328 +#: src/Gtk/MainWindow.vala:327 msgid "About" msgstr "À propos" -#: src/Gtk/MainWindow.vala:333 +#: src/Gtk/MainWindow.vala:332 msgid "Exit" msgstr "" -#: src/Gtk/MainWindow.vala:401 +#: src/Gtk/MainWindow.vala:400 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "" "Utilitaire de mise à niveau des noyaux pour les distributions basées sur " "Ubuntu" -#: src/Gtk/MainWindow.vala:402 +#: src/Gtk/MainWindow.vala:401 msgid "Forked" msgstr "Version forkée :" -#: src/Gtk/MainWindow.vala:402 +#: src/Gtk/MainWindow.vala:401 msgid "Original" msgstr "Version originale :" -#: src/Gtk/MainWindow.vala:440 +#: src/Gtk/MainWindow.vala:439 msgid "Updating kernels" msgstr "" -#: src/Gtk/MainWindow.vala:513 +#: src/Gtk/MainWindow.vala:512 msgid "available" msgstr "disponible" -#: src/Gtk/MainWindow.vala:546 src/Gtk/MainWindow.vala:579 -#: src/Gtk/MainWindow.vala:606 +#: src/Gtk/MainWindow.vala:545 src/Gtk/MainWindow.vala:578 +#: src/Gtk/MainWindow.vala:605 msgid "DONE" msgstr "" @@ -412,8 +448,8 @@ msgid "Second(s)" msgstr "Seconde(s)" #: src/Gtk/SettingsDialog.vala:148 -msgid "Display" -msgstr "Affichage" +msgid "Filters" +msgstr "" #: src/Gtk/SettingsDialog.vala:156 msgid "Hide unstable and RC releases" @@ -421,15 +457,16 @@ msgstr "Cacher les versions instables et RC" #: src/Gtk/SettingsDialog.vala:178 #, fuzzy -msgid "previous major versions " +msgid "previous major versions" msgstr "Montrer les N dernières versions majeures" #: src/Gtk/SettingsDialog.vala:182 -msgid "Other" -msgstr "Autre" +msgid "Network" +msgstr "" #: src/Gtk/SettingsDialog.vala:193 -msgid "Internet connection timeout in " +#, fuzzy +msgid "Internet connection timeout in" msgstr "Attendre la connection internet " #: src/Gtk/SettingsDialog.vala:205 @@ -440,50 +477,18 @@ msgstr "secondes" msgid "Max concurrent downloads" msgstr "Nombre maximum de téléchargements parallèles" -#: src/Gtk/TerminalWindow.vala:154 src/Utility/Gtk/AboutWindow.vala:287 -msgid "Close" -msgstr "Fermer" - -#: src/Utility/Gtk/AboutWindow.vala:264 src/Utility/Gtk/AboutWindow.vala:281 -msgid "Credits" -msgstr "Crédits" - -#: src/Utility/Gtk/AboutWindow.vala:277 -msgid "Back" -msgstr "Retour" - -#: src/Utility/Gtk/AboutWindow.vala:306 -msgid "Authors" -msgstr "Auteurs" - -#: src/Utility/Gtk/AboutWindow.vala:314 -msgid "Contributions" -msgstr "Contributions" - -#: src/Utility/Gtk/AboutWindow.vala:322 -msgid "Artists" -msgstr "Artistes" - -#: src/Utility/Gtk/AboutWindow.vala:330 -msgid "Translators" -msgstr "Traducteurs" - -#: src/Utility/Gtk/AboutWindow.vala:338 -msgid "Documenters" -msgstr "Documentalistes" - -#: src/Utility/Gtk/AboutWindow.vala:346 -msgid "Third Party Inclusions" -msgstr "Dépendances Tierces" +#: src/Gtk/SettingsDialog.vala:226 +msgid "Proxy" +msgstr "" -#: src/Utility/Gtk/GtkHelper.vala:49 +#: src/Gtk/l.gtk.vala:44 msgid "Missing Icon" msgstr "Icône introuvable" -#: src/Utility/TeeJee.Logging.vala:52 +#: src/lib/TeeJee.Logging.vala:43 msgid "E" msgstr "E" -#: src/Utility/TeeJee.Logging.vala:68 +#: src/lib/TeeJee.Logging.vala:50 msgid "D" msgstr "D" diff --git a/po/hr.po b/po/hr.po index f1d3cfbc..08f0152d 100644 --- a/po/hr.po +++ b/po/hr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-10 15:11-0500\n" +"POT-Creation-Date: 2023-03-11 05:01-0500\n" "PO-Revision-Date: 2022-09-22 12:13+0200\n" "Last-Translator: gogo \n" "Language-Team: Croatian\n" @@ -13,11 +13,11 @@ msgstr "" "X-Launchpad-Export-Date: 2017-12-23 23:36+0000\n" "X-Generator: Poedit 3.0.1\n" -#: src/Common/LinuxKernel.vala:89 +#: src/Common/LinuxKernel.vala:87 msgid "Distribution" msgstr "Distribucija" -#: src/Common/LinuxKernel.vala:104 +#: src/Common/LinuxKernel.vala:102 msgid "Architecture" msgstr "Arhitektura" @@ -30,113 +30,113 @@ msgstr "Preuzimanje sadržaja..." msgid "Updating from" msgstr "" -#: src/Common/LinuxKernel.vala:736 +#: src/Common/LinuxKernel.vala:738 msgid "Packages Available" msgstr "Dostupni paketi" -#: src/Common/LinuxKernel.vala:741 +#: src/Common/LinuxKernel.vala:743 msgid "Packages Installed" msgstr "Instalirani paketi" -#: src/Common/LinuxKernel.vala:754 src/Utility/TeeJee.FileSystem.vala:136 +#: src/Common/LinuxKernel.vala:756 src/lib/TeeJee.FileSystem.vala:121 msgid "File not found" msgstr "Datoteka nije pronađena" -#: src/Common/LinuxKernel.vala:819 +#: src/Common/LinuxKernel.vala:821 msgid "Available Kernels" msgstr "Dostupni kerneli" -#: src/Common/LinuxKernel.vala:826 src/Gtk/MainWindow.vala:158 +#: src/Common/LinuxKernel.vala:828 src/Gtk/MainWindow.vala:158 msgid "Installed" msgstr "Instalirano" -#: src/Common/LinuxKernel.vala:826 src/Gtk/MainWindow.vala:158 -#: src/Gtk/MainWindow.vala:504 src/Gtk/MainWindow.vala:517 +#: src/Common/LinuxKernel.vala:828 src/Gtk/MainWindow.vala:158 +#: src/Gtk/MainWindow.vala:503 src/Gtk/MainWindow.vala:516 msgid "Running" msgstr "Pokrenuto" -#: src/Common/LinuxKernel.vala:861 +#: src/Common/LinuxKernel.vala:863 msgid "Downloading" msgstr "Preuzimanje" -#: src/Common/LinuxKernel.vala:880 +#: src/Common/LinuxKernel.vala:882 msgid "OK" msgstr "U redu" -#: src/Common/LinuxKernel.vala:883 +#: src/Common/LinuxKernel.vala:885 msgid "ERROR" msgstr "GREŠKA" -#: src/Common/LinuxKernel.vala:897 +#: src/Common/LinuxKernel.vala:899 msgid "This kernel is already installed." msgstr "Ovaj kernel je već instaliran." -#: src/Common/LinuxKernel.vala:927 +#: src/Common/LinuxKernel.vala:929 #, fuzzy msgid "Uninstalling selected kernels" msgstr "Deinstaliraj određene kernele" -#: src/Common/LinuxKernel.vala:933 +#: src/Common/LinuxKernel.vala:935 msgid "requested" msgstr "" -#: src/Common/LinuxKernel.vala:936 +#: src/Common/LinuxKernel.vala:938 msgid "skipping the currently booted kernel" msgstr "" -#: src/Common/LinuxKernel.vala:952 +#: src/Common/LinuxKernel.vala:954 msgid "found" msgstr "" -#: src/Common/LinuxKernel.vala:955 +#: src/Common/LinuxKernel.vala:957 #, fuzzy msgid "No packages to un-install!" msgstr "Instalirani paketi" -#: src/Common/LinuxKernel.vala:994 +#: src/Common/LinuxKernel.vala:996 #, fuzzy msgid "Could not find running kernel in list" msgstr "Nemoguće je pronaći pokrenuti kernel na popisu!" -#: src/Common/LinuxKernel.vala:1000 +#: src/Common/LinuxKernel.vala:1002 msgid "Could not find any kernels to uninstall" msgstr "Nema pronađenih kernela za deinstaliranje" -#: src/Common/LinuxKernel.vala:1009 +#: src/Common/LinuxKernel.vala:1011 msgid "The following kernels will be uninstalled:" msgstr "Sljedeći kerneli će biti deinstalirani:" -#: src/Common/LinuxKernel.vala:1013 +#: src/Common/LinuxKernel.vala:1015 msgid "Continue ?" msgstr "Nastavi?" -#: src/Common/LinuxKernel.vala:1036 src/Console/AppConsole.vala:295 +#: src/Common/LinuxKernel.vala:1038 src/Console/AppConsole.vala:295 msgid "Latest update" msgstr "Najnovija nadopuna" -#: src/Common/LinuxKernel.vala:1047 src/Console/AppConsole.vala:302 +#: src/Common/LinuxKernel.vala:1049 src/Console/AppConsole.vala:302 msgid "Latest point update" msgstr "Najnovija ciljana nadopuna" -#: src/Common/LinuxKernel.vala:1055 src/Console/AppConsole.vala:307 +#: src/Common/LinuxKernel.vala:1057 src/Console/AppConsole.vala:307 #: src/Console/AppConsole.vala:362 msgid "No updates found" msgstr "Nema pronađenih nadopuna" -#: src/Common/LinuxKernel.vala:1064 +#: src/Common/LinuxKernel.vala:1066 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Instaliraj kernel inačice %s ? (d/n): " -#: src/Common/Main.vala:253 +#: src/Common/Main.vala:240 msgid "Called from" msgstr "Pozvano od" -#: src/Common/Main.vala:287 +#: src/Common/Main.vala:274 msgid "Notifications are disabled" msgstr "Obavijesti su onemogućene" -#: src/Common/Main.vala:325 src/Gtk/MainWindow.vala:615 +#: src/Common/Main.vala:312 src/Gtk/MainWindow.vala:614 #, fuzzy msgid "Can not reach" msgstr "Neuspjelo čitanje datoteke" @@ -146,7 +146,7 @@ msgstr "Neuspjelo čitanje datoteke" msgid "File not found: %s" msgstr "Datoteka nije pronađena" -#: src/Console/AppConsole.vala:62 src/Gtk/AppGtk.vala:143 +#: src/Console/AppConsole.vala:62 src/Gtk/AppGtk.vala:135 msgid "Syntax" msgstr "Sintaksa" @@ -198,7 +198,7 @@ msgstr "Preuzmi određene kernele" msgid "Delete cached info about available kernels" msgstr "" -#: src/Console/AppConsole.vala:78 src/Gtk/AppGtk.vala:145 +#: src/Console/AppConsole.vala:78 src/Gtk/AppGtk.vala:137 msgid "Options" msgstr "Mogućnosti" @@ -229,7 +229,7 @@ msgid "" msgstr "" "Jedan ili više izraza inačice (zarezom odvojeni) uzetih iz zapisa --list" -#: src/Console/AppConsole.vala:164 src/Gtk/AppGtk.vala:129 +#: src/Console/AppConsole.vala:164 src/Gtk/AppGtk.vala:121 msgid "Unknown option" msgstr "Nepoznata mogućnost" @@ -276,20 +276,56 @@ msgid "Kernel %s Available" msgstr "Kernel %s je dostupan" #: src/Console/AppConsole.vala:342 src/Console/AppConsole.vala:354 -#: src/Gtk/MainWindow.vala:270 +#: src/Gtk/MainWindow.vala:269 msgid "Install" msgstr "Instaliraj" -#: src/Gtk/AppGtk.vala:143 +#: src/Gtk/AboutWindow.vala:264 src/Gtk/AboutWindow.vala:281 +msgid "Credits" +msgstr "Zasluge" + +#: src/Gtk/AboutWindow.vala:277 +msgid "Back" +msgstr "Natrag" + +#: src/Gtk/AboutWindow.vala:287 src/Gtk/TerminalWindow.vala:154 +msgid "Close" +msgstr "Zatvori" + +#: src/Gtk/AboutWindow.vala:306 +msgid "Authors" +msgstr "Autori" + +#: src/Gtk/AboutWindow.vala:314 +msgid "Contributions" +msgstr "Prilozi" + +#: src/Gtk/AboutWindow.vala:322 +msgid "Artists" +msgstr "Dizajneri" + +#: src/Gtk/AboutWindow.vala:330 +msgid "Translators" +msgstr "Prevoditelji" + +#: src/Gtk/AboutWindow.vala:338 +msgid "Documenters" +msgstr "Autori dokumentacije" + +#: src/Gtk/AboutWindow.vala:346 +msgid "Third Party Inclusions" +msgstr "Uključene treće strane" + +#: src/Gtk/AppGtk.vala:135 #, fuzzy msgid "options" msgstr "Mogućnosti" -#: src/Gtk/AppGtk.vala:147 +#: src/Gtk/AppGtk.vala:139 msgid "Print debug information" msgstr "Ispiši informacije otklanjanja grešaka" -#: src/Gtk/AppGtk.vala:148 +#: src/Gtk/AppGtk.vala:140 msgid "Show all options" msgstr "Prikaži sve mogućnosti" @@ -301,60 +337,60 @@ msgstr "Kernel" msgid "Status" msgstr "Stanje" -#: src/Gtk/MainWindow.vala:280 +#: src/Gtk/MainWindow.vala:279 msgid "Uninstall" msgstr "Deinstaliraj" -#: src/Gtk/MainWindow.vala:290 +#: src/Gtk/MainWindow.vala:289 msgid "Changes" msgstr "Promjene" -#: src/Gtk/MainWindow.vala:312 +#: src/Gtk/MainWindow.vala:311 msgid "Uninstall Old" msgstr "Deinstaliraj staro" -#: src/Gtk/MainWindow.vala:313 +#: src/Gtk/MainWindow.vala:312 msgid "Uninstall kernels older than running kernel" msgstr "Deinstaliraj kernele starije od pokrenutog krenela" -#: src/Gtk/MainWindow.vala:318 +#: src/Gtk/MainWindow.vala:317 msgid "Reload" msgstr "" -#: src/Gtk/MainWindow.vala:323 src/Gtk/SettingsDialog.vala:50 +#: src/Gtk/MainWindow.vala:322 src/Gtk/SettingsDialog.vala:50 msgid "Settings" msgstr "Postavke" -#: src/Gtk/MainWindow.vala:328 +#: src/Gtk/MainWindow.vala:327 msgid "About" msgstr "O programu" -#: src/Gtk/MainWindow.vala:333 +#: src/Gtk/MainWindow.vala:332 msgid "Exit" msgstr "" -#: src/Gtk/MainWindow.vala:401 +#: src/Gtk/MainWindow.vala:400 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Alat za nadogradnju kernela Ubuntu temeljenih distribucija" -#: src/Gtk/MainWindow.vala:402 +#: src/Gtk/MainWindow.vala:401 msgid "Forked" msgstr "Forkano" -#: src/Gtk/MainWindow.vala:402 +#: src/Gtk/MainWindow.vala:401 msgid "Original" msgstr "Izvornik" -#: src/Gtk/MainWindow.vala:440 +#: src/Gtk/MainWindow.vala:439 msgid "Updating kernels" msgstr "" -#: src/Gtk/MainWindow.vala:513 +#: src/Gtk/MainWindow.vala:512 msgid "available" msgstr "dostupno" -#: src/Gtk/MainWindow.vala:546 src/Gtk/MainWindow.vala:579 -#: src/Gtk/MainWindow.vala:606 +#: src/Gtk/MainWindow.vala:545 src/Gtk/MainWindow.vala:578 +#: src/Gtk/MainWindow.vala:605 msgid "DONE" msgstr "" @@ -399,8 +435,8 @@ msgid "Second(s)" msgstr "Sekund(e)" #: src/Gtk/SettingsDialog.vala:148 -msgid "Display" -msgstr "Prikaz" +msgid "Filters" +msgstr "" #: src/Gtk/SettingsDialog.vala:156 msgid "Hide unstable and RC releases" @@ -408,15 +444,16 @@ msgstr "Sakrij nestabilne kernele i predizdanja" #: src/Gtk/SettingsDialog.vala:178 #, fuzzy -msgid "previous major versions " +msgid "previous major versions" msgstr "Prikaži N prijašnjih glavnih izdanja " #: src/Gtk/SettingsDialog.vala:182 -msgid "Other" -msgstr "Ostalo" +msgid "Network" +msgstr "" #: src/Gtk/SettingsDialog.vala:193 -msgid "Internet connection timeout in " +#, fuzzy +msgid "Internet connection timeout in" msgstr "Istek internet povezivanja za " #: src/Gtk/SettingsDialog.vala:205 @@ -427,50 +464,18 @@ msgstr "sekunde" msgid "Max concurrent downloads" msgstr "Najviše istodobnih preuzimanja" -#: src/Gtk/TerminalWindow.vala:154 src/Utility/Gtk/AboutWindow.vala:287 -msgid "Close" -msgstr "Zatvori" - -#: src/Utility/Gtk/AboutWindow.vala:264 src/Utility/Gtk/AboutWindow.vala:281 -msgid "Credits" -msgstr "Zasluge" - -#: src/Utility/Gtk/AboutWindow.vala:277 -msgid "Back" -msgstr "Natrag" - -#: src/Utility/Gtk/AboutWindow.vala:306 -msgid "Authors" -msgstr "Autori" - -#: src/Utility/Gtk/AboutWindow.vala:314 -msgid "Contributions" -msgstr "Prilozi" - -#: src/Utility/Gtk/AboutWindow.vala:322 -msgid "Artists" -msgstr "Dizajneri" - -#: src/Utility/Gtk/AboutWindow.vala:330 -msgid "Translators" -msgstr "Prevoditelji" - -#: src/Utility/Gtk/AboutWindow.vala:338 -msgid "Documenters" -msgstr "Autori dokumentacije" - -#: src/Utility/Gtk/AboutWindow.vala:346 -msgid "Third Party Inclusions" -msgstr "Uključene treće strane" +#: src/Gtk/SettingsDialog.vala:226 +msgid "Proxy" +msgstr "" -#: src/Utility/Gtk/GtkHelper.vala:49 +#: src/Gtk/l.gtk.vala:44 msgid "Missing Icon" msgstr "Ikone koje nedostaju" -#: src/Utility/TeeJee.Logging.vala:52 +#: src/lib/TeeJee.Logging.vala:43 msgid "E" msgstr "G" -#: src/Utility/TeeJee.Logging.vala:68 +#: src/lib/TeeJee.Logging.vala:50 msgid "D" msgstr "D" diff --git a/po/it.po b/po/it.po index add26ac2..6444b4ee 100644 --- a/po/it.po +++ b/po/it.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline 1.0.15\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-10 15:11-0500\n" +"POT-Creation-Date: 2023-03-11 05:01-0500\n" "PO-Revision-Date: 2020-08-22 15:35+0100\n" "Last-Translator: Albano Battistella \n" "Language-Team: Italian\n" @@ -11,11 +11,11 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: src/Common/LinuxKernel.vala:89 +#: src/Common/LinuxKernel.vala:87 msgid "Distribution" msgstr "Distribuzione" -#: src/Common/LinuxKernel.vala:104 +#: src/Common/LinuxKernel.vala:102 msgid "Architecture" msgstr "Architettura" @@ -28,113 +28,113 @@ msgstr "Recupero indice in corso..." msgid "Updating from" msgstr "" -#: src/Common/LinuxKernel.vala:736 +#: src/Common/LinuxKernel.vala:738 msgid "Packages Available" msgstr "Pacchetti disponibili" -#: src/Common/LinuxKernel.vala:741 +#: src/Common/LinuxKernel.vala:743 msgid "Packages Installed" msgstr "Pacchetti installati" -#: src/Common/LinuxKernel.vala:754 src/Utility/TeeJee.FileSystem.vala:136 +#: src/Common/LinuxKernel.vala:756 src/lib/TeeJee.FileSystem.vala:121 msgid "File not found" msgstr "File non trovato" -#: src/Common/LinuxKernel.vala:819 +#: src/Common/LinuxKernel.vala:821 msgid "Available Kernels" msgstr "Kernel disponibili" -#: src/Common/LinuxKernel.vala:826 src/Gtk/MainWindow.vala:158 +#: src/Common/LinuxKernel.vala:828 src/Gtk/MainWindow.vala:158 msgid "Installed" msgstr "Installato" -#: src/Common/LinuxKernel.vala:826 src/Gtk/MainWindow.vala:158 -#: src/Gtk/MainWindow.vala:504 src/Gtk/MainWindow.vala:517 +#: src/Common/LinuxKernel.vala:828 src/Gtk/MainWindow.vala:158 +#: src/Gtk/MainWindow.vala:503 src/Gtk/MainWindow.vala:516 msgid "Running" msgstr "In esecuzione" -#: src/Common/LinuxKernel.vala:861 +#: src/Common/LinuxKernel.vala:863 msgid "Downloading" msgstr "Download in corso" -#: src/Common/LinuxKernel.vala:880 +#: src/Common/LinuxKernel.vala:882 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:883 +#: src/Common/LinuxKernel.vala:885 msgid "ERROR" msgstr "ERRORE" -#: src/Common/LinuxKernel.vala:897 +#: src/Common/LinuxKernel.vala:899 msgid "This kernel is already installed." msgstr "Questo kernel è già installato" -#: src/Common/LinuxKernel.vala:927 +#: src/Common/LinuxKernel.vala:929 #, fuzzy msgid "Uninstalling selected kernels" msgstr "Disinstalla i kernel specificati" -#: src/Common/LinuxKernel.vala:933 +#: src/Common/LinuxKernel.vala:935 msgid "requested" msgstr "" -#: src/Common/LinuxKernel.vala:936 +#: src/Common/LinuxKernel.vala:938 msgid "skipping the currently booted kernel" msgstr "" -#: src/Common/LinuxKernel.vala:952 +#: src/Common/LinuxKernel.vala:954 msgid "found" msgstr "" -#: src/Common/LinuxKernel.vala:955 +#: src/Common/LinuxKernel.vala:957 #, fuzzy msgid "No packages to un-install!" msgstr "Pacchetti installati" -#: src/Common/LinuxKernel.vala:994 +#: src/Common/LinuxKernel.vala:996 #, fuzzy msgid "Could not find running kernel in list" msgstr "Impossibile trovare il kernel in esecuzione nell'elenco!" -#: src/Common/LinuxKernel.vala:1000 +#: src/Common/LinuxKernel.vala:1002 msgid "Could not find any kernels to uninstall" msgstr "Impossibile trovare alcun kernel da rimuovere" -#: src/Common/LinuxKernel.vala:1009 +#: src/Common/LinuxKernel.vala:1011 msgid "The following kernels will be uninstalled:" msgstr "I seguenti kernel verranno rimossi:" -#: src/Common/LinuxKernel.vala:1013 +#: src/Common/LinuxKernel.vala:1015 msgid "Continue ?" msgstr "Continuare ?" -#: src/Common/LinuxKernel.vala:1036 src/Console/AppConsole.vala:295 +#: src/Common/LinuxKernel.vala:1038 src/Console/AppConsole.vala:295 msgid "Latest update" msgstr "Ultimo aggiornamento" -#: src/Common/LinuxKernel.vala:1047 src/Console/AppConsole.vala:302 +#: src/Common/LinuxKernel.vala:1049 src/Console/AppConsole.vala:302 msgid "Latest point update" msgstr "Ultimo aggiornamento del punto" -#: src/Common/LinuxKernel.vala:1055 src/Console/AppConsole.vala:307 +#: src/Common/LinuxKernel.vala:1057 src/Console/AppConsole.vala:307 #: src/Console/AppConsole.vala:362 msgid "No updates found" msgstr "Nessun aggiornamento trovato" -#: src/Common/LinuxKernel.vala:1064 +#: src/Common/LinuxKernel.vala:1066 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Installare la versione del kernel %s ? (y/n): " -#: src/Common/Main.vala:253 +#: src/Common/Main.vala:240 msgid "Called from" msgstr "Chiamata da" -#: src/Common/Main.vala:287 +#: src/Common/Main.vala:274 msgid "Notifications are disabled" msgstr "Le notifiche sono disabilitate" -#: src/Common/Main.vala:325 src/Gtk/MainWindow.vala:615 +#: src/Common/Main.vala:312 src/Gtk/MainWindow.vala:614 #, fuzzy msgid "Can not reach" msgstr "Impossibile leggere il file" @@ -144,7 +144,7 @@ msgstr "Impossibile leggere il file" msgid "File not found: %s" msgstr "File non trovato" -#: src/Console/AppConsole.vala:62 src/Gtk/AppGtk.vala:143 +#: src/Console/AppConsole.vala:62 src/Gtk/AppGtk.vala:135 msgid "Syntax" msgstr "Sintassi" @@ -198,7 +198,7 @@ msgstr "Scarica i kernel specificati" msgid "Delete cached info about available kernels" msgstr "" -#: src/Console/AppConsole.vala:78 src/Gtk/AppGtk.vala:145 +#: src/Console/AppConsole.vala:78 src/Gtk/AppGtk.vala:137 msgid "Options" msgstr "Opzioni" @@ -230,7 +230,7 @@ msgstr "" "Una o più stringhe di versione (separate da virgole) prese dall'output di --" "list" -#: src/Console/AppConsole.vala:164 src/Gtk/AppGtk.vala:129 +#: src/Console/AppConsole.vala:164 src/Gtk/AppGtk.vala:121 msgid "Unknown option" msgstr "Opzione sconosciuta" @@ -277,20 +277,56 @@ msgid "Kernel %s Available" msgstr "Kernel %s Disponibile" #: src/Console/AppConsole.vala:342 src/Console/AppConsole.vala:354 -#: src/Gtk/MainWindow.vala:270 +#: src/Gtk/MainWindow.vala:269 msgid "Install" msgstr "Installa" -#: src/Gtk/AppGtk.vala:143 +#: src/Gtk/AboutWindow.vala:264 src/Gtk/AboutWindow.vala:281 +msgid "Credits" +msgstr "Crediti" + +#: src/Gtk/AboutWindow.vala:277 +msgid "Back" +msgstr "Indietro" + +#: src/Gtk/AboutWindow.vala:287 src/Gtk/TerminalWindow.vala:154 +msgid "Close" +msgstr "Chiudi" + +#: src/Gtk/AboutWindow.vala:306 +msgid "Authors" +msgstr "Autori" + +#: src/Gtk/AboutWindow.vala:314 +msgid "Contributions" +msgstr "Contributori" + +#: src/Gtk/AboutWindow.vala:322 +msgid "Artists" +msgstr "Artisti" + +#: src/Gtk/AboutWindow.vala:330 +msgid "Translators" +msgstr "Albano Battistella, Demetrio Mendozzi" + +#: src/Gtk/AboutWindow.vala:338 +msgid "Documenters" +msgstr "Documentatori" + +#: src/Gtk/AboutWindow.vala:346 +msgid "Third Party Inclusions" +msgstr "Inclusioni di terze parti" + +#: src/Gtk/AppGtk.vala:135 #, fuzzy msgid "options" msgstr "Opzioni" -#: src/Gtk/AppGtk.vala:147 +#: src/Gtk/AppGtk.vala:139 msgid "Print debug information" msgstr "Stampa le informazioni di debug" -#: src/Gtk/AppGtk.vala:148 +#: src/Gtk/AppGtk.vala:140 msgid "Show all options" msgstr "Mostra tutte le opzioni" @@ -302,60 +338,60 @@ msgstr "Kernel" msgid "Status" msgstr "Stato" -#: src/Gtk/MainWindow.vala:280 +#: src/Gtk/MainWindow.vala:279 msgid "Uninstall" msgstr "Disinstalla" -#: src/Gtk/MainWindow.vala:290 +#: src/Gtk/MainWindow.vala:289 msgid "Changes" msgstr "Modifiche" -#: src/Gtk/MainWindow.vala:312 +#: src/Gtk/MainWindow.vala:311 msgid "Uninstall Old" msgstr "Disinstalla i vecchi" -#: src/Gtk/MainWindow.vala:313 +#: src/Gtk/MainWindow.vala:312 msgid "Uninstall kernels older than running kernel" msgstr "Rimuovere i kernel installati più vecchi del kernel in esecuzione" -#: src/Gtk/MainWindow.vala:318 +#: src/Gtk/MainWindow.vala:317 msgid "Reload" msgstr "" -#: src/Gtk/MainWindow.vala:323 src/Gtk/SettingsDialog.vala:50 +#: src/Gtk/MainWindow.vala:322 src/Gtk/SettingsDialog.vala:50 msgid "Settings" msgstr "Impostazioni" -#: src/Gtk/MainWindow.vala:328 +#: src/Gtk/MainWindow.vala:327 msgid "About" msgstr "Informazioni" -#: src/Gtk/MainWindow.vala:333 +#: src/Gtk/MainWindow.vala:332 msgid "Exit" msgstr "" -#: src/Gtk/MainWindow.vala:401 +#: src/Gtk/MainWindow.vala:400 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Utilità di aggiornamento del kernel per distribuzioni basate su Ubuntu" -#: src/Gtk/MainWindow.vala:402 +#: src/Gtk/MainWindow.vala:401 msgid "Forked" msgstr "Forked" -#: src/Gtk/MainWindow.vala:402 +#: src/Gtk/MainWindow.vala:401 msgid "Original" msgstr "Originale" -#: src/Gtk/MainWindow.vala:440 +#: src/Gtk/MainWindow.vala:439 msgid "Updating kernels" msgstr "" -#: src/Gtk/MainWindow.vala:513 +#: src/Gtk/MainWindow.vala:512 msgid "available" msgstr "disponibile" -#: src/Gtk/MainWindow.vala:546 src/Gtk/MainWindow.vala:579 -#: src/Gtk/MainWindow.vala:606 +#: src/Gtk/MainWindow.vala:545 src/Gtk/MainWindow.vala:578 +#: src/Gtk/MainWindow.vala:605 msgid "DONE" msgstr "" @@ -400,8 +436,8 @@ msgid "Second(s)" msgstr "Secondo(i)" #: src/Gtk/SettingsDialog.vala:148 -msgid "Display" -msgstr "Visualizza" +msgid "Filters" +msgstr "" #: src/Gtk/SettingsDialog.vala:156 msgid "Hide unstable and RC releases" @@ -409,15 +445,16 @@ msgstr "Nascondi versioni instabili e RC" #: src/Gtk/SettingsDialog.vala:178 #, fuzzy -msgid "previous major versions " +msgid "previous major versions" msgstr "Mostra N versioni principali precedenti" #: src/Gtk/SettingsDialog.vala:182 -msgid "Other" -msgstr "Altro" +msgid "Network" +msgstr "" #: src/Gtk/SettingsDialog.vala:193 -msgid "Internet connection timeout in " +#, fuzzy +msgid "Internet connection timeout in" msgstr "Timeout connessione Internet in" #: src/Gtk/SettingsDialog.vala:205 @@ -428,50 +465,18 @@ msgstr "secondi" msgid "Max concurrent downloads" msgstr "Numero massimo di download simultanei" -#: src/Gtk/TerminalWindow.vala:154 src/Utility/Gtk/AboutWindow.vala:287 -msgid "Close" -msgstr "Chiudi" - -#: src/Utility/Gtk/AboutWindow.vala:264 src/Utility/Gtk/AboutWindow.vala:281 -msgid "Credits" -msgstr "Crediti" - -#: src/Utility/Gtk/AboutWindow.vala:277 -msgid "Back" -msgstr "Indietro" - -#: src/Utility/Gtk/AboutWindow.vala:306 -msgid "Authors" -msgstr "Autori" - -#: src/Utility/Gtk/AboutWindow.vala:314 -msgid "Contributions" -msgstr "Contributori" - -#: src/Utility/Gtk/AboutWindow.vala:322 -msgid "Artists" -msgstr "Artisti" - -#: src/Utility/Gtk/AboutWindow.vala:330 -msgid "Translators" -msgstr "Albano Battistella, Demetrio Mendozzi" - -#: src/Utility/Gtk/AboutWindow.vala:338 -msgid "Documenters" -msgstr "Documentatori" - -#: src/Utility/Gtk/AboutWindow.vala:346 -msgid "Third Party Inclusions" -msgstr "Inclusioni di terze parti" +#: src/Gtk/SettingsDialog.vala:226 +msgid "Proxy" +msgstr "" -#: src/Utility/Gtk/GtkHelper.vala:49 +#: src/Gtk/l.gtk.vala:44 msgid "Missing Icon" msgstr "Icona mancante" -#: src/Utility/TeeJee.Logging.vala:52 +#: src/lib/TeeJee.Logging.vala:43 msgid "E" msgstr "E" -#: src/Utility/TeeJee.Logging.vala:68 +#: src/lib/TeeJee.Logging.vala:50 msgid "D" msgstr "D" diff --git a/po/ko.po b/po/ko.po index f170dbb2..638b84e7 100644 --- a/po/ko.po +++ b/po/ko.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline 1.0.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-10 15:11-0500\n" +"POT-Creation-Date: 2023-03-11 05:01-0500\n" "PO-Revision-Date: 2022-09-28 11:48+0900\n" "Last-Translator: Kevin Kim \n" "Language-Team: Korean\n" @@ -13,11 +13,11 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Poedit 3.0.1\n" -#: src/Common/LinuxKernel.vala:89 +#: src/Common/LinuxKernel.vala:87 msgid "Distribution" msgstr "배포판" -#: src/Common/LinuxKernel.vala:104 +#: src/Common/LinuxKernel.vala:102 msgid "Architecture" msgstr "아키텍처" @@ -30,113 +30,113 @@ msgstr "목록 가져오기..." msgid "Updating from" msgstr "" -#: src/Common/LinuxKernel.vala:736 +#: src/Common/LinuxKernel.vala:738 msgid "Packages Available" msgstr "설치 가능한 패키지" -#: src/Common/LinuxKernel.vala:741 +#: src/Common/LinuxKernel.vala:743 msgid "Packages Installed" msgstr "설치된 패키지" -#: src/Common/LinuxKernel.vala:754 src/Utility/TeeJee.FileSystem.vala:136 +#: src/Common/LinuxKernel.vala:756 src/lib/TeeJee.FileSystem.vala:121 msgid "File not found" msgstr "파일을 찾을 수 없습니다" -#: src/Common/LinuxKernel.vala:819 +#: src/Common/LinuxKernel.vala:821 msgid "Available Kernels" msgstr "설치 가능한 커널" -#: src/Common/LinuxKernel.vala:826 src/Gtk/MainWindow.vala:158 +#: src/Common/LinuxKernel.vala:828 src/Gtk/MainWindow.vala:158 msgid "Installed" msgstr "설치 됨" -#: src/Common/LinuxKernel.vala:826 src/Gtk/MainWindow.vala:158 -#: src/Gtk/MainWindow.vala:504 src/Gtk/MainWindow.vala:517 +#: src/Common/LinuxKernel.vala:828 src/Gtk/MainWindow.vala:158 +#: src/Gtk/MainWindow.vala:503 src/Gtk/MainWindow.vala:516 msgid "Running" msgstr "구동 중" -#: src/Common/LinuxKernel.vala:861 +#: src/Common/LinuxKernel.vala:863 msgid "Downloading" msgstr "다운로드 중" -#: src/Common/LinuxKernel.vala:880 +#: src/Common/LinuxKernel.vala:882 msgid "OK" msgstr "확인" -#: src/Common/LinuxKernel.vala:883 +#: src/Common/LinuxKernel.vala:885 msgid "ERROR" msgstr "오류" -#: src/Common/LinuxKernel.vala:897 +#: src/Common/LinuxKernel.vala:899 msgid "This kernel is already installed." msgstr "이 커널은 이미 설치되었습니다." -#: src/Common/LinuxKernel.vala:927 +#: src/Common/LinuxKernel.vala:929 #, fuzzy msgid "Uninstalling selected kernels" msgstr "지정한 커널 삭제" -#: src/Common/LinuxKernel.vala:933 +#: src/Common/LinuxKernel.vala:935 msgid "requested" msgstr "" -#: src/Common/LinuxKernel.vala:936 +#: src/Common/LinuxKernel.vala:938 msgid "skipping the currently booted kernel" msgstr "" -#: src/Common/LinuxKernel.vala:952 +#: src/Common/LinuxKernel.vala:954 msgid "found" msgstr "" -#: src/Common/LinuxKernel.vala:955 +#: src/Common/LinuxKernel.vala:957 #, fuzzy msgid "No packages to un-install!" msgstr "설치된 패키지" -#: src/Common/LinuxKernel.vala:994 +#: src/Common/LinuxKernel.vala:996 #, fuzzy msgid "Could not find running kernel in list" msgstr "목록에서 사용중인 커널을 찾을 수 없습니다!" -#: src/Common/LinuxKernel.vala:1000 +#: src/Common/LinuxKernel.vala:1002 msgid "Could not find any kernels to uninstall" msgstr "삭제할 커널을 찾을 수 없습니다" -#: src/Common/LinuxKernel.vala:1009 +#: src/Common/LinuxKernel.vala:1011 msgid "The following kernels will be uninstalled:" msgstr "아래 커널이 삭제됩니다:" -#: src/Common/LinuxKernel.vala:1013 +#: src/Common/LinuxKernel.vala:1015 msgid "Continue ?" msgstr "계속하시겠습니까?" -#: src/Common/LinuxKernel.vala:1036 src/Console/AppConsole.vala:295 +#: src/Common/LinuxKernel.vala:1038 src/Console/AppConsole.vala:295 msgid "Latest update" msgstr "최신 업데이트" -#: src/Common/LinuxKernel.vala:1047 src/Console/AppConsole.vala:302 +#: src/Common/LinuxKernel.vala:1049 src/Console/AppConsole.vala:302 msgid "Latest point update" msgstr "최신 포인트 업데이트" -#: src/Common/LinuxKernel.vala:1055 src/Console/AppConsole.vala:307 +#: src/Common/LinuxKernel.vala:1057 src/Console/AppConsole.vala:307 #: src/Console/AppConsole.vala:362 msgid "No updates found" msgstr "업데이트를 찾을 수 없습니다" -#: src/Common/LinuxKernel.vala:1064 +#: src/Common/LinuxKernel.vala:1066 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "커널 %s 버전을 설치하시겠습니까? (y/n): " -#: src/Common/Main.vala:253 +#: src/Common/Main.vala:240 msgid "Called from" msgstr "에서 호출" -#: src/Common/Main.vala:287 +#: src/Common/Main.vala:274 msgid "Notifications are disabled" msgstr "알림이 비활성화 되었습니다" -#: src/Common/Main.vala:325 src/Gtk/MainWindow.vala:615 +#: src/Common/Main.vala:312 src/Gtk/MainWindow.vala:614 #, fuzzy msgid "Can not reach" msgstr "파일 읽기를 실패했습니다" @@ -146,7 +146,7 @@ msgstr "파일 읽기를 실패했습니다" msgid "File not found: %s" msgstr "파일을 찾을 수 없습니다" -#: src/Console/AppConsole.vala:62 src/Gtk/AppGtk.vala:143 +#: src/Console/AppConsole.vala:62 src/Gtk/AppGtk.vala:135 msgid "Syntax" msgstr "문법" @@ -198,7 +198,7 @@ msgstr "지정한 커널 다운로드" msgid "Delete cached info about available kernels" msgstr "" -#: src/Console/AppConsole.vala:78 src/Gtk/AppGtk.vala:145 +#: src/Console/AppConsole.vala:78 src/Gtk/AppGtk.vala:137 msgid "Options" msgstr "옵션" @@ -228,7 +228,7 @@ msgid "" "One or more version strings (comma-separated) taken from the output of --list" msgstr "--list 의 출력에서 가져온 하나 이상의 버전 문자열 (쉼표로 구분)" -#: src/Console/AppConsole.vala:164 src/Gtk/AppGtk.vala:129 +#: src/Console/AppConsole.vala:164 src/Gtk/AppGtk.vala:121 msgid "Unknown option" msgstr "알 수 없는 옵션" @@ -275,20 +275,56 @@ msgid "Kernel %s Available" msgstr "커널 %s 사용 가능" #: src/Console/AppConsole.vala:342 src/Console/AppConsole.vala:354 -#: src/Gtk/MainWindow.vala:270 +#: src/Gtk/MainWindow.vala:269 msgid "Install" msgstr "설치" -#: src/Gtk/AppGtk.vala:143 +#: src/Gtk/AboutWindow.vala:264 src/Gtk/AboutWindow.vala:281 +msgid "Credits" +msgstr "제작자" + +#: src/Gtk/AboutWindow.vala:277 +msgid "Back" +msgstr "뒤로" + +#: src/Gtk/AboutWindow.vala:287 src/Gtk/TerminalWindow.vala:154 +msgid "Close" +msgstr "닫기" + +#: src/Gtk/AboutWindow.vala:306 +msgid "Authors" +msgstr "개발자" + +#: src/Gtk/AboutWindow.vala:314 +msgid "Contributions" +msgstr "기여자" + +#: src/Gtk/AboutWindow.vala:322 +msgid "Artists" +msgstr "아티스트" + +#: src/Gtk/AboutWindow.vala:330 +msgid "Translators" +msgstr "번역자" + +#: src/Gtk/AboutWindow.vala:338 +msgid "Documenters" +msgstr "문서작성" + +#: src/Gtk/AboutWindow.vala:346 +msgid "Third Party Inclusions" +msgstr "서드파티 포함" + +#: src/Gtk/AppGtk.vala:135 #, fuzzy msgid "options" msgstr "옵션" -#: src/Gtk/AppGtk.vala:147 +#: src/Gtk/AppGtk.vala:139 msgid "Print debug information" msgstr "디버그 정보 출력" -#: src/Gtk/AppGtk.vala:148 +#: src/Gtk/AppGtk.vala:140 msgid "Show all options" msgstr "모든 옵션 보기" @@ -300,60 +336,60 @@ msgstr "커널" msgid "Status" msgstr "상태" -#: src/Gtk/MainWindow.vala:280 +#: src/Gtk/MainWindow.vala:279 msgid "Uninstall" msgstr "삭제" -#: src/Gtk/MainWindow.vala:290 +#: src/Gtk/MainWindow.vala:289 msgid "Changes" msgstr "변경사항" -#: src/Gtk/MainWindow.vala:312 +#: src/Gtk/MainWindow.vala:311 msgid "Uninstall Old" msgstr "오래된 커널 제거" -#: src/Gtk/MainWindow.vala:313 +#: src/Gtk/MainWindow.vala:312 msgid "Uninstall kernels older than running kernel" msgstr "현재 사용 중인 커널보다 이전 버전의 커널을 제거" -#: src/Gtk/MainWindow.vala:318 +#: src/Gtk/MainWindow.vala:317 msgid "Reload" msgstr "" -#: src/Gtk/MainWindow.vala:323 src/Gtk/SettingsDialog.vala:50 +#: src/Gtk/MainWindow.vala:322 src/Gtk/SettingsDialog.vala:50 msgid "Settings" msgstr "설정" -#: src/Gtk/MainWindow.vala:328 +#: src/Gtk/MainWindow.vala:327 msgid "About" msgstr "정보" -#: src/Gtk/MainWindow.vala:333 +#: src/Gtk/MainWindow.vala:332 msgid "Exit" msgstr "" -#: src/Gtk/MainWindow.vala:401 +#: src/Gtk/MainWindow.vala:400 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "우분투 기반 배포판의 커널 업그레이드 도구" -#: src/Gtk/MainWindow.vala:402 +#: src/Gtk/MainWindow.vala:401 msgid "Forked" msgstr "" -#: src/Gtk/MainWindow.vala:402 +#: src/Gtk/MainWindow.vala:401 msgid "Original" msgstr "" -#: src/Gtk/MainWindow.vala:440 +#: src/Gtk/MainWindow.vala:439 msgid "Updating kernels" msgstr "" -#: src/Gtk/MainWindow.vala:513 +#: src/Gtk/MainWindow.vala:512 msgid "available" msgstr "사용가능" -#: src/Gtk/MainWindow.vala:546 src/Gtk/MainWindow.vala:579 -#: src/Gtk/MainWindow.vala:606 +#: src/Gtk/MainWindow.vala:545 src/Gtk/MainWindow.vala:578 +#: src/Gtk/MainWindow.vala:605 msgid "DONE" msgstr "" @@ -398,8 +434,8 @@ msgid "Second(s)" msgstr "초" #: src/Gtk/SettingsDialog.vala:148 -msgid "Display" -msgstr "보이기" +msgid "Filters" +msgstr "" #: src/Gtk/SettingsDialog.vala:156 msgid "Hide unstable and RC releases" @@ -407,15 +443,16 @@ msgstr "목록에서 unstable, RC 버전 포함" #: src/Gtk/SettingsDialog.vala:178 #, fuzzy -msgid "previous major versions " +msgid "previous major versions" msgstr "보여 질 이전 메이저 버전 수 " #: src/Gtk/SettingsDialog.vala:182 -msgid "Other" -msgstr "기타" +msgid "Network" +msgstr "" #: src/Gtk/SettingsDialog.vala:193 -msgid "Internet connection timeout in " +#, fuzzy +msgid "Internet connection timeout in" msgstr "인터넷 연결 타임아웃 시간 " #: src/Gtk/SettingsDialog.vala:205 @@ -426,50 +463,18 @@ msgstr "초" msgid "Max concurrent downloads" msgstr "동시 다운로드 최대 수" -#: src/Gtk/TerminalWindow.vala:154 src/Utility/Gtk/AboutWindow.vala:287 -msgid "Close" -msgstr "닫기" - -#: src/Utility/Gtk/AboutWindow.vala:264 src/Utility/Gtk/AboutWindow.vala:281 -msgid "Credits" -msgstr "제작자" - -#: src/Utility/Gtk/AboutWindow.vala:277 -msgid "Back" -msgstr "뒤로" - -#: src/Utility/Gtk/AboutWindow.vala:306 -msgid "Authors" -msgstr "개발자" - -#: src/Utility/Gtk/AboutWindow.vala:314 -msgid "Contributions" -msgstr "기여자" - -#: src/Utility/Gtk/AboutWindow.vala:322 -msgid "Artists" -msgstr "아티스트" - -#: src/Utility/Gtk/AboutWindow.vala:330 -msgid "Translators" -msgstr "번역자" - -#: src/Utility/Gtk/AboutWindow.vala:338 -msgid "Documenters" -msgstr "문서작성" - -#: src/Utility/Gtk/AboutWindow.vala:346 -msgid "Third Party Inclusions" -msgstr "서드파티 포함" +#: src/Gtk/SettingsDialog.vala:226 +msgid "Proxy" +msgstr "" -#: src/Utility/Gtk/GtkHelper.vala:49 +#: src/Gtk/l.gtk.vala:44 msgid "Missing Icon" msgstr "아이콘을 찾을 수 없습니다" -#: src/Utility/TeeJee.Logging.vala:52 +#: src/lib/TeeJee.Logging.vala:43 msgid "E" msgstr "" -#: src/Utility/TeeJee.Logging.vala:68 +#: src/lib/TeeJee.Logging.vala:50 msgid "D" msgstr "" diff --git a/po/messages.pot b/po/messages.pot index e19f39dc..7ae31b24 100644 --- a/po/messages.pot +++ b/po/messages.pot @@ -6,9 +6,9 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: mainline 1.1.4\n" +"Project-Id-Version: mainline 1.1.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-10 15:11-0500\n" +"POT-Creation-Date: 2023-03-11 05:31-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,11 +17,11 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" -#: src/Common/LinuxKernel.vala:89 +#: src/Common/LinuxKernel.vala:87 msgid "Distribution" msgstr "" -#: src/Common/LinuxKernel.vala:104 +#: src/Common/LinuxKernel.vala:102 msgid "Architecture" msgstr "" @@ -33,110 +33,110 @@ msgstr "" msgid "Updating from" msgstr "" -#: src/Common/LinuxKernel.vala:736 +#: src/Common/LinuxKernel.vala:738 msgid "Packages Available" msgstr "" -#: src/Common/LinuxKernel.vala:741 +#: src/Common/LinuxKernel.vala:743 msgid "Packages Installed" msgstr "" -#: src/Common/LinuxKernel.vala:754 src/Utility/TeeJee.FileSystem.vala:136 +#: src/Common/LinuxKernel.vala:756 src/lib/TeeJee.FileSystem.vala:121 msgid "File not found" msgstr "" -#: src/Common/LinuxKernel.vala:819 +#: src/Common/LinuxKernel.vala:821 msgid "Available Kernels" msgstr "" -#: src/Common/LinuxKernel.vala:826 src/Gtk/MainWindow.vala:158 +#: src/Common/LinuxKernel.vala:828 src/Gtk/MainWindow.vala:158 msgid "Installed" msgstr "" -#: src/Common/LinuxKernel.vala:826 src/Gtk/MainWindow.vala:158 -#: src/Gtk/MainWindow.vala:504 src/Gtk/MainWindow.vala:517 +#: src/Common/LinuxKernel.vala:828 src/Gtk/MainWindow.vala:158 +#: src/Gtk/MainWindow.vala:503 src/Gtk/MainWindow.vala:516 msgid "Running" msgstr "" -#: src/Common/LinuxKernel.vala:861 +#: src/Common/LinuxKernel.vala:863 msgid "Downloading" msgstr "" -#: src/Common/LinuxKernel.vala:880 +#: src/Common/LinuxKernel.vala:882 msgid "OK" msgstr "" -#: src/Common/LinuxKernel.vala:883 +#: src/Common/LinuxKernel.vala:885 msgid "ERROR" msgstr "" -#: src/Common/LinuxKernel.vala:897 +#: src/Common/LinuxKernel.vala:899 msgid "This kernel is already installed." msgstr "" -#: src/Common/LinuxKernel.vala:927 +#: src/Common/LinuxKernel.vala:929 msgid "Uninstalling selected kernels" msgstr "" -#: src/Common/LinuxKernel.vala:933 +#: src/Common/LinuxKernel.vala:935 msgid "requested" msgstr "" -#: src/Common/LinuxKernel.vala:936 +#: src/Common/LinuxKernel.vala:938 msgid "skipping the currently booted kernel" msgstr "" -#: src/Common/LinuxKernel.vala:952 +#: src/Common/LinuxKernel.vala:954 msgid "found" msgstr "" -#: src/Common/LinuxKernel.vala:955 +#: src/Common/LinuxKernel.vala:957 msgid "No packages to un-install!" msgstr "" -#: src/Common/LinuxKernel.vala:994 +#: src/Common/LinuxKernel.vala:996 msgid "Could not find running kernel in list" msgstr "" -#: src/Common/LinuxKernel.vala:1000 +#: src/Common/LinuxKernel.vala:1002 msgid "Could not find any kernels to uninstall" msgstr "" -#: src/Common/LinuxKernel.vala:1009 +#: src/Common/LinuxKernel.vala:1011 msgid "The following kernels will be uninstalled:" msgstr "" -#: src/Common/LinuxKernel.vala:1013 +#: src/Common/LinuxKernel.vala:1015 msgid "Continue ?" msgstr "" -#: src/Common/LinuxKernel.vala:1036 src/Console/AppConsole.vala:295 +#: src/Common/LinuxKernel.vala:1038 src/Console/AppConsole.vala:295 msgid "Latest update" msgstr "" -#: src/Common/LinuxKernel.vala:1047 src/Console/AppConsole.vala:302 +#: src/Common/LinuxKernel.vala:1049 src/Console/AppConsole.vala:302 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:1055 src/Console/AppConsole.vala:307 +#: src/Common/LinuxKernel.vala:1057 src/Console/AppConsole.vala:307 #: src/Console/AppConsole.vala:362 msgid "No updates found" msgstr "" -#: src/Common/LinuxKernel.vala:1064 +#: src/Common/LinuxKernel.vala:1066 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "" -#: src/Common/Main.vala:253 +#: src/Common/Main.vala:240 msgid "Called from" msgstr "" -#: src/Common/Main.vala:287 +#: src/Common/Main.vala:274 msgid "Notifications are disabled" msgstr "" -#: src/Common/Main.vala:325 src/Gtk/MainWindow.vala:615 +#: src/Common/Main.vala:312 src/Gtk/MainWindow.vala:614 msgid "Can not reach" msgstr "" @@ -145,7 +145,7 @@ msgstr "" msgid "File not found: %s" msgstr "" -#: src/Console/AppConsole.vala:62 src/Gtk/AppGtk.vala:143 +#: src/Console/AppConsole.vala:62 src/Gtk/AppGtk.vala:135 msgid "Syntax" msgstr "" @@ -197,7 +197,7 @@ msgstr "" msgid "Delete cached info about available kernels" msgstr "" -#: src/Console/AppConsole.vala:78 src/Gtk/AppGtk.vala:145 +#: src/Console/AppConsole.vala:78 src/Gtk/AppGtk.vala:137 msgid "Options" msgstr "" @@ -226,7 +226,7 @@ msgid "" "One or more version strings (comma-separated) taken from the output of --list" msgstr "" -#: src/Console/AppConsole.vala:164 src/Gtk/AppGtk.vala:129 +#: src/Console/AppConsole.vala:164 src/Gtk/AppGtk.vala:121 msgid "Unknown option" msgstr "" @@ -273,19 +273,55 @@ msgid "Kernel %s Available" msgstr "" #: src/Console/AppConsole.vala:342 src/Console/AppConsole.vala:354 -#: src/Gtk/MainWindow.vala:270 +#: src/Gtk/MainWindow.vala:269 msgid "Install" msgstr "" -#: src/Gtk/AppGtk.vala:143 +#: src/Gtk/AboutWindow.vala:264 src/Gtk/AboutWindow.vala:281 +msgid "Credits" +msgstr "" + +#: src/Gtk/AboutWindow.vala:277 +msgid "Back" +msgstr "" + +#: src/Gtk/AboutWindow.vala:287 src/Gtk/TerminalWindow.vala:154 +msgid "Close" +msgstr "" + +#: src/Gtk/AboutWindow.vala:306 +msgid "Authors" +msgstr "" + +#: src/Gtk/AboutWindow.vala:314 +msgid "Contributions" +msgstr "" + +#: src/Gtk/AboutWindow.vala:322 +msgid "Artists" +msgstr "" + +#: src/Gtk/AboutWindow.vala:330 +msgid "Translators" +msgstr "" + +#: src/Gtk/AboutWindow.vala:338 +msgid "Documenters" +msgstr "" + +#: src/Gtk/AboutWindow.vala:346 +msgid "Third Party Inclusions" +msgstr "" + +#: src/Gtk/AppGtk.vala:135 msgid "options" msgstr "" -#: src/Gtk/AppGtk.vala:147 +#: src/Gtk/AppGtk.vala:139 msgid "Print debug information" msgstr "" -#: src/Gtk/AppGtk.vala:148 +#: src/Gtk/AppGtk.vala:140 msgid "Show all options" msgstr "" @@ -297,60 +333,60 @@ msgstr "" msgid "Status" msgstr "" -#: src/Gtk/MainWindow.vala:280 +#: src/Gtk/MainWindow.vala:279 msgid "Uninstall" msgstr "" -#: src/Gtk/MainWindow.vala:290 +#: src/Gtk/MainWindow.vala:289 msgid "Changes" msgstr "" -#: src/Gtk/MainWindow.vala:312 +#: src/Gtk/MainWindow.vala:311 msgid "Uninstall Old" msgstr "" -#: src/Gtk/MainWindow.vala:313 +#: src/Gtk/MainWindow.vala:312 msgid "Uninstall kernels older than running kernel" msgstr "" -#: src/Gtk/MainWindow.vala:318 +#: src/Gtk/MainWindow.vala:317 msgid "Reload" msgstr "" -#: src/Gtk/MainWindow.vala:323 src/Gtk/SettingsDialog.vala:50 +#: src/Gtk/MainWindow.vala:322 src/Gtk/SettingsDialog.vala:50 msgid "Settings" msgstr "" -#: src/Gtk/MainWindow.vala:328 +#: src/Gtk/MainWindow.vala:327 msgid "About" msgstr "" -#: src/Gtk/MainWindow.vala:333 +#: src/Gtk/MainWindow.vala:332 msgid "Exit" msgstr "" -#: src/Gtk/MainWindow.vala:401 +#: src/Gtk/MainWindow.vala:400 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "" -#: src/Gtk/MainWindow.vala:402 +#: src/Gtk/MainWindow.vala:401 msgid "Forked" msgstr "" -#: src/Gtk/MainWindow.vala:402 +#: src/Gtk/MainWindow.vala:401 msgid "Original" msgstr "" -#: src/Gtk/MainWindow.vala:440 +#: src/Gtk/MainWindow.vala:439 msgid "Updating kernels" msgstr "" -#: src/Gtk/MainWindow.vala:513 +#: src/Gtk/MainWindow.vala:512 msgid "available" msgstr "" -#: src/Gtk/MainWindow.vala:546 src/Gtk/MainWindow.vala:579 -#: src/Gtk/MainWindow.vala:606 +#: src/Gtk/MainWindow.vala:545 src/Gtk/MainWindow.vala:578 +#: src/Gtk/MainWindow.vala:605 msgid "DONE" msgstr "" @@ -395,7 +431,7 @@ msgid "Second(s)" msgstr "" #: src/Gtk/SettingsDialog.vala:148 -msgid "Display" +msgid "Filters" msgstr "" #: src/Gtk/SettingsDialog.vala:156 @@ -403,15 +439,15 @@ msgid "Hide unstable and RC releases" msgstr "" #: src/Gtk/SettingsDialog.vala:178 -msgid "previous major versions " +msgid "previous major versions" msgstr "" #: src/Gtk/SettingsDialog.vala:182 -msgid "Other" +msgid "Network" msgstr "" #: src/Gtk/SettingsDialog.vala:193 -msgid "Internet connection timeout in " +msgid "Internet connection timeout in" msgstr "" #: src/Gtk/SettingsDialog.vala:205 @@ -422,50 +458,18 @@ msgstr "" msgid "Max concurrent downloads" msgstr "" -#: src/Gtk/TerminalWindow.vala:154 src/Utility/Gtk/AboutWindow.vala:287 -msgid "Close" -msgstr "" - -#: src/Utility/Gtk/AboutWindow.vala:264 src/Utility/Gtk/AboutWindow.vala:281 -msgid "Credits" -msgstr "" - -#: src/Utility/Gtk/AboutWindow.vala:277 -msgid "Back" -msgstr "" - -#: src/Utility/Gtk/AboutWindow.vala:306 -msgid "Authors" -msgstr "" - -#: src/Utility/Gtk/AboutWindow.vala:314 -msgid "Contributions" -msgstr "" - -#: src/Utility/Gtk/AboutWindow.vala:322 -msgid "Artists" -msgstr "" - -#: src/Utility/Gtk/AboutWindow.vala:330 -msgid "Translators" -msgstr "" - -#: src/Utility/Gtk/AboutWindow.vala:338 -msgid "Documenters" -msgstr "" - -#: src/Utility/Gtk/AboutWindow.vala:346 -msgid "Third Party Inclusions" +#: src/Gtk/SettingsDialog.vala:226 +msgid "Proxy" msgstr "" -#: src/Utility/Gtk/GtkHelper.vala:49 +#: src/Gtk/l.gtk.vala:44 msgid "Missing Icon" msgstr "" -#: src/Utility/TeeJee.Logging.vala:52 +#: src/lib/TeeJee.Logging.vala:43 msgid "E" msgstr "" -#: src/Utility/TeeJee.Logging.vala:68 +#: src/lib/TeeJee.Logging.vala:50 msgid "D" msgstr "" diff --git a/po/nl.po b/po/nl.po index bbb2999e..e6caafb7 100644 --- a/po/nl.po +++ b/po/nl.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-10 15:11-0500\n" +"POT-Creation-Date: 2023-03-11 05:01-0500\n" "PO-Revision-Date: 2020-08-23 13:55+0200\n" "Last-Translator: Heimen Stoffels \n" "Language-Team: Dutch (Netherlands)\n" @@ -13,11 +13,11 @@ msgstr "" "X-Generator: Poedit 2.4.1\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: src/Common/LinuxKernel.vala:89 +#: src/Common/LinuxKernel.vala:87 msgid "Distribution" msgstr "Distributie" -#: src/Common/LinuxKernel.vala:104 +#: src/Common/LinuxKernel.vala:102 msgid "Architecture" msgstr "Architectuur" @@ -30,115 +30,115 @@ msgstr "Bezig met ophalen van index..." msgid "Updating from" msgstr "" -#: src/Common/LinuxKernel.vala:736 +#: src/Common/LinuxKernel.vala:738 msgid "Packages Available" msgstr "Beschikbare pakketten" -#: src/Common/LinuxKernel.vala:741 +#: src/Common/LinuxKernel.vala:743 msgid "Packages Installed" msgstr "Geïnstalleerde pakketten" -#: src/Common/LinuxKernel.vala:754 src/Utility/TeeJee.FileSystem.vala:136 +#: src/Common/LinuxKernel.vala:756 src/lib/TeeJee.FileSystem.vala:121 msgid "File not found" msgstr "Het bestand is niet gevonden" -#: src/Common/LinuxKernel.vala:819 +#: src/Common/LinuxKernel.vala:821 msgid "Available Kernels" msgstr "Beschikbare kernels" -#: src/Common/LinuxKernel.vala:826 src/Gtk/MainWindow.vala:158 +#: src/Common/LinuxKernel.vala:828 src/Gtk/MainWindow.vala:158 msgid "Installed" msgstr "Geïnstalleerd" -#: src/Common/LinuxKernel.vala:826 src/Gtk/MainWindow.vala:158 -#: src/Gtk/MainWindow.vala:504 src/Gtk/MainWindow.vala:517 +#: src/Common/LinuxKernel.vala:828 src/Gtk/MainWindow.vala:158 +#: src/Gtk/MainWindow.vala:503 src/Gtk/MainWindow.vala:516 msgid "Running" msgstr "In gebruik" -#: src/Common/LinuxKernel.vala:861 +#: src/Common/LinuxKernel.vala:863 msgid "Downloading" msgstr "Bezig met downloaden" -#: src/Common/LinuxKernel.vala:880 +#: src/Common/LinuxKernel.vala:882 msgid "OK" msgstr "Oké" -#: src/Common/LinuxKernel.vala:883 +#: src/Common/LinuxKernel.vala:885 msgid "ERROR" msgstr "FOUT" -#: src/Common/LinuxKernel.vala:897 +#: src/Common/LinuxKernel.vala:899 msgid "This kernel is already installed." msgstr "Deze kernel is al geïnstalleerd." -#: src/Common/LinuxKernel.vala:927 +#: src/Common/LinuxKernel.vala:929 #, fuzzy msgid "Uninstalling selected kernels" msgstr "Opgegeven kernels deïnstalleren" -#: src/Common/LinuxKernel.vala:933 +#: src/Common/LinuxKernel.vala:935 msgid "requested" msgstr "" -#: src/Common/LinuxKernel.vala:936 +#: src/Common/LinuxKernel.vala:938 msgid "skipping the currently booted kernel" msgstr "" -#: src/Common/LinuxKernel.vala:952 +#: src/Common/LinuxKernel.vala:954 msgid "found" msgstr "" -#: src/Common/LinuxKernel.vala:955 +#: src/Common/LinuxKernel.vala:957 #, fuzzy msgid "No packages to un-install!" msgstr "Geïnstalleerde pakketten" -#: src/Common/LinuxKernel.vala:994 +#: src/Common/LinuxKernel.vala:996 #, fuzzy msgid "Could not find running kernel in list" msgstr "De in gebruik zijnde kernel staat niet op de lijst!" -#: src/Common/LinuxKernel.vala:1000 +#: src/Common/LinuxKernel.vala:1002 #, fuzzy msgid "Could not find any kernels to uninstall" msgstr "Er zijn geen te verwijderen kernels" -#: src/Common/LinuxKernel.vala:1009 +#: src/Common/LinuxKernel.vala:1011 #, fuzzy msgid "The following kernels will be uninstalled:" msgstr "De volgende kernels worden verwijderd:" -#: src/Common/LinuxKernel.vala:1013 +#: src/Common/LinuxKernel.vala:1015 msgid "Continue ?" msgstr "Wil je doorgaan?" -#: src/Common/LinuxKernel.vala:1036 src/Console/AppConsole.vala:295 +#: src/Common/LinuxKernel.vala:1038 src/Console/AppConsole.vala:295 msgid "Latest update" msgstr "Recentste update" -#: src/Common/LinuxKernel.vala:1047 src/Console/AppConsole.vala:302 +#: src/Common/LinuxKernel.vala:1049 src/Console/AppConsole.vala:302 msgid "Latest point update" msgstr "Recentste puntupdate" -#: src/Common/LinuxKernel.vala:1055 src/Console/AppConsole.vala:307 +#: src/Common/LinuxKernel.vala:1057 src/Console/AppConsole.vala:307 #: src/Console/AppConsole.vala:362 msgid "No updates found" msgstr "Geen updates gevonden" -#: src/Common/LinuxKernel.vala:1064 +#: src/Common/LinuxKernel.vala:1066 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Wil je versie %s installeren? (j/n): " -#: src/Common/Main.vala:253 +#: src/Common/Main.vala:240 msgid "Called from" msgstr "Aangeroepen door" -#: src/Common/Main.vala:287 +#: src/Common/Main.vala:274 msgid "Notifications are disabled" msgstr "Meldingen zijn uitgeschakeld" -#: src/Common/Main.vala:325 src/Gtk/MainWindow.vala:615 +#: src/Common/Main.vala:312 src/Gtk/MainWindow.vala:614 #, fuzzy msgid "Can not reach" msgstr "Het bestand kan niet worden uitgelezen" @@ -148,7 +148,7 @@ msgstr "Het bestand kan niet worden uitgelezen" msgid "File not found: %s" msgstr "Het bestand is niet gevonden" -#: src/Console/AppConsole.vala:62 src/Gtk/AppGtk.vala:143 +#: src/Console/AppConsole.vala:62 src/Gtk/AppGtk.vala:135 msgid "Syntax" msgstr "Syntax" @@ -202,7 +202,7 @@ msgstr "Opgegeven kernels downloaden" msgid "Delete cached info about available kernels" msgstr "" -#: src/Console/AppConsole.vala:78 src/Gtk/AppGtk.vala:145 +#: src/Console/AppConsole.vala:78 src/Gtk/AppGtk.vala:137 msgid "Options" msgstr "Opties" @@ -235,7 +235,7 @@ msgstr "" "Eén of meerdere versietekenreeksen (kommagescheiden) uit de uitvoer van --" "list" -#: src/Console/AppConsole.vala:164 src/Gtk/AppGtk.vala:129 +#: src/Console/AppConsole.vala:164 src/Gtk/AppGtk.vala:121 msgid "Unknown option" msgstr "Onbekende optie" @@ -283,20 +283,56 @@ msgid "Kernel %s Available" msgstr "Kernel %s is beschikbaar" #: src/Console/AppConsole.vala:342 src/Console/AppConsole.vala:354 -#: src/Gtk/MainWindow.vala:270 +#: src/Gtk/MainWindow.vala:269 msgid "Install" msgstr "Installeren" -#: src/Gtk/AppGtk.vala:143 +#: src/Gtk/AboutWindow.vala:264 src/Gtk/AboutWindow.vala:281 +msgid "Credits" +msgstr "Met dank aan" + +#: src/Gtk/AboutWindow.vala:277 +msgid "Back" +msgstr "Terug" + +#: src/Gtk/AboutWindow.vala:287 src/Gtk/TerminalWindow.vala:154 +msgid "Close" +msgstr "Sluiten" + +#: src/Gtk/AboutWindow.vala:306 +msgid "Authors" +msgstr "Makers" + +#: src/Gtk/AboutWindow.vala:314 +msgid "Contributions" +msgstr "Bijdragers" + +#: src/Gtk/AboutWindow.vala:322 +msgid "Artists" +msgstr "Artiesten" + +#: src/Gtk/AboutWindow.vala:330 +msgid "Translators" +msgstr "Vertalers" + +#: src/Gtk/AboutWindow.vala:338 +msgid "Documenters" +msgstr "Documenteerders" + +#: src/Gtk/AboutWindow.vala:346 +msgid "Third Party Inclusions" +msgstr "Externe code" + +#: src/Gtk/AppGtk.vala:135 #, fuzzy msgid "options" msgstr "Opties" -#: src/Gtk/AppGtk.vala:147 +#: src/Gtk/AppGtk.vala:139 msgid "Print debug information" msgstr "Foutopsporingsinformatie tonen" -#: src/Gtk/AppGtk.vala:148 +#: src/Gtk/AppGtk.vala:140 msgid "Show all options" msgstr "Alle opties tonen" @@ -308,63 +344,63 @@ msgstr "Kernel" msgid "Status" msgstr "Status" -#: src/Gtk/MainWindow.vala:280 +#: src/Gtk/MainWindow.vala:279 #, fuzzy msgid "Uninstall" msgstr "Installeren" -#: src/Gtk/MainWindow.vala:290 +#: src/Gtk/MainWindow.vala:289 msgid "Changes" msgstr "Wijzigingen" -#: src/Gtk/MainWindow.vala:312 +#: src/Gtk/MainWindow.vala:311 #, fuzzy msgid "Uninstall Old" msgstr "Deïnstalleren voltooid" -#: src/Gtk/MainWindow.vala:313 +#: src/Gtk/MainWindow.vala:312 #, fuzzy msgid "Uninstall kernels older than running kernel" msgstr "Geïnstalleerde kernels verwijderen die ouder zijn dan de huidige" -#: src/Gtk/MainWindow.vala:318 +#: src/Gtk/MainWindow.vala:317 msgid "Reload" msgstr "" -#: src/Gtk/MainWindow.vala:323 src/Gtk/SettingsDialog.vala:50 +#: src/Gtk/MainWindow.vala:322 src/Gtk/SettingsDialog.vala:50 msgid "Settings" msgstr "Instellingen" -#: src/Gtk/MainWindow.vala:328 +#: src/Gtk/MainWindow.vala:327 msgid "About" msgstr "Over" -#: src/Gtk/MainWindow.vala:333 +#: src/Gtk/MainWindow.vala:332 msgid "Exit" msgstr "" -#: src/Gtk/MainWindow.vala:401 +#: src/Gtk/MainWindow.vala:400 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Een kernelupgradehulpmiddel voor op Ubuntu gebaseerde distributies" -#: src/Gtk/MainWindow.vala:402 +#: src/Gtk/MainWindow.vala:401 msgid "Forked" msgstr "Geforkt" -#: src/Gtk/MainWindow.vala:402 +#: src/Gtk/MainWindow.vala:401 msgid "Original" msgstr "Origineel" -#: src/Gtk/MainWindow.vala:440 +#: src/Gtk/MainWindow.vala:439 msgid "Updating kernels" msgstr "" -#: src/Gtk/MainWindow.vala:513 +#: src/Gtk/MainWindow.vala:512 msgid "available" msgstr "beschikbaar" -#: src/Gtk/MainWindow.vala:546 src/Gtk/MainWindow.vala:579 -#: src/Gtk/MainWindow.vala:606 +#: src/Gtk/MainWindow.vala:545 src/Gtk/MainWindow.vala:578 +#: src/Gtk/MainWindow.vala:605 msgid "DONE" msgstr "" @@ -409,8 +445,8 @@ msgid "Second(s)" msgstr "seconde(n)" #: src/Gtk/SettingsDialog.vala:148 -msgid "Display" -msgstr "Weergave" +msgid "Filters" +msgstr "" #: src/Gtk/SettingsDialog.vala:156 msgid "Hide unstable and RC releases" @@ -418,15 +454,16 @@ msgstr "Instabiele en rc-uitgaven verbergen" #: src/Gtk/SettingsDialog.vala:178 #, fuzzy -msgid "previous major versions " +msgid "previous major versions" msgstr "X aantal grote updates tonen " #: src/Gtk/SettingsDialog.vala:182 -msgid "Other" -msgstr "Overig" +msgid "Network" +msgstr "" #: src/Gtk/SettingsDialog.vala:193 -msgid "Internet connection timeout in " +#, fuzzy +msgid "Internet connection timeout in" msgstr "Verbindingstime-out na " #: src/Gtk/SettingsDialog.vala:205 @@ -437,50 +474,18 @@ msgstr "seconden" msgid "Max concurrent downloads" msgstr "Max. aantal gelijktijdige downloads" -#: src/Gtk/TerminalWindow.vala:154 src/Utility/Gtk/AboutWindow.vala:287 -msgid "Close" -msgstr "Sluiten" - -#: src/Utility/Gtk/AboutWindow.vala:264 src/Utility/Gtk/AboutWindow.vala:281 -msgid "Credits" -msgstr "Met dank aan" - -#: src/Utility/Gtk/AboutWindow.vala:277 -msgid "Back" -msgstr "Terug" - -#: src/Utility/Gtk/AboutWindow.vala:306 -msgid "Authors" -msgstr "Makers" - -#: src/Utility/Gtk/AboutWindow.vala:314 -msgid "Contributions" -msgstr "Bijdragers" - -#: src/Utility/Gtk/AboutWindow.vala:322 -msgid "Artists" -msgstr "Artiesten" - -#: src/Utility/Gtk/AboutWindow.vala:330 -msgid "Translators" -msgstr "Vertalers" - -#: src/Utility/Gtk/AboutWindow.vala:338 -msgid "Documenters" -msgstr "Documenteerders" - -#: src/Utility/Gtk/AboutWindow.vala:346 -msgid "Third Party Inclusions" -msgstr "Externe code" +#: src/Gtk/SettingsDialog.vala:226 +msgid "Proxy" +msgstr "" -#: src/Utility/Gtk/GtkHelper.vala:49 +#: src/Gtk/l.gtk.vala:44 msgid "Missing Icon" msgstr "Ontbrekend pictogram" -#: src/Utility/TeeJee.Logging.vala:52 +#: src/lib/TeeJee.Logging.vala:43 msgid "E" msgstr "E" -#: src/Utility/TeeJee.Logging.vala:68 +#: src/lib/TeeJee.Logging.vala:50 msgid "D" msgstr "D" diff --git a/po/pl.po b/po/pl.po index 0e53e8e0..5f4289fc 100644 --- a/po/pl.po +++ b/po/pl.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-10 15:11-0500\n" +"POT-Creation-Date: 2023-03-11 05:01-0500\n" "PO-Revision-Date: 2023-03-10 16:07+0100\n" "Last-Translator: Matthaiks\n" "Language-Team: Polish\n" @@ -12,11 +12,11 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Poedit 3.2\n" -#: src/Common/LinuxKernel.vala:89 +#: src/Common/LinuxKernel.vala:87 msgid "Distribution" msgstr "Dystrybucja" -#: src/Common/LinuxKernel.vala:104 +#: src/Common/LinuxKernel.vala:102 msgid "Architecture" msgstr "Architektura" @@ -28,110 +28,110 @@ msgstr "Pobieranie indywidualnych indeksów jąder" msgid "Updating from" msgstr "Aktualizowanie z" -#: src/Common/LinuxKernel.vala:736 +#: src/Common/LinuxKernel.vala:738 msgid "Packages Available" msgstr "Dostępne pakiety" -#: src/Common/LinuxKernel.vala:741 +#: src/Common/LinuxKernel.vala:743 msgid "Packages Installed" msgstr "Pakiety zainstalowane" -#: src/Common/LinuxKernel.vala:754 src/Utility/TeeJee.FileSystem.vala:136 +#: src/Common/LinuxKernel.vala:756 src/lib/TeeJee.FileSystem.vala:121 msgid "File not found" msgstr "Nie odnaleziono pliku" -#: src/Common/LinuxKernel.vala:819 +#: src/Common/LinuxKernel.vala:821 msgid "Available Kernels" msgstr "Dostępne jądra" -#: src/Common/LinuxKernel.vala:826 src/Gtk/MainWindow.vala:158 +#: src/Common/LinuxKernel.vala:828 src/Gtk/MainWindow.vala:158 msgid "Installed" msgstr "Zainstalowane" -#: src/Common/LinuxKernel.vala:826 src/Gtk/MainWindow.vala:158 -#: src/Gtk/MainWindow.vala:504 src/Gtk/MainWindow.vala:517 +#: src/Common/LinuxKernel.vala:828 src/Gtk/MainWindow.vala:158 +#: src/Gtk/MainWindow.vala:503 src/Gtk/MainWindow.vala:516 msgid "Running" msgstr "Uruchomione" -#: src/Common/LinuxKernel.vala:861 +#: src/Common/LinuxKernel.vala:863 msgid "Downloading" msgstr "Pobieranie" -#: src/Common/LinuxKernel.vala:880 +#: src/Common/LinuxKernel.vala:882 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:883 +#: src/Common/LinuxKernel.vala:885 msgid "ERROR" msgstr "BŁĄD" -#: src/Common/LinuxKernel.vala:897 +#: src/Common/LinuxKernel.vala:899 msgid "This kernel is already installed." msgstr "To jądro jest już zainstalowane." -#: src/Common/LinuxKernel.vala:927 +#: src/Common/LinuxKernel.vala:929 msgid "Uninstalling selected kernels" msgstr "Odinstalowanie wybranych jąder" -#: src/Common/LinuxKernel.vala:933 +#: src/Common/LinuxKernel.vala:935 msgid "requested" msgstr "zażądane" -#: src/Common/LinuxKernel.vala:936 +#: src/Common/LinuxKernel.vala:938 msgid "skipping the currently booted kernel" msgstr "pominięcie aktualnie uruchomionego jądra" -#: src/Common/LinuxKernel.vala:952 +#: src/Common/LinuxKernel.vala:954 msgid "found" msgstr "znalezione" -#: src/Common/LinuxKernel.vala:955 +#: src/Common/LinuxKernel.vala:957 msgid "No packages to un-install!" msgstr "Brak pakietów do odinstalowania!" -#: src/Common/LinuxKernel.vala:994 +#: src/Common/LinuxKernel.vala:996 msgid "Could not find running kernel in list" msgstr "Nie można znaleźć uruchomionego jądra na liście" -#: src/Common/LinuxKernel.vala:1000 +#: src/Common/LinuxKernel.vala:1002 msgid "Could not find any kernels to uninstall" msgstr "Nie można znaleźć żadnych jąder do odinstalowania" -#: src/Common/LinuxKernel.vala:1009 +#: src/Common/LinuxKernel.vala:1011 msgid "The following kernels will be uninstalled:" msgstr "Następujące jądra zostaną odinstalowane:" -#: src/Common/LinuxKernel.vala:1013 +#: src/Common/LinuxKernel.vala:1015 msgid "Continue ?" msgstr "Kontynuować?" -#: src/Common/LinuxKernel.vala:1036 src/Console/AppConsole.vala:295 +#: src/Common/LinuxKernel.vala:1038 src/Console/AppConsole.vala:295 msgid "Latest update" msgstr "Najnowsza aktualizacja" -#: src/Common/LinuxKernel.vala:1047 src/Console/AppConsole.vala:302 +#: src/Common/LinuxKernel.vala:1049 src/Console/AppConsole.vala:302 msgid "Latest point update" msgstr "Najnowsza aktualizacja punktowa" -#: src/Common/LinuxKernel.vala:1055 src/Console/AppConsole.vala:307 +#: src/Common/LinuxKernel.vala:1057 src/Console/AppConsole.vala:307 #: src/Console/AppConsole.vala:362 msgid "No updates found" msgstr "Nie znaleziono aktualizacji" -#: src/Common/LinuxKernel.vala:1064 +#: src/Common/LinuxKernel.vala:1066 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Zainstalować wersję jądra %s? (t/n): " -#: src/Common/Main.vala:253 +#: src/Common/Main.vala:240 msgid "Called from" msgstr "Wywołano z" -#: src/Common/Main.vala:287 +#: src/Common/Main.vala:274 msgid "Notifications are disabled" msgstr "Powiadomienia są wyłączone" -#: src/Common/Main.vala:325 src/Gtk/MainWindow.vala:615 +#: src/Common/Main.vala:312 src/Gtk/MainWindow.vala:614 msgid "Can not reach" msgstr "Nie można dotrzeć" @@ -140,7 +140,7 @@ msgstr "Nie można dotrzeć" msgid "File not found: %s" msgstr "Nie znaleziono pliku: %s" -#: src/Console/AppConsole.vala:62 src/Gtk/AppGtk.vala:143 +#: src/Console/AppConsole.vala:62 src/Gtk/AppGtk.vala:135 msgid "Syntax" msgstr "Składnia" @@ -192,7 +192,7 @@ msgstr "Pobierz wybrane jądra" msgid "Delete cached info about available kernels" msgstr "Usuń informacje z pamięci podręcznej o dostępnych jądrach" -#: src/Console/AppConsole.vala:78 src/Gtk/AppGtk.vala:145 +#: src/Console/AppConsole.vala:78 src/Gtk/AppGtk.vala:137 msgid "Options" msgstr "Opcje" @@ -223,7 +223,7 @@ msgstr "" "Jeden lub więcej ciągów wersji (oddzielonych przecinkami) pobranych z " "wyjścia --list" -#: src/Console/AppConsole.vala:164 src/Gtk/AppGtk.vala:129 +#: src/Console/AppConsole.vala:164 src/Gtk/AppGtk.vala:121 msgid "Unknown option" msgstr "Nieznana opcja" @@ -270,19 +270,55 @@ msgid "Kernel %s Available" msgstr "Dostępne %s jądra" #: src/Console/AppConsole.vala:342 src/Console/AppConsole.vala:354 -#: src/Gtk/MainWindow.vala:270 +#: src/Gtk/MainWindow.vala:269 msgid "Install" msgstr "Zainstaluj" -#: src/Gtk/AppGtk.vala:143 +#: src/Gtk/AboutWindow.vala:264 src/Gtk/AboutWindow.vala:281 +msgid "Credits" +msgstr "Zasługi" + +#: src/Gtk/AboutWindow.vala:277 +msgid "Back" +msgstr "Wstecz" + +#: src/Gtk/AboutWindow.vala:287 src/Gtk/TerminalWindow.vala:154 +msgid "Close" +msgstr "Zamknij" + +#: src/Gtk/AboutWindow.vala:306 +msgid "Authors" +msgstr "Аutorzy" + +#: src/Gtk/AboutWindow.vala:314 +msgid "Contributions" +msgstr "Wkład" + +#: src/Gtk/AboutWindow.vala:322 +msgid "Artists" +msgstr "Artyści" + +#: src/Gtk/AboutWindow.vala:330 +msgid "Translators" +msgstr "Tłumacze" + +#: src/Gtk/AboutWindow.vala:338 +msgid "Documenters" +msgstr "Dokumentujący" + +#: src/Gtk/AboutWindow.vala:346 +msgid "Third Party Inclusions" +msgstr "Włączenia stron trzecich" + +#: src/Gtk/AppGtk.vala:135 msgid "options" msgstr "opcje" -#: src/Gtk/AppGtk.vala:147 +#: src/Gtk/AppGtk.vala:139 msgid "Print debug information" msgstr "Wypisz informacje debugujące" -#: src/Gtk/AppGtk.vala:148 +#: src/Gtk/AppGtk.vala:140 msgid "Show all options" msgstr "Pokaż wszystkie opcje" @@ -294,60 +330,60 @@ msgstr "Jądro" msgid "Status" msgstr "Status" -#: src/Gtk/MainWindow.vala:280 +#: src/Gtk/MainWindow.vala:279 msgid "Uninstall" msgstr "Odinstaluj" -#: src/Gtk/MainWindow.vala:290 +#: src/Gtk/MainWindow.vala:289 msgid "Changes" msgstr "Zmiany" -#: src/Gtk/MainWindow.vala:312 +#: src/Gtk/MainWindow.vala:311 msgid "Uninstall Old" msgstr "Odinstaluj stare" -#: src/Gtk/MainWindow.vala:313 +#: src/Gtk/MainWindow.vala:312 msgid "Uninstall kernels older than running kernel" msgstr "Odinstaluj jądra starsze niż działające jądro" -#: src/Gtk/MainWindow.vala:318 +#: src/Gtk/MainWindow.vala:317 msgid "Reload" msgstr "Załaduj ponownie" -#: src/Gtk/MainWindow.vala:323 src/Gtk/SettingsDialog.vala:50 +#: src/Gtk/MainWindow.vala:322 src/Gtk/SettingsDialog.vala:50 msgid "Settings" msgstr "Ustawienia" -#: src/Gtk/MainWindow.vala:328 +#: src/Gtk/MainWindow.vala:327 msgid "About" msgstr "O programie" -#: src/Gtk/MainWindow.vala:333 +#: src/Gtk/MainWindow.vala:332 msgid "Exit" msgstr "Wyjdź" -#: src/Gtk/MainWindow.vala:401 +#: src/Gtk/MainWindow.vala:400 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Narzędzie uaktualniania jądra dla dystrybucji z rodziny Ubuntu" -#: src/Gtk/MainWindow.vala:402 +#: src/Gtk/MainWindow.vala:401 msgid "Forked" msgstr "Sforkowane" -#: src/Gtk/MainWindow.vala:402 +#: src/Gtk/MainWindow.vala:401 msgid "Original" msgstr "Oryginalne" -#: src/Gtk/MainWindow.vala:440 +#: src/Gtk/MainWindow.vala:439 msgid "Updating kernels" msgstr "Aktualizowanie jąder" -#: src/Gtk/MainWindow.vala:513 +#: src/Gtk/MainWindow.vala:512 msgid "available" msgstr "dostępne" -#: src/Gtk/MainWindow.vala:546 src/Gtk/MainWindow.vala:579 -#: src/Gtk/MainWindow.vala:606 +#: src/Gtk/MainWindow.vala:545 src/Gtk/MainWindow.vala:578 +#: src/Gtk/MainWindow.vala:605 msgid "DONE" msgstr "GOTOWE" @@ -392,23 +428,25 @@ msgid "Second(s)" msgstr "sekundy" #: src/Gtk/SettingsDialog.vala:148 -msgid "Display" -msgstr "Wyświetl" +msgid "Filters" +msgstr "" #: src/Gtk/SettingsDialog.vala:156 msgid "Hide unstable and RC releases" msgstr "Ukryj wydania niestabilne i RC" #: src/Gtk/SettingsDialog.vala:178 -msgid "previous major versions " +#, fuzzy +msgid "previous major versions" msgstr "poprzednie główne wersje " #: src/Gtk/SettingsDialog.vala:182 -msgid "Other" -msgstr "Inne" +msgid "Network" +msgstr "" #: src/Gtk/SettingsDialog.vala:193 -msgid "Internet connection timeout in " +#, fuzzy +msgid "Internet connection timeout in" msgstr "Limit czasu połączenia internetowego w " #: src/Gtk/SettingsDialog.vala:205 @@ -419,50 +457,18 @@ msgstr "sekundach" msgid "Max concurrent downloads" msgstr "Maksymalna liczba jednoczesnych pobrań" -#: src/Gtk/TerminalWindow.vala:154 src/Utility/Gtk/AboutWindow.vala:287 -msgid "Close" -msgstr "Zamknij" - -#: src/Utility/Gtk/AboutWindow.vala:264 src/Utility/Gtk/AboutWindow.vala:281 -msgid "Credits" -msgstr "Zasługi" - -#: src/Utility/Gtk/AboutWindow.vala:277 -msgid "Back" -msgstr "Wstecz" - -#: src/Utility/Gtk/AboutWindow.vala:306 -msgid "Authors" -msgstr "Аutorzy" - -#: src/Utility/Gtk/AboutWindow.vala:314 -msgid "Contributions" -msgstr "Wkład" - -#: src/Utility/Gtk/AboutWindow.vala:322 -msgid "Artists" -msgstr "Artyści" - -#: src/Utility/Gtk/AboutWindow.vala:330 -msgid "Translators" -msgstr "Tłumacze" - -#: src/Utility/Gtk/AboutWindow.vala:338 -msgid "Documenters" -msgstr "Dokumentujący" - -#: src/Utility/Gtk/AboutWindow.vala:346 -msgid "Third Party Inclusions" -msgstr "Włączenia stron trzecich" +#: src/Gtk/SettingsDialog.vala:226 +msgid "Proxy" +msgstr "" -#: src/Utility/Gtk/GtkHelper.vala:49 +#: src/Gtk/l.gtk.vala:44 msgid "Missing Icon" msgstr "Brakująca ikona" -#: src/Utility/TeeJee.Logging.vala:52 +#: src/lib/TeeJee.Logging.vala:43 msgid "E" msgstr "E" -#: src/Utility/TeeJee.Logging.vala:68 +#: src/lib/TeeJee.Logging.vala:50 msgid "D" msgstr "D" diff --git a/po/ru.po b/po/ru.po index c4fd885d..a913bd64 100644 --- a/po/ru.po +++ b/po/ru.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-10 15:11-0500\n" +"POT-Creation-Date: 2023-03-11 05:01-0500\n" "PO-Revision-Date: 2023-03-06 22:07+0300\n" "Last-Translator: Faust3000 (Original) | Danik2343 (Update Transaltion) " "\n" @@ -14,11 +14,11 @@ msgstr "" "X-Launchpad-Export-Date: 2016-12-13 11:48+0000\n" "X-Generator: Poedit 3.0.1\n" -#: src/Common/LinuxKernel.vala:89 +#: src/Common/LinuxKernel.vala:87 msgid "Distribution" msgstr "Дистрибутив" -#: src/Common/LinuxKernel.vala:104 +#: src/Common/LinuxKernel.vala:102 msgid "Architecture" msgstr "Архитектура" @@ -31,113 +31,113 @@ msgstr "Получение сведений..." msgid "Updating from" msgstr "" -#: src/Common/LinuxKernel.vala:736 +#: src/Common/LinuxKernel.vala:738 msgid "Packages Available" msgstr "Доступные пакеты" -#: src/Common/LinuxKernel.vala:741 +#: src/Common/LinuxKernel.vala:743 msgid "Packages Installed" msgstr "Установленные пакеты" -#: src/Common/LinuxKernel.vala:754 src/Utility/TeeJee.FileSystem.vala:136 +#: src/Common/LinuxKernel.vala:756 src/lib/TeeJee.FileSystem.vala:121 msgid "File not found" msgstr "Файл не найден" -#: src/Common/LinuxKernel.vala:819 +#: src/Common/LinuxKernel.vala:821 msgid "Available Kernels" msgstr "Доступные ядра" -#: src/Common/LinuxKernel.vala:826 src/Gtk/MainWindow.vala:158 +#: src/Common/LinuxKernel.vala:828 src/Gtk/MainWindow.vala:158 msgid "Installed" msgstr "Установлено" -#: src/Common/LinuxKernel.vala:826 src/Gtk/MainWindow.vala:158 -#: src/Gtk/MainWindow.vala:504 src/Gtk/MainWindow.vala:517 +#: src/Common/LinuxKernel.vala:828 src/Gtk/MainWindow.vala:158 +#: src/Gtk/MainWindow.vala:503 src/Gtk/MainWindow.vala:516 msgid "Running" msgstr "Используется" -#: src/Common/LinuxKernel.vala:861 +#: src/Common/LinuxKernel.vala:863 msgid "Downloading" msgstr "Загрузка" -#: src/Common/LinuxKernel.vala:880 +#: src/Common/LinuxKernel.vala:882 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:883 +#: src/Common/LinuxKernel.vala:885 msgid "ERROR" msgstr "ОШИБКА" -#: src/Common/LinuxKernel.vala:897 +#: src/Common/LinuxKernel.vala:899 msgid "This kernel is already installed." msgstr "Это ядро уже установлено." -#: src/Common/LinuxKernel.vala:927 +#: src/Common/LinuxKernel.vala:929 #, fuzzy msgid "Uninstalling selected kernels" msgstr "Удаление выбранных ядер" -#: src/Common/LinuxKernel.vala:933 +#: src/Common/LinuxKernel.vala:935 msgid "requested" msgstr "requested" -#: src/Common/LinuxKernel.vala:936 +#: src/Common/LinuxKernel.vala:938 msgid "skipping the currently booted kernel" msgstr "пропуск текущего загруженного ядра" -#: src/Common/LinuxKernel.vala:952 +#: src/Common/LinuxKernel.vala:954 msgid "found" msgstr "найдено" -#: src/Common/LinuxKernel.vala:955 +#: src/Common/LinuxKernel.vala:957 #, fuzzy msgid "No packages to un-install!" msgstr "Нет пакетов для деинсталляции!" -#: src/Common/LinuxKernel.vala:994 +#: src/Common/LinuxKernel.vala:996 #, fuzzy msgid "Could not find running kernel in list" msgstr "Не удалось найти запущенное ядро в списке!" -#: src/Common/LinuxKernel.vala:1000 +#: src/Common/LinuxKernel.vala:1002 msgid "Could not find any kernels to uninstall" msgstr "Не удалось найти ядра для деинсталляции" -#: src/Common/LinuxKernel.vala:1009 +#: src/Common/LinuxKernel.vala:1011 msgid "The following kernels will be uninstalled:" msgstr "Следующие ядра будут деинсталлированы:" -#: src/Common/LinuxKernel.vala:1013 +#: src/Common/LinuxKernel.vala:1015 msgid "Continue ?" msgstr "Продолжить ?" -#: src/Common/LinuxKernel.vala:1036 src/Console/AppConsole.vala:295 +#: src/Common/LinuxKernel.vala:1038 src/Console/AppConsole.vala:295 msgid "Latest update" msgstr "Последнее обновление" -#: src/Common/LinuxKernel.vala:1047 src/Console/AppConsole.vala:302 +#: src/Common/LinuxKernel.vala:1049 src/Console/AppConsole.vala:302 msgid "Latest point update" msgstr "Последнее обновление пунктов" -#: src/Common/LinuxKernel.vala:1055 src/Console/AppConsole.vala:307 +#: src/Common/LinuxKernel.vala:1057 src/Console/AppConsole.vala:307 #: src/Console/AppConsole.vala:362 msgid "No updates found" msgstr "Обновлений не найдено" -#: src/Common/LinuxKernel.vala:1064 +#: src/Common/LinuxKernel.vala:1066 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Установить версию ядра %s ? (y/n): " -#: src/Common/Main.vala:253 +#: src/Common/Main.vala:240 msgid "Called from" msgstr "Вызван из" -#: src/Common/Main.vala:287 +#: src/Common/Main.vala:274 msgid "Notifications are disabled" msgstr "Уведомления отключены" -#: src/Common/Main.vala:325 src/Gtk/MainWindow.vala:615 +#: src/Common/Main.vala:312 src/Gtk/MainWindow.vala:614 msgid "Can not reach" msgstr "Не удается получить" @@ -146,7 +146,7 @@ msgstr "Не удается получить" msgid "File not found: %s" msgstr "Файл не найден" -#: src/Console/AppConsole.vala:62 src/Gtk/AppGtk.vala:143 +#: src/Console/AppConsole.vala:62 src/Gtk/AppGtk.vala:135 msgid "Syntax" msgstr "Синтаксис" @@ -198,7 +198,7 @@ msgstr "Скачать указанные ядра" msgid "Delete cached info about available kernels" msgstr "Удаление кэшированной информации о доступных ядрах" -#: src/Console/AppConsole.vala:78 src/Gtk/AppGtk.vala:145 +#: src/Console/AppConsole.vala:78 src/Gtk/AppGtk.vala:137 msgid "Options" msgstr "Параметры" @@ -230,7 +230,7 @@ msgstr "" "Одна или несколько строк версий (разделенных запятыми), взятых из вывода --" "list" -#: src/Console/AppConsole.vala:164 src/Gtk/AppGtk.vala:129 +#: src/Console/AppConsole.vala:164 src/Gtk/AppGtk.vala:121 msgid "Unknown option" msgstr "Неизвестный параметр" @@ -277,20 +277,56 @@ msgid "Kernel %s Available" msgstr "Доступно ядро %s" #: src/Console/AppConsole.vala:342 src/Console/AppConsole.vala:354 -#: src/Gtk/MainWindow.vala:270 +#: src/Gtk/MainWindow.vala:269 msgid "Install" msgstr "Установить" -#: src/Gtk/AppGtk.vala:143 +#: src/Gtk/AboutWindow.vala:264 src/Gtk/AboutWindow.vala:281 +msgid "Credits" +msgstr "Создатели" + +#: src/Gtk/AboutWindow.vala:277 +msgid "Back" +msgstr "Назад" + +#: src/Gtk/AboutWindow.vala:287 src/Gtk/TerminalWindow.vala:154 +msgid "Close" +msgstr "Закрыть" + +#: src/Gtk/AboutWindow.vala:306 +msgid "Authors" +msgstr "Авторы" + +#: src/Gtk/AboutWindow.vala:314 +msgid "Contributions" +msgstr "Взносы" + +#: src/Gtk/AboutWindow.vala:322 +msgid "Artists" +msgstr "Художники" + +#: src/Gtk/AboutWindow.vala:330 +msgid "Translators" +msgstr "Переводчики" + +#: src/Gtk/AboutWindow.vala:338 +msgid "Documenters" +msgstr "Составители документации" + +#: src/Gtk/AboutWindow.vala:346 +msgid "Third Party Inclusions" +msgstr "Включая сторонние инструменты" + +#: src/Gtk/AppGtk.vala:135 #, fuzzy msgid "options" msgstr "параметры" -#: src/Gtk/AppGtk.vala:147 +#: src/Gtk/AppGtk.vala:139 msgid "Print debug information" msgstr "Распечатать отладочную информацию" -#: src/Gtk/AppGtk.vala:148 +#: src/Gtk/AppGtk.vala:140 msgid "Show all options" msgstr "Показать все параметры" @@ -302,60 +338,60 @@ msgstr "Ядро" msgid "Status" msgstr "Состояние" -#: src/Gtk/MainWindow.vala:280 +#: src/Gtk/MainWindow.vala:279 msgid "Uninstall" msgstr "Удалить" -#: src/Gtk/MainWindow.vala:290 +#: src/Gtk/MainWindow.vala:289 msgid "Changes" msgstr "Изменения" -#: src/Gtk/MainWindow.vala:312 +#: src/Gtk/MainWindow.vala:311 msgid "Uninstall Old" msgstr "Удалить старые" -#: src/Gtk/MainWindow.vala:313 +#: src/Gtk/MainWindow.vala:312 msgid "Uninstall kernels older than running kernel" msgstr "Удалить более старшие установленные ядра, чем используемое" -#: src/Gtk/MainWindow.vala:318 +#: src/Gtk/MainWindow.vala:317 msgid "Reload" msgstr "Перезагрузить" -#: src/Gtk/MainWindow.vala:323 src/Gtk/SettingsDialog.vala:50 +#: src/Gtk/MainWindow.vala:322 src/Gtk/SettingsDialog.vala:50 msgid "Settings" msgstr "Настройки" -#: src/Gtk/MainWindow.vala:328 +#: src/Gtk/MainWindow.vala:327 msgid "About" msgstr "О программе" -#: src/Gtk/MainWindow.vala:333 +#: src/Gtk/MainWindow.vala:332 msgid "Exit" msgstr "Выход" -#: src/Gtk/MainWindow.vala:401 +#: src/Gtk/MainWindow.vala:400 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Программа обновления ядра для дистрибутивов на базе Ubuntu" -#: src/Gtk/MainWindow.vala:402 +#: src/Gtk/MainWindow.vala:401 msgid "Forked" msgstr "Форк" -#: src/Gtk/MainWindow.vala:402 +#: src/Gtk/MainWindow.vala:401 msgid "Original" msgstr "Оригинал" -#: src/Gtk/MainWindow.vala:440 +#: src/Gtk/MainWindow.vala:439 msgid "Updating kernels" msgstr "" -#: src/Gtk/MainWindow.vala:513 +#: src/Gtk/MainWindow.vala:512 msgid "available" msgstr "доступно" -#: src/Gtk/MainWindow.vala:546 src/Gtk/MainWindow.vala:579 -#: src/Gtk/MainWindow.vala:606 +#: src/Gtk/MainWindow.vala:545 src/Gtk/MainWindow.vala:578 +#: src/Gtk/MainWindow.vala:605 msgid "DONE" msgstr "ГОТОВО" @@ -400,8 +436,8 @@ msgid "Second(s)" msgstr "Секунду(ды)" #: src/Gtk/SettingsDialog.vala:148 -msgid "Display" -msgstr "Отображение" +msgid "Filters" +msgstr "" #: src/Gtk/SettingsDialog.vala:156 msgid "Hide unstable and RC releases" @@ -409,15 +445,16 @@ msgstr "Скрыть нестабильные и релиз-кандидат в #: src/Gtk/SettingsDialog.vala:178 #, fuzzy -msgid "previous major versions " +msgid "previous major versions" msgstr "Показать N предыдущих основных версий " #: src/Gtk/SettingsDialog.vala:182 -msgid "Other" -msgstr "Прочее" +msgid "Network" +msgstr "" #: src/Gtk/SettingsDialog.vala:193 -msgid "Internet connection timeout in " +#, fuzzy +msgid "Internet connection timeout in" msgstr "Таймаут подключения к Интернету в " #: src/Gtk/SettingsDialog.vala:205 @@ -428,50 +465,18 @@ msgstr "секунд" msgid "Max concurrent downloads" msgstr "Максимальное количество одновременных загрузок" -#: src/Gtk/TerminalWindow.vala:154 src/Utility/Gtk/AboutWindow.vala:287 -msgid "Close" -msgstr "Закрыть" - -#: src/Utility/Gtk/AboutWindow.vala:264 src/Utility/Gtk/AboutWindow.vala:281 -msgid "Credits" -msgstr "Создатели" - -#: src/Utility/Gtk/AboutWindow.vala:277 -msgid "Back" -msgstr "Назад" - -#: src/Utility/Gtk/AboutWindow.vala:306 -msgid "Authors" -msgstr "Авторы" - -#: src/Utility/Gtk/AboutWindow.vala:314 -msgid "Contributions" -msgstr "Взносы" - -#: src/Utility/Gtk/AboutWindow.vala:322 -msgid "Artists" -msgstr "Художники" - -#: src/Utility/Gtk/AboutWindow.vala:330 -msgid "Translators" -msgstr "Переводчики" - -#: src/Utility/Gtk/AboutWindow.vala:338 -msgid "Documenters" -msgstr "Составители документации" - -#: src/Utility/Gtk/AboutWindow.vala:346 -msgid "Third Party Inclusions" -msgstr "Включая сторонние инструменты" +#: src/Gtk/SettingsDialog.vala:226 +msgid "Proxy" +msgstr "" -#: src/Utility/Gtk/GtkHelper.vala:49 +#: src/Gtk/l.gtk.vala:44 msgid "Missing Icon" msgstr "Значок отсутствует" -#: src/Utility/TeeJee.Logging.vala:52 +#: src/lib/TeeJee.Logging.vala:43 msgid "E" msgstr "E" -#: src/Utility/TeeJee.Logging.vala:68 +#: src/lib/TeeJee.Logging.vala:50 msgid "D" msgstr "D" diff --git a/po/sv.po b/po/sv.po index df3427b3..8eb121fc 100644 --- a/po/sv.po +++ b/po/sv.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-10 15:11-0500\n" +"POT-Creation-Date: 2023-03-11 05:01-0500\n" "PO-Revision-Date: 2018-01-13 16:56+0100\n" "Last-Translator: Åke Engelbrektson \n" "Language-Team:Swedish\n" @@ -13,11 +13,11 @@ msgstr "" "X-Generator: Poedit 1.8.7.1\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: src/Common/LinuxKernel.vala:89 +#: src/Common/LinuxKernel.vala:87 msgid "Distribution" msgstr "Distribution" -#: src/Common/LinuxKernel.vala:104 +#: src/Common/LinuxKernel.vala:102 #, fuzzy msgid "Architecture" msgstr "Systemarkitektur" @@ -31,116 +31,116 @@ msgstr "Hämtar index för" msgid "Updating from" msgstr "" -#: src/Common/LinuxKernel.vala:736 +#: src/Common/LinuxKernel.vala:738 msgid "Packages Available" msgstr "Tillgängliga paket" -#: src/Common/LinuxKernel.vala:741 +#: src/Common/LinuxKernel.vala:743 msgid "Packages Installed" msgstr "Installerade paket" -#: src/Common/LinuxKernel.vala:754 src/Utility/TeeJee.FileSystem.vala:136 +#: src/Common/LinuxKernel.vala:756 src/lib/TeeJee.FileSystem.vala:121 msgid "File not found" msgstr "Filen kan inte hittas" -#: src/Common/LinuxKernel.vala:819 +#: src/Common/LinuxKernel.vala:821 msgid "Available Kernels" msgstr "Tillgängliga kärnor" -#: src/Common/LinuxKernel.vala:826 src/Gtk/MainWindow.vala:158 +#: src/Common/LinuxKernel.vala:828 src/Gtk/MainWindow.vala:158 msgid "Installed" msgstr "Installerad" -#: src/Common/LinuxKernel.vala:826 src/Gtk/MainWindow.vala:158 -#: src/Gtk/MainWindow.vala:504 src/Gtk/MainWindow.vala:517 +#: src/Common/LinuxKernel.vala:828 src/Gtk/MainWindow.vala:158 +#: src/Gtk/MainWindow.vala:503 src/Gtk/MainWindow.vala:516 msgid "Running" msgstr "Körs" -#: src/Common/LinuxKernel.vala:861 +#: src/Common/LinuxKernel.vala:863 msgid "Downloading" msgstr "Laddar ner" -#: src/Common/LinuxKernel.vala:880 +#: src/Common/LinuxKernel.vala:882 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:883 +#: src/Common/LinuxKernel.vala:885 msgid "ERROR" msgstr "FEL" -#: src/Common/LinuxKernel.vala:897 +#: src/Common/LinuxKernel.vala:899 msgid "This kernel is already installed." msgstr "Denna kärna är redan installerad" -#: src/Common/LinuxKernel.vala:927 +#: src/Common/LinuxKernel.vala:929 #, fuzzy msgid "Uninstalling selected kernels" msgstr "Installera specificerad kärna" -#: src/Common/LinuxKernel.vala:933 +#: src/Common/LinuxKernel.vala:935 msgid "requested" msgstr "" -#: src/Common/LinuxKernel.vala:936 +#: src/Common/LinuxKernel.vala:938 msgid "skipping the currently booted kernel" msgstr "" -#: src/Common/LinuxKernel.vala:952 +#: src/Common/LinuxKernel.vala:954 msgid "found" msgstr "" -#: src/Common/LinuxKernel.vala:955 +#: src/Common/LinuxKernel.vala:957 #, fuzzy msgid "No packages to un-install!" msgstr "Installerade paket" -#: src/Common/LinuxKernel.vala:994 +#: src/Common/LinuxKernel.vala:996 #, fuzzy msgid "Could not find running kernel in list" msgstr "Kunde inte hitta efterfrågad version" -#: src/Common/LinuxKernel.vala:1000 +#: src/Common/LinuxKernel.vala:1002 #, fuzzy msgid "Could not find any kernels to uninstall" msgstr "Välj kärnor för borttagning" -#: src/Common/LinuxKernel.vala:1009 +#: src/Common/LinuxKernel.vala:1011 #, fuzzy msgid "The following kernels will be uninstalled:" msgstr "Denna kärna är redan installerad" -#: src/Common/LinuxKernel.vala:1013 +#: src/Common/LinuxKernel.vala:1015 msgid "Continue ?" msgstr "" -#: src/Common/LinuxKernel.vala:1036 src/Console/AppConsole.vala:295 +#: src/Common/LinuxKernel.vala:1038 src/Console/AppConsole.vala:295 msgid "Latest update" msgstr "" -#: src/Common/LinuxKernel.vala:1047 src/Console/AppConsole.vala:302 +#: src/Common/LinuxKernel.vala:1049 src/Console/AppConsole.vala:302 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:1055 src/Console/AppConsole.vala:307 +#: src/Common/LinuxKernel.vala:1057 src/Console/AppConsole.vala:307 #: src/Console/AppConsole.vala:362 msgid "No updates found" msgstr "Inga uppdateringar hittades" -#: src/Common/LinuxKernel.vala:1064 +#: src/Common/LinuxKernel.vala:1066 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "" -#: src/Common/Main.vala:253 +#: src/Common/Main.vala:240 msgid "Called from" msgstr "" -#: src/Common/Main.vala:287 +#: src/Common/Main.vala:274 #, fuzzy msgid "Notifications are disabled" msgstr "Avisering" -#: src/Common/Main.vala:325 src/Gtk/MainWindow.vala:615 +#: src/Common/Main.vala:312 src/Gtk/MainWindow.vala:614 #, fuzzy msgid "Can not reach" msgstr "Kunde inte läsa filen" @@ -150,7 +150,7 @@ msgstr "Kunde inte läsa filen" msgid "File not found: %s" msgstr "Filen kan inte hittas" -#: src/Console/AppConsole.vala:62 src/Gtk/AppGtk.vala:143 +#: src/Console/AppConsole.vala:62 src/Gtk/AppGtk.vala:135 msgid "Syntax" msgstr "Syntax" @@ -208,7 +208,7 @@ msgstr "Ladda ner paket för specificerad kärna" msgid "Delete cached info about available kernels" msgstr "" -#: src/Console/AppConsole.vala:78 src/Gtk/AppGtk.vala:145 +#: src/Console/AppConsole.vala:78 src/Gtk/AppGtk.vala:137 msgid "Options" msgstr "Alternativ" @@ -239,7 +239,7 @@ msgid "" "One or more version strings (comma-separated) taken from the output of --list" msgstr "" -#: src/Console/AppConsole.vala:164 src/Gtk/AppGtk.vala:129 +#: src/Console/AppConsole.vala:164 src/Gtk/AppGtk.vala:121 msgid "Unknown option" msgstr "Okänt alternativ" @@ -289,20 +289,57 @@ msgid "Kernel %s Available" msgstr "Tillgängliga paket" #: src/Console/AppConsole.vala:342 src/Console/AppConsole.vala:354 -#: src/Gtk/MainWindow.vala:270 +#: src/Gtk/MainWindow.vala:269 msgid "Install" msgstr "Installera" -#: src/Gtk/AppGtk.vala:143 +#: src/Gtk/AboutWindow.vala:264 src/Gtk/AboutWindow.vala:281 +msgid "Credits" +msgstr "Tack" + +#: src/Gtk/AboutWindow.vala:277 +msgid "Back" +msgstr "Tillbaka" + +#: src/Gtk/AboutWindow.vala:287 src/Gtk/TerminalWindow.vala:154 +msgid "Close" +msgstr "Stäng" + +#: src/Gtk/AboutWindow.vala:306 +msgid "Authors" +msgstr "Utvecklare" + +#: src/Gtk/AboutWindow.vala:314 +msgid "Contributions" +msgstr "Bidrag" + +#: src/Gtk/AboutWindow.vala:322 +msgid "Artists" +msgstr "Artister" + +#: src/Gtk/AboutWindow.vala:330 +msgid "Translators" +msgstr "Översättare" + +#: src/Gtk/AboutWindow.vala:338 +msgid "Documenters" +msgstr "Dokumentalister" + +#: src/Gtk/AboutWindow.vala:346 +#, fuzzy +msgid "Third Party Inclusions" +msgstr "Tredjepartsverktyg" + +#: src/Gtk/AppGtk.vala:135 #, fuzzy msgid "options" msgstr "Alternativ" -#: src/Gtk/AppGtk.vala:147 +#: src/Gtk/AppGtk.vala:139 msgid "Print debug information" msgstr "Skriv ut felsökningsinformation" -#: src/Gtk/AppGtk.vala:148 +#: src/Gtk/AppGtk.vala:140 msgid "Show all options" msgstr "Visa alla alternativ" @@ -314,64 +351,64 @@ msgstr "Kärna" msgid "Status" msgstr "Status" -#: src/Gtk/MainWindow.vala:280 +#: src/Gtk/MainWindow.vala:279 #, fuzzy msgid "Uninstall" msgstr "Installera" -#: src/Gtk/MainWindow.vala:290 +#: src/Gtk/MainWindow.vala:289 msgid "Changes" msgstr "Ändringar" -#: src/Gtk/MainWindow.vala:312 +#: src/Gtk/MainWindow.vala:311 #, fuzzy msgid "Uninstall Old" msgstr "Avinstallation slutförd" -#: src/Gtk/MainWindow.vala:313 +#: src/Gtk/MainWindow.vala:312 #, fuzzy msgid "Uninstall kernels older than running kernel" msgstr "Ta bort installerade kärnor äldre än den som körs" -#: src/Gtk/MainWindow.vala:318 +#: src/Gtk/MainWindow.vala:317 msgid "Reload" msgstr "" -#: src/Gtk/MainWindow.vala:323 src/Gtk/SettingsDialog.vala:50 +#: src/Gtk/MainWindow.vala:322 src/Gtk/SettingsDialog.vala:50 msgid "Settings" msgstr "Inställningar" -#: src/Gtk/MainWindow.vala:328 +#: src/Gtk/MainWindow.vala:327 msgid "About" msgstr "Om" -#: src/Gtk/MainWindow.vala:333 +#: src/Gtk/MainWindow.vala:332 msgid "Exit" msgstr "" -#: src/Gtk/MainWindow.vala:401 +#: src/Gtk/MainWindow.vala:400 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Kärnuppgraderingsverktyg för Ubuntu-baserade distributioner" -#: src/Gtk/MainWindow.vala:402 +#: src/Gtk/MainWindow.vala:401 msgid "Forked" msgstr "" -#: src/Gtk/MainWindow.vala:402 +#: src/Gtk/MainWindow.vala:401 msgid "Original" msgstr "" -#: src/Gtk/MainWindow.vala:440 +#: src/Gtk/MainWindow.vala:439 msgid "Updating kernels" msgstr "" -#: src/Gtk/MainWindow.vala:513 +#: src/Gtk/MainWindow.vala:512 #, fuzzy msgid "available" msgstr "Tillgängliga paket" -#: src/Gtk/MainWindow.vala:546 src/Gtk/MainWindow.vala:579 -#: src/Gtk/MainWindow.vala:606 +#: src/Gtk/MainWindow.vala:545 src/Gtk/MainWindow.vala:578 +#: src/Gtk/MainWindow.vala:605 msgid "DONE" msgstr "" @@ -416,24 +453,24 @@ msgid "Second(s)" msgstr "" #: src/Gtk/SettingsDialog.vala:148 -msgid "Display" -msgstr "Visa" +msgid "Filters" +msgstr "" #: src/Gtk/SettingsDialog.vala:156 msgid "Hide unstable and RC releases" msgstr "Dölj instabila- och RC-publiceringar" #: src/Gtk/SettingsDialog.vala:178 -msgid "previous major versions " +msgid "previous major versions" msgstr "" #: src/Gtk/SettingsDialog.vala:182 -msgid "Other" +msgid "Network" msgstr "" #: src/Gtk/SettingsDialog.vala:193 #, fuzzy -msgid "Internet connection timeout in " +msgid "Internet connection timeout in" msgstr "Internetuppkopplingen är inte aktiv" #: src/Gtk/SettingsDialog.vala:205 @@ -444,51 +481,18 @@ msgstr "" msgid "Max concurrent downloads" msgstr "" -#: src/Gtk/TerminalWindow.vala:154 src/Utility/Gtk/AboutWindow.vala:287 -msgid "Close" -msgstr "Stäng" - -#: src/Utility/Gtk/AboutWindow.vala:264 src/Utility/Gtk/AboutWindow.vala:281 -msgid "Credits" -msgstr "Tack" - -#: src/Utility/Gtk/AboutWindow.vala:277 -msgid "Back" -msgstr "Tillbaka" - -#: src/Utility/Gtk/AboutWindow.vala:306 -msgid "Authors" -msgstr "Utvecklare" - -#: src/Utility/Gtk/AboutWindow.vala:314 -msgid "Contributions" -msgstr "Bidrag" - -#: src/Utility/Gtk/AboutWindow.vala:322 -msgid "Artists" -msgstr "Artister" - -#: src/Utility/Gtk/AboutWindow.vala:330 -msgid "Translators" -msgstr "Översättare" - -#: src/Utility/Gtk/AboutWindow.vala:338 -msgid "Documenters" -msgstr "Dokumentalister" - -#: src/Utility/Gtk/AboutWindow.vala:346 -#, fuzzy -msgid "Third Party Inclusions" -msgstr "Tredjepartsverktyg" +#: src/Gtk/SettingsDialog.vala:226 +msgid "Proxy" +msgstr "" -#: src/Utility/Gtk/GtkHelper.vala:49 +#: src/Gtk/l.gtk.vala:44 msgid "Missing Icon" msgstr "Saknad ikon" -#: src/Utility/TeeJee.Logging.vala:52 +#: src/lib/TeeJee.Logging.vala:43 msgid "E" msgstr "F" -#: src/Utility/TeeJee.Logging.vala:68 +#: src/lib/TeeJee.Logging.vala:50 msgid "D" msgstr "" diff --git a/po/tr.po b/po/tr.po index b5af5670..947adeae 100644 --- a/po/tr.po +++ b/po/tr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-10 15:11-0500\n" +"POT-Creation-Date: 2023-03-11 05:01-0500\n" "PO-Revision-Date: 2022-08-06 16:48+0300\n" "Last-Translator: Sabri Ünal \n" "Language-Team: Turkish\n" @@ -13,11 +13,11 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Poedit 3.1.1\n" -#: src/Common/LinuxKernel.vala:89 +#: src/Common/LinuxKernel.vala:87 msgid "Distribution" msgstr "Dağıtım" -#: src/Common/LinuxKernel.vala:104 +#: src/Common/LinuxKernel.vala:102 msgid "Architecture" msgstr "Sistem mimarisi" @@ -30,114 +30,114 @@ msgstr "İçerik dizini alınıyor..." msgid "Updating from" msgstr "" -#: src/Common/LinuxKernel.vala:736 +#: src/Common/LinuxKernel.vala:738 msgid "Packages Available" msgstr "Mevcut Paketler" -#: src/Common/LinuxKernel.vala:741 +#: src/Common/LinuxKernel.vala:743 msgid "Packages Installed" msgstr "Kurulu Paketler" -#: src/Common/LinuxKernel.vala:754 src/Utility/TeeJee.FileSystem.vala:136 +#: src/Common/LinuxKernel.vala:756 src/lib/TeeJee.FileSystem.vala:121 msgid "File not found" msgstr "Dosya bulunamadı" -#: src/Common/LinuxKernel.vala:819 +#: src/Common/LinuxKernel.vala:821 msgid "Available Kernels" msgstr "Mevcut Çekirdekler" -#: src/Common/LinuxKernel.vala:826 src/Gtk/MainWindow.vala:158 +#: src/Common/LinuxKernel.vala:828 src/Gtk/MainWindow.vala:158 msgid "Installed" msgstr "Kurulu" -#: src/Common/LinuxKernel.vala:826 src/Gtk/MainWindow.vala:158 -#: src/Gtk/MainWindow.vala:504 src/Gtk/MainWindow.vala:517 +#: src/Common/LinuxKernel.vala:828 src/Gtk/MainWindow.vala:158 +#: src/Gtk/MainWindow.vala:503 src/Gtk/MainWindow.vala:516 msgid "Running" msgstr "Çalışıyor" -#: src/Common/LinuxKernel.vala:861 +#: src/Common/LinuxKernel.vala:863 msgid "Downloading" msgstr "İndiriliyor" -#: src/Common/LinuxKernel.vala:880 +#: src/Common/LinuxKernel.vala:882 msgid "OK" msgstr "Tamam" -#: src/Common/LinuxKernel.vala:883 +#: src/Common/LinuxKernel.vala:885 msgid "ERROR" msgstr "HATA" -#: src/Common/LinuxKernel.vala:897 +#: src/Common/LinuxKernel.vala:899 msgid "This kernel is already installed." msgstr "Bu çekirdek zaten kurulu." -#: src/Common/LinuxKernel.vala:927 +#: src/Common/LinuxKernel.vala:929 #, fuzzy msgid "Uninstalling selected kernels" msgstr "Belirtilen çekirdeğini kaldır" -#: src/Common/LinuxKernel.vala:933 +#: src/Common/LinuxKernel.vala:935 msgid "requested" msgstr "" -#: src/Common/LinuxKernel.vala:936 +#: src/Common/LinuxKernel.vala:938 msgid "skipping the currently booted kernel" msgstr "" -#: src/Common/LinuxKernel.vala:952 +#: src/Common/LinuxKernel.vala:954 msgid "found" msgstr "" -#: src/Common/LinuxKernel.vala:955 +#: src/Common/LinuxKernel.vala:957 #, fuzzy msgid "No packages to un-install!" msgstr "Kurulu Paketler" -#: src/Common/LinuxKernel.vala:994 +#: src/Common/LinuxKernel.vala:996 #, fuzzy msgid "Could not find running kernel in list" msgstr "Çalışan sürüm listede bulunamadı!" -#: src/Common/LinuxKernel.vala:1000 +#: src/Common/LinuxKernel.vala:1002 msgid "Could not find any kernels to uninstall" msgstr "Kaldırılacak çekirdek bulunamadı" -#: src/Common/LinuxKernel.vala:1009 +#: src/Common/LinuxKernel.vala:1011 msgid "The following kernels will be uninstalled:" msgstr "Aşağıdaki çekirdekler kaldırılacak:" -#: src/Common/LinuxKernel.vala:1013 +#: src/Common/LinuxKernel.vala:1015 msgid "Continue ?" msgstr "Devam edilsin mi?" -#: src/Common/LinuxKernel.vala:1036 src/Console/AppConsole.vala:295 +#: src/Common/LinuxKernel.vala:1038 src/Console/AppConsole.vala:295 msgid "Latest update" msgstr "Son güncelleme" # Point burada point release anlamında kullanılıyor. Örneğin 5.10.x sayısının en sonundaki x rakamı point release/nokta sürüm oluyor. -#: src/Common/LinuxKernel.vala:1047 src/Console/AppConsole.vala:302 +#: src/Common/LinuxKernel.vala:1049 src/Console/AppConsole.vala:302 msgid "Latest point update" msgstr "Son nokta güncellemesi" -#: src/Common/LinuxKernel.vala:1055 src/Console/AppConsole.vala:307 +#: src/Common/LinuxKernel.vala:1057 src/Console/AppConsole.vala:307 #: src/Console/AppConsole.vala:362 msgid "No updates found" msgstr "Güncelleme bulunamadı" -#: src/Common/LinuxKernel.vala:1064 +#: src/Common/LinuxKernel.vala:1066 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Linux Çekirdek Sürümü %s Kurulsun mu? (e/h): " -#: src/Common/Main.vala:253 +#: src/Common/Main.vala:240 msgid "Called from" msgstr "Çağrı konumu" -#: src/Common/Main.vala:287 +#: src/Common/Main.vala:274 msgid "Notifications are disabled" msgstr "Bildirimler devre dışı bırakılmış" -#: src/Common/Main.vala:325 src/Gtk/MainWindow.vala:615 +#: src/Common/Main.vala:312 src/Gtk/MainWindow.vala:614 #, fuzzy msgid "Can not reach" msgstr "Dosya okunamadı" @@ -147,7 +147,7 @@ msgstr "Dosya okunamadı" msgid "File not found: %s" msgstr "Dosya bulunamadı" -#: src/Console/AppConsole.vala:62 src/Gtk/AppGtk.vala:143 +#: src/Console/AppConsole.vala:62 src/Gtk/AppGtk.vala:135 msgid "Syntax" msgstr "Sözdizimi" @@ -199,7 +199,7 @@ msgstr "Belirtilen çekirdekleri indir" msgid "Delete cached info about available kernels" msgstr "" -#: src/Console/AppConsole.vala:78 src/Gtk/AppGtk.vala:145 +#: src/Console/AppConsole.vala:78 src/Gtk/AppGtk.vala:137 msgid "Options" msgstr "Seçenekler" @@ -231,7 +231,7 @@ msgstr "" "--list çıktısından alınan bir veya daha fazla sürüm dizgesi (virgülle " "ayrılmış)" -#: src/Console/AppConsole.vala:164 src/Gtk/AppGtk.vala:129 +#: src/Console/AppConsole.vala:164 src/Gtk/AppGtk.vala:121 msgid "Unknown option" msgstr "Bilinmeyen seçenek" @@ -278,20 +278,56 @@ msgid "Kernel %s Available" msgstr "Çekirdek %s Kullanılabilir" #: src/Console/AppConsole.vala:342 src/Console/AppConsole.vala:354 -#: src/Gtk/MainWindow.vala:270 +#: src/Gtk/MainWindow.vala:269 msgid "Install" msgstr "Kur" -#: src/Gtk/AppGtk.vala:143 +#: src/Gtk/AboutWindow.vala:264 src/Gtk/AboutWindow.vala:281 +msgid "Credits" +msgstr "Hazırlayanlar" + +#: src/Gtk/AboutWindow.vala:277 +msgid "Back" +msgstr "Geri" + +#: src/Gtk/AboutWindow.vala:287 src/Gtk/TerminalWindow.vala:154 +msgid "Close" +msgstr "Kapat" + +#: src/Gtk/AboutWindow.vala:306 +msgid "Authors" +msgstr "Yazar" + +#: src/Gtk/AboutWindow.vala:314 +msgid "Contributions" +msgstr "Destek verenler" + +#: src/Gtk/AboutWindow.vala:322 +msgid "Artists" +msgstr "Sanatçılar" + +#: src/Gtk/AboutWindow.vala:330 +msgid "Translators" +msgstr "Çevirenler" + +#: src/Gtk/AboutWindow.vala:338 +msgid "Documenters" +msgstr "Belgelendirenler" + +#: src/Gtk/AboutWindow.vala:346 +msgid "Third Party Inclusions" +msgstr "Üçüncü Taraf Eklemeler" + +#: src/Gtk/AppGtk.vala:135 #, fuzzy msgid "options" msgstr "Seçenekler" -#: src/Gtk/AppGtk.vala:147 +#: src/Gtk/AppGtk.vala:139 msgid "Print debug information" msgstr "Hata ayıklama bilgisini yazdır" -#: src/Gtk/AppGtk.vala:148 +#: src/Gtk/AppGtk.vala:140 msgid "Show all options" msgstr "Tüm seçenekleri göster" @@ -303,60 +339,60 @@ msgstr "Çekirdek" msgid "Status" msgstr "Durum" -#: src/Gtk/MainWindow.vala:280 +#: src/Gtk/MainWindow.vala:279 msgid "Uninstall" msgstr "Kaldır" -#: src/Gtk/MainWindow.vala:290 +#: src/Gtk/MainWindow.vala:289 msgid "Changes" msgstr "Değişiklikler" -#: src/Gtk/MainWindow.vala:312 +#: src/Gtk/MainWindow.vala:311 msgid "Uninstall Old" msgstr "Eskileri Kaldır" -#: src/Gtk/MainWindow.vala:313 +#: src/Gtk/MainWindow.vala:312 msgid "Uninstall kernels older than running kernel" msgstr "Çalışan çekirdekten daha eski çekirdekleri kaldır" -#: src/Gtk/MainWindow.vala:318 +#: src/Gtk/MainWindow.vala:317 msgid "Reload" msgstr "" -#: src/Gtk/MainWindow.vala:323 src/Gtk/SettingsDialog.vala:50 +#: src/Gtk/MainWindow.vala:322 src/Gtk/SettingsDialog.vala:50 msgid "Settings" msgstr "Ayarlar" -#: src/Gtk/MainWindow.vala:328 +#: src/Gtk/MainWindow.vala:327 msgid "About" msgstr "Hakkında" -#: src/Gtk/MainWindow.vala:333 +#: src/Gtk/MainWindow.vala:332 msgid "Exit" msgstr "" -#: src/Gtk/MainWindow.vala:401 +#: src/Gtk/MainWindow.vala:400 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Ubuntu tabanlı dağıtımlar için çekirdek güncelleme aracı" -#: src/Gtk/MainWindow.vala:402 +#: src/Gtk/MainWindow.vala:401 msgid "Forked" msgstr "Çatallandı" -#: src/Gtk/MainWindow.vala:402 +#: src/Gtk/MainWindow.vala:401 msgid "Original" msgstr "Özgün" -#: src/Gtk/MainWindow.vala:440 +#: src/Gtk/MainWindow.vala:439 msgid "Updating kernels" msgstr "" -#: src/Gtk/MainWindow.vala:513 +#: src/Gtk/MainWindow.vala:512 msgid "available" msgstr "mevcut" -#: src/Gtk/MainWindow.vala:546 src/Gtk/MainWindow.vala:579 -#: src/Gtk/MainWindow.vala:606 +#: src/Gtk/MainWindow.vala:545 src/Gtk/MainWindow.vala:578 +#: src/Gtk/MainWindow.vala:605 msgid "DONE" msgstr "" @@ -401,8 +437,8 @@ msgid "Second(s)" msgstr "Saniye" #: src/Gtk/SettingsDialog.vala:148 -msgid "Display" -msgstr "Gösterim" +msgid "Filters" +msgstr "" #: src/Gtk/SettingsDialog.vala:156 msgid "Hide unstable and RC releases" @@ -410,15 +446,16 @@ msgstr "Kararsız ve RC sürümleri gizle" #: src/Gtk/SettingsDialog.vala:178 #, fuzzy -msgid "previous major versions " +msgid "previous major versions" msgstr "Önceki ana sürümleri gösterme sayısı " #: src/Gtk/SettingsDialog.vala:182 -msgid "Other" -msgstr "Diğer" +msgid "Network" +msgstr "" #: src/Gtk/SettingsDialog.vala:193 -msgid "Internet connection timeout in " +#, fuzzy +msgid "Internet connection timeout in" msgstr "İnternet bağlantısı zaman aşımı " #: src/Gtk/SettingsDialog.vala:205 @@ -429,50 +466,18 @@ msgstr "saniye" msgid "Max concurrent downloads" msgstr "Azami eşzamanlı indirme" -#: src/Gtk/TerminalWindow.vala:154 src/Utility/Gtk/AboutWindow.vala:287 -msgid "Close" -msgstr "Kapat" - -#: src/Utility/Gtk/AboutWindow.vala:264 src/Utility/Gtk/AboutWindow.vala:281 -msgid "Credits" -msgstr "Hazırlayanlar" - -#: src/Utility/Gtk/AboutWindow.vala:277 -msgid "Back" -msgstr "Geri" - -#: src/Utility/Gtk/AboutWindow.vala:306 -msgid "Authors" -msgstr "Yazar" - -#: src/Utility/Gtk/AboutWindow.vala:314 -msgid "Contributions" -msgstr "Destek verenler" - -#: src/Utility/Gtk/AboutWindow.vala:322 -msgid "Artists" -msgstr "Sanatçılar" - -#: src/Utility/Gtk/AboutWindow.vala:330 -msgid "Translators" -msgstr "Çevirenler" - -#: src/Utility/Gtk/AboutWindow.vala:338 -msgid "Documenters" -msgstr "Belgelendirenler" - -#: src/Utility/Gtk/AboutWindow.vala:346 -msgid "Third Party Inclusions" -msgstr "Üçüncü Taraf Eklemeler" +#: src/Gtk/SettingsDialog.vala:226 +msgid "Proxy" +msgstr "" -#: src/Utility/Gtk/GtkHelper.vala:49 +#: src/Gtk/l.gtk.vala:44 msgid "Missing Icon" msgstr "Eksik Simge" -#: src/Utility/TeeJee.Logging.vala:52 +#: src/lib/TeeJee.Logging.vala:43 msgid "E" msgstr "H" -#: src/Utility/TeeJee.Logging.vala:68 +#: src/lib/TeeJee.Logging.vala:50 msgid "D" msgstr "S" diff --git a/po/uk.po b/po/uk.po index eedb057c..b519b7e4 100644 --- a/po/uk.po +++ b/po/uk.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-10 15:11-0500\n" +"POT-Creation-Date: 2023-03-11 05:01-0500\n" "PO-Revision-Date: 2019-07-25 11:00+0300\n" "Last-Translator: Serhii Golovko \n" "Language-Team: Ukranian\n" @@ -13,11 +13,11 @@ msgstr "" "X-Launchpad-Export-Date: 2016-12-13 11:48+0000\n" "X-Generator: Poedit 2.2.1\n" -#: src/Common/LinuxKernel.vala:89 +#: src/Common/LinuxKernel.vala:87 msgid "Distribution" msgstr "Дистрибутив" -#: src/Common/LinuxKernel.vala:104 +#: src/Common/LinuxKernel.vala:102 msgid "Architecture" msgstr "Системна архитектура" @@ -30,110 +30,110 @@ msgstr "Отримання окремих індексів ядра..." msgid "Updating from" msgstr "" -#: src/Common/LinuxKernel.vala:736 +#: src/Common/LinuxKernel.vala:738 msgid "Packages Available" msgstr "Доступні пакети" -#: src/Common/LinuxKernel.vala:741 +#: src/Common/LinuxKernel.vala:743 msgid "Packages Installed" msgstr "Встановлені пакети" -#: src/Common/LinuxKernel.vala:754 src/Utility/TeeJee.FileSystem.vala:136 +#: src/Common/LinuxKernel.vala:756 src/lib/TeeJee.FileSystem.vala:121 msgid "File not found" msgstr "Файл не знайдено" -#: src/Common/LinuxKernel.vala:819 +#: src/Common/LinuxKernel.vala:821 msgid "Available Kernels" msgstr "Доступні ядра" -#: src/Common/LinuxKernel.vala:826 src/Gtk/MainWindow.vala:158 +#: src/Common/LinuxKernel.vala:828 src/Gtk/MainWindow.vala:158 msgid "Installed" msgstr "Встановлено" -#: src/Common/LinuxKernel.vala:826 src/Gtk/MainWindow.vala:158 -#: src/Gtk/MainWindow.vala:504 src/Gtk/MainWindow.vala:517 +#: src/Common/LinuxKernel.vala:828 src/Gtk/MainWindow.vala:158 +#: src/Gtk/MainWindow.vala:503 src/Gtk/MainWindow.vala:516 msgid "Running" msgstr "Використовується" -#: src/Common/LinuxKernel.vala:861 +#: src/Common/LinuxKernel.vala:863 msgid "Downloading" msgstr "Завантаження" -#: src/Common/LinuxKernel.vala:880 +#: src/Common/LinuxKernel.vala:882 msgid "OK" msgstr "Добре" -#: src/Common/LinuxKernel.vala:883 +#: src/Common/LinuxKernel.vala:885 msgid "ERROR" msgstr "ПОМИЛКА" -#: src/Common/LinuxKernel.vala:897 +#: src/Common/LinuxKernel.vala:899 msgid "This kernel is already installed." msgstr "Це ядро вже встановлено." -#: src/Common/LinuxKernel.vala:927 +#: src/Common/LinuxKernel.vala:929 msgid "Uninstalling selected kernels" msgstr "Видаліть конкретні ядра" -#: src/Common/LinuxKernel.vala:933 +#: src/Common/LinuxKernel.vala:935 msgid "requested" msgstr "запитуваний" -#: src/Common/LinuxKernel.vala:936 +#: src/Common/LinuxKernel.vala:938 msgid "skipping the currently booted kernel" msgstr "пропускаючи поточне завантажене ядро" -#: src/Common/LinuxKernel.vala:952 +#: src/Common/LinuxKernel.vala:954 msgid "found" msgstr "знайдено" -#: src/Common/LinuxKernel.vala:955 +#: src/Common/LinuxKernel.vala:957 msgid "No packages to un-install!" msgstr "Немає пакетів для видалення!" -#: src/Common/LinuxKernel.vala:994 +#: src/Common/LinuxKernel.vala:996 msgid "Could not find running kernel in list" msgstr "Не вдалося знайти запущене ядро у списку!" -#: src/Common/LinuxKernel.vala:1000 +#: src/Common/LinuxKernel.vala:1002 msgid "Could not find any kernels to uninstall" msgstr "Не вдалося знайти жодне ядро для вилучення" -#: src/Common/LinuxKernel.vala:1009 +#: src/Common/LinuxKernel.vala:1011 msgid "The following kernels will be uninstalled:" msgstr "Наступні ядра будуть видалені:" -#: src/Common/LinuxKernel.vala:1013 +#: src/Common/LinuxKernel.vala:1015 msgid "Continue ?" msgstr "Продовжувати ?" -#: src/Common/LinuxKernel.vala:1036 src/Console/AppConsole.vala:295 +#: src/Common/LinuxKernel.vala:1038 src/Console/AppConsole.vala:295 msgid "Latest update" msgstr "Останнє оновлення" -#: src/Common/LinuxKernel.vala:1047 src/Console/AppConsole.vala:302 +#: src/Common/LinuxKernel.vala:1049 src/Console/AppConsole.vala:302 msgid "Latest point update" msgstr "Остання точка оновлення" -#: src/Common/LinuxKernel.vala:1055 src/Console/AppConsole.vala:307 +#: src/Common/LinuxKernel.vala:1057 src/Console/AppConsole.vala:307 #: src/Console/AppConsole.vala:362 msgid "No updates found" msgstr "Оновлень не знайдено" -#: src/Common/LinuxKernel.vala:1064 +#: src/Common/LinuxKernel.vala:1066 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Встановити Ядро Версії %s ? (так/ні): " -#: src/Common/Main.vala:253 +#: src/Common/Main.vala:240 msgid "Called from" msgstr "Викликано з" -#: src/Common/Main.vala:287 +#: src/Common/Main.vala:274 msgid "Notifications are disabled" msgstr "Повідомлення вимкнено" -#: src/Common/Main.vala:325 src/Gtk/MainWindow.vala:615 +#: src/Common/Main.vala:312 src/Gtk/MainWindow.vala:614 msgid "Can not reach" msgstr "Не може дістатися" @@ -142,7 +142,7 @@ msgstr "Не може дістатися" msgid "File not found: %s" msgstr "Файл не знайдено" -#: src/Console/AppConsole.vala:62 src/Gtk/AppGtk.vala:143 +#: src/Console/AppConsole.vala:62 src/Gtk/AppGtk.vala:135 msgid "Syntax" msgstr "Синтаксис" @@ -194,7 +194,7 @@ msgstr "Завантажте конкретні ядра" msgid "Delete cached info about available kernels" msgstr "Видалити кешовану інформацію про доступні ядра" -#: src/Console/AppConsole.vala:78 src/Gtk/AppGtk.vala:145 +#: src/Console/AppConsole.vala:78 src/Gtk/AppGtk.vala:137 msgid "Options" msgstr "Параметри" @@ -223,7 +223,7 @@ msgid "" "One or more version strings (comma-separated) taken from the output of --list" msgstr "Одна або кілька рядків версії (розділені комами) з виводу --list" -#: src/Console/AppConsole.vala:164 src/Gtk/AppGtk.vala:129 +#: src/Console/AppConsole.vala:164 src/Gtk/AppGtk.vala:121 msgid "Unknown option" msgstr "Невідомий параметр" @@ -270,19 +270,55 @@ msgid "Kernel %s Available" msgstr "Ядро %s Доступне" #: src/Console/AppConsole.vala:342 src/Console/AppConsole.vala:354 -#: src/Gtk/MainWindow.vala:270 +#: src/Gtk/MainWindow.vala:269 msgid "Install" msgstr "Встановити" -#: src/Gtk/AppGtk.vala:143 +#: src/Gtk/AboutWindow.vala:264 src/Gtk/AboutWindow.vala:281 +msgid "Credits" +msgstr "Творці" + +#: src/Gtk/AboutWindow.vala:277 +msgid "Back" +msgstr "Назад" + +#: src/Gtk/AboutWindow.vala:287 src/Gtk/TerminalWindow.vala:154 +msgid "Close" +msgstr "Закрити" + +#: src/Gtk/AboutWindow.vala:306 +msgid "Authors" +msgstr "Автори" + +#: src/Gtk/AboutWindow.vala:314 +msgid "Contributions" +msgstr "Внески" + +#: src/Gtk/AboutWindow.vala:322 +msgid "Artists" +msgstr "Художники" + +#: src/Gtk/AboutWindow.vala:330 +msgid "Translators" +msgstr "Перекладачі" + +#: src/Gtk/AboutWindow.vala:338 +msgid "Documenters" +msgstr "Документатори" + +#: src/Gtk/AboutWindow.vala:346 +msgid "Third Party Inclusions" +msgstr "Включення третіх осіб" + +#: src/Gtk/AppGtk.vala:135 msgid "options" msgstr "параметри" -#: src/Gtk/AppGtk.vala:147 +#: src/Gtk/AppGtk.vala:139 msgid "Print debug information" msgstr "Роздрукувати зневадження" -#: src/Gtk/AppGtk.vala:148 +#: src/Gtk/AppGtk.vala:140 msgid "Show all options" msgstr "Показати усі параметри" @@ -294,60 +330,60 @@ msgstr "Ядро" msgid "Status" msgstr "Стан" -#: src/Gtk/MainWindow.vala:280 +#: src/Gtk/MainWindow.vala:279 msgid "Uninstall" msgstr "Видалити" -#: src/Gtk/MainWindow.vala:290 +#: src/Gtk/MainWindow.vala:289 msgid "Changes" msgstr "Зміни" -#: src/Gtk/MainWindow.vala:312 +#: src/Gtk/MainWindow.vala:311 msgid "Uninstall Old" msgstr "Видалити старе" -#: src/Gtk/MainWindow.vala:313 +#: src/Gtk/MainWindow.vala:312 msgid "Uninstall kernels older than running kernel" msgstr "Видалити ядра, старіші за запущене ядро" -#: src/Gtk/MainWindow.vala:318 +#: src/Gtk/MainWindow.vala:317 msgid "Reload" msgstr "Перезавантажити" -#: src/Gtk/MainWindow.vala:323 src/Gtk/SettingsDialog.vala:50 +#: src/Gtk/MainWindow.vala:322 src/Gtk/SettingsDialog.vala:50 msgid "Settings" msgstr "Налаштування" -#: src/Gtk/MainWindow.vala:328 +#: src/Gtk/MainWindow.vala:327 msgid "About" msgstr "Про программу" -#: src/Gtk/MainWindow.vala:333 +#: src/Gtk/MainWindow.vala:332 msgid "Exit" msgstr "Вихід" -#: src/Gtk/MainWindow.vala:401 +#: src/Gtk/MainWindow.vala:400 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Програма оновлення ядра для дистрибутивів на базі Ubuntu" -#: src/Gtk/MainWindow.vala:402 +#: src/Gtk/MainWindow.vala:401 msgid "Forked" msgstr "Двоєний" -#: src/Gtk/MainWindow.vala:402 +#: src/Gtk/MainWindow.vala:401 msgid "Original" msgstr "Оригінал" -#: src/Gtk/MainWindow.vala:440 +#: src/Gtk/MainWindow.vala:439 msgid "Updating kernels" msgstr "" -#: src/Gtk/MainWindow.vala:513 +#: src/Gtk/MainWindow.vala:512 msgid "available" msgstr "доступний" -#: src/Gtk/MainWindow.vala:546 src/Gtk/MainWindow.vala:579 -#: src/Gtk/MainWindow.vala:606 +#: src/Gtk/MainWindow.vala:545 src/Gtk/MainWindow.vala:578 +#: src/Gtk/MainWindow.vala:605 msgid "DONE" msgstr "ГОТОВО" @@ -392,8 +428,8 @@ msgid "Second(s)" msgstr "Секунда(и)" #: src/Gtk/SettingsDialog.vala:148 -msgid "Display" -msgstr "Показ" +msgid "Filters" +msgstr "" #: src/Gtk/SettingsDialog.vala:156 msgid "Hide unstable and RC releases" @@ -401,15 +437,16 @@ msgstr "Приховати нестабільні і RC" #: src/Gtk/SettingsDialog.vala:178 #, fuzzy -msgid "previous major versions " +msgid "previous major versions" msgstr "Показати N попередніх основних версій " #: src/Gtk/SettingsDialog.vala:182 -msgid "Other" -msgstr "Інший" +msgid "Network" +msgstr "" #: src/Gtk/SettingsDialog.vala:193 -msgid "Internet connection timeout in " +#, fuzzy +msgid "Internet connection timeout in" msgstr "Час очікування підключення до Інтернету в " #: src/Gtk/SettingsDialog.vala:205 @@ -420,50 +457,18 @@ msgstr "секунди" msgid "Max concurrent downloads" msgstr "Максимальна кількість завантажень" -#: src/Gtk/TerminalWindow.vala:154 src/Utility/Gtk/AboutWindow.vala:287 -msgid "Close" -msgstr "Закрити" - -#: src/Utility/Gtk/AboutWindow.vala:264 src/Utility/Gtk/AboutWindow.vala:281 -msgid "Credits" -msgstr "Творці" - -#: src/Utility/Gtk/AboutWindow.vala:277 -msgid "Back" -msgstr "Назад" - -#: src/Utility/Gtk/AboutWindow.vala:306 -msgid "Authors" -msgstr "Автори" - -#: src/Utility/Gtk/AboutWindow.vala:314 -msgid "Contributions" -msgstr "Внески" - -#: src/Utility/Gtk/AboutWindow.vala:322 -msgid "Artists" -msgstr "Художники" - -#: src/Utility/Gtk/AboutWindow.vala:330 -msgid "Translators" -msgstr "Перекладачі" - -#: src/Utility/Gtk/AboutWindow.vala:338 -msgid "Documenters" -msgstr "Документатори" - -#: src/Utility/Gtk/AboutWindow.vala:346 -msgid "Third Party Inclusions" -msgstr "Включення третіх осіб" +#: src/Gtk/SettingsDialog.vala:226 +msgid "Proxy" +msgstr "" -#: src/Utility/Gtk/GtkHelper.vala:49 +#: src/Gtk/l.gtk.vala:44 msgid "Missing Icon" msgstr "Нема значка" -#: src/Utility/TeeJee.Logging.vala:52 +#: src/lib/TeeJee.Logging.vala:43 msgid "E" msgstr "E" -#: src/Utility/TeeJee.Logging.vala:68 +#: src/lib/TeeJee.Logging.vala:50 msgid "D" msgstr "D" diff --git a/settings.md b/settings.md index 27098e57..fe17acdc 100644 --- a/settings.md +++ b/settings.md @@ -8,7 +8,7 @@ Starts a background process that periodically checks for new kernels and sends a The monitor is installed in your desktop autostart folder such that it is started in the background any time you log in. It is removed by unselecting both checkboxes. -## Display +## Filters **\[ \] Hide unstable and RC releases** Excludes less stable more bleeding edge -rc kernels from the list. @@ -41,7 +41,8 @@ On the other hand, if you explicitly *want* to see a bigger list including older Distro kernels are not factored. If the latest mainline available are 7.x and 6.x, and you also have a 5.x installed from ubuntu, the threshold is not set to 5.x. The purpose of setting the floor at your oldest installed kernel is so that you can see any *mainline* point releases available that might exist after your installed versions, so that you could still update to the latest 6.x even after 7.x becomes available, without having to deal with loading two full generations all the time if you don't actually need the previous generation. The distro provided kernels are unrelated. They are only even displayed in the list for completeness and for the convenience of un-installing. -## Other +## Network **Internet connection timeout in \[##\] seconds** **Max concurrent downloads \[#\]** +**Proxy \[ \]** These correspond to options for aria2c used to download index.html and deb package files in the background. diff --git a/src/Common/DownloadManager.vala b/src/Common/DownloadManager.vala index 203e2061..ba46a085 100644 --- a/src/Common/DownloadManager.vala +++ b/src/Common/DownloadManager.vala @@ -22,10 +22,10 @@ public class DownloadTask : AsyncTask { public DownloadTask() { base(); - + downloads = new Gee.ArrayList(); map = new Gee.HashMap(); - + regex = new Gee.HashMap(); try { @@ -98,7 +98,7 @@ public class DownloadTask : AsyncTask { string cmd = "aria2c" + " --no-netrc true" - + " -i '%s'".printf(escape_single_quote(list_file)) + + " -i '"+list_file.replace("'","'\\''")+"'" + " --summary-interval=1" + " --auto-save-interval=1" + " --enable-color=false" @@ -112,6 +112,8 @@ public class DownloadTask : AsyncTask { + " --human-readable=false" ; + if (App.all_proxy!="") cmd += " --all-proxy='"+App.all_proxy+"'"; + log_debug(cmd); return cmd; @@ -229,18 +231,6 @@ public class DownloadItem : GLib.Object } public string status_line() { - if (task.status_in_kb) { - return "%s / %s, %s/s (%s)".printf( - format_file_size(bytes_received, false, "", true, 1), - format_file_size(bytes_total, false, "", true, 1), - format_file_size(rate, false, "", true, 1), - eta).replace("\n",""); - } else { - return "%s / %s, %s/s (%s)".printf( - format_file_size(bytes_received), - format_file_size(bytes_total), - format_file_size(rate), - eta).replace("\n",""); - } + return "%ll / %ll".printf(bytes_received,bytes_total); } } diff --git a/src/Common/LinuxKernel.vala b/src/Common/LinuxKernel.vala index 57591415..cb7f0f7e 100644 --- a/src/Common/LinuxKernel.vala +++ b/src/Common/LinuxKernel.vala @@ -2,8 +2,8 @@ using TeeJee.Logging; using TeeJee.FileSystem; using TeeJee.JsonHelper; using TeeJee.ProcessHelper; -using TeeJee.System; using TeeJee.Misc; +using l.time; public class LinuxKernel : GLib.Object, Gee.Comparable { @@ -18,8 +18,8 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { public int version_point = -1; public int version_rc = -1; - public Gee.HashMap deb_list = new Gee.HashMap(); - public Gee.HashMap pkg_list = new Gee.HashMap(); + public Gee.HashMap deb_list = new Gee.HashMap(); // assosciated .deb file names + public Gee.HashMap pkg_list = new Gee.HashMap(); // assosciated dpkg package names public static Gee.HashMap pkg_list_installed; @@ -33,17 +33,13 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { public string deb_image_extra = ""; public string deb_modules = ""; - // static - - public static string PPA_URI; - public static string CACHE_DIR; public static string NATIVE_ARCH; public static string LINUX_DISTRO; public static string RUNNING_KERNEL; - public static string CURRENT_USER; - public static string CURRENT_USER_HOME; - + public static string PPA_URI; + public static string CACHE_DIR; + public static LinuxKernel kernel_active; public static LinuxKernel kernel_update_major; public static LinuxKernel kernel_update_minor; @@ -67,7 +63,6 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { public static int threshold_major = 0; // class initialize - public static void initialize() { new LinuxKernel("", false); // instance must be created before setting static members @@ -75,6 +70,9 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { NATIVE_ARCH = check_package_architecture(); RUNNING_KERNEL = check_running_kernel().replace("-generic",""); initialize_regex(); + kernel_latest_installed = new LinuxKernel.from_version(RUNNING_KERNEL); + kernel_oldest_installed = kernel_latest_installed; + kernel_latest_available = kernel_latest_installed; } // dep: lsb_release @@ -174,7 +172,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { split_version_string(kver, out version_main); // build url - page_uri = "%s%s".printf(PPA_URI, _name); + page_uri = PPA_URI + _name; // override is_mainline from split_version_string() is_mainline = _is_mainline; @@ -224,7 +222,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { // find the oldest major version to include Package.update_dpkg_list(); - find_threshold_major_version(); + update_threshold_major(); // ===== download the per-kernel index.html and CHANGES ===== @@ -247,9 +245,10 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { if (!k.is_valid) continue; - if (k.version_maj < threshold_major) continue; - - if (App.hide_unstable && k.is_unstable) continue; + if (!k.is_installed) { + if (k.version_maj < threshold_major) continue; + if (App.hide_unstable && k.is_unstable) continue; + } //log_debug(k.version_main+" "+_("GET")); @@ -261,8 +260,9 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { item = new DownloadItem(k.changes_file_uri, file_parent(k.changes_file), file_basename(k.changes_file)); downloads.add(item); - // add kernel to kernel list + // add kernel to update list kernels_to_update.add(k); + if (notifier != null) notifier(timer, ref count); } @@ -389,8 +389,8 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { // temp kernel object for current pkg string pkern_name = pkg.version; var pkern = new LinuxKernel(pkern_name, false); - pkern.is_installed = true; - pkern.set_pkg_list(); + pkern.is_installed = true; // dpkg_list[] only contains installed packages + pkern.set_pkg_list(); // find assosciated packages and fill pkern.pkg_list[] // search the mainline list for matching package name // fill k.pkg_list list of assosciated pkgs @@ -437,14 +437,15 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { var kern_running = new LinuxKernel.from_version(RUNNING_KERNEL); kernel_active = null; + // https://github.com/bkw777/mainline/issues/91 + // scan mainline kernels foreach (var k in kernel_list) { if (!k.is_valid) continue; if (!k.is_mainline) continue; if (k.version_package.length > 0) { - string ver_pkg_short = k.version_package[0 : k.version_package.last_index_of(".")]; - //log_debug(ver_pkg_short+" "+RUNNING_KERNEL); - if (ver_pkg_short == RUNNING_KERNEL) { + // (k.version_main.contains(kern_running.version_main) || kern_running.version_main.contains(k.version_main)) + if (k.version_package[0 : k.version_package.last_index_of(".")] == RUNNING_KERNEL) { k.is_running = true; k.is_installed = true; kernel_active = k; @@ -458,7 +459,9 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { foreach (var k in kernel_list) { if (!k.is_valid) continue; if (k.is_mainline) continue; - if (kern_running.version_main == k.version_main) { + //if (kern_running.version_main == k.version_main) { // strict + //if (k.version_main.contains(kern_running.version_main) || kern_running.version_main.contains(k.version_main)) { // forgiving + if (k.version_main.has_prefix(kern_running.version_main) || kern_running.version_main.has_prefix(k.version_main)) { // forgiving k.is_running = true; k.is_installed = true; kernel_active = k; @@ -473,7 +476,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { // find the highest & lowest installed versions ---------------------- kernel_latest_installed = new LinuxKernel.from_version("0"); - kernel_oldest_installed = new LinuxKernel.from_version("0"); + kernel_oldest_installed = kernel_latest_installed; foreach(var k in kernel_list) { if (k.is_installed) { if (kernel_latest_installed.version_maj==0) kernel_latest_installed = k; @@ -522,8 +525,8 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { // helpers - public static void find_threshold_major_version() { - log_debug("find_threshold_major_version()"); + public static void update_threshold_major() { + log_debug("update_threshold_major()"); //Package.update_dpkg_list(); @@ -536,7 +539,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { if (candidate.version_maj < kernel_oldest_installed.version_maj) kernel_oldest_installed = candidate; } - threshold_major = kernel_latest_available.version_maj - App.show_prev_majors; + threshold_major = kernel_latest_available.version_maj - App.previous_majors; if (kernel_oldest_installed.version_maj < threshold_major) threshold_major = kernel_oldest_installed.version_maj; log_debug("threshold_major %d".printf(threshold_major)); } @@ -679,26 +682,25 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { public bool is_valid { get { - string invalid_file_path = "%s/invalid".printf(cache_subdir); - return !file_exists(invalid_file_path); + return !file_exists(cache_subdir+"/invalid"); } } public static string index_page { owned get { - return "%s/index.html".printf(CACHE_DIR); + return CACHE_DIR+"/index.html"; } } public string cache_subdir { owned get { - return "%s/%s".printf(CACHE_DIR,version_main); + return CACHE_DIR+"/"+version_main; } } public string cached_page { owned get { - return "%s/index.html".printf(cache_subdir); + return cache_subdir+"/index.html"; } } @@ -710,13 +712,13 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { public string changes_file { owned get { - return "%s/CHANGES".printf(cache_subdir); + return cache_subdir+"/CHANGES"; } } public string changes_file_uri { owned get { - return "%s%s".printf(page_uri, "CHANGES"); + return page_uri+"CHANGES"; } } @@ -970,7 +972,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { download_index(); load_index(); Package.update_dpkg_list(); - find_threshold_major_version(); + update_threshold_major(); check_installed(); var list = new Gee.ArrayList(); diff --git a/src/Common/Main.vala b/src/Common/Main.vala index 4a3579a0..5167c9db 100644 --- a/src/Common/Main.vala +++ b/src/Common/Main.vala @@ -29,8 +29,8 @@ using TeeJee.Logging; using TeeJee.FileSystem; using TeeJee.JsonHelper; using TeeJee.ProcessHelper; -using TeeJee.System; using TeeJee.Misc; +using l.time; [CCode(cname="BRANDING_SHORTNAME")] extern const string BRANDING_SHORTNAME; [CCode(cname="BRANDING_LONGNAME")] extern const string BRANDING_LONGNAME; @@ -61,9 +61,10 @@ public class Main : GLib.Object { public string user_login = ""; public string user_home = ""; + public string CACHE_DIR = "~/.cache/"+BRANDING_SHORTNAME ; // non-empty for safety // global progress ---------------- - + public string status_line = ""; public int64 progress_total = 0; public int64 progress_count = 0; @@ -87,10 +88,11 @@ public class Main : GLib.Object { public int _window_y = -1; public string ppa_uri = DEFAULT_PPA_URI; + public string all_proxy = ""; public bool notify_major = true; public bool notify_minor = true; public bool hide_unstable = true; - public int show_prev_majors = 0; + public int previous_majors = 0; public int notify_interval_unit = 0; public int notify_interval_value = 2; public int connect_timeout_seconds = 15; @@ -100,18 +102,11 @@ public class Main : GLib.Object { // constructors ------------ public Main(string[] arg0, bool _gui_mode) { - //log_msg("Main()"); - GUI_MODE = _gui_mode; - init_paths(); - load_app_config(); - Package.initialize(); - LinuxKernel.initialize(); - } // helpers ------------ @@ -120,7 +115,6 @@ public class Main : GLib.Object { // user info user_login = GLib.Environment.get_user_name(); - user_home = GLib.Environment.get_home_dir(); APP_CONF_DIR = user_home + "/.config/" + BRANDING_SHORTNAME; @@ -130,24 +124,22 @@ public class Main : GLib.Object { NOTIFICATION_ID_FILE = APP_CONF_DIR + "/notification_id"; MAJ_SEEN_FILE = APP_CONF_DIR + "/notification_seen.major"; MIN_SEEN_FILE = APP_CONF_DIR + "/notification_seen.minor"; + CACHE_DIR = user_home + "/.cache/" + BRANDING_SHORTNAME; + TMP_PREFIX = Environment.get_tmp_dir() + "/." + BRANDING_SHORTNAME; - LinuxKernel.CACHE_DIR = user_home + "/.cache/" + BRANDING_SHORTNAME; - LinuxKernel.CURRENT_USER = user_login; - LinuxKernel.CURRENT_USER_HOME = user_home; - LinuxKernel.PPA_URI = ppa_uri; + LinuxKernel.CACHE_DIR = CACHE_DIR; - // todo: consider get_user_runtime_dir() or get_user_cache_dir() - TMP_PREFIX = Environment.get_tmp_dir() + "/." + BRANDING_SHORTNAME; } public void save_app_config() { var config = new Json.Object(); config.set_string_member("ppa_uri", ppa_uri); + config.set_string_member("all_proxy", all_proxy); config.set_string_member("notify_major", notify_major.to_string()); config.set_string_member("notify_minor", notify_minor.to_string()); config.set_string_member("hide_unstable", hide_unstable.to_string()); - config.set_string_member("show_prev_majors", show_prev_majors.to_string()); + config.set_string_member("previous_majors", previous_majors.to_string()); config.set_string_member("notify_interval_unit", notify_interval_unit.to_string()); config.set_string_member("notify_interval_value", notify_interval_value.to_string()); config.set_string_member("connect_timeout_seconds", connect_timeout_seconds.to_string()); @@ -170,7 +162,7 @@ public class Main : GLib.Object { log_error (e.message); } - log_debug("Saved config file: %s".printf(APP_CONFIG_FILE)); + log_debug("Wrote config file: %s".printf(APP_CONFIG_FILE)); update_notification_files(); } @@ -181,15 +173,7 @@ public class Main : GLib.Object { } public void load_app_config() { - - var f = File.new_for_path(APP_CONFIG_FILE); - - if (!f.query_exists()) { - // initialize static - hide_unstable = true; - show_prev_majors = 0; - return; - } + //log_msg("load_app_config()"); var parser = new Json.Parser(); @@ -202,23 +186,26 @@ public class Main : GLib.Object { var node = parser.get_root(); var config = node.get_object(); - ppa_uri = json_get_string(config, "ppa_uri", DEFAULT_PPA_URI); LinuxKernel.PPA_URI = ppa_uri; + ppa_uri = json_get_string(config, "ppa_uri", DEFAULT_PPA_URI); + all_proxy = json_get_string(config, "all_proxy", ""); notify_major = json_get_bool(config, "notify_major", true); notify_minor = json_get_bool(config, "notify_minor", true); notify_interval_unit = json_get_int(config, "notify_interval_unit", 0); notify_interval_value = json_get_int(config, "notify_interval_value", 2); connect_timeout_seconds = json_get_int(config, "connect_timeout_seconds", 15); concurrent_downloads = json_get_int(config, "concurrent_downloads", 4); - hide_unstable = json_get_bool(config, "hide_unstable", true); - show_prev_majors = json_get_int(config, "show_prev_majors", 0); - + previous_majors = json_get_int(config, "previous_majors", 0); window_width = json_get_int(config, "window_width", window_width); window_height = json_get_int(config, "window_height", window_height); window_x = json_get_int(config, "window_x", window_x); window_y = json_get_int(config, "window_y", window_y); - log_debug("Load config file: %s".printf(APP_CONFIG_FILE)); + // fixups + if (!ppa_uri.has_suffix("/")) ppa_uri += "/"; + LinuxKernel.PPA_URI = ppa_uri; + + log_msg("Loaded config file: "+APP_CONFIG_FILE); } // begin ------------ @@ -328,4 +315,11 @@ public class Main : GLib.Object { return connection_status; } + public void uri_open(string uri) { + try { + AppInfo.launch_default_for_uri(uri,null); + } catch (Error e) { + warning("Unable to launch %s", uri); + } + } } diff --git a/src/Console/AppConsole.vala b/src/Console/AppConsole.vala index 65c0f599..0b66dd73 100644 --- a/src/Console/AppConsole.vala +++ b/src/Console/AppConsole.vala @@ -27,8 +27,8 @@ using TeeJee.Logging; using TeeJee.FileSystem; using TeeJee.JsonHelper; using TeeJee.ProcessHelper; -using TeeJee.System; using TeeJee.Misc; +using l.time; public Main App; diff --git a/src/Utility/Gtk/AboutWindow.vala b/src/Gtk/AboutWindow.vala similarity index 97% rename from src/Utility/Gtk/AboutWindow.vala rename to src/Gtk/AboutWindow.vala index 40ced85b..7d41c513 100644 --- a/src/Utility/Gtk/AboutWindow.vala +++ b/src/Gtk/AboutWindow.vala @@ -27,9 +27,9 @@ using TeeJee.Logging; using TeeJee.FileSystem; using TeeJee.JsonHelper; using TeeJee.ProcessHelper; -using TeeJee.GtkHelper; -using TeeJee.System; +using l.gtk; using TeeJee.Misc; +using l.time; public class AboutWindow : Dialog { private Box vbox_main; @@ -235,7 +235,7 @@ public class AboutWindow : Dialog { lbtn_website.margin_top = 5; vbox_logo.add(lbtn_website); - lbtn_website.activate_link.connect(()=>{ uri_open(lbtn_website.uri); return true; }); + lbtn_website.activate_link.connect(()=>{ App.uri_open(lbtn_website.uri); return true; }); //copyright lbl_copyright = new Label(""); @@ -372,7 +372,7 @@ public class AboutWindow : Dialog { link.uri = "http://" + val; } - link.activate_link.connect(() => { uri_open(link.uri); return true; }); + link.activate_link.connect(() => { App.uri_open(link.uri); return true; }); } else{ var txt = text; diff --git a/src/Gtk/AppGtk.vala b/src/Gtk/AppGtk.vala index de26355e..d77b959a 100644 --- a/src/Gtk/AppGtk.vala +++ b/src/Gtk/AppGtk.vala @@ -29,32 +29,24 @@ using TeeJee.Logging; using TeeJee.FileSystem; using TeeJee.JsonHelper; using TeeJee.ProcessHelper; -using TeeJee.GtkHelper; -using TeeJee.System; +using l.gtk; using TeeJee.Misc; +using l.time; public Main App; public class AppGtk : GLib.Object { public static int main (string[] args) { - set_locale(); - - log_msg("%s %s".printf(BRANDING_SHORTNAME, BRANDING_VERSION)); - + log_msg(BRANDING_SHORTNAME+" "+BRANDING_VERSION); X.init_threads(); - Gtk.init(ref args); - App = new Main(args, true); - parse_arguments(args); // create main window -------------------------------------- - var window = new MainWindow (); - window.configure_event.connect ((event) => { //log_debug("resize: %dx%d@%dx%d".printf(event.width,event.height,event.x,event.y)); App.window_width = event.width; diff --git a/src/Gtk/MainWindow.vala b/src/Gtk/MainWindow.vala index df89babd..18c4fc0f 100644 --- a/src/Gtk/MainWindow.vala +++ b/src/Gtk/MainWindow.vala @@ -28,9 +28,9 @@ using TeeJee.Logging; using TeeJee.FileSystem; using TeeJee.JsonHelper; using TeeJee.ProcessHelper; -using TeeJee.GtkHelper; -using TeeJee.System; +using l.gtk; using TeeJee.Misc; +using l.time; public class MainWindow : Gtk.Window { @@ -159,7 +159,6 @@ public class MainWindow : Gtk.Window { }); tv.set_tooltip_column(3); - } private void tv_row_activated(TreePath path, TreeViewColumn column) { @@ -210,27 +209,27 @@ public class MainWindow : Gtk.Window { TreeIter iter; bool odd_row = false; - foreach (var kern in LinuxKernel.kernel_list) { - if (!kern.is_valid) continue; - if (!kern.is_installed) { - if (kern.is_unstable && App.hide_unstable) continue; - if (kern.version_maj < LinuxKernel.threshold_major) continue; + foreach (var k in LinuxKernel.kernel_list) { + if (!k.is_valid) continue; + if (!k.is_installed) { + if (k.is_unstable && App.hide_unstable) continue; + if (k.version_maj < LinuxKernel.threshold_major) continue; } odd_row = !odd_row; // add row model.append(out iter); - model.set (iter, 0, kern); + model.set(iter, 0, k); - if (kern.is_mainline) { - if (kern.is_unstable) model.set (iter, 1, pix_mainline_rc); + if (k.is_mainline) { + if (k.is_unstable) model.set(iter, 1, pix_mainline_rc); else model.set (iter, 1, pix_mainline); } - else model.set (iter, 1, pix_ubuntu); + else model.set(iter, 1, pix_ubuntu); - model.set (iter, 2, odd_row); - model.set (iter, 3, kern.tooltip_text()); + model.set(iter, 2, odd_row); + model.set(iter, 3, k.tooltip_text()); } tv.set_model(model); @@ -293,7 +292,7 @@ public class MainWindow : Gtk.Window { button.clicked.connect(() => { if ((selected_kernels.size == 1) && file_exists(selected_kernels[0].changes_file)) { - uri_open("file://"+selected_kernels[0].changes_file); + App.uri_open("file://"+selected_kernels[0].changes_file); } }); @@ -305,7 +304,7 @@ public class MainWindow : Gtk.Window { button.clicked.connect(() => { string uri = App.ppa_uri; if (selected_kernels.size == 1) uri += selected_kernels[0].kname; - uri_open(uri); + App.uri_open(uri); }); // uninstall-old @@ -337,7 +336,7 @@ public class MainWindow : Gtk.Window { } private void do_settings () { - int _show_prev_majors = App.show_prev_majors; + int _previous_majors = App.previous_majors; bool _hide_unstable = App.hide_unstable; var dlg = new SettingsDialog.with_parent(this); @@ -345,7 +344,7 @@ public class MainWindow : Gtk.Window { dlg.destroy(); if ( - (_show_prev_majors != App.show_prev_majors) || + (_previous_majors != App.previous_majors) || (_hide_unstable != App.hide_unstable) ) { reload_cache(); diff --git a/src/Gtk/ProgressWindow.vala b/src/Gtk/ProgressWindow.vala index 5421107c..1f275b60 100644 --- a/src/Gtk/ProgressWindow.vala +++ b/src/Gtk/ProgressWindow.vala @@ -29,9 +29,9 @@ using TeeJee.Logging; using TeeJee.FileSystem; using TeeJee.JsonHelper; using TeeJee.ProcessHelper; -using TeeJee.GtkHelper; -using TeeJee.System; +using l.gtk; using TeeJee.Misc; +using l.time; public class ProgressWindow : Gtk.Window { diff --git a/src/Gtk/SettingsDialog.vala b/src/Gtk/SettingsDialog.vala index 2f52b4b5..20cb7b20 100644 --- a/src/Gtk/SettingsDialog.vala +++ b/src/Gtk/SettingsDialog.vala @@ -28,9 +28,9 @@ using TeeJee.Logging; using TeeJee.FileSystem; using TeeJee.JsonHelper; using TeeJee.ProcessHelper; -using TeeJee.GtkHelper; -using TeeJee.System; +using l.gtk; using TeeJee.Misc; +using l.time; public class SettingsDialog : Gtk.Dialog { @@ -144,8 +144,8 @@ public class SettingsDialog : Gtk.Dialog { combo.set_model(model); combo.set_active(App.notify_interval_unit); - // _Display_ - label = new Label("" + _("Display") + ""); + // filters + label = new Label("" + _("Filters") + ""); label.set_use_markup(true); label.xalign = (float) 0.0; label.margin_top = 12; @@ -169,17 +169,17 @@ public class SettingsDialog : Gtk.Dialog { label.margin_start = 6; hbox.add (label); - var spm_adj = new Gtk.Adjustment(App.show_prev_majors, 0, 99, 1, 1, 0); + var spm_adj = new Gtk.Adjustment(App.previous_majors, 0, 99, 1, 1, 0); var spm_spin = new Gtk.SpinButton (spm_adj, 1, 0); spm_spin.xalign = (float) 0.5; hbox.add(spm_spin); - spm_spin.changed.connect(()=>{ App.show_prev_majors = (int) spm_spin.get_value(); }); + spm_spin.changed.connect(()=>{ App.previous_majors = (int) spm_spin.get_value(); }); - label = new Label(_("previous major versions ")); + label = new Label(_("previous major versions")); hbox.add(label); // other - label = new Label("" + _("Other") + ""); + label = new Label("" + _("Network") + ""); label.set_use_markup(true); label.xalign = (float) 0.0; label.margin_top = 12; @@ -190,7 +190,7 @@ public class SettingsDialog : Gtk.Dialog { hbox = new Gtk.Box(Orientation.HORIZONTAL, 6); vbox_main.add (hbox); - label = new Label(_("Internet connection timeout in ")); + label = new Label(_("Internet connection timeout in")); label.xalign = (float) 0.0; label.margin_start = 6; hbox.add (label); @@ -222,7 +222,18 @@ public class SettingsDialog : Gtk.Dialog { spin.changed.connect(()=>{ App.concurrent_downloads = (int) spin_concurrent.get_value(); }); - // actions ------------------------- + // proxy + label = new Label("" + _("Proxy") + ""); + label.set_use_markup(true); + label.xalign = (float) 0.0; + label.margin_bottom = 6; + vbox_main.add (label); + + var proxy = new Entry (); + proxy.set_placeholder_text("[http://][USER:PASSWORD@]HOST[:PORT]"); + proxy.set_text(App.all_proxy); + proxy.activate.connect(()=>{ App.all_proxy = proxy.get_text() ; }); + vbox_main.add(proxy); // ok var button = (Button) add_button ("gtk-ok", Gtk.ResponseType.ACCEPT); diff --git a/src/Gtk/TerminalWindow.vala b/src/Gtk/TerminalWindow.vala index 526a5348..ada6641d 100644 --- a/src/Gtk/TerminalWindow.vala +++ b/src/Gtk/TerminalWindow.vala @@ -26,9 +26,9 @@ using TeeJee.Logging; using TeeJee.FileSystem; using TeeJee.JsonHelper; using TeeJee.ProcessHelper; -using TeeJee.GtkHelper; -using TeeJee.System; +using l.gtk; using TeeJee.Misc; +using l.time; public class TerminalWindow : Gtk.Window { diff --git a/src/Utility/Gtk/GtkHelper.vala b/src/Gtk/l.gtk.vala similarity index 61% rename from src/Utility/Gtk/GtkHelper.vala rename to src/Gtk/l.gtk.vala index dc0112f6..db515adc 100644 --- a/src/Utility/Gtk/GtkHelper.vala +++ b/src/Gtk/l.gtk.vala @@ -3,10 +3,10 @@ using TeeJee.Logging; using TeeJee.FileSystem; using TeeJee.JsonHelper; using TeeJee.ProcessHelper; -using TeeJee.System; using TeeJee.Misc; +using l.time; -namespace TeeJee.GtkHelper { +namespace l.gtk { using Gtk; @@ -22,17 +22,13 @@ namespace TeeJee.GtkHelper { msg.show(); } - public Gdk.Pixbuf? get_app_icon(int icon_size){ + public Gdk.Pixbuf? get_app_icon(int icon_size) { var img_icon = get_shared_icon(BRANDING_SHORTNAME ,icon_size); - if (img_icon != null){ - return img_icon.pixbuf; - } - else{ - return null; - } + if (img_icon != null) return img_icon.pixbuf; + else return null; } - public Gtk.Image? get_shared_icon(string icon_name, int icon_size){ + public Gtk.Image? get_shared_icon(string icon_name, int icon_size) { Gdk.Pixbuf pix_icon = null; Gtk.Image img_icon = null; @@ -45,21 +41,10 @@ namespace TeeJee.GtkHelper { //log_error (e.message); } - if (pix_icon == null){ - log_error (_("Missing Icon") + ": '%s'".printf(icon_name)); - } - else{ - img_icon = new Gtk.Image.from_pixbuf(pix_icon); - } + if (pix_icon == null) log_error (_("Missing Icon") + ": '%s'".printf(icon_name)); + else img_icon = new Gtk.Image.from_pixbuf(pix_icon); return img_icon; } - public Gdk.Pixbuf? get_shared_icon_pixbuf(string icon_name, int icon_size){ - - var img = get_shared_icon(icon_name, icon_size); - var pixbuf = (img == null) ? null : img.pixbuf; - return pixbuf; - } - } diff --git a/src/Utility/TeeJee.System.vala b/src/Utility/TeeJee.System.vala deleted file mode 100644 index 6305b8bc..00000000 --- a/src/Utility/TeeJee.System.vala +++ /dev/null @@ -1,61 +0,0 @@ -/* - * TeeJee.System.vala - * - * Copyright 2017 Tony George - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, - * MA 02110-1301, USA. - * - * - */ - -namespace TeeJee.System { - - using TeeJee.ProcessHelper; - using TeeJee.Logging; - using TeeJee.Misc; - using TeeJee.FileSystem; - - // open ----------------------------- - - public void uri_open (string uri) { - try { - AppInfo.launch_default_for_uri (uri,null); - } catch (Error e) { - warning ("Unable to launch %s", uri); - } - } - - // timers -------------------------------------------------- - - public GLib.Timer timer_start() { - var timer = new GLib.Timer(); - timer.start(); - return timer; - } - - public ulong timer_elapsed(GLib.Timer timer, bool stop = true) { - ulong microseconds; - double seconds; - seconds = timer.elapsed (out microseconds); - if (stop) timer.stop(); - - return (ulong)((seconds * 1000 ) + (microseconds / 1000)); - } - - public void sleep(int milliseconds) { - Thread.usleep ((ulong) milliseconds * 1000); - } -} diff --git a/src/Utility/AsyncTask.vala b/src/lib/AsyncTask.vala similarity index 99% rename from src/Utility/AsyncTask.vala rename to src/lib/AsyncTask.vala index d791e5e5..0f5a735a 100644 --- a/src/Utility/AsyncTask.vala +++ b/src/lib/AsyncTask.vala @@ -25,8 +25,8 @@ using TeeJee.Logging; using TeeJee.FileSystem; using TeeJee.JsonHelper; using TeeJee.ProcessHelper; -using TeeJee.System; using TeeJee.Misc; +using l.time; public abstract class AsyncTask : GLib.Object { diff --git a/src/Utility/TeeJee.FileSystem.vala b/src/lib/TeeJee.FileSystem.vala similarity index 71% rename from src/Utility/TeeJee.FileSystem.vala rename to src/lib/TeeJee.FileSystem.vala index a015db7b..952f0d0c 100644 --- a/src/Utility/TeeJee.FileSystem.vala +++ b/src/lib/TeeJee.FileSystem.vala @@ -24,23 +24,10 @@ namespace TeeJee.FileSystem { - /* Convenience functions for handling files and directories */ - using TeeJee.Logging; using TeeJee.ProcessHelper; using TeeJee.Misc; - public const int64 KB = 1000; - public const int64 MB = 1000 * KB; - public const int64 GB = 1000 * MB; - public const int64 TB = 1000 * GB; - public const int64 KiB = 1024; - public const int64 MiB = 1024 * KiB; - public const int64 GiB = 1024 * MiB; - public const int64 TiB = 1024 * GiB; - - // path helpers ---------------------------- - public string file_parent(string f) { //log_debug("file_parent("+f+")"); return File.new_for_path(f).get_parent().get_path(); @@ -51,8 +38,6 @@ namespace TeeJee.FileSystem { return File.new_for_path(f).get_basename(); } - // file helpers ----------------------------- - public bool file_exists(string file_path) { //log_debug("file_exists("+file_path+")"); return (FileUtils.test(file_path, GLib.FileTest.EXISTS) @@ -149,8 +134,6 @@ namespace TeeJee.FileSystem { catch(Error e) { log_error (e.message); } } - // file info ----------------- - public int64 file_get_size(string file_path) { try { File file = File.parse_name (file_path); @@ -168,8 +151,6 @@ namespace TeeJee.FileSystem { return -1; } - // directory helpers ---------------------- - public bool dir_exists (string dir_path) { return ( FileUtils.test(dir_path, GLib.FileTest.EXISTS) && FileUtils.test(dir_path, GLib.FileTest.IS_DIR)); } @@ -210,41 +191,4 @@ namespace TeeJee.FileSystem { p.delete(); } - // misc -------------------- - - public string format_file_size ( - uint64 size, bool binary_units = false, - string unit = "", bool show_units = true, int decimals = 1) { - - int64 unit_k = binary_units ? 1024 : 1000; - int64 unit_m = binary_units ? 1024 * unit_k : 1000 * unit_k; - int64 unit_g = binary_units ? 1024 * unit_m : 1000 * unit_m; - int64 unit_t = binary_units ? 1024 * unit_g : 1000 * unit_g; - - string txt = ""; - - if ((size > unit_t) && ((unit.length == 0) || (unit == "t"))) { - txt += ("%%'0.%df".printf(decimals)).printf(size / (1.0 * unit_t)); - if (show_units) txt += " %sB".printf(binary_units ? "Ti" : "T"); - } else if ((size > unit_g) && ((unit.length == 0) || (unit == "g"))) { - txt += ("%%'0.%df".printf(decimals)).printf(size / (1.0 * unit_g)); - if (show_units) txt += " %sB".printf(binary_units ? "Gi" : "G"); - } else if ((size > unit_m) && ((unit.length == 0) || (unit == "m"))) { - txt += ("%%'0.%df".printf(decimals)).printf(size / (1.0 * unit_m)); - if (show_units) txt += " %sB".printf(binary_units ? "Mi" : "M"); - } else if ((size > unit_k) && ((unit.length == 0) || (unit == "k"))) { - txt += ("%%'0.%df".printf(decimals)).printf(size / (1.0 * unit_k)); - if (show_units) txt += " %sB".printf(binary_units ? "Ki" : "K"); - } else { - txt += "%'0lu".printf(size); - if (show_units) txt += " B"; - } - - return txt; - } - - public string escape_single_quote(string file_path) { - return file_path.replace("'","'\\''"); - } - } diff --git a/src/Utility/TeeJee.JsonHelper.vala b/src/lib/TeeJee.JsonHelper.vala similarity index 79% rename from src/Utility/TeeJee.JsonHelper.vala rename to src/lib/TeeJee.JsonHelper.vala index 8b39d0c5..395087ce 100644 --- a/src/Utility/TeeJee.JsonHelper.vala +++ b/src/lib/TeeJee.JsonHelper.vala @@ -24,58 +24,51 @@ using Json; -namespace TeeJee.JsonHelper{ +namespace TeeJee.JsonHelper { using TeeJee.Logging; - /* Convenience functions for reading and writing JSON files */ - - public string json_get_string(Json.Object jobj, string member, string def_value){ - if (jobj.has_member(member)){ + public string json_get_string(Json.Object jobj, string member, string def_value) { + if (jobj.has_member(member)) { return jobj.get_string_member(member); - } - else{ + } else { log_debug ("Member not found in JSON object: " + member); return def_value; } } - public double json_get_double(Json.Object jobj, string member, double def_value){ + public double json_get_double(Json.Object jobj, string member, double def_value) { var text = json_get_string(jobj, member, def_value.to_string()); double double_value; - if (double.try_parse(text, out double_value)){ + if (double.try_parse(text, out double_value)) { return double_value; - } - else{ + } else { return def_value; } } - public bool json_get_bool(Json.Object jobj, string member, bool def_value){ - if (jobj.has_member(member)){ + public bool json_get_bool(Json.Object jobj, string member, bool def_value) { + if (jobj.has_member(member)) { return bool.parse(jobj.get_string_member(member)); - } - else{ + } else { log_debug ("Member not found in JSON object: " + member); return def_value; } } - public int json_get_int(Json.Object jobj, string member, int def_value){ - if (jobj.has_member(member)){ + public int json_get_int(Json.Object jobj, string member, int def_value) { + if (jobj.has_member(member)) { return int.parse(jobj.get_string_member(member)); - } - else{ + } else { log_debug ("Member not found in JSON object: " + member); return def_value; } } - public int64 json_get_int64(Json.Object jobj, string member, int64 def_value){ - if (jobj.has_member(member)){ + public int64 json_get_int64(Json.Object jobj, string member, int64 def_value) { + if (jobj.has_member(member)) { return int64.parse(jobj.get_string_member(member)); - } - else{ + } else { log_debug ("Member not found in JSON object: " + member); return def_value; } @@ -84,17 +77,14 @@ namespace TeeJee.JsonHelper{ public Gee.ArrayList json_get_array( Json.Object jobj, string member, - Gee.ArrayList def_value){ + Gee.ArrayList def_value) { - if (jobj.has_member(member)){ + if (jobj.has_member(member)) { var jarray = jobj.get_array_member(member); var list = new Gee.ArrayList(); - foreach(var node in jarray.get_elements()){ - list.add(node.get_string()); - } + foreach(var node in jarray.get_elements()) list.add(node.get_string()); return list; - } - else{ + } else { log_debug ("Member not found in JSON object: " + member); return def_value; } diff --git a/src/Utility/TeeJee.Logging.vala b/src/lib/TeeJee.Logging.vala similarity index 66% rename from src/Utility/TeeJee.Logging.vala rename to src/lib/TeeJee.Logging.vala index f062c9c3..2a719f5c 100644 --- a/src/Utility/TeeJee.Logging.vala +++ b/src/lib/TeeJee.Logging.vala @@ -24,8 +24,6 @@ namespace TeeJee.Logging { - /* Functions for logging messages to console and log files */ - using TeeJee.Misc; public DataOutputStream dos_log; @@ -38,13 +36,6 @@ namespace TeeJee.Logging { string s = message+"\n"; stdout.printf(s); stdout.flush(); - - try { - if (dos_log != null) dos_log.put_string ("[%s] %s\n".printf(timestamp(), message)); - } - catch (Error e) { - stdout.printf (e.message); - } } public void log_error (string message) { @@ -52,36 +43,11 @@ namespace TeeJee.Logging { string s = _("E") + ": " + message + "\n"; stdout.printf(s); stdout.flush(); - - try { - string str = "[%s] %s\n".printf(timestamp(),message); - if (dos_log != null) dos_log.put_string (str); - if (err_log != null) err_log += s; - } - catch (Error e) { - stdout.printf (e.message); - } } public void log_debug (string message) { if (!LOG_ENABLE) return; if (LOG_DEBUG) log_msg (_("D") + ": " + message); - - try { - if (dos_log != null) dos_log.put_string ("[%s] %s\n".printf(timestamp(), message)); - } - catch (Error e) { - stdout.printf (e.message); - } - } - - public void log_to_file (string message, bool highlight = false) { - try { - if (dos_log != null) dos_log.put_string ("[%s] %s\n".printf(timestamp(), message)); - } - catch (Error e) { - stdout.printf (e.message); - } } public void log_draw_line() { diff --git a/src/Utility/TeeJee.Misc.vala b/src/lib/TeeJee.Misc.vala similarity index 79% rename from src/Utility/TeeJee.Misc.vala rename to src/lib/TeeJee.Misc.vala index 113d031b..95df6d84 100644 --- a/src/Utility/TeeJee.Misc.vala +++ b/src/lib/TeeJee.Misc.vala @@ -24,41 +24,10 @@ namespace TeeJee.Misc { - /* Various utility functions */ - using TeeJee.Logging; using TeeJee.FileSystem; using TeeJee.ProcessHelper; - // timestamp ---------------- - - public string timestamp (bool show_millis = false) { - - DateTime now = new GLib.DateTime.now_local(); - - if (show_millis) { - var msec = now.get_microsecond() / 1000; - return "%s.%03d".printf(now.format("%H:%M:%S"), msec); - } else { - return now.format ("%H:%M:%S"); - } - } - - public string timestamp_numeric() { - return "%ld".printf((long) time_t ()); - } - - // string formatting ------------------------------------------------- - - public string format_time_left(int64 millis) { - double mins = (millis * 1.0) / 60000; - double secs = ((millis * 1.0) % 60000) / 1000; - string txt = ""; - if (mins >= 1) txt += "%.0fm ".printf(mins); - txt += "%.0fs".printf(secs); - return txt; - } - public string escape_html(string html, bool pango_markup = true) { string txt = html; diff --git a/src/Utility/TeeJee.ProcessHelper.vala b/src/lib/TeeJee.ProcessHelper.vala similarity index 96% rename from src/Utility/TeeJee.ProcessHelper.vala rename to src/lib/TeeJee.ProcessHelper.vala index a94816ac..04c9a025 100644 --- a/src/Utility/TeeJee.ProcessHelper.vala +++ b/src/lib/TeeJee.ProcessHelper.vala @@ -53,14 +53,14 @@ namespace TeeJee.ProcessHelper { // create a unique temp dir rooted at App.TMP_PREFIX // return full path to created dir public string create_tmp_dir() { - string d = App.TMP_PREFIX+"_%s".printf(random_string()); + string d = App.TMP_PREFIX+"."+random_string(); dir_create(d); return d; } // TODO replace with mkstemp public string get_temp_file_path(string d) { - return d + "/" + timestamp_numeric() + (new Rand()).next_int().to_string(); + return d + "/" + "%ld".printf((long) time_t()) + (new Rand()).next_int().to_string(); } // create a temporary bash script diff --git a/src/lib/l.time.vala b/src/lib/l.time.vala new file mode 100644 index 00000000..7a191b10 --- /dev/null +++ b/src/lib/l.time.vala @@ -0,0 +1,21 @@ +namespace l.time { + + public GLib.Timer timer_start() { + var timer = new GLib.Timer(); + timer.start(); + return timer; + } + + public ulong timer_elapsed(GLib.Timer timer, bool stop = true) { + ulong microseconds; + double seconds; + seconds = timer.elapsed (out microseconds); + if (stop) timer.stop(); + + return (ulong)((seconds * 1000 ) + (microseconds / 1000)); + } + + public void sleep(int milliseconds) { + Thread.usleep ((ulong) milliseconds * 1000); + } +} From 1c13ab050bdec2e2a5128b21d27d73c63486658b Mon Sep 17 00:00:00 2001 From: Matthaiks <3577122+Matthaiks@users.noreply.github.com> Date: Sat, 11 Mar 2023 12:47:49 +0100 Subject: [PATCH 262/567] Update Polish translation --- po/pl.po | 18 ++++++++---------- 1 file changed, 8 insertions(+), 10 deletions(-) diff --git a/po/pl.po b/po/pl.po index 5f4289fc..31b3e353 100644 --- a/po/pl.po +++ b/po/pl.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-11 05:01-0500\n" -"PO-Revision-Date: 2023-03-10 16:07+0100\n" +"POT-Creation-Date: 2023-03-11 05:31-0500\n" +"PO-Revision-Date: 2023-03-11 12:47+0100\n" "Last-Translator: Matthaiks\n" "Language-Team: Polish\n" "Language: pl\n" @@ -348,7 +348,7 @@ msgstr "Odinstaluj jądra starsze niż działające jądro" #: src/Gtk/MainWindow.vala:317 msgid "Reload" -msgstr "Załaduj ponownie" +msgstr "Wczytaj ponownie" #: src/Gtk/MainWindow.vala:322 src/Gtk/SettingsDialog.vala:50 msgid "Settings" @@ -429,25 +429,23 @@ msgstr "sekundy" #: src/Gtk/SettingsDialog.vala:148 msgid "Filters" -msgstr "" +msgstr "Filtry" #: src/Gtk/SettingsDialog.vala:156 msgid "Hide unstable and RC releases" msgstr "Ukryj wydania niestabilne i RC" #: src/Gtk/SettingsDialog.vala:178 -#, fuzzy msgid "previous major versions" -msgstr "poprzednie główne wersje " +msgstr "poprzednie główne wersje" #: src/Gtk/SettingsDialog.vala:182 msgid "Network" -msgstr "" +msgstr "Sieć" #: src/Gtk/SettingsDialog.vala:193 -#, fuzzy msgid "Internet connection timeout in" -msgstr "Limit czasu połączenia internetowego w " +msgstr "Limit czasu połączenia internetowego po" #: src/Gtk/SettingsDialog.vala:205 msgid "seconds" @@ -459,7 +457,7 @@ msgstr "Maksymalna liczba jednoczesnych pobrań" #: src/Gtk/SettingsDialog.vala:226 msgid "Proxy" -msgstr "" +msgstr "Serwer pośredniczący" #: src/Gtk/l.gtk.vala:44 msgid "Missing Icon" From 4b94589a638f965e0d9562281986cd41d0b92d15 Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Sun, 12 Mar 2023 05:23:37 -0400 Subject: [PATCH 263/567] restore the download progress mb display --- po/de.po | 12 ++++++------ po/el.po | 12 ++++++------ po/es.po | 12 ++++++------ po/fr.po | 12 ++++++------ po/hr.po | 12 ++++++------ po/it.po | 12 ++++++------ po/ko.po | 12 ++++++------ po/messages.pot | 12 ++++++------ po/nl.po | 12 ++++++------ po/pl.po | 12 ++++++------ po/ru.po | 12 ++++++------ po/sv.po | 12 ++++++------ po/tr.po | 12 ++++++------ po/uk.po | 12 ++++++------ src/Common/DownloadManager.vala | 27 ++++++++++++++++++--------- src/Gtk/MainWindow.vala | 2 -- src/lib/TeeJee.Misc.vala | 31 +++++++++++++++++++++++++++++++ src/lib/TeeJee.ProcessHelper.vala | 2 +- 18 files changed, 134 insertions(+), 96 deletions(-) diff --git a/po/de.po b/po/de.po index 3074b7ca..1ef0e3dc 100644 --- a/po/de.po +++ b/po/de.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-11 05:01-0500\n" +"POT-Creation-Date: 2023-03-12 04:45-0400\n" "PO-Revision-Date: 2023-02-20 18:40+0100\n" "Last-Translator: Marvin Meysel \n" "Language-Team: German\n" @@ -51,7 +51,7 @@ msgid "Installed" msgstr "Installiert" #: src/Common/LinuxKernel.vala:828 src/Gtk/MainWindow.vala:158 -#: src/Gtk/MainWindow.vala:503 src/Gtk/MainWindow.vala:516 +#: src/Gtk/MainWindow.vala:501 src/Gtk/MainWindow.vala:514 msgid "Running" msgstr "Läuft" @@ -136,7 +136,7 @@ msgstr "Angerufen von" msgid "Notifications are disabled" msgstr "Benachrichtigungen sind deaktiviert" -#: src/Common/Main.vala:312 src/Gtk/MainWindow.vala:614 +#: src/Common/Main.vala:312 src/Gtk/MainWindow.vala:612 #, fuzzy msgid "Can not reach" msgstr "Fehler beim lesen der Datei" @@ -389,12 +389,12 @@ msgstr "Original" msgid "Updating kernels" msgstr "" -#: src/Gtk/MainWindow.vala:512 +#: src/Gtk/MainWindow.vala:510 msgid "available" msgstr "Verfügbar" -#: src/Gtk/MainWindow.vala:545 src/Gtk/MainWindow.vala:578 -#: src/Gtk/MainWindow.vala:605 +#: src/Gtk/MainWindow.vala:543 src/Gtk/MainWindow.vala:576 +#: src/Gtk/MainWindow.vala:603 msgid "DONE" msgstr "" diff --git a/po/el.po b/po/el.po index babf11e0..e34f4801 100644 --- a/po/el.po +++ b/po/el.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-11 05:01-0500\n" +"POT-Creation-Date: 2023-03-12 04:45-0400\n" "PO-Revision-Date: 2023-01-10 02:03-0600\n" "Last-Translator: Vasilis Kosmidis \n" "Language-Team: Greek\n" @@ -51,7 +51,7 @@ msgid "Installed" msgstr "Εγκατεστημένος" #: src/Common/LinuxKernel.vala:828 src/Gtk/MainWindow.vala:158 -#: src/Gtk/MainWindow.vala:503 src/Gtk/MainWindow.vala:516 +#: src/Gtk/MainWindow.vala:501 src/Gtk/MainWindow.vala:514 msgid "Running" msgstr "Ενεργός" @@ -137,7 +137,7 @@ msgstr "Κλήθηκε από" msgid "Notifications are disabled" msgstr "Οι ειδοποιήσεις είναι απενεργοποιημένες" -#: src/Common/Main.vala:312 src/Gtk/MainWindow.vala:614 +#: src/Common/Main.vala:312 src/Gtk/MainWindow.vala:612 #, fuzzy msgid "Can not reach" msgstr "Αποτυχία ανάγνωσης του αρχείου" @@ -388,12 +388,12 @@ msgstr "Πρωτότυπο" msgid "Updating kernels" msgstr "" -#: src/Gtk/MainWindow.vala:512 +#: src/Gtk/MainWindow.vala:510 msgid "available" msgstr "διαθέσιμος" -#: src/Gtk/MainWindow.vala:545 src/Gtk/MainWindow.vala:578 -#: src/Gtk/MainWindow.vala:605 +#: src/Gtk/MainWindow.vala:543 src/Gtk/MainWindow.vala:576 +#: src/Gtk/MainWindow.vala:603 msgid "DONE" msgstr "" diff --git a/po/es.po b/po/es.po index 2a6bb0cc..c36c6196 100644 --- a/po/es.po +++ b/po/es.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-11 05:01-0500\n" +"POT-Creation-Date: 2023-03-12 04:45-0400\n" "PO-Revision-Date: 2018-01-03 02:03-0600\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish\n" @@ -51,7 +51,7 @@ msgid "Installed" msgstr "Instalado" #: src/Common/LinuxKernel.vala:828 src/Gtk/MainWindow.vala:158 -#: src/Gtk/MainWindow.vala:503 src/Gtk/MainWindow.vala:516 +#: src/Gtk/MainWindow.vala:501 src/Gtk/MainWindow.vala:514 msgid "Running" msgstr "En ejecución" @@ -139,7 +139,7 @@ msgstr "" msgid "Notifications are disabled" msgstr "Notificación" -#: src/Common/Main.vala:312 src/Gtk/MainWindow.vala:614 +#: src/Common/Main.vala:312 src/Gtk/MainWindow.vala:612 #, fuzzy msgid "Can not reach" msgstr "Falló la lectura del archivo" @@ -397,13 +397,13 @@ msgstr "" msgid "Updating kernels" msgstr "" -#: src/Gtk/MainWindow.vala:512 +#: src/Gtk/MainWindow.vala:510 #, fuzzy msgid "available" msgstr "Paquetes disponibles" -#: src/Gtk/MainWindow.vala:545 src/Gtk/MainWindow.vala:578 -#: src/Gtk/MainWindow.vala:605 +#: src/Gtk/MainWindow.vala:543 src/Gtk/MainWindow.vala:576 +#: src/Gtk/MainWindow.vala:603 msgid "DONE" msgstr "" diff --git a/po/fr.po b/po/fr.po index 05f07cc8..dc7eb4ad 100644 --- a/po/fr.po +++ b/po/fr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-11 05:01-0500\n" +"POT-Creation-Date: 2023-03-12 04:45-0400\n" "PO-Revision-Date: 2018-08-05 15:50+0200\n" "Last-Translator: Yolateng0 \n" "Language-Team: French\n" @@ -51,7 +51,7 @@ msgid "Installed" msgstr "Installé" #: src/Common/LinuxKernel.vala:828 src/Gtk/MainWindow.vala:158 -#: src/Gtk/MainWindow.vala:503 src/Gtk/MainWindow.vala:516 +#: src/Gtk/MainWindow.vala:501 src/Gtk/MainWindow.vala:514 msgid "Running" msgstr "Actuel" @@ -138,7 +138,7 @@ msgstr "" msgid "Notifications are disabled" msgstr "Les notifications sont désactivées" -#: src/Common/Main.vala:312 src/Gtk/MainWindow.vala:614 +#: src/Common/Main.vala:312 src/Gtk/MainWindow.vala:612 #, fuzzy msgid "Can not reach" msgstr "Impossible de lire le fichier" @@ -398,12 +398,12 @@ msgstr "Version originale :" msgid "Updating kernels" msgstr "" -#: src/Gtk/MainWindow.vala:512 +#: src/Gtk/MainWindow.vala:510 msgid "available" msgstr "disponible" -#: src/Gtk/MainWindow.vala:545 src/Gtk/MainWindow.vala:578 -#: src/Gtk/MainWindow.vala:605 +#: src/Gtk/MainWindow.vala:543 src/Gtk/MainWindow.vala:576 +#: src/Gtk/MainWindow.vala:603 msgid "DONE" msgstr "" diff --git a/po/hr.po b/po/hr.po index 08f0152d..c740b723 100644 --- a/po/hr.po +++ b/po/hr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-11 05:01-0500\n" +"POT-Creation-Date: 2023-03-12 04:45-0400\n" "PO-Revision-Date: 2022-09-22 12:13+0200\n" "Last-Translator: gogo \n" "Language-Team: Croatian\n" @@ -51,7 +51,7 @@ msgid "Installed" msgstr "Instalirano" #: src/Common/LinuxKernel.vala:828 src/Gtk/MainWindow.vala:158 -#: src/Gtk/MainWindow.vala:503 src/Gtk/MainWindow.vala:516 +#: src/Gtk/MainWindow.vala:501 src/Gtk/MainWindow.vala:514 msgid "Running" msgstr "Pokrenuto" @@ -136,7 +136,7 @@ msgstr "Pozvano od" msgid "Notifications are disabled" msgstr "Obavijesti su onemogućene" -#: src/Common/Main.vala:312 src/Gtk/MainWindow.vala:614 +#: src/Common/Main.vala:312 src/Gtk/MainWindow.vala:612 #, fuzzy msgid "Can not reach" msgstr "Neuspjelo čitanje datoteke" @@ -385,12 +385,12 @@ msgstr "Izvornik" msgid "Updating kernels" msgstr "" -#: src/Gtk/MainWindow.vala:512 +#: src/Gtk/MainWindow.vala:510 msgid "available" msgstr "dostupno" -#: src/Gtk/MainWindow.vala:545 src/Gtk/MainWindow.vala:578 -#: src/Gtk/MainWindow.vala:605 +#: src/Gtk/MainWindow.vala:543 src/Gtk/MainWindow.vala:576 +#: src/Gtk/MainWindow.vala:603 msgid "DONE" msgstr "" diff --git a/po/it.po b/po/it.po index 6444b4ee..20b46ac1 100644 --- a/po/it.po +++ b/po/it.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline 1.0.15\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-11 05:01-0500\n" +"POT-Creation-Date: 2023-03-12 04:45-0400\n" "PO-Revision-Date: 2020-08-22 15:35+0100\n" "Last-Translator: Albano Battistella \n" "Language-Team: Italian\n" @@ -49,7 +49,7 @@ msgid "Installed" msgstr "Installato" #: src/Common/LinuxKernel.vala:828 src/Gtk/MainWindow.vala:158 -#: src/Gtk/MainWindow.vala:503 src/Gtk/MainWindow.vala:516 +#: src/Gtk/MainWindow.vala:501 src/Gtk/MainWindow.vala:514 msgid "Running" msgstr "In esecuzione" @@ -134,7 +134,7 @@ msgstr "Chiamata da" msgid "Notifications are disabled" msgstr "Le notifiche sono disabilitate" -#: src/Common/Main.vala:312 src/Gtk/MainWindow.vala:614 +#: src/Common/Main.vala:312 src/Gtk/MainWindow.vala:612 #, fuzzy msgid "Can not reach" msgstr "Impossibile leggere il file" @@ -386,12 +386,12 @@ msgstr "Originale" msgid "Updating kernels" msgstr "" -#: src/Gtk/MainWindow.vala:512 +#: src/Gtk/MainWindow.vala:510 msgid "available" msgstr "disponibile" -#: src/Gtk/MainWindow.vala:545 src/Gtk/MainWindow.vala:578 -#: src/Gtk/MainWindow.vala:605 +#: src/Gtk/MainWindow.vala:543 src/Gtk/MainWindow.vala:576 +#: src/Gtk/MainWindow.vala:603 msgid "DONE" msgstr "" diff --git a/po/ko.po b/po/ko.po index 638b84e7..72e7ea47 100644 --- a/po/ko.po +++ b/po/ko.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline 1.0.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-11 05:01-0500\n" +"POT-Creation-Date: 2023-03-12 04:45-0400\n" "PO-Revision-Date: 2022-09-28 11:48+0900\n" "Last-Translator: Kevin Kim \n" "Language-Team: Korean\n" @@ -51,7 +51,7 @@ msgid "Installed" msgstr "설치 됨" #: src/Common/LinuxKernel.vala:828 src/Gtk/MainWindow.vala:158 -#: src/Gtk/MainWindow.vala:503 src/Gtk/MainWindow.vala:516 +#: src/Gtk/MainWindow.vala:501 src/Gtk/MainWindow.vala:514 msgid "Running" msgstr "구동 중" @@ -136,7 +136,7 @@ msgstr "에서 호출" msgid "Notifications are disabled" msgstr "알림이 비활성화 되었습니다" -#: src/Common/Main.vala:312 src/Gtk/MainWindow.vala:614 +#: src/Common/Main.vala:312 src/Gtk/MainWindow.vala:612 #, fuzzy msgid "Can not reach" msgstr "파일 읽기를 실패했습니다" @@ -384,12 +384,12 @@ msgstr "" msgid "Updating kernels" msgstr "" -#: src/Gtk/MainWindow.vala:512 +#: src/Gtk/MainWindow.vala:510 msgid "available" msgstr "사용가능" -#: src/Gtk/MainWindow.vala:545 src/Gtk/MainWindow.vala:578 -#: src/Gtk/MainWindow.vala:605 +#: src/Gtk/MainWindow.vala:543 src/Gtk/MainWindow.vala:576 +#: src/Gtk/MainWindow.vala:603 msgid "DONE" msgstr "" diff --git a/po/messages.pot b/po/messages.pot index 7ae31b24..e81a90b4 100644 --- a/po/messages.pot +++ b/po/messages.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline 1.1.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-11 05:31-0500\n" +"POT-Creation-Date: 2023-03-12 05:17-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -54,7 +54,7 @@ msgid "Installed" msgstr "" #: src/Common/LinuxKernel.vala:828 src/Gtk/MainWindow.vala:158 -#: src/Gtk/MainWindow.vala:503 src/Gtk/MainWindow.vala:516 +#: src/Gtk/MainWindow.vala:501 src/Gtk/MainWindow.vala:514 msgid "Running" msgstr "" @@ -136,7 +136,7 @@ msgstr "" msgid "Notifications are disabled" msgstr "" -#: src/Common/Main.vala:312 src/Gtk/MainWindow.vala:614 +#: src/Common/Main.vala:312 src/Gtk/MainWindow.vala:612 msgid "Can not reach" msgstr "" @@ -381,12 +381,12 @@ msgstr "" msgid "Updating kernels" msgstr "" -#: src/Gtk/MainWindow.vala:512 +#: src/Gtk/MainWindow.vala:510 msgid "available" msgstr "" -#: src/Gtk/MainWindow.vala:545 src/Gtk/MainWindow.vala:578 -#: src/Gtk/MainWindow.vala:605 +#: src/Gtk/MainWindow.vala:543 src/Gtk/MainWindow.vala:576 +#: src/Gtk/MainWindow.vala:603 msgid "DONE" msgstr "" diff --git a/po/nl.po b/po/nl.po index e6caafb7..6b1e3d2d 100644 --- a/po/nl.po +++ b/po/nl.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-11 05:01-0500\n" +"POT-Creation-Date: 2023-03-12 04:45-0400\n" "PO-Revision-Date: 2020-08-23 13:55+0200\n" "Last-Translator: Heimen Stoffels \n" "Language-Team: Dutch (Netherlands)\n" @@ -51,7 +51,7 @@ msgid "Installed" msgstr "Geïnstalleerd" #: src/Common/LinuxKernel.vala:828 src/Gtk/MainWindow.vala:158 -#: src/Gtk/MainWindow.vala:503 src/Gtk/MainWindow.vala:516 +#: src/Gtk/MainWindow.vala:501 src/Gtk/MainWindow.vala:514 msgid "Running" msgstr "In gebruik" @@ -138,7 +138,7 @@ msgstr "Aangeroepen door" msgid "Notifications are disabled" msgstr "Meldingen zijn uitgeschakeld" -#: src/Common/Main.vala:312 src/Gtk/MainWindow.vala:614 +#: src/Common/Main.vala:312 src/Gtk/MainWindow.vala:612 #, fuzzy msgid "Can not reach" msgstr "Het bestand kan niet worden uitgelezen" @@ -395,12 +395,12 @@ msgstr "Origineel" msgid "Updating kernels" msgstr "" -#: src/Gtk/MainWindow.vala:512 +#: src/Gtk/MainWindow.vala:510 msgid "available" msgstr "beschikbaar" -#: src/Gtk/MainWindow.vala:545 src/Gtk/MainWindow.vala:578 -#: src/Gtk/MainWindow.vala:605 +#: src/Gtk/MainWindow.vala:543 src/Gtk/MainWindow.vala:576 +#: src/Gtk/MainWindow.vala:603 msgid "DONE" msgstr "" diff --git a/po/pl.po b/po/pl.po index 31b3e353..9c9755b6 100644 --- a/po/pl.po +++ b/po/pl.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-11 05:31-0500\n" +"POT-Creation-Date: 2023-03-12 04:45-0400\n" "PO-Revision-Date: 2023-03-11 12:47+0100\n" "Last-Translator: Matthaiks\n" "Language-Team: Polish\n" @@ -49,7 +49,7 @@ msgid "Installed" msgstr "Zainstalowane" #: src/Common/LinuxKernel.vala:828 src/Gtk/MainWindow.vala:158 -#: src/Gtk/MainWindow.vala:503 src/Gtk/MainWindow.vala:516 +#: src/Gtk/MainWindow.vala:501 src/Gtk/MainWindow.vala:514 msgid "Running" msgstr "Uruchomione" @@ -131,7 +131,7 @@ msgstr "Wywołano z" msgid "Notifications are disabled" msgstr "Powiadomienia są wyłączone" -#: src/Common/Main.vala:312 src/Gtk/MainWindow.vala:614 +#: src/Common/Main.vala:312 src/Gtk/MainWindow.vala:612 msgid "Can not reach" msgstr "Nie można dotrzeć" @@ -378,12 +378,12 @@ msgstr "Oryginalne" msgid "Updating kernels" msgstr "Aktualizowanie jąder" -#: src/Gtk/MainWindow.vala:512 +#: src/Gtk/MainWindow.vala:510 msgid "available" msgstr "dostępne" -#: src/Gtk/MainWindow.vala:545 src/Gtk/MainWindow.vala:578 -#: src/Gtk/MainWindow.vala:605 +#: src/Gtk/MainWindow.vala:543 src/Gtk/MainWindow.vala:576 +#: src/Gtk/MainWindow.vala:603 msgid "DONE" msgstr "GOTOWE" diff --git a/po/ru.po b/po/ru.po index a913bd64..090f0349 100644 --- a/po/ru.po +++ b/po/ru.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-11 05:01-0500\n" +"POT-Creation-Date: 2023-03-12 04:45-0400\n" "PO-Revision-Date: 2023-03-06 22:07+0300\n" "Last-Translator: Faust3000 (Original) | Danik2343 (Update Transaltion) " "\n" @@ -52,7 +52,7 @@ msgid "Installed" msgstr "Установлено" #: src/Common/LinuxKernel.vala:828 src/Gtk/MainWindow.vala:158 -#: src/Gtk/MainWindow.vala:503 src/Gtk/MainWindow.vala:516 +#: src/Gtk/MainWindow.vala:501 src/Gtk/MainWindow.vala:514 msgid "Running" msgstr "Используется" @@ -137,7 +137,7 @@ msgstr "Вызван из" msgid "Notifications are disabled" msgstr "Уведомления отключены" -#: src/Common/Main.vala:312 src/Gtk/MainWindow.vala:614 +#: src/Common/Main.vala:312 src/Gtk/MainWindow.vala:612 msgid "Can not reach" msgstr "Не удается получить" @@ -386,12 +386,12 @@ msgstr "Оригинал" msgid "Updating kernels" msgstr "" -#: src/Gtk/MainWindow.vala:512 +#: src/Gtk/MainWindow.vala:510 msgid "available" msgstr "доступно" -#: src/Gtk/MainWindow.vala:545 src/Gtk/MainWindow.vala:578 -#: src/Gtk/MainWindow.vala:605 +#: src/Gtk/MainWindow.vala:543 src/Gtk/MainWindow.vala:576 +#: src/Gtk/MainWindow.vala:603 msgid "DONE" msgstr "ГОТОВО" diff --git a/po/sv.po b/po/sv.po index 8eb121fc..faabba96 100644 --- a/po/sv.po +++ b/po/sv.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-11 05:01-0500\n" +"POT-Creation-Date: 2023-03-12 04:45-0400\n" "PO-Revision-Date: 2018-01-13 16:56+0100\n" "Last-Translator: Åke Engelbrektson \n" "Language-Team:Swedish\n" @@ -52,7 +52,7 @@ msgid "Installed" msgstr "Installerad" #: src/Common/LinuxKernel.vala:828 src/Gtk/MainWindow.vala:158 -#: src/Gtk/MainWindow.vala:503 src/Gtk/MainWindow.vala:516 +#: src/Gtk/MainWindow.vala:501 src/Gtk/MainWindow.vala:514 msgid "Running" msgstr "Körs" @@ -140,7 +140,7 @@ msgstr "" msgid "Notifications are disabled" msgstr "Avisering" -#: src/Common/Main.vala:312 src/Gtk/MainWindow.vala:614 +#: src/Common/Main.vala:312 src/Gtk/MainWindow.vala:612 #, fuzzy msgid "Can not reach" msgstr "Kunde inte läsa filen" @@ -402,13 +402,13 @@ msgstr "" msgid "Updating kernels" msgstr "" -#: src/Gtk/MainWindow.vala:512 +#: src/Gtk/MainWindow.vala:510 #, fuzzy msgid "available" msgstr "Tillgängliga paket" -#: src/Gtk/MainWindow.vala:545 src/Gtk/MainWindow.vala:578 -#: src/Gtk/MainWindow.vala:605 +#: src/Gtk/MainWindow.vala:543 src/Gtk/MainWindow.vala:576 +#: src/Gtk/MainWindow.vala:603 msgid "DONE" msgstr "" diff --git a/po/tr.po b/po/tr.po index 947adeae..f1937b95 100644 --- a/po/tr.po +++ b/po/tr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-11 05:01-0500\n" +"POT-Creation-Date: 2023-03-12 04:45-0400\n" "PO-Revision-Date: 2022-08-06 16:48+0300\n" "Last-Translator: Sabri Ünal \n" "Language-Team: Turkish\n" @@ -51,7 +51,7 @@ msgid "Installed" msgstr "Kurulu" #: src/Common/LinuxKernel.vala:828 src/Gtk/MainWindow.vala:158 -#: src/Gtk/MainWindow.vala:503 src/Gtk/MainWindow.vala:516 +#: src/Gtk/MainWindow.vala:501 src/Gtk/MainWindow.vala:514 msgid "Running" msgstr "Çalışıyor" @@ -137,7 +137,7 @@ msgstr "Çağrı konumu" msgid "Notifications are disabled" msgstr "Bildirimler devre dışı bırakılmış" -#: src/Common/Main.vala:312 src/Gtk/MainWindow.vala:614 +#: src/Common/Main.vala:312 src/Gtk/MainWindow.vala:612 #, fuzzy msgid "Can not reach" msgstr "Dosya okunamadı" @@ -387,12 +387,12 @@ msgstr "Özgün" msgid "Updating kernels" msgstr "" -#: src/Gtk/MainWindow.vala:512 +#: src/Gtk/MainWindow.vala:510 msgid "available" msgstr "mevcut" -#: src/Gtk/MainWindow.vala:545 src/Gtk/MainWindow.vala:578 -#: src/Gtk/MainWindow.vala:605 +#: src/Gtk/MainWindow.vala:543 src/Gtk/MainWindow.vala:576 +#: src/Gtk/MainWindow.vala:603 msgid "DONE" msgstr "" diff --git a/po/uk.po b/po/uk.po index b519b7e4..8f796364 100644 --- a/po/uk.po +++ b/po/uk.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-11 05:01-0500\n" +"POT-Creation-Date: 2023-03-12 04:45-0400\n" "PO-Revision-Date: 2019-07-25 11:00+0300\n" "Last-Translator: Serhii Golovko \n" "Language-Team: Ukranian\n" @@ -51,7 +51,7 @@ msgid "Installed" msgstr "Встановлено" #: src/Common/LinuxKernel.vala:828 src/Gtk/MainWindow.vala:158 -#: src/Gtk/MainWindow.vala:503 src/Gtk/MainWindow.vala:516 +#: src/Gtk/MainWindow.vala:501 src/Gtk/MainWindow.vala:514 msgid "Running" msgstr "Використовується" @@ -133,7 +133,7 @@ msgstr "Викликано з" msgid "Notifications are disabled" msgstr "Повідомлення вимкнено" -#: src/Common/Main.vala:312 src/Gtk/MainWindow.vala:614 +#: src/Common/Main.vala:312 src/Gtk/MainWindow.vala:612 msgid "Can not reach" msgstr "Не може дістатися" @@ -378,12 +378,12 @@ msgstr "Оригінал" msgid "Updating kernels" msgstr "" -#: src/Gtk/MainWindow.vala:512 +#: src/Gtk/MainWindow.vala:510 msgid "available" msgstr "доступний" -#: src/Gtk/MainWindow.vala:545 src/Gtk/MainWindow.vala:578 -#: src/Gtk/MainWindow.vala:605 +#: src/Gtk/MainWindow.vala:543 src/Gtk/MainWindow.vala:576 +#: src/Gtk/MainWindow.vala:603 msgid "DONE" msgstr "ГОТОВО" diff --git a/src/Common/DownloadManager.vala b/src/Common/DownloadManager.vala index ba46a085..41ff9ead 100644 --- a/src/Common/DownloadManager.vala +++ b/src/Common/DownloadManager.vala @@ -151,11 +151,11 @@ public class DownloadTask : AsyncTask { string gid_key = match.fetch(1).strip(); string status = match.fetch(2).strip(); - int64 rate = int64.parse(match.fetch(3).strip()); + //int64 rate = int64.parse(match.fetch(3).strip()); //string file = match.fetch(4).strip(); if (map.has_key(gid_key)) { - map[gid_key].rate = rate; + //map[gid_key].rate = rate; map[gid_key].status = status; } } @@ -169,15 +169,13 @@ public class DownloadTask : AsyncTask { var received = int64.parse(match.fetch(2).strip()); var total = int64.parse(match.fetch(3).strip()); //var percent = double.parse(match.fetch(4).strip()); - var rate = int64.parse(match.fetch(5).strip()); - var eta = match.fetch(6).strip(); + //var rate = int64.parse(match.fetch(5).strip()); + //var eta = match.fetch(6).strip(); if (map.has_key(gid_key)) { var item = map[gid_key]; item.bytes_received = received; if (item.bytes_total == 0) item.bytes_total = total; - item.rate = rate; - item.eta = eta; item.status = "RUNNING"; status_line = item.status_line(); } @@ -206,8 +204,6 @@ public class DownloadItem : GLib.Object public string gid = ""; // ID public int64 bytes_total = 0; public int64 bytes_received = 0; - public int64 rate = 0; - public string eta = ""; public string status = ""; public DownloadTask task = null; @@ -231,6 +227,19 @@ public class DownloadItem : GLib.Object } public string status_line() { - return "%ll / %ll".printf(bytes_received,bytes_total); + //return bytes_received.to_string()+"/"+bytes_total.to_string(); + + if (task.status_in_kb) { + return "%s / %s".printf( + format_file_size(bytes_received, false, "", true, 1), + format_file_size(bytes_total, false, "", true, 1) + ).replace("\n",""); + } else { + return "%s / %s".printf( + format_file_size(bytes_received), + format_file_size(bytes_total) + ).replace("\n",""); + } + } } diff --git a/src/Gtk/MainWindow.vala b/src/Gtk/MainWindow.vala index 18c4fc0f..c9a65bcf 100644 --- a/src/Gtk/MainWindow.vala +++ b/src/Gtk/MainWindow.vala @@ -461,8 +461,6 @@ public class MainWindow : Gtk.Window { App.progress_total = LinuxKernel.progress_total; App.progress_count = LinuxKernel.progress_count; - int64 remaining_count = App.progress_total - App.progress_count; - Gdk.threads_add_idle_full(0, () => { if (App.progress_total > 0) progress_window.update_message("%s %s/%s".printf(message, App.progress_count.to_string(), App.progress_total.to_string())); diff --git a/src/lib/TeeJee.Misc.vala b/src/lib/TeeJee.Misc.vala index 95df6d84..8443824f 100644 --- a/src/lib/TeeJee.Misc.vala +++ b/src/lib/TeeJee.Misc.vala @@ -124,4 +124,35 @@ namespace TeeJee.Misc { stdout.flush(); } + public string format_file_size ( + uint64 size, + bool binary_units = false, + string unit = "", + bool show_units = true, + int decimals = 1 + ) { + int64 unit_k = binary_units ? 1024 : 1000; + int64 unit_m = binary_units ? 1024 * unit_k : 1000 * unit_k; + int64 unit_g = binary_units ? 1024 * unit_m : 1000 * unit_m; + int64 unit_t = binary_units ? 1024 * unit_g : 1000 * unit_g; + string txt = ""; + if ((size > unit_t) && ((unit.length == 0) || (unit == "t"))) { + txt += ("%%'0.%df".printf(decimals)).printf(size / (1.0 * unit_t)); + if (show_units) txt += " %sB".printf(binary_units ? "Ti" : "T"); + } else if ((size > unit_g) && ((unit.length == 0) || (unit == "g"))) { + txt += ("%%'0.%df".printf(decimals)).printf(size / (1.0 * unit_g)); + if (show_units) txt += " %sB".printf(binary_units ? "Gi" : "G"); + } else if ((size > unit_m) && ((unit.length == 0) || (unit == "m"))) { + txt += ("%%'0.%df".printf(decimals)).printf(size / (1.0 * unit_m)); + if (show_units) txt += " %sB".printf(binary_units ? "Mi" : "M"); + } else if ((size > unit_k) && ((unit.length == 0) || (unit == "k"))) { + txt += ("%%'0.%df".printf(decimals)).printf(size / (1.0 * unit_k)); + if (show_units) txt += " %sB".printf(binary_units ? "Ki" : "K"); + } else { + txt += "%'0lu".printf(size); + if (show_units) txt += " B"; + } + return txt; + } + } diff --git a/src/lib/TeeJee.ProcessHelper.vala b/src/lib/TeeJee.ProcessHelper.vala index 04c9a025..2cb8cab5 100644 --- a/src/lib/TeeJee.ProcessHelper.vala +++ b/src/lib/TeeJee.ProcessHelper.vala @@ -36,7 +36,7 @@ namespace TeeJee.ProcessHelper { Process.spawn_command_line_sync (cmd, out std_out, out std_err, out status); return status; } - catch (Error e) { + catch (SpawnError e) { log_error (e.message); return -1; } From b6c96aa9628591ff25ad162ca43a67b482f1c2d4 Mon Sep 17 00:00:00 2001 From: Danik2343 <38865696+Danik2343@users.noreply.github.com> Date: Sun, 12 Mar 2023 18:26:16 +0300 Subject: [PATCH 264/567] Update Russian Language --- po/ru.po | 40 ++++++++++++++++------------------------ 1 file changed, 16 insertions(+), 24 deletions(-) diff --git a/po/ru.po b/po/ru.po index 090f0349..84fa9cb1 100644 --- a/po/ru.po +++ b/po/ru.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-12 04:45-0400\n" -"PO-Revision-Date: 2023-03-06 22:07+0300\n" +"POT-Creation-Date: 2023-03-12 05:17-0400\n" +"PO-Revision-Date: 2023-03-12 18:24+0300\n" "Last-Translator: Faust3000 (Original) | Danik2343 (Update Transaltion) " "\n" "Language-Team: Russian\n" @@ -12,7 +12,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2016-12-13 11:48+0000\n" -"X-Generator: Poedit 3.0.1\n" +"X-Generator: Poedit 3.1.1\n" #: src/Common/LinuxKernel.vala:87 msgid "Distribution" @@ -23,13 +23,12 @@ msgid "Architecture" msgstr "Архитектура" #: src/Common/LinuxKernel.vala:282 -#, fuzzy msgid "Fetching individual kernel indexes" -msgstr "Получение сведений..." +msgstr "Получение индивидуальных индексов ядра" #: src/Common/LinuxKernel.vala:327 msgid "Updating from" -msgstr "" +msgstr "Обновление из" #: src/Common/LinuxKernel.vala:738 msgid "Packages Available" @@ -73,13 +72,12 @@ msgid "This kernel is already installed." msgstr "Это ядро уже установлено." #: src/Common/LinuxKernel.vala:929 -#, fuzzy msgid "Uninstalling selected kernels" msgstr "Удаление выбранных ядер" #: src/Common/LinuxKernel.vala:935 msgid "requested" -msgstr "requested" +msgstr "запрошено" #: src/Common/LinuxKernel.vala:938 msgid "skipping the currently booted kernel" @@ -90,14 +88,12 @@ msgid "found" msgstr "найдено" #: src/Common/LinuxKernel.vala:957 -#, fuzzy msgid "No packages to un-install!" -msgstr "Нет пакетов для деинсталляции!" +msgstr "Нет пакетов для удаления!" #: src/Common/LinuxKernel.vala:996 -#, fuzzy msgid "Could not find running kernel in list" -msgstr "Не удалось найти запущенное ядро в списке!" +msgstr "Could not find running kernel in list" #: src/Common/LinuxKernel.vala:1002 msgid "Could not find any kernels to uninstall" @@ -142,9 +138,9 @@ msgid "Can not reach" msgstr "Не удается получить" #: src/Common/Package.vala:57 -#, fuzzy, c-format +#, c-format msgid "File not found: %s" -msgstr "Файл не найден" +msgstr "Файл не найден: %s" #: src/Console/AppConsole.vala:62 src/Gtk/AppGtk.vala:135 msgid "Syntax" @@ -207,7 +203,6 @@ msgid "Include unstable and RC releases" msgstr "Включать нестабильные и релиз-кандидат релизы" #: src/Console/AppConsole.vala:81 -#, fuzzy msgid "Exclude unstable and RC releases" msgstr "Исключить нестабильные и релиз-кандидат релизы" @@ -318,7 +313,6 @@ msgid "Third Party Inclusions" msgstr "Включая сторонние инструменты" #: src/Gtk/AppGtk.vala:135 -#, fuzzy msgid "options" msgstr "параметры" @@ -384,7 +378,7 @@ msgstr "Оригинал" #: src/Gtk/MainWindow.vala:439 msgid "Updating kernels" -msgstr "" +msgstr "Обновление ядер" #: src/Gtk/MainWindow.vala:510 msgid "available" @@ -437,25 +431,23 @@ msgstr "Секунду(ды)" #: src/Gtk/SettingsDialog.vala:148 msgid "Filters" -msgstr "" +msgstr "Фильтры" #: src/Gtk/SettingsDialog.vala:156 msgid "Hide unstable and RC releases" msgstr "Скрыть нестабильные и релиз-кандидат версии" #: src/Gtk/SettingsDialog.vala:178 -#, fuzzy msgid "previous major versions" -msgstr "Показать N предыдущих основных версий " +msgstr "предыдущие основные версии" #: src/Gtk/SettingsDialog.vala:182 msgid "Network" -msgstr "" +msgstr "Сеть" #: src/Gtk/SettingsDialog.vala:193 -#, fuzzy msgid "Internet connection timeout in" -msgstr "Таймаут подключения к Интернету в " +msgstr "Таймаут подключения к Интернету в" #: src/Gtk/SettingsDialog.vala:205 msgid "seconds" @@ -467,7 +459,7 @@ msgstr "Максимальное количество одновременных #: src/Gtk/SettingsDialog.vala:226 msgid "Proxy" -msgstr "" +msgstr "Прокси" #: src/Gtk/l.gtk.vala:44 msgid "Missing Icon" From 48d7475b237d6df0293aadb0c7e0594bd433cf54 Mon Sep 17 00:00:00 2001 From: Heimen Stoffels Date: Mon, 13 Mar 2023 18:11:48 +0100 Subject: [PATCH 265/567] Updated Dutch translation --- po/nl.po | 87 +++++++++++++++++++++++--------------------------------- 1 file changed, 35 insertions(+), 52 deletions(-) diff --git a/po/nl.po b/po/nl.po index 6b1e3d2d..d796e889 100644 --- a/po/nl.po +++ b/po/nl.po @@ -2,16 +2,16 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-12 04:45-0400\n" -"PO-Revision-Date: 2020-08-23 13:55+0200\n" -"Last-Translator: Heimen Stoffels \n" +"POT-Creation-Date: 2023-03-12 05:17-0400\n" +"PO-Revision-Date: 2023-03-13 18:11+0100\n" +"Last-Translator: Heimen Stoffels \n" "Language-Team: Dutch (Netherlands)\n" "Language: nl_NL\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Poedit 2.4.1\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: Poedit 3.2.2\n" #: src/Common/LinuxKernel.vala:87 msgid "Distribution" @@ -22,13 +22,12 @@ msgid "Architecture" msgstr "Architectuur" #: src/Common/LinuxKernel.vala:282 -#, fuzzy msgid "Fetching individual kernel indexes" -msgstr "Bezig met ophalen van index..." +msgstr "Bezig met ophalen van kernelindexen…" #: src/Common/LinuxKernel.vala:327 msgid "Updating from" -msgstr "" +msgstr "Bezig met bijwerken van" #: src/Common/LinuxKernel.vala:738 msgid "Packages Available" @@ -65,52 +64,47 @@ msgstr "Oké" #: src/Common/LinuxKernel.vala:885 msgid "ERROR" -msgstr "FOUT" +msgstr "FOUTMELDING" #: src/Common/LinuxKernel.vala:899 msgid "This kernel is already installed." msgstr "Deze kernel is al geïnstalleerd." #: src/Common/LinuxKernel.vala:929 -#, fuzzy msgid "Uninstalling selected kernels" -msgstr "Opgegeven kernels deïnstalleren" +msgstr "Bezig met deïnstalleren van geselecteerde kernels…" #: src/Common/LinuxKernel.vala:935 msgid "requested" -msgstr "" +msgstr "verzocht" #: src/Common/LinuxKernel.vala:938 msgid "skipping the currently booted kernel" -msgstr "" +msgstr "de huidige kernel wordt overgeslagen" #: src/Common/LinuxKernel.vala:954 msgid "found" -msgstr "" +msgstr "gevonden" #: src/Common/LinuxKernel.vala:957 -#, fuzzy msgid "No packages to un-install!" -msgstr "Geïnstalleerde pakketten" +msgstr "Er zijn geen te deïnstalleren pakketten!" #: src/Common/LinuxKernel.vala:996 -#, fuzzy msgid "Could not find running kernel in list" -msgstr "De in gebruik zijnde kernel staat niet op de lijst!" +msgstr "De in gebruik zijnde kernel staat niet op de lijst" #: src/Common/LinuxKernel.vala:1002 -#, fuzzy msgid "Could not find any kernels to uninstall" msgstr "Er zijn geen te verwijderen kernels" #: src/Common/LinuxKernel.vala:1011 -#, fuzzy msgid "The following kernels will be uninstalled:" msgstr "De volgende kernels worden verwijderd:" #: src/Common/LinuxKernel.vala:1015 msgid "Continue ?" -msgstr "Wil je doorgaan?" +msgstr "Wilt u doorgaan?" #: src/Common/LinuxKernel.vala:1038 src/Console/AppConsole.vala:295 msgid "Latest update" @@ -128,7 +122,7 @@ msgstr "Geen updates gevonden" #: src/Common/LinuxKernel.vala:1066 #, c-format msgid "Install Kernel Version %s ? (y/n): " -msgstr "Wil je versie %s installeren? (j/n): " +msgstr "Wilt u versie %s installeren? (j/n): " #: src/Common/Main.vala:240 msgid "Called from" @@ -139,18 +133,17 @@ msgid "Notifications are disabled" msgstr "Meldingen zijn uitgeschakeld" #: src/Common/Main.vala:312 src/Gtk/MainWindow.vala:612 -#, fuzzy msgid "Can not reach" -msgstr "Het bestand kan niet worden uitgelezen" +msgstr "Geen verbinding met" #: src/Common/Package.vala:57 -#, fuzzy, c-format +#, c-format msgid "File not found: %s" -msgstr "Het bestand is niet gevonden" +msgstr "Bestand is niet gevonden: %s" #: src/Console/AppConsole.vala:62 src/Gtk/AppGtk.vala:135 msgid "Syntax" -msgstr "Syntax" +msgstr "Syntaxis" #: src/Console/AppConsole.vala:64 msgid "Commands" @@ -185,14 +178,12 @@ msgid "Install specified mainline kernel" msgstr "Opgegeven mainline-kernel installeren" #: src/Console/AppConsole.vala:73 -#, fuzzy msgid "Uninstall specified kernel" -msgstr "Opgegeven kernels deïnstalleren" +msgstr "Gekozen kernel deïnstalleren" #: src/Console/AppConsole.vala:74 -#, fuzzy msgid "Uninstall kernels older than the running kernel" -msgstr "Geïnstalleerde kernels verwijderen die ouder zijn dan de huidige" +msgstr "Kernels verwijderen die ouder zijn dan de huidige" #: src/Console/AppConsole.vala:75 msgid "Download specified kernels" @@ -200,19 +191,17 @@ msgstr "Opgegeven kernels downloaden" #: src/Console/AppConsole.vala:76 msgid "Delete cached info about available kernels" -msgstr "" +msgstr "Kernelcache wissen" #: src/Console/AppConsole.vala:78 src/Gtk/AppGtk.vala:137 msgid "Options" msgstr "Opties" #: src/Console/AppConsole.vala:80 -#, fuzzy msgid "Include unstable and RC releases" -msgstr "Instabiele en rc-uitgaven verbergen" +msgstr "Instabiele en rc-uitgaven tonen" #: src/Console/AppConsole.vala:81 -#, fuzzy msgid "Exclude unstable and RC releases" msgstr "Instabiele en rc-uitgaven verbergen" @@ -324,7 +313,6 @@ msgid "Third Party Inclusions" msgstr "Externe code" #: src/Gtk/AppGtk.vala:135 -#, fuzzy msgid "options" msgstr "Opties" @@ -345,27 +333,24 @@ msgid "Status" msgstr "Status" #: src/Gtk/MainWindow.vala:279 -#, fuzzy msgid "Uninstall" -msgstr "Installeren" +msgstr "Deïnstalleren" #: src/Gtk/MainWindow.vala:289 msgid "Changes" msgstr "Wijzigingen" #: src/Gtk/MainWindow.vala:311 -#, fuzzy msgid "Uninstall Old" -msgstr "Deïnstalleren voltooid" +msgstr "Verouderde deïnstalleren" #: src/Gtk/MainWindow.vala:312 -#, fuzzy msgid "Uninstall kernels older than running kernel" -msgstr "Geïnstalleerde kernels verwijderen die ouder zijn dan de huidige" +msgstr "Kernels verwijderen die ouder zijn dan de huidige" #: src/Gtk/MainWindow.vala:317 msgid "Reload" -msgstr "" +msgstr "Herladen" #: src/Gtk/MainWindow.vala:322 src/Gtk/SettingsDialog.vala:50 msgid "Settings" @@ -377,7 +362,7 @@ msgstr "Over" #: src/Gtk/MainWindow.vala:332 msgid "Exit" -msgstr "" +msgstr "Afsluiten" #: src/Gtk/MainWindow.vala:400 msgid "Kernel upgrade utility for Ubuntu-based distributions" @@ -393,7 +378,7 @@ msgstr "Origineel" #: src/Gtk/MainWindow.vala:439 msgid "Updating kernels" -msgstr "" +msgstr "Bezig met bijwerken van kernels…" #: src/Gtk/MainWindow.vala:510 msgid "available" @@ -402,7 +387,7 @@ msgstr "beschikbaar" #: src/Gtk/MainWindow.vala:543 src/Gtk/MainWindow.vala:576 #: src/Gtk/MainWindow.vala:603 msgid "DONE" -msgstr "" +msgstr "AFGEROND" #: src/Gtk/ProgressWindow.vala:127 src/Gtk/TerminalWindow.vala:144 msgid "Cancel" @@ -446,25 +431,23 @@ msgstr "seconde(n)" #: src/Gtk/SettingsDialog.vala:148 msgid "Filters" -msgstr "" +msgstr "Filters" #: src/Gtk/SettingsDialog.vala:156 msgid "Hide unstable and RC releases" msgstr "Instabiele en rc-uitgaven verbergen" #: src/Gtk/SettingsDialog.vala:178 -#, fuzzy msgid "previous major versions" -msgstr "X aantal grote updates tonen " +msgstr "vorige grote updates" #: src/Gtk/SettingsDialog.vala:182 msgid "Network" -msgstr "" +msgstr "Netwerk" #: src/Gtk/SettingsDialog.vala:193 -#, fuzzy msgid "Internet connection timeout in" -msgstr "Verbindingstime-out na " +msgstr "Verbindingstime-out na" #: src/Gtk/SettingsDialog.vala:205 msgid "seconds" @@ -476,7 +459,7 @@ msgstr "Max. aantal gelijktijdige downloads" #: src/Gtk/SettingsDialog.vala:226 msgid "Proxy" -msgstr "" +msgstr "Proxy" #: src/Gtk/l.gtk.vala:44 msgid "Missing Icon" From c69ecf76ca3b6c7ab4dec87641705f721d22a024 Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Tue, 14 Mar 2023 06:58:10 -0400 Subject: [PATCH 266/567] fix save_app_config(), replace log_*() with vprint(), better console progress --- BRANDING.mak | 2 +- po/de.po | 227 +++++++++++++++-------------- po/el.po | 226 +++++++++++++++-------------- po/es.po | 222 ++++++++++++++--------------- po/fr.po | 224 ++++++++++++++--------------- po/hr.po | 226 ++++++++++++++--------------- po/it.po | 227 +++++++++++++++-------------- po/ko.po | 227 ++++++++++++++--------------- po/messages.pot | 219 ++++++++++++++-------------- po/nl.po | 225 +++++++++++++++-------------- po/pl.po | 226 ++++++++++++++--------------- po/ru.po | 226 ++++++++++++++--------------- po/sv.po | 222 ++++++++++++++--------------- po/tr.po | 227 +++++++++++++++-------------- po/uk.po | 226 ++++++++++++++--------------- src/Common/DownloadManager.vala | 60 +++----- src/Common/LinuxKernel.vala | 229 ++++++++++++++++-------------- src/Common/Main.vala | 137 +++++++++++------- src/Common/OSDNotify.vala | 6 +- src/Common/Package.vala | 11 +- src/Console/AppConsole.vala | 105 +++++++------- src/Gtk/AboutWindow.vala | 6 +- src/Gtk/AppGtk.vala | 48 ++++--- src/Gtk/MainWindow.vala | 62 +++++--- src/Gtk/ProgressWindow.vala | 3 +- src/Gtk/SettingsDialog.vala | 30 +++- src/Gtk/TerminalWindow.vala | 21 ++- src/Gtk/l.gtk.vala | 6 +- src/lib/AsyncTask.vala | 47 +++--- src/lib/TeeJee.FileSystem.vala | 37 ++--- src/lib/TeeJee.JsonHelper.vala | 12 +- src/lib/TeeJee.Logging.vala | 64 --------- src/lib/TeeJee.Misc.vala | 80 +---------- src/lib/TeeJee.ProcessHelper.vala | 24 ++-- src/lib/l.misc.vala | 54 +++++++ 35 files changed, 2081 insertions(+), 2113 deletions(-) delete mode 100644 src/lib/TeeJee.Logging.vala create mode 100644 src/lib/l.misc.vala diff --git a/BRANDING.mak b/BRANDING.mak index fd939e2e..0c28e590 100644 --- a/BRANDING.mak +++ b/BRANDING.mak @@ -3,7 +3,7 @@ VERSION_MAJOR = 1 VERSION_MINOR = 1 -VERSION_MICRO = 5 +VERSION_MICRO = 6 BRANDING_SHORTNAME = mainline BRANDING_LONGNAME = Ubuntu Mainline Kernel Installer BRANDING_AUTHORNAME = Brian K. White diff --git a/po/de.po b/po/de.po index 1ef0e3dc..e515cf94 100644 --- a/po/de.po +++ b/po/de.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-12 04:45-0400\n" +"POT-Creation-Date: 2023-03-14 06:30-0400\n" "PO-Revision-Date: 2023-02-20 18:40+0100\n" "Last-Translator: Marvin Meysel \n" "Language-Team: German\n" @@ -13,15 +13,15 @@ msgstr "" "X-Launchpad-Export-Date: 2017-04-13 11:48+0000\n" "X-Generator: Poedit 3.1.1\n" -#: src/Common/LinuxKernel.vala:87 +#: src/Common/LinuxKernel.vala:88 msgid "Distribution" msgstr "Distribution" -#: src/Common/LinuxKernel.vala:102 +#: src/Common/LinuxKernel.vala:103 msgid "Architecture" msgstr "Architektur" -#: src/Common/LinuxKernel.vala:282 +#: src/Common/LinuxKernel.vala:278 #, fuzzy msgid "Fetching individual kernel indexes" msgstr "Index abrufen..." @@ -30,257 +30,263 @@ msgstr "Index abrufen..." msgid "Updating from" msgstr "" -#: src/Common/LinuxKernel.vala:738 +#: src/Common/LinuxKernel.vala:344 src/Common/LinuxKernel.vala:897 +msgid "OK" +msgstr "OK" + +#: src/Common/LinuxKernel.vala:347 src/Common/LinuxKernel.vala:900 +msgid "FAILED" +msgstr "" + +#: src/Common/LinuxKernel.vala:761 msgid "Packages Available" msgstr "Verfügbare Pakete" -#: src/Common/LinuxKernel.vala:743 +#: src/Common/LinuxKernel.vala:766 msgid "Packages Installed" msgstr "Installierte Pakete" -#: src/Common/LinuxKernel.vala:756 src/lib/TeeJee.FileSystem.vala:121 +#: src/Common/LinuxKernel.vala:779 src/lib/TeeJee.FileSystem.vala:121 msgid "File not found" msgstr "Datei nicht gefunden " -#: src/Common/LinuxKernel.vala:821 +#: src/Common/LinuxKernel.vala:843 msgid "Available Kernels" msgstr "Verfügbare Kernel" -#: src/Common/LinuxKernel.vala:828 src/Gtk/MainWindow.vala:158 +#: src/Common/LinuxKernel.vala:850 src/Gtk/MainWindow.vala:156 msgid "Installed" msgstr "Installiert" -#: src/Common/LinuxKernel.vala:828 src/Gtk/MainWindow.vala:158 -#: src/Gtk/MainWindow.vala:501 src/Gtk/MainWindow.vala:514 +#: src/Common/LinuxKernel.vala:850 src/Gtk/MainWindow.vala:156 +#: src/Gtk/MainWindow.vala:499 src/Gtk/MainWindow.vala:512 msgid "Running" msgstr "Läuft" -#: src/Common/LinuxKernel.vala:863 +#: src/Common/LinuxKernel.vala:885 msgid "Downloading" msgstr "Herunterladen" -#: src/Common/LinuxKernel.vala:882 -msgid "OK" -msgstr "OK" - -#: src/Common/LinuxKernel.vala:885 -msgid "ERROR" -msgstr "Fehler" - -#: src/Common/LinuxKernel.vala:899 -msgid "This kernel is already installed." +#: src/Common/LinuxKernel.vala:913 +#, fuzzy +msgid "is already installed." msgstr "Dieser Kernel ist bereits installiert." -#: src/Common/LinuxKernel.vala:929 +#: src/Common/LinuxKernel.vala:943 #, fuzzy msgid "Uninstalling selected kernels" msgstr "Deinstallation des angegebenen Kernels" -#: src/Common/LinuxKernel.vala:935 +#: src/Common/LinuxKernel.vala:949 msgid "requested" msgstr "" -#: src/Common/LinuxKernel.vala:938 -msgid "skipping the currently booted kernel" -msgstr "" +#: src/Common/LinuxKernel.vala:952 +#, fuzzy +msgid "not uninstalling the currently running kernel" +msgstr "Deinstallation des angegebenen Kernels" -#: src/Common/LinuxKernel.vala:954 +#: src/Common/LinuxKernel.vala:968 msgid "found" msgstr "" -#: src/Common/LinuxKernel.vala:957 +#: src/Common/LinuxKernel.vala:971 #, fuzzy msgid "No packages to un-install!" msgstr "Installierte Pakete" -#: src/Common/LinuxKernel.vala:996 +#: src/Common/LinuxKernel.vala:1019 #, fuzzy msgid "Could not find running kernel in list" msgstr "Konnte keinen laufenden Kernel in der Liste finden!" -#: src/Common/LinuxKernel.vala:1002 +#: src/Common/LinuxKernel.vala:1024 msgid "Could not find any kernels to uninstall" msgstr "Es konnten keine Kernel zum Deinstallieren gefunden werden" -#: src/Common/LinuxKernel.vala:1011 -msgid "The following kernels will be uninstalled:" +#: src/Common/LinuxKernel.vala:1032 +#, fuzzy +msgid "The following kernels will be uninstalled" msgstr "Die folgenden Kernel werden deinstalliert:" -#: src/Common/LinuxKernel.vala:1015 +#: src/Common/LinuxKernel.vala:1036 msgid "Continue ?" msgstr "Weiter ?" -#: src/Common/LinuxKernel.vala:1038 src/Console/AppConsole.vala:295 +#: src/Common/LinuxKernel.vala:1058 src/Console/AppConsole.vala:286 msgid "Latest update" msgstr "Neustes Update" -#: src/Common/LinuxKernel.vala:1049 src/Console/AppConsole.vala:302 +#: src/Common/LinuxKernel.vala:1069 src/Console/AppConsole.vala:293 msgid "Latest point update" msgstr "Letzte Punktaktualisierung" -#: src/Common/LinuxKernel.vala:1057 src/Console/AppConsole.vala:307 -#: src/Console/AppConsole.vala:362 +#: src/Common/LinuxKernel.vala:1077 src/Console/AppConsole.vala:298 +#: src/Console/AppConsole.vala:353 msgid "No updates found" msgstr "Keine Updates gefunden" -#: src/Common/LinuxKernel.vala:1066 +#: src/Common/LinuxKernel.vala:1086 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Kernel-Version %s installieren? (j/n):" -#: src/Common/Main.vala:240 +#: src/Common/Main.vala:271 msgid "Called from" msgstr "Angerufen von" -#: src/Common/Main.vala:274 +#: src/Common/Main.vala:307 msgid "Notifications are disabled" msgstr "Benachrichtigungen sind deaktiviert" -#: src/Common/Main.vala:312 src/Gtk/MainWindow.vala:612 +#: src/Common/Main.vala:352 src/Gtk/MainWindow.vala:634 #, fuzzy -msgid "Can not reach" +msgid "Can not reach site" msgstr "Fehler beim lesen der Datei" -#: src/Common/Package.vala:57 +#: src/Common/Package.vala:58 #, fuzzy, c-format msgid "File not found: %s" msgstr "Datei nicht gefunden " -#: src/Console/AppConsole.vala:62 src/Gtk/AppGtk.vala:135 +#: src/Console/AppConsole.vala:49 src/Gtk/AppGtk.vala:137 msgid "Syntax" msgstr "Syntax" -#: src/Console/AppConsole.vala:64 +#: src/Console/AppConsole.vala:51 msgid "Commands" msgstr "Befehle" -#: src/Console/AppConsole.vala:66 +#: src/Console/AppConsole.vala:53 msgid "Check for kernel updates" msgstr "Nach Kernel-Updates suchen" -#: src/Console/AppConsole.vala:67 +#: src/Console/AppConsole.vala:54 msgid "Check for kernel updates and notify current user" msgstr "" "Prüfung auf Kernel-Updates und Benachrichtigung des aktuellen Benutzers" -#: src/Console/AppConsole.vala:68 +#: src/Console/AppConsole.vala:55 msgid "List all available mainline kernels" msgstr "Alle verfügbaren Mainline-Kernel auflisten" -#: src/Console/AppConsole.vala:69 +#: src/Console/AppConsole.vala:56 msgid "List installed kernels" msgstr "Installierte Kernel auflisten" -#: src/Console/AppConsole.vala:70 +#: src/Console/AppConsole.vala:57 msgid "Install latest mainline kernel" msgstr "Installieren Sie den neuesten Mainline-Kernel" -#: src/Console/AppConsole.vala:71 +#: src/Console/AppConsole.vala:58 msgid "Install latest point update for current series" msgstr "Neueste Punktaktualisierung für die aktuelle Serie installieren" -#: src/Console/AppConsole.vala:72 +#: src/Console/AppConsole.vala:59 msgid "Install specified mainline kernel" msgstr "Angegebenen Mainline-Kernel installieren" -#: src/Console/AppConsole.vala:73 +#: src/Console/AppConsole.vala:60 msgid "Uninstall specified kernel" msgstr "Deinstallation des angegebenen Kernels" -#: src/Console/AppConsole.vala:74 -msgid "Uninstall kernels older than the running kernel" +#: src/Console/AppConsole.vala:61 +#, fuzzy +msgid "Uninstall kernels older than the latest installed" msgstr "Deinstallation von Kerneln, die älter sind als der aktuelle Kernel" -#: src/Console/AppConsole.vala:75 +#: src/Console/AppConsole.vala:62 msgid "Download specified kernels" msgstr "Herunterladen bestimmter Kernel" -#: src/Console/AppConsole.vala:76 +#: src/Console/AppConsole.vala:63 msgid "Delete cached info about available kernels" msgstr "" -#: src/Console/AppConsole.vala:78 src/Gtk/AppGtk.vala:137 +#: src/Console/AppConsole.vala:65 src/Gtk/AppGtk.vala:139 msgid "Options" msgstr "Optionen" -#: src/Console/AppConsole.vala:80 +#: src/Console/AppConsole.vala:67 msgid "Include unstable and RC releases" msgstr "Unstable- und RC-Versionen einbeziehen" -#: src/Console/AppConsole.vala:81 +#: src/Console/AppConsole.vala:68 #, fuzzy msgid "Exclude unstable and RC releases" msgstr "Unstable- und RC-Versionen einbeziehen" -#: src/Console/AppConsole.vala:82 +#: src/Console/AppConsole.vala:69 msgid "Enable verbose debugging output" msgstr "Ausführliche Debugging-Ausgabe einschalten" -#: src/Console/AppConsole.vala:83 +#: src/Console/AppConsole.vala:70 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "Alle Aufforderungen mit Ja beantworten (nicht interaktiver Modus)" -#: src/Console/AppConsole.vala:86 +#: src/Console/AppConsole.vala:73 msgid "A version string taken from the output of --list" msgstr "Eine Versionszeichenfolge aus der Ausgabe von --list" -#: src/Console/AppConsole.vala:87 -msgid "" -"One or more version strings (comma-separated) taken from the output of --list" +#: src/Console/AppConsole.vala:74 +msgid "One or more, comma-seperated" msgstr "" -"Eine oder mehrere (durch Komma getrennte) Versionszeichenfolgen aus der " -"Ausgabe von --list" -#: src/Console/AppConsole.vala:164 src/Gtk/AppGtk.vala:121 +#: src/Console/AppConsole.vala:75 +#, fuzzy +msgid "The currently running kernel will always be ignored" +msgstr "Die folgenden Kernel werden deinstalliert:" + +#: src/Console/AppConsole.vala:153 src/Gtk/AppGtk.vala:123 msgid "Unknown option" msgstr "Unbekannte Option" -#: src/Console/AppConsole.vala:165 src/Console/AppConsole.vala:253 -#: src/Console/AppConsole.vala:281 +#: src/Console/AppConsole.vala:154 src/Console/AppConsole.vala:244 +#: src/Console/AppConsole.vala:272 msgid "Run" msgstr "Ausführen" -#: src/Console/AppConsole.vala:165 +#: src/Console/AppConsole.vala:154 msgid "to list all options" msgstr "um alle Optionen aufzulisten" -#: src/Console/AppConsole.vala:221 src/Console/AppConsole.vala:261 +#: src/Console/AppConsole.vala:212 src/Console/AppConsole.vala:252 msgid "No kernels specified" msgstr "Keine Kernel angegeben" -#: src/Console/AppConsole.vala:227 +#: src/Console/AppConsole.vala:218 msgid "Multiple kernels selected for installation. Select only one." msgstr "" "Mehrere Kernel für die Installation ausgewählt. Wählen Sie nur einen aus." -#: src/Console/AppConsole.vala:250 +#: src/Console/AppConsole.vala:241 msgid "Could not find requested version" msgstr "Die gewünschte Version konnte nicht gefunden werden" -#: src/Console/AppConsole.vala:253 +#: src/Console/AppConsole.vala:244 msgid "and use a version string listed in first column" msgstr "" "und verwenden Sie eine in der ersten Spalte aufgeführte Versionszeichenfolge" -#: src/Console/AppConsole.vala:280 +#: src/Console/AppConsole.vala:271 msgid "Command not specified" msgstr "Befehl nicht angegeben" -#: src/Console/AppConsole.vala:281 +#: src/Console/AppConsole.vala:272 msgid "to list all commands" msgstr "um alle Befehle aufzulisten" -#: src/Console/AppConsole.vala:335 src/Gtk/SettingsDialog.vala:166 +#: src/Console/AppConsole.vala:326 src/Gtk/SettingsDialog.vala:166 msgid "Show" msgstr "Zeigen" -#: src/Console/AppConsole.vala:340 src/Console/AppConsole.vala:352 +#: src/Console/AppConsole.vala:331 src/Console/AppConsole.vala:343 #, c-format msgid "Kernel %s Available" msgstr "Kernel %s verfügbar" -#: src/Console/AppConsole.vala:342 src/Console/AppConsole.vala:354 -#: src/Gtk/MainWindow.vala:269 +#: src/Console/AppConsole.vala:333 src/Console/AppConsole.vala:345 +#: src/Gtk/MainWindow.vala:267 msgid "Install" msgstr "Installieren" @@ -292,7 +298,7 @@ msgstr "Credits" msgid "Back" msgstr "Zurück" -#: src/Gtk/AboutWindow.vala:287 src/Gtk/TerminalWindow.vala:154 +#: src/Gtk/AboutWindow.vala:287 src/Gtk/TerminalWindow.vala:163 msgid "Close" msgstr "Schließen" @@ -320,85 +326,85 @@ msgstr "Dokumentierer" msgid "Third Party Inclusions" msgstr "Einschlüsse von Drittparteien" -#: src/Gtk/AppGtk.vala:135 +#: src/Gtk/AppGtk.vala:137 #, fuzzy msgid "options" msgstr "Optionen" -#: src/Gtk/AppGtk.vala:139 +#: src/Gtk/AppGtk.vala:141 msgid "Print debug information" msgstr "Zeige Debug Informationen" -#: src/Gtk/AppGtk.vala:140 +#: src/Gtk/AppGtk.vala:142 msgid "Show all options" msgstr "Alle Optionen anzeigen" -#: src/Gtk/MainWindow.vala:115 +#: src/Gtk/MainWindow.vala:113 msgid "Kernel" msgstr "Kernel" -#: src/Gtk/MainWindow.vala:145 +#: src/Gtk/MainWindow.vala:143 msgid "Status" msgstr "Status" -#: src/Gtk/MainWindow.vala:279 +#: src/Gtk/MainWindow.vala:277 msgid "Uninstall" msgstr "Deinstallieren" -#: src/Gtk/MainWindow.vala:289 +#: src/Gtk/MainWindow.vala:287 msgid "Changes" msgstr "Änderungen" -#: src/Gtk/MainWindow.vala:311 +#: src/Gtk/MainWindow.vala:309 msgid "Uninstall Old" msgstr "Alte deinstallieren" -#: src/Gtk/MainWindow.vala:312 +#: src/Gtk/MainWindow.vala:310 msgid "Uninstall kernels older than running kernel" msgstr "Deinstallation von Kerneln, die älter sind als der aktuelle Kernel" -#: src/Gtk/MainWindow.vala:317 +#: src/Gtk/MainWindow.vala:315 msgid "Reload" msgstr "" -#: src/Gtk/MainWindow.vala:322 src/Gtk/SettingsDialog.vala:50 +#: src/Gtk/MainWindow.vala:320 src/Gtk/SettingsDialog.vala:50 msgid "Settings" msgstr "Einstellungen" -#: src/Gtk/MainWindow.vala:327 +#: src/Gtk/MainWindow.vala:325 msgid "About" msgstr "Über" -#: src/Gtk/MainWindow.vala:332 +#: src/Gtk/MainWindow.vala:330 msgid "Exit" msgstr "" -#: src/Gtk/MainWindow.vala:400 +#: src/Gtk/MainWindow.vala:398 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Kernel-Upgrade-Dienstprogramm für Ubuntu-basierte Distributionen" -#: src/Gtk/MainWindow.vala:401 +#: src/Gtk/MainWindow.vala:399 msgid "Forked" msgstr "Forked" -#: src/Gtk/MainWindow.vala:401 +#: src/Gtk/MainWindow.vala:399 msgid "Original" msgstr "Original" -#: src/Gtk/MainWindow.vala:439 +#: src/Gtk/MainWindow.vala:437 msgid "Updating kernels" msgstr "" -#: src/Gtk/MainWindow.vala:510 +#: src/Gtk/MainWindow.vala:508 msgid "available" msgstr "Verfügbar" -#: src/Gtk/MainWindow.vala:543 src/Gtk/MainWindow.vala:576 -#: src/Gtk/MainWindow.vala:603 +#: src/Gtk/MainWindow.vala:551 src/Gtk/MainWindow.vala:591 +#: src/Gtk/MainWindow.vala:625 msgid "DONE" msgstr "" -#: src/Gtk/ProgressWindow.vala:127 src/Gtk/TerminalWindow.vala:144 +#: src/Gtk/ProgressWindow.vala:128 src/Gtk/TerminalWindow.vala:153 msgid "Cancel" msgstr "Abbrechen" @@ -415,7 +421,8 @@ msgid "Notify if a point release is available" msgstr "Benachrichtigen, wenn eine Punktfreigabe verfügbar ist" #: src/Gtk/SettingsDialog.vala:87 -msgid "(Allowing intervals in seconds for --debug)" +#, fuzzy +msgid "Seconds interval enabled for debugging" msgstr "(Erlaubt Intervalle in Sekunden für --debug)" #: src/Gtk/SettingsDialog.vala:110 @@ -475,11 +482,3 @@ msgstr "" #: src/Gtk/l.gtk.vala:44 msgid "Missing Icon" msgstr "Fehlendes Symbol" - -#: src/lib/TeeJee.Logging.vala:43 -msgid "E" -msgstr "E" - -#: src/lib/TeeJee.Logging.vala:50 -msgid "D" -msgstr "D" diff --git a/po/el.po b/po/el.po index e34f4801..482620d1 100644 --- a/po/el.po +++ b/po/el.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-12 04:45-0400\n" +"POT-Creation-Date: 2023-03-14 06:30-0400\n" "PO-Revision-Date: 2023-01-10 02:03-0600\n" "Last-Translator: Vasilis Kosmidis \n" "Language-Team: Greek\n" @@ -13,15 +13,15 @@ msgstr "" "X-Launchpad-Export-Date: 2017-04-13 11:48+0000\n" "X-Generator: Poedit 2.0.5\n" -#: src/Common/LinuxKernel.vala:87 +#: src/Common/LinuxKernel.vala:88 msgid "Distribution" msgstr "Διανομή" -#: src/Common/LinuxKernel.vala:102 +#: src/Common/LinuxKernel.vala:103 msgid "Architecture" msgstr "Αρχιτεκτονική" -#: src/Common/LinuxKernel.vala:282 +#: src/Common/LinuxKernel.vala:278 #, fuzzy msgid "Fetching individual kernel indexes" msgstr "Ανάκτηση ευρετηρίου..." @@ -30,256 +30,261 @@ msgstr "Ανάκτηση ευρετηρίου..." msgid "Updating from" msgstr "" -#: src/Common/LinuxKernel.vala:738 +#: src/Common/LinuxKernel.vala:344 src/Common/LinuxKernel.vala:897 +msgid "OK" +msgstr "ΟΚ" + +#: src/Common/LinuxKernel.vala:347 src/Common/LinuxKernel.vala:900 +msgid "FAILED" +msgstr "" + +#: src/Common/LinuxKernel.vala:761 msgid "Packages Available" msgstr "Διαθέσιμα πακέτα" -#: src/Common/LinuxKernel.vala:743 +#: src/Common/LinuxKernel.vala:766 msgid "Packages Installed" msgstr "Εγκατεστημένα πακέτα" -#: src/Common/LinuxKernel.vala:756 src/lib/TeeJee.FileSystem.vala:121 +#: src/Common/LinuxKernel.vala:779 src/lib/TeeJee.FileSystem.vala:121 msgid "File not found" msgstr "Το αρχείο δε βρέθηκε" -#: src/Common/LinuxKernel.vala:821 +#: src/Common/LinuxKernel.vala:843 msgid "Available Kernels" msgstr "Διαθέσιμοι πυρήνες" -#: src/Common/LinuxKernel.vala:828 src/Gtk/MainWindow.vala:158 +#: src/Common/LinuxKernel.vala:850 src/Gtk/MainWindow.vala:156 msgid "Installed" msgstr "Εγκατεστημένος" -#: src/Common/LinuxKernel.vala:828 src/Gtk/MainWindow.vala:158 -#: src/Gtk/MainWindow.vala:501 src/Gtk/MainWindow.vala:514 +#: src/Common/LinuxKernel.vala:850 src/Gtk/MainWindow.vala:156 +#: src/Gtk/MainWindow.vala:499 src/Gtk/MainWindow.vala:512 msgid "Running" msgstr "Ενεργός" -#: src/Common/LinuxKernel.vala:863 +#: src/Common/LinuxKernel.vala:885 msgid "Downloading" msgstr "Λήψη" -#: src/Common/LinuxKernel.vala:882 -msgid "OK" -msgstr "ΟΚ" - -#: src/Common/LinuxKernel.vala:885 -msgid "ERROR" -msgstr "ΣΦΑΛΜΑ" - -#: src/Common/LinuxKernel.vala:899 -msgid "This kernel is already installed." +#: src/Common/LinuxKernel.vala:913 +#, fuzzy +msgid "is already installed." msgstr "Αυτός ο πυρήνας είναι ήδη εγκατεστημένος." -#: src/Common/LinuxKernel.vala:929 +#: src/Common/LinuxKernel.vala:943 #, fuzzy msgid "Uninstalling selected kernels" msgstr "Απεγκατάσταση του καθορισμένου πυρήνα" -#: src/Common/LinuxKernel.vala:935 +#: src/Common/LinuxKernel.vala:949 msgid "requested" msgstr "" -#: src/Common/LinuxKernel.vala:938 -msgid "skipping the currently booted kernel" -msgstr "" +#: src/Common/LinuxKernel.vala:952 +#, fuzzy +msgid "not uninstalling the currently running kernel" +msgstr "Απεγκατάσταση του καθορισμένου πυρήνα" -#: src/Common/LinuxKernel.vala:954 +#: src/Common/LinuxKernel.vala:968 msgid "found" msgstr "" -#: src/Common/LinuxKernel.vala:957 +#: src/Common/LinuxKernel.vala:971 #, fuzzy msgid "No packages to un-install!" msgstr "Εγκατεστημένα πακέτα" -#: src/Common/LinuxKernel.vala:996 +#: src/Common/LinuxKernel.vala:1019 #, fuzzy msgid "Could not find running kernel in list" msgstr "Δεν ήταν δυνατή η εύρεση του τρέχοντος πυρήνα στη λίστα!" -#: src/Common/LinuxKernel.vala:1002 +#: src/Common/LinuxKernel.vala:1024 msgid "Could not find any kernels to uninstall" msgstr "Δεν βρέθηκε κανένας πυρήνας για απεγκατάσταση" -#: src/Common/LinuxKernel.vala:1011 +#: src/Common/LinuxKernel.vala:1032 #, fuzzy -msgid "The following kernels will be uninstalled:" +msgid "The following kernels will be uninstalled" msgstr "Αυτός ο πυρήνας είναι ήδη εγκατεστημένος." -#: src/Common/LinuxKernel.vala:1015 +#: src/Common/LinuxKernel.vala:1036 msgid "Continue ?" msgstr "Συνέχεια;" -#: src/Common/LinuxKernel.vala:1038 src/Console/AppConsole.vala:295 +#: src/Common/LinuxKernel.vala:1058 src/Console/AppConsole.vala:286 msgid "Latest update" msgstr "Τελευταία αναβάθμιση" -#: src/Common/LinuxKernel.vala:1049 src/Console/AppConsole.vala:302 +#: src/Common/LinuxKernel.vala:1069 src/Console/AppConsole.vala:293 msgid "Latest point update" msgstr "Τελευταία ενημέρωση συντήρησης" -#: src/Common/LinuxKernel.vala:1057 src/Console/AppConsole.vala:307 -#: src/Console/AppConsole.vala:362 +#: src/Common/LinuxKernel.vala:1077 src/Console/AppConsole.vala:298 +#: src/Console/AppConsole.vala:353 msgid "No updates found" msgstr "Δεν βρέθηκαν ενημερώσεις" -#: src/Common/LinuxKernel.vala:1066 +#: src/Common/LinuxKernel.vala:1086 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Εγκατάσταση του πυρήνα έκδοσης %s ; (ν/ό):" -#: src/Common/Main.vala:240 +#: src/Common/Main.vala:271 msgid "Called from" msgstr "Κλήθηκε από" -#: src/Common/Main.vala:274 +#: src/Common/Main.vala:307 msgid "Notifications are disabled" msgstr "Οι ειδοποιήσεις είναι απενεργοποιημένες" -#: src/Common/Main.vala:312 src/Gtk/MainWindow.vala:612 +#: src/Common/Main.vala:352 src/Gtk/MainWindow.vala:634 #, fuzzy -msgid "Can not reach" +msgid "Can not reach site" msgstr "Αποτυχία ανάγνωσης του αρχείου" -#: src/Common/Package.vala:57 +#: src/Common/Package.vala:58 #, fuzzy, c-format msgid "File not found: %s" msgstr "Το αρχείο δε βρέθηκε" -#: src/Console/AppConsole.vala:62 src/Gtk/AppGtk.vala:135 +#: src/Console/AppConsole.vala:49 src/Gtk/AppGtk.vala:137 msgid "Syntax" msgstr "Σύνταξη" -#: src/Console/AppConsole.vala:64 +#: src/Console/AppConsole.vala:51 msgid "Commands" msgstr "Εντολές" -#: src/Console/AppConsole.vala:66 +#: src/Console/AppConsole.vala:53 msgid "Check for kernel updates" msgstr "Έλεγχος για ενημερώσεις πυρήνα" -#: src/Console/AppConsole.vala:67 +#: src/Console/AppConsole.vala:54 msgid "Check for kernel updates and notify current user" msgstr "Έλεγχος για ενημερώσεις πυρήνα και ειδοποίηση τρέχοντα χρήστη" -#: src/Console/AppConsole.vala:68 +#: src/Console/AppConsole.vala:55 msgid "List all available mainline kernels" msgstr "Εμφάνιση όλων των διαθέσιμων πυρήνων mainline" -#: src/Console/AppConsole.vala:69 +#: src/Console/AppConsole.vala:56 msgid "List installed kernels" msgstr "Εμφάνιση εγκατεστημένων πυρήνων" -#: src/Console/AppConsole.vala:70 +#: src/Console/AppConsole.vala:57 msgid "Install latest mainline kernel" msgstr "Εγκατάσταση του πιο πρόσφατου πυρήνα mainline" -#: src/Console/AppConsole.vala:71 +#: src/Console/AppConsole.vala:58 msgid "Install latest point update for current series" msgstr "Εγκαταστήστε την τελευταία ενημέρωση συντήρησης για την τρέχουσα σειρά" -#: src/Console/AppConsole.vala:72 +#: src/Console/AppConsole.vala:59 msgid "Install specified mainline kernel" msgstr "Εγκατάσταση του καθορισμένου mainline πυρήνα" -#: src/Console/AppConsole.vala:73 +#: src/Console/AppConsole.vala:60 msgid "Uninstall specified kernel" msgstr "Απεγκατάσταση του καθορισμένου πυρήνα" -#: src/Console/AppConsole.vala:74 -msgid "Uninstall kernels older than the running kernel" +#: src/Console/AppConsole.vala:61 +#, fuzzy +msgid "Uninstall kernels older than the latest installed" msgstr "Απεγκατάσταση πυρήνων παλαιότερων από τον ενεργό" -#: src/Console/AppConsole.vala:75 +#: src/Console/AppConsole.vala:62 msgid "Download specified kernels" msgstr "Λήψη των καθορισμένων πυρήνων" -#: src/Console/AppConsole.vala:76 +#: src/Console/AppConsole.vala:63 msgid "Delete cached info about available kernels" msgstr "" -#: src/Console/AppConsole.vala:78 src/Gtk/AppGtk.vala:137 +#: src/Console/AppConsole.vala:65 src/Gtk/AppGtk.vala:139 msgid "Options" msgstr "Επιλογές" -#: src/Console/AppConsole.vala:80 +#: src/Console/AppConsole.vala:67 msgid "Include unstable and RC releases" msgstr "Συμπεριλάβετε ασταθείς και RC εκδόσεις" -#: src/Console/AppConsole.vala:81 +#: src/Console/AppConsole.vala:68 #, fuzzy msgid "Exclude unstable and RC releases" msgstr "Συμπεριλάβετε ασταθείς και RC εκδόσεις" -#: src/Console/AppConsole.vala:82 +#: src/Console/AppConsole.vala:69 msgid "Enable verbose debugging output" msgstr "Ενεργοποίηση αναλυτικής εξόδου εντοπισμού σφαλμάτων" -#: src/Console/AppConsole.vala:83 +#: src/Console/AppConsole.vala:70 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "Υποθέστε Ναι για όλα τα μηνύματα (μη διαδραστική λειτουργία)" -#: src/Console/AppConsole.vala:86 +#: src/Console/AppConsole.vala:73 msgid "A version string taken from the output of --list" msgstr "Μια συμβολοσειρά έκδοσης που λαμβάνεται από την έξοδο του --list" -#: src/Console/AppConsole.vala:87 -msgid "" -"One or more version strings (comma-separated) taken from the output of --list" +#: src/Console/AppConsole.vala:74 +msgid "One or more, comma-seperated" msgstr "" -"Μία ή περισσότερες συμβολοσειρές έκδοσης (χωρισμένες με κόμμα) που " -"λαμβάνονται από την έξοδο του --list" -#: src/Console/AppConsole.vala:164 src/Gtk/AppGtk.vala:121 +#: src/Console/AppConsole.vala:75 +#, fuzzy +msgid "The currently running kernel will always be ignored" +msgstr "Αυτός ο πυρήνας είναι ήδη εγκατεστημένος." + +#: src/Console/AppConsole.vala:153 src/Gtk/AppGtk.vala:123 msgid "Unknown option" msgstr "Άγνωστη επιλογή" -#: src/Console/AppConsole.vala:165 src/Console/AppConsole.vala:253 -#: src/Console/AppConsole.vala:281 +#: src/Console/AppConsole.vala:154 src/Console/AppConsole.vala:244 +#: src/Console/AppConsole.vala:272 msgid "Run" msgstr "Τρέξτε" -#: src/Console/AppConsole.vala:165 +#: src/Console/AppConsole.vala:154 msgid "to list all options" msgstr "για να παραθέσετε όλες τις επιλογές" -#: src/Console/AppConsole.vala:221 src/Console/AppConsole.vala:261 +#: src/Console/AppConsole.vala:212 src/Console/AppConsole.vala:252 msgid "No kernels specified" msgstr "Δεν έχουν καθοριστεί πυρήνες" -#: src/Console/AppConsole.vala:227 +#: src/Console/AppConsole.vala:218 msgid "Multiple kernels selected for installation. Select only one." msgstr "Επιλέχθηκαν πολλαπλοί πυρήνες για εγκατάσταση. Επιλέξτε μόνο ένα." -#: src/Console/AppConsole.vala:250 +#: src/Console/AppConsole.vala:241 msgid "Could not find requested version" msgstr "Δε βρέθηκε η ζητούμενη έκδοση" -#: src/Console/AppConsole.vala:253 +#: src/Console/AppConsole.vala:244 msgid "and use a version string listed in first column" msgstr "" "και χρησιμοποιήστε μια συμβολοσειρά έκδοσης που αναφέρεται στην πρώτη στήλη" -#: src/Console/AppConsole.vala:280 +#: src/Console/AppConsole.vala:271 msgid "Command not specified" msgstr "Η εντολή δεν προσδιορίστηκε" -#: src/Console/AppConsole.vala:281 +#: src/Console/AppConsole.vala:272 msgid "to list all commands" msgstr "για να παραθέσετε όλες τις εντολές" -#: src/Console/AppConsole.vala:335 src/Gtk/SettingsDialog.vala:166 +#: src/Console/AppConsole.vala:326 src/Gtk/SettingsDialog.vala:166 msgid "Show" msgstr "Προβολή" -#: src/Console/AppConsole.vala:340 src/Console/AppConsole.vala:352 +#: src/Console/AppConsole.vala:331 src/Console/AppConsole.vala:343 #, c-format msgid "Kernel %s Available" msgstr "Πυρήνας %s διαθέσιμος" -#: src/Console/AppConsole.vala:342 src/Console/AppConsole.vala:354 -#: src/Gtk/MainWindow.vala:269 +#: src/Console/AppConsole.vala:333 src/Console/AppConsole.vala:345 +#: src/Gtk/MainWindow.vala:267 msgid "Install" msgstr "Εγκατάσταση" @@ -291,7 +296,7 @@ msgstr "Μνεία" msgid "Back" msgstr "Πίσω" -#: src/Gtk/AboutWindow.vala:287 src/Gtk/TerminalWindow.vala:154 +#: src/Gtk/AboutWindow.vala:287 src/Gtk/TerminalWindow.vala:163 msgid "Close" msgstr "Κλείσιμο" @@ -319,85 +324,85 @@ msgstr "Τεκμηριωτές" msgid "Third Party Inclusions" msgstr "Συμπεριλήψεις τρίτων" -#: src/Gtk/AppGtk.vala:135 +#: src/Gtk/AppGtk.vala:137 #, fuzzy msgid "options" msgstr "Επιλογές" -#: src/Gtk/AppGtk.vala:139 +#: src/Gtk/AppGtk.vala:141 msgid "Print debug information" msgstr "Εκτύπωση πληροφοριών εντοπισμού σφαλμάτων" -#: src/Gtk/AppGtk.vala:140 +#: src/Gtk/AppGtk.vala:142 msgid "Show all options" msgstr "Εμφάνιση όλων των επιλογών" -#: src/Gtk/MainWindow.vala:115 +#: src/Gtk/MainWindow.vala:113 msgid "Kernel" msgstr "Πυρήνας" -#: src/Gtk/MainWindow.vala:145 +#: src/Gtk/MainWindow.vala:143 msgid "Status" msgstr "Κατάσταση" -#: src/Gtk/MainWindow.vala:279 +#: src/Gtk/MainWindow.vala:277 msgid "Uninstall" msgstr "Απεγκατάσταση" -#: src/Gtk/MainWindow.vala:289 +#: src/Gtk/MainWindow.vala:287 msgid "Changes" msgstr "Αλλαγές" -#: src/Gtk/MainWindow.vala:311 +#: src/Gtk/MainWindow.vala:309 msgid "Uninstall Old" msgstr "Απεγκατάσταση παλαιών" -#: src/Gtk/MainWindow.vala:312 +#: src/Gtk/MainWindow.vala:310 msgid "Uninstall kernels older than running kernel" msgstr "Απεγκαταστήστε πυρήνες παλαιότερους από τον ενεργό" -#: src/Gtk/MainWindow.vala:317 +#: src/Gtk/MainWindow.vala:315 msgid "Reload" msgstr "" -#: src/Gtk/MainWindow.vala:322 src/Gtk/SettingsDialog.vala:50 +#: src/Gtk/MainWindow.vala:320 src/Gtk/SettingsDialog.vala:50 msgid "Settings" msgstr "Ρυθμίσεις" -#: src/Gtk/MainWindow.vala:327 +#: src/Gtk/MainWindow.vala:325 msgid "About" msgstr "Σχετικά" -#: src/Gtk/MainWindow.vala:332 +#: src/Gtk/MainWindow.vala:330 msgid "Exit" msgstr "" -#: src/Gtk/MainWindow.vala:400 +#: src/Gtk/MainWindow.vala:398 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Πρόγραμμα αναβάθμισης πυρήνα για διανομές που βασίζονται στο Ubuntu" -#: src/Gtk/MainWindow.vala:401 +#: src/Gtk/MainWindow.vala:399 msgid "Forked" msgstr "Forked" -#: src/Gtk/MainWindow.vala:401 +#: src/Gtk/MainWindow.vala:399 msgid "Original" msgstr "Πρωτότυπο" -#: src/Gtk/MainWindow.vala:439 +#: src/Gtk/MainWindow.vala:437 msgid "Updating kernels" msgstr "" -#: src/Gtk/MainWindow.vala:510 +#: src/Gtk/MainWindow.vala:508 msgid "available" msgstr "διαθέσιμος" -#: src/Gtk/MainWindow.vala:543 src/Gtk/MainWindow.vala:576 -#: src/Gtk/MainWindow.vala:603 +#: src/Gtk/MainWindow.vala:551 src/Gtk/MainWindow.vala:591 +#: src/Gtk/MainWindow.vala:625 msgid "DONE" msgstr "" -#: src/Gtk/ProgressWindow.vala:127 src/Gtk/TerminalWindow.vala:144 +#: src/Gtk/ProgressWindow.vala:128 src/Gtk/TerminalWindow.vala:153 msgid "Cancel" msgstr "Άκυρο" @@ -414,7 +419,8 @@ msgid "Notify if a point release is available" msgstr "Ειδοποίηση αν είναι διαθέσιμη έκδοση συντήρησης" #: src/Gtk/SettingsDialog.vala:87 -msgid "(Allowing intervals in seconds for --debug)" +#, fuzzy +msgid "Seconds interval enabled for debugging" msgstr "(Επιτρέποντας διαστήματα σε δευτερόλεπτα για --debug)" #: src/Gtk/SettingsDialog.vala:110 @@ -474,11 +480,3 @@ msgstr "" #: src/Gtk/l.gtk.vala:44 msgid "Missing Icon" msgstr "Ελλείπον εικονίδιο" - -#: src/lib/TeeJee.Logging.vala:43 -msgid "E" -msgstr "E" - -#: src/lib/TeeJee.Logging.vala:50 -msgid "D" -msgstr "D" diff --git a/po/es.po b/po/es.po index c36c6196..d61ece29 100644 --- a/po/es.po +++ b/po/es.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-12 04:45-0400\n" +"POT-Creation-Date: 2023-03-14 06:30-0400\n" "PO-Revision-Date: 2018-01-03 02:03-0600\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish\n" @@ -13,15 +13,15 @@ msgstr "" "X-Launchpad-Export-Date: 2017-04-13 11:48+0000\n" "X-Generator: Poedit 2.0.5\n" -#: src/Common/LinuxKernel.vala:87 +#: src/Common/LinuxKernel.vala:88 msgid "Distribution" msgstr "Distribución" -#: src/Common/LinuxKernel.vala:102 +#: src/Common/LinuxKernel.vala:103 msgid "Architecture" msgstr "Arquitectura del sistema" -#: src/Common/LinuxKernel.vala:282 +#: src/Common/LinuxKernel.vala:278 #, fuzzy msgid "Fetching individual kernel indexes" msgstr "Recuperando índice..." @@ -30,261 +30,267 @@ msgstr "Recuperando índice..." msgid "Updating from" msgstr "" -#: src/Common/LinuxKernel.vala:738 +#: src/Common/LinuxKernel.vala:344 src/Common/LinuxKernel.vala:897 +msgid "OK" +msgstr "Aceptar" + +#: src/Common/LinuxKernel.vala:347 src/Common/LinuxKernel.vala:900 +msgid "FAILED" +msgstr "" + +#: src/Common/LinuxKernel.vala:761 msgid "Packages Available" msgstr "Paquetes disponibles" -#: src/Common/LinuxKernel.vala:743 +#: src/Common/LinuxKernel.vala:766 msgid "Packages Installed" msgstr "Paquetes instalados" -#: src/Common/LinuxKernel.vala:756 src/lib/TeeJee.FileSystem.vala:121 +#: src/Common/LinuxKernel.vala:779 src/lib/TeeJee.FileSystem.vala:121 msgid "File not found" msgstr "No se encontró el archivo" -#: src/Common/LinuxKernel.vala:821 +#: src/Common/LinuxKernel.vala:843 msgid "Available Kernels" msgstr "Núcleos disponibles" -#: src/Common/LinuxKernel.vala:828 src/Gtk/MainWindow.vala:158 +#: src/Common/LinuxKernel.vala:850 src/Gtk/MainWindow.vala:156 msgid "Installed" msgstr "Instalado" -#: src/Common/LinuxKernel.vala:828 src/Gtk/MainWindow.vala:158 -#: src/Gtk/MainWindow.vala:501 src/Gtk/MainWindow.vala:514 +#: src/Common/LinuxKernel.vala:850 src/Gtk/MainWindow.vala:156 +#: src/Gtk/MainWindow.vala:499 src/Gtk/MainWindow.vala:512 msgid "Running" msgstr "En ejecución" -#: src/Common/LinuxKernel.vala:863 +#: src/Common/LinuxKernel.vala:885 msgid "Downloading" msgstr "Descargando" -#: src/Common/LinuxKernel.vala:882 -msgid "OK" -msgstr "Aceptar" - -#: src/Common/LinuxKernel.vala:885 -msgid "ERROR" -msgstr "ERROR" - -#: src/Common/LinuxKernel.vala:899 -msgid "This kernel is already installed." +#: src/Common/LinuxKernel.vala:913 +#, fuzzy +msgid "is already installed." msgstr "Este núcleo ya se instaló." -#: src/Common/LinuxKernel.vala:929 +#: src/Common/LinuxKernel.vala:943 #, fuzzy msgid "Uninstalling selected kernels" msgstr "Instalar núcleo troncal especificado" -#: src/Common/LinuxKernel.vala:935 +#: src/Common/LinuxKernel.vala:949 msgid "requested" msgstr "" -#: src/Common/LinuxKernel.vala:938 -msgid "skipping the currently booted kernel" -msgstr "" +#: src/Common/LinuxKernel.vala:952 +#, fuzzy +msgid "not uninstalling the currently running kernel" +msgstr "Instalar núcleo troncal especificado" -#: src/Common/LinuxKernel.vala:954 +#: src/Common/LinuxKernel.vala:968 msgid "found" msgstr "" -#: src/Common/LinuxKernel.vala:957 +#: src/Common/LinuxKernel.vala:971 #, fuzzy msgid "No packages to un-install!" msgstr "Paquetes instalados" -#: src/Common/LinuxKernel.vala:996 +#: src/Common/LinuxKernel.vala:1019 #, fuzzy msgid "Could not find running kernel in list" msgstr "¡No se pudo encontrar el núcleo en ejecución en la lista!" -#: src/Common/LinuxKernel.vala:1002 +#: src/Common/LinuxKernel.vala:1024 #, fuzzy msgid "Could not find any kernels to uninstall" msgstr "Seleccione los núcleos que se desinstalarán" -#: src/Common/LinuxKernel.vala:1011 +#: src/Common/LinuxKernel.vala:1032 #, fuzzy -msgid "The following kernels will be uninstalled:" +msgid "The following kernels will be uninstalled" msgstr "Los siguientes kernels serán eliminados:" -#: src/Common/LinuxKernel.vala:1015 +#: src/Common/LinuxKernel.vala:1036 msgid "Continue ?" msgstr "¿Continuar?" -#: src/Common/LinuxKernel.vala:1038 src/Console/AppConsole.vala:295 +#: src/Common/LinuxKernel.vala:1058 src/Console/AppConsole.vala:286 msgid "Latest update" msgstr "" -#: src/Common/LinuxKernel.vala:1049 src/Console/AppConsole.vala:302 +#: src/Common/LinuxKernel.vala:1069 src/Console/AppConsole.vala:293 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:1057 src/Console/AppConsole.vala:307 -#: src/Console/AppConsole.vala:362 +#: src/Common/LinuxKernel.vala:1077 src/Console/AppConsole.vala:298 +#: src/Console/AppConsole.vala:353 msgid "No updates found" msgstr "No se encontró ninguna actualización" -#: src/Common/LinuxKernel.vala:1066 +#: src/Common/LinuxKernel.vala:1086 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "" -#: src/Common/Main.vala:240 +#: src/Common/Main.vala:271 msgid "Called from" msgstr "" -#: src/Common/Main.vala:274 +#: src/Common/Main.vala:307 #, fuzzy msgid "Notifications are disabled" msgstr "Notificación" -#: src/Common/Main.vala:312 src/Gtk/MainWindow.vala:612 +#: src/Common/Main.vala:352 src/Gtk/MainWindow.vala:634 #, fuzzy -msgid "Can not reach" +msgid "Can not reach site" msgstr "Falló la lectura del archivo" -#: src/Common/Package.vala:57 +#: src/Common/Package.vala:58 #, fuzzy, c-format msgid "File not found: %s" msgstr "No se encontró el archivo" -#: src/Console/AppConsole.vala:62 src/Gtk/AppGtk.vala:135 +#: src/Console/AppConsole.vala:49 src/Gtk/AppGtk.vala:137 msgid "Syntax" msgstr "Sintaxis" -#: src/Console/AppConsole.vala:64 +#: src/Console/AppConsole.vala:51 msgid "Commands" msgstr "Comandos" -#: src/Console/AppConsole.vala:66 +#: src/Console/AppConsole.vala:53 msgid "Check for kernel updates" msgstr "Buscar actualizaciones del núcleo" -#: src/Console/AppConsole.vala:67 +#: src/Console/AppConsole.vala:54 msgid "Check for kernel updates and notify current user" msgstr "Compruebe las actualizaciones del kernel y notifique al usuario actual" -#: src/Console/AppConsole.vala:68 +#: src/Console/AppConsole.vala:55 msgid "List all available mainline kernels" msgstr "Mostrar todos los núcleos troncales disponibles" -#: src/Console/AppConsole.vala:69 +#: src/Console/AppConsole.vala:56 msgid "List installed kernels" msgstr "Mostrar kernels disponibles" -#: src/Console/AppConsole.vala:70 +#: src/Console/AppConsole.vala:57 msgid "Install latest mainline kernel" msgstr "Instalar kernel troncal especificado" -#: src/Console/AppConsole.vala:71 +#: src/Console/AppConsole.vala:58 msgid "Install latest point update for current series" msgstr "" -#: src/Console/AppConsole.vala:72 +#: src/Console/AppConsole.vala:59 msgid "Install specified mainline kernel" msgstr "Instalar núcleo troncal especificado" -#: src/Console/AppConsole.vala:73 +#: src/Console/AppConsole.vala:60 #, fuzzy msgid "Uninstall specified kernel" msgstr "Instalar núcleo troncal especificado" -#: src/Console/AppConsole.vala:74 -msgid "Uninstall kernels older than the running kernel" +#: src/Console/AppConsole.vala:61 +msgid "Uninstall kernels older than the latest installed" msgstr "" -#: src/Console/AppConsole.vala:75 +#: src/Console/AppConsole.vala:62 #, fuzzy msgid "Download specified kernels" msgstr "Descargar paquetes del núcleo especificado" -#: src/Console/AppConsole.vala:76 +#: src/Console/AppConsole.vala:63 msgid "Delete cached info about available kernels" msgstr "" -#: src/Console/AppConsole.vala:78 src/Gtk/AppGtk.vala:137 +#: src/Console/AppConsole.vala:65 src/Gtk/AppGtk.vala:139 msgid "Options" msgstr "Opciones" -#: src/Console/AppConsole.vala:80 +#: src/Console/AppConsole.vala:67 #, fuzzy msgid "Include unstable and RC releases" msgstr "Ocultar versiones inestables y RC" -#: src/Console/AppConsole.vala:81 +#: src/Console/AppConsole.vala:68 #, fuzzy msgid "Exclude unstable and RC releases" msgstr "Ocultar versiones inestables y RC" -#: src/Console/AppConsole.vala:82 +#: src/Console/AppConsole.vala:69 msgid "Enable verbose debugging output" msgstr "" -#: src/Console/AppConsole.vala:83 +#: src/Console/AppConsole.vala:70 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "Asumir Sí para todas las solicitudes (modo no interactivo)" -#: src/Console/AppConsole.vala:86 +#: src/Console/AppConsole.vala:73 msgid "A version string taken from the output of --list" msgstr "" -#: src/Console/AppConsole.vala:87 -msgid "" -"One or more version strings (comma-separated) taken from the output of --list" +#: src/Console/AppConsole.vala:74 +msgid "One or more, comma-seperated" msgstr "" -#: src/Console/AppConsole.vala:164 src/Gtk/AppGtk.vala:121 +#: src/Console/AppConsole.vala:75 +#, fuzzy +msgid "The currently running kernel will always be ignored" +msgstr "Los siguientes kernels serán eliminados:" + +#: src/Console/AppConsole.vala:153 src/Gtk/AppGtk.vala:123 msgid "Unknown option" msgstr "Opción desconocida" -#: src/Console/AppConsole.vala:165 src/Console/AppConsole.vala:253 -#: src/Console/AppConsole.vala:281 +#: src/Console/AppConsole.vala:154 src/Console/AppConsole.vala:244 +#: src/Console/AppConsole.vala:272 #, fuzzy msgid "Run" msgstr "En ejecución" -#: src/Console/AppConsole.vala:165 +#: src/Console/AppConsole.vala:154 #, fuzzy msgid "to list all options" msgstr "Mostrar todas las opciones" -#: src/Console/AppConsole.vala:221 src/Console/AppConsole.vala:261 +#: src/Console/AppConsole.vala:212 src/Console/AppConsole.vala:252 msgid "No kernels specified" msgstr "" -#: src/Console/AppConsole.vala:227 +#: src/Console/AppConsole.vala:218 msgid "Multiple kernels selected for installation. Select only one." msgstr "Se seleccionaron varios núcleos para su instalación. Elija solo uno." -#: src/Console/AppConsole.vala:250 +#: src/Console/AppConsole.vala:241 msgid "Could not find requested version" msgstr "No se pudo encontrar la versión solicitada" -#: src/Console/AppConsole.vala:253 +#: src/Console/AppConsole.vala:244 msgid "and use a version string listed in first column" msgstr "" -#: src/Console/AppConsole.vala:280 +#: src/Console/AppConsole.vala:271 msgid "Command not specified" msgstr "Coomand no especificado" -#: src/Console/AppConsole.vala:281 +#: src/Console/AppConsole.vala:272 #, fuzzy msgid "to list all commands" msgstr "Mostrar todas las opciones" -#: src/Console/AppConsole.vala:335 src/Gtk/SettingsDialog.vala:166 +#: src/Console/AppConsole.vala:326 src/Gtk/SettingsDialog.vala:166 msgid "Show" msgstr "" -#: src/Console/AppConsole.vala:340 src/Console/AppConsole.vala:352 +#: src/Console/AppConsole.vala:331 src/Console/AppConsole.vala:343 #, fuzzy, c-format msgid "Kernel %s Available" msgstr "Paquetes disponibles" -#: src/Console/AppConsole.vala:342 src/Console/AppConsole.vala:354 -#: src/Gtk/MainWindow.vala:269 +#: src/Console/AppConsole.vala:333 src/Console/AppConsole.vala:345 +#: src/Gtk/MainWindow.vala:267 msgid "Install" msgstr "Instalar" @@ -296,7 +302,7 @@ msgstr "Créditos" msgid "Back" msgstr "Atrás" -#: src/Gtk/AboutWindow.vala:287 src/Gtk/TerminalWindow.vala:154 +#: src/Gtk/AboutWindow.vala:287 src/Gtk/TerminalWindow.vala:163 msgid "Close" msgstr "Cerrar" @@ -325,89 +331,89 @@ msgstr "Documentadores" msgid "Third Party Inclusions" msgstr "Herramientas de terceros" -#: src/Gtk/AppGtk.vala:135 +#: src/Gtk/AppGtk.vala:137 #, fuzzy msgid "options" msgstr "Opciones" -#: src/Gtk/AppGtk.vala:139 +#: src/Gtk/AppGtk.vala:141 msgid "Print debug information" msgstr "Mostrar información de depuración" -#: src/Gtk/AppGtk.vala:140 +#: src/Gtk/AppGtk.vala:142 msgid "Show all options" msgstr "Mostrar todas las opciones" -#: src/Gtk/MainWindow.vala:115 +#: src/Gtk/MainWindow.vala:113 msgid "Kernel" msgstr "Núcleo" -#: src/Gtk/MainWindow.vala:145 +#: src/Gtk/MainWindow.vala:143 msgid "Status" msgstr "Estado" -#: src/Gtk/MainWindow.vala:279 +#: src/Gtk/MainWindow.vala:277 #, fuzzy msgid "Uninstall" msgstr "Instalar" -#: src/Gtk/MainWindow.vala:289 +#: src/Gtk/MainWindow.vala:287 msgid "Changes" msgstr "Cambios" -#: src/Gtk/MainWindow.vala:311 +#: src/Gtk/MainWindow.vala:309 #, fuzzy msgid "Uninstall Old" msgstr "Desinstalación finalizada" -#: src/Gtk/MainWindow.vala:312 +#: src/Gtk/MainWindow.vala:310 msgid "Uninstall kernels older than running kernel" msgstr "" -#: src/Gtk/MainWindow.vala:317 +#: src/Gtk/MainWindow.vala:315 msgid "Reload" msgstr "" -#: src/Gtk/MainWindow.vala:322 src/Gtk/SettingsDialog.vala:50 +#: src/Gtk/MainWindow.vala:320 src/Gtk/SettingsDialog.vala:50 msgid "Settings" msgstr "Configuración" -#: src/Gtk/MainWindow.vala:327 +#: src/Gtk/MainWindow.vala:325 msgid "About" msgstr "Acerca de" -#: src/Gtk/MainWindow.vala:332 +#: src/Gtk/MainWindow.vala:330 msgid "Exit" msgstr "" -#: src/Gtk/MainWindow.vala:400 +#: src/Gtk/MainWindow.vala:398 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "" "Herramienta de renovación de núcleo para distribuciones basadas en Ubuntu" -#: src/Gtk/MainWindow.vala:401 +#: src/Gtk/MainWindow.vala:399 msgid "Forked" msgstr "" -#: src/Gtk/MainWindow.vala:401 +#: src/Gtk/MainWindow.vala:399 msgid "Original" msgstr "" -#: src/Gtk/MainWindow.vala:439 +#: src/Gtk/MainWindow.vala:437 msgid "Updating kernels" msgstr "" -#: src/Gtk/MainWindow.vala:510 +#: src/Gtk/MainWindow.vala:508 #, fuzzy msgid "available" msgstr "Paquetes disponibles" -#: src/Gtk/MainWindow.vala:543 src/Gtk/MainWindow.vala:576 -#: src/Gtk/MainWindow.vala:603 +#: src/Gtk/MainWindow.vala:551 src/Gtk/MainWindow.vala:591 +#: src/Gtk/MainWindow.vala:625 msgid "DONE" msgstr "" -#: src/Gtk/ProgressWindow.vala:127 src/Gtk/TerminalWindow.vala:144 +#: src/Gtk/ProgressWindow.vala:128 src/Gtk/TerminalWindow.vala:153 msgid "Cancel" msgstr "Cancelar" @@ -424,7 +430,7 @@ msgid "Notify if a point release is available" msgstr "Notificar si hay una versión puntual disponible" #: src/Gtk/SettingsDialog.vala:87 -msgid "(Allowing intervals in seconds for --debug)" +msgid "Seconds interval enabled for debugging" msgstr "" #: src/Gtk/SettingsDialog.vala:110 @@ -483,11 +489,3 @@ msgstr "" #: src/Gtk/l.gtk.vala:44 msgid "Missing Icon" msgstr "Falta el icono" - -#: src/lib/TeeJee.Logging.vala:43 -msgid "E" -msgstr "E" - -#: src/lib/TeeJee.Logging.vala:50 -msgid "D" -msgstr "" diff --git a/po/fr.po b/po/fr.po index dc7eb4ad..34e46b00 100644 --- a/po/fr.po +++ b/po/fr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-12 04:45-0400\n" +"POT-Creation-Date: 2023-03-14 06:30-0400\n" "PO-Revision-Date: 2018-08-05 15:50+0200\n" "Last-Translator: Yolateng0 \n" "Language-Team: French\n" @@ -13,15 +13,15 @@ msgstr "" "X-Launchpad-Export-Date: 2017-04-13 11:48+0000\n" "X-Generator: Poedit 2.0.6\n" -#: src/Common/LinuxKernel.vala:87 +#: src/Common/LinuxKernel.vala:88 msgid "Distribution" msgstr "Distribution" -#: src/Common/LinuxKernel.vala:102 +#: src/Common/LinuxKernel.vala:103 msgid "Architecture" msgstr "Architecture" -#: src/Common/LinuxKernel.vala:282 +#: src/Common/LinuxKernel.vala:278 #, fuzzy msgid "Fetching individual kernel indexes" msgstr "Récupération de l'index..." @@ -30,261 +30,265 @@ msgstr "Récupération de l'index..." msgid "Updating from" msgstr "" -#: src/Common/LinuxKernel.vala:738 +#: src/Common/LinuxKernel.vala:344 src/Common/LinuxKernel.vala:897 +msgid "OK" +msgstr "OK" + +#: src/Common/LinuxKernel.vala:347 src/Common/LinuxKernel.vala:900 +msgid "FAILED" +msgstr "" + +#: src/Common/LinuxKernel.vala:761 msgid "Packages Available" msgstr "Paquets Disponibles" -#: src/Common/LinuxKernel.vala:743 +#: src/Common/LinuxKernel.vala:766 msgid "Packages Installed" msgstr "Paquets Installés" -#: src/Common/LinuxKernel.vala:756 src/lib/TeeJee.FileSystem.vala:121 +#: src/Common/LinuxKernel.vala:779 src/lib/TeeJee.FileSystem.vala:121 msgid "File not found" msgstr "Fichier non trouvé" -#: src/Common/LinuxKernel.vala:821 +#: src/Common/LinuxKernel.vala:843 msgid "Available Kernels" msgstr "Noyaux Disponibles" -#: src/Common/LinuxKernel.vala:828 src/Gtk/MainWindow.vala:158 +#: src/Common/LinuxKernel.vala:850 src/Gtk/MainWindow.vala:156 msgid "Installed" msgstr "Installé" -#: src/Common/LinuxKernel.vala:828 src/Gtk/MainWindow.vala:158 -#: src/Gtk/MainWindow.vala:501 src/Gtk/MainWindow.vala:514 +#: src/Common/LinuxKernel.vala:850 src/Gtk/MainWindow.vala:156 +#: src/Gtk/MainWindow.vala:499 src/Gtk/MainWindow.vala:512 msgid "Running" msgstr "Actuel" -#: src/Common/LinuxKernel.vala:863 +#: src/Common/LinuxKernel.vala:885 msgid "Downloading" msgstr "Téléchargement" -#: src/Common/LinuxKernel.vala:882 -msgid "OK" -msgstr "OK" - -#: src/Common/LinuxKernel.vala:885 -msgid "ERROR" -msgstr "ERREUR" - -#: src/Common/LinuxKernel.vala:899 -msgid "This kernel is already installed." +#: src/Common/LinuxKernel.vala:913 +#, fuzzy +msgid "is already installed." msgstr "Ce noyau est déjà installé." -#: src/Common/LinuxKernel.vala:929 +#: src/Common/LinuxKernel.vala:943 #, fuzzy msgid "Uninstalling selected kernels" msgstr "Installer les noyaux spécifiés" -#: src/Common/LinuxKernel.vala:935 +#: src/Common/LinuxKernel.vala:949 msgid "requested" msgstr "" -#: src/Common/LinuxKernel.vala:938 -msgid "skipping the currently booted kernel" -msgstr "" +#: src/Common/LinuxKernel.vala:952 +#, fuzzy +msgid "not uninstalling the currently running kernel" +msgstr "Installer les noyaux spécifiés" -#: src/Common/LinuxKernel.vala:954 +#: src/Common/LinuxKernel.vala:968 msgid "found" msgstr "" -#: src/Common/LinuxKernel.vala:957 +#: src/Common/LinuxKernel.vala:971 #, fuzzy msgid "No packages to un-install!" msgstr "Paquets Installés" -#: src/Common/LinuxKernel.vala:996 +#: src/Common/LinuxKernel.vala:1019 #, fuzzy msgid "Could not find running kernel in list" msgstr "Impossible de trouver la version courante dans la liste!" -#: src/Common/LinuxKernel.vala:1002 +#: src/Common/LinuxKernel.vala:1024 #, fuzzy msgid "Could not find any kernels to uninstall" msgstr "Impossible de trouver de noyaux à supprimer" -#: src/Common/LinuxKernel.vala:1011 +#: src/Common/LinuxKernel.vala:1032 #, fuzzy -msgid "The following kernels will be uninstalled:" +msgid "The following kernels will be uninstalled" msgstr "Les noyaux suivants seront supprimés:" -#: src/Common/LinuxKernel.vala:1015 +#: src/Common/LinuxKernel.vala:1036 msgid "Continue ?" msgstr "Reprendre ?" -#: src/Common/LinuxKernel.vala:1038 src/Console/AppConsole.vala:295 +#: src/Common/LinuxKernel.vala:1058 src/Console/AppConsole.vala:286 msgid "Latest update" msgstr "Dernière mise à jour" -#: src/Common/LinuxKernel.vala:1049 src/Console/AppConsole.vala:302 +#: src/Common/LinuxKernel.vala:1069 src/Console/AppConsole.vala:293 msgid "Latest point update" msgstr "Dernière mise à jour mineure" -#: src/Common/LinuxKernel.vala:1057 src/Console/AppConsole.vala:307 -#: src/Console/AppConsole.vala:362 +#: src/Common/LinuxKernel.vala:1077 src/Console/AppConsole.vala:298 +#: src/Console/AppConsole.vala:353 msgid "No updates found" msgstr "Aucune mise à jour disponible" -#: src/Common/LinuxKernel.vala:1066 +#: src/Common/LinuxKernel.vala:1086 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Installer le noyau en version %s ? (y/n): " -#: src/Common/Main.vala:240 +#: src/Common/Main.vala:271 msgid "Called from" msgstr "" -#: src/Common/Main.vala:274 +#: src/Common/Main.vala:307 msgid "Notifications are disabled" msgstr "Les notifications sont désactivées" -#: src/Common/Main.vala:312 src/Gtk/MainWindow.vala:612 +#: src/Common/Main.vala:352 src/Gtk/MainWindow.vala:634 #, fuzzy -msgid "Can not reach" +msgid "Can not reach site" msgstr "Impossible de lire le fichier" -#: src/Common/Package.vala:57 +#: src/Common/Package.vala:58 #, fuzzy, c-format msgid "File not found: %s" msgstr "Fichier non trouvé" -#: src/Console/AppConsole.vala:62 src/Gtk/AppGtk.vala:135 +#: src/Console/AppConsole.vala:49 src/Gtk/AppGtk.vala:137 msgid "Syntax" msgstr "Syntaxe" -#: src/Console/AppConsole.vala:64 +#: src/Console/AppConsole.vala:51 msgid "Commands" msgstr "Commandes" -#: src/Console/AppConsole.vala:66 +#: src/Console/AppConsole.vala:53 msgid "Check for kernel updates" msgstr "Vérifier les mises à jour de noyau" -#: src/Console/AppConsole.vala:67 +#: src/Console/AppConsole.vala:54 msgid "Check for kernel updates and notify current user" msgstr "Vérifier les mises à jour de noyau et notifier l'utilisateur" -#: src/Console/AppConsole.vala:68 +#: src/Console/AppConsole.vala:55 msgid "List all available mainline kernels" msgstr "Lister tous les noyaux mainline disponibles" -#: src/Console/AppConsole.vala:69 +#: src/Console/AppConsole.vala:56 msgid "List installed kernels" msgstr "Lister les noyaux installés" -#: src/Console/AppConsole.vala:70 +#: src/Console/AppConsole.vala:57 msgid "Install latest mainline kernel" msgstr "Installer le dernier noyau mainline" -#: src/Console/AppConsole.vala:71 +#: src/Console/AppConsole.vala:58 msgid "Install latest point update for current series" msgstr "Installer la dernière version mineure pour la série courante" -#: src/Console/AppConsole.vala:72 +#: src/Console/AppConsole.vala:59 msgid "Install specified mainline kernel" msgstr "Installer le noyau mainline spécifié" -#: src/Console/AppConsole.vala:73 +#: src/Console/AppConsole.vala:60 #, fuzzy msgid "Uninstall specified kernel" msgstr "Installer les noyaux spécifiés" -#: src/Console/AppConsole.vala:74 +#: src/Console/AppConsole.vala:61 #, fuzzy -msgid "Uninstall kernels older than the running kernel" +msgid "Uninstall kernels older than the latest installed" msgstr "Désinstalle les noyaux plus anciens que le noyau courant" -#: src/Console/AppConsole.vala:75 +#: src/Console/AppConsole.vala:62 msgid "Download specified kernels" msgstr "Télécharger les noyaux spécifiés" -#: src/Console/AppConsole.vala:76 +#: src/Console/AppConsole.vala:63 msgid "Delete cached info about available kernels" msgstr "" -#: src/Console/AppConsole.vala:78 src/Gtk/AppGtk.vala:137 +#: src/Console/AppConsole.vala:65 src/Gtk/AppGtk.vala:139 msgid "Options" msgstr "Options" -#: src/Console/AppConsole.vala:80 +#: src/Console/AppConsole.vala:67 #, fuzzy msgid "Include unstable and RC releases" msgstr "Cacher les versions instables et RC" -#: src/Console/AppConsole.vala:81 +#: src/Console/AppConsole.vala:68 #, fuzzy msgid "Exclude unstable and RC releases" msgstr "Cacher les versions instables et RC" -#: src/Console/AppConsole.vala:82 +#: src/Console/AppConsole.vala:69 msgid "Enable verbose debugging output" msgstr "Active la sortie verbeuse de débogage" -#: src/Console/AppConsole.vala:83 +#: src/Console/AppConsole.vala:70 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "" -#: src/Console/AppConsole.vala:86 +#: src/Console/AppConsole.vala:73 msgid "A version string taken from the output of --list" msgstr "Une version prise du resultat de --list" -#: src/Console/AppConsole.vala:87 -msgid "" -"One or more version strings (comma-separated) taken from the output of --list" +#: src/Console/AppConsole.vala:74 +msgid "One or more, comma-seperated" msgstr "" -"Une ou plusieurs versions (séparées par des virgules) prises du résultat de " -"--list" -#: src/Console/AppConsole.vala:164 src/Gtk/AppGtk.vala:121 +#: src/Console/AppConsole.vala:75 +#, fuzzy +msgid "The currently running kernel will always be ignored" +msgstr "Les noyaux suivants seront supprimés:" + +#: src/Console/AppConsole.vala:153 src/Gtk/AppGtk.vala:123 msgid "Unknown option" msgstr "Option inconnue" -#: src/Console/AppConsole.vala:165 src/Console/AppConsole.vala:253 -#: src/Console/AppConsole.vala:281 +#: src/Console/AppConsole.vala:154 src/Console/AppConsole.vala:244 +#: src/Console/AppConsole.vala:272 msgid "Run" msgstr "Executez" -#: src/Console/AppConsole.vala:165 +#: src/Console/AppConsole.vala:154 msgid "to list all options" msgstr "pour afficher toutes les options" -#: src/Console/AppConsole.vala:221 src/Console/AppConsole.vala:261 +#: src/Console/AppConsole.vala:212 src/Console/AppConsole.vala:252 msgid "No kernels specified" msgstr "Aucun noyau spécifié" -#: src/Console/AppConsole.vala:227 +#: src/Console/AppConsole.vala:218 msgid "Multiple kernels selected for installation. Select only one." msgstr "" "Plusieurs noyaux sélectionnés pour être installés. Sélectionnez en seulement " "un." -#: src/Console/AppConsole.vala:250 +#: src/Console/AppConsole.vala:241 msgid "Could not find requested version" msgstr "Impossible de trouver la version demandée" -#: src/Console/AppConsole.vala:253 +#: src/Console/AppConsole.vala:244 msgid "and use a version string listed in first column" msgstr "" -#: src/Console/AppConsole.vala:280 +#: src/Console/AppConsole.vala:271 msgid "Command not specified" msgstr "Pas de commande fournie" -#: src/Console/AppConsole.vala:281 +#: src/Console/AppConsole.vala:272 msgid "to list all commands" msgstr "pour afficher toutes les commandes" -#: src/Console/AppConsole.vala:335 src/Gtk/SettingsDialog.vala:166 +#: src/Console/AppConsole.vala:326 src/Gtk/SettingsDialog.vala:166 msgid "Show" msgstr "Montrer" -#: src/Console/AppConsole.vala:340 src/Console/AppConsole.vala:352 +#: src/Console/AppConsole.vala:331 src/Console/AppConsole.vala:343 #, c-format msgid "Kernel %s Available" msgstr "Paquet %s disponibles" -#: src/Console/AppConsole.vala:342 src/Console/AppConsole.vala:354 -#: src/Gtk/MainWindow.vala:269 +#: src/Console/AppConsole.vala:333 src/Console/AppConsole.vala:345 +#: src/Gtk/MainWindow.vala:267 msgid "Install" msgstr "Installer" @@ -296,7 +300,7 @@ msgstr "Crédits" msgid "Back" msgstr "Retour" -#: src/Gtk/AboutWindow.vala:287 src/Gtk/TerminalWindow.vala:154 +#: src/Gtk/AboutWindow.vala:287 src/Gtk/TerminalWindow.vala:163 msgid "Close" msgstr "Fermer" @@ -324,90 +328,90 @@ msgstr "Documentalistes" msgid "Third Party Inclusions" msgstr "Dépendances Tierces" -#: src/Gtk/AppGtk.vala:135 +#: src/Gtk/AppGtk.vala:137 #, fuzzy msgid "options" msgstr "Options" -#: src/Gtk/AppGtk.vala:139 +#: src/Gtk/AppGtk.vala:141 msgid "Print debug information" msgstr "Afficher les informations de débogage" -#: src/Gtk/AppGtk.vala:140 +#: src/Gtk/AppGtk.vala:142 msgid "Show all options" msgstr "Afficher toutes les options" -#: src/Gtk/MainWindow.vala:115 +#: src/Gtk/MainWindow.vala:113 msgid "Kernel" msgstr "Noyau" -#: src/Gtk/MainWindow.vala:145 +#: src/Gtk/MainWindow.vala:143 msgid "Status" msgstr "Statut" -#: src/Gtk/MainWindow.vala:279 +#: src/Gtk/MainWindow.vala:277 #, fuzzy msgid "Uninstall" msgstr "Installer" -#: src/Gtk/MainWindow.vala:289 +#: src/Gtk/MainWindow.vala:287 msgid "Changes" msgstr "Changements" -#: src/Gtk/MainWindow.vala:311 +#: src/Gtk/MainWindow.vala:309 #, fuzzy msgid "Uninstall Old" msgstr "Désinstallation complète" -#: src/Gtk/MainWindow.vala:312 +#: src/Gtk/MainWindow.vala:310 #, fuzzy msgid "Uninstall kernels older than running kernel" msgstr "Désinstalle les noyaux plus anciens que le noyau courant" -#: src/Gtk/MainWindow.vala:317 +#: src/Gtk/MainWindow.vala:315 msgid "Reload" msgstr "" -#: src/Gtk/MainWindow.vala:322 src/Gtk/SettingsDialog.vala:50 +#: src/Gtk/MainWindow.vala:320 src/Gtk/SettingsDialog.vala:50 msgid "Settings" msgstr "Paramètres" -#: src/Gtk/MainWindow.vala:327 +#: src/Gtk/MainWindow.vala:325 msgid "About" msgstr "À propos" -#: src/Gtk/MainWindow.vala:332 +#: src/Gtk/MainWindow.vala:330 msgid "Exit" msgstr "" -#: src/Gtk/MainWindow.vala:400 +#: src/Gtk/MainWindow.vala:398 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "" "Utilitaire de mise à niveau des noyaux pour les distributions basées sur " "Ubuntu" -#: src/Gtk/MainWindow.vala:401 +#: src/Gtk/MainWindow.vala:399 msgid "Forked" msgstr "Version forkée :" -#: src/Gtk/MainWindow.vala:401 +#: src/Gtk/MainWindow.vala:399 msgid "Original" msgstr "Version originale :" -#: src/Gtk/MainWindow.vala:439 +#: src/Gtk/MainWindow.vala:437 msgid "Updating kernels" msgstr "" -#: src/Gtk/MainWindow.vala:510 +#: src/Gtk/MainWindow.vala:508 msgid "available" msgstr "disponible" -#: src/Gtk/MainWindow.vala:543 src/Gtk/MainWindow.vala:576 -#: src/Gtk/MainWindow.vala:603 +#: src/Gtk/MainWindow.vala:551 src/Gtk/MainWindow.vala:591 +#: src/Gtk/MainWindow.vala:625 msgid "DONE" msgstr "" -#: src/Gtk/ProgressWindow.vala:127 src/Gtk/TerminalWindow.vala:144 +#: src/Gtk/ProgressWindow.vala:128 src/Gtk/TerminalWindow.vala:153 msgid "Cancel" msgstr "Annuler" @@ -424,7 +428,7 @@ msgid "Notify if a point release is available" msgstr "Notifier si une version stable mineure est disponible" #: src/Gtk/SettingsDialog.vala:87 -msgid "(Allowing intervals in seconds for --debug)" +msgid "Seconds interval enabled for debugging" msgstr "" #: src/Gtk/SettingsDialog.vala:110 @@ -484,11 +488,3 @@ msgstr "" #: src/Gtk/l.gtk.vala:44 msgid "Missing Icon" msgstr "Icône introuvable" - -#: src/lib/TeeJee.Logging.vala:43 -msgid "E" -msgstr "E" - -#: src/lib/TeeJee.Logging.vala:50 -msgid "D" -msgstr "D" diff --git a/po/hr.po b/po/hr.po index c740b723..7244d33b 100644 --- a/po/hr.po +++ b/po/hr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-12 04:45-0400\n" +"POT-Creation-Date: 2023-03-14 06:30-0400\n" "PO-Revision-Date: 2022-09-22 12:13+0200\n" "Last-Translator: gogo \n" "Language-Team: Croatian\n" @@ -13,15 +13,15 @@ msgstr "" "X-Launchpad-Export-Date: 2017-12-23 23:36+0000\n" "X-Generator: Poedit 3.0.1\n" -#: src/Common/LinuxKernel.vala:87 +#: src/Common/LinuxKernel.vala:88 msgid "Distribution" msgstr "Distribucija" -#: src/Common/LinuxKernel.vala:102 +#: src/Common/LinuxKernel.vala:103 msgid "Architecture" msgstr "Arhitektura" -#: src/Common/LinuxKernel.vala:282 +#: src/Common/LinuxKernel.vala:278 #, fuzzy msgid "Fetching individual kernel indexes" msgstr "Preuzimanje sadržaja..." @@ -30,253 +30,260 @@ msgstr "Preuzimanje sadržaja..." msgid "Updating from" msgstr "" -#: src/Common/LinuxKernel.vala:738 +#: src/Common/LinuxKernel.vala:344 src/Common/LinuxKernel.vala:897 +msgid "OK" +msgstr "U redu" + +#: src/Common/LinuxKernel.vala:347 src/Common/LinuxKernel.vala:900 +msgid "FAILED" +msgstr "" + +#: src/Common/LinuxKernel.vala:761 msgid "Packages Available" msgstr "Dostupni paketi" -#: src/Common/LinuxKernel.vala:743 +#: src/Common/LinuxKernel.vala:766 msgid "Packages Installed" msgstr "Instalirani paketi" -#: src/Common/LinuxKernel.vala:756 src/lib/TeeJee.FileSystem.vala:121 +#: src/Common/LinuxKernel.vala:779 src/lib/TeeJee.FileSystem.vala:121 msgid "File not found" msgstr "Datoteka nije pronađena" -#: src/Common/LinuxKernel.vala:821 +#: src/Common/LinuxKernel.vala:843 msgid "Available Kernels" msgstr "Dostupni kerneli" -#: src/Common/LinuxKernel.vala:828 src/Gtk/MainWindow.vala:158 +#: src/Common/LinuxKernel.vala:850 src/Gtk/MainWindow.vala:156 msgid "Installed" msgstr "Instalirano" -#: src/Common/LinuxKernel.vala:828 src/Gtk/MainWindow.vala:158 -#: src/Gtk/MainWindow.vala:501 src/Gtk/MainWindow.vala:514 +#: src/Common/LinuxKernel.vala:850 src/Gtk/MainWindow.vala:156 +#: src/Gtk/MainWindow.vala:499 src/Gtk/MainWindow.vala:512 msgid "Running" msgstr "Pokrenuto" -#: src/Common/LinuxKernel.vala:863 +#: src/Common/LinuxKernel.vala:885 msgid "Downloading" msgstr "Preuzimanje" -#: src/Common/LinuxKernel.vala:882 -msgid "OK" -msgstr "U redu" - -#: src/Common/LinuxKernel.vala:885 -msgid "ERROR" -msgstr "GREŠKA" - -#: src/Common/LinuxKernel.vala:899 -msgid "This kernel is already installed." +#: src/Common/LinuxKernel.vala:913 +#, fuzzy +msgid "is already installed." msgstr "Ovaj kernel je već instaliran." -#: src/Common/LinuxKernel.vala:929 +#: src/Common/LinuxKernel.vala:943 #, fuzzy msgid "Uninstalling selected kernels" msgstr "Deinstaliraj određene kernele" -#: src/Common/LinuxKernel.vala:935 +#: src/Common/LinuxKernel.vala:949 msgid "requested" msgstr "" -#: src/Common/LinuxKernel.vala:938 -msgid "skipping the currently booted kernel" -msgstr "" +#: src/Common/LinuxKernel.vala:952 +#, fuzzy +msgid "not uninstalling the currently running kernel" +msgstr "Deinstaliraj određene kernele" -#: src/Common/LinuxKernel.vala:954 +#: src/Common/LinuxKernel.vala:968 msgid "found" msgstr "" -#: src/Common/LinuxKernel.vala:957 +#: src/Common/LinuxKernel.vala:971 #, fuzzy msgid "No packages to un-install!" msgstr "Instalirani paketi" -#: src/Common/LinuxKernel.vala:996 +#: src/Common/LinuxKernel.vala:1019 #, fuzzy msgid "Could not find running kernel in list" msgstr "Nemoguće je pronaći pokrenuti kernel na popisu!" -#: src/Common/LinuxKernel.vala:1002 +#: src/Common/LinuxKernel.vala:1024 msgid "Could not find any kernels to uninstall" msgstr "Nema pronađenih kernela za deinstaliranje" -#: src/Common/LinuxKernel.vala:1011 -msgid "The following kernels will be uninstalled:" +#: src/Common/LinuxKernel.vala:1032 +#, fuzzy +msgid "The following kernels will be uninstalled" msgstr "Sljedeći kerneli će biti deinstalirani:" -#: src/Common/LinuxKernel.vala:1015 +#: src/Common/LinuxKernel.vala:1036 msgid "Continue ?" msgstr "Nastavi?" -#: src/Common/LinuxKernel.vala:1038 src/Console/AppConsole.vala:295 +#: src/Common/LinuxKernel.vala:1058 src/Console/AppConsole.vala:286 msgid "Latest update" msgstr "Najnovija nadopuna" -#: src/Common/LinuxKernel.vala:1049 src/Console/AppConsole.vala:302 +#: src/Common/LinuxKernel.vala:1069 src/Console/AppConsole.vala:293 msgid "Latest point update" msgstr "Najnovija ciljana nadopuna" -#: src/Common/LinuxKernel.vala:1057 src/Console/AppConsole.vala:307 -#: src/Console/AppConsole.vala:362 +#: src/Common/LinuxKernel.vala:1077 src/Console/AppConsole.vala:298 +#: src/Console/AppConsole.vala:353 msgid "No updates found" msgstr "Nema pronađenih nadopuna" -#: src/Common/LinuxKernel.vala:1066 +#: src/Common/LinuxKernel.vala:1086 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Instaliraj kernel inačice %s ? (d/n): " -#: src/Common/Main.vala:240 +#: src/Common/Main.vala:271 msgid "Called from" msgstr "Pozvano od" -#: src/Common/Main.vala:274 +#: src/Common/Main.vala:307 msgid "Notifications are disabled" msgstr "Obavijesti su onemogućene" -#: src/Common/Main.vala:312 src/Gtk/MainWindow.vala:612 +#: src/Common/Main.vala:352 src/Gtk/MainWindow.vala:634 #, fuzzy -msgid "Can not reach" +msgid "Can not reach site" msgstr "Neuspjelo čitanje datoteke" -#: src/Common/Package.vala:57 +#: src/Common/Package.vala:58 #, fuzzy, c-format msgid "File not found: %s" msgstr "Datoteka nije pronađena" -#: src/Console/AppConsole.vala:62 src/Gtk/AppGtk.vala:135 +#: src/Console/AppConsole.vala:49 src/Gtk/AppGtk.vala:137 msgid "Syntax" msgstr "Sintaksa" -#: src/Console/AppConsole.vala:64 +#: src/Console/AppConsole.vala:51 msgid "Commands" msgstr "Naredbe" -#: src/Console/AppConsole.vala:66 +#: src/Console/AppConsole.vala:53 msgid "Check for kernel updates" msgstr "Provjeri nadopune kernela" -#: src/Console/AppConsole.vala:67 +#: src/Console/AppConsole.vala:54 msgid "Check for kernel updates and notify current user" msgstr "Provjeri nadopune kernela i obavijesti trenutnog korisnika" -#: src/Console/AppConsole.vala:68 +#: src/Console/AppConsole.vala:55 msgid "List all available mainline kernels" msgstr "Prikaži sve mainline kernele" -#: src/Console/AppConsole.vala:69 +#: src/Console/AppConsole.vala:56 msgid "List installed kernels" msgstr "Prikaži instalirane kernele" -#: src/Console/AppConsole.vala:70 +#: src/Console/AppConsole.vala:57 msgid "Install latest mainline kernel" msgstr "Instaliraj najnoviji mainline kernel" -#: src/Console/AppConsole.vala:71 +#: src/Console/AppConsole.vala:58 msgid "Install latest point update for current series" msgstr "Instaliraj najnoviju ciljanu nadopunu za trenutnu seriju" -#: src/Console/AppConsole.vala:72 +#: src/Console/AppConsole.vala:59 msgid "Install specified mainline kernel" msgstr "Instaliraj određeni mainline kernel" -#: src/Console/AppConsole.vala:73 +#: src/Console/AppConsole.vala:60 msgid "Uninstall specified kernel" msgstr "Deinstaliraj određene kernele" -#: src/Console/AppConsole.vala:74 -msgid "Uninstall kernels older than the running kernel" +#: src/Console/AppConsole.vala:61 +#, fuzzy +msgid "Uninstall kernels older than the latest installed" msgstr "Deinstaliraj starije kernele od trenutno pokrenutog krenela" -#: src/Console/AppConsole.vala:75 +#: src/Console/AppConsole.vala:62 msgid "Download specified kernels" msgstr "Preuzmi određene kernele" -#: src/Console/AppConsole.vala:76 +#: src/Console/AppConsole.vala:63 msgid "Delete cached info about available kernels" msgstr "" -#: src/Console/AppConsole.vala:78 src/Gtk/AppGtk.vala:137 +#: src/Console/AppConsole.vala:65 src/Gtk/AppGtk.vala:139 msgid "Options" msgstr "Mogućnosti" -#: src/Console/AppConsole.vala:80 +#: src/Console/AppConsole.vala:67 msgid "Include unstable and RC releases" msgstr "Uključi predizdanja i nestabilne kernele" -#: src/Console/AppConsole.vala:81 +#: src/Console/AppConsole.vala:68 #, fuzzy msgid "Exclude unstable and RC releases" msgstr "Uključi predizdanja i nestabilne kernele" -#: src/Console/AppConsole.vala:82 +#: src/Console/AppConsole.vala:69 msgid "Enable verbose debugging output" msgstr "Omogući opširnije zapisivanje" -#: src/Console/AppConsole.vala:83 +#: src/Console/AppConsole.vala:70 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "Pretpostavi Da za sve upite (neinteraktivan način rada)" -#: src/Console/AppConsole.vala:86 +#: src/Console/AppConsole.vala:73 msgid "A version string taken from the output of --list" msgstr "Izraz inačice uzet iz zapisa --list" -#: src/Console/AppConsole.vala:87 -msgid "" -"One or more version strings (comma-separated) taken from the output of --list" +#: src/Console/AppConsole.vala:74 +msgid "One or more, comma-seperated" msgstr "" -"Jedan ili više izraza inačice (zarezom odvojeni) uzetih iz zapisa --list" -#: src/Console/AppConsole.vala:164 src/Gtk/AppGtk.vala:121 +#: src/Console/AppConsole.vala:75 +#, fuzzy +msgid "The currently running kernel will always be ignored" +msgstr "Sljedeći kerneli će biti deinstalirani:" + +#: src/Console/AppConsole.vala:153 src/Gtk/AppGtk.vala:123 msgid "Unknown option" msgstr "Nepoznata mogućnost" -#: src/Console/AppConsole.vala:165 src/Console/AppConsole.vala:253 -#: src/Console/AppConsole.vala:281 +#: src/Console/AppConsole.vala:154 src/Console/AppConsole.vala:244 +#: src/Console/AppConsole.vala:272 msgid "Run" msgstr "Pokreni" -#: src/Console/AppConsole.vala:165 +#: src/Console/AppConsole.vala:154 msgid "to list all options" msgstr "za prikaz svih mogućnosti" -#: src/Console/AppConsole.vala:221 src/Console/AppConsole.vala:261 +#: src/Console/AppConsole.vala:212 src/Console/AppConsole.vala:252 msgid "No kernels specified" msgstr "Nema određenih kernela" -#: src/Console/AppConsole.vala:227 +#: src/Console/AppConsole.vala:218 msgid "Multiple kernels selected for installation. Select only one." msgstr "Više kernela je odabrano za instalaciju. odaberite samo jedan." -#: src/Console/AppConsole.vala:250 +#: src/Console/AppConsole.vala:241 msgid "Could not find requested version" msgstr "Nemoguće je pronaći zatraženu inačicu" -#: src/Console/AppConsole.vala:253 +#: src/Console/AppConsole.vala:244 msgid "and use a version string listed in first column" msgstr "i koristite izraz inačice prikazan u prvom stupcu" -#: src/Console/AppConsole.vala:280 +#: src/Console/AppConsole.vala:271 msgid "Command not specified" msgstr "Naredba nije navedena" -#: src/Console/AppConsole.vala:281 +#: src/Console/AppConsole.vala:272 msgid "to list all commands" msgstr "za prikaz svih mogućnosti" -#: src/Console/AppConsole.vala:335 src/Gtk/SettingsDialog.vala:166 +#: src/Console/AppConsole.vala:326 src/Gtk/SettingsDialog.vala:166 msgid "Show" msgstr "Prikaži" -#: src/Console/AppConsole.vala:340 src/Console/AppConsole.vala:352 +#: src/Console/AppConsole.vala:331 src/Console/AppConsole.vala:343 #, c-format msgid "Kernel %s Available" msgstr "Kernel %s je dostupan" -#: src/Console/AppConsole.vala:342 src/Console/AppConsole.vala:354 -#: src/Gtk/MainWindow.vala:269 +#: src/Console/AppConsole.vala:333 src/Console/AppConsole.vala:345 +#: src/Gtk/MainWindow.vala:267 msgid "Install" msgstr "Instaliraj" @@ -288,7 +295,7 @@ msgstr "Zasluge" msgid "Back" msgstr "Natrag" -#: src/Gtk/AboutWindow.vala:287 src/Gtk/TerminalWindow.vala:154 +#: src/Gtk/AboutWindow.vala:287 src/Gtk/TerminalWindow.vala:163 msgid "Close" msgstr "Zatvori" @@ -316,85 +323,85 @@ msgstr "Autori dokumentacije" msgid "Third Party Inclusions" msgstr "Uključene treće strane" -#: src/Gtk/AppGtk.vala:135 +#: src/Gtk/AppGtk.vala:137 #, fuzzy msgid "options" msgstr "Mogućnosti" -#: src/Gtk/AppGtk.vala:139 +#: src/Gtk/AppGtk.vala:141 msgid "Print debug information" msgstr "Ispiši informacije otklanjanja grešaka" -#: src/Gtk/AppGtk.vala:140 +#: src/Gtk/AppGtk.vala:142 msgid "Show all options" msgstr "Prikaži sve mogućnosti" -#: src/Gtk/MainWindow.vala:115 +#: src/Gtk/MainWindow.vala:113 msgid "Kernel" msgstr "Kernel" -#: src/Gtk/MainWindow.vala:145 +#: src/Gtk/MainWindow.vala:143 msgid "Status" msgstr "Stanje" -#: src/Gtk/MainWindow.vala:279 +#: src/Gtk/MainWindow.vala:277 msgid "Uninstall" msgstr "Deinstaliraj" -#: src/Gtk/MainWindow.vala:289 +#: src/Gtk/MainWindow.vala:287 msgid "Changes" msgstr "Promjene" -#: src/Gtk/MainWindow.vala:311 +#: src/Gtk/MainWindow.vala:309 msgid "Uninstall Old" msgstr "Deinstaliraj staro" -#: src/Gtk/MainWindow.vala:312 +#: src/Gtk/MainWindow.vala:310 msgid "Uninstall kernels older than running kernel" msgstr "Deinstaliraj kernele starije od pokrenutog krenela" -#: src/Gtk/MainWindow.vala:317 +#: src/Gtk/MainWindow.vala:315 msgid "Reload" msgstr "" -#: src/Gtk/MainWindow.vala:322 src/Gtk/SettingsDialog.vala:50 +#: src/Gtk/MainWindow.vala:320 src/Gtk/SettingsDialog.vala:50 msgid "Settings" msgstr "Postavke" -#: src/Gtk/MainWindow.vala:327 +#: src/Gtk/MainWindow.vala:325 msgid "About" msgstr "O programu" -#: src/Gtk/MainWindow.vala:332 +#: src/Gtk/MainWindow.vala:330 msgid "Exit" msgstr "" -#: src/Gtk/MainWindow.vala:400 +#: src/Gtk/MainWindow.vala:398 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Alat za nadogradnju kernela Ubuntu temeljenih distribucija" -#: src/Gtk/MainWindow.vala:401 +#: src/Gtk/MainWindow.vala:399 msgid "Forked" msgstr "Forkano" -#: src/Gtk/MainWindow.vala:401 +#: src/Gtk/MainWindow.vala:399 msgid "Original" msgstr "Izvornik" -#: src/Gtk/MainWindow.vala:439 +#: src/Gtk/MainWindow.vala:437 msgid "Updating kernels" msgstr "" -#: src/Gtk/MainWindow.vala:510 +#: src/Gtk/MainWindow.vala:508 msgid "available" msgstr "dostupno" -#: src/Gtk/MainWindow.vala:543 src/Gtk/MainWindow.vala:576 -#: src/Gtk/MainWindow.vala:603 +#: src/Gtk/MainWindow.vala:551 src/Gtk/MainWindow.vala:591 +#: src/Gtk/MainWindow.vala:625 msgid "DONE" msgstr "" -#: src/Gtk/ProgressWindow.vala:127 src/Gtk/TerminalWindow.vala:144 +#: src/Gtk/ProgressWindow.vala:128 src/Gtk/TerminalWindow.vala:153 msgid "Cancel" msgstr "Odustani" @@ -411,7 +418,8 @@ msgid "Notify if a point release is available" msgstr "Obavijesti kada je pojedino izdanje dostupno" #: src/Gtk/SettingsDialog.vala:87 -msgid "(Allowing intervals in seconds for --debug)" +#, fuzzy +msgid "Seconds interval enabled for debugging" msgstr "(Dopuštena razdoblja u sekundama za --debug)" #: src/Gtk/SettingsDialog.vala:110 @@ -471,11 +479,3 @@ msgstr "" #: src/Gtk/l.gtk.vala:44 msgid "Missing Icon" msgstr "Ikone koje nedostaju" - -#: src/lib/TeeJee.Logging.vala:43 -msgid "E" -msgstr "G" - -#: src/lib/TeeJee.Logging.vala:50 -msgid "D" -msgstr "D" diff --git a/po/it.po b/po/it.po index 20b46ac1..624e768a 100644 --- a/po/it.po +++ b/po/it.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline 1.0.15\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-12 04:45-0400\n" +"POT-Creation-Date: 2023-03-14 06:30-0400\n" "PO-Revision-Date: 2020-08-22 15:35+0100\n" "Last-Translator: Albano Battistella \n" "Language-Team: Italian\n" @@ -11,15 +11,15 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: src/Common/LinuxKernel.vala:87 +#: src/Common/LinuxKernel.vala:88 msgid "Distribution" msgstr "Distribuzione" -#: src/Common/LinuxKernel.vala:102 +#: src/Common/LinuxKernel.vala:103 msgid "Architecture" msgstr "Architettura" -#: src/Common/LinuxKernel.vala:282 +#: src/Common/LinuxKernel.vala:278 #, fuzzy msgid "Fetching individual kernel indexes" msgstr "Recupero indice in corso..." @@ -28,256 +28,262 @@ msgstr "Recupero indice in corso..." msgid "Updating from" msgstr "" -#: src/Common/LinuxKernel.vala:738 +#: src/Common/LinuxKernel.vala:344 src/Common/LinuxKernel.vala:897 +msgid "OK" +msgstr "OK" + +#: src/Common/LinuxKernel.vala:347 src/Common/LinuxKernel.vala:900 +msgid "FAILED" +msgstr "" + +#: src/Common/LinuxKernel.vala:761 msgid "Packages Available" msgstr "Pacchetti disponibili" -#: src/Common/LinuxKernel.vala:743 +#: src/Common/LinuxKernel.vala:766 msgid "Packages Installed" msgstr "Pacchetti installati" -#: src/Common/LinuxKernel.vala:756 src/lib/TeeJee.FileSystem.vala:121 +#: src/Common/LinuxKernel.vala:779 src/lib/TeeJee.FileSystem.vala:121 msgid "File not found" msgstr "File non trovato" -#: src/Common/LinuxKernel.vala:821 +#: src/Common/LinuxKernel.vala:843 msgid "Available Kernels" msgstr "Kernel disponibili" -#: src/Common/LinuxKernel.vala:828 src/Gtk/MainWindow.vala:158 +#: src/Common/LinuxKernel.vala:850 src/Gtk/MainWindow.vala:156 msgid "Installed" msgstr "Installato" -#: src/Common/LinuxKernel.vala:828 src/Gtk/MainWindow.vala:158 -#: src/Gtk/MainWindow.vala:501 src/Gtk/MainWindow.vala:514 +#: src/Common/LinuxKernel.vala:850 src/Gtk/MainWindow.vala:156 +#: src/Gtk/MainWindow.vala:499 src/Gtk/MainWindow.vala:512 msgid "Running" msgstr "In esecuzione" -#: src/Common/LinuxKernel.vala:863 +#: src/Common/LinuxKernel.vala:885 msgid "Downloading" msgstr "Download in corso" -#: src/Common/LinuxKernel.vala:882 -msgid "OK" -msgstr "OK" - -#: src/Common/LinuxKernel.vala:885 -msgid "ERROR" -msgstr "ERRORE" - -#: src/Common/LinuxKernel.vala:899 -msgid "This kernel is already installed." +#: src/Common/LinuxKernel.vala:913 +#, fuzzy +msgid "is already installed." msgstr "Questo kernel è già installato" -#: src/Common/LinuxKernel.vala:929 +#: src/Common/LinuxKernel.vala:943 #, fuzzy msgid "Uninstalling selected kernels" msgstr "Disinstalla i kernel specificati" -#: src/Common/LinuxKernel.vala:935 +#: src/Common/LinuxKernel.vala:949 msgid "requested" msgstr "" -#: src/Common/LinuxKernel.vala:938 -msgid "skipping the currently booted kernel" -msgstr "" +#: src/Common/LinuxKernel.vala:952 +#, fuzzy +msgid "not uninstalling the currently running kernel" +msgstr "Disinstalla i kernel specificati" -#: src/Common/LinuxKernel.vala:954 +#: src/Common/LinuxKernel.vala:968 msgid "found" msgstr "" -#: src/Common/LinuxKernel.vala:957 +#: src/Common/LinuxKernel.vala:971 #, fuzzy msgid "No packages to un-install!" msgstr "Pacchetti installati" -#: src/Common/LinuxKernel.vala:996 +#: src/Common/LinuxKernel.vala:1019 #, fuzzy msgid "Could not find running kernel in list" msgstr "Impossibile trovare il kernel in esecuzione nell'elenco!" -#: src/Common/LinuxKernel.vala:1002 +#: src/Common/LinuxKernel.vala:1024 msgid "Could not find any kernels to uninstall" msgstr "Impossibile trovare alcun kernel da rimuovere" -#: src/Common/LinuxKernel.vala:1011 -msgid "The following kernels will be uninstalled:" +#: src/Common/LinuxKernel.vala:1032 +#, fuzzy +msgid "The following kernels will be uninstalled" msgstr "I seguenti kernel verranno rimossi:" -#: src/Common/LinuxKernel.vala:1015 +#: src/Common/LinuxKernel.vala:1036 msgid "Continue ?" msgstr "Continuare ?" -#: src/Common/LinuxKernel.vala:1038 src/Console/AppConsole.vala:295 +#: src/Common/LinuxKernel.vala:1058 src/Console/AppConsole.vala:286 msgid "Latest update" msgstr "Ultimo aggiornamento" -#: src/Common/LinuxKernel.vala:1049 src/Console/AppConsole.vala:302 +#: src/Common/LinuxKernel.vala:1069 src/Console/AppConsole.vala:293 msgid "Latest point update" msgstr "Ultimo aggiornamento del punto" -#: src/Common/LinuxKernel.vala:1057 src/Console/AppConsole.vala:307 -#: src/Console/AppConsole.vala:362 +#: src/Common/LinuxKernel.vala:1077 src/Console/AppConsole.vala:298 +#: src/Console/AppConsole.vala:353 msgid "No updates found" msgstr "Nessun aggiornamento trovato" -#: src/Common/LinuxKernel.vala:1066 +#: src/Common/LinuxKernel.vala:1086 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Installare la versione del kernel %s ? (y/n): " -#: src/Common/Main.vala:240 +#: src/Common/Main.vala:271 msgid "Called from" msgstr "Chiamata da" -#: src/Common/Main.vala:274 +#: src/Common/Main.vala:307 msgid "Notifications are disabled" msgstr "Le notifiche sono disabilitate" -#: src/Common/Main.vala:312 src/Gtk/MainWindow.vala:612 +#: src/Common/Main.vala:352 src/Gtk/MainWindow.vala:634 #, fuzzy -msgid "Can not reach" +msgid "Can not reach site" msgstr "Impossibile leggere il file" -#: src/Common/Package.vala:57 +#: src/Common/Package.vala:58 #, fuzzy, c-format msgid "File not found: %s" msgstr "File non trovato" -#: src/Console/AppConsole.vala:62 src/Gtk/AppGtk.vala:135 +#: src/Console/AppConsole.vala:49 src/Gtk/AppGtk.vala:137 msgid "Syntax" msgstr "Sintassi" -#: src/Console/AppConsole.vala:64 +#: src/Console/AppConsole.vala:51 msgid "Commands" msgstr "Comandi" -#: src/Console/AppConsole.vala:66 +#: src/Console/AppConsole.vala:53 msgid "Check for kernel updates" msgstr "Verifica aggiornamenti per il kernel" -#: src/Console/AppConsole.vala:67 +#: src/Console/AppConsole.vala:54 msgid "Check for kernel updates and notify current user" msgstr "" "Verifica la disponibilità di aggiornamenti del kerneled avvisa l'utente " "corrente" -#: src/Console/AppConsole.vala:68 +#: src/Console/AppConsole.vala:55 msgid "List all available mainline kernels" msgstr "Elenca tutti i kernel mainline disponibili" -#: src/Console/AppConsole.vala:69 +#: src/Console/AppConsole.vala:56 msgid "List installed kernels" msgstr "Elenca i kernel installati" -#: src/Console/AppConsole.vala:70 +#: src/Console/AppConsole.vala:57 msgid "Install latest mainline kernel" msgstr "Installa ultimo kernel mainline" -#: src/Console/AppConsole.vala:71 +#: src/Console/AppConsole.vala:58 msgid "Install latest point update for current series" msgstr "installa l'ultimo rilascio parziale per le serie attuali" -#: src/Console/AppConsole.vala:72 +#: src/Console/AppConsole.vala:59 msgid "Install specified mainline kernel" msgstr "Installa kernel mainline specificato" -#: src/Console/AppConsole.vala:73 +#: src/Console/AppConsole.vala:60 msgid "Uninstall specified kernel" msgstr "Disinstalla i kernel specificati" -#: src/Console/AppConsole.vala:74 -msgid "Uninstall kernels older than the running kernel" +#: src/Console/AppConsole.vala:61 +#, fuzzy +msgid "Uninstall kernels older than the latest installed" msgstr "Rimuovere i kernel installati più vecchi del kernel in esecuzione" -#: src/Console/AppConsole.vala:75 +#: src/Console/AppConsole.vala:62 msgid "Download specified kernels" msgstr "Scarica i kernel specificati" -#: src/Console/AppConsole.vala:76 +#: src/Console/AppConsole.vala:63 msgid "Delete cached info about available kernels" msgstr "" -#: src/Console/AppConsole.vala:78 src/Gtk/AppGtk.vala:137 +#: src/Console/AppConsole.vala:65 src/Gtk/AppGtk.vala:139 msgid "Options" msgstr "Opzioni" -#: src/Console/AppConsole.vala:80 +#: src/Console/AppConsole.vala:67 msgid "Include unstable and RC releases" msgstr "Includi versioni instabili e RC" -#: src/Console/AppConsole.vala:81 +#: src/Console/AppConsole.vala:68 #, fuzzy msgid "Exclude unstable and RC releases" msgstr "Includi versioni instabili e RC" -#: src/Console/AppConsole.vala:82 +#: src/Console/AppConsole.vala:69 msgid "Enable verbose debugging output" msgstr "Abilita l'output di debug dettagliato" -#: src/Console/AppConsole.vala:83 +#: src/Console/AppConsole.vala:70 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "Imposta Sì per tutte le richieste (modalità non interattiva)" -#: src/Console/AppConsole.vala:86 +#: src/Console/AppConsole.vala:73 msgid "A version string taken from the output of --list" msgstr "Una stringa di versione presa dall'output di --list" -#: src/Console/AppConsole.vala:87 -msgid "" -"One or more version strings (comma-separated) taken from the output of --list" +#: src/Console/AppConsole.vala:74 +msgid "One or more, comma-seperated" msgstr "" -"Una o più stringhe di versione (separate da virgole) prese dall'output di --" -"list" -#: src/Console/AppConsole.vala:164 src/Gtk/AppGtk.vala:121 +#: src/Console/AppConsole.vala:75 +#, fuzzy +msgid "The currently running kernel will always be ignored" +msgstr "I seguenti kernel verranno rimossi:" + +#: src/Console/AppConsole.vala:153 src/Gtk/AppGtk.vala:123 msgid "Unknown option" msgstr "Opzione sconosciuta" -#: src/Console/AppConsole.vala:165 src/Console/AppConsole.vala:253 -#: src/Console/AppConsole.vala:281 +#: src/Console/AppConsole.vala:154 src/Console/AppConsole.vala:244 +#: src/Console/AppConsole.vala:272 msgid "Run" msgstr "In corso" -#: src/Console/AppConsole.vala:165 +#: src/Console/AppConsole.vala:154 msgid "to list all options" msgstr "Elencare tutte le opzioni" -#: src/Console/AppConsole.vala:221 src/Console/AppConsole.vala:261 +#: src/Console/AppConsole.vala:212 src/Console/AppConsole.vala:252 msgid "No kernels specified" msgstr "Nessun kernel specificato" -#: src/Console/AppConsole.vala:227 +#: src/Console/AppConsole.vala:218 msgid "Multiple kernels selected for installation. Select only one." msgstr "Più kernel selezionati per l'installazione. Selezionare uno solo." -#: src/Console/AppConsole.vala:250 +#: src/Console/AppConsole.vala:241 msgid "Could not find requested version" msgstr "Impossibile trovare la versione richiesta" -#: src/Console/AppConsole.vala:253 +#: src/Console/AppConsole.vala:244 msgid "and use a version string listed in first column" msgstr "e usa una stringa di versione elencata nella prima colonna" -#: src/Console/AppConsole.vala:280 +#: src/Console/AppConsole.vala:271 msgid "Command not specified" msgstr "Comando non specificato" -#: src/Console/AppConsole.vala:281 +#: src/Console/AppConsole.vala:272 msgid "to list all commands" msgstr "Elencare tutti i comandi" -#: src/Console/AppConsole.vala:335 src/Gtk/SettingsDialog.vala:166 +#: src/Console/AppConsole.vala:326 src/Gtk/SettingsDialog.vala:166 msgid "Show" msgstr "Mostra" -#: src/Console/AppConsole.vala:340 src/Console/AppConsole.vala:352 +#: src/Console/AppConsole.vala:331 src/Console/AppConsole.vala:343 #, c-format msgid "Kernel %s Available" msgstr "Kernel %s Disponibile" -#: src/Console/AppConsole.vala:342 src/Console/AppConsole.vala:354 -#: src/Gtk/MainWindow.vala:269 +#: src/Console/AppConsole.vala:333 src/Console/AppConsole.vala:345 +#: src/Gtk/MainWindow.vala:267 msgid "Install" msgstr "Installa" @@ -289,7 +295,7 @@ msgstr "Crediti" msgid "Back" msgstr "Indietro" -#: src/Gtk/AboutWindow.vala:287 src/Gtk/TerminalWindow.vala:154 +#: src/Gtk/AboutWindow.vala:287 src/Gtk/TerminalWindow.vala:163 msgid "Close" msgstr "Chiudi" @@ -317,85 +323,85 @@ msgstr "Documentatori" msgid "Third Party Inclusions" msgstr "Inclusioni di terze parti" -#: src/Gtk/AppGtk.vala:135 +#: src/Gtk/AppGtk.vala:137 #, fuzzy msgid "options" msgstr "Opzioni" -#: src/Gtk/AppGtk.vala:139 +#: src/Gtk/AppGtk.vala:141 msgid "Print debug information" msgstr "Stampa le informazioni di debug" -#: src/Gtk/AppGtk.vala:140 +#: src/Gtk/AppGtk.vala:142 msgid "Show all options" msgstr "Mostra tutte le opzioni" -#: src/Gtk/MainWindow.vala:115 +#: src/Gtk/MainWindow.vala:113 msgid "Kernel" msgstr "Kernel" -#: src/Gtk/MainWindow.vala:145 +#: src/Gtk/MainWindow.vala:143 msgid "Status" msgstr "Stato" -#: src/Gtk/MainWindow.vala:279 +#: src/Gtk/MainWindow.vala:277 msgid "Uninstall" msgstr "Disinstalla" -#: src/Gtk/MainWindow.vala:289 +#: src/Gtk/MainWindow.vala:287 msgid "Changes" msgstr "Modifiche" -#: src/Gtk/MainWindow.vala:311 +#: src/Gtk/MainWindow.vala:309 msgid "Uninstall Old" msgstr "Disinstalla i vecchi" -#: src/Gtk/MainWindow.vala:312 +#: src/Gtk/MainWindow.vala:310 msgid "Uninstall kernels older than running kernel" msgstr "Rimuovere i kernel installati più vecchi del kernel in esecuzione" -#: src/Gtk/MainWindow.vala:317 +#: src/Gtk/MainWindow.vala:315 msgid "Reload" msgstr "" -#: src/Gtk/MainWindow.vala:322 src/Gtk/SettingsDialog.vala:50 +#: src/Gtk/MainWindow.vala:320 src/Gtk/SettingsDialog.vala:50 msgid "Settings" msgstr "Impostazioni" -#: src/Gtk/MainWindow.vala:327 +#: src/Gtk/MainWindow.vala:325 msgid "About" msgstr "Informazioni" -#: src/Gtk/MainWindow.vala:332 +#: src/Gtk/MainWindow.vala:330 msgid "Exit" msgstr "" -#: src/Gtk/MainWindow.vala:400 +#: src/Gtk/MainWindow.vala:398 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Utilità di aggiornamento del kernel per distribuzioni basate su Ubuntu" -#: src/Gtk/MainWindow.vala:401 +#: src/Gtk/MainWindow.vala:399 msgid "Forked" msgstr "Forked" -#: src/Gtk/MainWindow.vala:401 +#: src/Gtk/MainWindow.vala:399 msgid "Original" msgstr "Originale" -#: src/Gtk/MainWindow.vala:439 +#: src/Gtk/MainWindow.vala:437 msgid "Updating kernels" msgstr "" -#: src/Gtk/MainWindow.vala:510 +#: src/Gtk/MainWindow.vala:508 msgid "available" msgstr "disponibile" -#: src/Gtk/MainWindow.vala:543 src/Gtk/MainWindow.vala:576 -#: src/Gtk/MainWindow.vala:603 +#: src/Gtk/MainWindow.vala:551 src/Gtk/MainWindow.vala:591 +#: src/Gtk/MainWindow.vala:625 msgid "DONE" msgstr "" -#: src/Gtk/ProgressWindow.vala:127 src/Gtk/TerminalWindow.vala:144 +#: src/Gtk/ProgressWindow.vala:128 src/Gtk/TerminalWindow.vala:153 msgid "Cancel" msgstr "Cancella" @@ -412,7 +418,8 @@ msgid "Notify if a point release is available" msgstr "Avvisa se è disponibile un rilascio parziale" #: src/Gtk/SettingsDialog.vala:87 -msgid "(Allowing intervals in seconds for --debug)" +#, fuzzy +msgid "Seconds interval enabled for debugging" msgstr "(Consentire intervalli in secondi per --debug)" #: src/Gtk/SettingsDialog.vala:110 @@ -472,11 +479,3 @@ msgstr "" #: src/Gtk/l.gtk.vala:44 msgid "Missing Icon" msgstr "Icona mancante" - -#: src/lib/TeeJee.Logging.vala:43 -msgid "E" -msgstr "E" - -#: src/lib/TeeJee.Logging.vala:50 -msgid "D" -msgstr "D" diff --git a/po/ko.po b/po/ko.po index 72e7ea47..492de7de 100644 --- a/po/ko.po +++ b/po/ko.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline 1.0.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-12 04:45-0400\n" +"POT-Creation-Date: 2023-03-14 06:30-0400\n" "PO-Revision-Date: 2022-09-28 11:48+0900\n" "Last-Translator: Kevin Kim \n" "Language-Team: Korean\n" @@ -13,15 +13,15 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Poedit 3.0.1\n" -#: src/Common/LinuxKernel.vala:87 +#: src/Common/LinuxKernel.vala:88 msgid "Distribution" msgstr "배포판" -#: src/Common/LinuxKernel.vala:102 +#: src/Common/LinuxKernel.vala:103 msgid "Architecture" msgstr "아키텍처" -#: src/Common/LinuxKernel.vala:282 +#: src/Common/LinuxKernel.vala:278 #, fuzzy msgid "Fetching individual kernel indexes" msgstr "목록 가져오기..." @@ -30,252 +30,260 @@ msgstr "목록 가져오기..." msgid "Updating from" msgstr "" -#: src/Common/LinuxKernel.vala:738 +#: src/Common/LinuxKernel.vala:344 src/Common/LinuxKernel.vala:897 +msgid "OK" +msgstr "확인" + +#: src/Common/LinuxKernel.vala:347 src/Common/LinuxKernel.vala:900 +msgid "FAILED" +msgstr "" + +#: src/Common/LinuxKernel.vala:761 msgid "Packages Available" msgstr "설치 가능한 패키지" -#: src/Common/LinuxKernel.vala:743 +#: src/Common/LinuxKernel.vala:766 msgid "Packages Installed" msgstr "설치된 패키지" -#: src/Common/LinuxKernel.vala:756 src/lib/TeeJee.FileSystem.vala:121 +#: src/Common/LinuxKernel.vala:779 src/lib/TeeJee.FileSystem.vala:121 msgid "File not found" msgstr "파일을 찾을 수 없습니다" -#: src/Common/LinuxKernel.vala:821 +#: src/Common/LinuxKernel.vala:843 msgid "Available Kernels" msgstr "설치 가능한 커널" -#: src/Common/LinuxKernel.vala:828 src/Gtk/MainWindow.vala:158 +#: src/Common/LinuxKernel.vala:850 src/Gtk/MainWindow.vala:156 msgid "Installed" msgstr "설치 됨" -#: src/Common/LinuxKernel.vala:828 src/Gtk/MainWindow.vala:158 -#: src/Gtk/MainWindow.vala:501 src/Gtk/MainWindow.vala:514 +#: src/Common/LinuxKernel.vala:850 src/Gtk/MainWindow.vala:156 +#: src/Gtk/MainWindow.vala:499 src/Gtk/MainWindow.vala:512 msgid "Running" msgstr "구동 중" -#: src/Common/LinuxKernel.vala:863 +#: src/Common/LinuxKernel.vala:885 msgid "Downloading" msgstr "다운로드 중" -#: src/Common/LinuxKernel.vala:882 -msgid "OK" -msgstr "확인" - -#: src/Common/LinuxKernel.vala:885 -msgid "ERROR" -msgstr "오류" - -#: src/Common/LinuxKernel.vala:899 -msgid "This kernel is already installed." +#: src/Common/LinuxKernel.vala:913 +#, fuzzy +msgid "is already installed." msgstr "이 커널은 이미 설치되었습니다." -#: src/Common/LinuxKernel.vala:929 +#: src/Common/LinuxKernel.vala:943 #, fuzzy msgid "Uninstalling selected kernels" msgstr "지정한 커널 삭제" -#: src/Common/LinuxKernel.vala:935 +#: src/Common/LinuxKernel.vala:949 msgid "requested" msgstr "" -#: src/Common/LinuxKernel.vala:938 -msgid "skipping the currently booted kernel" -msgstr "" +#: src/Common/LinuxKernel.vala:952 +#, fuzzy +msgid "not uninstalling the currently running kernel" +msgstr "지정한 커널 삭제" -#: src/Common/LinuxKernel.vala:954 +#: src/Common/LinuxKernel.vala:968 msgid "found" msgstr "" -#: src/Common/LinuxKernel.vala:957 +#: src/Common/LinuxKernel.vala:971 #, fuzzy msgid "No packages to un-install!" msgstr "설치된 패키지" -#: src/Common/LinuxKernel.vala:996 +#: src/Common/LinuxKernel.vala:1019 #, fuzzy msgid "Could not find running kernel in list" msgstr "목록에서 사용중인 커널을 찾을 수 없습니다!" -#: src/Common/LinuxKernel.vala:1002 +#: src/Common/LinuxKernel.vala:1024 msgid "Could not find any kernels to uninstall" msgstr "삭제할 커널을 찾을 수 없습니다" -#: src/Common/LinuxKernel.vala:1011 -msgid "The following kernels will be uninstalled:" +#: src/Common/LinuxKernel.vala:1032 +#, fuzzy +msgid "The following kernels will be uninstalled" msgstr "아래 커널이 삭제됩니다:" -#: src/Common/LinuxKernel.vala:1015 +#: src/Common/LinuxKernel.vala:1036 msgid "Continue ?" msgstr "계속하시겠습니까?" -#: src/Common/LinuxKernel.vala:1038 src/Console/AppConsole.vala:295 +#: src/Common/LinuxKernel.vala:1058 src/Console/AppConsole.vala:286 msgid "Latest update" msgstr "최신 업데이트" -#: src/Common/LinuxKernel.vala:1049 src/Console/AppConsole.vala:302 +#: src/Common/LinuxKernel.vala:1069 src/Console/AppConsole.vala:293 msgid "Latest point update" msgstr "최신 포인트 업데이트" -#: src/Common/LinuxKernel.vala:1057 src/Console/AppConsole.vala:307 -#: src/Console/AppConsole.vala:362 +#: src/Common/LinuxKernel.vala:1077 src/Console/AppConsole.vala:298 +#: src/Console/AppConsole.vala:353 msgid "No updates found" msgstr "업데이트를 찾을 수 없습니다" -#: src/Common/LinuxKernel.vala:1066 +#: src/Common/LinuxKernel.vala:1086 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "커널 %s 버전을 설치하시겠습니까? (y/n): " -#: src/Common/Main.vala:240 +#: src/Common/Main.vala:271 msgid "Called from" msgstr "에서 호출" -#: src/Common/Main.vala:274 +#: src/Common/Main.vala:307 msgid "Notifications are disabled" msgstr "알림이 비활성화 되었습니다" -#: src/Common/Main.vala:312 src/Gtk/MainWindow.vala:612 +#: src/Common/Main.vala:352 src/Gtk/MainWindow.vala:634 #, fuzzy -msgid "Can not reach" +msgid "Can not reach site" msgstr "파일 읽기를 실패했습니다" -#: src/Common/Package.vala:57 +#: src/Common/Package.vala:58 #, fuzzy, c-format msgid "File not found: %s" msgstr "파일을 찾을 수 없습니다" -#: src/Console/AppConsole.vala:62 src/Gtk/AppGtk.vala:135 +#: src/Console/AppConsole.vala:49 src/Gtk/AppGtk.vala:137 msgid "Syntax" msgstr "문법" -#: src/Console/AppConsole.vala:64 +#: src/Console/AppConsole.vala:51 msgid "Commands" msgstr "명령어" -#: src/Console/AppConsole.vala:66 +#: src/Console/AppConsole.vala:53 msgid "Check for kernel updates" msgstr "커널 업데이트 확인" -#: src/Console/AppConsole.vala:67 +#: src/Console/AppConsole.vala:54 msgid "Check for kernel updates and notify current user" msgstr "커널 업데이트를 확인하고 현재 사용자에게 알림" -#: src/Console/AppConsole.vala:68 +#: src/Console/AppConsole.vala:55 msgid "List all available mainline kernels" msgstr "사용 가능한 모든 메인라인 커널 보기" -#: src/Console/AppConsole.vala:69 +#: src/Console/AppConsole.vala:56 msgid "List installed kernels" msgstr "설치된 커널 보기" -#: src/Console/AppConsole.vala:70 +#: src/Console/AppConsole.vala:57 msgid "Install latest mainline kernel" msgstr "최신 메인라인 커널 설치" -#: src/Console/AppConsole.vala:71 +#: src/Console/AppConsole.vala:58 msgid "Install latest point update for current series" msgstr "현재 사용중인 배포판을 위한 최신 포인트 업데이트 설치" -#: src/Console/AppConsole.vala:72 +#: src/Console/AppConsole.vala:59 msgid "Install specified mainline kernel" msgstr "지정한 메인라인 커널 설치" -#: src/Console/AppConsole.vala:73 +#: src/Console/AppConsole.vala:60 msgid "Uninstall specified kernel" msgstr "지정한 커널 삭제" -#: src/Console/AppConsole.vala:74 -msgid "Uninstall kernels older than the running kernel" +#: src/Console/AppConsole.vala:61 +#, fuzzy +msgid "Uninstall kernels older than the latest installed" msgstr "현재 사용중인 커널보다 이전 버전의 설치된 커널을 제거" -#: src/Console/AppConsole.vala:75 +#: src/Console/AppConsole.vala:62 msgid "Download specified kernels" msgstr "지정한 커널 다운로드" -#: src/Console/AppConsole.vala:76 +#: src/Console/AppConsole.vala:63 msgid "Delete cached info about available kernels" msgstr "" -#: src/Console/AppConsole.vala:78 src/Gtk/AppGtk.vala:137 +#: src/Console/AppConsole.vala:65 src/Gtk/AppGtk.vala:139 msgid "Options" msgstr "옵션" -#: src/Console/AppConsole.vala:80 +#: src/Console/AppConsole.vala:67 msgid "Include unstable and RC releases" msgstr "목록에서 unstable, RC 버전 포함" -#: src/Console/AppConsole.vala:81 +#: src/Console/AppConsole.vala:68 #, fuzzy msgid "Exclude unstable and RC releases" msgstr "목록에서 unstable, RC 버전 포함" -#: src/Console/AppConsole.vala:82 +#: src/Console/AppConsole.vala:69 msgid "Enable verbose debugging output" msgstr "디버깅을 위한 진행 과정 보이기 활성화" -#: src/Console/AppConsole.vala:83 +#: src/Console/AppConsole.vala:70 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "모든 물음에 자동으로 \"예\"라고 가정 (비 대화형 모드)" -#: src/Console/AppConsole.vala:86 +#: src/Console/AppConsole.vala:73 msgid "A version string taken from the output of --list" msgstr "--list 의 출력에서 가져온 버전 문자열" -#: src/Console/AppConsole.vala:87 -msgid "" -"One or more version strings (comma-separated) taken from the output of --list" -msgstr "--list 의 출력에서 가져온 하나 이상의 버전 문자열 (쉼표로 구분)" +#: src/Console/AppConsole.vala:74 +msgid "One or more, comma-seperated" +msgstr "" + +#: src/Console/AppConsole.vala:75 +#, fuzzy +msgid "The currently running kernel will always be ignored" +msgstr "아래 커널이 삭제됩니다:" -#: src/Console/AppConsole.vala:164 src/Gtk/AppGtk.vala:121 +#: src/Console/AppConsole.vala:153 src/Gtk/AppGtk.vala:123 msgid "Unknown option" msgstr "알 수 없는 옵션" -#: src/Console/AppConsole.vala:165 src/Console/AppConsole.vala:253 -#: src/Console/AppConsole.vala:281 +#: src/Console/AppConsole.vala:154 src/Console/AppConsole.vala:244 +#: src/Console/AppConsole.vala:272 msgid "Run" msgstr "실행" -#: src/Console/AppConsole.vala:165 +#: src/Console/AppConsole.vala:154 msgid "to list all options" msgstr "모든 옵션을 나열" -#: src/Console/AppConsole.vala:221 src/Console/AppConsole.vala:261 +#: src/Console/AppConsole.vala:212 src/Console/AppConsole.vala:252 msgid "No kernels specified" msgstr "지정한 커널이 없습니다" -#: src/Console/AppConsole.vala:227 +#: src/Console/AppConsole.vala:218 msgid "Multiple kernels selected for installation. Select only one." msgstr "설치할 커널이 여러개 선택되었습니다. 하나의 커널만 선택하세요." -#: src/Console/AppConsole.vala:250 +#: src/Console/AppConsole.vala:241 msgid "Could not find requested version" msgstr "요청한 버전을 찾을 수 없습니다" -#: src/Console/AppConsole.vala:253 +#: src/Console/AppConsole.vala:244 msgid "and use a version string listed in first column" msgstr "첫 번째 열에 나열된 버전 문자열을 사용" -#: src/Console/AppConsole.vala:280 +#: src/Console/AppConsole.vala:271 msgid "Command not specified" msgstr "지정한 명령어가 없습니다" -#: src/Console/AppConsole.vala:281 +#: src/Console/AppConsole.vala:272 msgid "to list all commands" msgstr "모든 명령어 나열" -#: src/Console/AppConsole.vala:335 src/Gtk/SettingsDialog.vala:166 +#: src/Console/AppConsole.vala:326 src/Gtk/SettingsDialog.vala:166 msgid "Show" msgstr "보이기" -#: src/Console/AppConsole.vala:340 src/Console/AppConsole.vala:352 +#: src/Console/AppConsole.vala:331 src/Console/AppConsole.vala:343 #, c-format msgid "Kernel %s Available" msgstr "커널 %s 사용 가능" -#: src/Console/AppConsole.vala:342 src/Console/AppConsole.vala:354 -#: src/Gtk/MainWindow.vala:269 +#: src/Console/AppConsole.vala:333 src/Console/AppConsole.vala:345 +#: src/Gtk/MainWindow.vala:267 msgid "Install" msgstr "설치" @@ -287,7 +295,7 @@ msgstr "제작자" msgid "Back" msgstr "뒤로" -#: src/Gtk/AboutWindow.vala:287 src/Gtk/TerminalWindow.vala:154 +#: src/Gtk/AboutWindow.vala:287 src/Gtk/TerminalWindow.vala:163 msgid "Close" msgstr "닫기" @@ -315,85 +323,85 @@ msgstr "문서작성" msgid "Third Party Inclusions" msgstr "서드파티 포함" -#: src/Gtk/AppGtk.vala:135 +#: src/Gtk/AppGtk.vala:137 #, fuzzy msgid "options" msgstr "옵션" -#: src/Gtk/AppGtk.vala:139 +#: src/Gtk/AppGtk.vala:141 msgid "Print debug information" msgstr "디버그 정보 출력" -#: src/Gtk/AppGtk.vala:140 +#: src/Gtk/AppGtk.vala:142 msgid "Show all options" msgstr "모든 옵션 보기" -#: src/Gtk/MainWindow.vala:115 +#: src/Gtk/MainWindow.vala:113 msgid "Kernel" msgstr "커널" -#: src/Gtk/MainWindow.vala:145 +#: src/Gtk/MainWindow.vala:143 msgid "Status" msgstr "상태" -#: src/Gtk/MainWindow.vala:279 +#: src/Gtk/MainWindow.vala:277 msgid "Uninstall" msgstr "삭제" -#: src/Gtk/MainWindow.vala:289 +#: src/Gtk/MainWindow.vala:287 msgid "Changes" msgstr "변경사항" -#: src/Gtk/MainWindow.vala:311 +#: src/Gtk/MainWindow.vala:309 msgid "Uninstall Old" msgstr "오래된 커널 제거" -#: src/Gtk/MainWindow.vala:312 +#: src/Gtk/MainWindow.vala:310 msgid "Uninstall kernels older than running kernel" msgstr "현재 사용 중인 커널보다 이전 버전의 커널을 제거" -#: src/Gtk/MainWindow.vala:317 +#: src/Gtk/MainWindow.vala:315 msgid "Reload" msgstr "" -#: src/Gtk/MainWindow.vala:322 src/Gtk/SettingsDialog.vala:50 +#: src/Gtk/MainWindow.vala:320 src/Gtk/SettingsDialog.vala:50 msgid "Settings" msgstr "설정" -#: src/Gtk/MainWindow.vala:327 +#: src/Gtk/MainWindow.vala:325 msgid "About" msgstr "정보" -#: src/Gtk/MainWindow.vala:332 +#: src/Gtk/MainWindow.vala:330 msgid "Exit" msgstr "" -#: src/Gtk/MainWindow.vala:400 +#: src/Gtk/MainWindow.vala:398 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "우분투 기반 배포판의 커널 업그레이드 도구" -#: src/Gtk/MainWindow.vala:401 +#: src/Gtk/MainWindow.vala:399 msgid "Forked" msgstr "" -#: src/Gtk/MainWindow.vala:401 +#: src/Gtk/MainWindow.vala:399 msgid "Original" msgstr "" -#: src/Gtk/MainWindow.vala:439 +#: src/Gtk/MainWindow.vala:437 msgid "Updating kernels" msgstr "" -#: src/Gtk/MainWindow.vala:510 +#: src/Gtk/MainWindow.vala:508 msgid "available" msgstr "사용가능" -#: src/Gtk/MainWindow.vala:543 src/Gtk/MainWindow.vala:576 -#: src/Gtk/MainWindow.vala:603 +#: src/Gtk/MainWindow.vala:551 src/Gtk/MainWindow.vala:591 +#: src/Gtk/MainWindow.vala:625 msgid "DONE" msgstr "" -#: src/Gtk/ProgressWindow.vala:127 src/Gtk/TerminalWindow.vala:144 +#: src/Gtk/ProgressWindow.vala:128 src/Gtk/TerminalWindow.vala:153 msgid "Cancel" msgstr "취소" @@ -410,7 +418,8 @@ msgid "Notify if a point release is available" msgstr "포인트 릴리즈가 있으면 알림" #: src/Gtk/SettingsDialog.vala:87 -msgid "(Allowing intervals in seconds for --debug)" +#, fuzzy +msgid "Seconds interval enabled for debugging" msgstr "(--debug 를 위한 몇초간 지연 허용)" #: src/Gtk/SettingsDialog.vala:110 @@ -470,11 +479,3 @@ msgstr "" #: src/Gtk/l.gtk.vala:44 msgid "Missing Icon" msgstr "아이콘을 찾을 수 없습니다" - -#: src/lib/TeeJee.Logging.vala:43 -msgid "E" -msgstr "" - -#: src/lib/TeeJee.Logging.vala:50 -msgid "D" -msgstr "" diff --git a/po/messages.pot b/po/messages.pot index e81a90b4..73fc9902 100644 --- a/po/messages.pot +++ b/po/messages.pot @@ -6,9 +6,9 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: mainline 1.1.5\n" +"Project-Id-Version: mainline 1.1.6\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-12 05:17-0400\n" +"POT-Creation-Date: 2023-03-14 06:31-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,15 +17,15 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" -#: src/Common/LinuxKernel.vala:87 +#: src/Common/LinuxKernel.vala:88 msgid "Distribution" msgstr "" -#: src/Common/LinuxKernel.vala:102 +#: src/Common/LinuxKernel.vala:103 msgid "Architecture" msgstr "" -#: src/Common/LinuxKernel.vala:282 +#: src/Common/LinuxKernel.vala:278 msgid "Fetching individual kernel indexes" msgstr "" @@ -33,247 +33,250 @@ msgstr "" msgid "Updating from" msgstr "" -#: src/Common/LinuxKernel.vala:738 +#: src/Common/LinuxKernel.vala:344 src/Common/LinuxKernel.vala:897 +msgid "OK" +msgstr "" + +#: src/Common/LinuxKernel.vala:347 src/Common/LinuxKernel.vala:900 +msgid "FAILED" +msgstr "" + +#: src/Common/LinuxKernel.vala:761 msgid "Packages Available" msgstr "" -#: src/Common/LinuxKernel.vala:743 +#: src/Common/LinuxKernel.vala:766 msgid "Packages Installed" msgstr "" -#: src/Common/LinuxKernel.vala:756 src/lib/TeeJee.FileSystem.vala:121 +#: src/Common/LinuxKernel.vala:779 src/lib/TeeJee.FileSystem.vala:121 msgid "File not found" msgstr "" -#: src/Common/LinuxKernel.vala:821 +#: src/Common/LinuxKernel.vala:843 msgid "Available Kernels" msgstr "" -#: src/Common/LinuxKernel.vala:828 src/Gtk/MainWindow.vala:158 +#: src/Common/LinuxKernel.vala:850 src/Gtk/MainWindow.vala:156 msgid "Installed" msgstr "" -#: src/Common/LinuxKernel.vala:828 src/Gtk/MainWindow.vala:158 -#: src/Gtk/MainWindow.vala:501 src/Gtk/MainWindow.vala:514 +#: src/Common/LinuxKernel.vala:850 src/Gtk/MainWindow.vala:156 +#: src/Gtk/MainWindow.vala:499 src/Gtk/MainWindow.vala:512 msgid "Running" msgstr "" -#: src/Common/LinuxKernel.vala:863 -msgid "Downloading" -msgstr "" - -#: src/Common/LinuxKernel.vala:882 -msgid "OK" -msgstr "" - #: src/Common/LinuxKernel.vala:885 -msgid "ERROR" +msgid "Downloading" msgstr "" -#: src/Common/LinuxKernel.vala:899 -msgid "This kernel is already installed." +#: src/Common/LinuxKernel.vala:913 +msgid "is already installed." msgstr "" -#: src/Common/LinuxKernel.vala:929 +#: src/Common/LinuxKernel.vala:943 msgid "Uninstalling selected kernels" msgstr "" -#: src/Common/LinuxKernel.vala:935 +#: src/Common/LinuxKernel.vala:949 msgid "requested" msgstr "" -#: src/Common/LinuxKernel.vala:938 -msgid "skipping the currently booted kernel" +#: src/Common/LinuxKernel.vala:952 +msgid "not uninstalling the currently running kernel" msgstr "" -#: src/Common/LinuxKernel.vala:954 +#: src/Common/LinuxKernel.vala:968 msgid "found" msgstr "" -#: src/Common/LinuxKernel.vala:957 +#: src/Common/LinuxKernel.vala:971 msgid "No packages to un-install!" msgstr "" -#: src/Common/LinuxKernel.vala:996 +#: src/Common/LinuxKernel.vala:1019 msgid "Could not find running kernel in list" msgstr "" -#: src/Common/LinuxKernel.vala:1002 +#: src/Common/LinuxKernel.vala:1024 msgid "Could not find any kernels to uninstall" msgstr "" -#: src/Common/LinuxKernel.vala:1011 -msgid "The following kernels will be uninstalled:" +#: src/Common/LinuxKernel.vala:1032 +msgid "The following kernels will be uninstalled" msgstr "" -#: src/Common/LinuxKernel.vala:1015 +#: src/Common/LinuxKernel.vala:1036 msgid "Continue ?" msgstr "" -#: src/Common/LinuxKernel.vala:1038 src/Console/AppConsole.vala:295 +#: src/Common/LinuxKernel.vala:1058 src/Console/AppConsole.vala:286 msgid "Latest update" msgstr "" -#: src/Common/LinuxKernel.vala:1049 src/Console/AppConsole.vala:302 +#: src/Common/LinuxKernel.vala:1069 src/Console/AppConsole.vala:293 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:1057 src/Console/AppConsole.vala:307 -#: src/Console/AppConsole.vala:362 +#: src/Common/LinuxKernel.vala:1077 src/Console/AppConsole.vala:298 +#: src/Console/AppConsole.vala:353 msgid "No updates found" msgstr "" -#: src/Common/LinuxKernel.vala:1066 +#: src/Common/LinuxKernel.vala:1086 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "" -#: src/Common/Main.vala:240 +#: src/Common/Main.vala:271 msgid "Called from" msgstr "" -#: src/Common/Main.vala:274 +#: src/Common/Main.vala:307 msgid "Notifications are disabled" msgstr "" -#: src/Common/Main.vala:312 src/Gtk/MainWindow.vala:612 -msgid "Can not reach" +#: src/Common/Main.vala:352 src/Gtk/MainWindow.vala:634 +msgid "Can not reach site" msgstr "" -#: src/Common/Package.vala:57 +#: src/Common/Package.vala:58 #, c-format msgid "File not found: %s" msgstr "" -#: src/Console/AppConsole.vala:62 src/Gtk/AppGtk.vala:135 +#: src/Console/AppConsole.vala:49 src/Gtk/AppGtk.vala:137 msgid "Syntax" msgstr "" -#: src/Console/AppConsole.vala:64 +#: src/Console/AppConsole.vala:51 msgid "Commands" msgstr "" -#: src/Console/AppConsole.vala:66 +#: src/Console/AppConsole.vala:53 msgid "Check for kernel updates" msgstr "" -#: src/Console/AppConsole.vala:67 +#: src/Console/AppConsole.vala:54 msgid "Check for kernel updates and notify current user" msgstr "" -#: src/Console/AppConsole.vala:68 +#: src/Console/AppConsole.vala:55 msgid "List all available mainline kernels" msgstr "" -#: src/Console/AppConsole.vala:69 +#: src/Console/AppConsole.vala:56 msgid "List installed kernels" msgstr "" -#: src/Console/AppConsole.vala:70 +#: src/Console/AppConsole.vala:57 msgid "Install latest mainline kernel" msgstr "" -#: src/Console/AppConsole.vala:71 +#: src/Console/AppConsole.vala:58 msgid "Install latest point update for current series" msgstr "" -#: src/Console/AppConsole.vala:72 +#: src/Console/AppConsole.vala:59 msgid "Install specified mainline kernel" msgstr "" -#: src/Console/AppConsole.vala:73 +#: src/Console/AppConsole.vala:60 msgid "Uninstall specified kernel" msgstr "" -#: src/Console/AppConsole.vala:74 -msgid "Uninstall kernels older than the running kernel" +#: src/Console/AppConsole.vala:61 +msgid "Uninstall kernels older than the latest installed" msgstr "" -#: src/Console/AppConsole.vala:75 +#: src/Console/AppConsole.vala:62 msgid "Download specified kernels" msgstr "" -#: src/Console/AppConsole.vala:76 +#: src/Console/AppConsole.vala:63 msgid "Delete cached info about available kernels" msgstr "" -#: src/Console/AppConsole.vala:78 src/Gtk/AppGtk.vala:137 +#: src/Console/AppConsole.vala:65 src/Gtk/AppGtk.vala:139 msgid "Options" msgstr "" -#: src/Console/AppConsole.vala:80 +#: src/Console/AppConsole.vala:67 msgid "Include unstable and RC releases" msgstr "" -#: src/Console/AppConsole.vala:81 +#: src/Console/AppConsole.vala:68 msgid "Exclude unstable and RC releases" msgstr "" -#: src/Console/AppConsole.vala:82 +#: src/Console/AppConsole.vala:69 msgid "Enable verbose debugging output" msgstr "" -#: src/Console/AppConsole.vala:83 +#: src/Console/AppConsole.vala:70 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "" -#: src/Console/AppConsole.vala:86 +#: src/Console/AppConsole.vala:73 msgid "A version string taken from the output of --list" msgstr "" -#: src/Console/AppConsole.vala:87 -msgid "" -"One or more version strings (comma-separated) taken from the output of --list" +#: src/Console/AppConsole.vala:74 +msgid "One or more, comma-seperated" +msgstr "" + +#: src/Console/AppConsole.vala:75 +msgid "The currently running kernel will always be ignored" msgstr "" -#: src/Console/AppConsole.vala:164 src/Gtk/AppGtk.vala:121 +#: src/Console/AppConsole.vala:153 src/Gtk/AppGtk.vala:123 msgid "Unknown option" msgstr "" -#: src/Console/AppConsole.vala:165 src/Console/AppConsole.vala:253 -#: src/Console/AppConsole.vala:281 +#: src/Console/AppConsole.vala:154 src/Console/AppConsole.vala:244 +#: src/Console/AppConsole.vala:272 msgid "Run" msgstr "" -#: src/Console/AppConsole.vala:165 +#: src/Console/AppConsole.vala:154 msgid "to list all options" msgstr "" -#: src/Console/AppConsole.vala:221 src/Console/AppConsole.vala:261 +#: src/Console/AppConsole.vala:212 src/Console/AppConsole.vala:252 msgid "No kernels specified" msgstr "" -#: src/Console/AppConsole.vala:227 +#: src/Console/AppConsole.vala:218 msgid "Multiple kernels selected for installation. Select only one." msgstr "" -#: src/Console/AppConsole.vala:250 +#: src/Console/AppConsole.vala:241 msgid "Could not find requested version" msgstr "" -#: src/Console/AppConsole.vala:253 +#: src/Console/AppConsole.vala:244 msgid "and use a version string listed in first column" msgstr "" -#: src/Console/AppConsole.vala:280 +#: src/Console/AppConsole.vala:271 msgid "Command not specified" msgstr "" -#: src/Console/AppConsole.vala:281 +#: src/Console/AppConsole.vala:272 msgid "to list all commands" msgstr "" -#: src/Console/AppConsole.vala:335 src/Gtk/SettingsDialog.vala:166 +#: src/Console/AppConsole.vala:326 src/Gtk/SettingsDialog.vala:166 msgid "Show" msgstr "" -#: src/Console/AppConsole.vala:340 src/Console/AppConsole.vala:352 +#: src/Console/AppConsole.vala:331 src/Console/AppConsole.vala:343 #, c-format msgid "Kernel %s Available" msgstr "" -#: src/Console/AppConsole.vala:342 src/Console/AppConsole.vala:354 -#: src/Gtk/MainWindow.vala:269 +#: src/Console/AppConsole.vala:333 src/Console/AppConsole.vala:345 +#: src/Gtk/MainWindow.vala:267 msgid "Install" msgstr "" @@ -285,7 +288,7 @@ msgstr "" msgid "Back" msgstr "" -#: src/Gtk/AboutWindow.vala:287 src/Gtk/TerminalWindow.vala:154 +#: src/Gtk/AboutWindow.vala:287 src/Gtk/TerminalWindow.vala:163 msgid "Close" msgstr "" @@ -313,84 +316,84 @@ msgstr "" msgid "Third Party Inclusions" msgstr "" -#: src/Gtk/AppGtk.vala:135 +#: src/Gtk/AppGtk.vala:137 msgid "options" msgstr "" -#: src/Gtk/AppGtk.vala:139 +#: src/Gtk/AppGtk.vala:141 msgid "Print debug information" msgstr "" -#: src/Gtk/AppGtk.vala:140 +#: src/Gtk/AppGtk.vala:142 msgid "Show all options" msgstr "" -#: src/Gtk/MainWindow.vala:115 +#: src/Gtk/MainWindow.vala:113 msgid "Kernel" msgstr "" -#: src/Gtk/MainWindow.vala:145 +#: src/Gtk/MainWindow.vala:143 msgid "Status" msgstr "" -#: src/Gtk/MainWindow.vala:279 +#: src/Gtk/MainWindow.vala:277 msgid "Uninstall" msgstr "" -#: src/Gtk/MainWindow.vala:289 +#: src/Gtk/MainWindow.vala:287 msgid "Changes" msgstr "" -#: src/Gtk/MainWindow.vala:311 +#: src/Gtk/MainWindow.vala:309 msgid "Uninstall Old" msgstr "" -#: src/Gtk/MainWindow.vala:312 +#: src/Gtk/MainWindow.vala:310 msgid "Uninstall kernels older than running kernel" msgstr "" -#: src/Gtk/MainWindow.vala:317 +#: src/Gtk/MainWindow.vala:315 msgid "Reload" msgstr "" -#: src/Gtk/MainWindow.vala:322 src/Gtk/SettingsDialog.vala:50 +#: src/Gtk/MainWindow.vala:320 src/Gtk/SettingsDialog.vala:50 msgid "Settings" msgstr "" -#: src/Gtk/MainWindow.vala:327 +#: src/Gtk/MainWindow.vala:325 msgid "About" msgstr "" -#: src/Gtk/MainWindow.vala:332 +#: src/Gtk/MainWindow.vala:330 msgid "Exit" msgstr "" -#: src/Gtk/MainWindow.vala:400 +#: src/Gtk/MainWindow.vala:398 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "" -#: src/Gtk/MainWindow.vala:401 +#: src/Gtk/MainWindow.vala:399 msgid "Forked" msgstr "" -#: src/Gtk/MainWindow.vala:401 +#: src/Gtk/MainWindow.vala:399 msgid "Original" msgstr "" -#: src/Gtk/MainWindow.vala:439 +#: src/Gtk/MainWindow.vala:437 msgid "Updating kernels" msgstr "" -#: src/Gtk/MainWindow.vala:510 +#: src/Gtk/MainWindow.vala:508 msgid "available" msgstr "" -#: src/Gtk/MainWindow.vala:543 src/Gtk/MainWindow.vala:576 -#: src/Gtk/MainWindow.vala:603 +#: src/Gtk/MainWindow.vala:551 src/Gtk/MainWindow.vala:591 +#: src/Gtk/MainWindow.vala:625 msgid "DONE" msgstr "" -#: src/Gtk/ProgressWindow.vala:127 src/Gtk/TerminalWindow.vala:144 +#: src/Gtk/ProgressWindow.vala:128 src/Gtk/TerminalWindow.vala:153 msgid "Cancel" msgstr "" @@ -407,7 +410,7 @@ msgid "Notify if a point release is available" msgstr "" #: src/Gtk/SettingsDialog.vala:87 -msgid "(Allowing intervals in seconds for --debug)" +msgid "Seconds interval enabled for debugging" msgstr "" #: src/Gtk/SettingsDialog.vala:110 @@ -465,11 +468,3 @@ msgstr "" #: src/Gtk/l.gtk.vala:44 msgid "Missing Icon" msgstr "" - -#: src/lib/TeeJee.Logging.vala:43 -msgid "E" -msgstr "" - -#: src/lib/TeeJee.Logging.vala:50 -msgid "D" -msgstr "" diff --git a/po/nl.po b/po/nl.po index 6b1e3d2d..7802dafb 100644 --- a/po/nl.po +++ b/po/nl.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-12 04:45-0400\n" +"POT-Creation-Date: 2023-03-14 06:30-0400\n" "PO-Revision-Date: 2020-08-23 13:55+0200\n" "Last-Translator: Heimen Stoffels \n" "Language-Team: Dutch (Netherlands)\n" @@ -13,15 +13,15 @@ msgstr "" "X-Generator: Poedit 2.4.1\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: src/Common/LinuxKernel.vala:87 +#: src/Common/LinuxKernel.vala:88 msgid "Distribution" msgstr "Distributie" -#: src/Common/LinuxKernel.vala:102 +#: src/Common/LinuxKernel.vala:103 msgid "Architecture" msgstr "Architectuur" -#: src/Common/LinuxKernel.vala:282 +#: src/Common/LinuxKernel.vala:278 #, fuzzy msgid "Fetching individual kernel indexes" msgstr "Bezig met ophalen van index..." @@ -30,260 +30,264 @@ msgstr "Bezig met ophalen van index..." msgid "Updating from" msgstr "" -#: src/Common/LinuxKernel.vala:738 +#: src/Common/LinuxKernel.vala:344 src/Common/LinuxKernel.vala:897 +msgid "OK" +msgstr "Oké" + +#: src/Common/LinuxKernel.vala:347 src/Common/LinuxKernel.vala:900 +msgid "FAILED" +msgstr "" + +#: src/Common/LinuxKernel.vala:761 msgid "Packages Available" msgstr "Beschikbare pakketten" -#: src/Common/LinuxKernel.vala:743 +#: src/Common/LinuxKernel.vala:766 msgid "Packages Installed" msgstr "Geïnstalleerde pakketten" -#: src/Common/LinuxKernel.vala:756 src/lib/TeeJee.FileSystem.vala:121 +#: src/Common/LinuxKernel.vala:779 src/lib/TeeJee.FileSystem.vala:121 msgid "File not found" msgstr "Het bestand is niet gevonden" -#: src/Common/LinuxKernel.vala:821 +#: src/Common/LinuxKernel.vala:843 msgid "Available Kernels" msgstr "Beschikbare kernels" -#: src/Common/LinuxKernel.vala:828 src/Gtk/MainWindow.vala:158 +#: src/Common/LinuxKernel.vala:850 src/Gtk/MainWindow.vala:156 msgid "Installed" msgstr "Geïnstalleerd" -#: src/Common/LinuxKernel.vala:828 src/Gtk/MainWindow.vala:158 -#: src/Gtk/MainWindow.vala:501 src/Gtk/MainWindow.vala:514 +#: src/Common/LinuxKernel.vala:850 src/Gtk/MainWindow.vala:156 +#: src/Gtk/MainWindow.vala:499 src/Gtk/MainWindow.vala:512 msgid "Running" msgstr "In gebruik" -#: src/Common/LinuxKernel.vala:863 +#: src/Common/LinuxKernel.vala:885 msgid "Downloading" msgstr "Bezig met downloaden" -#: src/Common/LinuxKernel.vala:882 -msgid "OK" -msgstr "Oké" - -#: src/Common/LinuxKernel.vala:885 -msgid "ERROR" -msgstr "FOUT" - -#: src/Common/LinuxKernel.vala:899 -msgid "This kernel is already installed." +#: src/Common/LinuxKernel.vala:913 +#, fuzzy +msgid "is already installed." msgstr "Deze kernel is al geïnstalleerd." -#: src/Common/LinuxKernel.vala:929 +#: src/Common/LinuxKernel.vala:943 #, fuzzy msgid "Uninstalling selected kernels" msgstr "Opgegeven kernels deïnstalleren" -#: src/Common/LinuxKernel.vala:935 +#: src/Common/LinuxKernel.vala:949 msgid "requested" msgstr "" -#: src/Common/LinuxKernel.vala:938 -msgid "skipping the currently booted kernel" -msgstr "" +#: src/Common/LinuxKernel.vala:952 +#, fuzzy +msgid "not uninstalling the currently running kernel" +msgstr "Opgegeven kernels deïnstalleren" -#: src/Common/LinuxKernel.vala:954 +#: src/Common/LinuxKernel.vala:968 msgid "found" msgstr "" -#: src/Common/LinuxKernel.vala:957 +#: src/Common/LinuxKernel.vala:971 #, fuzzy msgid "No packages to un-install!" msgstr "Geïnstalleerde pakketten" -#: src/Common/LinuxKernel.vala:996 +#: src/Common/LinuxKernel.vala:1019 #, fuzzy msgid "Could not find running kernel in list" msgstr "De in gebruik zijnde kernel staat niet op de lijst!" -#: src/Common/LinuxKernel.vala:1002 +#: src/Common/LinuxKernel.vala:1024 #, fuzzy msgid "Could not find any kernels to uninstall" msgstr "Er zijn geen te verwijderen kernels" -#: src/Common/LinuxKernel.vala:1011 +#: src/Common/LinuxKernel.vala:1032 #, fuzzy -msgid "The following kernels will be uninstalled:" +msgid "The following kernels will be uninstalled" msgstr "De volgende kernels worden verwijderd:" -#: src/Common/LinuxKernel.vala:1015 +#: src/Common/LinuxKernel.vala:1036 msgid "Continue ?" msgstr "Wil je doorgaan?" -#: src/Common/LinuxKernel.vala:1038 src/Console/AppConsole.vala:295 +#: src/Common/LinuxKernel.vala:1058 src/Console/AppConsole.vala:286 msgid "Latest update" msgstr "Recentste update" -#: src/Common/LinuxKernel.vala:1049 src/Console/AppConsole.vala:302 +#: src/Common/LinuxKernel.vala:1069 src/Console/AppConsole.vala:293 msgid "Latest point update" msgstr "Recentste puntupdate" -#: src/Common/LinuxKernel.vala:1057 src/Console/AppConsole.vala:307 -#: src/Console/AppConsole.vala:362 +#: src/Common/LinuxKernel.vala:1077 src/Console/AppConsole.vala:298 +#: src/Console/AppConsole.vala:353 msgid "No updates found" msgstr "Geen updates gevonden" -#: src/Common/LinuxKernel.vala:1066 +#: src/Common/LinuxKernel.vala:1086 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Wil je versie %s installeren? (j/n): " -#: src/Common/Main.vala:240 +#: src/Common/Main.vala:271 msgid "Called from" msgstr "Aangeroepen door" -#: src/Common/Main.vala:274 +#: src/Common/Main.vala:307 msgid "Notifications are disabled" msgstr "Meldingen zijn uitgeschakeld" -#: src/Common/Main.vala:312 src/Gtk/MainWindow.vala:612 +#: src/Common/Main.vala:352 src/Gtk/MainWindow.vala:634 #, fuzzy -msgid "Can not reach" +msgid "Can not reach site" msgstr "Het bestand kan niet worden uitgelezen" -#: src/Common/Package.vala:57 +#: src/Common/Package.vala:58 #, fuzzy, c-format msgid "File not found: %s" msgstr "Het bestand is niet gevonden" -#: src/Console/AppConsole.vala:62 src/Gtk/AppGtk.vala:135 +#: src/Console/AppConsole.vala:49 src/Gtk/AppGtk.vala:137 msgid "Syntax" msgstr "Syntax" -#: src/Console/AppConsole.vala:64 +#: src/Console/AppConsole.vala:51 msgid "Commands" msgstr "Opdrachten" -#: src/Console/AppConsole.vala:66 +#: src/Console/AppConsole.vala:53 msgid "Check for kernel updates" msgstr "Controleren op kernelupdates" -#: src/Console/AppConsole.vala:67 +#: src/Console/AppConsole.vala:54 msgid "Check for kernel updates and notify current user" msgstr "Controleren op kernelupdates en gebruiker op de hoogte brengen" -#: src/Console/AppConsole.vala:68 +#: src/Console/AppConsole.vala:55 msgid "List all available mainline kernels" msgstr "Alle beschikbare mainline-kernels tonen" -#: src/Console/AppConsole.vala:69 +#: src/Console/AppConsole.vala:56 msgid "List installed kernels" msgstr "Alle geïnstalleerde kernels tonen" -#: src/Console/AppConsole.vala:70 +#: src/Console/AppConsole.vala:57 msgid "Install latest mainline kernel" msgstr "Recentste mainline-kernel installeren" -#: src/Console/AppConsole.vala:71 +#: src/Console/AppConsole.vala:58 msgid "Install latest point update for current series" msgstr "Recentste puntupdate uit huidige editie installeren" -#: src/Console/AppConsole.vala:72 +#: src/Console/AppConsole.vala:59 msgid "Install specified mainline kernel" msgstr "Opgegeven mainline-kernel installeren" -#: src/Console/AppConsole.vala:73 +#: src/Console/AppConsole.vala:60 #, fuzzy msgid "Uninstall specified kernel" msgstr "Opgegeven kernels deïnstalleren" -#: src/Console/AppConsole.vala:74 +#: src/Console/AppConsole.vala:61 #, fuzzy -msgid "Uninstall kernels older than the running kernel" +msgid "Uninstall kernels older than the latest installed" msgstr "Geïnstalleerde kernels verwijderen die ouder zijn dan de huidige" -#: src/Console/AppConsole.vala:75 +#: src/Console/AppConsole.vala:62 msgid "Download specified kernels" msgstr "Opgegeven kernels downloaden" -#: src/Console/AppConsole.vala:76 +#: src/Console/AppConsole.vala:63 msgid "Delete cached info about available kernels" msgstr "" -#: src/Console/AppConsole.vala:78 src/Gtk/AppGtk.vala:137 +#: src/Console/AppConsole.vala:65 src/Gtk/AppGtk.vala:139 msgid "Options" msgstr "Opties" -#: src/Console/AppConsole.vala:80 +#: src/Console/AppConsole.vala:67 #, fuzzy msgid "Include unstable and RC releases" msgstr "Instabiele en rc-uitgaven verbergen" -#: src/Console/AppConsole.vala:81 +#: src/Console/AppConsole.vala:68 #, fuzzy msgid "Exclude unstable and RC releases" msgstr "Instabiele en rc-uitgaven verbergen" -#: src/Console/AppConsole.vala:82 +#: src/Console/AppConsole.vala:69 msgid "Enable verbose debugging output" msgstr "Foutopsporingsinformatie vastleggen" -#: src/Console/AppConsole.vala:83 +#: src/Console/AppConsole.vala:70 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "Ja op alles (in de niet-interactieve modus)" -#: src/Console/AppConsole.vala:86 +#: src/Console/AppConsole.vala:73 msgid "A version string taken from the output of --list" msgstr "Een versietekenreeks uit de uitvoer van --list" -#: src/Console/AppConsole.vala:87 -msgid "" -"One or more version strings (comma-separated) taken from the output of --list" +#: src/Console/AppConsole.vala:74 +msgid "One or more, comma-seperated" msgstr "" -"Eén of meerdere versietekenreeksen (kommagescheiden) uit de uitvoer van --" -"list" -#: src/Console/AppConsole.vala:164 src/Gtk/AppGtk.vala:121 +#: src/Console/AppConsole.vala:75 +#, fuzzy +msgid "The currently running kernel will always be ignored" +msgstr "De volgende kernels worden verwijderd:" + +#: src/Console/AppConsole.vala:153 src/Gtk/AppGtk.vala:123 msgid "Unknown option" msgstr "Onbekende optie" -#: src/Console/AppConsole.vala:165 src/Console/AppConsole.vala:253 -#: src/Console/AppConsole.vala:281 +#: src/Console/AppConsole.vala:154 src/Console/AppConsole.vala:244 +#: src/Console/AppConsole.vala:272 msgid "Run" msgstr "Uitvoeren" -#: src/Console/AppConsole.vala:165 +#: src/Console/AppConsole.vala:154 msgid "to list all options" msgstr "om alle opties te tonen" -#: src/Console/AppConsole.vala:221 src/Console/AppConsole.vala:261 +#: src/Console/AppConsole.vala:212 src/Console/AppConsole.vala:252 msgid "No kernels specified" msgstr "Geen kernels opgegeven" -#: src/Console/AppConsole.vala:227 +#: src/Console/AppConsole.vala:218 msgid "Multiple kernels selected for installation. Select only one." msgstr "" "Er zijn meerdere te installeren kernels geselecteerd. Selecteer er één." -#: src/Console/AppConsole.vala:250 +#: src/Console/AppConsole.vala:241 msgid "Could not find requested version" msgstr "De vereiste versie kan niet worden gevonden" -#: src/Console/AppConsole.vala:253 +#: src/Console/AppConsole.vala:244 msgid "and use a version string listed in first column" msgstr "en gebruik een versietekenreeks in de eerste kolom" -#: src/Console/AppConsole.vala:280 +#: src/Console/AppConsole.vala:271 msgid "Command not specified" msgstr "Geen opdracht opgegeven" -#: src/Console/AppConsole.vala:281 +#: src/Console/AppConsole.vala:272 msgid "to list all commands" msgstr "om alle opdrachten te tonen" -#: src/Console/AppConsole.vala:335 src/Gtk/SettingsDialog.vala:166 +#: src/Console/AppConsole.vala:326 src/Gtk/SettingsDialog.vala:166 msgid "Show" msgstr "Tonen" -#: src/Console/AppConsole.vala:340 src/Console/AppConsole.vala:352 +#: src/Console/AppConsole.vala:331 src/Console/AppConsole.vala:343 #, c-format msgid "Kernel %s Available" msgstr "Kernel %s is beschikbaar" -#: src/Console/AppConsole.vala:342 src/Console/AppConsole.vala:354 -#: src/Gtk/MainWindow.vala:269 +#: src/Console/AppConsole.vala:333 src/Console/AppConsole.vala:345 +#: src/Gtk/MainWindow.vala:267 msgid "Install" msgstr "Installeren" @@ -295,7 +299,7 @@ msgstr "Met dank aan" msgid "Back" msgstr "Terug" -#: src/Gtk/AboutWindow.vala:287 src/Gtk/TerminalWindow.vala:154 +#: src/Gtk/AboutWindow.vala:287 src/Gtk/TerminalWindow.vala:163 msgid "Close" msgstr "Sluiten" @@ -323,88 +327,88 @@ msgstr "Documenteerders" msgid "Third Party Inclusions" msgstr "Externe code" -#: src/Gtk/AppGtk.vala:135 +#: src/Gtk/AppGtk.vala:137 #, fuzzy msgid "options" msgstr "Opties" -#: src/Gtk/AppGtk.vala:139 +#: src/Gtk/AppGtk.vala:141 msgid "Print debug information" msgstr "Foutopsporingsinformatie tonen" -#: src/Gtk/AppGtk.vala:140 +#: src/Gtk/AppGtk.vala:142 msgid "Show all options" msgstr "Alle opties tonen" -#: src/Gtk/MainWindow.vala:115 +#: src/Gtk/MainWindow.vala:113 msgid "Kernel" msgstr "Kernel" -#: src/Gtk/MainWindow.vala:145 +#: src/Gtk/MainWindow.vala:143 msgid "Status" msgstr "Status" -#: src/Gtk/MainWindow.vala:279 +#: src/Gtk/MainWindow.vala:277 #, fuzzy msgid "Uninstall" msgstr "Installeren" -#: src/Gtk/MainWindow.vala:289 +#: src/Gtk/MainWindow.vala:287 msgid "Changes" msgstr "Wijzigingen" -#: src/Gtk/MainWindow.vala:311 +#: src/Gtk/MainWindow.vala:309 #, fuzzy msgid "Uninstall Old" msgstr "Deïnstalleren voltooid" -#: src/Gtk/MainWindow.vala:312 +#: src/Gtk/MainWindow.vala:310 #, fuzzy msgid "Uninstall kernels older than running kernel" msgstr "Geïnstalleerde kernels verwijderen die ouder zijn dan de huidige" -#: src/Gtk/MainWindow.vala:317 +#: src/Gtk/MainWindow.vala:315 msgid "Reload" msgstr "" -#: src/Gtk/MainWindow.vala:322 src/Gtk/SettingsDialog.vala:50 +#: src/Gtk/MainWindow.vala:320 src/Gtk/SettingsDialog.vala:50 msgid "Settings" msgstr "Instellingen" -#: src/Gtk/MainWindow.vala:327 +#: src/Gtk/MainWindow.vala:325 msgid "About" msgstr "Over" -#: src/Gtk/MainWindow.vala:332 +#: src/Gtk/MainWindow.vala:330 msgid "Exit" msgstr "" -#: src/Gtk/MainWindow.vala:400 +#: src/Gtk/MainWindow.vala:398 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Een kernelupgradehulpmiddel voor op Ubuntu gebaseerde distributies" -#: src/Gtk/MainWindow.vala:401 +#: src/Gtk/MainWindow.vala:399 msgid "Forked" msgstr "Geforkt" -#: src/Gtk/MainWindow.vala:401 +#: src/Gtk/MainWindow.vala:399 msgid "Original" msgstr "Origineel" -#: src/Gtk/MainWindow.vala:439 +#: src/Gtk/MainWindow.vala:437 msgid "Updating kernels" msgstr "" -#: src/Gtk/MainWindow.vala:510 +#: src/Gtk/MainWindow.vala:508 msgid "available" msgstr "beschikbaar" -#: src/Gtk/MainWindow.vala:543 src/Gtk/MainWindow.vala:576 -#: src/Gtk/MainWindow.vala:603 +#: src/Gtk/MainWindow.vala:551 src/Gtk/MainWindow.vala:591 +#: src/Gtk/MainWindow.vala:625 msgid "DONE" msgstr "" -#: src/Gtk/ProgressWindow.vala:127 src/Gtk/TerminalWindow.vala:144 +#: src/Gtk/ProgressWindow.vala:128 src/Gtk/TerminalWindow.vala:153 msgid "Cancel" msgstr "Annuleren" @@ -421,7 +425,8 @@ msgid "Notify if a point release is available" msgstr "Melding tonen als er een puntupdate beschikbaar is" #: src/Gtk/SettingsDialog.vala:87 -msgid "(Allowing intervals in seconds for --debug)" +#, fuzzy +msgid "Seconds interval enabled for debugging" msgstr "(staat tussenpozen in seconden toe voor --debug)" #: src/Gtk/SettingsDialog.vala:110 @@ -481,11 +486,3 @@ msgstr "" #: src/Gtk/l.gtk.vala:44 msgid "Missing Icon" msgstr "Ontbrekend pictogram" - -#: src/lib/TeeJee.Logging.vala:43 -msgid "E" -msgstr "E" - -#: src/lib/TeeJee.Logging.vala:50 -msgid "D" -msgstr "D" diff --git a/po/pl.po b/po/pl.po index 9c9755b6..116844b2 100644 --- a/po/pl.po +++ b/po/pl.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-12 04:45-0400\n" +"POT-Creation-Date: 2023-03-14 06:30-0400\n" "PO-Revision-Date: 2023-03-11 12:47+0100\n" "Last-Translator: Matthaiks\n" "Language-Team: Polish\n" @@ -12,15 +12,15 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Poedit 3.2\n" -#: src/Common/LinuxKernel.vala:87 +#: src/Common/LinuxKernel.vala:88 msgid "Distribution" msgstr "Dystrybucja" -#: src/Common/LinuxKernel.vala:102 +#: src/Common/LinuxKernel.vala:103 msgid "Architecture" msgstr "Architektura" -#: src/Common/LinuxKernel.vala:282 +#: src/Common/LinuxKernel.vala:278 msgid "Fetching individual kernel indexes" msgstr "Pobieranie indywidualnych indeksów jąder" @@ -28,249 +28,256 @@ msgstr "Pobieranie indywidualnych indeksów jąder" msgid "Updating from" msgstr "Aktualizowanie z" -#: src/Common/LinuxKernel.vala:738 +#: src/Common/LinuxKernel.vala:344 src/Common/LinuxKernel.vala:897 +msgid "OK" +msgstr "OK" + +#: src/Common/LinuxKernel.vala:347 src/Common/LinuxKernel.vala:900 +msgid "FAILED" +msgstr "" + +#: src/Common/LinuxKernel.vala:761 msgid "Packages Available" msgstr "Dostępne pakiety" -#: src/Common/LinuxKernel.vala:743 +#: src/Common/LinuxKernel.vala:766 msgid "Packages Installed" msgstr "Pakiety zainstalowane" -#: src/Common/LinuxKernel.vala:756 src/lib/TeeJee.FileSystem.vala:121 +#: src/Common/LinuxKernel.vala:779 src/lib/TeeJee.FileSystem.vala:121 msgid "File not found" msgstr "Nie odnaleziono pliku" -#: src/Common/LinuxKernel.vala:821 +#: src/Common/LinuxKernel.vala:843 msgid "Available Kernels" msgstr "Dostępne jądra" -#: src/Common/LinuxKernel.vala:828 src/Gtk/MainWindow.vala:158 +#: src/Common/LinuxKernel.vala:850 src/Gtk/MainWindow.vala:156 msgid "Installed" msgstr "Zainstalowane" -#: src/Common/LinuxKernel.vala:828 src/Gtk/MainWindow.vala:158 -#: src/Gtk/MainWindow.vala:501 src/Gtk/MainWindow.vala:514 +#: src/Common/LinuxKernel.vala:850 src/Gtk/MainWindow.vala:156 +#: src/Gtk/MainWindow.vala:499 src/Gtk/MainWindow.vala:512 msgid "Running" msgstr "Uruchomione" -#: src/Common/LinuxKernel.vala:863 +#: src/Common/LinuxKernel.vala:885 msgid "Downloading" msgstr "Pobieranie" -#: src/Common/LinuxKernel.vala:882 -msgid "OK" -msgstr "OK" - -#: src/Common/LinuxKernel.vala:885 -msgid "ERROR" -msgstr "BŁĄD" - -#: src/Common/LinuxKernel.vala:899 -msgid "This kernel is already installed." +#: src/Common/LinuxKernel.vala:913 +#, fuzzy +msgid "is already installed." msgstr "To jądro jest już zainstalowane." -#: src/Common/LinuxKernel.vala:929 +#: src/Common/LinuxKernel.vala:943 msgid "Uninstalling selected kernels" msgstr "Odinstalowanie wybranych jąder" -#: src/Common/LinuxKernel.vala:935 +#: src/Common/LinuxKernel.vala:949 msgid "requested" msgstr "zażądane" -#: src/Common/LinuxKernel.vala:938 -msgid "skipping the currently booted kernel" +#: src/Common/LinuxKernel.vala:952 +#, fuzzy +msgid "not uninstalling the currently running kernel" msgstr "pominięcie aktualnie uruchomionego jądra" -#: src/Common/LinuxKernel.vala:954 +#: src/Common/LinuxKernel.vala:968 msgid "found" msgstr "znalezione" -#: src/Common/LinuxKernel.vala:957 +#: src/Common/LinuxKernel.vala:971 msgid "No packages to un-install!" msgstr "Brak pakietów do odinstalowania!" -#: src/Common/LinuxKernel.vala:996 +#: src/Common/LinuxKernel.vala:1019 msgid "Could not find running kernel in list" msgstr "Nie można znaleźć uruchomionego jądra na liście" -#: src/Common/LinuxKernel.vala:1002 +#: src/Common/LinuxKernel.vala:1024 msgid "Could not find any kernels to uninstall" msgstr "Nie można znaleźć żadnych jąder do odinstalowania" -#: src/Common/LinuxKernel.vala:1011 -msgid "The following kernels will be uninstalled:" +#: src/Common/LinuxKernel.vala:1032 +#, fuzzy +msgid "The following kernels will be uninstalled" msgstr "Następujące jądra zostaną odinstalowane:" -#: src/Common/LinuxKernel.vala:1015 +#: src/Common/LinuxKernel.vala:1036 msgid "Continue ?" msgstr "Kontynuować?" -#: src/Common/LinuxKernel.vala:1038 src/Console/AppConsole.vala:295 +#: src/Common/LinuxKernel.vala:1058 src/Console/AppConsole.vala:286 msgid "Latest update" msgstr "Najnowsza aktualizacja" -#: src/Common/LinuxKernel.vala:1049 src/Console/AppConsole.vala:302 +#: src/Common/LinuxKernel.vala:1069 src/Console/AppConsole.vala:293 msgid "Latest point update" msgstr "Najnowsza aktualizacja punktowa" -#: src/Common/LinuxKernel.vala:1057 src/Console/AppConsole.vala:307 -#: src/Console/AppConsole.vala:362 +#: src/Common/LinuxKernel.vala:1077 src/Console/AppConsole.vala:298 +#: src/Console/AppConsole.vala:353 msgid "No updates found" msgstr "Nie znaleziono aktualizacji" -#: src/Common/LinuxKernel.vala:1066 +#: src/Common/LinuxKernel.vala:1086 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Zainstalować wersję jądra %s? (t/n): " -#: src/Common/Main.vala:240 +#: src/Common/Main.vala:271 msgid "Called from" msgstr "Wywołano z" -#: src/Common/Main.vala:274 +#: src/Common/Main.vala:307 msgid "Notifications are disabled" msgstr "Powiadomienia są wyłączone" -#: src/Common/Main.vala:312 src/Gtk/MainWindow.vala:612 -msgid "Can not reach" +#: src/Common/Main.vala:352 src/Gtk/MainWindow.vala:634 +#, fuzzy +msgid "Can not reach site" msgstr "Nie można dotrzeć" -#: src/Common/Package.vala:57 +#: src/Common/Package.vala:58 #, c-format msgid "File not found: %s" msgstr "Nie znaleziono pliku: %s" -#: src/Console/AppConsole.vala:62 src/Gtk/AppGtk.vala:135 +#: src/Console/AppConsole.vala:49 src/Gtk/AppGtk.vala:137 msgid "Syntax" msgstr "Składnia" -#: src/Console/AppConsole.vala:64 +#: src/Console/AppConsole.vala:51 msgid "Commands" msgstr "Polecenia" -#: src/Console/AppConsole.vala:66 +#: src/Console/AppConsole.vala:53 msgid "Check for kernel updates" msgstr "Sprawdź nowe wersje jądra" -#: src/Console/AppConsole.vala:67 +#: src/Console/AppConsole.vala:54 msgid "Check for kernel updates and notify current user" msgstr "Sprawdź nowe wersje jądra i powiadom bieżącego użytkownika" -#: src/Console/AppConsole.vala:68 +#: src/Console/AppConsole.vala:55 msgid "List all available mainline kernels" msgstr "Pokaż wszystkie dostępne jądra" -#: src/Console/AppConsole.vala:69 +#: src/Console/AppConsole.vala:56 msgid "List installed kernels" msgstr "Wyświetl listę zainstalowanych jąder" -#: src/Console/AppConsole.vala:70 +#: src/Console/AppConsole.vala:57 msgid "Install latest mainline kernel" msgstr "Zainstaluj najnowsze jądro" -#: src/Console/AppConsole.vala:71 +#: src/Console/AppConsole.vala:58 msgid "Install latest point update for current series" msgstr "Zainstaluj najnowszą aktualizację punktową dla bieżącej serii" -#: src/Console/AppConsole.vala:72 +#: src/Console/AppConsole.vala:59 msgid "Install specified mainline kernel" msgstr "Zainstaluj wybrane jądro" -#: src/Console/AppConsole.vala:73 +#: src/Console/AppConsole.vala:60 msgid "Uninstall specified kernel" msgstr "Odinstaluj wybrane jądro" -#: src/Console/AppConsole.vala:74 -msgid "Uninstall kernels older than the running kernel" +#: src/Console/AppConsole.vala:61 +#, fuzzy +msgid "Uninstall kernels older than the latest installed" msgstr "Odinstaluj jądra starsze niż działające jądro" -#: src/Console/AppConsole.vala:75 +#: src/Console/AppConsole.vala:62 msgid "Download specified kernels" msgstr "Pobierz wybrane jądra" -#: src/Console/AppConsole.vala:76 +#: src/Console/AppConsole.vala:63 msgid "Delete cached info about available kernels" msgstr "Usuń informacje z pamięci podręcznej o dostępnych jądrach" -#: src/Console/AppConsole.vala:78 src/Gtk/AppGtk.vala:137 +#: src/Console/AppConsole.vala:65 src/Gtk/AppGtk.vala:139 msgid "Options" msgstr "Opcje" -#: src/Console/AppConsole.vala:80 +#: src/Console/AppConsole.vala:67 msgid "Include unstable and RC releases" msgstr "Uwzględnij wydania niestabilne i RC" -#: src/Console/AppConsole.vala:81 +#: src/Console/AppConsole.vala:68 msgid "Exclude unstable and RC releases" msgstr "Wyklucz wersje niestabilne i RC" -#: src/Console/AppConsole.vala:82 +#: src/Console/AppConsole.vala:69 msgid "Enable verbose debugging output" msgstr "Włącz szczegółowe dane wyjściowe debugowania" -#: src/Console/AppConsole.vala:83 +#: src/Console/AppConsole.vala:70 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "Przyjmij Tak dla wszystkich monitów (tryb nieinteraktywny)" -#: src/Console/AppConsole.vala:86 +#: src/Console/AppConsole.vala:73 msgid "A version string taken from the output of --list" msgstr "Ciąg wersji pobrany z danych wyjściowych --list" -#: src/Console/AppConsole.vala:87 -msgid "" -"One or more version strings (comma-separated) taken from the output of --list" +#: src/Console/AppConsole.vala:74 +msgid "One or more, comma-seperated" msgstr "" -"Jeden lub więcej ciągów wersji (oddzielonych przecinkami) pobranych z " -"wyjścia --list" -#: src/Console/AppConsole.vala:164 src/Gtk/AppGtk.vala:121 +#: src/Console/AppConsole.vala:75 +#, fuzzy +msgid "The currently running kernel will always be ignored" +msgstr "Następujące jądra zostaną odinstalowane:" + +#: src/Console/AppConsole.vala:153 src/Gtk/AppGtk.vala:123 msgid "Unknown option" msgstr "Nieznana opcja" -#: src/Console/AppConsole.vala:165 src/Console/AppConsole.vala:253 -#: src/Console/AppConsole.vala:281 +#: src/Console/AppConsole.vala:154 src/Console/AppConsole.vala:244 +#: src/Console/AppConsole.vala:272 msgid "Run" msgstr "Uruchom" -#: src/Console/AppConsole.vala:165 +#: src/Console/AppConsole.vala:154 msgid "to list all options" msgstr "do wyświetlenia wszystkich opcji" -#: src/Console/AppConsole.vala:221 src/Console/AppConsole.vala:261 +#: src/Console/AppConsole.vala:212 src/Console/AppConsole.vala:252 msgid "No kernels specified" msgstr "Nie wybrano jąder" -#: src/Console/AppConsole.vala:227 +#: src/Console/AppConsole.vala:218 msgid "Multiple kernels selected for installation. Select only one." msgstr "Wybrano kilka jąder do instalacji. Wybierz tylko jedno." -#: src/Console/AppConsole.vala:250 +#: src/Console/AppConsole.vala:241 msgid "Could not find requested version" msgstr "Nie można odnaleźć żądanej wersji" -#: src/Console/AppConsole.vala:253 +#: src/Console/AppConsole.vala:244 msgid "and use a version string listed in first column" msgstr "i użyć numeru wersji wymienionego w pierwszej kolumnie" -#: src/Console/AppConsole.vala:280 +#: src/Console/AppConsole.vala:271 msgid "Command not specified" msgstr "Nie określono polecenia" -#: src/Console/AppConsole.vala:281 +#: src/Console/AppConsole.vala:272 msgid "to list all commands" msgstr "do wyświetlenia wszystkich poleceń" -#: src/Console/AppConsole.vala:335 src/Gtk/SettingsDialog.vala:166 +#: src/Console/AppConsole.vala:326 src/Gtk/SettingsDialog.vala:166 msgid "Show" msgstr "Pokaż" -#: src/Console/AppConsole.vala:340 src/Console/AppConsole.vala:352 +#: src/Console/AppConsole.vala:331 src/Console/AppConsole.vala:343 #, c-format msgid "Kernel %s Available" msgstr "Dostępne %s jądra" -#: src/Console/AppConsole.vala:342 src/Console/AppConsole.vala:354 -#: src/Gtk/MainWindow.vala:269 +#: src/Console/AppConsole.vala:333 src/Console/AppConsole.vala:345 +#: src/Gtk/MainWindow.vala:267 msgid "Install" msgstr "Zainstaluj" @@ -282,7 +289,7 @@ msgstr "Zasługi" msgid "Back" msgstr "Wstecz" -#: src/Gtk/AboutWindow.vala:287 src/Gtk/TerminalWindow.vala:154 +#: src/Gtk/AboutWindow.vala:287 src/Gtk/TerminalWindow.vala:163 msgid "Close" msgstr "Zamknij" @@ -310,84 +317,84 @@ msgstr "Dokumentujący" msgid "Third Party Inclusions" msgstr "Włączenia stron trzecich" -#: src/Gtk/AppGtk.vala:135 +#: src/Gtk/AppGtk.vala:137 msgid "options" msgstr "opcje" -#: src/Gtk/AppGtk.vala:139 +#: src/Gtk/AppGtk.vala:141 msgid "Print debug information" msgstr "Wypisz informacje debugujące" -#: src/Gtk/AppGtk.vala:140 +#: src/Gtk/AppGtk.vala:142 msgid "Show all options" msgstr "Pokaż wszystkie opcje" -#: src/Gtk/MainWindow.vala:115 +#: src/Gtk/MainWindow.vala:113 msgid "Kernel" msgstr "Jądro" -#: src/Gtk/MainWindow.vala:145 +#: src/Gtk/MainWindow.vala:143 msgid "Status" msgstr "Status" -#: src/Gtk/MainWindow.vala:279 +#: src/Gtk/MainWindow.vala:277 msgid "Uninstall" msgstr "Odinstaluj" -#: src/Gtk/MainWindow.vala:289 +#: src/Gtk/MainWindow.vala:287 msgid "Changes" msgstr "Zmiany" -#: src/Gtk/MainWindow.vala:311 +#: src/Gtk/MainWindow.vala:309 msgid "Uninstall Old" msgstr "Odinstaluj stare" -#: src/Gtk/MainWindow.vala:312 +#: src/Gtk/MainWindow.vala:310 msgid "Uninstall kernels older than running kernel" msgstr "Odinstaluj jądra starsze niż działające jądro" -#: src/Gtk/MainWindow.vala:317 +#: src/Gtk/MainWindow.vala:315 msgid "Reload" msgstr "Wczytaj ponownie" -#: src/Gtk/MainWindow.vala:322 src/Gtk/SettingsDialog.vala:50 +#: src/Gtk/MainWindow.vala:320 src/Gtk/SettingsDialog.vala:50 msgid "Settings" msgstr "Ustawienia" -#: src/Gtk/MainWindow.vala:327 +#: src/Gtk/MainWindow.vala:325 msgid "About" msgstr "O programie" -#: src/Gtk/MainWindow.vala:332 +#: src/Gtk/MainWindow.vala:330 msgid "Exit" msgstr "Wyjdź" -#: src/Gtk/MainWindow.vala:400 +#: src/Gtk/MainWindow.vala:398 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Narzędzie uaktualniania jądra dla dystrybucji z rodziny Ubuntu" -#: src/Gtk/MainWindow.vala:401 +#: src/Gtk/MainWindow.vala:399 msgid "Forked" msgstr "Sforkowane" -#: src/Gtk/MainWindow.vala:401 +#: src/Gtk/MainWindow.vala:399 msgid "Original" msgstr "Oryginalne" -#: src/Gtk/MainWindow.vala:439 +#: src/Gtk/MainWindow.vala:437 msgid "Updating kernels" msgstr "Aktualizowanie jąder" -#: src/Gtk/MainWindow.vala:510 +#: src/Gtk/MainWindow.vala:508 msgid "available" msgstr "dostępne" -#: src/Gtk/MainWindow.vala:543 src/Gtk/MainWindow.vala:576 -#: src/Gtk/MainWindow.vala:603 +#: src/Gtk/MainWindow.vala:551 src/Gtk/MainWindow.vala:591 +#: src/Gtk/MainWindow.vala:625 msgid "DONE" msgstr "GOTOWE" -#: src/Gtk/ProgressWindow.vala:127 src/Gtk/TerminalWindow.vala:144 +#: src/Gtk/ProgressWindow.vala:128 src/Gtk/TerminalWindow.vala:153 msgid "Cancel" msgstr "Anuluj" @@ -404,7 +411,8 @@ msgid "Notify if a point release is available" msgstr "Powiadom, jeśli pojawi się wersja punktowa" #: src/Gtk/SettingsDialog.vala:87 -msgid "(Allowing intervals in seconds for --debug)" +#, fuzzy +msgid "Seconds interval enabled for debugging" msgstr "(Zezwalanie na interwały w sekundach dla --debug)" #: src/Gtk/SettingsDialog.vala:110 @@ -462,11 +470,3 @@ msgstr "Serwer pośredniczący" #: src/Gtk/l.gtk.vala:44 msgid "Missing Icon" msgstr "Brakująca ikona" - -#: src/lib/TeeJee.Logging.vala:43 -msgid "E" -msgstr "E" - -#: src/lib/TeeJee.Logging.vala:50 -msgid "D" -msgstr "D" diff --git a/po/ru.po b/po/ru.po index 84fa9cb1..3e708f0a 100644 --- a/po/ru.po +++ b/po/ru.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-12 05:17-0400\n" +"POT-Creation-Date: 2023-03-14 06:30-0400\n" "PO-Revision-Date: 2023-03-12 18:24+0300\n" "Last-Translator: Faust3000 (Original) | Danik2343 (Update Transaltion) " "\n" @@ -14,15 +14,15 @@ msgstr "" "X-Launchpad-Export-Date: 2016-12-13 11:48+0000\n" "X-Generator: Poedit 3.1.1\n" -#: src/Common/LinuxKernel.vala:87 +#: src/Common/LinuxKernel.vala:88 msgid "Distribution" msgstr "Дистрибутив" -#: src/Common/LinuxKernel.vala:102 +#: src/Common/LinuxKernel.vala:103 msgid "Architecture" msgstr "Архитектура" -#: src/Common/LinuxKernel.vala:282 +#: src/Common/LinuxKernel.vala:278 msgid "Fetching individual kernel indexes" msgstr "Получение индивидуальных индексов ядра" @@ -30,249 +30,256 @@ msgstr "Получение индивидуальных индексов ядр msgid "Updating from" msgstr "Обновление из" -#: src/Common/LinuxKernel.vala:738 +#: src/Common/LinuxKernel.vala:344 src/Common/LinuxKernel.vala:897 +msgid "OK" +msgstr "OK" + +#: src/Common/LinuxKernel.vala:347 src/Common/LinuxKernel.vala:900 +msgid "FAILED" +msgstr "" + +#: src/Common/LinuxKernel.vala:761 msgid "Packages Available" msgstr "Доступные пакеты" -#: src/Common/LinuxKernel.vala:743 +#: src/Common/LinuxKernel.vala:766 msgid "Packages Installed" msgstr "Установленные пакеты" -#: src/Common/LinuxKernel.vala:756 src/lib/TeeJee.FileSystem.vala:121 +#: src/Common/LinuxKernel.vala:779 src/lib/TeeJee.FileSystem.vala:121 msgid "File not found" msgstr "Файл не найден" -#: src/Common/LinuxKernel.vala:821 +#: src/Common/LinuxKernel.vala:843 msgid "Available Kernels" msgstr "Доступные ядра" -#: src/Common/LinuxKernel.vala:828 src/Gtk/MainWindow.vala:158 +#: src/Common/LinuxKernel.vala:850 src/Gtk/MainWindow.vala:156 msgid "Installed" msgstr "Установлено" -#: src/Common/LinuxKernel.vala:828 src/Gtk/MainWindow.vala:158 -#: src/Gtk/MainWindow.vala:501 src/Gtk/MainWindow.vala:514 +#: src/Common/LinuxKernel.vala:850 src/Gtk/MainWindow.vala:156 +#: src/Gtk/MainWindow.vala:499 src/Gtk/MainWindow.vala:512 msgid "Running" msgstr "Используется" -#: src/Common/LinuxKernel.vala:863 +#: src/Common/LinuxKernel.vala:885 msgid "Downloading" msgstr "Загрузка" -#: src/Common/LinuxKernel.vala:882 -msgid "OK" -msgstr "OK" - -#: src/Common/LinuxKernel.vala:885 -msgid "ERROR" -msgstr "ОШИБКА" - -#: src/Common/LinuxKernel.vala:899 -msgid "This kernel is already installed." +#: src/Common/LinuxKernel.vala:913 +#, fuzzy +msgid "is already installed." msgstr "Это ядро уже установлено." -#: src/Common/LinuxKernel.vala:929 +#: src/Common/LinuxKernel.vala:943 msgid "Uninstalling selected kernels" msgstr "Удаление выбранных ядер" -#: src/Common/LinuxKernel.vala:935 +#: src/Common/LinuxKernel.vala:949 msgid "requested" msgstr "запрошено" -#: src/Common/LinuxKernel.vala:938 -msgid "skipping the currently booted kernel" +#: src/Common/LinuxKernel.vala:952 +#, fuzzy +msgid "not uninstalling the currently running kernel" msgstr "пропуск текущего загруженного ядра" -#: src/Common/LinuxKernel.vala:954 +#: src/Common/LinuxKernel.vala:968 msgid "found" msgstr "найдено" -#: src/Common/LinuxKernel.vala:957 +#: src/Common/LinuxKernel.vala:971 msgid "No packages to un-install!" msgstr "Нет пакетов для удаления!" -#: src/Common/LinuxKernel.vala:996 +#: src/Common/LinuxKernel.vala:1019 msgid "Could not find running kernel in list" msgstr "Could not find running kernel in list" -#: src/Common/LinuxKernel.vala:1002 +#: src/Common/LinuxKernel.vala:1024 msgid "Could not find any kernels to uninstall" msgstr "Не удалось найти ядра для деинсталляции" -#: src/Common/LinuxKernel.vala:1011 -msgid "The following kernels will be uninstalled:" +#: src/Common/LinuxKernel.vala:1032 +#, fuzzy +msgid "The following kernels will be uninstalled" msgstr "Следующие ядра будут деинсталлированы:" -#: src/Common/LinuxKernel.vala:1015 +#: src/Common/LinuxKernel.vala:1036 msgid "Continue ?" msgstr "Продолжить ?" -#: src/Common/LinuxKernel.vala:1038 src/Console/AppConsole.vala:295 +#: src/Common/LinuxKernel.vala:1058 src/Console/AppConsole.vala:286 msgid "Latest update" msgstr "Последнее обновление" -#: src/Common/LinuxKernel.vala:1049 src/Console/AppConsole.vala:302 +#: src/Common/LinuxKernel.vala:1069 src/Console/AppConsole.vala:293 msgid "Latest point update" msgstr "Последнее обновление пунктов" -#: src/Common/LinuxKernel.vala:1057 src/Console/AppConsole.vala:307 -#: src/Console/AppConsole.vala:362 +#: src/Common/LinuxKernel.vala:1077 src/Console/AppConsole.vala:298 +#: src/Console/AppConsole.vala:353 msgid "No updates found" msgstr "Обновлений не найдено" -#: src/Common/LinuxKernel.vala:1066 +#: src/Common/LinuxKernel.vala:1086 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Установить версию ядра %s ? (y/n): " -#: src/Common/Main.vala:240 +#: src/Common/Main.vala:271 msgid "Called from" msgstr "Вызван из" -#: src/Common/Main.vala:274 +#: src/Common/Main.vala:307 msgid "Notifications are disabled" msgstr "Уведомления отключены" -#: src/Common/Main.vala:312 src/Gtk/MainWindow.vala:612 -msgid "Can not reach" +#: src/Common/Main.vala:352 src/Gtk/MainWindow.vala:634 +#, fuzzy +msgid "Can not reach site" msgstr "Не удается получить" -#: src/Common/Package.vala:57 +#: src/Common/Package.vala:58 #, c-format msgid "File not found: %s" msgstr "Файл не найден: %s" -#: src/Console/AppConsole.vala:62 src/Gtk/AppGtk.vala:135 +#: src/Console/AppConsole.vala:49 src/Gtk/AppGtk.vala:137 msgid "Syntax" msgstr "Синтаксис" -#: src/Console/AppConsole.vala:64 +#: src/Console/AppConsole.vala:51 msgid "Commands" msgstr "Комманды" -#: src/Console/AppConsole.vala:66 +#: src/Console/AppConsole.vala:53 msgid "Check for kernel updates" msgstr "Проверить обновления ядра" -#: src/Console/AppConsole.vala:67 +#: src/Console/AppConsole.vala:54 msgid "Check for kernel updates and notify current user" msgstr "Проверить обновления ядра и уведомить текущего пользователя" -#: src/Console/AppConsole.vala:68 +#: src/Console/AppConsole.vala:55 msgid "List all available mainline kernels" msgstr "Список всех доступных основных ядер" -#: src/Console/AppConsole.vala:69 +#: src/Console/AppConsole.vala:56 msgid "List installed kernels" msgstr "Список установленных ядер" -#: src/Console/AppConsole.vala:70 +#: src/Console/AppConsole.vala:57 msgid "Install latest mainline kernel" msgstr "Установите последнюю версию основного ядра" -#: src/Console/AppConsole.vala:71 +#: src/Console/AppConsole.vala:58 msgid "Install latest point update for current series" msgstr "Установить последнее обновление точек для текущей серии" -#: src/Console/AppConsole.vala:72 +#: src/Console/AppConsole.vala:59 msgid "Install specified mainline kernel" msgstr "Установить указанную ветку основного ядра" -#: src/Console/AppConsole.vala:73 +#: src/Console/AppConsole.vala:60 msgid "Uninstall specified kernel" msgstr "Установить указанное ядро" -#: src/Console/AppConsole.vala:74 -msgid "Uninstall kernels older than the running kernel" +#: src/Console/AppConsole.vala:61 +#, fuzzy +msgid "Uninstall kernels older than the latest installed" msgstr "Удалить более старшие установленные ядра, чем используемое ядро" -#: src/Console/AppConsole.vala:75 +#: src/Console/AppConsole.vala:62 msgid "Download specified kernels" msgstr "Скачать указанные ядра" -#: src/Console/AppConsole.vala:76 +#: src/Console/AppConsole.vala:63 msgid "Delete cached info about available kernels" msgstr "Удаление кэшированной информации о доступных ядрах" -#: src/Console/AppConsole.vala:78 src/Gtk/AppGtk.vala:137 +#: src/Console/AppConsole.vala:65 src/Gtk/AppGtk.vala:139 msgid "Options" msgstr "Параметры" -#: src/Console/AppConsole.vala:80 +#: src/Console/AppConsole.vala:67 msgid "Include unstable and RC releases" msgstr "Включать нестабильные и релиз-кандидат релизы" -#: src/Console/AppConsole.vala:81 +#: src/Console/AppConsole.vala:68 msgid "Exclude unstable and RC releases" msgstr "Исключить нестабильные и релиз-кандидат релизы" -#: src/Console/AppConsole.vala:82 +#: src/Console/AppConsole.vala:69 msgid "Enable verbose debugging output" msgstr "Включить подробный отладочный вывод" -#: src/Console/AppConsole.vala:83 +#: src/Console/AppConsole.vala:70 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "Предполагать \"Да\" для всех запросов (неинтерактивный режим)" -#: src/Console/AppConsole.vala:86 +#: src/Console/AppConsole.vala:73 msgid "A version string taken from the output of --list" msgstr "Строка версии, взятая из вывода --list" -#: src/Console/AppConsole.vala:87 -msgid "" -"One or more version strings (comma-separated) taken from the output of --list" +#: src/Console/AppConsole.vala:74 +msgid "One or more, comma-seperated" msgstr "" -"Одна или несколько строк версий (разделенных запятыми), взятых из вывода --" -"list" -#: src/Console/AppConsole.vala:164 src/Gtk/AppGtk.vala:121 +#: src/Console/AppConsole.vala:75 +#, fuzzy +msgid "The currently running kernel will always be ignored" +msgstr "Следующие ядра будут деинсталлированы:" + +#: src/Console/AppConsole.vala:153 src/Gtk/AppGtk.vala:123 msgid "Unknown option" msgstr "Неизвестный параметр" -#: src/Console/AppConsole.vala:165 src/Console/AppConsole.vala:253 -#: src/Console/AppConsole.vala:281 +#: src/Console/AppConsole.vala:154 src/Console/AppConsole.vala:244 +#: src/Console/AppConsole.vala:272 msgid "Run" msgstr "Используется" -#: src/Console/AppConsole.vala:165 +#: src/Console/AppConsole.vala:154 msgid "to list all options" msgstr "чтобы перечислить все параметры" -#: src/Console/AppConsole.vala:221 src/Console/AppConsole.vala:261 +#: src/Console/AppConsole.vala:212 src/Console/AppConsole.vala:252 msgid "No kernels specified" msgstr "Ядра не указаны" -#: src/Console/AppConsole.vala:227 +#: src/Console/AppConsole.vala:218 msgid "Multiple kernels selected for installation. Select only one." msgstr "Для установки выбрано несколько ядер. Выберите только одно." -#: src/Console/AppConsole.vala:250 +#: src/Console/AppConsole.vala:241 msgid "Could not find requested version" msgstr "Не удалось найти запрошенную версию" -#: src/Console/AppConsole.vala:253 +#: src/Console/AppConsole.vala:244 msgid "and use a version string listed in first column" msgstr "и использовать строку версии, указанную в первом столбце" -#: src/Console/AppConsole.vala:280 +#: src/Console/AppConsole.vala:271 msgid "Command not specified" msgstr "Команда не указана" -#: src/Console/AppConsole.vala:281 +#: src/Console/AppConsole.vala:272 msgid "to list all commands" msgstr "чтобы перечислить все команды" -#: src/Console/AppConsole.vala:335 src/Gtk/SettingsDialog.vala:166 +#: src/Console/AppConsole.vala:326 src/Gtk/SettingsDialog.vala:166 msgid "Show" msgstr "Показать" -#: src/Console/AppConsole.vala:340 src/Console/AppConsole.vala:352 +#: src/Console/AppConsole.vala:331 src/Console/AppConsole.vala:343 #, c-format msgid "Kernel %s Available" msgstr "Доступно ядро %s" -#: src/Console/AppConsole.vala:342 src/Console/AppConsole.vala:354 -#: src/Gtk/MainWindow.vala:269 +#: src/Console/AppConsole.vala:333 src/Console/AppConsole.vala:345 +#: src/Gtk/MainWindow.vala:267 msgid "Install" msgstr "Установить" @@ -284,7 +291,7 @@ msgstr "Создатели" msgid "Back" msgstr "Назад" -#: src/Gtk/AboutWindow.vala:287 src/Gtk/TerminalWindow.vala:154 +#: src/Gtk/AboutWindow.vala:287 src/Gtk/TerminalWindow.vala:163 msgid "Close" msgstr "Закрыть" @@ -312,84 +319,84 @@ msgstr "Составители документации" msgid "Third Party Inclusions" msgstr "Включая сторонние инструменты" -#: src/Gtk/AppGtk.vala:135 +#: src/Gtk/AppGtk.vala:137 msgid "options" msgstr "параметры" -#: src/Gtk/AppGtk.vala:139 +#: src/Gtk/AppGtk.vala:141 msgid "Print debug information" msgstr "Распечатать отладочную информацию" -#: src/Gtk/AppGtk.vala:140 +#: src/Gtk/AppGtk.vala:142 msgid "Show all options" msgstr "Показать все параметры" -#: src/Gtk/MainWindow.vala:115 +#: src/Gtk/MainWindow.vala:113 msgid "Kernel" msgstr "Ядро" -#: src/Gtk/MainWindow.vala:145 +#: src/Gtk/MainWindow.vala:143 msgid "Status" msgstr "Состояние" -#: src/Gtk/MainWindow.vala:279 +#: src/Gtk/MainWindow.vala:277 msgid "Uninstall" msgstr "Удалить" -#: src/Gtk/MainWindow.vala:289 +#: src/Gtk/MainWindow.vala:287 msgid "Changes" msgstr "Изменения" -#: src/Gtk/MainWindow.vala:311 +#: src/Gtk/MainWindow.vala:309 msgid "Uninstall Old" msgstr "Удалить старые" -#: src/Gtk/MainWindow.vala:312 +#: src/Gtk/MainWindow.vala:310 msgid "Uninstall kernels older than running kernel" msgstr "Удалить более старшие установленные ядра, чем используемое" -#: src/Gtk/MainWindow.vala:317 +#: src/Gtk/MainWindow.vala:315 msgid "Reload" msgstr "Перезагрузить" -#: src/Gtk/MainWindow.vala:322 src/Gtk/SettingsDialog.vala:50 +#: src/Gtk/MainWindow.vala:320 src/Gtk/SettingsDialog.vala:50 msgid "Settings" msgstr "Настройки" -#: src/Gtk/MainWindow.vala:327 +#: src/Gtk/MainWindow.vala:325 msgid "About" msgstr "О программе" -#: src/Gtk/MainWindow.vala:332 +#: src/Gtk/MainWindow.vala:330 msgid "Exit" msgstr "Выход" -#: src/Gtk/MainWindow.vala:400 +#: src/Gtk/MainWindow.vala:398 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Программа обновления ядра для дистрибутивов на базе Ubuntu" -#: src/Gtk/MainWindow.vala:401 +#: src/Gtk/MainWindow.vala:399 msgid "Forked" msgstr "Форк" -#: src/Gtk/MainWindow.vala:401 +#: src/Gtk/MainWindow.vala:399 msgid "Original" msgstr "Оригинал" -#: src/Gtk/MainWindow.vala:439 +#: src/Gtk/MainWindow.vala:437 msgid "Updating kernels" msgstr "Обновление ядер" -#: src/Gtk/MainWindow.vala:510 +#: src/Gtk/MainWindow.vala:508 msgid "available" msgstr "доступно" -#: src/Gtk/MainWindow.vala:543 src/Gtk/MainWindow.vala:576 -#: src/Gtk/MainWindow.vala:603 +#: src/Gtk/MainWindow.vala:551 src/Gtk/MainWindow.vala:591 +#: src/Gtk/MainWindow.vala:625 msgid "DONE" msgstr "ГОТОВО" -#: src/Gtk/ProgressWindow.vala:127 src/Gtk/TerminalWindow.vala:144 +#: src/Gtk/ProgressWindow.vala:128 src/Gtk/TerminalWindow.vala:153 msgid "Cancel" msgstr "Отмена" @@ -406,7 +413,8 @@ msgid "Notify if a point release is available" msgstr "Уведомлять, если доступно небольшое обновление" #: src/Gtk/SettingsDialog.vala:87 -msgid "(Allowing intervals in seconds for --debug)" +#, fuzzy +msgid "Seconds interval enabled for debugging" msgstr "(Разрешение интервалов в секундах для --debug)" #: src/Gtk/SettingsDialog.vala:110 @@ -464,11 +472,3 @@ msgstr "Прокси" #: src/Gtk/l.gtk.vala:44 msgid "Missing Icon" msgstr "Значок отсутствует" - -#: src/lib/TeeJee.Logging.vala:43 -msgid "E" -msgstr "E" - -#: src/lib/TeeJee.Logging.vala:50 -msgid "D" -msgstr "D" diff --git a/po/sv.po b/po/sv.po index faabba96..3166c966 100644 --- a/po/sv.po +++ b/po/sv.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-12 04:45-0400\n" +"POT-Creation-Date: 2023-03-14 06:30-0400\n" "PO-Revision-Date: 2018-01-13 16:56+0100\n" "Last-Translator: Åke Engelbrektson \n" "Language-Team:Swedish\n" @@ -13,16 +13,16 @@ msgstr "" "X-Generator: Poedit 1.8.7.1\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: src/Common/LinuxKernel.vala:87 +#: src/Common/LinuxKernel.vala:88 msgid "Distribution" msgstr "Distribution" -#: src/Common/LinuxKernel.vala:102 +#: src/Common/LinuxKernel.vala:103 #, fuzzy msgid "Architecture" msgstr "Systemarkitektur" -#: src/Common/LinuxKernel.vala:282 +#: src/Common/LinuxKernel.vala:278 #, fuzzy msgid "Fetching individual kernel indexes" msgstr "Hämtar index för" @@ -31,265 +31,271 @@ msgstr "Hämtar index för" msgid "Updating from" msgstr "" -#: src/Common/LinuxKernel.vala:738 +#: src/Common/LinuxKernel.vala:344 src/Common/LinuxKernel.vala:897 +msgid "OK" +msgstr "OK" + +#: src/Common/LinuxKernel.vala:347 src/Common/LinuxKernel.vala:900 +msgid "FAILED" +msgstr "" + +#: src/Common/LinuxKernel.vala:761 msgid "Packages Available" msgstr "Tillgängliga paket" -#: src/Common/LinuxKernel.vala:743 +#: src/Common/LinuxKernel.vala:766 msgid "Packages Installed" msgstr "Installerade paket" -#: src/Common/LinuxKernel.vala:756 src/lib/TeeJee.FileSystem.vala:121 +#: src/Common/LinuxKernel.vala:779 src/lib/TeeJee.FileSystem.vala:121 msgid "File not found" msgstr "Filen kan inte hittas" -#: src/Common/LinuxKernel.vala:821 +#: src/Common/LinuxKernel.vala:843 msgid "Available Kernels" msgstr "Tillgängliga kärnor" -#: src/Common/LinuxKernel.vala:828 src/Gtk/MainWindow.vala:158 +#: src/Common/LinuxKernel.vala:850 src/Gtk/MainWindow.vala:156 msgid "Installed" msgstr "Installerad" -#: src/Common/LinuxKernel.vala:828 src/Gtk/MainWindow.vala:158 -#: src/Gtk/MainWindow.vala:501 src/Gtk/MainWindow.vala:514 +#: src/Common/LinuxKernel.vala:850 src/Gtk/MainWindow.vala:156 +#: src/Gtk/MainWindow.vala:499 src/Gtk/MainWindow.vala:512 msgid "Running" msgstr "Körs" -#: src/Common/LinuxKernel.vala:863 +#: src/Common/LinuxKernel.vala:885 msgid "Downloading" msgstr "Laddar ner" -#: src/Common/LinuxKernel.vala:882 -msgid "OK" -msgstr "OK" - -#: src/Common/LinuxKernel.vala:885 -msgid "ERROR" -msgstr "FEL" - -#: src/Common/LinuxKernel.vala:899 -msgid "This kernel is already installed." +#: src/Common/LinuxKernel.vala:913 +#, fuzzy +msgid "is already installed." msgstr "Denna kärna är redan installerad" -#: src/Common/LinuxKernel.vala:929 +#: src/Common/LinuxKernel.vala:943 #, fuzzy msgid "Uninstalling selected kernels" msgstr "Installera specificerad kärna" -#: src/Common/LinuxKernel.vala:935 +#: src/Common/LinuxKernel.vala:949 msgid "requested" msgstr "" -#: src/Common/LinuxKernel.vala:938 -msgid "skipping the currently booted kernel" -msgstr "" +#: src/Common/LinuxKernel.vala:952 +#, fuzzy +msgid "not uninstalling the currently running kernel" +msgstr "Installera specificerad kärna" -#: src/Common/LinuxKernel.vala:954 +#: src/Common/LinuxKernel.vala:968 msgid "found" msgstr "" -#: src/Common/LinuxKernel.vala:957 +#: src/Common/LinuxKernel.vala:971 #, fuzzy msgid "No packages to un-install!" msgstr "Installerade paket" -#: src/Common/LinuxKernel.vala:996 +#: src/Common/LinuxKernel.vala:1019 #, fuzzy msgid "Could not find running kernel in list" msgstr "Kunde inte hitta efterfrågad version" -#: src/Common/LinuxKernel.vala:1002 +#: src/Common/LinuxKernel.vala:1024 #, fuzzy msgid "Could not find any kernels to uninstall" msgstr "Välj kärnor för borttagning" -#: src/Common/LinuxKernel.vala:1011 +#: src/Common/LinuxKernel.vala:1032 #, fuzzy -msgid "The following kernels will be uninstalled:" +msgid "The following kernels will be uninstalled" msgstr "Denna kärna är redan installerad" -#: src/Common/LinuxKernel.vala:1015 +#: src/Common/LinuxKernel.vala:1036 msgid "Continue ?" msgstr "" -#: src/Common/LinuxKernel.vala:1038 src/Console/AppConsole.vala:295 +#: src/Common/LinuxKernel.vala:1058 src/Console/AppConsole.vala:286 msgid "Latest update" msgstr "" -#: src/Common/LinuxKernel.vala:1049 src/Console/AppConsole.vala:302 +#: src/Common/LinuxKernel.vala:1069 src/Console/AppConsole.vala:293 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:1057 src/Console/AppConsole.vala:307 -#: src/Console/AppConsole.vala:362 +#: src/Common/LinuxKernel.vala:1077 src/Console/AppConsole.vala:298 +#: src/Console/AppConsole.vala:353 msgid "No updates found" msgstr "Inga uppdateringar hittades" -#: src/Common/LinuxKernel.vala:1066 +#: src/Common/LinuxKernel.vala:1086 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "" -#: src/Common/Main.vala:240 +#: src/Common/Main.vala:271 msgid "Called from" msgstr "" -#: src/Common/Main.vala:274 +#: src/Common/Main.vala:307 #, fuzzy msgid "Notifications are disabled" msgstr "Avisering" -#: src/Common/Main.vala:312 src/Gtk/MainWindow.vala:612 +#: src/Common/Main.vala:352 src/Gtk/MainWindow.vala:634 #, fuzzy -msgid "Can not reach" +msgid "Can not reach site" msgstr "Kunde inte läsa filen" -#: src/Common/Package.vala:57 +#: src/Common/Package.vala:58 #, fuzzy, c-format msgid "File not found: %s" msgstr "Filen kan inte hittas" -#: src/Console/AppConsole.vala:62 src/Gtk/AppGtk.vala:135 +#: src/Console/AppConsole.vala:49 src/Gtk/AppGtk.vala:137 msgid "Syntax" msgstr "Syntax" -#: src/Console/AppConsole.vala:64 +#: src/Console/AppConsole.vala:51 msgid "Commands" msgstr "" -#: src/Console/AppConsole.vala:66 +#: src/Console/AppConsole.vala:53 msgid "Check for kernel updates" msgstr "Sök efter kärnuppdateringar" -#: src/Console/AppConsole.vala:67 +#: src/Console/AppConsole.vala:54 #, fuzzy msgid "Check for kernel updates and notify current user" msgstr "Sök efter kärnuppdateringar" -#: src/Console/AppConsole.vala:68 +#: src/Console/AppConsole.vala:55 msgid "List all available mainline kernels" msgstr "Lista alla tillgängliga kärnor" -#: src/Console/AppConsole.vala:69 +#: src/Console/AppConsole.vala:56 #, fuzzy msgid "List installed kernels" msgstr "Lista tillgängliga kärnor" -#: src/Console/AppConsole.vala:70 +#: src/Console/AppConsole.vala:57 #, fuzzy msgid "Install latest mainline kernel" msgstr "Installera specificerad kärna" -#: src/Console/AppConsole.vala:71 +#: src/Console/AppConsole.vala:58 msgid "Install latest point update for current series" msgstr "" -#: src/Console/AppConsole.vala:72 +#: src/Console/AppConsole.vala:59 msgid "Install specified mainline kernel" msgstr "Installera specificerad kärna" -#: src/Console/AppConsole.vala:73 +#: src/Console/AppConsole.vala:60 #, fuzzy msgid "Uninstall specified kernel" msgstr "Installera specificerad kärna" -#: src/Console/AppConsole.vala:74 +#: src/Console/AppConsole.vala:61 #, fuzzy -msgid "Uninstall kernels older than the running kernel" +msgid "Uninstall kernels older than the latest installed" msgstr "Ta bort installerade kärnor äldre än den som körs" -#: src/Console/AppConsole.vala:75 +#: src/Console/AppConsole.vala:62 #, fuzzy msgid "Download specified kernels" msgstr "Ladda ner paket för specificerad kärna" -#: src/Console/AppConsole.vala:76 +#: src/Console/AppConsole.vala:63 msgid "Delete cached info about available kernels" msgstr "" -#: src/Console/AppConsole.vala:78 src/Gtk/AppGtk.vala:137 +#: src/Console/AppConsole.vala:65 src/Gtk/AppGtk.vala:139 msgid "Options" msgstr "Alternativ" -#: src/Console/AppConsole.vala:80 +#: src/Console/AppConsole.vala:67 #, fuzzy msgid "Include unstable and RC releases" msgstr "Dölj instabila- och RC-publiceringar" -#: src/Console/AppConsole.vala:81 +#: src/Console/AppConsole.vala:68 #, fuzzy msgid "Exclude unstable and RC releases" msgstr "Dölj instabila- och RC-publiceringar" -#: src/Console/AppConsole.vala:82 +#: src/Console/AppConsole.vala:69 msgid "Enable verbose debugging output" msgstr "" -#: src/Console/AppConsole.vala:83 +#: src/Console/AppConsole.vala:70 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "" -#: src/Console/AppConsole.vala:86 +#: src/Console/AppConsole.vala:73 msgid "A version string taken from the output of --list" msgstr "" -#: src/Console/AppConsole.vala:87 -msgid "" -"One or more version strings (comma-separated) taken from the output of --list" +#: src/Console/AppConsole.vala:74 +msgid "One or more, comma-seperated" msgstr "" -#: src/Console/AppConsole.vala:164 src/Gtk/AppGtk.vala:121 +#: src/Console/AppConsole.vala:75 +#, fuzzy +msgid "The currently running kernel will always be ignored" +msgstr "Denna kärna är redan installerad" + +#: src/Console/AppConsole.vala:153 src/Gtk/AppGtk.vala:123 msgid "Unknown option" msgstr "Okänt alternativ" -#: src/Console/AppConsole.vala:165 src/Console/AppConsole.vala:253 -#: src/Console/AppConsole.vala:281 +#: src/Console/AppConsole.vala:154 src/Console/AppConsole.vala:244 +#: src/Console/AppConsole.vala:272 #, fuzzy msgid "Run" msgstr "Körs" -#: src/Console/AppConsole.vala:165 +#: src/Console/AppConsole.vala:154 #, fuzzy msgid "to list all options" msgstr "Visa alla alternativ" -#: src/Console/AppConsole.vala:221 src/Console/AppConsole.vala:261 +#: src/Console/AppConsole.vala:212 src/Console/AppConsole.vala:252 msgid "No kernels specified" msgstr "" -#: src/Console/AppConsole.vala:227 +#: src/Console/AppConsole.vala:218 msgid "Multiple kernels selected for installation. Select only one." msgstr "Flera kärnor valda för installation. Välj endast en." -#: src/Console/AppConsole.vala:250 +#: src/Console/AppConsole.vala:241 msgid "Could not find requested version" msgstr "Kunde inte hitta efterfrågad version" -#: src/Console/AppConsole.vala:253 +#: src/Console/AppConsole.vala:244 msgid "and use a version string listed in first column" msgstr "" -#: src/Console/AppConsole.vala:280 +#: src/Console/AppConsole.vala:271 msgid "Command not specified" msgstr "" -#: src/Console/AppConsole.vala:281 +#: src/Console/AppConsole.vala:272 #, fuzzy msgid "to list all commands" msgstr "Visa alla alternativ" -#: src/Console/AppConsole.vala:335 src/Gtk/SettingsDialog.vala:166 +#: src/Console/AppConsole.vala:326 src/Gtk/SettingsDialog.vala:166 msgid "Show" msgstr "" -#: src/Console/AppConsole.vala:340 src/Console/AppConsole.vala:352 +#: src/Console/AppConsole.vala:331 src/Console/AppConsole.vala:343 #, fuzzy, c-format msgid "Kernel %s Available" msgstr "Tillgängliga paket" -#: src/Console/AppConsole.vala:342 src/Console/AppConsole.vala:354 -#: src/Gtk/MainWindow.vala:269 +#: src/Console/AppConsole.vala:333 src/Console/AppConsole.vala:345 +#: src/Gtk/MainWindow.vala:267 msgid "Install" msgstr "Installera" @@ -301,7 +307,7 @@ msgstr "Tack" msgid "Back" msgstr "Tillbaka" -#: src/Gtk/AboutWindow.vala:287 src/Gtk/TerminalWindow.vala:154 +#: src/Gtk/AboutWindow.vala:287 src/Gtk/TerminalWindow.vala:163 msgid "Close" msgstr "Stäng" @@ -330,89 +336,89 @@ msgstr "Dokumentalister" msgid "Third Party Inclusions" msgstr "Tredjepartsverktyg" -#: src/Gtk/AppGtk.vala:135 +#: src/Gtk/AppGtk.vala:137 #, fuzzy msgid "options" msgstr "Alternativ" -#: src/Gtk/AppGtk.vala:139 +#: src/Gtk/AppGtk.vala:141 msgid "Print debug information" msgstr "Skriv ut felsökningsinformation" -#: src/Gtk/AppGtk.vala:140 +#: src/Gtk/AppGtk.vala:142 msgid "Show all options" msgstr "Visa alla alternativ" -#: src/Gtk/MainWindow.vala:115 +#: src/Gtk/MainWindow.vala:113 msgid "Kernel" msgstr "Kärna" -#: src/Gtk/MainWindow.vala:145 +#: src/Gtk/MainWindow.vala:143 msgid "Status" msgstr "Status" -#: src/Gtk/MainWindow.vala:279 +#: src/Gtk/MainWindow.vala:277 #, fuzzy msgid "Uninstall" msgstr "Installera" -#: src/Gtk/MainWindow.vala:289 +#: src/Gtk/MainWindow.vala:287 msgid "Changes" msgstr "Ändringar" -#: src/Gtk/MainWindow.vala:311 +#: src/Gtk/MainWindow.vala:309 #, fuzzy msgid "Uninstall Old" msgstr "Avinstallation slutförd" -#: src/Gtk/MainWindow.vala:312 +#: src/Gtk/MainWindow.vala:310 #, fuzzy msgid "Uninstall kernels older than running kernel" msgstr "Ta bort installerade kärnor äldre än den som körs" -#: src/Gtk/MainWindow.vala:317 +#: src/Gtk/MainWindow.vala:315 msgid "Reload" msgstr "" -#: src/Gtk/MainWindow.vala:322 src/Gtk/SettingsDialog.vala:50 +#: src/Gtk/MainWindow.vala:320 src/Gtk/SettingsDialog.vala:50 msgid "Settings" msgstr "Inställningar" -#: src/Gtk/MainWindow.vala:327 +#: src/Gtk/MainWindow.vala:325 msgid "About" msgstr "Om" -#: src/Gtk/MainWindow.vala:332 +#: src/Gtk/MainWindow.vala:330 msgid "Exit" msgstr "" -#: src/Gtk/MainWindow.vala:400 +#: src/Gtk/MainWindow.vala:398 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Kärnuppgraderingsverktyg för Ubuntu-baserade distributioner" -#: src/Gtk/MainWindow.vala:401 +#: src/Gtk/MainWindow.vala:399 msgid "Forked" msgstr "" -#: src/Gtk/MainWindow.vala:401 +#: src/Gtk/MainWindow.vala:399 msgid "Original" msgstr "" -#: src/Gtk/MainWindow.vala:439 +#: src/Gtk/MainWindow.vala:437 msgid "Updating kernels" msgstr "" -#: src/Gtk/MainWindow.vala:510 +#: src/Gtk/MainWindow.vala:508 #, fuzzy msgid "available" msgstr "Tillgängliga paket" -#: src/Gtk/MainWindow.vala:543 src/Gtk/MainWindow.vala:576 -#: src/Gtk/MainWindow.vala:603 +#: src/Gtk/MainWindow.vala:551 src/Gtk/MainWindow.vala:591 +#: src/Gtk/MainWindow.vala:625 msgid "DONE" msgstr "" -#: src/Gtk/ProgressWindow.vala:127 src/Gtk/TerminalWindow.vala:144 +#: src/Gtk/ProgressWindow.vala:128 src/Gtk/TerminalWindow.vala:153 msgid "Cancel" msgstr "Avbryt" @@ -429,7 +435,7 @@ msgid "Notify if a point release is available" msgstr "Meddela om en ny (mindre) uppdatering finns tillgänglig" #: src/Gtk/SettingsDialog.vala:87 -msgid "(Allowing intervals in seconds for --debug)" +msgid "Seconds interval enabled for debugging" msgstr "" #: src/Gtk/SettingsDialog.vala:110 @@ -488,11 +494,3 @@ msgstr "" #: src/Gtk/l.gtk.vala:44 msgid "Missing Icon" msgstr "Saknad ikon" - -#: src/lib/TeeJee.Logging.vala:43 -msgid "E" -msgstr "F" - -#: src/lib/TeeJee.Logging.vala:50 -msgid "D" -msgstr "" diff --git a/po/tr.po b/po/tr.po index f1937b95..b435a192 100644 --- a/po/tr.po +++ b/po/tr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-12 04:45-0400\n" +"POT-Creation-Date: 2023-03-14 06:30-0400\n" "PO-Revision-Date: 2022-08-06 16:48+0300\n" "Last-Translator: Sabri Ünal \n" "Language-Team: Turkish\n" @@ -13,15 +13,15 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Poedit 3.1.1\n" -#: src/Common/LinuxKernel.vala:87 +#: src/Common/LinuxKernel.vala:88 msgid "Distribution" msgstr "Dağıtım" -#: src/Common/LinuxKernel.vala:102 +#: src/Common/LinuxKernel.vala:103 msgid "Architecture" msgstr "Sistem mimarisi" -#: src/Common/LinuxKernel.vala:282 +#: src/Common/LinuxKernel.vala:278 #, fuzzy msgid "Fetching individual kernel indexes" msgstr "İçerik dizini alınıyor..." @@ -30,255 +30,261 @@ msgstr "İçerik dizini alınıyor..." msgid "Updating from" msgstr "" -#: src/Common/LinuxKernel.vala:738 +#: src/Common/LinuxKernel.vala:344 src/Common/LinuxKernel.vala:897 +msgid "OK" +msgstr "Tamam" + +#: src/Common/LinuxKernel.vala:347 src/Common/LinuxKernel.vala:900 +msgid "FAILED" +msgstr "" + +#: src/Common/LinuxKernel.vala:761 msgid "Packages Available" msgstr "Mevcut Paketler" -#: src/Common/LinuxKernel.vala:743 +#: src/Common/LinuxKernel.vala:766 msgid "Packages Installed" msgstr "Kurulu Paketler" -#: src/Common/LinuxKernel.vala:756 src/lib/TeeJee.FileSystem.vala:121 +#: src/Common/LinuxKernel.vala:779 src/lib/TeeJee.FileSystem.vala:121 msgid "File not found" msgstr "Dosya bulunamadı" -#: src/Common/LinuxKernel.vala:821 +#: src/Common/LinuxKernel.vala:843 msgid "Available Kernels" msgstr "Mevcut Çekirdekler" -#: src/Common/LinuxKernel.vala:828 src/Gtk/MainWindow.vala:158 +#: src/Common/LinuxKernel.vala:850 src/Gtk/MainWindow.vala:156 msgid "Installed" msgstr "Kurulu" -#: src/Common/LinuxKernel.vala:828 src/Gtk/MainWindow.vala:158 -#: src/Gtk/MainWindow.vala:501 src/Gtk/MainWindow.vala:514 +#: src/Common/LinuxKernel.vala:850 src/Gtk/MainWindow.vala:156 +#: src/Gtk/MainWindow.vala:499 src/Gtk/MainWindow.vala:512 msgid "Running" msgstr "Çalışıyor" -#: src/Common/LinuxKernel.vala:863 +#: src/Common/LinuxKernel.vala:885 msgid "Downloading" msgstr "İndiriliyor" -#: src/Common/LinuxKernel.vala:882 -msgid "OK" -msgstr "Tamam" - -#: src/Common/LinuxKernel.vala:885 -msgid "ERROR" -msgstr "HATA" - -#: src/Common/LinuxKernel.vala:899 -msgid "This kernel is already installed." +#: src/Common/LinuxKernel.vala:913 +#, fuzzy +msgid "is already installed." msgstr "Bu çekirdek zaten kurulu." -#: src/Common/LinuxKernel.vala:929 +#: src/Common/LinuxKernel.vala:943 #, fuzzy msgid "Uninstalling selected kernels" msgstr "Belirtilen çekirdeğini kaldır" -#: src/Common/LinuxKernel.vala:935 +#: src/Common/LinuxKernel.vala:949 msgid "requested" msgstr "" -#: src/Common/LinuxKernel.vala:938 -msgid "skipping the currently booted kernel" -msgstr "" +#: src/Common/LinuxKernel.vala:952 +#, fuzzy +msgid "not uninstalling the currently running kernel" +msgstr "Belirtilen çekirdeğini kaldır" -#: src/Common/LinuxKernel.vala:954 +#: src/Common/LinuxKernel.vala:968 msgid "found" msgstr "" -#: src/Common/LinuxKernel.vala:957 +#: src/Common/LinuxKernel.vala:971 #, fuzzy msgid "No packages to un-install!" msgstr "Kurulu Paketler" -#: src/Common/LinuxKernel.vala:996 +#: src/Common/LinuxKernel.vala:1019 #, fuzzy msgid "Could not find running kernel in list" msgstr "Çalışan sürüm listede bulunamadı!" -#: src/Common/LinuxKernel.vala:1002 +#: src/Common/LinuxKernel.vala:1024 msgid "Could not find any kernels to uninstall" msgstr "Kaldırılacak çekirdek bulunamadı" -#: src/Common/LinuxKernel.vala:1011 -msgid "The following kernels will be uninstalled:" +#: src/Common/LinuxKernel.vala:1032 +#, fuzzy +msgid "The following kernels will be uninstalled" msgstr "Aşağıdaki çekirdekler kaldırılacak:" -#: src/Common/LinuxKernel.vala:1015 +#: src/Common/LinuxKernel.vala:1036 msgid "Continue ?" msgstr "Devam edilsin mi?" -#: src/Common/LinuxKernel.vala:1038 src/Console/AppConsole.vala:295 +#: src/Common/LinuxKernel.vala:1058 src/Console/AppConsole.vala:286 msgid "Latest update" msgstr "Son güncelleme" # Point burada point release anlamında kullanılıyor. Örneğin 5.10.x sayısının en sonundaki x rakamı point release/nokta sürüm oluyor. -#: src/Common/LinuxKernel.vala:1049 src/Console/AppConsole.vala:302 +#: src/Common/LinuxKernel.vala:1069 src/Console/AppConsole.vala:293 msgid "Latest point update" msgstr "Son nokta güncellemesi" -#: src/Common/LinuxKernel.vala:1057 src/Console/AppConsole.vala:307 -#: src/Console/AppConsole.vala:362 +#: src/Common/LinuxKernel.vala:1077 src/Console/AppConsole.vala:298 +#: src/Console/AppConsole.vala:353 msgid "No updates found" msgstr "Güncelleme bulunamadı" -#: src/Common/LinuxKernel.vala:1066 +#: src/Common/LinuxKernel.vala:1086 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Linux Çekirdek Sürümü %s Kurulsun mu? (e/h): " -#: src/Common/Main.vala:240 +#: src/Common/Main.vala:271 msgid "Called from" msgstr "Çağrı konumu" -#: src/Common/Main.vala:274 +#: src/Common/Main.vala:307 msgid "Notifications are disabled" msgstr "Bildirimler devre dışı bırakılmış" -#: src/Common/Main.vala:312 src/Gtk/MainWindow.vala:612 +#: src/Common/Main.vala:352 src/Gtk/MainWindow.vala:634 #, fuzzy -msgid "Can not reach" +msgid "Can not reach site" msgstr "Dosya okunamadı" -#: src/Common/Package.vala:57 +#: src/Common/Package.vala:58 #, fuzzy, c-format msgid "File not found: %s" msgstr "Dosya bulunamadı" -#: src/Console/AppConsole.vala:62 src/Gtk/AppGtk.vala:135 +#: src/Console/AppConsole.vala:49 src/Gtk/AppGtk.vala:137 msgid "Syntax" msgstr "Sözdizimi" -#: src/Console/AppConsole.vala:64 +#: src/Console/AppConsole.vala:51 msgid "Commands" msgstr "Komutlar" -#: src/Console/AppConsole.vala:66 +#: src/Console/AppConsole.vala:53 msgid "Check for kernel updates" msgstr "Çekirdek güncellemelerini kontrol et" -#: src/Console/AppConsole.vala:67 +#: src/Console/AppConsole.vala:54 msgid "Check for kernel updates and notify current user" msgstr "Çekirdek güncellemelerini kontrol et ve mevcut kullanıcıyı uyar" -#: src/Console/AppConsole.vala:68 +#: src/Console/AppConsole.vala:55 msgid "List all available mainline kernels" msgstr "Tüm mainline çekirdeklerini listele" -#: src/Console/AppConsole.vala:69 +#: src/Console/AppConsole.vala:56 msgid "List installed kernels" msgstr "Kurulu çekirdekleri listele" -#: src/Console/AppConsole.vala:70 +#: src/Console/AppConsole.vala:57 msgid "Install latest mainline kernel" msgstr "En son mainline çekirdeğini kur" -#: src/Console/AppConsole.vala:71 +#: src/Console/AppConsole.vala:58 msgid "Install latest point update for current series" msgstr "Mevcut çekirdek serisi için en son nokta güncellemesini kur" -#: src/Console/AppConsole.vala:72 +#: src/Console/AppConsole.vala:59 msgid "Install specified mainline kernel" msgstr "Belirtilen mainline çekirdeğini kur" -#: src/Console/AppConsole.vala:73 +#: src/Console/AppConsole.vala:60 msgid "Uninstall specified kernel" msgstr "Belirtilen çekirdeğini kaldır" -#: src/Console/AppConsole.vala:74 -msgid "Uninstall kernels older than the running kernel" +#: src/Console/AppConsole.vala:61 +#, fuzzy +msgid "Uninstall kernels older than the latest installed" msgstr "Çalışan çekirdekten daha eski çekirdekleri kaldır" -#: src/Console/AppConsole.vala:75 +#: src/Console/AppConsole.vala:62 msgid "Download specified kernels" msgstr "Belirtilen çekirdekleri indir" -#: src/Console/AppConsole.vala:76 +#: src/Console/AppConsole.vala:63 msgid "Delete cached info about available kernels" msgstr "" -#: src/Console/AppConsole.vala:78 src/Gtk/AppGtk.vala:137 +#: src/Console/AppConsole.vala:65 src/Gtk/AppGtk.vala:139 msgid "Options" msgstr "Seçenekler" -#: src/Console/AppConsole.vala:80 +#: src/Console/AppConsole.vala:67 msgid "Include unstable and RC releases" msgstr "Kararsız ve RC sürümleri dahil et" -#: src/Console/AppConsole.vala:81 +#: src/Console/AppConsole.vala:68 #, fuzzy msgid "Exclude unstable and RC releases" msgstr "Kararsız ve RC sürümleri dahil et" -#: src/Console/AppConsole.vala:82 +#: src/Console/AppConsole.vala:69 msgid "Enable verbose debugging output" msgstr "Ayrıntılı hata ayıklama çıktısını etkinleştir" -#: src/Console/AppConsole.vala:83 +#: src/Console/AppConsole.vala:70 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "Tüm istemler için Evet'i kabul edin (etkileşimsiz kip)" -#: src/Console/AppConsole.vala:86 +#: src/Console/AppConsole.vala:73 msgid "A version string taken from the output of --list" msgstr "--list çıktısından alınan sürüm dizgesi" -#: src/Console/AppConsole.vala:87 -msgid "" -"One or more version strings (comma-separated) taken from the output of --list" +#: src/Console/AppConsole.vala:74 +msgid "One or more, comma-seperated" msgstr "" -"--list çıktısından alınan bir veya daha fazla sürüm dizgesi (virgülle " -"ayrılmış)" -#: src/Console/AppConsole.vala:164 src/Gtk/AppGtk.vala:121 +#: src/Console/AppConsole.vala:75 +#, fuzzy +msgid "The currently running kernel will always be ignored" +msgstr "Aşağıdaki çekirdekler kaldırılacak:" + +#: src/Console/AppConsole.vala:153 src/Gtk/AppGtk.vala:123 msgid "Unknown option" msgstr "Bilinmeyen seçenek" -#: src/Console/AppConsole.vala:165 src/Console/AppConsole.vala:253 -#: src/Console/AppConsole.vala:281 +#: src/Console/AppConsole.vala:154 src/Console/AppConsole.vala:244 +#: src/Console/AppConsole.vala:272 msgid "Run" msgstr "Çalıştır" -#: src/Console/AppConsole.vala:165 +#: src/Console/AppConsole.vala:154 msgid "to list all options" msgstr "tüm seçenekleri listele" -#: src/Console/AppConsole.vala:221 src/Console/AppConsole.vala:261 +#: src/Console/AppConsole.vala:212 src/Console/AppConsole.vala:252 msgid "No kernels specified" msgstr "Çekirdek belirtilmedi" -#: src/Console/AppConsole.vala:227 +#: src/Console/AppConsole.vala:218 msgid "Multiple kernels selected for installation. Select only one." msgstr "Kurulum için birden fazla çekirdek seçildi. Sadece bir tane seçiniz." -#: src/Console/AppConsole.vala:250 +#: src/Console/AppConsole.vala:241 msgid "Could not find requested version" msgstr "İstenen sürüm bulunamadı" -#: src/Console/AppConsole.vala:253 +#: src/Console/AppConsole.vala:244 msgid "and use a version string listed in first column" msgstr "ve ilk sütunda listelenen bir sürüm dizgesini kullanın" -#: src/Console/AppConsole.vala:280 +#: src/Console/AppConsole.vala:271 msgid "Command not specified" msgstr "Komut belirtilmedi" -#: src/Console/AppConsole.vala:281 +#: src/Console/AppConsole.vala:272 msgid "to list all commands" msgstr "tüm komutları listele" -#: src/Console/AppConsole.vala:335 src/Gtk/SettingsDialog.vala:166 +#: src/Console/AppConsole.vala:326 src/Gtk/SettingsDialog.vala:166 msgid "Show" msgstr "Göster" -#: src/Console/AppConsole.vala:340 src/Console/AppConsole.vala:352 +#: src/Console/AppConsole.vala:331 src/Console/AppConsole.vala:343 #, c-format msgid "Kernel %s Available" msgstr "Çekirdek %s Kullanılabilir" -#: src/Console/AppConsole.vala:342 src/Console/AppConsole.vala:354 -#: src/Gtk/MainWindow.vala:269 +#: src/Console/AppConsole.vala:333 src/Console/AppConsole.vala:345 +#: src/Gtk/MainWindow.vala:267 msgid "Install" msgstr "Kur" @@ -290,7 +296,7 @@ msgstr "Hazırlayanlar" msgid "Back" msgstr "Geri" -#: src/Gtk/AboutWindow.vala:287 src/Gtk/TerminalWindow.vala:154 +#: src/Gtk/AboutWindow.vala:287 src/Gtk/TerminalWindow.vala:163 msgid "Close" msgstr "Kapat" @@ -318,85 +324,85 @@ msgstr "Belgelendirenler" msgid "Third Party Inclusions" msgstr "Üçüncü Taraf Eklemeler" -#: src/Gtk/AppGtk.vala:135 +#: src/Gtk/AppGtk.vala:137 #, fuzzy msgid "options" msgstr "Seçenekler" -#: src/Gtk/AppGtk.vala:139 +#: src/Gtk/AppGtk.vala:141 msgid "Print debug information" msgstr "Hata ayıklama bilgisini yazdır" -#: src/Gtk/AppGtk.vala:140 +#: src/Gtk/AppGtk.vala:142 msgid "Show all options" msgstr "Tüm seçenekleri göster" -#: src/Gtk/MainWindow.vala:115 +#: src/Gtk/MainWindow.vala:113 msgid "Kernel" msgstr "Çekirdek" -#: src/Gtk/MainWindow.vala:145 +#: src/Gtk/MainWindow.vala:143 msgid "Status" msgstr "Durum" -#: src/Gtk/MainWindow.vala:279 +#: src/Gtk/MainWindow.vala:277 msgid "Uninstall" msgstr "Kaldır" -#: src/Gtk/MainWindow.vala:289 +#: src/Gtk/MainWindow.vala:287 msgid "Changes" msgstr "Değişiklikler" -#: src/Gtk/MainWindow.vala:311 +#: src/Gtk/MainWindow.vala:309 msgid "Uninstall Old" msgstr "Eskileri Kaldır" -#: src/Gtk/MainWindow.vala:312 +#: src/Gtk/MainWindow.vala:310 msgid "Uninstall kernels older than running kernel" msgstr "Çalışan çekirdekten daha eski çekirdekleri kaldır" -#: src/Gtk/MainWindow.vala:317 +#: src/Gtk/MainWindow.vala:315 msgid "Reload" msgstr "" -#: src/Gtk/MainWindow.vala:322 src/Gtk/SettingsDialog.vala:50 +#: src/Gtk/MainWindow.vala:320 src/Gtk/SettingsDialog.vala:50 msgid "Settings" msgstr "Ayarlar" -#: src/Gtk/MainWindow.vala:327 +#: src/Gtk/MainWindow.vala:325 msgid "About" msgstr "Hakkında" -#: src/Gtk/MainWindow.vala:332 +#: src/Gtk/MainWindow.vala:330 msgid "Exit" msgstr "" -#: src/Gtk/MainWindow.vala:400 +#: src/Gtk/MainWindow.vala:398 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Ubuntu tabanlı dağıtımlar için çekirdek güncelleme aracı" -#: src/Gtk/MainWindow.vala:401 +#: src/Gtk/MainWindow.vala:399 msgid "Forked" msgstr "Çatallandı" -#: src/Gtk/MainWindow.vala:401 +#: src/Gtk/MainWindow.vala:399 msgid "Original" msgstr "Özgün" -#: src/Gtk/MainWindow.vala:439 +#: src/Gtk/MainWindow.vala:437 msgid "Updating kernels" msgstr "" -#: src/Gtk/MainWindow.vala:510 +#: src/Gtk/MainWindow.vala:508 msgid "available" msgstr "mevcut" -#: src/Gtk/MainWindow.vala:543 src/Gtk/MainWindow.vala:576 -#: src/Gtk/MainWindow.vala:603 +#: src/Gtk/MainWindow.vala:551 src/Gtk/MainWindow.vala:591 +#: src/Gtk/MainWindow.vala:625 msgid "DONE" msgstr "" -#: src/Gtk/ProgressWindow.vala:127 src/Gtk/TerminalWindow.vala:144 +#: src/Gtk/ProgressWindow.vala:128 src/Gtk/TerminalWindow.vala:153 msgid "Cancel" msgstr "İptal Et" @@ -413,7 +419,8 @@ msgid "Notify if a point release is available" msgstr "Nokta sürüm mevcutsa bildir" #: src/Gtk/SettingsDialog.vala:87 -msgid "(Allowing intervals in seconds for --debug)" +#, fuzzy +msgid "Seconds interval enabled for debugging" msgstr "(--debug için saniye cinsinden aralıklara izin verir)" #: src/Gtk/SettingsDialog.vala:110 @@ -473,11 +480,3 @@ msgstr "" #: src/Gtk/l.gtk.vala:44 msgid "Missing Icon" msgstr "Eksik Simge" - -#: src/lib/TeeJee.Logging.vala:43 -msgid "E" -msgstr "H" - -#: src/lib/TeeJee.Logging.vala:50 -msgid "D" -msgstr "S" diff --git a/po/uk.po b/po/uk.po index 8f796364..a4ff435a 100644 --- a/po/uk.po +++ b/po/uk.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-12 04:45-0400\n" +"POT-Creation-Date: 2023-03-14 06:30-0400\n" "PO-Revision-Date: 2019-07-25 11:00+0300\n" "Last-Translator: Serhii Golovko \n" "Language-Team: Ukranian\n" @@ -13,15 +13,15 @@ msgstr "" "X-Launchpad-Export-Date: 2016-12-13 11:48+0000\n" "X-Generator: Poedit 2.2.1\n" -#: src/Common/LinuxKernel.vala:87 +#: src/Common/LinuxKernel.vala:88 msgid "Distribution" msgstr "Дистрибутив" -#: src/Common/LinuxKernel.vala:102 +#: src/Common/LinuxKernel.vala:103 msgid "Architecture" msgstr "Системна архитектура" -#: src/Common/LinuxKernel.vala:282 +#: src/Common/LinuxKernel.vala:278 #, fuzzy msgid "Fetching individual kernel indexes" msgstr "Отримання окремих індексів ядра..." @@ -30,247 +30,256 @@ msgstr "Отримання окремих індексів ядра..." msgid "Updating from" msgstr "" -#: src/Common/LinuxKernel.vala:738 +#: src/Common/LinuxKernel.vala:344 src/Common/LinuxKernel.vala:897 +msgid "OK" +msgstr "Добре" + +#: src/Common/LinuxKernel.vala:347 src/Common/LinuxKernel.vala:900 +msgid "FAILED" +msgstr "" + +#: src/Common/LinuxKernel.vala:761 msgid "Packages Available" msgstr "Доступні пакети" -#: src/Common/LinuxKernel.vala:743 +#: src/Common/LinuxKernel.vala:766 msgid "Packages Installed" msgstr "Встановлені пакети" -#: src/Common/LinuxKernel.vala:756 src/lib/TeeJee.FileSystem.vala:121 +#: src/Common/LinuxKernel.vala:779 src/lib/TeeJee.FileSystem.vala:121 msgid "File not found" msgstr "Файл не знайдено" -#: src/Common/LinuxKernel.vala:821 +#: src/Common/LinuxKernel.vala:843 msgid "Available Kernels" msgstr "Доступні ядра" -#: src/Common/LinuxKernel.vala:828 src/Gtk/MainWindow.vala:158 +#: src/Common/LinuxKernel.vala:850 src/Gtk/MainWindow.vala:156 msgid "Installed" msgstr "Встановлено" -#: src/Common/LinuxKernel.vala:828 src/Gtk/MainWindow.vala:158 -#: src/Gtk/MainWindow.vala:501 src/Gtk/MainWindow.vala:514 +#: src/Common/LinuxKernel.vala:850 src/Gtk/MainWindow.vala:156 +#: src/Gtk/MainWindow.vala:499 src/Gtk/MainWindow.vala:512 msgid "Running" msgstr "Використовується" -#: src/Common/LinuxKernel.vala:863 +#: src/Common/LinuxKernel.vala:885 msgid "Downloading" msgstr "Завантаження" -#: src/Common/LinuxKernel.vala:882 -msgid "OK" -msgstr "Добре" - -#: src/Common/LinuxKernel.vala:885 -msgid "ERROR" -msgstr "ПОМИЛКА" - -#: src/Common/LinuxKernel.vala:899 -msgid "This kernel is already installed." +#: src/Common/LinuxKernel.vala:913 +#, fuzzy +msgid "is already installed." msgstr "Це ядро вже встановлено." -#: src/Common/LinuxKernel.vala:929 +#: src/Common/LinuxKernel.vala:943 msgid "Uninstalling selected kernels" msgstr "Видаліть конкретні ядра" -#: src/Common/LinuxKernel.vala:935 +#: src/Common/LinuxKernel.vala:949 msgid "requested" msgstr "запитуваний" -#: src/Common/LinuxKernel.vala:938 -msgid "skipping the currently booted kernel" +#: src/Common/LinuxKernel.vala:952 +#, fuzzy +msgid "not uninstalling the currently running kernel" msgstr "пропускаючи поточне завантажене ядро" -#: src/Common/LinuxKernel.vala:954 +#: src/Common/LinuxKernel.vala:968 msgid "found" msgstr "знайдено" -#: src/Common/LinuxKernel.vala:957 +#: src/Common/LinuxKernel.vala:971 msgid "No packages to un-install!" msgstr "Немає пакетів для видалення!" -#: src/Common/LinuxKernel.vala:996 +#: src/Common/LinuxKernel.vala:1019 msgid "Could not find running kernel in list" msgstr "Не вдалося знайти запущене ядро у списку!" -#: src/Common/LinuxKernel.vala:1002 +#: src/Common/LinuxKernel.vala:1024 msgid "Could not find any kernels to uninstall" msgstr "Не вдалося знайти жодне ядро для вилучення" -#: src/Common/LinuxKernel.vala:1011 -msgid "The following kernels will be uninstalled:" +#: src/Common/LinuxKernel.vala:1032 +#, fuzzy +msgid "The following kernels will be uninstalled" msgstr "Наступні ядра будуть видалені:" -#: src/Common/LinuxKernel.vala:1015 +#: src/Common/LinuxKernel.vala:1036 msgid "Continue ?" msgstr "Продовжувати ?" -#: src/Common/LinuxKernel.vala:1038 src/Console/AppConsole.vala:295 +#: src/Common/LinuxKernel.vala:1058 src/Console/AppConsole.vala:286 msgid "Latest update" msgstr "Останнє оновлення" -#: src/Common/LinuxKernel.vala:1049 src/Console/AppConsole.vala:302 +#: src/Common/LinuxKernel.vala:1069 src/Console/AppConsole.vala:293 msgid "Latest point update" msgstr "Остання точка оновлення" -#: src/Common/LinuxKernel.vala:1057 src/Console/AppConsole.vala:307 -#: src/Console/AppConsole.vala:362 +#: src/Common/LinuxKernel.vala:1077 src/Console/AppConsole.vala:298 +#: src/Console/AppConsole.vala:353 msgid "No updates found" msgstr "Оновлень не знайдено" -#: src/Common/LinuxKernel.vala:1066 +#: src/Common/LinuxKernel.vala:1086 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Встановити Ядро Версії %s ? (так/ні): " -#: src/Common/Main.vala:240 +#: src/Common/Main.vala:271 msgid "Called from" msgstr "Викликано з" -#: src/Common/Main.vala:274 +#: src/Common/Main.vala:307 msgid "Notifications are disabled" msgstr "Повідомлення вимкнено" -#: src/Common/Main.vala:312 src/Gtk/MainWindow.vala:612 -msgid "Can not reach" +#: src/Common/Main.vala:352 src/Gtk/MainWindow.vala:634 +#, fuzzy +msgid "Can not reach site" msgstr "Не може дістатися" -#: src/Common/Package.vala:57 +#: src/Common/Package.vala:58 #, fuzzy, c-format msgid "File not found: %s" msgstr "Файл не знайдено" -#: src/Console/AppConsole.vala:62 src/Gtk/AppGtk.vala:135 +#: src/Console/AppConsole.vala:49 src/Gtk/AppGtk.vala:137 msgid "Syntax" msgstr "Синтаксис" -#: src/Console/AppConsole.vala:64 +#: src/Console/AppConsole.vala:51 msgid "Commands" msgstr "Команди" -#: src/Console/AppConsole.vala:66 +#: src/Console/AppConsole.vala:53 msgid "Check for kernel updates" msgstr "Перевірити оновлення ядра" -#: src/Console/AppConsole.vala:67 +#: src/Console/AppConsole.vala:54 msgid "Check for kernel updates and notify current user" msgstr "Перевірте наявність оновлень ядра та повідомте поточного користувача" -#: src/Console/AppConsole.vala:68 +#: src/Console/AppConsole.vala:55 msgid "List all available mainline kernels" msgstr "Список усіх доступних основних ядер" -#: src/Console/AppConsole.vala:69 +#: src/Console/AppConsole.vala:56 msgid "List installed kernels" msgstr "Список встановлених ядер" -#: src/Console/AppConsole.vala:70 +#: src/Console/AppConsole.vala:57 msgid "Install latest mainline kernel" msgstr "Встановіть останнє основне ядро" -#: src/Console/AppConsole.vala:71 +#: src/Console/AppConsole.vala:58 msgid "Install latest point update for current series" msgstr "Встановіть останню точку оновлення для поточної серії" -#: src/Console/AppConsole.vala:72 +#: src/Console/AppConsole.vala:59 msgid "Install specified mainline kernel" msgstr "Встановіть конкретне основне ядро" -#: src/Console/AppConsole.vala:73 +#: src/Console/AppConsole.vala:60 msgid "Uninstall specified kernel" msgstr "Видаліть конкретні ядра" -#: src/Console/AppConsole.vala:74 -msgid "Uninstall kernels older than the running kernel" +#: src/Console/AppConsole.vala:61 +#, fuzzy +msgid "Uninstall kernels older than the latest installed" msgstr "Видаліть ядра, старші за запущене ядро" -#: src/Console/AppConsole.vala:75 +#: src/Console/AppConsole.vala:62 msgid "Download specified kernels" msgstr "Завантажте конкретні ядра" -#: src/Console/AppConsole.vala:76 +#: src/Console/AppConsole.vala:63 msgid "Delete cached info about available kernels" msgstr "Видалити кешовану інформацію про доступні ядра" -#: src/Console/AppConsole.vala:78 src/Gtk/AppGtk.vala:137 +#: src/Console/AppConsole.vala:65 src/Gtk/AppGtk.vala:139 msgid "Options" msgstr "Параметри" -#: src/Console/AppConsole.vala:80 +#: src/Console/AppConsole.vala:67 msgid "Include unstable and RC releases" msgstr "Включати нестабільні і RC" -#: src/Console/AppConsole.vala:81 +#: src/Console/AppConsole.vala:68 msgid "Exclude unstable and RC releases" msgstr "Виключити нестабільні та RC випуски" -#: src/Console/AppConsole.vala:82 +#: src/Console/AppConsole.vala:69 msgid "Enable verbose debugging output" msgstr "Увімкнути вивід налагодження" -#: src/Console/AppConsole.vala:83 +#: src/Console/AppConsole.vala:70 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "Так для всіх підказок (неінтерактивний режим)" -#: src/Console/AppConsole.vala:86 +#: src/Console/AppConsole.vala:73 msgid "A version string taken from the output of --list" msgstr "Рядок версій, взятий з виводу --list" -#: src/Console/AppConsole.vala:87 -msgid "" -"One or more version strings (comma-separated) taken from the output of --list" -msgstr "Одна або кілька рядків версії (розділені комами) з виводу --list" +#: src/Console/AppConsole.vala:74 +msgid "One or more, comma-seperated" +msgstr "" -#: src/Console/AppConsole.vala:164 src/Gtk/AppGtk.vala:121 +#: src/Console/AppConsole.vala:75 +#, fuzzy +msgid "The currently running kernel will always be ignored" +msgstr "Наступні ядра будуть видалені:" + +#: src/Console/AppConsole.vala:153 src/Gtk/AppGtk.vala:123 msgid "Unknown option" msgstr "Невідомий параметр" -#: src/Console/AppConsole.vala:165 src/Console/AppConsole.vala:253 -#: src/Console/AppConsole.vala:281 +#: src/Console/AppConsole.vala:154 src/Console/AppConsole.vala:244 +#: src/Console/AppConsole.vala:272 msgid "Run" msgstr "Запуск" -#: src/Console/AppConsole.vala:165 +#: src/Console/AppConsole.vala:154 msgid "to list all options" msgstr "Показати усі параметри" -#: src/Console/AppConsole.vala:221 src/Console/AppConsole.vala:261 +#: src/Console/AppConsole.vala:212 src/Console/AppConsole.vala:252 msgid "No kernels specified" msgstr "Ядра не вказані" -#: src/Console/AppConsole.vala:227 +#: src/Console/AppConsole.vala:218 msgid "Multiple kernels selected for installation. Select only one." msgstr "Для встановлення вибрано кілька ядер. Виберіть лише одну." -#: src/Console/AppConsole.vala:250 +#: src/Console/AppConsole.vala:241 msgid "Could not find requested version" msgstr "Не вдалося знайти запитувану версію" -#: src/Console/AppConsole.vala:253 +#: src/Console/AppConsole.vala:244 msgid "and use a version string listed in first column" msgstr "і використовувати рядок версій, вказаний у першому стовпці" -#: src/Console/AppConsole.vala:280 +#: src/Console/AppConsole.vala:271 msgid "Command not specified" msgstr "Команда не вказана" -#: src/Console/AppConsole.vala:281 +#: src/Console/AppConsole.vala:272 msgid "to list all commands" msgstr "щоб відобразити всі команди" -#: src/Console/AppConsole.vala:335 src/Gtk/SettingsDialog.vala:166 +#: src/Console/AppConsole.vala:326 src/Gtk/SettingsDialog.vala:166 msgid "Show" msgstr "Показати" -#: src/Console/AppConsole.vala:340 src/Console/AppConsole.vala:352 +#: src/Console/AppConsole.vala:331 src/Console/AppConsole.vala:343 #, c-format msgid "Kernel %s Available" msgstr "Ядро %s Доступне" -#: src/Console/AppConsole.vala:342 src/Console/AppConsole.vala:354 -#: src/Gtk/MainWindow.vala:269 +#: src/Console/AppConsole.vala:333 src/Console/AppConsole.vala:345 +#: src/Gtk/MainWindow.vala:267 msgid "Install" msgstr "Встановити" @@ -282,7 +291,7 @@ msgstr "Творці" msgid "Back" msgstr "Назад" -#: src/Gtk/AboutWindow.vala:287 src/Gtk/TerminalWindow.vala:154 +#: src/Gtk/AboutWindow.vala:287 src/Gtk/TerminalWindow.vala:163 msgid "Close" msgstr "Закрити" @@ -310,84 +319,84 @@ msgstr "Документатори" msgid "Third Party Inclusions" msgstr "Включення третіх осіб" -#: src/Gtk/AppGtk.vala:135 +#: src/Gtk/AppGtk.vala:137 msgid "options" msgstr "параметри" -#: src/Gtk/AppGtk.vala:139 +#: src/Gtk/AppGtk.vala:141 msgid "Print debug information" msgstr "Роздрукувати зневадження" -#: src/Gtk/AppGtk.vala:140 +#: src/Gtk/AppGtk.vala:142 msgid "Show all options" msgstr "Показати усі параметри" -#: src/Gtk/MainWindow.vala:115 +#: src/Gtk/MainWindow.vala:113 msgid "Kernel" msgstr "Ядро" -#: src/Gtk/MainWindow.vala:145 +#: src/Gtk/MainWindow.vala:143 msgid "Status" msgstr "Стан" -#: src/Gtk/MainWindow.vala:279 +#: src/Gtk/MainWindow.vala:277 msgid "Uninstall" msgstr "Видалити" -#: src/Gtk/MainWindow.vala:289 +#: src/Gtk/MainWindow.vala:287 msgid "Changes" msgstr "Зміни" -#: src/Gtk/MainWindow.vala:311 +#: src/Gtk/MainWindow.vala:309 msgid "Uninstall Old" msgstr "Видалити старе" -#: src/Gtk/MainWindow.vala:312 +#: src/Gtk/MainWindow.vala:310 msgid "Uninstall kernels older than running kernel" msgstr "Видалити ядра, старіші за запущене ядро" -#: src/Gtk/MainWindow.vala:317 +#: src/Gtk/MainWindow.vala:315 msgid "Reload" msgstr "Перезавантажити" -#: src/Gtk/MainWindow.vala:322 src/Gtk/SettingsDialog.vala:50 +#: src/Gtk/MainWindow.vala:320 src/Gtk/SettingsDialog.vala:50 msgid "Settings" msgstr "Налаштування" -#: src/Gtk/MainWindow.vala:327 +#: src/Gtk/MainWindow.vala:325 msgid "About" msgstr "Про программу" -#: src/Gtk/MainWindow.vala:332 +#: src/Gtk/MainWindow.vala:330 msgid "Exit" msgstr "Вихід" -#: src/Gtk/MainWindow.vala:400 +#: src/Gtk/MainWindow.vala:398 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Програма оновлення ядра для дистрибутивів на базі Ubuntu" -#: src/Gtk/MainWindow.vala:401 +#: src/Gtk/MainWindow.vala:399 msgid "Forked" msgstr "Двоєний" -#: src/Gtk/MainWindow.vala:401 +#: src/Gtk/MainWindow.vala:399 msgid "Original" msgstr "Оригінал" -#: src/Gtk/MainWindow.vala:439 +#: src/Gtk/MainWindow.vala:437 msgid "Updating kernels" msgstr "" -#: src/Gtk/MainWindow.vala:510 +#: src/Gtk/MainWindow.vala:508 msgid "available" msgstr "доступний" -#: src/Gtk/MainWindow.vala:543 src/Gtk/MainWindow.vala:576 -#: src/Gtk/MainWindow.vala:603 +#: src/Gtk/MainWindow.vala:551 src/Gtk/MainWindow.vala:591 +#: src/Gtk/MainWindow.vala:625 msgid "DONE" msgstr "ГОТОВО" -#: src/Gtk/ProgressWindow.vala:127 src/Gtk/TerminalWindow.vala:144 +#: src/Gtk/ProgressWindow.vala:128 src/Gtk/TerminalWindow.vala:153 msgid "Cancel" msgstr "Відміна" @@ -404,7 +413,8 @@ msgid "Notify if a point release is available" msgstr "Повідомити, чи доступний невеликий випуск" #: src/Gtk/SettingsDialog.vala:87 -msgid "(Allowing intervals in seconds for --debug)" +#, fuzzy +msgid "Seconds interval enabled for debugging" msgstr "(Дозволити інтервали в секундах для --debug)" #: src/Gtk/SettingsDialog.vala:110 @@ -464,11 +474,3 @@ msgstr "" #: src/Gtk/l.gtk.vala:44 msgid "Missing Icon" msgstr "Нема значка" - -#: src/lib/TeeJee.Logging.vala:43 -msgid "E" -msgstr "E" - -#: src/lib/TeeJee.Logging.vala:50 -msgid "D" -msgstr "D" diff --git a/src/Common/DownloadManager.vala b/src/Common/DownloadManager.vala index 41ff9ead..4b660564 100644 --- a/src/Common/DownloadManager.vala +++ b/src/Common/DownloadManager.vala @@ -1,22 +1,20 @@ -using TeeJee.Logging; using TeeJee.FileSystem; using TeeJee.ProcessHelper; using TeeJee.Misc; - +using l.misc; public class DownloadTask : AsyncTask { // settings - public bool status_in_kb = false; public int timeout_secs = 60; - public int connect_timeout = App.connect_timeout_seconds; - public int max_concurrent = App.concurrent_downloads; + private int connect_timeout = App.connect_timeout_seconds; + private int max_concurrent = App.concurrent_downloads; + private string all_proxy = App.all_proxy; // download lists private Gee.ArrayList downloads; private Gee.HashMap map; - private Gee.HashMap regex = null; public DownloadTask() { @@ -25,9 +23,8 @@ public class DownloadTask : AsyncTask { downloads = new Gee.ArrayList(); map = new Gee.HashMap(); - regex = new Gee.HashMap(); - + try { //Sample: //[#4df0c7 19283968B/45095814B(42%) CN:1 DL:105404B ETA:4m4s] @@ -41,22 +38,17 @@ public class DownloadTask : AsyncTask { regex["file-status"] = new Regex("""^([0-9A-Za-z]+)\|(OK|ERR)[ ]*\|[ ]*(n\/a|[0-9.]+[A-Za-z\/]+)\|(.*)"""); } catch (Error e) { - log_error (e.message); + vprint(e.message,1,stderr); } } // execution ---------------------------- public void add_to_queue(DownloadItem item) { - item.task = this; - downloads.add(item); - // set gid - 16 character hex string in lowercase - do { - item.gid = random_string(16,"0123456789abcdef").down(); - } + do { item.gid = random_string(16,"0123456789abcdef"); } while (map.has_key(item.gid_key)); map[item.gid_key] = item; @@ -68,13 +60,9 @@ public class DownloadTask : AsyncTask { } public void execute() { - prepare(); - begin(); - - if (status == AppStatus.RUNNING) { - } + if (status == AppStatus.RUNNING) {} } public void prepare() { @@ -84,8 +72,8 @@ public class DownloadTask : AsyncTask { private string build_script() { - log_debug("build_script():"); - log_debug("working_dir="+working_dir); + vprint("build_script():",2); + vprint("working_dir: '"+working_dir+"'",2); string list = ""; string list_file = working_dir+"/download.list"; foreach (var item in downloads) { @@ -112,9 +100,9 @@ public class DownloadTask : AsyncTask { + " --human-readable=false" ; - if (App.all_proxy!="") cmd += " --all-proxy='"+App.all_proxy+"'"; + if (all_proxy!="") cmd += " --all-proxy='"+all_proxy+"'"; - log_debug(cmd); + vprint(cmd,2); return cmd; } @@ -177,10 +165,9 @@ public class DownloadTask : AsyncTask { item.bytes_received = received; if (item.bytes_total == 0) item.bytes_total = total; item.status = "RUNNING"; - status_line = item.status_line(); + //status_line = item.status_line(); } - //log_debug(status_line); } else { //log_debug("unmatched: '%s'".printf(line)); @@ -216,7 +203,7 @@ public class DownloadItem : GLib.Object public string gid_key { owned get { - return gid.substring(0,6);; + return gid.substring(0,6); } } @@ -226,20 +213,7 @@ public class DownloadItem : GLib.Object source_uri = _source_uri; } - public string status_line() { - //return bytes_received.to_string()+"/"+bytes_total.to_string(); - - if (task.status_in_kb) { - return "%s / %s".printf( - format_file_size(bytes_received, false, "", true, 1), - format_file_size(bytes_total, false, "", true, 1) - ).replace("\n",""); - } else { - return "%s / %s".printf( - format_file_size(bytes_received), - format_file_size(bytes_total) - ).replace("\n",""); - } - - } + //public string status_line() { + // return b2h(bytes_received) + " / " + b2h(bytes_total); + //} } diff --git a/src/Common/LinuxKernel.vala b/src/Common/LinuxKernel.vala index cb7f0f7e..8ac2d274 100644 --- a/src/Common/LinuxKernel.vala +++ b/src/Common/LinuxKernel.vala @@ -1,9 +1,10 @@ -using TeeJee.Logging; + using TeeJee.FileSystem; using TeeJee.JsonHelper; using TeeJee.ProcessHelper; using TeeJee.Misc; using l.time; +using l.misc; public class LinuxKernel : GLib.Object, Gee.Comparable { @@ -57,8 +58,8 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { // global progress ------------ public static string status_line; - public static int64 progress_total; - public static int64 progress_count; + public static int progress_total; + public static int progress_count; public static bool cancelled; public static int threshold_major = 0; @@ -77,14 +78,14 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { // dep: lsb_release public static string check_distribution() { - log_debug("check_distribution()"); + vprint("check_distribution()",2); string dist = ""; string std_out, std_err; int status = exec_sync("lsb_release -sd", out std_out, out std_err); if ((status == 0) && (std_out != null)) { dist = std_out.strip(); - log_msg(_("Distribution") + ": %s".printf(dist)); + vprint(_("Distribution") + ": %s".printf(dist)); } return dist; @@ -92,14 +93,14 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { // dep: dpkg public static string check_package_architecture() { - log_debug("check_package_architecture()"); + vprint("check_package_architecture()",2); string arch = ""; string std_out, std_err; int status = exec_sync("dpkg --print-architecture", out std_out, out std_err); if ((status == 0) && (std_out != null)) { arch = std_out.strip(); - log_msg(_("Architecture") + ": %s".printf(arch)); + vprint(_("Architecture") + ": %s".printf(arch)); } return arch; @@ -107,15 +108,14 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { // dep: uname public static string check_running_kernel() { - log_debug("check_running_kernel()"); + vprint("check_running_kernel()",2); string ver = ""; string std_out; exec_sync("uname -r", out std_out, null); - log_debug(std_out); ver = std_out.strip().replace("\n",""); - log_msg("Running kernel" + ": %s".printf(ver)); + vprint("Running kernel" + ": %s".printf(ver)); return ver; } @@ -138,28 +138,28 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { //linux-image-extra-3.4.75-030475-generic_3.4.75-030475.201312201255_amd64.deb rex_modules = new Regex("(?:" + NATIVE_ARCH + """/|>)?linux-modules-[a-zA-Z0-9.\-_]*-generic_[a-zA-Z0-9.\-]*_""" + NATIVE_ARCH + ".deb"); } catch (Error e) { - log_error (e.message); + vprint(e.message,1,stderr); } } public static bool check_if_initialized() { bool ok = (NATIVE_ARCH.length > 0); if (!ok){ - log_error("LinuxKernel: Class should be initialized before use!"); + vprint("LinuxKernel: Class should be initialized before use!",1,stderr); exit(1); } return ok; } public static void delete_cache() { - log_debug("delete_cache()"); + vprint("delete_cache()",2); kernel_list.clear(); dir_delete(CACHE_DIR); } // constructor public LinuxKernel(string _name, bool _is_mainline) { - //log_debug("LinuxKernel("+_name+")"); + vprint("LinuxKernel("+_name+","+_is_mainline.to_string()+")",4); // _name, kname includes the leading "v" and everything after the version number // same as what's in the urls on the kernel ppa index.html @@ -189,7 +189,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { public delegate void Notifier(GLib.Timer timer, ref long count, bool last = false); public static void query(bool wait, owned Notifier? notifier = null) { - log_debug("LinuxKernel.query()"); + vprint("LinuxKernel.query()",2); check_if_initialized(); kernel_list.clear(); @@ -197,16 +197,14 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { try { cancelled = false; var worker = new Thread.try(null, () => query_thread((owned) notifier) ); - - if (wait) - worker.join(); + if (wait) worker.join(); } catch (Error e) { - log_error (e.message); + vprint(e.message,1,stderr); } } private static bool query_thread(owned Notifier? notifier) { - log_debug("query_thread()"); + vprint("query_thread()",2); App.progress_total = 1; App.progress_count = 0; @@ -268,29 +266,28 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { // process the download list if ((downloads.size > 0) && App.connection_status) { - progress_total = (int64) downloads.size; + progress_total = downloads.size; var mgr = new DownloadTask(); // add download list to queue foreach (var item in downloads) mgr.add_to_queue(item); - mgr.status_in_kb = true; - mgr.prg_count_total = progress_total; // start downloading mgr.execute(); - print_progress_bar_start(_("Fetching individual kernel indexes")+"..."); + vprint(_("Fetching individual kernel indexes")+"..."); // while downloading while (mgr.is_running()) { progress_count = mgr.prg_count; - print_progress_bar((progress_count * 1.0) / progress_total); + //pbar(progress_count,progress_total,"files"); + pbar(progress_count,progress_total); sleep(250); if (notifier != null) notifier(timer, ref count); } // done downloading - print_progress_bar_finish(); + pbar(0,0); // load the index.html files we just added to cache foreach (var k in kernels_to_update) k.load_cached_page(); @@ -309,6 +306,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { // download the main index.html listing all mainline kernels private static bool download_index() { + vprint("download_index()",2); check_if_initialized(); if (!App.check_internet_connectivity()) return false; @@ -318,32 +316,42 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { dir_create(file_parent(index_page)); file_delete(index_page+"_"); - var item = new DownloadItem(PPA_URI, CACHE_DIR, "index.html_"); + // preserve the old index in case the dl fails + string tbn = random_string(); + string tfn = CACHE_DIR+"/"+tbn; + vprint("+ DownloadItem("+PPA_URI+","+CACHE_DIR+","+tbn+")",4); + var item = new DownloadItem(PPA_URI, CACHE_DIR, tbn); var mgr = new DownloadTask(); mgr.add_to_queue(item); - mgr.status_in_kb = true; - mgr.execute(); - var msg = _("Updating from")+":\n"+PPA_URI; - log_msg(msg); - //status_line = msg.strip(); + vprint(_("Updating from")+": '"+PPA_URI+"'"); + mgr.execute(); while (mgr.is_running()) sleep(500); - if (file_exists(index_page+"_")) { - file_move(index_page+"_",index_page); + vprint("waiting for '"+tfn+"'",4); + // brute force until I can figure out the right way to deal with AsyncTask + int i = 0; + while (!file_exists(tfn) && i++ < 100) { + vprint("not yet",4); + sleep(500); + } + + if (file_exists(tfn)) { + vprint("got it",4); + file_move(tfn,index_page); App.index_is_fresh=true; - log_msg("OK"); + vprint(_("OK")); return true; } else { - log_error("ERR"); + vprint(_("FAILED"),1,stderr); return false; } } // read the main index.html listing all kernels private static void load_index() { - log_debug("load_index()"); + vprint("load_index()",2); if (!file_exists(index_page)) return; string txt = file_read(index_page); @@ -362,28 +370,28 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { if (!k.is_valid) continue; if (k.is_unstable && App.hide_unstable) continue; kernel_list.add(k); - log_debug("kernel_list.add("+k.kname+")"); + vprint("kernel_list.add("+k.kname+")",3); } kernel_list.sort((a,b) => { return a.compare_to(b) * -1; }); kernel_latest_available = kernel_list[0]; - log_debug("latest_available: "+kernel_latest_available.version_main); + vprint("latest_available: "+kernel_latest_available.version_main,2); } catch (Error e) { - log_error (e.message); + vprint(e.message,1,stderr); } } public static void check_installed() { - log_debug("check_installed()"); + vprint("check_installed()",2); var pkg_versions = new Gee.ArrayList(); foreach (var pkg in Package.dpkg_list) { if (!pkg.pname.has_prefix("linux-image-")) continue; - log_msg("Found installed : "+pkg.version); + vprint("Found installed : "+pkg.version); pkg_versions.add(pkg.version); // temp kernel object for current pkg @@ -408,7 +416,8 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { // current package was not found in the mainline list // so it's a distro kernel, add a kernel_list entry if (!found) { - log_debug("kernel_list.add("+pkern.kname+") (distro kernel)"); + //vprint("kernel_list.add("+pkern.kname+") (distro kernel)",3); // not always true, --uninstall-old thinks all are + vprint("kernel_list.add("+pkern.kname+")",3); kernel_list.add(pkern); } } @@ -485,13 +494,13 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { } // log_debug("latest_available: "+kernel_latest_available.version_main); - log_debug("latest_installed: "+kernel_latest_installed.version_main); - log_debug("oldest_installed: "+kernel_oldest_installed.version_main); + vprint("latest_installed: "+kernel_latest_installed.version_main,2); + vprint("oldest_installed: "+kernel_oldest_installed.version_main,2); } // scan kernel_list for versions newer than latest installed public static void check_updates() { - log_debug("check_updates()"); + vprint("check_updates()",2); kernel_update_major = null; kernel_update_minor = null; @@ -526,7 +535,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { // helpers public static void update_threshold_major() { - log_debug("update_threshold_major()"); + vprint("update_threshold_major()",2); //Package.update_dpkg_list(); @@ -541,7 +550,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { threshold_major = kernel_latest_available.version_maj - App.previous_majors; if (kernel_oldest_installed.version_maj < threshold_major) threshold_major = kernel_oldest_installed.version_maj; - log_debug("threshold_major %d".printf(threshold_major)); + vprint("threshold_major %d".printf(threshold_major),2); } public void split_version_string(string _version_string, out string ver_main) { @@ -607,8 +616,11 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { public int compare_to(LinuxKernel b) { LinuxKernel a = this; - string[] arr_a = a.version_main.split_set (".-_"); - string[] arr_b = b.version_main.split_set (".-_"); + //vprint("compare_to()",5); + string[] arr_a = a.version_main.split_set(".-_"); + string[] arr_b = b.version_main.split_set(".-_"); + //vprint("a "+a.version_main,5); + //vprint("b "+b.version_main,5); int i = 0; int x, y; @@ -617,6 +629,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { while ((i < arr_a.length) && (i < arr_b.length)) { // continue if equal + //vprint("("+arr_a[i]+" == "+arr_b[i]+")",5); if (arr_a[i] == arr_b[i]) { i++; continue; @@ -627,27 +640,36 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { y = int.parse(arr_b[i]); if ((x > 0) && (y > 0)) { // both are numbers + //vprint(arr_a[i]+" - "+arr_b[i]+" = return "+(x-y).to_string(),5); return (x - y); } else if ((x == 0) && (y == 0)) { // BKW - this is one place where "-rc3" gets compared to "-rc4" // both are strings - //log_debug("strcmp("+arr_a[i]+","+arr_b[i]+")"); + //vprint("strcmp("+arr_a[i]+","+arr_b[i]+") = return "+strcmp(arr_a[i], arr_b[i]).to_string(),5); return strcmp(arr_a[i], arr_b[i]); } else { - if (x > 0) return 1; + //vprint("("+arr_a[i]+">0)",5); + if (x > 0) { + //vprint("return 1",5); + return 1; + } + //vprint("return -1",5); return -1; } } - // one array has less parts than the other and all corresponding parts are equal + // if we got here + // one array has less parts than the other, and all corresponding parts are equal if (i < arr_a.length) { + //vprint("a ("+arr_a[i]+">0)",5); x = int.parse(arr_a[i]); if (x > 0) return 1; return -1; } if (i < arr_b.length) { + //vprint("b ("+arr_b[i]+">0)",5); y = int.parse(arr_b[i]); if (y > 0) return -1; return 1; @@ -662,12 +684,13 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { } public void set_pkg_list() { - log_debug("set_pkg_list() kname:"+kname+" kver:"+kver+" version_main:"+version_main); + vprint("set_pkg_list()",2); + vprint("kname:"+kname+" kver:"+kver+" version_main:"+version_main,3); foreach(var pkg in Package.dpkg_list) { if (!pkg.pname.has_prefix("linux-")) continue; if (pkg.version == kver) { pkg_list[pkg.pname] = pkg.pname; - log_debug("Package: "+pkg.pname); + vprint("Package: "+pkg.pname,2); } } } @@ -748,12 +771,12 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { // load private void load_cached_page() { - //log_debug("load_cached_page() '"+cached_page+"'"); + vprint("load_cached_page(): '"+cached_page+"'",4); var list = new Gee.HashMap(); if (!file_exists(cached_page)) { - log_error("load_cached_page(): " + _("File not found") + ": %s".printf(cached_page)); + vprint("load_cached_page(): " + _("File not found") + ": %s".printf(cached_page),1,stderr); return; } @@ -807,7 +830,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { if (deb_image.length == 0) mark_invalid(); } catch (Error e) { - log_error (e.message); + vprint(e.message,1,stderr); } deb_list = list; @@ -816,10 +839,9 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { // actions public static void print_list() { - log_msg(""); - log_draw_line(); - log_msg(_("Available Kernels")); - log_draw_line(); + vprint("----------------------------------------------------------------"); + vprint(_("Available Kernels")); + vprint("----------------------------------------------------------------"); foreach(var k in kernel_list) { if (!k.is_valid) continue; @@ -836,12 +858,12 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { // kern.kname "v5.6.11" -> cache download dir names, needed for --install, --remove // kern.kver or kern.version_main "5.6.11" -> most displays & references //log_msg("%-32s %-32s %s".printf(kern.kname, kern.version_main, desc)); - log_msg("%-32s %s".printf(k.version_main, desc)); + vprint("%-32s %s".printf(k.version_main, desc)); } } public static bool download_kernels(Gee.ArrayList selected_kernels) { - foreach (var kern in selected_kernels) kern.download_packages(); + foreach (var k in selected_kernels) k.download_packages(); return true; } @@ -860,32 +882,24 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { dir_create(dl_dir); - stdout.printf("\n" + _("Downloading") + ": '%s'... \n".printf(file_name)); - stdout.flush(); + vprint(_("Downloading")+": "+file_name); var item = new DownloadItem(deb_list[file_name], file_parent(file_path), file_basename(file_path)); - var mgr = new DownloadTask(); mgr.add_to_queue(item); - mgr.status_in_kb = true; mgr.execute(); while (mgr.is_running()) { - + pbar(item.bytes_received,item.bytes_total); sleep(200); - - stdout.printf("\r%-60s".printf(mgr.status_line.replace("\n",""))); - stdout.flush(); } - if (file_exists(file_path)) { - stdout.printf("\r%-70s\n".printf(_("OK"))); - stdout.flush(); - } else { - stdout.printf("\r%-70s\n".printf(_("ERROR"))); - stdout.flush(); + string r = _("OK"); + if (!file_exists(file_path)) { ok = false; + r = _("FAILED"); } + pbar(0,0); } return ok; @@ -896,7 +910,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { // check if installed if (is_installed) { - log_error(_("This kernel is already installed.")); + vprint(version_main+" "+_("is already installed."),1,stderr); return false; } @@ -926,22 +940,22 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { bool ok = false; int status = -1; - log_debug(_("Uninstalling selected kernels")+":"); + vprint(_("Uninstalling selected kernels")+":"); string cmd = "pkexec env DISPLAY=${DISPLAY} XAUTHORITY=${XAUTHORITY} dpkg --purge"; string found = ""; foreach (var k in selected_kernels) { - log_debug(_("requested")+" "+k.version_main); + vprint(_("requested")+" "+k.version_main); if (k.is_running) { - log_error(_("skipping the currently booted kernel")); + vprint("! "+_("not uninstalling the currently running kernel")+" "+k.version_main); continue; } found = ""; foreach (var pkg_name in k.pkg_list.values) { - //log_debug(pkg_name); + //vprint(pkg_name,5); if ( !pkg_name.has_prefix("linux-tools") && !pkg_name.has_prefix("linux-libc") @@ -951,16 +965,16 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { ok = true; } } - log_debug(_("found")+":"+found); + vprint(_("found")+" : "+found,2); if (!ok) { - log_error(_("No packages to un-install!")); + vprint(_("No packages to un-install!"),1,stderr); return false; } } - log_debug(cmd); + vprint(cmd,2); status = Posix.system(cmd); ok = (status == 0); @@ -968,6 +982,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { } public static void kunin_old(bool confirm) { + vprint("kunin_old()",2); download_index(); load_index(); @@ -981,26 +996,32 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { bool found_running_kernel = false; + //vprint("latest_installed: "+kernel_latest_installed.version_main,4); + //vprint("running_kernel: "+kern_running.version_main,4); + foreach(var k in LinuxKernel.kernel_list) { if (!k.is_valid) continue; if (!k.is_installed) continue; if (k.version_main == kern_running.version_main) { found_running_kernel = true; + //vprint(k.version_main+" == running_kernel -> skip",4); + continue; + } + if (k.compare_to(kernel_latest_installed) >= 0) { + //vprint(k.version_main+" >= "+kernel_latest_installed.version_main+" -> skip ",4); continue; } - if (k.compare_to(kernel_latest_installed) > 0) continue; + //vprint(k.version_main+" < "+kernel_latest_installed.version_main+" -> delete",4); list.add(k); } if (!found_running_kernel) { - log_error(_("Could not find running kernel in list")); - //log_msg(string.nfill(70, '-')); + vprint(_("Could not find running kernel in list"),1,stderr); return; } if (list.size == 0){ - log_msg(_("Could not find any kernels to uninstall")); - //log_msg(string.nfill(70, '-')); + vprint(_("Could not find any kernels to uninstall"),2); return; } @@ -1008,14 +1029,13 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { if (confirm) { - var message = "\n%s:\n".printf(_("The following kernels will be uninstalled:")); + var message = "\n"+_("The following kernels will be uninstalled")+"\n"; - foreach (var kern in list) message += " ▰ %s\n".printf(kern.version_main); + foreach (var k in list) message += " ▰ %s\n".printf(k.version_main); message += "\n%s (y/n): ".printf(_("Continue ?")); - stdout.printf(message); - stdout.flush(); + vprint(message,0); int ch = stdin.getc(); @@ -1027,7 +1047,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { } public static void kinst_latest(bool point_update, bool confirm) { - log_debug("kinst_latest()"); + vprint("kinst_latest()",2); query(true); @@ -1036,7 +1056,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { if ((kern_major != null) && !point_update) { var message = "%s: %s".printf(_("Latest update"), kern_major.version_main); - log_msg(message); + vprint(message); kinst_update(kern_major, confirm); return; @@ -1047,31 +1067,30 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { if (kern_minor != null) { var message = "%s: %s".printf(_("Latest point update"), kern_minor.version_main); - log_msg(message); + vprint(message); kinst_update(kern_minor, confirm); return; } if ((kern_major == null) && (kern_minor == null)) { - log_msg(_("No updates found")); + vprint(_("No updates found")); } } - public static void kinst_update(LinuxKernel kern, bool confirm) { + public static void kinst_update(LinuxKernel k, bool confirm) { - if (confirm){ + if (confirm) { - var message = "\n" + _("Install Kernel Version %s ? (y/n): ").printf(kern.version_main); - stdout.printf(message); - stdout.flush(); + var message = "\n" + _("Install Kernel Version %s ? (y/n): ").printf(k.version_main); + vprint(message,0); int ch = stdin.getc(); if (ch != 'y') return; } - kern.kinst(); + k.kinst(); } } diff --git a/src/Common/Main.vala b/src/Common/Main.vala index 5167c9db..024cc98c 100644 --- a/src/Common/Main.vala +++ b/src/Common/Main.vala @@ -25,12 +25,12 @@ using GLib; using Gee; using Json; -using TeeJee.Logging; using TeeJee.FileSystem; using TeeJee.JsonHelper; using TeeJee.ProcessHelper; using TeeJee.Misc; using l.time; +using l.misc; [CCode(cname="BRANDING_SHORTNAME")] extern const string BRANDING_SHORTNAME; [CCode(cname="BRANDING_LONGNAME")] extern const string BRANDING_LONGNAME; @@ -66,18 +66,20 @@ public class Main : GLib.Object { // global progress ---------------- public string status_line = ""; - public int64 progress_total = 0; - public int64 progress_count = 0; + public int progress_total = 0; + public int progress_count = 0; public bool cancelled = false; // state flags ---------- + public int VERBOSE = 1; public bool GUI_MODE = false; public string command = "list"; public string requested_version = ""; public bool connection_checked = false; public bool connection_status = true; public bool index_is_fresh = false; + public int window_width = 800; public int window_height = 600; public int _window_width = 800; @@ -87,22 +89,34 @@ public class Main : GLib.Object { public int _window_x = -1; public int _window_y = -1; + public int term_width = 1100; + public int term_height = 600; + public int _term_width = 1100; + public int _term_height = 600; +/* + public int term_x = -1; + public int term_y = -1; + public int _term_x = -1; + public int _term_y = -1; +*/ public string ppa_uri = DEFAULT_PPA_URI; public string all_proxy = ""; - public bool notify_major = true; - public bool notify_minor = true; + public bool notify_major = false; + public bool notify_minor = false; public bool hide_unstable = true; public int previous_majors = 0; public int notify_interval_unit = 0; - public int notify_interval_value = 2; + public int notify_interval_value = 4; public int connect_timeout_seconds = 15; - public int concurrent_downloads = 4; + public int concurrent_downloads = 1; public bool confirm = true; // constructors ------------ public Main(string[] arg0, bool _gui_mode) { GUI_MODE = _gui_mode; + get_env(); + vprint(BRANDING_SHORTNAME+" "+BRANDING_VERSION); init_paths(); load_app_config(); Package.initialize(); @@ -111,11 +125,21 @@ public class Main : GLib.Object { // helpers ------------ + public void get_env() { + if (Environment.get_variable("VERBOSE")!=null) { + string s = Environment.get_variable("VERBOSE").down(); + if (s=="false") s = "0"; + if (s=="true") s = "1"; + VERBOSE = int.parse(s); + l.misc.VERBOSE = VERBOSE; + } + } + public void init_paths() { // user info - user_login = GLib.Environment.get_user_name(); - user_home = GLib.Environment.get_home_dir(); + user_login = Environment.get_user_name(); + user_home = Environment.get_home_dir(); APP_CONF_DIR = user_home + "/.config/" + BRANDING_SHORTNAME; APP_CONFIG_FILE = APP_CONF_DIR + "/config.json"; @@ -132,6 +156,7 @@ public class Main : GLib.Object { } public void save_app_config() { + vprint("save_app_config()",2); var config = new Json.Object(); config.set_string_member("ppa_uri", ppa_uri); @@ -148,6 +173,10 @@ public class Main : GLib.Object { config.set_string_member("window_height", window_height.to_string()); config.set_string_member("window_x", window_x.to_string()); config.set_string_member("window_y", window_y.to_string()); + config.set_string_member("term_width", term_width.to_string()); + config.set_string_member("term_height", term_height.to_string()); +// config.set_string_member("term_x", term_x.to_string()); +// config.set_string_member("term_y", term_y.to_string()); var json = new Json.Generator(); json.pretty = true; @@ -156,13 +185,11 @@ public class Main : GLib.Object { node.set_object(config); json.set_root(node); - try{ - json.to_file(APP_CONFIG_FILE); - } catch (Error e) { - log_error (e.message); - } + dir_create(APP_CONF_DIR); + try { json.to_file(APP_CONFIG_FILE); } + catch (Error e) { vprint(e.message,1,stderr); } - log_debug("Wrote config file: %s".printf(APP_CONFIG_FILE)); + vprint("Wrote config file: %s".printf(APP_CONFIG_FILE),2); update_notification_files(); } @@ -173,49 +200,53 @@ public class Main : GLib.Object { } public void load_app_config() { - //log_msg("load_app_config()"); + vprint("load_app_config()",2); var parser = new Json.Parser(); - try { - parser.load_from_file(APP_CONFIG_FILE); - } catch (Error e) { - log_error (e.message); - } + if (!file_exists(APP_CONFIG_FILE)) save_app_config(); + + try { parser.load_from_file(APP_CONFIG_FILE); } + catch (Error e) { vprint(e.message,1,stderr); } var node = parser.get_root(); var config = node.get_object(); ppa_uri = json_get_string(config, "ppa_uri", DEFAULT_PPA_URI); - all_proxy = json_get_string(config, "all_proxy", ""); - notify_major = json_get_bool(config, "notify_major", true); - notify_minor = json_get_bool(config, "notify_minor", true); - notify_interval_unit = json_get_int(config, "notify_interval_unit", 0); - notify_interval_value = json_get_int(config, "notify_interval_value", 2); - connect_timeout_seconds = json_get_int(config, "connect_timeout_seconds", 15); - concurrent_downloads = json_get_int(config, "concurrent_downloads", 4); - hide_unstable = json_get_bool(config, "hide_unstable", true); - previous_majors = json_get_int(config, "previous_majors", 0); + all_proxy = json_get_string(config, "all_proxy", all_proxy); + notify_major = json_get_bool(config, "notify_major", notify_major); + notify_minor = json_get_bool(config, "notify_minor", notify_minor); + notify_interval_unit = json_get_int(config, "notify_interval_unit", notify_interval_unit); + notify_interval_value = json_get_int(config, "notify_interval_value", notify_interval_value); + connect_timeout_seconds = json_get_int(config, "connect_timeout_seconds", connect_timeout_seconds); + concurrent_downloads = json_get_int(config, "concurrent_downloads", concurrent_downloads); + hide_unstable = json_get_bool(config, "hide_unstable", hide_unstable); + previous_majors = json_get_int(config, "previous_majors", previous_majors); window_width = json_get_int(config, "window_width", window_width); window_height = json_get_int(config, "window_height", window_height); window_x = json_get_int(config, "window_x", window_x); window_y = json_get_int(config, "window_y", window_y); + term_width = json_get_int(config, "term_width", term_width); + term_height = json_get_int(config, "term_height", term_height); +// term_x = json_get_int(config, "term_x", term_x); +// term_y = json_get_int(config, "term_y", term_y); // fixups + //if (ppa_uri.length==0) ppa_uri = DEFAULT_PPA_URI; if (!ppa_uri.has_suffix("/")) ppa_uri += "/"; LinuxKernel.PPA_URI = ppa_uri; - log_msg("Loaded config file: "+APP_CONFIG_FILE); + vprint("Loaded config file: "+APP_CONFIG_FILE,2); } // begin ------------ - private void update_startup_script() { + vprint("update_startup_script()",2); // construct the commandline argument for "sleep" - int count = App.notify_interval_value; + int count = notify_interval_value; string suffix = "h"; - switch (App.notify_interval_unit) { + switch (notify_interval_unit) { case 0: // hour suffix = "h"; break; @@ -224,11 +255,11 @@ public class Main : GLib.Object { break; case 2: // week suffix = "d"; - count = App.notify_interval_value * 7; + count = notify_interval_value * 7; break; case 3: // second suffix = ""; - count = App.notify_interval_value; + count = notify_interval_value; break; } @@ -263,9 +294,11 @@ public class Main : GLib.Object { if (notify_minor || notify_major) { // This gdbus check doesn't do what I'd hoped. // Still succeeds while logged out but sitting at a display manager login screen. - s += "while gdbus call --session --dest org.freedesktop.DBus --object-path /org/freedesktop/DBus --method org.freedesktop.DBus.GetId 2>&- >&- ;do\n" - + "\t"+BRANDING_SHORTNAME+" --notify"; - if (LOG_DEBUG) s += " --debug"; + s += "" + //+ "export VERBOSE=0\n" + + "while gdbus call --session --dest org.freedesktop.DBus --object-path /org/freedesktop/DBus --method org.freedesktop.DBus.GetId 2>&- >&- ;do\n" + + "\t"+BRANDING_SHORTNAME+" --notify 2>&- >&-"; + //if (LOG_DEBUG) s += " --debug"; s += "\n" + "\tsleep %d%s &\n".printf(count,suffix) + "\twait ${!}\n" // respond to signals during sleep @@ -276,12 +309,21 @@ public class Main : GLib.Object { } file_write(STARTUP_SCRIPT_FILE,s); - exec_async("bash "+STARTUP_SCRIPT_FILE); + // settings get saved on startup if missing + // so we don't always want to launch the bg process + // on every save, because when notifications are enabled, + // the bg process runs another instance of ourself while we are still starting up ourselves, + // and the two instances' cache operations step all over each other. + // slightly better: + // if notifications are now off, then run immediately so it clears out the existing bg possibly already running + // if notifications are now on, then run on exit. + if (!notify_major && !notify_major) exec_async("bash "+STARTUP_SCRIPT_FILE+" 2>&- >&-"); } private void update_startup_desktop_file() { - if (notify_minor || notify_major) { + vprint("update_startup_desktop_file()",2); + if (notify_minor || notify_major) { string txt = "[Desktop Entry]\n" + "Type=Application\n" + "Exec=bash \""+STARTUP_SCRIPT_FILE+"\" --autostart\n" @@ -290,9 +332,7 @@ public class Main : GLib.Object { + "X-GNOME-Autostart-enabled=true\n" + "Name="+BRANDING_SHORTNAME+" notification\n" + "Comment="+BRANDING_SHORTNAME+" notification\n"; - file_write(STARTUP_DESKTOP_FILE, txt); - } else { file_delete(STARTUP_DESKTOP_FILE); } @@ -305,21 +345,14 @@ public class Main : GLib.Object { string cmd = "aria2c --no-netrc --no-conf --connect-timeout="+connect_timeout_seconds.to_string()+" --max-file-not-found=3 --retry-wait=2 --max-tries=3 --dry-run --quiet '"+ppa_uri+"'"; int status = exec_sync(cmd, out std_out, out std_err); - if (std_err.length > 0) log_error(std_err); + if (std_err.length > 0) vprint(std_err,1,stderr); connection_status = false; if (status == 0) connection_status = true; - else log_error(_("Can not reach")+" "+ppa_uri); + else vprint(_("Can not reach site")+": '"+ppa_uri+"'",1,stderr); connection_checked = true; return connection_status; } - public void uri_open(string uri) { - try { - AppInfo.launch_default_for_uri(uri,null); - } catch (Error e) { - warning("Unable to launch %s", uri); - } - } } diff --git a/src/Common/OSDNotify.vala b/src/Common/OSDNotify.vala index 48602022..5b8c7aaf 100644 --- a/src/Common/OSDNotify.vala +++ b/src/Common/OSDNotify.vala @@ -22,9 +22,9 @@ * */ -using TeeJee.Logging; using TeeJee.FileSystem; using TeeJee.ProcessHelper; +using l.misc; public class OSDNotify : GLib.Object { @@ -64,8 +64,8 @@ public class OSDNotify : GLib.Object { + " \""+body+"\"" ; - log_debug (s); - exec_async (s); + vprint(s,2); + exec_async(s); dt_last_notification = new DateTime.now_local(); diff --git a/src/Common/Package.vala b/src/Common/Package.vala index 68634376..e1d97b83 100644 --- a/src/Common/Package.vala +++ b/src/Common/Package.vala @@ -1,7 +1,8 @@ -using TeeJee.Logging; + using TeeJee.FileSystem; using TeeJee.ProcessHelper; using TeeJee.Misc; +using l.misc; public class Package : GLib.Object { public string pname = ""; @@ -19,7 +20,7 @@ public class Package : GLib.Object { } public static void update_dpkg_list() { - log_debug("update_dpkg_list()"); + vprint("update_dpkg_list()",2); // get installed packages from dpkg -------------- string t_dir = create_tmp_dir(); @@ -51,14 +52,14 @@ public class Package : GLib.Object { pkg.version = vers; pkg.arch = arch; dpkg_list.add(pkg); - log_debug("dpkg_list.add("+pkg.pname+") version:"+pkg.version+" arch:"+pkg.arch); + vprint("dpkg_list.add("+pkg.pname+") version:"+pkg.version+" arch:"+pkg.arch,3); } } else { - log_error (_("File not found: %s").printf(t_file)); + vprint(_("File not found: %s").printf(t_file),1,stderr); } } catch (Error e) { - log_error (e.message); + vprint(e.message,1,stderr); } dir_delete(t_dir); } diff --git a/src/Console/AppConsole.vala b/src/Console/AppConsole.vala index 0b66dd73..781450cf 100644 --- a/src/Console/AppConsole.vala +++ b/src/Console/AppConsole.vala @@ -23,38 +23,25 @@ using GLib; using Gee; using Json; -using TeeJee.Logging; using TeeJee.FileSystem; using TeeJee.JsonHelper; using TeeJee.ProcessHelper; using TeeJee.Misc; using l.time; +using l.misc; public Main App; public class AppConsole : GLib.Object { public static int main (string[] args) { - set_locale(); - - log_msg(BRANDING_SHORTNAME+" "+BRANDING_VERSION); - App = new Main(args, false); var console = new AppConsole(); - bool is_success = console.parse_arguments(args); - return (is_success) ? 0 : 1; } - private static void set_locale() { - Intl.setlocale(GLib.LocaleCategory.MESSAGES, "%s".printf(BRANDING_SHORTNAME)); - Intl.textdomain(BRANDING_SHORTNAME); - Intl.bind_textdomain_codeset(BRANDING_SHORTNAME, "utf-8"); - Intl.bindtextdomain(BRANDING_SHORTNAME, LOCALE_DIR); - } - private static string help_message() { string msg = "\n" + BRANDING_SHORTNAME + " " + BRANDING_VERSION + " - " + BRANDING_LONGNAME + "\n" @@ -69,9 +56,9 @@ public class AppConsole : GLib.Object { + " --list-installed " + _("List installed kernels") + "\n" + " --install-latest " + _("Install latest mainline kernel") + "\n" + " --install-point " + _("Install latest point update for current series") + "\n" - + " --install " + _("Install specified mainline kernel") + "(1)\n" - + " --uninstall " + _("Uninstall specified kernel") + "(2)\n" - + " --uninstall-old " + _("Uninstall kernels older than the running kernel") + "\n" + + " --install " + _("Install specified mainline kernel") + "(1)(3)\n" + + " --uninstall " + _("Uninstall specified kernel") + "(1)(2)(3)\n" + + " --uninstall-old " + _("Uninstall kernels older than the latest installed") + "(3)\n" + " --download " + _("Download specified kernels") + "(2)\n" + " --delete-cache " + _("Delete cached info about available kernels") + "\n" + "\n" @@ -84,19 +71,21 @@ public class AppConsole : GLib.Object { + "\n" + "Notes:\n" + "(1) " +_("A version string taken from the output of --list") + "\n" - + "(2) " +_("One or more version strings (comma-separated) taken from the output of --list") + "\n"; + + "(2) " +_("One or more, comma-seperated") + "\n" + + "(3) " +_("The currently running kernel will always be ignored") + "\n" + ; return msg; } public bool parse_arguments(string[] args) { string txt = BRANDING_SHORTNAME + " "; - for (int k = 1; k < args.length; k++) txt += "'%s' ".printf(args[k]); + for (int i = 1; i < args.length; i++) txt += "'%s' ".printf(args[i]); // check argument count ----------------- if (args.length == 1) { - log_msg(help_message()); + vprint(help_message(),0); return false; } @@ -105,11 +94,11 @@ public class AppConsole : GLib.Object { // parse options first -------------- - for (int k = 1; k < args.length; k++) + for (int i = 1; i < args.length; i++) { - switch (args[k].down()) { + switch (args[i].down()) { case "--debug": - LOG_DEBUG = true; + App.VERBOSE = 2; break; case "--yes": @@ -140,7 +129,7 @@ public class AppConsole : GLib.Object { case "--uninstall-old": case "--clean-cache": // back compat case "--delete-cache": - cmd = args[k].down(); + cmd = args[i].down(); break; case "--remove": // back compat @@ -148,21 +137,21 @@ public class AppConsole : GLib.Object { case "--download": case "--install": // FUGLY - cmd = args[k].down(); - if (++k < args.length) cmd_versions = args[k]; + cmd = args[i].down(); + if (++i < args.length) cmd_versions = args[i]; if (cmd == "--remove") cmd="--uninstall"; // re-write so we don't have to check all synonyms later blergh crap break; case "--help": case "--h": case "-h": - log_msg(help_message()); + vprint(help_message(),0); return true; default: // unknown option - log_error(_("Unknown option") + ": %s".printf(args[k])); - log_error(_("Run")+" '"+args[0]+" --help' "+_("to list all options")); + vprint(_("Unknown option") + ": %s".printf(args[i]),1,stderr); + vprint(_("Run")+" '"+args[0]+" --help' "+_("to list all options"),1,stderr); return false; } } @@ -188,7 +177,9 @@ public class AppConsole : GLib.Object { break; case "--notify": - + // silence VERBOSE only if it's 1 + if (App.VERBOSE==1) App.VERBOSE=0; + l.misc.VERBOSE = App.VERBOSE; notify_user(); break; @@ -218,13 +209,13 @@ public class AppConsole : GLib.Object { case "--uninstall": if (cmd_versions.length==0) { - log_error(_("No kernels specified")); + vprint(_("No kernels specified"),1,stderr); exit(1); } string[] requested_versions = cmd_versions.split(","); if ((requested_versions.length > 1) && (cmd == "--install")) { - log_error(_("Multiple kernels selected for installation. Select only one.")); + vprint(_("Multiple kernels selected for installation. Select only one."),1,stderr); exit(1); } @@ -249,8 +240,8 @@ public class AppConsole : GLib.Object { if (kern_requested == null) { var msg = _("Could not find requested version"); msg += ": "+requested_version; - log_error(msg); - log_error(_("Run")+" '"+args[0]+" --list' "+_("and use a version string listed in first column")); + vprint(msg,1,stderr); + vprint(_("Run")+" '"+args[0]+" --list' "+_("and use a version string listed in first column"),1,stderr); exit(1); } @@ -258,7 +249,7 @@ public class AppConsole : GLib.Object { } if (list.size == 0) { - log_error(_("No kernels specified")); + vprint(_("No kernels specified"),1,stderr); exit(1); } @@ -277,8 +268,8 @@ public class AppConsole : GLib.Object { default: // unknown option - log_error(_("Command not specified")); - log_error(_("Run")+" '"+args[0]+" --help' "+_("to list all commands")); + vprint(_("Command not specified"),1,stderr); + vprint(_("Run")+" '"+args[0]+" --help' "+_("to list all commands"),1,stderr); break; } @@ -293,21 +284,21 @@ public class AppConsole : GLib.Object { if (kern_major != null) { var message = "%s: %s".printf(_("Latest update"), kern_major.version_main); - log_msg(message); + vprint(message); } var kern_minor = LinuxKernel.kernel_update_minor; if (kern_minor != null) { var message = "%s: %s".printf(_("Latest point update"), kern_minor.version_main); - log_msg(message); + vprint(message); } if ((kern_major == null) && (kern_minor == null)) { - log_msg(_("No updates found")); + vprint(_("No updates found")); } - log_msg(string.nfill(70, '-')); + vprint(string.nfill(70, '-')); } private void notify_user() { @@ -318,8 +309,8 @@ public class AppConsole : GLib.Object { string seen_min = ""; if (file_exists(App.MAJ_SEEN_FILE)) seen_maj = file_read(App.MAJ_SEEN_FILE).strip(); if (file_exists(App.MIN_SEEN_FILE)) seen_min = file_read(App.MIN_SEEN_FILE).strip(); - log_msg("seen_maj:\""+seen_maj+"\""); - log_msg("seen_min:\""+seen_min+"\""); + vprint("seen_maj:\""+seen_maj+"\"",2); + vprint("seen_min:\""+seen_min+"\"",2); string debug_action = ""; string close_action = ""; // command to run when user closes notification instead of pressing any action button @@ -327,7 +318,7 @@ public class AppConsole : GLib.Object { var alist = new Gee.ArrayList (); // notification action buttons: "buttonlabel:command line to run" if (App.notify_major || App.notify_minor) { - if (LOG_DEBUG) { + if (App.VERBOSE>1) { debug_action = APP_LIB_DIR+"/notify-action-debug.sh"; body = debug_action; debug_action += " "; @@ -335,31 +326,31 @@ public class AppConsole : GLib.Object { alist.add(_("Show")+":"+debug_action+BRANDING_SHORTNAME+"-gtk"); } - var kern = LinuxKernel.kernel_update_major; - if (App.notify_major && (kern!=null) && (seen_maj!=kern.version_main)) { - var title = _("Kernel %s Available").printf(kern.version_main); + var k = LinuxKernel.kernel_update_major; + if (App.notify_major && (k!=null) && (seen_maj!=k.version_main)) { + var title = _("Kernel %s Available").printf(k.version_main); if (App.notify_major || App.notify_minor) { - alist.add(_("Install")+":"+debug_action+BRANDING_SHORTNAME+"-gtk --install "+kern.version_main); - file_write(App.MAJ_SEEN_FILE,kern.version_main); + alist.add(_("Install")+":"+debug_action+BRANDING_SHORTNAME+"-gtk --install "+k.version_main); + file_write(App.MAJ_SEEN_FILE,k.version_main); OSDNotify.notify_send(title,body,alist,close_action); } - log_msg(title); + vprint(title); return; } - kern = LinuxKernel.kernel_update_minor; - if (App.notify_minor && (kern!=null) && (seen_min!=kern.version_main)) { - var title = _("Kernel %s Available").printf(kern.version_main); + k = LinuxKernel.kernel_update_minor; + if (App.notify_minor && (k!=null) && (seen_min!=k.version_main)) { + var title = _("Kernel %s Available").printf(k.version_main); if (App.notify_major || App.notify_minor) { - alist.add(_("Install")+":"+debug_action+BRANDING_SHORTNAME+"-gtk --install "+kern.version_main); - file_write(App.MIN_SEEN_FILE,kern.version_main); + alist.add(_("Install")+":"+debug_action+BRANDING_SHORTNAME+"-gtk --install "+k.version_main); + file_write(App.MIN_SEEN_FILE,k.version_main); OSDNotify.notify_send(title,body,alist,close_action); } - log_msg(title); + vprint(title); return; } - log_msg(_("No updates found")); + vprint(_("No updates found")); } } diff --git a/src/Gtk/AboutWindow.vala b/src/Gtk/AboutWindow.vala index 7d41c513..88916531 100644 --- a/src/Gtk/AboutWindow.vala +++ b/src/Gtk/AboutWindow.vala @@ -23,13 +23,13 @@ using Gtk; -using TeeJee.Logging; using TeeJee.FileSystem; using TeeJee.JsonHelper; using TeeJee.ProcessHelper; using l.gtk; using TeeJee.Misc; using l.time; +using l.misc; public class AboutWindow : Dialog { private Box vbox_main; @@ -235,7 +235,7 @@ public class AboutWindow : Dialog { lbtn_website.margin_top = 5; vbox_logo.add(lbtn_website); - lbtn_website.activate_link.connect(()=>{ App.uri_open(lbtn_website.uri); return true; }); + lbtn_website.activate_link.connect(()=>{ uri_open(lbtn_website.uri); return true; }); //copyright lbl_copyright = new Label(""); @@ -372,7 +372,7 @@ public class AboutWindow : Dialog { link.uri = "http://" + val; } - link.activate_link.connect(() => { App.uri_open(link.uri); return true; }); + link.activate_link.connect(() => { uri_open(link.uri); return true; }); } else{ var txt = text; diff --git a/src/Gtk/AppGtk.vala b/src/Gtk/AppGtk.vala index d77b959a..e3ca73c9 100644 --- a/src/Gtk/AppGtk.vala +++ b/src/Gtk/AppGtk.vala @@ -25,13 +25,13 @@ using Gee; using Json; using X; -using TeeJee.Logging; using TeeJee.FileSystem; using TeeJee.JsonHelper; using TeeJee.ProcessHelper; using l.gtk; using TeeJee.Misc; using l.time; +using l.misc; public Main App; @@ -39,7 +39,6 @@ public class AppGtk : GLib.Object { public static int main (string[] args) { set_locale(); - log_msg(BRANDING_SHORTNAME+" "+BRANDING_VERSION); X.init_threads(); Gtk.init(ref args); App = new Main(args, true); @@ -57,12 +56,12 @@ public class AppGtk : GLib.Object { }); window.destroy.connect(() => { - log_debug("MainWindow destroyed"); + vprint("MainWindow destroyed",4); Gtk.main_quit(); }); window.delete_event.connect((event) => { - log_debug("MainWindow closed"); + vprint("MainWindow closed",4); Gtk.main_quit(); return true; }); @@ -75,51 +74,54 @@ public class AppGtk : GLib.Object { // save the window size if it changed if ( - App.window_width != App._window_width || - App.window_height != App._window_height || - App.window_x != App._window_x || - App.window_y != App._window_y + App.window_width != App._window_width + || App.window_height != App._window_height + || App.window_x != App._window_x + || App.window_y != App._window_y + || App.term_width != App._term_width + || App.term_height != App._term_height + //|| App.term_x != App._term_x + //|| App.term_y != App._term_y ) App.save_app_config(); - return 0; - } + // start the notification bg process if notifcations enabled + if (App.notify_major || App.notify_major) exec_async("bash "+App.STARTUP_SCRIPT_FILE+" 2>&- >&-"); - private static void set_locale() { - Intl.setlocale(GLib.LocaleCategory.MESSAGES, BRANDING_SHORTNAME); - Intl.textdomain(BRANDING_SHORTNAME); - Intl.bind_textdomain_codeset(BRANDING_SHORTNAME, "utf-8"); - Intl.bindtextdomain(BRANDING_SHORTNAME, LOCALE_DIR); + return 0; } public static bool parse_arguments(string[] args) { // parse options - for (int o = 1; o < args.length; o++) + for (int i = 1; i < args.length; i++) { - switch (args[o].down()) { + switch (args[i].down()) { case "--debug": - LOG_DEBUG = true; + App.VERBOSE = 2; break; // this is used by the notifications case "--install": - if (++o < args.length) { + if (++i < args.length) { App.command = "install"; - App.requested_version = args[o].down(); + App.requested_version = args[i].down(); } + //if (App.VERBOSE<1) App.VERBOSE = 1; + //l.misc.VERBOSE = App.VERBOSE; + //Environment.set_variable("VERBOSE",App.VERBOSE.to_string(),true); break; case "--help": case "--h": case "-h": - log_msg(help_message()); + vprint(help_message(),0); exit(0); break; default: - log_error(_("Unknown option") + ": %s".printf(args[o])); - log_msg(help_message()); + vprint(_("Unknown option") + ": %s".printf(args[i]),1,stderr); + vprint(help_message(),0); exit(1); break; diff --git a/src/Gtk/MainWindow.vala b/src/Gtk/MainWindow.vala index c9a65bcf..e679e7e2 100644 --- a/src/Gtk/MainWindow.vala +++ b/src/Gtk/MainWindow.vala @@ -24,13 +24,13 @@ using Gtk; using Gee; -using TeeJee.Logging; using TeeJee.FileSystem; using TeeJee.JsonHelper; using TeeJee.ProcessHelper; using l.gtk; using TeeJee.Misc; using l.time; +using l.misc; public class MainWindow : Gtk.Window { @@ -51,7 +51,8 @@ public class MainWindow : Gtk.Window { public MainWindow() { title = BRANDING_LONGNAME; - window_position = WindowPosition.CENTER; + //window_position = WindowPosition.CENTER; + window_position = WindowPosition.NONE; icon = get_app_icon(16); // vbox_main @@ -68,12 +69,9 @@ public class MainWindow : Gtk.Window { init_ui(); - update_cache(); + if (App.command == "install") do_install(new LinuxKernel.from_version(App.requested_version)); - if (App.command == "install") { - var k = new LinuxKernel.from_version(App.requested_version); - do_install(k); - } + update_cache(); } @@ -190,7 +188,7 @@ public class MainWindow : Gtk.Window { } private void tv_refresh() { - log_debug("tv_refresh()"); + vprint("tv_refresh()",2); var model = new Gtk.ListStore(4, typeof(LinuxKernel), typeof(Gdk.Pixbuf), typeof(bool), typeof(string)); @@ -204,7 +202,7 @@ public class MainWindow : Gtk.Window { pix_mainline_rc = new Gdk.Pixbuf.from_file (INSTALL_PREFIX + "/share/pixmaps/" + BRANDING_SHORTNAME + "/tux-red.png"); } catch (Error e) { - log_error (e.message); + vprint(e.message,1,stderr); } TreeIter iter; @@ -292,7 +290,7 @@ public class MainWindow : Gtk.Window { button.clicked.connect(() => { if ((selected_kernels.size == 1) && file_exists(selected_kernels[0].changes_file)) { - App.uri_open("file://"+selected_kernels[0].changes_file); + uri_open("file://"+selected_kernels[0].changes_file); } }); @@ -304,7 +302,7 @@ public class MainWindow : Gtk.Window { button.clicked.connect(() => { string uri = App.ppa_uri; if (selected_kernels.size == 1) uri += selected_kernels[0].kname; - App.uri_open(uri); + uri_open(uri); }); // uninstall-old @@ -418,7 +416,7 @@ public class MainWindow : Gtk.Window { // Full re-load. Delete cache and clear session state and start over. private void reload_cache() { - log_debug("reload_cache()"); + vprint("reload_cache()",2); LinuxKernel.delete_cache(); App.connection_checked=false; update_cache(); @@ -426,7 +424,7 @@ public class MainWindow : Gtk.Window { // Update the cache as optimally as possible. private void update_cache() { - log_debug("update_cache()"); + vprint("update_cache()",2); test_net(); @@ -515,8 +513,9 @@ public class MainWindow : Gtk.Window { } } - public void do_install(LinuxKernel kern) { - return_if_fail(!kern.is_installed); + public void do_install(LinuxKernel k) { + if (App.command == "install") App.command = "list"; + return_if_fail(!k.is_installed); // let it try even if we think the net is down // just so the button responds instead of looking broken //if (!test_net()) return; @@ -525,6 +524,15 @@ public class MainWindow : Gtk.Window { string t_dir = create_tmp_dir(); string t_file = get_temp_file_path(t_dir)+".sh"; + term.configure_event.connect ((event) => { + //log_debug("term resize: %dx%d@%dx%d".printf(event.width,event.height,event.x,event.y)); + App.term_width = event.width; + App.term_height = event.height; +// App.term_x = event.x; +// App.term_y = event.y; + return false; + }); + term.script_complete.connect(()=>{ term.allow_window_close(); dir_delete(t_dir); @@ -537,8 +545,8 @@ public class MainWindow : Gtk.Window { string sh = BRANDING_SHORTNAME; if (App.index_is_fresh) sh += " --index-is-fresh"; - if (LOG_DEBUG) sh += " --debug"; - sh += " --install %s\n".printf(kern.version_main) + if (App.VERBOSE>1) sh += " --debug"; + sh += " --install %s\n".printf(k.version_main) + "echo \n" + "echo '"+_("DONE")+"'\n" ; @@ -552,6 +560,13 @@ public class MainWindow : Gtk.Window { string t_dir = create_tmp_dir(); string t_file = get_temp_file_path(t_dir)+".sh"; + term.configure_event.connect ((event) => { + App.term_width = event.width; + App.term_height = event.height; + return false; + }); + + term.script_complete.connect(()=>{ term.allow_window_close(); dir_delete(t_dir); @@ -570,7 +585,7 @@ public class MainWindow : Gtk.Window { string sh = BRANDING_SHORTNAME; if (App.index_is_fresh) sh += " --index-is-fresh"; - if (LOG_DEBUG) sh += " --debug"; + if (App.VERBOSE>1) sh += " --debug"; sh += " --uninstall %s\n".printf(names) + "echo \n" + "echo '"+_("DONE")+"'\n" @@ -585,6 +600,13 @@ public class MainWindow : Gtk.Window { string t_dir = create_tmp_dir(); string t_file = get_temp_file_path(t_dir)+".sh"; + term.configure_event.connect ((event) => { + App.term_width = event.width; + App.term_height = event.height; + return false; + }); + + term.script_complete.connect(()=>{ term.allow_window_close(); dir_delete(t_dir); @@ -597,7 +619,7 @@ public class MainWindow : Gtk.Window { string sh = BRANDING_SHORTNAME+" --uninstall-old"; if (App.index_is_fresh) sh += " --index-is-fresh"; - if (LOG_DEBUG) sh += " --debug"; + if (App.VERBOSE>1) sh += " --debug"; sh += "\n" + "echo \n" + "echo '"+_("DONE")+"'\n" @@ -609,7 +631,7 @@ public class MainWindow : Gtk.Window { public bool test_net() { if (App.connection_checked) return App.connection_status; - if (!App.check_internet_connectivity()) errbox(this,_("Can not reach")+" "+App.ppa_uri); + if (!App.check_internet_connectivity()) errbox(this,_("Can not reach site")+": '"+App.ppa_uri+"'"); return App.connection_status; } diff --git a/src/Gtk/ProgressWindow.vala b/src/Gtk/ProgressWindow.vala index 1f275b60..115ec615 100644 --- a/src/Gtk/ProgressWindow.vala +++ b/src/Gtk/ProgressWindow.vala @@ -25,13 +25,13 @@ using Gtk; using Gee; -using TeeJee.Logging; using TeeJee.FileSystem; using TeeJee.JsonHelper; using TeeJee.ProcessHelper; using l.gtk; using TeeJee.Misc; using l.time; +using l.misc; public class ProgressWindow : Gtk.Window { @@ -58,6 +58,7 @@ public class ProgressWindow : Gtk.Window { set_type_hint(Gdk.WindowTypeHint.DIALOG); //window_position = WindowPosition.CENTER; window_position = WindowPosition.CENTER_ON_PARENT; + //window_position = WindowPosition.NONE; set_default_size(def_width, def_height); diff --git a/src/Gtk/SettingsDialog.vala b/src/Gtk/SettingsDialog.vala index 20cb7b20..869a26d3 100644 --- a/src/Gtk/SettingsDialog.vala +++ b/src/Gtk/SettingsDialog.vala @@ -24,13 +24,13 @@ using Gtk; using Gee; -using TeeJee.Logging; using TeeJee.FileSystem; using TeeJee.JsonHelper; using TeeJee.ProcessHelper; using l.gtk; using TeeJee.Misc; using l.time; +using l.misc; public class SettingsDialog : Gtk.Dialog { @@ -83,8 +83,8 @@ public class SettingsDialog : Gtk.Dialog { App.notify_minor = chk_notify_minor.active; }); - if (LOG_DEBUG) { - label = new Label(_("(Allowing intervals in seconds for --debug)")); + if (App.VERBOSE>1) { + label = new Label("( VERBOSE > 1 : "+_("Seconds interval enabled for debugging")+" )"); label.xalign = (float) 0.0; label.margin_bottom = 6; vbox_main.add (label); @@ -94,8 +94,8 @@ public class SettingsDialog : Gtk.Dialog { // replace invalid debug-only values with valid values int max_intervals = 52; - if (LOG_DEBUG) { - // debug allows seconds, so allow up to 1 hour of seconds + if (App.VERBOSE>1) { + // debug allows seconds, allow up to 1 hour of seconds max_intervals = 3600; } else { if (App.notify_interval_unit == 3) { @@ -137,7 +137,7 @@ public class SettingsDialog : Gtk.Dialog { model.set (iter,0,_("Day(s)")); model.append (out iter); model.set (iter,0,_("Week(s)")); - if (LOG_DEBUG) { + if (App.VERBOSE>1) { model.append (out iter); model.set (iter,0,_("Second(s)")); } @@ -232,9 +232,25 @@ public class SettingsDialog : Gtk.Dialog { var proxy = new Entry (); proxy.set_placeholder_text("[http://][USER:PASSWORD@]HOST[:PORT]"); proxy.set_text(App.all_proxy); - proxy.activate.connect(()=>{ App.all_proxy = proxy.get_text() ; }); + proxy.activate.connect(()=>{ App.all_proxy = proxy.get_text(); }); vbox_main.add(proxy); +// too easily screwed up and "blank to return to default" isn't working +/* + // ppa url + label = new Label("" + "PPA" + ""); + label.set_use_markup(true); + label.xalign = (float) 0.0; + label.margin_bottom = 6; + vbox_main.add (label); + + var ppa = new Entry (); + ppa.set_placeholder_text(DEFAULT_PPA_URI); + ppa.set_text(App.ppa_uri); + ppa.activate.connect(()=>{ App.ppa_uri = ppa.get_text(); }); + vbox_main.add(ppa); +*/ + // ok var button = (Button) add_button ("gtk-ok", Gtk.ResponseType.ACCEPT); button.clicked.connect(()=>{ this.close(); }); diff --git a/src/Gtk/TerminalWindow.vala b/src/Gtk/TerminalWindow.vala index ada6641d..ec6debb5 100644 --- a/src/Gtk/TerminalWindow.vala +++ b/src/Gtk/TerminalWindow.vala @@ -22,24 +22,24 @@ using Gtk; using Gee; -using TeeJee.Logging; using TeeJee.FileSystem; using TeeJee.JsonHelper; using TeeJee.ProcessHelper; using l.gtk; using TeeJee.Misc; using l.time; +using l.misc; public class TerminalWindow : Gtk.Window { - + private Gtk.Box vbox_main; private Vte.Terminal term; private Gtk.Button btn_cancel; private Gtk.Button btn_close; private Gtk.ScrolledWindow scroll_win; - private int def_width = 1100; - private int def_height = 600; + //private int def_width = 1100; + //private int def_height = 600; private Pid child_pid; private Gtk.Window parent_win = null; @@ -60,6 +60,7 @@ public class TerminalWindow : Gtk.Window { set_modal(true); //window_position = WindowPosition.CENTER; window_position = WindowPosition.CENTER_ON_PARENT; + //window_position = WindowPosition.NONE; if (fullscreen) this.fullscreen(); this.delete_event.connect(cancel_window_close); @@ -68,6 +69,11 @@ public class TerminalWindow : Gtk.Window { show_all(); + this.resize(App.term_width,App.term_height); +// if (App.term_x >=0 && App.term_y >= 0) this.move(App.window_x,App.window_y); +// App._window_x = App.window_x; +// App._window_y = App.window_y; + btn_cancel.visible = false; btn_close.visible = false; @@ -89,7 +95,10 @@ public class TerminalWindow : Gtk.Window { // vbox_main --------------- vbox_main = new Gtk.Box(Orientation.VERTICAL, 0); - vbox_main.set_size_request (def_width, def_height); + //vbox_main.set_size_request(def_width,def_height); + App._term_width = App.term_width; + App._term_height = App.term_height; + add (vbox_main); // terminal ---------------------- @@ -196,7 +205,7 @@ public class TerminalWindow : Gtk.Window { term.child_exited.connect(script_exit); } catch (Error e) { - log_error (e.message); + vprint(e.message,1,stderr); } } diff --git a/src/Gtk/l.gtk.vala b/src/Gtk/l.gtk.vala index db515adc..825fee52 100644 --- a/src/Gtk/l.gtk.vala +++ b/src/Gtk/l.gtk.vala @@ -1,10 +1,10 @@ -using TeeJee.Logging; using TeeJee.FileSystem; using TeeJee.JsonHelper; using TeeJee.ProcessHelper; using TeeJee.Misc; using l.time; +using l.misc; namespace l.gtk { @@ -38,10 +38,10 @@ namespace l.gtk { pix_icon = icon_theme.load_icon_for_scale ( icon_name, Gtk.IconSize.MENU, icon_size, Gtk.IconLookupFlags.FORCE_SIZE); } catch (Error e) { - //log_error (e.message); + //vprint(e.message,1,stderr); } - if (pix_icon == null) log_error (_("Missing Icon") + ": '%s'".printf(icon_name)); + if (pix_icon == null) vprint(_("Missing Icon") + ": '%s'".printf(icon_name),1,stderr); else img_icon = new Gtk.Image.from_pixbuf(pix_icon); return img_icon; diff --git a/src/lib/AsyncTask.vala b/src/lib/AsyncTask.vala index 0f5a735a..a330f842 100644 --- a/src/lib/AsyncTask.vala +++ b/src/lib/AsyncTask.vala @@ -21,18 +21,18 @@ * */ -using TeeJee.Logging; using TeeJee.FileSystem; using TeeJee.JsonHelper; using TeeJee.ProcessHelper; using TeeJee.Misc; using l.time; +using l.misc; public abstract class AsyncTask : GLib.Object { private string err_line = ""; private string out_line = ""; - private DataOutputStream dos_in; + //private DataOutputStream dos_in; private DataInputStream dis_out; private DataInputStream dis_err; protected DataOutputStream dos_log; @@ -42,7 +42,7 @@ public abstract class AsyncTask : GLib.Object { private bool stderr_is_open = false; protected Pid child_pid; - private int input_fd; + //private int input_fd; private int output_fd; private int error_fd; private bool finish_called = false; @@ -61,8 +61,7 @@ public abstract class AsyncTask : GLib.Object { public GLib.Timer timer; public double progress = 0.0; public double percent = 0.0; - public int64 prg_count = 0; - public int64 prg_count_total = 0; + public int prg_count = 0; public string eta = ""; // signals @@ -92,8 +91,8 @@ public abstract class AsyncTask : GLib.Object { string[] spawn_args = {"sh", script_file}; string[] spawn_env = Environ.get(); - log_debug("AsyncTask:begin()"); - log_debug("working_dir="+working_dir); + vprint("AsyncTask begin()",2); + vprint("working_dir: '"+working_dir+"'",2); try { // start timer @@ -106,17 +105,17 @@ public abstract class AsyncTask : GLib.Object { spawn_args, // argv spawn_env, // environment SpawnFlags.SEARCH_PATH, - null, // child_setup + null, // child_setup() out child_pid, - out input_fd, + null, //out input_fd, out output_fd, out error_fd); // create stream readers - UnixOutputStream uos_in = new UnixOutputStream(input_fd, false); + //UnixOutputStream uos_in = new UnixOutputStream(input_fd, false); UnixInputStream uis_out = new UnixInputStream(output_fd, false); UnixInputStream uis_err = new UnixInputStream(error_fd, false); - dos_in = new DataOutputStream(uos_in); + //dos_in = new DataOutputStream(uos_in); dis_out = new DataInputStream(uis_out); dis_err = new DataInputStream(uis_err); dis_out.newline_type = DataStreamNewlineType.ANY; @@ -136,8 +135,8 @@ public abstract class AsyncTask : GLib.Object { } catch (Error e) { - log_error("AsyncTask.begin()"); - log_error(e.message); + vprint("AsyncTask.begin()",1,stderr); + vprint(e.message,1,stderr); has_started = false; } @@ -171,8 +170,8 @@ public abstract class AsyncTask : GLib.Object { } catch (Error e) { - log_error("AsyncTask.read_stdout()"); - log_error(e.message); + vprint("AsyncTask.read_stdout()",1,stderr); + vprint(e.message,1,stderr); return false; } return true; @@ -205,8 +204,8 @@ public abstract class AsyncTask : GLib.Object { } catch (Error e) { - log_error("AsyncTask.read_stderr()"); - log_error(e.message); + vprint("AsyncTask.read_stderr()",1,stderr); + vprint(e.message,1,stderr); return false; } return true; @@ -239,17 +238,17 @@ public abstract class AsyncTask : GLib.Object { finish_called = true; // dispose stdin - try { - if ((dos_in != null) && !dos_in.is_closed() && !dos_in.is_closing()) dos_in.close(); - } - catch (Error e){ + //try { + // if ((dos_in != null) && !dos_in.is_closed() && !dos_in.is_closing()) dos_in.close(); + //} + //catch (Error e){ // ignore //log_error("AsyncTask.finish(): dos_in.close()"); //log_error(e.message); - } + //} - dos_in = null; - GLib.FileUtils.close(input_fd); + //dos_in = null; + //GLib.FileUtils.close(input_fd); try { // dispose log diff --git a/src/lib/TeeJee.FileSystem.vala b/src/lib/TeeJee.FileSystem.vala index 952f0d0c..4c28b1a1 100644 --- a/src/lib/TeeJee.FileSystem.vala +++ b/src/lib/TeeJee.FileSystem.vala @@ -24,9 +24,9 @@ namespace TeeJee.FileSystem { - using TeeJee.Logging; using TeeJee.ProcessHelper; using TeeJee.Misc; + using l.misc; public string file_parent(string f) { //log_debug("file_parent("+f+")"); @@ -45,7 +45,7 @@ namespace TeeJee.FileSystem { } public bool file_delete(string file_path) { - //log_debug("file_delete("+file_path+")"); + vprint("file_delete("+file_path+")",3); if(!file_exists(file_path)) return true; @@ -54,13 +54,13 @@ namespace TeeJee.FileSystem { if (file.query_exists()) file.delete(); return true; } catch (Error e) { - log_error (e.message); + vprint(e.message,1,stderr); return false; } } public string? file_read (string file_path) { - //log_debug("file_read("+file_path+")"); + vprint("file_read("+file_path+")",3); string txt; size_t size; @@ -69,13 +69,13 @@ namespace TeeJee.FileSystem { GLib.FileUtils.get_contents (file_path, out txt, out size); return txt; } - catch (Error e) { log_error (e.message); } + catch (Error e) { vprint(e.message,1,stderr); } return null; } public bool file_write (string f, string contents) { - //log_debug("file_write("+f+")"); + vprint("file_write("+f+")",3); try { @@ -93,13 +93,13 @@ namespace TeeJee.FileSystem { return true; } catch (Error e) { - log_error (e.message); + vprint(e.message,1,stderr); return false; } } public bool file_copy (string src_file, string dest_file) { - //log_debug("file_copy('"+src_file+"','"+dest_file+"')"); + vprint("file_copy('"+src_file+"','"+dest_file+"')",3); try { var file_src = File.new_for_path (src_file); @@ -109,16 +109,16 @@ namespace TeeJee.FileSystem { return true; } } - catch (Error e) { log_error (e.message); } + catch (Error e) { vprint(e.message,1,stderr); } return false; } public void file_move (string src_file, string dest_file) { - //log_debug("file_move('"+src_file+"','"+dest_file+"')"); + vprint("file_move('"+src_file+"','"+dest_file+"')",3); try { if (!file_exists(src_file)) { - log_error(_("File not found") + ": '%s'".printf(src_file)); + vprint(_("File not found") + ": '%s'".printf(src_file),1,stderr); return; } @@ -131,7 +131,7 @@ namespace TeeJee.FileSystem { file_src.move(file_dest,FileCopyFlags.OVERWRITE,null,null); } - catch(Error e) { log_error (e.message); } + catch(Error e) { vprint(e.message,1,stderr); } } public int64 file_get_size(string file_path) { @@ -145,7 +145,7 @@ namespace TeeJee.FileSystem { } } catch(Error e) { - log_error (e.message); + vprint(e.message,1,stderr); } return -1; @@ -156,7 +156,7 @@ namespace TeeJee.FileSystem { } public bool dir_create (string d) { - log_debug("dir_create("+d+")"); + vprint("dir_create("+d+")",3); try{ var dir = File.parse_name(d); @@ -164,13 +164,14 @@ namespace TeeJee.FileSystem { return true; } catch (Error e) { - log_error (e.message); + vprint(e.message,1,stderr); return false; } } + // TODO no longer TG's so move out of TeeJee public bool dir_delete (string dir_path) { - log_debug("dir_delete("+dir_path+")"); + vprint("dir_delete("+dir_path+")",3); if (!dir_exists(dir_path)) return true; File d = File.new_for_path(dir_path); try { _dir_delete(d); } @@ -179,11 +180,11 @@ namespace TeeJee.FileSystem { } private void _dir_delete (File p) throws Error { - //log_debug("_dir_delete("+p.get_path()+")"); + vprint("_dir_delete("+p.get_path()+")",4); FileEnumerator en = p.enumerate_children ("standard::*",FileQueryInfoFlags.NOFOLLOW_SYMLINKS,null); FileInfo i = null; while (((i = en.next_file (null)) != null)) { - //log_debug(i.get_name()); + vprint(i.get_name(),5); File n = p.resolve_relative_path (i.get_name()); if (i.get_file_type() == FileType.DIRECTORY) _dir_delete(n); else n.delete(); diff --git a/src/lib/TeeJee.JsonHelper.vala b/src/lib/TeeJee.JsonHelper.vala index 395087ce..e69b0be8 100644 --- a/src/lib/TeeJee.JsonHelper.vala +++ b/src/lib/TeeJee.JsonHelper.vala @@ -26,13 +26,13 @@ using Json; namespace TeeJee.JsonHelper { - using TeeJee.Logging; + using l.misc; public string json_get_string(Json.Object jobj, string member, string def_value) { if (jobj.has_member(member)) { return jobj.get_string_member(member); } else { - log_debug ("Member not found in JSON object: " + member); + vprint("Member not found in JSON object: " + member,3); return def_value; } } @@ -51,7 +51,7 @@ namespace TeeJee.JsonHelper { if (jobj.has_member(member)) { return bool.parse(jobj.get_string_member(member)); } else { - log_debug ("Member not found in JSON object: " + member); + vprint("Member not found in JSON object: " + member,3); return def_value; } } @@ -60,7 +60,7 @@ namespace TeeJee.JsonHelper { if (jobj.has_member(member)) { return int.parse(jobj.get_string_member(member)); } else { - log_debug ("Member not found in JSON object: " + member); + vprint("Member not found in JSON object: " + member,3); return def_value; } } @@ -69,7 +69,7 @@ namespace TeeJee.JsonHelper { if (jobj.has_member(member)) { return int64.parse(jobj.get_string_member(member)); } else { - log_debug ("Member not found in JSON object: " + member); + vprint("Member not found in JSON object: " + member,3); return def_value; } } @@ -85,7 +85,7 @@ namespace TeeJee.JsonHelper { foreach(var node in jarray.get_elements()) list.add(node.get_string()); return list; } else { - log_debug ("Member not found in JSON object: " + member); + vprint("Member not found in JSON object: " + member,3); return def_value; } } diff --git a/src/lib/TeeJee.Logging.vala b/src/lib/TeeJee.Logging.vala deleted file mode 100644 index 2a719f5c..00000000 --- a/src/lib/TeeJee.Logging.vala +++ /dev/null @@ -1,64 +0,0 @@ - -/* - * TeeJee.Logging.vala - * - * Copyright 2016 Tony George - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, - * MA 02110-1301, USA. - * - * - */ - -namespace TeeJee.Logging { - - using TeeJee.Misc; - - public DataOutputStream dos_log; - public string err_log; - public bool LOG_ENABLE = true; - public bool LOG_DEBUG = false; - - public void log_msg (string message) { - if (!LOG_ENABLE) return; - string s = message+"\n"; - stdout.printf(s); - stdout.flush(); - } - - public void log_error (string message) { - if (!LOG_ENABLE) return; - string s = _("E") + ": " + message + "\n"; - stdout.printf(s); - stdout.flush(); - } - - public void log_debug (string message) { - if (!LOG_ENABLE) return; - if (LOG_DEBUG) log_msg (_("D") + ": " + message); - } - - public void log_draw_line() { - log_msg(string.nfill(70,'=')); - } - - public void err_log_clear() { - err_log = ""; - } - - public void err_log_disable() { - err_log = null; - } -} diff --git a/src/lib/TeeJee.Misc.vala b/src/lib/TeeJee.Misc.vala index 8443824f..6e637d55 100644 --- a/src/lib/TeeJee.Misc.vala +++ b/src/lib/TeeJee.Misc.vala @@ -24,9 +24,9 @@ namespace TeeJee.Misc { - using TeeJee.Logging; using TeeJee.FileSystem; using TeeJee.ProcessHelper; + using l.misc; public string escape_html(string html, bool pango_markup = true) { string txt = html; @@ -74,85 +74,13 @@ namespace TeeJee.Misc { regex = new Regex(expression); } catch (Error e) { - log_error (e.message); + vprint(e.message,1,stderr); return null; } MatchInfo match; - if (regex.match(line, 0, out match)) { - return match; - } else { - return null; - } - } - - private static void print_progress_bar_start(string message) { - log_msg("\n%s\n".printf(message)); - } - - private static void print_progress_bar(double fraction) { - - string txt = ""; - - double length = 30.0; - - double length_complete = fraction * length; - - double length_remaining = length - length_complete; - - if (length_complete > 0) { - for(int i = 0; i < length_complete; i++) { - txt += "▓"; - } - } - - if (length_remaining > 0) { - for(int i = 0; i < length_remaining; i++) { - txt += "░"; - } - } - - txt += " %0.0f %% ".printf(fraction * 100.0); - - stdout.printf("\r%s".printf(txt)); - stdout.flush(); - } - - private static void print_progress_bar_finish() { - print_progress_bar(1.0); - stdout.printf("\n\n"); - stdout.flush(); - } - - public string format_file_size ( - uint64 size, - bool binary_units = false, - string unit = "", - bool show_units = true, - int decimals = 1 - ) { - int64 unit_k = binary_units ? 1024 : 1000; - int64 unit_m = binary_units ? 1024 * unit_k : 1000 * unit_k; - int64 unit_g = binary_units ? 1024 * unit_m : 1000 * unit_m; - int64 unit_t = binary_units ? 1024 * unit_g : 1000 * unit_g; - string txt = ""; - if ((size > unit_t) && ((unit.length == 0) || (unit == "t"))) { - txt += ("%%'0.%df".printf(decimals)).printf(size / (1.0 * unit_t)); - if (show_units) txt += " %sB".printf(binary_units ? "Ti" : "T"); - } else if ((size > unit_g) && ((unit.length == 0) || (unit == "g"))) { - txt += ("%%'0.%df".printf(decimals)).printf(size / (1.0 * unit_g)); - if (show_units) txt += " %sB".printf(binary_units ? "Gi" : "G"); - } else if ((size > unit_m) && ((unit.length == 0) || (unit == "m"))) { - txt += ("%%'0.%df".printf(decimals)).printf(size / (1.0 * unit_m)); - if (show_units) txt += " %sB".printf(binary_units ? "Mi" : "M"); - } else if ((size > unit_k) && ((unit.length == 0) || (unit == "k"))) { - txt += ("%%'0.%df".printf(decimals)).printf(size / (1.0 * unit_k)); - if (show_units) txt += " %sB".printf(binary_units ? "Ki" : "K"); - } else { - txt += "%'0lu".printf(size); - if (show_units) txt += " B"; - } - return txt; + if (regex.match(line, 0, out match)) { return match; } + else { return null; } } } diff --git a/src/lib/TeeJee.ProcessHelper.vala b/src/lib/TeeJee.ProcessHelper.vala index 2cb8cab5..2790e11b 100644 --- a/src/lib/TeeJee.ProcessHelper.vala +++ b/src/lib/TeeJee.ProcessHelper.vala @@ -23,29 +23,29 @@ */ namespace TeeJee.ProcessHelper { - using TeeJee.Logging; using TeeJee.FileSystem; using TeeJee.Misc; + using l.misc; // execute process --------------------------------- // execute command synchronously - public int exec_sync (string cmd, out string? std_out = null, out string? std_err = null) { + public int exec_sync(string cmd, out string? std_out = null, out string? std_err = null) { try { int status; Process.spawn_command_line_sync (cmd, out std_out, out std_err, out status); - return status; + return status; } catch (SpawnError e) { - log_error (e.message); - return -1; + vprint(e.message,1,stderr); + return -1; } } // 20200510 bkw - execute command without waiting public void exec_async (string cmd) { try { Process.spawn_command_line_async (cmd); } - catch (SpawnError e) { log_error (e.message); } + catch (SpawnError e) { vprint(e.message,1,stderr); } } // temp files ------------------------------------- @@ -73,7 +73,7 @@ namespace TeeJee.ProcessHelper { f = get_temp_file_path(t_dir) + ".sh"; } - log_debug("save_bash_script_temp("+file+"):"+f); + vprint("save_bash_script_temp("+file+"):"+f,3); string s = "#!/bin/bash\n" + cmds + "\n"; @@ -102,7 +102,7 @@ namespace TeeJee.ProcessHelper { Process.spawn_command_line_sync(cmd, out std_out, out std_err, out ret_val); } catch (Error e) { - log_error (e.message); + vprint(e.message,1,stderr); return false; } @@ -146,9 +146,9 @@ namespace TeeJee.ProcessHelper { int[] child_pids = get_process_children (process_pid); #if VALA_0_40 - Posix.kill (process_pid, Posix.Signal.TERM); + Posix.kill(process_pid, Posix.Signal.TERM); #else - Posix.kill (process_pid, Posix.SIGTERM); + Posix.kill(process_pid, Posix.SIGTERM); #endif if (killChildren) { @@ -156,9 +156,9 @@ namespace TeeJee.ProcessHelper { foreach (long pid in child_pids) { childPid = (Pid) pid; #if VALA_0_40 - Posix.kill (childPid, Posix.Signal.TERM); + Posix.kill(childPid, Posix.Signal.TERM); #else - Posix.kill (childPid, Posix.SIGTERM); + Posix.kill(childPid, Posix.SIGTERM); #endif } } diff --git a/src/lib/l.misc.vala b/src/lib/l.misc.vala new file mode 100644 index 00000000..daa4572b --- /dev/null +++ b/src/lib/l.misc.vala @@ -0,0 +1,54 @@ +// new not TeeJee + +namespace l.misc { + + public static int VERBOSE = 1; + const int64 KB = 1024; + const int64 MB = 1024 * KB; + + private static void set_locale() { + Intl.setlocale(LocaleCategory.MESSAGES,BRANDING_SHORTNAME); + Intl.textdomain(BRANDING_SHORTNAME); + Intl.bind_textdomain_codeset(BRANDING_SHORTNAME,"utf-8"); + Intl.bindtextdomain(BRANDING_SHORTNAME,LOCALE_DIR); + } + + public void vprint(string s,int v=1,FileStream f=stdout,bool n=true) { + if (v>VERBOSE) return; + string o = s; + if (VERBOSE>3) o = "%d: ".printf(Posix.getpid()) + o; + if (n) o += "\n"; + f.printf(o); + f.flush(); + } + + public void uri_open(string s) { + try { AppInfo.launch_default_for_uri(s,null); } + catch (Error e) { warning("Unable to launch %s",s); } + } + + private static void pbar(int64 part=0,int64 whole=100,string units="") { + if (VERBOSE<1) return; + if (whole==0) { vprint("\r%79s\r".printf(""),1,stdout,false); return; } + + int i = 0; + int64 c = 0; + int64 plen = 0; + int64 wlen = 40; + string b = ""; + string u = units; + + if (whole>0) { c=(part*100/whole); plen=(part*wlen/whole); } + else { c=100; plen=wlen; } + + for (i=0;i0) u = " "+part.to_string()+"/"+whole.to_string()+" "+u; + vprint("\r%79s\r%s %d%% %s ".printf("",b,(int)c,u),1,stdout,false); + } + + public string b2h(int64 b) { + if (b>MB) return (b/MB).to_string()+"M"; + else return (b/KB).to_string()+"K"; + } + +} From 9d61db35811d251ede03e099b978debc4584089e Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Tue, 14 Mar 2023 07:02:33 -0400 Subject: [PATCH 267/567] remove no-longer-used DownloadItem status_line() --- po/messages.pot | 2 +- src/Common/DownloadManager.vala | 33 +++++++-------------------------- 2 files changed, 8 insertions(+), 27 deletions(-) diff --git a/po/messages.pot b/po/messages.pot index 73fc9902..b05f2f30 100644 --- a/po/messages.pot +++ b/po/messages.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline 1.1.6\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-14 06:31-0400\n" +"POT-Creation-Date: 2023-03-14 06:58-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/src/Common/DownloadManager.vala b/src/Common/DownloadManager.vala index 4b660564..054dafa1 100644 --- a/src/Common/DownloadManager.vala +++ b/src/Common/DownloadManager.vala @@ -120,38 +120,25 @@ public class DownloadTask : AsyncTask { public bool update_progress_parse_console_output (string line) { if ((line == null) || (line.length == 0)) return true; - //log_debug(line); + //vprint(line,2); MatchInfo match; if (regex["file-complete"].match(line, 0, out match)) { - //log_debug("match: file-complete: " + line); + //vprint("match: file-complete: " + line,2); prg_count++; - } - else if (regex["file-status"].match(line, 0, out match)) { + } else if (regex["file-status"].match(line, 0, out match)) { //8ae3a3|OK | 16KiB/s|/home/teejee/.cache/ukuu/v4.0.7-wily/index.html - //log_debug("match: file-status: " + line); - - // always display - //log_debug(line); - string gid_key = match.fetch(1).strip(); string status = match.fetch(2).strip(); //int64 rate = int64.parse(match.fetch(3).strip()); //string file = match.fetch(4).strip(); - if (map.has_key(gid_key)) { - //map[gid_key].rate = rate; - map[gid_key].status = status; - } - } - else if (regex["file-progress"].match(line, 0, out match)) { + if (map.has_key(gid_key)) map[gid_key].status = status; - //log_debug("match: file-progress: " + line); - - // Note: HTML files don't have content length, so bytes_total will be 0 + } else if (regex["file-progress"].match(line, 0, out match)) { var gid_key = match.fetch(1).strip(); var received = int64.parse(match.fetch(2).strip()); @@ -165,12 +152,10 @@ public class DownloadTask : AsyncTask { item.bytes_received = received; if (item.bytes_total == 0) item.bytes_total = total; item.status = "RUNNING"; - //status_line = item.status_line(); } - } - else { - //log_debug("unmatched: '%s'".printf(line)); + } else { + //vprint("unmatched: '%s'".printf(line),2); } return true; @@ -212,8 +197,4 @@ public class DownloadItem : GLib.Object download_dir = _download_dir; source_uri = _source_uri; } - - //public string status_line() { - // return b2h(bytes_received) + " / " + b2h(bytes_total); - //} } From a81d3e9e180b1ea5407af721071d9ceb2f7cd106 Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Tue, 14 Mar 2023 07:44:42 -0400 Subject: [PATCH 268/567] 1.1.6 --- .deb_build_number.mak | 4 ++-- debian/changelog | 17 +++++++++++++++++ 2 files changed, 19 insertions(+), 2 deletions(-) diff --git a/.deb_build_number.mak b/.deb_build_number.mak index b96c37db..2d8f0026 100644 --- a/.deb_build_number.mak +++ b/.deb_build_number.mak @@ -1,3 +1,3 @@ # This file is generated by Makefile "make deb_build_number" -DEB_PKG_VERSION := 1.1.5 -DEB_BUILD_NUMBER := 0001 +DEB_PKG_VERSION := 1.1.6 +DEB_BUILD_NUMBER := 0000 diff --git a/debian/changelog b/debian/changelog index 653aa05c..797aff48 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,20 @@ +mainline (1.1.6) unstable; urgency=medium + + * fix save_app_config() broken in 1.1.5 + fixes "Can not reach" https://github.com/bkw777/mainline/issues/204 & 206 + * replace TeeJee.logging.vala, log_*(), & LOG_DEBUG=bool LOG_ENABLE=bool bools with l.misc.vala, vprint(), and VERBOSE=int + VERBOSE=int to set various verbosity levels instead of just debug on/off + environment variable VERBOSE to effect before commandline is parsed + * replace TeeJee print_progress_bar() with l.misc pbar() + clean up progress display + * stop the background notification instance and the users interactive instance from stepping on each other's cache operations on startup + main index download gets unique temp name + only launch notify-loop.sh immediately on config save if notifications were turned off + if notification on, then only launch the background loop on exit + * save & restore the terminal window dimensions (but not yet the position) + + -- Brian K. White Tue, 14 Mar 2023 07:18:37 -0400 + mainline (1.1.5) unstable; urgency=medium * Add proxy setting From f6474297a4eb29b536a29fe2a0d2bd0b66253437 Mon Sep 17 00:00:00 2001 From: Matthaiks <3577122+Matthaiks@users.noreply.github.com> Date: Tue, 14 Mar 2023 14:07:53 +0100 Subject: [PATCH 269/567] Update Polish translation --- po/pl.po | 29 +++++++++++------------------ 1 file changed, 11 insertions(+), 18 deletions(-) diff --git a/po/pl.po b/po/pl.po index 116844b2..3456c01f 100644 --- a/po/pl.po +++ b/po/pl.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-03-14 06:30-0400\n" -"PO-Revision-Date: 2023-03-11 12:47+0100\n" +"PO-Revision-Date: 2023-03-14 14:06+0100\n" "Last-Translator: Matthaiks\n" "Language-Team: Polish\n" "Language: pl\n" @@ -34,7 +34,7 @@ msgstr "OK" #: src/Common/LinuxKernel.vala:347 src/Common/LinuxKernel.vala:900 msgid "FAILED" -msgstr "" +msgstr "NIEPOWODZENIE" #: src/Common/LinuxKernel.vala:761 msgid "Packages Available" @@ -66,9 +66,8 @@ msgid "Downloading" msgstr "Pobieranie" #: src/Common/LinuxKernel.vala:913 -#, fuzzy msgid "is already installed." -msgstr "To jądro jest już zainstalowane." +msgstr "jest już zainstalowane." #: src/Common/LinuxKernel.vala:943 msgid "Uninstalling selected kernels" @@ -79,9 +78,8 @@ msgid "requested" msgstr "zażądane" #: src/Common/LinuxKernel.vala:952 -#, fuzzy msgid "not uninstalling the currently running kernel" -msgstr "pominięcie aktualnie uruchomionego jądra" +msgstr "bez odinstalowywania aktualnie uruchomionego jądra" #: src/Common/LinuxKernel.vala:968 msgid "found" @@ -100,9 +98,8 @@ msgid "Could not find any kernels to uninstall" msgstr "Nie można znaleźć żadnych jąder do odinstalowania" #: src/Common/LinuxKernel.vala:1032 -#, fuzzy msgid "The following kernels will be uninstalled" -msgstr "Następujące jądra zostaną odinstalowane:" +msgstr "Następujące jądra zostaną odinstalowane" #: src/Common/LinuxKernel.vala:1036 msgid "Continue ?" @@ -135,9 +132,8 @@ msgid "Notifications are disabled" msgstr "Powiadomienia są wyłączone" #: src/Common/Main.vala:352 src/Gtk/MainWindow.vala:634 -#, fuzzy msgid "Can not reach site" -msgstr "Nie można dotrzeć" +msgstr "Nie można dotrzeć do witryny" #: src/Common/Package.vala:58 #, c-format @@ -185,9 +181,8 @@ msgid "Uninstall specified kernel" msgstr "Odinstaluj wybrane jądro" #: src/Console/AppConsole.vala:61 -#, fuzzy msgid "Uninstall kernels older than the latest installed" -msgstr "Odinstaluj jądra starsze niż działające jądro" +msgstr "Odinstaluj jądra starsze niż ostatnio zainstalowane" #: src/Console/AppConsole.vala:62 msgid "Download specified kernels" @@ -223,12 +218,11 @@ msgstr "Ciąg wersji pobrany z danych wyjściowych --list" #: src/Console/AppConsole.vala:74 msgid "One or more, comma-seperated" -msgstr "" +msgstr "Jedno lub więcej, oddzielone przecinkami" #: src/Console/AppConsole.vala:75 -#, fuzzy msgid "The currently running kernel will always be ignored" -msgstr "Następujące jądra zostaną odinstalowane:" +msgstr "Aktualnie uruchomione jądro będzie zawsze ignorowane" #: src/Console/AppConsole.vala:153 src/Gtk/AppGtk.vala:123 msgid "Unknown option" @@ -351,7 +345,7 @@ msgstr "Odinstaluj stare" #: src/Gtk/MainWindow.vala:310 msgid "Uninstall kernels older than running kernel" -msgstr "Odinstaluj jądra starsze niż działające jądro" +msgstr "Odinstaluj jądra starsze niż uruchomione jądro" #: src/Gtk/MainWindow.vala:315 msgid "Reload" @@ -411,9 +405,8 @@ msgid "Notify if a point release is available" msgstr "Powiadom, jeśli pojawi się wersja punktowa" #: src/Gtk/SettingsDialog.vala:87 -#, fuzzy msgid "Seconds interval enabled for debugging" -msgstr "(Zezwalanie na interwały w sekundach dla --debug)" +msgstr "Interwał w sekundach włączony do debugowania" #: src/Gtk/SettingsDialog.vala:110 msgid "Check every" From 9ce8092907c01c62b1f9376d0119f62b1dfdeef4 Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Tue, 14 Mar 2023 10:31:43 -0400 Subject: [PATCH 270/567] proxy wasn't applied to connection test --- po/de.po | 12 +++--- po/el.po | 12 +++--- po/es.po | 12 +++--- po/fr.po | 12 +++--- po/hr.po | 12 +++--- po/it.po | 12 +++--- po/ko.po | 12 +++--- po/messages.pot | 10 ++--- po/nl.po | 12 +++--- po/pl.po | 12 +++--- po/ru.po | 12 +++--- po/sv.po | 12 +++--- po/tr.po | 12 +++--- po/uk.po | 12 +++--- src/Common/DownloadManager.vala | 11 ++---- src/Common/LinuxKernel.vala | 6 +-- src/Common/Main.vala | 25 ++----------- src/Gtk/MainWindow.vala | 10 +---- src/lib/TeeJee.ProcessHelper.vala | 21 ----------- src/lib/l.misc.vala | 61 +++++++++++++++++++++++++------ 20 files changed, 145 insertions(+), 155 deletions(-) diff --git a/po/de.po b/po/de.po index e515cf94..ea245b0b 100644 --- a/po/de.po +++ b/po/de.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-14 06:30-0400\n" +"POT-Creation-Date: 2023-03-14 10:07-0400\n" "PO-Revision-Date: 2023-02-20 18:40+0100\n" "Last-Translator: Marvin Meysel \n" "Language-Team: German\n" @@ -139,11 +139,6 @@ msgstr "Angerufen von" msgid "Notifications are disabled" msgstr "Benachrichtigungen sind deaktiviert" -#: src/Common/Main.vala:352 src/Gtk/MainWindow.vala:634 -#, fuzzy -msgid "Can not reach site" -msgstr "Fehler beim lesen der Datei" - #: src/Common/Package.vala:58 #, fuzzy, c-format msgid "File not found: %s" @@ -482,3 +477,8 @@ msgstr "" #: src/Gtk/l.gtk.vala:44 msgid "Missing Icon" msgstr "Fehlendes Symbol" + +#: src/lib/l.misc.vala:67 +#, fuzzy +msgid "Can not reach site" +msgstr "Fehler beim lesen der Datei" diff --git a/po/el.po b/po/el.po index 482620d1..b552f2e1 100644 --- a/po/el.po +++ b/po/el.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-14 06:30-0400\n" +"POT-Creation-Date: 2023-03-14 10:07-0400\n" "PO-Revision-Date: 2023-01-10 02:03-0600\n" "Last-Translator: Vasilis Kosmidis \n" "Language-Team: Greek\n" @@ -139,11 +139,6 @@ msgstr "Κλήθηκε από" msgid "Notifications are disabled" msgstr "Οι ειδοποιήσεις είναι απενεργοποιημένες" -#: src/Common/Main.vala:352 src/Gtk/MainWindow.vala:634 -#, fuzzy -msgid "Can not reach site" -msgstr "Αποτυχία ανάγνωσης του αρχείου" - #: src/Common/Package.vala:58 #, fuzzy, c-format msgid "File not found: %s" @@ -480,3 +475,8 @@ msgstr "" #: src/Gtk/l.gtk.vala:44 msgid "Missing Icon" msgstr "Ελλείπον εικονίδιο" + +#: src/lib/l.misc.vala:67 +#, fuzzy +msgid "Can not reach site" +msgstr "Αποτυχία ανάγνωσης του αρχείου" diff --git a/po/es.po b/po/es.po index d61ece29..5ee22d71 100644 --- a/po/es.po +++ b/po/es.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-14 06:30-0400\n" +"POT-Creation-Date: 2023-03-14 10:07-0400\n" "PO-Revision-Date: 2018-01-03 02:03-0600\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish\n" @@ -141,11 +141,6 @@ msgstr "" msgid "Notifications are disabled" msgstr "Notificación" -#: src/Common/Main.vala:352 src/Gtk/MainWindow.vala:634 -#, fuzzy -msgid "Can not reach site" -msgstr "Falló la lectura del archivo" - #: src/Common/Package.vala:58 #, fuzzy, c-format msgid "File not found: %s" @@ -489,3 +484,8 @@ msgstr "" #: src/Gtk/l.gtk.vala:44 msgid "Missing Icon" msgstr "Falta el icono" + +#: src/lib/l.misc.vala:67 +#, fuzzy +msgid "Can not reach site" +msgstr "Falló la lectura del archivo" diff --git a/po/fr.po b/po/fr.po index 34e46b00..034883ab 100644 --- a/po/fr.po +++ b/po/fr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-14 06:30-0400\n" +"POT-Creation-Date: 2023-03-14 10:07-0400\n" "PO-Revision-Date: 2018-08-05 15:50+0200\n" "Last-Translator: Yolateng0 \n" "Language-Team: French\n" @@ -140,11 +140,6 @@ msgstr "" msgid "Notifications are disabled" msgstr "Les notifications sont désactivées" -#: src/Common/Main.vala:352 src/Gtk/MainWindow.vala:634 -#, fuzzy -msgid "Can not reach site" -msgstr "Impossible de lire le fichier" - #: src/Common/Package.vala:58 #, fuzzy, c-format msgid "File not found: %s" @@ -488,3 +483,8 @@ msgstr "" #: src/Gtk/l.gtk.vala:44 msgid "Missing Icon" msgstr "Icône introuvable" + +#: src/lib/l.misc.vala:67 +#, fuzzy +msgid "Can not reach site" +msgstr "Impossible de lire le fichier" diff --git a/po/hr.po b/po/hr.po index 7244d33b..e0103592 100644 --- a/po/hr.po +++ b/po/hr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-14 06:30-0400\n" +"POT-Creation-Date: 2023-03-14 10:07-0400\n" "PO-Revision-Date: 2022-09-22 12:13+0200\n" "Last-Translator: gogo \n" "Language-Team: Croatian\n" @@ -139,11 +139,6 @@ msgstr "Pozvano od" msgid "Notifications are disabled" msgstr "Obavijesti su onemogućene" -#: src/Common/Main.vala:352 src/Gtk/MainWindow.vala:634 -#, fuzzy -msgid "Can not reach site" -msgstr "Neuspjelo čitanje datoteke" - #: src/Common/Package.vala:58 #, fuzzy, c-format msgid "File not found: %s" @@ -479,3 +474,8 @@ msgstr "" #: src/Gtk/l.gtk.vala:44 msgid "Missing Icon" msgstr "Ikone koje nedostaju" + +#: src/lib/l.misc.vala:67 +#, fuzzy +msgid "Can not reach site" +msgstr "Neuspjelo čitanje datoteke" diff --git a/po/it.po b/po/it.po index 624e768a..1e3dc28f 100644 --- a/po/it.po +++ b/po/it.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline 1.0.15\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-14 06:30-0400\n" +"POT-Creation-Date: 2023-03-14 10:07-0400\n" "PO-Revision-Date: 2020-08-22 15:35+0100\n" "Last-Translator: Albano Battistella \n" "Language-Team: Italian\n" @@ -137,11 +137,6 @@ msgstr "Chiamata da" msgid "Notifications are disabled" msgstr "Le notifiche sono disabilitate" -#: src/Common/Main.vala:352 src/Gtk/MainWindow.vala:634 -#, fuzzy -msgid "Can not reach site" -msgstr "Impossibile leggere il file" - #: src/Common/Package.vala:58 #, fuzzy, c-format msgid "File not found: %s" @@ -479,3 +474,8 @@ msgstr "" #: src/Gtk/l.gtk.vala:44 msgid "Missing Icon" msgstr "Icona mancante" + +#: src/lib/l.misc.vala:67 +#, fuzzy +msgid "Can not reach site" +msgstr "Impossibile leggere il file" diff --git a/po/ko.po b/po/ko.po index 492de7de..1603aa54 100644 --- a/po/ko.po +++ b/po/ko.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline 1.0.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-14 06:30-0400\n" +"POT-Creation-Date: 2023-03-14 10:07-0400\n" "PO-Revision-Date: 2022-09-28 11:48+0900\n" "Last-Translator: Kevin Kim \n" "Language-Team: Korean\n" @@ -139,11 +139,6 @@ msgstr "에서 호출" msgid "Notifications are disabled" msgstr "알림이 비활성화 되었습니다" -#: src/Common/Main.vala:352 src/Gtk/MainWindow.vala:634 -#, fuzzy -msgid "Can not reach site" -msgstr "파일 읽기를 실패했습니다" - #: src/Common/Package.vala:58 #, fuzzy, c-format msgid "File not found: %s" @@ -479,3 +474,8 @@ msgstr "" #: src/Gtk/l.gtk.vala:44 msgid "Missing Icon" msgstr "아이콘을 찾을 수 없습니다" + +#: src/lib/l.misc.vala:67 +#, fuzzy +msgid "Can not reach site" +msgstr "파일 읽기를 실패했습니다" diff --git a/po/messages.pot b/po/messages.pot index b05f2f30..7efb28ff 100644 --- a/po/messages.pot +++ b/po/messages.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline 1.1.6\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-14 06:58-0400\n" +"POT-Creation-Date: 2023-03-14 10:28-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -136,10 +136,6 @@ msgstr "" msgid "Notifications are disabled" msgstr "" -#: src/Common/Main.vala:352 src/Gtk/MainWindow.vala:634 -msgid "Can not reach site" -msgstr "" - #: src/Common/Package.vala:58 #, c-format msgid "File not found: %s" @@ -468,3 +464,7 @@ msgstr "" #: src/Gtk/l.gtk.vala:44 msgid "Missing Icon" msgstr "" + +#: src/lib/l.misc.vala:67 +msgid "Can not reach site" +msgstr "" diff --git a/po/nl.po b/po/nl.po index 46aece20..dbdfd03f 100644 --- a/po/nl.po +++ b/po/nl.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-14 06:30-0400\n" +"POT-Creation-Date: 2023-03-14 10:07-0400\n" "PO-Revision-Date: 2020-08-23 13:55+0200\n" "Last-Translator: Heimen Stoffels \n" "Language-Team: Dutch (Netherlands)\n" @@ -140,11 +140,6 @@ msgstr "Aangeroepen door" msgid "Notifications are disabled" msgstr "Meldingen zijn uitgeschakeld" -#: src/Common/Main.vala:352 src/Gtk/MainWindow.vala:634 -#, fuzzy -msgid "Can not reach site" -msgstr "Het bestand kan niet worden uitgelezen" - #: src/Common/Package.vala:58 #, fuzzy, c-format msgid "File not found: %s" @@ -484,3 +479,8 @@ msgstr "Proxy" #: src/Gtk/l.gtk.vala:44 msgid "Missing Icon" msgstr "Ontbrekend pictogram" + +#: src/lib/l.misc.vala:67 +#, fuzzy +msgid "Can not reach site" +msgstr "Het bestand kan niet worden uitgelezen" diff --git a/po/pl.po b/po/pl.po index 116844b2..f5b9a290 100644 --- a/po/pl.po +++ b/po/pl.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-14 06:30-0400\n" +"POT-Creation-Date: 2023-03-14 10:07-0400\n" "PO-Revision-Date: 2023-03-11 12:47+0100\n" "Last-Translator: Matthaiks\n" "Language-Team: Polish\n" @@ -134,11 +134,6 @@ msgstr "Wywołano z" msgid "Notifications are disabled" msgstr "Powiadomienia są wyłączone" -#: src/Common/Main.vala:352 src/Gtk/MainWindow.vala:634 -#, fuzzy -msgid "Can not reach site" -msgstr "Nie można dotrzeć" - #: src/Common/Package.vala:58 #, c-format msgid "File not found: %s" @@ -470,3 +465,8 @@ msgstr "Serwer pośredniczący" #: src/Gtk/l.gtk.vala:44 msgid "Missing Icon" msgstr "Brakująca ikona" + +#: src/lib/l.misc.vala:67 +#, fuzzy +msgid "Can not reach site" +msgstr "Nie można dotrzeć" diff --git a/po/ru.po b/po/ru.po index 3e708f0a..cb345064 100644 --- a/po/ru.po +++ b/po/ru.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-14 06:30-0400\n" +"POT-Creation-Date: 2023-03-14 10:07-0400\n" "PO-Revision-Date: 2023-03-12 18:24+0300\n" "Last-Translator: Faust3000 (Original) | Danik2343 (Update Transaltion) " "\n" @@ -136,11 +136,6 @@ msgstr "Вызван из" msgid "Notifications are disabled" msgstr "Уведомления отключены" -#: src/Common/Main.vala:352 src/Gtk/MainWindow.vala:634 -#, fuzzy -msgid "Can not reach site" -msgstr "Не удается получить" - #: src/Common/Package.vala:58 #, c-format msgid "File not found: %s" @@ -472,3 +467,8 @@ msgstr "Прокси" #: src/Gtk/l.gtk.vala:44 msgid "Missing Icon" msgstr "Значок отсутствует" + +#: src/lib/l.misc.vala:67 +#, fuzzy +msgid "Can not reach site" +msgstr "Не удается получить" diff --git a/po/sv.po b/po/sv.po index 3166c966..d576757b 100644 --- a/po/sv.po +++ b/po/sv.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-14 06:30-0400\n" +"POT-Creation-Date: 2023-03-14 10:07-0400\n" "PO-Revision-Date: 2018-01-13 16:56+0100\n" "Last-Translator: Åke Engelbrektson \n" "Language-Team:Swedish\n" @@ -142,11 +142,6 @@ msgstr "" msgid "Notifications are disabled" msgstr "Avisering" -#: src/Common/Main.vala:352 src/Gtk/MainWindow.vala:634 -#, fuzzy -msgid "Can not reach site" -msgstr "Kunde inte läsa filen" - #: src/Common/Package.vala:58 #, fuzzy, c-format msgid "File not found: %s" @@ -494,3 +489,8 @@ msgstr "" #: src/Gtk/l.gtk.vala:44 msgid "Missing Icon" msgstr "Saknad ikon" + +#: src/lib/l.misc.vala:67 +#, fuzzy +msgid "Can not reach site" +msgstr "Kunde inte läsa filen" diff --git a/po/tr.po b/po/tr.po index b435a192..a313db91 100644 --- a/po/tr.po +++ b/po/tr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-14 06:30-0400\n" +"POT-Creation-Date: 2023-03-14 10:07-0400\n" "PO-Revision-Date: 2022-08-06 16:48+0300\n" "Last-Translator: Sabri Ünal \n" "Language-Team: Turkish\n" @@ -140,11 +140,6 @@ msgstr "Çağrı konumu" msgid "Notifications are disabled" msgstr "Bildirimler devre dışı bırakılmış" -#: src/Common/Main.vala:352 src/Gtk/MainWindow.vala:634 -#, fuzzy -msgid "Can not reach site" -msgstr "Dosya okunamadı" - #: src/Common/Package.vala:58 #, fuzzy, c-format msgid "File not found: %s" @@ -480,3 +475,8 @@ msgstr "" #: src/Gtk/l.gtk.vala:44 msgid "Missing Icon" msgstr "Eksik Simge" + +#: src/lib/l.misc.vala:67 +#, fuzzy +msgid "Can not reach site" +msgstr "Dosya okunamadı" diff --git a/po/uk.po b/po/uk.po index a4ff435a..2e571344 100644 --- a/po/uk.po +++ b/po/uk.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-14 06:30-0400\n" +"POT-Creation-Date: 2023-03-14 10:07-0400\n" "PO-Revision-Date: 2019-07-25 11:00+0300\n" "Last-Translator: Serhii Golovko \n" "Language-Team: Ukranian\n" @@ -136,11 +136,6 @@ msgstr "Викликано з" msgid "Notifications are disabled" msgstr "Повідомлення вимкнено" -#: src/Common/Main.vala:352 src/Gtk/MainWindow.vala:634 -#, fuzzy -msgid "Can not reach site" -msgstr "Не може дістатися" - #: src/Common/Package.vala:58 #, fuzzy, c-format msgid "File not found: %s" @@ -474,3 +469,8 @@ msgstr "" #: src/Gtk/l.gtk.vala:44 msgid "Missing Icon" msgstr "Нема значка" + +#: src/lib/l.misc.vala:67 +#, fuzzy +msgid "Can not reach site" +msgstr "Не може дістатися" diff --git a/src/Common/DownloadManager.vala b/src/Common/DownloadManager.vala index 054dafa1..e8f3fa6b 100644 --- a/src/Common/DownloadManager.vala +++ b/src/Common/DownloadManager.vala @@ -8,9 +8,6 @@ public class DownloadTask : AsyncTask { // settings public int timeout_secs = 60; - private int connect_timeout = App.connect_timeout_seconds; - private int max_concurrent = App.concurrent_downloads; - private string all_proxy = App.all_proxy; // download lists private Gee.ArrayList downloads; @@ -91,16 +88,16 @@ public class DownloadTask : AsyncTask { + " --auto-save-interval=1" + " --enable-color=false" + " --allow-overwrite" - + " --connect-timeout=%d".printf(connect_timeout) - + " --timeout=%d".printf(timeout_secs) - + " --max-concurrent-downloads=%d".printf(max_concurrent) + + " --connect-timeout=%d".printf(App.connect_timeout_seconds) + + " --timeout=600" + + " --max-concurrent-downloads=%d".printf(App.concurrent_downloads) + " --max-file-not-found=3" + " --retry-wait=2" + " --show-console-readout=false" + " --human-readable=false" ; - if (all_proxy!="") cmd += " --all-proxy='"+all_proxy+"'"; + if (App.all_proxy.length>0) cmd += " --all-proxy='"+App.all_proxy+"'"; vprint(cmd,2); diff --git a/src/Common/LinuxKernel.vala b/src/Common/LinuxKernel.vala index 8ac2d274..c2cec0c6 100644 --- a/src/Common/LinuxKernel.vala +++ b/src/Common/LinuxKernel.vala @@ -265,7 +265,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { } // process the download list - if ((downloads.size > 0) && App.connection_status) { + if ((downloads.size > 0) && App.ppa_up) { progress_total = downloads.size; var mgr = new DownloadTask(); @@ -309,7 +309,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { vprint("download_index()",2); check_if_initialized(); - if (!App.check_internet_connectivity()) return false; + if (!try_ppa()) return false; if (!file_exists(index_page)) App.index_is_fresh=false; if (App.index_is_fresh) return true; @@ -914,7 +914,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { return false; } - if (!App.check_internet_connectivity()) return false; + if (!try_ppa()) return false; bool ok = download_packages(); int status = -1; diff --git a/src/Common/Main.vala b/src/Common/Main.vala index 024cc98c..12332b09 100644 --- a/src/Common/Main.vala +++ b/src/Common/Main.vala @@ -76,8 +76,8 @@ public class Main : GLib.Object { public bool GUI_MODE = false; public string command = "list"; public string requested_version = ""; - public bool connection_checked = false; - public bool connection_status = true; + public bool ppa_tried = false; + public bool ppa_up = true; public bool index_is_fresh = false; public int window_width = 800; @@ -309,7 +309,7 @@ public class Main : GLib.Object { } file_write(STARTUP_SCRIPT_FILE,s); - // settings get saved on startup if missing + // settings get saved on startup if the file doesn't exist yet, // so we don't always want to launch the bg process // on every save, because when notifications are enabled, // the bg process runs another instance of ourself while we are still starting up ourselves, @@ -317,7 +317,7 @@ public class Main : GLib.Object { // slightly better: // if notifications are now off, then run immediately so it clears out the existing bg possibly already running // if notifications are now on, then run on exit. - if (!notify_major && !notify_major) exec_async("bash "+STARTUP_SCRIPT_FILE+" 2>&- >&-"); + if (!notify_major && !notify_minor) exec_async("bash "+STARTUP_SCRIPT_FILE+" 2>&- >&-"); } private void update_startup_desktop_file() { @@ -338,21 +338,4 @@ public class Main : GLib.Object { } } - public bool check_internet_connectivity() { - if (connection_checked) return connection_status; - - string std_err, std_out; - string cmd = "aria2c --no-netrc --no-conf --connect-timeout="+connect_timeout_seconds.to_string()+" --max-file-not-found=3 --retry-wait=2 --max-tries=3 --dry-run --quiet '"+ppa_uri+"'"; - - int status = exec_sync(cmd, out std_out, out std_err); - if (std_err.length > 0) vprint(std_err,1,stderr); - - connection_status = false; - if (status == 0) connection_status = true; - else vprint(_("Can not reach site")+": '"+ppa_uri+"'",1,stderr); - - connection_checked = true; - return connection_status; - } - } diff --git a/src/Gtk/MainWindow.vala b/src/Gtk/MainWindow.vala index e679e7e2..7949b661 100644 --- a/src/Gtk/MainWindow.vala +++ b/src/Gtk/MainWindow.vala @@ -418,7 +418,7 @@ public class MainWindow : Gtk.Window { private void reload_cache() { vprint("reload_cache()",2); LinuxKernel.delete_cache(); - App.connection_checked=false; + App.ppa_tried = false; update_cache(); } @@ -426,7 +426,7 @@ public class MainWindow : Gtk.Window { private void update_cache() { vprint("update_cache()",2); - test_net(); + if (!try_ppa()) return; if (!App.GUI_MODE) { // refresh without GUI @@ -629,10 +629,4 @@ public class MainWindow : Gtk.Window { term.execute_script(t_file,t_dir); } - public bool test_net() { - if (App.connection_checked) return App.connection_status; - if (!App.check_internet_connectivity()) errbox(this,_("Can not reach site")+": '"+App.ppa_uri+"'"); - return App.connection_status; - } - } diff --git a/src/lib/TeeJee.ProcessHelper.vala b/src/lib/TeeJee.ProcessHelper.vala index 2790e11b..5ebd5d13 100644 --- a/src/lib/TeeJee.ProcessHelper.vala +++ b/src/lib/TeeJee.ProcessHelper.vala @@ -27,27 +27,6 @@ namespace TeeJee.ProcessHelper { using TeeJee.Misc; using l.misc; - // execute process --------------------------------- - - // execute command synchronously - public int exec_sync(string cmd, out string? std_out = null, out string? std_err = null) { - try { - int status; - Process.spawn_command_line_sync (cmd, out std_out, out std_err, out status); - return status; - } - catch (SpawnError e) { - vprint(e.message,1,stderr); - return -1; - } - } - - // 20200510 bkw - execute command without waiting - public void exec_async (string cmd) { - try { Process.spawn_command_line_async (cmd); } - catch (SpawnError e) { vprint(e.message,1,stderr); } - } - // temp files ------------------------------------- // create a unique temp dir rooted at App.TMP_PREFIX diff --git a/src/lib/l.misc.vala b/src/lib/l.misc.vala index daa4572b..5f45b431 100644 --- a/src/lib/l.misc.vala +++ b/src/lib/l.misc.vala @@ -3,8 +3,6 @@ namespace l.misc { public static int VERBOSE = 1; - const int64 KB = 1024; - const int64 MB = 1024 * KB; private static void set_locale() { Intl.setlocale(LocaleCategory.MESSAGES,BRANDING_SHORTNAME); @@ -31,24 +29,63 @@ namespace l.misc { if (VERBOSE<1) return; if (whole==0) { vprint("\r%79s\r".printf(""),1,stdout,false); return; } - int i = 0; - int64 c = 0; - int64 plen = 0; - int64 wlen = 40; - string b = ""; - string u = units; + int64 c = 0, plen = 0, wlen = 40; + string b = "", u = units; if (whole>0) { c=(part*100/whole); plen=(part*wlen/whole); } else { c=100; plen=wlen; } - for (i=0;i0) u = " "+part.to_string()+"/"+whole.to_string()+" "+u; vprint("\r%79s\r%s %d%% %s ".printf("",b,(int)c,u),1,stdout,false); } - public string b2h(int64 b) { - if (b>MB) return (b/MB).to_string()+"M"; - else return (b/KB).to_string()+"K"; + public bool try_ppa() { + vprint("try_ppa()",4); + if (App.ppa_tried) return App.ppa_up; + + string std_err, std_out; + string cmd = "aria2c" + + " --no-netrc" + + " --no-conf" + + " --connect-timeout="+App.connect_timeout_seconds.to_string() + + " --max-file-not-found=3" + + " --retry-wait=2" + + " --max-tries=3" + + " --dry-run" + + " --quiet"; + if (App.all_proxy.length>0) cmd += " --all-proxy='"+App.all_proxy+"'"; + cmd += " \""+App.ppa_uri+"\""; + vprint(cmd,3); + + int status = exec_sync(cmd, out std_out, out std_err); + if (std_err.length > 0) vprint(std_err,1,stderr); + + App.ppa_tried = true; + App.ppa_up = false; + if (status == 0) App.ppa_up = true; + else vprint(_("Can not reach site")+": '"+App.ppa_uri+"'",1,stderr); + + App.ppa_up = true; + return App.ppa_up; + } + + // execute command synchronously + public int exec_sync(string cmd, out string? std_out = null, out string? std_err = null) { + try { + int status; + Process.spawn_command_line_sync(cmd, out std_out, out std_err, out status); + return status; + } catch (SpawnError e) { + vprint(e.message,1,stderr); + return -1; + } + } + + // 20200510 bkw - execute command without waiting + public void exec_async(string cmd) { + try { Process.spawn_command_line_async (cmd); } + catch (SpawnError e) { vprint(e.message,1,stderr); } } } From 054169faa55ef962813453e1316d2e5e22c2fe9b Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Tue, 14 Mar 2023 10:41:05 -0400 Subject: [PATCH 271/567] detect notification settings on exit, proxy setting on connection test --- BRANDING.mak | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BRANDING.mak b/BRANDING.mak index 0c28e590..f641651f 100644 --- a/BRANDING.mak +++ b/BRANDING.mak @@ -3,7 +3,7 @@ VERSION_MAJOR = 1 VERSION_MINOR = 1 -VERSION_MICRO = 6 +VERSION_MICRO = 7 BRANDING_SHORTNAME = mainline BRANDING_LONGNAME = Ubuntu Mainline Kernel Installer BRANDING_AUTHORNAME = Brian K. White From 4640967ded014edf4c05d6f7484ff486713892a7 Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Tue, 14 Mar 2023 10:43:58 -0400 Subject: [PATCH 272/567] 1.1.7 --- .deb_build_number.mak | 2 +- debian/changelog | 7 +++++++ 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/.deb_build_number.mak b/.deb_build_number.mak index 2d8f0026..455ec387 100644 --- a/.deb_build_number.mak +++ b/.deb_build_number.mak @@ -1,3 +1,3 @@ # This file is generated by Makefile "make deb_build_number" -DEB_PKG_VERSION := 1.1.6 +DEB_PKG_VERSION := 1.1.7 DEB_BUILD_NUMBER := 0000 diff --git a/debian/changelog b/debian/changelog index 797aff48..0109669a 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +mainline (1.1.7) unstable; urgency=medium + + * fix detect notification settings change on exit missed notify_minor + * apply proxy setting to net connection test + + -- Brian K. White Tue, 14 Mar 2023 10:41:24 -0400 + mainline (1.1.6) unstable; urgency=medium * fix save_app_config() broken in 1.1.5 From 1b9b2e1c255569b4694123395b0a31f27494f913 Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Thu, 16 Mar 2023 01:28:25 -0400 Subject: [PATCH 273/567] slightly improve notifications autostart script --- lib/notify_send/notify-action.sh | 36 ++--- lib/notify_send/notify-send.sh | 94 ++++++------ po/de.po | 235 +++++++++++++++--------------- po/el.po | 235 +++++++++++++++--------------- po/es.po | 235 +++++++++++++++--------------- po/fr.po | 235 +++++++++++++++--------------- po/hr.po | 235 +++++++++++++++--------------- po/it.po | 235 +++++++++++++++--------------- po/ko.po | 235 +++++++++++++++--------------- po/messages.pot | 237 ++++++++++++++++--------------- po/nl.po | 235 +++++++++++++++--------------- po/pl.po | 235 +++++++++++++++--------------- po/ru.po | 235 +++++++++++++++--------------- po/sv.po | 235 +++++++++++++++--------------- po/tr.po | 235 +++++++++++++++--------------- po/uk.po | 235 +++++++++++++++--------------- src/Common/LinuxKernel.vala | 1 - src/Common/Main.vala | 73 +++++----- src/Console/AppConsole.vala | 1 - src/Gtk/AboutWindow.vala | 188 ++++++------------------ src/Gtk/AppGtk.vala | 5 +- src/Gtk/MainWindow.vala | 1 - src/Gtk/ProgressWindow.vala | 1 - src/Gtk/SettingsDialog.vala | 1 - src/Gtk/TerminalWindow.vala | 1 - src/Gtk/l.gtk.vala | 1 - src/lib/AsyncTask.vala | 1 - src/lib/TeeJee.Misc.vala | 18 +-- src/lib/l.misc.vala | 21 ++- src/lib/l.time.vala | 21 --- 30 files changed, 1847 insertions(+), 1909 deletions(-) delete mode 100644 src/lib/l.time.vala diff --git a/lib/notify_send/notify-action.sh b/lib/notify_send/notify-action.sh index 114e8385..eca35e23 100755 --- a/lib/notify_send/notify-action.sh +++ b/lib/notify_send/notify-action.sh @@ -20,9 +20,9 @@ GDBUS_ARGS=(monitor --session --dest org.freedesktop.Notifications --object-path abrt () { echo "${SELF}: ${@}" >&2 ; exit 1 ; } # consume the command line -typeset -i ID="${1}" ;shift -((${ID}>0)) || abrt "no notification id" -declare -A a ;while ((${#})) ;do a[${1}]=${2} ;shift 2 ;done +typeset -i ID="$1" ;shift +((ID>0)) || abrt "no notification id" +declare -A a ;while (($#)) ;do a[$1]=$2 ;shift 2 ;done ((${#a[@]})) || abrt "no actions" [[ "${DISPLAY}" ]] || abrt "no DISPLAY" @@ -33,14 +33,14 @@ shopt -s extglob # kill obsolete monitors (now) echo -n "${DISPLAY} ${ID} " > "${GDBUS_PIDF}" for f in ${TMP}/${APP_NAME}.+([0-9]).p ;do - [[ -s ${f} ]] || continue - [[ ${f} -ot ${GDBUS_PIDF} ]] || continue - read d i p x < ${f} - [[ "${d}" == "${DISPLAY}" ]] || continue - ((${i}==${ID})) || continue - ((${p}>1)) || continue - rm -f "${f}" - kill ${p} + [[ -s $f ]] || continue + [[ $f -ot ${GDBUS_PIDF} ]] || continue + read d i p x < "$f" + [[ $d == ${DISPLAY} ]] || continue + ((i==ID)) || continue + ((p>1)) || continue + rm -f "$f" + kill $p done # kill current monitor (on exit) @@ -50,24 +50,24 @@ conclude () { [[ -s ${GDBUS_PIDF} ]] || exit 0 read d i p x < "${GDBUS_PIDF}" rm -f "${GDBUS_PIDF}" - ((${p}>1)) || exit - kill ${p} + ((p>1)) || exit + kill $p } # execute an invoked command doit () { - setsid -f ${a[${1}]} >&- 2>&- <&- & + setsid -f ${a[$1]} >&- 2>&- <&- ${EXPLICIT_CLOSE:-false} && "${SEND_SH}" -s ${ID} } # start the monitor { - gdbus ${GDBUS_ARGS[@]} & echo ${!} >> "${GDBUS_PIDF}" + gdbus ${GDBUS_ARGS[@]} & echo $! >> "${GDBUS_PIDF}" } |while IFS=" :.(),'" read x x x x e x i x k x ;do - ((${i}==${ID})) || continue - case "${e}" in + ((i==ID)) || continue + case "$e" in "NotificationClosed") doit "close" ;; - "ActionInvoked") doit "${k}" ;; + "ActionInvoked") doit "$k" ;; esac break done diff --git a/lib/notify_send/notify-send.sh b/lib/notify_send/notify-send.sh index 1c00b96a..0060c7f1 100755 --- a/lib/notify_send/notify-send.sh +++ b/lib/notify_send/notify-send.sh @@ -78,15 +78,15 @@ Application Options: EOF } -abrt () { echo "${SELF}: ${@}" >&2 ; exit 1 ; } +abrt () { echo "${SELF}: $@" >&2 ; exit 1 ; } notify_close () { - i=${2} ;((${i}>0)) && sleep ${i:0:-3}.${i:$((${#i}-3))} - gdbus call ${NOTIFY_ARGS[@]} --method org.freedesktop.Notifications.CloseNotification "${1}" >&- + i=$2 ;((i>0)) && sleep ${i:0:-3}.${i:$((${#i}-3))} + gdbus call ${NOTIFY_ARGS[@]} --method org.freedesktop.Notifications.CloseNotification "$1" >&- } process_urgency () { - case "${1}" in + case "$1" in 0|low) URGENCY=0 ;; 1|normal) URGENCY=1 ;; 2|critical) URGENCY=2 ;; @@ -95,27 +95,27 @@ process_urgency () { } process_category () { - local a c ;IFS=, a=(${1}) + local a c ;IFS=, a=($1) for c in "${a[@]}"; do - make_hint string category "${c}" && HINTS+=(${_r}) + make_hint string category "$c" && HINTS+=(${_r}) done } make_hint () { - _r= ;local t=${1} n=${2} c=${3} - [[ ${t} =~ ^(byte|int32|double|string)$ ]] || abrt "Hint types: byte int32 double string" - [[ ${t} = string ]] && c="\"${3}\"" + _r= ;local t=$1 n=$2 c=$3 + [[ $t =~ ^(byte|int32|double|string)$ ]] || abrt "Hint types: byte int32 double string" + [[ $t == string ]] && c="\"${3}\"" _r="\"${n}\":<${t} ${c}>" } process_hint () { - local a ;IFS=: a=(${1}) + local a ;IFS=: a=($1) ((${#a[@]}==3)) || abrt "Hint syntax: \"TYPE:NAME:VALUE\"" make_hint "${a[0]}" "${a[1]}" "${a[2]}" && HINTS+=(${_r}) } process_action () { - local a k ;IFS=: a=(${1}) + local a k ;IFS=: a=($1) ((${#a[@]}==2)) || abrt "Action syntax: \"NAME:COMMAND\"" k=${#AKEYS[@]} AKEYS+=("\"${k}\",\"${a[0]}\"") @@ -125,19 +125,19 @@ process_action () { # key=default: key:command and key:label, with empty label # key=close: key:command, no key:label (no button for the on-close event) process_special_action () { - [[ "${2}" ]] || abrt "Command must not be empty" - [[ "${1}" != "close" ]] && AKEYS+=("\"${1}\",\"\"") - ACMDS+=("${1}" "${2}") + [[ $2 ]] || abrt "Command must not be empty" + [[ $1 != close ]] && AKEYS+=("\"${1}\",\"\"") + ACMDS+=("$1" "$2") } process_posargs () { - [[ "${1}" = -* ]] && ! ${positional} && abrt "Unknown option ${1}" - ${summary_set} && BODY=${1} || SUMMARY=${1} summary_set=true + [[ $1 == -* ]] && ! ${positional} && abrt "Unknown option $1" + ${summary_set} && BODY=$1 || SUMMARY=$1 summary_set=true } -while ((${#})) ; do +while (($#)) ; do s= i=0 - case "${1}" in + case "$1" in -\?|--help) help exit 0 @@ -147,89 +147,89 @@ while ((${#})) ; do exit 0 ;; -u|--urgency|--urgency=*) - [[ "${1}" = --urgency=* ]] && s=${1#*=} || { shift ;s=${1} ; } + [[ $1 == --urgency=* ]] && s=${1#*=} || { shift ;s=$1 ; } process_urgency "${s}" ;; -t|--expire-time|--expire-time=*) - [[ "${1}" = --expire-time=* ]] && EXPIRE_TIME=${1#*=} || { shift ;EXPIRE_TIME=${1} ; } + [[ $1 == --expire-time=* ]] && EXPIRE_TIME=${1#*=} || { shift ;EXPIRE_TIME=$1 ; } ;; -f|--force-expire) export EXPLICIT_CLOSE=true # only export if explicitly set ;; -a|--app-name|--app-name=*) - [[ "${1}" = --app-name=* ]] && APP_NAME=${1#*=} || { shift ;APP_NAME=${1} ; } + [[ $1 == --app-name=* ]] && APP_NAME=${1#*=} || { shift ;APP_NAME=$1 ; } export APP_NAME # only export if explicitly set ;; -i|--icon|--icon=*) - [[ "${1}" = --icon=* ]] && ICON=${1#*=} || { shift ;ICON=${1} ; } + [[ $1 == --icon=* ]] && ICON=${1#*=} || { shift ;ICON=$1 ; } ;; -c|--category|--category=*) - [[ "${1}" = --category=* ]] && s=${1#*=} || { shift ;s=${1} ; } - process_category "${s}" + [[ $1 == --category=* ]] && s=${1#*=} || { shift ;s=$1 ; } + process_category "$s" ;; -h|--hint|--hint=*) - [[ "${1}" = --hint=* ]] && s=${1#*=} || { shift ;s=${1} ; } - process_hint "${s}" + [[ $1 == --hint=* ]] && s=${1#*=} || { shift ;s=$1 ; } + process_hint "$s" ;; -o|--action|--action=*) - [[ "${1}" == --action=* ]] && s=${1#*=} || { shift ;s=${1} ; } - process_action "${s}" + [[ $1 == --action=* ]] && s=${1#*=} || { shift ;s=$1 ; } + process_action "$s" ;; -d|--default-action|--default-action=*) - [[ "${1}" == --default-action=* ]] && s=${1#*=} || { shift ;s=${1} ; } - process_special_action default "${s}" + [[ $1 == --default-action=* ]] && s=${1#*=} || { shift ;s=$1 ; } + process_special_action default "$s" ;; -l|--close-action|--close-action=*) - [[ "${1}" == --close-action=* ]] && s=${1#*=} || { shift ;s=${1} ; } - process_special_action close "${s}" + [[ $1 == --close-action=* ]] && s=${1#*=} || { shift ;s=$1 ; } + process_special_action close "$s" ;; -p|--print-id) PRINT_ID=true ;; -r|--replace|--replace=*) - [[ "${1}" = --replace=* ]] && ID=${1#*=} || { shift ;ID=${1} ; } + [[ $1 == --replace=* ]] && ID=${1#*=} || { shift ;ID=$1 ; } ;; -R|--replace-file|--replace-file=*) - [[ "${1}" = --replace-file=* ]] && ID_FILE=${1#*=} || { shift ;ID_FILE=${1} ; } + [[ $1 == --replace-file=* ]] && ID_FILE=${1#*=} || { shift ;ID_FILE=$1 ; } [[ -s ${ID_FILE} ]] && read ID < "${ID_FILE}" ;; -s|--close|--close=*) - [[ "${1}" = --close=* ]] && i=${1#*=} || { shift ;i=${1} ; } - ((${i}<1)) && ((${ID}>0)) && i=${ID} - ((${i}>0)) && notify_close ${i} ${EXPIRE_TIME} - exit ${?} + [[ $1 == --close=* ]] && i=${1#*=} || { shift ;i=$1 ; } + ((i<1)) && ((ID>0)) && i=${ID} + ((i>0)) && notify_close $i ${EXPIRE_TIME} + exit $? ;; --) positional=true ;; *) - process_posargs "${1}" + process_posargs "$1" ;; esac shift done # build the actions & hints strings -a= ;for s in "${AKEYS[@]}" ;do a+=,${s} ;done ;a=${a:1} +a= ;for s in "${AKEYS[@]}" ;do a+=,$s ;done ;a=${a:1} make_hint byte urgency "${URGENCY}" ;h=${_r} -for s in "${HINTS[@]}" ;do h+=,${s} ;done +for s in "${HINTS[@]}" ;do h+=,$s ;done # send the dbus message, collect the notification ID typeset -i OLD_ID=${ID} NEW_ID=0 s=$(gdbus call ${NOTIFY_ARGS[@]} \ --method org.freedesktop.Notifications.Notify \ "${APP_NAME}" ${ID} "${ICON}" "${SUMMARY}" "${BODY}" \ - "[${a}]" "{${h}}" "int32 ${EXPIRE_TIME}") + "[$a]" "{$h}" "int32 ${EXPIRE_TIME}") # process the ID s=${s%,*} NEW_ID=${s#* } -((${NEW_ID}>0)) || abrt "invalid notification ID from gdbus" -((${OLD_ID}>0)) || ID=${NEW_ID} -[[ "${ID_FILE}" ]] && ((${OLD_ID}<1)) && echo ${ID} > "${ID_FILE}" +((NEW_ID>0)) || abrt "invalid notification ID from gdbus" +((OLD_ID>0)) || ID=${NEW_ID} +[[ "${ID_FILE}" ]] && ((OLD_ID<1)) && echo ${ID} > "${ID_FILE}" ${PRINT_ID} && echo ${ID} # bg task to monitor dbus and perform the actions -((${#ACMDS[@]}>0)) && setsid -f "${ACTION_SH}" ${ID} "${ACMDS[@]}" >&- 2>&- & +((${#ACMDS[@]}>0)) && setsid -f "${ACTION_SH}" ${ID} "${ACMDS[@]}" 2>&- >&- <&- # bg task to wait expire time and then actively close notification -${EXPLICIT_CLOSE} && ((${EXPIRE_TIME}>0)) && setsid -f "${0}" -t ${EXPIRE_TIME} -s ${ID} >&- 2>&- <&- & +${EXPLICIT_CLOSE} && ((EXPIRE_TIME>0)) && setsid -f $0 -t ${EXPIRE_TIME} -s ${ID} 2>&- >&- <&- diff --git a/po/de.po b/po/de.po index ea245b0b..21f40e70 100644 --- a/po/de.po +++ b/po/de.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-14 10:07-0400\n" +"POT-Creation-Date: 2023-03-16 01:19-0400\n" "PO-Revision-Date: 2023-02-20 18:40+0100\n" "Last-Translator: Marvin Meysel \n" "Language-Team: German\n" @@ -13,129 +13,134 @@ msgstr "" "X-Launchpad-Export-Date: 2017-04-13 11:48+0000\n" "X-Generator: Poedit 3.1.1\n" -#: src/Common/LinuxKernel.vala:88 +#: src/Common/LinuxKernel.vala:87 msgid "Distribution" msgstr "Distribution" -#: src/Common/LinuxKernel.vala:103 +#: src/Common/LinuxKernel.vala:102 msgid "Architecture" msgstr "Architektur" -#: src/Common/LinuxKernel.vala:278 +#: src/Common/LinuxKernel.vala:277 #, fuzzy msgid "Fetching individual kernel indexes" msgstr "Index abrufen..." -#: src/Common/LinuxKernel.vala:327 +#: src/Common/LinuxKernel.vala:326 msgid "Updating from" msgstr "" -#: src/Common/LinuxKernel.vala:344 src/Common/LinuxKernel.vala:897 +#: src/Common/LinuxKernel.vala:343 src/Common/LinuxKernel.vala:896 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:347 src/Common/LinuxKernel.vala:900 +#: src/Common/LinuxKernel.vala:346 src/Common/LinuxKernel.vala:899 msgid "FAILED" msgstr "" -#: src/Common/LinuxKernel.vala:761 +#: src/Common/LinuxKernel.vala:760 msgid "Packages Available" msgstr "Verfügbare Pakete" -#: src/Common/LinuxKernel.vala:766 +#: src/Common/LinuxKernel.vala:765 msgid "Packages Installed" msgstr "Installierte Pakete" -#: src/Common/LinuxKernel.vala:779 src/lib/TeeJee.FileSystem.vala:121 +#: src/Common/LinuxKernel.vala:778 src/lib/TeeJee.FileSystem.vala:121 msgid "File not found" msgstr "Datei nicht gefunden " -#: src/Common/LinuxKernel.vala:843 +#: src/Common/LinuxKernel.vala:842 msgid "Available Kernels" msgstr "Verfügbare Kernel" -#: src/Common/LinuxKernel.vala:850 src/Gtk/MainWindow.vala:156 +#: src/Common/LinuxKernel.vala:849 src/Gtk/MainWindow.vala:155 msgid "Installed" msgstr "Installiert" -#: src/Common/LinuxKernel.vala:850 src/Gtk/MainWindow.vala:156 -#: src/Gtk/MainWindow.vala:499 src/Gtk/MainWindow.vala:512 +#: src/Common/LinuxKernel.vala:849 src/Gtk/MainWindow.vala:155 +#: src/Gtk/MainWindow.vala:498 src/Gtk/MainWindow.vala:511 msgid "Running" msgstr "Läuft" -#: src/Common/LinuxKernel.vala:885 +#: src/Common/LinuxKernel.vala:884 msgid "Downloading" msgstr "Herunterladen" -#: src/Common/LinuxKernel.vala:913 +#: src/Common/LinuxKernel.vala:912 #, fuzzy msgid "is already installed." msgstr "Dieser Kernel ist bereits installiert." -#: src/Common/LinuxKernel.vala:943 +#: src/Common/LinuxKernel.vala:942 #, fuzzy msgid "Uninstalling selected kernels" msgstr "Deinstallation des angegebenen Kernels" -#: src/Common/LinuxKernel.vala:949 +#: src/Common/LinuxKernel.vala:948 msgid "requested" msgstr "" -#: src/Common/LinuxKernel.vala:952 +#: src/Common/LinuxKernel.vala:951 #, fuzzy msgid "not uninstalling the currently running kernel" msgstr "Deinstallation des angegebenen Kernels" -#: src/Common/LinuxKernel.vala:968 +#: src/Common/LinuxKernel.vala:967 msgid "found" msgstr "" -#: src/Common/LinuxKernel.vala:971 +#: src/Common/LinuxKernel.vala:970 #, fuzzy msgid "No packages to un-install!" msgstr "Installierte Pakete" -#: src/Common/LinuxKernel.vala:1019 +#: src/Common/LinuxKernel.vala:1018 #, fuzzy msgid "Could not find running kernel in list" msgstr "Konnte keinen laufenden Kernel in der Liste finden!" -#: src/Common/LinuxKernel.vala:1024 +#: src/Common/LinuxKernel.vala:1023 msgid "Could not find any kernels to uninstall" msgstr "Es konnten keine Kernel zum Deinstallieren gefunden werden" -#: src/Common/LinuxKernel.vala:1032 +#: src/Common/LinuxKernel.vala:1031 #, fuzzy msgid "The following kernels will be uninstalled" msgstr "Die folgenden Kernel werden deinstalliert:" -#: src/Common/LinuxKernel.vala:1036 +#: src/Common/LinuxKernel.vala:1035 msgid "Continue ?" msgstr "Weiter ?" -#: src/Common/LinuxKernel.vala:1058 src/Console/AppConsole.vala:286 +#: src/Common/LinuxKernel.vala:1057 src/Console/AppConsole.vala:285 msgid "Latest update" msgstr "Neustes Update" -#: src/Common/LinuxKernel.vala:1069 src/Console/AppConsole.vala:293 +#: src/Common/LinuxKernel.vala:1068 src/Console/AppConsole.vala:292 msgid "Latest point update" msgstr "Letzte Punktaktualisierung" -#: src/Common/LinuxKernel.vala:1077 src/Console/AppConsole.vala:298 -#: src/Console/AppConsole.vala:353 +#: src/Common/LinuxKernel.vala:1076 src/Console/AppConsole.vala:297 +#: src/Console/AppConsole.vala:352 msgid "No updates found" msgstr "Keine Updates gefunden" -#: src/Common/LinuxKernel.vala:1086 +#: src/Common/LinuxKernel.vala:1085 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Kernel-Version %s installieren? (j/n):" -#: src/Common/Main.vala:271 +#: src/Common/Main.vala:275 msgid "Called from" msgstr "Angerufen von" -#: src/Common/Main.vala:307 +#: src/Common/Main.vala:276 +msgid "" +"This file is over-written and executed again whenever settings are saved in" +msgstr "" + +#: src/Common/Main.vala:308 msgid "Notifications are disabled" msgstr "Benachrichtigungen sind deaktiviert" @@ -144,337 +149,337 @@ msgstr "Benachrichtigungen sind deaktiviert" msgid "File not found: %s" msgstr "Datei nicht gefunden " -#: src/Console/AppConsole.vala:49 src/Gtk/AppGtk.vala:137 +#: src/Console/AppConsole.vala:48 src/Gtk/AppGtk.vala:136 msgid "Syntax" msgstr "Syntax" -#: src/Console/AppConsole.vala:51 +#: src/Console/AppConsole.vala:50 msgid "Commands" msgstr "Befehle" -#: src/Console/AppConsole.vala:53 +#: src/Console/AppConsole.vala:52 msgid "Check for kernel updates" msgstr "Nach Kernel-Updates suchen" -#: src/Console/AppConsole.vala:54 +#: src/Console/AppConsole.vala:53 msgid "Check for kernel updates and notify current user" msgstr "" "Prüfung auf Kernel-Updates und Benachrichtigung des aktuellen Benutzers" -#: src/Console/AppConsole.vala:55 +#: src/Console/AppConsole.vala:54 msgid "List all available mainline kernels" msgstr "Alle verfügbaren Mainline-Kernel auflisten" -#: src/Console/AppConsole.vala:56 +#: src/Console/AppConsole.vala:55 msgid "List installed kernels" msgstr "Installierte Kernel auflisten" -#: src/Console/AppConsole.vala:57 +#: src/Console/AppConsole.vala:56 msgid "Install latest mainline kernel" msgstr "Installieren Sie den neuesten Mainline-Kernel" -#: src/Console/AppConsole.vala:58 +#: src/Console/AppConsole.vala:57 msgid "Install latest point update for current series" msgstr "Neueste Punktaktualisierung für die aktuelle Serie installieren" -#: src/Console/AppConsole.vala:59 +#: src/Console/AppConsole.vala:58 msgid "Install specified mainline kernel" msgstr "Angegebenen Mainline-Kernel installieren" -#: src/Console/AppConsole.vala:60 +#: src/Console/AppConsole.vala:59 msgid "Uninstall specified kernel" msgstr "Deinstallation des angegebenen Kernels" -#: src/Console/AppConsole.vala:61 +#: src/Console/AppConsole.vala:60 #, fuzzy msgid "Uninstall kernels older than the latest installed" msgstr "Deinstallation von Kerneln, die älter sind als der aktuelle Kernel" -#: src/Console/AppConsole.vala:62 +#: src/Console/AppConsole.vala:61 msgid "Download specified kernels" msgstr "Herunterladen bestimmter Kernel" -#: src/Console/AppConsole.vala:63 +#: src/Console/AppConsole.vala:62 msgid "Delete cached info about available kernels" msgstr "" -#: src/Console/AppConsole.vala:65 src/Gtk/AppGtk.vala:139 +#: src/Console/AppConsole.vala:64 src/Gtk/AppGtk.vala:138 msgid "Options" msgstr "Optionen" -#: src/Console/AppConsole.vala:67 +#: src/Console/AppConsole.vala:66 msgid "Include unstable and RC releases" msgstr "Unstable- und RC-Versionen einbeziehen" -#: src/Console/AppConsole.vala:68 +#: src/Console/AppConsole.vala:67 #, fuzzy msgid "Exclude unstable and RC releases" msgstr "Unstable- und RC-Versionen einbeziehen" -#: src/Console/AppConsole.vala:69 +#: src/Console/AppConsole.vala:68 msgid "Enable verbose debugging output" msgstr "Ausführliche Debugging-Ausgabe einschalten" -#: src/Console/AppConsole.vala:70 +#: src/Console/AppConsole.vala:69 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "Alle Aufforderungen mit Ja beantworten (nicht interaktiver Modus)" -#: src/Console/AppConsole.vala:73 +#: src/Console/AppConsole.vala:72 msgid "A version string taken from the output of --list" msgstr "Eine Versionszeichenfolge aus der Ausgabe von --list" -#: src/Console/AppConsole.vala:74 +#: src/Console/AppConsole.vala:73 msgid "One or more, comma-seperated" msgstr "" -#: src/Console/AppConsole.vala:75 +#: src/Console/AppConsole.vala:74 #, fuzzy msgid "The currently running kernel will always be ignored" msgstr "Die folgenden Kernel werden deinstalliert:" -#: src/Console/AppConsole.vala:153 src/Gtk/AppGtk.vala:123 +#: src/Console/AppConsole.vala:152 src/Gtk/AppGtk.vala:122 msgid "Unknown option" msgstr "Unbekannte Option" -#: src/Console/AppConsole.vala:154 src/Console/AppConsole.vala:244 -#: src/Console/AppConsole.vala:272 +#: src/Console/AppConsole.vala:153 src/Console/AppConsole.vala:243 +#: src/Console/AppConsole.vala:271 msgid "Run" msgstr "Ausführen" -#: src/Console/AppConsole.vala:154 +#: src/Console/AppConsole.vala:153 msgid "to list all options" msgstr "um alle Optionen aufzulisten" -#: src/Console/AppConsole.vala:212 src/Console/AppConsole.vala:252 +#: src/Console/AppConsole.vala:211 src/Console/AppConsole.vala:251 msgid "No kernels specified" msgstr "Keine Kernel angegeben" -#: src/Console/AppConsole.vala:218 +#: src/Console/AppConsole.vala:217 msgid "Multiple kernels selected for installation. Select only one." msgstr "" "Mehrere Kernel für die Installation ausgewählt. Wählen Sie nur einen aus." -#: src/Console/AppConsole.vala:241 +#: src/Console/AppConsole.vala:240 msgid "Could not find requested version" msgstr "Die gewünschte Version konnte nicht gefunden werden" -#: src/Console/AppConsole.vala:244 +#: src/Console/AppConsole.vala:243 msgid "and use a version string listed in first column" msgstr "" "und verwenden Sie eine in der ersten Spalte aufgeführte Versionszeichenfolge" -#: src/Console/AppConsole.vala:271 +#: src/Console/AppConsole.vala:270 msgid "Command not specified" msgstr "Befehl nicht angegeben" -#: src/Console/AppConsole.vala:272 +#: src/Console/AppConsole.vala:271 msgid "to list all commands" msgstr "um alle Befehle aufzulisten" -#: src/Console/AppConsole.vala:326 src/Gtk/SettingsDialog.vala:166 +#: src/Console/AppConsole.vala:325 src/Gtk/SettingsDialog.vala:165 msgid "Show" msgstr "Zeigen" -#: src/Console/AppConsole.vala:331 src/Console/AppConsole.vala:343 +#: src/Console/AppConsole.vala:330 src/Console/AppConsole.vala:342 #, c-format msgid "Kernel %s Available" msgstr "Kernel %s verfügbar" -#: src/Console/AppConsole.vala:333 src/Console/AppConsole.vala:345 -#: src/Gtk/MainWindow.vala:267 +#: src/Console/AppConsole.vala:332 src/Console/AppConsole.vala:344 +#: src/Gtk/MainWindow.vala:266 msgid "Install" msgstr "Installieren" -#: src/Gtk/AboutWindow.vala:264 src/Gtk/AboutWindow.vala:281 +#: src/Gtk/AboutWindow.vala:162 src/Gtk/AboutWindow.vala:179 msgid "Credits" msgstr "Credits" -#: src/Gtk/AboutWindow.vala:277 +#: src/Gtk/AboutWindow.vala:175 msgid "Back" msgstr "Zurück" -#: src/Gtk/AboutWindow.vala:287 src/Gtk/TerminalWindow.vala:163 +#: src/Gtk/AboutWindow.vala:185 src/Gtk/TerminalWindow.vala:162 msgid "Close" msgstr "Schließen" -#: src/Gtk/AboutWindow.vala:306 +#: src/Gtk/AboutWindow.vala:204 msgid "Authors" msgstr "Autoren" -#: src/Gtk/AboutWindow.vala:314 +#: src/Gtk/AboutWindow.vala:212 msgid "Contributions" msgstr "Beiträge" -#: src/Gtk/AboutWindow.vala:322 +#: src/Gtk/AboutWindow.vala:220 msgid "Artists" msgstr "Künstler" -#: src/Gtk/AboutWindow.vala:330 +#: src/Gtk/AboutWindow.vala:228 msgid "Translators" msgstr "Übersetzer" -#: src/Gtk/AboutWindow.vala:338 +#: src/Gtk/AboutWindow.vala:236 msgid "Documenters" msgstr "Dokumentierer" -#: src/Gtk/AboutWindow.vala:346 +#: src/Gtk/AboutWindow.vala:244 msgid "Third Party Inclusions" msgstr "Einschlüsse von Drittparteien" -#: src/Gtk/AppGtk.vala:137 +#: src/Gtk/AppGtk.vala:136 #, fuzzy msgid "options" msgstr "Optionen" -#: src/Gtk/AppGtk.vala:141 +#: src/Gtk/AppGtk.vala:140 msgid "Print debug information" msgstr "Zeige Debug Informationen" -#: src/Gtk/AppGtk.vala:142 +#: src/Gtk/AppGtk.vala:141 msgid "Show all options" msgstr "Alle Optionen anzeigen" -#: src/Gtk/MainWindow.vala:113 +#: src/Gtk/MainWindow.vala:112 msgid "Kernel" msgstr "Kernel" -#: src/Gtk/MainWindow.vala:143 +#: src/Gtk/MainWindow.vala:142 msgid "Status" msgstr "Status" -#: src/Gtk/MainWindow.vala:277 +#: src/Gtk/MainWindow.vala:276 msgid "Uninstall" msgstr "Deinstallieren" -#: src/Gtk/MainWindow.vala:287 +#: src/Gtk/MainWindow.vala:286 msgid "Changes" msgstr "Änderungen" -#: src/Gtk/MainWindow.vala:309 +#: src/Gtk/MainWindow.vala:308 msgid "Uninstall Old" msgstr "Alte deinstallieren" -#: src/Gtk/MainWindow.vala:310 +#: src/Gtk/MainWindow.vala:309 msgid "Uninstall kernels older than running kernel" msgstr "Deinstallation von Kerneln, die älter sind als der aktuelle Kernel" -#: src/Gtk/MainWindow.vala:315 +#: src/Gtk/MainWindow.vala:314 msgid "Reload" msgstr "" -#: src/Gtk/MainWindow.vala:320 src/Gtk/SettingsDialog.vala:50 +#: src/Gtk/MainWindow.vala:319 src/Gtk/SettingsDialog.vala:49 msgid "Settings" msgstr "Einstellungen" -#: src/Gtk/MainWindow.vala:325 +#: src/Gtk/MainWindow.vala:324 msgid "About" msgstr "Über" -#: src/Gtk/MainWindow.vala:330 +#: src/Gtk/MainWindow.vala:329 msgid "Exit" msgstr "" -#: src/Gtk/MainWindow.vala:398 +#: src/Gtk/MainWindow.vala:397 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Kernel-Upgrade-Dienstprogramm für Ubuntu-basierte Distributionen" -#: src/Gtk/MainWindow.vala:399 +#: src/Gtk/MainWindow.vala:398 msgid "Forked" msgstr "Forked" -#: src/Gtk/MainWindow.vala:399 +#: src/Gtk/MainWindow.vala:398 msgid "Original" msgstr "Original" -#: src/Gtk/MainWindow.vala:437 +#: src/Gtk/MainWindow.vala:436 msgid "Updating kernels" msgstr "" -#: src/Gtk/MainWindow.vala:508 +#: src/Gtk/MainWindow.vala:507 msgid "available" msgstr "Verfügbar" -#: src/Gtk/MainWindow.vala:551 src/Gtk/MainWindow.vala:591 -#: src/Gtk/MainWindow.vala:625 +#: src/Gtk/MainWindow.vala:550 src/Gtk/MainWindow.vala:590 +#: src/Gtk/MainWindow.vala:624 msgid "DONE" msgstr "" -#: src/Gtk/ProgressWindow.vala:128 src/Gtk/TerminalWindow.vala:153 +#: src/Gtk/ProgressWindow.vala:127 src/Gtk/TerminalWindow.vala:152 msgid "Cancel" msgstr "Abbrechen" -#: src/Gtk/SettingsDialog.vala:60 +#: src/Gtk/SettingsDialog.vala:59 msgid "Notification" msgstr "Benachrichtigung" -#: src/Gtk/SettingsDialog.vala:67 +#: src/Gtk/SettingsDialog.vala:66 msgid "Notify if a major release is available" msgstr "Benachrichtigen, wenn eine größere Version verfügbar ist" -#: src/Gtk/SettingsDialog.vala:76 +#: src/Gtk/SettingsDialog.vala:75 msgid "Notify if a point release is available" msgstr "Benachrichtigen, wenn eine Punktfreigabe verfügbar ist" -#: src/Gtk/SettingsDialog.vala:87 +#: src/Gtk/SettingsDialog.vala:86 #, fuzzy msgid "Seconds interval enabled for debugging" msgstr "(Erlaubt Intervalle in Sekunden für --debug)" -#: src/Gtk/SettingsDialog.vala:110 +#: src/Gtk/SettingsDialog.vala:109 msgid "Check every" msgstr "Prüfen Sie jede" -#: src/Gtk/SettingsDialog.vala:135 +#: src/Gtk/SettingsDialog.vala:134 msgid "Hour(s)" msgstr "Stunde(n)" -#: src/Gtk/SettingsDialog.vala:137 +#: src/Gtk/SettingsDialog.vala:136 msgid "Day(s)" msgstr "Tag(e)" -#: src/Gtk/SettingsDialog.vala:139 +#: src/Gtk/SettingsDialog.vala:138 msgid "Week(s)" msgstr "Woche(n)" -#: src/Gtk/SettingsDialog.vala:142 +#: src/Gtk/SettingsDialog.vala:141 msgid "Second(s)" msgstr "Sekunde(n)" -#: src/Gtk/SettingsDialog.vala:148 +#: src/Gtk/SettingsDialog.vala:147 msgid "Filters" msgstr "" -#: src/Gtk/SettingsDialog.vala:156 +#: src/Gtk/SettingsDialog.vala:155 msgid "Hide unstable and RC releases" msgstr "Unstable- und RC-Versionen ausblenden" -#: src/Gtk/SettingsDialog.vala:178 +#: src/Gtk/SettingsDialog.vala:177 #, fuzzy msgid "previous major versions" msgstr "N frühere Hauptversionen anzeigen" -#: src/Gtk/SettingsDialog.vala:182 +#: src/Gtk/SettingsDialog.vala:181 msgid "Network" msgstr "" -#: src/Gtk/SettingsDialog.vala:193 +#: src/Gtk/SettingsDialog.vala:192 #, fuzzy msgid "Internet connection timeout in" msgstr "Zeitüberschreitung der Internetverbindung in" -#: src/Gtk/SettingsDialog.vala:205 +#: src/Gtk/SettingsDialog.vala:204 msgid "seconds" msgstr "Sekunden" -#: src/Gtk/SettingsDialog.vala:212 +#: src/Gtk/SettingsDialog.vala:211 msgid "Max concurrent downloads" msgstr "Maximale Anzahl gleichzeitiger Downloads" -#: src/Gtk/SettingsDialog.vala:226 +#: src/Gtk/SettingsDialog.vala:225 msgid "Proxy" msgstr "" -#: src/Gtk/l.gtk.vala:44 +#: src/Gtk/l.gtk.vala:43 msgid "Missing Icon" msgstr "Fehlendes Symbol" diff --git a/po/el.po b/po/el.po index b552f2e1..9ee8e405 100644 --- a/po/el.po +++ b/po/el.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-14 10:07-0400\n" +"POT-Creation-Date: 2023-03-16 01:19-0400\n" "PO-Revision-Date: 2023-01-10 02:03-0600\n" "Last-Translator: Vasilis Kosmidis \n" "Language-Team: Greek\n" @@ -13,129 +13,134 @@ msgstr "" "X-Launchpad-Export-Date: 2017-04-13 11:48+0000\n" "X-Generator: Poedit 2.0.5\n" -#: src/Common/LinuxKernel.vala:88 +#: src/Common/LinuxKernel.vala:87 msgid "Distribution" msgstr "Διανομή" -#: src/Common/LinuxKernel.vala:103 +#: src/Common/LinuxKernel.vala:102 msgid "Architecture" msgstr "Αρχιτεκτονική" -#: src/Common/LinuxKernel.vala:278 +#: src/Common/LinuxKernel.vala:277 #, fuzzy msgid "Fetching individual kernel indexes" msgstr "Ανάκτηση ευρετηρίου..." -#: src/Common/LinuxKernel.vala:327 +#: src/Common/LinuxKernel.vala:326 msgid "Updating from" msgstr "" -#: src/Common/LinuxKernel.vala:344 src/Common/LinuxKernel.vala:897 +#: src/Common/LinuxKernel.vala:343 src/Common/LinuxKernel.vala:896 msgid "OK" msgstr "ΟΚ" -#: src/Common/LinuxKernel.vala:347 src/Common/LinuxKernel.vala:900 +#: src/Common/LinuxKernel.vala:346 src/Common/LinuxKernel.vala:899 msgid "FAILED" msgstr "" -#: src/Common/LinuxKernel.vala:761 +#: src/Common/LinuxKernel.vala:760 msgid "Packages Available" msgstr "Διαθέσιμα πακέτα" -#: src/Common/LinuxKernel.vala:766 +#: src/Common/LinuxKernel.vala:765 msgid "Packages Installed" msgstr "Εγκατεστημένα πακέτα" -#: src/Common/LinuxKernel.vala:779 src/lib/TeeJee.FileSystem.vala:121 +#: src/Common/LinuxKernel.vala:778 src/lib/TeeJee.FileSystem.vala:121 msgid "File not found" msgstr "Το αρχείο δε βρέθηκε" -#: src/Common/LinuxKernel.vala:843 +#: src/Common/LinuxKernel.vala:842 msgid "Available Kernels" msgstr "Διαθέσιμοι πυρήνες" -#: src/Common/LinuxKernel.vala:850 src/Gtk/MainWindow.vala:156 +#: src/Common/LinuxKernel.vala:849 src/Gtk/MainWindow.vala:155 msgid "Installed" msgstr "Εγκατεστημένος" -#: src/Common/LinuxKernel.vala:850 src/Gtk/MainWindow.vala:156 -#: src/Gtk/MainWindow.vala:499 src/Gtk/MainWindow.vala:512 +#: src/Common/LinuxKernel.vala:849 src/Gtk/MainWindow.vala:155 +#: src/Gtk/MainWindow.vala:498 src/Gtk/MainWindow.vala:511 msgid "Running" msgstr "Ενεργός" -#: src/Common/LinuxKernel.vala:885 +#: src/Common/LinuxKernel.vala:884 msgid "Downloading" msgstr "Λήψη" -#: src/Common/LinuxKernel.vala:913 +#: src/Common/LinuxKernel.vala:912 #, fuzzy msgid "is already installed." msgstr "Αυτός ο πυρήνας είναι ήδη εγκατεστημένος." -#: src/Common/LinuxKernel.vala:943 +#: src/Common/LinuxKernel.vala:942 #, fuzzy msgid "Uninstalling selected kernels" msgstr "Απεγκατάσταση του καθορισμένου πυρήνα" -#: src/Common/LinuxKernel.vala:949 +#: src/Common/LinuxKernel.vala:948 msgid "requested" msgstr "" -#: src/Common/LinuxKernel.vala:952 +#: src/Common/LinuxKernel.vala:951 #, fuzzy msgid "not uninstalling the currently running kernel" msgstr "Απεγκατάσταση του καθορισμένου πυρήνα" -#: src/Common/LinuxKernel.vala:968 +#: src/Common/LinuxKernel.vala:967 msgid "found" msgstr "" -#: src/Common/LinuxKernel.vala:971 +#: src/Common/LinuxKernel.vala:970 #, fuzzy msgid "No packages to un-install!" msgstr "Εγκατεστημένα πακέτα" -#: src/Common/LinuxKernel.vala:1019 +#: src/Common/LinuxKernel.vala:1018 #, fuzzy msgid "Could not find running kernel in list" msgstr "Δεν ήταν δυνατή η εύρεση του τρέχοντος πυρήνα στη λίστα!" -#: src/Common/LinuxKernel.vala:1024 +#: src/Common/LinuxKernel.vala:1023 msgid "Could not find any kernels to uninstall" msgstr "Δεν βρέθηκε κανένας πυρήνας για απεγκατάσταση" -#: src/Common/LinuxKernel.vala:1032 +#: src/Common/LinuxKernel.vala:1031 #, fuzzy msgid "The following kernels will be uninstalled" msgstr "Αυτός ο πυρήνας είναι ήδη εγκατεστημένος." -#: src/Common/LinuxKernel.vala:1036 +#: src/Common/LinuxKernel.vala:1035 msgid "Continue ?" msgstr "Συνέχεια;" -#: src/Common/LinuxKernel.vala:1058 src/Console/AppConsole.vala:286 +#: src/Common/LinuxKernel.vala:1057 src/Console/AppConsole.vala:285 msgid "Latest update" msgstr "Τελευταία αναβάθμιση" -#: src/Common/LinuxKernel.vala:1069 src/Console/AppConsole.vala:293 +#: src/Common/LinuxKernel.vala:1068 src/Console/AppConsole.vala:292 msgid "Latest point update" msgstr "Τελευταία ενημέρωση συντήρησης" -#: src/Common/LinuxKernel.vala:1077 src/Console/AppConsole.vala:298 -#: src/Console/AppConsole.vala:353 +#: src/Common/LinuxKernel.vala:1076 src/Console/AppConsole.vala:297 +#: src/Console/AppConsole.vala:352 msgid "No updates found" msgstr "Δεν βρέθηκαν ενημερώσεις" -#: src/Common/LinuxKernel.vala:1086 +#: src/Common/LinuxKernel.vala:1085 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Εγκατάσταση του πυρήνα έκδοσης %s ; (ν/ό):" -#: src/Common/Main.vala:271 +#: src/Common/Main.vala:275 msgid "Called from" msgstr "Κλήθηκε από" -#: src/Common/Main.vala:307 +#: src/Common/Main.vala:276 +msgid "" +"This file is over-written and executed again whenever settings are saved in" +msgstr "" + +#: src/Common/Main.vala:308 msgid "Notifications are disabled" msgstr "Οι ειδοποιήσεις είναι απενεργοποιημένες" @@ -144,335 +149,335 @@ msgstr "Οι ειδοποιήσεις είναι απενεργοποιημέν msgid "File not found: %s" msgstr "Το αρχείο δε βρέθηκε" -#: src/Console/AppConsole.vala:49 src/Gtk/AppGtk.vala:137 +#: src/Console/AppConsole.vala:48 src/Gtk/AppGtk.vala:136 msgid "Syntax" msgstr "Σύνταξη" -#: src/Console/AppConsole.vala:51 +#: src/Console/AppConsole.vala:50 msgid "Commands" msgstr "Εντολές" -#: src/Console/AppConsole.vala:53 +#: src/Console/AppConsole.vala:52 msgid "Check for kernel updates" msgstr "Έλεγχος για ενημερώσεις πυρήνα" -#: src/Console/AppConsole.vala:54 +#: src/Console/AppConsole.vala:53 msgid "Check for kernel updates and notify current user" msgstr "Έλεγχος για ενημερώσεις πυρήνα και ειδοποίηση τρέχοντα χρήστη" -#: src/Console/AppConsole.vala:55 +#: src/Console/AppConsole.vala:54 msgid "List all available mainline kernels" msgstr "Εμφάνιση όλων των διαθέσιμων πυρήνων mainline" -#: src/Console/AppConsole.vala:56 +#: src/Console/AppConsole.vala:55 msgid "List installed kernels" msgstr "Εμφάνιση εγκατεστημένων πυρήνων" -#: src/Console/AppConsole.vala:57 +#: src/Console/AppConsole.vala:56 msgid "Install latest mainline kernel" msgstr "Εγκατάσταση του πιο πρόσφατου πυρήνα mainline" -#: src/Console/AppConsole.vala:58 +#: src/Console/AppConsole.vala:57 msgid "Install latest point update for current series" msgstr "Εγκαταστήστε την τελευταία ενημέρωση συντήρησης για την τρέχουσα σειρά" -#: src/Console/AppConsole.vala:59 +#: src/Console/AppConsole.vala:58 msgid "Install specified mainline kernel" msgstr "Εγκατάσταση του καθορισμένου mainline πυρήνα" -#: src/Console/AppConsole.vala:60 +#: src/Console/AppConsole.vala:59 msgid "Uninstall specified kernel" msgstr "Απεγκατάσταση του καθορισμένου πυρήνα" -#: src/Console/AppConsole.vala:61 +#: src/Console/AppConsole.vala:60 #, fuzzy msgid "Uninstall kernels older than the latest installed" msgstr "Απεγκατάσταση πυρήνων παλαιότερων από τον ενεργό" -#: src/Console/AppConsole.vala:62 +#: src/Console/AppConsole.vala:61 msgid "Download specified kernels" msgstr "Λήψη των καθορισμένων πυρήνων" -#: src/Console/AppConsole.vala:63 +#: src/Console/AppConsole.vala:62 msgid "Delete cached info about available kernels" msgstr "" -#: src/Console/AppConsole.vala:65 src/Gtk/AppGtk.vala:139 +#: src/Console/AppConsole.vala:64 src/Gtk/AppGtk.vala:138 msgid "Options" msgstr "Επιλογές" -#: src/Console/AppConsole.vala:67 +#: src/Console/AppConsole.vala:66 msgid "Include unstable and RC releases" msgstr "Συμπεριλάβετε ασταθείς και RC εκδόσεις" -#: src/Console/AppConsole.vala:68 +#: src/Console/AppConsole.vala:67 #, fuzzy msgid "Exclude unstable and RC releases" msgstr "Συμπεριλάβετε ασταθείς και RC εκδόσεις" -#: src/Console/AppConsole.vala:69 +#: src/Console/AppConsole.vala:68 msgid "Enable verbose debugging output" msgstr "Ενεργοποίηση αναλυτικής εξόδου εντοπισμού σφαλμάτων" -#: src/Console/AppConsole.vala:70 +#: src/Console/AppConsole.vala:69 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "Υποθέστε Ναι για όλα τα μηνύματα (μη διαδραστική λειτουργία)" -#: src/Console/AppConsole.vala:73 +#: src/Console/AppConsole.vala:72 msgid "A version string taken from the output of --list" msgstr "Μια συμβολοσειρά έκδοσης που λαμβάνεται από την έξοδο του --list" -#: src/Console/AppConsole.vala:74 +#: src/Console/AppConsole.vala:73 msgid "One or more, comma-seperated" msgstr "" -#: src/Console/AppConsole.vala:75 +#: src/Console/AppConsole.vala:74 #, fuzzy msgid "The currently running kernel will always be ignored" msgstr "Αυτός ο πυρήνας είναι ήδη εγκατεστημένος." -#: src/Console/AppConsole.vala:153 src/Gtk/AppGtk.vala:123 +#: src/Console/AppConsole.vala:152 src/Gtk/AppGtk.vala:122 msgid "Unknown option" msgstr "Άγνωστη επιλογή" -#: src/Console/AppConsole.vala:154 src/Console/AppConsole.vala:244 -#: src/Console/AppConsole.vala:272 +#: src/Console/AppConsole.vala:153 src/Console/AppConsole.vala:243 +#: src/Console/AppConsole.vala:271 msgid "Run" msgstr "Τρέξτε" -#: src/Console/AppConsole.vala:154 +#: src/Console/AppConsole.vala:153 msgid "to list all options" msgstr "για να παραθέσετε όλες τις επιλογές" -#: src/Console/AppConsole.vala:212 src/Console/AppConsole.vala:252 +#: src/Console/AppConsole.vala:211 src/Console/AppConsole.vala:251 msgid "No kernels specified" msgstr "Δεν έχουν καθοριστεί πυρήνες" -#: src/Console/AppConsole.vala:218 +#: src/Console/AppConsole.vala:217 msgid "Multiple kernels selected for installation. Select only one." msgstr "Επιλέχθηκαν πολλαπλοί πυρήνες για εγκατάσταση. Επιλέξτε μόνο ένα." -#: src/Console/AppConsole.vala:241 +#: src/Console/AppConsole.vala:240 msgid "Could not find requested version" msgstr "Δε βρέθηκε η ζητούμενη έκδοση" -#: src/Console/AppConsole.vala:244 +#: src/Console/AppConsole.vala:243 msgid "and use a version string listed in first column" msgstr "" "και χρησιμοποιήστε μια συμβολοσειρά έκδοσης που αναφέρεται στην πρώτη στήλη" -#: src/Console/AppConsole.vala:271 +#: src/Console/AppConsole.vala:270 msgid "Command not specified" msgstr "Η εντολή δεν προσδιορίστηκε" -#: src/Console/AppConsole.vala:272 +#: src/Console/AppConsole.vala:271 msgid "to list all commands" msgstr "για να παραθέσετε όλες τις εντολές" -#: src/Console/AppConsole.vala:326 src/Gtk/SettingsDialog.vala:166 +#: src/Console/AppConsole.vala:325 src/Gtk/SettingsDialog.vala:165 msgid "Show" msgstr "Προβολή" -#: src/Console/AppConsole.vala:331 src/Console/AppConsole.vala:343 +#: src/Console/AppConsole.vala:330 src/Console/AppConsole.vala:342 #, c-format msgid "Kernel %s Available" msgstr "Πυρήνας %s διαθέσιμος" -#: src/Console/AppConsole.vala:333 src/Console/AppConsole.vala:345 -#: src/Gtk/MainWindow.vala:267 +#: src/Console/AppConsole.vala:332 src/Console/AppConsole.vala:344 +#: src/Gtk/MainWindow.vala:266 msgid "Install" msgstr "Εγκατάσταση" -#: src/Gtk/AboutWindow.vala:264 src/Gtk/AboutWindow.vala:281 +#: src/Gtk/AboutWindow.vala:162 src/Gtk/AboutWindow.vala:179 msgid "Credits" msgstr "Μνεία" -#: src/Gtk/AboutWindow.vala:277 +#: src/Gtk/AboutWindow.vala:175 msgid "Back" msgstr "Πίσω" -#: src/Gtk/AboutWindow.vala:287 src/Gtk/TerminalWindow.vala:163 +#: src/Gtk/AboutWindow.vala:185 src/Gtk/TerminalWindow.vala:162 msgid "Close" msgstr "Κλείσιμο" -#: src/Gtk/AboutWindow.vala:306 +#: src/Gtk/AboutWindow.vala:204 msgid "Authors" msgstr "Συγγραφείς" -#: src/Gtk/AboutWindow.vala:314 +#: src/Gtk/AboutWindow.vala:212 msgid "Contributions" msgstr "Συνεισφορές" -#: src/Gtk/AboutWindow.vala:322 +#: src/Gtk/AboutWindow.vala:220 msgid "Artists" msgstr "Καλλιτέχνες" -#: src/Gtk/AboutWindow.vala:330 +#: src/Gtk/AboutWindow.vala:228 msgid "Translators" msgstr "Μεταφραστές" -#: src/Gtk/AboutWindow.vala:338 +#: src/Gtk/AboutWindow.vala:236 msgid "Documenters" msgstr "Τεκμηριωτές" -#: src/Gtk/AboutWindow.vala:346 +#: src/Gtk/AboutWindow.vala:244 msgid "Third Party Inclusions" msgstr "Συμπεριλήψεις τρίτων" -#: src/Gtk/AppGtk.vala:137 +#: src/Gtk/AppGtk.vala:136 #, fuzzy msgid "options" msgstr "Επιλογές" -#: src/Gtk/AppGtk.vala:141 +#: src/Gtk/AppGtk.vala:140 msgid "Print debug information" msgstr "Εκτύπωση πληροφοριών εντοπισμού σφαλμάτων" -#: src/Gtk/AppGtk.vala:142 +#: src/Gtk/AppGtk.vala:141 msgid "Show all options" msgstr "Εμφάνιση όλων των επιλογών" -#: src/Gtk/MainWindow.vala:113 +#: src/Gtk/MainWindow.vala:112 msgid "Kernel" msgstr "Πυρήνας" -#: src/Gtk/MainWindow.vala:143 +#: src/Gtk/MainWindow.vala:142 msgid "Status" msgstr "Κατάσταση" -#: src/Gtk/MainWindow.vala:277 +#: src/Gtk/MainWindow.vala:276 msgid "Uninstall" msgstr "Απεγκατάσταση" -#: src/Gtk/MainWindow.vala:287 +#: src/Gtk/MainWindow.vala:286 msgid "Changes" msgstr "Αλλαγές" -#: src/Gtk/MainWindow.vala:309 +#: src/Gtk/MainWindow.vala:308 msgid "Uninstall Old" msgstr "Απεγκατάσταση παλαιών" -#: src/Gtk/MainWindow.vala:310 +#: src/Gtk/MainWindow.vala:309 msgid "Uninstall kernels older than running kernel" msgstr "Απεγκαταστήστε πυρήνες παλαιότερους από τον ενεργό" -#: src/Gtk/MainWindow.vala:315 +#: src/Gtk/MainWindow.vala:314 msgid "Reload" msgstr "" -#: src/Gtk/MainWindow.vala:320 src/Gtk/SettingsDialog.vala:50 +#: src/Gtk/MainWindow.vala:319 src/Gtk/SettingsDialog.vala:49 msgid "Settings" msgstr "Ρυθμίσεις" -#: src/Gtk/MainWindow.vala:325 +#: src/Gtk/MainWindow.vala:324 msgid "About" msgstr "Σχετικά" -#: src/Gtk/MainWindow.vala:330 +#: src/Gtk/MainWindow.vala:329 msgid "Exit" msgstr "" -#: src/Gtk/MainWindow.vala:398 +#: src/Gtk/MainWindow.vala:397 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Πρόγραμμα αναβάθμισης πυρήνα για διανομές που βασίζονται στο Ubuntu" -#: src/Gtk/MainWindow.vala:399 +#: src/Gtk/MainWindow.vala:398 msgid "Forked" msgstr "Forked" -#: src/Gtk/MainWindow.vala:399 +#: src/Gtk/MainWindow.vala:398 msgid "Original" msgstr "Πρωτότυπο" -#: src/Gtk/MainWindow.vala:437 +#: src/Gtk/MainWindow.vala:436 msgid "Updating kernels" msgstr "" -#: src/Gtk/MainWindow.vala:508 +#: src/Gtk/MainWindow.vala:507 msgid "available" msgstr "διαθέσιμος" -#: src/Gtk/MainWindow.vala:551 src/Gtk/MainWindow.vala:591 -#: src/Gtk/MainWindow.vala:625 +#: src/Gtk/MainWindow.vala:550 src/Gtk/MainWindow.vala:590 +#: src/Gtk/MainWindow.vala:624 msgid "DONE" msgstr "" -#: src/Gtk/ProgressWindow.vala:128 src/Gtk/TerminalWindow.vala:153 +#: src/Gtk/ProgressWindow.vala:127 src/Gtk/TerminalWindow.vala:152 msgid "Cancel" msgstr "Άκυρο" -#: src/Gtk/SettingsDialog.vala:60 +#: src/Gtk/SettingsDialog.vala:59 msgid "Notification" msgstr "Ειδοποίηση" -#: src/Gtk/SettingsDialog.vala:67 +#: src/Gtk/SettingsDialog.vala:66 msgid "Notify if a major release is available" msgstr "Ειδοποίηση αν είναι διαθέσιμη κύρια έκδοση" -#: src/Gtk/SettingsDialog.vala:76 +#: src/Gtk/SettingsDialog.vala:75 msgid "Notify if a point release is available" msgstr "Ειδοποίηση αν είναι διαθέσιμη έκδοση συντήρησης" -#: src/Gtk/SettingsDialog.vala:87 +#: src/Gtk/SettingsDialog.vala:86 #, fuzzy msgid "Seconds interval enabled for debugging" msgstr "(Επιτρέποντας διαστήματα σε δευτερόλεπτα για --debug)" -#: src/Gtk/SettingsDialog.vala:110 +#: src/Gtk/SettingsDialog.vala:109 msgid "Check every" msgstr "Έλεγχος κάθε" -#: src/Gtk/SettingsDialog.vala:135 +#: src/Gtk/SettingsDialog.vala:134 msgid "Hour(s)" msgstr "Ώρες" -#: src/Gtk/SettingsDialog.vala:137 +#: src/Gtk/SettingsDialog.vala:136 msgid "Day(s)" msgstr "Ημέρες" -#: src/Gtk/SettingsDialog.vala:139 +#: src/Gtk/SettingsDialog.vala:138 msgid "Week(s)" msgstr "Εβδομάδες" -#: src/Gtk/SettingsDialog.vala:142 +#: src/Gtk/SettingsDialog.vala:141 msgid "Second(s)" msgstr "Δευτερόλεπτα" -#: src/Gtk/SettingsDialog.vala:148 +#: src/Gtk/SettingsDialog.vala:147 msgid "Filters" msgstr "" -#: src/Gtk/SettingsDialog.vala:156 +#: src/Gtk/SettingsDialog.vala:155 msgid "Hide unstable and RC releases" msgstr "Απόκρυψη ασταθών και RC εκδόσεων" -#: src/Gtk/SettingsDialog.vala:178 +#: src/Gtk/SettingsDialog.vala:177 #, fuzzy msgid "previous major versions" msgstr "Εμφάνιση N προηγούμενων κύριων εκδόσεων " -#: src/Gtk/SettingsDialog.vala:182 +#: src/Gtk/SettingsDialog.vala:181 msgid "Network" msgstr "" -#: src/Gtk/SettingsDialog.vala:193 +#: src/Gtk/SettingsDialog.vala:192 #, fuzzy msgid "Internet connection timeout in" msgstr "Λήξη χρονικού ορίου σύνδεσης στο διαδίκτυο " -#: src/Gtk/SettingsDialog.vala:205 +#: src/Gtk/SettingsDialog.vala:204 msgid "seconds" msgstr "δευτερόλεπτα" -#: src/Gtk/SettingsDialog.vala:212 +#: src/Gtk/SettingsDialog.vala:211 msgid "Max concurrent downloads" msgstr "Μέγιστες ταυτόχρονες λήψεις" -#: src/Gtk/SettingsDialog.vala:226 +#: src/Gtk/SettingsDialog.vala:225 msgid "Proxy" msgstr "" -#: src/Gtk/l.gtk.vala:44 +#: src/Gtk/l.gtk.vala:43 msgid "Missing Icon" msgstr "Ελλείπον εικονίδιο" diff --git a/po/es.po b/po/es.po index 5ee22d71..4052feaf 100644 --- a/po/es.po +++ b/po/es.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-14 10:07-0400\n" +"POT-Creation-Date: 2023-03-16 01:19-0400\n" "PO-Revision-Date: 2018-01-03 02:03-0600\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish\n" @@ -13,130 +13,135 @@ msgstr "" "X-Launchpad-Export-Date: 2017-04-13 11:48+0000\n" "X-Generator: Poedit 2.0.5\n" -#: src/Common/LinuxKernel.vala:88 +#: src/Common/LinuxKernel.vala:87 msgid "Distribution" msgstr "Distribución" -#: src/Common/LinuxKernel.vala:103 +#: src/Common/LinuxKernel.vala:102 msgid "Architecture" msgstr "Arquitectura del sistema" -#: src/Common/LinuxKernel.vala:278 +#: src/Common/LinuxKernel.vala:277 #, fuzzy msgid "Fetching individual kernel indexes" msgstr "Recuperando índice..." -#: src/Common/LinuxKernel.vala:327 +#: src/Common/LinuxKernel.vala:326 msgid "Updating from" msgstr "" -#: src/Common/LinuxKernel.vala:344 src/Common/LinuxKernel.vala:897 +#: src/Common/LinuxKernel.vala:343 src/Common/LinuxKernel.vala:896 msgid "OK" msgstr "Aceptar" -#: src/Common/LinuxKernel.vala:347 src/Common/LinuxKernel.vala:900 +#: src/Common/LinuxKernel.vala:346 src/Common/LinuxKernel.vala:899 msgid "FAILED" msgstr "" -#: src/Common/LinuxKernel.vala:761 +#: src/Common/LinuxKernel.vala:760 msgid "Packages Available" msgstr "Paquetes disponibles" -#: src/Common/LinuxKernel.vala:766 +#: src/Common/LinuxKernel.vala:765 msgid "Packages Installed" msgstr "Paquetes instalados" -#: src/Common/LinuxKernel.vala:779 src/lib/TeeJee.FileSystem.vala:121 +#: src/Common/LinuxKernel.vala:778 src/lib/TeeJee.FileSystem.vala:121 msgid "File not found" msgstr "No se encontró el archivo" -#: src/Common/LinuxKernel.vala:843 +#: src/Common/LinuxKernel.vala:842 msgid "Available Kernels" msgstr "Núcleos disponibles" -#: src/Common/LinuxKernel.vala:850 src/Gtk/MainWindow.vala:156 +#: src/Common/LinuxKernel.vala:849 src/Gtk/MainWindow.vala:155 msgid "Installed" msgstr "Instalado" -#: src/Common/LinuxKernel.vala:850 src/Gtk/MainWindow.vala:156 -#: src/Gtk/MainWindow.vala:499 src/Gtk/MainWindow.vala:512 +#: src/Common/LinuxKernel.vala:849 src/Gtk/MainWindow.vala:155 +#: src/Gtk/MainWindow.vala:498 src/Gtk/MainWindow.vala:511 msgid "Running" msgstr "En ejecución" -#: src/Common/LinuxKernel.vala:885 +#: src/Common/LinuxKernel.vala:884 msgid "Downloading" msgstr "Descargando" -#: src/Common/LinuxKernel.vala:913 +#: src/Common/LinuxKernel.vala:912 #, fuzzy msgid "is already installed." msgstr "Este núcleo ya se instaló." -#: src/Common/LinuxKernel.vala:943 +#: src/Common/LinuxKernel.vala:942 #, fuzzy msgid "Uninstalling selected kernels" msgstr "Instalar núcleo troncal especificado" -#: src/Common/LinuxKernel.vala:949 +#: src/Common/LinuxKernel.vala:948 msgid "requested" msgstr "" -#: src/Common/LinuxKernel.vala:952 +#: src/Common/LinuxKernel.vala:951 #, fuzzy msgid "not uninstalling the currently running kernel" msgstr "Instalar núcleo troncal especificado" -#: src/Common/LinuxKernel.vala:968 +#: src/Common/LinuxKernel.vala:967 msgid "found" msgstr "" -#: src/Common/LinuxKernel.vala:971 +#: src/Common/LinuxKernel.vala:970 #, fuzzy msgid "No packages to un-install!" msgstr "Paquetes instalados" -#: src/Common/LinuxKernel.vala:1019 +#: src/Common/LinuxKernel.vala:1018 #, fuzzy msgid "Could not find running kernel in list" msgstr "¡No se pudo encontrar el núcleo en ejecución en la lista!" -#: src/Common/LinuxKernel.vala:1024 +#: src/Common/LinuxKernel.vala:1023 #, fuzzy msgid "Could not find any kernels to uninstall" msgstr "Seleccione los núcleos que se desinstalarán" -#: src/Common/LinuxKernel.vala:1032 +#: src/Common/LinuxKernel.vala:1031 #, fuzzy msgid "The following kernels will be uninstalled" msgstr "Los siguientes kernels serán eliminados:" -#: src/Common/LinuxKernel.vala:1036 +#: src/Common/LinuxKernel.vala:1035 msgid "Continue ?" msgstr "¿Continuar?" -#: src/Common/LinuxKernel.vala:1058 src/Console/AppConsole.vala:286 +#: src/Common/LinuxKernel.vala:1057 src/Console/AppConsole.vala:285 msgid "Latest update" msgstr "" -#: src/Common/LinuxKernel.vala:1069 src/Console/AppConsole.vala:293 +#: src/Common/LinuxKernel.vala:1068 src/Console/AppConsole.vala:292 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:1077 src/Console/AppConsole.vala:298 -#: src/Console/AppConsole.vala:353 +#: src/Common/LinuxKernel.vala:1076 src/Console/AppConsole.vala:297 +#: src/Console/AppConsole.vala:352 msgid "No updates found" msgstr "No se encontró ninguna actualización" -#: src/Common/LinuxKernel.vala:1086 +#: src/Common/LinuxKernel.vala:1085 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "" -#: src/Common/Main.vala:271 +#: src/Common/Main.vala:275 msgid "Called from" msgstr "" -#: src/Common/Main.vala:307 +#: src/Common/Main.vala:276 +msgid "" +"This file is over-written and executed again whenever settings are saved in" +msgstr "" + +#: src/Common/Main.vala:308 #, fuzzy msgid "Notifications are disabled" msgstr "Notificación" @@ -146,342 +151,342 @@ msgstr "Notificación" msgid "File not found: %s" msgstr "No se encontró el archivo" -#: src/Console/AppConsole.vala:49 src/Gtk/AppGtk.vala:137 +#: src/Console/AppConsole.vala:48 src/Gtk/AppGtk.vala:136 msgid "Syntax" msgstr "Sintaxis" -#: src/Console/AppConsole.vala:51 +#: src/Console/AppConsole.vala:50 msgid "Commands" msgstr "Comandos" -#: src/Console/AppConsole.vala:53 +#: src/Console/AppConsole.vala:52 msgid "Check for kernel updates" msgstr "Buscar actualizaciones del núcleo" -#: src/Console/AppConsole.vala:54 +#: src/Console/AppConsole.vala:53 msgid "Check for kernel updates and notify current user" msgstr "Compruebe las actualizaciones del kernel y notifique al usuario actual" -#: src/Console/AppConsole.vala:55 +#: src/Console/AppConsole.vala:54 msgid "List all available mainline kernels" msgstr "Mostrar todos los núcleos troncales disponibles" -#: src/Console/AppConsole.vala:56 +#: src/Console/AppConsole.vala:55 msgid "List installed kernels" msgstr "Mostrar kernels disponibles" -#: src/Console/AppConsole.vala:57 +#: src/Console/AppConsole.vala:56 msgid "Install latest mainline kernel" msgstr "Instalar kernel troncal especificado" -#: src/Console/AppConsole.vala:58 +#: src/Console/AppConsole.vala:57 msgid "Install latest point update for current series" msgstr "" -#: src/Console/AppConsole.vala:59 +#: src/Console/AppConsole.vala:58 msgid "Install specified mainline kernel" msgstr "Instalar núcleo troncal especificado" -#: src/Console/AppConsole.vala:60 +#: src/Console/AppConsole.vala:59 #, fuzzy msgid "Uninstall specified kernel" msgstr "Instalar núcleo troncal especificado" -#: src/Console/AppConsole.vala:61 +#: src/Console/AppConsole.vala:60 msgid "Uninstall kernels older than the latest installed" msgstr "" -#: src/Console/AppConsole.vala:62 +#: src/Console/AppConsole.vala:61 #, fuzzy msgid "Download specified kernels" msgstr "Descargar paquetes del núcleo especificado" -#: src/Console/AppConsole.vala:63 +#: src/Console/AppConsole.vala:62 msgid "Delete cached info about available kernels" msgstr "" -#: src/Console/AppConsole.vala:65 src/Gtk/AppGtk.vala:139 +#: src/Console/AppConsole.vala:64 src/Gtk/AppGtk.vala:138 msgid "Options" msgstr "Opciones" -#: src/Console/AppConsole.vala:67 +#: src/Console/AppConsole.vala:66 #, fuzzy msgid "Include unstable and RC releases" msgstr "Ocultar versiones inestables y RC" -#: src/Console/AppConsole.vala:68 +#: src/Console/AppConsole.vala:67 #, fuzzy msgid "Exclude unstable and RC releases" msgstr "Ocultar versiones inestables y RC" -#: src/Console/AppConsole.vala:69 +#: src/Console/AppConsole.vala:68 msgid "Enable verbose debugging output" msgstr "" -#: src/Console/AppConsole.vala:70 +#: src/Console/AppConsole.vala:69 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "Asumir Sí para todas las solicitudes (modo no interactivo)" -#: src/Console/AppConsole.vala:73 +#: src/Console/AppConsole.vala:72 msgid "A version string taken from the output of --list" msgstr "" -#: src/Console/AppConsole.vala:74 +#: src/Console/AppConsole.vala:73 msgid "One or more, comma-seperated" msgstr "" -#: src/Console/AppConsole.vala:75 +#: src/Console/AppConsole.vala:74 #, fuzzy msgid "The currently running kernel will always be ignored" msgstr "Los siguientes kernels serán eliminados:" -#: src/Console/AppConsole.vala:153 src/Gtk/AppGtk.vala:123 +#: src/Console/AppConsole.vala:152 src/Gtk/AppGtk.vala:122 msgid "Unknown option" msgstr "Opción desconocida" -#: src/Console/AppConsole.vala:154 src/Console/AppConsole.vala:244 -#: src/Console/AppConsole.vala:272 +#: src/Console/AppConsole.vala:153 src/Console/AppConsole.vala:243 +#: src/Console/AppConsole.vala:271 #, fuzzy msgid "Run" msgstr "En ejecución" -#: src/Console/AppConsole.vala:154 +#: src/Console/AppConsole.vala:153 #, fuzzy msgid "to list all options" msgstr "Mostrar todas las opciones" -#: src/Console/AppConsole.vala:212 src/Console/AppConsole.vala:252 +#: src/Console/AppConsole.vala:211 src/Console/AppConsole.vala:251 msgid "No kernels specified" msgstr "" -#: src/Console/AppConsole.vala:218 +#: src/Console/AppConsole.vala:217 msgid "Multiple kernels selected for installation. Select only one." msgstr "Se seleccionaron varios núcleos para su instalación. Elija solo uno." -#: src/Console/AppConsole.vala:241 +#: src/Console/AppConsole.vala:240 msgid "Could not find requested version" msgstr "No se pudo encontrar la versión solicitada" -#: src/Console/AppConsole.vala:244 +#: src/Console/AppConsole.vala:243 msgid "and use a version string listed in first column" msgstr "" -#: src/Console/AppConsole.vala:271 +#: src/Console/AppConsole.vala:270 msgid "Command not specified" msgstr "Coomand no especificado" -#: src/Console/AppConsole.vala:272 +#: src/Console/AppConsole.vala:271 #, fuzzy msgid "to list all commands" msgstr "Mostrar todas las opciones" -#: src/Console/AppConsole.vala:326 src/Gtk/SettingsDialog.vala:166 +#: src/Console/AppConsole.vala:325 src/Gtk/SettingsDialog.vala:165 msgid "Show" msgstr "" -#: src/Console/AppConsole.vala:331 src/Console/AppConsole.vala:343 +#: src/Console/AppConsole.vala:330 src/Console/AppConsole.vala:342 #, fuzzy, c-format msgid "Kernel %s Available" msgstr "Paquetes disponibles" -#: src/Console/AppConsole.vala:333 src/Console/AppConsole.vala:345 -#: src/Gtk/MainWindow.vala:267 +#: src/Console/AppConsole.vala:332 src/Console/AppConsole.vala:344 +#: src/Gtk/MainWindow.vala:266 msgid "Install" msgstr "Instalar" -#: src/Gtk/AboutWindow.vala:264 src/Gtk/AboutWindow.vala:281 +#: src/Gtk/AboutWindow.vala:162 src/Gtk/AboutWindow.vala:179 msgid "Credits" msgstr "Créditos" -#: src/Gtk/AboutWindow.vala:277 +#: src/Gtk/AboutWindow.vala:175 msgid "Back" msgstr "Atrás" -#: src/Gtk/AboutWindow.vala:287 src/Gtk/TerminalWindow.vala:163 +#: src/Gtk/AboutWindow.vala:185 src/Gtk/TerminalWindow.vala:162 msgid "Close" msgstr "Cerrar" -#: src/Gtk/AboutWindow.vala:306 +#: src/Gtk/AboutWindow.vala:204 msgid "Authors" msgstr "Autores" -#: src/Gtk/AboutWindow.vala:314 +#: src/Gtk/AboutWindow.vala:212 msgid "Contributions" msgstr "Contribuciones" -#: src/Gtk/AboutWindow.vala:322 +#: src/Gtk/AboutWindow.vala:220 msgid "Artists" msgstr "Artistas" -#: src/Gtk/AboutWindow.vala:330 +#: src/Gtk/AboutWindow.vala:228 msgid "Translators" msgstr "Traductores" -#: src/Gtk/AboutWindow.vala:338 +#: src/Gtk/AboutWindow.vala:236 msgid "Documenters" msgstr "Documentadores" -#: src/Gtk/AboutWindow.vala:346 +#: src/Gtk/AboutWindow.vala:244 #, fuzzy msgid "Third Party Inclusions" msgstr "Herramientas de terceros" -#: src/Gtk/AppGtk.vala:137 +#: src/Gtk/AppGtk.vala:136 #, fuzzy msgid "options" msgstr "Opciones" -#: src/Gtk/AppGtk.vala:141 +#: src/Gtk/AppGtk.vala:140 msgid "Print debug information" msgstr "Mostrar información de depuración" -#: src/Gtk/AppGtk.vala:142 +#: src/Gtk/AppGtk.vala:141 msgid "Show all options" msgstr "Mostrar todas las opciones" -#: src/Gtk/MainWindow.vala:113 +#: src/Gtk/MainWindow.vala:112 msgid "Kernel" msgstr "Núcleo" -#: src/Gtk/MainWindow.vala:143 +#: src/Gtk/MainWindow.vala:142 msgid "Status" msgstr "Estado" -#: src/Gtk/MainWindow.vala:277 +#: src/Gtk/MainWindow.vala:276 #, fuzzy msgid "Uninstall" msgstr "Instalar" -#: src/Gtk/MainWindow.vala:287 +#: src/Gtk/MainWindow.vala:286 msgid "Changes" msgstr "Cambios" -#: src/Gtk/MainWindow.vala:309 +#: src/Gtk/MainWindow.vala:308 #, fuzzy msgid "Uninstall Old" msgstr "Desinstalación finalizada" -#: src/Gtk/MainWindow.vala:310 +#: src/Gtk/MainWindow.vala:309 msgid "Uninstall kernels older than running kernel" msgstr "" -#: src/Gtk/MainWindow.vala:315 +#: src/Gtk/MainWindow.vala:314 msgid "Reload" msgstr "" -#: src/Gtk/MainWindow.vala:320 src/Gtk/SettingsDialog.vala:50 +#: src/Gtk/MainWindow.vala:319 src/Gtk/SettingsDialog.vala:49 msgid "Settings" msgstr "Configuración" -#: src/Gtk/MainWindow.vala:325 +#: src/Gtk/MainWindow.vala:324 msgid "About" msgstr "Acerca de" -#: src/Gtk/MainWindow.vala:330 +#: src/Gtk/MainWindow.vala:329 msgid "Exit" msgstr "" -#: src/Gtk/MainWindow.vala:398 +#: src/Gtk/MainWindow.vala:397 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "" "Herramienta de renovación de núcleo para distribuciones basadas en Ubuntu" -#: src/Gtk/MainWindow.vala:399 +#: src/Gtk/MainWindow.vala:398 msgid "Forked" msgstr "" -#: src/Gtk/MainWindow.vala:399 +#: src/Gtk/MainWindow.vala:398 msgid "Original" msgstr "" -#: src/Gtk/MainWindow.vala:437 +#: src/Gtk/MainWindow.vala:436 msgid "Updating kernels" msgstr "" -#: src/Gtk/MainWindow.vala:508 +#: src/Gtk/MainWindow.vala:507 #, fuzzy msgid "available" msgstr "Paquetes disponibles" -#: src/Gtk/MainWindow.vala:551 src/Gtk/MainWindow.vala:591 -#: src/Gtk/MainWindow.vala:625 +#: src/Gtk/MainWindow.vala:550 src/Gtk/MainWindow.vala:590 +#: src/Gtk/MainWindow.vala:624 msgid "DONE" msgstr "" -#: src/Gtk/ProgressWindow.vala:128 src/Gtk/TerminalWindow.vala:153 +#: src/Gtk/ProgressWindow.vala:127 src/Gtk/TerminalWindow.vala:152 msgid "Cancel" msgstr "Cancelar" -#: src/Gtk/SettingsDialog.vala:60 +#: src/Gtk/SettingsDialog.vala:59 msgid "Notification" msgstr "Notificación" -#: src/Gtk/SettingsDialog.vala:67 +#: src/Gtk/SettingsDialog.vala:66 msgid "Notify if a major release is available" msgstr "Notificar si hay una versión importante disponible" -#: src/Gtk/SettingsDialog.vala:76 +#: src/Gtk/SettingsDialog.vala:75 msgid "Notify if a point release is available" msgstr "Notificar si hay una versión puntual disponible" -#: src/Gtk/SettingsDialog.vala:87 +#: src/Gtk/SettingsDialog.vala:86 msgid "Seconds interval enabled for debugging" msgstr "" -#: src/Gtk/SettingsDialog.vala:110 +#: src/Gtk/SettingsDialog.vala:109 msgid "Check every" msgstr "Comprobar cada" -#: src/Gtk/SettingsDialog.vala:135 +#: src/Gtk/SettingsDialog.vala:134 msgid "Hour(s)" msgstr "Horas" -#: src/Gtk/SettingsDialog.vala:137 +#: src/Gtk/SettingsDialog.vala:136 msgid "Day(s)" msgstr "Días" -#: src/Gtk/SettingsDialog.vala:139 +#: src/Gtk/SettingsDialog.vala:138 msgid "Week(s)" msgstr "Semanas" -#: src/Gtk/SettingsDialog.vala:142 +#: src/Gtk/SettingsDialog.vala:141 msgid "Second(s)" msgstr "" -#: src/Gtk/SettingsDialog.vala:148 +#: src/Gtk/SettingsDialog.vala:147 msgid "Filters" msgstr "" -#: src/Gtk/SettingsDialog.vala:156 +#: src/Gtk/SettingsDialog.vala:155 msgid "Hide unstable and RC releases" msgstr "Ocultar versiones inestables y RC" -#: src/Gtk/SettingsDialog.vala:178 +#: src/Gtk/SettingsDialog.vala:177 msgid "previous major versions" msgstr "" -#: src/Gtk/SettingsDialog.vala:182 +#: src/Gtk/SettingsDialog.vala:181 msgid "Network" msgstr "" -#: src/Gtk/SettingsDialog.vala:193 +#: src/Gtk/SettingsDialog.vala:192 #, fuzzy msgid "Internet connection timeout in" msgstr "La conexión a Internet está inactiva" -#: src/Gtk/SettingsDialog.vala:205 +#: src/Gtk/SettingsDialog.vala:204 msgid "seconds" msgstr "" -#: src/Gtk/SettingsDialog.vala:212 +#: src/Gtk/SettingsDialog.vala:211 msgid "Max concurrent downloads" msgstr "" -#: src/Gtk/SettingsDialog.vala:226 +#: src/Gtk/SettingsDialog.vala:225 msgid "Proxy" msgstr "" -#: src/Gtk/l.gtk.vala:44 +#: src/Gtk/l.gtk.vala:43 msgid "Missing Icon" msgstr "Falta el icono" diff --git a/po/fr.po b/po/fr.po index 034883ab..7f39e432 100644 --- a/po/fr.po +++ b/po/fr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-14 10:07-0400\n" +"POT-Creation-Date: 2023-03-16 01:19-0400\n" "PO-Revision-Date: 2018-08-05 15:50+0200\n" "Last-Translator: Yolateng0 \n" "Language-Team: French\n" @@ -13,130 +13,135 @@ msgstr "" "X-Launchpad-Export-Date: 2017-04-13 11:48+0000\n" "X-Generator: Poedit 2.0.6\n" -#: src/Common/LinuxKernel.vala:88 +#: src/Common/LinuxKernel.vala:87 msgid "Distribution" msgstr "Distribution" -#: src/Common/LinuxKernel.vala:103 +#: src/Common/LinuxKernel.vala:102 msgid "Architecture" msgstr "Architecture" -#: src/Common/LinuxKernel.vala:278 +#: src/Common/LinuxKernel.vala:277 #, fuzzy msgid "Fetching individual kernel indexes" msgstr "Récupération de l'index..." -#: src/Common/LinuxKernel.vala:327 +#: src/Common/LinuxKernel.vala:326 msgid "Updating from" msgstr "" -#: src/Common/LinuxKernel.vala:344 src/Common/LinuxKernel.vala:897 +#: src/Common/LinuxKernel.vala:343 src/Common/LinuxKernel.vala:896 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:347 src/Common/LinuxKernel.vala:900 +#: src/Common/LinuxKernel.vala:346 src/Common/LinuxKernel.vala:899 msgid "FAILED" msgstr "" -#: src/Common/LinuxKernel.vala:761 +#: src/Common/LinuxKernel.vala:760 msgid "Packages Available" msgstr "Paquets Disponibles" -#: src/Common/LinuxKernel.vala:766 +#: src/Common/LinuxKernel.vala:765 msgid "Packages Installed" msgstr "Paquets Installés" -#: src/Common/LinuxKernel.vala:779 src/lib/TeeJee.FileSystem.vala:121 +#: src/Common/LinuxKernel.vala:778 src/lib/TeeJee.FileSystem.vala:121 msgid "File not found" msgstr "Fichier non trouvé" -#: src/Common/LinuxKernel.vala:843 +#: src/Common/LinuxKernel.vala:842 msgid "Available Kernels" msgstr "Noyaux Disponibles" -#: src/Common/LinuxKernel.vala:850 src/Gtk/MainWindow.vala:156 +#: src/Common/LinuxKernel.vala:849 src/Gtk/MainWindow.vala:155 msgid "Installed" msgstr "Installé" -#: src/Common/LinuxKernel.vala:850 src/Gtk/MainWindow.vala:156 -#: src/Gtk/MainWindow.vala:499 src/Gtk/MainWindow.vala:512 +#: src/Common/LinuxKernel.vala:849 src/Gtk/MainWindow.vala:155 +#: src/Gtk/MainWindow.vala:498 src/Gtk/MainWindow.vala:511 msgid "Running" msgstr "Actuel" -#: src/Common/LinuxKernel.vala:885 +#: src/Common/LinuxKernel.vala:884 msgid "Downloading" msgstr "Téléchargement" -#: src/Common/LinuxKernel.vala:913 +#: src/Common/LinuxKernel.vala:912 #, fuzzy msgid "is already installed." msgstr "Ce noyau est déjà installé." -#: src/Common/LinuxKernel.vala:943 +#: src/Common/LinuxKernel.vala:942 #, fuzzy msgid "Uninstalling selected kernels" msgstr "Installer les noyaux spécifiés" -#: src/Common/LinuxKernel.vala:949 +#: src/Common/LinuxKernel.vala:948 msgid "requested" msgstr "" -#: src/Common/LinuxKernel.vala:952 +#: src/Common/LinuxKernel.vala:951 #, fuzzy msgid "not uninstalling the currently running kernel" msgstr "Installer les noyaux spécifiés" -#: src/Common/LinuxKernel.vala:968 +#: src/Common/LinuxKernel.vala:967 msgid "found" msgstr "" -#: src/Common/LinuxKernel.vala:971 +#: src/Common/LinuxKernel.vala:970 #, fuzzy msgid "No packages to un-install!" msgstr "Paquets Installés" -#: src/Common/LinuxKernel.vala:1019 +#: src/Common/LinuxKernel.vala:1018 #, fuzzy msgid "Could not find running kernel in list" msgstr "Impossible de trouver la version courante dans la liste!" -#: src/Common/LinuxKernel.vala:1024 +#: src/Common/LinuxKernel.vala:1023 #, fuzzy msgid "Could not find any kernels to uninstall" msgstr "Impossible de trouver de noyaux à supprimer" -#: src/Common/LinuxKernel.vala:1032 +#: src/Common/LinuxKernel.vala:1031 #, fuzzy msgid "The following kernels will be uninstalled" msgstr "Les noyaux suivants seront supprimés:" -#: src/Common/LinuxKernel.vala:1036 +#: src/Common/LinuxKernel.vala:1035 msgid "Continue ?" msgstr "Reprendre ?" -#: src/Common/LinuxKernel.vala:1058 src/Console/AppConsole.vala:286 +#: src/Common/LinuxKernel.vala:1057 src/Console/AppConsole.vala:285 msgid "Latest update" msgstr "Dernière mise à jour" -#: src/Common/LinuxKernel.vala:1069 src/Console/AppConsole.vala:293 +#: src/Common/LinuxKernel.vala:1068 src/Console/AppConsole.vala:292 msgid "Latest point update" msgstr "Dernière mise à jour mineure" -#: src/Common/LinuxKernel.vala:1077 src/Console/AppConsole.vala:298 -#: src/Console/AppConsole.vala:353 +#: src/Common/LinuxKernel.vala:1076 src/Console/AppConsole.vala:297 +#: src/Console/AppConsole.vala:352 msgid "No updates found" msgstr "Aucune mise à jour disponible" -#: src/Common/LinuxKernel.vala:1086 +#: src/Common/LinuxKernel.vala:1085 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Installer le noyau en version %s ? (y/n): " -#: src/Common/Main.vala:271 +#: src/Common/Main.vala:275 msgid "Called from" msgstr "" -#: src/Common/Main.vala:307 +#: src/Common/Main.vala:276 +msgid "" +"This file is over-written and executed again whenever settings are saved in" +msgstr "" + +#: src/Common/Main.vala:308 msgid "Notifications are disabled" msgstr "Les notifications sont désactivées" @@ -145,342 +150,342 @@ msgstr "Les notifications sont désactivées" msgid "File not found: %s" msgstr "Fichier non trouvé" -#: src/Console/AppConsole.vala:49 src/Gtk/AppGtk.vala:137 +#: src/Console/AppConsole.vala:48 src/Gtk/AppGtk.vala:136 msgid "Syntax" msgstr "Syntaxe" -#: src/Console/AppConsole.vala:51 +#: src/Console/AppConsole.vala:50 msgid "Commands" msgstr "Commandes" -#: src/Console/AppConsole.vala:53 +#: src/Console/AppConsole.vala:52 msgid "Check for kernel updates" msgstr "Vérifier les mises à jour de noyau" -#: src/Console/AppConsole.vala:54 +#: src/Console/AppConsole.vala:53 msgid "Check for kernel updates and notify current user" msgstr "Vérifier les mises à jour de noyau et notifier l'utilisateur" -#: src/Console/AppConsole.vala:55 +#: src/Console/AppConsole.vala:54 msgid "List all available mainline kernels" msgstr "Lister tous les noyaux mainline disponibles" -#: src/Console/AppConsole.vala:56 +#: src/Console/AppConsole.vala:55 msgid "List installed kernels" msgstr "Lister les noyaux installés" -#: src/Console/AppConsole.vala:57 +#: src/Console/AppConsole.vala:56 msgid "Install latest mainline kernel" msgstr "Installer le dernier noyau mainline" -#: src/Console/AppConsole.vala:58 +#: src/Console/AppConsole.vala:57 msgid "Install latest point update for current series" msgstr "Installer la dernière version mineure pour la série courante" -#: src/Console/AppConsole.vala:59 +#: src/Console/AppConsole.vala:58 msgid "Install specified mainline kernel" msgstr "Installer le noyau mainline spécifié" -#: src/Console/AppConsole.vala:60 +#: src/Console/AppConsole.vala:59 #, fuzzy msgid "Uninstall specified kernel" msgstr "Installer les noyaux spécifiés" -#: src/Console/AppConsole.vala:61 +#: src/Console/AppConsole.vala:60 #, fuzzy msgid "Uninstall kernels older than the latest installed" msgstr "Désinstalle les noyaux plus anciens que le noyau courant" -#: src/Console/AppConsole.vala:62 +#: src/Console/AppConsole.vala:61 msgid "Download specified kernels" msgstr "Télécharger les noyaux spécifiés" -#: src/Console/AppConsole.vala:63 +#: src/Console/AppConsole.vala:62 msgid "Delete cached info about available kernels" msgstr "" -#: src/Console/AppConsole.vala:65 src/Gtk/AppGtk.vala:139 +#: src/Console/AppConsole.vala:64 src/Gtk/AppGtk.vala:138 msgid "Options" msgstr "Options" -#: src/Console/AppConsole.vala:67 +#: src/Console/AppConsole.vala:66 #, fuzzy msgid "Include unstable and RC releases" msgstr "Cacher les versions instables et RC" -#: src/Console/AppConsole.vala:68 +#: src/Console/AppConsole.vala:67 #, fuzzy msgid "Exclude unstable and RC releases" msgstr "Cacher les versions instables et RC" -#: src/Console/AppConsole.vala:69 +#: src/Console/AppConsole.vala:68 msgid "Enable verbose debugging output" msgstr "Active la sortie verbeuse de débogage" -#: src/Console/AppConsole.vala:70 +#: src/Console/AppConsole.vala:69 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "" -#: src/Console/AppConsole.vala:73 +#: src/Console/AppConsole.vala:72 msgid "A version string taken from the output of --list" msgstr "Une version prise du resultat de --list" -#: src/Console/AppConsole.vala:74 +#: src/Console/AppConsole.vala:73 msgid "One or more, comma-seperated" msgstr "" -#: src/Console/AppConsole.vala:75 +#: src/Console/AppConsole.vala:74 #, fuzzy msgid "The currently running kernel will always be ignored" msgstr "Les noyaux suivants seront supprimés:" -#: src/Console/AppConsole.vala:153 src/Gtk/AppGtk.vala:123 +#: src/Console/AppConsole.vala:152 src/Gtk/AppGtk.vala:122 msgid "Unknown option" msgstr "Option inconnue" -#: src/Console/AppConsole.vala:154 src/Console/AppConsole.vala:244 -#: src/Console/AppConsole.vala:272 +#: src/Console/AppConsole.vala:153 src/Console/AppConsole.vala:243 +#: src/Console/AppConsole.vala:271 msgid "Run" msgstr "Executez" -#: src/Console/AppConsole.vala:154 +#: src/Console/AppConsole.vala:153 msgid "to list all options" msgstr "pour afficher toutes les options" -#: src/Console/AppConsole.vala:212 src/Console/AppConsole.vala:252 +#: src/Console/AppConsole.vala:211 src/Console/AppConsole.vala:251 msgid "No kernels specified" msgstr "Aucun noyau spécifié" -#: src/Console/AppConsole.vala:218 +#: src/Console/AppConsole.vala:217 msgid "Multiple kernels selected for installation. Select only one." msgstr "" "Plusieurs noyaux sélectionnés pour être installés. Sélectionnez en seulement " "un." -#: src/Console/AppConsole.vala:241 +#: src/Console/AppConsole.vala:240 msgid "Could not find requested version" msgstr "Impossible de trouver la version demandée" -#: src/Console/AppConsole.vala:244 +#: src/Console/AppConsole.vala:243 msgid "and use a version string listed in first column" msgstr "" -#: src/Console/AppConsole.vala:271 +#: src/Console/AppConsole.vala:270 msgid "Command not specified" msgstr "Pas de commande fournie" -#: src/Console/AppConsole.vala:272 +#: src/Console/AppConsole.vala:271 msgid "to list all commands" msgstr "pour afficher toutes les commandes" -#: src/Console/AppConsole.vala:326 src/Gtk/SettingsDialog.vala:166 +#: src/Console/AppConsole.vala:325 src/Gtk/SettingsDialog.vala:165 msgid "Show" msgstr "Montrer" -#: src/Console/AppConsole.vala:331 src/Console/AppConsole.vala:343 +#: src/Console/AppConsole.vala:330 src/Console/AppConsole.vala:342 #, c-format msgid "Kernel %s Available" msgstr "Paquet %s disponibles" -#: src/Console/AppConsole.vala:333 src/Console/AppConsole.vala:345 -#: src/Gtk/MainWindow.vala:267 +#: src/Console/AppConsole.vala:332 src/Console/AppConsole.vala:344 +#: src/Gtk/MainWindow.vala:266 msgid "Install" msgstr "Installer" -#: src/Gtk/AboutWindow.vala:264 src/Gtk/AboutWindow.vala:281 +#: src/Gtk/AboutWindow.vala:162 src/Gtk/AboutWindow.vala:179 msgid "Credits" msgstr "Crédits" -#: src/Gtk/AboutWindow.vala:277 +#: src/Gtk/AboutWindow.vala:175 msgid "Back" msgstr "Retour" -#: src/Gtk/AboutWindow.vala:287 src/Gtk/TerminalWindow.vala:163 +#: src/Gtk/AboutWindow.vala:185 src/Gtk/TerminalWindow.vala:162 msgid "Close" msgstr "Fermer" -#: src/Gtk/AboutWindow.vala:306 +#: src/Gtk/AboutWindow.vala:204 msgid "Authors" msgstr "Auteurs" -#: src/Gtk/AboutWindow.vala:314 +#: src/Gtk/AboutWindow.vala:212 msgid "Contributions" msgstr "Contributions" -#: src/Gtk/AboutWindow.vala:322 +#: src/Gtk/AboutWindow.vala:220 msgid "Artists" msgstr "Artistes" -#: src/Gtk/AboutWindow.vala:330 +#: src/Gtk/AboutWindow.vala:228 msgid "Translators" msgstr "Traducteurs" -#: src/Gtk/AboutWindow.vala:338 +#: src/Gtk/AboutWindow.vala:236 msgid "Documenters" msgstr "Documentalistes" -#: src/Gtk/AboutWindow.vala:346 +#: src/Gtk/AboutWindow.vala:244 msgid "Third Party Inclusions" msgstr "Dépendances Tierces" -#: src/Gtk/AppGtk.vala:137 +#: src/Gtk/AppGtk.vala:136 #, fuzzy msgid "options" msgstr "Options" -#: src/Gtk/AppGtk.vala:141 +#: src/Gtk/AppGtk.vala:140 msgid "Print debug information" msgstr "Afficher les informations de débogage" -#: src/Gtk/AppGtk.vala:142 +#: src/Gtk/AppGtk.vala:141 msgid "Show all options" msgstr "Afficher toutes les options" -#: src/Gtk/MainWindow.vala:113 +#: src/Gtk/MainWindow.vala:112 msgid "Kernel" msgstr "Noyau" -#: src/Gtk/MainWindow.vala:143 +#: src/Gtk/MainWindow.vala:142 msgid "Status" msgstr "Statut" -#: src/Gtk/MainWindow.vala:277 +#: src/Gtk/MainWindow.vala:276 #, fuzzy msgid "Uninstall" msgstr "Installer" -#: src/Gtk/MainWindow.vala:287 +#: src/Gtk/MainWindow.vala:286 msgid "Changes" msgstr "Changements" -#: src/Gtk/MainWindow.vala:309 +#: src/Gtk/MainWindow.vala:308 #, fuzzy msgid "Uninstall Old" msgstr "Désinstallation complète" -#: src/Gtk/MainWindow.vala:310 +#: src/Gtk/MainWindow.vala:309 #, fuzzy msgid "Uninstall kernels older than running kernel" msgstr "Désinstalle les noyaux plus anciens que le noyau courant" -#: src/Gtk/MainWindow.vala:315 +#: src/Gtk/MainWindow.vala:314 msgid "Reload" msgstr "" -#: src/Gtk/MainWindow.vala:320 src/Gtk/SettingsDialog.vala:50 +#: src/Gtk/MainWindow.vala:319 src/Gtk/SettingsDialog.vala:49 msgid "Settings" msgstr "Paramètres" -#: src/Gtk/MainWindow.vala:325 +#: src/Gtk/MainWindow.vala:324 msgid "About" msgstr "À propos" -#: src/Gtk/MainWindow.vala:330 +#: src/Gtk/MainWindow.vala:329 msgid "Exit" msgstr "" -#: src/Gtk/MainWindow.vala:398 +#: src/Gtk/MainWindow.vala:397 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "" "Utilitaire de mise à niveau des noyaux pour les distributions basées sur " "Ubuntu" -#: src/Gtk/MainWindow.vala:399 +#: src/Gtk/MainWindow.vala:398 msgid "Forked" msgstr "Version forkée :" -#: src/Gtk/MainWindow.vala:399 +#: src/Gtk/MainWindow.vala:398 msgid "Original" msgstr "Version originale :" -#: src/Gtk/MainWindow.vala:437 +#: src/Gtk/MainWindow.vala:436 msgid "Updating kernels" msgstr "" -#: src/Gtk/MainWindow.vala:508 +#: src/Gtk/MainWindow.vala:507 msgid "available" msgstr "disponible" -#: src/Gtk/MainWindow.vala:551 src/Gtk/MainWindow.vala:591 -#: src/Gtk/MainWindow.vala:625 +#: src/Gtk/MainWindow.vala:550 src/Gtk/MainWindow.vala:590 +#: src/Gtk/MainWindow.vala:624 msgid "DONE" msgstr "" -#: src/Gtk/ProgressWindow.vala:128 src/Gtk/TerminalWindow.vala:153 +#: src/Gtk/ProgressWindow.vala:127 src/Gtk/TerminalWindow.vala:152 msgid "Cancel" msgstr "Annuler" -#: src/Gtk/SettingsDialog.vala:60 +#: src/Gtk/SettingsDialog.vala:59 msgid "Notification" msgstr "Notification" -#: src/Gtk/SettingsDialog.vala:67 +#: src/Gtk/SettingsDialog.vala:66 msgid "Notify if a major release is available" msgstr "Notifier si une version stable majeure est disponible" -#: src/Gtk/SettingsDialog.vala:76 +#: src/Gtk/SettingsDialog.vala:75 msgid "Notify if a point release is available" msgstr "Notifier si une version stable mineure est disponible" -#: src/Gtk/SettingsDialog.vala:87 +#: src/Gtk/SettingsDialog.vala:86 msgid "Seconds interval enabled for debugging" msgstr "" -#: src/Gtk/SettingsDialog.vala:110 +#: src/Gtk/SettingsDialog.vala:109 msgid "Check every" msgstr "Vérifier toutes les" -#: src/Gtk/SettingsDialog.vala:135 +#: src/Gtk/SettingsDialog.vala:134 msgid "Hour(s)" msgstr "Heure(s)" -#: src/Gtk/SettingsDialog.vala:137 +#: src/Gtk/SettingsDialog.vala:136 msgid "Day(s)" msgstr "Jour(s)" -#: src/Gtk/SettingsDialog.vala:139 +#: src/Gtk/SettingsDialog.vala:138 msgid "Week(s)" msgstr "Semaine(s)" -#: src/Gtk/SettingsDialog.vala:142 +#: src/Gtk/SettingsDialog.vala:141 msgid "Second(s)" msgstr "Seconde(s)" -#: src/Gtk/SettingsDialog.vala:148 +#: src/Gtk/SettingsDialog.vala:147 msgid "Filters" msgstr "" -#: src/Gtk/SettingsDialog.vala:156 +#: src/Gtk/SettingsDialog.vala:155 msgid "Hide unstable and RC releases" msgstr "Cacher les versions instables et RC" -#: src/Gtk/SettingsDialog.vala:178 +#: src/Gtk/SettingsDialog.vala:177 #, fuzzy msgid "previous major versions" msgstr "Montrer les N dernières versions majeures" -#: src/Gtk/SettingsDialog.vala:182 +#: src/Gtk/SettingsDialog.vala:181 msgid "Network" msgstr "" -#: src/Gtk/SettingsDialog.vala:193 +#: src/Gtk/SettingsDialog.vala:192 #, fuzzy msgid "Internet connection timeout in" msgstr "Attendre la connection internet " -#: src/Gtk/SettingsDialog.vala:205 +#: src/Gtk/SettingsDialog.vala:204 msgid "seconds" msgstr "secondes" -#: src/Gtk/SettingsDialog.vala:212 +#: src/Gtk/SettingsDialog.vala:211 msgid "Max concurrent downloads" msgstr "Nombre maximum de téléchargements parallèles" -#: src/Gtk/SettingsDialog.vala:226 +#: src/Gtk/SettingsDialog.vala:225 msgid "Proxy" msgstr "" -#: src/Gtk/l.gtk.vala:44 +#: src/Gtk/l.gtk.vala:43 msgid "Missing Icon" msgstr "Icône introuvable" diff --git a/po/hr.po b/po/hr.po index e0103592..d79bf594 100644 --- a/po/hr.po +++ b/po/hr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-14 10:07-0400\n" +"POT-Creation-Date: 2023-03-16 01:19-0400\n" "PO-Revision-Date: 2022-09-22 12:13+0200\n" "Last-Translator: gogo \n" "Language-Team: Croatian\n" @@ -13,129 +13,134 @@ msgstr "" "X-Launchpad-Export-Date: 2017-12-23 23:36+0000\n" "X-Generator: Poedit 3.0.1\n" -#: src/Common/LinuxKernel.vala:88 +#: src/Common/LinuxKernel.vala:87 msgid "Distribution" msgstr "Distribucija" -#: src/Common/LinuxKernel.vala:103 +#: src/Common/LinuxKernel.vala:102 msgid "Architecture" msgstr "Arhitektura" -#: src/Common/LinuxKernel.vala:278 +#: src/Common/LinuxKernel.vala:277 #, fuzzy msgid "Fetching individual kernel indexes" msgstr "Preuzimanje sadržaja..." -#: src/Common/LinuxKernel.vala:327 +#: src/Common/LinuxKernel.vala:326 msgid "Updating from" msgstr "" -#: src/Common/LinuxKernel.vala:344 src/Common/LinuxKernel.vala:897 +#: src/Common/LinuxKernel.vala:343 src/Common/LinuxKernel.vala:896 msgid "OK" msgstr "U redu" -#: src/Common/LinuxKernel.vala:347 src/Common/LinuxKernel.vala:900 +#: src/Common/LinuxKernel.vala:346 src/Common/LinuxKernel.vala:899 msgid "FAILED" msgstr "" -#: src/Common/LinuxKernel.vala:761 +#: src/Common/LinuxKernel.vala:760 msgid "Packages Available" msgstr "Dostupni paketi" -#: src/Common/LinuxKernel.vala:766 +#: src/Common/LinuxKernel.vala:765 msgid "Packages Installed" msgstr "Instalirani paketi" -#: src/Common/LinuxKernel.vala:779 src/lib/TeeJee.FileSystem.vala:121 +#: src/Common/LinuxKernel.vala:778 src/lib/TeeJee.FileSystem.vala:121 msgid "File not found" msgstr "Datoteka nije pronađena" -#: src/Common/LinuxKernel.vala:843 +#: src/Common/LinuxKernel.vala:842 msgid "Available Kernels" msgstr "Dostupni kerneli" -#: src/Common/LinuxKernel.vala:850 src/Gtk/MainWindow.vala:156 +#: src/Common/LinuxKernel.vala:849 src/Gtk/MainWindow.vala:155 msgid "Installed" msgstr "Instalirano" -#: src/Common/LinuxKernel.vala:850 src/Gtk/MainWindow.vala:156 -#: src/Gtk/MainWindow.vala:499 src/Gtk/MainWindow.vala:512 +#: src/Common/LinuxKernel.vala:849 src/Gtk/MainWindow.vala:155 +#: src/Gtk/MainWindow.vala:498 src/Gtk/MainWindow.vala:511 msgid "Running" msgstr "Pokrenuto" -#: src/Common/LinuxKernel.vala:885 +#: src/Common/LinuxKernel.vala:884 msgid "Downloading" msgstr "Preuzimanje" -#: src/Common/LinuxKernel.vala:913 +#: src/Common/LinuxKernel.vala:912 #, fuzzy msgid "is already installed." msgstr "Ovaj kernel je već instaliran." -#: src/Common/LinuxKernel.vala:943 +#: src/Common/LinuxKernel.vala:942 #, fuzzy msgid "Uninstalling selected kernels" msgstr "Deinstaliraj određene kernele" -#: src/Common/LinuxKernel.vala:949 +#: src/Common/LinuxKernel.vala:948 msgid "requested" msgstr "" -#: src/Common/LinuxKernel.vala:952 +#: src/Common/LinuxKernel.vala:951 #, fuzzy msgid "not uninstalling the currently running kernel" msgstr "Deinstaliraj određene kernele" -#: src/Common/LinuxKernel.vala:968 +#: src/Common/LinuxKernel.vala:967 msgid "found" msgstr "" -#: src/Common/LinuxKernel.vala:971 +#: src/Common/LinuxKernel.vala:970 #, fuzzy msgid "No packages to un-install!" msgstr "Instalirani paketi" -#: src/Common/LinuxKernel.vala:1019 +#: src/Common/LinuxKernel.vala:1018 #, fuzzy msgid "Could not find running kernel in list" msgstr "Nemoguće je pronaći pokrenuti kernel na popisu!" -#: src/Common/LinuxKernel.vala:1024 +#: src/Common/LinuxKernel.vala:1023 msgid "Could not find any kernels to uninstall" msgstr "Nema pronađenih kernela za deinstaliranje" -#: src/Common/LinuxKernel.vala:1032 +#: src/Common/LinuxKernel.vala:1031 #, fuzzy msgid "The following kernels will be uninstalled" msgstr "Sljedeći kerneli će biti deinstalirani:" -#: src/Common/LinuxKernel.vala:1036 +#: src/Common/LinuxKernel.vala:1035 msgid "Continue ?" msgstr "Nastavi?" -#: src/Common/LinuxKernel.vala:1058 src/Console/AppConsole.vala:286 +#: src/Common/LinuxKernel.vala:1057 src/Console/AppConsole.vala:285 msgid "Latest update" msgstr "Najnovija nadopuna" -#: src/Common/LinuxKernel.vala:1069 src/Console/AppConsole.vala:293 +#: src/Common/LinuxKernel.vala:1068 src/Console/AppConsole.vala:292 msgid "Latest point update" msgstr "Najnovija ciljana nadopuna" -#: src/Common/LinuxKernel.vala:1077 src/Console/AppConsole.vala:298 -#: src/Console/AppConsole.vala:353 +#: src/Common/LinuxKernel.vala:1076 src/Console/AppConsole.vala:297 +#: src/Console/AppConsole.vala:352 msgid "No updates found" msgstr "Nema pronađenih nadopuna" -#: src/Common/LinuxKernel.vala:1086 +#: src/Common/LinuxKernel.vala:1085 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Instaliraj kernel inačice %s ? (d/n): " -#: src/Common/Main.vala:271 +#: src/Common/Main.vala:275 msgid "Called from" msgstr "Pozvano od" -#: src/Common/Main.vala:307 +#: src/Common/Main.vala:276 +msgid "" +"This file is over-written and executed again whenever settings are saved in" +msgstr "" + +#: src/Common/Main.vala:308 msgid "Notifications are disabled" msgstr "Obavijesti su onemogućene" @@ -144,334 +149,334 @@ msgstr "Obavijesti su onemogućene" msgid "File not found: %s" msgstr "Datoteka nije pronađena" -#: src/Console/AppConsole.vala:49 src/Gtk/AppGtk.vala:137 +#: src/Console/AppConsole.vala:48 src/Gtk/AppGtk.vala:136 msgid "Syntax" msgstr "Sintaksa" -#: src/Console/AppConsole.vala:51 +#: src/Console/AppConsole.vala:50 msgid "Commands" msgstr "Naredbe" -#: src/Console/AppConsole.vala:53 +#: src/Console/AppConsole.vala:52 msgid "Check for kernel updates" msgstr "Provjeri nadopune kernela" -#: src/Console/AppConsole.vala:54 +#: src/Console/AppConsole.vala:53 msgid "Check for kernel updates and notify current user" msgstr "Provjeri nadopune kernela i obavijesti trenutnog korisnika" -#: src/Console/AppConsole.vala:55 +#: src/Console/AppConsole.vala:54 msgid "List all available mainline kernels" msgstr "Prikaži sve mainline kernele" -#: src/Console/AppConsole.vala:56 +#: src/Console/AppConsole.vala:55 msgid "List installed kernels" msgstr "Prikaži instalirane kernele" -#: src/Console/AppConsole.vala:57 +#: src/Console/AppConsole.vala:56 msgid "Install latest mainline kernel" msgstr "Instaliraj najnoviji mainline kernel" -#: src/Console/AppConsole.vala:58 +#: src/Console/AppConsole.vala:57 msgid "Install latest point update for current series" msgstr "Instaliraj najnoviju ciljanu nadopunu za trenutnu seriju" -#: src/Console/AppConsole.vala:59 +#: src/Console/AppConsole.vala:58 msgid "Install specified mainline kernel" msgstr "Instaliraj određeni mainline kernel" -#: src/Console/AppConsole.vala:60 +#: src/Console/AppConsole.vala:59 msgid "Uninstall specified kernel" msgstr "Deinstaliraj određene kernele" -#: src/Console/AppConsole.vala:61 +#: src/Console/AppConsole.vala:60 #, fuzzy msgid "Uninstall kernels older than the latest installed" msgstr "Deinstaliraj starije kernele od trenutno pokrenutog krenela" -#: src/Console/AppConsole.vala:62 +#: src/Console/AppConsole.vala:61 msgid "Download specified kernels" msgstr "Preuzmi određene kernele" -#: src/Console/AppConsole.vala:63 +#: src/Console/AppConsole.vala:62 msgid "Delete cached info about available kernels" msgstr "" -#: src/Console/AppConsole.vala:65 src/Gtk/AppGtk.vala:139 +#: src/Console/AppConsole.vala:64 src/Gtk/AppGtk.vala:138 msgid "Options" msgstr "Mogućnosti" -#: src/Console/AppConsole.vala:67 +#: src/Console/AppConsole.vala:66 msgid "Include unstable and RC releases" msgstr "Uključi predizdanja i nestabilne kernele" -#: src/Console/AppConsole.vala:68 +#: src/Console/AppConsole.vala:67 #, fuzzy msgid "Exclude unstable and RC releases" msgstr "Uključi predizdanja i nestabilne kernele" -#: src/Console/AppConsole.vala:69 +#: src/Console/AppConsole.vala:68 msgid "Enable verbose debugging output" msgstr "Omogući opširnije zapisivanje" -#: src/Console/AppConsole.vala:70 +#: src/Console/AppConsole.vala:69 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "Pretpostavi Da za sve upite (neinteraktivan način rada)" -#: src/Console/AppConsole.vala:73 +#: src/Console/AppConsole.vala:72 msgid "A version string taken from the output of --list" msgstr "Izraz inačice uzet iz zapisa --list" -#: src/Console/AppConsole.vala:74 +#: src/Console/AppConsole.vala:73 msgid "One or more, comma-seperated" msgstr "" -#: src/Console/AppConsole.vala:75 +#: src/Console/AppConsole.vala:74 #, fuzzy msgid "The currently running kernel will always be ignored" msgstr "Sljedeći kerneli će biti deinstalirani:" -#: src/Console/AppConsole.vala:153 src/Gtk/AppGtk.vala:123 +#: src/Console/AppConsole.vala:152 src/Gtk/AppGtk.vala:122 msgid "Unknown option" msgstr "Nepoznata mogućnost" -#: src/Console/AppConsole.vala:154 src/Console/AppConsole.vala:244 -#: src/Console/AppConsole.vala:272 +#: src/Console/AppConsole.vala:153 src/Console/AppConsole.vala:243 +#: src/Console/AppConsole.vala:271 msgid "Run" msgstr "Pokreni" -#: src/Console/AppConsole.vala:154 +#: src/Console/AppConsole.vala:153 msgid "to list all options" msgstr "za prikaz svih mogućnosti" -#: src/Console/AppConsole.vala:212 src/Console/AppConsole.vala:252 +#: src/Console/AppConsole.vala:211 src/Console/AppConsole.vala:251 msgid "No kernels specified" msgstr "Nema određenih kernela" -#: src/Console/AppConsole.vala:218 +#: src/Console/AppConsole.vala:217 msgid "Multiple kernels selected for installation. Select only one." msgstr "Više kernela je odabrano za instalaciju. odaberite samo jedan." -#: src/Console/AppConsole.vala:241 +#: src/Console/AppConsole.vala:240 msgid "Could not find requested version" msgstr "Nemoguće je pronaći zatraženu inačicu" -#: src/Console/AppConsole.vala:244 +#: src/Console/AppConsole.vala:243 msgid "and use a version string listed in first column" msgstr "i koristite izraz inačice prikazan u prvom stupcu" -#: src/Console/AppConsole.vala:271 +#: src/Console/AppConsole.vala:270 msgid "Command not specified" msgstr "Naredba nije navedena" -#: src/Console/AppConsole.vala:272 +#: src/Console/AppConsole.vala:271 msgid "to list all commands" msgstr "za prikaz svih mogućnosti" -#: src/Console/AppConsole.vala:326 src/Gtk/SettingsDialog.vala:166 +#: src/Console/AppConsole.vala:325 src/Gtk/SettingsDialog.vala:165 msgid "Show" msgstr "Prikaži" -#: src/Console/AppConsole.vala:331 src/Console/AppConsole.vala:343 +#: src/Console/AppConsole.vala:330 src/Console/AppConsole.vala:342 #, c-format msgid "Kernel %s Available" msgstr "Kernel %s je dostupan" -#: src/Console/AppConsole.vala:333 src/Console/AppConsole.vala:345 -#: src/Gtk/MainWindow.vala:267 +#: src/Console/AppConsole.vala:332 src/Console/AppConsole.vala:344 +#: src/Gtk/MainWindow.vala:266 msgid "Install" msgstr "Instaliraj" -#: src/Gtk/AboutWindow.vala:264 src/Gtk/AboutWindow.vala:281 +#: src/Gtk/AboutWindow.vala:162 src/Gtk/AboutWindow.vala:179 msgid "Credits" msgstr "Zasluge" -#: src/Gtk/AboutWindow.vala:277 +#: src/Gtk/AboutWindow.vala:175 msgid "Back" msgstr "Natrag" -#: src/Gtk/AboutWindow.vala:287 src/Gtk/TerminalWindow.vala:163 +#: src/Gtk/AboutWindow.vala:185 src/Gtk/TerminalWindow.vala:162 msgid "Close" msgstr "Zatvori" -#: src/Gtk/AboutWindow.vala:306 +#: src/Gtk/AboutWindow.vala:204 msgid "Authors" msgstr "Autori" -#: src/Gtk/AboutWindow.vala:314 +#: src/Gtk/AboutWindow.vala:212 msgid "Contributions" msgstr "Prilozi" -#: src/Gtk/AboutWindow.vala:322 +#: src/Gtk/AboutWindow.vala:220 msgid "Artists" msgstr "Dizajneri" -#: src/Gtk/AboutWindow.vala:330 +#: src/Gtk/AboutWindow.vala:228 msgid "Translators" msgstr "Prevoditelji" -#: src/Gtk/AboutWindow.vala:338 +#: src/Gtk/AboutWindow.vala:236 msgid "Documenters" msgstr "Autori dokumentacije" -#: src/Gtk/AboutWindow.vala:346 +#: src/Gtk/AboutWindow.vala:244 msgid "Third Party Inclusions" msgstr "Uključene treće strane" -#: src/Gtk/AppGtk.vala:137 +#: src/Gtk/AppGtk.vala:136 #, fuzzy msgid "options" msgstr "Mogućnosti" -#: src/Gtk/AppGtk.vala:141 +#: src/Gtk/AppGtk.vala:140 msgid "Print debug information" msgstr "Ispiši informacije otklanjanja grešaka" -#: src/Gtk/AppGtk.vala:142 +#: src/Gtk/AppGtk.vala:141 msgid "Show all options" msgstr "Prikaži sve mogućnosti" -#: src/Gtk/MainWindow.vala:113 +#: src/Gtk/MainWindow.vala:112 msgid "Kernel" msgstr "Kernel" -#: src/Gtk/MainWindow.vala:143 +#: src/Gtk/MainWindow.vala:142 msgid "Status" msgstr "Stanje" -#: src/Gtk/MainWindow.vala:277 +#: src/Gtk/MainWindow.vala:276 msgid "Uninstall" msgstr "Deinstaliraj" -#: src/Gtk/MainWindow.vala:287 +#: src/Gtk/MainWindow.vala:286 msgid "Changes" msgstr "Promjene" -#: src/Gtk/MainWindow.vala:309 +#: src/Gtk/MainWindow.vala:308 msgid "Uninstall Old" msgstr "Deinstaliraj staro" -#: src/Gtk/MainWindow.vala:310 +#: src/Gtk/MainWindow.vala:309 msgid "Uninstall kernels older than running kernel" msgstr "Deinstaliraj kernele starije od pokrenutog krenela" -#: src/Gtk/MainWindow.vala:315 +#: src/Gtk/MainWindow.vala:314 msgid "Reload" msgstr "" -#: src/Gtk/MainWindow.vala:320 src/Gtk/SettingsDialog.vala:50 +#: src/Gtk/MainWindow.vala:319 src/Gtk/SettingsDialog.vala:49 msgid "Settings" msgstr "Postavke" -#: src/Gtk/MainWindow.vala:325 +#: src/Gtk/MainWindow.vala:324 msgid "About" msgstr "O programu" -#: src/Gtk/MainWindow.vala:330 +#: src/Gtk/MainWindow.vala:329 msgid "Exit" msgstr "" -#: src/Gtk/MainWindow.vala:398 +#: src/Gtk/MainWindow.vala:397 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Alat za nadogradnju kernela Ubuntu temeljenih distribucija" -#: src/Gtk/MainWindow.vala:399 +#: src/Gtk/MainWindow.vala:398 msgid "Forked" msgstr "Forkano" -#: src/Gtk/MainWindow.vala:399 +#: src/Gtk/MainWindow.vala:398 msgid "Original" msgstr "Izvornik" -#: src/Gtk/MainWindow.vala:437 +#: src/Gtk/MainWindow.vala:436 msgid "Updating kernels" msgstr "" -#: src/Gtk/MainWindow.vala:508 +#: src/Gtk/MainWindow.vala:507 msgid "available" msgstr "dostupno" -#: src/Gtk/MainWindow.vala:551 src/Gtk/MainWindow.vala:591 -#: src/Gtk/MainWindow.vala:625 +#: src/Gtk/MainWindow.vala:550 src/Gtk/MainWindow.vala:590 +#: src/Gtk/MainWindow.vala:624 msgid "DONE" msgstr "" -#: src/Gtk/ProgressWindow.vala:128 src/Gtk/TerminalWindow.vala:153 +#: src/Gtk/ProgressWindow.vala:127 src/Gtk/TerminalWindow.vala:152 msgid "Cancel" msgstr "Odustani" -#: src/Gtk/SettingsDialog.vala:60 +#: src/Gtk/SettingsDialog.vala:59 msgid "Notification" msgstr "Obavijesti" -#: src/Gtk/SettingsDialog.vala:67 +#: src/Gtk/SettingsDialog.vala:66 msgid "Notify if a major release is available" msgstr "Obavijesti kada je glavno izdanje dostupno" -#: src/Gtk/SettingsDialog.vala:76 +#: src/Gtk/SettingsDialog.vala:75 msgid "Notify if a point release is available" msgstr "Obavijesti kada je pojedino izdanje dostupno" -#: src/Gtk/SettingsDialog.vala:87 +#: src/Gtk/SettingsDialog.vala:86 #, fuzzy msgid "Seconds interval enabled for debugging" msgstr "(Dopuštena razdoblja u sekundama za --debug)" -#: src/Gtk/SettingsDialog.vala:110 +#: src/Gtk/SettingsDialog.vala:109 msgid "Check every" msgstr "Provjeri svaka" -#: src/Gtk/SettingsDialog.vala:135 +#: src/Gtk/SettingsDialog.vala:134 msgid "Hour(s)" msgstr "Sat(a)" -#: src/Gtk/SettingsDialog.vala:137 +#: src/Gtk/SettingsDialog.vala:136 msgid "Day(s)" msgstr "Dan(a)" -#: src/Gtk/SettingsDialog.vala:139 +#: src/Gtk/SettingsDialog.vala:138 msgid "Week(s)" msgstr "Tjedan(a)" -#: src/Gtk/SettingsDialog.vala:142 +#: src/Gtk/SettingsDialog.vala:141 msgid "Second(s)" msgstr "Sekund(e)" -#: src/Gtk/SettingsDialog.vala:148 +#: src/Gtk/SettingsDialog.vala:147 msgid "Filters" msgstr "" -#: src/Gtk/SettingsDialog.vala:156 +#: src/Gtk/SettingsDialog.vala:155 msgid "Hide unstable and RC releases" msgstr "Sakrij nestabilne kernele i predizdanja" -#: src/Gtk/SettingsDialog.vala:178 +#: src/Gtk/SettingsDialog.vala:177 #, fuzzy msgid "previous major versions" msgstr "Prikaži N prijašnjih glavnih izdanja " -#: src/Gtk/SettingsDialog.vala:182 +#: src/Gtk/SettingsDialog.vala:181 msgid "Network" msgstr "" -#: src/Gtk/SettingsDialog.vala:193 +#: src/Gtk/SettingsDialog.vala:192 #, fuzzy msgid "Internet connection timeout in" msgstr "Istek internet povezivanja za " -#: src/Gtk/SettingsDialog.vala:205 +#: src/Gtk/SettingsDialog.vala:204 msgid "seconds" msgstr "sekunde" -#: src/Gtk/SettingsDialog.vala:212 +#: src/Gtk/SettingsDialog.vala:211 msgid "Max concurrent downloads" msgstr "Najviše istodobnih preuzimanja" -#: src/Gtk/SettingsDialog.vala:226 +#: src/Gtk/SettingsDialog.vala:225 msgid "Proxy" msgstr "" -#: src/Gtk/l.gtk.vala:44 +#: src/Gtk/l.gtk.vala:43 msgid "Missing Icon" msgstr "Ikone koje nedostaju" diff --git a/po/it.po b/po/it.po index 1e3dc28f..ff44b6d9 100644 --- a/po/it.po +++ b/po/it.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline 1.0.15\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-14 10:07-0400\n" +"POT-Creation-Date: 2023-03-16 01:19-0400\n" "PO-Revision-Date: 2020-08-22 15:35+0100\n" "Last-Translator: Albano Battistella \n" "Language-Team: Italian\n" @@ -11,129 +11,134 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: src/Common/LinuxKernel.vala:88 +#: src/Common/LinuxKernel.vala:87 msgid "Distribution" msgstr "Distribuzione" -#: src/Common/LinuxKernel.vala:103 +#: src/Common/LinuxKernel.vala:102 msgid "Architecture" msgstr "Architettura" -#: src/Common/LinuxKernel.vala:278 +#: src/Common/LinuxKernel.vala:277 #, fuzzy msgid "Fetching individual kernel indexes" msgstr "Recupero indice in corso..." -#: src/Common/LinuxKernel.vala:327 +#: src/Common/LinuxKernel.vala:326 msgid "Updating from" msgstr "" -#: src/Common/LinuxKernel.vala:344 src/Common/LinuxKernel.vala:897 +#: src/Common/LinuxKernel.vala:343 src/Common/LinuxKernel.vala:896 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:347 src/Common/LinuxKernel.vala:900 +#: src/Common/LinuxKernel.vala:346 src/Common/LinuxKernel.vala:899 msgid "FAILED" msgstr "" -#: src/Common/LinuxKernel.vala:761 +#: src/Common/LinuxKernel.vala:760 msgid "Packages Available" msgstr "Pacchetti disponibili" -#: src/Common/LinuxKernel.vala:766 +#: src/Common/LinuxKernel.vala:765 msgid "Packages Installed" msgstr "Pacchetti installati" -#: src/Common/LinuxKernel.vala:779 src/lib/TeeJee.FileSystem.vala:121 +#: src/Common/LinuxKernel.vala:778 src/lib/TeeJee.FileSystem.vala:121 msgid "File not found" msgstr "File non trovato" -#: src/Common/LinuxKernel.vala:843 +#: src/Common/LinuxKernel.vala:842 msgid "Available Kernels" msgstr "Kernel disponibili" -#: src/Common/LinuxKernel.vala:850 src/Gtk/MainWindow.vala:156 +#: src/Common/LinuxKernel.vala:849 src/Gtk/MainWindow.vala:155 msgid "Installed" msgstr "Installato" -#: src/Common/LinuxKernel.vala:850 src/Gtk/MainWindow.vala:156 -#: src/Gtk/MainWindow.vala:499 src/Gtk/MainWindow.vala:512 +#: src/Common/LinuxKernel.vala:849 src/Gtk/MainWindow.vala:155 +#: src/Gtk/MainWindow.vala:498 src/Gtk/MainWindow.vala:511 msgid "Running" msgstr "In esecuzione" -#: src/Common/LinuxKernel.vala:885 +#: src/Common/LinuxKernel.vala:884 msgid "Downloading" msgstr "Download in corso" -#: src/Common/LinuxKernel.vala:913 +#: src/Common/LinuxKernel.vala:912 #, fuzzy msgid "is already installed." msgstr "Questo kernel è già installato" -#: src/Common/LinuxKernel.vala:943 +#: src/Common/LinuxKernel.vala:942 #, fuzzy msgid "Uninstalling selected kernels" msgstr "Disinstalla i kernel specificati" -#: src/Common/LinuxKernel.vala:949 +#: src/Common/LinuxKernel.vala:948 msgid "requested" msgstr "" -#: src/Common/LinuxKernel.vala:952 +#: src/Common/LinuxKernel.vala:951 #, fuzzy msgid "not uninstalling the currently running kernel" msgstr "Disinstalla i kernel specificati" -#: src/Common/LinuxKernel.vala:968 +#: src/Common/LinuxKernel.vala:967 msgid "found" msgstr "" -#: src/Common/LinuxKernel.vala:971 +#: src/Common/LinuxKernel.vala:970 #, fuzzy msgid "No packages to un-install!" msgstr "Pacchetti installati" -#: src/Common/LinuxKernel.vala:1019 +#: src/Common/LinuxKernel.vala:1018 #, fuzzy msgid "Could not find running kernel in list" msgstr "Impossibile trovare il kernel in esecuzione nell'elenco!" -#: src/Common/LinuxKernel.vala:1024 +#: src/Common/LinuxKernel.vala:1023 msgid "Could not find any kernels to uninstall" msgstr "Impossibile trovare alcun kernel da rimuovere" -#: src/Common/LinuxKernel.vala:1032 +#: src/Common/LinuxKernel.vala:1031 #, fuzzy msgid "The following kernels will be uninstalled" msgstr "I seguenti kernel verranno rimossi:" -#: src/Common/LinuxKernel.vala:1036 +#: src/Common/LinuxKernel.vala:1035 msgid "Continue ?" msgstr "Continuare ?" -#: src/Common/LinuxKernel.vala:1058 src/Console/AppConsole.vala:286 +#: src/Common/LinuxKernel.vala:1057 src/Console/AppConsole.vala:285 msgid "Latest update" msgstr "Ultimo aggiornamento" -#: src/Common/LinuxKernel.vala:1069 src/Console/AppConsole.vala:293 +#: src/Common/LinuxKernel.vala:1068 src/Console/AppConsole.vala:292 msgid "Latest point update" msgstr "Ultimo aggiornamento del punto" -#: src/Common/LinuxKernel.vala:1077 src/Console/AppConsole.vala:298 -#: src/Console/AppConsole.vala:353 +#: src/Common/LinuxKernel.vala:1076 src/Console/AppConsole.vala:297 +#: src/Console/AppConsole.vala:352 msgid "No updates found" msgstr "Nessun aggiornamento trovato" -#: src/Common/LinuxKernel.vala:1086 +#: src/Common/LinuxKernel.vala:1085 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Installare la versione del kernel %s ? (y/n): " -#: src/Common/Main.vala:271 +#: src/Common/Main.vala:275 msgid "Called from" msgstr "Chiamata da" -#: src/Common/Main.vala:307 +#: src/Common/Main.vala:276 +msgid "" +"This file is over-written and executed again whenever settings are saved in" +msgstr "" + +#: src/Common/Main.vala:308 msgid "Notifications are disabled" msgstr "Le notifiche sono disabilitate" @@ -142,336 +147,336 @@ msgstr "Le notifiche sono disabilitate" msgid "File not found: %s" msgstr "File non trovato" -#: src/Console/AppConsole.vala:49 src/Gtk/AppGtk.vala:137 +#: src/Console/AppConsole.vala:48 src/Gtk/AppGtk.vala:136 msgid "Syntax" msgstr "Sintassi" -#: src/Console/AppConsole.vala:51 +#: src/Console/AppConsole.vala:50 msgid "Commands" msgstr "Comandi" -#: src/Console/AppConsole.vala:53 +#: src/Console/AppConsole.vala:52 msgid "Check for kernel updates" msgstr "Verifica aggiornamenti per il kernel" -#: src/Console/AppConsole.vala:54 +#: src/Console/AppConsole.vala:53 msgid "Check for kernel updates and notify current user" msgstr "" "Verifica la disponibilità di aggiornamenti del kerneled avvisa l'utente " "corrente" -#: src/Console/AppConsole.vala:55 +#: src/Console/AppConsole.vala:54 msgid "List all available mainline kernels" msgstr "Elenca tutti i kernel mainline disponibili" -#: src/Console/AppConsole.vala:56 +#: src/Console/AppConsole.vala:55 msgid "List installed kernels" msgstr "Elenca i kernel installati" -#: src/Console/AppConsole.vala:57 +#: src/Console/AppConsole.vala:56 msgid "Install latest mainline kernel" msgstr "Installa ultimo kernel mainline" -#: src/Console/AppConsole.vala:58 +#: src/Console/AppConsole.vala:57 msgid "Install latest point update for current series" msgstr "installa l'ultimo rilascio parziale per le serie attuali" -#: src/Console/AppConsole.vala:59 +#: src/Console/AppConsole.vala:58 msgid "Install specified mainline kernel" msgstr "Installa kernel mainline specificato" -#: src/Console/AppConsole.vala:60 +#: src/Console/AppConsole.vala:59 msgid "Uninstall specified kernel" msgstr "Disinstalla i kernel specificati" -#: src/Console/AppConsole.vala:61 +#: src/Console/AppConsole.vala:60 #, fuzzy msgid "Uninstall kernels older than the latest installed" msgstr "Rimuovere i kernel installati più vecchi del kernel in esecuzione" -#: src/Console/AppConsole.vala:62 +#: src/Console/AppConsole.vala:61 msgid "Download specified kernels" msgstr "Scarica i kernel specificati" -#: src/Console/AppConsole.vala:63 +#: src/Console/AppConsole.vala:62 msgid "Delete cached info about available kernels" msgstr "" -#: src/Console/AppConsole.vala:65 src/Gtk/AppGtk.vala:139 +#: src/Console/AppConsole.vala:64 src/Gtk/AppGtk.vala:138 msgid "Options" msgstr "Opzioni" -#: src/Console/AppConsole.vala:67 +#: src/Console/AppConsole.vala:66 msgid "Include unstable and RC releases" msgstr "Includi versioni instabili e RC" -#: src/Console/AppConsole.vala:68 +#: src/Console/AppConsole.vala:67 #, fuzzy msgid "Exclude unstable and RC releases" msgstr "Includi versioni instabili e RC" -#: src/Console/AppConsole.vala:69 +#: src/Console/AppConsole.vala:68 msgid "Enable verbose debugging output" msgstr "Abilita l'output di debug dettagliato" -#: src/Console/AppConsole.vala:70 +#: src/Console/AppConsole.vala:69 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "Imposta Sì per tutte le richieste (modalità non interattiva)" -#: src/Console/AppConsole.vala:73 +#: src/Console/AppConsole.vala:72 msgid "A version string taken from the output of --list" msgstr "Una stringa di versione presa dall'output di --list" -#: src/Console/AppConsole.vala:74 +#: src/Console/AppConsole.vala:73 msgid "One or more, comma-seperated" msgstr "" -#: src/Console/AppConsole.vala:75 +#: src/Console/AppConsole.vala:74 #, fuzzy msgid "The currently running kernel will always be ignored" msgstr "I seguenti kernel verranno rimossi:" -#: src/Console/AppConsole.vala:153 src/Gtk/AppGtk.vala:123 +#: src/Console/AppConsole.vala:152 src/Gtk/AppGtk.vala:122 msgid "Unknown option" msgstr "Opzione sconosciuta" -#: src/Console/AppConsole.vala:154 src/Console/AppConsole.vala:244 -#: src/Console/AppConsole.vala:272 +#: src/Console/AppConsole.vala:153 src/Console/AppConsole.vala:243 +#: src/Console/AppConsole.vala:271 msgid "Run" msgstr "In corso" -#: src/Console/AppConsole.vala:154 +#: src/Console/AppConsole.vala:153 msgid "to list all options" msgstr "Elencare tutte le opzioni" -#: src/Console/AppConsole.vala:212 src/Console/AppConsole.vala:252 +#: src/Console/AppConsole.vala:211 src/Console/AppConsole.vala:251 msgid "No kernels specified" msgstr "Nessun kernel specificato" -#: src/Console/AppConsole.vala:218 +#: src/Console/AppConsole.vala:217 msgid "Multiple kernels selected for installation. Select only one." msgstr "Più kernel selezionati per l'installazione. Selezionare uno solo." -#: src/Console/AppConsole.vala:241 +#: src/Console/AppConsole.vala:240 msgid "Could not find requested version" msgstr "Impossibile trovare la versione richiesta" -#: src/Console/AppConsole.vala:244 +#: src/Console/AppConsole.vala:243 msgid "and use a version string listed in first column" msgstr "e usa una stringa di versione elencata nella prima colonna" -#: src/Console/AppConsole.vala:271 +#: src/Console/AppConsole.vala:270 msgid "Command not specified" msgstr "Comando non specificato" -#: src/Console/AppConsole.vala:272 +#: src/Console/AppConsole.vala:271 msgid "to list all commands" msgstr "Elencare tutti i comandi" -#: src/Console/AppConsole.vala:326 src/Gtk/SettingsDialog.vala:166 +#: src/Console/AppConsole.vala:325 src/Gtk/SettingsDialog.vala:165 msgid "Show" msgstr "Mostra" -#: src/Console/AppConsole.vala:331 src/Console/AppConsole.vala:343 +#: src/Console/AppConsole.vala:330 src/Console/AppConsole.vala:342 #, c-format msgid "Kernel %s Available" msgstr "Kernel %s Disponibile" -#: src/Console/AppConsole.vala:333 src/Console/AppConsole.vala:345 -#: src/Gtk/MainWindow.vala:267 +#: src/Console/AppConsole.vala:332 src/Console/AppConsole.vala:344 +#: src/Gtk/MainWindow.vala:266 msgid "Install" msgstr "Installa" -#: src/Gtk/AboutWindow.vala:264 src/Gtk/AboutWindow.vala:281 +#: src/Gtk/AboutWindow.vala:162 src/Gtk/AboutWindow.vala:179 msgid "Credits" msgstr "Crediti" -#: src/Gtk/AboutWindow.vala:277 +#: src/Gtk/AboutWindow.vala:175 msgid "Back" msgstr "Indietro" -#: src/Gtk/AboutWindow.vala:287 src/Gtk/TerminalWindow.vala:163 +#: src/Gtk/AboutWindow.vala:185 src/Gtk/TerminalWindow.vala:162 msgid "Close" msgstr "Chiudi" -#: src/Gtk/AboutWindow.vala:306 +#: src/Gtk/AboutWindow.vala:204 msgid "Authors" msgstr "Autori" -#: src/Gtk/AboutWindow.vala:314 +#: src/Gtk/AboutWindow.vala:212 msgid "Contributions" msgstr "Contributori" -#: src/Gtk/AboutWindow.vala:322 +#: src/Gtk/AboutWindow.vala:220 msgid "Artists" msgstr "Artisti" -#: src/Gtk/AboutWindow.vala:330 +#: src/Gtk/AboutWindow.vala:228 msgid "Translators" msgstr "Albano Battistella, Demetrio Mendozzi" -#: src/Gtk/AboutWindow.vala:338 +#: src/Gtk/AboutWindow.vala:236 msgid "Documenters" msgstr "Documentatori" -#: src/Gtk/AboutWindow.vala:346 +#: src/Gtk/AboutWindow.vala:244 msgid "Third Party Inclusions" msgstr "Inclusioni di terze parti" -#: src/Gtk/AppGtk.vala:137 +#: src/Gtk/AppGtk.vala:136 #, fuzzy msgid "options" msgstr "Opzioni" -#: src/Gtk/AppGtk.vala:141 +#: src/Gtk/AppGtk.vala:140 msgid "Print debug information" msgstr "Stampa le informazioni di debug" -#: src/Gtk/AppGtk.vala:142 +#: src/Gtk/AppGtk.vala:141 msgid "Show all options" msgstr "Mostra tutte le opzioni" -#: src/Gtk/MainWindow.vala:113 +#: src/Gtk/MainWindow.vala:112 msgid "Kernel" msgstr "Kernel" -#: src/Gtk/MainWindow.vala:143 +#: src/Gtk/MainWindow.vala:142 msgid "Status" msgstr "Stato" -#: src/Gtk/MainWindow.vala:277 +#: src/Gtk/MainWindow.vala:276 msgid "Uninstall" msgstr "Disinstalla" -#: src/Gtk/MainWindow.vala:287 +#: src/Gtk/MainWindow.vala:286 msgid "Changes" msgstr "Modifiche" -#: src/Gtk/MainWindow.vala:309 +#: src/Gtk/MainWindow.vala:308 msgid "Uninstall Old" msgstr "Disinstalla i vecchi" -#: src/Gtk/MainWindow.vala:310 +#: src/Gtk/MainWindow.vala:309 msgid "Uninstall kernels older than running kernel" msgstr "Rimuovere i kernel installati più vecchi del kernel in esecuzione" -#: src/Gtk/MainWindow.vala:315 +#: src/Gtk/MainWindow.vala:314 msgid "Reload" msgstr "" -#: src/Gtk/MainWindow.vala:320 src/Gtk/SettingsDialog.vala:50 +#: src/Gtk/MainWindow.vala:319 src/Gtk/SettingsDialog.vala:49 msgid "Settings" msgstr "Impostazioni" -#: src/Gtk/MainWindow.vala:325 +#: src/Gtk/MainWindow.vala:324 msgid "About" msgstr "Informazioni" -#: src/Gtk/MainWindow.vala:330 +#: src/Gtk/MainWindow.vala:329 msgid "Exit" msgstr "" -#: src/Gtk/MainWindow.vala:398 +#: src/Gtk/MainWindow.vala:397 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Utilità di aggiornamento del kernel per distribuzioni basate su Ubuntu" -#: src/Gtk/MainWindow.vala:399 +#: src/Gtk/MainWindow.vala:398 msgid "Forked" msgstr "Forked" -#: src/Gtk/MainWindow.vala:399 +#: src/Gtk/MainWindow.vala:398 msgid "Original" msgstr "Originale" -#: src/Gtk/MainWindow.vala:437 +#: src/Gtk/MainWindow.vala:436 msgid "Updating kernels" msgstr "" -#: src/Gtk/MainWindow.vala:508 +#: src/Gtk/MainWindow.vala:507 msgid "available" msgstr "disponibile" -#: src/Gtk/MainWindow.vala:551 src/Gtk/MainWindow.vala:591 -#: src/Gtk/MainWindow.vala:625 +#: src/Gtk/MainWindow.vala:550 src/Gtk/MainWindow.vala:590 +#: src/Gtk/MainWindow.vala:624 msgid "DONE" msgstr "" -#: src/Gtk/ProgressWindow.vala:128 src/Gtk/TerminalWindow.vala:153 +#: src/Gtk/ProgressWindow.vala:127 src/Gtk/TerminalWindow.vala:152 msgid "Cancel" msgstr "Cancella" -#: src/Gtk/SettingsDialog.vala:60 +#: src/Gtk/SettingsDialog.vala:59 msgid "Notification" msgstr "Notifica" -#: src/Gtk/SettingsDialog.vala:67 +#: src/Gtk/SettingsDialog.vala:66 msgid "Notify if a major release is available" msgstr "Avvisa se è disponibile una versione principale" -#: src/Gtk/SettingsDialog.vala:76 +#: src/Gtk/SettingsDialog.vala:75 msgid "Notify if a point release is available" msgstr "Avvisa se è disponibile un rilascio parziale" -#: src/Gtk/SettingsDialog.vala:87 +#: src/Gtk/SettingsDialog.vala:86 #, fuzzy msgid "Seconds interval enabled for debugging" msgstr "(Consentire intervalli in secondi per --debug)" -#: src/Gtk/SettingsDialog.vala:110 +#: src/Gtk/SettingsDialog.vala:109 msgid "Check every" msgstr "Controlla ogni" -#: src/Gtk/SettingsDialog.vala:135 +#: src/Gtk/SettingsDialog.vala:134 msgid "Hour(s)" msgstr "Ora(e)" -#: src/Gtk/SettingsDialog.vala:137 +#: src/Gtk/SettingsDialog.vala:136 msgid "Day(s)" msgstr "Giorno(i)" -#: src/Gtk/SettingsDialog.vala:139 +#: src/Gtk/SettingsDialog.vala:138 msgid "Week(s)" msgstr "Settimana(e)" -#: src/Gtk/SettingsDialog.vala:142 +#: src/Gtk/SettingsDialog.vala:141 msgid "Second(s)" msgstr "Secondo(i)" -#: src/Gtk/SettingsDialog.vala:148 +#: src/Gtk/SettingsDialog.vala:147 msgid "Filters" msgstr "" -#: src/Gtk/SettingsDialog.vala:156 +#: src/Gtk/SettingsDialog.vala:155 msgid "Hide unstable and RC releases" msgstr "Nascondi versioni instabili e RC" -#: src/Gtk/SettingsDialog.vala:178 +#: src/Gtk/SettingsDialog.vala:177 #, fuzzy msgid "previous major versions" msgstr "Mostra N versioni principali precedenti" -#: src/Gtk/SettingsDialog.vala:182 +#: src/Gtk/SettingsDialog.vala:181 msgid "Network" msgstr "" -#: src/Gtk/SettingsDialog.vala:193 +#: src/Gtk/SettingsDialog.vala:192 #, fuzzy msgid "Internet connection timeout in" msgstr "Timeout connessione Internet in" -#: src/Gtk/SettingsDialog.vala:205 +#: src/Gtk/SettingsDialog.vala:204 msgid "seconds" msgstr "secondi" -#: src/Gtk/SettingsDialog.vala:212 +#: src/Gtk/SettingsDialog.vala:211 msgid "Max concurrent downloads" msgstr "Numero massimo di download simultanei" -#: src/Gtk/SettingsDialog.vala:226 +#: src/Gtk/SettingsDialog.vala:225 msgid "Proxy" msgstr "" -#: src/Gtk/l.gtk.vala:44 +#: src/Gtk/l.gtk.vala:43 msgid "Missing Icon" msgstr "Icona mancante" diff --git a/po/ko.po b/po/ko.po index 1603aa54..a770721c 100644 --- a/po/ko.po +++ b/po/ko.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline 1.0.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-14 10:07-0400\n" +"POT-Creation-Date: 2023-03-16 01:19-0400\n" "PO-Revision-Date: 2022-09-28 11:48+0900\n" "Last-Translator: Kevin Kim \n" "Language-Team: Korean\n" @@ -13,129 +13,134 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Poedit 3.0.1\n" -#: src/Common/LinuxKernel.vala:88 +#: src/Common/LinuxKernel.vala:87 msgid "Distribution" msgstr "배포판" -#: src/Common/LinuxKernel.vala:103 +#: src/Common/LinuxKernel.vala:102 msgid "Architecture" msgstr "아키텍처" -#: src/Common/LinuxKernel.vala:278 +#: src/Common/LinuxKernel.vala:277 #, fuzzy msgid "Fetching individual kernel indexes" msgstr "목록 가져오기..." -#: src/Common/LinuxKernel.vala:327 +#: src/Common/LinuxKernel.vala:326 msgid "Updating from" msgstr "" -#: src/Common/LinuxKernel.vala:344 src/Common/LinuxKernel.vala:897 +#: src/Common/LinuxKernel.vala:343 src/Common/LinuxKernel.vala:896 msgid "OK" msgstr "확인" -#: src/Common/LinuxKernel.vala:347 src/Common/LinuxKernel.vala:900 +#: src/Common/LinuxKernel.vala:346 src/Common/LinuxKernel.vala:899 msgid "FAILED" msgstr "" -#: src/Common/LinuxKernel.vala:761 +#: src/Common/LinuxKernel.vala:760 msgid "Packages Available" msgstr "설치 가능한 패키지" -#: src/Common/LinuxKernel.vala:766 +#: src/Common/LinuxKernel.vala:765 msgid "Packages Installed" msgstr "설치된 패키지" -#: src/Common/LinuxKernel.vala:779 src/lib/TeeJee.FileSystem.vala:121 +#: src/Common/LinuxKernel.vala:778 src/lib/TeeJee.FileSystem.vala:121 msgid "File not found" msgstr "파일을 찾을 수 없습니다" -#: src/Common/LinuxKernel.vala:843 +#: src/Common/LinuxKernel.vala:842 msgid "Available Kernels" msgstr "설치 가능한 커널" -#: src/Common/LinuxKernel.vala:850 src/Gtk/MainWindow.vala:156 +#: src/Common/LinuxKernel.vala:849 src/Gtk/MainWindow.vala:155 msgid "Installed" msgstr "설치 됨" -#: src/Common/LinuxKernel.vala:850 src/Gtk/MainWindow.vala:156 -#: src/Gtk/MainWindow.vala:499 src/Gtk/MainWindow.vala:512 +#: src/Common/LinuxKernel.vala:849 src/Gtk/MainWindow.vala:155 +#: src/Gtk/MainWindow.vala:498 src/Gtk/MainWindow.vala:511 msgid "Running" msgstr "구동 중" -#: src/Common/LinuxKernel.vala:885 +#: src/Common/LinuxKernel.vala:884 msgid "Downloading" msgstr "다운로드 중" -#: src/Common/LinuxKernel.vala:913 +#: src/Common/LinuxKernel.vala:912 #, fuzzy msgid "is already installed." msgstr "이 커널은 이미 설치되었습니다." -#: src/Common/LinuxKernel.vala:943 +#: src/Common/LinuxKernel.vala:942 #, fuzzy msgid "Uninstalling selected kernels" msgstr "지정한 커널 삭제" -#: src/Common/LinuxKernel.vala:949 +#: src/Common/LinuxKernel.vala:948 msgid "requested" msgstr "" -#: src/Common/LinuxKernel.vala:952 +#: src/Common/LinuxKernel.vala:951 #, fuzzy msgid "not uninstalling the currently running kernel" msgstr "지정한 커널 삭제" -#: src/Common/LinuxKernel.vala:968 +#: src/Common/LinuxKernel.vala:967 msgid "found" msgstr "" -#: src/Common/LinuxKernel.vala:971 +#: src/Common/LinuxKernel.vala:970 #, fuzzy msgid "No packages to un-install!" msgstr "설치된 패키지" -#: src/Common/LinuxKernel.vala:1019 +#: src/Common/LinuxKernel.vala:1018 #, fuzzy msgid "Could not find running kernel in list" msgstr "목록에서 사용중인 커널을 찾을 수 없습니다!" -#: src/Common/LinuxKernel.vala:1024 +#: src/Common/LinuxKernel.vala:1023 msgid "Could not find any kernels to uninstall" msgstr "삭제할 커널을 찾을 수 없습니다" -#: src/Common/LinuxKernel.vala:1032 +#: src/Common/LinuxKernel.vala:1031 #, fuzzy msgid "The following kernels will be uninstalled" msgstr "아래 커널이 삭제됩니다:" -#: src/Common/LinuxKernel.vala:1036 +#: src/Common/LinuxKernel.vala:1035 msgid "Continue ?" msgstr "계속하시겠습니까?" -#: src/Common/LinuxKernel.vala:1058 src/Console/AppConsole.vala:286 +#: src/Common/LinuxKernel.vala:1057 src/Console/AppConsole.vala:285 msgid "Latest update" msgstr "최신 업데이트" -#: src/Common/LinuxKernel.vala:1069 src/Console/AppConsole.vala:293 +#: src/Common/LinuxKernel.vala:1068 src/Console/AppConsole.vala:292 msgid "Latest point update" msgstr "최신 포인트 업데이트" -#: src/Common/LinuxKernel.vala:1077 src/Console/AppConsole.vala:298 -#: src/Console/AppConsole.vala:353 +#: src/Common/LinuxKernel.vala:1076 src/Console/AppConsole.vala:297 +#: src/Console/AppConsole.vala:352 msgid "No updates found" msgstr "업데이트를 찾을 수 없습니다" -#: src/Common/LinuxKernel.vala:1086 +#: src/Common/LinuxKernel.vala:1085 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "커널 %s 버전을 설치하시겠습니까? (y/n): " -#: src/Common/Main.vala:271 +#: src/Common/Main.vala:275 msgid "Called from" msgstr "에서 호출" -#: src/Common/Main.vala:307 +#: src/Common/Main.vala:276 +msgid "" +"This file is over-written and executed again whenever settings are saved in" +msgstr "" + +#: src/Common/Main.vala:308 msgid "Notifications are disabled" msgstr "알림이 비활성화 되었습니다" @@ -144,334 +149,334 @@ msgstr "알림이 비활성화 되었습니다" msgid "File not found: %s" msgstr "파일을 찾을 수 없습니다" -#: src/Console/AppConsole.vala:49 src/Gtk/AppGtk.vala:137 +#: src/Console/AppConsole.vala:48 src/Gtk/AppGtk.vala:136 msgid "Syntax" msgstr "문법" -#: src/Console/AppConsole.vala:51 +#: src/Console/AppConsole.vala:50 msgid "Commands" msgstr "명령어" -#: src/Console/AppConsole.vala:53 +#: src/Console/AppConsole.vala:52 msgid "Check for kernel updates" msgstr "커널 업데이트 확인" -#: src/Console/AppConsole.vala:54 +#: src/Console/AppConsole.vala:53 msgid "Check for kernel updates and notify current user" msgstr "커널 업데이트를 확인하고 현재 사용자에게 알림" -#: src/Console/AppConsole.vala:55 +#: src/Console/AppConsole.vala:54 msgid "List all available mainline kernels" msgstr "사용 가능한 모든 메인라인 커널 보기" -#: src/Console/AppConsole.vala:56 +#: src/Console/AppConsole.vala:55 msgid "List installed kernels" msgstr "설치된 커널 보기" -#: src/Console/AppConsole.vala:57 +#: src/Console/AppConsole.vala:56 msgid "Install latest mainline kernel" msgstr "최신 메인라인 커널 설치" -#: src/Console/AppConsole.vala:58 +#: src/Console/AppConsole.vala:57 msgid "Install latest point update for current series" msgstr "현재 사용중인 배포판을 위한 최신 포인트 업데이트 설치" -#: src/Console/AppConsole.vala:59 +#: src/Console/AppConsole.vala:58 msgid "Install specified mainline kernel" msgstr "지정한 메인라인 커널 설치" -#: src/Console/AppConsole.vala:60 +#: src/Console/AppConsole.vala:59 msgid "Uninstall specified kernel" msgstr "지정한 커널 삭제" -#: src/Console/AppConsole.vala:61 +#: src/Console/AppConsole.vala:60 #, fuzzy msgid "Uninstall kernels older than the latest installed" msgstr "현재 사용중인 커널보다 이전 버전의 설치된 커널을 제거" -#: src/Console/AppConsole.vala:62 +#: src/Console/AppConsole.vala:61 msgid "Download specified kernels" msgstr "지정한 커널 다운로드" -#: src/Console/AppConsole.vala:63 +#: src/Console/AppConsole.vala:62 msgid "Delete cached info about available kernels" msgstr "" -#: src/Console/AppConsole.vala:65 src/Gtk/AppGtk.vala:139 +#: src/Console/AppConsole.vala:64 src/Gtk/AppGtk.vala:138 msgid "Options" msgstr "옵션" -#: src/Console/AppConsole.vala:67 +#: src/Console/AppConsole.vala:66 msgid "Include unstable and RC releases" msgstr "목록에서 unstable, RC 버전 포함" -#: src/Console/AppConsole.vala:68 +#: src/Console/AppConsole.vala:67 #, fuzzy msgid "Exclude unstable and RC releases" msgstr "목록에서 unstable, RC 버전 포함" -#: src/Console/AppConsole.vala:69 +#: src/Console/AppConsole.vala:68 msgid "Enable verbose debugging output" msgstr "디버깅을 위한 진행 과정 보이기 활성화" -#: src/Console/AppConsole.vala:70 +#: src/Console/AppConsole.vala:69 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "모든 물음에 자동으로 \"예\"라고 가정 (비 대화형 모드)" -#: src/Console/AppConsole.vala:73 +#: src/Console/AppConsole.vala:72 msgid "A version string taken from the output of --list" msgstr "--list 의 출력에서 가져온 버전 문자열" -#: src/Console/AppConsole.vala:74 +#: src/Console/AppConsole.vala:73 msgid "One or more, comma-seperated" msgstr "" -#: src/Console/AppConsole.vala:75 +#: src/Console/AppConsole.vala:74 #, fuzzy msgid "The currently running kernel will always be ignored" msgstr "아래 커널이 삭제됩니다:" -#: src/Console/AppConsole.vala:153 src/Gtk/AppGtk.vala:123 +#: src/Console/AppConsole.vala:152 src/Gtk/AppGtk.vala:122 msgid "Unknown option" msgstr "알 수 없는 옵션" -#: src/Console/AppConsole.vala:154 src/Console/AppConsole.vala:244 -#: src/Console/AppConsole.vala:272 +#: src/Console/AppConsole.vala:153 src/Console/AppConsole.vala:243 +#: src/Console/AppConsole.vala:271 msgid "Run" msgstr "실행" -#: src/Console/AppConsole.vala:154 +#: src/Console/AppConsole.vala:153 msgid "to list all options" msgstr "모든 옵션을 나열" -#: src/Console/AppConsole.vala:212 src/Console/AppConsole.vala:252 +#: src/Console/AppConsole.vala:211 src/Console/AppConsole.vala:251 msgid "No kernels specified" msgstr "지정한 커널이 없습니다" -#: src/Console/AppConsole.vala:218 +#: src/Console/AppConsole.vala:217 msgid "Multiple kernels selected for installation. Select only one." msgstr "설치할 커널이 여러개 선택되었습니다. 하나의 커널만 선택하세요." -#: src/Console/AppConsole.vala:241 +#: src/Console/AppConsole.vala:240 msgid "Could not find requested version" msgstr "요청한 버전을 찾을 수 없습니다" -#: src/Console/AppConsole.vala:244 +#: src/Console/AppConsole.vala:243 msgid "and use a version string listed in first column" msgstr "첫 번째 열에 나열된 버전 문자열을 사용" -#: src/Console/AppConsole.vala:271 +#: src/Console/AppConsole.vala:270 msgid "Command not specified" msgstr "지정한 명령어가 없습니다" -#: src/Console/AppConsole.vala:272 +#: src/Console/AppConsole.vala:271 msgid "to list all commands" msgstr "모든 명령어 나열" -#: src/Console/AppConsole.vala:326 src/Gtk/SettingsDialog.vala:166 +#: src/Console/AppConsole.vala:325 src/Gtk/SettingsDialog.vala:165 msgid "Show" msgstr "보이기" -#: src/Console/AppConsole.vala:331 src/Console/AppConsole.vala:343 +#: src/Console/AppConsole.vala:330 src/Console/AppConsole.vala:342 #, c-format msgid "Kernel %s Available" msgstr "커널 %s 사용 가능" -#: src/Console/AppConsole.vala:333 src/Console/AppConsole.vala:345 -#: src/Gtk/MainWindow.vala:267 +#: src/Console/AppConsole.vala:332 src/Console/AppConsole.vala:344 +#: src/Gtk/MainWindow.vala:266 msgid "Install" msgstr "설치" -#: src/Gtk/AboutWindow.vala:264 src/Gtk/AboutWindow.vala:281 +#: src/Gtk/AboutWindow.vala:162 src/Gtk/AboutWindow.vala:179 msgid "Credits" msgstr "제작자" -#: src/Gtk/AboutWindow.vala:277 +#: src/Gtk/AboutWindow.vala:175 msgid "Back" msgstr "뒤로" -#: src/Gtk/AboutWindow.vala:287 src/Gtk/TerminalWindow.vala:163 +#: src/Gtk/AboutWindow.vala:185 src/Gtk/TerminalWindow.vala:162 msgid "Close" msgstr "닫기" -#: src/Gtk/AboutWindow.vala:306 +#: src/Gtk/AboutWindow.vala:204 msgid "Authors" msgstr "개발자" -#: src/Gtk/AboutWindow.vala:314 +#: src/Gtk/AboutWindow.vala:212 msgid "Contributions" msgstr "기여자" -#: src/Gtk/AboutWindow.vala:322 +#: src/Gtk/AboutWindow.vala:220 msgid "Artists" msgstr "아티스트" -#: src/Gtk/AboutWindow.vala:330 +#: src/Gtk/AboutWindow.vala:228 msgid "Translators" msgstr "번역자" -#: src/Gtk/AboutWindow.vala:338 +#: src/Gtk/AboutWindow.vala:236 msgid "Documenters" msgstr "문서작성" -#: src/Gtk/AboutWindow.vala:346 +#: src/Gtk/AboutWindow.vala:244 msgid "Third Party Inclusions" msgstr "서드파티 포함" -#: src/Gtk/AppGtk.vala:137 +#: src/Gtk/AppGtk.vala:136 #, fuzzy msgid "options" msgstr "옵션" -#: src/Gtk/AppGtk.vala:141 +#: src/Gtk/AppGtk.vala:140 msgid "Print debug information" msgstr "디버그 정보 출력" -#: src/Gtk/AppGtk.vala:142 +#: src/Gtk/AppGtk.vala:141 msgid "Show all options" msgstr "모든 옵션 보기" -#: src/Gtk/MainWindow.vala:113 +#: src/Gtk/MainWindow.vala:112 msgid "Kernel" msgstr "커널" -#: src/Gtk/MainWindow.vala:143 +#: src/Gtk/MainWindow.vala:142 msgid "Status" msgstr "상태" -#: src/Gtk/MainWindow.vala:277 +#: src/Gtk/MainWindow.vala:276 msgid "Uninstall" msgstr "삭제" -#: src/Gtk/MainWindow.vala:287 +#: src/Gtk/MainWindow.vala:286 msgid "Changes" msgstr "변경사항" -#: src/Gtk/MainWindow.vala:309 +#: src/Gtk/MainWindow.vala:308 msgid "Uninstall Old" msgstr "오래된 커널 제거" -#: src/Gtk/MainWindow.vala:310 +#: src/Gtk/MainWindow.vala:309 msgid "Uninstall kernels older than running kernel" msgstr "현재 사용 중인 커널보다 이전 버전의 커널을 제거" -#: src/Gtk/MainWindow.vala:315 +#: src/Gtk/MainWindow.vala:314 msgid "Reload" msgstr "" -#: src/Gtk/MainWindow.vala:320 src/Gtk/SettingsDialog.vala:50 +#: src/Gtk/MainWindow.vala:319 src/Gtk/SettingsDialog.vala:49 msgid "Settings" msgstr "설정" -#: src/Gtk/MainWindow.vala:325 +#: src/Gtk/MainWindow.vala:324 msgid "About" msgstr "정보" -#: src/Gtk/MainWindow.vala:330 +#: src/Gtk/MainWindow.vala:329 msgid "Exit" msgstr "" -#: src/Gtk/MainWindow.vala:398 +#: src/Gtk/MainWindow.vala:397 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "우분투 기반 배포판의 커널 업그레이드 도구" -#: src/Gtk/MainWindow.vala:399 +#: src/Gtk/MainWindow.vala:398 msgid "Forked" msgstr "" -#: src/Gtk/MainWindow.vala:399 +#: src/Gtk/MainWindow.vala:398 msgid "Original" msgstr "" -#: src/Gtk/MainWindow.vala:437 +#: src/Gtk/MainWindow.vala:436 msgid "Updating kernels" msgstr "" -#: src/Gtk/MainWindow.vala:508 +#: src/Gtk/MainWindow.vala:507 msgid "available" msgstr "사용가능" -#: src/Gtk/MainWindow.vala:551 src/Gtk/MainWindow.vala:591 -#: src/Gtk/MainWindow.vala:625 +#: src/Gtk/MainWindow.vala:550 src/Gtk/MainWindow.vala:590 +#: src/Gtk/MainWindow.vala:624 msgid "DONE" msgstr "" -#: src/Gtk/ProgressWindow.vala:128 src/Gtk/TerminalWindow.vala:153 +#: src/Gtk/ProgressWindow.vala:127 src/Gtk/TerminalWindow.vala:152 msgid "Cancel" msgstr "취소" -#: src/Gtk/SettingsDialog.vala:60 +#: src/Gtk/SettingsDialog.vala:59 msgid "Notification" msgstr "알림" -#: src/Gtk/SettingsDialog.vala:67 +#: src/Gtk/SettingsDialog.vala:66 msgid "Notify if a major release is available" msgstr "메이저 릴리즈가 있으면 알림" -#: src/Gtk/SettingsDialog.vala:76 +#: src/Gtk/SettingsDialog.vala:75 msgid "Notify if a point release is available" msgstr "포인트 릴리즈가 있으면 알림" -#: src/Gtk/SettingsDialog.vala:87 +#: src/Gtk/SettingsDialog.vala:86 #, fuzzy msgid "Seconds interval enabled for debugging" msgstr "(--debug 를 위한 몇초간 지연 허용)" -#: src/Gtk/SettingsDialog.vala:110 +#: src/Gtk/SettingsDialog.vala:109 msgid "Check every" msgstr "확인 주기" -#: src/Gtk/SettingsDialog.vala:135 +#: src/Gtk/SettingsDialog.vala:134 msgid "Hour(s)" msgstr "시간" -#: src/Gtk/SettingsDialog.vala:137 +#: src/Gtk/SettingsDialog.vala:136 msgid "Day(s)" msgstr "일" -#: src/Gtk/SettingsDialog.vala:139 +#: src/Gtk/SettingsDialog.vala:138 msgid "Week(s)" msgstr "주" -#: src/Gtk/SettingsDialog.vala:142 +#: src/Gtk/SettingsDialog.vala:141 msgid "Second(s)" msgstr "초" -#: src/Gtk/SettingsDialog.vala:148 +#: src/Gtk/SettingsDialog.vala:147 msgid "Filters" msgstr "" -#: src/Gtk/SettingsDialog.vala:156 +#: src/Gtk/SettingsDialog.vala:155 msgid "Hide unstable and RC releases" msgstr "목록에서 unstable, RC 버전 포함" -#: src/Gtk/SettingsDialog.vala:178 +#: src/Gtk/SettingsDialog.vala:177 #, fuzzy msgid "previous major versions" msgstr "보여 질 이전 메이저 버전 수 " -#: src/Gtk/SettingsDialog.vala:182 +#: src/Gtk/SettingsDialog.vala:181 msgid "Network" msgstr "" -#: src/Gtk/SettingsDialog.vala:193 +#: src/Gtk/SettingsDialog.vala:192 #, fuzzy msgid "Internet connection timeout in" msgstr "인터넷 연결 타임아웃 시간 " -#: src/Gtk/SettingsDialog.vala:205 +#: src/Gtk/SettingsDialog.vala:204 msgid "seconds" msgstr "초" -#: src/Gtk/SettingsDialog.vala:212 +#: src/Gtk/SettingsDialog.vala:211 msgid "Max concurrent downloads" msgstr "동시 다운로드 최대 수" -#: src/Gtk/SettingsDialog.vala:226 +#: src/Gtk/SettingsDialog.vala:225 msgid "Proxy" msgstr "" -#: src/Gtk/l.gtk.vala:44 +#: src/Gtk/l.gtk.vala:43 msgid "Missing Icon" msgstr "아이콘을 찾을 수 없습니다" diff --git a/po/messages.pot b/po/messages.pot index 7efb28ff..8fcaada9 100644 --- a/po/messages.pot +++ b/po/messages.pot @@ -6,9 +6,9 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: mainline 1.1.6\n" +"Project-Id-Version: mainline 1.1.7\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-14 10:28-0400\n" +"POT-Creation-Date: 2023-03-16 01:19-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,122 +17,127 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" -#: src/Common/LinuxKernel.vala:88 +#: src/Common/LinuxKernel.vala:87 msgid "Distribution" msgstr "" -#: src/Common/LinuxKernel.vala:103 +#: src/Common/LinuxKernel.vala:102 msgid "Architecture" msgstr "" -#: src/Common/LinuxKernel.vala:278 +#: src/Common/LinuxKernel.vala:277 msgid "Fetching individual kernel indexes" msgstr "" -#: src/Common/LinuxKernel.vala:327 +#: src/Common/LinuxKernel.vala:326 msgid "Updating from" msgstr "" -#: src/Common/LinuxKernel.vala:344 src/Common/LinuxKernel.vala:897 +#: src/Common/LinuxKernel.vala:343 src/Common/LinuxKernel.vala:896 msgid "OK" msgstr "" -#: src/Common/LinuxKernel.vala:347 src/Common/LinuxKernel.vala:900 +#: src/Common/LinuxKernel.vala:346 src/Common/LinuxKernel.vala:899 msgid "FAILED" msgstr "" -#: src/Common/LinuxKernel.vala:761 +#: src/Common/LinuxKernel.vala:760 msgid "Packages Available" msgstr "" -#: src/Common/LinuxKernel.vala:766 +#: src/Common/LinuxKernel.vala:765 msgid "Packages Installed" msgstr "" -#: src/Common/LinuxKernel.vala:779 src/lib/TeeJee.FileSystem.vala:121 +#: src/Common/LinuxKernel.vala:778 src/lib/TeeJee.FileSystem.vala:121 msgid "File not found" msgstr "" -#: src/Common/LinuxKernel.vala:843 +#: src/Common/LinuxKernel.vala:842 msgid "Available Kernels" msgstr "" -#: src/Common/LinuxKernel.vala:850 src/Gtk/MainWindow.vala:156 +#: src/Common/LinuxKernel.vala:849 src/Gtk/MainWindow.vala:155 msgid "Installed" msgstr "" -#: src/Common/LinuxKernel.vala:850 src/Gtk/MainWindow.vala:156 -#: src/Gtk/MainWindow.vala:499 src/Gtk/MainWindow.vala:512 +#: src/Common/LinuxKernel.vala:849 src/Gtk/MainWindow.vala:155 +#: src/Gtk/MainWindow.vala:498 src/Gtk/MainWindow.vala:511 msgid "Running" msgstr "" -#: src/Common/LinuxKernel.vala:885 +#: src/Common/LinuxKernel.vala:884 msgid "Downloading" msgstr "" -#: src/Common/LinuxKernel.vala:913 +#: src/Common/LinuxKernel.vala:912 msgid "is already installed." msgstr "" -#: src/Common/LinuxKernel.vala:943 +#: src/Common/LinuxKernel.vala:942 msgid "Uninstalling selected kernels" msgstr "" -#: src/Common/LinuxKernel.vala:949 +#: src/Common/LinuxKernel.vala:948 msgid "requested" msgstr "" -#: src/Common/LinuxKernel.vala:952 +#: src/Common/LinuxKernel.vala:951 msgid "not uninstalling the currently running kernel" msgstr "" -#: src/Common/LinuxKernel.vala:968 +#: src/Common/LinuxKernel.vala:967 msgid "found" msgstr "" -#: src/Common/LinuxKernel.vala:971 +#: src/Common/LinuxKernel.vala:970 msgid "No packages to un-install!" msgstr "" -#: src/Common/LinuxKernel.vala:1019 +#: src/Common/LinuxKernel.vala:1018 msgid "Could not find running kernel in list" msgstr "" -#: src/Common/LinuxKernel.vala:1024 +#: src/Common/LinuxKernel.vala:1023 msgid "Could not find any kernels to uninstall" msgstr "" -#: src/Common/LinuxKernel.vala:1032 +#: src/Common/LinuxKernel.vala:1031 msgid "The following kernels will be uninstalled" msgstr "" -#: src/Common/LinuxKernel.vala:1036 +#: src/Common/LinuxKernel.vala:1035 msgid "Continue ?" msgstr "" -#: src/Common/LinuxKernel.vala:1058 src/Console/AppConsole.vala:286 +#: src/Common/LinuxKernel.vala:1057 src/Console/AppConsole.vala:285 msgid "Latest update" msgstr "" -#: src/Common/LinuxKernel.vala:1069 src/Console/AppConsole.vala:293 +#: src/Common/LinuxKernel.vala:1068 src/Console/AppConsole.vala:292 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:1077 src/Console/AppConsole.vala:298 -#: src/Console/AppConsole.vala:353 +#: src/Common/LinuxKernel.vala:1076 src/Console/AppConsole.vala:297 +#: src/Console/AppConsole.vala:352 msgid "No updates found" msgstr "" -#: src/Common/LinuxKernel.vala:1086 +#: src/Common/LinuxKernel.vala:1085 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "" -#: src/Common/Main.vala:271 +#: src/Common/Main.vala:275 msgid "Called from" msgstr "" -#: src/Common/Main.vala:307 +#: src/Common/Main.vala:276 +msgid "" +"This file is over-written and executed again whenever settings are saved in" +msgstr "" + +#: src/Common/Main.vala:308 msgid "Notifications are disabled" msgstr "" @@ -141,327 +146,327 @@ msgstr "" msgid "File not found: %s" msgstr "" -#: src/Console/AppConsole.vala:49 src/Gtk/AppGtk.vala:137 +#: src/Console/AppConsole.vala:48 src/Gtk/AppGtk.vala:136 msgid "Syntax" msgstr "" -#: src/Console/AppConsole.vala:51 +#: src/Console/AppConsole.vala:50 msgid "Commands" msgstr "" -#: src/Console/AppConsole.vala:53 +#: src/Console/AppConsole.vala:52 msgid "Check for kernel updates" msgstr "" -#: src/Console/AppConsole.vala:54 +#: src/Console/AppConsole.vala:53 msgid "Check for kernel updates and notify current user" msgstr "" -#: src/Console/AppConsole.vala:55 +#: src/Console/AppConsole.vala:54 msgid "List all available mainline kernels" msgstr "" -#: src/Console/AppConsole.vala:56 +#: src/Console/AppConsole.vala:55 msgid "List installed kernels" msgstr "" -#: src/Console/AppConsole.vala:57 +#: src/Console/AppConsole.vala:56 msgid "Install latest mainline kernel" msgstr "" -#: src/Console/AppConsole.vala:58 +#: src/Console/AppConsole.vala:57 msgid "Install latest point update for current series" msgstr "" -#: src/Console/AppConsole.vala:59 +#: src/Console/AppConsole.vala:58 msgid "Install specified mainline kernel" msgstr "" -#: src/Console/AppConsole.vala:60 +#: src/Console/AppConsole.vala:59 msgid "Uninstall specified kernel" msgstr "" -#: src/Console/AppConsole.vala:61 +#: src/Console/AppConsole.vala:60 msgid "Uninstall kernels older than the latest installed" msgstr "" -#: src/Console/AppConsole.vala:62 +#: src/Console/AppConsole.vala:61 msgid "Download specified kernels" msgstr "" -#: src/Console/AppConsole.vala:63 +#: src/Console/AppConsole.vala:62 msgid "Delete cached info about available kernels" msgstr "" -#: src/Console/AppConsole.vala:65 src/Gtk/AppGtk.vala:139 +#: src/Console/AppConsole.vala:64 src/Gtk/AppGtk.vala:138 msgid "Options" msgstr "" -#: src/Console/AppConsole.vala:67 +#: src/Console/AppConsole.vala:66 msgid "Include unstable and RC releases" msgstr "" -#: src/Console/AppConsole.vala:68 +#: src/Console/AppConsole.vala:67 msgid "Exclude unstable and RC releases" msgstr "" -#: src/Console/AppConsole.vala:69 +#: src/Console/AppConsole.vala:68 msgid "Enable verbose debugging output" msgstr "" -#: src/Console/AppConsole.vala:70 +#: src/Console/AppConsole.vala:69 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "" -#: src/Console/AppConsole.vala:73 +#: src/Console/AppConsole.vala:72 msgid "A version string taken from the output of --list" msgstr "" -#: src/Console/AppConsole.vala:74 +#: src/Console/AppConsole.vala:73 msgid "One or more, comma-seperated" msgstr "" -#: src/Console/AppConsole.vala:75 +#: src/Console/AppConsole.vala:74 msgid "The currently running kernel will always be ignored" msgstr "" -#: src/Console/AppConsole.vala:153 src/Gtk/AppGtk.vala:123 +#: src/Console/AppConsole.vala:152 src/Gtk/AppGtk.vala:122 msgid "Unknown option" msgstr "" -#: src/Console/AppConsole.vala:154 src/Console/AppConsole.vala:244 -#: src/Console/AppConsole.vala:272 +#: src/Console/AppConsole.vala:153 src/Console/AppConsole.vala:243 +#: src/Console/AppConsole.vala:271 msgid "Run" msgstr "" -#: src/Console/AppConsole.vala:154 +#: src/Console/AppConsole.vala:153 msgid "to list all options" msgstr "" -#: src/Console/AppConsole.vala:212 src/Console/AppConsole.vala:252 +#: src/Console/AppConsole.vala:211 src/Console/AppConsole.vala:251 msgid "No kernels specified" msgstr "" -#: src/Console/AppConsole.vala:218 +#: src/Console/AppConsole.vala:217 msgid "Multiple kernels selected for installation. Select only one." msgstr "" -#: src/Console/AppConsole.vala:241 +#: src/Console/AppConsole.vala:240 msgid "Could not find requested version" msgstr "" -#: src/Console/AppConsole.vala:244 +#: src/Console/AppConsole.vala:243 msgid "and use a version string listed in first column" msgstr "" -#: src/Console/AppConsole.vala:271 +#: src/Console/AppConsole.vala:270 msgid "Command not specified" msgstr "" -#: src/Console/AppConsole.vala:272 +#: src/Console/AppConsole.vala:271 msgid "to list all commands" msgstr "" -#: src/Console/AppConsole.vala:326 src/Gtk/SettingsDialog.vala:166 +#: src/Console/AppConsole.vala:325 src/Gtk/SettingsDialog.vala:165 msgid "Show" msgstr "" -#: src/Console/AppConsole.vala:331 src/Console/AppConsole.vala:343 +#: src/Console/AppConsole.vala:330 src/Console/AppConsole.vala:342 #, c-format msgid "Kernel %s Available" msgstr "" -#: src/Console/AppConsole.vala:333 src/Console/AppConsole.vala:345 -#: src/Gtk/MainWindow.vala:267 +#: src/Console/AppConsole.vala:332 src/Console/AppConsole.vala:344 +#: src/Gtk/MainWindow.vala:266 msgid "Install" msgstr "" -#: src/Gtk/AboutWindow.vala:264 src/Gtk/AboutWindow.vala:281 +#: src/Gtk/AboutWindow.vala:162 src/Gtk/AboutWindow.vala:179 msgid "Credits" msgstr "" -#: src/Gtk/AboutWindow.vala:277 +#: src/Gtk/AboutWindow.vala:175 msgid "Back" msgstr "" -#: src/Gtk/AboutWindow.vala:287 src/Gtk/TerminalWindow.vala:163 +#: src/Gtk/AboutWindow.vala:185 src/Gtk/TerminalWindow.vala:162 msgid "Close" msgstr "" -#: src/Gtk/AboutWindow.vala:306 +#: src/Gtk/AboutWindow.vala:204 msgid "Authors" msgstr "" -#: src/Gtk/AboutWindow.vala:314 +#: src/Gtk/AboutWindow.vala:212 msgid "Contributions" msgstr "" -#: src/Gtk/AboutWindow.vala:322 +#: src/Gtk/AboutWindow.vala:220 msgid "Artists" msgstr "" -#: src/Gtk/AboutWindow.vala:330 +#: src/Gtk/AboutWindow.vala:228 msgid "Translators" msgstr "" -#: src/Gtk/AboutWindow.vala:338 +#: src/Gtk/AboutWindow.vala:236 msgid "Documenters" msgstr "" -#: src/Gtk/AboutWindow.vala:346 +#: src/Gtk/AboutWindow.vala:244 msgid "Third Party Inclusions" msgstr "" -#: src/Gtk/AppGtk.vala:137 +#: src/Gtk/AppGtk.vala:136 msgid "options" msgstr "" -#: src/Gtk/AppGtk.vala:141 +#: src/Gtk/AppGtk.vala:140 msgid "Print debug information" msgstr "" -#: src/Gtk/AppGtk.vala:142 +#: src/Gtk/AppGtk.vala:141 msgid "Show all options" msgstr "" -#: src/Gtk/MainWindow.vala:113 +#: src/Gtk/MainWindow.vala:112 msgid "Kernel" msgstr "" -#: src/Gtk/MainWindow.vala:143 +#: src/Gtk/MainWindow.vala:142 msgid "Status" msgstr "" -#: src/Gtk/MainWindow.vala:277 +#: src/Gtk/MainWindow.vala:276 msgid "Uninstall" msgstr "" -#: src/Gtk/MainWindow.vala:287 +#: src/Gtk/MainWindow.vala:286 msgid "Changes" msgstr "" -#: src/Gtk/MainWindow.vala:309 +#: src/Gtk/MainWindow.vala:308 msgid "Uninstall Old" msgstr "" -#: src/Gtk/MainWindow.vala:310 +#: src/Gtk/MainWindow.vala:309 msgid "Uninstall kernels older than running kernel" msgstr "" -#: src/Gtk/MainWindow.vala:315 +#: src/Gtk/MainWindow.vala:314 msgid "Reload" msgstr "" -#: src/Gtk/MainWindow.vala:320 src/Gtk/SettingsDialog.vala:50 +#: src/Gtk/MainWindow.vala:319 src/Gtk/SettingsDialog.vala:49 msgid "Settings" msgstr "" -#: src/Gtk/MainWindow.vala:325 +#: src/Gtk/MainWindow.vala:324 msgid "About" msgstr "" -#: src/Gtk/MainWindow.vala:330 +#: src/Gtk/MainWindow.vala:329 msgid "Exit" msgstr "" -#: src/Gtk/MainWindow.vala:398 +#: src/Gtk/MainWindow.vala:397 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "" -#: src/Gtk/MainWindow.vala:399 +#: src/Gtk/MainWindow.vala:398 msgid "Forked" msgstr "" -#: src/Gtk/MainWindow.vala:399 +#: src/Gtk/MainWindow.vala:398 msgid "Original" msgstr "" -#: src/Gtk/MainWindow.vala:437 +#: src/Gtk/MainWindow.vala:436 msgid "Updating kernels" msgstr "" -#: src/Gtk/MainWindow.vala:508 +#: src/Gtk/MainWindow.vala:507 msgid "available" msgstr "" -#: src/Gtk/MainWindow.vala:551 src/Gtk/MainWindow.vala:591 -#: src/Gtk/MainWindow.vala:625 +#: src/Gtk/MainWindow.vala:550 src/Gtk/MainWindow.vala:590 +#: src/Gtk/MainWindow.vala:624 msgid "DONE" msgstr "" -#: src/Gtk/ProgressWindow.vala:128 src/Gtk/TerminalWindow.vala:153 +#: src/Gtk/ProgressWindow.vala:127 src/Gtk/TerminalWindow.vala:152 msgid "Cancel" msgstr "" -#: src/Gtk/SettingsDialog.vala:60 +#: src/Gtk/SettingsDialog.vala:59 msgid "Notification" msgstr "" -#: src/Gtk/SettingsDialog.vala:67 +#: src/Gtk/SettingsDialog.vala:66 msgid "Notify if a major release is available" msgstr "" -#: src/Gtk/SettingsDialog.vala:76 +#: src/Gtk/SettingsDialog.vala:75 msgid "Notify if a point release is available" msgstr "" -#: src/Gtk/SettingsDialog.vala:87 +#: src/Gtk/SettingsDialog.vala:86 msgid "Seconds interval enabled for debugging" msgstr "" -#: src/Gtk/SettingsDialog.vala:110 +#: src/Gtk/SettingsDialog.vala:109 msgid "Check every" msgstr "" -#: src/Gtk/SettingsDialog.vala:135 +#: src/Gtk/SettingsDialog.vala:134 msgid "Hour(s)" msgstr "" -#: src/Gtk/SettingsDialog.vala:137 +#: src/Gtk/SettingsDialog.vala:136 msgid "Day(s)" msgstr "" -#: src/Gtk/SettingsDialog.vala:139 +#: src/Gtk/SettingsDialog.vala:138 msgid "Week(s)" msgstr "" -#: src/Gtk/SettingsDialog.vala:142 +#: src/Gtk/SettingsDialog.vala:141 msgid "Second(s)" msgstr "" -#: src/Gtk/SettingsDialog.vala:148 +#: src/Gtk/SettingsDialog.vala:147 msgid "Filters" msgstr "" -#: src/Gtk/SettingsDialog.vala:156 +#: src/Gtk/SettingsDialog.vala:155 msgid "Hide unstable and RC releases" msgstr "" -#: src/Gtk/SettingsDialog.vala:178 +#: src/Gtk/SettingsDialog.vala:177 msgid "previous major versions" msgstr "" -#: src/Gtk/SettingsDialog.vala:182 +#: src/Gtk/SettingsDialog.vala:181 msgid "Network" msgstr "" -#: src/Gtk/SettingsDialog.vala:193 +#: src/Gtk/SettingsDialog.vala:192 msgid "Internet connection timeout in" msgstr "" -#: src/Gtk/SettingsDialog.vala:205 +#: src/Gtk/SettingsDialog.vala:204 msgid "seconds" msgstr "" -#: src/Gtk/SettingsDialog.vala:212 +#: src/Gtk/SettingsDialog.vala:211 msgid "Max concurrent downloads" msgstr "" -#: src/Gtk/SettingsDialog.vala:226 +#: src/Gtk/SettingsDialog.vala:225 msgid "Proxy" msgstr "" -#: src/Gtk/l.gtk.vala:44 +#: src/Gtk/l.gtk.vala:43 msgid "Missing Icon" msgstr "" diff --git a/po/nl.po b/po/nl.po index dbdfd03f..6f2467bb 100644 --- a/po/nl.po +++ b/po/nl.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-14 10:07-0400\n" +"POT-Creation-Date: 2023-03-16 01:19-0400\n" "PO-Revision-Date: 2020-08-23 13:55+0200\n" "Last-Translator: Heimen Stoffels \n" "Language-Team: Dutch (Netherlands)\n" @@ -13,130 +13,135 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Poedit 3.2.2\n" -#: src/Common/LinuxKernel.vala:88 +#: src/Common/LinuxKernel.vala:87 msgid "Distribution" msgstr "Distributie" -#: src/Common/LinuxKernel.vala:103 +#: src/Common/LinuxKernel.vala:102 msgid "Architecture" msgstr "Architectuur" -#: src/Common/LinuxKernel.vala:278 +#: src/Common/LinuxKernel.vala:277 #, fuzzy msgid "Fetching individual kernel indexes" msgstr "Bezig met ophalen van kernelindexen…" -#: src/Common/LinuxKernel.vala:327 +#: src/Common/LinuxKernel.vala:326 msgid "Updating from" msgstr "Bezig met bijwerken van" -#: src/Common/LinuxKernel.vala:344 src/Common/LinuxKernel.vala:897 +#: src/Common/LinuxKernel.vala:343 src/Common/LinuxKernel.vala:896 msgid "OK" msgstr "Oké" -#: src/Common/LinuxKernel.vala:347 src/Common/LinuxKernel.vala:900 +#: src/Common/LinuxKernel.vala:346 src/Common/LinuxKernel.vala:899 msgid "FAILED" msgstr "" -#: src/Common/LinuxKernel.vala:761 +#: src/Common/LinuxKernel.vala:760 msgid "Packages Available" msgstr "Beschikbare pakketten" -#: src/Common/LinuxKernel.vala:766 +#: src/Common/LinuxKernel.vala:765 msgid "Packages Installed" msgstr "Geïnstalleerde pakketten" -#: src/Common/LinuxKernel.vala:779 src/lib/TeeJee.FileSystem.vala:121 +#: src/Common/LinuxKernel.vala:778 src/lib/TeeJee.FileSystem.vala:121 msgid "File not found" msgstr "Het bestand is niet gevonden" -#: src/Common/LinuxKernel.vala:843 +#: src/Common/LinuxKernel.vala:842 msgid "Available Kernels" msgstr "Beschikbare kernels" -#: src/Common/LinuxKernel.vala:850 src/Gtk/MainWindow.vala:156 +#: src/Common/LinuxKernel.vala:849 src/Gtk/MainWindow.vala:155 msgid "Installed" msgstr "Geïnstalleerd" -#: src/Common/LinuxKernel.vala:850 src/Gtk/MainWindow.vala:156 -#: src/Gtk/MainWindow.vala:499 src/Gtk/MainWindow.vala:512 +#: src/Common/LinuxKernel.vala:849 src/Gtk/MainWindow.vala:155 +#: src/Gtk/MainWindow.vala:498 src/Gtk/MainWindow.vala:511 msgid "Running" msgstr "In gebruik" -#: src/Common/LinuxKernel.vala:885 +#: src/Common/LinuxKernel.vala:884 msgid "Downloading" msgstr "Bezig met downloaden" -#: src/Common/LinuxKernel.vala:913 +#: src/Common/LinuxKernel.vala:912 #, fuzzy msgid "is already installed." msgstr "Deze kernel is al geïnstalleerd." -#: src/Common/LinuxKernel.vala:943 +#: src/Common/LinuxKernel.vala:942 #, fuzzy msgid "Uninstalling selected kernels" msgstr "Bezig met deïnstalleren van geselecteerde kernels…" -#: src/Common/LinuxKernel.vala:949 +#: src/Common/LinuxKernel.vala:948 msgid "requested" msgstr "verzocht" -#: src/Common/LinuxKernel.vala:952 +#: src/Common/LinuxKernel.vala:951 #, fuzzy msgid "not uninstalling the currently running kernel" msgstr "Opgegeven kernels deïnstalleren" -#: src/Common/LinuxKernel.vala:968 +#: src/Common/LinuxKernel.vala:967 msgid "found" msgstr "gevonden" -#: src/Common/LinuxKernel.vala:971 +#: src/Common/LinuxKernel.vala:970 #, fuzzy msgid "No packages to un-install!" msgstr "Er zijn geen te deïnstalleren pakketten!" -#: src/Common/LinuxKernel.vala:1019 +#: src/Common/LinuxKernel.vala:1018 #, fuzzy msgid "Could not find running kernel in list" msgstr "De in gebruik zijnde kernel staat niet op de lijst" -#: src/Common/LinuxKernel.vala:1024 +#: src/Common/LinuxKernel.vala:1023 #, fuzzy msgid "Could not find any kernels to uninstall" msgstr "Er zijn geen te verwijderen kernels" -#: src/Common/LinuxKernel.vala:1032 +#: src/Common/LinuxKernel.vala:1031 #, fuzzy msgid "The following kernels will be uninstalled" msgstr "De volgende kernels worden verwijderd:" -#: src/Common/LinuxKernel.vala:1036 +#: src/Common/LinuxKernel.vala:1035 msgid "Continue ?" msgstr "Wilt u doorgaan?" -#: src/Common/LinuxKernel.vala:1058 src/Console/AppConsole.vala:286 +#: src/Common/LinuxKernel.vala:1057 src/Console/AppConsole.vala:285 msgid "Latest update" msgstr "Recentste update" -#: src/Common/LinuxKernel.vala:1069 src/Console/AppConsole.vala:293 +#: src/Common/LinuxKernel.vala:1068 src/Console/AppConsole.vala:292 msgid "Latest point update" msgstr "Recentste puntupdate" -#: src/Common/LinuxKernel.vala:1077 src/Console/AppConsole.vala:298 -#: src/Console/AppConsole.vala:353 +#: src/Common/LinuxKernel.vala:1076 src/Console/AppConsole.vala:297 +#: src/Console/AppConsole.vala:352 msgid "No updates found" msgstr "Geen updates gevonden" -#: src/Common/LinuxKernel.vala:1086 +#: src/Common/LinuxKernel.vala:1085 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Wilt u versie %s installeren? (j/n): " -#: src/Common/Main.vala:271 +#: src/Common/Main.vala:275 msgid "Called from" msgstr "Aangeroepen door" -#: src/Common/Main.vala:307 +#: src/Common/Main.vala:276 +msgid "" +"This file is over-written and executed again whenever settings are saved in" +msgstr "" + +#: src/Common/Main.vala:308 msgid "Notifications are disabled" msgstr "Meldingen zijn uitgeschakeld" @@ -145,338 +150,338 @@ msgstr "Meldingen zijn uitgeschakeld" msgid "File not found: %s" msgstr "Bestand is niet gevonden: %s" -#: src/Console/AppConsole.vala:49 src/Gtk/AppGtk.vala:137 +#: src/Console/AppConsole.vala:48 src/Gtk/AppGtk.vala:136 msgid "Syntax" msgstr "Syntaxis" -#: src/Console/AppConsole.vala:51 +#: src/Console/AppConsole.vala:50 msgid "Commands" msgstr "Opdrachten" -#: src/Console/AppConsole.vala:53 +#: src/Console/AppConsole.vala:52 msgid "Check for kernel updates" msgstr "Controleren op kernelupdates" -#: src/Console/AppConsole.vala:54 +#: src/Console/AppConsole.vala:53 msgid "Check for kernel updates and notify current user" msgstr "Controleren op kernelupdates en gebruiker op de hoogte brengen" -#: src/Console/AppConsole.vala:55 +#: src/Console/AppConsole.vala:54 msgid "List all available mainline kernels" msgstr "Alle beschikbare mainline-kernels tonen" -#: src/Console/AppConsole.vala:56 +#: src/Console/AppConsole.vala:55 msgid "List installed kernels" msgstr "Alle geïnstalleerde kernels tonen" -#: src/Console/AppConsole.vala:57 +#: src/Console/AppConsole.vala:56 msgid "Install latest mainline kernel" msgstr "Recentste mainline-kernel installeren" -#: src/Console/AppConsole.vala:58 +#: src/Console/AppConsole.vala:57 msgid "Install latest point update for current series" msgstr "Recentste puntupdate uit huidige editie installeren" -#: src/Console/AppConsole.vala:59 +#: src/Console/AppConsole.vala:58 msgid "Install specified mainline kernel" msgstr "Opgegeven mainline-kernel installeren" -#: src/Console/AppConsole.vala:60 +#: src/Console/AppConsole.vala:59 #, fuzzy msgid "Uninstall specified kernel" msgstr "Gekozen kernel deïnstalleren" -#: src/Console/AppConsole.vala:61 +#: src/Console/AppConsole.vala:60 #, fuzzy msgid "Uninstall kernels older than the latest installed" msgstr "Geïnstalleerde kernels verwijderen die ouder zijn dan de huidige" -#: src/Console/AppConsole.vala:62 +#: src/Console/AppConsole.vala:61 msgid "Download specified kernels" msgstr "Opgegeven kernels downloaden" -#: src/Console/AppConsole.vala:63 +#: src/Console/AppConsole.vala:62 msgid "Delete cached info about available kernels" msgstr "Kernelcache wissen" -#: src/Console/AppConsole.vala:65 src/Gtk/AppGtk.vala:139 +#: src/Console/AppConsole.vala:64 src/Gtk/AppGtk.vala:138 msgid "Options" msgstr "Opties" -#: src/Console/AppConsole.vala:67 +#: src/Console/AppConsole.vala:66 #, fuzzy msgid "Include unstable and RC releases" msgstr "Instabiele en rc-uitgaven tonen" -#: src/Console/AppConsole.vala:68 +#: src/Console/AppConsole.vala:67 #, fuzzy msgid "Exclude unstable and RC releases" msgstr "Instabiele en rc-uitgaven verbergen" -#: src/Console/AppConsole.vala:69 +#: src/Console/AppConsole.vala:68 msgid "Enable verbose debugging output" msgstr "Foutopsporingsinformatie vastleggen" -#: src/Console/AppConsole.vala:70 +#: src/Console/AppConsole.vala:69 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "Ja op alles (in de niet-interactieve modus)" -#: src/Console/AppConsole.vala:73 +#: src/Console/AppConsole.vala:72 msgid "A version string taken from the output of --list" msgstr "Een versietekenreeks uit de uitvoer van --list" -#: src/Console/AppConsole.vala:74 +#: src/Console/AppConsole.vala:73 msgid "One or more, comma-seperated" msgstr "" -#: src/Console/AppConsole.vala:75 +#: src/Console/AppConsole.vala:74 #, fuzzy msgid "The currently running kernel will always be ignored" msgstr "De volgende kernels worden verwijderd:" -#: src/Console/AppConsole.vala:153 src/Gtk/AppGtk.vala:123 +#: src/Console/AppConsole.vala:152 src/Gtk/AppGtk.vala:122 msgid "Unknown option" msgstr "Onbekende optie" -#: src/Console/AppConsole.vala:154 src/Console/AppConsole.vala:244 -#: src/Console/AppConsole.vala:272 +#: src/Console/AppConsole.vala:153 src/Console/AppConsole.vala:243 +#: src/Console/AppConsole.vala:271 msgid "Run" msgstr "Uitvoeren" -#: src/Console/AppConsole.vala:154 +#: src/Console/AppConsole.vala:153 msgid "to list all options" msgstr "om alle opties te tonen" -#: src/Console/AppConsole.vala:212 src/Console/AppConsole.vala:252 +#: src/Console/AppConsole.vala:211 src/Console/AppConsole.vala:251 msgid "No kernels specified" msgstr "Geen kernels opgegeven" -#: src/Console/AppConsole.vala:218 +#: src/Console/AppConsole.vala:217 msgid "Multiple kernels selected for installation. Select only one." msgstr "" "Er zijn meerdere te installeren kernels geselecteerd. Selecteer er één." -#: src/Console/AppConsole.vala:241 +#: src/Console/AppConsole.vala:240 msgid "Could not find requested version" msgstr "De vereiste versie kan niet worden gevonden" -#: src/Console/AppConsole.vala:244 +#: src/Console/AppConsole.vala:243 msgid "and use a version string listed in first column" msgstr "en gebruik een versietekenreeks in de eerste kolom" -#: src/Console/AppConsole.vala:271 +#: src/Console/AppConsole.vala:270 msgid "Command not specified" msgstr "Geen opdracht opgegeven" -#: src/Console/AppConsole.vala:272 +#: src/Console/AppConsole.vala:271 msgid "to list all commands" msgstr "om alle opdrachten te tonen" -#: src/Console/AppConsole.vala:326 src/Gtk/SettingsDialog.vala:166 +#: src/Console/AppConsole.vala:325 src/Gtk/SettingsDialog.vala:165 msgid "Show" msgstr "Tonen" -#: src/Console/AppConsole.vala:331 src/Console/AppConsole.vala:343 +#: src/Console/AppConsole.vala:330 src/Console/AppConsole.vala:342 #, c-format msgid "Kernel %s Available" msgstr "Kernel %s is beschikbaar" -#: src/Console/AppConsole.vala:333 src/Console/AppConsole.vala:345 -#: src/Gtk/MainWindow.vala:267 +#: src/Console/AppConsole.vala:332 src/Console/AppConsole.vala:344 +#: src/Gtk/MainWindow.vala:266 msgid "Install" msgstr "Installeren" -#: src/Gtk/AboutWindow.vala:264 src/Gtk/AboutWindow.vala:281 +#: src/Gtk/AboutWindow.vala:162 src/Gtk/AboutWindow.vala:179 msgid "Credits" msgstr "Met dank aan" -#: src/Gtk/AboutWindow.vala:277 +#: src/Gtk/AboutWindow.vala:175 msgid "Back" msgstr "Terug" -#: src/Gtk/AboutWindow.vala:287 src/Gtk/TerminalWindow.vala:163 +#: src/Gtk/AboutWindow.vala:185 src/Gtk/TerminalWindow.vala:162 msgid "Close" msgstr "Sluiten" -#: src/Gtk/AboutWindow.vala:306 +#: src/Gtk/AboutWindow.vala:204 msgid "Authors" msgstr "Makers" -#: src/Gtk/AboutWindow.vala:314 +#: src/Gtk/AboutWindow.vala:212 msgid "Contributions" msgstr "Bijdragers" -#: src/Gtk/AboutWindow.vala:322 +#: src/Gtk/AboutWindow.vala:220 msgid "Artists" msgstr "Artiesten" -#: src/Gtk/AboutWindow.vala:330 +#: src/Gtk/AboutWindow.vala:228 msgid "Translators" msgstr "Vertalers" -#: src/Gtk/AboutWindow.vala:338 +#: src/Gtk/AboutWindow.vala:236 msgid "Documenters" msgstr "Documenteerders" -#: src/Gtk/AboutWindow.vala:346 +#: src/Gtk/AboutWindow.vala:244 msgid "Third Party Inclusions" msgstr "Externe code" -#: src/Gtk/AppGtk.vala:137 +#: src/Gtk/AppGtk.vala:136 #, fuzzy msgid "options" msgstr "Opties" -#: src/Gtk/AppGtk.vala:141 +#: src/Gtk/AppGtk.vala:140 msgid "Print debug information" msgstr "Foutopsporingsinformatie tonen" -#: src/Gtk/AppGtk.vala:142 +#: src/Gtk/AppGtk.vala:141 msgid "Show all options" msgstr "Alle opties tonen" -#: src/Gtk/MainWindow.vala:113 +#: src/Gtk/MainWindow.vala:112 msgid "Kernel" msgstr "Kernel" -#: src/Gtk/MainWindow.vala:143 +#: src/Gtk/MainWindow.vala:142 msgid "Status" msgstr "Status" -#: src/Gtk/MainWindow.vala:277 +#: src/Gtk/MainWindow.vala:276 #, fuzzy msgid "Uninstall" msgstr "Deïnstalleren" -#: src/Gtk/MainWindow.vala:287 +#: src/Gtk/MainWindow.vala:286 msgid "Changes" msgstr "Wijzigingen" -#: src/Gtk/MainWindow.vala:309 +#: src/Gtk/MainWindow.vala:308 #, fuzzy msgid "Uninstall Old" msgstr "Verouderde deïnstalleren" -#: src/Gtk/MainWindow.vala:310 +#: src/Gtk/MainWindow.vala:309 #, fuzzy msgid "Uninstall kernels older than running kernel" msgstr "Kernels verwijderen die ouder zijn dan de huidige" -#: src/Gtk/MainWindow.vala:315 +#: src/Gtk/MainWindow.vala:314 msgid "Reload" msgstr "Herladen" -#: src/Gtk/MainWindow.vala:320 src/Gtk/SettingsDialog.vala:50 +#: src/Gtk/MainWindow.vala:319 src/Gtk/SettingsDialog.vala:49 msgid "Settings" msgstr "Instellingen" -#: src/Gtk/MainWindow.vala:325 +#: src/Gtk/MainWindow.vala:324 msgid "About" msgstr "Over" -#: src/Gtk/MainWindow.vala:330 +#: src/Gtk/MainWindow.vala:329 msgid "Exit" msgstr "Afsluiten" -#: src/Gtk/MainWindow.vala:398 +#: src/Gtk/MainWindow.vala:397 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Een kernelupgradehulpmiddel voor op Ubuntu gebaseerde distributies" -#: src/Gtk/MainWindow.vala:399 +#: src/Gtk/MainWindow.vala:398 msgid "Forked" msgstr "Geforkt" -#: src/Gtk/MainWindow.vala:399 +#: src/Gtk/MainWindow.vala:398 msgid "Original" msgstr "Origineel" -#: src/Gtk/MainWindow.vala:437 +#: src/Gtk/MainWindow.vala:436 msgid "Updating kernels" msgstr "Bezig met bijwerken van kernels…" -#: src/Gtk/MainWindow.vala:508 +#: src/Gtk/MainWindow.vala:507 msgid "available" msgstr "beschikbaar" -#: src/Gtk/MainWindow.vala:551 src/Gtk/MainWindow.vala:591 -#: src/Gtk/MainWindow.vala:625 +#: src/Gtk/MainWindow.vala:550 src/Gtk/MainWindow.vala:590 +#: src/Gtk/MainWindow.vala:624 msgid "DONE" msgstr "AFGEROND" -#: src/Gtk/ProgressWindow.vala:128 src/Gtk/TerminalWindow.vala:153 +#: src/Gtk/ProgressWindow.vala:127 src/Gtk/TerminalWindow.vala:152 msgid "Cancel" msgstr "Annuleren" -#: src/Gtk/SettingsDialog.vala:60 +#: src/Gtk/SettingsDialog.vala:59 msgid "Notification" msgstr "Melding" -#: src/Gtk/SettingsDialog.vala:67 +#: src/Gtk/SettingsDialog.vala:66 msgid "Notify if a major release is available" msgstr "Melding tonen als er een grote update beschikbaar is" -#: src/Gtk/SettingsDialog.vala:76 +#: src/Gtk/SettingsDialog.vala:75 msgid "Notify if a point release is available" msgstr "Melding tonen als er een puntupdate beschikbaar is" -#: src/Gtk/SettingsDialog.vala:87 +#: src/Gtk/SettingsDialog.vala:86 #, fuzzy msgid "Seconds interval enabled for debugging" msgstr "(staat tussenpozen in seconden toe voor --debug)" -#: src/Gtk/SettingsDialog.vala:110 +#: src/Gtk/SettingsDialog.vala:109 msgid "Check every" msgstr "Controleren, elke" -#: src/Gtk/SettingsDialog.vala:135 +#: src/Gtk/SettingsDialog.vala:134 msgid "Hour(s)" msgstr "uur" -#: src/Gtk/SettingsDialog.vala:137 +#: src/Gtk/SettingsDialog.vala:136 msgid "Day(s)" msgstr "dag(en)" -#: src/Gtk/SettingsDialog.vala:139 +#: src/Gtk/SettingsDialog.vala:138 msgid "Week(s)" msgstr "week/weken" -#: src/Gtk/SettingsDialog.vala:142 +#: src/Gtk/SettingsDialog.vala:141 msgid "Second(s)" msgstr "seconde(n)" -#: src/Gtk/SettingsDialog.vala:148 +#: src/Gtk/SettingsDialog.vala:147 msgid "Filters" msgstr "Filters" -#: src/Gtk/SettingsDialog.vala:156 +#: src/Gtk/SettingsDialog.vala:155 msgid "Hide unstable and RC releases" msgstr "Instabiele en rc-uitgaven verbergen" -#: src/Gtk/SettingsDialog.vala:178 +#: src/Gtk/SettingsDialog.vala:177 msgid "previous major versions" msgstr "vorige grote updates" -#: src/Gtk/SettingsDialog.vala:182 +#: src/Gtk/SettingsDialog.vala:181 msgid "Network" msgstr "Netwerk" -#: src/Gtk/SettingsDialog.vala:193 +#: src/Gtk/SettingsDialog.vala:192 msgid "Internet connection timeout in" msgstr "Verbindingstime-out na" -#: src/Gtk/SettingsDialog.vala:205 +#: src/Gtk/SettingsDialog.vala:204 msgid "seconds" msgstr "seconden" -#: src/Gtk/SettingsDialog.vala:212 +#: src/Gtk/SettingsDialog.vala:211 msgid "Max concurrent downloads" msgstr "Max. aantal gelijktijdige downloads" -#: src/Gtk/SettingsDialog.vala:226 +#: src/Gtk/SettingsDialog.vala:225 msgid "Proxy" msgstr "Proxy" -#: src/Gtk/l.gtk.vala:44 +#: src/Gtk/l.gtk.vala:43 msgid "Missing Icon" msgstr "Ontbrekend pictogram" diff --git a/po/pl.po b/po/pl.po index 66ee8e29..61f50ae7 100644 --- a/po/pl.po +++ b/po/pl.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-14 10:07-0400\n" +"POT-Creation-Date: 2023-03-16 01:19-0400\n" "PO-Revision-Date: 2023-03-11 12:47+0100\n" "Last-Translator: Matthaiks\n" "Language-Team: Polish\n" @@ -12,122 +12,127 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Poedit 3.2\n" -#: src/Common/LinuxKernel.vala:88 +#: src/Common/LinuxKernel.vala:87 msgid "Distribution" msgstr "Dystrybucja" -#: src/Common/LinuxKernel.vala:103 +#: src/Common/LinuxKernel.vala:102 msgid "Architecture" msgstr "Architektura" -#: src/Common/LinuxKernel.vala:278 +#: src/Common/LinuxKernel.vala:277 msgid "Fetching individual kernel indexes" msgstr "Pobieranie indywidualnych indeksów jąder" -#: src/Common/LinuxKernel.vala:327 +#: src/Common/LinuxKernel.vala:326 msgid "Updating from" msgstr "Aktualizowanie z" -#: src/Common/LinuxKernel.vala:344 src/Common/LinuxKernel.vala:897 +#: src/Common/LinuxKernel.vala:343 src/Common/LinuxKernel.vala:896 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:347 src/Common/LinuxKernel.vala:900 +#: src/Common/LinuxKernel.vala:346 src/Common/LinuxKernel.vala:899 msgid "FAILED" msgstr "NIEPOWODZENIE" -#: src/Common/LinuxKernel.vala:761 +#: src/Common/LinuxKernel.vala:760 msgid "Packages Available" msgstr "Dostępne pakiety" -#: src/Common/LinuxKernel.vala:766 +#: src/Common/LinuxKernel.vala:765 msgid "Packages Installed" msgstr "Pakiety zainstalowane" -#: src/Common/LinuxKernel.vala:779 src/lib/TeeJee.FileSystem.vala:121 +#: src/Common/LinuxKernel.vala:778 src/lib/TeeJee.FileSystem.vala:121 msgid "File not found" msgstr "Nie odnaleziono pliku" -#: src/Common/LinuxKernel.vala:843 +#: src/Common/LinuxKernel.vala:842 msgid "Available Kernels" msgstr "Dostępne jądra" -#: src/Common/LinuxKernel.vala:850 src/Gtk/MainWindow.vala:156 +#: src/Common/LinuxKernel.vala:849 src/Gtk/MainWindow.vala:155 msgid "Installed" msgstr "Zainstalowane" -#: src/Common/LinuxKernel.vala:850 src/Gtk/MainWindow.vala:156 -#: src/Gtk/MainWindow.vala:499 src/Gtk/MainWindow.vala:512 +#: src/Common/LinuxKernel.vala:849 src/Gtk/MainWindow.vala:155 +#: src/Gtk/MainWindow.vala:498 src/Gtk/MainWindow.vala:511 msgid "Running" msgstr "Uruchomione" -#: src/Common/LinuxKernel.vala:885 +#: src/Common/LinuxKernel.vala:884 msgid "Downloading" msgstr "Pobieranie" -#: src/Common/LinuxKernel.vala:913 +#: src/Common/LinuxKernel.vala:912 msgid "is already installed." msgstr "jest już zainstalowane." -#: src/Common/LinuxKernel.vala:943 +#: src/Common/LinuxKernel.vala:942 msgid "Uninstalling selected kernels" msgstr "Odinstalowanie wybranych jąder" -#: src/Common/LinuxKernel.vala:949 +#: src/Common/LinuxKernel.vala:948 msgid "requested" msgstr "zażądane" -#: src/Common/LinuxKernel.vala:952 +#: src/Common/LinuxKernel.vala:951 msgid "not uninstalling the currently running kernel" msgstr "bez odinstalowywania aktualnie uruchomionego jądra" -#: src/Common/LinuxKernel.vala:968 +#: src/Common/LinuxKernel.vala:967 msgid "found" msgstr "znalezione" -#: src/Common/LinuxKernel.vala:971 +#: src/Common/LinuxKernel.vala:970 msgid "No packages to un-install!" msgstr "Brak pakietów do odinstalowania!" -#: src/Common/LinuxKernel.vala:1019 +#: src/Common/LinuxKernel.vala:1018 msgid "Could not find running kernel in list" msgstr "Nie można znaleźć uruchomionego jądra na liście" -#: src/Common/LinuxKernel.vala:1024 +#: src/Common/LinuxKernel.vala:1023 msgid "Could not find any kernels to uninstall" msgstr "Nie można znaleźć żadnych jąder do odinstalowania" -#: src/Common/LinuxKernel.vala:1032 +#: src/Common/LinuxKernel.vala:1031 msgid "The following kernels will be uninstalled" msgstr "Następujące jądra zostaną odinstalowane" -#: src/Common/LinuxKernel.vala:1036 +#: src/Common/LinuxKernel.vala:1035 msgid "Continue ?" msgstr "Kontynuować?" -#: src/Common/LinuxKernel.vala:1058 src/Console/AppConsole.vala:286 +#: src/Common/LinuxKernel.vala:1057 src/Console/AppConsole.vala:285 msgid "Latest update" msgstr "Najnowsza aktualizacja" -#: src/Common/LinuxKernel.vala:1069 src/Console/AppConsole.vala:293 +#: src/Common/LinuxKernel.vala:1068 src/Console/AppConsole.vala:292 msgid "Latest point update" msgstr "Najnowsza aktualizacja punktowa" -#: src/Common/LinuxKernel.vala:1077 src/Console/AppConsole.vala:298 -#: src/Console/AppConsole.vala:353 +#: src/Common/LinuxKernel.vala:1076 src/Console/AppConsole.vala:297 +#: src/Console/AppConsole.vala:352 msgid "No updates found" msgstr "Nie znaleziono aktualizacji" -#: src/Common/LinuxKernel.vala:1086 +#: src/Common/LinuxKernel.vala:1085 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Zainstalować wersję jądra %s? (t/n): " -#: src/Common/Main.vala:271 +#: src/Common/Main.vala:275 msgid "Called from" msgstr "Wywołano z" -#: src/Common/Main.vala:307 +#: src/Common/Main.vala:276 +msgid "" +"This file is over-written and executed again whenever settings are saved in" +msgstr "" + +#: src/Common/Main.vala:308 msgid "Notifications are disabled" msgstr "Powiadomienia są wyłączone" @@ -136,327 +141,327 @@ msgstr "Powiadomienia są wyłączone" msgid "File not found: %s" msgstr "Nie znaleziono pliku: %s" -#: src/Console/AppConsole.vala:49 src/Gtk/AppGtk.vala:137 +#: src/Console/AppConsole.vala:48 src/Gtk/AppGtk.vala:136 msgid "Syntax" msgstr "Składnia" -#: src/Console/AppConsole.vala:51 +#: src/Console/AppConsole.vala:50 msgid "Commands" msgstr "Polecenia" -#: src/Console/AppConsole.vala:53 +#: src/Console/AppConsole.vala:52 msgid "Check for kernel updates" msgstr "Sprawdź nowe wersje jądra" -#: src/Console/AppConsole.vala:54 +#: src/Console/AppConsole.vala:53 msgid "Check for kernel updates and notify current user" msgstr "Sprawdź nowe wersje jądra i powiadom bieżącego użytkownika" -#: src/Console/AppConsole.vala:55 +#: src/Console/AppConsole.vala:54 msgid "List all available mainline kernels" msgstr "Pokaż wszystkie dostępne jądra" -#: src/Console/AppConsole.vala:56 +#: src/Console/AppConsole.vala:55 msgid "List installed kernels" msgstr "Wyświetl listę zainstalowanych jąder" -#: src/Console/AppConsole.vala:57 +#: src/Console/AppConsole.vala:56 msgid "Install latest mainline kernel" msgstr "Zainstaluj najnowsze jądro" -#: src/Console/AppConsole.vala:58 +#: src/Console/AppConsole.vala:57 msgid "Install latest point update for current series" msgstr "Zainstaluj najnowszą aktualizację punktową dla bieżącej serii" -#: src/Console/AppConsole.vala:59 +#: src/Console/AppConsole.vala:58 msgid "Install specified mainline kernel" msgstr "Zainstaluj wybrane jądro" -#: src/Console/AppConsole.vala:60 +#: src/Console/AppConsole.vala:59 msgid "Uninstall specified kernel" msgstr "Odinstaluj wybrane jądro" -#: src/Console/AppConsole.vala:61 +#: src/Console/AppConsole.vala:60 msgid "Uninstall kernels older than the latest installed" msgstr "Odinstaluj jądra starsze niż ostatnio zainstalowane" -#: src/Console/AppConsole.vala:62 +#: src/Console/AppConsole.vala:61 msgid "Download specified kernels" msgstr "Pobierz wybrane jądra" -#: src/Console/AppConsole.vala:63 +#: src/Console/AppConsole.vala:62 msgid "Delete cached info about available kernels" msgstr "Usuń informacje z pamięci podręcznej o dostępnych jądrach" -#: src/Console/AppConsole.vala:65 src/Gtk/AppGtk.vala:139 +#: src/Console/AppConsole.vala:64 src/Gtk/AppGtk.vala:138 msgid "Options" msgstr "Opcje" -#: src/Console/AppConsole.vala:67 +#: src/Console/AppConsole.vala:66 msgid "Include unstable and RC releases" msgstr "Uwzględnij wydania niestabilne i RC" -#: src/Console/AppConsole.vala:68 +#: src/Console/AppConsole.vala:67 msgid "Exclude unstable and RC releases" msgstr "Wyklucz wersje niestabilne i RC" -#: src/Console/AppConsole.vala:69 +#: src/Console/AppConsole.vala:68 msgid "Enable verbose debugging output" msgstr "Włącz szczegółowe dane wyjściowe debugowania" -#: src/Console/AppConsole.vala:70 +#: src/Console/AppConsole.vala:69 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "Przyjmij Tak dla wszystkich monitów (tryb nieinteraktywny)" -#: src/Console/AppConsole.vala:73 +#: src/Console/AppConsole.vala:72 msgid "A version string taken from the output of --list" msgstr "Ciąg wersji pobrany z danych wyjściowych --list" -#: src/Console/AppConsole.vala:74 +#: src/Console/AppConsole.vala:73 msgid "One or more, comma-seperated" msgstr "Jedno lub więcej, oddzielone przecinkami" -#: src/Console/AppConsole.vala:75 +#: src/Console/AppConsole.vala:74 msgid "The currently running kernel will always be ignored" msgstr "Aktualnie uruchomione jądro będzie zawsze ignorowane" -#: src/Console/AppConsole.vala:153 src/Gtk/AppGtk.vala:123 +#: src/Console/AppConsole.vala:152 src/Gtk/AppGtk.vala:122 msgid "Unknown option" msgstr "Nieznana opcja" -#: src/Console/AppConsole.vala:154 src/Console/AppConsole.vala:244 -#: src/Console/AppConsole.vala:272 +#: src/Console/AppConsole.vala:153 src/Console/AppConsole.vala:243 +#: src/Console/AppConsole.vala:271 msgid "Run" msgstr "Uruchom" -#: src/Console/AppConsole.vala:154 +#: src/Console/AppConsole.vala:153 msgid "to list all options" msgstr "do wyświetlenia wszystkich opcji" -#: src/Console/AppConsole.vala:212 src/Console/AppConsole.vala:252 +#: src/Console/AppConsole.vala:211 src/Console/AppConsole.vala:251 msgid "No kernels specified" msgstr "Nie wybrano jąder" -#: src/Console/AppConsole.vala:218 +#: src/Console/AppConsole.vala:217 msgid "Multiple kernels selected for installation. Select only one." msgstr "Wybrano kilka jąder do instalacji. Wybierz tylko jedno." -#: src/Console/AppConsole.vala:241 +#: src/Console/AppConsole.vala:240 msgid "Could not find requested version" msgstr "Nie można odnaleźć żądanej wersji" -#: src/Console/AppConsole.vala:244 +#: src/Console/AppConsole.vala:243 msgid "and use a version string listed in first column" msgstr "i użyć numeru wersji wymienionego w pierwszej kolumnie" -#: src/Console/AppConsole.vala:271 +#: src/Console/AppConsole.vala:270 msgid "Command not specified" msgstr "Nie określono polecenia" -#: src/Console/AppConsole.vala:272 +#: src/Console/AppConsole.vala:271 msgid "to list all commands" msgstr "do wyświetlenia wszystkich poleceń" -#: src/Console/AppConsole.vala:326 src/Gtk/SettingsDialog.vala:166 +#: src/Console/AppConsole.vala:325 src/Gtk/SettingsDialog.vala:165 msgid "Show" msgstr "Pokaż" -#: src/Console/AppConsole.vala:331 src/Console/AppConsole.vala:343 +#: src/Console/AppConsole.vala:330 src/Console/AppConsole.vala:342 #, c-format msgid "Kernel %s Available" msgstr "Dostępne %s jądra" -#: src/Console/AppConsole.vala:333 src/Console/AppConsole.vala:345 -#: src/Gtk/MainWindow.vala:267 +#: src/Console/AppConsole.vala:332 src/Console/AppConsole.vala:344 +#: src/Gtk/MainWindow.vala:266 msgid "Install" msgstr "Zainstaluj" -#: src/Gtk/AboutWindow.vala:264 src/Gtk/AboutWindow.vala:281 +#: src/Gtk/AboutWindow.vala:162 src/Gtk/AboutWindow.vala:179 msgid "Credits" msgstr "Zasługi" -#: src/Gtk/AboutWindow.vala:277 +#: src/Gtk/AboutWindow.vala:175 msgid "Back" msgstr "Wstecz" -#: src/Gtk/AboutWindow.vala:287 src/Gtk/TerminalWindow.vala:163 +#: src/Gtk/AboutWindow.vala:185 src/Gtk/TerminalWindow.vala:162 msgid "Close" msgstr "Zamknij" -#: src/Gtk/AboutWindow.vala:306 +#: src/Gtk/AboutWindow.vala:204 msgid "Authors" msgstr "Аutorzy" -#: src/Gtk/AboutWindow.vala:314 +#: src/Gtk/AboutWindow.vala:212 msgid "Contributions" msgstr "Wkład" -#: src/Gtk/AboutWindow.vala:322 +#: src/Gtk/AboutWindow.vala:220 msgid "Artists" msgstr "Artyści" -#: src/Gtk/AboutWindow.vala:330 +#: src/Gtk/AboutWindow.vala:228 msgid "Translators" msgstr "Tłumacze" -#: src/Gtk/AboutWindow.vala:338 +#: src/Gtk/AboutWindow.vala:236 msgid "Documenters" msgstr "Dokumentujący" -#: src/Gtk/AboutWindow.vala:346 +#: src/Gtk/AboutWindow.vala:244 msgid "Third Party Inclusions" msgstr "Włączenia stron trzecich" -#: src/Gtk/AppGtk.vala:137 +#: src/Gtk/AppGtk.vala:136 msgid "options" msgstr "opcje" -#: src/Gtk/AppGtk.vala:141 +#: src/Gtk/AppGtk.vala:140 msgid "Print debug information" msgstr "Wypisz informacje debugujące" -#: src/Gtk/AppGtk.vala:142 +#: src/Gtk/AppGtk.vala:141 msgid "Show all options" msgstr "Pokaż wszystkie opcje" -#: src/Gtk/MainWindow.vala:113 +#: src/Gtk/MainWindow.vala:112 msgid "Kernel" msgstr "Jądro" -#: src/Gtk/MainWindow.vala:143 +#: src/Gtk/MainWindow.vala:142 msgid "Status" msgstr "Status" -#: src/Gtk/MainWindow.vala:277 +#: src/Gtk/MainWindow.vala:276 msgid "Uninstall" msgstr "Odinstaluj" -#: src/Gtk/MainWindow.vala:287 +#: src/Gtk/MainWindow.vala:286 msgid "Changes" msgstr "Zmiany" -#: src/Gtk/MainWindow.vala:309 +#: src/Gtk/MainWindow.vala:308 msgid "Uninstall Old" msgstr "Odinstaluj stare" -#: src/Gtk/MainWindow.vala:310 +#: src/Gtk/MainWindow.vala:309 msgid "Uninstall kernels older than running kernel" msgstr "Odinstaluj jądra starsze niż uruchomione jądro" -#: src/Gtk/MainWindow.vala:315 +#: src/Gtk/MainWindow.vala:314 msgid "Reload" msgstr "Wczytaj ponownie" -#: src/Gtk/MainWindow.vala:320 src/Gtk/SettingsDialog.vala:50 +#: src/Gtk/MainWindow.vala:319 src/Gtk/SettingsDialog.vala:49 msgid "Settings" msgstr "Ustawienia" -#: src/Gtk/MainWindow.vala:325 +#: src/Gtk/MainWindow.vala:324 msgid "About" msgstr "O programie" -#: src/Gtk/MainWindow.vala:330 +#: src/Gtk/MainWindow.vala:329 msgid "Exit" msgstr "Wyjdź" -#: src/Gtk/MainWindow.vala:398 +#: src/Gtk/MainWindow.vala:397 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Narzędzie uaktualniania jądra dla dystrybucji z rodziny Ubuntu" -#: src/Gtk/MainWindow.vala:399 +#: src/Gtk/MainWindow.vala:398 msgid "Forked" msgstr "Sforkowane" -#: src/Gtk/MainWindow.vala:399 +#: src/Gtk/MainWindow.vala:398 msgid "Original" msgstr "Oryginalne" -#: src/Gtk/MainWindow.vala:437 +#: src/Gtk/MainWindow.vala:436 msgid "Updating kernels" msgstr "Aktualizowanie jąder" -#: src/Gtk/MainWindow.vala:508 +#: src/Gtk/MainWindow.vala:507 msgid "available" msgstr "dostępne" -#: src/Gtk/MainWindow.vala:551 src/Gtk/MainWindow.vala:591 -#: src/Gtk/MainWindow.vala:625 +#: src/Gtk/MainWindow.vala:550 src/Gtk/MainWindow.vala:590 +#: src/Gtk/MainWindow.vala:624 msgid "DONE" msgstr "GOTOWE" -#: src/Gtk/ProgressWindow.vala:128 src/Gtk/TerminalWindow.vala:153 +#: src/Gtk/ProgressWindow.vala:127 src/Gtk/TerminalWindow.vala:152 msgid "Cancel" msgstr "Anuluj" -#: src/Gtk/SettingsDialog.vala:60 +#: src/Gtk/SettingsDialog.vala:59 msgid "Notification" msgstr "Powiadomienia" -#: src/Gtk/SettingsDialog.vala:67 +#: src/Gtk/SettingsDialog.vala:66 msgid "Notify if a major release is available" msgstr "Powiadom, jeśli pojawi się główna wersja" -#: src/Gtk/SettingsDialog.vala:76 +#: src/Gtk/SettingsDialog.vala:75 msgid "Notify if a point release is available" msgstr "Powiadom, jeśli pojawi się wersja punktowa" -#: src/Gtk/SettingsDialog.vala:87 +#: src/Gtk/SettingsDialog.vala:86 msgid "Seconds interval enabled for debugging" msgstr "Interwał w sekundach włączony do debugowania" -#: src/Gtk/SettingsDialog.vala:110 +#: src/Gtk/SettingsDialog.vala:109 msgid "Check every" msgstr "Sprawdzaj co" -#: src/Gtk/SettingsDialog.vala:135 +#: src/Gtk/SettingsDialog.vala:134 msgid "Hour(s)" msgstr "godziny" -#: src/Gtk/SettingsDialog.vala:137 +#: src/Gtk/SettingsDialog.vala:136 msgid "Day(s)" msgstr "dni" -#: src/Gtk/SettingsDialog.vala:139 +#: src/Gtk/SettingsDialog.vala:138 msgid "Week(s)" msgstr "tygodnie" -#: src/Gtk/SettingsDialog.vala:142 +#: src/Gtk/SettingsDialog.vala:141 msgid "Second(s)" msgstr "sekundy" -#: src/Gtk/SettingsDialog.vala:148 +#: src/Gtk/SettingsDialog.vala:147 msgid "Filters" msgstr "Filtry" -#: src/Gtk/SettingsDialog.vala:156 +#: src/Gtk/SettingsDialog.vala:155 msgid "Hide unstable and RC releases" msgstr "Ukryj wydania niestabilne i RC" -#: src/Gtk/SettingsDialog.vala:178 +#: src/Gtk/SettingsDialog.vala:177 msgid "previous major versions" msgstr "poprzednie główne wersje" -#: src/Gtk/SettingsDialog.vala:182 +#: src/Gtk/SettingsDialog.vala:181 msgid "Network" msgstr "Sieć" -#: src/Gtk/SettingsDialog.vala:193 +#: src/Gtk/SettingsDialog.vala:192 msgid "Internet connection timeout in" msgstr "Limit czasu połączenia internetowego po" -#: src/Gtk/SettingsDialog.vala:205 +#: src/Gtk/SettingsDialog.vala:204 msgid "seconds" msgstr "sekundach" -#: src/Gtk/SettingsDialog.vala:212 +#: src/Gtk/SettingsDialog.vala:211 msgid "Max concurrent downloads" msgstr "Maksymalna liczba jednoczesnych pobrań" -#: src/Gtk/SettingsDialog.vala:226 +#: src/Gtk/SettingsDialog.vala:225 msgid "Proxy" msgstr "Serwer pośredniczący" -#: src/Gtk/l.gtk.vala:44 +#: src/Gtk/l.gtk.vala:43 msgid "Missing Icon" msgstr "Brakująca ikona" diff --git a/po/ru.po b/po/ru.po index cb345064..da19cff6 100644 --- a/po/ru.po +++ b/po/ru.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-14 10:07-0400\n" +"POT-Creation-Date: 2023-03-16 01:19-0400\n" "PO-Revision-Date: 2023-03-12 18:24+0300\n" "Last-Translator: Faust3000 (Original) | Danik2343 (Update Transaltion) " "\n" @@ -14,125 +14,130 @@ msgstr "" "X-Launchpad-Export-Date: 2016-12-13 11:48+0000\n" "X-Generator: Poedit 3.1.1\n" -#: src/Common/LinuxKernel.vala:88 +#: src/Common/LinuxKernel.vala:87 msgid "Distribution" msgstr "Дистрибутив" -#: src/Common/LinuxKernel.vala:103 +#: src/Common/LinuxKernel.vala:102 msgid "Architecture" msgstr "Архитектура" -#: src/Common/LinuxKernel.vala:278 +#: src/Common/LinuxKernel.vala:277 msgid "Fetching individual kernel indexes" msgstr "Получение индивидуальных индексов ядра" -#: src/Common/LinuxKernel.vala:327 +#: src/Common/LinuxKernel.vala:326 msgid "Updating from" msgstr "Обновление из" -#: src/Common/LinuxKernel.vala:344 src/Common/LinuxKernel.vala:897 +#: src/Common/LinuxKernel.vala:343 src/Common/LinuxKernel.vala:896 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:347 src/Common/LinuxKernel.vala:900 +#: src/Common/LinuxKernel.vala:346 src/Common/LinuxKernel.vala:899 msgid "FAILED" msgstr "" -#: src/Common/LinuxKernel.vala:761 +#: src/Common/LinuxKernel.vala:760 msgid "Packages Available" msgstr "Доступные пакеты" -#: src/Common/LinuxKernel.vala:766 +#: src/Common/LinuxKernel.vala:765 msgid "Packages Installed" msgstr "Установленные пакеты" -#: src/Common/LinuxKernel.vala:779 src/lib/TeeJee.FileSystem.vala:121 +#: src/Common/LinuxKernel.vala:778 src/lib/TeeJee.FileSystem.vala:121 msgid "File not found" msgstr "Файл не найден" -#: src/Common/LinuxKernel.vala:843 +#: src/Common/LinuxKernel.vala:842 msgid "Available Kernels" msgstr "Доступные ядра" -#: src/Common/LinuxKernel.vala:850 src/Gtk/MainWindow.vala:156 +#: src/Common/LinuxKernel.vala:849 src/Gtk/MainWindow.vala:155 msgid "Installed" msgstr "Установлено" -#: src/Common/LinuxKernel.vala:850 src/Gtk/MainWindow.vala:156 -#: src/Gtk/MainWindow.vala:499 src/Gtk/MainWindow.vala:512 +#: src/Common/LinuxKernel.vala:849 src/Gtk/MainWindow.vala:155 +#: src/Gtk/MainWindow.vala:498 src/Gtk/MainWindow.vala:511 msgid "Running" msgstr "Используется" -#: src/Common/LinuxKernel.vala:885 +#: src/Common/LinuxKernel.vala:884 msgid "Downloading" msgstr "Загрузка" -#: src/Common/LinuxKernel.vala:913 +#: src/Common/LinuxKernel.vala:912 #, fuzzy msgid "is already installed." msgstr "Это ядро уже установлено." -#: src/Common/LinuxKernel.vala:943 +#: src/Common/LinuxKernel.vala:942 msgid "Uninstalling selected kernels" msgstr "Удаление выбранных ядер" -#: src/Common/LinuxKernel.vala:949 +#: src/Common/LinuxKernel.vala:948 msgid "requested" msgstr "запрошено" -#: src/Common/LinuxKernel.vala:952 +#: src/Common/LinuxKernel.vala:951 #, fuzzy msgid "not uninstalling the currently running kernel" msgstr "пропуск текущего загруженного ядра" -#: src/Common/LinuxKernel.vala:968 +#: src/Common/LinuxKernel.vala:967 msgid "found" msgstr "найдено" -#: src/Common/LinuxKernel.vala:971 +#: src/Common/LinuxKernel.vala:970 msgid "No packages to un-install!" msgstr "Нет пакетов для удаления!" -#: src/Common/LinuxKernel.vala:1019 +#: src/Common/LinuxKernel.vala:1018 msgid "Could not find running kernel in list" msgstr "Could not find running kernel in list" -#: src/Common/LinuxKernel.vala:1024 +#: src/Common/LinuxKernel.vala:1023 msgid "Could not find any kernels to uninstall" msgstr "Не удалось найти ядра для деинсталляции" -#: src/Common/LinuxKernel.vala:1032 +#: src/Common/LinuxKernel.vala:1031 #, fuzzy msgid "The following kernels will be uninstalled" msgstr "Следующие ядра будут деинсталлированы:" -#: src/Common/LinuxKernel.vala:1036 +#: src/Common/LinuxKernel.vala:1035 msgid "Continue ?" msgstr "Продолжить ?" -#: src/Common/LinuxKernel.vala:1058 src/Console/AppConsole.vala:286 +#: src/Common/LinuxKernel.vala:1057 src/Console/AppConsole.vala:285 msgid "Latest update" msgstr "Последнее обновление" -#: src/Common/LinuxKernel.vala:1069 src/Console/AppConsole.vala:293 +#: src/Common/LinuxKernel.vala:1068 src/Console/AppConsole.vala:292 msgid "Latest point update" msgstr "Последнее обновление пунктов" -#: src/Common/LinuxKernel.vala:1077 src/Console/AppConsole.vala:298 -#: src/Console/AppConsole.vala:353 +#: src/Common/LinuxKernel.vala:1076 src/Console/AppConsole.vala:297 +#: src/Console/AppConsole.vala:352 msgid "No updates found" msgstr "Обновлений не найдено" -#: src/Common/LinuxKernel.vala:1086 +#: src/Common/LinuxKernel.vala:1085 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Установить версию ядра %s ? (y/n): " -#: src/Common/Main.vala:271 +#: src/Common/Main.vala:275 msgid "Called from" msgstr "Вызван из" -#: src/Common/Main.vala:307 +#: src/Common/Main.vala:276 +msgid "" +"This file is over-written and executed again whenever settings are saved in" +msgstr "" + +#: src/Common/Main.vala:308 msgid "Notifications are disabled" msgstr "Уведомления отключены" @@ -141,330 +146,330 @@ msgstr "Уведомления отключены" msgid "File not found: %s" msgstr "Файл не найден: %s" -#: src/Console/AppConsole.vala:49 src/Gtk/AppGtk.vala:137 +#: src/Console/AppConsole.vala:48 src/Gtk/AppGtk.vala:136 msgid "Syntax" msgstr "Синтаксис" -#: src/Console/AppConsole.vala:51 +#: src/Console/AppConsole.vala:50 msgid "Commands" msgstr "Комманды" -#: src/Console/AppConsole.vala:53 +#: src/Console/AppConsole.vala:52 msgid "Check for kernel updates" msgstr "Проверить обновления ядра" -#: src/Console/AppConsole.vala:54 +#: src/Console/AppConsole.vala:53 msgid "Check for kernel updates and notify current user" msgstr "Проверить обновления ядра и уведомить текущего пользователя" -#: src/Console/AppConsole.vala:55 +#: src/Console/AppConsole.vala:54 msgid "List all available mainline kernels" msgstr "Список всех доступных основных ядер" -#: src/Console/AppConsole.vala:56 +#: src/Console/AppConsole.vala:55 msgid "List installed kernels" msgstr "Список установленных ядер" -#: src/Console/AppConsole.vala:57 +#: src/Console/AppConsole.vala:56 msgid "Install latest mainline kernel" msgstr "Установите последнюю версию основного ядра" -#: src/Console/AppConsole.vala:58 +#: src/Console/AppConsole.vala:57 msgid "Install latest point update for current series" msgstr "Установить последнее обновление точек для текущей серии" -#: src/Console/AppConsole.vala:59 +#: src/Console/AppConsole.vala:58 msgid "Install specified mainline kernel" msgstr "Установить указанную ветку основного ядра" -#: src/Console/AppConsole.vala:60 +#: src/Console/AppConsole.vala:59 msgid "Uninstall specified kernel" msgstr "Установить указанное ядро" -#: src/Console/AppConsole.vala:61 +#: src/Console/AppConsole.vala:60 #, fuzzy msgid "Uninstall kernels older than the latest installed" msgstr "Удалить более старшие установленные ядра, чем используемое ядро" -#: src/Console/AppConsole.vala:62 +#: src/Console/AppConsole.vala:61 msgid "Download specified kernels" msgstr "Скачать указанные ядра" -#: src/Console/AppConsole.vala:63 +#: src/Console/AppConsole.vala:62 msgid "Delete cached info about available kernels" msgstr "Удаление кэшированной информации о доступных ядрах" -#: src/Console/AppConsole.vala:65 src/Gtk/AppGtk.vala:139 +#: src/Console/AppConsole.vala:64 src/Gtk/AppGtk.vala:138 msgid "Options" msgstr "Параметры" -#: src/Console/AppConsole.vala:67 +#: src/Console/AppConsole.vala:66 msgid "Include unstable and RC releases" msgstr "Включать нестабильные и релиз-кандидат релизы" -#: src/Console/AppConsole.vala:68 +#: src/Console/AppConsole.vala:67 msgid "Exclude unstable and RC releases" msgstr "Исключить нестабильные и релиз-кандидат релизы" -#: src/Console/AppConsole.vala:69 +#: src/Console/AppConsole.vala:68 msgid "Enable verbose debugging output" msgstr "Включить подробный отладочный вывод" -#: src/Console/AppConsole.vala:70 +#: src/Console/AppConsole.vala:69 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "Предполагать \"Да\" для всех запросов (неинтерактивный режим)" -#: src/Console/AppConsole.vala:73 +#: src/Console/AppConsole.vala:72 msgid "A version string taken from the output of --list" msgstr "Строка версии, взятая из вывода --list" -#: src/Console/AppConsole.vala:74 +#: src/Console/AppConsole.vala:73 msgid "One or more, comma-seperated" msgstr "" -#: src/Console/AppConsole.vala:75 +#: src/Console/AppConsole.vala:74 #, fuzzy msgid "The currently running kernel will always be ignored" msgstr "Следующие ядра будут деинсталлированы:" -#: src/Console/AppConsole.vala:153 src/Gtk/AppGtk.vala:123 +#: src/Console/AppConsole.vala:152 src/Gtk/AppGtk.vala:122 msgid "Unknown option" msgstr "Неизвестный параметр" -#: src/Console/AppConsole.vala:154 src/Console/AppConsole.vala:244 -#: src/Console/AppConsole.vala:272 +#: src/Console/AppConsole.vala:153 src/Console/AppConsole.vala:243 +#: src/Console/AppConsole.vala:271 msgid "Run" msgstr "Используется" -#: src/Console/AppConsole.vala:154 +#: src/Console/AppConsole.vala:153 msgid "to list all options" msgstr "чтобы перечислить все параметры" -#: src/Console/AppConsole.vala:212 src/Console/AppConsole.vala:252 +#: src/Console/AppConsole.vala:211 src/Console/AppConsole.vala:251 msgid "No kernels specified" msgstr "Ядра не указаны" -#: src/Console/AppConsole.vala:218 +#: src/Console/AppConsole.vala:217 msgid "Multiple kernels selected for installation. Select only one." msgstr "Для установки выбрано несколько ядер. Выберите только одно." -#: src/Console/AppConsole.vala:241 +#: src/Console/AppConsole.vala:240 msgid "Could not find requested version" msgstr "Не удалось найти запрошенную версию" -#: src/Console/AppConsole.vala:244 +#: src/Console/AppConsole.vala:243 msgid "and use a version string listed in first column" msgstr "и использовать строку версии, указанную в первом столбце" -#: src/Console/AppConsole.vala:271 +#: src/Console/AppConsole.vala:270 msgid "Command not specified" msgstr "Команда не указана" -#: src/Console/AppConsole.vala:272 +#: src/Console/AppConsole.vala:271 msgid "to list all commands" msgstr "чтобы перечислить все команды" -#: src/Console/AppConsole.vala:326 src/Gtk/SettingsDialog.vala:166 +#: src/Console/AppConsole.vala:325 src/Gtk/SettingsDialog.vala:165 msgid "Show" msgstr "Показать" -#: src/Console/AppConsole.vala:331 src/Console/AppConsole.vala:343 +#: src/Console/AppConsole.vala:330 src/Console/AppConsole.vala:342 #, c-format msgid "Kernel %s Available" msgstr "Доступно ядро %s" -#: src/Console/AppConsole.vala:333 src/Console/AppConsole.vala:345 -#: src/Gtk/MainWindow.vala:267 +#: src/Console/AppConsole.vala:332 src/Console/AppConsole.vala:344 +#: src/Gtk/MainWindow.vala:266 msgid "Install" msgstr "Установить" -#: src/Gtk/AboutWindow.vala:264 src/Gtk/AboutWindow.vala:281 +#: src/Gtk/AboutWindow.vala:162 src/Gtk/AboutWindow.vala:179 msgid "Credits" msgstr "Создатели" -#: src/Gtk/AboutWindow.vala:277 +#: src/Gtk/AboutWindow.vala:175 msgid "Back" msgstr "Назад" -#: src/Gtk/AboutWindow.vala:287 src/Gtk/TerminalWindow.vala:163 +#: src/Gtk/AboutWindow.vala:185 src/Gtk/TerminalWindow.vala:162 msgid "Close" msgstr "Закрыть" -#: src/Gtk/AboutWindow.vala:306 +#: src/Gtk/AboutWindow.vala:204 msgid "Authors" msgstr "Авторы" -#: src/Gtk/AboutWindow.vala:314 +#: src/Gtk/AboutWindow.vala:212 msgid "Contributions" msgstr "Взносы" -#: src/Gtk/AboutWindow.vala:322 +#: src/Gtk/AboutWindow.vala:220 msgid "Artists" msgstr "Художники" -#: src/Gtk/AboutWindow.vala:330 +#: src/Gtk/AboutWindow.vala:228 msgid "Translators" msgstr "Переводчики" -#: src/Gtk/AboutWindow.vala:338 +#: src/Gtk/AboutWindow.vala:236 msgid "Documenters" msgstr "Составители документации" -#: src/Gtk/AboutWindow.vala:346 +#: src/Gtk/AboutWindow.vala:244 msgid "Third Party Inclusions" msgstr "Включая сторонние инструменты" -#: src/Gtk/AppGtk.vala:137 +#: src/Gtk/AppGtk.vala:136 msgid "options" msgstr "параметры" -#: src/Gtk/AppGtk.vala:141 +#: src/Gtk/AppGtk.vala:140 msgid "Print debug information" msgstr "Распечатать отладочную информацию" -#: src/Gtk/AppGtk.vala:142 +#: src/Gtk/AppGtk.vala:141 msgid "Show all options" msgstr "Показать все параметры" -#: src/Gtk/MainWindow.vala:113 +#: src/Gtk/MainWindow.vala:112 msgid "Kernel" msgstr "Ядро" -#: src/Gtk/MainWindow.vala:143 +#: src/Gtk/MainWindow.vala:142 msgid "Status" msgstr "Состояние" -#: src/Gtk/MainWindow.vala:277 +#: src/Gtk/MainWindow.vala:276 msgid "Uninstall" msgstr "Удалить" -#: src/Gtk/MainWindow.vala:287 +#: src/Gtk/MainWindow.vala:286 msgid "Changes" msgstr "Изменения" -#: src/Gtk/MainWindow.vala:309 +#: src/Gtk/MainWindow.vala:308 msgid "Uninstall Old" msgstr "Удалить старые" -#: src/Gtk/MainWindow.vala:310 +#: src/Gtk/MainWindow.vala:309 msgid "Uninstall kernels older than running kernel" msgstr "Удалить более старшие установленные ядра, чем используемое" -#: src/Gtk/MainWindow.vala:315 +#: src/Gtk/MainWindow.vala:314 msgid "Reload" msgstr "Перезагрузить" -#: src/Gtk/MainWindow.vala:320 src/Gtk/SettingsDialog.vala:50 +#: src/Gtk/MainWindow.vala:319 src/Gtk/SettingsDialog.vala:49 msgid "Settings" msgstr "Настройки" -#: src/Gtk/MainWindow.vala:325 +#: src/Gtk/MainWindow.vala:324 msgid "About" msgstr "О программе" -#: src/Gtk/MainWindow.vala:330 +#: src/Gtk/MainWindow.vala:329 msgid "Exit" msgstr "Выход" -#: src/Gtk/MainWindow.vala:398 +#: src/Gtk/MainWindow.vala:397 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Программа обновления ядра для дистрибутивов на базе Ubuntu" -#: src/Gtk/MainWindow.vala:399 +#: src/Gtk/MainWindow.vala:398 msgid "Forked" msgstr "Форк" -#: src/Gtk/MainWindow.vala:399 +#: src/Gtk/MainWindow.vala:398 msgid "Original" msgstr "Оригинал" -#: src/Gtk/MainWindow.vala:437 +#: src/Gtk/MainWindow.vala:436 msgid "Updating kernels" msgstr "Обновление ядер" -#: src/Gtk/MainWindow.vala:508 +#: src/Gtk/MainWindow.vala:507 msgid "available" msgstr "доступно" -#: src/Gtk/MainWindow.vala:551 src/Gtk/MainWindow.vala:591 -#: src/Gtk/MainWindow.vala:625 +#: src/Gtk/MainWindow.vala:550 src/Gtk/MainWindow.vala:590 +#: src/Gtk/MainWindow.vala:624 msgid "DONE" msgstr "ГОТОВО" -#: src/Gtk/ProgressWindow.vala:128 src/Gtk/TerminalWindow.vala:153 +#: src/Gtk/ProgressWindow.vala:127 src/Gtk/TerminalWindow.vala:152 msgid "Cancel" msgstr "Отмена" -#: src/Gtk/SettingsDialog.vala:60 +#: src/Gtk/SettingsDialog.vala:59 msgid "Notification" msgstr "Уведомления" -#: src/Gtk/SettingsDialog.vala:67 +#: src/Gtk/SettingsDialog.vala:66 msgid "Notify if a major release is available" msgstr "Уведомлять, если доступно крупное обновление" -#: src/Gtk/SettingsDialog.vala:76 +#: src/Gtk/SettingsDialog.vala:75 msgid "Notify if a point release is available" msgstr "Уведомлять, если доступно небольшое обновление" -#: src/Gtk/SettingsDialog.vala:87 +#: src/Gtk/SettingsDialog.vala:86 #, fuzzy msgid "Seconds interval enabled for debugging" msgstr "(Разрешение интервалов в секундах для --debug)" -#: src/Gtk/SettingsDialog.vala:110 +#: src/Gtk/SettingsDialog.vala:109 msgid "Check every" msgstr "Проверять каждые" -#: src/Gtk/SettingsDialog.vala:135 +#: src/Gtk/SettingsDialog.vala:134 msgid "Hour(s)" msgstr "Час(ов)" -#: src/Gtk/SettingsDialog.vala:137 +#: src/Gtk/SettingsDialog.vala:136 msgid "Day(s)" msgstr "День(дней)" -#: src/Gtk/SettingsDialog.vala:139 +#: src/Gtk/SettingsDialog.vala:138 msgid "Week(s)" msgstr "Неделю(ли)" -#: src/Gtk/SettingsDialog.vala:142 +#: src/Gtk/SettingsDialog.vala:141 msgid "Second(s)" msgstr "Секунду(ды)" -#: src/Gtk/SettingsDialog.vala:148 +#: src/Gtk/SettingsDialog.vala:147 msgid "Filters" msgstr "Фильтры" -#: src/Gtk/SettingsDialog.vala:156 +#: src/Gtk/SettingsDialog.vala:155 msgid "Hide unstable and RC releases" msgstr "Скрыть нестабильные и релиз-кандидат версии" -#: src/Gtk/SettingsDialog.vala:178 +#: src/Gtk/SettingsDialog.vala:177 msgid "previous major versions" msgstr "предыдущие основные версии" -#: src/Gtk/SettingsDialog.vala:182 +#: src/Gtk/SettingsDialog.vala:181 msgid "Network" msgstr "Сеть" -#: src/Gtk/SettingsDialog.vala:193 +#: src/Gtk/SettingsDialog.vala:192 msgid "Internet connection timeout in" msgstr "Таймаут подключения к Интернету в" -#: src/Gtk/SettingsDialog.vala:205 +#: src/Gtk/SettingsDialog.vala:204 msgid "seconds" msgstr "секунд" -#: src/Gtk/SettingsDialog.vala:212 +#: src/Gtk/SettingsDialog.vala:211 msgid "Max concurrent downloads" msgstr "Максимальное количество одновременных загрузок" -#: src/Gtk/SettingsDialog.vala:226 +#: src/Gtk/SettingsDialog.vala:225 msgid "Proxy" msgstr "Прокси" -#: src/Gtk/l.gtk.vala:44 +#: src/Gtk/l.gtk.vala:43 msgid "Missing Icon" msgstr "Значок отсутствует" diff --git a/po/sv.po b/po/sv.po index d576757b..f7276b04 100644 --- a/po/sv.po +++ b/po/sv.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-14 10:07-0400\n" +"POT-Creation-Date: 2023-03-16 01:19-0400\n" "PO-Revision-Date: 2018-01-13 16:56+0100\n" "Last-Translator: Åke Engelbrektson \n" "Language-Team:Swedish\n" @@ -13,131 +13,136 @@ msgstr "" "X-Generator: Poedit 1.8.7.1\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: src/Common/LinuxKernel.vala:88 +#: src/Common/LinuxKernel.vala:87 msgid "Distribution" msgstr "Distribution" -#: src/Common/LinuxKernel.vala:103 +#: src/Common/LinuxKernel.vala:102 #, fuzzy msgid "Architecture" msgstr "Systemarkitektur" -#: src/Common/LinuxKernel.vala:278 +#: src/Common/LinuxKernel.vala:277 #, fuzzy msgid "Fetching individual kernel indexes" msgstr "Hämtar index för" -#: src/Common/LinuxKernel.vala:327 +#: src/Common/LinuxKernel.vala:326 msgid "Updating from" msgstr "" -#: src/Common/LinuxKernel.vala:344 src/Common/LinuxKernel.vala:897 +#: src/Common/LinuxKernel.vala:343 src/Common/LinuxKernel.vala:896 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:347 src/Common/LinuxKernel.vala:900 +#: src/Common/LinuxKernel.vala:346 src/Common/LinuxKernel.vala:899 msgid "FAILED" msgstr "" -#: src/Common/LinuxKernel.vala:761 +#: src/Common/LinuxKernel.vala:760 msgid "Packages Available" msgstr "Tillgängliga paket" -#: src/Common/LinuxKernel.vala:766 +#: src/Common/LinuxKernel.vala:765 msgid "Packages Installed" msgstr "Installerade paket" -#: src/Common/LinuxKernel.vala:779 src/lib/TeeJee.FileSystem.vala:121 +#: src/Common/LinuxKernel.vala:778 src/lib/TeeJee.FileSystem.vala:121 msgid "File not found" msgstr "Filen kan inte hittas" -#: src/Common/LinuxKernel.vala:843 +#: src/Common/LinuxKernel.vala:842 msgid "Available Kernels" msgstr "Tillgängliga kärnor" -#: src/Common/LinuxKernel.vala:850 src/Gtk/MainWindow.vala:156 +#: src/Common/LinuxKernel.vala:849 src/Gtk/MainWindow.vala:155 msgid "Installed" msgstr "Installerad" -#: src/Common/LinuxKernel.vala:850 src/Gtk/MainWindow.vala:156 -#: src/Gtk/MainWindow.vala:499 src/Gtk/MainWindow.vala:512 +#: src/Common/LinuxKernel.vala:849 src/Gtk/MainWindow.vala:155 +#: src/Gtk/MainWindow.vala:498 src/Gtk/MainWindow.vala:511 msgid "Running" msgstr "Körs" -#: src/Common/LinuxKernel.vala:885 +#: src/Common/LinuxKernel.vala:884 msgid "Downloading" msgstr "Laddar ner" -#: src/Common/LinuxKernel.vala:913 +#: src/Common/LinuxKernel.vala:912 #, fuzzy msgid "is already installed." msgstr "Denna kärna är redan installerad" -#: src/Common/LinuxKernel.vala:943 +#: src/Common/LinuxKernel.vala:942 #, fuzzy msgid "Uninstalling selected kernels" msgstr "Installera specificerad kärna" -#: src/Common/LinuxKernel.vala:949 +#: src/Common/LinuxKernel.vala:948 msgid "requested" msgstr "" -#: src/Common/LinuxKernel.vala:952 +#: src/Common/LinuxKernel.vala:951 #, fuzzy msgid "not uninstalling the currently running kernel" msgstr "Installera specificerad kärna" -#: src/Common/LinuxKernel.vala:968 +#: src/Common/LinuxKernel.vala:967 msgid "found" msgstr "" -#: src/Common/LinuxKernel.vala:971 +#: src/Common/LinuxKernel.vala:970 #, fuzzy msgid "No packages to un-install!" msgstr "Installerade paket" -#: src/Common/LinuxKernel.vala:1019 +#: src/Common/LinuxKernel.vala:1018 #, fuzzy msgid "Could not find running kernel in list" msgstr "Kunde inte hitta efterfrågad version" -#: src/Common/LinuxKernel.vala:1024 +#: src/Common/LinuxKernel.vala:1023 #, fuzzy msgid "Could not find any kernels to uninstall" msgstr "Välj kärnor för borttagning" -#: src/Common/LinuxKernel.vala:1032 +#: src/Common/LinuxKernel.vala:1031 #, fuzzy msgid "The following kernels will be uninstalled" msgstr "Denna kärna är redan installerad" -#: src/Common/LinuxKernel.vala:1036 +#: src/Common/LinuxKernel.vala:1035 msgid "Continue ?" msgstr "" -#: src/Common/LinuxKernel.vala:1058 src/Console/AppConsole.vala:286 +#: src/Common/LinuxKernel.vala:1057 src/Console/AppConsole.vala:285 msgid "Latest update" msgstr "" -#: src/Common/LinuxKernel.vala:1069 src/Console/AppConsole.vala:293 +#: src/Common/LinuxKernel.vala:1068 src/Console/AppConsole.vala:292 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:1077 src/Console/AppConsole.vala:298 -#: src/Console/AppConsole.vala:353 +#: src/Common/LinuxKernel.vala:1076 src/Console/AppConsole.vala:297 +#: src/Console/AppConsole.vala:352 msgid "No updates found" msgstr "Inga uppdateringar hittades" -#: src/Common/LinuxKernel.vala:1086 +#: src/Common/LinuxKernel.vala:1085 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "" -#: src/Common/Main.vala:271 +#: src/Common/Main.vala:275 msgid "Called from" msgstr "" -#: src/Common/Main.vala:307 +#: src/Common/Main.vala:276 +msgid "" +"This file is over-written and executed again whenever settings are saved in" +msgstr "" + +#: src/Common/Main.vala:308 #, fuzzy msgid "Notifications are disabled" msgstr "Avisering" @@ -147,346 +152,346 @@ msgstr "Avisering" msgid "File not found: %s" msgstr "Filen kan inte hittas" -#: src/Console/AppConsole.vala:49 src/Gtk/AppGtk.vala:137 +#: src/Console/AppConsole.vala:48 src/Gtk/AppGtk.vala:136 msgid "Syntax" msgstr "Syntax" -#: src/Console/AppConsole.vala:51 +#: src/Console/AppConsole.vala:50 msgid "Commands" msgstr "" -#: src/Console/AppConsole.vala:53 +#: src/Console/AppConsole.vala:52 msgid "Check for kernel updates" msgstr "Sök efter kärnuppdateringar" -#: src/Console/AppConsole.vala:54 +#: src/Console/AppConsole.vala:53 #, fuzzy msgid "Check for kernel updates and notify current user" msgstr "Sök efter kärnuppdateringar" -#: src/Console/AppConsole.vala:55 +#: src/Console/AppConsole.vala:54 msgid "List all available mainline kernels" msgstr "Lista alla tillgängliga kärnor" -#: src/Console/AppConsole.vala:56 +#: src/Console/AppConsole.vala:55 #, fuzzy msgid "List installed kernels" msgstr "Lista tillgängliga kärnor" -#: src/Console/AppConsole.vala:57 +#: src/Console/AppConsole.vala:56 #, fuzzy msgid "Install latest mainline kernel" msgstr "Installera specificerad kärna" -#: src/Console/AppConsole.vala:58 +#: src/Console/AppConsole.vala:57 msgid "Install latest point update for current series" msgstr "" -#: src/Console/AppConsole.vala:59 +#: src/Console/AppConsole.vala:58 msgid "Install specified mainline kernel" msgstr "Installera specificerad kärna" -#: src/Console/AppConsole.vala:60 +#: src/Console/AppConsole.vala:59 #, fuzzy msgid "Uninstall specified kernel" msgstr "Installera specificerad kärna" -#: src/Console/AppConsole.vala:61 +#: src/Console/AppConsole.vala:60 #, fuzzy msgid "Uninstall kernels older than the latest installed" msgstr "Ta bort installerade kärnor äldre än den som körs" -#: src/Console/AppConsole.vala:62 +#: src/Console/AppConsole.vala:61 #, fuzzy msgid "Download specified kernels" msgstr "Ladda ner paket för specificerad kärna" -#: src/Console/AppConsole.vala:63 +#: src/Console/AppConsole.vala:62 msgid "Delete cached info about available kernels" msgstr "" -#: src/Console/AppConsole.vala:65 src/Gtk/AppGtk.vala:139 +#: src/Console/AppConsole.vala:64 src/Gtk/AppGtk.vala:138 msgid "Options" msgstr "Alternativ" -#: src/Console/AppConsole.vala:67 +#: src/Console/AppConsole.vala:66 #, fuzzy msgid "Include unstable and RC releases" msgstr "Dölj instabila- och RC-publiceringar" -#: src/Console/AppConsole.vala:68 +#: src/Console/AppConsole.vala:67 #, fuzzy msgid "Exclude unstable and RC releases" msgstr "Dölj instabila- och RC-publiceringar" -#: src/Console/AppConsole.vala:69 +#: src/Console/AppConsole.vala:68 msgid "Enable verbose debugging output" msgstr "" -#: src/Console/AppConsole.vala:70 +#: src/Console/AppConsole.vala:69 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "" -#: src/Console/AppConsole.vala:73 +#: src/Console/AppConsole.vala:72 msgid "A version string taken from the output of --list" msgstr "" -#: src/Console/AppConsole.vala:74 +#: src/Console/AppConsole.vala:73 msgid "One or more, comma-seperated" msgstr "" -#: src/Console/AppConsole.vala:75 +#: src/Console/AppConsole.vala:74 #, fuzzy msgid "The currently running kernel will always be ignored" msgstr "Denna kärna är redan installerad" -#: src/Console/AppConsole.vala:153 src/Gtk/AppGtk.vala:123 +#: src/Console/AppConsole.vala:152 src/Gtk/AppGtk.vala:122 msgid "Unknown option" msgstr "Okänt alternativ" -#: src/Console/AppConsole.vala:154 src/Console/AppConsole.vala:244 -#: src/Console/AppConsole.vala:272 +#: src/Console/AppConsole.vala:153 src/Console/AppConsole.vala:243 +#: src/Console/AppConsole.vala:271 #, fuzzy msgid "Run" msgstr "Körs" -#: src/Console/AppConsole.vala:154 +#: src/Console/AppConsole.vala:153 #, fuzzy msgid "to list all options" msgstr "Visa alla alternativ" -#: src/Console/AppConsole.vala:212 src/Console/AppConsole.vala:252 +#: src/Console/AppConsole.vala:211 src/Console/AppConsole.vala:251 msgid "No kernels specified" msgstr "" -#: src/Console/AppConsole.vala:218 +#: src/Console/AppConsole.vala:217 msgid "Multiple kernels selected for installation. Select only one." msgstr "Flera kärnor valda för installation. Välj endast en." -#: src/Console/AppConsole.vala:241 +#: src/Console/AppConsole.vala:240 msgid "Could not find requested version" msgstr "Kunde inte hitta efterfrågad version" -#: src/Console/AppConsole.vala:244 +#: src/Console/AppConsole.vala:243 msgid "and use a version string listed in first column" msgstr "" -#: src/Console/AppConsole.vala:271 +#: src/Console/AppConsole.vala:270 msgid "Command not specified" msgstr "" -#: src/Console/AppConsole.vala:272 +#: src/Console/AppConsole.vala:271 #, fuzzy msgid "to list all commands" msgstr "Visa alla alternativ" -#: src/Console/AppConsole.vala:326 src/Gtk/SettingsDialog.vala:166 +#: src/Console/AppConsole.vala:325 src/Gtk/SettingsDialog.vala:165 msgid "Show" msgstr "" -#: src/Console/AppConsole.vala:331 src/Console/AppConsole.vala:343 +#: src/Console/AppConsole.vala:330 src/Console/AppConsole.vala:342 #, fuzzy, c-format msgid "Kernel %s Available" msgstr "Tillgängliga paket" -#: src/Console/AppConsole.vala:333 src/Console/AppConsole.vala:345 -#: src/Gtk/MainWindow.vala:267 +#: src/Console/AppConsole.vala:332 src/Console/AppConsole.vala:344 +#: src/Gtk/MainWindow.vala:266 msgid "Install" msgstr "Installera" -#: src/Gtk/AboutWindow.vala:264 src/Gtk/AboutWindow.vala:281 +#: src/Gtk/AboutWindow.vala:162 src/Gtk/AboutWindow.vala:179 msgid "Credits" msgstr "Tack" -#: src/Gtk/AboutWindow.vala:277 +#: src/Gtk/AboutWindow.vala:175 msgid "Back" msgstr "Tillbaka" -#: src/Gtk/AboutWindow.vala:287 src/Gtk/TerminalWindow.vala:163 +#: src/Gtk/AboutWindow.vala:185 src/Gtk/TerminalWindow.vala:162 msgid "Close" msgstr "Stäng" -#: src/Gtk/AboutWindow.vala:306 +#: src/Gtk/AboutWindow.vala:204 msgid "Authors" msgstr "Utvecklare" -#: src/Gtk/AboutWindow.vala:314 +#: src/Gtk/AboutWindow.vala:212 msgid "Contributions" msgstr "Bidrag" -#: src/Gtk/AboutWindow.vala:322 +#: src/Gtk/AboutWindow.vala:220 msgid "Artists" msgstr "Artister" -#: src/Gtk/AboutWindow.vala:330 +#: src/Gtk/AboutWindow.vala:228 msgid "Translators" msgstr "Översättare" -#: src/Gtk/AboutWindow.vala:338 +#: src/Gtk/AboutWindow.vala:236 msgid "Documenters" msgstr "Dokumentalister" -#: src/Gtk/AboutWindow.vala:346 +#: src/Gtk/AboutWindow.vala:244 #, fuzzy msgid "Third Party Inclusions" msgstr "Tredjepartsverktyg" -#: src/Gtk/AppGtk.vala:137 +#: src/Gtk/AppGtk.vala:136 #, fuzzy msgid "options" msgstr "Alternativ" -#: src/Gtk/AppGtk.vala:141 +#: src/Gtk/AppGtk.vala:140 msgid "Print debug information" msgstr "Skriv ut felsökningsinformation" -#: src/Gtk/AppGtk.vala:142 +#: src/Gtk/AppGtk.vala:141 msgid "Show all options" msgstr "Visa alla alternativ" -#: src/Gtk/MainWindow.vala:113 +#: src/Gtk/MainWindow.vala:112 msgid "Kernel" msgstr "Kärna" -#: src/Gtk/MainWindow.vala:143 +#: src/Gtk/MainWindow.vala:142 msgid "Status" msgstr "Status" -#: src/Gtk/MainWindow.vala:277 +#: src/Gtk/MainWindow.vala:276 #, fuzzy msgid "Uninstall" msgstr "Installera" -#: src/Gtk/MainWindow.vala:287 +#: src/Gtk/MainWindow.vala:286 msgid "Changes" msgstr "Ändringar" -#: src/Gtk/MainWindow.vala:309 +#: src/Gtk/MainWindow.vala:308 #, fuzzy msgid "Uninstall Old" msgstr "Avinstallation slutförd" -#: src/Gtk/MainWindow.vala:310 +#: src/Gtk/MainWindow.vala:309 #, fuzzy msgid "Uninstall kernels older than running kernel" msgstr "Ta bort installerade kärnor äldre än den som körs" -#: src/Gtk/MainWindow.vala:315 +#: src/Gtk/MainWindow.vala:314 msgid "Reload" msgstr "" -#: src/Gtk/MainWindow.vala:320 src/Gtk/SettingsDialog.vala:50 +#: src/Gtk/MainWindow.vala:319 src/Gtk/SettingsDialog.vala:49 msgid "Settings" msgstr "Inställningar" -#: src/Gtk/MainWindow.vala:325 +#: src/Gtk/MainWindow.vala:324 msgid "About" msgstr "Om" -#: src/Gtk/MainWindow.vala:330 +#: src/Gtk/MainWindow.vala:329 msgid "Exit" msgstr "" -#: src/Gtk/MainWindow.vala:398 +#: src/Gtk/MainWindow.vala:397 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Kärnuppgraderingsverktyg för Ubuntu-baserade distributioner" -#: src/Gtk/MainWindow.vala:399 +#: src/Gtk/MainWindow.vala:398 msgid "Forked" msgstr "" -#: src/Gtk/MainWindow.vala:399 +#: src/Gtk/MainWindow.vala:398 msgid "Original" msgstr "" -#: src/Gtk/MainWindow.vala:437 +#: src/Gtk/MainWindow.vala:436 msgid "Updating kernels" msgstr "" -#: src/Gtk/MainWindow.vala:508 +#: src/Gtk/MainWindow.vala:507 #, fuzzy msgid "available" msgstr "Tillgängliga paket" -#: src/Gtk/MainWindow.vala:551 src/Gtk/MainWindow.vala:591 -#: src/Gtk/MainWindow.vala:625 +#: src/Gtk/MainWindow.vala:550 src/Gtk/MainWindow.vala:590 +#: src/Gtk/MainWindow.vala:624 msgid "DONE" msgstr "" -#: src/Gtk/ProgressWindow.vala:128 src/Gtk/TerminalWindow.vala:153 +#: src/Gtk/ProgressWindow.vala:127 src/Gtk/TerminalWindow.vala:152 msgid "Cancel" msgstr "Avbryt" -#: src/Gtk/SettingsDialog.vala:60 +#: src/Gtk/SettingsDialog.vala:59 msgid "Notification" msgstr "Avisering" -#: src/Gtk/SettingsDialog.vala:67 +#: src/Gtk/SettingsDialog.vala:66 msgid "Notify if a major release is available" msgstr "Meddela om en ny (stor) uppdatering finns tillgänglig" -#: src/Gtk/SettingsDialog.vala:76 +#: src/Gtk/SettingsDialog.vala:75 msgid "Notify if a point release is available" msgstr "Meddela om en ny (mindre) uppdatering finns tillgänglig" -#: src/Gtk/SettingsDialog.vala:87 +#: src/Gtk/SettingsDialog.vala:86 msgid "Seconds interval enabled for debugging" msgstr "" -#: src/Gtk/SettingsDialog.vala:110 +#: src/Gtk/SettingsDialog.vala:109 msgid "Check every" msgstr "Kontrollera varje" -#: src/Gtk/SettingsDialog.vala:135 +#: src/Gtk/SettingsDialog.vala:134 msgid "Hour(s)" msgstr "Timma(r)" -#: src/Gtk/SettingsDialog.vala:137 +#: src/Gtk/SettingsDialog.vala:136 msgid "Day(s)" msgstr "Dag(ar)" -#: src/Gtk/SettingsDialog.vala:139 +#: src/Gtk/SettingsDialog.vala:138 msgid "Week(s)" msgstr "Veckor" -#: src/Gtk/SettingsDialog.vala:142 +#: src/Gtk/SettingsDialog.vala:141 msgid "Second(s)" msgstr "" -#: src/Gtk/SettingsDialog.vala:148 +#: src/Gtk/SettingsDialog.vala:147 msgid "Filters" msgstr "" -#: src/Gtk/SettingsDialog.vala:156 +#: src/Gtk/SettingsDialog.vala:155 msgid "Hide unstable and RC releases" msgstr "Dölj instabila- och RC-publiceringar" -#: src/Gtk/SettingsDialog.vala:178 +#: src/Gtk/SettingsDialog.vala:177 msgid "previous major versions" msgstr "" -#: src/Gtk/SettingsDialog.vala:182 +#: src/Gtk/SettingsDialog.vala:181 msgid "Network" msgstr "" -#: src/Gtk/SettingsDialog.vala:193 +#: src/Gtk/SettingsDialog.vala:192 #, fuzzy msgid "Internet connection timeout in" msgstr "Internetuppkopplingen är inte aktiv" -#: src/Gtk/SettingsDialog.vala:205 +#: src/Gtk/SettingsDialog.vala:204 msgid "seconds" msgstr "" -#: src/Gtk/SettingsDialog.vala:212 +#: src/Gtk/SettingsDialog.vala:211 msgid "Max concurrent downloads" msgstr "" -#: src/Gtk/SettingsDialog.vala:226 +#: src/Gtk/SettingsDialog.vala:225 msgid "Proxy" msgstr "" -#: src/Gtk/l.gtk.vala:44 +#: src/Gtk/l.gtk.vala:43 msgid "Missing Icon" msgstr "Saknad ikon" diff --git a/po/tr.po b/po/tr.po index a313db91..12a25b80 100644 --- a/po/tr.po +++ b/po/tr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-14 10:07-0400\n" +"POT-Creation-Date: 2023-03-16 01:19-0400\n" "PO-Revision-Date: 2022-08-06 16:48+0300\n" "Last-Translator: Sabri Ünal \n" "Language-Team: Turkish\n" @@ -13,130 +13,135 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Poedit 3.1.1\n" -#: src/Common/LinuxKernel.vala:88 +#: src/Common/LinuxKernel.vala:87 msgid "Distribution" msgstr "Dağıtım" -#: src/Common/LinuxKernel.vala:103 +#: src/Common/LinuxKernel.vala:102 msgid "Architecture" msgstr "Sistem mimarisi" -#: src/Common/LinuxKernel.vala:278 +#: src/Common/LinuxKernel.vala:277 #, fuzzy msgid "Fetching individual kernel indexes" msgstr "İçerik dizini alınıyor..." -#: src/Common/LinuxKernel.vala:327 +#: src/Common/LinuxKernel.vala:326 msgid "Updating from" msgstr "" -#: src/Common/LinuxKernel.vala:344 src/Common/LinuxKernel.vala:897 +#: src/Common/LinuxKernel.vala:343 src/Common/LinuxKernel.vala:896 msgid "OK" msgstr "Tamam" -#: src/Common/LinuxKernel.vala:347 src/Common/LinuxKernel.vala:900 +#: src/Common/LinuxKernel.vala:346 src/Common/LinuxKernel.vala:899 msgid "FAILED" msgstr "" -#: src/Common/LinuxKernel.vala:761 +#: src/Common/LinuxKernel.vala:760 msgid "Packages Available" msgstr "Mevcut Paketler" -#: src/Common/LinuxKernel.vala:766 +#: src/Common/LinuxKernel.vala:765 msgid "Packages Installed" msgstr "Kurulu Paketler" -#: src/Common/LinuxKernel.vala:779 src/lib/TeeJee.FileSystem.vala:121 +#: src/Common/LinuxKernel.vala:778 src/lib/TeeJee.FileSystem.vala:121 msgid "File not found" msgstr "Dosya bulunamadı" -#: src/Common/LinuxKernel.vala:843 +#: src/Common/LinuxKernel.vala:842 msgid "Available Kernels" msgstr "Mevcut Çekirdekler" -#: src/Common/LinuxKernel.vala:850 src/Gtk/MainWindow.vala:156 +#: src/Common/LinuxKernel.vala:849 src/Gtk/MainWindow.vala:155 msgid "Installed" msgstr "Kurulu" -#: src/Common/LinuxKernel.vala:850 src/Gtk/MainWindow.vala:156 -#: src/Gtk/MainWindow.vala:499 src/Gtk/MainWindow.vala:512 +#: src/Common/LinuxKernel.vala:849 src/Gtk/MainWindow.vala:155 +#: src/Gtk/MainWindow.vala:498 src/Gtk/MainWindow.vala:511 msgid "Running" msgstr "Çalışıyor" -#: src/Common/LinuxKernel.vala:885 +#: src/Common/LinuxKernel.vala:884 msgid "Downloading" msgstr "İndiriliyor" -#: src/Common/LinuxKernel.vala:913 +#: src/Common/LinuxKernel.vala:912 #, fuzzy msgid "is already installed." msgstr "Bu çekirdek zaten kurulu." -#: src/Common/LinuxKernel.vala:943 +#: src/Common/LinuxKernel.vala:942 #, fuzzy msgid "Uninstalling selected kernels" msgstr "Belirtilen çekirdeğini kaldır" -#: src/Common/LinuxKernel.vala:949 +#: src/Common/LinuxKernel.vala:948 msgid "requested" msgstr "" -#: src/Common/LinuxKernel.vala:952 +#: src/Common/LinuxKernel.vala:951 #, fuzzy msgid "not uninstalling the currently running kernel" msgstr "Belirtilen çekirdeğini kaldır" -#: src/Common/LinuxKernel.vala:968 +#: src/Common/LinuxKernel.vala:967 msgid "found" msgstr "" -#: src/Common/LinuxKernel.vala:971 +#: src/Common/LinuxKernel.vala:970 #, fuzzy msgid "No packages to un-install!" msgstr "Kurulu Paketler" -#: src/Common/LinuxKernel.vala:1019 +#: src/Common/LinuxKernel.vala:1018 #, fuzzy msgid "Could not find running kernel in list" msgstr "Çalışan sürüm listede bulunamadı!" -#: src/Common/LinuxKernel.vala:1024 +#: src/Common/LinuxKernel.vala:1023 msgid "Could not find any kernels to uninstall" msgstr "Kaldırılacak çekirdek bulunamadı" -#: src/Common/LinuxKernel.vala:1032 +#: src/Common/LinuxKernel.vala:1031 #, fuzzy msgid "The following kernels will be uninstalled" msgstr "Aşağıdaki çekirdekler kaldırılacak:" -#: src/Common/LinuxKernel.vala:1036 +#: src/Common/LinuxKernel.vala:1035 msgid "Continue ?" msgstr "Devam edilsin mi?" -#: src/Common/LinuxKernel.vala:1058 src/Console/AppConsole.vala:286 +#: src/Common/LinuxKernel.vala:1057 src/Console/AppConsole.vala:285 msgid "Latest update" msgstr "Son güncelleme" # Point burada point release anlamında kullanılıyor. Örneğin 5.10.x sayısının en sonundaki x rakamı point release/nokta sürüm oluyor. -#: src/Common/LinuxKernel.vala:1069 src/Console/AppConsole.vala:293 +#: src/Common/LinuxKernel.vala:1068 src/Console/AppConsole.vala:292 msgid "Latest point update" msgstr "Son nokta güncellemesi" -#: src/Common/LinuxKernel.vala:1077 src/Console/AppConsole.vala:298 -#: src/Console/AppConsole.vala:353 +#: src/Common/LinuxKernel.vala:1076 src/Console/AppConsole.vala:297 +#: src/Console/AppConsole.vala:352 msgid "No updates found" msgstr "Güncelleme bulunamadı" -#: src/Common/LinuxKernel.vala:1086 +#: src/Common/LinuxKernel.vala:1085 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Linux Çekirdek Sürümü %s Kurulsun mu? (e/h): " -#: src/Common/Main.vala:271 +#: src/Common/Main.vala:275 msgid "Called from" msgstr "Çağrı konumu" -#: src/Common/Main.vala:307 +#: src/Common/Main.vala:276 +msgid "" +"This file is over-written and executed again whenever settings are saved in" +msgstr "" + +#: src/Common/Main.vala:308 msgid "Notifications are disabled" msgstr "Bildirimler devre dışı bırakılmış" @@ -145,334 +150,334 @@ msgstr "Bildirimler devre dışı bırakılmış" msgid "File not found: %s" msgstr "Dosya bulunamadı" -#: src/Console/AppConsole.vala:49 src/Gtk/AppGtk.vala:137 +#: src/Console/AppConsole.vala:48 src/Gtk/AppGtk.vala:136 msgid "Syntax" msgstr "Sözdizimi" -#: src/Console/AppConsole.vala:51 +#: src/Console/AppConsole.vala:50 msgid "Commands" msgstr "Komutlar" -#: src/Console/AppConsole.vala:53 +#: src/Console/AppConsole.vala:52 msgid "Check for kernel updates" msgstr "Çekirdek güncellemelerini kontrol et" -#: src/Console/AppConsole.vala:54 +#: src/Console/AppConsole.vala:53 msgid "Check for kernel updates and notify current user" msgstr "Çekirdek güncellemelerini kontrol et ve mevcut kullanıcıyı uyar" -#: src/Console/AppConsole.vala:55 +#: src/Console/AppConsole.vala:54 msgid "List all available mainline kernels" msgstr "Tüm mainline çekirdeklerini listele" -#: src/Console/AppConsole.vala:56 +#: src/Console/AppConsole.vala:55 msgid "List installed kernels" msgstr "Kurulu çekirdekleri listele" -#: src/Console/AppConsole.vala:57 +#: src/Console/AppConsole.vala:56 msgid "Install latest mainline kernel" msgstr "En son mainline çekirdeğini kur" -#: src/Console/AppConsole.vala:58 +#: src/Console/AppConsole.vala:57 msgid "Install latest point update for current series" msgstr "Mevcut çekirdek serisi için en son nokta güncellemesini kur" -#: src/Console/AppConsole.vala:59 +#: src/Console/AppConsole.vala:58 msgid "Install specified mainline kernel" msgstr "Belirtilen mainline çekirdeğini kur" -#: src/Console/AppConsole.vala:60 +#: src/Console/AppConsole.vala:59 msgid "Uninstall specified kernel" msgstr "Belirtilen çekirdeğini kaldır" -#: src/Console/AppConsole.vala:61 +#: src/Console/AppConsole.vala:60 #, fuzzy msgid "Uninstall kernels older than the latest installed" msgstr "Çalışan çekirdekten daha eski çekirdekleri kaldır" -#: src/Console/AppConsole.vala:62 +#: src/Console/AppConsole.vala:61 msgid "Download specified kernels" msgstr "Belirtilen çekirdekleri indir" -#: src/Console/AppConsole.vala:63 +#: src/Console/AppConsole.vala:62 msgid "Delete cached info about available kernels" msgstr "" -#: src/Console/AppConsole.vala:65 src/Gtk/AppGtk.vala:139 +#: src/Console/AppConsole.vala:64 src/Gtk/AppGtk.vala:138 msgid "Options" msgstr "Seçenekler" -#: src/Console/AppConsole.vala:67 +#: src/Console/AppConsole.vala:66 msgid "Include unstable and RC releases" msgstr "Kararsız ve RC sürümleri dahil et" -#: src/Console/AppConsole.vala:68 +#: src/Console/AppConsole.vala:67 #, fuzzy msgid "Exclude unstable and RC releases" msgstr "Kararsız ve RC sürümleri dahil et" -#: src/Console/AppConsole.vala:69 +#: src/Console/AppConsole.vala:68 msgid "Enable verbose debugging output" msgstr "Ayrıntılı hata ayıklama çıktısını etkinleştir" -#: src/Console/AppConsole.vala:70 +#: src/Console/AppConsole.vala:69 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "Tüm istemler için Evet'i kabul edin (etkileşimsiz kip)" -#: src/Console/AppConsole.vala:73 +#: src/Console/AppConsole.vala:72 msgid "A version string taken from the output of --list" msgstr "--list çıktısından alınan sürüm dizgesi" -#: src/Console/AppConsole.vala:74 +#: src/Console/AppConsole.vala:73 msgid "One or more, comma-seperated" msgstr "" -#: src/Console/AppConsole.vala:75 +#: src/Console/AppConsole.vala:74 #, fuzzy msgid "The currently running kernel will always be ignored" msgstr "Aşağıdaki çekirdekler kaldırılacak:" -#: src/Console/AppConsole.vala:153 src/Gtk/AppGtk.vala:123 +#: src/Console/AppConsole.vala:152 src/Gtk/AppGtk.vala:122 msgid "Unknown option" msgstr "Bilinmeyen seçenek" -#: src/Console/AppConsole.vala:154 src/Console/AppConsole.vala:244 -#: src/Console/AppConsole.vala:272 +#: src/Console/AppConsole.vala:153 src/Console/AppConsole.vala:243 +#: src/Console/AppConsole.vala:271 msgid "Run" msgstr "Çalıştır" -#: src/Console/AppConsole.vala:154 +#: src/Console/AppConsole.vala:153 msgid "to list all options" msgstr "tüm seçenekleri listele" -#: src/Console/AppConsole.vala:212 src/Console/AppConsole.vala:252 +#: src/Console/AppConsole.vala:211 src/Console/AppConsole.vala:251 msgid "No kernels specified" msgstr "Çekirdek belirtilmedi" -#: src/Console/AppConsole.vala:218 +#: src/Console/AppConsole.vala:217 msgid "Multiple kernels selected for installation. Select only one." msgstr "Kurulum için birden fazla çekirdek seçildi. Sadece bir tane seçiniz." -#: src/Console/AppConsole.vala:241 +#: src/Console/AppConsole.vala:240 msgid "Could not find requested version" msgstr "İstenen sürüm bulunamadı" -#: src/Console/AppConsole.vala:244 +#: src/Console/AppConsole.vala:243 msgid "and use a version string listed in first column" msgstr "ve ilk sütunda listelenen bir sürüm dizgesini kullanın" -#: src/Console/AppConsole.vala:271 +#: src/Console/AppConsole.vala:270 msgid "Command not specified" msgstr "Komut belirtilmedi" -#: src/Console/AppConsole.vala:272 +#: src/Console/AppConsole.vala:271 msgid "to list all commands" msgstr "tüm komutları listele" -#: src/Console/AppConsole.vala:326 src/Gtk/SettingsDialog.vala:166 +#: src/Console/AppConsole.vala:325 src/Gtk/SettingsDialog.vala:165 msgid "Show" msgstr "Göster" -#: src/Console/AppConsole.vala:331 src/Console/AppConsole.vala:343 +#: src/Console/AppConsole.vala:330 src/Console/AppConsole.vala:342 #, c-format msgid "Kernel %s Available" msgstr "Çekirdek %s Kullanılabilir" -#: src/Console/AppConsole.vala:333 src/Console/AppConsole.vala:345 -#: src/Gtk/MainWindow.vala:267 +#: src/Console/AppConsole.vala:332 src/Console/AppConsole.vala:344 +#: src/Gtk/MainWindow.vala:266 msgid "Install" msgstr "Kur" -#: src/Gtk/AboutWindow.vala:264 src/Gtk/AboutWindow.vala:281 +#: src/Gtk/AboutWindow.vala:162 src/Gtk/AboutWindow.vala:179 msgid "Credits" msgstr "Hazırlayanlar" -#: src/Gtk/AboutWindow.vala:277 +#: src/Gtk/AboutWindow.vala:175 msgid "Back" msgstr "Geri" -#: src/Gtk/AboutWindow.vala:287 src/Gtk/TerminalWindow.vala:163 +#: src/Gtk/AboutWindow.vala:185 src/Gtk/TerminalWindow.vala:162 msgid "Close" msgstr "Kapat" -#: src/Gtk/AboutWindow.vala:306 +#: src/Gtk/AboutWindow.vala:204 msgid "Authors" msgstr "Yazar" -#: src/Gtk/AboutWindow.vala:314 +#: src/Gtk/AboutWindow.vala:212 msgid "Contributions" msgstr "Destek verenler" -#: src/Gtk/AboutWindow.vala:322 +#: src/Gtk/AboutWindow.vala:220 msgid "Artists" msgstr "Sanatçılar" -#: src/Gtk/AboutWindow.vala:330 +#: src/Gtk/AboutWindow.vala:228 msgid "Translators" msgstr "Çevirenler" -#: src/Gtk/AboutWindow.vala:338 +#: src/Gtk/AboutWindow.vala:236 msgid "Documenters" msgstr "Belgelendirenler" -#: src/Gtk/AboutWindow.vala:346 +#: src/Gtk/AboutWindow.vala:244 msgid "Third Party Inclusions" msgstr "Üçüncü Taraf Eklemeler" -#: src/Gtk/AppGtk.vala:137 +#: src/Gtk/AppGtk.vala:136 #, fuzzy msgid "options" msgstr "Seçenekler" -#: src/Gtk/AppGtk.vala:141 +#: src/Gtk/AppGtk.vala:140 msgid "Print debug information" msgstr "Hata ayıklama bilgisini yazdır" -#: src/Gtk/AppGtk.vala:142 +#: src/Gtk/AppGtk.vala:141 msgid "Show all options" msgstr "Tüm seçenekleri göster" -#: src/Gtk/MainWindow.vala:113 +#: src/Gtk/MainWindow.vala:112 msgid "Kernel" msgstr "Çekirdek" -#: src/Gtk/MainWindow.vala:143 +#: src/Gtk/MainWindow.vala:142 msgid "Status" msgstr "Durum" -#: src/Gtk/MainWindow.vala:277 +#: src/Gtk/MainWindow.vala:276 msgid "Uninstall" msgstr "Kaldır" -#: src/Gtk/MainWindow.vala:287 +#: src/Gtk/MainWindow.vala:286 msgid "Changes" msgstr "Değişiklikler" -#: src/Gtk/MainWindow.vala:309 +#: src/Gtk/MainWindow.vala:308 msgid "Uninstall Old" msgstr "Eskileri Kaldır" -#: src/Gtk/MainWindow.vala:310 +#: src/Gtk/MainWindow.vala:309 msgid "Uninstall kernels older than running kernel" msgstr "Çalışan çekirdekten daha eski çekirdekleri kaldır" -#: src/Gtk/MainWindow.vala:315 +#: src/Gtk/MainWindow.vala:314 msgid "Reload" msgstr "" -#: src/Gtk/MainWindow.vala:320 src/Gtk/SettingsDialog.vala:50 +#: src/Gtk/MainWindow.vala:319 src/Gtk/SettingsDialog.vala:49 msgid "Settings" msgstr "Ayarlar" -#: src/Gtk/MainWindow.vala:325 +#: src/Gtk/MainWindow.vala:324 msgid "About" msgstr "Hakkında" -#: src/Gtk/MainWindow.vala:330 +#: src/Gtk/MainWindow.vala:329 msgid "Exit" msgstr "" -#: src/Gtk/MainWindow.vala:398 +#: src/Gtk/MainWindow.vala:397 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Ubuntu tabanlı dağıtımlar için çekirdek güncelleme aracı" -#: src/Gtk/MainWindow.vala:399 +#: src/Gtk/MainWindow.vala:398 msgid "Forked" msgstr "Çatallandı" -#: src/Gtk/MainWindow.vala:399 +#: src/Gtk/MainWindow.vala:398 msgid "Original" msgstr "Özgün" -#: src/Gtk/MainWindow.vala:437 +#: src/Gtk/MainWindow.vala:436 msgid "Updating kernels" msgstr "" -#: src/Gtk/MainWindow.vala:508 +#: src/Gtk/MainWindow.vala:507 msgid "available" msgstr "mevcut" -#: src/Gtk/MainWindow.vala:551 src/Gtk/MainWindow.vala:591 -#: src/Gtk/MainWindow.vala:625 +#: src/Gtk/MainWindow.vala:550 src/Gtk/MainWindow.vala:590 +#: src/Gtk/MainWindow.vala:624 msgid "DONE" msgstr "" -#: src/Gtk/ProgressWindow.vala:128 src/Gtk/TerminalWindow.vala:153 +#: src/Gtk/ProgressWindow.vala:127 src/Gtk/TerminalWindow.vala:152 msgid "Cancel" msgstr "İptal Et" -#: src/Gtk/SettingsDialog.vala:60 +#: src/Gtk/SettingsDialog.vala:59 msgid "Notification" msgstr "Bildirim" -#: src/Gtk/SettingsDialog.vala:67 +#: src/Gtk/SettingsDialog.vala:66 msgid "Notify if a major release is available" msgstr "Ana sürüm mevcutsa bildir" -#: src/Gtk/SettingsDialog.vala:76 +#: src/Gtk/SettingsDialog.vala:75 msgid "Notify if a point release is available" msgstr "Nokta sürüm mevcutsa bildir" -#: src/Gtk/SettingsDialog.vala:87 +#: src/Gtk/SettingsDialog.vala:86 #, fuzzy msgid "Seconds interval enabled for debugging" msgstr "(--debug için saniye cinsinden aralıklara izin verir)" -#: src/Gtk/SettingsDialog.vala:110 +#: src/Gtk/SettingsDialog.vala:109 msgid "Check every" msgstr "Kontrol aralığı" -#: src/Gtk/SettingsDialog.vala:135 +#: src/Gtk/SettingsDialog.vala:134 msgid "Hour(s)" msgstr "Saat" -#: src/Gtk/SettingsDialog.vala:137 +#: src/Gtk/SettingsDialog.vala:136 msgid "Day(s)" msgstr "Gün" -#: src/Gtk/SettingsDialog.vala:139 +#: src/Gtk/SettingsDialog.vala:138 msgid "Week(s)" msgstr "Hafta" -#: src/Gtk/SettingsDialog.vala:142 +#: src/Gtk/SettingsDialog.vala:141 msgid "Second(s)" msgstr "Saniye" -#: src/Gtk/SettingsDialog.vala:148 +#: src/Gtk/SettingsDialog.vala:147 msgid "Filters" msgstr "" -#: src/Gtk/SettingsDialog.vala:156 +#: src/Gtk/SettingsDialog.vala:155 msgid "Hide unstable and RC releases" msgstr "Kararsız ve RC sürümleri gizle" -#: src/Gtk/SettingsDialog.vala:178 +#: src/Gtk/SettingsDialog.vala:177 #, fuzzy msgid "previous major versions" msgstr "Önceki ana sürümleri gösterme sayısı " -#: src/Gtk/SettingsDialog.vala:182 +#: src/Gtk/SettingsDialog.vala:181 msgid "Network" msgstr "" -#: src/Gtk/SettingsDialog.vala:193 +#: src/Gtk/SettingsDialog.vala:192 #, fuzzy msgid "Internet connection timeout in" msgstr "İnternet bağlantısı zaman aşımı " -#: src/Gtk/SettingsDialog.vala:205 +#: src/Gtk/SettingsDialog.vala:204 msgid "seconds" msgstr "saniye" -#: src/Gtk/SettingsDialog.vala:212 +#: src/Gtk/SettingsDialog.vala:211 msgid "Max concurrent downloads" msgstr "Azami eşzamanlı indirme" -#: src/Gtk/SettingsDialog.vala:226 +#: src/Gtk/SettingsDialog.vala:225 msgid "Proxy" msgstr "" -#: src/Gtk/l.gtk.vala:44 +#: src/Gtk/l.gtk.vala:43 msgid "Missing Icon" msgstr "Eksik Simge" diff --git a/po/uk.po b/po/uk.po index 2e571344..2928062c 100644 --- a/po/uk.po +++ b/po/uk.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-14 10:07-0400\n" +"POT-Creation-Date: 2023-03-16 01:19-0400\n" "PO-Revision-Date: 2019-07-25 11:00+0300\n" "Last-Translator: Serhii Golovko \n" "Language-Team: Ukranian\n" @@ -13,126 +13,131 @@ msgstr "" "X-Launchpad-Export-Date: 2016-12-13 11:48+0000\n" "X-Generator: Poedit 2.2.1\n" -#: src/Common/LinuxKernel.vala:88 +#: src/Common/LinuxKernel.vala:87 msgid "Distribution" msgstr "Дистрибутив" -#: src/Common/LinuxKernel.vala:103 +#: src/Common/LinuxKernel.vala:102 msgid "Architecture" msgstr "Системна архитектура" -#: src/Common/LinuxKernel.vala:278 +#: src/Common/LinuxKernel.vala:277 #, fuzzy msgid "Fetching individual kernel indexes" msgstr "Отримання окремих індексів ядра..." -#: src/Common/LinuxKernel.vala:327 +#: src/Common/LinuxKernel.vala:326 msgid "Updating from" msgstr "" -#: src/Common/LinuxKernel.vala:344 src/Common/LinuxKernel.vala:897 +#: src/Common/LinuxKernel.vala:343 src/Common/LinuxKernel.vala:896 msgid "OK" msgstr "Добре" -#: src/Common/LinuxKernel.vala:347 src/Common/LinuxKernel.vala:900 +#: src/Common/LinuxKernel.vala:346 src/Common/LinuxKernel.vala:899 msgid "FAILED" msgstr "" -#: src/Common/LinuxKernel.vala:761 +#: src/Common/LinuxKernel.vala:760 msgid "Packages Available" msgstr "Доступні пакети" -#: src/Common/LinuxKernel.vala:766 +#: src/Common/LinuxKernel.vala:765 msgid "Packages Installed" msgstr "Встановлені пакети" -#: src/Common/LinuxKernel.vala:779 src/lib/TeeJee.FileSystem.vala:121 +#: src/Common/LinuxKernel.vala:778 src/lib/TeeJee.FileSystem.vala:121 msgid "File not found" msgstr "Файл не знайдено" -#: src/Common/LinuxKernel.vala:843 +#: src/Common/LinuxKernel.vala:842 msgid "Available Kernels" msgstr "Доступні ядра" -#: src/Common/LinuxKernel.vala:850 src/Gtk/MainWindow.vala:156 +#: src/Common/LinuxKernel.vala:849 src/Gtk/MainWindow.vala:155 msgid "Installed" msgstr "Встановлено" -#: src/Common/LinuxKernel.vala:850 src/Gtk/MainWindow.vala:156 -#: src/Gtk/MainWindow.vala:499 src/Gtk/MainWindow.vala:512 +#: src/Common/LinuxKernel.vala:849 src/Gtk/MainWindow.vala:155 +#: src/Gtk/MainWindow.vala:498 src/Gtk/MainWindow.vala:511 msgid "Running" msgstr "Використовується" -#: src/Common/LinuxKernel.vala:885 +#: src/Common/LinuxKernel.vala:884 msgid "Downloading" msgstr "Завантаження" -#: src/Common/LinuxKernel.vala:913 +#: src/Common/LinuxKernel.vala:912 #, fuzzy msgid "is already installed." msgstr "Це ядро вже встановлено." -#: src/Common/LinuxKernel.vala:943 +#: src/Common/LinuxKernel.vala:942 msgid "Uninstalling selected kernels" msgstr "Видаліть конкретні ядра" -#: src/Common/LinuxKernel.vala:949 +#: src/Common/LinuxKernel.vala:948 msgid "requested" msgstr "запитуваний" -#: src/Common/LinuxKernel.vala:952 +#: src/Common/LinuxKernel.vala:951 #, fuzzy msgid "not uninstalling the currently running kernel" msgstr "пропускаючи поточне завантажене ядро" -#: src/Common/LinuxKernel.vala:968 +#: src/Common/LinuxKernel.vala:967 msgid "found" msgstr "знайдено" -#: src/Common/LinuxKernel.vala:971 +#: src/Common/LinuxKernel.vala:970 msgid "No packages to un-install!" msgstr "Немає пакетів для видалення!" -#: src/Common/LinuxKernel.vala:1019 +#: src/Common/LinuxKernel.vala:1018 msgid "Could not find running kernel in list" msgstr "Не вдалося знайти запущене ядро у списку!" -#: src/Common/LinuxKernel.vala:1024 +#: src/Common/LinuxKernel.vala:1023 msgid "Could not find any kernels to uninstall" msgstr "Не вдалося знайти жодне ядро для вилучення" -#: src/Common/LinuxKernel.vala:1032 +#: src/Common/LinuxKernel.vala:1031 #, fuzzy msgid "The following kernels will be uninstalled" msgstr "Наступні ядра будуть видалені:" -#: src/Common/LinuxKernel.vala:1036 +#: src/Common/LinuxKernel.vala:1035 msgid "Continue ?" msgstr "Продовжувати ?" -#: src/Common/LinuxKernel.vala:1058 src/Console/AppConsole.vala:286 +#: src/Common/LinuxKernel.vala:1057 src/Console/AppConsole.vala:285 msgid "Latest update" msgstr "Останнє оновлення" -#: src/Common/LinuxKernel.vala:1069 src/Console/AppConsole.vala:293 +#: src/Common/LinuxKernel.vala:1068 src/Console/AppConsole.vala:292 msgid "Latest point update" msgstr "Остання точка оновлення" -#: src/Common/LinuxKernel.vala:1077 src/Console/AppConsole.vala:298 -#: src/Console/AppConsole.vala:353 +#: src/Common/LinuxKernel.vala:1076 src/Console/AppConsole.vala:297 +#: src/Console/AppConsole.vala:352 msgid "No updates found" msgstr "Оновлень не знайдено" -#: src/Common/LinuxKernel.vala:1086 +#: src/Common/LinuxKernel.vala:1085 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Встановити Ядро Версії %s ? (так/ні): " -#: src/Common/Main.vala:271 +#: src/Common/Main.vala:275 msgid "Called from" msgstr "Викликано з" -#: src/Common/Main.vala:307 +#: src/Common/Main.vala:276 +msgid "" +"This file is over-written and executed again whenever settings are saved in" +msgstr "" + +#: src/Common/Main.vala:308 msgid "Notifications are disabled" msgstr "Повідомлення вимкнено" @@ -141,332 +146,332 @@ msgstr "Повідомлення вимкнено" msgid "File not found: %s" msgstr "Файл не знайдено" -#: src/Console/AppConsole.vala:49 src/Gtk/AppGtk.vala:137 +#: src/Console/AppConsole.vala:48 src/Gtk/AppGtk.vala:136 msgid "Syntax" msgstr "Синтаксис" -#: src/Console/AppConsole.vala:51 +#: src/Console/AppConsole.vala:50 msgid "Commands" msgstr "Команди" -#: src/Console/AppConsole.vala:53 +#: src/Console/AppConsole.vala:52 msgid "Check for kernel updates" msgstr "Перевірити оновлення ядра" -#: src/Console/AppConsole.vala:54 +#: src/Console/AppConsole.vala:53 msgid "Check for kernel updates and notify current user" msgstr "Перевірте наявність оновлень ядра та повідомте поточного користувача" -#: src/Console/AppConsole.vala:55 +#: src/Console/AppConsole.vala:54 msgid "List all available mainline kernels" msgstr "Список усіх доступних основних ядер" -#: src/Console/AppConsole.vala:56 +#: src/Console/AppConsole.vala:55 msgid "List installed kernels" msgstr "Список встановлених ядер" -#: src/Console/AppConsole.vala:57 +#: src/Console/AppConsole.vala:56 msgid "Install latest mainline kernel" msgstr "Встановіть останнє основне ядро" -#: src/Console/AppConsole.vala:58 +#: src/Console/AppConsole.vala:57 msgid "Install latest point update for current series" msgstr "Встановіть останню точку оновлення для поточної серії" -#: src/Console/AppConsole.vala:59 +#: src/Console/AppConsole.vala:58 msgid "Install specified mainline kernel" msgstr "Встановіть конкретне основне ядро" -#: src/Console/AppConsole.vala:60 +#: src/Console/AppConsole.vala:59 msgid "Uninstall specified kernel" msgstr "Видаліть конкретні ядра" -#: src/Console/AppConsole.vala:61 +#: src/Console/AppConsole.vala:60 #, fuzzy msgid "Uninstall kernels older than the latest installed" msgstr "Видаліть ядра, старші за запущене ядро" -#: src/Console/AppConsole.vala:62 +#: src/Console/AppConsole.vala:61 msgid "Download specified kernels" msgstr "Завантажте конкретні ядра" -#: src/Console/AppConsole.vala:63 +#: src/Console/AppConsole.vala:62 msgid "Delete cached info about available kernels" msgstr "Видалити кешовану інформацію про доступні ядра" -#: src/Console/AppConsole.vala:65 src/Gtk/AppGtk.vala:139 +#: src/Console/AppConsole.vala:64 src/Gtk/AppGtk.vala:138 msgid "Options" msgstr "Параметри" -#: src/Console/AppConsole.vala:67 +#: src/Console/AppConsole.vala:66 msgid "Include unstable and RC releases" msgstr "Включати нестабільні і RC" -#: src/Console/AppConsole.vala:68 +#: src/Console/AppConsole.vala:67 msgid "Exclude unstable and RC releases" msgstr "Виключити нестабільні та RC випуски" -#: src/Console/AppConsole.vala:69 +#: src/Console/AppConsole.vala:68 msgid "Enable verbose debugging output" msgstr "Увімкнути вивід налагодження" -#: src/Console/AppConsole.vala:70 +#: src/Console/AppConsole.vala:69 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "Так для всіх підказок (неінтерактивний режим)" -#: src/Console/AppConsole.vala:73 +#: src/Console/AppConsole.vala:72 msgid "A version string taken from the output of --list" msgstr "Рядок версій, взятий з виводу --list" -#: src/Console/AppConsole.vala:74 +#: src/Console/AppConsole.vala:73 msgid "One or more, comma-seperated" msgstr "" -#: src/Console/AppConsole.vala:75 +#: src/Console/AppConsole.vala:74 #, fuzzy msgid "The currently running kernel will always be ignored" msgstr "Наступні ядра будуть видалені:" -#: src/Console/AppConsole.vala:153 src/Gtk/AppGtk.vala:123 +#: src/Console/AppConsole.vala:152 src/Gtk/AppGtk.vala:122 msgid "Unknown option" msgstr "Невідомий параметр" -#: src/Console/AppConsole.vala:154 src/Console/AppConsole.vala:244 -#: src/Console/AppConsole.vala:272 +#: src/Console/AppConsole.vala:153 src/Console/AppConsole.vala:243 +#: src/Console/AppConsole.vala:271 msgid "Run" msgstr "Запуск" -#: src/Console/AppConsole.vala:154 +#: src/Console/AppConsole.vala:153 msgid "to list all options" msgstr "Показати усі параметри" -#: src/Console/AppConsole.vala:212 src/Console/AppConsole.vala:252 +#: src/Console/AppConsole.vala:211 src/Console/AppConsole.vala:251 msgid "No kernels specified" msgstr "Ядра не вказані" -#: src/Console/AppConsole.vala:218 +#: src/Console/AppConsole.vala:217 msgid "Multiple kernels selected for installation. Select only one." msgstr "Для встановлення вибрано кілька ядер. Виберіть лише одну." -#: src/Console/AppConsole.vala:241 +#: src/Console/AppConsole.vala:240 msgid "Could not find requested version" msgstr "Не вдалося знайти запитувану версію" -#: src/Console/AppConsole.vala:244 +#: src/Console/AppConsole.vala:243 msgid "and use a version string listed in first column" msgstr "і використовувати рядок версій, вказаний у першому стовпці" -#: src/Console/AppConsole.vala:271 +#: src/Console/AppConsole.vala:270 msgid "Command not specified" msgstr "Команда не вказана" -#: src/Console/AppConsole.vala:272 +#: src/Console/AppConsole.vala:271 msgid "to list all commands" msgstr "щоб відобразити всі команди" -#: src/Console/AppConsole.vala:326 src/Gtk/SettingsDialog.vala:166 +#: src/Console/AppConsole.vala:325 src/Gtk/SettingsDialog.vala:165 msgid "Show" msgstr "Показати" -#: src/Console/AppConsole.vala:331 src/Console/AppConsole.vala:343 +#: src/Console/AppConsole.vala:330 src/Console/AppConsole.vala:342 #, c-format msgid "Kernel %s Available" msgstr "Ядро %s Доступне" -#: src/Console/AppConsole.vala:333 src/Console/AppConsole.vala:345 -#: src/Gtk/MainWindow.vala:267 +#: src/Console/AppConsole.vala:332 src/Console/AppConsole.vala:344 +#: src/Gtk/MainWindow.vala:266 msgid "Install" msgstr "Встановити" -#: src/Gtk/AboutWindow.vala:264 src/Gtk/AboutWindow.vala:281 +#: src/Gtk/AboutWindow.vala:162 src/Gtk/AboutWindow.vala:179 msgid "Credits" msgstr "Творці" -#: src/Gtk/AboutWindow.vala:277 +#: src/Gtk/AboutWindow.vala:175 msgid "Back" msgstr "Назад" -#: src/Gtk/AboutWindow.vala:287 src/Gtk/TerminalWindow.vala:163 +#: src/Gtk/AboutWindow.vala:185 src/Gtk/TerminalWindow.vala:162 msgid "Close" msgstr "Закрити" -#: src/Gtk/AboutWindow.vala:306 +#: src/Gtk/AboutWindow.vala:204 msgid "Authors" msgstr "Автори" -#: src/Gtk/AboutWindow.vala:314 +#: src/Gtk/AboutWindow.vala:212 msgid "Contributions" msgstr "Внески" -#: src/Gtk/AboutWindow.vala:322 +#: src/Gtk/AboutWindow.vala:220 msgid "Artists" msgstr "Художники" -#: src/Gtk/AboutWindow.vala:330 +#: src/Gtk/AboutWindow.vala:228 msgid "Translators" msgstr "Перекладачі" -#: src/Gtk/AboutWindow.vala:338 +#: src/Gtk/AboutWindow.vala:236 msgid "Documenters" msgstr "Документатори" -#: src/Gtk/AboutWindow.vala:346 +#: src/Gtk/AboutWindow.vala:244 msgid "Third Party Inclusions" msgstr "Включення третіх осіб" -#: src/Gtk/AppGtk.vala:137 +#: src/Gtk/AppGtk.vala:136 msgid "options" msgstr "параметри" -#: src/Gtk/AppGtk.vala:141 +#: src/Gtk/AppGtk.vala:140 msgid "Print debug information" msgstr "Роздрукувати зневадження" -#: src/Gtk/AppGtk.vala:142 +#: src/Gtk/AppGtk.vala:141 msgid "Show all options" msgstr "Показати усі параметри" -#: src/Gtk/MainWindow.vala:113 +#: src/Gtk/MainWindow.vala:112 msgid "Kernel" msgstr "Ядро" -#: src/Gtk/MainWindow.vala:143 +#: src/Gtk/MainWindow.vala:142 msgid "Status" msgstr "Стан" -#: src/Gtk/MainWindow.vala:277 +#: src/Gtk/MainWindow.vala:276 msgid "Uninstall" msgstr "Видалити" -#: src/Gtk/MainWindow.vala:287 +#: src/Gtk/MainWindow.vala:286 msgid "Changes" msgstr "Зміни" -#: src/Gtk/MainWindow.vala:309 +#: src/Gtk/MainWindow.vala:308 msgid "Uninstall Old" msgstr "Видалити старе" -#: src/Gtk/MainWindow.vala:310 +#: src/Gtk/MainWindow.vala:309 msgid "Uninstall kernels older than running kernel" msgstr "Видалити ядра, старіші за запущене ядро" -#: src/Gtk/MainWindow.vala:315 +#: src/Gtk/MainWindow.vala:314 msgid "Reload" msgstr "Перезавантажити" -#: src/Gtk/MainWindow.vala:320 src/Gtk/SettingsDialog.vala:50 +#: src/Gtk/MainWindow.vala:319 src/Gtk/SettingsDialog.vala:49 msgid "Settings" msgstr "Налаштування" -#: src/Gtk/MainWindow.vala:325 +#: src/Gtk/MainWindow.vala:324 msgid "About" msgstr "Про программу" -#: src/Gtk/MainWindow.vala:330 +#: src/Gtk/MainWindow.vala:329 msgid "Exit" msgstr "Вихід" -#: src/Gtk/MainWindow.vala:398 +#: src/Gtk/MainWindow.vala:397 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Програма оновлення ядра для дистрибутивів на базі Ubuntu" -#: src/Gtk/MainWindow.vala:399 +#: src/Gtk/MainWindow.vala:398 msgid "Forked" msgstr "Двоєний" -#: src/Gtk/MainWindow.vala:399 +#: src/Gtk/MainWindow.vala:398 msgid "Original" msgstr "Оригінал" -#: src/Gtk/MainWindow.vala:437 +#: src/Gtk/MainWindow.vala:436 msgid "Updating kernels" msgstr "" -#: src/Gtk/MainWindow.vala:508 +#: src/Gtk/MainWindow.vala:507 msgid "available" msgstr "доступний" -#: src/Gtk/MainWindow.vala:551 src/Gtk/MainWindow.vala:591 -#: src/Gtk/MainWindow.vala:625 +#: src/Gtk/MainWindow.vala:550 src/Gtk/MainWindow.vala:590 +#: src/Gtk/MainWindow.vala:624 msgid "DONE" msgstr "ГОТОВО" -#: src/Gtk/ProgressWindow.vala:128 src/Gtk/TerminalWindow.vala:153 +#: src/Gtk/ProgressWindow.vala:127 src/Gtk/TerminalWindow.vala:152 msgid "Cancel" msgstr "Відміна" -#: src/Gtk/SettingsDialog.vala:60 +#: src/Gtk/SettingsDialog.vala:59 msgid "Notification" msgstr "Повідомлення" -#: src/Gtk/SettingsDialog.vala:67 +#: src/Gtk/SettingsDialog.vala:66 msgid "Notify if a major release is available" msgstr "Повідомити, чи доступний великий випуск" -#: src/Gtk/SettingsDialog.vala:76 +#: src/Gtk/SettingsDialog.vala:75 msgid "Notify if a point release is available" msgstr "Повідомити, чи доступний невеликий випуск" -#: src/Gtk/SettingsDialog.vala:87 +#: src/Gtk/SettingsDialog.vala:86 #, fuzzy msgid "Seconds interval enabled for debugging" msgstr "(Дозволити інтервали в секундах для --debug)" -#: src/Gtk/SettingsDialog.vala:110 +#: src/Gtk/SettingsDialog.vala:109 msgid "Check every" msgstr "Перевіряти кожні" -#: src/Gtk/SettingsDialog.vala:135 +#: src/Gtk/SettingsDialog.vala:134 msgid "Hour(s)" msgstr "Година(Годин)" -#: src/Gtk/SettingsDialog.vala:137 +#: src/Gtk/SettingsDialog.vala:136 msgid "Day(s)" msgstr "День(Днів)" -#: src/Gtk/SettingsDialog.vala:139 +#: src/Gtk/SettingsDialog.vala:138 msgid "Week(s)" msgstr "Тиждень(ні)" -#: src/Gtk/SettingsDialog.vala:142 +#: src/Gtk/SettingsDialog.vala:141 msgid "Second(s)" msgstr "Секунда(и)" -#: src/Gtk/SettingsDialog.vala:148 +#: src/Gtk/SettingsDialog.vala:147 msgid "Filters" msgstr "" -#: src/Gtk/SettingsDialog.vala:156 +#: src/Gtk/SettingsDialog.vala:155 msgid "Hide unstable and RC releases" msgstr "Приховати нестабільні і RC" -#: src/Gtk/SettingsDialog.vala:178 +#: src/Gtk/SettingsDialog.vala:177 #, fuzzy msgid "previous major versions" msgstr "Показати N попередніх основних версій " -#: src/Gtk/SettingsDialog.vala:182 +#: src/Gtk/SettingsDialog.vala:181 msgid "Network" msgstr "" -#: src/Gtk/SettingsDialog.vala:193 +#: src/Gtk/SettingsDialog.vala:192 #, fuzzy msgid "Internet connection timeout in" msgstr "Час очікування підключення до Інтернету в " -#: src/Gtk/SettingsDialog.vala:205 +#: src/Gtk/SettingsDialog.vala:204 msgid "seconds" msgstr "секунди" -#: src/Gtk/SettingsDialog.vala:212 +#: src/Gtk/SettingsDialog.vala:211 msgid "Max concurrent downloads" msgstr "Максимальна кількість завантажень" -#: src/Gtk/SettingsDialog.vala:226 +#: src/Gtk/SettingsDialog.vala:225 msgid "Proxy" msgstr "" -#: src/Gtk/l.gtk.vala:44 +#: src/Gtk/l.gtk.vala:43 msgid "Missing Icon" msgstr "Нема значка" diff --git a/src/Common/LinuxKernel.vala b/src/Common/LinuxKernel.vala index c2cec0c6..2725f9e4 100644 --- a/src/Common/LinuxKernel.vala +++ b/src/Common/LinuxKernel.vala @@ -3,7 +3,6 @@ using TeeJee.FileSystem; using TeeJee.JsonHelper; using TeeJee.ProcessHelper; using TeeJee.Misc; -using l.time; using l.misc; public class LinuxKernel : GLib.Object, Gee.Comparable { diff --git a/src/Common/Main.vala b/src/Common/Main.vala index 12332b09..5f005847 100644 --- a/src/Common/Main.vala +++ b/src/Common/Main.vala @@ -29,7 +29,6 @@ using TeeJee.FileSystem; using TeeJee.JsonHelper; using TeeJee.ProcessHelper; using TeeJee.Misc; -using l.time; using l.misc; [CCode(cname="BRANDING_SHORTNAME")] extern const string BRANDING_SHORTNAME; @@ -55,6 +54,8 @@ public class Main : GLib.Object { public string APP_CONFIG_FILE = ""; public string STARTUP_SCRIPT_FILE = ""; public string STARTUP_DESKTOP_FILE = ""; + public string OLD_STARTUP_SCRIPT_FILE = ""; // TRANSITION + public string OLD_STARTUP_DESKTOP_FILE = ""; // TRANSITION public string NOTIFICATION_ID_FILE = ""; public string MAJ_SEEN_FILE = ""; public string MIN_SEEN_FILE = ""; @@ -143,8 +144,10 @@ public class Main : GLib.Object { APP_CONF_DIR = user_home + "/.config/" + BRANDING_SHORTNAME; APP_CONFIG_FILE = APP_CONF_DIR + "/config.json"; - STARTUP_SCRIPT_FILE = APP_CONF_DIR + "/notify-loop.sh"; - STARTUP_DESKTOP_FILE = user_home + "/.config/autostart/" + BRANDING_SHORTNAME + ".desktop"; + STARTUP_SCRIPT_FILE = APP_CONF_DIR + "/" + BRANDING_SHORTNAME + "-notify.sh"; + STARTUP_DESKTOP_FILE = user_home + "/.config/autostart/" + BRANDING_SHORTNAME + "-notify.desktop"; + OLD_STARTUP_SCRIPT_FILE = APP_CONF_DIR + "/notify-loop.sh"; // TRANSITION + OLD_STARTUP_DESKTOP_FILE = user_home + "/.config/autostart/" + BRANDING_SHORTNAME + ".desktop"; // TRANSITION NOTIFICATION_ID_FILE = APP_CONF_DIR + "/notification_id"; MAJ_SEEN_FILE = APP_CONF_DIR + "/notification_seen.major"; MIN_SEEN_FILE = APP_CONF_DIR + "/notification_seen.minor"; @@ -264,44 +267,42 @@ public class Main : GLib.Object { } file_delete(STARTUP_SCRIPT_FILE); + file_delete(OLD_STARTUP_SCRIPT_FILE); // TRANSITION // TODO, ID file should not assume single DISPLAY // ID and SEEN should probably be in /var/run ? string s = "#!/bin/bash\n" - + "# " +_("Called from")+" "+STARTUP_DESKTOP_FILE+" at logon.\n" - + "# This file is over-written and executed again whenever settings are saved in "+BRANDING_SHORTNAME+"-gtk\n" - + "[[ \"${1}\" = \"--autostart\" ]] && rm -f "+NOTIFICATION_ID_FILE+" "+MAJ_SEEN_FILE+" "+MIN_SEEN_FILE+"\n" + + "# "+_("Called from")+" "+STARTUP_DESKTOP_FILE+" at logon.\n" + + "# "+_("This file is over-written and executed again whenever settings are saved in")+" "+BRANDING_SHORTNAME+"-gtk\n" + + "[[ $1 == --autostart ]] && rm -f \""+NOTIFICATION_ID_FILE+"\" \""+MAJ_SEEN_FILE+"\" \""+MIN_SEEN_FILE+"\"\n" + "TMP=${XDG_RUNTIME_DIR:-/tmp}\n" - + "F=\"${TMP}/"+BRANDING_SHORTNAME+"-notify-loop.${$}.p\"\n" - + "trap \"rm -f \\\"${F}\\\"\" 0\n" + + "N=${0//\\//_}\n" + + "F=\"${TMP}/${N}.${$}.p\"\n" + + "trap 'read c<\\\"${F}_\\\" ;kill $c ;rm -f \\\"$F{,_}\\\"' 0\n" + "echo -n \"${DISPLAY} ${$}\" > \"${F}\"\n" + "typeset -i p\n" + "shopt -s extglob\n" + "\n" + "# clear previous state (kill previous instance)\n" - + "for f in ${TMP}/"+BRANDING_SHORTNAME+"-notify-loop.+([0-9]).p ;do\n" + + "for f in ${TMP}/${N}.+([0-9]).p ;do\n" + "\t[[ -s ${f} ]] || continue\n" - + "\t[[ ${f} -ot ${F} ]] || continue\n" - + "\tread d p x < \"${f}\"\n" - + "\t[[ \"${d}\" == \"${DISPLAY}\" ]] || continue\n" - + "\t((${p}>1)) || continue\n" - + "\trm -f \"${f}\"\n" - + "\tkill ${p}\n" + + "\t[[ $f -ot $F ]] || continue\n" + + "\tread d p x < \"$f\"\n" + + "\t[[ $d == ${DISPLAY} ]] || continue\n" + + "\t((p>1)) || continue\n" + + "\trm -f \"$f\"\n" + + "\tkill $p\n" + "done\n" - + "unset F f p d x\n" + + "unset N f p d x\n" + "\n" - + "# run current state\n"; + + "# run whatever the new state should be\n"; if (notify_minor || notify_major) { - // This gdbus check doesn't do what I'd hoped. - // Still succeeds while logged out but sitting at a display manager login screen. - s += "" - //+ "export VERBOSE=0\n" - + "while gdbus call --session --dest org.freedesktop.DBus --object-path /org/freedesktop/DBus --method org.freedesktop.DBus.GetId 2>&- >&- ;do\n" - + "\t"+BRANDING_SHORTNAME+" --notify 2>&- >&-"; - //if (LOG_DEBUG) s += " --debug"; - s += "\n" + s += "while [[ -f \"$F\" ]] ;do\n" + + "\t"+BRANDING_SHORTNAME+" --notify 2>&- >&-\n" + "\tsleep %d%s &\n".printf(count,suffix) - + "\twait ${!}\n" // respond to signals during sleep + + "\tc=$!\n" + + "\techo $c >>\"${F}_\"\n" + + "\twait $c\n" // respond to signals during sleep + "done\n"; } else { s += "# " + _("Notifications are disabled") + "\n" @@ -310,14 +311,14 @@ public class Main : GLib.Object { file_write(STARTUP_SCRIPT_FILE,s); // settings get saved on startup if the file doesn't exist yet, - // so we don't always want to launch the bg process - // on every save, because when notifications are enabled, - // the bg process runs another instance of ourself while we are still starting up ourselves, + // so we don't always want to launch the background process immediately on save, + // because when notifications are enabled, + // the background process runs another instance of ourself while we are still starting up ourselves, // and the two instances' cache operations step all over each other. - // slightly better: - // if notifications are now off, then run immediately so it clears out the existing bg possibly already running + // This is not really a fully correct answer, but mostly good enough: + // if notifications are now off, then run immediately so it clears out the existing watcher possibly already running // if notifications are now on, then run on exit. - if (!notify_major && !notify_minor) exec_async("bash "+STARTUP_SCRIPT_FILE+" 2>&- >&-"); + if (!notify_major && !notify_minor) exec_async("bash "+STARTUP_SCRIPT_FILE+" 2>&- >&- <&-"); } private void update_startup_desktop_file() { @@ -325,16 +326,12 @@ public class Main : GLib.Object { if (notify_minor || notify_major) { string txt = "[Desktop Entry]\n" - + "Type=Application\n" + "Exec=bash \""+STARTUP_SCRIPT_FILE+"\" --autostart\n" - + "Hidden=false\n" - + "NoDisplay=false\n" - + "X-GNOME-Autostart-enabled=true\n" - + "Name="+BRANDING_SHORTNAME+" notification\n" - + "Comment="+BRANDING_SHORTNAME+" notification\n"; + ; file_write(STARTUP_DESKTOP_FILE, txt); } else { file_delete(STARTUP_DESKTOP_FILE); + file_delete(OLD_STARTUP_DESKTOP_FILE); // TRANSITION } } diff --git a/src/Console/AppConsole.vala b/src/Console/AppConsole.vala index 781450cf..17023eee 100644 --- a/src/Console/AppConsole.vala +++ b/src/Console/AppConsole.vala @@ -27,7 +27,6 @@ using TeeJee.FileSystem; using TeeJee.JsonHelper; using TeeJee.ProcessHelper; using TeeJee.Misc; -using l.time; using l.misc; public Main App; diff --git a/src/Gtk/AboutWindow.vala b/src/Gtk/AboutWindow.vala index 88916531..91d57563 100644 --- a/src/Gtk/AboutWindow.vala +++ b/src/Gtk/AboutWindow.vala @@ -23,12 +23,8 @@ using Gtk; -using TeeJee.FileSystem; -using TeeJee.JsonHelper; -using TeeJee.ProcessHelper; using l.gtk; using TeeJee.Misc; -using l.time; using l.misc; public class AboutWindow : Dialog { @@ -48,152 +44,54 @@ public class AboutWindow : Dialog { private Label lbl_copyright; private string[] _artists; - public string[] artists{ - get{ - return _artists; - } - set{ - _artists = value; - } - } + public string[] artists { get { return _artists; } set { _artists = value; } } private string[] _authors; - public string[] authors{ - get{ - return _authors; - } - set{ - _authors = value; - } - } + public string[] authors { get { return _authors; } set { _authors = value; } } private string[] _contributors; - public string[] contributors{ - get{ - return _contributors; - } - set{ - _contributors = value; - } - } - + public string[] contributors { get { return _contributors; } set { _contributors = value; } } + private string _comments = ""; - public string comments{ - get{ - return _comments; - } - set{ - _comments = value; - } - } + public string comments { get { return _comments; } set { _comments = value; } } private string _copyright = ""; - public string copyright{ - get{ - return _copyright; - } - set{ - _copyright = value; - } - } + public string copyright { get { return _copyright; } set { _copyright = value; } } private string[] _documenters; - public string[] documenters{ - get{ - return _documenters; - } - set{ - _documenters = value; - } - } + public string[] documenters { get { return _documenters; } set { _documenters = value; } } private string _license = ""; - public string license{ - get{ - return _license; - } - set{ - _license = value; - } - } + public string license { get { return _license; } set { _license = value; } } private Gdk.Pixbuf _logo; - public Gdk.Pixbuf logo{ - get{ - return _logo; - } - set{ - _logo = value; - } - } + public Gdk.Pixbuf logo { get { return _logo; } set { _logo = value; } } private string _program_name = ""; - public string program_name{ - get{ - return _program_name; - } - set{ - _program_name = value; - } - } + public string program_name { get { return _program_name; } set { _program_name = value; } } private string[] _translators; - public string[] translators{ - get{ - return _translators; - } - set{ - _translators = value; - } - } + public string[] translators { get { return _translators; } set { _translators = value; } } private string[] _third_party; - public string[] third_party{ - get{ - return _third_party; - } - set{ - _third_party = value; - } - } + public string[] third_party { get { return _third_party; } set { _third_party = value; } } private string _version = ""; - public string version { - get { - return _version; - } - set { - _version = value; - } - } + public string version { get { return _version; } set { _version = value; } } private string _website = ""; - public string website{ - get{ - return _website; - } - set{ - _website = value; - } - } + public string website { get { return _website; } set { _website = value; } } private string _website_label = ""; - public string website_label{ - get{ - return _website_label; - } - set{ - _website_label = value; - } - } + public string website_label { get { return _website_label; } set { _website_label = value; } } public AboutWindow() { - window_position = WindowPosition.CENTER_ON_PARENT; + window_position = WindowPosition.CENTER_ON_PARENT; set_destroy_with_parent (true); set_modal (true); - set_default_size (450, 400); + set_default_size (450, 400); - vbox_main = get_content_area(); + vbox_main = get_content_area(); vbox_main.margin = 6; vbox_main.spacing = 6; @@ -262,30 +160,30 @@ public class AboutWindow : Dialog { //btn_credits btn_credits = new Button.with_label(_("Credits")); - btn_credits.set_image (new Image.from_icon_name ("gtk-about", IconSize.MENU)); + btn_credits.set_image (new Image.from_icon_name("gtk-about", IconSize.MENU)); hbox_action.add(btn_credits); btn_credits.clicked.connect(()=>{ vbox_logo.visible = !(vbox_logo.visible); vbox_credits.visible = !(vbox_credits.visible); - if ((vbox_credits.visible)&&(!sw_credits.visible)){ + if ((vbox_credits.visible)&&(!sw_credits.visible)) { sw_credits.show_all(); } - if (vbox_credits.visible){ + if (vbox_credits.visible) { btn_credits.label = _("Back"); - btn_credits.set_image (new Image.from_icon_name ("gtk-go-back", IconSize.MENU)); + btn_credits.set_image (new Image.from_icon_name("gtk-go-back", IconSize.MENU)); } else{ btn_credits.label = _("Credits"); - btn_credits.set_image (new Image.from_icon_name ("gtk-about", IconSize.MENU)); + btn_credits.set_image (new Image.from_icon_name("gtk-about", IconSize.MENU)); } }); //btn_close btn_close = new Button.with_label(_("Close")); - btn_close.set_image (new Image.from_icon_name ("gtk-close", IconSize.MENU)); + btn_close.set_image (new Image.from_icon_name("gtk-close", IconSize.MENU)); hbox_action.add(btn_close); btn_close.clicked.connect(()=>{ this.destroy(); }); @@ -304,7 +202,7 @@ public class AboutWindow : Dialog { if (authors.length > 0){ add_header("%s\n".printf(_("Authors"))); - foreach(string name in authors){ + foreach(string name in authors) { add_line("%s".printf(name)); } add_line(""); @@ -312,7 +210,7 @@ public class AboutWindow : Dialog { if (contributors.length > 0){ add_header("%s\n".printf(_("Contributions"))); - foreach(string name in contributors){ + foreach(string name in contributors) { add_line("%s".printf(name)); } add_line(""); @@ -320,7 +218,7 @@ public class AboutWindow : Dialog { if (artists.length > 0){ add_header("%s\n".printf(_("Artists"))); - foreach(string name in artists){ + foreach(string name in artists) { add_line("%s".printf(name)); } add_line(""); @@ -328,7 +226,7 @@ public class AboutWindow : Dialog { if (translators.length > 0){ add_header("%s\n".printf(_("Translators"))); - foreach(string name in translators){ + foreach(string name in translators) { add_line("%s".printf(name),true,false); } add_line(""); @@ -336,7 +234,7 @@ public class AboutWindow : Dialog { if (documenters.length > 0){ add_header("%s\n".printf(_("Documenters"))); - foreach(string name in documenters){ + foreach(string name in documenters) { add_line("%s".printf(name)); } add_line(""); @@ -344,37 +242,31 @@ public class AboutWindow : Dialog { if (third_party.length > 0){ add_header("%s\n".printf(_("Third Party Inclusions"))); - foreach(string name in third_party){ + foreach(string name in third_party) { add_line("%s".printf(name)); } add_line(""); } - if (vbox_lines.get_children().length() == 0){ + if (vbox_lines.get_children().length() == 0) { btn_credits.visible = false; } } - public void add_line(string text, bool escape_html_chars = true, bool parse = true){ - - if (text.split(":").length >= 2 && parse){ + public void add_line(string text, bool escape_html_chars = true, bool parse = true) { + + if (text.split(":").length >= 2 && parse) { var link = new LinkButton(escape_html(text.split(":")[0])); vbox_lines.add(link); string val = text[text.index_of(":") + 1:text.length]; - if (val.contains("@")){ - link.uri = "mailto:" + val; - } - else if(val.has_prefix("http://")){ - link.uri = val; - } - else{ - link.uri = "http://" + val; - } + if (val.contains("@")) link.uri = "mailto:" + val; + else if(val.has_prefix("http://")) link.uri = val; + else if(val.has_prefix("https://")) link.uri = val; + else link.uri = "http://" + val; link.activate_link.connect(() => { uri_open(link.uri); return true; }); - } - else{ + } else { var txt = text; if (escape_html_chars) txt = escape_html(text); @@ -387,7 +279,7 @@ public class AboutWindow : Dialog { } } - public void add_header(string text){ + public void add_header(string text) { add_line(text, false); } } diff --git a/src/Gtk/AppGtk.vala b/src/Gtk/AppGtk.vala index e3ca73c9..ade0e73c 100644 --- a/src/Gtk/AppGtk.vala +++ b/src/Gtk/AppGtk.vala @@ -30,7 +30,6 @@ using TeeJee.JsonHelper; using TeeJee.ProcessHelper; using l.gtk; using TeeJee.Misc; -using l.time; using l.misc; public Main App; @@ -84,8 +83,8 @@ public class AppGtk : GLib.Object { //|| App.term_y != App._term_y ) App.save_app_config(); - // start the notification bg process if notifcations enabled - if (App.notify_major || App.notify_major) exec_async("bash "+App.STARTUP_SCRIPT_FILE+" 2>&- >&-"); + // start the notification background process if notifcations enabled + if (App.notify_major || App.notify_major) exec_async("bash "+App.STARTUP_SCRIPT_FILE+" 2>&- >&- <&-"); return 0; } diff --git a/src/Gtk/MainWindow.vala b/src/Gtk/MainWindow.vala index 7949b661..390d4b25 100644 --- a/src/Gtk/MainWindow.vala +++ b/src/Gtk/MainWindow.vala @@ -29,7 +29,6 @@ using TeeJee.JsonHelper; using TeeJee.ProcessHelper; using l.gtk; using TeeJee.Misc; -using l.time; using l.misc; public class MainWindow : Gtk.Window { diff --git a/src/Gtk/ProgressWindow.vala b/src/Gtk/ProgressWindow.vala index 115ec615..1c1dd505 100644 --- a/src/Gtk/ProgressWindow.vala +++ b/src/Gtk/ProgressWindow.vala @@ -30,7 +30,6 @@ using TeeJee.JsonHelper; using TeeJee.ProcessHelper; using l.gtk; using TeeJee.Misc; -using l.time; using l.misc; public class ProgressWindow : Gtk.Window { diff --git a/src/Gtk/SettingsDialog.vala b/src/Gtk/SettingsDialog.vala index 869a26d3..154eaef2 100644 --- a/src/Gtk/SettingsDialog.vala +++ b/src/Gtk/SettingsDialog.vala @@ -29,7 +29,6 @@ using TeeJee.JsonHelper; using TeeJee.ProcessHelper; using l.gtk; using TeeJee.Misc; -using l.time; using l.misc; public class SettingsDialog : Gtk.Dialog { diff --git a/src/Gtk/TerminalWindow.vala b/src/Gtk/TerminalWindow.vala index ec6debb5..0edb5832 100644 --- a/src/Gtk/TerminalWindow.vala +++ b/src/Gtk/TerminalWindow.vala @@ -27,7 +27,6 @@ using TeeJee.JsonHelper; using TeeJee.ProcessHelper; using l.gtk; using TeeJee.Misc; -using l.time; using l.misc; public class TerminalWindow : Gtk.Window { diff --git a/src/Gtk/l.gtk.vala b/src/Gtk/l.gtk.vala index 825fee52..546d6c18 100644 --- a/src/Gtk/l.gtk.vala +++ b/src/Gtk/l.gtk.vala @@ -3,7 +3,6 @@ using TeeJee.FileSystem; using TeeJee.JsonHelper; using TeeJee.ProcessHelper; using TeeJee.Misc; -using l.time; using l.misc; namespace l.gtk { diff --git a/src/lib/AsyncTask.vala b/src/lib/AsyncTask.vala index a330f842..f46d3795 100644 --- a/src/lib/AsyncTask.vala +++ b/src/lib/AsyncTask.vala @@ -25,7 +25,6 @@ using TeeJee.FileSystem; using TeeJee.JsonHelper; using TeeJee.ProcessHelper; using TeeJee.Misc; -using l.time; using l.misc; public abstract class AsyncTask : GLib.Object { diff --git a/src/lib/TeeJee.Misc.vala b/src/lib/TeeJee.Misc.vala index 6e637d55..8d219740 100644 --- a/src/lib/TeeJee.Misc.vala +++ b/src/lib/TeeJee.Misc.vala @@ -36,8 +36,7 @@ namespace TeeJee.Misc { .replace("\\u00", "") .replace("\\x" , ""); } else { - txt = txt - .replace(" ", " "); // pango markup throws an error with   + txt = txt.replace(" ", " "); // pango markup throws an error with   } txt = txt @@ -50,11 +49,7 @@ namespace TeeJee.Misc { return txt; } - public string uri_decode(string path) { - return Uri.unescape_string(path); - } - - public string random_string(int length = 8, string charset = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz1234567890"){ + public string random_string(int length = 8, string charset = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz1234567890") { string random = ""; for(int i=0;i Date: Thu, 16 Mar 2023 07:51:44 +0100 Subject: [PATCH 274/567] Update it.po --- po/it.po | 61 ++++++++++++++++++++++++++++---------------------------- 1 file changed, 30 insertions(+), 31 deletions(-) diff --git a/po/it.po b/po/it.po index ff44b6d9..c37f1534 100644 --- a/po/it.po +++ b/po/it.po @@ -22,11 +22,11 @@ msgstr "Architettura" #: src/Common/LinuxKernel.vala:277 #, fuzzy msgid "Fetching individual kernel indexes" -msgstr "Recupero indice in corso..." +msgstr "Recupero dei singoli indici del kernel" #: src/Common/LinuxKernel.vala:326 msgid "Updating from" -msgstr "" +msgstr "Aggiornamento da" #: src/Common/LinuxKernel.vala:343 src/Common/LinuxKernel.vala:896 msgid "OK" @@ -34,7 +34,7 @@ msgstr "OK" #: src/Common/LinuxKernel.vala:346 src/Common/LinuxKernel.vala:899 msgid "FAILED" -msgstr "" +msgstr "FALLITO" #: src/Common/LinuxKernel.vala:760 msgid "Packages Available" @@ -68,7 +68,7 @@ msgstr "Download in corso" #: src/Common/LinuxKernel.vala:912 #, fuzzy msgid "is already installed." -msgstr "Questo kernel è già installato" +msgstr "è già installato." #: src/Common/LinuxKernel.vala:942 #, fuzzy @@ -77,26 +77,26 @@ msgstr "Disinstalla i kernel specificati" #: src/Common/LinuxKernel.vala:948 msgid "requested" -msgstr "" +msgstr "richiesto" #: src/Common/LinuxKernel.vala:951 #, fuzzy msgid "not uninstalling the currently running kernel" -msgstr "Disinstalla i kernel specificati" +msgstr "non disinstallare il kernel attualmente in esecuzione" #: src/Common/LinuxKernel.vala:967 msgid "found" -msgstr "" +msgstr "trovato" #: src/Common/LinuxKernel.vala:970 #, fuzzy msgid "No packages to un-install!" -msgstr "Pacchetti installati" +msgstr "Nessun pacchetto da disinstallare!" #: src/Common/LinuxKernel.vala:1018 #, fuzzy msgid "Could not find running kernel in list" -msgstr "Impossibile trovare il kernel in esecuzione nell'elenco!" +msgstr "Impossibile trovare il kernel in esecuzione nell'elenco" #: src/Common/LinuxKernel.vala:1023 msgid "Could not find any kernels to uninstall" @@ -105,7 +105,7 @@ msgstr "Impossibile trovare alcun kernel da rimuovere" #: src/Common/LinuxKernel.vala:1031 #, fuzzy msgid "The following kernels will be uninstalled" -msgstr "I seguenti kernel verranno rimossi:" +msgstr "I seguenti kernel saranno rimossi" #: src/Common/LinuxKernel.vala:1035 msgid "Continue ?" @@ -137,6 +137,7 @@ msgstr "Chiamata da" msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" +"Questo file viene sovrascritto ed eseguito nuovamente ogni volta che vengono salvate le impostazioni" #: src/Common/Main.vala:308 msgid "Notifications are disabled" @@ -145,7 +146,7 @@ msgstr "Le notifiche sono disabilitate" #: src/Common/Package.vala:58 #, fuzzy, c-format msgid "File not found: %s" -msgstr "File non trovato" +msgstr "File non trovato: %s" #: src/Console/AppConsole.vala:48 src/Gtk/AppGtk.vala:136 msgid "Syntax" @@ -161,9 +162,7 @@ msgstr "Verifica aggiornamenti per il kernel" #: src/Console/AppConsole.vala:53 msgid "Check for kernel updates and notify current user" -msgstr "" -"Verifica la disponibilità di aggiornamenti del kerneled avvisa l'utente " -"corrente" +msgstr "Verifica la disponibilità di aggiornamenti del kernel ed avvisa l'utente corrente" #: src/Console/AppConsole.vala:54 msgid "List all available mainline kernels" @@ -200,7 +199,7 @@ msgstr "Scarica i kernel specificati" #: src/Console/AppConsole.vala:62 msgid "Delete cached info about available kernels" -msgstr "" +msgstr "Elimina le informazioni memorizzate nella cache sui kernel disponibili" #: src/Console/AppConsole.vala:64 src/Gtk/AppGtk.vala:138 msgid "Options" @@ -208,12 +207,12 @@ msgstr "Opzioni" #: src/Console/AppConsole.vala:66 msgid "Include unstable and RC releases" -msgstr "Includi versioni instabili e RC" +msgstr "Includi versioni instabili e rilasci RC" #: src/Console/AppConsole.vala:67 #, fuzzy msgid "Exclude unstable and RC releases" -msgstr "Includi versioni instabili e RC" +msgstr "Includi versioni instabili e rilasci RC" #: src/Console/AppConsole.vala:68 msgid "Enable verbose debugging output" @@ -229,12 +228,12 @@ msgstr "Una stringa di versione presa dall'output di --list" #: src/Console/AppConsole.vala:73 msgid "One or more, comma-seperated" -msgstr "" +msgstr "Uno o più, separati da virgola" #: src/Console/AppConsole.vala:74 #, fuzzy msgid "The currently running kernel will always be ignored" -msgstr "I seguenti kernel verranno rimossi:" +msgstr "Il kernel attualmente in esecuzione verrà sempre ignorato" #: src/Console/AppConsole.vala:152 src/Gtk/AppGtk.vala:122 msgid "Unknown option" @@ -255,7 +254,7 @@ msgstr "Nessun kernel specificato" #: src/Console/AppConsole.vala:217 msgid "Multiple kernels selected for installation. Select only one." -msgstr "Più kernel selezionati per l'installazione. Selezionare uno solo." +msgstr "Più kernel selezionati per l'installazione. Selezionarne uno solo." #: src/Console/AppConsole.vala:240 msgid "Could not find requested version" @@ -362,7 +361,7 @@ msgstr "Rimuovere i kernel installati più vecchi del kernel in esecuzione" #: src/Gtk/MainWindow.vala:314 msgid "Reload" -msgstr "" +msgstr "Ricarica" #: src/Gtk/MainWindow.vala:319 src/Gtk/SettingsDialog.vala:49 msgid "Settings" @@ -374,7 +373,7 @@ msgstr "Informazioni" #: src/Gtk/MainWindow.vala:329 msgid "Exit" -msgstr "" +msgstr "Chiudi" #: src/Gtk/MainWindow.vala:397 msgid "Kernel upgrade utility for Ubuntu-based distributions" @@ -390,7 +389,7 @@ msgstr "Originale" #: src/Gtk/MainWindow.vala:436 msgid "Updating kernels" -msgstr "" +msgstr "Aggiornamento dei kernel" #: src/Gtk/MainWindow.vala:507 msgid "available" @@ -399,7 +398,7 @@ msgstr "disponibile" #: src/Gtk/MainWindow.vala:550 src/Gtk/MainWindow.vala:590 #: src/Gtk/MainWindow.vala:624 msgid "DONE" -msgstr "" +msgstr "FATTO" #: src/Gtk/ProgressWindow.vala:127 src/Gtk/TerminalWindow.vala:152 msgid "Cancel" @@ -420,7 +419,7 @@ msgstr "Avvisa se è disponibile un rilascio parziale" #: src/Gtk/SettingsDialog.vala:86 #, fuzzy msgid "Seconds interval enabled for debugging" -msgstr "(Consentire intervalli in secondi per --debug)" +msgstr "Intervallo in secondi abilitato per il debug" #: src/Gtk/SettingsDialog.vala:109 msgid "Check every" @@ -444,20 +443,20 @@ msgstr "Secondo(i)" #: src/Gtk/SettingsDialog.vala:147 msgid "Filters" -msgstr "" +msgstr "Filtri" #: src/Gtk/SettingsDialog.vala:155 msgid "Hide unstable and RC releases" -msgstr "Nascondi versioni instabili e RC" +msgstr "Nascondi versioni instabili e rilasci RC" #: src/Gtk/SettingsDialog.vala:177 #, fuzzy msgid "previous major versions" -msgstr "Mostra N versioni principali precedenti" +msgstr "versioni principali precedenti" #: src/Gtk/SettingsDialog.vala:181 msgid "Network" -msgstr "" +msgstr "Rete" #: src/Gtk/SettingsDialog.vala:192 #, fuzzy @@ -474,7 +473,7 @@ msgstr "Numero massimo di download simultanei" #: src/Gtk/SettingsDialog.vala:225 msgid "Proxy" -msgstr "" +msgstr "Proxy" #: src/Gtk/l.gtk.vala:43 msgid "Missing Icon" @@ -483,4 +482,4 @@ msgstr "Icona mancante" #: src/lib/l.misc.vala:67 #, fuzzy msgid "Can not reach site" -msgstr "Impossibile leggere il file" +msgstr "Impossibile raggiungere il sito" From 5ce81640581af95234cd4e30db3338190c1700e2 Mon Sep 17 00:00:00 2001 From: "Brian K. White" <54458165+bkw777@users.noreply.github.com> Date: Thu, 16 Mar 2023 14:44:02 -0400 Subject: [PATCH 275/567] Update README.md --- README.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/README.md b/README.md index ff937c09..1c60b492 100644 --- a/README.md +++ b/README.md @@ -89,6 +89,16 @@ For the single manual uninstall button, the button simply isn't activated. For t # Help / FAQ +* General debugging + Aside from the ```--debug``` option, there is an environment variable ```VERBOSE```, which takes a numerical value from 0 and up. + Example: ```$ VERBOSE=3 mainline-gtk``` + 0 = silence all output + 1 = normal output (default) + 2 = --debug + 3 = more verbose + 4 = even more + 5+ mostly just for uncommenting things in the code and recompiling, not really useful in the release builds + * Secure Boot Possibly useful, I have not tried: https://github.com/M-P-P-C/Signing-a-Linux-Kernel-for-Secure-Boot From d58ac8cc0776bb2719c6807285485ec6aa202c31 Mon Sep 17 00:00:00 2001 From: "Brian K. White" <54458165+bkw777@users.noreply.github.com> Date: Thu, 16 Mar 2023 16:25:09 -0400 Subject: [PATCH 276/567] Update README.md --- README.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/README.md b/README.md index 1c60b492..49ad01df 100644 --- a/README.md +++ b/README.md @@ -88,6 +88,11 @@ That can lead to some files being stale or wrong over time, so, to compensate fo For the single manual uninstall button, the button simply isn't activated. For the cli app if you manually give that version, it will simply ignore it. For uninstall-old, either gui or cli, the currently running kernel is simply skipped over when scanning and building the list of uninstall candidates. # Help / FAQ +* **Uninstall Old** doesn't remove some distribution kernel packages + Use the normal package manager like apt or synaptic to remove the parent meta-package: + ```$ sudo apt remove linux-image-generic``` + Then **Uninstall Old** should successfully remove everything. + Also you should hit the **Reload** button once after that (or run ```$ mainline --delete-cache```) * General debugging Aside from the ```--debug``` option, there is an environment variable ```VERBOSE```, which takes a numerical value from 0 and up. From ed2ac9e48e0b4ab9bee6476020afe85b52f5b0da Mon Sep 17 00:00:00 2001 From: "Brian K. White" <54458165+bkw777@users.noreply.github.com> Date: Thu, 16 Mar 2023 16:26:25 -0400 Subject: [PATCH 277/567] Update README.md --- README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 49ad01df..030606d7 100644 --- a/README.md +++ b/README.md @@ -88,12 +88,6 @@ That can lead to some files being stale or wrong over time, so, to compensate fo For the single manual uninstall button, the button simply isn't activated. For the cli app if you manually give that version, it will simply ignore it. For uninstall-old, either gui or cli, the currently running kernel is simply skipped over when scanning and building the list of uninstall candidates. # Help / FAQ -* **Uninstall Old** doesn't remove some distribution kernel packages - Use the normal package manager like apt or synaptic to remove the parent meta-package: - ```$ sudo apt remove linux-image-generic``` - Then **Uninstall Old** should successfully remove everything. - Also you should hit the **Reload** button once after that (or run ```$ mainline --delete-cache```) - * General debugging Aside from the ```--debug``` option, there is an environment variable ```VERBOSE```, which takes a numerical value from 0 and up. Example: ```$ VERBOSE=3 mainline-gtk``` @@ -104,6 +98,12 @@ For the single manual uninstall button, the button simply isn't activated. For t 4 = even more 5+ mostly just for uncommenting things in the code and recompiling, not really useful in the release builds +* **Uninstall Old** doesn't remove some distribution kernel packages + Use the normal package manager like apt or synaptic to remove the parent meta-package: + ```$ sudo apt remove linux-image-generic``` + Then **Uninstall Old** should successfully remove everything. + Also you should hit the **Reload** button once after that (or run ```$ mainline --delete-cache```) + * Secure Boot Possibly useful, I have not tried: https://github.com/M-P-P-C/Signing-a-Linux-Kernel-for-Secure-Boot From f6076bb5b54e60b8a82216a7855973ec62211dc8 Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Thu, 16 Mar 2023 16:29:52 -0400 Subject: [PATCH 278/567] readme --- .deb_build_number.mak | 2 +- README.md.src | 15 +++++++++++++++ 2 files changed, 16 insertions(+), 1 deletion(-) diff --git a/.deb_build_number.mak b/.deb_build_number.mak index 455ec387..97274624 100644 --- a/.deb_build_number.mak +++ b/.deb_build_number.mak @@ -1,3 +1,3 @@ # This file is generated by Makefile "make deb_build_number" DEB_PKG_VERSION := 1.1.7 -DEB_BUILD_NUMBER := 0000 +DEB_BUILD_NUMBER := 0001 diff --git a/README.md.src b/README.md.src index cbdf135c..e5381f55 100644 --- a/README.md.src +++ b/README.md.src @@ -88,6 +88,21 @@ That can lead to some files being stale or wrong over time, so, to compensate fo For the single manual uninstall button, the button simply isn't activated. For the cli app if you manually give that version, it will simply ignore it. For uninstall-old, either gui or cli, the currently running kernel is simply skipped over when scanning and building the list of uninstall candidates. # Help / FAQ +* General debugging + Aside from the ```--debug``` option, there is an environment variable ```VERBOSE```, which takes a numerical value from 0 and up. + Example: ```$ VERBOSE=3 mainline-gtk``` + 0 = silence all output + 1 = normal output (default) + 2 = --debug + 3 = more verbose + 4 = even more + 5+ mostly just for uncommenting things in the code and recompiling, not really useful in the release builds + +* **Uninstall Old** doesn't remove some distribution kernel packages + Use the normal package manager like apt or synaptic to remove the parent meta-package: + ```$ sudo apt remove linux-image-generic``` + Then **Uninstall Old** should successfully remove everything. + Also you should hit the **Reload** button once after that (or run ```$ BRANDING_SHORTNAME --delete-cache```) * Secure Boot Possibly useful, I have not tried: From 11bc14a260a9d099c2477f0f25df9df2b95a171a Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Thu, 16 Mar 2023 16:31:05 -0400 Subject: [PATCH 279/567] readme --- README.md.src | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md.src b/README.md.src index e5381f55..8685c43c 100644 --- a/README.md.src +++ b/README.md.src @@ -90,7 +90,7 @@ For the single manual uninstall button, the button simply isn't activated. For t # Help / FAQ * General debugging Aside from the ```--debug``` option, there is an environment variable ```VERBOSE```, which takes a numerical value from 0 and up. - Example: ```$ VERBOSE=3 mainline-gtk``` + Example: ```$ VERBOSE=3 BRANDING_SHORTNAME-gtk``` 0 = silence all output 1 = normal output (default) 2 = --debug From c30cd60ed9aaaca21a3e77704431e4c75b9ff0e7 Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Sun, 19 Mar 2023 16:51:40 -0400 Subject: [PATCH 280/567] load_app_config() resilience --- po/de.po | 8 ++++---- po/el.po | 8 ++++---- po/es.po | 8 ++++---- po/fr.po | 8 ++++---- po/hr.po | 8 ++++---- po/it.po | 8 ++++---- po/ko.po | 8 ++++---- po/messages.pot | 8 ++++---- po/nl.po | 8 ++++---- po/pl.po | 8 ++++---- po/ru.po | 8 ++++---- po/sv.po | 8 ++++---- po/tr.po | 8 ++++---- po/uk.po | 8 ++++---- src/Common/Main.vala | 10 ++++++++-- src/lib/TeeJee.JsonHelper.vala | 29 ++++++++++++++++------------- 16 files changed, 80 insertions(+), 71 deletions(-) diff --git a/po/de.po b/po/de.po index 21f40e70..ffb2690a 100644 --- a/po/de.po +++ b/po/de.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-16 01:19-0400\n" +"POT-Creation-Date: 2023-03-19 16:41-0400\n" "PO-Revision-Date: 2023-02-20 18:40+0100\n" "Last-Translator: Marvin Meysel \n" "Language-Team: German\n" @@ -131,16 +131,16 @@ msgstr "Keine Updates gefunden" msgid "Install Kernel Version %s ? (y/n): " msgstr "Kernel-Version %s installieren? (j/n):" -#: src/Common/Main.vala:275 +#: src/Common/Main.vala:281 msgid "Called from" msgstr "Angerufen von" -#: src/Common/Main.vala:276 +#: src/Common/Main.vala:282 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" -#: src/Common/Main.vala:308 +#: src/Common/Main.vala:314 msgid "Notifications are disabled" msgstr "Benachrichtigungen sind deaktiviert" diff --git a/po/el.po b/po/el.po index 9ee8e405..8bcf2df5 100644 --- a/po/el.po +++ b/po/el.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-16 01:19-0400\n" +"POT-Creation-Date: 2023-03-19 16:41-0400\n" "PO-Revision-Date: 2023-01-10 02:03-0600\n" "Last-Translator: Vasilis Kosmidis \n" "Language-Team: Greek\n" @@ -131,16 +131,16 @@ msgstr "Δεν βρέθηκαν ενημερώσεις" msgid "Install Kernel Version %s ? (y/n): " msgstr "Εγκατάσταση του πυρήνα έκδοσης %s ; (ν/ό):" -#: src/Common/Main.vala:275 +#: src/Common/Main.vala:281 msgid "Called from" msgstr "Κλήθηκε από" -#: src/Common/Main.vala:276 +#: src/Common/Main.vala:282 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" -#: src/Common/Main.vala:308 +#: src/Common/Main.vala:314 msgid "Notifications are disabled" msgstr "Οι ειδοποιήσεις είναι απενεργοποιημένες" diff --git a/po/es.po b/po/es.po index 4052feaf..85fb2bb5 100644 --- a/po/es.po +++ b/po/es.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-16 01:19-0400\n" +"POT-Creation-Date: 2023-03-19 16:41-0400\n" "PO-Revision-Date: 2018-01-03 02:03-0600\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish\n" @@ -132,16 +132,16 @@ msgstr "No se encontró ninguna actualización" msgid "Install Kernel Version %s ? (y/n): " msgstr "" -#: src/Common/Main.vala:275 +#: src/Common/Main.vala:281 msgid "Called from" msgstr "" -#: src/Common/Main.vala:276 +#: src/Common/Main.vala:282 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" -#: src/Common/Main.vala:308 +#: src/Common/Main.vala:314 #, fuzzy msgid "Notifications are disabled" msgstr "Notificación" diff --git a/po/fr.po b/po/fr.po index 7f39e432..7d6d3b2c 100644 --- a/po/fr.po +++ b/po/fr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-16 01:19-0400\n" +"POT-Creation-Date: 2023-03-19 16:41-0400\n" "PO-Revision-Date: 2018-08-05 15:50+0200\n" "Last-Translator: Yolateng0 \n" "Language-Team: French\n" @@ -132,16 +132,16 @@ msgstr "Aucune mise à jour disponible" msgid "Install Kernel Version %s ? (y/n): " msgstr "Installer le noyau en version %s ? (y/n): " -#: src/Common/Main.vala:275 +#: src/Common/Main.vala:281 msgid "Called from" msgstr "" -#: src/Common/Main.vala:276 +#: src/Common/Main.vala:282 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" -#: src/Common/Main.vala:308 +#: src/Common/Main.vala:314 msgid "Notifications are disabled" msgstr "Les notifications sont désactivées" diff --git a/po/hr.po b/po/hr.po index d79bf594..effd86e5 100644 --- a/po/hr.po +++ b/po/hr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-16 01:19-0400\n" +"POT-Creation-Date: 2023-03-19 16:41-0400\n" "PO-Revision-Date: 2022-09-22 12:13+0200\n" "Last-Translator: gogo \n" "Language-Team: Croatian\n" @@ -131,16 +131,16 @@ msgstr "Nema pronađenih nadopuna" msgid "Install Kernel Version %s ? (y/n): " msgstr "Instaliraj kernel inačice %s ? (d/n): " -#: src/Common/Main.vala:275 +#: src/Common/Main.vala:281 msgid "Called from" msgstr "Pozvano od" -#: src/Common/Main.vala:276 +#: src/Common/Main.vala:282 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" -#: src/Common/Main.vala:308 +#: src/Common/Main.vala:314 msgid "Notifications are disabled" msgstr "Obavijesti su onemogućene" diff --git a/po/it.po b/po/it.po index ff44b6d9..6ac99180 100644 --- a/po/it.po +++ b/po/it.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline 1.0.15\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-16 01:19-0400\n" +"POT-Creation-Date: 2023-03-19 16:41-0400\n" "PO-Revision-Date: 2020-08-22 15:35+0100\n" "Last-Translator: Albano Battistella \n" "Language-Team: Italian\n" @@ -129,16 +129,16 @@ msgstr "Nessun aggiornamento trovato" msgid "Install Kernel Version %s ? (y/n): " msgstr "Installare la versione del kernel %s ? (y/n): " -#: src/Common/Main.vala:275 +#: src/Common/Main.vala:281 msgid "Called from" msgstr "Chiamata da" -#: src/Common/Main.vala:276 +#: src/Common/Main.vala:282 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" -#: src/Common/Main.vala:308 +#: src/Common/Main.vala:314 msgid "Notifications are disabled" msgstr "Le notifiche sono disabilitate" diff --git a/po/ko.po b/po/ko.po index a770721c..6384485a 100644 --- a/po/ko.po +++ b/po/ko.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline 1.0.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-16 01:19-0400\n" +"POT-Creation-Date: 2023-03-19 16:41-0400\n" "PO-Revision-Date: 2022-09-28 11:48+0900\n" "Last-Translator: Kevin Kim \n" "Language-Team: Korean\n" @@ -131,16 +131,16 @@ msgstr "업데이트를 찾을 수 없습니다" msgid "Install Kernel Version %s ? (y/n): " msgstr "커널 %s 버전을 설치하시겠습니까? (y/n): " -#: src/Common/Main.vala:275 +#: src/Common/Main.vala:281 msgid "Called from" msgstr "에서 호출" -#: src/Common/Main.vala:276 +#: src/Common/Main.vala:282 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" -#: src/Common/Main.vala:308 +#: src/Common/Main.vala:314 msgid "Notifications are disabled" msgstr "알림이 비활성화 되었습니다" diff --git a/po/messages.pot b/po/messages.pot index 8fcaada9..eaa536e3 100644 --- a/po/messages.pot +++ b/po/messages.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline 1.1.7\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-16 01:19-0400\n" +"POT-Creation-Date: 2023-03-19 16:48-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -128,16 +128,16 @@ msgstr "" msgid "Install Kernel Version %s ? (y/n): " msgstr "" -#: src/Common/Main.vala:275 +#: src/Common/Main.vala:281 msgid "Called from" msgstr "" -#: src/Common/Main.vala:276 +#: src/Common/Main.vala:282 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" -#: src/Common/Main.vala:308 +#: src/Common/Main.vala:314 msgid "Notifications are disabled" msgstr "" diff --git a/po/nl.po b/po/nl.po index 6f2467bb..dcf8f983 100644 --- a/po/nl.po +++ b/po/nl.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-16 01:19-0400\n" +"POT-Creation-Date: 2023-03-19 16:41-0400\n" "PO-Revision-Date: 2020-08-23 13:55+0200\n" "Last-Translator: Heimen Stoffels \n" "Language-Team: Dutch (Netherlands)\n" @@ -132,16 +132,16 @@ msgstr "Geen updates gevonden" msgid "Install Kernel Version %s ? (y/n): " msgstr "Wilt u versie %s installeren? (j/n): " -#: src/Common/Main.vala:275 +#: src/Common/Main.vala:281 msgid "Called from" msgstr "Aangeroepen door" -#: src/Common/Main.vala:276 +#: src/Common/Main.vala:282 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" -#: src/Common/Main.vala:308 +#: src/Common/Main.vala:314 msgid "Notifications are disabled" msgstr "Meldingen zijn uitgeschakeld" diff --git a/po/pl.po b/po/pl.po index 61f50ae7..cec401ef 100644 --- a/po/pl.po +++ b/po/pl.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-16 01:19-0400\n" +"POT-Creation-Date: 2023-03-19 16:41-0400\n" "PO-Revision-Date: 2023-03-11 12:47+0100\n" "Last-Translator: Matthaiks\n" "Language-Team: Polish\n" @@ -123,16 +123,16 @@ msgstr "Nie znaleziono aktualizacji" msgid "Install Kernel Version %s ? (y/n): " msgstr "Zainstalować wersję jądra %s? (t/n): " -#: src/Common/Main.vala:275 +#: src/Common/Main.vala:281 msgid "Called from" msgstr "Wywołano z" -#: src/Common/Main.vala:276 +#: src/Common/Main.vala:282 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" -#: src/Common/Main.vala:308 +#: src/Common/Main.vala:314 msgid "Notifications are disabled" msgstr "Powiadomienia są wyłączone" diff --git a/po/ru.po b/po/ru.po index da19cff6..57300fb8 100644 --- a/po/ru.po +++ b/po/ru.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-16 01:19-0400\n" +"POT-Creation-Date: 2023-03-19 16:41-0400\n" "PO-Revision-Date: 2023-03-12 18:24+0300\n" "Last-Translator: Faust3000 (Original) | Danik2343 (Update Transaltion) " "\n" @@ -128,16 +128,16 @@ msgstr "Обновлений не найдено" msgid "Install Kernel Version %s ? (y/n): " msgstr "Установить версию ядра %s ? (y/n): " -#: src/Common/Main.vala:275 +#: src/Common/Main.vala:281 msgid "Called from" msgstr "Вызван из" -#: src/Common/Main.vala:276 +#: src/Common/Main.vala:282 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" -#: src/Common/Main.vala:308 +#: src/Common/Main.vala:314 msgid "Notifications are disabled" msgstr "Уведомления отключены" diff --git a/po/sv.po b/po/sv.po index f7276b04..868a8fd3 100644 --- a/po/sv.po +++ b/po/sv.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-16 01:19-0400\n" +"POT-Creation-Date: 2023-03-19 16:41-0400\n" "PO-Revision-Date: 2018-01-13 16:56+0100\n" "Last-Translator: Åke Engelbrektson \n" "Language-Team:Swedish\n" @@ -133,16 +133,16 @@ msgstr "Inga uppdateringar hittades" msgid "Install Kernel Version %s ? (y/n): " msgstr "" -#: src/Common/Main.vala:275 +#: src/Common/Main.vala:281 msgid "Called from" msgstr "" -#: src/Common/Main.vala:276 +#: src/Common/Main.vala:282 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" -#: src/Common/Main.vala:308 +#: src/Common/Main.vala:314 #, fuzzy msgid "Notifications are disabled" msgstr "Avisering" diff --git a/po/tr.po b/po/tr.po index 12a25b80..1adbc8f2 100644 --- a/po/tr.po +++ b/po/tr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-16 01:19-0400\n" +"POT-Creation-Date: 2023-03-19 16:41-0400\n" "PO-Revision-Date: 2022-08-06 16:48+0300\n" "Last-Translator: Sabri Ünal \n" "Language-Team: Turkish\n" @@ -132,16 +132,16 @@ msgstr "Güncelleme bulunamadı" msgid "Install Kernel Version %s ? (y/n): " msgstr "Linux Çekirdek Sürümü %s Kurulsun mu? (e/h): " -#: src/Common/Main.vala:275 +#: src/Common/Main.vala:281 msgid "Called from" msgstr "Çağrı konumu" -#: src/Common/Main.vala:276 +#: src/Common/Main.vala:282 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" -#: src/Common/Main.vala:308 +#: src/Common/Main.vala:314 msgid "Notifications are disabled" msgstr "Bildirimler devre dışı bırakılmış" diff --git a/po/uk.po b/po/uk.po index 2928062c..3ed55890 100644 --- a/po/uk.po +++ b/po/uk.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-16 01:19-0400\n" +"POT-Creation-Date: 2023-03-19 16:41-0400\n" "PO-Revision-Date: 2019-07-25 11:00+0300\n" "Last-Translator: Serhii Golovko \n" "Language-Team: Ukranian\n" @@ -128,16 +128,16 @@ msgstr "Оновлень не знайдено" msgid "Install Kernel Version %s ? (y/n): " msgstr "Встановити Ядро Версії %s ? (так/ні): " -#: src/Common/Main.vala:275 +#: src/Common/Main.vala:281 msgid "Called from" msgstr "Викликано з" -#: src/Common/Main.vala:276 +#: src/Common/Main.vala:282 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" -#: src/Common/Main.vala:308 +#: src/Common/Main.vala:314 msgid "Notifications are disabled" msgstr "Повідомлення вимкнено" diff --git a/src/Common/Main.vala b/src/Common/Main.vala index 5f005847..f7845cfe 100644 --- a/src/Common/Main.vala +++ b/src/Common/Main.vala @@ -209,8 +209,14 @@ public class Main : GLib.Object { if (!file_exists(APP_CONFIG_FILE)) save_app_config(); + bool cf = true; try { parser.load_from_file(APP_CONFIG_FILE); } - catch (Error e) { vprint(e.message,1,stderr); } + catch (Error e) { cf = false; vprint(e.message,1,stderr); } + if (!cf) { + save_app_config(); + try { parser.load_from_file(APP_CONFIG_FILE); } + catch (Error e) { vprint(e.message,1,stderr); exit(1); } + } var node = parser.get_root(); var config = node.get_object(); @@ -317,7 +323,7 @@ public class Main : GLib.Object { // and the two instances' cache operations step all over each other. // This is not really a fully correct answer, but mostly good enough: // if notifications are now off, then run immediately so it clears out the existing watcher possibly already running - // if notifications are now on, then run on exit. + // if notifications are now on, then wait and run later on exit. if (!notify_major && !notify_minor) exec_async("bash "+STARTUP_SCRIPT_FILE+" 2>&- >&- <&-"); } diff --git a/src/lib/TeeJee.JsonHelper.vala b/src/lib/TeeJee.JsonHelper.vala index e69b0be8..c4cb9fb2 100644 --- a/src/lib/TeeJee.JsonHelper.vala +++ b/src/lib/TeeJee.JsonHelper.vala @@ -21,14 +21,16 @@ * * */ - + +using Gee; using Json; namespace TeeJee.JsonHelper { using l.misc; - public string json_get_string(Json.Object jobj, string member, string def_value) { + public string json_get_string(Json.Object jobj, string member, string def_value="") { + vprint("json_get_string("+member+","+def_value+")",4); if (jobj.has_member(member)) { return jobj.get_string_member(member); } else { @@ -37,7 +39,8 @@ namespace TeeJee.JsonHelper { } } - public double json_get_double(Json.Object jobj, string member, double def_value) { + public double json_get_double(Json.Object jobj, string member, double def_value=0) { + vprint("json_get_double("+member+","+def_value.to_string()+")",4); var text = json_get_string(jobj, member, def_value.to_string()); double double_value; if (double.try_parse(text, out double_value)) { @@ -47,7 +50,8 @@ namespace TeeJee.JsonHelper { } } - public bool json_get_bool(Json.Object jobj, string member, bool def_value) { + public bool json_get_bool(Json.Object jobj, string member, bool def_value=false) { + vprint("json_get_bool("+member+","+def_value.to_string()+")",4); if (jobj.has_member(member)) { return bool.parse(jobj.get_string_member(member)); } else { @@ -56,7 +60,8 @@ namespace TeeJee.JsonHelper { } } - public int json_get_int(Json.Object jobj, string member, int def_value) { + public int json_get_int(Json.Object jobj, string member, int def_value=0) { + vprint("json_get_int("+member+","+def_value.to_string()+")",4); if (jobj.has_member(member)) { return int.parse(jobj.get_string_member(member)); } else { @@ -64,8 +69,9 @@ namespace TeeJee.JsonHelper { return def_value; } } - - public int64 json_get_int64(Json.Object jobj, string member, int64 def_value) { + + public int64 json_get_int64(Json.Object jobj, string member, int64 def_value=0) { + vprint("json_get_int64("+member+","+def_value.to_string()+")",4); if (jobj.has_member(member)) { return int64.parse(jobj.get_string_member(member)); } else { @@ -74,14 +80,11 @@ namespace TeeJee.JsonHelper { } } - public Gee.ArrayList json_get_array( - Json.Object jobj, - string member, - Gee.ArrayList def_value) { - + public ArrayList json_get_array(Json.Object jobj, string member, ArrayList def_value=new ArrayList()) { + vprint("json_get_array("+member+","+def_value[0]+")",4); if (jobj.has_member(member)) { var jarray = jobj.get_array_member(member); - var list = new Gee.ArrayList(); + var list = new ArrayList(); foreach(var node in jarray.get_elements()) list.add(node.get_string()); return list; } else { From f0297139ded71d78d628d936deab7e79d16b7d4c Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Sun, 19 Mar 2023 16:57:36 -0400 Subject: [PATCH 281/567] 1.1.8 --- .deb_build_number.mak | 4 ++-- BRANDING.mak | 2 +- debian/changelog | 6 ++++++ 3 files changed, 9 insertions(+), 3 deletions(-) diff --git a/.deb_build_number.mak b/.deb_build_number.mak index 97274624..204194a6 100644 --- a/.deb_build_number.mak +++ b/.deb_build_number.mak @@ -1,3 +1,3 @@ # This file is generated by Makefile "make deb_build_number" -DEB_PKG_VERSION := 1.1.7 -DEB_BUILD_NUMBER := 0001 +DEB_PKG_VERSION := 1.1.8 +DEB_BUILD_NUMBER := 0000 diff --git a/BRANDING.mak b/BRANDING.mak index f641651f..a8d03554 100644 --- a/BRANDING.mak +++ b/BRANDING.mak @@ -3,7 +3,7 @@ VERSION_MAJOR = 1 VERSION_MINOR = 1 -VERSION_MICRO = 7 +VERSION_MICRO = 8 BRANDING_SHORTNAME = mainline BRANDING_LONGNAME = Ubuntu Mainline Kernel Installer BRANDING_AUTHORNAME = Brian K. White diff --git a/debian/changelog b/debian/changelog index 0109669a..2568b053 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +mainline (1.1.8) unstable; urgency=medium + + * make load_app_config() more resilient + + -- Brian K. White Sun, 19 Mar 2023 16:55:36 -0400 + mainline (1.1.7) unstable; urgency=medium * fix detect notification settings change on exit missed notify_minor From 2787cf1013e2e04143fdbb30362ab0d16d087051 Mon Sep 17 00:00:00 2001 From: venerdi2 Date: Mon, 20 Mar 2023 18:28:07 +0100 Subject: [PATCH 282/567] Update it.po --- po/it.po | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/po/it.po b/po/it.po index 422142ad..cf1098ab 100644 --- a/po/it.po +++ b/po/it.po @@ -117,7 +117,7 @@ msgstr "Ultimo aggiornamento" #: src/Common/LinuxKernel.vala:1068 src/Console/AppConsole.vala:292 msgid "Latest point update" -msgstr "Ultimo aggiornamento del punto" +msgstr "Ultimo aggiornamento del rilascio parziale" #: src/Common/LinuxKernel.vala:1076 src/Console/AppConsole.vala:297 #: src/Console/AppConsole.vala:352 @@ -158,7 +158,7 @@ msgstr "Comandi" #: src/Console/AppConsole.vala:52 msgid "Check for kernel updates" -msgstr "Verifica aggiornamenti per il kernel" +msgstr "Verifica aggiornamenti del kernel" #: src/Console/AppConsole.vala:53 msgid "Check for kernel updates and notify current user" @@ -212,7 +212,7 @@ msgstr "Includi versioni instabili e rilasci RC" #: src/Console/AppConsole.vala:67 #, fuzzy msgid "Exclude unstable and RC releases" -msgstr "Includi versioni instabili e rilasci RC" +msgstr "Escludi versioni instabili e rilasci RC" #: src/Console/AppConsole.vala:68 msgid "Enable verbose debugging output" @@ -262,7 +262,7 @@ msgstr "Impossibile trovare la versione richiesta" #: src/Console/AppConsole.vala:243 msgid "and use a version string listed in first column" -msgstr "e usa una stringa di versione elencata nella prima colonna" +msgstr "ed usa una stringa di versione elencata nella prima colonna" #: src/Console/AppConsole.vala:270 msgid "Command not specified" @@ -270,7 +270,7 @@ msgstr "Comando non specificato" #: src/Console/AppConsole.vala:271 msgid "to list all commands" -msgstr "Elencare tutti i comandi" +msgstr "elencare tutti i comandi" #: src/Console/AppConsole.vala:325 src/Gtk/SettingsDialog.vala:165 msgid "Show" @@ -357,7 +357,7 @@ msgstr "Disinstalla i vecchi" #: src/Gtk/MainWindow.vala:309 msgid "Uninstall kernels older than running kernel" -msgstr "Rimuovere i kernel installati più vecchi del kernel in esecuzione" +msgstr "Rimuove i kernel installati più vecchi del kernel in esecuzione" #: src/Gtk/MainWindow.vala:314 msgid "Reload" From 2af73986df423a9869d10447d3e522aa59db9fd8 Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Tue, 21 Mar 2023 23:52:10 -0400 Subject: [PATCH 283/567] wip_cfg --- Makefile | 8 +- po/de.po | 241 +++++++++++++++++--------------- po/el.po | 241 +++++++++++++++++--------------- po/es.po | 238 ++++++++++++++++--------------- po/fr.po | 241 +++++++++++++++++--------------- po/hr.po | 241 +++++++++++++++++--------------- po/it.po | 248 +++++++++++++++++---------------- po/ko.po | 241 +++++++++++++++++--------------- po/messages.pot | 235 ++++++++++++++++--------------- po/nl.po | 241 +++++++++++++++++--------------- po/pl.po | 241 +++++++++++++++++--------------- po/ru.po | 241 +++++++++++++++++--------------- po/sv.po | 238 ++++++++++++++++--------------- po/tr.po | 241 +++++++++++++++++--------------- po/uk.po | 241 +++++++++++++++++--------------- src/Common/LinuxKernel.vala | 1 - src/Common/Main.vala | 157 ++++++++++++--------- src/Console/AppConsole.vala | 106 +++++++------- src/Gtk/AppGtk.vala | 1 - src/Gtk/MainWindow.vala | 1 - src/Gtk/ProgressWindow.vala | 1 - src/Gtk/SettingsDialog.vala | 9 +- src/Gtk/TerminalWindow.vala | 1 - src/Gtk/l.gtk.vala | 1 - src/lib/AsyncTask.vala | 1 - src/lib/TeeJee.JsonHelper.vala | 96 ------------- src/lib/l.misc.vala | 4 +- 27 files changed, 1904 insertions(+), 1852 deletions(-) delete mode 100644 src/lib/TeeJee.JsonHelper.vala diff --git a/Makefile b/Makefile index f18044c6..8799ec8d 100644 --- a/Makefile +++ b/Makefile @@ -1,8 +1,5 @@ # Makefile for "mainline" -# url to ubuntu mainline kernels -DEFAULT_PPA_URI := https://kernel.ubuntu.com/~kernel-ppa/mainline/ - SHELL := /bin/bash CFLAGS := -O2 VALACFLAGS := @@ -33,8 +30,7 @@ build_symbols := -X -D'INSTALL_PREFIX="$(prefix)"' \ -X -D'BRANDING_AUTHORNAME="$(BRANDING_AUTHORNAME)"' \ -X -D'BRANDING_AUTHOREMAIL="$(BRANDING_AUTHOREMAIL)"' \ -X -D'BRANDING_WEBSITE="$(BRANDING_WEBSITE)"' \ - -X -D'GETTEXT_PACKAGE="$(BRANDING_SHORTNAME)"' \ - -X -D'DEFAULT_PPA_URI="$(DEFAULT_PPA_URI)"' + -X -D'GETTEXT_PACKAGE="$(BRANDING_SHORTNAME)"' misc_files := README.md \ INSTALL \ @@ -81,7 +77,6 @@ $(misc_files): %: %.src BRANDING.mak -e ';s/BRANDING_VERSION/$(BRANDING_VERSION)/g' \ -e ';s|BRANDING_GITREPO|$(BRANDING_GITREPO)|g' \ $(@).src >$(@) -# -e ';s|DEST_BIN_DIR|$(DESTDIR)$(bindir)|g' $(pot_file): $(common_vala_files) $(tui_vala_files) $(gui_vala_files) xgettext \ @@ -130,7 +125,6 @@ install: all .PHONY: uninstall uninstall: -# $(BRANDING_SHORTNAME) --clean-cache rm -f $(DESTDIR)$(bindir)/$(BRANDING_SHORTNAME) $(DESTDIR)$(bindir)/$(BRANDING_SHORTNAME)-gtk rm -f $(DESTDIR)$(sharedir)/pixmaps/$(BRANDING_SHORTNAME).* rm -rf $(DESTDIR)$(sharedir)/pixmaps/$(BRANDING_SHORTNAME) diff --git a/po/de.po b/po/de.po index ffb2690a..98d2689d 100644 --- a/po/de.po +++ b/po/de.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-19 16:41-0400\n" +"POT-Creation-Date: 2023-03-21 20:12-0400\n" "PO-Revision-Date: 2023-02-20 18:40+0100\n" "Last-Translator: Marvin Meysel \n" "Language-Team: German\n" @@ -13,134 +13,134 @@ msgstr "" "X-Launchpad-Export-Date: 2017-04-13 11:48+0000\n" "X-Generator: Poedit 3.1.1\n" -#: src/Common/LinuxKernel.vala:87 +#: src/Common/LinuxKernel.vala:86 msgid "Distribution" msgstr "Distribution" -#: src/Common/LinuxKernel.vala:102 +#: src/Common/LinuxKernel.vala:101 msgid "Architecture" msgstr "Architektur" -#: src/Common/LinuxKernel.vala:277 +#: src/Common/LinuxKernel.vala:276 #, fuzzy msgid "Fetching individual kernel indexes" msgstr "Index abrufen..." -#: src/Common/LinuxKernel.vala:326 +#: src/Common/LinuxKernel.vala:325 msgid "Updating from" msgstr "" -#: src/Common/LinuxKernel.vala:343 src/Common/LinuxKernel.vala:896 +#: src/Common/LinuxKernel.vala:342 src/Common/LinuxKernel.vala:895 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:346 src/Common/LinuxKernel.vala:899 +#: src/Common/LinuxKernel.vala:345 src/Common/LinuxKernel.vala:898 msgid "FAILED" msgstr "" -#: src/Common/LinuxKernel.vala:760 +#: src/Common/LinuxKernel.vala:759 msgid "Packages Available" msgstr "Verfügbare Pakete" -#: src/Common/LinuxKernel.vala:765 +#: src/Common/LinuxKernel.vala:764 msgid "Packages Installed" msgstr "Installierte Pakete" -#: src/Common/LinuxKernel.vala:778 src/lib/TeeJee.FileSystem.vala:121 +#: src/Common/LinuxKernel.vala:777 src/lib/TeeJee.FileSystem.vala:121 msgid "File not found" msgstr "Datei nicht gefunden " -#: src/Common/LinuxKernel.vala:842 +#: src/Common/LinuxKernel.vala:841 msgid "Available Kernels" msgstr "Verfügbare Kernel" -#: src/Common/LinuxKernel.vala:849 src/Gtk/MainWindow.vala:155 +#: src/Common/LinuxKernel.vala:848 src/Gtk/MainWindow.vala:154 msgid "Installed" msgstr "Installiert" -#: src/Common/LinuxKernel.vala:849 src/Gtk/MainWindow.vala:155 -#: src/Gtk/MainWindow.vala:498 src/Gtk/MainWindow.vala:511 +#: src/Common/LinuxKernel.vala:848 src/Gtk/MainWindow.vala:154 +#: src/Gtk/MainWindow.vala:497 src/Gtk/MainWindow.vala:510 msgid "Running" msgstr "Läuft" -#: src/Common/LinuxKernel.vala:884 +#: src/Common/LinuxKernel.vala:883 msgid "Downloading" msgstr "Herunterladen" -#: src/Common/LinuxKernel.vala:912 +#: src/Common/LinuxKernel.vala:911 #, fuzzy msgid "is already installed." msgstr "Dieser Kernel ist bereits installiert." -#: src/Common/LinuxKernel.vala:942 +#: src/Common/LinuxKernel.vala:941 #, fuzzy msgid "Uninstalling selected kernels" msgstr "Deinstallation des angegebenen Kernels" -#: src/Common/LinuxKernel.vala:948 +#: src/Common/LinuxKernel.vala:947 msgid "requested" msgstr "" -#: src/Common/LinuxKernel.vala:951 +#: src/Common/LinuxKernel.vala:950 #, fuzzy msgid "not uninstalling the currently running kernel" msgstr "Deinstallation des angegebenen Kernels" -#: src/Common/LinuxKernel.vala:967 +#: src/Common/LinuxKernel.vala:966 msgid "found" msgstr "" -#: src/Common/LinuxKernel.vala:970 +#: src/Common/LinuxKernel.vala:969 #, fuzzy msgid "No packages to un-install!" msgstr "Installierte Pakete" -#: src/Common/LinuxKernel.vala:1018 +#: src/Common/LinuxKernel.vala:1017 #, fuzzy msgid "Could not find running kernel in list" msgstr "Konnte keinen laufenden Kernel in der Liste finden!" -#: src/Common/LinuxKernel.vala:1023 +#: src/Common/LinuxKernel.vala:1022 msgid "Could not find any kernels to uninstall" msgstr "Es konnten keine Kernel zum Deinstallieren gefunden werden" -#: src/Common/LinuxKernel.vala:1031 +#: src/Common/LinuxKernel.vala:1030 #, fuzzy msgid "The following kernels will be uninstalled" msgstr "Die folgenden Kernel werden deinstalliert:" -#: src/Common/LinuxKernel.vala:1035 +#: src/Common/LinuxKernel.vala:1034 msgid "Continue ?" msgstr "Weiter ?" -#: src/Common/LinuxKernel.vala:1057 src/Console/AppConsole.vala:285 +#: src/Common/LinuxKernel.vala:1056 src/Console/AppConsole.vala:290 msgid "Latest update" msgstr "Neustes Update" -#: src/Common/LinuxKernel.vala:1068 src/Console/AppConsole.vala:292 +#: src/Common/LinuxKernel.vala:1067 src/Console/AppConsole.vala:297 msgid "Latest point update" msgstr "Letzte Punktaktualisierung" -#: src/Common/LinuxKernel.vala:1076 src/Console/AppConsole.vala:297 -#: src/Console/AppConsole.vala:352 +#: src/Common/LinuxKernel.vala:1075 src/Console/AppConsole.vala:302 +#: src/Console/AppConsole.vala:318 msgid "No updates found" msgstr "Keine Updates gefunden" -#: src/Common/LinuxKernel.vala:1085 +#: src/Common/LinuxKernel.vala:1084 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Kernel-Version %s installieren? (j/n):" -#: src/Common/Main.vala:281 +#: src/Common/Main.vala:300 msgid "Called from" msgstr "Angerufen von" -#: src/Common/Main.vala:282 +#: src/Common/Main.vala:301 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" -#: src/Common/Main.vala:314 +#: src/Common/Main.vala:333 msgid "Notifications are disabled" msgstr "Benachrichtigungen sind deaktiviert" @@ -149,144 +149,152 @@ msgstr "Benachrichtigungen sind deaktiviert" msgid "File not found: %s" msgstr "Datei nicht gefunden " -#: src/Console/AppConsole.vala:48 src/Gtk/AppGtk.vala:136 +#: src/Console/AppConsole.vala:47 src/Gtk/AppGtk.vala:135 msgid "Syntax" msgstr "Syntax" -#: src/Console/AppConsole.vala:50 +#: src/Console/AppConsole.vala:49 msgid "Commands" msgstr "Befehle" -#: src/Console/AppConsole.vala:52 +#: src/Console/AppConsole.vala:51 msgid "Check for kernel updates" msgstr "Nach Kernel-Updates suchen" -#: src/Console/AppConsole.vala:53 +#: src/Console/AppConsole.vala:52 msgid "Check for kernel updates and notify current user" msgstr "" "Prüfung auf Kernel-Updates und Benachrichtigung des aktuellen Benutzers" -#: src/Console/AppConsole.vala:54 +#: src/Console/AppConsole.vala:53 msgid "List all available mainline kernels" msgstr "Alle verfügbaren Mainline-Kernel auflisten" -#: src/Console/AppConsole.vala:55 +#: src/Console/AppConsole.vala:54 msgid "List installed kernels" msgstr "Installierte Kernel auflisten" -#: src/Console/AppConsole.vala:56 +#: src/Console/AppConsole.vala:55 msgid "Install latest mainline kernel" msgstr "Installieren Sie den neuesten Mainline-Kernel" -#: src/Console/AppConsole.vala:57 +#: src/Console/AppConsole.vala:56 msgid "Install latest point update for current series" msgstr "Neueste Punktaktualisierung für die aktuelle Serie installieren" -#: src/Console/AppConsole.vala:58 +#: src/Console/AppConsole.vala:57 msgid "Install specified mainline kernel" msgstr "Angegebenen Mainline-Kernel installieren" -#: src/Console/AppConsole.vala:59 +#: src/Console/AppConsole.vala:58 msgid "Uninstall specified kernel" msgstr "Deinstallation des angegebenen Kernels" -#: src/Console/AppConsole.vala:60 +#: src/Console/AppConsole.vala:59 #, fuzzy msgid "Uninstall kernels older than the latest installed" msgstr "Deinstallation von Kerneln, die älter sind als der aktuelle Kernel" -#: src/Console/AppConsole.vala:61 +#: src/Console/AppConsole.vala:60 msgid "Download specified kernels" msgstr "Herunterladen bestimmter Kernel" -#: src/Console/AppConsole.vala:62 +#: src/Console/AppConsole.vala:61 msgid "Delete cached info about available kernels" msgstr "" -#: src/Console/AppConsole.vala:64 src/Gtk/AppGtk.vala:138 +#: src/Console/AppConsole.vala:63 src/Gtk/AppGtk.vala:137 msgid "Options" msgstr "Optionen" -#: src/Console/AppConsole.vala:66 +#: src/Console/AppConsole.vala:65 msgid "Include unstable and RC releases" msgstr "Unstable- und RC-Versionen einbeziehen" -#: src/Console/AppConsole.vala:67 +#: src/Console/AppConsole.vala:66 #, fuzzy msgid "Exclude unstable and RC releases" msgstr "Unstable- und RC-Versionen einbeziehen" -#: src/Console/AppConsole.vala:68 +#: src/Console/AppConsole.vala:67 msgid "Enable verbose debugging output" msgstr "Ausführliche Debugging-Ausgabe einschalten" -#: src/Console/AppConsole.vala:69 +#: src/Console/AppConsole.vala:68 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "Alle Aufforderungen mit Ja beantworten (nicht interaktiver Modus)" -#: src/Console/AppConsole.vala:72 +#: src/Console/AppConsole.vala:71 msgid "A version string taken from the output of --list" msgstr "Eine Versionszeichenfolge aus der Ausgabe von --list" -#: src/Console/AppConsole.vala:73 +#: src/Console/AppConsole.vala:72 msgid "One or more, comma-seperated" msgstr "" -#: src/Console/AppConsole.vala:74 +#: src/Console/AppConsole.vala:73 #, fuzzy msgid "The currently running kernel will always be ignored" msgstr "Die folgenden Kernel werden deinstalliert:" -#: src/Console/AppConsole.vala:152 src/Gtk/AppGtk.vala:122 +#: src/Console/AppConsole.vala:161 src/Gtk/AppGtk.vala:121 msgid "Unknown option" msgstr "Unbekannte Option" -#: src/Console/AppConsole.vala:153 src/Console/AppConsole.vala:243 -#: src/Console/AppConsole.vala:271 +#: src/Console/AppConsole.vala:162 src/Console/AppConsole.vala:248 +#: src/Console/AppConsole.vala:276 msgid "Run" msgstr "Ausführen" -#: src/Console/AppConsole.vala:153 +#: src/Console/AppConsole.vala:162 msgid "to list all options" msgstr "um alle Optionen aufzulisten" -#: src/Console/AppConsole.vala:211 src/Console/AppConsole.vala:251 +#: src/Console/AppConsole.vala:216 src/Console/AppConsole.vala:256 msgid "No kernels specified" msgstr "Keine Kernel angegeben" -#: src/Console/AppConsole.vala:217 +#: src/Console/AppConsole.vala:222 msgid "Multiple kernels selected for installation. Select only one." msgstr "" "Mehrere Kernel für die Installation ausgewählt. Wählen Sie nur einen aus." -#: src/Console/AppConsole.vala:240 +#: src/Console/AppConsole.vala:245 msgid "Could not find requested version" msgstr "Die gewünschte Version konnte nicht gefunden werden" -#: src/Console/AppConsole.vala:243 +#: src/Console/AppConsole.vala:248 msgid "and use a version string listed in first column" msgstr "" "und verwenden Sie eine in der ersten Spalte aufgeführte Versionszeichenfolge" -#: src/Console/AppConsole.vala:270 +#: src/Console/AppConsole.vala:275 msgid "Command not specified" msgstr "Befehl nicht angegeben" -#: src/Console/AppConsole.vala:271 +#: src/Console/AppConsole.vala:276 msgid "to list all commands" msgstr "um alle Befehle aufzulisten" -#: src/Console/AppConsole.vala:325 src/Gtk/SettingsDialog.vala:165 -msgid "Show" -msgstr "Zeigen" +#: src/Console/AppConsole.vala:312 +#, fuzzy +msgid "Notifications disabled in settings" +msgstr "Benachrichtigungen sind deaktiviert" + +#: src/Console/AppConsole.vala:332 +msgid "previously notified" +msgstr "" -#: src/Console/AppConsole.vala:330 src/Console/AppConsole.vala:342 +#: src/Console/AppConsole.vala:335 #, c-format msgid "Kernel %s Available" msgstr "Kernel %s verfügbar" -#: src/Console/AppConsole.vala:332 src/Console/AppConsole.vala:344 -#: src/Gtk/MainWindow.vala:266 +#: src/Console/AppConsole.vala:339 src/Gtk/SettingsDialog.vala:164 +msgid "Show" +msgstr "Zeigen" + +#: src/Console/AppConsole.vala:340 src/Gtk/MainWindow.vala:265 msgid "Install" msgstr "Installieren" @@ -298,7 +306,7 @@ msgstr "Credits" msgid "Back" msgstr "Zurück" -#: src/Gtk/AboutWindow.vala:185 src/Gtk/TerminalWindow.vala:162 +#: src/Gtk/AboutWindow.vala:185 src/Gtk/TerminalWindow.vala:161 msgid "Close" msgstr "Schließen" @@ -326,160 +334,163 @@ msgstr "Dokumentierer" msgid "Third Party Inclusions" msgstr "Einschlüsse von Drittparteien" -#: src/Gtk/AppGtk.vala:136 +#: src/Gtk/AppGtk.vala:135 #, fuzzy msgid "options" msgstr "Optionen" -#: src/Gtk/AppGtk.vala:140 +#: src/Gtk/AppGtk.vala:139 msgid "Print debug information" msgstr "Zeige Debug Informationen" -#: src/Gtk/AppGtk.vala:141 +#: src/Gtk/AppGtk.vala:140 msgid "Show all options" msgstr "Alle Optionen anzeigen" -#: src/Gtk/MainWindow.vala:112 +#: src/Gtk/MainWindow.vala:111 msgid "Kernel" msgstr "Kernel" -#: src/Gtk/MainWindow.vala:142 +#: src/Gtk/MainWindow.vala:141 msgid "Status" msgstr "Status" -#: src/Gtk/MainWindow.vala:276 +#: src/Gtk/MainWindow.vala:275 msgid "Uninstall" msgstr "Deinstallieren" -#: src/Gtk/MainWindow.vala:286 +#: src/Gtk/MainWindow.vala:285 msgid "Changes" msgstr "Änderungen" -#: src/Gtk/MainWindow.vala:308 +#: src/Gtk/MainWindow.vala:307 msgid "Uninstall Old" msgstr "Alte deinstallieren" -#: src/Gtk/MainWindow.vala:309 +#: src/Gtk/MainWindow.vala:308 msgid "Uninstall kernels older than running kernel" msgstr "Deinstallation von Kerneln, die älter sind als der aktuelle Kernel" -#: src/Gtk/MainWindow.vala:314 +#: src/Gtk/MainWindow.vala:313 msgid "Reload" msgstr "" -#: src/Gtk/MainWindow.vala:319 src/Gtk/SettingsDialog.vala:49 +#: src/Gtk/MainWindow.vala:318 src/Gtk/SettingsDialog.vala:48 msgid "Settings" msgstr "Einstellungen" -#: src/Gtk/MainWindow.vala:324 +#: src/Gtk/MainWindow.vala:323 msgid "About" msgstr "Über" -#: src/Gtk/MainWindow.vala:329 +#: src/Gtk/MainWindow.vala:328 msgid "Exit" msgstr "" -#: src/Gtk/MainWindow.vala:397 +#: src/Gtk/MainWindow.vala:396 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Kernel-Upgrade-Dienstprogramm für Ubuntu-basierte Distributionen" -#: src/Gtk/MainWindow.vala:398 +#: src/Gtk/MainWindow.vala:397 msgid "Forked" msgstr "Forked" -#: src/Gtk/MainWindow.vala:398 +#: src/Gtk/MainWindow.vala:397 msgid "Original" msgstr "Original" -#: src/Gtk/MainWindow.vala:436 +#: src/Gtk/MainWindow.vala:435 msgid "Updating kernels" msgstr "" -#: src/Gtk/MainWindow.vala:507 +#: src/Gtk/MainWindow.vala:506 msgid "available" msgstr "Verfügbar" -#: src/Gtk/MainWindow.vala:550 src/Gtk/MainWindow.vala:590 -#: src/Gtk/MainWindow.vala:624 +#: src/Gtk/MainWindow.vala:549 src/Gtk/MainWindow.vala:589 +#: src/Gtk/MainWindow.vala:623 msgid "DONE" msgstr "" -#: src/Gtk/ProgressWindow.vala:127 src/Gtk/TerminalWindow.vala:152 +#: src/Gtk/ProgressWindow.vala:126 src/Gtk/TerminalWindow.vala:151 msgid "Cancel" msgstr "Abbrechen" -#: src/Gtk/SettingsDialog.vala:59 +#: src/Gtk/SettingsDialog.vala:58 msgid "Notification" msgstr "Benachrichtigung" -#: src/Gtk/SettingsDialog.vala:66 +#: src/Gtk/SettingsDialog.vala:65 msgid "Notify if a major release is available" msgstr "Benachrichtigen, wenn eine größere Version verfügbar ist" -#: src/Gtk/SettingsDialog.vala:75 +#: src/Gtk/SettingsDialog.vala:74 msgid "Notify if a point release is available" msgstr "Benachrichtigen, wenn eine Punktfreigabe verfügbar ist" -#: src/Gtk/SettingsDialog.vala:86 +#: src/Gtk/SettingsDialog.vala:85 #, fuzzy msgid "Seconds interval enabled for debugging" msgstr "(Erlaubt Intervalle in Sekunden für --debug)" -#: src/Gtk/SettingsDialog.vala:109 +#: src/Gtk/SettingsDialog.vala:108 msgid "Check every" msgstr "Prüfen Sie jede" -#: src/Gtk/SettingsDialog.vala:134 -msgid "Hour(s)" +#: src/Gtk/SettingsDialog.vala:133 +#, fuzzy +msgid "Hours" msgstr "Stunde(n)" -#: src/Gtk/SettingsDialog.vala:136 -msgid "Day(s)" -msgstr "Tag(e)" +#: src/Gtk/SettingsDialog.vala:135 +msgid "Days" +msgstr "" -#: src/Gtk/SettingsDialog.vala:138 -msgid "Week(s)" +#: src/Gtk/SettingsDialog.vala:137 +#, fuzzy +msgid "Weeks" msgstr "Woche(n)" -#: src/Gtk/SettingsDialog.vala:141 -msgid "Second(s)" +#: src/Gtk/SettingsDialog.vala:140 +#, fuzzy +msgid "Seconds" msgstr "Sekunde(n)" -#: src/Gtk/SettingsDialog.vala:147 +#: src/Gtk/SettingsDialog.vala:146 msgid "Filters" msgstr "" -#: src/Gtk/SettingsDialog.vala:155 +#: src/Gtk/SettingsDialog.vala:154 msgid "Hide unstable and RC releases" msgstr "Unstable- und RC-Versionen ausblenden" -#: src/Gtk/SettingsDialog.vala:177 +#: src/Gtk/SettingsDialog.vala:176 #, fuzzy msgid "previous major versions" msgstr "N frühere Hauptversionen anzeigen" -#: src/Gtk/SettingsDialog.vala:181 +#: src/Gtk/SettingsDialog.vala:180 msgid "Network" msgstr "" -#: src/Gtk/SettingsDialog.vala:192 +#: src/Gtk/SettingsDialog.vala:191 #, fuzzy msgid "Internet connection timeout in" msgstr "Zeitüberschreitung der Internetverbindung in" -#: src/Gtk/SettingsDialog.vala:204 +#: src/Gtk/SettingsDialog.vala:203 msgid "seconds" msgstr "Sekunden" -#: src/Gtk/SettingsDialog.vala:211 +#: src/Gtk/SettingsDialog.vala:210 msgid "Max concurrent downloads" msgstr "Maximale Anzahl gleichzeitiger Downloads" -#: src/Gtk/SettingsDialog.vala:225 +#: src/Gtk/SettingsDialog.vala:224 msgid "Proxy" msgstr "" -#: src/Gtk/l.gtk.vala:43 +#: src/Gtk/l.gtk.vala:42 msgid "Missing Icon" msgstr "Fehlendes Symbol" diff --git a/po/el.po b/po/el.po index 8bcf2df5..a9ba1788 100644 --- a/po/el.po +++ b/po/el.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-19 16:41-0400\n" +"POT-Creation-Date: 2023-03-21 20:12-0400\n" "PO-Revision-Date: 2023-01-10 02:03-0600\n" "Last-Translator: Vasilis Kosmidis \n" "Language-Team: Greek\n" @@ -13,134 +13,134 @@ msgstr "" "X-Launchpad-Export-Date: 2017-04-13 11:48+0000\n" "X-Generator: Poedit 2.0.5\n" -#: src/Common/LinuxKernel.vala:87 +#: src/Common/LinuxKernel.vala:86 msgid "Distribution" msgstr "Διανομή" -#: src/Common/LinuxKernel.vala:102 +#: src/Common/LinuxKernel.vala:101 msgid "Architecture" msgstr "Αρχιτεκτονική" -#: src/Common/LinuxKernel.vala:277 +#: src/Common/LinuxKernel.vala:276 #, fuzzy msgid "Fetching individual kernel indexes" msgstr "Ανάκτηση ευρετηρίου..." -#: src/Common/LinuxKernel.vala:326 +#: src/Common/LinuxKernel.vala:325 msgid "Updating from" msgstr "" -#: src/Common/LinuxKernel.vala:343 src/Common/LinuxKernel.vala:896 +#: src/Common/LinuxKernel.vala:342 src/Common/LinuxKernel.vala:895 msgid "OK" msgstr "ΟΚ" -#: src/Common/LinuxKernel.vala:346 src/Common/LinuxKernel.vala:899 +#: src/Common/LinuxKernel.vala:345 src/Common/LinuxKernel.vala:898 msgid "FAILED" msgstr "" -#: src/Common/LinuxKernel.vala:760 +#: src/Common/LinuxKernel.vala:759 msgid "Packages Available" msgstr "Διαθέσιμα πακέτα" -#: src/Common/LinuxKernel.vala:765 +#: src/Common/LinuxKernel.vala:764 msgid "Packages Installed" msgstr "Εγκατεστημένα πακέτα" -#: src/Common/LinuxKernel.vala:778 src/lib/TeeJee.FileSystem.vala:121 +#: src/Common/LinuxKernel.vala:777 src/lib/TeeJee.FileSystem.vala:121 msgid "File not found" msgstr "Το αρχείο δε βρέθηκε" -#: src/Common/LinuxKernel.vala:842 +#: src/Common/LinuxKernel.vala:841 msgid "Available Kernels" msgstr "Διαθέσιμοι πυρήνες" -#: src/Common/LinuxKernel.vala:849 src/Gtk/MainWindow.vala:155 +#: src/Common/LinuxKernel.vala:848 src/Gtk/MainWindow.vala:154 msgid "Installed" msgstr "Εγκατεστημένος" -#: src/Common/LinuxKernel.vala:849 src/Gtk/MainWindow.vala:155 -#: src/Gtk/MainWindow.vala:498 src/Gtk/MainWindow.vala:511 +#: src/Common/LinuxKernel.vala:848 src/Gtk/MainWindow.vala:154 +#: src/Gtk/MainWindow.vala:497 src/Gtk/MainWindow.vala:510 msgid "Running" msgstr "Ενεργός" -#: src/Common/LinuxKernel.vala:884 +#: src/Common/LinuxKernel.vala:883 msgid "Downloading" msgstr "Λήψη" -#: src/Common/LinuxKernel.vala:912 +#: src/Common/LinuxKernel.vala:911 #, fuzzy msgid "is already installed." msgstr "Αυτός ο πυρήνας είναι ήδη εγκατεστημένος." -#: src/Common/LinuxKernel.vala:942 +#: src/Common/LinuxKernel.vala:941 #, fuzzy msgid "Uninstalling selected kernels" msgstr "Απεγκατάσταση του καθορισμένου πυρήνα" -#: src/Common/LinuxKernel.vala:948 +#: src/Common/LinuxKernel.vala:947 msgid "requested" msgstr "" -#: src/Common/LinuxKernel.vala:951 +#: src/Common/LinuxKernel.vala:950 #, fuzzy msgid "not uninstalling the currently running kernel" msgstr "Απεγκατάσταση του καθορισμένου πυρήνα" -#: src/Common/LinuxKernel.vala:967 +#: src/Common/LinuxKernel.vala:966 msgid "found" msgstr "" -#: src/Common/LinuxKernel.vala:970 +#: src/Common/LinuxKernel.vala:969 #, fuzzy msgid "No packages to un-install!" msgstr "Εγκατεστημένα πακέτα" -#: src/Common/LinuxKernel.vala:1018 +#: src/Common/LinuxKernel.vala:1017 #, fuzzy msgid "Could not find running kernel in list" msgstr "Δεν ήταν δυνατή η εύρεση του τρέχοντος πυρήνα στη λίστα!" -#: src/Common/LinuxKernel.vala:1023 +#: src/Common/LinuxKernel.vala:1022 msgid "Could not find any kernels to uninstall" msgstr "Δεν βρέθηκε κανένας πυρήνας για απεγκατάσταση" -#: src/Common/LinuxKernel.vala:1031 +#: src/Common/LinuxKernel.vala:1030 #, fuzzy msgid "The following kernels will be uninstalled" msgstr "Αυτός ο πυρήνας είναι ήδη εγκατεστημένος." -#: src/Common/LinuxKernel.vala:1035 +#: src/Common/LinuxKernel.vala:1034 msgid "Continue ?" msgstr "Συνέχεια;" -#: src/Common/LinuxKernel.vala:1057 src/Console/AppConsole.vala:285 +#: src/Common/LinuxKernel.vala:1056 src/Console/AppConsole.vala:290 msgid "Latest update" msgstr "Τελευταία αναβάθμιση" -#: src/Common/LinuxKernel.vala:1068 src/Console/AppConsole.vala:292 +#: src/Common/LinuxKernel.vala:1067 src/Console/AppConsole.vala:297 msgid "Latest point update" msgstr "Τελευταία ενημέρωση συντήρησης" -#: src/Common/LinuxKernel.vala:1076 src/Console/AppConsole.vala:297 -#: src/Console/AppConsole.vala:352 +#: src/Common/LinuxKernel.vala:1075 src/Console/AppConsole.vala:302 +#: src/Console/AppConsole.vala:318 msgid "No updates found" msgstr "Δεν βρέθηκαν ενημερώσεις" -#: src/Common/LinuxKernel.vala:1085 +#: src/Common/LinuxKernel.vala:1084 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Εγκατάσταση του πυρήνα έκδοσης %s ; (ν/ό):" -#: src/Common/Main.vala:281 +#: src/Common/Main.vala:300 msgid "Called from" msgstr "Κλήθηκε από" -#: src/Common/Main.vala:282 +#: src/Common/Main.vala:301 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" -#: src/Common/Main.vala:314 +#: src/Common/Main.vala:333 msgid "Notifications are disabled" msgstr "Οι ειδοποιήσεις είναι απενεργοποιημένες" @@ -149,142 +149,150 @@ msgstr "Οι ειδοποιήσεις είναι απενεργοποιημέν msgid "File not found: %s" msgstr "Το αρχείο δε βρέθηκε" -#: src/Console/AppConsole.vala:48 src/Gtk/AppGtk.vala:136 +#: src/Console/AppConsole.vala:47 src/Gtk/AppGtk.vala:135 msgid "Syntax" msgstr "Σύνταξη" -#: src/Console/AppConsole.vala:50 +#: src/Console/AppConsole.vala:49 msgid "Commands" msgstr "Εντολές" -#: src/Console/AppConsole.vala:52 +#: src/Console/AppConsole.vala:51 msgid "Check for kernel updates" msgstr "Έλεγχος για ενημερώσεις πυρήνα" -#: src/Console/AppConsole.vala:53 +#: src/Console/AppConsole.vala:52 msgid "Check for kernel updates and notify current user" msgstr "Έλεγχος για ενημερώσεις πυρήνα και ειδοποίηση τρέχοντα χρήστη" -#: src/Console/AppConsole.vala:54 +#: src/Console/AppConsole.vala:53 msgid "List all available mainline kernels" msgstr "Εμφάνιση όλων των διαθέσιμων πυρήνων mainline" -#: src/Console/AppConsole.vala:55 +#: src/Console/AppConsole.vala:54 msgid "List installed kernels" msgstr "Εμφάνιση εγκατεστημένων πυρήνων" -#: src/Console/AppConsole.vala:56 +#: src/Console/AppConsole.vala:55 msgid "Install latest mainline kernel" msgstr "Εγκατάσταση του πιο πρόσφατου πυρήνα mainline" -#: src/Console/AppConsole.vala:57 +#: src/Console/AppConsole.vala:56 msgid "Install latest point update for current series" msgstr "Εγκαταστήστε την τελευταία ενημέρωση συντήρησης για την τρέχουσα σειρά" -#: src/Console/AppConsole.vala:58 +#: src/Console/AppConsole.vala:57 msgid "Install specified mainline kernel" msgstr "Εγκατάσταση του καθορισμένου mainline πυρήνα" -#: src/Console/AppConsole.vala:59 +#: src/Console/AppConsole.vala:58 msgid "Uninstall specified kernel" msgstr "Απεγκατάσταση του καθορισμένου πυρήνα" -#: src/Console/AppConsole.vala:60 +#: src/Console/AppConsole.vala:59 #, fuzzy msgid "Uninstall kernels older than the latest installed" msgstr "Απεγκατάσταση πυρήνων παλαιότερων από τον ενεργό" -#: src/Console/AppConsole.vala:61 +#: src/Console/AppConsole.vala:60 msgid "Download specified kernels" msgstr "Λήψη των καθορισμένων πυρήνων" -#: src/Console/AppConsole.vala:62 +#: src/Console/AppConsole.vala:61 msgid "Delete cached info about available kernels" msgstr "" -#: src/Console/AppConsole.vala:64 src/Gtk/AppGtk.vala:138 +#: src/Console/AppConsole.vala:63 src/Gtk/AppGtk.vala:137 msgid "Options" msgstr "Επιλογές" -#: src/Console/AppConsole.vala:66 +#: src/Console/AppConsole.vala:65 msgid "Include unstable and RC releases" msgstr "Συμπεριλάβετε ασταθείς και RC εκδόσεις" -#: src/Console/AppConsole.vala:67 +#: src/Console/AppConsole.vala:66 #, fuzzy msgid "Exclude unstable and RC releases" msgstr "Συμπεριλάβετε ασταθείς και RC εκδόσεις" -#: src/Console/AppConsole.vala:68 +#: src/Console/AppConsole.vala:67 msgid "Enable verbose debugging output" msgstr "Ενεργοποίηση αναλυτικής εξόδου εντοπισμού σφαλμάτων" -#: src/Console/AppConsole.vala:69 +#: src/Console/AppConsole.vala:68 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "Υποθέστε Ναι για όλα τα μηνύματα (μη διαδραστική λειτουργία)" -#: src/Console/AppConsole.vala:72 +#: src/Console/AppConsole.vala:71 msgid "A version string taken from the output of --list" msgstr "Μια συμβολοσειρά έκδοσης που λαμβάνεται από την έξοδο του --list" -#: src/Console/AppConsole.vala:73 +#: src/Console/AppConsole.vala:72 msgid "One or more, comma-seperated" msgstr "" -#: src/Console/AppConsole.vala:74 +#: src/Console/AppConsole.vala:73 #, fuzzy msgid "The currently running kernel will always be ignored" msgstr "Αυτός ο πυρήνας είναι ήδη εγκατεστημένος." -#: src/Console/AppConsole.vala:152 src/Gtk/AppGtk.vala:122 +#: src/Console/AppConsole.vala:161 src/Gtk/AppGtk.vala:121 msgid "Unknown option" msgstr "Άγνωστη επιλογή" -#: src/Console/AppConsole.vala:153 src/Console/AppConsole.vala:243 -#: src/Console/AppConsole.vala:271 +#: src/Console/AppConsole.vala:162 src/Console/AppConsole.vala:248 +#: src/Console/AppConsole.vala:276 msgid "Run" msgstr "Τρέξτε" -#: src/Console/AppConsole.vala:153 +#: src/Console/AppConsole.vala:162 msgid "to list all options" msgstr "για να παραθέσετε όλες τις επιλογές" -#: src/Console/AppConsole.vala:211 src/Console/AppConsole.vala:251 +#: src/Console/AppConsole.vala:216 src/Console/AppConsole.vala:256 msgid "No kernels specified" msgstr "Δεν έχουν καθοριστεί πυρήνες" -#: src/Console/AppConsole.vala:217 +#: src/Console/AppConsole.vala:222 msgid "Multiple kernels selected for installation. Select only one." msgstr "Επιλέχθηκαν πολλαπλοί πυρήνες για εγκατάσταση. Επιλέξτε μόνο ένα." -#: src/Console/AppConsole.vala:240 +#: src/Console/AppConsole.vala:245 msgid "Could not find requested version" msgstr "Δε βρέθηκε η ζητούμενη έκδοση" -#: src/Console/AppConsole.vala:243 +#: src/Console/AppConsole.vala:248 msgid "and use a version string listed in first column" msgstr "" "και χρησιμοποιήστε μια συμβολοσειρά έκδοσης που αναφέρεται στην πρώτη στήλη" -#: src/Console/AppConsole.vala:270 +#: src/Console/AppConsole.vala:275 msgid "Command not specified" msgstr "Η εντολή δεν προσδιορίστηκε" -#: src/Console/AppConsole.vala:271 +#: src/Console/AppConsole.vala:276 msgid "to list all commands" msgstr "για να παραθέσετε όλες τις εντολές" -#: src/Console/AppConsole.vala:325 src/Gtk/SettingsDialog.vala:165 -msgid "Show" -msgstr "Προβολή" +#: src/Console/AppConsole.vala:312 +#, fuzzy +msgid "Notifications disabled in settings" +msgstr "Οι ειδοποιήσεις είναι απενεργοποιημένες" + +#: src/Console/AppConsole.vala:332 +msgid "previously notified" +msgstr "" -#: src/Console/AppConsole.vala:330 src/Console/AppConsole.vala:342 +#: src/Console/AppConsole.vala:335 #, c-format msgid "Kernel %s Available" msgstr "Πυρήνας %s διαθέσιμος" -#: src/Console/AppConsole.vala:332 src/Console/AppConsole.vala:344 -#: src/Gtk/MainWindow.vala:266 +#: src/Console/AppConsole.vala:339 src/Gtk/SettingsDialog.vala:164 +msgid "Show" +msgstr "Προβολή" + +#: src/Console/AppConsole.vala:340 src/Gtk/MainWindow.vala:265 msgid "Install" msgstr "Εγκατάσταση" @@ -296,7 +304,7 @@ msgstr "Μνεία" msgid "Back" msgstr "Πίσω" -#: src/Gtk/AboutWindow.vala:185 src/Gtk/TerminalWindow.vala:162 +#: src/Gtk/AboutWindow.vala:185 src/Gtk/TerminalWindow.vala:161 msgid "Close" msgstr "Κλείσιμο" @@ -324,160 +332,163 @@ msgstr "Τεκμηριωτές" msgid "Third Party Inclusions" msgstr "Συμπεριλήψεις τρίτων" -#: src/Gtk/AppGtk.vala:136 +#: src/Gtk/AppGtk.vala:135 #, fuzzy msgid "options" msgstr "Επιλογές" -#: src/Gtk/AppGtk.vala:140 +#: src/Gtk/AppGtk.vala:139 msgid "Print debug information" msgstr "Εκτύπωση πληροφοριών εντοπισμού σφαλμάτων" -#: src/Gtk/AppGtk.vala:141 +#: src/Gtk/AppGtk.vala:140 msgid "Show all options" msgstr "Εμφάνιση όλων των επιλογών" -#: src/Gtk/MainWindow.vala:112 +#: src/Gtk/MainWindow.vala:111 msgid "Kernel" msgstr "Πυρήνας" -#: src/Gtk/MainWindow.vala:142 +#: src/Gtk/MainWindow.vala:141 msgid "Status" msgstr "Κατάσταση" -#: src/Gtk/MainWindow.vala:276 +#: src/Gtk/MainWindow.vala:275 msgid "Uninstall" msgstr "Απεγκατάσταση" -#: src/Gtk/MainWindow.vala:286 +#: src/Gtk/MainWindow.vala:285 msgid "Changes" msgstr "Αλλαγές" -#: src/Gtk/MainWindow.vala:308 +#: src/Gtk/MainWindow.vala:307 msgid "Uninstall Old" msgstr "Απεγκατάσταση παλαιών" -#: src/Gtk/MainWindow.vala:309 +#: src/Gtk/MainWindow.vala:308 msgid "Uninstall kernels older than running kernel" msgstr "Απεγκαταστήστε πυρήνες παλαιότερους από τον ενεργό" -#: src/Gtk/MainWindow.vala:314 +#: src/Gtk/MainWindow.vala:313 msgid "Reload" msgstr "" -#: src/Gtk/MainWindow.vala:319 src/Gtk/SettingsDialog.vala:49 +#: src/Gtk/MainWindow.vala:318 src/Gtk/SettingsDialog.vala:48 msgid "Settings" msgstr "Ρυθμίσεις" -#: src/Gtk/MainWindow.vala:324 +#: src/Gtk/MainWindow.vala:323 msgid "About" msgstr "Σχετικά" -#: src/Gtk/MainWindow.vala:329 +#: src/Gtk/MainWindow.vala:328 msgid "Exit" msgstr "" -#: src/Gtk/MainWindow.vala:397 +#: src/Gtk/MainWindow.vala:396 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Πρόγραμμα αναβάθμισης πυρήνα για διανομές που βασίζονται στο Ubuntu" -#: src/Gtk/MainWindow.vala:398 +#: src/Gtk/MainWindow.vala:397 msgid "Forked" msgstr "Forked" -#: src/Gtk/MainWindow.vala:398 +#: src/Gtk/MainWindow.vala:397 msgid "Original" msgstr "Πρωτότυπο" -#: src/Gtk/MainWindow.vala:436 +#: src/Gtk/MainWindow.vala:435 msgid "Updating kernels" msgstr "" -#: src/Gtk/MainWindow.vala:507 +#: src/Gtk/MainWindow.vala:506 msgid "available" msgstr "διαθέσιμος" -#: src/Gtk/MainWindow.vala:550 src/Gtk/MainWindow.vala:590 -#: src/Gtk/MainWindow.vala:624 +#: src/Gtk/MainWindow.vala:549 src/Gtk/MainWindow.vala:589 +#: src/Gtk/MainWindow.vala:623 msgid "DONE" msgstr "" -#: src/Gtk/ProgressWindow.vala:127 src/Gtk/TerminalWindow.vala:152 +#: src/Gtk/ProgressWindow.vala:126 src/Gtk/TerminalWindow.vala:151 msgid "Cancel" msgstr "Άκυρο" -#: src/Gtk/SettingsDialog.vala:59 +#: src/Gtk/SettingsDialog.vala:58 msgid "Notification" msgstr "Ειδοποίηση" -#: src/Gtk/SettingsDialog.vala:66 +#: src/Gtk/SettingsDialog.vala:65 msgid "Notify if a major release is available" msgstr "Ειδοποίηση αν είναι διαθέσιμη κύρια έκδοση" -#: src/Gtk/SettingsDialog.vala:75 +#: src/Gtk/SettingsDialog.vala:74 msgid "Notify if a point release is available" msgstr "Ειδοποίηση αν είναι διαθέσιμη έκδοση συντήρησης" -#: src/Gtk/SettingsDialog.vala:86 +#: src/Gtk/SettingsDialog.vala:85 #, fuzzy msgid "Seconds interval enabled for debugging" msgstr "(Επιτρέποντας διαστήματα σε δευτερόλεπτα για --debug)" -#: src/Gtk/SettingsDialog.vala:109 +#: src/Gtk/SettingsDialog.vala:108 msgid "Check every" msgstr "Έλεγχος κάθε" -#: src/Gtk/SettingsDialog.vala:134 -msgid "Hour(s)" +#: src/Gtk/SettingsDialog.vala:133 +#, fuzzy +msgid "Hours" msgstr "Ώρες" -#: src/Gtk/SettingsDialog.vala:136 -msgid "Day(s)" -msgstr "Ημέρες" +#: src/Gtk/SettingsDialog.vala:135 +msgid "Days" +msgstr "" -#: src/Gtk/SettingsDialog.vala:138 -msgid "Week(s)" +#: src/Gtk/SettingsDialog.vala:137 +#, fuzzy +msgid "Weeks" msgstr "Εβδομάδες" -#: src/Gtk/SettingsDialog.vala:141 -msgid "Second(s)" +#: src/Gtk/SettingsDialog.vala:140 +#, fuzzy +msgid "Seconds" msgstr "Δευτερόλεπτα" -#: src/Gtk/SettingsDialog.vala:147 +#: src/Gtk/SettingsDialog.vala:146 msgid "Filters" msgstr "" -#: src/Gtk/SettingsDialog.vala:155 +#: src/Gtk/SettingsDialog.vala:154 msgid "Hide unstable and RC releases" msgstr "Απόκρυψη ασταθών και RC εκδόσεων" -#: src/Gtk/SettingsDialog.vala:177 +#: src/Gtk/SettingsDialog.vala:176 #, fuzzy msgid "previous major versions" msgstr "Εμφάνιση N προηγούμενων κύριων εκδόσεων " -#: src/Gtk/SettingsDialog.vala:181 +#: src/Gtk/SettingsDialog.vala:180 msgid "Network" msgstr "" -#: src/Gtk/SettingsDialog.vala:192 +#: src/Gtk/SettingsDialog.vala:191 #, fuzzy msgid "Internet connection timeout in" msgstr "Λήξη χρονικού ορίου σύνδεσης στο διαδίκτυο " -#: src/Gtk/SettingsDialog.vala:204 +#: src/Gtk/SettingsDialog.vala:203 msgid "seconds" msgstr "δευτερόλεπτα" -#: src/Gtk/SettingsDialog.vala:211 +#: src/Gtk/SettingsDialog.vala:210 msgid "Max concurrent downloads" msgstr "Μέγιστες ταυτόχρονες λήψεις" -#: src/Gtk/SettingsDialog.vala:225 +#: src/Gtk/SettingsDialog.vala:224 msgid "Proxy" msgstr "" -#: src/Gtk/l.gtk.vala:43 +#: src/Gtk/l.gtk.vala:42 msgid "Missing Icon" msgstr "Ελλείπον εικονίδιο" diff --git a/po/es.po b/po/es.po index 85fb2bb5..2d98c206 100644 --- a/po/es.po +++ b/po/es.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-19 16:41-0400\n" +"POT-Creation-Date: 2023-03-21 20:12-0400\n" "PO-Revision-Date: 2018-01-03 02:03-0600\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish\n" @@ -13,135 +13,135 @@ msgstr "" "X-Launchpad-Export-Date: 2017-04-13 11:48+0000\n" "X-Generator: Poedit 2.0.5\n" -#: src/Common/LinuxKernel.vala:87 +#: src/Common/LinuxKernel.vala:86 msgid "Distribution" msgstr "Distribución" -#: src/Common/LinuxKernel.vala:102 +#: src/Common/LinuxKernel.vala:101 msgid "Architecture" msgstr "Arquitectura del sistema" -#: src/Common/LinuxKernel.vala:277 +#: src/Common/LinuxKernel.vala:276 #, fuzzy msgid "Fetching individual kernel indexes" msgstr "Recuperando índice..." -#: src/Common/LinuxKernel.vala:326 +#: src/Common/LinuxKernel.vala:325 msgid "Updating from" msgstr "" -#: src/Common/LinuxKernel.vala:343 src/Common/LinuxKernel.vala:896 +#: src/Common/LinuxKernel.vala:342 src/Common/LinuxKernel.vala:895 msgid "OK" msgstr "Aceptar" -#: src/Common/LinuxKernel.vala:346 src/Common/LinuxKernel.vala:899 +#: src/Common/LinuxKernel.vala:345 src/Common/LinuxKernel.vala:898 msgid "FAILED" msgstr "" -#: src/Common/LinuxKernel.vala:760 +#: src/Common/LinuxKernel.vala:759 msgid "Packages Available" msgstr "Paquetes disponibles" -#: src/Common/LinuxKernel.vala:765 +#: src/Common/LinuxKernel.vala:764 msgid "Packages Installed" msgstr "Paquetes instalados" -#: src/Common/LinuxKernel.vala:778 src/lib/TeeJee.FileSystem.vala:121 +#: src/Common/LinuxKernel.vala:777 src/lib/TeeJee.FileSystem.vala:121 msgid "File not found" msgstr "No se encontró el archivo" -#: src/Common/LinuxKernel.vala:842 +#: src/Common/LinuxKernel.vala:841 msgid "Available Kernels" msgstr "Núcleos disponibles" -#: src/Common/LinuxKernel.vala:849 src/Gtk/MainWindow.vala:155 +#: src/Common/LinuxKernel.vala:848 src/Gtk/MainWindow.vala:154 msgid "Installed" msgstr "Instalado" -#: src/Common/LinuxKernel.vala:849 src/Gtk/MainWindow.vala:155 -#: src/Gtk/MainWindow.vala:498 src/Gtk/MainWindow.vala:511 +#: src/Common/LinuxKernel.vala:848 src/Gtk/MainWindow.vala:154 +#: src/Gtk/MainWindow.vala:497 src/Gtk/MainWindow.vala:510 msgid "Running" msgstr "En ejecución" -#: src/Common/LinuxKernel.vala:884 +#: src/Common/LinuxKernel.vala:883 msgid "Downloading" msgstr "Descargando" -#: src/Common/LinuxKernel.vala:912 +#: src/Common/LinuxKernel.vala:911 #, fuzzy msgid "is already installed." msgstr "Este núcleo ya se instaló." -#: src/Common/LinuxKernel.vala:942 +#: src/Common/LinuxKernel.vala:941 #, fuzzy msgid "Uninstalling selected kernels" msgstr "Instalar núcleo troncal especificado" -#: src/Common/LinuxKernel.vala:948 +#: src/Common/LinuxKernel.vala:947 msgid "requested" msgstr "" -#: src/Common/LinuxKernel.vala:951 +#: src/Common/LinuxKernel.vala:950 #, fuzzy msgid "not uninstalling the currently running kernel" msgstr "Instalar núcleo troncal especificado" -#: src/Common/LinuxKernel.vala:967 +#: src/Common/LinuxKernel.vala:966 msgid "found" msgstr "" -#: src/Common/LinuxKernel.vala:970 +#: src/Common/LinuxKernel.vala:969 #, fuzzy msgid "No packages to un-install!" msgstr "Paquetes instalados" -#: src/Common/LinuxKernel.vala:1018 +#: src/Common/LinuxKernel.vala:1017 #, fuzzy msgid "Could not find running kernel in list" msgstr "¡No se pudo encontrar el núcleo en ejecución en la lista!" -#: src/Common/LinuxKernel.vala:1023 +#: src/Common/LinuxKernel.vala:1022 #, fuzzy msgid "Could not find any kernels to uninstall" msgstr "Seleccione los núcleos que se desinstalarán" -#: src/Common/LinuxKernel.vala:1031 +#: src/Common/LinuxKernel.vala:1030 #, fuzzy msgid "The following kernels will be uninstalled" msgstr "Los siguientes kernels serán eliminados:" -#: src/Common/LinuxKernel.vala:1035 +#: src/Common/LinuxKernel.vala:1034 msgid "Continue ?" msgstr "¿Continuar?" -#: src/Common/LinuxKernel.vala:1057 src/Console/AppConsole.vala:285 +#: src/Common/LinuxKernel.vala:1056 src/Console/AppConsole.vala:290 msgid "Latest update" msgstr "" -#: src/Common/LinuxKernel.vala:1068 src/Console/AppConsole.vala:292 +#: src/Common/LinuxKernel.vala:1067 src/Console/AppConsole.vala:297 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:1076 src/Console/AppConsole.vala:297 -#: src/Console/AppConsole.vala:352 +#: src/Common/LinuxKernel.vala:1075 src/Console/AppConsole.vala:302 +#: src/Console/AppConsole.vala:318 msgid "No updates found" msgstr "No se encontró ninguna actualización" -#: src/Common/LinuxKernel.vala:1085 +#: src/Common/LinuxKernel.vala:1084 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "" -#: src/Common/Main.vala:281 +#: src/Common/Main.vala:300 msgid "Called from" msgstr "" -#: src/Common/Main.vala:282 +#: src/Common/Main.vala:301 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" -#: src/Common/Main.vala:314 +#: src/Common/Main.vala:333 #, fuzzy msgid "Notifications are disabled" msgstr "Notificación" @@ -151,146 +151,154 @@ msgstr "Notificación" msgid "File not found: %s" msgstr "No se encontró el archivo" -#: src/Console/AppConsole.vala:48 src/Gtk/AppGtk.vala:136 +#: src/Console/AppConsole.vala:47 src/Gtk/AppGtk.vala:135 msgid "Syntax" msgstr "Sintaxis" -#: src/Console/AppConsole.vala:50 +#: src/Console/AppConsole.vala:49 msgid "Commands" msgstr "Comandos" -#: src/Console/AppConsole.vala:52 +#: src/Console/AppConsole.vala:51 msgid "Check for kernel updates" msgstr "Buscar actualizaciones del núcleo" -#: src/Console/AppConsole.vala:53 +#: src/Console/AppConsole.vala:52 msgid "Check for kernel updates and notify current user" msgstr "Compruebe las actualizaciones del kernel y notifique al usuario actual" -#: src/Console/AppConsole.vala:54 +#: src/Console/AppConsole.vala:53 msgid "List all available mainline kernels" msgstr "Mostrar todos los núcleos troncales disponibles" -#: src/Console/AppConsole.vala:55 +#: src/Console/AppConsole.vala:54 msgid "List installed kernels" msgstr "Mostrar kernels disponibles" -#: src/Console/AppConsole.vala:56 +#: src/Console/AppConsole.vala:55 msgid "Install latest mainline kernel" msgstr "Instalar kernel troncal especificado" -#: src/Console/AppConsole.vala:57 +#: src/Console/AppConsole.vala:56 msgid "Install latest point update for current series" msgstr "" -#: src/Console/AppConsole.vala:58 +#: src/Console/AppConsole.vala:57 msgid "Install specified mainline kernel" msgstr "Instalar núcleo troncal especificado" -#: src/Console/AppConsole.vala:59 +#: src/Console/AppConsole.vala:58 #, fuzzy msgid "Uninstall specified kernel" msgstr "Instalar núcleo troncal especificado" -#: src/Console/AppConsole.vala:60 +#: src/Console/AppConsole.vala:59 msgid "Uninstall kernels older than the latest installed" msgstr "" -#: src/Console/AppConsole.vala:61 +#: src/Console/AppConsole.vala:60 #, fuzzy msgid "Download specified kernels" msgstr "Descargar paquetes del núcleo especificado" -#: src/Console/AppConsole.vala:62 +#: src/Console/AppConsole.vala:61 msgid "Delete cached info about available kernels" msgstr "" -#: src/Console/AppConsole.vala:64 src/Gtk/AppGtk.vala:138 +#: src/Console/AppConsole.vala:63 src/Gtk/AppGtk.vala:137 msgid "Options" msgstr "Opciones" -#: src/Console/AppConsole.vala:66 +#: src/Console/AppConsole.vala:65 #, fuzzy msgid "Include unstable and RC releases" msgstr "Ocultar versiones inestables y RC" -#: src/Console/AppConsole.vala:67 +#: src/Console/AppConsole.vala:66 #, fuzzy msgid "Exclude unstable and RC releases" msgstr "Ocultar versiones inestables y RC" -#: src/Console/AppConsole.vala:68 +#: src/Console/AppConsole.vala:67 msgid "Enable verbose debugging output" msgstr "" -#: src/Console/AppConsole.vala:69 +#: src/Console/AppConsole.vala:68 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "Asumir Sí para todas las solicitudes (modo no interactivo)" -#: src/Console/AppConsole.vala:72 +#: src/Console/AppConsole.vala:71 msgid "A version string taken from the output of --list" msgstr "" -#: src/Console/AppConsole.vala:73 +#: src/Console/AppConsole.vala:72 msgid "One or more, comma-seperated" msgstr "" -#: src/Console/AppConsole.vala:74 +#: src/Console/AppConsole.vala:73 #, fuzzy msgid "The currently running kernel will always be ignored" msgstr "Los siguientes kernels serán eliminados:" -#: src/Console/AppConsole.vala:152 src/Gtk/AppGtk.vala:122 +#: src/Console/AppConsole.vala:161 src/Gtk/AppGtk.vala:121 msgid "Unknown option" msgstr "Opción desconocida" -#: src/Console/AppConsole.vala:153 src/Console/AppConsole.vala:243 -#: src/Console/AppConsole.vala:271 +#: src/Console/AppConsole.vala:162 src/Console/AppConsole.vala:248 +#: src/Console/AppConsole.vala:276 #, fuzzy msgid "Run" msgstr "En ejecución" -#: src/Console/AppConsole.vala:153 +#: src/Console/AppConsole.vala:162 #, fuzzy msgid "to list all options" msgstr "Mostrar todas las opciones" -#: src/Console/AppConsole.vala:211 src/Console/AppConsole.vala:251 +#: src/Console/AppConsole.vala:216 src/Console/AppConsole.vala:256 msgid "No kernels specified" msgstr "" -#: src/Console/AppConsole.vala:217 +#: src/Console/AppConsole.vala:222 msgid "Multiple kernels selected for installation. Select only one." msgstr "Se seleccionaron varios núcleos para su instalación. Elija solo uno." -#: src/Console/AppConsole.vala:240 +#: src/Console/AppConsole.vala:245 msgid "Could not find requested version" msgstr "No se pudo encontrar la versión solicitada" -#: src/Console/AppConsole.vala:243 +#: src/Console/AppConsole.vala:248 msgid "and use a version string listed in first column" msgstr "" -#: src/Console/AppConsole.vala:270 +#: src/Console/AppConsole.vala:275 msgid "Command not specified" msgstr "Coomand no especificado" -#: src/Console/AppConsole.vala:271 +#: src/Console/AppConsole.vala:276 #, fuzzy msgid "to list all commands" msgstr "Mostrar todas las opciones" -#: src/Console/AppConsole.vala:325 src/Gtk/SettingsDialog.vala:165 -msgid "Show" +#: src/Console/AppConsole.vala:312 +#, fuzzy +msgid "Notifications disabled in settings" +msgstr "Notificación" + +#: src/Console/AppConsole.vala:332 +msgid "previously notified" msgstr "" -#: src/Console/AppConsole.vala:330 src/Console/AppConsole.vala:342 +#: src/Console/AppConsole.vala:335 #, fuzzy, c-format msgid "Kernel %s Available" msgstr "Paquetes disponibles" -#: src/Console/AppConsole.vala:332 src/Console/AppConsole.vala:344 -#: src/Gtk/MainWindow.vala:266 +#: src/Console/AppConsole.vala:339 src/Gtk/SettingsDialog.vala:164 +msgid "Show" +msgstr "" + +#: src/Console/AppConsole.vala:340 src/Gtk/MainWindow.vala:265 msgid "Install" msgstr "Instalar" @@ -302,7 +310,7 @@ msgstr "Créditos" msgid "Back" msgstr "Atrás" -#: src/Gtk/AboutWindow.vala:185 src/Gtk/TerminalWindow.vala:162 +#: src/Gtk/AboutWindow.vala:185 src/Gtk/TerminalWindow.vala:161 msgid "Close" msgstr "Cerrar" @@ -331,162 +339,164 @@ msgstr "Documentadores" msgid "Third Party Inclusions" msgstr "Herramientas de terceros" -#: src/Gtk/AppGtk.vala:136 +#: src/Gtk/AppGtk.vala:135 #, fuzzy msgid "options" msgstr "Opciones" -#: src/Gtk/AppGtk.vala:140 +#: src/Gtk/AppGtk.vala:139 msgid "Print debug information" msgstr "Mostrar información de depuración" -#: src/Gtk/AppGtk.vala:141 +#: src/Gtk/AppGtk.vala:140 msgid "Show all options" msgstr "Mostrar todas las opciones" -#: src/Gtk/MainWindow.vala:112 +#: src/Gtk/MainWindow.vala:111 msgid "Kernel" msgstr "Núcleo" -#: src/Gtk/MainWindow.vala:142 +#: src/Gtk/MainWindow.vala:141 msgid "Status" msgstr "Estado" -#: src/Gtk/MainWindow.vala:276 +#: src/Gtk/MainWindow.vala:275 #, fuzzy msgid "Uninstall" msgstr "Instalar" -#: src/Gtk/MainWindow.vala:286 +#: src/Gtk/MainWindow.vala:285 msgid "Changes" msgstr "Cambios" -#: src/Gtk/MainWindow.vala:308 +#: src/Gtk/MainWindow.vala:307 #, fuzzy msgid "Uninstall Old" msgstr "Desinstalación finalizada" -#: src/Gtk/MainWindow.vala:309 +#: src/Gtk/MainWindow.vala:308 msgid "Uninstall kernels older than running kernel" msgstr "" -#: src/Gtk/MainWindow.vala:314 +#: src/Gtk/MainWindow.vala:313 msgid "Reload" msgstr "" -#: src/Gtk/MainWindow.vala:319 src/Gtk/SettingsDialog.vala:49 +#: src/Gtk/MainWindow.vala:318 src/Gtk/SettingsDialog.vala:48 msgid "Settings" msgstr "Configuración" -#: src/Gtk/MainWindow.vala:324 +#: src/Gtk/MainWindow.vala:323 msgid "About" msgstr "Acerca de" -#: src/Gtk/MainWindow.vala:329 +#: src/Gtk/MainWindow.vala:328 msgid "Exit" msgstr "" -#: src/Gtk/MainWindow.vala:397 +#: src/Gtk/MainWindow.vala:396 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "" "Herramienta de renovación de núcleo para distribuciones basadas en Ubuntu" -#: src/Gtk/MainWindow.vala:398 +#: src/Gtk/MainWindow.vala:397 msgid "Forked" msgstr "" -#: src/Gtk/MainWindow.vala:398 +#: src/Gtk/MainWindow.vala:397 msgid "Original" msgstr "" -#: src/Gtk/MainWindow.vala:436 +#: src/Gtk/MainWindow.vala:435 msgid "Updating kernels" msgstr "" -#: src/Gtk/MainWindow.vala:507 +#: src/Gtk/MainWindow.vala:506 #, fuzzy msgid "available" msgstr "Paquetes disponibles" -#: src/Gtk/MainWindow.vala:550 src/Gtk/MainWindow.vala:590 -#: src/Gtk/MainWindow.vala:624 +#: src/Gtk/MainWindow.vala:549 src/Gtk/MainWindow.vala:589 +#: src/Gtk/MainWindow.vala:623 msgid "DONE" msgstr "" -#: src/Gtk/ProgressWindow.vala:127 src/Gtk/TerminalWindow.vala:152 +#: src/Gtk/ProgressWindow.vala:126 src/Gtk/TerminalWindow.vala:151 msgid "Cancel" msgstr "Cancelar" -#: src/Gtk/SettingsDialog.vala:59 +#: src/Gtk/SettingsDialog.vala:58 msgid "Notification" msgstr "Notificación" -#: src/Gtk/SettingsDialog.vala:66 +#: src/Gtk/SettingsDialog.vala:65 msgid "Notify if a major release is available" msgstr "Notificar si hay una versión importante disponible" -#: src/Gtk/SettingsDialog.vala:75 +#: src/Gtk/SettingsDialog.vala:74 msgid "Notify if a point release is available" msgstr "Notificar si hay una versión puntual disponible" -#: src/Gtk/SettingsDialog.vala:86 +#: src/Gtk/SettingsDialog.vala:85 msgid "Seconds interval enabled for debugging" msgstr "" -#: src/Gtk/SettingsDialog.vala:109 +#: src/Gtk/SettingsDialog.vala:108 msgid "Check every" msgstr "Comprobar cada" -#: src/Gtk/SettingsDialog.vala:134 -msgid "Hour(s)" +#: src/Gtk/SettingsDialog.vala:133 +#, fuzzy +msgid "Hours" msgstr "Horas" -#: src/Gtk/SettingsDialog.vala:136 -msgid "Day(s)" -msgstr "Días" +#: src/Gtk/SettingsDialog.vala:135 +msgid "Days" +msgstr "" -#: src/Gtk/SettingsDialog.vala:138 -msgid "Week(s)" +#: src/Gtk/SettingsDialog.vala:137 +#, fuzzy +msgid "Weeks" msgstr "Semanas" -#: src/Gtk/SettingsDialog.vala:141 -msgid "Second(s)" +#: src/Gtk/SettingsDialog.vala:140 +msgid "Seconds" msgstr "" -#: src/Gtk/SettingsDialog.vala:147 +#: src/Gtk/SettingsDialog.vala:146 msgid "Filters" msgstr "" -#: src/Gtk/SettingsDialog.vala:155 +#: src/Gtk/SettingsDialog.vala:154 msgid "Hide unstable and RC releases" msgstr "Ocultar versiones inestables y RC" -#: src/Gtk/SettingsDialog.vala:177 +#: src/Gtk/SettingsDialog.vala:176 msgid "previous major versions" msgstr "" -#: src/Gtk/SettingsDialog.vala:181 +#: src/Gtk/SettingsDialog.vala:180 msgid "Network" msgstr "" -#: src/Gtk/SettingsDialog.vala:192 +#: src/Gtk/SettingsDialog.vala:191 #, fuzzy msgid "Internet connection timeout in" msgstr "La conexión a Internet está inactiva" -#: src/Gtk/SettingsDialog.vala:204 +#: src/Gtk/SettingsDialog.vala:203 msgid "seconds" msgstr "" -#: src/Gtk/SettingsDialog.vala:211 +#: src/Gtk/SettingsDialog.vala:210 msgid "Max concurrent downloads" msgstr "" -#: src/Gtk/SettingsDialog.vala:225 +#: src/Gtk/SettingsDialog.vala:224 msgid "Proxy" msgstr "" -#: src/Gtk/l.gtk.vala:43 +#: src/Gtk/l.gtk.vala:42 msgid "Missing Icon" msgstr "Falta el icono" diff --git a/po/fr.po b/po/fr.po index 7d6d3b2c..1b6280b2 100644 --- a/po/fr.po +++ b/po/fr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-19 16:41-0400\n" +"POT-Creation-Date: 2023-03-21 20:12-0400\n" "PO-Revision-Date: 2018-08-05 15:50+0200\n" "Last-Translator: Yolateng0 \n" "Language-Team: French\n" @@ -13,135 +13,135 @@ msgstr "" "X-Launchpad-Export-Date: 2017-04-13 11:48+0000\n" "X-Generator: Poedit 2.0.6\n" -#: src/Common/LinuxKernel.vala:87 +#: src/Common/LinuxKernel.vala:86 msgid "Distribution" msgstr "Distribution" -#: src/Common/LinuxKernel.vala:102 +#: src/Common/LinuxKernel.vala:101 msgid "Architecture" msgstr "Architecture" -#: src/Common/LinuxKernel.vala:277 +#: src/Common/LinuxKernel.vala:276 #, fuzzy msgid "Fetching individual kernel indexes" msgstr "Récupération de l'index..." -#: src/Common/LinuxKernel.vala:326 +#: src/Common/LinuxKernel.vala:325 msgid "Updating from" msgstr "" -#: src/Common/LinuxKernel.vala:343 src/Common/LinuxKernel.vala:896 +#: src/Common/LinuxKernel.vala:342 src/Common/LinuxKernel.vala:895 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:346 src/Common/LinuxKernel.vala:899 +#: src/Common/LinuxKernel.vala:345 src/Common/LinuxKernel.vala:898 msgid "FAILED" msgstr "" -#: src/Common/LinuxKernel.vala:760 +#: src/Common/LinuxKernel.vala:759 msgid "Packages Available" msgstr "Paquets Disponibles" -#: src/Common/LinuxKernel.vala:765 +#: src/Common/LinuxKernel.vala:764 msgid "Packages Installed" msgstr "Paquets Installés" -#: src/Common/LinuxKernel.vala:778 src/lib/TeeJee.FileSystem.vala:121 +#: src/Common/LinuxKernel.vala:777 src/lib/TeeJee.FileSystem.vala:121 msgid "File not found" msgstr "Fichier non trouvé" -#: src/Common/LinuxKernel.vala:842 +#: src/Common/LinuxKernel.vala:841 msgid "Available Kernels" msgstr "Noyaux Disponibles" -#: src/Common/LinuxKernel.vala:849 src/Gtk/MainWindow.vala:155 +#: src/Common/LinuxKernel.vala:848 src/Gtk/MainWindow.vala:154 msgid "Installed" msgstr "Installé" -#: src/Common/LinuxKernel.vala:849 src/Gtk/MainWindow.vala:155 -#: src/Gtk/MainWindow.vala:498 src/Gtk/MainWindow.vala:511 +#: src/Common/LinuxKernel.vala:848 src/Gtk/MainWindow.vala:154 +#: src/Gtk/MainWindow.vala:497 src/Gtk/MainWindow.vala:510 msgid "Running" msgstr "Actuel" -#: src/Common/LinuxKernel.vala:884 +#: src/Common/LinuxKernel.vala:883 msgid "Downloading" msgstr "Téléchargement" -#: src/Common/LinuxKernel.vala:912 +#: src/Common/LinuxKernel.vala:911 #, fuzzy msgid "is already installed." msgstr "Ce noyau est déjà installé." -#: src/Common/LinuxKernel.vala:942 +#: src/Common/LinuxKernel.vala:941 #, fuzzy msgid "Uninstalling selected kernels" msgstr "Installer les noyaux spécifiés" -#: src/Common/LinuxKernel.vala:948 +#: src/Common/LinuxKernel.vala:947 msgid "requested" msgstr "" -#: src/Common/LinuxKernel.vala:951 +#: src/Common/LinuxKernel.vala:950 #, fuzzy msgid "not uninstalling the currently running kernel" msgstr "Installer les noyaux spécifiés" -#: src/Common/LinuxKernel.vala:967 +#: src/Common/LinuxKernel.vala:966 msgid "found" msgstr "" -#: src/Common/LinuxKernel.vala:970 +#: src/Common/LinuxKernel.vala:969 #, fuzzy msgid "No packages to un-install!" msgstr "Paquets Installés" -#: src/Common/LinuxKernel.vala:1018 +#: src/Common/LinuxKernel.vala:1017 #, fuzzy msgid "Could not find running kernel in list" msgstr "Impossible de trouver la version courante dans la liste!" -#: src/Common/LinuxKernel.vala:1023 +#: src/Common/LinuxKernel.vala:1022 #, fuzzy msgid "Could not find any kernels to uninstall" msgstr "Impossible de trouver de noyaux à supprimer" -#: src/Common/LinuxKernel.vala:1031 +#: src/Common/LinuxKernel.vala:1030 #, fuzzy msgid "The following kernels will be uninstalled" msgstr "Les noyaux suivants seront supprimés:" -#: src/Common/LinuxKernel.vala:1035 +#: src/Common/LinuxKernel.vala:1034 msgid "Continue ?" msgstr "Reprendre ?" -#: src/Common/LinuxKernel.vala:1057 src/Console/AppConsole.vala:285 +#: src/Common/LinuxKernel.vala:1056 src/Console/AppConsole.vala:290 msgid "Latest update" msgstr "Dernière mise à jour" -#: src/Common/LinuxKernel.vala:1068 src/Console/AppConsole.vala:292 +#: src/Common/LinuxKernel.vala:1067 src/Console/AppConsole.vala:297 msgid "Latest point update" msgstr "Dernière mise à jour mineure" -#: src/Common/LinuxKernel.vala:1076 src/Console/AppConsole.vala:297 -#: src/Console/AppConsole.vala:352 +#: src/Common/LinuxKernel.vala:1075 src/Console/AppConsole.vala:302 +#: src/Console/AppConsole.vala:318 msgid "No updates found" msgstr "Aucune mise à jour disponible" -#: src/Common/LinuxKernel.vala:1085 +#: src/Common/LinuxKernel.vala:1084 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Installer le noyau en version %s ? (y/n): " -#: src/Common/Main.vala:281 +#: src/Common/Main.vala:300 msgid "Called from" msgstr "" -#: src/Common/Main.vala:282 +#: src/Common/Main.vala:301 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" -#: src/Common/Main.vala:314 +#: src/Common/Main.vala:333 msgid "Notifications are disabled" msgstr "Les notifications sont désactivées" @@ -150,145 +150,153 @@ msgstr "Les notifications sont désactivées" msgid "File not found: %s" msgstr "Fichier non trouvé" -#: src/Console/AppConsole.vala:48 src/Gtk/AppGtk.vala:136 +#: src/Console/AppConsole.vala:47 src/Gtk/AppGtk.vala:135 msgid "Syntax" msgstr "Syntaxe" -#: src/Console/AppConsole.vala:50 +#: src/Console/AppConsole.vala:49 msgid "Commands" msgstr "Commandes" -#: src/Console/AppConsole.vala:52 +#: src/Console/AppConsole.vala:51 msgid "Check for kernel updates" msgstr "Vérifier les mises à jour de noyau" -#: src/Console/AppConsole.vala:53 +#: src/Console/AppConsole.vala:52 msgid "Check for kernel updates and notify current user" msgstr "Vérifier les mises à jour de noyau et notifier l'utilisateur" -#: src/Console/AppConsole.vala:54 +#: src/Console/AppConsole.vala:53 msgid "List all available mainline kernels" msgstr "Lister tous les noyaux mainline disponibles" -#: src/Console/AppConsole.vala:55 +#: src/Console/AppConsole.vala:54 msgid "List installed kernels" msgstr "Lister les noyaux installés" -#: src/Console/AppConsole.vala:56 +#: src/Console/AppConsole.vala:55 msgid "Install latest mainline kernel" msgstr "Installer le dernier noyau mainline" -#: src/Console/AppConsole.vala:57 +#: src/Console/AppConsole.vala:56 msgid "Install latest point update for current series" msgstr "Installer la dernière version mineure pour la série courante" -#: src/Console/AppConsole.vala:58 +#: src/Console/AppConsole.vala:57 msgid "Install specified mainline kernel" msgstr "Installer le noyau mainline spécifié" -#: src/Console/AppConsole.vala:59 +#: src/Console/AppConsole.vala:58 #, fuzzy msgid "Uninstall specified kernel" msgstr "Installer les noyaux spécifiés" -#: src/Console/AppConsole.vala:60 +#: src/Console/AppConsole.vala:59 #, fuzzy msgid "Uninstall kernels older than the latest installed" msgstr "Désinstalle les noyaux plus anciens que le noyau courant" -#: src/Console/AppConsole.vala:61 +#: src/Console/AppConsole.vala:60 msgid "Download specified kernels" msgstr "Télécharger les noyaux spécifiés" -#: src/Console/AppConsole.vala:62 +#: src/Console/AppConsole.vala:61 msgid "Delete cached info about available kernels" msgstr "" -#: src/Console/AppConsole.vala:64 src/Gtk/AppGtk.vala:138 +#: src/Console/AppConsole.vala:63 src/Gtk/AppGtk.vala:137 msgid "Options" msgstr "Options" -#: src/Console/AppConsole.vala:66 +#: src/Console/AppConsole.vala:65 #, fuzzy msgid "Include unstable and RC releases" msgstr "Cacher les versions instables et RC" -#: src/Console/AppConsole.vala:67 +#: src/Console/AppConsole.vala:66 #, fuzzy msgid "Exclude unstable and RC releases" msgstr "Cacher les versions instables et RC" -#: src/Console/AppConsole.vala:68 +#: src/Console/AppConsole.vala:67 msgid "Enable verbose debugging output" msgstr "Active la sortie verbeuse de débogage" -#: src/Console/AppConsole.vala:69 +#: src/Console/AppConsole.vala:68 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "" -#: src/Console/AppConsole.vala:72 +#: src/Console/AppConsole.vala:71 msgid "A version string taken from the output of --list" msgstr "Une version prise du resultat de --list" -#: src/Console/AppConsole.vala:73 +#: src/Console/AppConsole.vala:72 msgid "One or more, comma-seperated" msgstr "" -#: src/Console/AppConsole.vala:74 +#: src/Console/AppConsole.vala:73 #, fuzzy msgid "The currently running kernel will always be ignored" msgstr "Les noyaux suivants seront supprimés:" -#: src/Console/AppConsole.vala:152 src/Gtk/AppGtk.vala:122 +#: src/Console/AppConsole.vala:161 src/Gtk/AppGtk.vala:121 msgid "Unknown option" msgstr "Option inconnue" -#: src/Console/AppConsole.vala:153 src/Console/AppConsole.vala:243 -#: src/Console/AppConsole.vala:271 +#: src/Console/AppConsole.vala:162 src/Console/AppConsole.vala:248 +#: src/Console/AppConsole.vala:276 msgid "Run" msgstr "Executez" -#: src/Console/AppConsole.vala:153 +#: src/Console/AppConsole.vala:162 msgid "to list all options" msgstr "pour afficher toutes les options" -#: src/Console/AppConsole.vala:211 src/Console/AppConsole.vala:251 +#: src/Console/AppConsole.vala:216 src/Console/AppConsole.vala:256 msgid "No kernels specified" msgstr "Aucun noyau spécifié" -#: src/Console/AppConsole.vala:217 +#: src/Console/AppConsole.vala:222 msgid "Multiple kernels selected for installation. Select only one." msgstr "" "Plusieurs noyaux sélectionnés pour être installés. Sélectionnez en seulement " "un." -#: src/Console/AppConsole.vala:240 +#: src/Console/AppConsole.vala:245 msgid "Could not find requested version" msgstr "Impossible de trouver la version demandée" -#: src/Console/AppConsole.vala:243 +#: src/Console/AppConsole.vala:248 msgid "and use a version string listed in first column" msgstr "" -#: src/Console/AppConsole.vala:270 +#: src/Console/AppConsole.vala:275 msgid "Command not specified" msgstr "Pas de commande fournie" -#: src/Console/AppConsole.vala:271 +#: src/Console/AppConsole.vala:276 msgid "to list all commands" msgstr "pour afficher toutes les commandes" -#: src/Console/AppConsole.vala:325 src/Gtk/SettingsDialog.vala:165 -msgid "Show" -msgstr "Montrer" +#: src/Console/AppConsole.vala:312 +#, fuzzy +msgid "Notifications disabled in settings" +msgstr "Les notifications sont désactivées" + +#: src/Console/AppConsole.vala:332 +msgid "previously notified" +msgstr "" -#: src/Console/AppConsole.vala:330 src/Console/AppConsole.vala:342 +#: src/Console/AppConsole.vala:335 #, c-format msgid "Kernel %s Available" msgstr "Paquet %s disponibles" -#: src/Console/AppConsole.vala:332 src/Console/AppConsole.vala:344 -#: src/Gtk/MainWindow.vala:266 +#: src/Console/AppConsole.vala:339 src/Gtk/SettingsDialog.vala:164 +msgid "Show" +msgstr "Montrer" + +#: src/Console/AppConsole.vala:340 src/Gtk/MainWindow.vala:265 msgid "Install" msgstr "Installer" @@ -300,7 +308,7 @@ msgstr "Crédits" msgid "Back" msgstr "Retour" -#: src/Gtk/AboutWindow.vala:185 src/Gtk/TerminalWindow.vala:162 +#: src/Gtk/AboutWindow.vala:185 src/Gtk/TerminalWindow.vala:161 msgid "Close" msgstr "Fermer" @@ -328,164 +336,167 @@ msgstr "Documentalistes" msgid "Third Party Inclusions" msgstr "Dépendances Tierces" -#: src/Gtk/AppGtk.vala:136 +#: src/Gtk/AppGtk.vala:135 #, fuzzy msgid "options" msgstr "Options" -#: src/Gtk/AppGtk.vala:140 +#: src/Gtk/AppGtk.vala:139 msgid "Print debug information" msgstr "Afficher les informations de débogage" -#: src/Gtk/AppGtk.vala:141 +#: src/Gtk/AppGtk.vala:140 msgid "Show all options" msgstr "Afficher toutes les options" -#: src/Gtk/MainWindow.vala:112 +#: src/Gtk/MainWindow.vala:111 msgid "Kernel" msgstr "Noyau" -#: src/Gtk/MainWindow.vala:142 +#: src/Gtk/MainWindow.vala:141 msgid "Status" msgstr "Statut" -#: src/Gtk/MainWindow.vala:276 +#: src/Gtk/MainWindow.vala:275 #, fuzzy msgid "Uninstall" msgstr "Installer" -#: src/Gtk/MainWindow.vala:286 +#: src/Gtk/MainWindow.vala:285 msgid "Changes" msgstr "Changements" -#: src/Gtk/MainWindow.vala:308 +#: src/Gtk/MainWindow.vala:307 #, fuzzy msgid "Uninstall Old" msgstr "Désinstallation complète" -#: src/Gtk/MainWindow.vala:309 +#: src/Gtk/MainWindow.vala:308 #, fuzzy msgid "Uninstall kernels older than running kernel" msgstr "Désinstalle les noyaux plus anciens que le noyau courant" -#: src/Gtk/MainWindow.vala:314 +#: src/Gtk/MainWindow.vala:313 msgid "Reload" msgstr "" -#: src/Gtk/MainWindow.vala:319 src/Gtk/SettingsDialog.vala:49 +#: src/Gtk/MainWindow.vala:318 src/Gtk/SettingsDialog.vala:48 msgid "Settings" msgstr "Paramètres" -#: src/Gtk/MainWindow.vala:324 +#: src/Gtk/MainWindow.vala:323 msgid "About" msgstr "À propos" -#: src/Gtk/MainWindow.vala:329 +#: src/Gtk/MainWindow.vala:328 msgid "Exit" msgstr "" -#: src/Gtk/MainWindow.vala:397 +#: src/Gtk/MainWindow.vala:396 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "" "Utilitaire de mise à niveau des noyaux pour les distributions basées sur " "Ubuntu" -#: src/Gtk/MainWindow.vala:398 +#: src/Gtk/MainWindow.vala:397 msgid "Forked" msgstr "Version forkée :" -#: src/Gtk/MainWindow.vala:398 +#: src/Gtk/MainWindow.vala:397 msgid "Original" msgstr "Version originale :" -#: src/Gtk/MainWindow.vala:436 +#: src/Gtk/MainWindow.vala:435 msgid "Updating kernels" msgstr "" -#: src/Gtk/MainWindow.vala:507 +#: src/Gtk/MainWindow.vala:506 msgid "available" msgstr "disponible" -#: src/Gtk/MainWindow.vala:550 src/Gtk/MainWindow.vala:590 -#: src/Gtk/MainWindow.vala:624 +#: src/Gtk/MainWindow.vala:549 src/Gtk/MainWindow.vala:589 +#: src/Gtk/MainWindow.vala:623 msgid "DONE" msgstr "" -#: src/Gtk/ProgressWindow.vala:127 src/Gtk/TerminalWindow.vala:152 +#: src/Gtk/ProgressWindow.vala:126 src/Gtk/TerminalWindow.vala:151 msgid "Cancel" msgstr "Annuler" -#: src/Gtk/SettingsDialog.vala:59 +#: src/Gtk/SettingsDialog.vala:58 msgid "Notification" msgstr "Notification" -#: src/Gtk/SettingsDialog.vala:66 +#: src/Gtk/SettingsDialog.vala:65 msgid "Notify if a major release is available" msgstr "Notifier si une version stable majeure est disponible" -#: src/Gtk/SettingsDialog.vala:75 +#: src/Gtk/SettingsDialog.vala:74 msgid "Notify if a point release is available" msgstr "Notifier si une version stable mineure est disponible" -#: src/Gtk/SettingsDialog.vala:86 +#: src/Gtk/SettingsDialog.vala:85 msgid "Seconds interval enabled for debugging" msgstr "" -#: src/Gtk/SettingsDialog.vala:109 +#: src/Gtk/SettingsDialog.vala:108 msgid "Check every" msgstr "Vérifier toutes les" -#: src/Gtk/SettingsDialog.vala:134 -msgid "Hour(s)" +#: src/Gtk/SettingsDialog.vala:133 +#, fuzzy +msgid "Hours" msgstr "Heure(s)" -#: src/Gtk/SettingsDialog.vala:136 -msgid "Day(s)" -msgstr "Jour(s)" +#: src/Gtk/SettingsDialog.vala:135 +msgid "Days" +msgstr "" -#: src/Gtk/SettingsDialog.vala:138 -msgid "Week(s)" +#: src/Gtk/SettingsDialog.vala:137 +#, fuzzy +msgid "Weeks" msgstr "Semaine(s)" -#: src/Gtk/SettingsDialog.vala:141 -msgid "Second(s)" +#: src/Gtk/SettingsDialog.vala:140 +#, fuzzy +msgid "Seconds" msgstr "Seconde(s)" -#: src/Gtk/SettingsDialog.vala:147 +#: src/Gtk/SettingsDialog.vala:146 msgid "Filters" msgstr "" -#: src/Gtk/SettingsDialog.vala:155 +#: src/Gtk/SettingsDialog.vala:154 msgid "Hide unstable and RC releases" msgstr "Cacher les versions instables et RC" -#: src/Gtk/SettingsDialog.vala:177 +#: src/Gtk/SettingsDialog.vala:176 #, fuzzy msgid "previous major versions" msgstr "Montrer les N dernières versions majeures" -#: src/Gtk/SettingsDialog.vala:181 +#: src/Gtk/SettingsDialog.vala:180 msgid "Network" msgstr "" -#: src/Gtk/SettingsDialog.vala:192 +#: src/Gtk/SettingsDialog.vala:191 #, fuzzy msgid "Internet connection timeout in" msgstr "Attendre la connection internet " -#: src/Gtk/SettingsDialog.vala:204 +#: src/Gtk/SettingsDialog.vala:203 msgid "seconds" msgstr "secondes" -#: src/Gtk/SettingsDialog.vala:211 +#: src/Gtk/SettingsDialog.vala:210 msgid "Max concurrent downloads" msgstr "Nombre maximum de téléchargements parallèles" -#: src/Gtk/SettingsDialog.vala:225 +#: src/Gtk/SettingsDialog.vala:224 msgid "Proxy" msgstr "" -#: src/Gtk/l.gtk.vala:43 +#: src/Gtk/l.gtk.vala:42 msgid "Missing Icon" msgstr "Icône introuvable" diff --git a/po/hr.po b/po/hr.po index effd86e5..84a8d238 100644 --- a/po/hr.po +++ b/po/hr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-19 16:41-0400\n" +"POT-Creation-Date: 2023-03-21 20:12-0400\n" "PO-Revision-Date: 2022-09-22 12:13+0200\n" "Last-Translator: gogo \n" "Language-Team: Croatian\n" @@ -13,134 +13,134 @@ msgstr "" "X-Launchpad-Export-Date: 2017-12-23 23:36+0000\n" "X-Generator: Poedit 3.0.1\n" -#: src/Common/LinuxKernel.vala:87 +#: src/Common/LinuxKernel.vala:86 msgid "Distribution" msgstr "Distribucija" -#: src/Common/LinuxKernel.vala:102 +#: src/Common/LinuxKernel.vala:101 msgid "Architecture" msgstr "Arhitektura" -#: src/Common/LinuxKernel.vala:277 +#: src/Common/LinuxKernel.vala:276 #, fuzzy msgid "Fetching individual kernel indexes" msgstr "Preuzimanje sadržaja..." -#: src/Common/LinuxKernel.vala:326 +#: src/Common/LinuxKernel.vala:325 msgid "Updating from" msgstr "" -#: src/Common/LinuxKernel.vala:343 src/Common/LinuxKernel.vala:896 +#: src/Common/LinuxKernel.vala:342 src/Common/LinuxKernel.vala:895 msgid "OK" msgstr "U redu" -#: src/Common/LinuxKernel.vala:346 src/Common/LinuxKernel.vala:899 +#: src/Common/LinuxKernel.vala:345 src/Common/LinuxKernel.vala:898 msgid "FAILED" msgstr "" -#: src/Common/LinuxKernel.vala:760 +#: src/Common/LinuxKernel.vala:759 msgid "Packages Available" msgstr "Dostupni paketi" -#: src/Common/LinuxKernel.vala:765 +#: src/Common/LinuxKernel.vala:764 msgid "Packages Installed" msgstr "Instalirani paketi" -#: src/Common/LinuxKernel.vala:778 src/lib/TeeJee.FileSystem.vala:121 +#: src/Common/LinuxKernel.vala:777 src/lib/TeeJee.FileSystem.vala:121 msgid "File not found" msgstr "Datoteka nije pronađena" -#: src/Common/LinuxKernel.vala:842 +#: src/Common/LinuxKernel.vala:841 msgid "Available Kernels" msgstr "Dostupni kerneli" -#: src/Common/LinuxKernel.vala:849 src/Gtk/MainWindow.vala:155 +#: src/Common/LinuxKernel.vala:848 src/Gtk/MainWindow.vala:154 msgid "Installed" msgstr "Instalirano" -#: src/Common/LinuxKernel.vala:849 src/Gtk/MainWindow.vala:155 -#: src/Gtk/MainWindow.vala:498 src/Gtk/MainWindow.vala:511 +#: src/Common/LinuxKernel.vala:848 src/Gtk/MainWindow.vala:154 +#: src/Gtk/MainWindow.vala:497 src/Gtk/MainWindow.vala:510 msgid "Running" msgstr "Pokrenuto" -#: src/Common/LinuxKernel.vala:884 +#: src/Common/LinuxKernel.vala:883 msgid "Downloading" msgstr "Preuzimanje" -#: src/Common/LinuxKernel.vala:912 +#: src/Common/LinuxKernel.vala:911 #, fuzzy msgid "is already installed." msgstr "Ovaj kernel je već instaliran." -#: src/Common/LinuxKernel.vala:942 +#: src/Common/LinuxKernel.vala:941 #, fuzzy msgid "Uninstalling selected kernels" msgstr "Deinstaliraj određene kernele" -#: src/Common/LinuxKernel.vala:948 +#: src/Common/LinuxKernel.vala:947 msgid "requested" msgstr "" -#: src/Common/LinuxKernel.vala:951 +#: src/Common/LinuxKernel.vala:950 #, fuzzy msgid "not uninstalling the currently running kernel" msgstr "Deinstaliraj određene kernele" -#: src/Common/LinuxKernel.vala:967 +#: src/Common/LinuxKernel.vala:966 msgid "found" msgstr "" -#: src/Common/LinuxKernel.vala:970 +#: src/Common/LinuxKernel.vala:969 #, fuzzy msgid "No packages to un-install!" msgstr "Instalirani paketi" -#: src/Common/LinuxKernel.vala:1018 +#: src/Common/LinuxKernel.vala:1017 #, fuzzy msgid "Could not find running kernel in list" msgstr "Nemoguće je pronaći pokrenuti kernel na popisu!" -#: src/Common/LinuxKernel.vala:1023 +#: src/Common/LinuxKernel.vala:1022 msgid "Could not find any kernels to uninstall" msgstr "Nema pronađenih kernela za deinstaliranje" -#: src/Common/LinuxKernel.vala:1031 +#: src/Common/LinuxKernel.vala:1030 #, fuzzy msgid "The following kernels will be uninstalled" msgstr "Sljedeći kerneli će biti deinstalirani:" -#: src/Common/LinuxKernel.vala:1035 +#: src/Common/LinuxKernel.vala:1034 msgid "Continue ?" msgstr "Nastavi?" -#: src/Common/LinuxKernel.vala:1057 src/Console/AppConsole.vala:285 +#: src/Common/LinuxKernel.vala:1056 src/Console/AppConsole.vala:290 msgid "Latest update" msgstr "Najnovija nadopuna" -#: src/Common/LinuxKernel.vala:1068 src/Console/AppConsole.vala:292 +#: src/Common/LinuxKernel.vala:1067 src/Console/AppConsole.vala:297 msgid "Latest point update" msgstr "Najnovija ciljana nadopuna" -#: src/Common/LinuxKernel.vala:1076 src/Console/AppConsole.vala:297 -#: src/Console/AppConsole.vala:352 +#: src/Common/LinuxKernel.vala:1075 src/Console/AppConsole.vala:302 +#: src/Console/AppConsole.vala:318 msgid "No updates found" msgstr "Nema pronađenih nadopuna" -#: src/Common/LinuxKernel.vala:1085 +#: src/Common/LinuxKernel.vala:1084 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Instaliraj kernel inačice %s ? (d/n): " -#: src/Common/Main.vala:281 +#: src/Common/Main.vala:300 msgid "Called from" msgstr "Pozvano od" -#: src/Common/Main.vala:282 +#: src/Common/Main.vala:301 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" -#: src/Common/Main.vala:314 +#: src/Common/Main.vala:333 msgid "Notifications are disabled" msgstr "Obavijesti su onemogućene" @@ -149,141 +149,149 @@ msgstr "Obavijesti su onemogućene" msgid "File not found: %s" msgstr "Datoteka nije pronađena" -#: src/Console/AppConsole.vala:48 src/Gtk/AppGtk.vala:136 +#: src/Console/AppConsole.vala:47 src/Gtk/AppGtk.vala:135 msgid "Syntax" msgstr "Sintaksa" -#: src/Console/AppConsole.vala:50 +#: src/Console/AppConsole.vala:49 msgid "Commands" msgstr "Naredbe" -#: src/Console/AppConsole.vala:52 +#: src/Console/AppConsole.vala:51 msgid "Check for kernel updates" msgstr "Provjeri nadopune kernela" -#: src/Console/AppConsole.vala:53 +#: src/Console/AppConsole.vala:52 msgid "Check for kernel updates and notify current user" msgstr "Provjeri nadopune kernela i obavijesti trenutnog korisnika" -#: src/Console/AppConsole.vala:54 +#: src/Console/AppConsole.vala:53 msgid "List all available mainline kernels" msgstr "Prikaži sve mainline kernele" -#: src/Console/AppConsole.vala:55 +#: src/Console/AppConsole.vala:54 msgid "List installed kernels" msgstr "Prikaži instalirane kernele" -#: src/Console/AppConsole.vala:56 +#: src/Console/AppConsole.vala:55 msgid "Install latest mainline kernel" msgstr "Instaliraj najnoviji mainline kernel" -#: src/Console/AppConsole.vala:57 +#: src/Console/AppConsole.vala:56 msgid "Install latest point update for current series" msgstr "Instaliraj najnoviju ciljanu nadopunu za trenutnu seriju" -#: src/Console/AppConsole.vala:58 +#: src/Console/AppConsole.vala:57 msgid "Install specified mainline kernel" msgstr "Instaliraj određeni mainline kernel" -#: src/Console/AppConsole.vala:59 +#: src/Console/AppConsole.vala:58 msgid "Uninstall specified kernel" msgstr "Deinstaliraj određene kernele" -#: src/Console/AppConsole.vala:60 +#: src/Console/AppConsole.vala:59 #, fuzzy msgid "Uninstall kernels older than the latest installed" msgstr "Deinstaliraj starije kernele od trenutno pokrenutog krenela" -#: src/Console/AppConsole.vala:61 +#: src/Console/AppConsole.vala:60 msgid "Download specified kernels" msgstr "Preuzmi određene kernele" -#: src/Console/AppConsole.vala:62 +#: src/Console/AppConsole.vala:61 msgid "Delete cached info about available kernels" msgstr "" -#: src/Console/AppConsole.vala:64 src/Gtk/AppGtk.vala:138 +#: src/Console/AppConsole.vala:63 src/Gtk/AppGtk.vala:137 msgid "Options" msgstr "Mogućnosti" -#: src/Console/AppConsole.vala:66 +#: src/Console/AppConsole.vala:65 msgid "Include unstable and RC releases" msgstr "Uključi predizdanja i nestabilne kernele" -#: src/Console/AppConsole.vala:67 +#: src/Console/AppConsole.vala:66 #, fuzzy msgid "Exclude unstable and RC releases" msgstr "Uključi predizdanja i nestabilne kernele" -#: src/Console/AppConsole.vala:68 +#: src/Console/AppConsole.vala:67 msgid "Enable verbose debugging output" msgstr "Omogući opširnije zapisivanje" -#: src/Console/AppConsole.vala:69 +#: src/Console/AppConsole.vala:68 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "Pretpostavi Da za sve upite (neinteraktivan način rada)" -#: src/Console/AppConsole.vala:72 +#: src/Console/AppConsole.vala:71 msgid "A version string taken from the output of --list" msgstr "Izraz inačice uzet iz zapisa --list" -#: src/Console/AppConsole.vala:73 +#: src/Console/AppConsole.vala:72 msgid "One or more, comma-seperated" msgstr "" -#: src/Console/AppConsole.vala:74 +#: src/Console/AppConsole.vala:73 #, fuzzy msgid "The currently running kernel will always be ignored" msgstr "Sljedeći kerneli će biti deinstalirani:" -#: src/Console/AppConsole.vala:152 src/Gtk/AppGtk.vala:122 +#: src/Console/AppConsole.vala:161 src/Gtk/AppGtk.vala:121 msgid "Unknown option" msgstr "Nepoznata mogućnost" -#: src/Console/AppConsole.vala:153 src/Console/AppConsole.vala:243 -#: src/Console/AppConsole.vala:271 +#: src/Console/AppConsole.vala:162 src/Console/AppConsole.vala:248 +#: src/Console/AppConsole.vala:276 msgid "Run" msgstr "Pokreni" -#: src/Console/AppConsole.vala:153 +#: src/Console/AppConsole.vala:162 msgid "to list all options" msgstr "za prikaz svih mogućnosti" -#: src/Console/AppConsole.vala:211 src/Console/AppConsole.vala:251 +#: src/Console/AppConsole.vala:216 src/Console/AppConsole.vala:256 msgid "No kernels specified" msgstr "Nema određenih kernela" -#: src/Console/AppConsole.vala:217 +#: src/Console/AppConsole.vala:222 msgid "Multiple kernels selected for installation. Select only one." msgstr "Više kernela je odabrano za instalaciju. odaberite samo jedan." -#: src/Console/AppConsole.vala:240 +#: src/Console/AppConsole.vala:245 msgid "Could not find requested version" msgstr "Nemoguće je pronaći zatraženu inačicu" -#: src/Console/AppConsole.vala:243 +#: src/Console/AppConsole.vala:248 msgid "and use a version string listed in first column" msgstr "i koristite izraz inačice prikazan u prvom stupcu" -#: src/Console/AppConsole.vala:270 +#: src/Console/AppConsole.vala:275 msgid "Command not specified" msgstr "Naredba nije navedena" -#: src/Console/AppConsole.vala:271 +#: src/Console/AppConsole.vala:276 msgid "to list all commands" msgstr "za prikaz svih mogućnosti" -#: src/Console/AppConsole.vala:325 src/Gtk/SettingsDialog.vala:165 -msgid "Show" -msgstr "Prikaži" +#: src/Console/AppConsole.vala:312 +#, fuzzy +msgid "Notifications disabled in settings" +msgstr "Obavijesti su onemogućene" + +#: src/Console/AppConsole.vala:332 +msgid "previously notified" +msgstr "" -#: src/Console/AppConsole.vala:330 src/Console/AppConsole.vala:342 +#: src/Console/AppConsole.vala:335 #, c-format msgid "Kernel %s Available" msgstr "Kernel %s je dostupan" -#: src/Console/AppConsole.vala:332 src/Console/AppConsole.vala:344 -#: src/Gtk/MainWindow.vala:266 +#: src/Console/AppConsole.vala:339 src/Gtk/SettingsDialog.vala:164 +msgid "Show" +msgstr "Prikaži" + +#: src/Console/AppConsole.vala:340 src/Gtk/MainWindow.vala:265 msgid "Install" msgstr "Instaliraj" @@ -295,7 +303,7 @@ msgstr "Zasluge" msgid "Back" msgstr "Natrag" -#: src/Gtk/AboutWindow.vala:185 src/Gtk/TerminalWindow.vala:162 +#: src/Gtk/AboutWindow.vala:185 src/Gtk/TerminalWindow.vala:161 msgid "Close" msgstr "Zatvori" @@ -323,160 +331,163 @@ msgstr "Autori dokumentacije" msgid "Third Party Inclusions" msgstr "Uključene treće strane" -#: src/Gtk/AppGtk.vala:136 +#: src/Gtk/AppGtk.vala:135 #, fuzzy msgid "options" msgstr "Mogućnosti" -#: src/Gtk/AppGtk.vala:140 +#: src/Gtk/AppGtk.vala:139 msgid "Print debug information" msgstr "Ispiši informacije otklanjanja grešaka" -#: src/Gtk/AppGtk.vala:141 +#: src/Gtk/AppGtk.vala:140 msgid "Show all options" msgstr "Prikaži sve mogućnosti" -#: src/Gtk/MainWindow.vala:112 +#: src/Gtk/MainWindow.vala:111 msgid "Kernel" msgstr "Kernel" -#: src/Gtk/MainWindow.vala:142 +#: src/Gtk/MainWindow.vala:141 msgid "Status" msgstr "Stanje" -#: src/Gtk/MainWindow.vala:276 +#: src/Gtk/MainWindow.vala:275 msgid "Uninstall" msgstr "Deinstaliraj" -#: src/Gtk/MainWindow.vala:286 +#: src/Gtk/MainWindow.vala:285 msgid "Changes" msgstr "Promjene" -#: src/Gtk/MainWindow.vala:308 +#: src/Gtk/MainWindow.vala:307 msgid "Uninstall Old" msgstr "Deinstaliraj staro" -#: src/Gtk/MainWindow.vala:309 +#: src/Gtk/MainWindow.vala:308 msgid "Uninstall kernels older than running kernel" msgstr "Deinstaliraj kernele starije od pokrenutog krenela" -#: src/Gtk/MainWindow.vala:314 +#: src/Gtk/MainWindow.vala:313 msgid "Reload" msgstr "" -#: src/Gtk/MainWindow.vala:319 src/Gtk/SettingsDialog.vala:49 +#: src/Gtk/MainWindow.vala:318 src/Gtk/SettingsDialog.vala:48 msgid "Settings" msgstr "Postavke" -#: src/Gtk/MainWindow.vala:324 +#: src/Gtk/MainWindow.vala:323 msgid "About" msgstr "O programu" -#: src/Gtk/MainWindow.vala:329 +#: src/Gtk/MainWindow.vala:328 msgid "Exit" msgstr "" -#: src/Gtk/MainWindow.vala:397 +#: src/Gtk/MainWindow.vala:396 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Alat za nadogradnju kernela Ubuntu temeljenih distribucija" -#: src/Gtk/MainWindow.vala:398 +#: src/Gtk/MainWindow.vala:397 msgid "Forked" msgstr "Forkano" -#: src/Gtk/MainWindow.vala:398 +#: src/Gtk/MainWindow.vala:397 msgid "Original" msgstr "Izvornik" -#: src/Gtk/MainWindow.vala:436 +#: src/Gtk/MainWindow.vala:435 msgid "Updating kernels" msgstr "" -#: src/Gtk/MainWindow.vala:507 +#: src/Gtk/MainWindow.vala:506 msgid "available" msgstr "dostupno" -#: src/Gtk/MainWindow.vala:550 src/Gtk/MainWindow.vala:590 -#: src/Gtk/MainWindow.vala:624 +#: src/Gtk/MainWindow.vala:549 src/Gtk/MainWindow.vala:589 +#: src/Gtk/MainWindow.vala:623 msgid "DONE" msgstr "" -#: src/Gtk/ProgressWindow.vala:127 src/Gtk/TerminalWindow.vala:152 +#: src/Gtk/ProgressWindow.vala:126 src/Gtk/TerminalWindow.vala:151 msgid "Cancel" msgstr "Odustani" -#: src/Gtk/SettingsDialog.vala:59 +#: src/Gtk/SettingsDialog.vala:58 msgid "Notification" msgstr "Obavijesti" -#: src/Gtk/SettingsDialog.vala:66 +#: src/Gtk/SettingsDialog.vala:65 msgid "Notify if a major release is available" msgstr "Obavijesti kada je glavno izdanje dostupno" -#: src/Gtk/SettingsDialog.vala:75 +#: src/Gtk/SettingsDialog.vala:74 msgid "Notify if a point release is available" msgstr "Obavijesti kada je pojedino izdanje dostupno" -#: src/Gtk/SettingsDialog.vala:86 +#: src/Gtk/SettingsDialog.vala:85 #, fuzzy msgid "Seconds interval enabled for debugging" msgstr "(Dopuštena razdoblja u sekundama za --debug)" -#: src/Gtk/SettingsDialog.vala:109 +#: src/Gtk/SettingsDialog.vala:108 msgid "Check every" msgstr "Provjeri svaka" -#: src/Gtk/SettingsDialog.vala:134 -msgid "Hour(s)" +#: src/Gtk/SettingsDialog.vala:133 +#, fuzzy +msgid "Hours" msgstr "Sat(a)" -#: src/Gtk/SettingsDialog.vala:136 -msgid "Day(s)" -msgstr "Dan(a)" +#: src/Gtk/SettingsDialog.vala:135 +msgid "Days" +msgstr "" -#: src/Gtk/SettingsDialog.vala:138 -msgid "Week(s)" +#: src/Gtk/SettingsDialog.vala:137 +#, fuzzy +msgid "Weeks" msgstr "Tjedan(a)" -#: src/Gtk/SettingsDialog.vala:141 -msgid "Second(s)" +#: src/Gtk/SettingsDialog.vala:140 +#, fuzzy +msgid "Seconds" msgstr "Sekund(e)" -#: src/Gtk/SettingsDialog.vala:147 +#: src/Gtk/SettingsDialog.vala:146 msgid "Filters" msgstr "" -#: src/Gtk/SettingsDialog.vala:155 +#: src/Gtk/SettingsDialog.vala:154 msgid "Hide unstable and RC releases" msgstr "Sakrij nestabilne kernele i predizdanja" -#: src/Gtk/SettingsDialog.vala:177 +#: src/Gtk/SettingsDialog.vala:176 #, fuzzy msgid "previous major versions" msgstr "Prikaži N prijašnjih glavnih izdanja " -#: src/Gtk/SettingsDialog.vala:181 +#: src/Gtk/SettingsDialog.vala:180 msgid "Network" msgstr "" -#: src/Gtk/SettingsDialog.vala:192 +#: src/Gtk/SettingsDialog.vala:191 #, fuzzy msgid "Internet connection timeout in" msgstr "Istek internet povezivanja za " -#: src/Gtk/SettingsDialog.vala:204 +#: src/Gtk/SettingsDialog.vala:203 msgid "seconds" msgstr "sekunde" -#: src/Gtk/SettingsDialog.vala:211 +#: src/Gtk/SettingsDialog.vala:210 msgid "Max concurrent downloads" msgstr "Najviše istodobnih preuzimanja" -#: src/Gtk/SettingsDialog.vala:225 +#: src/Gtk/SettingsDialog.vala:224 msgid "Proxy" msgstr "" -#: src/Gtk/l.gtk.vala:43 +#: src/Gtk/l.gtk.vala:42 msgid "Missing Icon" msgstr "Ikone koje nedostaju" diff --git a/po/it.po b/po/it.po index cf1098ab..f1202b31 100644 --- a/po/it.po +++ b/po/it.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline 1.0.15\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-19 16:41-0400\n" +"POT-Creation-Date: 2023-03-21 20:12-0400\n" "PO-Revision-Date: 2020-08-22 15:35+0100\n" "Last-Translator: Albano Battistella \n" "Language-Team: Italian\n" @@ -11,135 +11,136 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: src/Common/LinuxKernel.vala:87 +#: src/Common/LinuxKernel.vala:86 msgid "Distribution" msgstr "Distribuzione" -#: src/Common/LinuxKernel.vala:102 +#: src/Common/LinuxKernel.vala:101 msgid "Architecture" msgstr "Architettura" -#: src/Common/LinuxKernel.vala:277 +#: src/Common/LinuxKernel.vala:276 #, fuzzy msgid "Fetching individual kernel indexes" msgstr "Recupero dei singoli indici del kernel" -#: src/Common/LinuxKernel.vala:326 +#: src/Common/LinuxKernel.vala:325 msgid "Updating from" msgstr "Aggiornamento da" -#: src/Common/LinuxKernel.vala:343 src/Common/LinuxKernel.vala:896 +#: src/Common/LinuxKernel.vala:342 src/Common/LinuxKernel.vala:895 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:346 src/Common/LinuxKernel.vala:899 +#: src/Common/LinuxKernel.vala:345 src/Common/LinuxKernel.vala:898 msgid "FAILED" msgstr "FALLITO" -#: src/Common/LinuxKernel.vala:760 +#: src/Common/LinuxKernel.vala:759 msgid "Packages Available" msgstr "Pacchetti disponibili" -#: src/Common/LinuxKernel.vala:765 +#: src/Common/LinuxKernel.vala:764 msgid "Packages Installed" msgstr "Pacchetti installati" -#: src/Common/LinuxKernel.vala:778 src/lib/TeeJee.FileSystem.vala:121 +#: src/Common/LinuxKernel.vala:777 src/lib/TeeJee.FileSystem.vala:121 msgid "File not found" msgstr "File non trovato" -#: src/Common/LinuxKernel.vala:842 +#: src/Common/LinuxKernel.vala:841 msgid "Available Kernels" msgstr "Kernel disponibili" -#: src/Common/LinuxKernel.vala:849 src/Gtk/MainWindow.vala:155 +#: src/Common/LinuxKernel.vala:848 src/Gtk/MainWindow.vala:154 msgid "Installed" msgstr "Installato" -#: src/Common/LinuxKernel.vala:849 src/Gtk/MainWindow.vala:155 -#: src/Gtk/MainWindow.vala:498 src/Gtk/MainWindow.vala:511 +#: src/Common/LinuxKernel.vala:848 src/Gtk/MainWindow.vala:154 +#: src/Gtk/MainWindow.vala:497 src/Gtk/MainWindow.vala:510 msgid "Running" msgstr "In esecuzione" -#: src/Common/LinuxKernel.vala:884 +#: src/Common/LinuxKernel.vala:883 msgid "Downloading" msgstr "Download in corso" -#: src/Common/LinuxKernel.vala:912 +#: src/Common/LinuxKernel.vala:911 #, fuzzy msgid "is already installed." msgstr "è già installato." -#: src/Common/LinuxKernel.vala:942 +#: src/Common/LinuxKernel.vala:941 #, fuzzy msgid "Uninstalling selected kernels" msgstr "Disinstalla i kernel specificati" -#: src/Common/LinuxKernel.vala:948 +#: src/Common/LinuxKernel.vala:947 msgid "requested" msgstr "richiesto" -#: src/Common/LinuxKernel.vala:951 +#: src/Common/LinuxKernel.vala:950 #, fuzzy msgid "not uninstalling the currently running kernel" msgstr "non disinstallare il kernel attualmente in esecuzione" -#: src/Common/LinuxKernel.vala:967 +#: src/Common/LinuxKernel.vala:966 msgid "found" msgstr "trovato" -#: src/Common/LinuxKernel.vala:970 +#: src/Common/LinuxKernel.vala:969 #, fuzzy msgid "No packages to un-install!" msgstr "Nessun pacchetto da disinstallare!" -#: src/Common/LinuxKernel.vala:1018 +#: src/Common/LinuxKernel.vala:1017 #, fuzzy msgid "Could not find running kernel in list" msgstr "Impossibile trovare il kernel in esecuzione nell'elenco" -#: src/Common/LinuxKernel.vala:1023 +#: src/Common/LinuxKernel.vala:1022 msgid "Could not find any kernels to uninstall" msgstr "Impossibile trovare alcun kernel da rimuovere" -#: src/Common/LinuxKernel.vala:1031 +#: src/Common/LinuxKernel.vala:1030 #, fuzzy msgid "The following kernels will be uninstalled" msgstr "I seguenti kernel saranno rimossi" -#: src/Common/LinuxKernel.vala:1035 +#: src/Common/LinuxKernel.vala:1034 msgid "Continue ?" msgstr "Continuare ?" -#: src/Common/LinuxKernel.vala:1057 src/Console/AppConsole.vala:285 +#: src/Common/LinuxKernel.vala:1056 src/Console/AppConsole.vala:290 msgid "Latest update" msgstr "Ultimo aggiornamento" -#: src/Common/LinuxKernel.vala:1068 src/Console/AppConsole.vala:292 +#: src/Common/LinuxKernel.vala:1067 src/Console/AppConsole.vala:297 msgid "Latest point update" msgstr "Ultimo aggiornamento del rilascio parziale" -#: src/Common/LinuxKernel.vala:1076 src/Console/AppConsole.vala:297 -#: src/Console/AppConsole.vala:352 +#: src/Common/LinuxKernel.vala:1075 src/Console/AppConsole.vala:302 +#: src/Console/AppConsole.vala:318 msgid "No updates found" msgstr "Nessun aggiornamento trovato" -#: src/Common/LinuxKernel.vala:1085 +#: src/Common/LinuxKernel.vala:1084 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Installare la versione del kernel %s ? (y/n): " -#: src/Common/Main.vala:281 +#: src/Common/Main.vala:300 msgid "Called from" msgstr "Chiamata da" -#: src/Common/Main.vala:282 +#: src/Common/Main.vala:301 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" -"Questo file viene sovrascritto ed eseguito nuovamente ogni volta che vengono salvate le impostazioni" +"Questo file viene sovrascritto ed eseguito nuovamente ogni volta che vengono " +"salvate le impostazioni" -#: src/Common/Main.vala:314 +#: src/Common/Main.vala:333 msgid "Notifications are disabled" msgstr "Le notifiche sono disabilitate" @@ -148,141 +149,151 @@ msgstr "Le notifiche sono disabilitate" msgid "File not found: %s" msgstr "File non trovato: %s" -#: src/Console/AppConsole.vala:48 src/Gtk/AppGtk.vala:136 +#: src/Console/AppConsole.vala:47 src/Gtk/AppGtk.vala:135 msgid "Syntax" msgstr "Sintassi" -#: src/Console/AppConsole.vala:50 +#: src/Console/AppConsole.vala:49 msgid "Commands" msgstr "Comandi" -#: src/Console/AppConsole.vala:52 +#: src/Console/AppConsole.vala:51 msgid "Check for kernel updates" msgstr "Verifica aggiornamenti del kernel" -#: src/Console/AppConsole.vala:53 +#: src/Console/AppConsole.vala:52 msgid "Check for kernel updates and notify current user" -msgstr "Verifica la disponibilità di aggiornamenti del kernel ed avvisa l'utente corrente" +msgstr "" +"Verifica la disponibilità di aggiornamenti del kernel ed avvisa l'utente " +"corrente" -#: src/Console/AppConsole.vala:54 +#: src/Console/AppConsole.vala:53 msgid "List all available mainline kernels" msgstr "Elenca tutti i kernel mainline disponibili" -#: src/Console/AppConsole.vala:55 +#: src/Console/AppConsole.vala:54 msgid "List installed kernels" msgstr "Elenca i kernel installati" -#: src/Console/AppConsole.vala:56 +#: src/Console/AppConsole.vala:55 msgid "Install latest mainline kernel" msgstr "Installa ultimo kernel mainline" -#: src/Console/AppConsole.vala:57 +#: src/Console/AppConsole.vala:56 msgid "Install latest point update for current series" msgstr "installa l'ultimo rilascio parziale per le serie attuali" -#: src/Console/AppConsole.vala:58 +#: src/Console/AppConsole.vala:57 msgid "Install specified mainline kernel" msgstr "Installa kernel mainline specificato" -#: src/Console/AppConsole.vala:59 +#: src/Console/AppConsole.vala:58 msgid "Uninstall specified kernel" msgstr "Disinstalla i kernel specificati" -#: src/Console/AppConsole.vala:60 +#: src/Console/AppConsole.vala:59 #, fuzzy msgid "Uninstall kernels older than the latest installed" msgstr "Rimuovere i kernel installati più vecchi del kernel in esecuzione" -#: src/Console/AppConsole.vala:61 +#: src/Console/AppConsole.vala:60 msgid "Download specified kernels" msgstr "Scarica i kernel specificati" -#: src/Console/AppConsole.vala:62 +#: src/Console/AppConsole.vala:61 msgid "Delete cached info about available kernels" msgstr "Elimina le informazioni memorizzate nella cache sui kernel disponibili" -#: src/Console/AppConsole.vala:64 src/Gtk/AppGtk.vala:138 +#: src/Console/AppConsole.vala:63 src/Gtk/AppGtk.vala:137 msgid "Options" msgstr "Opzioni" -#: src/Console/AppConsole.vala:66 +#: src/Console/AppConsole.vala:65 msgid "Include unstable and RC releases" msgstr "Includi versioni instabili e rilasci RC" -#: src/Console/AppConsole.vala:67 +#: src/Console/AppConsole.vala:66 #, fuzzy msgid "Exclude unstable and RC releases" msgstr "Escludi versioni instabili e rilasci RC" -#: src/Console/AppConsole.vala:68 +#: src/Console/AppConsole.vala:67 msgid "Enable verbose debugging output" msgstr "Abilita l'output di debug dettagliato" -#: src/Console/AppConsole.vala:69 +#: src/Console/AppConsole.vala:68 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "Imposta Sì per tutte le richieste (modalità non interattiva)" -#: src/Console/AppConsole.vala:72 +#: src/Console/AppConsole.vala:71 msgid "A version string taken from the output of --list" msgstr "Una stringa di versione presa dall'output di --list" -#: src/Console/AppConsole.vala:73 +#: src/Console/AppConsole.vala:72 msgid "One or more, comma-seperated" msgstr "Uno o più, separati da virgola" -#: src/Console/AppConsole.vala:74 +#: src/Console/AppConsole.vala:73 #, fuzzy msgid "The currently running kernel will always be ignored" msgstr "Il kernel attualmente in esecuzione verrà sempre ignorato" -#: src/Console/AppConsole.vala:152 src/Gtk/AppGtk.vala:122 +#: src/Console/AppConsole.vala:161 src/Gtk/AppGtk.vala:121 msgid "Unknown option" msgstr "Opzione sconosciuta" -#: src/Console/AppConsole.vala:153 src/Console/AppConsole.vala:243 -#: src/Console/AppConsole.vala:271 +#: src/Console/AppConsole.vala:162 src/Console/AppConsole.vala:248 +#: src/Console/AppConsole.vala:276 msgid "Run" msgstr "In corso" -#: src/Console/AppConsole.vala:153 +#: src/Console/AppConsole.vala:162 msgid "to list all options" msgstr "Elencare tutte le opzioni" -#: src/Console/AppConsole.vala:211 src/Console/AppConsole.vala:251 +#: src/Console/AppConsole.vala:216 src/Console/AppConsole.vala:256 msgid "No kernels specified" msgstr "Nessun kernel specificato" -#: src/Console/AppConsole.vala:217 +#: src/Console/AppConsole.vala:222 msgid "Multiple kernels selected for installation. Select only one." msgstr "Più kernel selezionati per l'installazione. Selezionarne uno solo." -#: src/Console/AppConsole.vala:240 +#: src/Console/AppConsole.vala:245 msgid "Could not find requested version" msgstr "Impossibile trovare la versione richiesta" -#: src/Console/AppConsole.vala:243 +#: src/Console/AppConsole.vala:248 msgid "and use a version string listed in first column" msgstr "ed usa una stringa di versione elencata nella prima colonna" -#: src/Console/AppConsole.vala:270 +#: src/Console/AppConsole.vala:275 msgid "Command not specified" msgstr "Comando non specificato" -#: src/Console/AppConsole.vala:271 +#: src/Console/AppConsole.vala:276 msgid "to list all commands" msgstr "elencare tutti i comandi" -#: src/Console/AppConsole.vala:325 src/Gtk/SettingsDialog.vala:165 -msgid "Show" -msgstr "Mostra" +#: src/Console/AppConsole.vala:312 +#, fuzzy +msgid "Notifications disabled in settings" +msgstr "Le notifiche sono disabilitate" + +#: src/Console/AppConsole.vala:332 +msgid "previously notified" +msgstr "" -#: src/Console/AppConsole.vala:330 src/Console/AppConsole.vala:342 +#: src/Console/AppConsole.vala:335 #, c-format msgid "Kernel %s Available" msgstr "Kernel %s Disponibile" -#: src/Console/AppConsole.vala:332 src/Console/AppConsole.vala:344 -#: src/Gtk/MainWindow.vala:266 +#: src/Console/AppConsole.vala:339 src/Gtk/SettingsDialog.vala:164 +msgid "Show" +msgstr "Mostra" + +#: src/Console/AppConsole.vala:340 src/Gtk/MainWindow.vala:265 msgid "Install" msgstr "Installa" @@ -294,7 +305,7 @@ msgstr "Crediti" msgid "Back" msgstr "Indietro" -#: src/Gtk/AboutWindow.vala:185 src/Gtk/TerminalWindow.vala:162 +#: src/Gtk/AboutWindow.vala:185 src/Gtk/TerminalWindow.vala:161 msgid "Close" msgstr "Chiudi" @@ -322,160 +333,163 @@ msgstr "Documentatori" msgid "Third Party Inclusions" msgstr "Inclusioni di terze parti" -#: src/Gtk/AppGtk.vala:136 +#: src/Gtk/AppGtk.vala:135 #, fuzzy msgid "options" msgstr "Opzioni" -#: src/Gtk/AppGtk.vala:140 +#: src/Gtk/AppGtk.vala:139 msgid "Print debug information" msgstr "Stampa le informazioni di debug" -#: src/Gtk/AppGtk.vala:141 +#: src/Gtk/AppGtk.vala:140 msgid "Show all options" msgstr "Mostra tutte le opzioni" -#: src/Gtk/MainWindow.vala:112 +#: src/Gtk/MainWindow.vala:111 msgid "Kernel" msgstr "Kernel" -#: src/Gtk/MainWindow.vala:142 +#: src/Gtk/MainWindow.vala:141 msgid "Status" msgstr "Stato" -#: src/Gtk/MainWindow.vala:276 +#: src/Gtk/MainWindow.vala:275 msgid "Uninstall" msgstr "Disinstalla" -#: src/Gtk/MainWindow.vala:286 +#: src/Gtk/MainWindow.vala:285 msgid "Changes" msgstr "Modifiche" -#: src/Gtk/MainWindow.vala:308 +#: src/Gtk/MainWindow.vala:307 msgid "Uninstall Old" msgstr "Disinstalla i vecchi" -#: src/Gtk/MainWindow.vala:309 +#: src/Gtk/MainWindow.vala:308 msgid "Uninstall kernels older than running kernel" msgstr "Rimuove i kernel installati più vecchi del kernel in esecuzione" -#: src/Gtk/MainWindow.vala:314 +#: src/Gtk/MainWindow.vala:313 msgid "Reload" msgstr "Ricarica" -#: src/Gtk/MainWindow.vala:319 src/Gtk/SettingsDialog.vala:49 +#: src/Gtk/MainWindow.vala:318 src/Gtk/SettingsDialog.vala:48 msgid "Settings" msgstr "Impostazioni" -#: src/Gtk/MainWindow.vala:324 +#: src/Gtk/MainWindow.vala:323 msgid "About" msgstr "Informazioni" -#: src/Gtk/MainWindow.vala:329 +#: src/Gtk/MainWindow.vala:328 msgid "Exit" msgstr "Chiudi" -#: src/Gtk/MainWindow.vala:397 +#: src/Gtk/MainWindow.vala:396 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Utilità di aggiornamento del kernel per distribuzioni basate su Ubuntu" -#: src/Gtk/MainWindow.vala:398 +#: src/Gtk/MainWindow.vala:397 msgid "Forked" msgstr "Forked" -#: src/Gtk/MainWindow.vala:398 +#: src/Gtk/MainWindow.vala:397 msgid "Original" msgstr "Originale" -#: src/Gtk/MainWindow.vala:436 +#: src/Gtk/MainWindow.vala:435 msgid "Updating kernels" msgstr "Aggiornamento dei kernel" -#: src/Gtk/MainWindow.vala:507 +#: src/Gtk/MainWindow.vala:506 msgid "available" msgstr "disponibile" -#: src/Gtk/MainWindow.vala:550 src/Gtk/MainWindow.vala:590 -#: src/Gtk/MainWindow.vala:624 +#: src/Gtk/MainWindow.vala:549 src/Gtk/MainWindow.vala:589 +#: src/Gtk/MainWindow.vala:623 msgid "DONE" msgstr "FATTO" -#: src/Gtk/ProgressWindow.vala:127 src/Gtk/TerminalWindow.vala:152 +#: src/Gtk/ProgressWindow.vala:126 src/Gtk/TerminalWindow.vala:151 msgid "Cancel" msgstr "Cancella" -#: src/Gtk/SettingsDialog.vala:59 +#: src/Gtk/SettingsDialog.vala:58 msgid "Notification" msgstr "Notifica" -#: src/Gtk/SettingsDialog.vala:66 +#: src/Gtk/SettingsDialog.vala:65 msgid "Notify if a major release is available" msgstr "Avvisa se è disponibile una versione principale" -#: src/Gtk/SettingsDialog.vala:75 +#: src/Gtk/SettingsDialog.vala:74 msgid "Notify if a point release is available" msgstr "Avvisa se è disponibile un rilascio parziale" -#: src/Gtk/SettingsDialog.vala:86 +#: src/Gtk/SettingsDialog.vala:85 #, fuzzy msgid "Seconds interval enabled for debugging" msgstr "Intervallo in secondi abilitato per il debug" -#: src/Gtk/SettingsDialog.vala:109 +#: src/Gtk/SettingsDialog.vala:108 msgid "Check every" msgstr "Controlla ogni" -#: src/Gtk/SettingsDialog.vala:134 -msgid "Hour(s)" +#: src/Gtk/SettingsDialog.vala:133 +#, fuzzy +msgid "Hours" msgstr "Ora(e)" -#: src/Gtk/SettingsDialog.vala:136 -msgid "Day(s)" -msgstr "Giorno(i)" +#: src/Gtk/SettingsDialog.vala:135 +msgid "Days" +msgstr "" -#: src/Gtk/SettingsDialog.vala:138 -msgid "Week(s)" +#: src/Gtk/SettingsDialog.vala:137 +#, fuzzy +msgid "Weeks" msgstr "Settimana(e)" -#: src/Gtk/SettingsDialog.vala:141 -msgid "Second(s)" +#: src/Gtk/SettingsDialog.vala:140 +#, fuzzy +msgid "Seconds" msgstr "Secondo(i)" -#: src/Gtk/SettingsDialog.vala:147 +#: src/Gtk/SettingsDialog.vala:146 msgid "Filters" msgstr "Filtri" -#: src/Gtk/SettingsDialog.vala:155 +#: src/Gtk/SettingsDialog.vala:154 msgid "Hide unstable and RC releases" msgstr "Nascondi versioni instabili e rilasci RC" -#: src/Gtk/SettingsDialog.vala:177 +#: src/Gtk/SettingsDialog.vala:176 #, fuzzy msgid "previous major versions" msgstr "versioni principali precedenti" -#: src/Gtk/SettingsDialog.vala:181 +#: src/Gtk/SettingsDialog.vala:180 msgid "Network" msgstr "Rete" -#: src/Gtk/SettingsDialog.vala:192 +#: src/Gtk/SettingsDialog.vala:191 #, fuzzy msgid "Internet connection timeout in" msgstr "Timeout connessione Internet in" -#: src/Gtk/SettingsDialog.vala:204 +#: src/Gtk/SettingsDialog.vala:203 msgid "seconds" msgstr "secondi" -#: src/Gtk/SettingsDialog.vala:211 +#: src/Gtk/SettingsDialog.vala:210 msgid "Max concurrent downloads" msgstr "Numero massimo di download simultanei" -#: src/Gtk/SettingsDialog.vala:225 +#: src/Gtk/SettingsDialog.vala:224 msgid "Proxy" msgstr "Proxy" -#: src/Gtk/l.gtk.vala:43 +#: src/Gtk/l.gtk.vala:42 msgid "Missing Icon" msgstr "Icona mancante" diff --git a/po/ko.po b/po/ko.po index 6384485a..94b2e543 100644 --- a/po/ko.po +++ b/po/ko.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline 1.0.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-19 16:41-0400\n" +"POT-Creation-Date: 2023-03-21 20:12-0400\n" "PO-Revision-Date: 2022-09-28 11:48+0900\n" "Last-Translator: Kevin Kim \n" "Language-Team: Korean\n" @@ -13,134 +13,134 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Poedit 3.0.1\n" -#: src/Common/LinuxKernel.vala:87 +#: src/Common/LinuxKernel.vala:86 msgid "Distribution" msgstr "배포판" -#: src/Common/LinuxKernel.vala:102 +#: src/Common/LinuxKernel.vala:101 msgid "Architecture" msgstr "아키텍처" -#: src/Common/LinuxKernel.vala:277 +#: src/Common/LinuxKernel.vala:276 #, fuzzy msgid "Fetching individual kernel indexes" msgstr "목록 가져오기..." -#: src/Common/LinuxKernel.vala:326 +#: src/Common/LinuxKernel.vala:325 msgid "Updating from" msgstr "" -#: src/Common/LinuxKernel.vala:343 src/Common/LinuxKernel.vala:896 +#: src/Common/LinuxKernel.vala:342 src/Common/LinuxKernel.vala:895 msgid "OK" msgstr "확인" -#: src/Common/LinuxKernel.vala:346 src/Common/LinuxKernel.vala:899 +#: src/Common/LinuxKernel.vala:345 src/Common/LinuxKernel.vala:898 msgid "FAILED" msgstr "" -#: src/Common/LinuxKernel.vala:760 +#: src/Common/LinuxKernel.vala:759 msgid "Packages Available" msgstr "설치 가능한 패키지" -#: src/Common/LinuxKernel.vala:765 +#: src/Common/LinuxKernel.vala:764 msgid "Packages Installed" msgstr "설치된 패키지" -#: src/Common/LinuxKernel.vala:778 src/lib/TeeJee.FileSystem.vala:121 +#: src/Common/LinuxKernel.vala:777 src/lib/TeeJee.FileSystem.vala:121 msgid "File not found" msgstr "파일을 찾을 수 없습니다" -#: src/Common/LinuxKernel.vala:842 +#: src/Common/LinuxKernel.vala:841 msgid "Available Kernels" msgstr "설치 가능한 커널" -#: src/Common/LinuxKernel.vala:849 src/Gtk/MainWindow.vala:155 +#: src/Common/LinuxKernel.vala:848 src/Gtk/MainWindow.vala:154 msgid "Installed" msgstr "설치 됨" -#: src/Common/LinuxKernel.vala:849 src/Gtk/MainWindow.vala:155 -#: src/Gtk/MainWindow.vala:498 src/Gtk/MainWindow.vala:511 +#: src/Common/LinuxKernel.vala:848 src/Gtk/MainWindow.vala:154 +#: src/Gtk/MainWindow.vala:497 src/Gtk/MainWindow.vala:510 msgid "Running" msgstr "구동 중" -#: src/Common/LinuxKernel.vala:884 +#: src/Common/LinuxKernel.vala:883 msgid "Downloading" msgstr "다운로드 중" -#: src/Common/LinuxKernel.vala:912 +#: src/Common/LinuxKernel.vala:911 #, fuzzy msgid "is already installed." msgstr "이 커널은 이미 설치되었습니다." -#: src/Common/LinuxKernel.vala:942 +#: src/Common/LinuxKernel.vala:941 #, fuzzy msgid "Uninstalling selected kernels" msgstr "지정한 커널 삭제" -#: src/Common/LinuxKernel.vala:948 +#: src/Common/LinuxKernel.vala:947 msgid "requested" msgstr "" -#: src/Common/LinuxKernel.vala:951 +#: src/Common/LinuxKernel.vala:950 #, fuzzy msgid "not uninstalling the currently running kernel" msgstr "지정한 커널 삭제" -#: src/Common/LinuxKernel.vala:967 +#: src/Common/LinuxKernel.vala:966 msgid "found" msgstr "" -#: src/Common/LinuxKernel.vala:970 +#: src/Common/LinuxKernel.vala:969 #, fuzzy msgid "No packages to un-install!" msgstr "설치된 패키지" -#: src/Common/LinuxKernel.vala:1018 +#: src/Common/LinuxKernel.vala:1017 #, fuzzy msgid "Could not find running kernel in list" msgstr "목록에서 사용중인 커널을 찾을 수 없습니다!" -#: src/Common/LinuxKernel.vala:1023 +#: src/Common/LinuxKernel.vala:1022 msgid "Could not find any kernels to uninstall" msgstr "삭제할 커널을 찾을 수 없습니다" -#: src/Common/LinuxKernel.vala:1031 +#: src/Common/LinuxKernel.vala:1030 #, fuzzy msgid "The following kernels will be uninstalled" msgstr "아래 커널이 삭제됩니다:" -#: src/Common/LinuxKernel.vala:1035 +#: src/Common/LinuxKernel.vala:1034 msgid "Continue ?" msgstr "계속하시겠습니까?" -#: src/Common/LinuxKernel.vala:1057 src/Console/AppConsole.vala:285 +#: src/Common/LinuxKernel.vala:1056 src/Console/AppConsole.vala:290 msgid "Latest update" msgstr "최신 업데이트" -#: src/Common/LinuxKernel.vala:1068 src/Console/AppConsole.vala:292 +#: src/Common/LinuxKernel.vala:1067 src/Console/AppConsole.vala:297 msgid "Latest point update" msgstr "최신 포인트 업데이트" -#: src/Common/LinuxKernel.vala:1076 src/Console/AppConsole.vala:297 -#: src/Console/AppConsole.vala:352 +#: src/Common/LinuxKernel.vala:1075 src/Console/AppConsole.vala:302 +#: src/Console/AppConsole.vala:318 msgid "No updates found" msgstr "업데이트를 찾을 수 없습니다" -#: src/Common/LinuxKernel.vala:1085 +#: src/Common/LinuxKernel.vala:1084 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "커널 %s 버전을 설치하시겠습니까? (y/n): " -#: src/Common/Main.vala:281 +#: src/Common/Main.vala:300 msgid "Called from" msgstr "에서 호출" -#: src/Common/Main.vala:282 +#: src/Common/Main.vala:301 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" -#: src/Common/Main.vala:314 +#: src/Common/Main.vala:333 msgid "Notifications are disabled" msgstr "알림이 비활성화 되었습니다" @@ -149,141 +149,149 @@ msgstr "알림이 비활성화 되었습니다" msgid "File not found: %s" msgstr "파일을 찾을 수 없습니다" -#: src/Console/AppConsole.vala:48 src/Gtk/AppGtk.vala:136 +#: src/Console/AppConsole.vala:47 src/Gtk/AppGtk.vala:135 msgid "Syntax" msgstr "문법" -#: src/Console/AppConsole.vala:50 +#: src/Console/AppConsole.vala:49 msgid "Commands" msgstr "명령어" -#: src/Console/AppConsole.vala:52 +#: src/Console/AppConsole.vala:51 msgid "Check for kernel updates" msgstr "커널 업데이트 확인" -#: src/Console/AppConsole.vala:53 +#: src/Console/AppConsole.vala:52 msgid "Check for kernel updates and notify current user" msgstr "커널 업데이트를 확인하고 현재 사용자에게 알림" -#: src/Console/AppConsole.vala:54 +#: src/Console/AppConsole.vala:53 msgid "List all available mainline kernels" msgstr "사용 가능한 모든 메인라인 커널 보기" -#: src/Console/AppConsole.vala:55 +#: src/Console/AppConsole.vala:54 msgid "List installed kernels" msgstr "설치된 커널 보기" -#: src/Console/AppConsole.vala:56 +#: src/Console/AppConsole.vala:55 msgid "Install latest mainline kernel" msgstr "최신 메인라인 커널 설치" -#: src/Console/AppConsole.vala:57 +#: src/Console/AppConsole.vala:56 msgid "Install latest point update for current series" msgstr "현재 사용중인 배포판을 위한 최신 포인트 업데이트 설치" -#: src/Console/AppConsole.vala:58 +#: src/Console/AppConsole.vala:57 msgid "Install specified mainline kernel" msgstr "지정한 메인라인 커널 설치" -#: src/Console/AppConsole.vala:59 +#: src/Console/AppConsole.vala:58 msgid "Uninstall specified kernel" msgstr "지정한 커널 삭제" -#: src/Console/AppConsole.vala:60 +#: src/Console/AppConsole.vala:59 #, fuzzy msgid "Uninstall kernels older than the latest installed" msgstr "현재 사용중인 커널보다 이전 버전의 설치된 커널을 제거" -#: src/Console/AppConsole.vala:61 +#: src/Console/AppConsole.vala:60 msgid "Download specified kernels" msgstr "지정한 커널 다운로드" -#: src/Console/AppConsole.vala:62 +#: src/Console/AppConsole.vala:61 msgid "Delete cached info about available kernels" msgstr "" -#: src/Console/AppConsole.vala:64 src/Gtk/AppGtk.vala:138 +#: src/Console/AppConsole.vala:63 src/Gtk/AppGtk.vala:137 msgid "Options" msgstr "옵션" -#: src/Console/AppConsole.vala:66 +#: src/Console/AppConsole.vala:65 msgid "Include unstable and RC releases" msgstr "목록에서 unstable, RC 버전 포함" -#: src/Console/AppConsole.vala:67 +#: src/Console/AppConsole.vala:66 #, fuzzy msgid "Exclude unstable and RC releases" msgstr "목록에서 unstable, RC 버전 포함" -#: src/Console/AppConsole.vala:68 +#: src/Console/AppConsole.vala:67 msgid "Enable verbose debugging output" msgstr "디버깅을 위한 진행 과정 보이기 활성화" -#: src/Console/AppConsole.vala:69 +#: src/Console/AppConsole.vala:68 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "모든 물음에 자동으로 \"예\"라고 가정 (비 대화형 모드)" -#: src/Console/AppConsole.vala:72 +#: src/Console/AppConsole.vala:71 msgid "A version string taken from the output of --list" msgstr "--list 의 출력에서 가져온 버전 문자열" -#: src/Console/AppConsole.vala:73 +#: src/Console/AppConsole.vala:72 msgid "One or more, comma-seperated" msgstr "" -#: src/Console/AppConsole.vala:74 +#: src/Console/AppConsole.vala:73 #, fuzzy msgid "The currently running kernel will always be ignored" msgstr "아래 커널이 삭제됩니다:" -#: src/Console/AppConsole.vala:152 src/Gtk/AppGtk.vala:122 +#: src/Console/AppConsole.vala:161 src/Gtk/AppGtk.vala:121 msgid "Unknown option" msgstr "알 수 없는 옵션" -#: src/Console/AppConsole.vala:153 src/Console/AppConsole.vala:243 -#: src/Console/AppConsole.vala:271 +#: src/Console/AppConsole.vala:162 src/Console/AppConsole.vala:248 +#: src/Console/AppConsole.vala:276 msgid "Run" msgstr "실행" -#: src/Console/AppConsole.vala:153 +#: src/Console/AppConsole.vala:162 msgid "to list all options" msgstr "모든 옵션을 나열" -#: src/Console/AppConsole.vala:211 src/Console/AppConsole.vala:251 +#: src/Console/AppConsole.vala:216 src/Console/AppConsole.vala:256 msgid "No kernels specified" msgstr "지정한 커널이 없습니다" -#: src/Console/AppConsole.vala:217 +#: src/Console/AppConsole.vala:222 msgid "Multiple kernels selected for installation. Select only one." msgstr "설치할 커널이 여러개 선택되었습니다. 하나의 커널만 선택하세요." -#: src/Console/AppConsole.vala:240 +#: src/Console/AppConsole.vala:245 msgid "Could not find requested version" msgstr "요청한 버전을 찾을 수 없습니다" -#: src/Console/AppConsole.vala:243 +#: src/Console/AppConsole.vala:248 msgid "and use a version string listed in first column" msgstr "첫 번째 열에 나열된 버전 문자열을 사용" -#: src/Console/AppConsole.vala:270 +#: src/Console/AppConsole.vala:275 msgid "Command not specified" msgstr "지정한 명령어가 없습니다" -#: src/Console/AppConsole.vala:271 +#: src/Console/AppConsole.vala:276 msgid "to list all commands" msgstr "모든 명령어 나열" -#: src/Console/AppConsole.vala:325 src/Gtk/SettingsDialog.vala:165 -msgid "Show" -msgstr "보이기" +#: src/Console/AppConsole.vala:312 +#, fuzzy +msgid "Notifications disabled in settings" +msgstr "알림이 비활성화 되었습니다" + +#: src/Console/AppConsole.vala:332 +msgid "previously notified" +msgstr "" -#: src/Console/AppConsole.vala:330 src/Console/AppConsole.vala:342 +#: src/Console/AppConsole.vala:335 #, c-format msgid "Kernel %s Available" msgstr "커널 %s 사용 가능" -#: src/Console/AppConsole.vala:332 src/Console/AppConsole.vala:344 -#: src/Gtk/MainWindow.vala:266 +#: src/Console/AppConsole.vala:339 src/Gtk/SettingsDialog.vala:164 +msgid "Show" +msgstr "보이기" + +#: src/Console/AppConsole.vala:340 src/Gtk/MainWindow.vala:265 msgid "Install" msgstr "설치" @@ -295,7 +303,7 @@ msgstr "제작자" msgid "Back" msgstr "뒤로" -#: src/Gtk/AboutWindow.vala:185 src/Gtk/TerminalWindow.vala:162 +#: src/Gtk/AboutWindow.vala:185 src/Gtk/TerminalWindow.vala:161 msgid "Close" msgstr "닫기" @@ -323,160 +331,163 @@ msgstr "문서작성" msgid "Third Party Inclusions" msgstr "서드파티 포함" -#: src/Gtk/AppGtk.vala:136 +#: src/Gtk/AppGtk.vala:135 #, fuzzy msgid "options" msgstr "옵션" -#: src/Gtk/AppGtk.vala:140 +#: src/Gtk/AppGtk.vala:139 msgid "Print debug information" msgstr "디버그 정보 출력" -#: src/Gtk/AppGtk.vala:141 +#: src/Gtk/AppGtk.vala:140 msgid "Show all options" msgstr "모든 옵션 보기" -#: src/Gtk/MainWindow.vala:112 +#: src/Gtk/MainWindow.vala:111 msgid "Kernel" msgstr "커널" -#: src/Gtk/MainWindow.vala:142 +#: src/Gtk/MainWindow.vala:141 msgid "Status" msgstr "상태" -#: src/Gtk/MainWindow.vala:276 +#: src/Gtk/MainWindow.vala:275 msgid "Uninstall" msgstr "삭제" -#: src/Gtk/MainWindow.vala:286 +#: src/Gtk/MainWindow.vala:285 msgid "Changes" msgstr "변경사항" -#: src/Gtk/MainWindow.vala:308 +#: src/Gtk/MainWindow.vala:307 msgid "Uninstall Old" msgstr "오래된 커널 제거" -#: src/Gtk/MainWindow.vala:309 +#: src/Gtk/MainWindow.vala:308 msgid "Uninstall kernels older than running kernel" msgstr "현재 사용 중인 커널보다 이전 버전의 커널을 제거" -#: src/Gtk/MainWindow.vala:314 +#: src/Gtk/MainWindow.vala:313 msgid "Reload" msgstr "" -#: src/Gtk/MainWindow.vala:319 src/Gtk/SettingsDialog.vala:49 +#: src/Gtk/MainWindow.vala:318 src/Gtk/SettingsDialog.vala:48 msgid "Settings" msgstr "설정" -#: src/Gtk/MainWindow.vala:324 +#: src/Gtk/MainWindow.vala:323 msgid "About" msgstr "정보" -#: src/Gtk/MainWindow.vala:329 +#: src/Gtk/MainWindow.vala:328 msgid "Exit" msgstr "" -#: src/Gtk/MainWindow.vala:397 +#: src/Gtk/MainWindow.vala:396 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "우분투 기반 배포판의 커널 업그레이드 도구" -#: src/Gtk/MainWindow.vala:398 +#: src/Gtk/MainWindow.vala:397 msgid "Forked" msgstr "" -#: src/Gtk/MainWindow.vala:398 +#: src/Gtk/MainWindow.vala:397 msgid "Original" msgstr "" -#: src/Gtk/MainWindow.vala:436 +#: src/Gtk/MainWindow.vala:435 msgid "Updating kernels" msgstr "" -#: src/Gtk/MainWindow.vala:507 +#: src/Gtk/MainWindow.vala:506 msgid "available" msgstr "사용가능" -#: src/Gtk/MainWindow.vala:550 src/Gtk/MainWindow.vala:590 -#: src/Gtk/MainWindow.vala:624 +#: src/Gtk/MainWindow.vala:549 src/Gtk/MainWindow.vala:589 +#: src/Gtk/MainWindow.vala:623 msgid "DONE" msgstr "" -#: src/Gtk/ProgressWindow.vala:127 src/Gtk/TerminalWindow.vala:152 +#: src/Gtk/ProgressWindow.vala:126 src/Gtk/TerminalWindow.vala:151 msgid "Cancel" msgstr "취소" -#: src/Gtk/SettingsDialog.vala:59 +#: src/Gtk/SettingsDialog.vala:58 msgid "Notification" msgstr "알림" -#: src/Gtk/SettingsDialog.vala:66 +#: src/Gtk/SettingsDialog.vala:65 msgid "Notify if a major release is available" msgstr "메이저 릴리즈가 있으면 알림" -#: src/Gtk/SettingsDialog.vala:75 +#: src/Gtk/SettingsDialog.vala:74 msgid "Notify if a point release is available" msgstr "포인트 릴리즈가 있으면 알림" -#: src/Gtk/SettingsDialog.vala:86 +#: src/Gtk/SettingsDialog.vala:85 #, fuzzy msgid "Seconds interval enabled for debugging" msgstr "(--debug 를 위한 몇초간 지연 허용)" -#: src/Gtk/SettingsDialog.vala:109 +#: src/Gtk/SettingsDialog.vala:108 msgid "Check every" msgstr "확인 주기" -#: src/Gtk/SettingsDialog.vala:134 -msgid "Hour(s)" +#: src/Gtk/SettingsDialog.vala:133 +#, fuzzy +msgid "Hours" msgstr "시간" -#: src/Gtk/SettingsDialog.vala:136 -msgid "Day(s)" -msgstr "일" +#: src/Gtk/SettingsDialog.vala:135 +msgid "Days" +msgstr "" -#: src/Gtk/SettingsDialog.vala:138 -msgid "Week(s)" +#: src/Gtk/SettingsDialog.vala:137 +#, fuzzy +msgid "Weeks" msgstr "주" -#: src/Gtk/SettingsDialog.vala:141 -msgid "Second(s)" +#: src/Gtk/SettingsDialog.vala:140 +#, fuzzy +msgid "Seconds" msgstr "초" -#: src/Gtk/SettingsDialog.vala:147 +#: src/Gtk/SettingsDialog.vala:146 msgid "Filters" msgstr "" -#: src/Gtk/SettingsDialog.vala:155 +#: src/Gtk/SettingsDialog.vala:154 msgid "Hide unstable and RC releases" msgstr "목록에서 unstable, RC 버전 포함" -#: src/Gtk/SettingsDialog.vala:177 +#: src/Gtk/SettingsDialog.vala:176 #, fuzzy msgid "previous major versions" msgstr "보여 질 이전 메이저 버전 수 " -#: src/Gtk/SettingsDialog.vala:181 +#: src/Gtk/SettingsDialog.vala:180 msgid "Network" msgstr "" -#: src/Gtk/SettingsDialog.vala:192 +#: src/Gtk/SettingsDialog.vala:191 #, fuzzy msgid "Internet connection timeout in" msgstr "인터넷 연결 타임아웃 시간 " -#: src/Gtk/SettingsDialog.vala:204 +#: src/Gtk/SettingsDialog.vala:203 msgid "seconds" msgstr "초" -#: src/Gtk/SettingsDialog.vala:211 +#: src/Gtk/SettingsDialog.vala:210 msgid "Max concurrent downloads" msgstr "동시 다운로드 최대 수" -#: src/Gtk/SettingsDialog.vala:225 +#: src/Gtk/SettingsDialog.vala:224 msgid "Proxy" msgstr "" -#: src/Gtk/l.gtk.vala:43 +#: src/Gtk/l.gtk.vala:42 msgid "Missing Icon" msgstr "아이콘을 찾을 수 없습니다" diff --git a/po/messages.pot b/po/messages.pot index eaa536e3..b0b348f0 100644 --- a/po/messages.pot +++ b/po/messages.pot @@ -6,9 +6,9 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: mainline 1.1.7\n" +"Project-Id-Version: mainline 1.1.8\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-19 16:48-0400\n" +"POT-Creation-Date: 2023-03-21 20:12-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,127 +17,127 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" -#: src/Common/LinuxKernel.vala:87 +#: src/Common/LinuxKernel.vala:86 msgid "Distribution" msgstr "" -#: src/Common/LinuxKernel.vala:102 +#: src/Common/LinuxKernel.vala:101 msgid "Architecture" msgstr "" -#: src/Common/LinuxKernel.vala:277 +#: src/Common/LinuxKernel.vala:276 msgid "Fetching individual kernel indexes" msgstr "" -#: src/Common/LinuxKernel.vala:326 +#: src/Common/LinuxKernel.vala:325 msgid "Updating from" msgstr "" -#: src/Common/LinuxKernel.vala:343 src/Common/LinuxKernel.vala:896 +#: src/Common/LinuxKernel.vala:342 src/Common/LinuxKernel.vala:895 msgid "OK" msgstr "" -#: src/Common/LinuxKernel.vala:346 src/Common/LinuxKernel.vala:899 +#: src/Common/LinuxKernel.vala:345 src/Common/LinuxKernel.vala:898 msgid "FAILED" msgstr "" -#: src/Common/LinuxKernel.vala:760 +#: src/Common/LinuxKernel.vala:759 msgid "Packages Available" msgstr "" -#: src/Common/LinuxKernel.vala:765 +#: src/Common/LinuxKernel.vala:764 msgid "Packages Installed" msgstr "" -#: src/Common/LinuxKernel.vala:778 src/lib/TeeJee.FileSystem.vala:121 +#: src/Common/LinuxKernel.vala:777 src/lib/TeeJee.FileSystem.vala:121 msgid "File not found" msgstr "" -#: src/Common/LinuxKernel.vala:842 +#: src/Common/LinuxKernel.vala:841 msgid "Available Kernels" msgstr "" -#: src/Common/LinuxKernel.vala:849 src/Gtk/MainWindow.vala:155 +#: src/Common/LinuxKernel.vala:848 src/Gtk/MainWindow.vala:154 msgid "Installed" msgstr "" -#: src/Common/LinuxKernel.vala:849 src/Gtk/MainWindow.vala:155 -#: src/Gtk/MainWindow.vala:498 src/Gtk/MainWindow.vala:511 +#: src/Common/LinuxKernel.vala:848 src/Gtk/MainWindow.vala:154 +#: src/Gtk/MainWindow.vala:497 src/Gtk/MainWindow.vala:510 msgid "Running" msgstr "" -#: src/Common/LinuxKernel.vala:884 +#: src/Common/LinuxKernel.vala:883 msgid "Downloading" msgstr "" -#: src/Common/LinuxKernel.vala:912 +#: src/Common/LinuxKernel.vala:911 msgid "is already installed." msgstr "" -#: src/Common/LinuxKernel.vala:942 +#: src/Common/LinuxKernel.vala:941 msgid "Uninstalling selected kernels" msgstr "" -#: src/Common/LinuxKernel.vala:948 +#: src/Common/LinuxKernel.vala:947 msgid "requested" msgstr "" -#: src/Common/LinuxKernel.vala:951 +#: src/Common/LinuxKernel.vala:950 msgid "not uninstalling the currently running kernel" msgstr "" -#: src/Common/LinuxKernel.vala:967 +#: src/Common/LinuxKernel.vala:966 msgid "found" msgstr "" -#: src/Common/LinuxKernel.vala:970 +#: src/Common/LinuxKernel.vala:969 msgid "No packages to un-install!" msgstr "" -#: src/Common/LinuxKernel.vala:1018 +#: src/Common/LinuxKernel.vala:1017 msgid "Could not find running kernel in list" msgstr "" -#: src/Common/LinuxKernel.vala:1023 +#: src/Common/LinuxKernel.vala:1022 msgid "Could not find any kernels to uninstall" msgstr "" -#: src/Common/LinuxKernel.vala:1031 +#: src/Common/LinuxKernel.vala:1030 msgid "The following kernels will be uninstalled" msgstr "" -#: src/Common/LinuxKernel.vala:1035 +#: src/Common/LinuxKernel.vala:1034 msgid "Continue ?" msgstr "" -#: src/Common/LinuxKernel.vala:1057 src/Console/AppConsole.vala:285 +#: src/Common/LinuxKernel.vala:1056 src/Console/AppConsole.vala:290 msgid "Latest update" msgstr "" -#: src/Common/LinuxKernel.vala:1068 src/Console/AppConsole.vala:292 +#: src/Common/LinuxKernel.vala:1067 src/Console/AppConsole.vala:297 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:1076 src/Console/AppConsole.vala:297 -#: src/Console/AppConsole.vala:352 +#: src/Common/LinuxKernel.vala:1075 src/Console/AppConsole.vala:302 +#: src/Console/AppConsole.vala:318 msgid "No updates found" msgstr "" -#: src/Common/LinuxKernel.vala:1085 +#: src/Common/LinuxKernel.vala:1084 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "" -#: src/Common/Main.vala:281 +#: src/Common/Main.vala:300 msgid "Called from" msgstr "" -#: src/Common/Main.vala:282 +#: src/Common/Main.vala:301 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" -#: src/Common/Main.vala:314 +#: src/Common/Main.vala:333 msgid "Notifications are disabled" msgstr "" @@ -146,138 +146,145 @@ msgstr "" msgid "File not found: %s" msgstr "" -#: src/Console/AppConsole.vala:48 src/Gtk/AppGtk.vala:136 +#: src/Console/AppConsole.vala:47 src/Gtk/AppGtk.vala:135 msgid "Syntax" msgstr "" -#: src/Console/AppConsole.vala:50 +#: src/Console/AppConsole.vala:49 msgid "Commands" msgstr "" -#: src/Console/AppConsole.vala:52 +#: src/Console/AppConsole.vala:51 msgid "Check for kernel updates" msgstr "" -#: src/Console/AppConsole.vala:53 +#: src/Console/AppConsole.vala:52 msgid "Check for kernel updates and notify current user" msgstr "" -#: src/Console/AppConsole.vala:54 +#: src/Console/AppConsole.vala:53 msgid "List all available mainline kernels" msgstr "" -#: src/Console/AppConsole.vala:55 +#: src/Console/AppConsole.vala:54 msgid "List installed kernels" msgstr "" -#: src/Console/AppConsole.vala:56 +#: src/Console/AppConsole.vala:55 msgid "Install latest mainline kernel" msgstr "" -#: src/Console/AppConsole.vala:57 +#: src/Console/AppConsole.vala:56 msgid "Install latest point update for current series" msgstr "" -#: src/Console/AppConsole.vala:58 +#: src/Console/AppConsole.vala:57 msgid "Install specified mainline kernel" msgstr "" -#: src/Console/AppConsole.vala:59 +#: src/Console/AppConsole.vala:58 msgid "Uninstall specified kernel" msgstr "" -#: src/Console/AppConsole.vala:60 +#: src/Console/AppConsole.vala:59 msgid "Uninstall kernels older than the latest installed" msgstr "" -#: src/Console/AppConsole.vala:61 +#: src/Console/AppConsole.vala:60 msgid "Download specified kernels" msgstr "" -#: src/Console/AppConsole.vala:62 +#: src/Console/AppConsole.vala:61 msgid "Delete cached info about available kernels" msgstr "" -#: src/Console/AppConsole.vala:64 src/Gtk/AppGtk.vala:138 +#: src/Console/AppConsole.vala:63 src/Gtk/AppGtk.vala:137 msgid "Options" msgstr "" -#: src/Console/AppConsole.vala:66 +#: src/Console/AppConsole.vala:65 msgid "Include unstable and RC releases" msgstr "" -#: src/Console/AppConsole.vala:67 +#: src/Console/AppConsole.vala:66 msgid "Exclude unstable and RC releases" msgstr "" -#: src/Console/AppConsole.vala:68 +#: src/Console/AppConsole.vala:67 msgid "Enable verbose debugging output" msgstr "" -#: src/Console/AppConsole.vala:69 +#: src/Console/AppConsole.vala:68 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "" -#: src/Console/AppConsole.vala:72 +#: src/Console/AppConsole.vala:71 msgid "A version string taken from the output of --list" msgstr "" -#: src/Console/AppConsole.vala:73 +#: src/Console/AppConsole.vala:72 msgid "One or more, comma-seperated" msgstr "" -#: src/Console/AppConsole.vala:74 +#: src/Console/AppConsole.vala:73 msgid "The currently running kernel will always be ignored" msgstr "" -#: src/Console/AppConsole.vala:152 src/Gtk/AppGtk.vala:122 +#: src/Console/AppConsole.vala:161 src/Gtk/AppGtk.vala:121 msgid "Unknown option" msgstr "" -#: src/Console/AppConsole.vala:153 src/Console/AppConsole.vala:243 -#: src/Console/AppConsole.vala:271 +#: src/Console/AppConsole.vala:162 src/Console/AppConsole.vala:248 +#: src/Console/AppConsole.vala:276 msgid "Run" msgstr "" -#: src/Console/AppConsole.vala:153 +#: src/Console/AppConsole.vala:162 msgid "to list all options" msgstr "" -#: src/Console/AppConsole.vala:211 src/Console/AppConsole.vala:251 +#: src/Console/AppConsole.vala:216 src/Console/AppConsole.vala:256 msgid "No kernels specified" msgstr "" -#: src/Console/AppConsole.vala:217 +#: src/Console/AppConsole.vala:222 msgid "Multiple kernels selected for installation. Select only one." msgstr "" -#: src/Console/AppConsole.vala:240 +#: src/Console/AppConsole.vala:245 msgid "Could not find requested version" msgstr "" -#: src/Console/AppConsole.vala:243 +#: src/Console/AppConsole.vala:248 msgid "and use a version string listed in first column" msgstr "" -#: src/Console/AppConsole.vala:270 +#: src/Console/AppConsole.vala:275 msgid "Command not specified" msgstr "" -#: src/Console/AppConsole.vala:271 +#: src/Console/AppConsole.vala:276 msgid "to list all commands" msgstr "" -#: src/Console/AppConsole.vala:325 src/Gtk/SettingsDialog.vala:165 -msgid "Show" +#: src/Console/AppConsole.vala:312 +msgid "Notifications disabled in settings" +msgstr "" + +#: src/Console/AppConsole.vala:332 +msgid "previously notified" msgstr "" -#: src/Console/AppConsole.vala:330 src/Console/AppConsole.vala:342 +#: src/Console/AppConsole.vala:335 #, c-format msgid "Kernel %s Available" msgstr "" -#: src/Console/AppConsole.vala:332 src/Console/AppConsole.vala:344 -#: src/Gtk/MainWindow.vala:266 +#: src/Console/AppConsole.vala:339 src/Gtk/SettingsDialog.vala:164 +msgid "Show" +msgstr "" + +#: src/Console/AppConsole.vala:340 src/Gtk/MainWindow.vala:265 msgid "Install" msgstr "" @@ -289,7 +296,7 @@ msgstr "" msgid "Back" msgstr "" -#: src/Gtk/AboutWindow.vala:185 src/Gtk/TerminalWindow.vala:162 +#: src/Gtk/AboutWindow.vala:185 src/Gtk/TerminalWindow.vala:161 msgid "Close" msgstr "" @@ -317,156 +324,156 @@ msgstr "" msgid "Third Party Inclusions" msgstr "" -#: src/Gtk/AppGtk.vala:136 +#: src/Gtk/AppGtk.vala:135 msgid "options" msgstr "" -#: src/Gtk/AppGtk.vala:140 +#: src/Gtk/AppGtk.vala:139 msgid "Print debug information" msgstr "" -#: src/Gtk/AppGtk.vala:141 +#: src/Gtk/AppGtk.vala:140 msgid "Show all options" msgstr "" -#: src/Gtk/MainWindow.vala:112 +#: src/Gtk/MainWindow.vala:111 msgid "Kernel" msgstr "" -#: src/Gtk/MainWindow.vala:142 +#: src/Gtk/MainWindow.vala:141 msgid "Status" msgstr "" -#: src/Gtk/MainWindow.vala:276 +#: src/Gtk/MainWindow.vala:275 msgid "Uninstall" msgstr "" -#: src/Gtk/MainWindow.vala:286 +#: src/Gtk/MainWindow.vala:285 msgid "Changes" msgstr "" -#: src/Gtk/MainWindow.vala:308 +#: src/Gtk/MainWindow.vala:307 msgid "Uninstall Old" msgstr "" -#: src/Gtk/MainWindow.vala:309 +#: src/Gtk/MainWindow.vala:308 msgid "Uninstall kernels older than running kernel" msgstr "" -#: src/Gtk/MainWindow.vala:314 +#: src/Gtk/MainWindow.vala:313 msgid "Reload" msgstr "" -#: src/Gtk/MainWindow.vala:319 src/Gtk/SettingsDialog.vala:49 +#: src/Gtk/MainWindow.vala:318 src/Gtk/SettingsDialog.vala:48 msgid "Settings" msgstr "" -#: src/Gtk/MainWindow.vala:324 +#: src/Gtk/MainWindow.vala:323 msgid "About" msgstr "" -#: src/Gtk/MainWindow.vala:329 +#: src/Gtk/MainWindow.vala:328 msgid "Exit" msgstr "" -#: src/Gtk/MainWindow.vala:397 +#: src/Gtk/MainWindow.vala:396 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "" -#: src/Gtk/MainWindow.vala:398 +#: src/Gtk/MainWindow.vala:397 msgid "Forked" msgstr "" -#: src/Gtk/MainWindow.vala:398 +#: src/Gtk/MainWindow.vala:397 msgid "Original" msgstr "" -#: src/Gtk/MainWindow.vala:436 +#: src/Gtk/MainWindow.vala:435 msgid "Updating kernels" msgstr "" -#: src/Gtk/MainWindow.vala:507 +#: src/Gtk/MainWindow.vala:506 msgid "available" msgstr "" -#: src/Gtk/MainWindow.vala:550 src/Gtk/MainWindow.vala:590 -#: src/Gtk/MainWindow.vala:624 +#: src/Gtk/MainWindow.vala:549 src/Gtk/MainWindow.vala:589 +#: src/Gtk/MainWindow.vala:623 msgid "DONE" msgstr "" -#: src/Gtk/ProgressWindow.vala:127 src/Gtk/TerminalWindow.vala:152 +#: src/Gtk/ProgressWindow.vala:126 src/Gtk/TerminalWindow.vala:151 msgid "Cancel" msgstr "" -#: src/Gtk/SettingsDialog.vala:59 +#: src/Gtk/SettingsDialog.vala:58 msgid "Notification" msgstr "" -#: src/Gtk/SettingsDialog.vala:66 +#: src/Gtk/SettingsDialog.vala:65 msgid "Notify if a major release is available" msgstr "" -#: src/Gtk/SettingsDialog.vala:75 +#: src/Gtk/SettingsDialog.vala:74 msgid "Notify if a point release is available" msgstr "" -#: src/Gtk/SettingsDialog.vala:86 +#: src/Gtk/SettingsDialog.vala:85 msgid "Seconds interval enabled for debugging" msgstr "" -#: src/Gtk/SettingsDialog.vala:109 +#: src/Gtk/SettingsDialog.vala:108 msgid "Check every" msgstr "" -#: src/Gtk/SettingsDialog.vala:134 -msgid "Hour(s)" +#: src/Gtk/SettingsDialog.vala:133 +msgid "Hours" msgstr "" -#: src/Gtk/SettingsDialog.vala:136 -msgid "Day(s)" +#: src/Gtk/SettingsDialog.vala:135 +msgid "Days" msgstr "" -#: src/Gtk/SettingsDialog.vala:138 -msgid "Week(s)" +#: src/Gtk/SettingsDialog.vala:137 +msgid "Weeks" msgstr "" -#: src/Gtk/SettingsDialog.vala:141 -msgid "Second(s)" +#: src/Gtk/SettingsDialog.vala:140 +msgid "Seconds" msgstr "" -#: src/Gtk/SettingsDialog.vala:147 +#: src/Gtk/SettingsDialog.vala:146 msgid "Filters" msgstr "" -#: src/Gtk/SettingsDialog.vala:155 +#: src/Gtk/SettingsDialog.vala:154 msgid "Hide unstable and RC releases" msgstr "" -#: src/Gtk/SettingsDialog.vala:177 +#: src/Gtk/SettingsDialog.vala:176 msgid "previous major versions" msgstr "" -#: src/Gtk/SettingsDialog.vala:181 +#: src/Gtk/SettingsDialog.vala:180 msgid "Network" msgstr "" -#: src/Gtk/SettingsDialog.vala:192 +#: src/Gtk/SettingsDialog.vala:191 msgid "Internet connection timeout in" msgstr "" -#: src/Gtk/SettingsDialog.vala:204 +#: src/Gtk/SettingsDialog.vala:203 msgid "seconds" msgstr "" -#: src/Gtk/SettingsDialog.vala:211 +#: src/Gtk/SettingsDialog.vala:210 msgid "Max concurrent downloads" msgstr "" -#: src/Gtk/SettingsDialog.vala:225 +#: src/Gtk/SettingsDialog.vala:224 msgid "Proxy" msgstr "" -#: src/Gtk/l.gtk.vala:43 +#: src/Gtk/l.gtk.vala:42 msgid "Missing Icon" msgstr "" diff --git a/po/nl.po b/po/nl.po index dcf8f983..89fb79da 100644 --- a/po/nl.po +++ b/po/nl.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-19 16:41-0400\n" +"POT-Creation-Date: 2023-03-21 20:12-0400\n" "PO-Revision-Date: 2020-08-23 13:55+0200\n" "Last-Translator: Heimen Stoffels \n" "Language-Team: Dutch (Netherlands)\n" @@ -13,135 +13,135 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Poedit 3.2.2\n" -#: src/Common/LinuxKernel.vala:87 +#: src/Common/LinuxKernel.vala:86 msgid "Distribution" msgstr "Distributie" -#: src/Common/LinuxKernel.vala:102 +#: src/Common/LinuxKernel.vala:101 msgid "Architecture" msgstr "Architectuur" -#: src/Common/LinuxKernel.vala:277 +#: src/Common/LinuxKernel.vala:276 #, fuzzy msgid "Fetching individual kernel indexes" msgstr "Bezig met ophalen van kernelindexen…" -#: src/Common/LinuxKernel.vala:326 +#: src/Common/LinuxKernel.vala:325 msgid "Updating from" msgstr "Bezig met bijwerken van" -#: src/Common/LinuxKernel.vala:343 src/Common/LinuxKernel.vala:896 +#: src/Common/LinuxKernel.vala:342 src/Common/LinuxKernel.vala:895 msgid "OK" msgstr "Oké" -#: src/Common/LinuxKernel.vala:346 src/Common/LinuxKernel.vala:899 +#: src/Common/LinuxKernel.vala:345 src/Common/LinuxKernel.vala:898 msgid "FAILED" msgstr "" -#: src/Common/LinuxKernel.vala:760 +#: src/Common/LinuxKernel.vala:759 msgid "Packages Available" msgstr "Beschikbare pakketten" -#: src/Common/LinuxKernel.vala:765 +#: src/Common/LinuxKernel.vala:764 msgid "Packages Installed" msgstr "Geïnstalleerde pakketten" -#: src/Common/LinuxKernel.vala:778 src/lib/TeeJee.FileSystem.vala:121 +#: src/Common/LinuxKernel.vala:777 src/lib/TeeJee.FileSystem.vala:121 msgid "File not found" msgstr "Het bestand is niet gevonden" -#: src/Common/LinuxKernel.vala:842 +#: src/Common/LinuxKernel.vala:841 msgid "Available Kernels" msgstr "Beschikbare kernels" -#: src/Common/LinuxKernel.vala:849 src/Gtk/MainWindow.vala:155 +#: src/Common/LinuxKernel.vala:848 src/Gtk/MainWindow.vala:154 msgid "Installed" msgstr "Geïnstalleerd" -#: src/Common/LinuxKernel.vala:849 src/Gtk/MainWindow.vala:155 -#: src/Gtk/MainWindow.vala:498 src/Gtk/MainWindow.vala:511 +#: src/Common/LinuxKernel.vala:848 src/Gtk/MainWindow.vala:154 +#: src/Gtk/MainWindow.vala:497 src/Gtk/MainWindow.vala:510 msgid "Running" msgstr "In gebruik" -#: src/Common/LinuxKernel.vala:884 +#: src/Common/LinuxKernel.vala:883 msgid "Downloading" msgstr "Bezig met downloaden" -#: src/Common/LinuxKernel.vala:912 +#: src/Common/LinuxKernel.vala:911 #, fuzzy msgid "is already installed." msgstr "Deze kernel is al geïnstalleerd." -#: src/Common/LinuxKernel.vala:942 +#: src/Common/LinuxKernel.vala:941 #, fuzzy msgid "Uninstalling selected kernels" msgstr "Bezig met deïnstalleren van geselecteerde kernels…" -#: src/Common/LinuxKernel.vala:948 +#: src/Common/LinuxKernel.vala:947 msgid "requested" msgstr "verzocht" -#: src/Common/LinuxKernel.vala:951 +#: src/Common/LinuxKernel.vala:950 #, fuzzy msgid "not uninstalling the currently running kernel" msgstr "Opgegeven kernels deïnstalleren" -#: src/Common/LinuxKernel.vala:967 +#: src/Common/LinuxKernel.vala:966 msgid "found" msgstr "gevonden" -#: src/Common/LinuxKernel.vala:970 +#: src/Common/LinuxKernel.vala:969 #, fuzzy msgid "No packages to un-install!" msgstr "Er zijn geen te deïnstalleren pakketten!" -#: src/Common/LinuxKernel.vala:1018 +#: src/Common/LinuxKernel.vala:1017 #, fuzzy msgid "Could not find running kernel in list" msgstr "De in gebruik zijnde kernel staat niet op de lijst" -#: src/Common/LinuxKernel.vala:1023 +#: src/Common/LinuxKernel.vala:1022 #, fuzzy msgid "Could not find any kernels to uninstall" msgstr "Er zijn geen te verwijderen kernels" -#: src/Common/LinuxKernel.vala:1031 +#: src/Common/LinuxKernel.vala:1030 #, fuzzy msgid "The following kernels will be uninstalled" msgstr "De volgende kernels worden verwijderd:" -#: src/Common/LinuxKernel.vala:1035 +#: src/Common/LinuxKernel.vala:1034 msgid "Continue ?" msgstr "Wilt u doorgaan?" -#: src/Common/LinuxKernel.vala:1057 src/Console/AppConsole.vala:285 +#: src/Common/LinuxKernel.vala:1056 src/Console/AppConsole.vala:290 msgid "Latest update" msgstr "Recentste update" -#: src/Common/LinuxKernel.vala:1068 src/Console/AppConsole.vala:292 +#: src/Common/LinuxKernel.vala:1067 src/Console/AppConsole.vala:297 msgid "Latest point update" msgstr "Recentste puntupdate" -#: src/Common/LinuxKernel.vala:1076 src/Console/AppConsole.vala:297 -#: src/Console/AppConsole.vala:352 +#: src/Common/LinuxKernel.vala:1075 src/Console/AppConsole.vala:302 +#: src/Console/AppConsole.vala:318 msgid "No updates found" msgstr "Geen updates gevonden" -#: src/Common/LinuxKernel.vala:1085 +#: src/Common/LinuxKernel.vala:1084 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Wilt u versie %s installeren? (j/n): " -#: src/Common/Main.vala:281 +#: src/Common/Main.vala:300 msgid "Called from" msgstr "Aangeroepen door" -#: src/Common/Main.vala:282 +#: src/Common/Main.vala:301 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" -#: src/Common/Main.vala:314 +#: src/Common/Main.vala:333 msgid "Notifications are disabled" msgstr "Meldingen zijn uitgeschakeld" @@ -150,144 +150,152 @@ msgstr "Meldingen zijn uitgeschakeld" msgid "File not found: %s" msgstr "Bestand is niet gevonden: %s" -#: src/Console/AppConsole.vala:48 src/Gtk/AppGtk.vala:136 +#: src/Console/AppConsole.vala:47 src/Gtk/AppGtk.vala:135 msgid "Syntax" msgstr "Syntaxis" -#: src/Console/AppConsole.vala:50 +#: src/Console/AppConsole.vala:49 msgid "Commands" msgstr "Opdrachten" -#: src/Console/AppConsole.vala:52 +#: src/Console/AppConsole.vala:51 msgid "Check for kernel updates" msgstr "Controleren op kernelupdates" -#: src/Console/AppConsole.vala:53 +#: src/Console/AppConsole.vala:52 msgid "Check for kernel updates and notify current user" msgstr "Controleren op kernelupdates en gebruiker op de hoogte brengen" -#: src/Console/AppConsole.vala:54 +#: src/Console/AppConsole.vala:53 msgid "List all available mainline kernels" msgstr "Alle beschikbare mainline-kernels tonen" -#: src/Console/AppConsole.vala:55 +#: src/Console/AppConsole.vala:54 msgid "List installed kernels" msgstr "Alle geïnstalleerde kernels tonen" -#: src/Console/AppConsole.vala:56 +#: src/Console/AppConsole.vala:55 msgid "Install latest mainline kernel" msgstr "Recentste mainline-kernel installeren" -#: src/Console/AppConsole.vala:57 +#: src/Console/AppConsole.vala:56 msgid "Install latest point update for current series" msgstr "Recentste puntupdate uit huidige editie installeren" -#: src/Console/AppConsole.vala:58 +#: src/Console/AppConsole.vala:57 msgid "Install specified mainline kernel" msgstr "Opgegeven mainline-kernel installeren" -#: src/Console/AppConsole.vala:59 +#: src/Console/AppConsole.vala:58 #, fuzzy msgid "Uninstall specified kernel" msgstr "Gekozen kernel deïnstalleren" -#: src/Console/AppConsole.vala:60 +#: src/Console/AppConsole.vala:59 #, fuzzy msgid "Uninstall kernels older than the latest installed" msgstr "Geïnstalleerde kernels verwijderen die ouder zijn dan de huidige" -#: src/Console/AppConsole.vala:61 +#: src/Console/AppConsole.vala:60 msgid "Download specified kernels" msgstr "Opgegeven kernels downloaden" -#: src/Console/AppConsole.vala:62 +#: src/Console/AppConsole.vala:61 msgid "Delete cached info about available kernels" msgstr "Kernelcache wissen" -#: src/Console/AppConsole.vala:64 src/Gtk/AppGtk.vala:138 +#: src/Console/AppConsole.vala:63 src/Gtk/AppGtk.vala:137 msgid "Options" msgstr "Opties" -#: src/Console/AppConsole.vala:66 +#: src/Console/AppConsole.vala:65 #, fuzzy msgid "Include unstable and RC releases" msgstr "Instabiele en rc-uitgaven tonen" -#: src/Console/AppConsole.vala:67 +#: src/Console/AppConsole.vala:66 #, fuzzy msgid "Exclude unstable and RC releases" msgstr "Instabiele en rc-uitgaven verbergen" -#: src/Console/AppConsole.vala:68 +#: src/Console/AppConsole.vala:67 msgid "Enable verbose debugging output" msgstr "Foutopsporingsinformatie vastleggen" -#: src/Console/AppConsole.vala:69 +#: src/Console/AppConsole.vala:68 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "Ja op alles (in de niet-interactieve modus)" -#: src/Console/AppConsole.vala:72 +#: src/Console/AppConsole.vala:71 msgid "A version string taken from the output of --list" msgstr "Een versietekenreeks uit de uitvoer van --list" -#: src/Console/AppConsole.vala:73 +#: src/Console/AppConsole.vala:72 msgid "One or more, comma-seperated" msgstr "" -#: src/Console/AppConsole.vala:74 +#: src/Console/AppConsole.vala:73 #, fuzzy msgid "The currently running kernel will always be ignored" msgstr "De volgende kernels worden verwijderd:" -#: src/Console/AppConsole.vala:152 src/Gtk/AppGtk.vala:122 +#: src/Console/AppConsole.vala:161 src/Gtk/AppGtk.vala:121 msgid "Unknown option" msgstr "Onbekende optie" -#: src/Console/AppConsole.vala:153 src/Console/AppConsole.vala:243 -#: src/Console/AppConsole.vala:271 +#: src/Console/AppConsole.vala:162 src/Console/AppConsole.vala:248 +#: src/Console/AppConsole.vala:276 msgid "Run" msgstr "Uitvoeren" -#: src/Console/AppConsole.vala:153 +#: src/Console/AppConsole.vala:162 msgid "to list all options" msgstr "om alle opties te tonen" -#: src/Console/AppConsole.vala:211 src/Console/AppConsole.vala:251 +#: src/Console/AppConsole.vala:216 src/Console/AppConsole.vala:256 msgid "No kernels specified" msgstr "Geen kernels opgegeven" -#: src/Console/AppConsole.vala:217 +#: src/Console/AppConsole.vala:222 msgid "Multiple kernels selected for installation. Select only one." msgstr "" "Er zijn meerdere te installeren kernels geselecteerd. Selecteer er één." -#: src/Console/AppConsole.vala:240 +#: src/Console/AppConsole.vala:245 msgid "Could not find requested version" msgstr "De vereiste versie kan niet worden gevonden" -#: src/Console/AppConsole.vala:243 +#: src/Console/AppConsole.vala:248 msgid "and use a version string listed in first column" msgstr "en gebruik een versietekenreeks in de eerste kolom" -#: src/Console/AppConsole.vala:270 +#: src/Console/AppConsole.vala:275 msgid "Command not specified" msgstr "Geen opdracht opgegeven" -#: src/Console/AppConsole.vala:271 +#: src/Console/AppConsole.vala:276 msgid "to list all commands" msgstr "om alle opdrachten te tonen" -#: src/Console/AppConsole.vala:325 src/Gtk/SettingsDialog.vala:165 -msgid "Show" -msgstr "Tonen" +#: src/Console/AppConsole.vala:312 +#, fuzzy +msgid "Notifications disabled in settings" +msgstr "Meldingen zijn uitgeschakeld" + +#: src/Console/AppConsole.vala:332 +msgid "previously notified" +msgstr "" -#: src/Console/AppConsole.vala:330 src/Console/AppConsole.vala:342 +#: src/Console/AppConsole.vala:335 #, c-format msgid "Kernel %s Available" msgstr "Kernel %s is beschikbaar" -#: src/Console/AppConsole.vala:332 src/Console/AppConsole.vala:344 -#: src/Gtk/MainWindow.vala:266 +#: src/Console/AppConsole.vala:339 src/Gtk/SettingsDialog.vala:164 +msgid "Show" +msgstr "Tonen" + +#: src/Console/AppConsole.vala:340 src/Gtk/MainWindow.vala:265 msgid "Install" msgstr "Installeren" @@ -299,7 +307,7 @@ msgstr "Met dank aan" msgid "Back" msgstr "Terug" -#: src/Gtk/AboutWindow.vala:185 src/Gtk/TerminalWindow.vala:162 +#: src/Gtk/AboutWindow.vala:185 src/Gtk/TerminalWindow.vala:161 msgid "Close" msgstr "Sluiten" @@ -327,161 +335,164 @@ msgstr "Documenteerders" msgid "Third Party Inclusions" msgstr "Externe code" -#: src/Gtk/AppGtk.vala:136 +#: src/Gtk/AppGtk.vala:135 #, fuzzy msgid "options" msgstr "Opties" -#: src/Gtk/AppGtk.vala:140 +#: src/Gtk/AppGtk.vala:139 msgid "Print debug information" msgstr "Foutopsporingsinformatie tonen" -#: src/Gtk/AppGtk.vala:141 +#: src/Gtk/AppGtk.vala:140 msgid "Show all options" msgstr "Alle opties tonen" -#: src/Gtk/MainWindow.vala:112 +#: src/Gtk/MainWindow.vala:111 msgid "Kernel" msgstr "Kernel" -#: src/Gtk/MainWindow.vala:142 +#: src/Gtk/MainWindow.vala:141 msgid "Status" msgstr "Status" -#: src/Gtk/MainWindow.vala:276 +#: src/Gtk/MainWindow.vala:275 #, fuzzy msgid "Uninstall" msgstr "Deïnstalleren" -#: src/Gtk/MainWindow.vala:286 +#: src/Gtk/MainWindow.vala:285 msgid "Changes" msgstr "Wijzigingen" -#: src/Gtk/MainWindow.vala:308 +#: src/Gtk/MainWindow.vala:307 #, fuzzy msgid "Uninstall Old" msgstr "Verouderde deïnstalleren" -#: src/Gtk/MainWindow.vala:309 +#: src/Gtk/MainWindow.vala:308 #, fuzzy msgid "Uninstall kernels older than running kernel" msgstr "Kernels verwijderen die ouder zijn dan de huidige" -#: src/Gtk/MainWindow.vala:314 +#: src/Gtk/MainWindow.vala:313 msgid "Reload" msgstr "Herladen" -#: src/Gtk/MainWindow.vala:319 src/Gtk/SettingsDialog.vala:49 +#: src/Gtk/MainWindow.vala:318 src/Gtk/SettingsDialog.vala:48 msgid "Settings" msgstr "Instellingen" -#: src/Gtk/MainWindow.vala:324 +#: src/Gtk/MainWindow.vala:323 msgid "About" msgstr "Over" -#: src/Gtk/MainWindow.vala:329 +#: src/Gtk/MainWindow.vala:328 msgid "Exit" msgstr "Afsluiten" -#: src/Gtk/MainWindow.vala:397 +#: src/Gtk/MainWindow.vala:396 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Een kernelupgradehulpmiddel voor op Ubuntu gebaseerde distributies" -#: src/Gtk/MainWindow.vala:398 +#: src/Gtk/MainWindow.vala:397 msgid "Forked" msgstr "Geforkt" -#: src/Gtk/MainWindow.vala:398 +#: src/Gtk/MainWindow.vala:397 msgid "Original" msgstr "Origineel" -#: src/Gtk/MainWindow.vala:436 +#: src/Gtk/MainWindow.vala:435 msgid "Updating kernels" msgstr "Bezig met bijwerken van kernels…" -#: src/Gtk/MainWindow.vala:507 +#: src/Gtk/MainWindow.vala:506 msgid "available" msgstr "beschikbaar" -#: src/Gtk/MainWindow.vala:550 src/Gtk/MainWindow.vala:590 -#: src/Gtk/MainWindow.vala:624 +#: src/Gtk/MainWindow.vala:549 src/Gtk/MainWindow.vala:589 +#: src/Gtk/MainWindow.vala:623 msgid "DONE" msgstr "AFGEROND" -#: src/Gtk/ProgressWindow.vala:127 src/Gtk/TerminalWindow.vala:152 +#: src/Gtk/ProgressWindow.vala:126 src/Gtk/TerminalWindow.vala:151 msgid "Cancel" msgstr "Annuleren" -#: src/Gtk/SettingsDialog.vala:59 +#: src/Gtk/SettingsDialog.vala:58 msgid "Notification" msgstr "Melding" -#: src/Gtk/SettingsDialog.vala:66 +#: src/Gtk/SettingsDialog.vala:65 msgid "Notify if a major release is available" msgstr "Melding tonen als er een grote update beschikbaar is" -#: src/Gtk/SettingsDialog.vala:75 +#: src/Gtk/SettingsDialog.vala:74 msgid "Notify if a point release is available" msgstr "Melding tonen als er een puntupdate beschikbaar is" -#: src/Gtk/SettingsDialog.vala:86 +#: src/Gtk/SettingsDialog.vala:85 #, fuzzy msgid "Seconds interval enabled for debugging" msgstr "(staat tussenpozen in seconden toe voor --debug)" -#: src/Gtk/SettingsDialog.vala:109 +#: src/Gtk/SettingsDialog.vala:108 msgid "Check every" msgstr "Controleren, elke" -#: src/Gtk/SettingsDialog.vala:134 -msgid "Hour(s)" +#: src/Gtk/SettingsDialog.vala:133 +#, fuzzy +msgid "Hours" msgstr "uur" -#: src/Gtk/SettingsDialog.vala:136 -msgid "Day(s)" -msgstr "dag(en)" +#: src/Gtk/SettingsDialog.vala:135 +msgid "Days" +msgstr "" -#: src/Gtk/SettingsDialog.vala:138 -msgid "Week(s)" +#: src/Gtk/SettingsDialog.vala:137 +#, fuzzy +msgid "Weeks" msgstr "week/weken" -#: src/Gtk/SettingsDialog.vala:141 -msgid "Second(s)" +#: src/Gtk/SettingsDialog.vala:140 +#, fuzzy +msgid "Seconds" msgstr "seconde(n)" -#: src/Gtk/SettingsDialog.vala:147 +#: src/Gtk/SettingsDialog.vala:146 msgid "Filters" msgstr "Filters" -#: src/Gtk/SettingsDialog.vala:155 +#: src/Gtk/SettingsDialog.vala:154 msgid "Hide unstable and RC releases" msgstr "Instabiele en rc-uitgaven verbergen" -#: src/Gtk/SettingsDialog.vala:177 +#: src/Gtk/SettingsDialog.vala:176 msgid "previous major versions" msgstr "vorige grote updates" -#: src/Gtk/SettingsDialog.vala:181 +#: src/Gtk/SettingsDialog.vala:180 msgid "Network" msgstr "Netwerk" -#: src/Gtk/SettingsDialog.vala:192 +#: src/Gtk/SettingsDialog.vala:191 msgid "Internet connection timeout in" msgstr "Verbindingstime-out na" -#: src/Gtk/SettingsDialog.vala:204 +#: src/Gtk/SettingsDialog.vala:203 msgid "seconds" msgstr "seconden" -#: src/Gtk/SettingsDialog.vala:211 +#: src/Gtk/SettingsDialog.vala:210 msgid "Max concurrent downloads" msgstr "Max. aantal gelijktijdige downloads" -#: src/Gtk/SettingsDialog.vala:225 +#: src/Gtk/SettingsDialog.vala:224 msgid "Proxy" msgstr "Proxy" -#: src/Gtk/l.gtk.vala:43 +#: src/Gtk/l.gtk.vala:42 msgid "Missing Icon" msgstr "Ontbrekend pictogram" diff --git a/po/pl.po b/po/pl.po index cec401ef..e50e45f8 100644 --- a/po/pl.po +++ b/po/pl.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-19 16:41-0400\n" +"POT-Creation-Date: 2023-03-21 20:12-0400\n" "PO-Revision-Date: 2023-03-11 12:47+0100\n" "Last-Translator: Matthaiks\n" "Language-Team: Polish\n" @@ -12,127 +12,127 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Poedit 3.2\n" -#: src/Common/LinuxKernel.vala:87 +#: src/Common/LinuxKernel.vala:86 msgid "Distribution" msgstr "Dystrybucja" -#: src/Common/LinuxKernel.vala:102 +#: src/Common/LinuxKernel.vala:101 msgid "Architecture" msgstr "Architektura" -#: src/Common/LinuxKernel.vala:277 +#: src/Common/LinuxKernel.vala:276 msgid "Fetching individual kernel indexes" msgstr "Pobieranie indywidualnych indeksów jąder" -#: src/Common/LinuxKernel.vala:326 +#: src/Common/LinuxKernel.vala:325 msgid "Updating from" msgstr "Aktualizowanie z" -#: src/Common/LinuxKernel.vala:343 src/Common/LinuxKernel.vala:896 +#: src/Common/LinuxKernel.vala:342 src/Common/LinuxKernel.vala:895 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:346 src/Common/LinuxKernel.vala:899 +#: src/Common/LinuxKernel.vala:345 src/Common/LinuxKernel.vala:898 msgid "FAILED" msgstr "NIEPOWODZENIE" -#: src/Common/LinuxKernel.vala:760 +#: src/Common/LinuxKernel.vala:759 msgid "Packages Available" msgstr "Dostępne pakiety" -#: src/Common/LinuxKernel.vala:765 +#: src/Common/LinuxKernel.vala:764 msgid "Packages Installed" msgstr "Pakiety zainstalowane" -#: src/Common/LinuxKernel.vala:778 src/lib/TeeJee.FileSystem.vala:121 +#: src/Common/LinuxKernel.vala:777 src/lib/TeeJee.FileSystem.vala:121 msgid "File not found" msgstr "Nie odnaleziono pliku" -#: src/Common/LinuxKernel.vala:842 +#: src/Common/LinuxKernel.vala:841 msgid "Available Kernels" msgstr "Dostępne jądra" -#: src/Common/LinuxKernel.vala:849 src/Gtk/MainWindow.vala:155 +#: src/Common/LinuxKernel.vala:848 src/Gtk/MainWindow.vala:154 msgid "Installed" msgstr "Zainstalowane" -#: src/Common/LinuxKernel.vala:849 src/Gtk/MainWindow.vala:155 -#: src/Gtk/MainWindow.vala:498 src/Gtk/MainWindow.vala:511 +#: src/Common/LinuxKernel.vala:848 src/Gtk/MainWindow.vala:154 +#: src/Gtk/MainWindow.vala:497 src/Gtk/MainWindow.vala:510 msgid "Running" msgstr "Uruchomione" -#: src/Common/LinuxKernel.vala:884 +#: src/Common/LinuxKernel.vala:883 msgid "Downloading" msgstr "Pobieranie" -#: src/Common/LinuxKernel.vala:912 +#: src/Common/LinuxKernel.vala:911 msgid "is already installed." msgstr "jest już zainstalowane." -#: src/Common/LinuxKernel.vala:942 +#: src/Common/LinuxKernel.vala:941 msgid "Uninstalling selected kernels" msgstr "Odinstalowanie wybranych jąder" -#: src/Common/LinuxKernel.vala:948 +#: src/Common/LinuxKernel.vala:947 msgid "requested" msgstr "zażądane" -#: src/Common/LinuxKernel.vala:951 +#: src/Common/LinuxKernel.vala:950 msgid "not uninstalling the currently running kernel" msgstr "bez odinstalowywania aktualnie uruchomionego jądra" -#: src/Common/LinuxKernel.vala:967 +#: src/Common/LinuxKernel.vala:966 msgid "found" msgstr "znalezione" -#: src/Common/LinuxKernel.vala:970 +#: src/Common/LinuxKernel.vala:969 msgid "No packages to un-install!" msgstr "Brak pakietów do odinstalowania!" -#: src/Common/LinuxKernel.vala:1018 +#: src/Common/LinuxKernel.vala:1017 msgid "Could not find running kernel in list" msgstr "Nie można znaleźć uruchomionego jądra na liście" -#: src/Common/LinuxKernel.vala:1023 +#: src/Common/LinuxKernel.vala:1022 msgid "Could not find any kernels to uninstall" msgstr "Nie można znaleźć żadnych jąder do odinstalowania" -#: src/Common/LinuxKernel.vala:1031 +#: src/Common/LinuxKernel.vala:1030 msgid "The following kernels will be uninstalled" msgstr "Następujące jądra zostaną odinstalowane" -#: src/Common/LinuxKernel.vala:1035 +#: src/Common/LinuxKernel.vala:1034 msgid "Continue ?" msgstr "Kontynuować?" -#: src/Common/LinuxKernel.vala:1057 src/Console/AppConsole.vala:285 +#: src/Common/LinuxKernel.vala:1056 src/Console/AppConsole.vala:290 msgid "Latest update" msgstr "Najnowsza aktualizacja" -#: src/Common/LinuxKernel.vala:1068 src/Console/AppConsole.vala:292 +#: src/Common/LinuxKernel.vala:1067 src/Console/AppConsole.vala:297 msgid "Latest point update" msgstr "Najnowsza aktualizacja punktowa" -#: src/Common/LinuxKernel.vala:1076 src/Console/AppConsole.vala:297 -#: src/Console/AppConsole.vala:352 +#: src/Common/LinuxKernel.vala:1075 src/Console/AppConsole.vala:302 +#: src/Console/AppConsole.vala:318 msgid "No updates found" msgstr "Nie znaleziono aktualizacji" -#: src/Common/LinuxKernel.vala:1085 +#: src/Common/LinuxKernel.vala:1084 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Zainstalować wersję jądra %s? (t/n): " -#: src/Common/Main.vala:281 +#: src/Common/Main.vala:300 msgid "Called from" msgstr "Wywołano z" -#: src/Common/Main.vala:282 +#: src/Common/Main.vala:301 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" -#: src/Common/Main.vala:314 +#: src/Common/Main.vala:333 msgid "Notifications are disabled" msgstr "Powiadomienia są wyłączone" @@ -141,138 +141,146 @@ msgstr "Powiadomienia są wyłączone" msgid "File not found: %s" msgstr "Nie znaleziono pliku: %s" -#: src/Console/AppConsole.vala:48 src/Gtk/AppGtk.vala:136 +#: src/Console/AppConsole.vala:47 src/Gtk/AppGtk.vala:135 msgid "Syntax" msgstr "Składnia" -#: src/Console/AppConsole.vala:50 +#: src/Console/AppConsole.vala:49 msgid "Commands" msgstr "Polecenia" -#: src/Console/AppConsole.vala:52 +#: src/Console/AppConsole.vala:51 msgid "Check for kernel updates" msgstr "Sprawdź nowe wersje jądra" -#: src/Console/AppConsole.vala:53 +#: src/Console/AppConsole.vala:52 msgid "Check for kernel updates and notify current user" msgstr "Sprawdź nowe wersje jądra i powiadom bieżącego użytkownika" -#: src/Console/AppConsole.vala:54 +#: src/Console/AppConsole.vala:53 msgid "List all available mainline kernels" msgstr "Pokaż wszystkie dostępne jądra" -#: src/Console/AppConsole.vala:55 +#: src/Console/AppConsole.vala:54 msgid "List installed kernels" msgstr "Wyświetl listę zainstalowanych jąder" -#: src/Console/AppConsole.vala:56 +#: src/Console/AppConsole.vala:55 msgid "Install latest mainline kernel" msgstr "Zainstaluj najnowsze jądro" -#: src/Console/AppConsole.vala:57 +#: src/Console/AppConsole.vala:56 msgid "Install latest point update for current series" msgstr "Zainstaluj najnowszą aktualizację punktową dla bieżącej serii" -#: src/Console/AppConsole.vala:58 +#: src/Console/AppConsole.vala:57 msgid "Install specified mainline kernel" msgstr "Zainstaluj wybrane jądro" -#: src/Console/AppConsole.vala:59 +#: src/Console/AppConsole.vala:58 msgid "Uninstall specified kernel" msgstr "Odinstaluj wybrane jądro" -#: src/Console/AppConsole.vala:60 +#: src/Console/AppConsole.vala:59 msgid "Uninstall kernels older than the latest installed" msgstr "Odinstaluj jądra starsze niż ostatnio zainstalowane" -#: src/Console/AppConsole.vala:61 +#: src/Console/AppConsole.vala:60 msgid "Download specified kernels" msgstr "Pobierz wybrane jądra" -#: src/Console/AppConsole.vala:62 +#: src/Console/AppConsole.vala:61 msgid "Delete cached info about available kernels" msgstr "Usuń informacje z pamięci podręcznej o dostępnych jądrach" -#: src/Console/AppConsole.vala:64 src/Gtk/AppGtk.vala:138 +#: src/Console/AppConsole.vala:63 src/Gtk/AppGtk.vala:137 msgid "Options" msgstr "Opcje" -#: src/Console/AppConsole.vala:66 +#: src/Console/AppConsole.vala:65 msgid "Include unstable and RC releases" msgstr "Uwzględnij wydania niestabilne i RC" -#: src/Console/AppConsole.vala:67 +#: src/Console/AppConsole.vala:66 msgid "Exclude unstable and RC releases" msgstr "Wyklucz wersje niestabilne i RC" -#: src/Console/AppConsole.vala:68 +#: src/Console/AppConsole.vala:67 msgid "Enable verbose debugging output" msgstr "Włącz szczegółowe dane wyjściowe debugowania" -#: src/Console/AppConsole.vala:69 +#: src/Console/AppConsole.vala:68 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "Przyjmij Tak dla wszystkich monitów (tryb nieinteraktywny)" -#: src/Console/AppConsole.vala:72 +#: src/Console/AppConsole.vala:71 msgid "A version string taken from the output of --list" msgstr "Ciąg wersji pobrany z danych wyjściowych --list" -#: src/Console/AppConsole.vala:73 +#: src/Console/AppConsole.vala:72 msgid "One or more, comma-seperated" msgstr "Jedno lub więcej, oddzielone przecinkami" -#: src/Console/AppConsole.vala:74 +#: src/Console/AppConsole.vala:73 msgid "The currently running kernel will always be ignored" msgstr "Aktualnie uruchomione jądro będzie zawsze ignorowane" -#: src/Console/AppConsole.vala:152 src/Gtk/AppGtk.vala:122 +#: src/Console/AppConsole.vala:161 src/Gtk/AppGtk.vala:121 msgid "Unknown option" msgstr "Nieznana opcja" -#: src/Console/AppConsole.vala:153 src/Console/AppConsole.vala:243 -#: src/Console/AppConsole.vala:271 +#: src/Console/AppConsole.vala:162 src/Console/AppConsole.vala:248 +#: src/Console/AppConsole.vala:276 msgid "Run" msgstr "Uruchom" -#: src/Console/AppConsole.vala:153 +#: src/Console/AppConsole.vala:162 msgid "to list all options" msgstr "do wyświetlenia wszystkich opcji" -#: src/Console/AppConsole.vala:211 src/Console/AppConsole.vala:251 +#: src/Console/AppConsole.vala:216 src/Console/AppConsole.vala:256 msgid "No kernels specified" msgstr "Nie wybrano jąder" -#: src/Console/AppConsole.vala:217 +#: src/Console/AppConsole.vala:222 msgid "Multiple kernels selected for installation. Select only one." msgstr "Wybrano kilka jąder do instalacji. Wybierz tylko jedno." -#: src/Console/AppConsole.vala:240 +#: src/Console/AppConsole.vala:245 msgid "Could not find requested version" msgstr "Nie można odnaleźć żądanej wersji" -#: src/Console/AppConsole.vala:243 +#: src/Console/AppConsole.vala:248 msgid "and use a version string listed in first column" msgstr "i użyć numeru wersji wymienionego w pierwszej kolumnie" -#: src/Console/AppConsole.vala:270 +#: src/Console/AppConsole.vala:275 msgid "Command not specified" msgstr "Nie określono polecenia" -#: src/Console/AppConsole.vala:271 +#: src/Console/AppConsole.vala:276 msgid "to list all commands" msgstr "do wyświetlenia wszystkich poleceń" -#: src/Console/AppConsole.vala:325 src/Gtk/SettingsDialog.vala:165 -msgid "Show" -msgstr "Pokaż" +#: src/Console/AppConsole.vala:312 +#, fuzzy +msgid "Notifications disabled in settings" +msgstr "Powiadomienia są wyłączone" + +#: src/Console/AppConsole.vala:332 +msgid "previously notified" +msgstr "" -#: src/Console/AppConsole.vala:330 src/Console/AppConsole.vala:342 +#: src/Console/AppConsole.vala:335 #, c-format msgid "Kernel %s Available" msgstr "Dostępne %s jądra" -#: src/Console/AppConsole.vala:332 src/Console/AppConsole.vala:344 -#: src/Gtk/MainWindow.vala:266 +#: src/Console/AppConsole.vala:339 src/Gtk/SettingsDialog.vala:164 +msgid "Show" +msgstr "Pokaż" + +#: src/Console/AppConsole.vala:340 src/Gtk/MainWindow.vala:265 msgid "Install" msgstr "Zainstaluj" @@ -284,7 +292,7 @@ msgstr "Zasługi" msgid "Back" msgstr "Wstecz" -#: src/Gtk/AboutWindow.vala:185 src/Gtk/TerminalWindow.vala:162 +#: src/Gtk/AboutWindow.vala:185 src/Gtk/TerminalWindow.vala:161 msgid "Close" msgstr "Zamknij" @@ -312,156 +320,159 @@ msgstr "Dokumentujący" msgid "Third Party Inclusions" msgstr "Włączenia stron trzecich" -#: src/Gtk/AppGtk.vala:136 +#: src/Gtk/AppGtk.vala:135 msgid "options" msgstr "opcje" -#: src/Gtk/AppGtk.vala:140 +#: src/Gtk/AppGtk.vala:139 msgid "Print debug information" msgstr "Wypisz informacje debugujące" -#: src/Gtk/AppGtk.vala:141 +#: src/Gtk/AppGtk.vala:140 msgid "Show all options" msgstr "Pokaż wszystkie opcje" -#: src/Gtk/MainWindow.vala:112 +#: src/Gtk/MainWindow.vala:111 msgid "Kernel" msgstr "Jądro" -#: src/Gtk/MainWindow.vala:142 +#: src/Gtk/MainWindow.vala:141 msgid "Status" msgstr "Status" -#: src/Gtk/MainWindow.vala:276 +#: src/Gtk/MainWindow.vala:275 msgid "Uninstall" msgstr "Odinstaluj" -#: src/Gtk/MainWindow.vala:286 +#: src/Gtk/MainWindow.vala:285 msgid "Changes" msgstr "Zmiany" -#: src/Gtk/MainWindow.vala:308 +#: src/Gtk/MainWindow.vala:307 msgid "Uninstall Old" msgstr "Odinstaluj stare" -#: src/Gtk/MainWindow.vala:309 +#: src/Gtk/MainWindow.vala:308 msgid "Uninstall kernels older than running kernel" msgstr "Odinstaluj jądra starsze niż uruchomione jądro" -#: src/Gtk/MainWindow.vala:314 +#: src/Gtk/MainWindow.vala:313 msgid "Reload" msgstr "Wczytaj ponownie" -#: src/Gtk/MainWindow.vala:319 src/Gtk/SettingsDialog.vala:49 +#: src/Gtk/MainWindow.vala:318 src/Gtk/SettingsDialog.vala:48 msgid "Settings" msgstr "Ustawienia" -#: src/Gtk/MainWindow.vala:324 +#: src/Gtk/MainWindow.vala:323 msgid "About" msgstr "O programie" -#: src/Gtk/MainWindow.vala:329 +#: src/Gtk/MainWindow.vala:328 msgid "Exit" msgstr "Wyjdź" -#: src/Gtk/MainWindow.vala:397 +#: src/Gtk/MainWindow.vala:396 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Narzędzie uaktualniania jądra dla dystrybucji z rodziny Ubuntu" -#: src/Gtk/MainWindow.vala:398 +#: src/Gtk/MainWindow.vala:397 msgid "Forked" msgstr "Sforkowane" -#: src/Gtk/MainWindow.vala:398 +#: src/Gtk/MainWindow.vala:397 msgid "Original" msgstr "Oryginalne" -#: src/Gtk/MainWindow.vala:436 +#: src/Gtk/MainWindow.vala:435 msgid "Updating kernels" msgstr "Aktualizowanie jąder" -#: src/Gtk/MainWindow.vala:507 +#: src/Gtk/MainWindow.vala:506 msgid "available" msgstr "dostępne" -#: src/Gtk/MainWindow.vala:550 src/Gtk/MainWindow.vala:590 -#: src/Gtk/MainWindow.vala:624 +#: src/Gtk/MainWindow.vala:549 src/Gtk/MainWindow.vala:589 +#: src/Gtk/MainWindow.vala:623 msgid "DONE" msgstr "GOTOWE" -#: src/Gtk/ProgressWindow.vala:127 src/Gtk/TerminalWindow.vala:152 +#: src/Gtk/ProgressWindow.vala:126 src/Gtk/TerminalWindow.vala:151 msgid "Cancel" msgstr "Anuluj" -#: src/Gtk/SettingsDialog.vala:59 +#: src/Gtk/SettingsDialog.vala:58 msgid "Notification" msgstr "Powiadomienia" -#: src/Gtk/SettingsDialog.vala:66 +#: src/Gtk/SettingsDialog.vala:65 msgid "Notify if a major release is available" msgstr "Powiadom, jeśli pojawi się główna wersja" -#: src/Gtk/SettingsDialog.vala:75 +#: src/Gtk/SettingsDialog.vala:74 msgid "Notify if a point release is available" msgstr "Powiadom, jeśli pojawi się wersja punktowa" -#: src/Gtk/SettingsDialog.vala:86 +#: src/Gtk/SettingsDialog.vala:85 msgid "Seconds interval enabled for debugging" msgstr "Interwał w sekundach włączony do debugowania" -#: src/Gtk/SettingsDialog.vala:109 +#: src/Gtk/SettingsDialog.vala:108 msgid "Check every" msgstr "Sprawdzaj co" -#: src/Gtk/SettingsDialog.vala:134 -msgid "Hour(s)" +#: src/Gtk/SettingsDialog.vala:133 +#, fuzzy +msgid "Hours" msgstr "godziny" -#: src/Gtk/SettingsDialog.vala:136 -msgid "Day(s)" -msgstr "dni" +#: src/Gtk/SettingsDialog.vala:135 +msgid "Days" +msgstr "" -#: src/Gtk/SettingsDialog.vala:138 -msgid "Week(s)" +#: src/Gtk/SettingsDialog.vala:137 +#, fuzzy +msgid "Weeks" msgstr "tygodnie" -#: src/Gtk/SettingsDialog.vala:141 -msgid "Second(s)" +#: src/Gtk/SettingsDialog.vala:140 +#, fuzzy +msgid "Seconds" msgstr "sekundy" -#: src/Gtk/SettingsDialog.vala:147 +#: src/Gtk/SettingsDialog.vala:146 msgid "Filters" msgstr "Filtry" -#: src/Gtk/SettingsDialog.vala:155 +#: src/Gtk/SettingsDialog.vala:154 msgid "Hide unstable and RC releases" msgstr "Ukryj wydania niestabilne i RC" -#: src/Gtk/SettingsDialog.vala:177 +#: src/Gtk/SettingsDialog.vala:176 msgid "previous major versions" msgstr "poprzednie główne wersje" -#: src/Gtk/SettingsDialog.vala:181 +#: src/Gtk/SettingsDialog.vala:180 msgid "Network" msgstr "Sieć" -#: src/Gtk/SettingsDialog.vala:192 +#: src/Gtk/SettingsDialog.vala:191 msgid "Internet connection timeout in" msgstr "Limit czasu połączenia internetowego po" -#: src/Gtk/SettingsDialog.vala:204 +#: src/Gtk/SettingsDialog.vala:203 msgid "seconds" msgstr "sekundach" -#: src/Gtk/SettingsDialog.vala:211 +#: src/Gtk/SettingsDialog.vala:210 msgid "Max concurrent downloads" msgstr "Maksymalna liczba jednoczesnych pobrań" -#: src/Gtk/SettingsDialog.vala:225 +#: src/Gtk/SettingsDialog.vala:224 msgid "Proxy" msgstr "Serwer pośredniczący" -#: src/Gtk/l.gtk.vala:43 +#: src/Gtk/l.gtk.vala:42 msgid "Missing Icon" msgstr "Brakująca ikona" diff --git a/po/ru.po b/po/ru.po index 57300fb8..9f7c1f1f 100644 --- a/po/ru.po +++ b/po/ru.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-19 16:41-0400\n" +"POT-Creation-Date: 2023-03-21 20:12-0400\n" "PO-Revision-Date: 2023-03-12 18:24+0300\n" "Last-Translator: Faust3000 (Original) | Danik2343 (Update Transaltion) " "\n" @@ -14,130 +14,130 @@ msgstr "" "X-Launchpad-Export-Date: 2016-12-13 11:48+0000\n" "X-Generator: Poedit 3.1.1\n" -#: src/Common/LinuxKernel.vala:87 +#: src/Common/LinuxKernel.vala:86 msgid "Distribution" msgstr "Дистрибутив" -#: src/Common/LinuxKernel.vala:102 +#: src/Common/LinuxKernel.vala:101 msgid "Architecture" msgstr "Архитектура" -#: src/Common/LinuxKernel.vala:277 +#: src/Common/LinuxKernel.vala:276 msgid "Fetching individual kernel indexes" msgstr "Получение индивидуальных индексов ядра" -#: src/Common/LinuxKernel.vala:326 +#: src/Common/LinuxKernel.vala:325 msgid "Updating from" msgstr "Обновление из" -#: src/Common/LinuxKernel.vala:343 src/Common/LinuxKernel.vala:896 +#: src/Common/LinuxKernel.vala:342 src/Common/LinuxKernel.vala:895 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:346 src/Common/LinuxKernel.vala:899 +#: src/Common/LinuxKernel.vala:345 src/Common/LinuxKernel.vala:898 msgid "FAILED" msgstr "" -#: src/Common/LinuxKernel.vala:760 +#: src/Common/LinuxKernel.vala:759 msgid "Packages Available" msgstr "Доступные пакеты" -#: src/Common/LinuxKernel.vala:765 +#: src/Common/LinuxKernel.vala:764 msgid "Packages Installed" msgstr "Установленные пакеты" -#: src/Common/LinuxKernel.vala:778 src/lib/TeeJee.FileSystem.vala:121 +#: src/Common/LinuxKernel.vala:777 src/lib/TeeJee.FileSystem.vala:121 msgid "File not found" msgstr "Файл не найден" -#: src/Common/LinuxKernel.vala:842 +#: src/Common/LinuxKernel.vala:841 msgid "Available Kernels" msgstr "Доступные ядра" -#: src/Common/LinuxKernel.vala:849 src/Gtk/MainWindow.vala:155 +#: src/Common/LinuxKernel.vala:848 src/Gtk/MainWindow.vala:154 msgid "Installed" msgstr "Установлено" -#: src/Common/LinuxKernel.vala:849 src/Gtk/MainWindow.vala:155 -#: src/Gtk/MainWindow.vala:498 src/Gtk/MainWindow.vala:511 +#: src/Common/LinuxKernel.vala:848 src/Gtk/MainWindow.vala:154 +#: src/Gtk/MainWindow.vala:497 src/Gtk/MainWindow.vala:510 msgid "Running" msgstr "Используется" -#: src/Common/LinuxKernel.vala:884 +#: src/Common/LinuxKernel.vala:883 msgid "Downloading" msgstr "Загрузка" -#: src/Common/LinuxKernel.vala:912 +#: src/Common/LinuxKernel.vala:911 #, fuzzy msgid "is already installed." msgstr "Это ядро уже установлено." -#: src/Common/LinuxKernel.vala:942 +#: src/Common/LinuxKernel.vala:941 msgid "Uninstalling selected kernels" msgstr "Удаление выбранных ядер" -#: src/Common/LinuxKernel.vala:948 +#: src/Common/LinuxKernel.vala:947 msgid "requested" msgstr "запрошено" -#: src/Common/LinuxKernel.vala:951 +#: src/Common/LinuxKernel.vala:950 #, fuzzy msgid "not uninstalling the currently running kernel" msgstr "пропуск текущего загруженного ядра" -#: src/Common/LinuxKernel.vala:967 +#: src/Common/LinuxKernel.vala:966 msgid "found" msgstr "найдено" -#: src/Common/LinuxKernel.vala:970 +#: src/Common/LinuxKernel.vala:969 msgid "No packages to un-install!" msgstr "Нет пакетов для удаления!" -#: src/Common/LinuxKernel.vala:1018 +#: src/Common/LinuxKernel.vala:1017 msgid "Could not find running kernel in list" msgstr "Could not find running kernel in list" -#: src/Common/LinuxKernel.vala:1023 +#: src/Common/LinuxKernel.vala:1022 msgid "Could not find any kernels to uninstall" msgstr "Не удалось найти ядра для деинсталляции" -#: src/Common/LinuxKernel.vala:1031 +#: src/Common/LinuxKernel.vala:1030 #, fuzzy msgid "The following kernels will be uninstalled" msgstr "Следующие ядра будут деинсталлированы:" -#: src/Common/LinuxKernel.vala:1035 +#: src/Common/LinuxKernel.vala:1034 msgid "Continue ?" msgstr "Продолжить ?" -#: src/Common/LinuxKernel.vala:1057 src/Console/AppConsole.vala:285 +#: src/Common/LinuxKernel.vala:1056 src/Console/AppConsole.vala:290 msgid "Latest update" msgstr "Последнее обновление" -#: src/Common/LinuxKernel.vala:1068 src/Console/AppConsole.vala:292 +#: src/Common/LinuxKernel.vala:1067 src/Console/AppConsole.vala:297 msgid "Latest point update" msgstr "Последнее обновление пунктов" -#: src/Common/LinuxKernel.vala:1076 src/Console/AppConsole.vala:297 -#: src/Console/AppConsole.vala:352 +#: src/Common/LinuxKernel.vala:1075 src/Console/AppConsole.vala:302 +#: src/Console/AppConsole.vala:318 msgid "No updates found" msgstr "Обновлений не найдено" -#: src/Common/LinuxKernel.vala:1085 +#: src/Common/LinuxKernel.vala:1084 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Установить версию ядра %s ? (y/n): " -#: src/Common/Main.vala:281 +#: src/Common/Main.vala:300 msgid "Called from" msgstr "Вызван из" -#: src/Common/Main.vala:282 +#: src/Common/Main.vala:301 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" -#: src/Common/Main.vala:314 +#: src/Common/Main.vala:333 msgid "Notifications are disabled" msgstr "Уведомления отключены" @@ -146,140 +146,148 @@ msgstr "Уведомления отключены" msgid "File not found: %s" msgstr "Файл не найден: %s" -#: src/Console/AppConsole.vala:48 src/Gtk/AppGtk.vala:136 +#: src/Console/AppConsole.vala:47 src/Gtk/AppGtk.vala:135 msgid "Syntax" msgstr "Синтаксис" -#: src/Console/AppConsole.vala:50 +#: src/Console/AppConsole.vala:49 msgid "Commands" msgstr "Комманды" -#: src/Console/AppConsole.vala:52 +#: src/Console/AppConsole.vala:51 msgid "Check for kernel updates" msgstr "Проверить обновления ядра" -#: src/Console/AppConsole.vala:53 +#: src/Console/AppConsole.vala:52 msgid "Check for kernel updates and notify current user" msgstr "Проверить обновления ядра и уведомить текущего пользователя" -#: src/Console/AppConsole.vala:54 +#: src/Console/AppConsole.vala:53 msgid "List all available mainline kernels" msgstr "Список всех доступных основных ядер" -#: src/Console/AppConsole.vala:55 +#: src/Console/AppConsole.vala:54 msgid "List installed kernels" msgstr "Список установленных ядер" -#: src/Console/AppConsole.vala:56 +#: src/Console/AppConsole.vala:55 msgid "Install latest mainline kernel" msgstr "Установите последнюю версию основного ядра" -#: src/Console/AppConsole.vala:57 +#: src/Console/AppConsole.vala:56 msgid "Install latest point update for current series" msgstr "Установить последнее обновление точек для текущей серии" -#: src/Console/AppConsole.vala:58 +#: src/Console/AppConsole.vala:57 msgid "Install specified mainline kernel" msgstr "Установить указанную ветку основного ядра" -#: src/Console/AppConsole.vala:59 +#: src/Console/AppConsole.vala:58 msgid "Uninstall specified kernel" msgstr "Установить указанное ядро" -#: src/Console/AppConsole.vala:60 +#: src/Console/AppConsole.vala:59 #, fuzzy msgid "Uninstall kernels older than the latest installed" msgstr "Удалить более старшие установленные ядра, чем используемое ядро" -#: src/Console/AppConsole.vala:61 +#: src/Console/AppConsole.vala:60 msgid "Download specified kernels" msgstr "Скачать указанные ядра" -#: src/Console/AppConsole.vala:62 +#: src/Console/AppConsole.vala:61 msgid "Delete cached info about available kernels" msgstr "Удаление кэшированной информации о доступных ядрах" -#: src/Console/AppConsole.vala:64 src/Gtk/AppGtk.vala:138 +#: src/Console/AppConsole.vala:63 src/Gtk/AppGtk.vala:137 msgid "Options" msgstr "Параметры" -#: src/Console/AppConsole.vala:66 +#: src/Console/AppConsole.vala:65 msgid "Include unstable and RC releases" msgstr "Включать нестабильные и релиз-кандидат релизы" -#: src/Console/AppConsole.vala:67 +#: src/Console/AppConsole.vala:66 msgid "Exclude unstable and RC releases" msgstr "Исключить нестабильные и релиз-кандидат релизы" -#: src/Console/AppConsole.vala:68 +#: src/Console/AppConsole.vala:67 msgid "Enable verbose debugging output" msgstr "Включить подробный отладочный вывод" -#: src/Console/AppConsole.vala:69 +#: src/Console/AppConsole.vala:68 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "Предполагать \"Да\" для всех запросов (неинтерактивный режим)" -#: src/Console/AppConsole.vala:72 +#: src/Console/AppConsole.vala:71 msgid "A version string taken from the output of --list" msgstr "Строка версии, взятая из вывода --list" -#: src/Console/AppConsole.vala:73 +#: src/Console/AppConsole.vala:72 msgid "One or more, comma-seperated" msgstr "" -#: src/Console/AppConsole.vala:74 +#: src/Console/AppConsole.vala:73 #, fuzzy msgid "The currently running kernel will always be ignored" msgstr "Следующие ядра будут деинсталлированы:" -#: src/Console/AppConsole.vala:152 src/Gtk/AppGtk.vala:122 +#: src/Console/AppConsole.vala:161 src/Gtk/AppGtk.vala:121 msgid "Unknown option" msgstr "Неизвестный параметр" -#: src/Console/AppConsole.vala:153 src/Console/AppConsole.vala:243 -#: src/Console/AppConsole.vala:271 +#: src/Console/AppConsole.vala:162 src/Console/AppConsole.vala:248 +#: src/Console/AppConsole.vala:276 msgid "Run" msgstr "Используется" -#: src/Console/AppConsole.vala:153 +#: src/Console/AppConsole.vala:162 msgid "to list all options" msgstr "чтобы перечислить все параметры" -#: src/Console/AppConsole.vala:211 src/Console/AppConsole.vala:251 +#: src/Console/AppConsole.vala:216 src/Console/AppConsole.vala:256 msgid "No kernels specified" msgstr "Ядра не указаны" -#: src/Console/AppConsole.vala:217 +#: src/Console/AppConsole.vala:222 msgid "Multiple kernels selected for installation. Select only one." msgstr "Для установки выбрано несколько ядер. Выберите только одно." -#: src/Console/AppConsole.vala:240 +#: src/Console/AppConsole.vala:245 msgid "Could not find requested version" msgstr "Не удалось найти запрошенную версию" -#: src/Console/AppConsole.vala:243 +#: src/Console/AppConsole.vala:248 msgid "and use a version string listed in first column" msgstr "и использовать строку версии, указанную в первом столбце" -#: src/Console/AppConsole.vala:270 +#: src/Console/AppConsole.vala:275 msgid "Command not specified" msgstr "Команда не указана" -#: src/Console/AppConsole.vala:271 +#: src/Console/AppConsole.vala:276 msgid "to list all commands" msgstr "чтобы перечислить все команды" -#: src/Console/AppConsole.vala:325 src/Gtk/SettingsDialog.vala:165 -msgid "Show" -msgstr "Показать" +#: src/Console/AppConsole.vala:312 +#, fuzzy +msgid "Notifications disabled in settings" +msgstr "Уведомления отключены" + +#: src/Console/AppConsole.vala:332 +msgid "previously notified" +msgstr "" -#: src/Console/AppConsole.vala:330 src/Console/AppConsole.vala:342 +#: src/Console/AppConsole.vala:335 #, c-format msgid "Kernel %s Available" msgstr "Доступно ядро %s" -#: src/Console/AppConsole.vala:332 src/Console/AppConsole.vala:344 -#: src/Gtk/MainWindow.vala:266 +#: src/Console/AppConsole.vala:339 src/Gtk/SettingsDialog.vala:164 +msgid "Show" +msgstr "Показать" + +#: src/Console/AppConsole.vala:340 src/Gtk/MainWindow.vala:265 msgid "Install" msgstr "Установить" @@ -291,7 +299,7 @@ msgstr "Создатели" msgid "Back" msgstr "Назад" -#: src/Gtk/AboutWindow.vala:185 src/Gtk/TerminalWindow.vala:162 +#: src/Gtk/AboutWindow.vala:185 src/Gtk/TerminalWindow.vala:161 msgid "Close" msgstr "Закрыть" @@ -319,157 +327,160 @@ msgstr "Составители документации" msgid "Third Party Inclusions" msgstr "Включая сторонние инструменты" -#: src/Gtk/AppGtk.vala:136 +#: src/Gtk/AppGtk.vala:135 msgid "options" msgstr "параметры" -#: src/Gtk/AppGtk.vala:140 +#: src/Gtk/AppGtk.vala:139 msgid "Print debug information" msgstr "Распечатать отладочную информацию" -#: src/Gtk/AppGtk.vala:141 +#: src/Gtk/AppGtk.vala:140 msgid "Show all options" msgstr "Показать все параметры" -#: src/Gtk/MainWindow.vala:112 +#: src/Gtk/MainWindow.vala:111 msgid "Kernel" msgstr "Ядро" -#: src/Gtk/MainWindow.vala:142 +#: src/Gtk/MainWindow.vala:141 msgid "Status" msgstr "Состояние" -#: src/Gtk/MainWindow.vala:276 +#: src/Gtk/MainWindow.vala:275 msgid "Uninstall" msgstr "Удалить" -#: src/Gtk/MainWindow.vala:286 +#: src/Gtk/MainWindow.vala:285 msgid "Changes" msgstr "Изменения" -#: src/Gtk/MainWindow.vala:308 +#: src/Gtk/MainWindow.vala:307 msgid "Uninstall Old" msgstr "Удалить старые" -#: src/Gtk/MainWindow.vala:309 +#: src/Gtk/MainWindow.vala:308 msgid "Uninstall kernels older than running kernel" msgstr "Удалить более старшие установленные ядра, чем используемое" -#: src/Gtk/MainWindow.vala:314 +#: src/Gtk/MainWindow.vala:313 msgid "Reload" msgstr "Перезагрузить" -#: src/Gtk/MainWindow.vala:319 src/Gtk/SettingsDialog.vala:49 +#: src/Gtk/MainWindow.vala:318 src/Gtk/SettingsDialog.vala:48 msgid "Settings" msgstr "Настройки" -#: src/Gtk/MainWindow.vala:324 +#: src/Gtk/MainWindow.vala:323 msgid "About" msgstr "О программе" -#: src/Gtk/MainWindow.vala:329 +#: src/Gtk/MainWindow.vala:328 msgid "Exit" msgstr "Выход" -#: src/Gtk/MainWindow.vala:397 +#: src/Gtk/MainWindow.vala:396 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Программа обновления ядра для дистрибутивов на базе Ubuntu" -#: src/Gtk/MainWindow.vala:398 +#: src/Gtk/MainWindow.vala:397 msgid "Forked" msgstr "Форк" -#: src/Gtk/MainWindow.vala:398 +#: src/Gtk/MainWindow.vala:397 msgid "Original" msgstr "Оригинал" -#: src/Gtk/MainWindow.vala:436 +#: src/Gtk/MainWindow.vala:435 msgid "Updating kernels" msgstr "Обновление ядер" -#: src/Gtk/MainWindow.vala:507 +#: src/Gtk/MainWindow.vala:506 msgid "available" msgstr "доступно" -#: src/Gtk/MainWindow.vala:550 src/Gtk/MainWindow.vala:590 -#: src/Gtk/MainWindow.vala:624 +#: src/Gtk/MainWindow.vala:549 src/Gtk/MainWindow.vala:589 +#: src/Gtk/MainWindow.vala:623 msgid "DONE" msgstr "ГОТОВО" -#: src/Gtk/ProgressWindow.vala:127 src/Gtk/TerminalWindow.vala:152 +#: src/Gtk/ProgressWindow.vala:126 src/Gtk/TerminalWindow.vala:151 msgid "Cancel" msgstr "Отмена" -#: src/Gtk/SettingsDialog.vala:59 +#: src/Gtk/SettingsDialog.vala:58 msgid "Notification" msgstr "Уведомления" -#: src/Gtk/SettingsDialog.vala:66 +#: src/Gtk/SettingsDialog.vala:65 msgid "Notify if a major release is available" msgstr "Уведомлять, если доступно крупное обновление" -#: src/Gtk/SettingsDialog.vala:75 +#: src/Gtk/SettingsDialog.vala:74 msgid "Notify if a point release is available" msgstr "Уведомлять, если доступно небольшое обновление" -#: src/Gtk/SettingsDialog.vala:86 +#: src/Gtk/SettingsDialog.vala:85 #, fuzzy msgid "Seconds interval enabled for debugging" msgstr "(Разрешение интервалов в секундах для --debug)" -#: src/Gtk/SettingsDialog.vala:109 +#: src/Gtk/SettingsDialog.vala:108 msgid "Check every" msgstr "Проверять каждые" -#: src/Gtk/SettingsDialog.vala:134 -msgid "Hour(s)" +#: src/Gtk/SettingsDialog.vala:133 +#, fuzzy +msgid "Hours" msgstr "Час(ов)" -#: src/Gtk/SettingsDialog.vala:136 -msgid "Day(s)" -msgstr "День(дней)" +#: src/Gtk/SettingsDialog.vala:135 +msgid "Days" +msgstr "" -#: src/Gtk/SettingsDialog.vala:138 -msgid "Week(s)" +#: src/Gtk/SettingsDialog.vala:137 +#, fuzzy +msgid "Weeks" msgstr "Неделю(ли)" -#: src/Gtk/SettingsDialog.vala:141 -msgid "Second(s)" +#: src/Gtk/SettingsDialog.vala:140 +#, fuzzy +msgid "Seconds" msgstr "Секунду(ды)" -#: src/Gtk/SettingsDialog.vala:147 +#: src/Gtk/SettingsDialog.vala:146 msgid "Filters" msgstr "Фильтры" -#: src/Gtk/SettingsDialog.vala:155 +#: src/Gtk/SettingsDialog.vala:154 msgid "Hide unstable and RC releases" msgstr "Скрыть нестабильные и релиз-кандидат версии" -#: src/Gtk/SettingsDialog.vala:177 +#: src/Gtk/SettingsDialog.vala:176 msgid "previous major versions" msgstr "предыдущие основные версии" -#: src/Gtk/SettingsDialog.vala:181 +#: src/Gtk/SettingsDialog.vala:180 msgid "Network" msgstr "Сеть" -#: src/Gtk/SettingsDialog.vala:192 +#: src/Gtk/SettingsDialog.vala:191 msgid "Internet connection timeout in" msgstr "Таймаут подключения к Интернету в" -#: src/Gtk/SettingsDialog.vala:204 +#: src/Gtk/SettingsDialog.vala:203 msgid "seconds" msgstr "секунд" -#: src/Gtk/SettingsDialog.vala:211 +#: src/Gtk/SettingsDialog.vala:210 msgid "Max concurrent downloads" msgstr "Максимальное количество одновременных загрузок" -#: src/Gtk/SettingsDialog.vala:225 +#: src/Gtk/SettingsDialog.vala:224 msgid "Proxy" msgstr "Прокси" -#: src/Gtk/l.gtk.vala:43 +#: src/Gtk/l.gtk.vala:42 msgid "Missing Icon" msgstr "Значок отсутствует" diff --git a/po/sv.po b/po/sv.po index 868a8fd3..ebcd371e 100644 --- a/po/sv.po +++ b/po/sv.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-19 16:41-0400\n" +"POT-Creation-Date: 2023-03-21 20:12-0400\n" "PO-Revision-Date: 2018-01-13 16:56+0100\n" "Last-Translator: Åke Engelbrektson \n" "Language-Team:Swedish\n" @@ -13,136 +13,136 @@ msgstr "" "X-Generator: Poedit 1.8.7.1\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: src/Common/LinuxKernel.vala:87 +#: src/Common/LinuxKernel.vala:86 msgid "Distribution" msgstr "Distribution" -#: src/Common/LinuxKernel.vala:102 +#: src/Common/LinuxKernel.vala:101 #, fuzzy msgid "Architecture" msgstr "Systemarkitektur" -#: src/Common/LinuxKernel.vala:277 +#: src/Common/LinuxKernel.vala:276 #, fuzzy msgid "Fetching individual kernel indexes" msgstr "Hämtar index för" -#: src/Common/LinuxKernel.vala:326 +#: src/Common/LinuxKernel.vala:325 msgid "Updating from" msgstr "" -#: src/Common/LinuxKernel.vala:343 src/Common/LinuxKernel.vala:896 +#: src/Common/LinuxKernel.vala:342 src/Common/LinuxKernel.vala:895 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:346 src/Common/LinuxKernel.vala:899 +#: src/Common/LinuxKernel.vala:345 src/Common/LinuxKernel.vala:898 msgid "FAILED" msgstr "" -#: src/Common/LinuxKernel.vala:760 +#: src/Common/LinuxKernel.vala:759 msgid "Packages Available" msgstr "Tillgängliga paket" -#: src/Common/LinuxKernel.vala:765 +#: src/Common/LinuxKernel.vala:764 msgid "Packages Installed" msgstr "Installerade paket" -#: src/Common/LinuxKernel.vala:778 src/lib/TeeJee.FileSystem.vala:121 +#: src/Common/LinuxKernel.vala:777 src/lib/TeeJee.FileSystem.vala:121 msgid "File not found" msgstr "Filen kan inte hittas" -#: src/Common/LinuxKernel.vala:842 +#: src/Common/LinuxKernel.vala:841 msgid "Available Kernels" msgstr "Tillgängliga kärnor" -#: src/Common/LinuxKernel.vala:849 src/Gtk/MainWindow.vala:155 +#: src/Common/LinuxKernel.vala:848 src/Gtk/MainWindow.vala:154 msgid "Installed" msgstr "Installerad" -#: src/Common/LinuxKernel.vala:849 src/Gtk/MainWindow.vala:155 -#: src/Gtk/MainWindow.vala:498 src/Gtk/MainWindow.vala:511 +#: src/Common/LinuxKernel.vala:848 src/Gtk/MainWindow.vala:154 +#: src/Gtk/MainWindow.vala:497 src/Gtk/MainWindow.vala:510 msgid "Running" msgstr "Körs" -#: src/Common/LinuxKernel.vala:884 +#: src/Common/LinuxKernel.vala:883 msgid "Downloading" msgstr "Laddar ner" -#: src/Common/LinuxKernel.vala:912 +#: src/Common/LinuxKernel.vala:911 #, fuzzy msgid "is already installed." msgstr "Denna kärna är redan installerad" -#: src/Common/LinuxKernel.vala:942 +#: src/Common/LinuxKernel.vala:941 #, fuzzy msgid "Uninstalling selected kernels" msgstr "Installera specificerad kärna" -#: src/Common/LinuxKernel.vala:948 +#: src/Common/LinuxKernel.vala:947 msgid "requested" msgstr "" -#: src/Common/LinuxKernel.vala:951 +#: src/Common/LinuxKernel.vala:950 #, fuzzy msgid "not uninstalling the currently running kernel" msgstr "Installera specificerad kärna" -#: src/Common/LinuxKernel.vala:967 +#: src/Common/LinuxKernel.vala:966 msgid "found" msgstr "" -#: src/Common/LinuxKernel.vala:970 +#: src/Common/LinuxKernel.vala:969 #, fuzzy msgid "No packages to un-install!" msgstr "Installerade paket" -#: src/Common/LinuxKernel.vala:1018 +#: src/Common/LinuxKernel.vala:1017 #, fuzzy msgid "Could not find running kernel in list" msgstr "Kunde inte hitta efterfrågad version" -#: src/Common/LinuxKernel.vala:1023 +#: src/Common/LinuxKernel.vala:1022 #, fuzzy msgid "Could not find any kernels to uninstall" msgstr "Välj kärnor för borttagning" -#: src/Common/LinuxKernel.vala:1031 +#: src/Common/LinuxKernel.vala:1030 #, fuzzy msgid "The following kernels will be uninstalled" msgstr "Denna kärna är redan installerad" -#: src/Common/LinuxKernel.vala:1035 +#: src/Common/LinuxKernel.vala:1034 msgid "Continue ?" msgstr "" -#: src/Common/LinuxKernel.vala:1057 src/Console/AppConsole.vala:285 +#: src/Common/LinuxKernel.vala:1056 src/Console/AppConsole.vala:290 msgid "Latest update" msgstr "" -#: src/Common/LinuxKernel.vala:1068 src/Console/AppConsole.vala:292 +#: src/Common/LinuxKernel.vala:1067 src/Console/AppConsole.vala:297 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:1076 src/Console/AppConsole.vala:297 -#: src/Console/AppConsole.vala:352 +#: src/Common/LinuxKernel.vala:1075 src/Console/AppConsole.vala:302 +#: src/Console/AppConsole.vala:318 msgid "No updates found" msgstr "Inga uppdateringar hittades" -#: src/Common/LinuxKernel.vala:1085 +#: src/Common/LinuxKernel.vala:1084 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "" -#: src/Common/Main.vala:281 +#: src/Common/Main.vala:300 msgid "Called from" msgstr "" -#: src/Common/Main.vala:282 +#: src/Common/Main.vala:301 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" -#: src/Common/Main.vala:314 +#: src/Common/Main.vala:333 #, fuzzy msgid "Notifications are disabled" msgstr "Avisering" @@ -152,150 +152,158 @@ msgstr "Avisering" msgid "File not found: %s" msgstr "Filen kan inte hittas" -#: src/Console/AppConsole.vala:48 src/Gtk/AppGtk.vala:136 +#: src/Console/AppConsole.vala:47 src/Gtk/AppGtk.vala:135 msgid "Syntax" msgstr "Syntax" -#: src/Console/AppConsole.vala:50 +#: src/Console/AppConsole.vala:49 msgid "Commands" msgstr "" -#: src/Console/AppConsole.vala:52 +#: src/Console/AppConsole.vala:51 msgid "Check for kernel updates" msgstr "Sök efter kärnuppdateringar" -#: src/Console/AppConsole.vala:53 +#: src/Console/AppConsole.vala:52 #, fuzzy msgid "Check for kernel updates and notify current user" msgstr "Sök efter kärnuppdateringar" -#: src/Console/AppConsole.vala:54 +#: src/Console/AppConsole.vala:53 msgid "List all available mainline kernels" msgstr "Lista alla tillgängliga kärnor" -#: src/Console/AppConsole.vala:55 +#: src/Console/AppConsole.vala:54 #, fuzzy msgid "List installed kernels" msgstr "Lista tillgängliga kärnor" -#: src/Console/AppConsole.vala:56 +#: src/Console/AppConsole.vala:55 #, fuzzy msgid "Install latest mainline kernel" msgstr "Installera specificerad kärna" -#: src/Console/AppConsole.vala:57 +#: src/Console/AppConsole.vala:56 msgid "Install latest point update for current series" msgstr "" -#: src/Console/AppConsole.vala:58 +#: src/Console/AppConsole.vala:57 msgid "Install specified mainline kernel" msgstr "Installera specificerad kärna" -#: src/Console/AppConsole.vala:59 +#: src/Console/AppConsole.vala:58 #, fuzzy msgid "Uninstall specified kernel" msgstr "Installera specificerad kärna" -#: src/Console/AppConsole.vala:60 +#: src/Console/AppConsole.vala:59 #, fuzzy msgid "Uninstall kernels older than the latest installed" msgstr "Ta bort installerade kärnor äldre än den som körs" -#: src/Console/AppConsole.vala:61 +#: src/Console/AppConsole.vala:60 #, fuzzy msgid "Download specified kernels" msgstr "Ladda ner paket för specificerad kärna" -#: src/Console/AppConsole.vala:62 +#: src/Console/AppConsole.vala:61 msgid "Delete cached info about available kernels" msgstr "" -#: src/Console/AppConsole.vala:64 src/Gtk/AppGtk.vala:138 +#: src/Console/AppConsole.vala:63 src/Gtk/AppGtk.vala:137 msgid "Options" msgstr "Alternativ" -#: src/Console/AppConsole.vala:66 +#: src/Console/AppConsole.vala:65 #, fuzzy msgid "Include unstable and RC releases" msgstr "Dölj instabila- och RC-publiceringar" -#: src/Console/AppConsole.vala:67 +#: src/Console/AppConsole.vala:66 #, fuzzy msgid "Exclude unstable and RC releases" msgstr "Dölj instabila- och RC-publiceringar" -#: src/Console/AppConsole.vala:68 +#: src/Console/AppConsole.vala:67 msgid "Enable verbose debugging output" msgstr "" -#: src/Console/AppConsole.vala:69 +#: src/Console/AppConsole.vala:68 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "" -#: src/Console/AppConsole.vala:72 +#: src/Console/AppConsole.vala:71 msgid "A version string taken from the output of --list" msgstr "" -#: src/Console/AppConsole.vala:73 +#: src/Console/AppConsole.vala:72 msgid "One or more, comma-seperated" msgstr "" -#: src/Console/AppConsole.vala:74 +#: src/Console/AppConsole.vala:73 #, fuzzy msgid "The currently running kernel will always be ignored" msgstr "Denna kärna är redan installerad" -#: src/Console/AppConsole.vala:152 src/Gtk/AppGtk.vala:122 +#: src/Console/AppConsole.vala:161 src/Gtk/AppGtk.vala:121 msgid "Unknown option" msgstr "Okänt alternativ" -#: src/Console/AppConsole.vala:153 src/Console/AppConsole.vala:243 -#: src/Console/AppConsole.vala:271 +#: src/Console/AppConsole.vala:162 src/Console/AppConsole.vala:248 +#: src/Console/AppConsole.vala:276 #, fuzzy msgid "Run" msgstr "Körs" -#: src/Console/AppConsole.vala:153 +#: src/Console/AppConsole.vala:162 #, fuzzy msgid "to list all options" msgstr "Visa alla alternativ" -#: src/Console/AppConsole.vala:211 src/Console/AppConsole.vala:251 +#: src/Console/AppConsole.vala:216 src/Console/AppConsole.vala:256 msgid "No kernels specified" msgstr "" -#: src/Console/AppConsole.vala:217 +#: src/Console/AppConsole.vala:222 msgid "Multiple kernels selected for installation. Select only one." msgstr "Flera kärnor valda för installation. Välj endast en." -#: src/Console/AppConsole.vala:240 +#: src/Console/AppConsole.vala:245 msgid "Could not find requested version" msgstr "Kunde inte hitta efterfrågad version" -#: src/Console/AppConsole.vala:243 +#: src/Console/AppConsole.vala:248 msgid "and use a version string listed in first column" msgstr "" -#: src/Console/AppConsole.vala:270 +#: src/Console/AppConsole.vala:275 msgid "Command not specified" msgstr "" -#: src/Console/AppConsole.vala:271 +#: src/Console/AppConsole.vala:276 #, fuzzy msgid "to list all commands" msgstr "Visa alla alternativ" -#: src/Console/AppConsole.vala:325 src/Gtk/SettingsDialog.vala:165 -msgid "Show" +#: src/Console/AppConsole.vala:312 +#, fuzzy +msgid "Notifications disabled in settings" +msgstr "Avisering" + +#: src/Console/AppConsole.vala:332 +msgid "previously notified" msgstr "" -#: src/Console/AppConsole.vala:330 src/Console/AppConsole.vala:342 +#: src/Console/AppConsole.vala:335 #, fuzzy, c-format msgid "Kernel %s Available" msgstr "Tillgängliga paket" -#: src/Console/AppConsole.vala:332 src/Console/AppConsole.vala:344 -#: src/Gtk/MainWindow.vala:266 +#: src/Console/AppConsole.vala:339 src/Gtk/SettingsDialog.vala:164 +msgid "Show" +msgstr "" + +#: src/Console/AppConsole.vala:340 src/Gtk/MainWindow.vala:265 msgid "Install" msgstr "Installera" @@ -307,7 +315,7 @@ msgstr "Tack" msgid "Back" msgstr "Tillbaka" -#: src/Gtk/AboutWindow.vala:185 src/Gtk/TerminalWindow.vala:162 +#: src/Gtk/AboutWindow.vala:185 src/Gtk/TerminalWindow.vala:161 msgid "Close" msgstr "Stäng" @@ -336,162 +344,164 @@ msgstr "Dokumentalister" msgid "Third Party Inclusions" msgstr "Tredjepartsverktyg" -#: src/Gtk/AppGtk.vala:136 +#: src/Gtk/AppGtk.vala:135 #, fuzzy msgid "options" msgstr "Alternativ" -#: src/Gtk/AppGtk.vala:140 +#: src/Gtk/AppGtk.vala:139 msgid "Print debug information" msgstr "Skriv ut felsökningsinformation" -#: src/Gtk/AppGtk.vala:141 +#: src/Gtk/AppGtk.vala:140 msgid "Show all options" msgstr "Visa alla alternativ" -#: src/Gtk/MainWindow.vala:112 +#: src/Gtk/MainWindow.vala:111 msgid "Kernel" msgstr "Kärna" -#: src/Gtk/MainWindow.vala:142 +#: src/Gtk/MainWindow.vala:141 msgid "Status" msgstr "Status" -#: src/Gtk/MainWindow.vala:276 +#: src/Gtk/MainWindow.vala:275 #, fuzzy msgid "Uninstall" msgstr "Installera" -#: src/Gtk/MainWindow.vala:286 +#: src/Gtk/MainWindow.vala:285 msgid "Changes" msgstr "Ändringar" -#: src/Gtk/MainWindow.vala:308 +#: src/Gtk/MainWindow.vala:307 #, fuzzy msgid "Uninstall Old" msgstr "Avinstallation slutförd" -#: src/Gtk/MainWindow.vala:309 +#: src/Gtk/MainWindow.vala:308 #, fuzzy msgid "Uninstall kernels older than running kernel" msgstr "Ta bort installerade kärnor äldre än den som körs" -#: src/Gtk/MainWindow.vala:314 +#: src/Gtk/MainWindow.vala:313 msgid "Reload" msgstr "" -#: src/Gtk/MainWindow.vala:319 src/Gtk/SettingsDialog.vala:49 +#: src/Gtk/MainWindow.vala:318 src/Gtk/SettingsDialog.vala:48 msgid "Settings" msgstr "Inställningar" -#: src/Gtk/MainWindow.vala:324 +#: src/Gtk/MainWindow.vala:323 msgid "About" msgstr "Om" -#: src/Gtk/MainWindow.vala:329 +#: src/Gtk/MainWindow.vala:328 msgid "Exit" msgstr "" -#: src/Gtk/MainWindow.vala:397 +#: src/Gtk/MainWindow.vala:396 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Kärnuppgraderingsverktyg för Ubuntu-baserade distributioner" -#: src/Gtk/MainWindow.vala:398 +#: src/Gtk/MainWindow.vala:397 msgid "Forked" msgstr "" -#: src/Gtk/MainWindow.vala:398 +#: src/Gtk/MainWindow.vala:397 msgid "Original" msgstr "" -#: src/Gtk/MainWindow.vala:436 +#: src/Gtk/MainWindow.vala:435 msgid "Updating kernels" msgstr "" -#: src/Gtk/MainWindow.vala:507 +#: src/Gtk/MainWindow.vala:506 #, fuzzy msgid "available" msgstr "Tillgängliga paket" -#: src/Gtk/MainWindow.vala:550 src/Gtk/MainWindow.vala:590 -#: src/Gtk/MainWindow.vala:624 +#: src/Gtk/MainWindow.vala:549 src/Gtk/MainWindow.vala:589 +#: src/Gtk/MainWindow.vala:623 msgid "DONE" msgstr "" -#: src/Gtk/ProgressWindow.vala:127 src/Gtk/TerminalWindow.vala:152 +#: src/Gtk/ProgressWindow.vala:126 src/Gtk/TerminalWindow.vala:151 msgid "Cancel" msgstr "Avbryt" -#: src/Gtk/SettingsDialog.vala:59 +#: src/Gtk/SettingsDialog.vala:58 msgid "Notification" msgstr "Avisering" -#: src/Gtk/SettingsDialog.vala:66 +#: src/Gtk/SettingsDialog.vala:65 msgid "Notify if a major release is available" msgstr "Meddela om en ny (stor) uppdatering finns tillgänglig" -#: src/Gtk/SettingsDialog.vala:75 +#: src/Gtk/SettingsDialog.vala:74 msgid "Notify if a point release is available" msgstr "Meddela om en ny (mindre) uppdatering finns tillgänglig" -#: src/Gtk/SettingsDialog.vala:86 +#: src/Gtk/SettingsDialog.vala:85 msgid "Seconds interval enabled for debugging" msgstr "" -#: src/Gtk/SettingsDialog.vala:109 +#: src/Gtk/SettingsDialog.vala:108 msgid "Check every" msgstr "Kontrollera varje" -#: src/Gtk/SettingsDialog.vala:134 -msgid "Hour(s)" +#: src/Gtk/SettingsDialog.vala:133 +#, fuzzy +msgid "Hours" msgstr "Timma(r)" -#: src/Gtk/SettingsDialog.vala:136 -msgid "Day(s)" -msgstr "Dag(ar)" +#: src/Gtk/SettingsDialog.vala:135 +msgid "Days" +msgstr "" -#: src/Gtk/SettingsDialog.vala:138 -msgid "Week(s)" +#: src/Gtk/SettingsDialog.vala:137 +#, fuzzy +msgid "Weeks" msgstr "Veckor" -#: src/Gtk/SettingsDialog.vala:141 -msgid "Second(s)" +#: src/Gtk/SettingsDialog.vala:140 +msgid "Seconds" msgstr "" -#: src/Gtk/SettingsDialog.vala:147 +#: src/Gtk/SettingsDialog.vala:146 msgid "Filters" msgstr "" -#: src/Gtk/SettingsDialog.vala:155 +#: src/Gtk/SettingsDialog.vala:154 msgid "Hide unstable and RC releases" msgstr "Dölj instabila- och RC-publiceringar" -#: src/Gtk/SettingsDialog.vala:177 +#: src/Gtk/SettingsDialog.vala:176 msgid "previous major versions" msgstr "" -#: src/Gtk/SettingsDialog.vala:181 +#: src/Gtk/SettingsDialog.vala:180 msgid "Network" msgstr "" -#: src/Gtk/SettingsDialog.vala:192 +#: src/Gtk/SettingsDialog.vala:191 #, fuzzy msgid "Internet connection timeout in" msgstr "Internetuppkopplingen är inte aktiv" -#: src/Gtk/SettingsDialog.vala:204 +#: src/Gtk/SettingsDialog.vala:203 msgid "seconds" msgstr "" -#: src/Gtk/SettingsDialog.vala:211 +#: src/Gtk/SettingsDialog.vala:210 msgid "Max concurrent downloads" msgstr "" -#: src/Gtk/SettingsDialog.vala:225 +#: src/Gtk/SettingsDialog.vala:224 msgid "Proxy" msgstr "" -#: src/Gtk/l.gtk.vala:43 +#: src/Gtk/l.gtk.vala:42 msgid "Missing Icon" msgstr "Saknad ikon" diff --git a/po/tr.po b/po/tr.po index 1adbc8f2..e00f232c 100644 --- a/po/tr.po +++ b/po/tr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-19 16:41-0400\n" +"POT-Creation-Date: 2023-03-21 20:12-0400\n" "PO-Revision-Date: 2022-08-06 16:48+0300\n" "Last-Translator: Sabri Ünal \n" "Language-Team: Turkish\n" @@ -13,135 +13,135 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Poedit 3.1.1\n" -#: src/Common/LinuxKernel.vala:87 +#: src/Common/LinuxKernel.vala:86 msgid "Distribution" msgstr "Dağıtım" -#: src/Common/LinuxKernel.vala:102 +#: src/Common/LinuxKernel.vala:101 msgid "Architecture" msgstr "Sistem mimarisi" -#: src/Common/LinuxKernel.vala:277 +#: src/Common/LinuxKernel.vala:276 #, fuzzy msgid "Fetching individual kernel indexes" msgstr "İçerik dizini alınıyor..." -#: src/Common/LinuxKernel.vala:326 +#: src/Common/LinuxKernel.vala:325 msgid "Updating from" msgstr "" -#: src/Common/LinuxKernel.vala:343 src/Common/LinuxKernel.vala:896 +#: src/Common/LinuxKernel.vala:342 src/Common/LinuxKernel.vala:895 msgid "OK" msgstr "Tamam" -#: src/Common/LinuxKernel.vala:346 src/Common/LinuxKernel.vala:899 +#: src/Common/LinuxKernel.vala:345 src/Common/LinuxKernel.vala:898 msgid "FAILED" msgstr "" -#: src/Common/LinuxKernel.vala:760 +#: src/Common/LinuxKernel.vala:759 msgid "Packages Available" msgstr "Mevcut Paketler" -#: src/Common/LinuxKernel.vala:765 +#: src/Common/LinuxKernel.vala:764 msgid "Packages Installed" msgstr "Kurulu Paketler" -#: src/Common/LinuxKernel.vala:778 src/lib/TeeJee.FileSystem.vala:121 +#: src/Common/LinuxKernel.vala:777 src/lib/TeeJee.FileSystem.vala:121 msgid "File not found" msgstr "Dosya bulunamadı" -#: src/Common/LinuxKernel.vala:842 +#: src/Common/LinuxKernel.vala:841 msgid "Available Kernels" msgstr "Mevcut Çekirdekler" -#: src/Common/LinuxKernel.vala:849 src/Gtk/MainWindow.vala:155 +#: src/Common/LinuxKernel.vala:848 src/Gtk/MainWindow.vala:154 msgid "Installed" msgstr "Kurulu" -#: src/Common/LinuxKernel.vala:849 src/Gtk/MainWindow.vala:155 -#: src/Gtk/MainWindow.vala:498 src/Gtk/MainWindow.vala:511 +#: src/Common/LinuxKernel.vala:848 src/Gtk/MainWindow.vala:154 +#: src/Gtk/MainWindow.vala:497 src/Gtk/MainWindow.vala:510 msgid "Running" msgstr "Çalışıyor" -#: src/Common/LinuxKernel.vala:884 +#: src/Common/LinuxKernel.vala:883 msgid "Downloading" msgstr "İndiriliyor" -#: src/Common/LinuxKernel.vala:912 +#: src/Common/LinuxKernel.vala:911 #, fuzzy msgid "is already installed." msgstr "Bu çekirdek zaten kurulu." -#: src/Common/LinuxKernel.vala:942 +#: src/Common/LinuxKernel.vala:941 #, fuzzy msgid "Uninstalling selected kernels" msgstr "Belirtilen çekirdeğini kaldır" -#: src/Common/LinuxKernel.vala:948 +#: src/Common/LinuxKernel.vala:947 msgid "requested" msgstr "" -#: src/Common/LinuxKernel.vala:951 +#: src/Common/LinuxKernel.vala:950 #, fuzzy msgid "not uninstalling the currently running kernel" msgstr "Belirtilen çekirdeğini kaldır" -#: src/Common/LinuxKernel.vala:967 +#: src/Common/LinuxKernel.vala:966 msgid "found" msgstr "" -#: src/Common/LinuxKernel.vala:970 +#: src/Common/LinuxKernel.vala:969 #, fuzzy msgid "No packages to un-install!" msgstr "Kurulu Paketler" -#: src/Common/LinuxKernel.vala:1018 +#: src/Common/LinuxKernel.vala:1017 #, fuzzy msgid "Could not find running kernel in list" msgstr "Çalışan sürüm listede bulunamadı!" -#: src/Common/LinuxKernel.vala:1023 +#: src/Common/LinuxKernel.vala:1022 msgid "Could not find any kernels to uninstall" msgstr "Kaldırılacak çekirdek bulunamadı" -#: src/Common/LinuxKernel.vala:1031 +#: src/Common/LinuxKernel.vala:1030 #, fuzzy msgid "The following kernels will be uninstalled" msgstr "Aşağıdaki çekirdekler kaldırılacak:" -#: src/Common/LinuxKernel.vala:1035 +#: src/Common/LinuxKernel.vala:1034 msgid "Continue ?" msgstr "Devam edilsin mi?" -#: src/Common/LinuxKernel.vala:1057 src/Console/AppConsole.vala:285 +#: src/Common/LinuxKernel.vala:1056 src/Console/AppConsole.vala:290 msgid "Latest update" msgstr "Son güncelleme" # Point burada point release anlamında kullanılıyor. Örneğin 5.10.x sayısının en sonundaki x rakamı point release/nokta sürüm oluyor. -#: src/Common/LinuxKernel.vala:1068 src/Console/AppConsole.vala:292 +#: src/Common/LinuxKernel.vala:1067 src/Console/AppConsole.vala:297 msgid "Latest point update" msgstr "Son nokta güncellemesi" -#: src/Common/LinuxKernel.vala:1076 src/Console/AppConsole.vala:297 -#: src/Console/AppConsole.vala:352 +#: src/Common/LinuxKernel.vala:1075 src/Console/AppConsole.vala:302 +#: src/Console/AppConsole.vala:318 msgid "No updates found" msgstr "Güncelleme bulunamadı" -#: src/Common/LinuxKernel.vala:1085 +#: src/Common/LinuxKernel.vala:1084 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Linux Çekirdek Sürümü %s Kurulsun mu? (e/h): " -#: src/Common/Main.vala:281 +#: src/Common/Main.vala:300 msgid "Called from" msgstr "Çağrı konumu" -#: src/Common/Main.vala:282 +#: src/Common/Main.vala:301 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" -#: src/Common/Main.vala:314 +#: src/Common/Main.vala:333 msgid "Notifications are disabled" msgstr "Bildirimler devre dışı bırakılmış" @@ -150,141 +150,149 @@ msgstr "Bildirimler devre dışı bırakılmış" msgid "File not found: %s" msgstr "Dosya bulunamadı" -#: src/Console/AppConsole.vala:48 src/Gtk/AppGtk.vala:136 +#: src/Console/AppConsole.vala:47 src/Gtk/AppGtk.vala:135 msgid "Syntax" msgstr "Sözdizimi" -#: src/Console/AppConsole.vala:50 +#: src/Console/AppConsole.vala:49 msgid "Commands" msgstr "Komutlar" -#: src/Console/AppConsole.vala:52 +#: src/Console/AppConsole.vala:51 msgid "Check for kernel updates" msgstr "Çekirdek güncellemelerini kontrol et" -#: src/Console/AppConsole.vala:53 +#: src/Console/AppConsole.vala:52 msgid "Check for kernel updates and notify current user" msgstr "Çekirdek güncellemelerini kontrol et ve mevcut kullanıcıyı uyar" -#: src/Console/AppConsole.vala:54 +#: src/Console/AppConsole.vala:53 msgid "List all available mainline kernels" msgstr "Tüm mainline çekirdeklerini listele" -#: src/Console/AppConsole.vala:55 +#: src/Console/AppConsole.vala:54 msgid "List installed kernels" msgstr "Kurulu çekirdekleri listele" -#: src/Console/AppConsole.vala:56 +#: src/Console/AppConsole.vala:55 msgid "Install latest mainline kernel" msgstr "En son mainline çekirdeğini kur" -#: src/Console/AppConsole.vala:57 +#: src/Console/AppConsole.vala:56 msgid "Install latest point update for current series" msgstr "Mevcut çekirdek serisi için en son nokta güncellemesini kur" -#: src/Console/AppConsole.vala:58 +#: src/Console/AppConsole.vala:57 msgid "Install specified mainline kernel" msgstr "Belirtilen mainline çekirdeğini kur" -#: src/Console/AppConsole.vala:59 +#: src/Console/AppConsole.vala:58 msgid "Uninstall specified kernel" msgstr "Belirtilen çekirdeğini kaldır" -#: src/Console/AppConsole.vala:60 +#: src/Console/AppConsole.vala:59 #, fuzzy msgid "Uninstall kernels older than the latest installed" msgstr "Çalışan çekirdekten daha eski çekirdekleri kaldır" -#: src/Console/AppConsole.vala:61 +#: src/Console/AppConsole.vala:60 msgid "Download specified kernels" msgstr "Belirtilen çekirdekleri indir" -#: src/Console/AppConsole.vala:62 +#: src/Console/AppConsole.vala:61 msgid "Delete cached info about available kernels" msgstr "" -#: src/Console/AppConsole.vala:64 src/Gtk/AppGtk.vala:138 +#: src/Console/AppConsole.vala:63 src/Gtk/AppGtk.vala:137 msgid "Options" msgstr "Seçenekler" -#: src/Console/AppConsole.vala:66 +#: src/Console/AppConsole.vala:65 msgid "Include unstable and RC releases" msgstr "Kararsız ve RC sürümleri dahil et" -#: src/Console/AppConsole.vala:67 +#: src/Console/AppConsole.vala:66 #, fuzzy msgid "Exclude unstable and RC releases" msgstr "Kararsız ve RC sürümleri dahil et" -#: src/Console/AppConsole.vala:68 +#: src/Console/AppConsole.vala:67 msgid "Enable verbose debugging output" msgstr "Ayrıntılı hata ayıklama çıktısını etkinleştir" -#: src/Console/AppConsole.vala:69 +#: src/Console/AppConsole.vala:68 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "Tüm istemler için Evet'i kabul edin (etkileşimsiz kip)" -#: src/Console/AppConsole.vala:72 +#: src/Console/AppConsole.vala:71 msgid "A version string taken from the output of --list" msgstr "--list çıktısından alınan sürüm dizgesi" -#: src/Console/AppConsole.vala:73 +#: src/Console/AppConsole.vala:72 msgid "One or more, comma-seperated" msgstr "" -#: src/Console/AppConsole.vala:74 +#: src/Console/AppConsole.vala:73 #, fuzzy msgid "The currently running kernel will always be ignored" msgstr "Aşağıdaki çekirdekler kaldırılacak:" -#: src/Console/AppConsole.vala:152 src/Gtk/AppGtk.vala:122 +#: src/Console/AppConsole.vala:161 src/Gtk/AppGtk.vala:121 msgid "Unknown option" msgstr "Bilinmeyen seçenek" -#: src/Console/AppConsole.vala:153 src/Console/AppConsole.vala:243 -#: src/Console/AppConsole.vala:271 +#: src/Console/AppConsole.vala:162 src/Console/AppConsole.vala:248 +#: src/Console/AppConsole.vala:276 msgid "Run" msgstr "Çalıştır" -#: src/Console/AppConsole.vala:153 +#: src/Console/AppConsole.vala:162 msgid "to list all options" msgstr "tüm seçenekleri listele" -#: src/Console/AppConsole.vala:211 src/Console/AppConsole.vala:251 +#: src/Console/AppConsole.vala:216 src/Console/AppConsole.vala:256 msgid "No kernels specified" msgstr "Çekirdek belirtilmedi" -#: src/Console/AppConsole.vala:217 +#: src/Console/AppConsole.vala:222 msgid "Multiple kernels selected for installation. Select only one." msgstr "Kurulum için birden fazla çekirdek seçildi. Sadece bir tane seçiniz." -#: src/Console/AppConsole.vala:240 +#: src/Console/AppConsole.vala:245 msgid "Could not find requested version" msgstr "İstenen sürüm bulunamadı" -#: src/Console/AppConsole.vala:243 +#: src/Console/AppConsole.vala:248 msgid "and use a version string listed in first column" msgstr "ve ilk sütunda listelenen bir sürüm dizgesini kullanın" -#: src/Console/AppConsole.vala:270 +#: src/Console/AppConsole.vala:275 msgid "Command not specified" msgstr "Komut belirtilmedi" -#: src/Console/AppConsole.vala:271 +#: src/Console/AppConsole.vala:276 msgid "to list all commands" msgstr "tüm komutları listele" -#: src/Console/AppConsole.vala:325 src/Gtk/SettingsDialog.vala:165 -msgid "Show" -msgstr "Göster" +#: src/Console/AppConsole.vala:312 +#, fuzzy +msgid "Notifications disabled in settings" +msgstr "Bildirimler devre dışı bırakılmış" + +#: src/Console/AppConsole.vala:332 +msgid "previously notified" +msgstr "" -#: src/Console/AppConsole.vala:330 src/Console/AppConsole.vala:342 +#: src/Console/AppConsole.vala:335 #, c-format msgid "Kernel %s Available" msgstr "Çekirdek %s Kullanılabilir" -#: src/Console/AppConsole.vala:332 src/Console/AppConsole.vala:344 -#: src/Gtk/MainWindow.vala:266 +#: src/Console/AppConsole.vala:339 src/Gtk/SettingsDialog.vala:164 +msgid "Show" +msgstr "Göster" + +#: src/Console/AppConsole.vala:340 src/Gtk/MainWindow.vala:265 msgid "Install" msgstr "Kur" @@ -296,7 +304,7 @@ msgstr "Hazırlayanlar" msgid "Back" msgstr "Geri" -#: src/Gtk/AboutWindow.vala:185 src/Gtk/TerminalWindow.vala:162 +#: src/Gtk/AboutWindow.vala:185 src/Gtk/TerminalWindow.vala:161 msgid "Close" msgstr "Kapat" @@ -324,160 +332,163 @@ msgstr "Belgelendirenler" msgid "Third Party Inclusions" msgstr "Üçüncü Taraf Eklemeler" -#: src/Gtk/AppGtk.vala:136 +#: src/Gtk/AppGtk.vala:135 #, fuzzy msgid "options" msgstr "Seçenekler" -#: src/Gtk/AppGtk.vala:140 +#: src/Gtk/AppGtk.vala:139 msgid "Print debug information" msgstr "Hata ayıklama bilgisini yazdır" -#: src/Gtk/AppGtk.vala:141 +#: src/Gtk/AppGtk.vala:140 msgid "Show all options" msgstr "Tüm seçenekleri göster" -#: src/Gtk/MainWindow.vala:112 +#: src/Gtk/MainWindow.vala:111 msgid "Kernel" msgstr "Çekirdek" -#: src/Gtk/MainWindow.vala:142 +#: src/Gtk/MainWindow.vala:141 msgid "Status" msgstr "Durum" -#: src/Gtk/MainWindow.vala:276 +#: src/Gtk/MainWindow.vala:275 msgid "Uninstall" msgstr "Kaldır" -#: src/Gtk/MainWindow.vala:286 +#: src/Gtk/MainWindow.vala:285 msgid "Changes" msgstr "Değişiklikler" -#: src/Gtk/MainWindow.vala:308 +#: src/Gtk/MainWindow.vala:307 msgid "Uninstall Old" msgstr "Eskileri Kaldır" -#: src/Gtk/MainWindow.vala:309 +#: src/Gtk/MainWindow.vala:308 msgid "Uninstall kernels older than running kernel" msgstr "Çalışan çekirdekten daha eski çekirdekleri kaldır" -#: src/Gtk/MainWindow.vala:314 +#: src/Gtk/MainWindow.vala:313 msgid "Reload" msgstr "" -#: src/Gtk/MainWindow.vala:319 src/Gtk/SettingsDialog.vala:49 +#: src/Gtk/MainWindow.vala:318 src/Gtk/SettingsDialog.vala:48 msgid "Settings" msgstr "Ayarlar" -#: src/Gtk/MainWindow.vala:324 +#: src/Gtk/MainWindow.vala:323 msgid "About" msgstr "Hakkında" -#: src/Gtk/MainWindow.vala:329 +#: src/Gtk/MainWindow.vala:328 msgid "Exit" msgstr "" -#: src/Gtk/MainWindow.vala:397 +#: src/Gtk/MainWindow.vala:396 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Ubuntu tabanlı dağıtımlar için çekirdek güncelleme aracı" -#: src/Gtk/MainWindow.vala:398 +#: src/Gtk/MainWindow.vala:397 msgid "Forked" msgstr "Çatallandı" -#: src/Gtk/MainWindow.vala:398 +#: src/Gtk/MainWindow.vala:397 msgid "Original" msgstr "Özgün" -#: src/Gtk/MainWindow.vala:436 +#: src/Gtk/MainWindow.vala:435 msgid "Updating kernels" msgstr "" -#: src/Gtk/MainWindow.vala:507 +#: src/Gtk/MainWindow.vala:506 msgid "available" msgstr "mevcut" -#: src/Gtk/MainWindow.vala:550 src/Gtk/MainWindow.vala:590 -#: src/Gtk/MainWindow.vala:624 +#: src/Gtk/MainWindow.vala:549 src/Gtk/MainWindow.vala:589 +#: src/Gtk/MainWindow.vala:623 msgid "DONE" msgstr "" -#: src/Gtk/ProgressWindow.vala:127 src/Gtk/TerminalWindow.vala:152 +#: src/Gtk/ProgressWindow.vala:126 src/Gtk/TerminalWindow.vala:151 msgid "Cancel" msgstr "İptal Et" -#: src/Gtk/SettingsDialog.vala:59 +#: src/Gtk/SettingsDialog.vala:58 msgid "Notification" msgstr "Bildirim" -#: src/Gtk/SettingsDialog.vala:66 +#: src/Gtk/SettingsDialog.vala:65 msgid "Notify if a major release is available" msgstr "Ana sürüm mevcutsa bildir" -#: src/Gtk/SettingsDialog.vala:75 +#: src/Gtk/SettingsDialog.vala:74 msgid "Notify if a point release is available" msgstr "Nokta sürüm mevcutsa bildir" -#: src/Gtk/SettingsDialog.vala:86 +#: src/Gtk/SettingsDialog.vala:85 #, fuzzy msgid "Seconds interval enabled for debugging" msgstr "(--debug için saniye cinsinden aralıklara izin verir)" -#: src/Gtk/SettingsDialog.vala:109 +#: src/Gtk/SettingsDialog.vala:108 msgid "Check every" msgstr "Kontrol aralığı" -#: src/Gtk/SettingsDialog.vala:134 -msgid "Hour(s)" +#: src/Gtk/SettingsDialog.vala:133 +#, fuzzy +msgid "Hours" msgstr "Saat" -#: src/Gtk/SettingsDialog.vala:136 -msgid "Day(s)" -msgstr "Gün" +#: src/Gtk/SettingsDialog.vala:135 +msgid "Days" +msgstr "" -#: src/Gtk/SettingsDialog.vala:138 -msgid "Week(s)" +#: src/Gtk/SettingsDialog.vala:137 +#, fuzzy +msgid "Weeks" msgstr "Hafta" -#: src/Gtk/SettingsDialog.vala:141 -msgid "Second(s)" +#: src/Gtk/SettingsDialog.vala:140 +#, fuzzy +msgid "Seconds" msgstr "Saniye" -#: src/Gtk/SettingsDialog.vala:147 +#: src/Gtk/SettingsDialog.vala:146 msgid "Filters" msgstr "" -#: src/Gtk/SettingsDialog.vala:155 +#: src/Gtk/SettingsDialog.vala:154 msgid "Hide unstable and RC releases" msgstr "Kararsız ve RC sürümleri gizle" -#: src/Gtk/SettingsDialog.vala:177 +#: src/Gtk/SettingsDialog.vala:176 #, fuzzy msgid "previous major versions" msgstr "Önceki ana sürümleri gösterme sayısı " -#: src/Gtk/SettingsDialog.vala:181 +#: src/Gtk/SettingsDialog.vala:180 msgid "Network" msgstr "" -#: src/Gtk/SettingsDialog.vala:192 +#: src/Gtk/SettingsDialog.vala:191 #, fuzzy msgid "Internet connection timeout in" msgstr "İnternet bağlantısı zaman aşımı " -#: src/Gtk/SettingsDialog.vala:204 +#: src/Gtk/SettingsDialog.vala:203 msgid "seconds" msgstr "saniye" -#: src/Gtk/SettingsDialog.vala:211 +#: src/Gtk/SettingsDialog.vala:210 msgid "Max concurrent downloads" msgstr "Azami eşzamanlı indirme" -#: src/Gtk/SettingsDialog.vala:225 +#: src/Gtk/SettingsDialog.vala:224 msgid "Proxy" msgstr "" -#: src/Gtk/l.gtk.vala:43 +#: src/Gtk/l.gtk.vala:42 msgid "Missing Icon" msgstr "Eksik Simge" diff --git a/po/uk.po b/po/uk.po index 3ed55890..4f68715b 100644 --- a/po/uk.po +++ b/po/uk.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-19 16:41-0400\n" +"POT-Creation-Date: 2023-03-21 20:12-0400\n" "PO-Revision-Date: 2019-07-25 11:00+0300\n" "Last-Translator: Serhii Golovko \n" "Language-Team: Ukranian\n" @@ -13,131 +13,131 @@ msgstr "" "X-Launchpad-Export-Date: 2016-12-13 11:48+0000\n" "X-Generator: Poedit 2.2.1\n" -#: src/Common/LinuxKernel.vala:87 +#: src/Common/LinuxKernel.vala:86 msgid "Distribution" msgstr "Дистрибутив" -#: src/Common/LinuxKernel.vala:102 +#: src/Common/LinuxKernel.vala:101 msgid "Architecture" msgstr "Системна архитектура" -#: src/Common/LinuxKernel.vala:277 +#: src/Common/LinuxKernel.vala:276 #, fuzzy msgid "Fetching individual kernel indexes" msgstr "Отримання окремих індексів ядра..." -#: src/Common/LinuxKernel.vala:326 +#: src/Common/LinuxKernel.vala:325 msgid "Updating from" msgstr "" -#: src/Common/LinuxKernel.vala:343 src/Common/LinuxKernel.vala:896 +#: src/Common/LinuxKernel.vala:342 src/Common/LinuxKernel.vala:895 msgid "OK" msgstr "Добре" -#: src/Common/LinuxKernel.vala:346 src/Common/LinuxKernel.vala:899 +#: src/Common/LinuxKernel.vala:345 src/Common/LinuxKernel.vala:898 msgid "FAILED" msgstr "" -#: src/Common/LinuxKernel.vala:760 +#: src/Common/LinuxKernel.vala:759 msgid "Packages Available" msgstr "Доступні пакети" -#: src/Common/LinuxKernel.vala:765 +#: src/Common/LinuxKernel.vala:764 msgid "Packages Installed" msgstr "Встановлені пакети" -#: src/Common/LinuxKernel.vala:778 src/lib/TeeJee.FileSystem.vala:121 +#: src/Common/LinuxKernel.vala:777 src/lib/TeeJee.FileSystem.vala:121 msgid "File not found" msgstr "Файл не знайдено" -#: src/Common/LinuxKernel.vala:842 +#: src/Common/LinuxKernel.vala:841 msgid "Available Kernels" msgstr "Доступні ядра" -#: src/Common/LinuxKernel.vala:849 src/Gtk/MainWindow.vala:155 +#: src/Common/LinuxKernel.vala:848 src/Gtk/MainWindow.vala:154 msgid "Installed" msgstr "Встановлено" -#: src/Common/LinuxKernel.vala:849 src/Gtk/MainWindow.vala:155 -#: src/Gtk/MainWindow.vala:498 src/Gtk/MainWindow.vala:511 +#: src/Common/LinuxKernel.vala:848 src/Gtk/MainWindow.vala:154 +#: src/Gtk/MainWindow.vala:497 src/Gtk/MainWindow.vala:510 msgid "Running" msgstr "Використовується" -#: src/Common/LinuxKernel.vala:884 +#: src/Common/LinuxKernel.vala:883 msgid "Downloading" msgstr "Завантаження" -#: src/Common/LinuxKernel.vala:912 +#: src/Common/LinuxKernel.vala:911 #, fuzzy msgid "is already installed." msgstr "Це ядро вже встановлено." -#: src/Common/LinuxKernel.vala:942 +#: src/Common/LinuxKernel.vala:941 msgid "Uninstalling selected kernels" msgstr "Видаліть конкретні ядра" -#: src/Common/LinuxKernel.vala:948 +#: src/Common/LinuxKernel.vala:947 msgid "requested" msgstr "запитуваний" -#: src/Common/LinuxKernel.vala:951 +#: src/Common/LinuxKernel.vala:950 #, fuzzy msgid "not uninstalling the currently running kernel" msgstr "пропускаючи поточне завантажене ядро" -#: src/Common/LinuxKernel.vala:967 +#: src/Common/LinuxKernel.vala:966 msgid "found" msgstr "знайдено" -#: src/Common/LinuxKernel.vala:970 +#: src/Common/LinuxKernel.vala:969 msgid "No packages to un-install!" msgstr "Немає пакетів для видалення!" -#: src/Common/LinuxKernel.vala:1018 +#: src/Common/LinuxKernel.vala:1017 msgid "Could not find running kernel in list" msgstr "Не вдалося знайти запущене ядро у списку!" -#: src/Common/LinuxKernel.vala:1023 +#: src/Common/LinuxKernel.vala:1022 msgid "Could not find any kernels to uninstall" msgstr "Не вдалося знайти жодне ядро для вилучення" -#: src/Common/LinuxKernel.vala:1031 +#: src/Common/LinuxKernel.vala:1030 #, fuzzy msgid "The following kernels will be uninstalled" msgstr "Наступні ядра будуть видалені:" -#: src/Common/LinuxKernel.vala:1035 +#: src/Common/LinuxKernel.vala:1034 msgid "Continue ?" msgstr "Продовжувати ?" -#: src/Common/LinuxKernel.vala:1057 src/Console/AppConsole.vala:285 +#: src/Common/LinuxKernel.vala:1056 src/Console/AppConsole.vala:290 msgid "Latest update" msgstr "Останнє оновлення" -#: src/Common/LinuxKernel.vala:1068 src/Console/AppConsole.vala:292 +#: src/Common/LinuxKernel.vala:1067 src/Console/AppConsole.vala:297 msgid "Latest point update" msgstr "Остання точка оновлення" -#: src/Common/LinuxKernel.vala:1076 src/Console/AppConsole.vala:297 -#: src/Console/AppConsole.vala:352 +#: src/Common/LinuxKernel.vala:1075 src/Console/AppConsole.vala:302 +#: src/Console/AppConsole.vala:318 msgid "No updates found" msgstr "Оновлень не знайдено" -#: src/Common/LinuxKernel.vala:1085 +#: src/Common/LinuxKernel.vala:1084 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Встановити Ядро Версії %s ? (так/ні): " -#: src/Common/Main.vala:281 +#: src/Common/Main.vala:300 msgid "Called from" msgstr "Викликано з" -#: src/Common/Main.vala:282 +#: src/Common/Main.vala:301 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" -#: src/Common/Main.vala:314 +#: src/Common/Main.vala:333 msgid "Notifications are disabled" msgstr "Повідомлення вимкнено" @@ -146,140 +146,148 @@ msgstr "Повідомлення вимкнено" msgid "File not found: %s" msgstr "Файл не знайдено" -#: src/Console/AppConsole.vala:48 src/Gtk/AppGtk.vala:136 +#: src/Console/AppConsole.vala:47 src/Gtk/AppGtk.vala:135 msgid "Syntax" msgstr "Синтаксис" -#: src/Console/AppConsole.vala:50 +#: src/Console/AppConsole.vala:49 msgid "Commands" msgstr "Команди" -#: src/Console/AppConsole.vala:52 +#: src/Console/AppConsole.vala:51 msgid "Check for kernel updates" msgstr "Перевірити оновлення ядра" -#: src/Console/AppConsole.vala:53 +#: src/Console/AppConsole.vala:52 msgid "Check for kernel updates and notify current user" msgstr "Перевірте наявність оновлень ядра та повідомте поточного користувача" -#: src/Console/AppConsole.vala:54 +#: src/Console/AppConsole.vala:53 msgid "List all available mainline kernels" msgstr "Список усіх доступних основних ядер" -#: src/Console/AppConsole.vala:55 +#: src/Console/AppConsole.vala:54 msgid "List installed kernels" msgstr "Список встановлених ядер" -#: src/Console/AppConsole.vala:56 +#: src/Console/AppConsole.vala:55 msgid "Install latest mainline kernel" msgstr "Встановіть останнє основне ядро" -#: src/Console/AppConsole.vala:57 +#: src/Console/AppConsole.vala:56 msgid "Install latest point update for current series" msgstr "Встановіть останню точку оновлення для поточної серії" -#: src/Console/AppConsole.vala:58 +#: src/Console/AppConsole.vala:57 msgid "Install specified mainline kernel" msgstr "Встановіть конкретне основне ядро" -#: src/Console/AppConsole.vala:59 +#: src/Console/AppConsole.vala:58 msgid "Uninstall specified kernel" msgstr "Видаліть конкретні ядра" -#: src/Console/AppConsole.vala:60 +#: src/Console/AppConsole.vala:59 #, fuzzy msgid "Uninstall kernels older than the latest installed" msgstr "Видаліть ядра, старші за запущене ядро" -#: src/Console/AppConsole.vala:61 +#: src/Console/AppConsole.vala:60 msgid "Download specified kernels" msgstr "Завантажте конкретні ядра" -#: src/Console/AppConsole.vala:62 +#: src/Console/AppConsole.vala:61 msgid "Delete cached info about available kernels" msgstr "Видалити кешовану інформацію про доступні ядра" -#: src/Console/AppConsole.vala:64 src/Gtk/AppGtk.vala:138 +#: src/Console/AppConsole.vala:63 src/Gtk/AppGtk.vala:137 msgid "Options" msgstr "Параметри" -#: src/Console/AppConsole.vala:66 +#: src/Console/AppConsole.vala:65 msgid "Include unstable and RC releases" msgstr "Включати нестабільні і RC" -#: src/Console/AppConsole.vala:67 +#: src/Console/AppConsole.vala:66 msgid "Exclude unstable and RC releases" msgstr "Виключити нестабільні та RC випуски" -#: src/Console/AppConsole.vala:68 +#: src/Console/AppConsole.vala:67 msgid "Enable verbose debugging output" msgstr "Увімкнути вивід налагодження" -#: src/Console/AppConsole.vala:69 +#: src/Console/AppConsole.vala:68 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "Так для всіх підказок (неінтерактивний режим)" -#: src/Console/AppConsole.vala:72 +#: src/Console/AppConsole.vala:71 msgid "A version string taken from the output of --list" msgstr "Рядок версій, взятий з виводу --list" -#: src/Console/AppConsole.vala:73 +#: src/Console/AppConsole.vala:72 msgid "One or more, comma-seperated" msgstr "" -#: src/Console/AppConsole.vala:74 +#: src/Console/AppConsole.vala:73 #, fuzzy msgid "The currently running kernel will always be ignored" msgstr "Наступні ядра будуть видалені:" -#: src/Console/AppConsole.vala:152 src/Gtk/AppGtk.vala:122 +#: src/Console/AppConsole.vala:161 src/Gtk/AppGtk.vala:121 msgid "Unknown option" msgstr "Невідомий параметр" -#: src/Console/AppConsole.vala:153 src/Console/AppConsole.vala:243 -#: src/Console/AppConsole.vala:271 +#: src/Console/AppConsole.vala:162 src/Console/AppConsole.vala:248 +#: src/Console/AppConsole.vala:276 msgid "Run" msgstr "Запуск" -#: src/Console/AppConsole.vala:153 +#: src/Console/AppConsole.vala:162 msgid "to list all options" msgstr "Показати усі параметри" -#: src/Console/AppConsole.vala:211 src/Console/AppConsole.vala:251 +#: src/Console/AppConsole.vala:216 src/Console/AppConsole.vala:256 msgid "No kernels specified" msgstr "Ядра не вказані" -#: src/Console/AppConsole.vala:217 +#: src/Console/AppConsole.vala:222 msgid "Multiple kernels selected for installation. Select only one." msgstr "Для встановлення вибрано кілька ядер. Виберіть лише одну." -#: src/Console/AppConsole.vala:240 +#: src/Console/AppConsole.vala:245 msgid "Could not find requested version" msgstr "Не вдалося знайти запитувану версію" -#: src/Console/AppConsole.vala:243 +#: src/Console/AppConsole.vala:248 msgid "and use a version string listed in first column" msgstr "і використовувати рядок версій, вказаний у першому стовпці" -#: src/Console/AppConsole.vala:270 +#: src/Console/AppConsole.vala:275 msgid "Command not specified" msgstr "Команда не вказана" -#: src/Console/AppConsole.vala:271 +#: src/Console/AppConsole.vala:276 msgid "to list all commands" msgstr "щоб відобразити всі команди" -#: src/Console/AppConsole.vala:325 src/Gtk/SettingsDialog.vala:165 -msgid "Show" -msgstr "Показати" +#: src/Console/AppConsole.vala:312 +#, fuzzy +msgid "Notifications disabled in settings" +msgstr "Повідомлення вимкнено" + +#: src/Console/AppConsole.vala:332 +msgid "previously notified" +msgstr "" -#: src/Console/AppConsole.vala:330 src/Console/AppConsole.vala:342 +#: src/Console/AppConsole.vala:335 #, c-format msgid "Kernel %s Available" msgstr "Ядро %s Доступне" -#: src/Console/AppConsole.vala:332 src/Console/AppConsole.vala:344 -#: src/Gtk/MainWindow.vala:266 +#: src/Console/AppConsole.vala:339 src/Gtk/SettingsDialog.vala:164 +msgid "Show" +msgstr "Показати" + +#: src/Console/AppConsole.vala:340 src/Gtk/MainWindow.vala:265 msgid "Install" msgstr "Встановити" @@ -291,7 +299,7 @@ msgstr "Творці" msgid "Back" msgstr "Назад" -#: src/Gtk/AboutWindow.vala:185 src/Gtk/TerminalWindow.vala:162 +#: src/Gtk/AboutWindow.vala:185 src/Gtk/TerminalWindow.vala:161 msgid "Close" msgstr "Закрити" @@ -319,159 +327,162 @@ msgstr "Документатори" msgid "Third Party Inclusions" msgstr "Включення третіх осіб" -#: src/Gtk/AppGtk.vala:136 +#: src/Gtk/AppGtk.vala:135 msgid "options" msgstr "параметри" -#: src/Gtk/AppGtk.vala:140 +#: src/Gtk/AppGtk.vala:139 msgid "Print debug information" msgstr "Роздрукувати зневадження" -#: src/Gtk/AppGtk.vala:141 +#: src/Gtk/AppGtk.vala:140 msgid "Show all options" msgstr "Показати усі параметри" -#: src/Gtk/MainWindow.vala:112 +#: src/Gtk/MainWindow.vala:111 msgid "Kernel" msgstr "Ядро" -#: src/Gtk/MainWindow.vala:142 +#: src/Gtk/MainWindow.vala:141 msgid "Status" msgstr "Стан" -#: src/Gtk/MainWindow.vala:276 +#: src/Gtk/MainWindow.vala:275 msgid "Uninstall" msgstr "Видалити" -#: src/Gtk/MainWindow.vala:286 +#: src/Gtk/MainWindow.vala:285 msgid "Changes" msgstr "Зміни" -#: src/Gtk/MainWindow.vala:308 +#: src/Gtk/MainWindow.vala:307 msgid "Uninstall Old" msgstr "Видалити старе" -#: src/Gtk/MainWindow.vala:309 +#: src/Gtk/MainWindow.vala:308 msgid "Uninstall kernels older than running kernel" msgstr "Видалити ядра, старіші за запущене ядро" -#: src/Gtk/MainWindow.vala:314 +#: src/Gtk/MainWindow.vala:313 msgid "Reload" msgstr "Перезавантажити" -#: src/Gtk/MainWindow.vala:319 src/Gtk/SettingsDialog.vala:49 +#: src/Gtk/MainWindow.vala:318 src/Gtk/SettingsDialog.vala:48 msgid "Settings" msgstr "Налаштування" -#: src/Gtk/MainWindow.vala:324 +#: src/Gtk/MainWindow.vala:323 msgid "About" msgstr "Про программу" -#: src/Gtk/MainWindow.vala:329 +#: src/Gtk/MainWindow.vala:328 msgid "Exit" msgstr "Вихід" -#: src/Gtk/MainWindow.vala:397 +#: src/Gtk/MainWindow.vala:396 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Програма оновлення ядра для дистрибутивів на базі Ubuntu" -#: src/Gtk/MainWindow.vala:398 +#: src/Gtk/MainWindow.vala:397 msgid "Forked" msgstr "Двоєний" -#: src/Gtk/MainWindow.vala:398 +#: src/Gtk/MainWindow.vala:397 msgid "Original" msgstr "Оригінал" -#: src/Gtk/MainWindow.vala:436 +#: src/Gtk/MainWindow.vala:435 msgid "Updating kernels" msgstr "" -#: src/Gtk/MainWindow.vala:507 +#: src/Gtk/MainWindow.vala:506 msgid "available" msgstr "доступний" -#: src/Gtk/MainWindow.vala:550 src/Gtk/MainWindow.vala:590 -#: src/Gtk/MainWindow.vala:624 +#: src/Gtk/MainWindow.vala:549 src/Gtk/MainWindow.vala:589 +#: src/Gtk/MainWindow.vala:623 msgid "DONE" msgstr "ГОТОВО" -#: src/Gtk/ProgressWindow.vala:127 src/Gtk/TerminalWindow.vala:152 +#: src/Gtk/ProgressWindow.vala:126 src/Gtk/TerminalWindow.vala:151 msgid "Cancel" msgstr "Відміна" -#: src/Gtk/SettingsDialog.vala:59 +#: src/Gtk/SettingsDialog.vala:58 msgid "Notification" msgstr "Повідомлення" -#: src/Gtk/SettingsDialog.vala:66 +#: src/Gtk/SettingsDialog.vala:65 msgid "Notify if a major release is available" msgstr "Повідомити, чи доступний великий випуск" -#: src/Gtk/SettingsDialog.vala:75 +#: src/Gtk/SettingsDialog.vala:74 msgid "Notify if a point release is available" msgstr "Повідомити, чи доступний невеликий випуск" -#: src/Gtk/SettingsDialog.vala:86 +#: src/Gtk/SettingsDialog.vala:85 #, fuzzy msgid "Seconds interval enabled for debugging" msgstr "(Дозволити інтервали в секундах для --debug)" -#: src/Gtk/SettingsDialog.vala:109 +#: src/Gtk/SettingsDialog.vala:108 msgid "Check every" msgstr "Перевіряти кожні" -#: src/Gtk/SettingsDialog.vala:134 -msgid "Hour(s)" +#: src/Gtk/SettingsDialog.vala:133 +#, fuzzy +msgid "Hours" msgstr "Година(Годин)" -#: src/Gtk/SettingsDialog.vala:136 -msgid "Day(s)" -msgstr "День(Днів)" +#: src/Gtk/SettingsDialog.vala:135 +msgid "Days" +msgstr "" -#: src/Gtk/SettingsDialog.vala:138 -msgid "Week(s)" +#: src/Gtk/SettingsDialog.vala:137 +#, fuzzy +msgid "Weeks" msgstr "Тиждень(ні)" -#: src/Gtk/SettingsDialog.vala:141 -msgid "Second(s)" +#: src/Gtk/SettingsDialog.vala:140 +#, fuzzy +msgid "Seconds" msgstr "Секунда(и)" -#: src/Gtk/SettingsDialog.vala:147 +#: src/Gtk/SettingsDialog.vala:146 msgid "Filters" msgstr "" -#: src/Gtk/SettingsDialog.vala:155 +#: src/Gtk/SettingsDialog.vala:154 msgid "Hide unstable and RC releases" msgstr "Приховати нестабільні і RC" -#: src/Gtk/SettingsDialog.vala:177 +#: src/Gtk/SettingsDialog.vala:176 #, fuzzy msgid "previous major versions" msgstr "Показати N попередніх основних версій " -#: src/Gtk/SettingsDialog.vala:181 +#: src/Gtk/SettingsDialog.vala:180 msgid "Network" msgstr "" -#: src/Gtk/SettingsDialog.vala:192 +#: src/Gtk/SettingsDialog.vala:191 #, fuzzy msgid "Internet connection timeout in" msgstr "Час очікування підключення до Інтернету в " -#: src/Gtk/SettingsDialog.vala:204 +#: src/Gtk/SettingsDialog.vala:203 msgid "seconds" msgstr "секунди" -#: src/Gtk/SettingsDialog.vala:211 +#: src/Gtk/SettingsDialog.vala:210 msgid "Max concurrent downloads" msgstr "Максимальна кількість завантажень" -#: src/Gtk/SettingsDialog.vala:225 +#: src/Gtk/SettingsDialog.vala:224 msgid "Proxy" msgstr "" -#: src/Gtk/l.gtk.vala:43 +#: src/Gtk/l.gtk.vala:42 msgid "Missing Icon" msgstr "Нема значка" diff --git a/src/Common/LinuxKernel.vala b/src/Common/LinuxKernel.vala index 2725f9e4..6e8f329f 100644 --- a/src/Common/LinuxKernel.vala +++ b/src/Common/LinuxKernel.vala @@ -1,6 +1,5 @@ using TeeJee.FileSystem; -using TeeJee.JsonHelper; using TeeJee.ProcessHelper; using TeeJee.Misc; using l.misc; diff --git a/src/Common/Main.vala b/src/Common/Main.vala index f7845cfe..5de1ef3b 100644 --- a/src/Common/Main.vala +++ b/src/Common/Main.vala @@ -26,7 +26,6 @@ using Gee; using Json; using TeeJee.FileSystem; -using TeeJee.JsonHelper; using TeeJee.ProcessHelper; using TeeJee.Misc; using l.misc; @@ -38,11 +37,30 @@ using l.misc; [CCode(cname="BRANDING_AUTHOREMAIL")] extern const string BRANDING_AUTHOREMAIL; [CCode(cname="BRANDING_WEBSITE")] extern const string BRANDING_WEBSITE; [CCode(cname="INSTALL_PREFIX")] extern const string INSTALL_PREFIX; -[CCode(cname="DEFAULT_PPA_URI")] extern const string DEFAULT_PPA_URI; private const string LOCALE_DIR = INSTALL_PREFIX + "/share/locale"; private const string APP_LIB_DIR = INSTALL_PREFIX + "/lib/" + BRANDING_SHORTNAME; +// .h files are a pain in the ass in vala so dump these "defines" here +const string DEFAULT_PPA_URI = "https://kernel.ubuntu.com/~kernel-ppa/mainline/"; +const string DEFAULT_ALL_PROXY = ""; +const bool DEFAULT_NOTIFY_MAJOR = false; +const bool DEFAULT_NOTIFY_MINOR = false; +const bool DEFAULT_HIDE_UNSTABLE = true; +const int DEFAULT_PREVIOUS_MAJORS = 0; +const int DEFAULT_NOTIFY_INTERVAL_VALUE = 4; // +const int DEFAULT_NOTIFY_INTERVAL_UNIT = 0; // FIXME should really be an enum or string 0=hours, 1=days, 2=weeks, 3=seconds +const int DEFAULT_CONNECT_TIMEOUT_SECONDS = 15; +const int DEFAULT_CONCURRENT_DOWNLOADS = 1; +const int DEFAULT_WINDOW_WIDTH = 800; +const int DEFAULT_WINDOW_HEIGHT = 600; +const int DEFAULT_WINDOW_X = -1; +const int DEFAULT_WINDOW_Y = -1; +const int DEFAULT_TERM_WIDTH = 1100; +const int DEFAULT_TERM_HEIGHT = 600; +//const int DEFAULT_TERM_X = -1; +//const int DEFAULT_TERM_Y = -1; + extern void exit(int exit_code); public class Main : GLib.Object { @@ -62,7 +80,7 @@ public class Main : GLib.Object { public string user_login = ""; public string user_home = ""; - public string CACHE_DIR = "~/.cache/"+BRANDING_SHORTNAME ; // non-empty for safety + public string CACHE_DIR = "~/.cache/"+BRANDING_SHORTNAME ; // some hard-coded non-empty for rm -rf safety // global progress ---------------- @@ -81,35 +99,36 @@ public class Main : GLib.Object { public bool ppa_up = true; public bool index_is_fresh = false; - public int window_width = 800; - public int window_height = 600; - public int _window_width = 800; - public int _window_height = 600; - public int window_x = -1; - public int window_y = -1; - public int _window_x = -1; - public int _window_y = -1; - - public int term_width = 1100; - public int term_height = 600; - public int _term_width = 1100; - public int _term_height = 600; -/* - public int term_x = -1; - public int term_y = -1; - public int _term_x = -1; - public int _term_y = -1; + public int window_width = DEFAULT_WINDOW_WIDTH; + public int window_height = DEFAULT_WINDOW_HEIGHT; + public int _window_width = DEFAULT_WINDOW_WIDTH; + public int _window_height = DEFAULT_WINDOW_HEIGHT; + public int window_x = DEFAULT_WINDOW_X; + public int window_y = DEFAULT_WINDOW_Y; + public int _window_x = DEFAULT_WINDOW_X; + public int _window_y = DEFAULT_WINDOW_Y; + + public int term_width = DEFAULT_TERM_WIDTH; + public int term_height = DEFAULT_TERM_HEIGHT; + public int _term_width = DEFAULT_TERM_WIDTH; + public int _term_height = DEFAULT_TERM_HEIGHT; +/* // positioning terminal window is not working + public int term_x = DEFAULT_TERM_X; + public int term_y = DEFAULT_TERM_Y; + public int _term_x = DEFAULT_TERM_X; + public int _term_y = DEFAULT_TERM_Y; */ + public string ppa_uri = DEFAULT_PPA_URI; - public string all_proxy = ""; - public bool notify_major = false; - public bool notify_minor = false; - public bool hide_unstable = true; - public int previous_majors = 0; - public int notify_interval_unit = 0; - public int notify_interval_value = 4; - public int connect_timeout_seconds = 15; - public int concurrent_downloads = 1; + public string all_proxy = DEFAULT_ALL_PROXY; + public bool notify_major = DEFAULT_NOTIFY_MAJOR; + public bool notify_minor = DEFAULT_NOTIFY_MINOR; + public bool hide_unstable = DEFAULT_HIDE_UNSTABLE; + public int previous_majors = DEFAULT_PREVIOUS_MAJORS; + public int notify_interval_unit = DEFAULT_NOTIFY_INTERVAL_UNIT; + public int notify_interval_value = DEFAULT_NOTIFY_INTERVAL_VALUE; + public int connect_timeout_seconds = DEFAULT_CONNECT_TIMEOUT_SECONDS; + public int concurrent_downloads = DEFAULT_CONCURRENT_DOWNLOADS; public bool confirm = true; // constructors ------------ @@ -164,22 +183,22 @@ public class Main : GLib.Object { var config = new Json.Object(); config.set_string_member("ppa_uri", ppa_uri); config.set_string_member("all_proxy", all_proxy); - config.set_string_member("notify_major", notify_major.to_string()); - config.set_string_member("notify_minor", notify_minor.to_string()); - config.set_string_member("hide_unstable", hide_unstable.to_string()); - config.set_string_member("previous_majors", previous_majors.to_string()); - config.set_string_member("notify_interval_unit", notify_interval_unit.to_string()); - config.set_string_member("notify_interval_value", notify_interval_value.to_string()); - config.set_string_member("connect_timeout_seconds", connect_timeout_seconds.to_string()); - config.set_string_member("concurrent_downloads", concurrent_downloads.to_string()); - config.set_string_member("window_width", window_width.to_string()); - config.set_string_member("window_height", window_height.to_string()); - config.set_string_member("window_x", window_x.to_string()); - config.set_string_member("window_y", window_y.to_string()); - config.set_string_member("term_width", term_width.to_string()); - config.set_string_member("term_height", term_height.to_string()); -// config.set_string_member("term_x", term_x.to_string()); -// config.set_string_member("term_y", term_y.to_string()); + config.set_boolean_member("notify_major", notify_major); + config.set_boolean_member("notify_minor", notify_minor); + config.set_boolean_member("hide_unstable", hide_unstable); + config.set_int_member("previous_majors", previous_majors); + config.set_int_member("notify_interval_unit", notify_interval_unit); + config.set_int_member("notify_interval_value", notify_interval_value); + config.set_int_member("connect_timeout_seconds", connect_timeout_seconds); + config.set_int_member("concurrent_downloads", concurrent_downloads); + config.set_int_member("window_width", window_width); + config.set_int_member("window_height", window_height); + config.set_int_member("window_x", window_x); + config.set_int_member("window_y", window_y); + config.set_int_member("term_width", term_width); + config.set_int_member("term_height", term_height); +// config.set_int_member("term_x", term_x); +// config.set_int_member("term_y", term_y); var json = new Json.Generator(); json.pretty = true; @@ -207,11 +226,10 @@ public class Main : GLib.Object { var parser = new Json.Parser(); - if (!file_exists(APP_CONFIG_FILE)) save_app_config(); bool cf = true; try { parser.load_from_file(APP_CONFIG_FILE); } - catch (Error e) { cf = false; vprint(e.message,1,stderr); } + catch (Error e) { cf = false; vprint(e.message,2); } if (!cf) { save_app_config(); try { parser.load_from_file(APP_CONFIG_FILE); } @@ -221,30 +239,31 @@ public class Main : GLib.Object { var node = parser.get_root(); var config = node.get_object(); - ppa_uri = json_get_string(config, "ppa_uri", DEFAULT_PPA_URI); - all_proxy = json_get_string(config, "all_proxy", all_proxy); - notify_major = json_get_bool(config, "notify_major", notify_major); - notify_minor = json_get_bool(config, "notify_minor", notify_minor); - notify_interval_unit = json_get_int(config, "notify_interval_unit", notify_interval_unit); - notify_interval_value = json_get_int(config, "notify_interval_value", notify_interval_value); - connect_timeout_seconds = json_get_int(config, "connect_timeout_seconds", connect_timeout_seconds); - concurrent_downloads = json_get_int(config, "concurrent_downloads", concurrent_downloads); - hide_unstable = json_get_bool(config, "hide_unstable", hide_unstable); - previous_majors = json_get_int(config, "previous_majors", previous_majors); - window_width = json_get_int(config, "window_width", window_width); - window_height = json_get_int(config, "window_height", window_height); - window_x = json_get_int(config, "window_x", window_x); - window_y = json_get_int(config, "window_y", window_y); - term_width = json_get_int(config, "term_width", term_width); - term_height = json_get_int(config, "term_height", term_height); -// term_x = json_get_int(config, "term_x", term_x); -// term_y = json_get_int(config, "term_y", term_y); - - // fixups - //if (ppa_uri.length==0) ppa_uri = DEFAULT_PPA_URI; + ppa_uri = config.get_string_member_with_default("ppa_uri",DEFAULT_PPA_URI); + if (ppa_uri.length==0) ppa_uri = DEFAULT_PPA_URI; if (!ppa_uri.has_suffix("/")) ppa_uri += "/"; LinuxKernel.PPA_URI = ppa_uri; + all_proxy = config.get_string_member_with_default("all_proxy",DEFAULT_ALL_PROXY); + notify_major = config.get_boolean_member_with_default("notify_major",DEFAULT_NOTIFY_MAJOR); + notify_minor = config.get_boolean_member_with_default("notify_minor",DEFAULT_NOTIFY_MINOR); + notify_interval_unit = (int)config.get_int_member_with_default("notify_interval_unit",DEFAULT_NOTIFY_INTERVAL_UNIT); + notify_interval_value = (int)config.get_int_member_with_default("notify_interval_value",DEFAULT_NOTIFY_INTERVAL_VALUE); + connect_timeout_seconds = (int)config.get_int_member_with_default("connect_timeout_seconds",DEFAULT_CONNECT_TIMEOUT_SECONDS); + concurrent_downloads = (int)config.get_int_member_with_default("concurrent_downloads",DEFAULT_CONCURRENT_DOWNLOADS); + hide_unstable = config.get_boolean_member_with_default("hide_unstable",DEFAULT_HIDE_UNSTABLE); + previous_majors = (int)config.get_int_member_with_default("previous_majors",DEFAULT_PREVIOUS_MAJORS); + + window_width = (int)config.get_int_member_with_default("window_width",DEFAULT_WINDOW_WIDTH); + window_height = (int)config.get_int_member_with_default("window_height",DEFAULT_WINDOW_HEIGHT); + window_x = (int)config.get_int_member_with_default("window_x",DEFAULT_WINDOW_X); + window_y = (int)config.get_int_member_with_default("window_y",DEFAULT_WINDOW_Y); + term_width = (int)config.get_int_member_with_default("term_width",DEFAULT_TERM_WIDTH); + term_height = (int)config.get_int_member_with_default("term_height",DEFAULT_TERM_HEIGHT); + //term_x = (int)config.get_int_member_with_default("term_x",DEFAULT_TERM_X); + //term_y = (int)config.get_int_member_with_default("term_y",DEFAULT_TERM_Y); + + vprint("Loaded config file: "+APP_CONFIG_FILE,2); } diff --git a/src/Console/AppConsole.vala b/src/Console/AppConsole.vala index 17023eee..3562108c 100644 --- a/src/Console/AppConsole.vala +++ b/src/Console/AppConsole.vala @@ -24,7 +24,6 @@ using Gee; using Json; using TeeJee.FileSystem; -using TeeJee.JsonHelper; using TeeJee.ProcessHelper; using TeeJee.Misc; using l.misc; @@ -36,7 +35,7 @@ public class AppConsole : GLib.Object { public static int main (string[] args) { set_locale(); App = new Main(args, false); - var console = new AppConsole(); + var console = new AppConsole(); bool is_success = console.parse_arguments(args); return (is_success) ? 0 : 1; } @@ -90,12 +89,14 @@ public class AppConsole : GLib.Object { string cmd = ""; string cmd_versions = ""; + string a = ""; // parse options first -------------- for (int i = 1; i < args.length; i++) { - switch (args[i].down()) { + a = args[i].down(); + switch (a) { case "--debug": App.VERBOSE = 2; break; @@ -128,22 +129,30 @@ public class AppConsole : GLib.Object { case "--uninstall-old": case "--clean-cache": // back compat case "--delete-cache": - cmd = args[i].down(); + cmd = a; break; case "--remove": // back compat + cmd = "--uninstall"; + if (++i < args.length) cmd_versions = args[i]; + break; + case "--uninstall": case "--download": case "--install": - // FUGLY - cmd = args[i].down(); + cmd = a; if (++i < args.length) cmd_versions = args[i]; - if (cmd == "--remove") cmd="--uninstall"; // re-write so we don't have to check all synonyms later blergh crap break; + // which is better for no args ? + case "": // no args -> --list + cmd = "--list"; + break; + + //case "": // no args -> --help case "--help": - case "--h": case "-h": + case "-?": vprint(help_message(),0); return true; @@ -159,19 +168,16 @@ public class AppConsole : GLib.Object { switch (cmd) { case "--list": - LinuxKernel.query(true); LinuxKernel.print_list(); break; case "--list-installed": - Package.update_dpkg_list(); LinuxKernel.check_installed(); break; case "--check": - print_updates(); break; @@ -183,18 +189,15 @@ public class AppConsole : GLib.Object { break; case "--install-latest": - LinuxKernel.kinst_latest(false, App.confirm); break; case "--install-point": - LinuxKernel.kinst_latest(true, App.confirm); break; case "--purge-old-kernels": // back compat case "--uninstall-old": - LinuxKernel.kunin_old(App.confirm); break; @@ -207,12 +210,14 @@ public class AppConsole : GLib.Object { case "--install": case "--uninstall": + // FIXME move this list-builder out of the switch + if (cmd_versions.length==0) { vprint(_("No kernels specified"),1,stderr); exit(1); } - string[] requested_versions = cmd_versions.split(","); + string[] requested_versions = cmd_versions.split_set(",;:| "); if ((requested_versions.length > 1) && (cmd == "--install")) { vprint(_("Multiple kernels selected for installation. Select only one."),1,stderr); exit(1); @@ -266,7 +271,7 @@ public class AppConsole : GLib.Object { break; default: - // unknown option + // unknown command vprint(_("Command not specified"),1,stderr); vprint(_("Run")+" '"+args[0]+" --help' "+_("to list all commands"),1,stderr); break; @@ -301,55 +306,42 @@ public class AppConsole : GLib.Object { } private void notify_user() { + vprint("notify_user()",4); + + if (!App.notify_major && !App.notify_minor) { + vprint(_("Notifications disabled in settings"),4); + return; + } LinuxKernel.query(true); - string seen_maj = ""; - string seen_min = ""; - if (file_exists(App.MAJ_SEEN_FILE)) seen_maj = file_read(App.MAJ_SEEN_FILE).strip(); - if (file_exists(App.MIN_SEEN_FILE)) seen_min = file_read(App.MIN_SEEN_FILE).strip(); - vprint("seen_maj:\""+seen_maj+"\"",2); - vprint("seen_min:\""+seen_min+"\"",2); - - string debug_action = ""; - string close_action = ""; // command to run when user closes notification instead of pressing any action button - string body = ""; - var alist = new Gee.ArrayList (); // notification action buttons: "buttonlabel:command line to run" - - if (App.notify_major || App.notify_minor) { - if (App.VERBOSE>1) { - debug_action = APP_LIB_DIR+"/notify-action-debug.sh"; - body = debug_action; - debug_action += " "; - } - alist.add(_("Show")+":"+debug_action+BRANDING_SHORTNAME+"-gtk"); + string title = _("No updates found"); + string seen = ""; + var k = new LinuxKernel("",true); + + if (App.notify_major) { + if (file_exists(App.MAJ_SEEN_FILE)) seen = file_read(App.MAJ_SEEN_FILE).strip(); + k = LinuxKernel.kernel_update_major; + if (k!=null && seen!=k.version_main) file_write(App.MAJ_SEEN_FILE,k.version_main); + } else if (App.notify_minor) { + if (file_exists(App.MIN_SEEN_FILE)) seen = file_read(App.MIN_SEEN_FILE).strip(); + k = LinuxKernel.kernel_update_minor; + if (k!=null && seen!=k.version_main) file_write(App.MIN_SEEN_FILE,k.version_main); } - var k = LinuxKernel.kernel_update_major; - if (App.notify_major && (k!=null) && (seen_maj!=k.version_main)) { - var title = _("Kernel %s Available").printf(k.version_main); - if (App.notify_major || App.notify_minor) { - alist.add(_("Install")+":"+debug_action+BRANDING_SHORTNAME+"-gtk --install "+k.version_main); - file_write(App.MAJ_SEEN_FILE,k.version_main); - OSDNotify.notify_send(title,body,alist,close_action); - } - vprint(title); - return; - } + vprint(_("previously notified")+": \""+seen+"\"",3); - k = LinuxKernel.kernel_update_minor; - if (App.notify_minor && (k!=null) && (seen_min!=k.version_main)) { - var title = _("Kernel %s Available").printf(k.version_main); - if (App.notify_major || App.notify_minor) { - alist.add(_("Install")+":"+debug_action+BRANDING_SHORTNAME+"-gtk --install "+k.version_main); - file_write(App.MIN_SEEN_FILE,k.version_main); - OSDNotify.notify_send(title,body,alist,close_action); - } - vprint(title); - return; + if (k!=null) { + title = _("Kernel %s Available").printf(k.version_main); + string close_action = ""; // command to run when user closes notification without pressing any action button + string body = ""; // notification message body + var alist = new Gee.ArrayList (); // notification action buttons: "buttonlabel:command line to run" + alist.add(_("Show")+":"+BRANDING_SHORTNAME+"-gtk"); + alist.add(_("Install")+":"+BRANDING_SHORTNAME+"-gtk --install "+k.version_main); + OSDNotify.notify_send(title,body,alist,close_action); } - vprint(_("No updates found")); + vprint(title); } } diff --git a/src/Gtk/AppGtk.vala b/src/Gtk/AppGtk.vala index ade0e73c..cf058efd 100644 --- a/src/Gtk/AppGtk.vala +++ b/src/Gtk/AppGtk.vala @@ -26,7 +26,6 @@ using Json; using X; using TeeJee.FileSystem; -using TeeJee.JsonHelper; using TeeJee.ProcessHelper; using l.gtk; using TeeJee.Misc; diff --git a/src/Gtk/MainWindow.vala b/src/Gtk/MainWindow.vala index 390d4b25..d3f9df9f 100644 --- a/src/Gtk/MainWindow.vala +++ b/src/Gtk/MainWindow.vala @@ -25,7 +25,6 @@ using Gtk; using Gee; using TeeJee.FileSystem; -using TeeJee.JsonHelper; using TeeJee.ProcessHelper; using l.gtk; using TeeJee.Misc; diff --git a/src/Gtk/ProgressWindow.vala b/src/Gtk/ProgressWindow.vala index 1c1dd505..4f43eb35 100644 --- a/src/Gtk/ProgressWindow.vala +++ b/src/Gtk/ProgressWindow.vala @@ -26,7 +26,6 @@ using Gtk; using Gee; using TeeJee.FileSystem; -using TeeJee.JsonHelper; using TeeJee.ProcessHelper; using l.gtk; using TeeJee.Misc; diff --git a/src/Gtk/SettingsDialog.vala b/src/Gtk/SettingsDialog.vala index 154eaef2..a6f4af0b 100644 --- a/src/Gtk/SettingsDialog.vala +++ b/src/Gtk/SettingsDialog.vala @@ -25,7 +25,6 @@ using Gtk; using Gee; using TeeJee.FileSystem; -using TeeJee.JsonHelper; using TeeJee.ProcessHelper; using l.gtk; using TeeJee.Misc; @@ -131,14 +130,14 @@ public class SettingsDialog : Gtk.Dialog { TreeIter iter; var model = new Gtk.ListStore (1, typeof (string)); model.append (out iter); - model.set (iter,0,_("Hour(s)")); + model.set (iter,0,_("Hours")); model.append (out iter); - model.set (iter,0,_("Day(s)")); + model.set (iter,0,_("Days")); model.append (out iter); - model.set (iter,0,_("Week(s)")); + model.set (iter,0,_("Weeks")); if (App.VERBOSE>1) { model.append (out iter); - model.set (iter,0,_("Second(s)")); + model.set (iter,0,_("Seconds")); } combo.set_model(model); combo.set_active(App.notify_interval_unit); diff --git a/src/Gtk/TerminalWindow.vala b/src/Gtk/TerminalWindow.vala index 0edb5832..172c9a24 100644 --- a/src/Gtk/TerminalWindow.vala +++ b/src/Gtk/TerminalWindow.vala @@ -23,7 +23,6 @@ using Gtk; using Gee; using TeeJee.FileSystem; -using TeeJee.JsonHelper; using TeeJee.ProcessHelper; using l.gtk; using TeeJee.Misc; diff --git a/src/Gtk/l.gtk.vala b/src/Gtk/l.gtk.vala index 546d6c18..8a35816b 100644 --- a/src/Gtk/l.gtk.vala +++ b/src/Gtk/l.gtk.vala @@ -1,6 +1,5 @@ using TeeJee.FileSystem; -using TeeJee.JsonHelper; using TeeJee.ProcessHelper; using TeeJee.Misc; using l.misc; diff --git a/src/lib/AsyncTask.vala b/src/lib/AsyncTask.vala index f46d3795..6794c08c 100644 --- a/src/lib/AsyncTask.vala +++ b/src/lib/AsyncTask.vala @@ -22,7 +22,6 @@ */ using TeeJee.FileSystem; -using TeeJee.JsonHelper; using TeeJee.ProcessHelper; using TeeJee.Misc; using l.misc; diff --git a/src/lib/TeeJee.JsonHelper.vala b/src/lib/TeeJee.JsonHelper.vala deleted file mode 100644 index c4cb9fb2..00000000 --- a/src/lib/TeeJee.JsonHelper.vala +++ /dev/null @@ -1,96 +0,0 @@ - -/* - * TeeJee.JsonHelper.vala - * - * Copyright 2016 Tony George - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, - * MA 02110-1301, USA. - * - * - */ - -using Gee; -using Json; - -namespace TeeJee.JsonHelper { - - using l.misc; - - public string json_get_string(Json.Object jobj, string member, string def_value="") { - vprint("json_get_string("+member+","+def_value+")",4); - if (jobj.has_member(member)) { - return jobj.get_string_member(member); - } else { - vprint("Member not found in JSON object: " + member,3); - return def_value; - } - } - - public double json_get_double(Json.Object jobj, string member, double def_value=0) { - vprint("json_get_double("+member+","+def_value.to_string()+")",4); - var text = json_get_string(jobj, member, def_value.to_string()); - double double_value; - if (double.try_parse(text, out double_value)) { - return double_value; - } else { - return def_value; - } - } - - public bool json_get_bool(Json.Object jobj, string member, bool def_value=false) { - vprint("json_get_bool("+member+","+def_value.to_string()+")",4); - if (jobj.has_member(member)) { - return bool.parse(jobj.get_string_member(member)); - } else { - vprint("Member not found in JSON object: " + member,3); - return def_value; - } - } - - public int json_get_int(Json.Object jobj, string member, int def_value=0) { - vprint("json_get_int("+member+","+def_value.to_string()+")",4); - if (jobj.has_member(member)) { - return int.parse(jobj.get_string_member(member)); - } else { - vprint("Member not found in JSON object: " + member,3); - return def_value; - } - } - - public int64 json_get_int64(Json.Object jobj, string member, int64 def_value=0) { - vprint("json_get_int64("+member+","+def_value.to_string()+")",4); - if (jobj.has_member(member)) { - return int64.parse(jobj.get_string_member(member)); - } else { - vprint("Member not found in JSON object: " + member,3); - return def_value; - } - } - - public ArrayList json_get_array(Json.Object jobj, string member, ArrayList def_value=new ArrayList()) { - vprint("json_get_array("+member+","+def_value[0]+")",4); - if (jobj.has_member(member)) { - var jarray = jobj.get_array_member(member); - var list = new ArrayList(); - foreach(var node in jarray.get_elements()) list.add(node.get_string()); - return list; - } else { - vprint("Member not found in JSON object: " + member,3); - return def_value; - } - } - -} diff --git a/src/lib/l.misc.vala b/src/lib/l.misc.vala index 01bef8f2..87e861c2 100644 --- a/src/lib/l.misc.vala +++ b/src/lib/l.misc.vala @@ -48,12 +48,12 @@ namespace l.misc { string cmd = "aria2c" + " --no-netrc" + " --no-conf" - + " --connect-timeout="+App.connect_timeout_seconds.to_string() + " --max-file-not-found=3" + " --retry-wait=2" + " --max-tries=3" + " --dry-run" + " --quiet"; + if (App.connect_timeout_seconds>0) cmd += " --connect-timeout="+App.connect_timeout_seconds.to_string() if (App.all_proxy.length>0) cmd += " --all-proxy='"+App.all_proxy+"'"; cmd += " \""+App.ppa_uri+"\""; vprint(cmd,3); @@ -64,7 +64,7 @@ namespace l.misc { App.ppa_tried = true; App.ppa_up = false; if (status == 0) App.ppa_up = true; - else vprint(_("Can not reach site")+": '"+App.ppa_uri+"'",1,stderr); + else vprint(_("Can not reach site")+": \""+App.ppa_uri+"\"",1,stderr); App.ppa_up = true; return App.ppa_up; From c7a5e951a82e145b98b5324a7542789486b680ae Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Sat, 1 Apr 2023 13:20:30 -0400 Subject: [PATCH 284/567] checksums --- BRANDING.mak | 2 +- po/de.po | 164 +++++++++++---------- po/el.po | 164 +++++++++++---------- po/es.po | 164 +++++++++++---------- po/fr.po | 164 +++++++++++---------- po/hr.po | 164 +++++++++++---------- po/it.po | 166 +++++++++++---------- po/ko.po | 164 +++++++++++---------- po/messages.pot | 162 +++++++++++---------- po/nl.po | 167 ++++++++++++---------- po/pl.po | 167 ++++++++++++---------- po/ru.po | 167 ++++++++++++---------- po/sv.po | 164 +++++++++++---------- po/tr.po | 164 +++++++++++---------- po/uk.po | 164 +++++++++++---------- src/Common/DownloadManager.vala | 80 ++++++----- src/Common/LinuxKernel.vala | 213 +++++++++++++++++---------- src/Common/Main.vala | 246 ++++++++++++++++++++------------ src/Console/AppConsole.vala | 18 ++- src/Gtk/MainWindow.vala | 20 ++- src/Gtk/SettingsDialog.vala | 25 ++-- src/lib/AsyncTask.vala | 2 +- src/lib/TeeJee.FileSystem.vala | 15 +- src/lib/l.misc.vala | 8 +- 24 files changed, 1618 insertions(+), 1316 deletions(-) diff --git a/BRANDING.mak b/BRANDING.mak index a8d03554..0bb75e1d 100644 --- a/BRANDING.mak +++ b/BRANDING.mak @@ -3,7 +3,7 @@ VERSION_MAJOR = 1 VERSION_MINOR = 1 -VERSION_MICRO = 8 +VERSION_MICRO = 9 BRANDING_SHORTNAME = mainline BRANDING_LONGNAME = Ubuntu Mainline Kernel Installer BRANDING_AUTHORNAME = Brian K. White diff --git a/po/de.po b/po/de.po index 98d2689d..771dd629 100644 --- a/po/de.po +++ b/po/de.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-21 20:12-0400\n" +"POT-Creation-Date: 2023-04-01 12:41-0400\n" "PO-Revision-Date: 2023-02-20 18:40+0100\n" "Last-Translator: Marvin Meysel \n" "Language-Team: German\n" @@ -13,134 +13,138 @@ msgstr "" "X-Launchpad-Export-Date: 2017-04-13 11:48+0000\n" "X-Generator: Poedit 3.1.1\n" -#: src/Common/LinuxKernel.vala:86 +#: src/Common/LinuxKernel.vala:92 msgid "Distribution" msgstr "Distribution" -#: src/Common/LinuxKernel.vala:101 +#: src/Common/LinuxKernel.vala:107 msgid "Architecture" msgstr "Architektur" -#: src/Common/LinuxKernel.vala:276 +#: src/Common/LinuxKernel.vala:280 #, fuzzy msgid "Fetching individual kernel indexes" msgstr "Index abrufen..." -#: src/Common/LinuxKernel.vala:325 +#: src/Common/LinuxKernel.vala:332 msgid "Updating from" msgstr "" -#: src/Common/LinuxKernel.vala:342 src/Common/LinuxKernel.vala:895 +#: src/Common/LinuxKernel.vala:349 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:345 src/Common/LinuxKernel.vala:898 +#: src/Common/LinuxKernel.vala:352 msgid "FAILED" msgstr "" -#: src/Common/LinuxKernel.vala:759 +#: src/Common/LinuxKernel.vala:793 msgid "Packages Available" msgstr "Verfügbare Pakete" -#: src/Common/LinuxKernel.vala:764 +#: src/Common/LinuxKernel.vala:798 msgid "Packages Installed" msgstr "Installierte Pakete" -#: src/Common/LinuxKernel.vala:777 src/lib/TeeJee.FileSystem.vala:121 +#: src/Common/LinuxKernel.vala:819 src/lib/TeeJee.FileSystem.vala:118 msgid "File not found" msgstr "Datei nicht gefunden " -#: src/Common/LinuxKernel.vala:841 +#: src/Common/LinuxKernel.vala:886 msgid "Available Kernels" msgstr "Verfügbare Kernel" -#: src/Common/LinuxKernel.vala:848 src/Gtk/MainWindow.vala:154 +#: src/Common/LinuxKernel.vala:893 src/Gtk/MainWindow.vala:154 msgid "Installed" msgstr "Installiert" -#: src/Common/LinuxKernel.vala:848 src/Gtk/MainWindow.vala:154 -#: src/Gtk/MainWindow.vala:497 src/Gtk/MainWindow.vala:510 +#: src/Common/LinuxKernel.vala:893 src/Gtk/MainWindow.vala:154 +#: src/Gtk/MainWindow.vala:495 src/Gtk/MainWindow.vala:508 msgid "Running" msgstr "Läuft" -#: src/Common/LinuxKernel.vala:883 +#: src/Common/LinuxKernel.vala:926 +msgid "CHECKSUMS enabled" +msgstr "" + +#: src/Common/LinuxKernel.vala:950 msgid "Downloading" -msgstr "Herunterladen" +msgstr "" -#: src/Common/LinuxKernel.vala:911 +#: src/Common/LinuxKernel.vala:971 #, fuzzy msgid "is already installed." msgstr "Dieser Kernel ist bereits installiert." -#: src/Common/LinuxKernel.vala:941 +#: src/Common/LinuxKernel.vala:1005 #, fuzzy msgid "Uninstalling selected kernels" msgstr "Deinstallation des angegebenen Kernels" -#: src/Common/LinuxKernel.vala:947 +#: src/Common/LinuxKernel.vala:1011 msgid "requested" msgstr "" -#: src/Common/LinuxKernel.vala:950 +#: src/Common/LinuxKernel.vala:1014 #, fuzzy msgid "not uninstalling the currently running kernel" msgstr "Deinstallation des angegebenen Kernels" -#: src/Common/LinuxKernel.vala:966 +#: src/Common/LinuxKernel.vala:1030 msgid "found" msgstr "" -#: src/Common/LinuxKernel.vala:969 +#: src/Common/LinuxKernel.vala:1033 #, fuzzy msgid "No packages to un-install!" msgstr "Installierte Pakete" -#: src/Common/LinuxKernel.vala:1017 +#: src/Common/LinuxKernel.vala:1081 #, fuzzy msgid "Could not find running kernel in list" msgstr "Konnte keinen laufenden Kernel in der Liste finden!" -#: src/Common/LinuxKernel.vala:1022 +#: src/Common/LinuxKernel.vala:1086 msgid "Could not find any kernels to uninstall" msgstr "Es konnten keine Kernel zum Deinstallieren gefunden werden" -#: src/Common/LinuxKernel.vala:1030 +#: src/Common/LinuxKernel.vala:1094 #, fuzzy msgid "The following kernels will be uninstalled" msgstr "Die folgenden Kernel werden deinstalliert:" -#: src/Common/LinuxKernel.vala:1034 +#: src/Common/LinuxKernel.vala:1098 msgid "Continue ?" msgstr "Weiter ?" -#: src/Common/LinuxKernel.vala:1056 src/Console/AppConsole.vala:290 +#: src/Common/LinuxKernel.vala:1120 src/Console/AppConsole.vala:290 msgid "Latest update" msgstr "Neustes Update" -#: src/Common/LinuxKernel.vala:1067 src/Console/AppConsole.vala:297 +#: src/Common/LinuxKernel.vala:1131 src/Console/AppConsole.vala:297 msgid "Latest point update" msgstr "Letzte Punktaktualisierung" -#: src/Common/LinuxKernel.vala:1075 src/Console/AppConsole.vala:302 +#: src/Common/LinuxKernel.vala:1139 src/Console/AppConsole.vala:302 #: src/Console/AppConsole.vala:318 msgid "No updates found" msgstr "Keine Updates gefunden" -#: src/Common/LinuxKernel.vala:1084 +#: src/Common/LinuxKernel.vala:1148 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Kernel-Version %s installieren? (j/n):" -#: src/Common/Main.vala:300 +#: src/Common/Main.vala:351 msgid "Called from" msgstr "Angerufen von" -#: src/Common/Main.vala:301 +#: src/Common/Main.vala:352 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" -#: src/Common/Main.vala:333 +#: src/Common/Main.vala:384 msgid "Notifications are disabled" msgstr "Benachrichtigungen sind deaktiviert" @@ -281,23 +285,23 @@ msgstr "um alle Befehle aufzulisten" msgid "Notifications disabled in settings" msgstr "Benachrichtigungen sind deaktiviert" -#: src/Console/AppConsole.vala:332 -msgid "previously notified" -msgstr "" - -#: src/Console/AppConsole.vala:335 +#: src/Console/AppConsole.vala:337 #, c-format msgid "Kernel %s Available" msgstr "Kernel %s verfügbar" -#: src/Console/AppConsole.vala:339 src/Gtk/SettingsDialog.vala:164 +#: src/Console/AppConsole.vala:341 src/Gtk/SettingsDialog.vala:166 msgid "Show" msgstr "Zeigen" -#: src/Console/AppConsole.vala:340 src/Gtk/MainWindow.vala:265 +#: src/Console/AppConsole.vala:342 src/Gtk/MainWindow.vala:264 msgid "Install" msgstr "Installieren" +#: src/Console/AppConsole.vala:345 +msgid "Previously notified" +msgstr "" + #: src/Gtk/AboutWindow.vala:162 src/Gtk/AboutWindow.vala:179 msgid "Credits" msgstr "Credits" @@ -355,60 +359,64 @@ msgstr "Kernel" msgid "Status" msgstr "Status" -#: src/Gtk/MainWindow.vala:275 +#: src/Gtk/MainWindow.vala:274 msgid "Uninstall" msgstr "Deinstallieren" -#: src/Gtk/MainWindow.vala:285 -msgid "Changes" -msgstr "Änderungen" +#: src/Gtk/MainWindow.vala:284 +msgid "Notes" +msgstr "" + +#: src/Gtk/MainWindow.vala:289 +msgid "User notes for" +msgstr "" -#: src/Gtk/MainWindow.vala:307 +#: src/Gtk/MainWindow.vala:305 msgid "Uninstall Old" msgstr "Alte deinstallieren" -#: src/Gtk/MainWindow.vala:308 +#: src/Gtk/MainWindow.vala:306 msgid "Uninstall kernels older than running kernel" msgstr "Deinstallation von Kerneln, die älter sind als der aktuelle Kernel" -#: src/Gtk/MainWindow.vala:313 +#: src/Gtk/MainWindow.vala:311 msgid "Reload" msgstr "" -#: src/Gtk/MainWindow.vala:318 src/Gtk/SettingsDialog.vala:48 +#: src/Gtk/MainWindow.vala:316 src/Gtk/SettingsDialog.vala:49 msgid "Settings" msgstr "Einstellungen" -#: src/Gtk/MainWindow.vala:323 +#: src/Gtk/MainWindow.vala:321 msgid "About" msgstr "Über" -#: src/Gtk/MainWindow.vala:328 +#: src/Gtk/MainWindow.vala:326 msgid "Exit" msgstr "" -#: src/Gtk/MainWindow.vala:396 +#: src/Gtk/MainWindow.vala:394 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Kernel-Upgrade-Dienstprogramm für Ubuntu-basierte Distributionen" -#: src/Gtk/MainWindow.vala:397 +#: src/Gtk/MainWindow.vala:395 msgid "Forked" msgstr "Forked" -#: src/Gtk/MainWindow.vala:397 +#: src/Gtk/MainWindow.vala:395 msgid "Original" msgstr "Original" -#: src/Gtk/MainWindow.vala:435 +#: src/Gtk/MainWindow.vala:433 msgid "Updating kernels" msgstr "" -#: src/Gtk/MainWindow.vala:506 +#: src/Gtk/MainWindow.vala:504 msgid "available" msgstr "Verfügbar" -#: src/Gtk/MainWindow.vala:549 src/Gtk/MainWindow.vala:589 -#: src/Gtk/MainWindow.vala:623 +#: src/Gtk/MainWindow.vala:547 src/Gtk/MainWindow.vala:587 +#: src/Gtk/MainWindow.vala:621 msgid "DONE" msgstr "" @@ -416,77 +424,81 @@ msgstr "" msgid "Cancel" msgstr "Abbrechen" -#: src/Gtk/SettingsDialog.vala:58 +#: src/Gtk/SettingsDialog.vala:59 msgid "Notification" msgstr "Benachrichtigung" -#: src/Gtk/SettingsDialog.vala:65 +#: src/Gtk/SettingsDialog.vala:66 msgid "Notify if a major release is available" msgstr "Benachrichtigen, wenn eine größere Version verfügbar ist" -#: src/Gtk/SettingsDialog.vala:74 +#: src/Gtk/SettingsDialog.vala:75 msgid "Notify if a point release is available" msgstr "Benachrichtigen, wenn eine Punktfreigabe verfügbar ist" -#: src/Gtk/SettingsDialog.vala:85 +#: src/Gtk/SettingsDialog.vala:86 #, fuzzy msgid "Seconds interval enabled for debugging" msgstr "(Erlaubt Intervalle in Sekunden für --debug)" -#: src/Gtk/SettingsDialog.vala:108 +#: src/Gtk/SettingsDialog.vala:109 msgid "Check every" msgstr "Prüfen Sie jede" -#: src/Gtk/SettingsDialog.vala:133 +#: src/Gtk/SettingsDialog.vala:134 #, fuzzy msgid "Hours" msgstr "Stunde(n)" -#: src/Gtk/SettingsDialog.vala:135 +#: src/Gtk/SettingsDialog.vala:136 msgid "Days" msgstr "" -#: src/Gtk/SettingsDialog.vala:137 +#: src/Gtk/SettingsDialog.vala:138 #, fuzzy msgid "Weeks" msgstr "Woche(n)" -#: src/Gtk/SettingsDialog.vala:140 +#: src/Gtk/SettingsDialog.vala:141 #, fuzzy msgid "Seconds" msgstr "Sekunde(n)" -#: src/Gtk/SettingsDialog.vala:146 +#: src/Gtk/SettingsDialog.vala:147 msgid "Filters" msgstr "" -#: src/Gtk/SettingsDialog.vala:154 +#: src/Gtk/SettingsDialog.vala:155 msgid "Hide unstable and RC releases" msgstr "Unstable- und RC-Versionen ausblenden" -#: src/Gtk/SettingsDialog.vala:176 +#: src/Gtk/SettingsDialog.vala:177 #, fuzzy -msgid "previous major versions" +msgid "previous major versions ( -1 = all )" msgstr "N frühere Hauptversionen anzeigen" -#: src/Gtk/SettingsDialog.vala:180 +#: src/Gtk/SettingsDialog.vala:181 msgid "Network" msgstr "" -#: src/Gtk/SettingsDialog.vala:191 +#: src/Gtk/SettingsDialog.vala:192 #, fuzzy msgid "Internet connection timeout in" msgstr "Zeitüberschreitung der Internetverbindung in" -#: src/Gtk/SettingsDialog.vala:203 +#: src/Gtk/SettingsDialog.vala:204 msgid "seconds" msgstr "Sekunden" -#: src/Gtk/SettingsDialog.vala:210 +#: src/Gtk/SettingsDialog.vala:211 msgid "Max concurrent downloads" msgstr "Maximale Anzahl gleichzeitiger Downloads" -#: src/Gtk/SettingsDialog.vala:224 +#: src/Gtk/SettingsDialog.vala:225 +msgid "Verify Checksums with the CHECKSUMS files" +msgstr "" + +#: src/Gtk/SettingsDialog.vala:233 msgid "Proxy" msgstr "" @@ -494,7 +506,7 @@ msgstr "" msgid "Missing Icon" msgstr "Fehlendes Symbol" -#: src/lib/l.misc.vala:67 +#: src/lib/l.misc.vala:71 #, fuzzy msgid "Can not reach site" msgstr "Fehler beim lesen der Datei" diff --git a/po/el.po b/po/el.po index a9ba1788..49754f08 100644 --- a/po/el.po +++ b/po/el.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-21 20:12-0400\n" +"POT-Creation-Date: 2023-04-01 12:41-0400\n" "PO-Revision-Date: 2023-01-10 02:03-0600\n" "Last-Translator: Vasilis Kosmidis \n" "Language-Team: Greek\n" @@ -13,134 +13,138 @@ msgstr "" "X-Launchpad-Export-Date: 2017-04-13 11:48+0000\n" "X-Generator: Poedit 2.0.5\n" -#: src/Common/LinuxKernel.vala:86 +#: src/Common/LinuxKernel.vala:92 msgid "Distribution" msgstr "Διανομή" -#: src/Common/LinuxKernel.vala:101 +#: src/Common/LinuxKernel.vala:107 msgid "Architecture" msgstr "Αρχιτεκτονική" -#: src/Common/LinuxKernel.vala:276 +#: src/Common/LinuxKernel.vala:280 #, fuzzy msgid "Fetching individual kernel indexes" msgstr "Ανάκτηση ευρετηρίου..." -#: src/Common/LinuxKernel.vala:325 +#: src/Common/LinuxKernel.vala:332 msgid "Updating from" msgstr "" -#: src/Common/LinuxKernel.vala:342 src/Common/LinuxKernel.vala:895 +#: src/Common/LinuxKernel.vala:349 msgid "OK" msgstr "ΟΚ" -#: src/Common/LinuxKernel.vala:345 src/Common/LinuxKernel.vala:898 +#: src/Common/LinuxKernel.vala:352 msgid "FAILED" msgstr "" -#: src/Common/LinuxKernel.vala:759 +#: src/Common/LinuxKernel.vala:793 msgid "Packages Available" msgstr "Διαθέσιμα πακέτα" -#: src/Common/LinuxKernel.vala:764 +#: src/Common/LinuxKernel.vala:798 msgid "Packages Installed" msgstr "Εγκατεστημένα πακέτα" -#: src/Common/LinuxKernel.vala:777 src/lib/TeeJee.FileSystem.vala:121 +#: src/Common/LinuxKernel.vala:819 src/lib/TeeJee.FileSystem.vala:118 msgid "File not found" msgstr "Το αρχείο δε βρέθηκε" -#: src/Common/LinuxKernel.vala:841 +#: src/Common/LinuxKernel.vala:886 msgid "Available Kernels" msgstr "Διαθέσιμοι πυρήνες" -#: src/Common/LinuxKernel.vala:848 src/Gtk/MainWindow.vala:154 +#: src/Common/LinuxKernel.vala:893 src/Gtk/MainWindow.vala:154 msgid "Installed" msgstr "Εγκατεστημένος" -#: src/Common/LinuxKernel.vala:848 src/Gtk/MainWindow.vala:154 -#: src/Gtk/MainWindow.vala:497 src/Gtk/MainWindow.vala:510 +#: src/Common/LinuxKernel.vala:893 src/Gtk/MainWindow.vala:154 +#: src/Gtk/MainWindow.vala:495 src/Gtk/MainWindow.vala:508 msgid "Running" msgstr "Ενεργός" -#: src/Common/LinuxKernel.vala:883 +#: src/Common/LinuxKernel.vala:926 +msgid "CHECKSUMS enabled" +msgstr "" + +#: src/Common/LinuxKernel.vala:950 msgid "Downloading" -msgstr "Λήψη" +msgstr "" -#: src/Common/LinuxKernel.vala:911 +#: src/Common/LinuxKernel.vala:971 #, fuzzy msgid "is already installed." msgstr "Αυτός ο πυρήνας είναι ήδη εγκατεστημένος." -#: src/Common/LinuxKernel.vala:941 +#: src/Common/LinuxKernel.vala:1005 #, fuzzy msgid "Uninstalling selected kernels" msgstr "Απεγκατάσταση του καθορισμένου πυρήνα" -#: src/Common/LinuxKernel.vala:947 +#: src/Common/LinuxKernel.vala:1011 msgid "requested" msgstr "" -#: src/Common/LinuxKernel.vala:950 +#: src/Common/LinuxKernel.vala:1014 #, fuzzy msgid "not uninstalling the currently running kernel" msgstr "Απεγκατάσταση του καθορισμένου πυρήνα" -#: src/Common/LinuxKernel.vala:966 +#: src/Common/LinuxKernel.vala:1030 msgid "found" msgstr "" -#: src/Common/LinuxKernel.vala:969 +#: src/Common/LinuxKernel.vala:1033 #, fuzzy msgid "No packages to un-install!" msgstr "Εγκατεστημένα πακέτα" -#: src/Common/LinuxKernel.vala:1017 +#: src/Common/LinuxKernel.vala:1081 #, fuzzy msgid "Could not find running kernel in list" msgstr "Δεν ήταν δυνατή η εύρεση του τρέχοντος πυρήνα στη λίστα!" -#: src/Common/LinuxKernel.vala:1022 +#: src/Common/LinuxKernel.vala:1086 msgid "Could not find any kernels to uninstall" msgstr "Δεν βρέθηκε κανένας πυρήνας για απεγκατάσταση" -#: src/Common/LinuxKernel.vala:1030 +#: src/Common/LinuxKernel.vala:1094 #, fuzzy msgid "The following kernels will be uninstalled" msgstr "Αυτός ο πυρήνας είναι ήδη εγκατεστημένος." -#: src/Common/LinuxKernel.vala:1034 +#: src/Common/LinuxKernel.vala:1098 msgid "Continue ?" msgstr "Συνέχεια;" -#: src/Common/LinuxKernel.vala:1056 src/Console/AppConsole.vala:290 +#: src/Common/LinuxKernel.vala:1120 src/Console/AppConsole.vala:290 msgid "Latest update" msgstr "Τελευταία αναβάθμιση" -#: src/Common/LinuxKernel.vala:1067 src/Console/AppConsole.vala:297 +#: src/Common/LinuxKernel.vala:1131 src/Console/AppConsole.vala:297 msgid "Latest point update" msgstr "Τελευταία ενημέρωση συντήρησης" -#: src/Common/LinuxKernel.vala:1075 src/Console/AppConsole.vala:302 +#: src/Common/LinuxKernel.vala:1139 src/Console/AppConsole.vala:302 #: src/Console/AppConsole.vala:318 msgid "No updates found" msgstr "Δεν βρέθηκαν ενημερώσεις" -#: src/Common/LinuxKernel.vala:1084 +#: src/Common/LinuxKernel.vala:1148 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Εγκατάσταση του πυρήνα έκδοσης %s ; (ν/ό):" -#: src/Common/Main.vala:300 +#: src/Common/Main.vala:351 msgid "Called from" msgstr "Κλήθηκε από" -#: src/Common/Main.vala:301 +#: src/Common/Main.vala:352 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" -#: src/Common/Main.vala:333 +#: src/Common/Main.vala:384 msgid "Notifications are disabled" msgstr "Οι ειδοποιήσεις είναι απενεργοποιημένες" @@ -279,23 +283,23 @@ msgstr "για να παραθέσετε όλες τις εντολές" msgid "Notifications disabled in settings" msgstr "Οι ειδοποιήσεις είναι απενεργοποιημένες" -#: src/Console/AppConsole.vala:332 -msgid "previously notified" -msgstr "" - -#: src/Console/AppConsole.vala:335 +#: src/Console/AppConsole.vala:337 #, c-format msgid "Kernel %s Available" msgstr "Πυρήνας %s διαθέσιμος" -#: src/Console/AppConsole.vala:339 src/Gtk/SettingsDialog.vala:164 +#: src/Console/AppConsole.vala:341 src/Gtk/SettingsDialog.vala:166 msgid "Show" msgstr "Προβολή" -#: src/Console/AppConsole.vala:340 src/Gtk/MainWindow.vala:265 +#: src/Console/AppConsole.vala:342 src/Gtk/MainWindow.vala:264 msgid "Install" msgstr "Εγκατάσταση" +#: src/Console/AppConsole.vala:345 +msgid "Previously notified" +msgstr "" + #: src/Gtk/AboutWindow.vala:162 src/Gtk/AboutWindow.vala:179 msgid "Credits" msgstr "Μνεία" @@ -353,60 +357,64 @@ msgstr "Πυρήνας" msgid "Status" msgstr "Κατάσταση" -#: src/Gtk/MainWindow.vala:275 +#: src/Gtk/MainWindow.vala:274 msgid "Uninstall" msgstr "Απεγκατάσταση" -#: src/Gtk/MainWindow.vala:285 -msgid "Changes" -msgstr "Αλλαγές" +#: src/Gtk/MainWindow.vala:284 +msgid "Notes" +msgstr "" + +#: src/Gtk/MainWindow.vala:289 +msgid "User notes for" +msgstr "" -#: src/Gtk/MainWindow.vala:307 +#: src/Gtk/MainWindow.vala:305 msgid "Uninstall Old" msgstr "Απεγκατάσταση παλαιών" -#: src/Gtk/MainWindow.vala:308 +#: src/Gtk/MainWindow.vala:306 msgid "Uninstall kernels older than running kernel" msgstr "Απεγκαταστήστε πυρήνες παλαιότερους από τον ενεργό" -#: src/Gtk/MainWindow.vala:313 +#: src/Gtk/MainWindow.vala:311 msgid "Reload" msgstr "" -#: src/Gtk/MainWindow.vala:318 src/Gtk/SettingsDialog.vala:48 +#: src/Gtk/MainWindow.vala:316 src/Gtk/SettingsDialog.vala:49 msgid "Settings" msgstr "Ρυθμίσεις" -#: src/Gtk/MainWindow.vala:323 +#: src/Gtk/MainWindow.vala:321 msgid "About" msgstr "Σχετικά" -#: src/Gtk/MainWindow.vala:328 +#: src/Gtk/MainWindow.vala:326 msgid "Exit" msgstr "" -#: src/Gtk/MainWindow.vala:396 +#: src/Gtk/MainWindow.vala:394 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Πρόγραμμα αναβάθμισης πυρήνα για διανομές που βασίζονται στο Ubuntu" -#: src/Gtk/MainWindow.vala:397 +#: src/Gtk/MainWindow.vala:395 msgid "Forked" msgstr "Forked" -#: src/Gtk/MainWindow.vala:397 +#: src/Gtk/MainWindow.vala:395 msgid "Original" msgstr "Πρωτότυπο" -#: src/Gtk/MainWindow.vala:435 +#: src/Gtk/MainWindow.vala:433 msgid "Updating kernels" msgstr "" -#: src/Gtk/MainWindow.vala:506 +#: src/Gtk/MainWindow.vala:504 msgid "available" msgstr "διαθέσιμος" -#: src/Gtk/MainWindow.vala:549 src/Gtk/MainWindow.vala:589 -#: src/Gtk/MainWindow.vala:623 +#: src/Gtk/MainWindow.vala:547 src/Gtk/MainWindow.vala:587 +#: src/Gtk/MainWindow.vala:621 msgid "DONE" msgstr "" @@ -414,77 +422,81 @@ msgstr "" msgid "Cancel" msgstr "Άκυρο" -#: src/Gtk/SettingsDialog.vala:58 +#: src/Gtk/SettingsDialog.vala:59 msgid "Notification" msgstr "Ειδοποίηση" -#: src/Gtk/SettingsDialog.vala:65 +#: src/Gtk/SettingsDialog.vala:66 msgid "Notify if a major release is available" msgstr "Ειδοποίηση αν είναι διαθέσιμη κύρια έκδοση" -#: src/Gtk/SettingsDialog.vala:74 +#: src/Gtk/SettingsDialog.vala:75 msgid "Notify if a point release is available" msgstr "Ειδοποίηση αν είναι διαθέσιμη έκδοση συντήρησης" -#: src/Gtk/SettingsDialog.vala:85 +#: src/Gtk/SettingsDialog.vala:86 #, fuzzy msgid "Seconds interval enabled for debugging" msgstr "(Επιτρέποντας διαστήματα σε δευτερόλεπτα για --debug)" -#: src/Gtk/SettingsDialog.vala:108 +#: src/Gtk/SettingsDialog.vala:109 msgid "Check every" msgstr "Έλεγχος κάθε" -#: src/Gtk/SettingsDialog.vala:133 +#: src/Gtk/SettingsDialog.vala:134 #, fuzzy msgid "Hours" msgstr "Ώρες" -#: src/Gtk/SettingsDialog.vala:135 +#: src/Gtk/SettingsDialog.vala:136 msgid "Days" msgstr "" -#: src/Gtk/SettingsDialog.vala:137 +#: src/Gtk/SettingsDialog.vala:138 #, fuzzy msgid "Weeks" msgstr "Εβδομάδες" -#: src/Gtk/SettingsDialog.vala:140 +#: src/Gtk/SettingsDialog.vala:141 #, fuzzy msgid "Seconds" msgstr "Δευτερόλεπτα" -#: src/Gtk/SettingsDialog.vala:146 +#: src/Gtk/SettingsDialog.vala:147 msgid "Filters" msgstr "" -#: src/Gtk/SettingsDialog.vala:154 +#: src/Gtk/SettingsDialog.vala:155 msgid "Hide unstable and RC releases" msgstr "Απόκρυψη ασταθών και RC εκδόσεων" -#: src/Gtk/SettingsDialog.vala:176 +#: src/Gtk/SettingsDialog.vala:177 #, fuzzy -msgid "previous major versions" +msgid "previous major versions ( -1 = all )" msgstr "Εμφάνιση N προηγούμενων κύριων εκδόσεων " -#: src/Gtk/SettingsDialog.vala:180 +#: src/Gtk/SettingsDialog.vala:181 msgid "Network" msgstr "" -#: src/Gtk/SettingsDialog.vala:191 +#: src/Gtk/SettingsDialog.vala:192 #, fuzzy msgid "Internet connection timeout in" msgstr "Λήξη χρονικού ορίου σύνδεσης στο διαδίκτυο " -#: src/Gtk/SettingsDialog.vala:203 +#: src/Gtk/SettingsDialog.vala:204 msgid "seconds" msgstr "δευτερόλεπτα" -#: src/Gtk/SettingsDialog.vala:210 +#: src/Gtk/SettingsDialog.vala:211 msgid "Max concurrent downloads" msgstr "Μέγιστες ταυτόχρονες λήψεις" -#: src/Gtk/SettingsDialog.vala:224 +#: src/Gtk/SettingsDialog.vala:225 +msgid "Verify Checksums with the CHECKSUMS files" +msgstr "" + +#: src/Gtk/SettingsDialog.vala:233 msgid "Proxy" msgstr "" @@ -492,7 +504,7 @@ msgstr "" msgid "Missing Icon" msgstr "Ελλείπον εικονίδιο" -#: src/lib/l.misc.vala:67 +#: src/lib/l.misc.vala:71 #, fuzzy msgid "Can not reach site" msgstr "Αποτυχία ανάγνωσης του αρχείου" diff --git a/po/es.po b/po/es.po index 2d98c206..3660b416 100644 --- a/po/es.po +++ b/po/es.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-21 20:12-0400\n" +"POT-Creation-Date: 2023-04-01 12:41-0400\n" "PO-Revision-Date: 2018-01-03 02:03-0600\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish\n" @@ -13,135 +13,139 @@ msgstr "" "X-Launchpad-Export-Date: 2017-04-13 11:48+0000\n" "X-Generator: Poedit 2.0.5\n" -#: src/Common/LinuxKernel.vala:86 +#: src/Common/LinuxKernel.vala:92 msgid "Distribution" msgstr "Distribución" -#: src/Common/LinuxKernel.vala:101 +#: src/Common/LinuxKernel.vala:107 msgid "Architecture" msgstr "Arquitectura del sistema" -#: src/Common/LinuxKernel.vala:276 +#: src/Common/LinuxKernel.vala:280 #, fuzzy msgid "Fetching individual kernel indexes" msgstr "Recuperando índice..." -#: src/Common/LinuxKernel.vala:325 +#: src/Common/LinuxKernel.vala:332 msgid "Updating from" msgstr "" -#: src/Common/LinuxKernel.vala:342 src/Common/LinuxKernel.vala:895 +#: src/Common/LinuxKernel.vala:349 msgid "OK" msgstr "Aceptar" -#: src/Common/LinuxKernel.vala:345 src/Common/LinuxKernel.vala:898 +#: src/Common/LinuxKernel.vala:352 msgid "FAILED" msgstr "" -#: src/Common/LinuxKernel.vala:759 +#: src/Common/LinuxKernel.vala:793 msgid "Packages Available" msgstr "Paquetes disponibles" -#: src/Common/LinuxKernel.vala:764 +#: src/Common/LinuxKernel.vala:798 msgid "Packages Installed" msgstr "Paquetes instalados" -#: src/Common/LinuxKernel.vala:777 src/lib/TeeJee.FileSystem.vala:121 +#: src/Common/LinuxKernel.vala:819 src/lib/TeeJee.FileSystem.vala:118 msgid "File not found" msgstr "No se encontró el archivo" -#: src/Common/LinuxKernel.vala:841 +#: src/Common/LinuxKernel.vala:886 msgid "Available Kernels" msgstr "Núcleos disponibles" -#: src/Common/LinuxKernel.vala:848 src/Gtk/MainWindow.vala:154 +#: src/Common/LinuxKernel.vala:893 src/Gtk/MainWindow.vala:154 msgid "Installed" msgstr "Instalado" -#: src/Common/LinuxKernel.vala:848 src/Gtk/MainWindow.vala:154 -#: src/Gtk/MainWindow.vala:497 src/Gtk/MainWindow.vala:510 +#: src/Common/LinuxKernel.vala:893 src/Gtk/MainWindow.vala:154 +#: src/Gtk/MainWindow.vala:495 src/Gtk/MainWindow.vala:508 msgid "Running" msgstr "En ejecución" -#: src/Common/LinuxKernel.vala:883 +#: src/Common/LinuxKernel.vala:926 +msgid "CHECKSUMS enabled" +msgstr "" + +#: src/Common/LinuxKernel.vala:950 msgid "Downloading" -msgstr "Descargando" +msgstr "" -#: src/Common/LinuxKernel.vala:911 +#: src/Common/LinuxKernel.vala:971 #, fuzzy msgid "is already installed." msgstr "Este núcleo ya se instaló." -#: src/Common/LinuxKernel.vala:941 +#: src/Common/LinuxKernel.vala:1005 #, fuzzy msgid "Uninstalling selected kernels" msgstr "Instalar núcleo troncal especificado" -#: src/Common/LinuxKernel.vala:947 +#: src/Common/LinuxKernel.vala:1011 msgid "requested" msgstr "" -#: src/Common/LinuxKernel.vala:950 +#: src/Common/LinuxKernel.vala:1014 #, fuzzy msgid "not uninstalling the currently running kernel" msgstr "Instalar núcleo troncal especificado" -#: src/Common/LinuxKernel.vala:966 +#: src/Common/LinuxKernel.vala:1030 msgid "found" msgstr "" -#: src/Common/LinuxKernel.vala:969 +#: src/Common/LinuxKernel.vala:1033 #, fuzzy msgid "No packages to un-install!" msgstr "Paquetes instalados" -#: src/Common/LinuxKernel.vala:1017 +#: src/Common/LinuxKernel.vala:1081 #, fuzzy msgid "Could not find running kernel in list" msgstr "¡No se pudo encontrar el núcleo en ejecución en la lista!" -#: src/Common/LinuxKernel.vala:1022 +#: src/Common/LinuxKernel.vala:1086 #, fuzzy msgid "Could not find any kernels to uninstall" msgstr "Seleccione los núcleos que se desinstalarán" -#: src/Common/LinuxKernel.vala:1030 +#: src/Common/LinuxKernel.vala:1094 #, fuzzy msgid "The following kernels will be uninstalled" msgstr "Los siguientes kernels serán eliminados:" -#: src/Common/LinuxKernel.vala:1034 +#: src/Common/LinuxKernel.vala:1098 msgid "Continue ?" msgstr "¿Continuar?" -#: src/Common/LinuxKernel.vala:1056 src/Console/AppConsole.vala:290 +#: src/Common/LinuxKernel.vala:1120 src/Console/AppConsole.vala:290 msgid "Latest update" msgstr "" -#: src/Common/LinuxKernel.vala:1067 src/Console/AppConsole.vala:297 +#: src/Common/LinuxKernel.vala:1131 src/Console/AppConsole.vala:297 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:1075 src/Console/AppConsole.vala:302 +#: src/Common/LinuxKernel.vala:1139 src/Console/AppConsole.vala:302 #: src/Console/AppConsole.vala:318 msgid "No updates found" msgstr "No se encontró ninguna actualización" -#: src/Common/LinuxKernel.vala:1084 +#: src/Common/LinuxKernel.vala:1148 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "" -#: src/Common/Main.vala:300 +#: src/Common/Main.vala:351 msgid "Called from" msgstr "" -#: src/Common/Main.vala:301 +#: src/Common/Main.vala:352 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" -#: src/Common/Main.vala:333 +#: src/Common/Main.vala:384 #, fuzzy msgid "Notifications are disabled" msgstr "Notificación" @@ -285,23 +289,23 @@ msgstr "Mostrar todas las opciones" msgid "Notifications disabled in settings" msgstr "Notificación" -#: src/Console/AppConsole.vala:332 -msgid "previously notified" -msgstr "" - -#: src/Console/AppConsole.vala:335 +#: src/Console/AppConsole.vala:337 #, fuzzy, c-format msgid "Kernel %s Available" msgstr "Paquetes disponibles" -#: src/Console/AppConsole.vala:339 src/Gtk/SettingsDialog.vala:164 +#: src/Console/AppConsole.vala:341 src/Gtk/SettingsDialog.vala:166 msgid "Show" msgstr "" -#: src/Console/AppConsole.vala:340 src/Gtk/MainWindow.vala:265 +#: src/Console/AppConsole.vala:342 src/Gtk/MainWindow.vala:264 msgid "Install" msgstr "Instalar" +#: src/Console/AppConsole.vala:345 +msgid "Previously notified" +msgstr "" + #: src/Gtk/AboutWindow.vala:162 src/Gtk/AboutWindow.vala:179 msgid "Credits" msgstr "Créditos" @@ -360,64 +364,68 @@ msgstr "Núcleo" msgid "Status" msgstr "Estado" -#: src/Gtk/MainWindow.vala:275 +#: src/Gtk/MainWindow.vala:274 #, fuzzy msgid "Uninstall" msgstr "Instalar" -#: src/Gtk/MainWindow.vala:285 -msgid "Changes" -msgstr "Cambios" +#: src/Gtk/MainWindow.vala:284 +msgid "Notes" +msgstr "" + +#: src/Gtk/MainWindow.vala:289 +msgid "User notes for" +msgstr "" -#: src/Gtk/MainWindow.vala:307 +#: src/Gtk/MainWindow.vala:305 #, fuzzy msgid "Uninstall Old" msgstr "Desinstalación finalizada" -#: src/Gtk/MainWindow.vala:308 +#: src/Gtk/MainWindow.vala:306 msgid "Uninstall kernels older than running kernel" msgstr "" -#: src/Gtk/MainWindow.vala:313 +#: src/Gtk/MainWindow.vala:311 msgid "Reload" msgstr "" -#: src/Gtk/MainWindow.vala:318 src/Gtk/SettingsDialog.vala:48 +#: src/Gtk/MainWindow.vala:316 src/Gtk/SettingsDialog.vala:49 msgid "Settings" msgstr "Configuración" -#: src/Gtk/MainWindow.vala:323 +#: src/Gtk/MainWindow.vala:321 msgid "About" msgstr "Acerca de" -#: src/Gtk/MainWindow.vala:328 +#: src/Gtk/MainWindow.vala:326 msgid "Exit" msgstr "" -#: src/Gtk/MainWindow.vala:396 +#: src/Gtk/MainWindow.vala:394 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "" "Herramienta de renovación de núcleo para distribuciones basadas en Ubuntu" -#: src/Gtk/MainWindow.vala:397 +#: src/Gtk/MainWindow.vala:395 msgid "Forked" msgstr "" -#: src/Gtk/MainWindow.vala:397 +#: src/Gtk/MainWindow.vala:395 msgid "Original" msgstr "" -#: src/Gtk/MainWindow.vala:435 +#: src/Gtk/MainWindow.vala:433 msgid "Updating kernels" msgstr "" -#: src/Gtk/MainWindow.vala:506 +#: src/Gtk/MainWindow.vala:504 #, fuzzy msgid "available" msgstr "Paquetes disponibles" -#: src/Gtk/MainWindow.vala:549 src/Gtk/MainWindow.vala:589 -#: src/Gtk/MainWindow.vala:623 +#: src/Gtk/MainWindow.vala:547 src/Gtk/MainWindow.vala:587 +#: src/Gtk/MainWindow.vala:621 msgid "DONE" msgstr "" @@ -425,74 +433,78 @@ msgstr "" msgid "Cancel" msgstr "Cancelar" -#: src/Gtk/SettingsDialog.vala:58 +#: src/Gtk/SettingsDialog.vala:59 msgid "Notification" msgstr "Notificación" -#: src/Gtk/SettingsDialog.vala:65 +#: src/Gtk/SettingsDialog.vala:66 msgid "Notify if a major release is available" msgstr "Notificar si hay una versión importante disponible" -#: src/Gtk/SettingsDialog.vala:74 +#: src/Gtk/SettingsDialog.vala:75 msgid "Notify if a point release is available" msgstr "Notificar si hay una versión puntual disponible" -#: src/Gtk/SettingsDialog.vala:85 +#: src/Gtk/SettingsDialog.vala:86 msgid "Seconds interval enabled for debugging" msgstr "" -#: src/Gtk/SettingsDialog.vala:108 +#: src/Gtk/SettingsDialog.vala:109 msgid "Check every" msgstr "Comprobar cada" -#: src/Gtk/SettingsDialog.vala:133 +#: src/Gtk/SettingsDialog.vala:134 #, fuzzy msgid "Hours" msgstr "Horas" -#: src/Gtk/SettingsDialog.vala:135 +#: src/Gtk/SettingsDialog.vala:136 msgid "Days" msgstr "" -#: src/Gtk/SettingsDialog.vala:137 +#: src/Gtk/SettingsDialog.vala:138 #, fuzzy msgid "Weeks" msgstr "Semanas" -#: src/Gtk/SettingsDialog.vala:140 +#: src/Gtk/SettingsDialog.vala:141 msgid "Seconds" msgstr "" -#: src/Gtk/SettingsDialog.vala:146 +#: src/Gtk/SettingsDialog.vala:147 msgid "Filters" msgstr "" -#: src/Gtk/SettingsDialog.vala:154 +#: src/Gtk/SettingsDialog.vala:155 msgid "Hide unstable and RC releases" msgstr "Ocultar versiones inestables y RC" -#: src/Gtk/SettingsDialog.vala:176 -msgid "previous major versions" +#: src/Gtk/SettingsDialog.vala:177 +msgid "previous major versions ( -1 = all )" msgstr "" -#: src/Gtk/SettingsDialog.vala:180 +#: src/Gtk/SettingsDialog.vala:181 msgid "Network" msgstr "" -#: src/Gtk/SettingsDialog.vala:191 +#: src/Gtk/SettingsDialog.vala:192 #, fuzzy msgid "Internet connection timeout in" msgstr "La conexión a Internet está inactiva" -#: src/Gtk/SettingsDialog.vala:203 +#: src/Gtk/SettingsDialog.vala:204 msgid "seconds" msgstr "" -#: src/Gtk/SettingsDialog.vala:210 +#: src/Gtk/SettingsDialog.vala:211 msgid "Max concurrent downloads" msgstr "" -#: src/Gtk/SettingsDialog.vala:224 +#: src/Gtk/SettingsDialog.vala:225 +msgid "Verify Checksums with the CHECKSUMS files" +msgstr "" + +#: src/Gtk/SettingsDialog.vala:233 msgid "Proxy" msgstr "" @@ -500,7 +512,7 @@ msgstr "" msgid "Missing Icon" msgstr "Falta el icono" -#: src/lib/l.misc.vala:67 +#: src/lib/l.misc.vala:71 #, fuzzy msgid "Can not reach site" msgstr "Falló la lectura del archivo" diff --git a/po/fr.po b/po/fr.po index 1b6280b2..87f48869 100644 --- a/po/fr.po +++ b/po/fr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-21 20:12-0400\n" +"POT-Creation-Date: 2023-04-01 12:41-0400\n" "PO-Revision-Date: 2018-08-05 15:50+0200\n" "Last-Translator: Yolateng0 \n" "Language-Team: French\n" @@ -13,135 +13,139 @@ msgstr "" "X-Launchpad-Export-Date: 2017-04-13 11:48+0000\n" "X-Generator: Poedit 2.0.6\n" -#: src/Common/LinuxKernel.vala:86 +#: src/Common/LinuxKernel.vala:92 msgid "Distribution" msgstr "Distribution" -#: src/Common/LinuxKernel.vala:101 +#: src/Common/LinuxKernel.vala:107 msgid "Architecture" msgstr "Architecture" -#: src/Common/LinuxKernel.vala:276 +#: src/Common/LinuxKernel.vala:280 #, fuzzy msgid "Fetching individual kernel indexes" msgstr "Récupération de l'index..." -#: src/Common/LinuxKernel.vala:325 +#: src/Common/LinuxKernel.vala:332 msgid "Updating from" msgstr "" -#: src/Common/LinuxKernel.vala:342 src/Common/LinuxKernel.vala:895 +#: src/Common/LinuxKernel.vala:349 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:345 src/Common/LinuxKernel.vala:898 +#: src/Common/LinuxKernel.vala:352 msgid "FAILED" msgstr "" -#: src/Common/LinuxKernel.vala:759 +#: src/Common/LinuxKernel.vala:793 msgid "Packages Available" msgstr "Paquets Disponibles" -#: src/Common/LinuxKernel.vala:764 +#: src/Common/LinuxKernel.vala:798 msgid "Packages Installed" msgstr "Paquets Installés" -#: src/Common/LinuxKernel.vala:777 src/lib/TeeJee.FileSystem.vala:121 +#: src/Common/LinuxKernel.vala:819 src/lib/TeeJee.FileSystem.vala:118 msgid "File not found" msgstr "Fichier non trouvé" -#: src/Common/LinuxKernel.vala:841 +#: src/Common/LinuxKernel.vala:886 msgid "Available Kernels" msgstr "Noyaux Disponibles" -#: src/Common/LinuxKernel.vala:848 src/Gtk/MainWindow.vala:154 +#: src/Common/LinuxKernel.vala:893 src/Gtk/MainWindow.vala:154 msgid "Installed" msgstr "Installé" -#: src/Common/LinuxKernel.vala:848 src/Gtk/MainWindow.vala:154 -#: src/Gtk/MainWindow.vala:497 src/Gtk/MainWindow.vala:510 +#: src/Common/LinuxKernel.vala:893 src/Gtk/MainWindow.vala:154 +#: src/Gtk/MainWindow.vala:495 src/Gtk/MainWindow.vala:508 msgid "Running" msgstr "Actuel" -#: src/Common/LinuxKernel.vala:883 +#: src/Common/LinuxKernel.vala:926 +msgid "CHECKSUMS enabled" +msgstr "" + +#: src/Common/LinuxKernel.vala:950 msgid "Downloading" -msgstr "Téléchargement" +msgstr "" -#: src/Common/LinuxKernel.vala:911 +#: src/Common/LinuxKernel.vala:971 #, fuzzy msgid "is already installed." msgstr "Ce noyau est déjà installé." -#: src/Common/LinuxKernel.vala:941 +#: src/Common/LinuxKernel.vala:1005 #, fuzzy msgid "Uninstalling selected kernels" msgstr "Installer les noyaux spécifiés" -#: src/Common/LinuxKernel.vala:947 +#: src/Common/LinuxKernel.vala:1011 msgid "requested" msgstr "" -#: src/Common/LinuxKernel.vala:950 +#: src/Common/LinuxKernel.vala:1014 #, fuzzy msgid "not uninstalling the currently running kernel" msgstr "Installer les noyaux spécifiés" -#: src/Common/LinuxKernel.vala:966 +#: src/Common/LinuxKernel.vala:1030 msgid "found" msgstr "" -#: src/Common/LinuxKernel.vala:969 +#: src/Common/LinuxKernel.vala:1033 #, fuzzy msgid "No packages to un-install!" msgstr "Paquets Installés" -#: src/Common/LinuxKernel.vala:1017 +#: src/Common/LinuxKernel.vala:1081 #, fuzzy msgid "Could not find running kernel in list" msgstr "Impossible de trouver la version courante dans la liste!" -#: src/Common/LinuxKernel.vala:1022 +#: src/Common/LinuxKernel.vala:1086 #, fuzzy msgid "Could not find any kernels to uninstall" msgstr "Impossible de trouver de noyaux à supprimer" -#: src/Common/LinuxKernel.vala:1030 +#: src/Common/LinuxKernel.vala:1094 #, fuzzy msgid "The following kernels will be uninstalled" msgstr "Les noyaux suivants seront supprimés:" -#: src/Common/LinuxKernel.vala:1034 +#: src/Common/LinuxKernel.vala:1098 msgid "Continue ?" msgstr "Reprendre ?" -#: src/Common/LinuxKernel.vala:1056 src/Console/AppConsole.vala:290 +#: src/Common/LinuxKernel.vala:1120 src/Console/AppConsole.vala:290 msgid "Latest update" msgstr "Dernière mise à jour" -#: src/Common/LinuxKernel.vala:1067 src/Console/AppConsole.vala:297 +#: src/Common/LinuxKernel.vala:1131 src/Console/AppConsole.vala:297 msgid "Latest point update" msgstr "Dernière mise à jour mineure" -#: src/Common/LinuxKernel.vala:1075 src/Console/AppConsole.vala:302 +#: src/Common/LinuxKernel.vala:1139 src/Console/AppConsole.vala:302 #: src/Console/AppConsole.vala:318 msgid "No updates found" msgstr "Aucune mise à jour disponible" -#: src/Common/LinuxKernel.vala:1084 +#: src/Common/LinuxKernel.vala:1148 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Installer le noyau en version %s ? (y/n): " -#: src/Common/Main.vala:300 +#: src/Common/Main.vala:351 msgid "Called from" msgstr "" -#: src/Common/Main.vala:301 +#: src/Common/Main.vala:352 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" -#: src/Common/Main.vala:333 +#: src/Common/Main.vala:384 msgid "Notifications are disabled" msgstr "Les notifications sont désactivées" @@ -283,23 +287,23 @@ msgstr "pour afficher toutes les commandes" msgid "Notifications disabled in settings" msgstr "Les notifications sont désactivées" -#: src/Console/AppConsole.vala:332 -msgid "previously notified" -msgstr "" - -#: src/Console/AppConsole.vala:335 +#: src/Console/AppConsole.vala:337 #, c-format msgid "Kernel %s Available" msgstr "Paquet %s disponibles" -#: src/Console/AppConsole.vala:339 src/Gtk/SettingsDialog.vala:164 +#: src/Console/AppConsole.vala:341 src/Gtk/SettingsDialog.vala:166 msgid "Show" msgstr "Montrer" -#: src/Console/AppConsole.vala:340 src/Gtk/MainWindow.vala:265 +#: src/Console/AppConsole.vala:342 src/Gtk/MainWindow.vala:264 msgid "Install" msgstr "Installer" +#: src/Console/AppConsole.vala:345 +msgid "Previously notified" +msgstr "" + #: src/Gtk/AboutWindow.vala:162 src/Gtk/AboutWindow.vala:179 msgid "Credits" msgstr "Crédits" @@ -357,65 +361,69 @@ msgstr "Noyau" msgid "Status" msgstr "Statut" -#: src/Gtk/MainWindow.vala:275 +#: src/Gtk/MainWindow.vala:274 #, fuzzy msgid "Uninstall" msgstr "Installer" -#: src/Gtk/MainWindow.vala:285 -msgid "Changes" -msgstr "Changements" +#: src/Gtk/MainWindow.vala:284 +msgid "Notes" +msgstr "" + +#: src/Gtk/MainWindow.vala:289 +msgid "User notes for" +msgstr "" -#: src/Gtk/MainWindow.vala:307 +#: src/Gtk/MainWindow.vala:305 #, fuzzy msgid "Uninstall Old" msgstr "Désinstallation complète" -#: src/Gtk/MainWindow.vala:308 +#: src/Gtk/MainWindow.vala:306 #, fuzzy msgid "Uninstall kernels older than running kernel" msgstr "Désinstalle les noyaux plus anciens que le noyau courant" -#: src/Gtk/MainWindow.vala:313 +#: src/Gtk/MainWindow.vala:311 msgid "Reload" msgstr "" -#: src/Gtk/MainWindow.vala:318 src/Gtk/SettingsDialog.vala:48 +#: src/Gtk/MainWindow.vala:316 src/Gtk/SettingsDialog.vala:49 msgid "Settings" msgstr "Paramètres" -#: src/Gtk/MainWindow.vala:323 +#: src/Gtk/MainWindow.vala:321 msgid "About" msgstr "À propos" -#: src/Gtk/MainWindow.vala:328 +#: src/Gtk/MainWindow.vala:326 msgid "Exit" msgstr "" -#: src/Gtk/MainWindow.vala:396 +#: src/Gtk/MainWindow.vala:394 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "" "Utilitaire de mise à niveau des noyaux pour les distributions basées sur " "Ubuntu" -#: src/Gtk/MainWindow.vala:397 +#: src/Gtk/MainWindow.vala:395 msgid "Forked" msgstr "Version forkée :" -#: src/Gtk/MainWindow.vala:397 +#: src/Gtk/MainWindow.vala:395 msgid "Original" msgstr "Version originale :" -#: src/Gtk/MainWindow.vala:435 +#: src/Gtk/MainWindow.vala:433 msgid "Updating kernels" msgstr "" -#: src/Gtk/MainWindow.vala:506 +#: src/Gtk/MainWindow.vala:504 msgid "available" msgstr "disponible" -#: src/Gtk/MainWindow.vala:549 src/Gtk/MainWindow.vala:589 -#: src/Gtk/MainWindow.vala:623 +#: src/Gtk/MainWindow.vala:547 src/Gtk/MainWindow.vala:587 +#: src/Gtk/MainWindow.vala:621 msgid "DONE" msgstr "" @@ -423,76 +431,80 @@ msgstr "" msgid "Cancel" msgstr "Annuler" -#: src/Gtk/SettingsDialog.vala:58 +#: src/Gtk/SettingsDialog.vala:59 msgid "Notification" msgstr "Notification" -#: src/Gtk/SettingsDialog.vala:65 +#: src/Gtk/SettingsDialog.vala:66 msgid "Notify if a major release is available" msgstr "Notifier si une version stable majeure est disponible" -#: src/Gtk/SettingsDialog.vala:74 +#: src/Gtk/SettingsDialog.vala:75 msgid "Notify if a point release is available" msgstr "Notifier si une version stable mineure est disponible" -#: src/Gtk/SettingsDialog.vala:85 +#: src/Gtk/SettingsDialog.vala:86 msgid "Seconds interval enabled for debugging" msgstr "" -#: src/Gtk/SettingsDialog.vala:108 +#: src/Gtk/SettingsDialog.vala:109 msgid "Check every" msgstr "Vérifier toutes les" -#: src/Gtk/SettingsDialog.vala:133 +#: src/Gtk/SettingsDialog.vala:134 #, fuzzy msgid "Hours" msgstr "Heure(s)" -#: src/Gtk/SettingsDialog.vala:135 +#: src/Gtk/SettingsDialog.vala:136 msgid "Days" msgstr "" -#: src/Gtk/SettingsDialog.vala:137 +#: src/Gtk/SettingsDialog.vala:138 #, fuzzy msgid "Weeks" msgstr "Semaine(s)" -#: src/Gtk/SettingsDialog.vala:140 +#: src/Gtk/SettingsDialog.vala:141 #, fuzzy msgid "Seconds" msgstr "Seconde(s)" -#: src/Gtk/SettingsDialog.vala:146 +#: src/Gtk/SettingsDialog.vala:147 msgid "Filters" msgstr "" -#: src/Gtk/SettingsDialog.vala:154 +#: src/Gtk/SettingsDialog.vala:155 msgid "Hide unstable and RC releases" msgstr "Cacher les versions instables et RC" -#: src/Gtk/SettingsDialog.vala:176 +#: src/Gtk/SettingsDialog.vala:177 #, fuzzy -msgid "previous major versions" +msgid "previous major versions ( -1 = all )" msgstr "Montrer les N dernières versions majeures" -#: src/Gtk/SettingsDialog.vala:180 +#: src/Gtk/SettingsDialog.vala:181 msgid "Network" msgstr "" -#: src/Gtk/SettingsDialog.vala:191 +#: src/Gtk/SettingsDialog.vala:192 #, fuzzy msgid "Internet connection timeout in" msgstr "Attendre la connection internet " -#: src/Gtk/SettingsDialog.vala:203 +#: src/Gtk/SettingsDialog.vala:204 msgid "seconds" msgstr "secondes" -#: src/Gtk/SettingsDialog.vala:210 +#: src/Gtk/SettingsDialog.vala:211 msgid "Max concurrent downloads" msgstr "Nombre maximum de téléchargements parallèles" -#: src/Gtk/SettingsDialog.vala:224 +#: src/Gtk/SettingsDialog.vala:225 +msgid "Verify Checksums with the CHECKSUMS files" +msgstr "" + +#: src/Gtk/SettingsDialog.vala:233 msgid "Proxy" msgstr "" @@ -500,7 +512,7 @@ msgstr "" msgid "Missing Icon" msgstr "Icône introuvable" -#: src/lib/l.misc.vala:67 +#: src/lib/l.misc.vala:71 #, fuzzy msgid "Can not reach site" msgstr "Impossible de lire le fichier" diff --git a/po/hr.po b/po/hr.po index 84a8d238..6d1afbdd 100644 --- a/po/hr.po +++ b/po/hr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-21 20:12-0400\n" +"POT-Creation-Date: 2023-04-01 12:41-0400\n" "PO-Revision-Date: 2022-09-22 12:13+0200\n" "Last-Translator: gogo \n" "Language-Team: Croatian\n" @@ -13,134 +13,138 @@ msgstr "" "X-Launchpad-Export-Date: 2017-12-23 23:36+0000\n" "X-Generator: Poedit 3.0.1\n" -#: src/Common/LinuxKernel.vala:86 +#: src/Common/LinuxKernel.vala:92 msgid "Distribution" msgstr "Distribucija" -#: src/Common/LinuxKernel.vala:101 +#: src/Common/LinuxKernel.vala:107 msgid "Architecture" msgstr "Arhitektura" -#: src/Common/LinuxKernel.vala:276 +#: src/Common/LinuxKernel.vala:280 #, fuzzy msgid "Fetching individual kernel indexes" msgstr "Preuzimanje sadržaja..." -#: src/Common/LinuxKernel.vala:325 +#: src/Common/LinuxKernel.vala:332 msgid "Updating from" msgstr "" -#: src/Common/LinuxKernel.vala:342 src/Common/LinuxKernel.vala:895 +#: src/Common/LinuxKernel.vala:349 msgid "OK" msgstr "U redu" -#: src/Common/LinuxKernel.vala:345 src/Common/LinuxKernel.vala:898 +#: src/Common/LinuxKernel.vala:352 msgid "FAILED" msgstr "" -#: src/Common/LinuxKernel.vala:759 +#: src/Common/LinuxKernel.vala:793 msgid "Packages Available" msgstr "Dostupni paketi" -#: src/Common/LinuxKernel.vala:764 +#: src/Common/LinuxKernel.vala:798 msgid "Packages Installed" msgstr "Instalirani paketi" -#: src/Common/LinuxKernel.vala:777 src/lib/TeeJee.FileSystem.vala:121 +#: src/Common/LinuxKernel.vala:819 src/lib/TeeJee.FileSystem.vala:118 msgid "File not found" msgstr "Datoteka nije pronađena" -#: src/Common/LinuxKernel.vala:841 +#: src/Common/LinuxKernel.vala:886 msgid "Available Kernels" msgstr "Dostupni kerneli" -#: src/Common/LinuxKernel.vala:848 src/Gtk/MainWindow.vala:154 +#: src/Common/LinuxKernel.vala:893 src/Gtk/MainWindow.vala:154 msgid "Installed" msgstr "Instalirano" -#: src/Common/LinuxKernel.vala:848 src/Gtk/MainWindow.vala:154 -#: src/Gtk/MainWindow.vala:497 src/Gtk/MainWindow.vala:510 +#: src/Common/LinuxKernel.vala:893 src/Gtk/MainWindow.vala:154 +#: src/Gtk/MainWindow.vala:495 src/Gtk/MainWindow.vala:508 msgid "Running" msgstr "Pokrenuto" -#: src/Common/LinuxKernel.vala:883 +#: src/Common/LinuxKernel.vala:926 +msgid "CHECKSUMS enabled" +msgstr "" + +#: src/Common/LinuxKernel.vala:950 msgid "Downloading" -msgstr "Preuzimanje" +msgstr "" -#: src/Common/LinuxKernel.vala:911 +#: src/Common/LinuxKernel.vala:971 #, fuzzy msgid "is already installed." msgstr "Ovaj kernel je već instaliran." -#: src/Common/LinuxKernel.vala:941 +#: src/Common/LinuxKernel.vala:1005 #, fuzzy msgid "Uninstalling selected kernels" msgstr "Deinstaliraj određene kernele" -#: src/Common/LinuxKernel.vala:947 +#: src/Common/LinuxKernel.vala:1011 msgid "requested" msgstr "" -#: src/Common/LinuxKernel.vala:950 +#: src/Common/LinuxKernel.vala:1014 #, fuzzy msgid "not uninstalling the currently running kernel" msgstr "Deinstaliraj određene kernele" -#: src/Common/LinuxKernel.vala:966 +#: src/Common/LinuxKernel.vala:1030 msgid "found" msgstr "" -#: src/Common/LinuxKernel.vala:969 +#: src/Common/LinuxKernel.vala:1033 #, fuzzy msgid "No packages to un-install!" msgstr "Instalirani paketi" -#: src/Common/LinuxKernel.vala:1017 +#: src/Common/LinuxKernel.vala:1081 #, fuzzy msgid "Could not find running kernel in list" msgstr "Nemoguće je pronaći pokrenuti kernel na popisu!" -#: src/Common/LinuxKernel.vala:1022 +#: src/Common/LinuxKernel.vala:1086 msgid "Could not find any kernels to uninstall" msgstr "Nema pronađenih kernela za deinstaliranje" -#: src/Common/LinuxKernel.vala:1030 +#: src/Common/LinuxKernel.vala:1094 #, fuzzy msgid "The following kernels will be uninstalled" msgstr "Sljedeći kerneli će biti deinstalirani:" -#: src/Common/LinuxKernel.vala:1034 +#: src/Common/LinuxKernel.vala:1098 msgid "Continue ?" msgstr "Nastavi?" -#: src/Common/LinuxKernel.vala:1056 src/Console/AppConsole.vala:290 +#: src/Common/LinuxKernel.vala:1120 src/Console/AppConsole.vala:290 msgid "Latest update" msgstr "Najnovija nadopuna" -#: src/Common/LinuxKernel.vala:1067 src/Console/AppConsole.vala:297 +#: src/Common/LinuxKernel.vala:1131 src/Console/AppConsole.vala:297 msgid "Latest point update" msgstr "Najnovija ciljana nadopuna" -#: src/Common/LinuxKernel.vala:1075 src/Console/AppConsole.vala:302 +#: src/Common/LinuxKernel.vala:1139 src/Console/AppConsole.vala:302 #: src/Console/AppConsole.vala:318 msgid "No updates found" msgstr "Nema pronađenih nadopuna" -#: src/Common/LinuxKernel.vala:1084 +#: src/Common/LinuxKernel.vala:1148 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Instaliraj kernel inačice %s ? (d/n): " -#: src/Common/Main.vala:300 +#: src/Common/Main.vala:351 msgid "Called from" msgstr "Pozvano od" -#: src/Common/Main.vala:301 +#: src/Common/Main.vala:352 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" -#: src/Common/Main.vala:333 +#: src/Common/Main.vala:384 msgid "Notifications are disabled" msgstr "Obavijesti su onemogućene" @@ -278,23 +282,23 @@ msgstr "za prikaz svih mogućnosti" msgid "Notifications disabled in settings" msgstr "Obavijesti su onemogućene" -#: src/Console/AppConsole.vala:332 -msgid "previously notified" -msgstr "" - -#: src/Console/AppConsole.vala:335 +#: src/Console/AppConsole.vala:337 #, c-format msgid "Kernel %s Available" msgstr "Kernel %s je dostupan" -#: src/Console/AppConsole.vala:339 src/Gtk/SettingsDialog.vala:164 +#: src/Console/AppConsole.vala:341 src/Gtk/SettingsDialog.vala:166 msgid "Show" msgstr "Prikaži" -#: src/Console/AppConsole.vala:340 src/Gtk/MainWindow.vala:265 +#: src/Console/AppConsole.vala:342 src/Gtk/MainWindow.vala:264 msgid "Install" msgstr "Instaliraj" +#: src/Console/AppConsole.vala:345 +msgid "Previously notified" +msgstr "" + #: src/Gtk/AboutWindow.vala:162 src/Gtk/AboutWindow.vala:179 msgid "Credits" msgstr "Zasluge" @@ -352,60 +356,64 @@ msgstr "Kernel" msgid "Status" msgstr "Stanje" -#: src/Gtk/MainWindow.vala:275 +#: src/Gtk/MainWindow.vala:274 msgid "Uninstall" msgstr "Deinstaliraj" -#: src/Gtk/MainWindow.vala:285 -msgid "Changes" -msgstr "Promjene" +#: src/Gtk/MainWindow.vala:284 +msgid "Notes" +msgstr "" + +#: src/Gtk/MainWindow.vala:289 +msgid "User notes for" +msgstr "" -#: src/Gtk/MainWindow.vala:307 +#: src/Gtk/MainWindow.vala:305 msgid "Uninstall Old" msgstr "Deinstaliraj staro" -#: src/Gtk/MainWindow.vala:308 +#: src/Gtk/MainWindow.vala:306 msgid "Uninstall kernels older than running kernel" msgstr "Deinstaliraj kernele starije od pokrenutog krenela" -#: src/Gtk/MainWindow.vala:313 +#: src/Gtk/MainWindow.vala:311 msgid "Reload" msgstr "" -#: src/Gtk/MainWindow.vala:318 src/Gtk/SettingsDialog.vala:48 +#: src/Gtk/MainWindow.vala:316 src/Gtk/SettingsDialog.vala:49 msgid "Settings" msgstr "Postavke" -#: src/Gtk/MainWindow.vala:323 +#: src/Gtk/MainWindow.vala:321 msgid "About" msgstr "O programu" -#: src/Gtk/MainWindow.vala:328 +#: src/Gtk/MainWindow.vala:326 msgid "Exit" msgstr "" -#: src/Gtk/MainWindow.vala:396 +#: src/Gtk/MainWindow.vala:394 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Alat za nadogradnju kernela Ubuntu temeljenih distribucija" -#: src/Gtk/MainWindow.vala:397 +#: src/Gtk/MainWindow.vala:395 msgid "Forked" msgstr "Forkano" -#: src/Gtk/MainWindow.vala:397 +#: src/Gtk/MainWindow.vala:395 msgid "Original" msgstr "Izvornik" -#: src/Gtk/MainWindow.vala:435 +#: src/Gtk/MainWindow.vala:433 msgid "Updating kernels" msgstr "" -#: src/Gtk/MainWindow.vala:506 +#: src/Gtk/MainWindow.vala:504 msgid "available" msgstr "dostupno" -#: src/Gtk/MainWindow.vala:549 src/Gtk/MainWindow.vala:589 -#: src/Gtk/MainWindow.vala:623 +#: src/Gtk/MainWindow.vala:547 src/Gtk/MainWindow.vala:587 +#: src/Gtk/MainWindow.vala:621 msgid "DONE" msgstr "" @@ -413,77 +421,81 @@ msgstr "" msgid "Cancel" msgstr "Odustani" -#: src/Gtk/SettingsDialog.vala:58 +#: src/Gtk/SettingsDialog.vala:59 msgid "Notification" msgstr "Obavijesti" -#: src/Gtk/SettingsDialog.vala:65 +#: src/Gtk/SettingsDialog.vala:66 msgid "Notify if a major release is available" msgstr "Obavijesti kada je glavno izdanje dostupno" -#: src/Gtk/SettingsDialog.vala:74 +#: src/Gtk/SettingsDialog.vala:75 msgid "Notify if a point release is available" msgstr "Obavijesti kada je pojedino izdanje dostupno" -#: src/Gtk/SettingsDialog.vala:85 +#: src/Gtk/SettingsDialog.vala:86 #, fuzzy msgid "Seconds interval enabled for debugging" msgstr "(Dopuštena razdoblja u sekundama za --debug)" -#: src/Gtk/SettingsDialog.vala:108 +#: src/Gtk/SettingsDialog.vala:109 msgid "Check every" msgstr "Provjeri svaka" -#: src/Gtk/SettingsDialog.vala:133 +#: src/Gtk/SettingsDialog.vala:134 #, fuzzy msgid "Hours" msgstr "Sat(a)" -#: src/Gtk/SettingsDialog.vala:135 +#: src/Gtk/SettingsDialog.vala:136 msgid "Days" msgstr "" -#: src/Gtk/SettingsDialog.vala:137 +#: src/Gtk/SettingsDialog.vala:138 #, fuzzy msgid "Weeks" msgstr "Tjedan(a)" -#: src/Gtk/SettingsDialog.vala:140 +#: src/Gtk/SettingsDialog.vala:141 #, fuzzy msgid "Seconds" msgstr "Sekund(e)" -#: src/Gtk/SettingsDialog.vala:146 +#: src/Gtk/SettingsDialog.vala:147 msgid "Filters" msgstr "" -#: src/Gtk/SettingsDialog.vala:154 +#: src/Gtk/SettingsDialog.vala:155 msgid "Hide unstable and RC releases" msgstr "Sakrij nestabilne kernele i predizdanja" -#: src/Gtk/SettingsDialog.vala:176 +#: src/Gtk/SettingsDialog.vala:177 #, fuzzy -msgid "previous major versions" +msgid "previous major versions ( -1 = all )" msgstr "Prikaži N prijašnjih glavnih izdanja " -#: src/Gtk/SettingsDialog.vala:180 +#: src/Gtk/SettingsDialog.vala:181 msgid "Network" msgstr "" -#: src/Gtk/SettingsDialog.vala:191 +#: src/Gtk/SettingsDialog.vala:192 #, fuzzy msgid "Internet connection timeout in" msgstr "Istek internet povezivanja za " -#: src/Gtk/SettingsDialog.vala:203 +#: src/Gtk/SettingsDialog.vala:204 msgid "seconds" msgstr "sekunde" -#: src/Gtk/SettingsDialog.vala:210 +#: src/Gtk/SettingsDialog.vala:211 msgid "Max concurrent downloads" msgstr "Najviše istodobnih preuzimanja" -#: src/Gtk/SettingsDialog.vala:224 +#: src/Gtk/SettingsDialog.vala:225 +msgid "Verify Checksums with the CHECKSUMS files" +msgstr "" + +#: src/Gtk/SettingsDialog.vala:233 msgid "Proxy" msgstr "" @@ -491,7 +503,7 @@ msgstr "" msgid "Missing Icon" msgstr "Ikone koje nedostaju" -#: src/lib/l.misc.vala:67 +#: src/lib/l.misc.vala:71 #, fuzzy msgid "Can not reach site" msgstr "Neuspjelo čitanje datoteke" diff --git a/po/it.po b/po/it.po index f1202b31..e8dad02b 100644 --- a/po/it.po +++ b/po/it.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline 1.0.15\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-21 20:12-0400\n" +"POT-Creation-Date: 2023-04-01 12:41-0400\n" "PO-Revision-Date: 2020-08-22 15:35+0100\n" "Last-Translator: Albano Battistella \n" "Language-Team: Italian\n" @@ -11,136 +11,140 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: src/Common/LinuxKernel.vala:86 +#: src/Common/LinuxKernel.vala:92 msgid "Distribution" msgstr "Distribuzione" -#: src/Common/LinuxKernel.vala:101 +#: src/Common/LinuxKernel.vala:107 msgid "Architecture" msgstr "Architettura" -#: src/Common/LinuxKernel.vala:276 +#: src/Common/LinuxKernel.vala:280 #, fuzzy msgid "Fetching individual kernel indexes" msgstr "Recupero dei singoli indici del kernel" -#: src/Common/LinuxKernel.vala:325 +#: src/Common/LinuxKernel.vala:332 msgid "Updating from" msgstr "Aggiornamento da" -#: src/Common/LinuxKernel.vala:342 src/Common/LinuxKernel.vala:895 +#: src/Common/LinuxKernel.vala:349 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:345 src/Common/LinuxKernel.vala:898 +#: src/Common/LinuxKernel.vala:352 msgid "FAILED" msgstr "FALLITO" -#: src/Common/LinuxKernel.vala:759 +#: src/Common/LinuxKernel.vala:793 msgid "Packages Available" msgstr "Pacchetti disponibili" -#: src/Common/LinuxKernel.vala:764 +#: src/Common/LinuxKernel.vala:798 msgid "Packages Installed" msgstr "Pacchetti installati" -#: src/Common/LinuxKernel.vala:777 src/lib/TeeJee.FileSystem.vala:121 +#: src/Common/LinuxKernel.vala:819 src/lib/TeeJee.FileSystem.vala:118 msgid "File not found" msgstr "File non trovato" -#: src/Common/LinuxKernel.vala:841 +#: src/Common/LinuxKernel.vala:886 msgid "Available Kernels" msgstr "Kernel disponibili" -#: src/Common/LinuxKernel.vala:848 src/Gtk/MainWindow.vala:154 +#: src/Common/LinuxKernel.vala:893 src/Gtk/MainWindow.vala:154 msgid "Installed" msgstr "Installato" -#: src/Common/LinuxKernel.vala:848 src/Gtk/MainWindow.vala:154 -#: src/Gtk/MainWindow.vala:497 src/Gtk/MainWindow.vala:510 +#: src/Common/LinuxKernel.vala:893 src/Gtk/MainWindow.vala:154 +#: src/Gtk/MainWindow.vala:495 src/Gtk/MainWindow.vala:508 msgid "Running" msgstr "In esecuzione" -#: src/Common/LinuxKernel.vala:883 +#: src/Common/LinuxKernel.vala:926 +msgid "CHECKSUMS enabled" +msgstr "" + +#: src/Common/LinuxKernel.vala:950 msgid "Downloading" -msgstr "Download in corso" +msgstr "" -#: src/Common/LinuxKernel.vala:911 +#: src/Common/LinuxKernel.vala:971 #, fuzzy msgid "is already installed." msgstr "è già installato." -#: src/Common/LinuxKernel.vala:941 +#: src/Common/LinuxKernel.vala:1005 #, fuzzy msgid "Uninstalling selected kernels" msgstr "Disinstalla i kernel specificati" -#: src/Common/LinuxKernel.vala:947 +#: src/Common/LinuxKernel.vala:1011 msgid "requested" msgstr "richiesto" -#: src/Common/LinuxKernel.vala:950 +#: src/Common/LinuxKernel.vala:1014 #, fuzzy msgid "not uninstalling the currently running kernel" msgstr "non disinstallare il kernel attualmente in esecuzione" -#: src/Common/LinuxKernel.vala:966 +#: src/Common/LinuxKernel.vala:1030 msgid "found" msgstr "trovato" -#: src/Common/LinuxKernel.vala:969 +#: src/Common/LinuxKernel.vala:1033 #, fuzzy msgid "No packages to un-install!" msgstr "Nessun pacchetto da disinstallare!" -#: src/Common/LinuxKernel.vala:1017 +#: src/Common/LinuxKernel.vala:1081 #, fuzzy msgid "Could not find running kernel in list" msgstr "Impossibile trovare il kernel in esecuzione nell'elenco" -#: src/Common/LinuxKernel.vala:1022 +#: src/Common/LinuxKernel.vala:1086 msgid "Could not find any kernels to uninstall" msgstr "Impossibile trovare alcun kernel da rimuovere" -#: src/Common/LinuxKernel.vala:1030 +#: src/Common/LinuxKernel.vala:1094 #, fuzzy msgid "The following kernels will be uninstalled" msgstr "I seguenti kernel saranno rimossi" -#: src/Common/LinuxKernel.vala:1034 +#: src/Common/LinuxKernel.vala:1098 msgid "Continue ?" msgstr "Continuare ?" -#: src/Common/LinuxKernel.vala:1056 src/Console/AppConsole.vala:290 +#: src/Common/LinuxKernel.vala:1120 src/Console/AppConsole.vala:290 msgid "Latest update" msgstr "Ultimo aggiornamento" -#: src/Common/LinuxKernel.vala:1067 src/Console/AppConsole.vala:297 +#: src/Common/LinuxKernel.vala:1131 src/Console/AppConsole.vala:297 msgid "Latest point update" msgstr "Ultimo aggiornamento del rilascio parziale" -#: src/Common/LinuxKernel.vala:1075 src/Console/AppConsole.vala:302 +#: src/Common/LinuxKernel.vala:1139 src/Console/AppConsole.vala:302 #: src/Console/AppConsole.vala:318 msgid "No updates found" msgstr "Nessun aggiornamento trovato" -#: src/Common/LinuxKernel.vala:1084 +#: src/Common/LinuxKernel.vala:1148 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Installare la versione del kernel %s ? (y/n): " -#: src/Common/Main.vala:300 +#: src/Common/Main.vala:351 msgid "Called from" msgstr "Chiamata da" -#: src/Common/Main.vala:301 +#: src/Common/Main.vala:352 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" "Questo file viene sovrascritto ed eseguito nuovamente ogni volta che vengono " "salvate le impostazioni" -#: src/Common/Main.vala:333 +#: src/Common/Main.vala:384 msgid "Notifications are disabled" msgstr "Le notifiche sono disabilitate" @@ -280,23 +284,23 @@ msgstr "elencare tutti i comandi" msgid "Notifications disabled in settings" msgstr "Le notifiche sono disabilitate" -#: src/Console/AppConsole.vala:332 -msgid "previously notified" -msgstr "" - -#: src/Console/AppConsole.vala:335 +#: src/Console/AppConsole.vala:337 #, c-format msgid "Kernel %s Available" msgstr "Kernel %s Disponibile" -#: src/Console/AppConsole.vala:339 src/Gtk/SettingsDialog.vala:164 +#: src/Console/AppConsole.vala:341 src/Gtk/SettingsDialog.vala:166 msgid "Show" msgstr "Mostra" -#: src/Console/AppConsole.vala:340 src/Gtk/MainWindow.vala:265 +#: src/Console/AppConsole.vala:342 src/Gtk/MainWindow.vala:264 msgid "Install" msgstr "Installa" +#: src/Console/AppConsole.vala:345 +msgid "Previously notified" +msgstr "" + #: src/Gtk/AboutWindow.vala:162 src/Gtk/AboutWindow.vala:179 msgid "Credits" msgstr "Crediti" @@ -354,60 +358,64 @@ msgstr "Kernel" msgid "Status" msgstr "Stato" -#: src/Gtk/MainWindow.vala:275 +#: src/Gtk/MainWindow.vala:274 msgid "Uninstall" msgstr "Disinstalla" -#: src/Gtk/MainWindow.vala:285 -msgid "Changes" -msgstr "Modifiche" +#: src/Gtk/MainWindow.vala:284 +msgid "Notes" +msgstr "" + +#: src/Gtk/MainWindow.vala:289 +msgid "User notes for" +msgstr "" -#: src/Gtk/MainWindow.vala:307 +#: src/Gtk/MainWindow.vala:305 msgid "Uninstall Old" msgstr "Disinstalla i vecchi" -#: src/Gtk/MainWindow.vala:308 +#: src/Gtk/MainWindow.vala:306 msgid "Uninstall kernels older than running kernel" msgstr "Rimuove i kernel installati più vecchi del kernel in esecuzione" -#: src/Gtk/MainWindow.vala:313 +#: src/Gtk/MainWindow.vala:311 msgid "Reload" msgstr "Ricarica" -#: src/Gtk/MainWindow.vala:318 src/Gtk/SettingsDialog.vala:48 +#: src/Gtk/MainWindow.vala:316 src/Gtk/SettingsDialog.vala:49 msgid "Settings" msgstr "Impostazioni" -#: src/Gtk/MainWindow.vala:323 +#: src/Gtk/MainWindow.vala:321 msgid "About" msgstr "Informazioni" -#: src/Gtk/MainWindow.vala:328 +#: src/Gtk/MainWindow.vala:326 msgid "Exit" msgstr "Chiudi" -#: src/Gtk/MainWindow.vala:396 +#: src/Gtk/MainWindow.vala:394 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Utilità di aggiornamento del kernel per distribuzioni basate su Ubuntu" -#: src/Gtk/MainWindow.vala:397 +#: src/Gtk/MainWindow.vala:395 msgid "Forked" msgstr "Forked" -#: src/Gtk/MainWindow.vala:397 +#: src/Gtk/MainWindow.vala:395 msgid "Original" msgstr "Originale" -#: src/Gtk/MainWindow.vala:435 +#: src/Gtk/MainWindow.vala:433 msgid "Updating kernels" msgstr "Aggiornamento dei kernel" -#: src/Gtk/MainWindow.vala:506 +#: src/Gtk/MainWindow.vala:504 msgid "available" msgstr "disponibile" -#: src/Gtk/MainWindow.vala:549 src/Gtk/MainWindow.vala:589 -#: src/Gtk/MainWindow.vala:623 +#: src/Gtk/MainWindow.vala:547 src/Gtk/MainWindow.vala:587 +#: src/Gtk/MainWindow.vala:621 msgid "DONE" msgstr "FATTO" @@ -415,85 +423,89 @@ msgstr "FATTO" msgid "Cancel" msgstr "Cancella" -#: src/Gtk/SettingsDialog.vala:58 +#: src/Gtk/SettingsDialog.vala:59 msgid "Notification" msgstr "Notifica" -#: src/Gtk/SettingsDialog.vala:65 +#: src/Gtk/SettingsDialog.vala:66 msgid "Notify if a major release is available" msgstr "Avvisa se è disponibile una versione principale" -#: src/Gtk/SettingsDialog.vala:74 +#: src/Gtk/SettingsDialog.vala:75 msgid "Notify if a point release is available" msgstr "Avvisa se è disponibile un rilascio parziale" -#: src/Gtk/SettingsDialog.vala:85 +#: src/Gtk/SettingsDialog.vala:86 #, fuzzy msgid "Seconds interval enabled for debugging" msgstr "Intervallo in secondi abilitato per il debug" -#: src/Gtk/SettingsDialog.vala:108 +#: src/Gtk/SettingsDialog.vala:109 msgid "Check every" msgstr "Controlla ogni" -#: src/Gtk/SettingsDialog.vala:133 +#: src/Gtk/SettingsDialog.vala:134 #, fuzzy msgid "Hours" msgstr "Ora(e)" -#: src/Gtk/SettingsDialog.vala:135 +#: src/Gtk/SettingsDialog.vala:136 msgid "Days" msgstr "" -#: src/Gtk/SettingsDialog.vala:137 +#: src/Gtk/SettingsDialog.vala:138 #, fuzzy msgid "Weeks" msgstr "Settimana(e)" -#: src/Gtk/SettingsDialog.vala:140 +#: src/Gtk/SettingsDialog.vala:141 #, fuzzy msgid "Seconds" msgstr "Secondo(i)" -#: src/Gtk/SettingsDialog.vala:146 +#: src/Gtk/SettingsDialog.vala:147 msgid "Filters" msgstr "Filtri" -#: src/Gtk/SettingsDialog.vala:154 +#: src/Gtk/SettingsDialog.vala:155 msgid "Hide unstable and RC releases" msgstr "Nascondi versioni instabili e rilasci RC" -#: src/Gtk/SettingsDialog.vala:176 +#: src/Gtk/SettingsDialog.vala:177 #, fuzzy -msgid "previous major versions" +msgid "previous major versions ( -1 = all )" msgstr "versioni principali precedenti" -#: src/Gtk/SettingsDialog.vala:180 +#: src/Gtk/SettingsDialog.vala:181 msgid "Network" msgstr "Rete" -#: src/Gtk/SettingsDialog.vala:191 +#: src/Gtk/SettingsDialog.vala:192 #, fuzzy msgid "Internet connection timeout in" msgstr "Timeout connessione Internet in" -#: src/Gtk/SettingsDialog.vala:203 +#: src/Gtk/SettingsDialog.vala:204 msgid "seconds" msgstr "secondi" -#: src/Gtk/SettingsDialog.vala:210 +#: src/Gtk/SettingsDialog.vala:211 msgid "Max concurrent downloads" msgstr "Numero massimo di download simultanei" -#: src/Gtk/SettingsDialog.vala:224 +#: src/Gtk/SettingsDialog.vala:225 +msgid "Verify Checksums with the CHECKSUMS files" +msgstr "" + +#: src/Gtk/SettingsDialog.vala:233 msgid "Proxy" -msgstr "Proxy" +msgstr "" #: src/Gtk/l.gtk.vala:42 msgid "Missing Icon" msgstr "Icona mancante" -#: src/lib/l.misc.vala:67 +#: src/lib/l.misc.vala:71 #, fuzzy msgid "Can not reach site" msgstr "Impossibile raggiungere il sito" diff --git a/po/ko.po b/po/ko.po index 94b2e543..876d1945 100644 --- a/po/ko.po +++ b/po/ko.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline 1.0.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-21 20:12-0400\n" +"POT-Creation-Date: 2023-04-01 12:41-0400\n" "PO-Revision-Date: 2022-09-28 11:48+0900\n" "Last-Translator: Kevin Kim \n" "Language-Team: Korean\n" @@ -13,134 +13,138 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Poedit 3.0.1\n" -#: src/Common/LinuxKernel.vala:86 +#: src/Common/LinuxKernel.vala:92 msgid "Distribution" msgstr "배포판" -#: src/Common/LinuxKernel.vala:101 +#: src/Common/LinuxKernel.vala:107 msgid "Architecture" msgstr "아키텍처" -#: src/Common/LinuxKernel.vala:276 +#: src/Common/LinuxKernel.vala:280 #, fuzzy msgid "Fetching individual kernel indexes" msgstr "목록 가져오기..." -#: src/Common/LinuxKernel.vala:325 +#: src/Common/LinuxKernel.vala:332 msgid "Updating from" msgstr "" -#: src/Common/LinuxKernel.vala:342 src/Common/LinuxKernel.vala:895 +#: src/Common/LinuxKernel.vala:349 msgid "OK" msgstr "확인" -#: src/Common/LinuxKernel.vala:345 src/Common/LinuxKernel.vala:898 +#: src/Common/LinuxKernel.vala:352 msgid "FAILED" msgstr "" -#: src/Common/LinuxKernel.vala:759 +#: src/Common/LinuxKernel.vala:793 msgid "Packages Available" msgstr "설치 가능한 패키지" -#: src/Common/LinuxKernel.vala:764 +#: src/Common/LinuxKernel.vala:798 msgid "Packages Installed" msgstr "설치된 패키지" -#: src/Common/LinuxKernel.vala:777 src/lib/TeeJee.FileSystem.vala:121 +#: src/Common/LinuxKernel.vala:819 src/lib/TeeJee.FileSystem.vala:118 msgid "File not found" msgstr "파일을 찾을 수 없습니다" -#: src/Common/LinuxKernel.vala:841 +#: src/Common/LinuxKernel.vala:886 msgid "Available Kernels" msgstr "설치 가능한 커널" -#: src/Common/LinuxKernel.vala:848 src/Gtk/MainWindow.vala:154 +#: src/Common/LinuxKernel.vala:893 src/Gtk/MainWindow.vala:154 msgid "Installed" msgstr "설치 됨" -#: src/Common/LinuxKernel.vala:848 src/Gtk/MainWindow.vala:154 -#: src/Gtk/MainWindow.vala:497 src/Gtk/MainWindow.vala:510 +#: src/Common/LinuxKernel.vala:893 src/Gtk/MainWindow.vala:154 +#: src/Gtk/MainWindow.vala:495 src/Gtk/MainWindow.vala:508 msgid "Running" msgstr "구동 중" -#: src/Common/LinuxKernel.vala:883 +#: src/Common/LinuxKernel.vala:926 +msgid "CHECKSUMS enabled" +msgstr "" + +#: src/Common/LinuxKernel.vala:950 msgid "Downloading" -msgstr "다운로드 중" +msgstr "" -#: src/Common/LinuxKernel.vala:911 +#: src/Common/LinuxKernel.vala:971 #, fuzzy msgid "is already installed." msgstr "이 커널은 이미 설치되었습니다." -#: src/Common/LinuxKernel.vala:941 +#: src/Common/LinuxKernel.vala:1005 #, fuzzy msgid "Uninstalling selected kernels" msgstr "지정한 커널 삭제" -#: src/Common/LinuxKernel.vala:947 +#: src/Common/LinuxKernel.vala:1011 msgid "requested" msgstr "" -#: src/Common/LinuxKernel.vala:950 +#: src/Common/LinuxKernel.vala:1014 #, fuzzy msgid "not uninstalling the currently running kernel" msgstr "지정한 커널 삭제" -#: src/Common/LinuxKernel.vala:966 +#: src/Common/LinuxKernel.vala:1030 msgid "found" msgstr "" -#: src/Common/LinuxKernel.vala:969 +#: src/Common/LinuxKernel.vala:1033 #, fuzzy msgid "No packages to un-install!" msgstr "설치된 패키지" -#: src/Common/LinuxKernel.vala:1017 +#: src/Common/LinuxKernel.vala:1081 #, fuzzy msgid "Could not find running kernel in list" msgstr "목록에서 사용중인 커널을 찾을 수 없습니다!" -#: src/Common/LinuxKernel.vala:1022 +#: src/Common/LinuxKernel.vala:1086 msgid "Could not find any kernels to uninstall" msgstr "삭제할 커널을 찾을 수 없습니다" -#: src/Common/LinuxKernel.vala:1030 +#: src/Common/LinuxKernel.vala:1094 #, fuzzy msgid "The following kernels will be uninstalled" msgstr "아래 커널이 삭제됩니다:" -#: src/Common/LinuxKernel.vala:1034 +#: src/Common/LinuxKernel.vala:1098 msgid "Continue ?" msgstr "계속하시겠습니까?" -#: src/Common/LinuxKernel.vala:1056 src/Console/AppConsole.vala:290 +#: src/Common/LinuxKernel.vala:1120 src/Console/AppConsole.vala:290 msgid "Latest update" msgstr "최신 업데이트" -#: src/Common/LinuxKernel.vala:1067 src/Console/AppConsole.vala:297 +#: src/Common/LinuxKernel.vala:1131 src/Console/AppConsole.vala:297 msgid "Latest point update" msgstr "최신 포인트 업데이트" -#: src/Common/LinuxKernel.vala:1075 src/Console/AppConsole.vala:302 +#: src/Common/LinuxKernel.vala:1139 src/Console/AppConsole.vala:302 #: src/Console/AppConsole.vala:318 msgid "No updates found" msgstr "업데이트를 찾을 수 없습니다" -#: src/Common/LinuxKernel.vala:1084 +#: src/Common/LinuxKernel.vala:1148 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "커널 %s 버전을 설치하시겠습니까? (y/n): " -#: src/Common/Main.vala:300 +#: src/Common/Main.vala:351 msgid "Called from" msgstr "에서 호출" -#: src/Common/Main.vala:301 +#: src/Common/Main.vala:352 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" -#: src/Common/Main.vala:333 +#: src/Common/Main.vala:384 msgid "Notifications are disabled" msgstr "알림이 비활성화 되었습니다" @@ -278,23 +282,23 @@ msgstr "모든 명령어 나열" msgid "Notifications disabled in settings" msgstr "알림이 비활성화 되었습니다" -#: src/Console/AppConsole.vala:332 -msgid "previously notified" -msgstr "" - -#: src/Console/AppConsole.vala:335 +#: src/Console/AppConsole.vala:337 #, c-format msgid "Kernel %s Available" msgstr "커널 %s 사용 가능" -#: src/Console/AppConsole.vala:339 src/Gtk/SettingsDialog.vala:164 +#: src/Console/AppConsole.vala:341 src/Gtk/SettingsDialog.vala:166 msgid "Show" msgstr "보이기" -#: src/Console/AppConsole.vala:340 src/Gtk/MainWindow.vala:265 +#: src/Console/AppConsole.vala:342 src/Gtk/MainWindow.vala:264 msgid "Install" msgstr "설치" +#: src/Console/AppConsole.vala:345 +msgid "Previously notified" +msgstr "" + #: src/Gtk/AboutWindow.vala:162 src/Gtk/AboutWindow.vala:179 msgid "Credits" msgstr "제작자" @@ -352,60 +356,64 @@ msgstr "커널" msgid "Status" msgstr "상태" -#: src/Gtk/MainWindow.vala:275 +#: src/Gtk/MainWindow.vala:274 msgid "Uninstall" msgstr "삭제" -#: src/Gtk/MainWindow.vala:285 -msgid "Changes" -msgstr "변경사항" +#: src/Gtk/MainWindow.vala:284 +msgid "Notes" +msgstr "" + +#: src/Gtk/MainWindow.vala:289 +msgid "User notes for" +msgstr "" -#: src/Gtk/MainWindow.vala:307 +#: src/Gtk/MainWindow.vala:305 msgid "Uninstall Old" msgstr "오래된 커널 제거" -#: src/Gtk/MainWindow.vala:308 +#: src/Gtk/MainWindow.vala:306 msgid "Uninstall kernels older than running kernel" msgstr "현재 사용 중인 커널보다 이전 버전의 커널을 제거" -#: src/Gtk/MainWindow.vala:313 +#: src/Gtk/MainWindow.vala:311 msgid "Reload" msgstr "" -#: src/Gtk/MainWindow.vala:318 src/Gtk/SettingsDialog.vala:48 +#: src/Gtk/MainWindow.vala:316 src/Gtk/SettingsDialog.vala:49 msgid "Settings" msgstr "설정" -#: src/Gtk/MainWindow.vala:323 +#: src/Gtk/MainWindow.vala:321 msgid "About" msgstr "정보" -#: src/Gtk/MainWindow.vala:328 +#: src/Gtk/MainWindow.vala:326 msgid "Exit" msgstr "" -#: src/Gtk/MainWindow.vala:396 +#: src/Gtk/MainWindow.vala:394 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "우분투 기반 배포판의 커널 업그레이드 도구" -#: src/Gtk/MainWindow.vala:397 +#: src/Gtk/MainWindow.vala:395 msgid "Forked" msgstr "" -#: src/Gtk/MainWindow.vala:397 +#: src/Gtk/MainWindow.vala:395 msgid "Original" msgstr "" -#: src/Gtk/MainWindow.vala:435 +#: src/Gtk/MainWindow.vala:433 msgid "Updating kernels" msgstr "" -#: src/Gtk/MainWindow.vala:506 +#: src/Gtk/MainWindow.vala:504 msgid "available" msgstr "사용가능" -#: src/Gtk/MainWindow.vala:549 src/Gtk/MainWindow.vala:589 -#: src/Gtk/MainWindow.vala:623 +#: src/Gtk/MainWindow.vala:547 src/Gtk/MainWindow.vala:587 +#: src/Gtk/MainWindow.vala:621 msgid "DONE" msgstr "" @@ -413,77 +421,81 @@ msgstr "" msgid "Cancel" msgstr "취소" -#: src/Gtk/SettingsDialog.vala:58 +#: src/Gtk/SettingsDialog.vala:59 msgid "Notification" msgstr "알림" -#: src/Gtk/SettingsDialog.vala:65 +#: src/Gtk/SettingsDialog.vala:66 msgid "Notify if a major release is available" msgstr "메이저 릴리즈가 있으면 알림" -#: src/Gtk/SettingsDialog.vala:74 +#: src/Gtk/SettingsDialog.vala:75 msgid "Notify if a point release is available" msgstr "포인트 릴리즈가 있으면 알림" -#: src/Gtk/SettingsDialog.vala:85 +#: src/Gtk/SettingsDialog.vala:86 #, fuzzy msgid "Seconds interval enabled for debugging" msgstr "(--debug 를 위한 몇초간 지연 허용)" -#: src/Gtk/SettingsDialog.vala:108 +#: src/Gtk/SettingsDialog.vala:109 msgid "Check every" msgstr "확인 주기" -#: src/Gtk/SettingsDialog.vala:133 +#: src/Gtk/SettingsDialog.vala:134 #, fuzzy msgid "Hours" msgstr "시간" -#: src/Gtk/SettingsDialog.vala:135 +#: src/Gtk/SettingsDialog.vala:136 msgid "Days" msgstr "" -#: src/Gtk/SettingsDialog.vala:137 +#: src/Gtk/SettingsDialog.vala:138 #, fuzzy msgid "Weeks" msgstr "주" -#: src/Gtk/SettingsDialog.vala:140 +#: src/Gtk/SettingsDialog.vala:141 #, fuzzy msgid "Seconds" msgstr "초" -#: src/Gtk/SettingsDialog.vala:146 +#: src/Gtk/SettingsDialog.vala:147 msgid "Filters" msgstr "" -#: src/Gtk/SettingsDialog.vala:154 +#: src/Gtk/SettingsDialog.vala:155 msgid "Hide unstable and RC releases" msgstr "목록에서 unstable, RC 버전 포함" -#: src/Gtk/SettingsDialog.vala:176 +#: src/Gtk/SettingsDialog.vala:177 #, fuzzy -msgid "previous major versions" +msgid "previous major versions ( -1 = all )" msgstr "보여 질 이전 메이저 버전 수 " -#: src/Gtk/SettingsDialog.vala:180 +#: src/Gtk/SettingsDialog.vala:181 msgid "Network" msgstr "" -#: src/Gtk/SettingsDialog.vala:191 +#: src/Gtk/SettingsDialog.vala:192 #, fuzzy msgid "Internet connection timeout in" msgstr "인터넷 연결 타임아웃 시간 " -#: src/Gtk/SettingsDialog.vala:203 +#: src/Gtk/SettingsDialog.vala:204 msgid "seconds" msgstr "초" -#: src/Gtk/SettingsDialog.vala:210 +#: src/Gtk/SettingsDialog.vala:211 msgid "Max concurrent downloads" msgstr "동시 다운로드 최대 수" -#: src/Gtk/SettingsDialog.vala:224 +#: src/Gtk/SettingsDialog.vala:225 +msgid "Verify Checksums with the CHECKSUMS files" +msgstr "" + +#: src/Gtk/SettingsDialog.vala:233 msgid "Proxy" msgstr "" @@ -491,7 +503,7 @@ msgstr "" msgid "Missing Icon" msgstr "아이콘을 찾을 수 없습니다" -#: src/lib/l.misc.vala:67 +#: src/lib/l.misc.vala:71 #, fuzzy msgid "Can not reach site" msgstr "파일 읽기를 실패했습니다" diff --git a/po/messages.pot b/po/messages.pot index b0b348f0..fca710c4 100644 --- a/po/messages.pot +++ b/po/messages.pot @@ -6,9 +6,9 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: mainline 1.1.8\n" +"Project-Id-Version: mainline 1.1.9\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-21 20:12-0400\n" +"POT-Creation-Date: 2023-04-01 12:41-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,127 +17,131 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" -#: src/Common/LinuxKernel.vala:86 +#: src/Common/LinuxKernel.vala:92 msgid "Distribution" msgstr "" -#: src/Common/LinuxKernel.vala:101 +#: src/Common/LinuxKernel.vala:107 msgid "Architecture" msgstr "" -#: src/Common/LinuxKernel.vala:276 +#: src/Common/LinuxKernel.vala:280 msgid "Fetching individual kernel indexes" msgstr "" -#: src/Common/LinuxKernel.vala:325 +#: src/Common/LinuxKernel.vala:332 msgid "Updating from" msgstr "" -#: src/Common/LinuxKernel.vala:342 src/Common/LinuxKernel.vala:895 +#: src/Common/LinuxKernel.vala:349 msgid "OK" msgstr "" -#: src/Common/LinuxKernel.vala:345 src/Common/LinuxKernel.vala:898 +#: src/Common/LinuxKernel.vala:352 msgid "FAILED" msgstr "" -#: src/Common/LinuxKernel.vala:759 +#: src/Common/LinuxKernel.vala:793 msgid "Packages Available" msgstr "" -#: src/Common/LinuxKernel.vala:764 +#: src/Common/LinuxKernel.vala:798 msgid "Packages Installed" msgstr "" -#: src/Common/LinuxKernel.vala:777 src/lib/TeeJee.FileSystem.vala:121 +#: src/Common/LinuxKernel.vala:819 src/lib/TeeJee.FileSystem.vala:118 msgid "File not found" msgstr "" -#: src/Common/LinuxKernel.vala:841 +#: src/Common/LinuxKernel.vala:886 msgid "Available Kernels" msgstr "" -#: src/Common/LinuxKernel.vala:848 src/Gtk/MainWindow.vala:154 +#: src/Common/LinuxKernel.vala:893 src/Gtk/MainWindow.vala:154 msgid "Installed" msgstr "" -#: src/Common/LinuxKernel.vala:848 src/Gtk/MainWindow.vala:154 -#: src/Gtk/MainWindow.vala:497 src/Gtk/MainWindow.vala:510 +#: src/Common/LinuxKernel.vala:893 src/Gtk/MainWindow.vala:154 +#: src/Gtk/MainWindow.vala:495 src/Gtk/MainWindow.vala:508 msgid "Running" msgstr "" -#: src/Common/LinuxKernel.vala:883 +#: src/Common/LinuxKernel.vala:926 +msgid "CHECKSUMS enabled" +msgstr "" + +#: src/Common/LinuxKernel.vala:950 msgid "Downloading" msgstr "" -#: src/Common/LinuxKernel.vala:911 +#: src/Common/LinuxKernel.vala:971 msgid "is already installed." msgstr "" -#: src/Common/LinuxKernel.vala:941 +#: src/Common/LinuxKernel.vala:1005 msgid "Uninstalling selected kernels" msgstr "" -#: src/Common/LinuxKernel.vala:947 +#: src/Common/LinuxKernel.vala:1011 msgid "requested" msgstr "" -#: src/Common/LinuxKernel.vala:950 +#: src/Common/LinuxKernel.vala:1014 msgid "not uninstalling the currently running kernel" msgstr "" -#: src/Common/LinuxKernel.vala:966 +#: src/Common/LinuxKernel.vala:1030 msgid "found" msgstr "" -#: src/Common/LinuxKernel.vala:969 +#: src/Common/LinuxKernel.vala:1033 msgid "No packages to un-install!" msgstr "" -#: src/Common/LinuxKernel.vala:1017 +#: src/Common/LinuxKernel.vala:1081 msgid "Could not find running kernel in list" msgstr "" -#: src/Common/LinuxKernel.vala:1022 +#: src/Common/LinuxKernel.vala:1086 msgid "Could not find any kernels to uninstall" msgstr "" -#: src/Common/LinuxKernel.vala:1030 +#: src/Common/LinuxKernel.vala:1094 msgid "The following kernels will be uninstalled" msgstr "" -#: src/Common/LinuxKernel.vala:1034 +#: src/Common/LinuxKernel.vala:1098 msgid "Continue ?" msgstr "" -#: src/Common/LinuxKernel.vala:1056 src/Console/AppConsole.vala:290 +#: src/Common/LinuxKernel.vala:1120 src/Console/AppConsole.vala:290 msgid "Latest update" msgstr "" -#: src/Common/LinuxKernel.vala:1067 src/Console/AppConsole.vala:297 +#: src/Common/LinuxKernel.vala:1131 src/Console/AppConsole.vala:297 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:1075 src/Console/AppConsole.vala:302 +#: src/Common/LinuxKernel.vala:1139 src/Console/AppConsole.vala:302 #: src/Console/AppConsole.vala:318 msgid "No updates found" msgstr "" -#: src/Common/LinuxKernel.vala:1084 +#: src/Common/LinuxKernel.vala:1148 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "" -#: src/Common/Main.vala:300 +#: src/Common/Main.vala:351 msgid "Called from" msgstr "" -#: src/Common/Main.vala:301 +#: src/Common/Main.vala:352 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" -#: src/Common/Main.vala:333 +#: src/Common/Main.vala:384 msgid "Notifications are disabled" msgstr "" @@ -271,23 +275,23 @@ msgstr "" msgid "Notifications disabled in settings" msgstr "" -#: src/Console/AppConsole.vala:332 -msgid "previously notified" -msgstr "" - -#: src/Console/AppConsole.vala:335 +#: src/Console/AppConsole.vala:337 #, c-format msgid "Kernel %s Available" msgstr "" -#: src/Console/AppConsole.vala:339 src/Gtk/SettingsDialog.vala:164 +#: src/Console/AppConsole.vala:341 src/Gtk/SettingsDialog.vala:166 msgid "Show" msgstr "" -#: src/Console/AppConsole.vala:340 src/Gtk/MainWindow.vala:265 +#: src/Console/AppConsole.vala:342 src/Gtk/MainWindow.vala:264 msgid "Install" msgstr "" +#: src/Console/AppConsole.vala:345 +msgid "Previously notified" +msgstr "" + #: src/Gtk/AboutWindow.vala:162 src/Gtk/AboutWindow.vala:179 msgid "Credits" msgstr "" @@ -344,60 +348,64 @@ msgstr "" msgid "Status" msgstr "" -#: src/Gtk/MainWindow.vala:275 +#: src/Gtk/MainWindow.vala:274 msgid "Uninstall" msgstr "" -#: src/Gtk/MainWindow.vala:285 -msgid "Changes" +#: src/Gtk/MainWindow.vala:284 +msgid "Notes" msgstr "" -#: src/Gtk/MainWindow.vala:307 +#: src/Gtk/MainWindow.vala:289 +msgid "User notes for" +msgstr "" + +#: src/Gtk/MainWindow.vala:305 msgid "Uninstall Old" msgstr "" -#: src/Gtk/MainWindow.vala:308 +#: src/Gtk/MainWindow.vala:306 msgid "Uninstall kernels older than running kernel" msgstr "" -#: src/Gtk/MainWindow.vala:313 +#: src/Gtk/MainWindow.vala:311 msgid "Reload" msgstr "" -#: src/Gtk/MainWindow.vala:318 src/Gtk/SettingsDialog.vala:48 +#: src/Gtk/MainWindow.vala:316 src/Gtk/SettingsDialog.vala:49 msgid "Settings" msgstr "" -#: src/Gtk/MainWindow.vala:323 +#: src/Gtk/MainWindow.vala:321 msgid "About" msgstr "" -#: src/Gtk/MainWindow.vala:328 +#: src/Gtk/MainWindow.vala:326 msgid "Exit" msgstr "" -#: src/Gtk/MainWindow.vala:396 +#: src/Gtk/MainWindow.vala:394 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "" -#: src/Gtk/MainWindow.vala:397 +#: src/Gtk/MainWindow.vala:395 msgid "Forked" msgstr "" -#: src/Gtk/MainWindow.vala:397 +#: src/Gtk/MainWindow.vala:395 msgid "Original" msgstr "" -#: src/Gtk/MainWindow.vala:435 +#: src/Gtk/MainWindow.vala:433 msgid "Updating kernels" msgstr "" -#: src/Gtk/MainWindow.vala:506 +#: src/Gtk/MainWindow.vala:504 msgid "available" msgstr "" -#: src/Gtk/MainWindow.vala:549 src/Gtk/MainWindow.vala:589 -#: src/Gtk/MainWindow.vala:623 +#: src/Gtk/MainWindow.vala:547 src/Gtk/MainWindow.vala:587 +#: src/Gtk/MainWindow.vala:621 msgid "DONE" msgstr "" @@ -405,71 +413,75 @@ msgstr "" msgid "Cancel" msgstr "" -#: src/Gtk/SettingsDialog.vala:58 +#: src/Gtk/SettingsDialog.vala:59 msgid "Notification" msgstr "" -#: src/Gtk/SettingsDialog.vala:65 +#: src/Gtk/SettingsDialog.vala:66 msgid "Notify if a major release is available" msgstr "" -#: src/Gtk/SettingsDialog.vala:74 +#: src/Gtk/SettingsDialog.vala:75 msgid "Notify if a point release is available" msgstr "" -#: src/Gtk/SettingsDialog.vala:85 +#: src/Gtk/SettingsDialog.vala:86 msgid "Seconds interval enabled for debugging" msgstr "" -#: src/Gtk/SettingsDialog.vala:108 +#: src/Gtk/SettingsDialog.vala:109 msgid "Check every" msgstr "" -#: src/Gtk/SettingsDialog.vala:133 +#: src/Gtk/SettingsDialog.vala:134 msgid "Hours" msgstr "" -#: src/Gtk/SettingsDialog.vala:135 +#: src/Gtk/SettingsDialog.vala:136 msgid "Days" msgstr "" -#: src/Gtk/SettingsDialog.vala:137 +#: src/Gtk/SettingsDialog.vala:138 msgid "Weeks" msgstr "" -#: src/Gtk/SettingsDialog.vala:140 +#: src/Gtk/SettingsDialog.vala:141 msgid "Seconds" msgstr "" -#: src/Gtk/SettingsDialog.vala:146 +#: src/Gtk/SettingsDialog.vala:147 msgid "Filters" msgstr "" -#: src/Gtk/SettingsDialog.vala:154 +#: src/Gtk/SettingsDialog.vala:155 msgid "Hide unstable and RC releases" msgstr "" -#: src/Gtk/SettingsDialog.vala:176 -msgid "previous major versions" +#: src/Gtk/SettingsDialog.vala:177 +msgid "previous major versions ( -1 = all )" msgstr "" -#: src/Gtk/SettingsDialog.vala:180 +#: src/Gtk/SettingsDialog.vala:181 msgid "Network" msgstr "" -#: src/Gtk/SettingsDialog.vala:191 +#: src/Gtk/SettingsDialog.vala:192 msgid "Internet connection timeout in" msgstr "" -#: src/Gtk/SettingsDialog.vala:203 +#: src/Gtk/SettingsDialog.vala:204 msgid "seconds" msgstr "" -#: src/Gtk/SettingsDialog.vala:210 +#: src/Gtk/SettingsDialog.vala:211 msgid "Max concurrent downloads" msgstr "" -#: src/Gtk/SettingsDialog.vala:224 +#: src/Gtk/SettingsDialog.vala:225 +msgid "Verify Checksums with the CHECKSUMS files" +msgstr "" + +#: src/Gtk/SettingsDialog.vala:233 msgid "Proxy" msgstr "" @@ -477,6 +489,6 @@ msgstr "" msgid "Missing Icon" msgstr "" -#: src/lib/l.misc.vala:67 +#: src/lib/l.misc.vala:71 msgid "Can not reach site" msgstr "" diff --git a/po/nl.po b/po/nl.po index 89fb79da..7dc38f47 100644 --- a/po/nl.po +++ b/po/nl.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-21 20:12-0400\n" +"POT-Creation-Date: 2023-04-01 12:41-0400\n" "PO-Revision-Date: 2020-08-23 13:55+0200\n" "Last-Translator: Heimen Stoffels \n" "Language-Team: Dutch (Netherlands)\n" @@ -13,135 +13,139 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Poedit 3.2.2\n" -#: src/Common/LinuxKernel.vala:86 +#: src/Common/LinuxKernel.vala:92 msgid "Distribution" msgstr "Distributie" -#: src/Common/LinuxKernel.vala:101 +#: src/Common/LinuxKernel.vala:107 msgid "Architecture" msgstr "Architectuur" -#: src/Common/LinuxKernel.vala:276 +#: src/Common/LinuxKernel.vala:280 #, fuzzy msgid "Fetching individual kernel indexes" msgstr "Bezig met ophalen van kernelindexen…" -#: src/Common/LinuxKernel.vala:325 +#: src/Common/LinuxKernel.vala:332 msgid "Updating from" msgstr "Bezig met bijwerken van" -#: src/Common/LinuxKernel.vala:342 src/Common/LinuxKernel.vala:895 +#: src/Common/LinuxKernel.vala:349 msgid "OK" msgstr "Oké" -#: src/Common/LinuxKernel.vala:345 src/Common/LinuxKernel.vala:898 +#: src/Common/LinuxKernel.vala:352 msgid "FAILED" msgstr "" -#: src/Common/LinuxKernel.vala:759 +#: src/Common/LinuxKernel.vala:793 msgid "Packages Available" msgstr "Beschikbare pakketten" -#: src/Common/LinuxKernel.vala:764 +#: src/Common/LinuxKernel.vala:798 msgid "Packages Installed" msgstr "Geïnstalleerde pakketten" -#: src/Common/LinuxKernel.vala:777 src/lib/TeeJee.FileSystem.vala:121 +#: src/Common/LinuxKernel.vala:819 src/lib/TeeJee.FileSystem.vala:118 msgid "File not found" msgstr "Het bestand is niet gevonden" -#: src/Common/LinuxKernel.vala:841 +#: src/Common/LinuxKernel.vala:886 msgid "Available Kernels" msgstr "Beschikbare kernels" -#: src/Common/LinuxKernel.vala:848 src/Gtk/MainWindow.vala:154 +#: src/Common/LinuxKernel.vala:893 src/Gtk/MainWindow.vala:154 msgid "Installed" msgstr "Geïnstalleerd" -#: src/Common/LinuxKernel.vala:848 src/Gtk/MainWindow.vala:154 -#: src/Gtk/MainWindow.vala:497 src/Gtk/MainWindow.vala:510 +#: src/Common/LinuxKernel.vala:893 src/Gtk/MainWindow.vala:154 +#: src/Gtk/MainWindow.vala:495 src/Gtk/MainWindow.vala:508 msgid "Running" msgstr "In gebruik" -#: src/Common/LinuxKernel.vala:883 +#: src/Common/LinuxKernel.vala:926 +msgid "CHECKSUMS enabled" +msgstr "" + +#: src/Common/LinuxKernel.vala:950 msgid "Downloading" -msgstr "Bezig met downloaden" +msgstr "" -#: src/Common/LinuxKernel.vala:911 +#: src/Common/LinuxKernel.vala:971 #, fuzzy msgid "is already installed." msgstr "Deze kernel is al geïnstalleerd." -#: src/Common/LinuxKernel.vala:941 +#: src/Common/LinuxKernel.vala:1005 #, fuzzy msgid "Uninstalling selected kernels" msgstr "Bezig met deïnstalleren van geselecteerde kernels…" -#: src/Common/LinuxKernel.vala:947 +#: src/Common/LinuxKernel.vala:1011 msgid "requested" msgstr "verzocht" -#: src/Common/LinuxKernel.vala:950 +#: src/Common/LinuxKernel.vala:1014 #, fuzzy msgid "not uninstalling the currently running kernel" msgstr "Opgegeven kernels deïnstalleren" -#: src/Common/LinuxKernel.vala:966 +#: src/Common/LinuxKernel.vala:1030 msgid "found" msgstr "gevonden" -#: src/Common/LinuxKernel.vala:969 +#: src/Common/LinuxKernel.vala:1033 #, fuzzy msgid "No packages to un-install!" msgstr "Er zijn geen te deïnstalleren pakketten!" -#: src/Common/LinuxKernel.vala:1017 +#: src/Common/LinuxKernel.vala:1081 #, fuzzy msgid "Could not find running kernel in list" msgstr "De in gebruik zijnde kernel staat niet op de lijst" -#: src/Common/LinuxKernel.vala:1022 +#: src/Common/LinuxKernel.vala:1086 #, fuzzy msgid "Could not find any kernels to uninstall" msgstr "Er zijn geen te verwijderen kernels" -#: src/Common/LinuxKernel.vala:1030 +#: src/Common/LinuxKernel.vala:1094 #, fuzzy msgid "The following kernels will be uninstalled" msgstr "De volgende kernels worden verwijderd:" -#: src/Common/LinuxKernel.vala:1034 +#: src/Common/LinuxKernel.vala:1098 msgid "Continue ?" msgstr "Wilt u doorgaan?" -#: src/Common/LinuxKernel.vala:1056 src/Console/AppConsole.vala:290 +#: src/Common/LinuxKernel.vala:1120 src/Console/AppConsole.vala:290 msgid "Latest update" msgstr "Recentste update" -#: src/Common/LinuxKernel.vala:1067 src/Console/AppConsole.vala:297 +#: src/Common/LinuxKernel.vala:1131 src/Console/AppConsole.vala:297 msgid "Latest point update" msgstr "Recentste puntupdate" -#: src/Common/LinuxKernel.vala:1075 src/Console/AppConsole.vala:302 +#: src/Common/LinuxKernel.vala:1139 src/Console/AppConsole.vala:302 #: src/Console/AppConsole.vala:318 msgid "No updates found" msgstr "Geen updates gevonden" -#: src/Common/LinuxKernel.vala:1084 +#: src/Common/LinuxKernel.vala:1148 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Wilt u versie %s installeren? (j/n): " -#: src/Common/Main.vala:300 +#: src/Common/Main.vala:351 msgid "Called from" msgstr "Aangeroepen door" -#: src/Common/Main.vala:301 +#: src/Common/Main.vala:352 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" -#: src/Common/Main.vala:333 +#: src/Common/Main.vala:384 msgid "Notifications are disabled" msgstr "Meldingen zijn uitgeschakeld" @@ -282,23 +286,23 @@ msgstr "om alle opdrachten te tonen" msgid "Notifications disabled in settings" msgstr "Meldingen zijn uitgeschakeld" -#: src/Console/AppConsole.vala:332 -msgid "previously notified" -msgstr "" - -#: src/Console/AppConsole.vala:335 +#: src/Console/AppConsole.vala:337 #, c-format msgid "Kernel %s Available" msgstr "Kernel %s is beschikbaar" -#: src/Console/AppConsole.vala:339 src/Gtk/SettingsDialog.vala:164 +#: src/Console/AppConsole.vala:341 src/Gtk/SettingsDialog.vala:166 msgid "Show" msgstr "Tonen" -#: src/Console/AppConsole.vala:340 src/Gtk/MainWindow.vala:265 +#: src/Console/AppConsole.vala:342 src/Gtk/MainWindow.vala:264 msgid "Install" msgstr "Installeren" +#: src/Console/AppConsole.vala:345 +msgid "Previously notified" +msgstr "" + #: src/Gtk/AboutWindow.vala:162 src/Gtk/AboutWindow.vala:179 msgid "Credits" msgstr "Met dank aan" @@ -356,63 +360,67 @@ msgstr "Kernel" msgid "Status" msgstr "Status" -#: src/Gtk/MainWindow.vala:275 +#: src/Gtk/MainWindow.vala:274 #, fuzzy msgid "Uninstall" msgstr "Deïnstalleren" -#: src/Gtk/MainWindow.vala:285 -msgid "Changes" -msgstr "Wijzigingen" +#: src/Gtk/MainWindow.vala:284 +msgid "Notes" +msgstr "" + +#: src/Gtk/MainWindow.vala:289 +msgid "User notes for" +msgstr "" -#: src/Gtk/MainWindow.vala:307 +#: src/Gtk/MainWindow.vala:305 #, fuzzy msgid "Uninstall Old" msgstr "Verouderde deïnstalleren" -#: src/Gtk/MainWindow.vala:308 +#: src/Gtk/MainWindow.vala:306 #, fuzzy msgid "Uninstall kernels older than running kernel" msgstr "Kernels verwijderen die ouder zijn dan de huidige" -#: src/Gtk/MainWindow.vala:313 +#: src/Gtk/MainWindow.vala:311 msgid "Reload" msgstr "Herladen" -#: src/Gtk/MainWindow.vala:318 src/Gtk/SettingsDialog.vala:48 +#: src/Gtk/MainWindow.vala:316 src/Gtk/SettingsDialog.vala:49 msgid "Settings" msgstr "Instellingen" -#: src/Gtk/MainWindow.vala:323 +#: src/Gtk/MainWindow.vala:321 msgid "About" msgstr "Over" -#: src/Gtk/MainWindow.vala:328 +#: src/Gtk/MainWindow.vala:326 msgid "Exit" msgstr "Afsluiten" -#: src/Gtk/MainWindow.vala:396 +#: src/Gtk/MainWindow.vala:394 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Een kernelupgradehulpmiddel voor op Ubuntu gebaseerde distributies" -#: src/Gtk/MainWindow.vala:397 +#: src/Gtk/MainWindow.vala:395 msgid "Forked" msgstr "Geforkt" -#: src/Gtk/MainWindow.vala:397 +#: src/Gtk/MainWindow.vala:395 msgid "Original" msgstr "Origineel" -#: src/Gtk/MainWindow.vala:435 +#: src/Gtk/MainWindow.vala:433 msgid "Updating kernels" msgstr "Bezig met bijwerken van kernels…" -#: src/Gtk/MainWindow.vala:506 +#: src/Gtk/MainWindow.vala:504 msgid "available" msgstr "beschikbaar" -#: src/Gtk/MainWindow.vala:549 src/Gtk/MainWindow.vala:589 -#: src/Gtk/MainWindow.vala:623 +#: src/Gtk/MainWindow.vala:547 src/Gtk/MainWindow.vala:587 +#: src/Gtk/MainWindow.vala:621 msgid "DONE" msgstr "AFGEROND" @@ -420,83 +428,88 @@ msgstr "AFGEROND" msgid "Cancel" msgstr "Annuleren" -#: src/Gtk/SettingsDialog.vala:58 +#: src/Gtk/SettingsDialog.vala:59 msgid "Notification" msgstr "Melding" -#: src/Gtk/SettingsDialog.vala:65 +#: src/Gtk/SettingsDialog.vala:66 msgid "Notify if a major release is available" msgstr "Melding tonen als er een grote update beschikbaar is" -#: src/Gtk/SettingsDialog.vala:74 +#: src/Gtk/SettingsDialog.vala:75 msgid "Notify if a point release is available" msgstr "Melding tonen als er een puntupdate beschikbaar is" -#: src/Gtk/SettingsDialog.vala:85 +#: src/Gtk/SettingsDialog.vala:86 #, fuzzy msgid "Seconds interval enabled for debugging" msgstr "(staat tussenpozen in seconden toe voor --debug)" -#: src/Gtk/SettingsDialog.vala:108 +#: src/Gtk/SettingsDialog.vala:109 msgid "Check every" msgstr "Controleren, elke" -#: src/Gtk/SettingsDialog.vala:133 +#: src/Gtk/SettingsDialog.vala:134 #, fuzzy msgid "Hours" msgstr "uur" -#: src/Gtk/SettingsDialog.vala:135 +#: src/Gtk/SettingsDialog.vala:136 msgid "Days" msgstr "" -#: src/Gtk/SettingsDialog.vala:137 +#: src/Gtk/SettingsDialog.vala:138 #, fuzzy msgid "Weeks" msgstr "week/weken" -#: src/Gtk/SettingsDialog.vala:140 +#: src/Gtk/SettingsDialog.vala:141 #, fuzzy msgid "Seconds" msgstr "seconde(n)" -#: src/Gtk/SettingsDialog.vala:146 +#: src/Gtk/SettingsDialog.vala:147 msgid "Filters" msgstr "Filters" -#: src/Gtk/SettingsDialog.vala:154 +#: src/Gtk/SettingsDialog.vala:155 msgid "Hide unstable and RC releases" msgstr "Instabiele en rc-uitgaven verbergen" -#: src/Gtk/SettingsDialog.vala:176 -msgid "previous major versions" +#: src/Gtk/SettingsDialog.vala:177 +#, fuzzy +msgid "previous major versions ( -1 = all )" msgstr "vorige grote updates" -#: src/Gtk/SettingsDialog.vala:180 +#: src/Gtk/SettingsDialog.vala:181 msgid "Network" msgstr "Netwerk" -#: src/Gtk/SettingsDialog.vala:191 +#: src/Gtk/SettingsDialog.vala:192 msgid "Internet connection timeout in" msgstr "Verbindingstime-out na" -#: src/Gtk/SettingsDialog.vala:203 +#: src/Gtk/SettingsDialog.vala:204 msgid "seconds" msgstr "seconden" -#: src/Gtk/SettingsDialog.vala:210 +#: src/Gtk/SettingsDialog.vala:211 msgid "Max concurrent downloads" msgstr "Max. aantal gelijktijdige downloads" -#: src/Gtk/SettingsDialog.vala:224 +#: src/Gtk/SettingsDialog.vala:225 +msgid "Verify Checksums with the CHECKSUMS files" +msgstr "" + +#: src/Gtk/SettingsDialog.vala:233 msgid "Proxy" -msgstr "Proxy" +msgstr "" #: src/Gtk/l.gtk.vala:42 msgid "Missing Icon" msgstr "Ontbrekend pictogram" -#: src/lib/l.misc.vala:67 +#: src/lib/l.misc.vala:71 #, fuzzy msgid "Can not reach site" msgstr "Het bestand kan niet worden uitgelezen" diff --git a/po/pl.po b/po/pl.po index e50e45f8..947dc55c 100644 --- a/po/pl.po +++ b/po/pl.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-21 20:12-0400\n" +"POT-Creation-Date: 2023-04-01 12:41-0400\n" "PO-Revision-Date: 2023-03-11 12:47+0100\n" "Last-Translator: Matthaiks\n" "Language-Team: Polish\n" @@ -12,127 +12,131 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Poedit 3.2\n" -#: src/Common/LinuxKernel.vala:86 +#: src/Common/LinuxKernel.vala:92 msgid "Distribution" msgstr "Dystrybucja" -#: src/Common/LinuxKernel.vala:101 +#: src/Common/LinuxKernel.vala:107 msgid "Architecture" msgstr "Architektura" -#: src/Common/LinuxKernel.vala:276 +#: src/Common/LinuxKernel.vala:280 msgid "Fetching individual kernel indexes" msgstr "Pobieranie indywidualnych indeksów jąder" -#: src/Common/LinuxKernel.vala:325 +#: src/Common/LinuxKernel.vala:332 msgid "Updating from" msgstr "Aktualizowanie z" -#: src/Common/LinuxKernel.vala:342 src/Common/LinuxKernel.vala:895 +#: src/Common/LinuxKernel.vala:349 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:345 src/Common/LinuxKernel.vala:898 +#: src/Common/LinuxKernel.vala:352 msgid "FAILED" msgstr "NIEPOWODZENIE" -#: src/Common/LinuxKernel.vala:759 +#: src/Common/LinuxKernel.vala:793 msgid "Packages Available" msgstr "Dostępne pakiety" -#: src/Common/LinuxKernel.vala:764 +#: src/Common/LinuxKernel.vala:798 msgid "Packages Installed" msgstr "Pakiety zainstalowane" -#: src/Common/LinuxKernel.vala:777 src/lib/TeeJee.FileSystem.vala:121 +#: src/Common/LinuxKernel.vala:819 src/lib/TeeJee.FileSystem.vala:118 msgid "File not found" msgstr "Nie odnaleziono pliku" -#: src/Common/LinuxKernel.vala:841 +#: src/Common/LinuxKernel.vala:886 msgid "Available Kernels" msgstr "Dostępne jądra" -#: src/Common/LinuxKernel.vala:848 src/Gtk/MainWindow.vala:154 +#: src/Common/LinuxKernel.vala:893 src/Gtk/MainWindow.vala:154 msgid "Installed" msgstr "Zainstalowane" -#: src/Common/LinuxKernel.vala:848 src/Gtk/MainWindow.vala:154 -#: src/Gtk/MainWindow.vala:497 src/Gtk/MainWindow.vala:510 +#: src/Common/LinuxKernel.vala:893 src/Gtk/MainWindow.vala:154 +#: src/Gtk/MainWindow.vala:495 src/Gtk/MainWindow.vala:508 msgid "Running" msgstr "Uruchomione" -#: src/Common/LinuxKernel.vala:883 +#: src/Common/LinuxKernel.vala:926 +msgid "CHECKSUMS enabled" +msgstr "" + +#: src/Common/LinuxKernel.vala:950 msgid "Downloading" -msgstr "Pobieranie" +msgstr "" -#: src/Common/LinuxKernel.vala:911 +#: src/Common/LinuxKernel.vala:971 msgid "is already installed." msgstr "jest już zainstalowane." -#: src/Common/LinuxKernel.vala:941 +#: src/Common/LinuxKernel.vala:1005 msgid "Uninstalling selected kernels" msgstr "Odinstalowanie wybranych jąder" -#: src/Common/LinuxKernel.vala:947 +#: src/Common/LinuxKernel.vala:1011 msgid "requested" msgstr "zażądane" -#: src/Common/LinuxKernel.vala:950 +#: src/Common/LinuxKernel.vala:1014 msgid "not uninstalling the currently running kernel" msgstr "bez odinstalowywania aktualnie uruchomionego jądra" -#: src/Common/LinuxKernel.vala:966 +#: src/Common/LinuxKernel.vala:1030 msgid "found" msgstr "znalezione" -#: src/Common/LinuxKernel.vala:969 +#: src/Common/LinuxKernel.vala:1033 msgid "No packages to un-install!" msgstr "Brak pakietów do odinstalowania!" -#: src/Common/LinuxKernel.vala:1017 +#: src/Common/LinuxKernel.vala:1081 msgid "Could not find running kernel in list" msgstr "Nie można znaleźć uruchomionego jądra na liście" -#: src/Common/LinuxKernel.vala:1022 +#: src/Common/LinuxKernel.vala:1086 msgid "Could not find any kernels to uninstall" msgstr "Nie można znaleźć żadnych jąder do odinstalowania" -#: src/Common/LinuxKernel.vala:1030 +#: src/Common/LinuxKernel.vala:1094 msgid "The following kernels will be uninstalled" msgstr "Następujące jądra zostaną odinstalowane" -#: src/Common/LinuxKernel.vala:1034 +#: src/Common/LinuxKernel.vala:1098 msgid "Continue ?" msgstr "Kontynuować?" -#: src/Common/LinuxKernel.vala:1056 src/Console/AppConsole.vala:290 +#: src/Common/LinuxKernel.vala:1120 src/Console/AppConsole.vala:290 msgid "Latest update" msgstr "Najnowsza aktualizacja" -#: src/Common/LinuxKernel.vala:1067 src/Console/AppConsole.vala:297 +#: src/Common/LinuxKernel.vala:1131 src/Console/AppConsole.vala:297 msgid "Latest point update" msgstr "Najnowsza aktualizacja punktowa" -#: src/Common/LinuxKernel.vala:1075 src/Console/AppConsole.vala:302 +#: src/Common/LinuxKernel.vala:1139 src/Console/AppConsole.vala:302 #: src/Console/AppConsole.vala:318 msgid "No updates found" msgstr "Nie znaleziono aktualizacji" -#: src/Common/LinuxKernel.vala:1084 +#: src/Common/LinuxKernel.vala:1148 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Zainstalować wersję jądra %s? (t/n): " -#: src/Common/Main.vala:300 +#: src/Common/Main.vala:351 msgid "Called from" msgstr "Wywołano z" -#: src/Common/Main.vala:301 +#: src/Common/Main.vala:352 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" -#: src/Common/Main.vala:333 +#: src/Common/Main.vala:384 msgid "Notifications are disabled" msgstr "Powiadomienia są wyłączone" @@ -267,23 +271,23 @@ msgstr "do wyświetlenia wszystkich poleceń" msgid "Notifications disabled in settings" msgstr "Powiadomienia są wyłączone" -#: src/Console/AppConsole.vala:332 -msgid "previously notified" -msgstr "" - -#: src/Console/AppConsole.vala:335 +#: src/Console/AppConsole.vala:337 #, c-format msgid "Kernel %s Available" msgstr "Dostępne %s jądra" -#: src/Console/AppConsole.vala:339 src/Gtk/SettingsDialog.vala:164 +#: src/Console/AppConsole.vala:341 src/Gtk/SettingsDialog.vala:166 msgid "Show" msgstr "Pokaż" -#: src/Console/AppConsole.vala:340 src/Gtk/MainWindow.vala:265 +#: src/Console/AppConsole.vala:342 src/Gtk/MainWindow.vala:264 msgid "Install" msgstr "Zainstaluj" +#: src/Console/AppConsole.vala:345 +msgid "Previously notified" +msgstr "" + #: src/Gtk/AboutWindow.vala:162 src/Gtk/AboutWindow.vala:179 msgid "Credits" msgstr "Zasługi" @@ -340,60 +344,64 @@ msgstr "Jądro" msgid "Status" msgstr "Status" -#: src/Gtk/MainWindow.vala:275 +#: src/Gtk/MainWindow.vala:274 msgid "Uninstall" msgstr "Odinstaluj" -#: src/Gtk/MainWindow.vala:285 -msgid "Changes" -msgstr "Zmiany" +#: src/Gtk/MainWindow.vala:284 +msgid "Notes" +msgstr "" + +#: src/Gtk/MainWindow.vala:289 +msgid "User notes for" +msgstr "" -#: src/Gtk/MainWindow.vala:307 +#: src/Gtk/MainWindow.vala:305 msgid "Uninstall Old" msgstr "Odinstaluj stare" -#: src/Gtk/MainWindow.vala:308 +#: src/Gtk/MainWindow.vala:306 msgid "Uninstall kernels older than running kernel" msgstr "Odinstaluj jądra starsze niż uruchomione jądro" -#: src/Gtk/MainWindow.vala:313 +#: src/Gtk/MainWindow.vala:311 msgid "Reload" msgstr "Wczytaj ponownie" -#: src/Gtk/MainWindow.vala:318 src/Gtk/SettingsDialog.vala:48 +#: src/Gtk/MainWindow.vala:316 src/Gtk/SettingsDialog.vala:49 msgid "Settings" msgstr "Ustawienia" -#: src/Gtk/MainWindow.vala:323 +#: src/Gtk/MainWindow.vala:321 msgid "About" msgstr "O programie" -#: src/Gtk/MainWindow.vala:328 +#: src/Gtk/MainWindow.vala:326 msgid "Exit" msgstr "Wyjdź" -#: src/Gtk/MainWindow.vala:396 +#: src/Gtk/MainWindow.vala:394 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Narzędzie uaktualniania jądra dla dystrybucji z rodziny Ubuntu" -#: src/Gtk/MainWindow.vala:397 +#: src/Gtk/MainWindow.vala:395 msgid "Forked" msgstr "Sforkowane" -#: src/Gtk/MainWindow.vala:397 +#: src/Gtk/MainWindow.vala:395 msgid "Original" msgstr "Oryginalne" -#: src/Gtk/MainWindow.vala:435 +#: src/Gtk/MainWindow.vala:433 msgid "Updating kernels" msgstr "Aktualizowanie jąder" -#: src/Gtk/MainWindow.vala:506 +#: src/Gtk/MainWindow.vala:504 msgid "available" msgstr "dostępne" -#: src/Gtk/MainWindow.vala:549 src/Gtk/MainWindow.vala:589 -#: src/Gtk/MainWindow.vala:623 +#: src/Gtk/MainWindow.vala:547 src/Gtk/MainWindow.vala:587 +#: src/Gtk/MainWindow.vala:621 msgid "DONE" msgstr "GOTOWE" @@ -401,82 +409,87 @@ msgstr "GOTOWE" msgid "Cancel" msgstr "Anuluj" -#: src/Gtk/SettingsDialog.vala:58 +#: src/Gtk/SettingsDialog.vala:59 msgid "Notification" msgstr "Powiadomienia" -#: src/Gtk/SettingsDialog.vala:65 +#: src/Gtk/SettingsDialog.vala:66 msgid "Notify if a major release is available" msgstr "Powiadom, jeśli pojawi się główna wersja" -#: src/Gtk/SettingsDialog.vala:74 +#: src/Gtk/SettingsDialog.vala:75 msgid "Notify if a point release is available" msgstr "Powiadom, jeśli pojawi się wersja punktowa" -#: src/Gtk/SettingsDialog.vala:85 +#: src/Gtk/SettingsDialog.vala:86 msgid "Seconds interval enabled for debugging" msgstr "Interwał w sekundach włączony do debugowania" -#: src/Gtk/SettingsDialog.vala:108 +#: src/Gtk/SettingsDialog.vala:109 msgid "Check every" msgstr "Sprawdzaj co" -#: src/Gtk/SettingsDialog.vala:133 +#: src/Gtk/SettingsDialog.vala:134 #, fuzzy msgid "Hours" msgstr "godziny" -#: src/Gtk/SettingsDialog.vala:135 +#: src/Gtk/SettingsDialog.vala:136 msgid "Days" msgstr "" -#: src/Gtk/SettingsDialog.vala:137 +#: src/Gtk/SettingsDialog.vala:138 #, fuzzy msgid "Weeks" msgstr "tygodnie" -#: src/Gtk/SettingsDialog.vala:140 +#: src/Gtk/SettingsDialog.vala:141 #, fuzzy msgid "Seconds" msgstr "sekundy" -#: src/Gtk/SettingsDialog.vala:146 +#: src/Gtk/SettingsDialog.vala:147 msgid "Filters" msgstr "Filtry" -#: src/Gtk/SettingsDialog.vala:154 +#: src/Gtk/SettingsDialog.vala:155 msgid "Hide unstable and RC releases" msgstr "Ukryj wydania niestabilne i RC" -#: src/Gtk/SettingsDialog.vala:176 -msgid "previous major versions" +#: src/Gtk/SettingsDialog.vala:177 +#, fuzzy +msgid "previous major versions ( -1 = all )" msgstr "poprzednie główne wersje" -#: src/Gtk/SettingsDialog.vala:180 +#: src/Gtk/SettingsDialog.vala:181 msgid "Network" msgstr "Sieć" -#: src/Gtk/SettingsDialog.vala:191 +#: src/Gtk/SettingsDialog.vala:192 msgid "Internet connection timeout in" msgstr "Limit czasu połączenia internetowego po" -#: src/Gtk/SettingsDialog.vala:203 +#: src/Gtk/SettingsDialog.vala:204 msgid "seconds" msgstr "sekundach" -#: src/Gtk/SettingsDialog.vala:210 +#: src/Gtk/SettingsDialog.vala:211 msgid "Max concurrent downloads" msgstr "Maksymalna liczba jednoczesnych pobrań" -#: src/Gtk/SettingsDialog.vala:224 +#: src/Gtk/SettingsDialog.vala:225 +msgid "Verify Checksums with the CHECKSUMS files" +msgstr "" + +#: src/Gtk/SettingsDialog.vala:233 msgid "Proxy" -msgstr "Serwer pośredniczący" +msgstr "" #: src/Gtk/l.gtk.vala:42 msgid "Missing Icon" msgstr "Brakująca ikona" -#: src/lib/l.misc.vala:67 +#: src/lib/l.misc.vala:71 #, fuzzy msgid "Can not reach site" msgstr "Nie można dotrzeć" diff --git a/po/ru.po b/po/ru.po index 9f7c1f1f..24ddf928 100644 --- a/po/ru.po +++ b/po/ru.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-21 20:12-0400\n" +"POT-Creation-Date: 2023-04-01 12:41-0400\n" "PO-Revision-Date: 2023-03-12 18:24+0300\n" "Last-Translator: Faust3000 (Original) | Danik2343 (Update Transaltion) " "\n" @@ -14,130 +14,134 @@ msgstr "" "X-Launchpad-Export-Date: 2016-12-13 11:48+0000\n" "X-Generator: Poedit 3.1.1\n" -#: src/Common/LinuxKernel.vala:86 +#: src/Common/LinuxKernel.vala:92 msgid "Distribution" msgstr "Дистрибутив" -#: src/Common/LinuxKernel.vala:101 +#: src/Common/LinuxKernel.vala:107 msgid "Architecture" msgstr "Архитектура" -#: src/Common/LinuxKernel.vala:276 +#: src/Common/LinuxKernel.vala:280 msgid "Fetching individual kernel indexes" msgstr "Получение индивидуальных индексов ядра" -#: src/Common/LinuxKernel.vala:325 +#: src/Common/LinuxKernel.vala:332 msgid "Updating from" msgstr "Обновление из" -#: src/Common/LinuxKernel.vala:342 src/Common/LinuxKernel.vala:895 +#: src/Common/LinuxKernel.vala:349 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:345 src/Common/LinuxKernel.vala:898 +#: src/Common/LinuxKernel.vala:352 msgid "FAILED" msgstr "" -#: src/Common/LinuxKernel.vala:759 +#: src/Common/LinuxKernel.vala:793 msgid "Packages Available" msgstr "Доступные пакеты" -#: src/Common/LinuxKernel.vala:764 +#: src/Common/LinuxKernel.vala:798 msgid "Packages Installed" msgstr "Установленные пакеты" -#: src/Common/LinuxKernel.vala:777 src/lib/TeeJee.FileSystem.vala:121 +#: src/Common/LinuxKernel.vala:819 src/lib/TeeJee.FileSystem.vala:118 msgid "File not found" msgstr "Файл не найден" -#: src/Common/LinuxKernel.vala:841 +#: src/Common/LinuxKernel.vala:886 msgid "Available Kernels" msgstr "Доступные ядра" -#: src/Common/LinuxKernel.vala:848 src/Gtk/MainWindow.vala:154 +#: src/Common/LinuxKernel.vala:893 src/Gtk/MainWindow.vala:154 msgid "Installed" msgstr "Установлено" -#: src/Common/LinuxKernel.vala:848 src/Gtk/MainWindow.vala:154 -#: src/Gtk/MainWindow.vala:497 src/Gtk/MainWindow.vala:510 +#: src/Common/LinuxKernel.vala:893 src/Gtk/MainWindow.vala:154 +#: src/Gtk/MainWindow.vala:495 src/Gtk/MainWindow.vala:508 msgid "Running" msgstr "Используется" -#: src/Common/LinuxKernel.vala:883 +#: src/Common/LinuxKernel.vala:926 +msgid "CHECKSUMS enabled" +msgstr "" + +#: src/Common/LinuxKernel.vala:950 msgid "Downloading" -msgstr "Загрузка" +msgstr "" -#: src/Common/LinuxKernel.vala:911 +#: src/Common/LinuxKernel.vala:971 #, fuzzy msgid "is already installed." msgstr "Это ядро уже установлено." -#: src/Common/LinuxKernel.vala:941 +#: src/Common/LinuxKernel.vala:1005 msgid "Uninstalling selected kernels" msgstr "Удаление выбранных ядер" -#: src/Common/LinuxKernel.vala:947 +#: src/Common/LinuxKernel.vala:1011 msgid "requested" msgstr "запрошено" -#: src/Common/LinuxKernel.vala:950 +#: src/Common/LinuxKernel.vala:1014 #, fuzzy msgid "not uninstalling the currently running kernel" msgstr "пропуск текущего загруженного ядра" -#: src/Common/LinuxKernel.vala:966 +#: src/Common/LinuxKernel.vala:1030 msgid "found" msgstr "найдено" -#: src/Common/LinuxKernel.vala:969 +#: src/Common/LinuxKernel.vala:1033 msgid "No packages to un-install!" msgstr "Нет пакетов для удаления!" -#: src/Common/LinuxKernel.vala:1017 +#: src/Common/LinuxKernel.vala:1081 msgid "Could not find running kernel in list" msgstr "Could not find running kernel in list" -#: src/Common/LinuxKernel.vala:1022 +#: src/Common/LinuxKernel.vala:1086 msgid "Could not find any kernels to uninstall" msgstr "Не удалось найти ядра для деинсталляции" -#: src/Common/LinuxKernel.vala:1030 +#: src/Common/LinuxKernel.vala:1094 #, fuzzy msgid "The following kernels will be uninstalled" msgstr "Следующие ядра будут деинсталлированы:" -#: src/Common/LinuxKernel.vala:1034 +#: src/Common/LinuxKernel.vala:1098 msgid "Continue ?" msgstr "Продолжить ?" -#: src/Common/LinuxKernel.vala:1056 src/Console/AppConsole.vala:290 +#: src/Common/LinuxKernel.vala:1120 src/Console/AppConsole.vala:290 msgid "Latest update" msgstr "Последнее обновление" -#: src/Common/LinuxKernel.vala:1067 src/Console/AppConsole.vala:297 +#: src/Common/LinuxKernel.vala:1131 src/Console/AppConsole.vala:297 msgid "Latest point update" msgstr "Последнее обновление пунктов" -#: src/Common/LinuxKernel.vala:1075 src/Console/AppConsole.vala:302 +#: src/Common/LinuxKernel.vala:1139 src/Console/AppConsole.vala:302 #: src/Console/AppConsole.vala:318 msgid "No updates found" msgstr "Обновлений не найдено" -#: src/Common/LinuxKernel.vala:1084 +#: src/Common/LinuxKernel.vala:1148 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Установить версию ядра %s ? (y/n): " -#: src/Common/Main.vala:300 +#: src/Common/Main.vala:351 msgid "Called from" msgstr "Вызван из" -#: src/Common/Main.vala:301 +#: src/Common/Main.vala:352 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" -#: src/Common/Main.vala:333 +#: src/Common/Main.vala:384 msgid "Notifications are disabled" msgstr "Уведомления отключены" @@ -274,23 +278,23 @@ msgstr "чтобы перечислить все команды" msgid "Notifications disabled in settings" msgstr "Уведомления отключены" -#: src/Console/AppConsole.vala:332 -msgid "previously notified" -msgstr "" - -#: src/Console/AppConsole.vala:335 +#: src/Console/AppConsole.vala:337 #, c-format msgid "Kernel %s Available" msgstr "Доступно ядро %s" -#: src/Console/AppConsole.vala:339 src/Gtk/SettingsDialog.vala:164 +#: src/Console/AppConsole.vala:341 src/Gtk/SettingsDialog.vala:166 msgid "Show" msgstr "Показать" -#: src/Console/AppConsole.vala:340 src/Gtk/MainWindow.vala:265 +#: src/Console/AppConsole.vala:342 src/Gtk/MainWindow.vala:264 msgid "Install" msgstr "Установить" +#: src/Console/AppConsole.vala:345 +msgid "Previously notified" +msgstr "" + #: src/Gtk/AboutWindow.vala:162 src/Gtk/AboutWindow.vala:179 msgid "Credits" msgstr "Создатели" @@ -347,60 +351,64 @@ msgstr "Ядро" msgid "Status" msgstr "Состояние" -#: src/Gtk/MainWindow.vala:275 +#: src/Gtk/MainWindow.vala:274 msgid "Uninstall" msgstr "Удалить" -#: src/Gtk/MainWindow.vala:285 -msgid "Changes" -msgstr "Изменения" +#: src/Gtk/MainWindow.vala:284 +msgid "Notes" +msgstr "" + +#: src/Gtk/MainWindow.vala:289 +msgid "User notes for" +msgstr "" -#: src/Gtk/MainWindow.vala:307 +#: src/Gtk/MainWindow.vala:305 msgid "Uninstall Old" msgstr "Удалить старые" -#: src/Gtk/MainWindow.vala:308 +#: src/Gtk/MainWindow.vala:306 msgid "Uninstall kernels older than running kernel" msgstr "Удалить более старшие установленные ядра, чем используемое" -#: src/Gtk/MainWindow.vala:313 +#: src/Gtk/MainWindow.vala:311 msgid "Reload" msgstr "Перезагрузить" -#: src/Gtk/MainWindow.vala:318 src/Gtk/SettingsDialog.vala:48 +#: src/Gtk/MainWindow.vala:316 src/Gtk/SettingsDialog.vala:49 msgid "Settings" msgstr "Настройки" -#: src/Gtk/MainWindow.vala:323 +#: src/Gtk/MainWindow.vala:321 msgid "About" msgstr "О программе" -#: src/Gtk/MainWindow.vala:328 +#: src/Gtk/MainWindow.vala:326 msgid "Exit" msgstr "Выход" -#: src/Gtk/MainWindow.vala:396 +#: src/Gtk/MainWindow.vala:394 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Программа обновления ядра для дистрибутивов на базе Ubuntu" -#: src/Gtk/MainWindow.vala:397 +#: src/Gtk/MainWindow.vala:395 msgid "Forked" msgstr "Форк" -#: src/Gtk/MainWindow.vala:397 +#: src/Gtk/MainWindow.vala:395 msgid "Original" msgstr "Оригинал" -#: src/Gtk/MainWindow.vala:435 +#: src/Gtk/MainWindow.vala:433 msgid "Updating kernels" msgstr "Обновление ядер" -#: src/Gtk/MainWindow.vala:506 +#: src/Gtk/MainWindow.vala:504 msgid "available" msgstr "доступно" -#: src/Gtk/MainWindow.vala:549 src/Gtk/MainWindow.vala:589 -#: src/Gtk/MainWindow.vala:623 +#: src/Gtk/MainWindow.vala:547 src/Gtk/MainWindow.vala:587 +#: src/Gtk/MainWindow.vala:621 msgid "DONE" msgstr "ГОТОВО" @@ -408,83 +416,88 @@ msgstr "ГОТОВО" msgid "Cancel" msgstr "Отмена" -#: src/Gtk/SettingsDialog.vala:58 +#: src/Gtk/SettingsDialog.vala:59 msgid "Notification" msgstr "Уведомления" -#: src/Gtk/SettingsDialog.vala:65 +#: src/Gtk/SettingsDialog.vala:66 msgid "Notify if a major release is available" msgstr "Уведомлять, если доступно крупное обновление" -#: src/Gtk/SettingsDialog.vala:74 +#: src/Gtk/SettingsDialog.vala:75 msgid "Notify if a point release is available" msgstr "Уведомлять, если доступно небольшое обновление" -#: src/Gtk/SettingsDialog.vala:85 +#: src/Gtk/SettingsDialog.vala:86 #, fuzzy msgid "Seconds interval enabled for debugging" msgstr "(Разрешение интервалов в секундах для --debug)" -#: src/Gtk/SettingsDialog.vala:108 +#: src/Gtk/SettingsDialog.vala:109 msgid "Check every" msgstr "Проверять каждые" -#: src/Gtk/SettingsDialog.vala:133 +#: src/Gtk/SettingsDialog.vala:134 #, fuzzy msgid "Hours" msgstr "Час(ов)" -#: src/Gtk/SettingsDialog.vala:135 +#: src/Gtk/SettingsDialog.vala:136 msgid "Days" msgstr "" -#: src/Gtk/SettingsDialog.vala:137 +#: src/Gtk/SettingsDialog.vala:138 #, fuzzy msgid "Weeks" msgstr "Неделю(ли)" -#: src/Gtk/SettingsDialog.vala:140 +#: src/Gtk/SettingsDialog.vala:141 #, fuzzy msgid "Seconds" msgstr "Секунду(ды)" -#: src/Gtk/SettingsDialog.vala:146 +#: src/Gtk/SettingsDialog.vala:147 msgid "Filters" msgstr "Фильтры" -#: src/Gtk/SettingsDialog.vala:154 +#: src/Gtk/SettingsDialog.vala:155 msgid "Hide unstable and RC releases" msgstr "Скрыть нестабильные и релиз-кандидат версии" -#: src/Gtk/SettingsDialog.vala:176 -msgid "previous major versions" +#: src/Gtk/SettingsDialog.vala:177 +#, fuzzy +msgid "previous major versions ( -1 = all )" msgstr "предыдущие основные версии" -#: src/Gtk/SettingsDialog.vala:180 +#: src/Gtk/SettingsDialog.vala:181 msgid "Network" msgstr "Сеть" -#: src/Gtk/SettingsDialog.vala:191 +#: src/Gtk/SettingsDialog.vala:192 msgid "Internet connection timeout in" msgstr "Таймаут подключения к Интернету в" -#: src/Gtk/SettingsDialog.vala:203 +#: src/Gtk/SettingsDialog.vala:204 msgid "seconds" msgstr "секунд" -#: src/Gtk/SettingsDialog.vala:210 +#: src/Gtk/SettingsDialog.vala:211 msgid "Max concurrent downloads" msgstr "Максимальное количество одновременных загрузок" -#: src/Gtk/SettingsDialog.vala:224 +#: src/Gtk/SettingsDialog.vala:225 +msgid "Verify Checksums with the CHECKSUMS files" +msgstr "" + +#: src/Gtk/SettingsDialog.vala:233 msgid "Proxy" -msgstr "Прокси" +msgstr "" #: src/Gtk/l.gtk.vala:42 msgid "Missing Icon" msgstr "Значок отсутствует" -#: src/lib/l.misc.vala:67 +#: src/lib/l.misc.vala:71 #, fuzzy msgid "Can not reach site" msgstr "Не удается получить" diff --git a/po/sv.po b/po/sv.po index ebcd371e..9e8b2d80 100644 --- a/po/sv.po +++ b/po/sv.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-21 20:12-0400\n" +"POT-Creation-Date: 2023-04-01 12:41-0400\n" "PO-Revision-Date: 2018-01-13 16:56+0100\n" "Last-Translator: Åke Engelbrektson \n" "Language-Team:Swedish\n" @@ -13,136 +13,140 @@ msgstr "" "X-Generator: Poedit 1.8.7.1\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: src/Common/LinuxKernel.vala:86 +#: src/Common/LinuxKernel.vala:92 msgid "Distribution" msgstr "Distribution" -#: src/Common/LinuxKernel.vala:101 +#: src/Common/LinuxKernel.vala:107 #, fuzzy msgid "Architecture" msgstr "Systemarkitektur" -#: src/Common/LinuxKernel.vala:276 +#: src/Common/LinuxKernel.vala:280 #, fuzzy msgid "Fetching individual kernel indexes" msgstr "Hämtar index för" -#: src/Common/LinuxKernel.vala:325 +#: src/Common/LinuxKernel.vala:332 msgid "Updating from" msgstr "" -#: src/Common/LinuxKernel.vala:342 src/Common/LinuxKernel.vala:895 +#: src/Common/LinuxKernel.vala:349 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:345 src/Common/LinuxKernel.vala:898 +#: src/Common/LinuxKernel.vala:352 msgid "FAILED" msgstr "" -#: src/Common/LinuxKernel.vala:759 +#: src/Common/LinuxKernel.vala:793 msgid "Packages Available" msgstr "Tillgängliga paket" -#: src/Common/LinuxKernel.vala:764 +#: src/Common/LinuxKernel.vala:798 msgid "Packages Installed" msgstr "Installerade paket" -#: src/Common/LinuxKernel.vala:777 src/lib/TeeJee.FileSystem.vala:121 +#: src/Common/LinuxKernel.vala:819 src/lib/TeeJee.FileSystem.vala:118 msgid "File not found" msgstr "Filen kan inte hittas" -#: src/Common/LinuxKernel.vala:841 +#: src/Common/LinuxKernel.vala:886 msgid "Available Kernels" msgstr "Tillgängliga kärnor" -#: src/Common/LinuxKernel.vala:848 src/Gtk/MainWindow.vala:154 +#: src/Common/LinuxKernel.vala:893 src/Gtk/MainWindow.vala:154 msgid "Installed" msgstr "Installerad" -#: src/Common/LinuxKernel.vala:848 src/Gtk/MainWindow.vala:154 -#: src/Gtk/MainWindow.vala:497 src/Gtk/MainWindow.vala:510 +#: src/Common/LinuxKernel.vala:893 src/Gtk/MainWindow.vala:154 +#: src/Gtk/MainWindow.vala:495 src/Gtk/MainWindow.vala:508 msgid "Running" msgstr "Körs" -#: src/Common/LinuxKernel.vala:883 +#: src/Common/LinuxKernel.vala:926 +msgid "CHECKSUMS enabled" +msgstr "" + +#: src/Common/LinuxKernel.vala:950 msgid "Downloading" -msgstr "Laddar ner" +msgstr "" -#: src/Common/LinuxKernel.vala:911 +#: src/Common/LinuxKernel.vala:971 #, fuzzy msgid "is already installed." msgstr "Denna kärna är redan installerad" -#: src/Common/LinuxKernel.vala:941 +#: src/Common/LinuxKernel.vala:1005 #, fuzzy msgid "Uninstalling selected kernels" msgstr "Installera specificerad kärna" -#: src/Common/LinuxKernel.vala:947 +#: src/Common/LinuxKernel.vala:1011 msgid "requested" msgstr "" -#: src/Common/LinuxKernel.vala:950 +#: src/Common/LinuxKernel.vala:1014 #, fuzzy msgid "not uninstalling the currently running kernel" msgstr "Installera specificerad kärna" -#: src/Common/LinuxKernel.vala:966 +#: src/Common/LinuxKernel.vala:1030 msgid "found" msgstr "" -#: src/Common/LinuxKernel.vala:969 +#: src/Common/LinuxKernel.vala:1033 #, fuzzy msgid "No packages to un-install!" msgstr "Installerade paket" -#: src/Common/LinuxKernel.vala:1017 +#: src/Common/LinuxKernel.vala:1081 #, fuzzy msgid "Could not find running kernel in list" msgstr "Kunde inte hitta efterfrågad version" -#: src/Common/LinuxKernel.vala:1022 +#: src/Common/LinuxKernel.vala:1086 #, fuzzy msgid "Could not find any kernels to uninstall" msgstr "Välj kärnor för borttagning" -#: src/Common/LinuxKernel.vala:1030 +#: src/Common/LinuxKernel.vala:1094 #, fuzzy msgid "The following kernels will be uninstalled" msgstr "Denna kärna är redan installerad" -#: src/Common/LinuxKernel.vala:1034 +#: src/Common/LinuxKernel.vala:1098 msgid "Continue ?" msgstr "" -#: src/Common/LinuxKernel.vala:1056 src/Console/AppConsole.vala:290 +#: src/Common/LinuxKernel.vala:1120 src/Console/AppConsole.vala:290 msgid "Latest update" msgstr "" -#: src/Common/LinuxKernel.vala:1067 src/Console/AppConsole.vala:297 +#: src/Common/LinuxKernel.vala:1131 src/Console/AppConsole.vala:297 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:1075 src/Console/AppConsole.vala:302 +#: src/Common/LinuxKernel.vala:1139 src/Console/AppConsole.vala:302 #: src/Console/AppConsole.vala:318 msgid "No updates found" msgstr "Inga uppdateringar hittades" -#: src/Common/LinuxKernel.vala:1084 +#: src/Common/LinuxKernel.vala:1148 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "" -#: src/Common/Main.vala:300 +#: src/Common/Main.vala:351 msgid "Called from" msgstr "" -#: src/Common/Main.vala:301 +#: src/Common/Main.vala:352 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" -#: src/Common/Main.vala:333 +#: src/Common/Main.vala:384 #, fuzzy msgid "Notifications are disabled" msgstr "Avisering" @@ -290,23 +294,23 @@ msgstr "Visa alla alternativ" msgid "Notifications disabled in settings" msgstr "Avisering" -#: src/Console/AppConsole.vala:332 -msgid "previously notified" -msgstr "" - -#: src/Console/AppConsole.vala:335 +#: src/Console/AppConsole.vala:337 #, fuzzy, c-format msgid "Kernel %s Available" msgstr "Tillgängliga paket" -#: src/Console/AppConsole.vala:339 src/Gtk/SettingsDialog.vala:164 +#: src/Console/AppConsole.vala:341 src/Gtk/SettingsDialog.vala:166 msgid "Show" msgstr "" -#: src/Console/AppConsole.vala:340 src/Gtk/MainWindow.vala:265 +#: src/Console/AppConsole.vala:342 src/Gtk/MainWindow.vala:264 msgid "Install" msgstr "Installera" +#: src/Console/AppConsole.vala:345 +msgid "Previously notified" +msgstr "" + #: src/Gtk/AboutWindow.vala:162 src/Gtk/AboutWindow.vala:179 msgid "Credits" msgstr "Tack" @@ -365,64 +369,68 @@ msgstr "Kärna" msgid "Status" msgstr "Status" -#: src/Gtk/MainWindow.vala:275 +#: src/Gtk/MainWindow.vala:274 #, fuzzy msgid "Uninstall" msgstr "Installera" -#: src/Gtk/MainWindow.vala:285 -msgid "Changes" -msgstr "Ändringar" +#: src/Gtk/MainWindow.vala:284 +msgid "Notes" +msgstr "" + +#: src/Gtk/MainWindow.vala:289 +msgid "User notes for" +msgstr "" -#: src/Gtk/MainWindow.vala:307 +#: src/Gtk/MainWindow.vala:305 #, fuzzy msgid "Uninstall Old" msgstr "Avinstallation slutförd" -#: src/Gtk/MainWindow.vala:308 +#: src/Gtk/MainWindow.vala:306 #, fuzzy msgid "Uninstall kernels older than running kernel" msgstr "Ta bort installerade kärnor äldre än den som körs" -#: src/Gtk/MainWindow.vala:313 +#: src/Gtk/MainWindow.vala:311 msgid "Reload" msgstr "" -#: src/Gtk/MainWindow.vala:318 src/Gtk/SettingsDialog.vala:48 +#: src/Gtk/MainWindow.vala:316 src/Gtk/SettingsDialog.vala:49 msgid "Settings" msgstr "Inställningar" -#: src/Gtk/MainWindow.vala:323 +#: src/Gtk/MainWindow.vala:321 msgid "About" msgstr "Om" -#: src/Gtk/MainWindow.vala:328 +#: src/Gtk/MainWindow.vala:326 msgid "Exit" msgstr "" -#: src/Gtk/MainWindow.vala:396 +#: src/Gtk/MainWindow.vala:394 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Kärnuppgraderingsverktyg för Ubuntu-baserade distributioner" -#: src/Gtk/MainWindow.vala:397 +#: src/Gtk/MainWindow.vala:395 msgid "Forked" msgstr "" -#: src/Gtk/MainWindow.vala:397 +#: src/Gtk/MainWindow.vala:395 msgid "Original" msgstr "" -#: src/Gtk/MainWindow.vala:435 +#: src/Gtk/MainWindow.vala:433 msgid "Updating kernels" msgstr "" -#: src/Gtk/MainWindow.vala:506 +#: src/Gtk/MainWindow.vala:504 #, fuzzy msgid "available" msgstr "Tillgängliga paket" -#: src/Gtk/MainWindow.vala:549 src/Gtk/MainWindow.vala:589 -#: src/Gtk/MainWindow.vala:623 +#: src/Gtk/MainWindow.vala:547 src/Gtk/MainWindow.vala:587 +#: src/Gtk/MainWindow.vala:621 msgid "DONE" msgstr "" @@ -430,74 +438,78 @@ msgstr "" msgid "Cancel" msgstr "Avbryt" -#: src/Gtk/SettingsDialog.vala:58 +#: src/Gtk/SettingsDialog.vala:59 msgid "Notification" msgstr "Avisering" -#: src/Gtk/SettingsDialog.vala:65 +#: src/Gtk/SettingsDialog.vala:66 msgid "Notify if a major release is available" msgstr "Meddela om en ny (stor) uppdatering finns tillgänglig" -#: src/Gtk/SettingsDialog.vala:74 +#: src/Gtk/SettingsDialog.vala:75 msgid "Notify if a point release is available" msgstr "Meddela om en ny (mindre) uppdatering finns tillgänglig" -#: src/Gtk/SettingsDialog.vala:85 +#: src/Gtk/SettingsDialog.vala:86 msgid "Seconds interval enabled for debugging" msgstr "" -#: src/Gtk/SettingsDialog.vala:108 +#: src/Gtk/SettingsDialog.vala:109 msgid "Check every" msgstr "Kontrollera varje" -#: src/Gtk/SettingsDialog.vala:133 +#: src/Gtk/SettingsDialog.vala:134 #, fuzzy msgid "Hours" msgstr "Timma(r)" -#: src/Gtk/SettingsDialog.vala:135 +#: src/Gtk/SettingsDialog.vala:136 msgid "Days" msgstr "" -#: src/Gtk/SettingsDialog.vala:137 +#: src/Gtk/SettingsDialog.vala:138 #, fuzzy msgid "Weeks" msgstr "Veckor" -#: src/Gtk/SettingsDialog.vala:140 +#: src/Gtk/SettingsDialog.vala:141 msgid "Seconds" msgstr "" -#: src/Gtk/SettingsDialog.vala:146 +#: src/Gtk/SettingsDialog.vala:147 msgid "Filters" msgstr "" -#: src/Gtk/SettingsDialog.vala:154 +#: src/Gtk/SettingsDialog.vala:155 msgid "Hide unstable and RC releases" msgstr "Dölj instabila- och RC-publiceringar" -#: src/Gtk/SettingsDialog.vala:176 -msgid "previous major versions" +#: src/Gtk/SettingsDialog.vala:177 +msgid "previous major versions ( -1 = all )" msgstr "" -#: src/Gtk/SettingsDialog.vala:180 +#: src/Gtk/SettingsDialog.vala:181 msgid "Network" msgstr "" -#: src/Gtk/SettingsDialog.vala:191 +#: src/Gtk/SettingsDialog.vala:192 #, fuzzy msgid "Internet connection timeout in" msgstr "Internetuppkopplingen är inte aktiv" -#: src/Gtk/SettingsDialog.vala:203 +#: src/Gtk/SettingsDialog.vala:204 msgid "seconds" msgstr "" -#: src/Gtk/SettingsDialog.vala:210 +#: src/Gtk/SettingsDialog.vala:211 msgid "Max concurrent downloads" msgstr "" -#: src/Gtk/SettingsDialog.vala:224 +#: src/Gtk/SettingsDialog.vala:225 +msgid "Verify Checksums with the CHECKSUMS files" +msgstr "" + +#: src/Gtk/SettingsDialog.vala:233 msgid "Proxy" msgstr "" @@ -505,7 +517,7 @@ msgstr "" msgid "Missing Icon" msgstr "Saknad ikon" -#: src/lib/l.misc.vala:67 +#: src/lib/l.misc.vala:71 #, fuzzy msgid "Can not reach site" msgstr "Kunde inte läsa filen" diff --git a/po/tr.po b/po/tr.po index e00f232c..926ce818 100644 --- a/po/tr.po +++ b/po/tr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-21 20:12-0400\n" +"POT-Creation-Date: 2023-04-01 12:41-0400\n" "PO-Revision-Date: 2022-08-06 16:48+0300\n" "Last-Translator: Sabri Ünal \n" "Language-Team: Turkish\n" @@ -13,135 +13,139 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Poedit 3.1.1\n" -#: src/Common/LinuxKernel.vala:86 +#: src/Common/LinuxKernel.vala:92 msgid "Distribution" msgstr "Dağıtım" -#: src/Common/LinuxKernel.vala:101 +#: src/Common/LinuxKernel.vala:107 msgid "Architecture" msgstr "Sistem mimarisi" -#: src/Common/LinuxKernel.vala:276 +#: src/Common/LinuxKernel.vala:280 #, fuzzy msgid "Fetching individual kernel indexes" msgstr "İçerik dizini alınıyor..." -#: src/Common/LinuxKernel.vala:325 +#: src/Common/LinuxKernel.vala:332 msgid "Updating from" msgstr "" -#: src/Common/LinuxKernel.vala:342 src/Common/LinuxKernel.vala:895 +#: src/Common/LinuxKernel.vala:349 msgid "OK" msgstr "Tamam" -#: src/Common/LinuxKernel.vala:345 src/Common/LinuxKernel.vala:898 +#: src/Common/LinuxKernel.vala:352 msgid "FAILED" msgstr "" -#: src/Common/LinuxKernel.vala:759 +#: src/Common/LinuxKernel.vala:793 msgid "Packages Available" msgstr "Mevcut Paketler" -#: src/Common/LinuxKernel.vala:764 +#: src/Common/LinuxKernel.vala:798 msgid "Packages Installed" msgstr "Kurulu Paketler" -#: src/Common/LinuxKernel.vala:777 src/lib/TeeJee.FileSystem.vala:121 +#: src/Common/LinuxKernel.vala:819 src/lib/TeeJee.FileSystem.vala:118 msgid "File not found" msgstr "Dosya bulunamadı" -#: src/Common/LinuxKernel.vala:841 +#: src/Common/LinuxKernel.vala:886 msgid "Available Kernels" msgstr "Mevcut Çekirdekler" -#: src/Common/LinuxKernel.vala:848 src/Gtk/MainWindow.vala:154 +#: src/Common/LinuxKernel.vala:893 src/Gtk/MainWindow.vala:154 msgid "Installed" msgstr "Kurulu" -#: src/Common/LinuxKernel.vala:848 src/Gtk/MainWindow.vala:154 -#: src/Gtk/MainWindow.vala:497 src/Gtk/MainWindow.vala:510 +#: src/Common/LinuxKernel.vala:893 src/Gtk/MainWindow.vala:154 +#: src/Gtk/MainWindow.vala:495 src/Gtk/MainWindow.vala:508 msgid "Running" msgstr "Çalışıyor" -#: src/Common/LinuxKernel.vala:883 +#: src/Common/LinuxKernel.vala:926 +msgid "CHECKSUMS enabled" +msgstr "" + +#: src/Common/LinuxKernel.vala:950 msgid "Downloading" -msgstr "İndiriliyor" +msgstr "" -#: src/Common/LinuxKernel.vala:911 +#: src/Common/LinuxKernel.vala:971 #, fuzzy msgid "is already installed." msgstr "Bu çekirdek zaten kurulu." -#: src/Common/LinuxKernel.vala:941 +#: src/Common/LinuxKernel.vala:1005 #, fuzzy msgid "Uninstalling selected kernels" msgstr "Belirtilen çekirdeğini kaldır" -#: src/Common/LinuxKernel.vala:947 +#: src/Common/LinuxKernel.vala:1011 msgid "requested" msgstr "" -#: src/Common/LinuxKernel.vala:950 +#: src/Common/LinuxKernel.vala:1014 #, fuzzy msgid "not uninstalling the currently running kernel" msgstr "Belirtilen çekirdeğini kaldır" -#: src/Common/LinuxKernel.vala:966 +#: src/Common/LinuxKernel.vala:1030 msgid "found" msgstr "" -#: src/Common/LinuxKernel.vala:969 +#: src/Common/LinuxKernel.vala:1033 #, fuzzy msgid "No packages to un-install!" msgstr "Kurulu Paketler" -#: src/Common/LinuxKernel.vala:1017 +#: src/Common/LinuxKernel.vala:1081 #, fuzzy msgid "Could not find running kernel in list" msgstr "Çalışan sürüm listede bulunamadı!" -#: src/Common/LinuxKernel.vala:1022 +#: src/Common/LinuxKernel.vala:1086 msgid "Could not find any kernels to uninstall" msgstr "Kaldırılacak çekirdek bulunamadı" -#: src/Common/LinuxKernel.vala:1030 +#: src/Common/LinuxKernel.vala:1094 #, fuzzy msgid "The following kernels will be uninstalled" msgstr "Aşağıdaki çekirdekler kaldırılacak:" -#: src/Common/LinuxKernel.vala:1034 +#: src/Common/LinuxKernel.vala:1098 msgid "Continue ?" msgstr "Devam edilsin mi?" -#: src/Common/LinuxKernel.vala:1056 src/Console/AppConsole.vala:290 +#: src/Common/LinuxKernel.vala:1120 src/Console/AppConsole.vala:290 msgid "Latest update" msgstr "Son güncelleme" # Point burada point release anlamında kullanılıyor. Örneğin 5.10.x sayısının en sonundaki x rakamı point release/nokta sürüm oluyor. -#: src/Common/LinuxKernel.vala:1067 src/Console/AppConsole.vala:297 +#: src/Common/LinuxKernel.vala:1131 src/Console/AppConsole.vala:297 msgid "Latest point update" msgstr "Son nokta güncellemesi" -#: src/Common/LinuxKernel.vala:1075 src/Console/AppConsole.vala:302 +#: src/Common/LinuxKernel.vala:1139 src/Console/AppConsole.vala:302 #: src/Console/AppConsole.vala:318 msgid "No updates found" msgstr "Güncelleme bulunamadı" -#: src/Common/LinuxKernel.vala:1084 +#: src/Common/LinuxKernel.vala:1148 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Linux Çekirdek Sürümü %s Kurulsun mu? (e/h): " -#: src/Common/Main.vala:300 +#: src/Common/Main.vala:351 msgid "Called from" msgstr "Çağrı konumu" -#: src/Common/Main.vala:301 +#: src/Common/Main.vala:352 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" -#: src/Common/Main.vala:333 +#: src/Common/Main.vala:384 msgid "Notifications are disabled" msgstr "Bildirimler devre dışı bırakılmış" @@ -279,23 +283,23 @@ msgstr "tüm komutları listele" msgid "Notifications disabled in settings" msgstr "Bildirimler devre dışı bırakılmış" -#: src/Console/AppConsole.vala:332 -msgid "previously notified" -msgstr "" - -#: src/Console/AppConsole.vala:335 +#: src/Console/AppConsole.vala:337 #, c-format msgid "Kernel %s Available" msgstr "Çekirdek %s Kullanılabilir" -#: src/Console/AppConsole.vala:339 src/Gtk/SettingsDialog.vala:164 +#: src/Console/AppConsole.vala:341 src/Gtk/SettingsDialog.vala:166 msgid "Show" msgstr "Göster" -#: src/Console/AppConsole.vala:340 src/Gtk/MainWindow.vala:265 +#: src/Console/AppConsole.vala:342 src/Gtk/MainWindow.vala:264 msgid "Install" msgstr "Kur" +#: src/Console/AppConsole.vala:345 +msgid "Previously notified" +msgstr "" + #: src/Gtk/AboutWindow.vala:162 src/Gtk/AboutWindow.vala:179 msgid "Credits" msgstr "Hazırlayanlar" @@ -353,60 +357,64 @@ msgstr "Çekirdek" msgid "Status" msgstr "Durum" -#: src/Gtk/MainWindow.vala:275 +#: src/Gtk/MainWindow.vala:274 msgid "Uninstall" msgstr "Kaldır" -#: src/Gtk/MainWindow.vala:285 -msgid "Changes" -msgstr "Değişiklikler" +#: src/Gtk/MainWindow.vala:284 +msgid "Notes" +msgstr "" + +#: src/Gtk/MainWindow.vala:289 +msgid "User notes for" +msgstr "" -#: src/Gtk/MainWindow.vala:307 +#: src/Gtk/MainWindow.vala:305 msgid "Uninstall Old" msgstr "Eskileri Kaldır" -#: src/Gtk/MainWindow.vala:308 +#: src/Gtk/MainWindow.vala:306 msgid "Uninstall kernels older than running kernel" msgstr "Çalışan çekirdekten daha eski çekirdekleri kaldır" -#: src/Gtk/MainWindow.vala:313 +#: src/Gtk/MainWindow.vala:311 msgid "Reload" msgstr "" -#: src/Gtk/MainWindow.vala:318 src/Gtk/SettingsDialog.vala:48 +#: src/Gtk/MainWindow.vala:316 src/Gtk/SettingsDialog.vala:49 msgid "Settings" msgstr "Ayarlar" -#: src/Gtk/MainWindow.vala:323 +#: src/Gtk/MainWindow.vala:321 msgid "About" msgstr "Hakkında" -#: src/Gtk/MainWindow.vala:328 +#: src/Gtk/MainWindow.vala:326 msgid "Exit" msgstr "" -#: src/Gtk/MainWindow.vala:396 +#: src/Gtk/MainWindow.vala:394 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Ubuntu tabanlı dağıtımlar için çekirdek güncelleme aracı" -#: src/Gtk/MainWindow.vala:397 +#: src/Gtk/MainWindow.vala:395 msgid "Forked" msgstr "Çatallandı" -#: src/Gtk/MainWindow.vala:397 +#: src/Gtk/MainWindow.vala:395 msgid "Original" msgstr "Özgün" -#: src/Gtk/MainWindow.vala:435 +#: src/Gtk/MainWindow.vala:433 msgid "Updating kernels" msgstr "" -#: src/Gtk/MainWindow.vala:506 +#: src/Gtk/MainWindow.vala:504 msgid "available" msgstr "mevcut" -#: src/Gtk/MainWindow.vala:549 src/Gtk/MainWindow.vala:589 -#: src/Gtk/MainWindow.vala:623 +#: src/Gtk/MainWindow.vala:547 src/Gtk/MainWindow.vala:587 +#: src/Gtk/MainWindow.vala:621 msgid "DONE" msgstr "" @@ -414,77 +422,81 @@ msgstr "" msgid "Cancel" msgstr "İptal Et" -#: src/Gtk/SettingsDialog.vala:58 +#: src/Gtk/SettingsDialog.vala:59 msgid "Notification" msgstr "Bildirim" -#: src/Gtk/SettingsDialog.vala:65 +#: src/Gtk/SettingsDialog.vala:66 msgid "Notify if a major release is available" msgstr "Ana sürüm mevcutsa bildir" -#: src/Gtk/SettingsDialog.vala:74 +#: src/Gtk/SettingsDialog.vala:75 msgid "Notify if a point release is available" msgstr "Nokta sürüm mevcutsa bildir" -#: src/Gtk/SettingsDialog.vala:85 +#: src/Gtk/SettingsDialog.vala:86 #, fuzzy msgid "Seconds interval enabled for debugging" msgstr "(--debug için saniye cinsinden aralıklara izin verir)" -#: src/Gtk/SettingsDialog.vala:108 +#: src/Gtk/SettingsDialog.vala:109 msgid "Check every" msgstr "Kontrol aralığı" -#: src/Gtk/SettingsDialog.vala:133 +#: src/Gtk/SettingsDialog.vala:134 #, fuzzy msgid "Hours" msgstr "Saat" -#: src/Gtk/SettingsDialog.vala:135 +#: src/Gtk/SettingsDialog.vala:136 msgid "Days" msgstr "" -#: src/Gtk/SettingsDialog.vala:137 +#: src/Gtk/SettingsDialog.vala:138 #, fuzzy msgid "Weeks" msgstr "Hafta" -#: src/Gtk/SettingsDialog.vala:140 +#: src/Gtk/SettingsDialog.vala:141 #, fuzzy msgid "Seconds" msgstr "Saniye" -#: src/Gtk/SettingsDialog.vala:146 +#: src/Gtk/SettingsDialog.vala:147 msgid "Filters" msgstr "" -#: src/Gtk/SettingsDialog.vala:154 +#: src/Gtk/SettingsDialog.vala:155 msgid "Hide unstable and RC releases" msgstr "Kararsız ve RC sürümleri gizle" -#: src/Gtk/SettingsDialog.vala:176 +#: src/Gtk/SettingsDialog.vala:177 #, fuzzy -msgid "previous major versions" +msgid "previous major versions ( -1 = all )" msgstr "Önceki ana sürümleri gösterme sayısı " -#: src/Gtk/SettingsDialog.vala:180 +#: src/Gtk/SettingsDialog.vala:181 msgid "Network" msgstr "" -#: src/Gtk/SettingsDialog.vala:191 +#: src/Gtk/SettingsDialog.vala:192 #, fuzzy msgid "Internet connection timeout in" msgstr "İnternet bağlantısı zaman aşımı " -#: src/Gtk/SettingsDialog.vala:203 +#: src/Gtk/SettingsDialog.vala:204 msgid "seconds" msgstr "saniye" -#: src/Gtk/SettingsDialog.vala:210 +#: src/Gtk/SettingsDialog.vala:211 msgid "Max concurrent downloads" msgstr "Azami eşzamanlı indirme" -#: src/Gtk/SettingsDialog.vala:224 +#: src/Gtk/SettingsDialog.vala:225 +msgid "Verify Checksums with the CHECKSUMS files" +msgstr "" + +#: src/Gtk/SettingsDialog.vala:233 msgid "Proxy" msgstr "" @@ -492,7 +504,7 @@ msgstr "" msgid "Missing Icon" msgstr "Eksik Simge" -#: src/lib/l.misc.vala:67 +#: src/lib/l.misc.vala:71 #, fuzzy msgid "Can not reach site" msgstr "Dosya okunamadı" diff --git a/po/uk.po b/po/uk.po index 4f68715b..d04d8b43 100644 --- a/po/uk.po +++ b/po/uk.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-03-21 20:12-0400\n" +"POT-Creation-Date: 2023-04-01 12:41-0400\n" "PO-Revision-Date: 2019-07-25 11:00+0300\n" "Last-Translator: Serhii Golovko \n" "Language-Team: Ukranian\n" @@ -13,131 +13,135 @@ msgstr "" "X-Launchpad-Export-Date: 2016-12-13 11:48+0000\n" "X-Generator: Poedit 2.2.1\n" -#: src/Common/LinuxKernel.vala:86 +#: src/Common/LinuxKernel.vala:92 msgid "Distribution" msgstr "Дистрибутив" -#: src/Common/LinuxKernel.vala:101 +#: src/Common/LinuxKernel.vala:107 msgid "Architecture" msgstr "Системна архитектура" -#: src/Common/LinuxKernel.vala:276 +#: src/Common/LinuxKernel.vala:280 #, fuzzy msgid "Fetching individual kernel indexes" msgstr "Отримання окремих індексів ядра..." -#: src/Common/LinuxKernel.vala:325 +#: src/Common/LinuxKernel.vala:332 msgid "Updating from" msgstr "" -#: src/Common/LinuxKernel.vala:342 src/Common/LinuxKernel.vala:895 +#: src/Common/LinuxKernel.vala:349 msgid "OK" msgstr "Добре" -#: src/Common/LinuxKernel.vala:345 src/Common/LinuxKernel.vala:898 +#: src/Common/LinuxKernel.vala:352 msgid "FAILED" msgstr "" -#: src/Common/LinuxKernel.vala:759 +#: src/Common/LinuxKernel.vala:793 msgid "Packages Available" msgstr "Доступні пакети" -#: src/Common/LinuxKernel.vala:764 +#: src/Common/LinuxKernel.vala:798 msgid "Packages Installed" msgstr "Встановлені пакети" -#: src/Common/LinuxKernel.vala:777 src/lib/TeeJee.FileSystem.vala:121 +#: src/Common/LinuxKernel.vala:819 src/lib/TeeJee.FileSystem.vala:118 msgid "File not found" msgstr "Файл не знайдено" -#: src/Common/LinuxKernel.vala:841 +#: src/Common/LinuxKernel.vala:886 msgid "Available Kernels" msgstr "Доступні ядра" -#: src/Common/LinuxKernel.vala:848 src/Gtk/MainWindow.vala:154 +#: src/Common/LinuxKernel.vala:893 src/Gtk/MainWindow.vala:154 msgid "Installed" msgstr "Встановлено" -#: src/Common/LinuxKernel.vala:848 src/Gtk/MainWindow.vala:154 -#: src/Gtk/MainWindow.vala:497 src/Gtk/MainWindow.vala:510 +#: src/Common/LinuxKernel.vala:893 src/Gtk/MainWindow.vala:154 +#: src/Gtk/MainWindow.vala:495 src/Gtk/MainWindow.vala:508 msgid "Running" msgstr "Використовується" -#: src/Common/LinuxKernel.vala:883 +#: src/Common/LinuxKernel.vala:926 +msgid "CHECKSUMS enabled" +msgstr "" + +#: src/Common/LinuxKernel.vala:950 msgid "Downloading" -msgstr "Завантаження" +msgstr "" -#: src/Common/LinuxKernel.vala:911 +#: src/Common/LinuxKernel.vala:971 #, fuzzy msgid "is already installed." msgstr "Це ядро вже встановлено." -#: src/Common/LinuxKernel.vala:941 +#: src/Common/LinuxKernel.vala:1005 msgid "Uninstalling selected kernels" msgstr "Видаліть конкретні ядра" -#: src/Common/LinuxKernel.vala:947 +#: src/Common/LinuxKernel.vala:1011 msgid "requested" msgstr "запитуваний" -#: src/Common/LinuxKernel.vala:950 +#: src/Common/LinuxKernel.vala:1014 #, fuzzy msgid "not uninstalling the currently running kernel" msgstr "пропускаючи поточне завантажене ядро" -#: src/Common/LinuxKernel.vala:966 +#: src/Common/LinuxKernel.vala:1030 msgid "found" msgstr "знайдено" -#: src/Common/LinuxKernel.vala:969 +#: src/Common/LinuxKernel.vala:1033 msgid "No packages to un-install!" msgstr "Немає пакетів для видалення!" -#: src/Common/LinuxKernel.vala:1017 +#: src/Common/LinuxKernel.vala:1081 msgid "Could not find running kernel in list" msgstr "Не вдалося знайти запущене ядро у списку!" -#: src/Common/LinuxKernel.vala:1022 +#: src/Common/LinuxKernel.vala:1086 msgid "Could not find any kernels to uninstall" msgstr "Не вдалося знайти жодне ядро для вилучення" -#: src/Common/LinuxKernel.vala:1030 +#: src/Common/LinuxKernel.vala:1094 #, fuzzy msgid "The following kernels will be uninstalled" msgstr "Наступні ядра будуть видалені:" -#: src/Common/LinuxKernel.vala:1034 +#: src/Common/LinuxKernel.vala:1098 msgid "Continue ?" msgstr "Продовжувати ?" -#: src/Common/LinuxKernel.vala:1056 src/Console/AppConsole.vala:290 +#: src/Common/LinuxKernel.vala:1120 src/Console/AppConsole.vala:290 msgid "Latest update" msgstr "Останнє оновлення" -#: src/Common/LinuxKernel.vala:1067 src/Console/AppConsole.vala:297 +#: src/Common/LinuxKernel.vala:1131 src/Console/AppConsole.vala:297 msgid "Latest point update" msgstr "Остання точка оновлення" -#: src/Common/LinuxKernel.vala:1075 src/Console/AppConsole.vala:302 +#: src/Common/LinuxKernel.vala:1139 src/Console/AppConsole.vala:302 #: src/Console/AppConsole.vala:318 msgid "No updates found" msgstr "Оновлень не знайдено" -#: src/Common/LinuxKernel.vala:1084 +#: src/Common/LinuxKernel.vala:1148 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Встановити Ядро Версії %s ? (так/ні): " -#: src/Common/Main.vala:300 +#: src/Common/Main.vala:351 msgid "Called from" msgstr "Викликано з" -#: src/Common/Main.vala:301 +#: src/Common/Main.vala:352 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" -#: src/Common/Main.vala:333 +#: src/Common/Main.vala:384 msgid "Notifications are disabled" msgstr "Повідомлення вимкнено" @@ -274,23 +278,23 @@ msgstr "щоб відобразити всі команди" msgid "Notifications disabled in settings" msgstr "Повідомлення вимкнено" -#: src/Console/AppConsole.vala:332 -msgid "previously notified" -msgstr "" - -#: src/Console/AppConsole.vala:335 +#: src/Console/AppConsole.vala:337 #, c-format msgid "Kernel %s Available" msgstr "Ядро %s Доступне" -#: src/Console/AppConsole.vala:339 src/Gtk/SettingsDialog.vala:164 +#: src/Console/AppConsole.vala:341 src/Gtk/SettingsDialog.vala:166 msgid "Show" msgstr "Показати" -#: src/Console/AppConsole.vala:340 src/Gtk/MainWindow.vala:265 +#: src/Console/AppConsole.vala:342 src/Gtk/MainWindow.vala:264 msgid "Install" msgstr "Встановити" +#: src/Console/AppConsole.vala:345 +msgid "Previously notified" +msgstr "" + #: src/Gtk/AboutWindow.vala:162 src/Gtk/AboutWindow.vala:179 msgid "Credits" msgstr "Творці" @@ -347,60 +351,64 @@ msgstr "Ядро" msgid "Status" msgstr "Стан" -#: src/Gtk/MainWindow.vala:275 +#: src/Gtk/MainWindow.vala:274 msgid "Uninstall" msgstr "Видалити" -#: src/Gtk/MainWindow.vala:285 -msgid "Changes" -msgstr "Зміни" +#: src/Gtk/MainWindow.vala:284 +msgid "Notes" +msgstr "" + +#: src/Gtk/MainWindow.vala:289 +msgid "User notes for" +msgstr "" -#: src/Gtk/MainWindow.vala:307 +#: src/Gtk/MainWindow.vala:305 msgid "Uninstall Old" msgstr "Видалити старе" -#: src/Gtk/MainWindow.vala:308 +#: src/Gtk/MainWindow.vala:306 msgid "Uninstall kernels older than running kernel" msgstr "Видалити ядра, старіші за запущене ядро" -#: src/Gtk/MainWindow.vala:313 +#: src/Gtk/MainWindow.vala:311 msgid "Reload" msgstr "Перезавантажити" -#: src/Gtk/MainWindow.vala:318 src/Gtk/SettingsDialog.vala:48 +#: src/Gtk/MainWindow.vala:316 src/Gtk/SettingsDialog.vala:49 msgid "Settings" msgstr "Налаштування" -#: src/Gtk/MainWindow.vala:323 +#: src/Gtk/MainWindow.vala:321 msgid "About" msgstr "Про программу" -#: src/Gtk/MainWindow.vala:328 +#: src/Gtk/MainWindow.vala:326 msgid "Exit" msgstr "Вихід" -#: src/Gtk/MainWindow.vala:396 +#: src/Gtk/MainWindow.vala:394 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Програма оновлення ядра для дистрибутивів на базі Ubuntu" -#: src/Gtk/MainWindow.vala:397 +#: src/Gtk/MainWindow.vala:395 msgid "Forked" msgstr "Двоєний" -#: src/Gtk/MainWindow.vala:397 +#: src/Gtk/MainWindow.vala:395 msgid "Original" msgstr "Оригінал" -#: src/Gtk/MainWindow.vala:435 +#: src/Gtk/MainWindow.vala:433 msgid "Updating kernels" msgstr "" -#: src/Gtk/MainWindow.vala:506 +#: src/Gtk/MainWindow.vala:504 msgid "available" msgstr "доступний" -#: src/Gtk/MainWindow.vala:549 src/Gtk/MainWindow.vala:589 -#: src/Gtk/MainWindow.vala:623 +#: src/Gtk/MainWindow.vala:547 src/Gtk/MainWindow.vala:587 +#: src/Gtk/MainWindow.vala:621 msgid "DONE" msgstr "ГОТОВО" @@ -408,77 +416,81 @@ msgstr "ГОТОВО" msgid "Cancel" msgstr "Відміна" -#: src/Gtk/SettingsDialog.vala:58 +#: src/Gtk/SettingsDialog.vala:59 msgid "Notification" msgstr "Повідомлення" -#: src/Gtk/SettingsDialog.vala:65 +#: src/Gtk/SettingsDialog.vala:66 msgid "Notify if a major release is available" msgstr "Повідомити, чи доступний великий випуск" -#: src/Gtk/SettingsDialog.vala:74 +#: src/Gtk/SettingsDialog.vala:75 msgid "Notify if a point release is available" msgstr "Повідомити, чи доступний невеликий випуск" -#: src/Gtk/SettingsDialog.vala:85 +#: src/Gtk/SettingsDialog.vala:86 #, fuzzy msgid "Seconds interval enabled for debugging" msgstr "(Дозволити інтервали в секундах для --debug)" -#: src/Gtk/SettingsDialog.vala:108 +#: src/Gtk/SettingsDialog.vala:109 msgid "Check every" msgstr "Перевіряти кожні" -#: src/Gtk/SettingsDialog.vala:133 +#: src/Gtk/SettingsDialog.vala:134 #, fuzzy msgid "Hours" msgstr "Година(Годин)" -#: src/Gtk/SettingsDialog.vala:135 +#: src/Gtk/SettingsDialog.vala:136 msgid "Days" msgstr "" -#: src/Gtk/SettingsDialog.vala:137 +#: src/Gtk/SettingsDialog.vala:138 #, fuzzy msgid "Weeks" msgstr "Тиждень(ні)" -#: src/Gtk/SettingsDialog.vala:140 +#: src/Gtk/SettingsDialog.vala:141 #, fuzzy msgid "Seconds" msgstr "Секунда(и)" -#: src/Gtk/SettingsDialog.vala:146 +#: src/Gtk/SettingsDialog.vala:147 msgid "Filters" msgstr "" -#: src/Gtk/SettingsDialog.vala:154 +#: src/Gtk/SettingsDialog.vala:155 msgid "Hide unstable and RC releases" msgstr "Приховати нестабільні і RC" -#: src/Gtk/SettingsDialog.vala:176 +#: src/Gtk/SettingsDialog.vala:177 #, fuzzy -msgid "previous major versions" +msgid "previous major versions ( -1 = all )" msgstr "Показати N попередніх основних версій " -#: src/Gtk/SettingsDialog.vala:180 +#: src/Gtk/SettingsDialog.vala:181 msgid "Network" msgstr "" -#: src/Gtk/SettingsDialog.vala:191 +#: src/Gtk/SettingsDialog.vala:192 #, fuzzy msgid "Internet connection timeout in" msgstr "Час очікування підключення до Інтернету в " -#: src/Gtk/SettingsDialog.vala:203 +#: src/Gtk/SettingsDialog.vala:204 msgid "seconds" msgstr "секунди" -#: src/Gtk/SettingsDialog.vala:210 +#: src/Gtk/SettingsDialog.vala:211 msgid "Max concurrent downloads" msgstr "Максимальна кількість завантажень" -#: src/Gtk/SettingsDialog.vala:224 +#: src/Gtk/SettingsDialog.vala:225 +msgid "Verify Checksums with the CHECKSUMS files" +msgstr "" + +#: src/Gtk/SettingsDialog.vala:233 msgid "Proxy" msgstr "" @@ -486,7 +498,7 @@ msgstr "" msgid "Missing Icon" msgstr "Нема значка" -#: src/lib/l.misc.vala:67 +#: src/lib/l.misc.vala:71 #, fuzzy msgid "Can not reach site" msgstr "Не може дістатися" diff --git a/src/Common/DownloadManager.vala b/src/Common/DownloadManager.vala index e8f3fa6b..071bce1e 100644 --- a/src/Common/DownloadManager.vala +++ b/src/Common/DownloadManager.vala @@ -63,8 +63,7 @@ public class DownloadTask : AsyncTask { } public void prepare() { - string s = build_script(); - save_bash_script_temp(s, script_file); + save_bash_script_temp(build_script(), script_file); } private string build_script() { @@ -73,29 +72,43 @@ public class DownloadTask : AsyncTask { vprint("working_dir: '"+working_dir+"'",2); string list = ""; string list_file = working_dir+"/download.list"; + foreach (var item in downloads) { list += item.source_uri + "\n" - + " gid=" + item.gid + "\n" - + " dir=" + item.download_dir + "\n" - + " out=" + item.file_name + "\n"; + + " gid="+item.gid+"\n" + + " dir="+item.download_dir+"\n" + + " out="+item.file_name+"\n" + ; + if (item.checksum.length>0) list += "" + + " checksum="+item.checksum+"\n" + + " check-integrity=true\n" + ; } file_write(list_file, list); + vprint(list_file+":\n"+list,3); string cmd = "aria2c" - + " --no-netrc true" - + " -i '"+list_file.replace("'","'\\''")+"'" - + " --summary-interval=1" - + " --auto-save-interval=1" - + " --enable-color=false" - + " --allow-overwrite" - + " --connect-timeout=%d".printf(App.connect_timeout_seconds) - + " --timeout=600" - + " --max-concurrent-downloads=%d".printf(App.concurrent_downloads) - + " --max-file-not-found=3" - + " --retry-wait=2" - + " --show-console-readout=false" - + " --human-readable=false" - ; + + " --input-file='"+list_file+"'" + + " --no-netrc=true" + + " --no-conf=true" + + " --summary-interval=1" + + " --auto-save-interval=1" + + " --enable-color=false" + + " --allow-overwrite" + + " --timeout=600" + + " --max-file-not-found=3" + + " --retry-wait=2" + + " --show-console-readout=false" + + " --human-readable=false" + //+ " --max-download-limit=256K" // force slow download to debug progress display + ; + + if (App.connect_timeout_seconds>0) cmd += " --connect-timeout="+App.connect_timeout_seconds.to_string(); + + if (App.concurrent_downloads>0) cmd += "" + + " --max-concurrent-downloads="+App.concurrent_downloads.to_string() + + " --max-connection-per-server="+App.concurrent_downloads.to_string() + ; if (App.all_proxy.length>0) cmd += " --all-proxy='"+App.all_proxy+"'"; @@ -149,6 +162,7 @@ public class DownloadTask : AsyncTask { item.bytes_received = received; if (item.bytes_total == 0) item.bytes_total = total; item.status = "RUNNING"; + status_line = item.file_name+" "+received.to_string()+"/"+total.to_string(); } } else { @@ -162,13 +176,13 @@ public class DownloadTask : AsyncTask { } } -public class DownloadItem : GLib.Object -{ - // File is saved as 'file_name' not the source file name. +public class DownloadItem : GLib.Object { + // File is saved as 'file_name' in 'download_dir', not the source file name. - public string file_name = ""; - public string download_dir = ""; - public string source_uri = ""; + public string source_uri = ""; // "https://kernel.ubuntu.com/~kernel-ppa/mainline/v6.2.7/amd64/linux-headers-6.2.7-060207-generic_6.2.7-060207.202303170542_amd64.deb" + public string download_dir = ""; // "/home/bkw/.cache/mainline/6.2.7/amd64" + public string file_name = ""; // "linux-headers-6.2.7-060207-generic_6.2.7-060207.202303170542_amd64.deb" + public string checksum = ""; // "sha-256=4a90d708984d6a8fab68411710be09aa2614fe1be5b5e054a872b155d15faab6" public string gid = ""; // ID public int64 bytes_total = 0; @@ -177,21 +191,17 @@ public class DownloadItem : GLib.Object public DownloadTask task = null; - public string file_path { - owned get { - return download_dir+"/"+file_name; - } - } - public string gid_key { owned get { return gid.substring(0,6); } } - public DownloadItem(string _source_uri, string _download_dir, string _file_name) { - file_name = _file_name; - download_dir = _download_dir; - source_uri = _source_uri; + public DownloadItem(string uri = "", string destdir = "", string fname = "", string cksum = "") { + vprint("DownloadItem("+uri+","+destdir+","+fname+","+cksum+")",3); + source_uri = uri; + file_name = fname; + download_dir = destdir; + checksum = cksum; } } diff --git a/src/Common/LinuxKernel.vala b/src/Common/LinuxKernel.vala index 6e8f329f..1156834f 100644 --- a/src/Common/LinuxKernel.vala +++ b/src/Common/LinuxKernel.vala @@ -17,7 +17,8 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { public int version_point = -1; public int version_rc = -1; - public Gee.HashMap deb_list = new Gee.HashMap(); // assosciated .deb file names + public Gee.HashMap deb_url_list = new Gee.HashMap(); // assosciated .deb files K=filename,V=url + public Gee.HashMap deb_checksum_list = new Gee.HashMap(); // assosciated .deb files K=filename,V=checksum public Gee.HashMap pkg_list = new Gee.HashMap(); // assosciated dpkg package names public static Gee.HashMap pkg_list_installed; @@ -25,6 +26,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { public bool is_installed = false; public bool is_running = false; public bool is_mainline = false; + public int ppa_dirs_ver = 0; // 1 = no .//... , 2 = with .//... public string deb_header = ""; public string deb_header_all = ""; @@ -45,6 +47,8 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { public static LinuxKernel kernel_latest_available; public static LinuxKernel kernel_latest_installed; public static LinuxKernel kernel_oldest_installed; + public static LinuxKernel kernel_last_stable_old_ppa_dirs; + public static LinuxKernel kernel_last_unstable_old_ppa_dirs; public static Gee.ArrayList kernel_list = new Gee.ArrayList(); @@ -69,6 +73,8 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { NATIVE_ARCH = check_package_architecture(); RUNNING_KERNEL = check_running_kernel().replace("-generic",""); initialize_regex(); + kernel_last_stable_old_ppa_dirs = new LinuxKernel.from_version("5.6.17"); + kernel_last_unstable_old_ppa_dirs = new LinuxKernel.from_version("5.7-rc7"); kernel_latest_installed = new LinuxKernel.from_version(RUNNING_KERNEL); kernel_oldest_installed = kernel_latest_installed; kernel_latest_available = kernel_latest_installed; @@ -113,7 +119,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { exec_sync("uname -r", out std_out, null); ver = std_out.strip().replace("\n",""); - vprint("Running kernel" + ": %s".printf(ver)); + vprint(_("Running kernel") + ": %s".printf(ver)); return ver; } @@ -233,13 +239,13 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { // skip some kernels for various reasons if (k.cached_page_exists) { - //log_debug(k.version_main+" "+_("cached")); // load the index.html files we already had in cache + vprint(_("loading cached")+" "+k.version_main,3); k.load_cached_page(); continue; } - if (!k.is_valid) continue; + if (k.is_invalid) continue; if (!k.is_installed) { if (k.version_maj < threshold_major) continue; @@ -248,14 +254,12 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { //log_debug(k.version_main+" "+_("GET")); + vprint(_("queuing download")+" "+k.version_main,3); + // add index.html to download list var item = new DownloadItem(k.cached_page_uri, file_parent(k.cached_page), file_basename(k.cached_page)); downloads.add(item); - // add CHANGES to download list - item = new DownloadItem(k.changes_file_uri, file_parent(k.changes_file), file_basename(k.changes_file)); - downloads.add(item); - // add kernel to update list kernels_to_update.add(k); @@ -263,7 +267,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { } // process the download list - if ((downloads.size > 0) && App.ppa_up) { + if (downloads.size>0 && App.ppa_up) { progress_total = downloads.size; var mgr = new DownloadTask(); @@ -277,8 +281,8 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { // while downloading while (mgr.is_running()) { - progress_count = mgr.prg_count; - //pbar(progress_count,progress_total,"files"); + progress_count = mgr.prg_count; // also used by the progress window in MainWindow.vala + //pbar(mgr.prg_count,progress_total,"files"); pbar(progress_count,progress_total); sleep(250); if (notifier != null) notifier(timer, ref count); @@ -288,7 +292,10 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { pbar(0,0); // load the index.html files we just added to cache - foreach (var k in kernels_to_update) k.load_cached_page(); + foreach (var k in kernels_to_update) { + vprint(_("loading downloaded")+" "+k.version_main,3); + k.load_cached_page(); + } if (notifier != null) notifier(timer, ref count); } @@ -327,16 +334,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { while (mgr.is_running()) sleep(500); - vprint("waiting for '"+tfn+"'",4); - // brute force until I can figure out the right way to deal with AsyncTask - int i = 0; - while (!file_exists(tfn) && i++ < 100) { - vprint("not yet",4); - sleep(500); - } - if (file_exists(tfn)) { - vprint("got it",4); file_move(tfn,index_page); App.index_is_fresh=true; vprint(_("OK")); @@ -365,7 +363,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { foreach (string line in txt.split("\n")) { if (!rex.match(line, 0, out match)) continue; var k = new LinuxKernel(match.fetch(1), true); - if (!k.is_valid) continue; + //if (!k.is_valid) continue; if (k.is_unstable && App.hide_unstable) continue; kernel_list.add(k); vprint("kernel_list.add("+k.kname+")",3); @@ -374,7 +372,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { kernel_list.sort((a,b) => { return a.compare_to(b) * -1; }); kernel_latest_available = kernel_list[0]; - vprint("latest_available: "+kernel_latest_available.version_main,2); + vprint(_("latest_available")+": "+kernel_latest_available.version_main,2); } catch (Error e) { vprint(e.message,1,stderr); @@ -389,7 +387,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { foreach (var pkg in Package.dpkg_list) { if (!pkg.pname.has_prefix("linux-image-")) continue; - vprint("Found installed : "+pkg.version); + vprint(_("Found installed")+" : "+pkg.version); pkg_versions.add(pkg.version); // temp kernel object for current pkg @@ -402,7 +400,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { // fill k.pkg_list list of assosciated pkgs bool found = false; foreach (var k in kernel_list) { - if (!k.is_valid) continue; + if (k.is_invalid) continue; if (k.version_maj { // mark the installed mainline kernels foreach (string pkg_version in pkg_versions) { foreach (var k in kernel_list) { - if (!k.is_valid) continue; + if (k.is_invalid) continue; if (k.version_maj { // scan mainline kernels foreach (var k in kernel_list) { - if (!k.is_valid) continue; + if (k.is_invalid) continue; if (!k.is_mainline) continue; if (k.version_package.length > 0) { // (k.version_main.contains(kern_running.version_main) || kern_running.version_main.contains(k.version_main)) @@ -464,7 +462,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { // scan ubuntu kernels if (kernel_active == null) { foreach (var k in kernel_list) { - if (!k.is_valid) continue; + if (k.is_invalid) continue; if (k.is_mainline) continue; //if (kern_running.version_main == k.version_main) { // strict //if (k.version_main.contains(kern_running.version_main) || kern_running.version_main.contains(k.version_main)) { // forgiving @@ -492,8 +490,8 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { } // log_debug("latest_available: "+kernel_latest_available.version_main); - vprint("latest_installed: "+kernel_latest_installed.version_main,2); - vprint("oldest_installed: "+kernel_oldest_installed.version_main,2); + vprint(_("latest_installed")+": "+kernel_latest_installed.version_main,2); + vprint(_("oldest_installed")+": "+kernel_oldest_installed.version_main,2); } // scan kernel_list for versions newer than latest installed @@ -503,7 +501,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { kernel_update_minor = null; foreach(var k in LinuxKernel.kernel_list) { - if (!k.is_valid) continue; + if (k.is_invalid) continue; if (k.is_installed) continue; if (k.is_unstable && App.hide_unstable) continue; @@ -537,6 +535,8 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { //Package.update_dpkg_list(); + if (App.previous_majors<0 || App.previous_majors>=kernel_latest_available.version_maj) { threshold_major=0; return; } + // start from the running kernel and work down kernel_oldest_installed = new LinuxKernel.from_version(RUNNING_KERNEL); @@ -676,11 +676,6 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { return (arr_a.length - arr_b.length) * -1; // smaller array is larger version } - public void mark_invalid() { - string f = cache_subdir+"/invalid"; - if (!file_exists(f)) file_write(f, ""); - } - public void set_pkg_list() { vprint("set_pkg_list()",2); vprint("kname:"+kname+" kver:"+kver+" version_main:"+version_main,3); @@ -693,6 +688,10 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { } } + public void mark_invalid() { + file_write(cached_status_file,""); + } + // properties public bool is_unstable { @@ -701,9 +700,23 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { } } - public bool is_valid { + public bool is_invalid { + get { + return file_exists(cached_status_file); + } + } + + public bool new_ppa_dirs { get { - return !file_exists(cache_subdir+"/invalid"); + // if stable and newer than kernel_last_stable_old_ppa_dirs + // or if unstable and newer than kernel_last_unstable_old_ppa_dirs + if (ppa_dirs_ver==2) return true; + if (ppa_dirs_ver==1) return false; + int r = 0; + if (is_unstable) r = compare_to(kernel_last_unstable_old_ppa_dirs); + else r = compare_to(kernel_last_stable_old_ppa_dirs); + if (r>0) { ppa_dirs_ver = 2; return true; } + else { ppa_dirs_ver = 1; return false; } } } @@ -731,17 +744,29 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { } } - public string changes_file { + public string user_notes_file { + owned get { + return cache_subdir+"/notes.txt"; + } + } + + public string cached_status_file { owned get { - return cache_subdir+"/CHANGES"; + return cache_subdir+"/invalid"; } } - public string changes_file_uri { + public string cached_checksums_file { owned get { - return page_uri+"CHANGES"; + return cache_subdir+"/CHECKSUMS"; } + } + public string checksums_file_uri { + owned get { + if (new_ppa_dirs) return page_uri+NATIVE_ARCH+"/CHECKSUMS"; + return page_uri+"CHECKSUMS"; + } } public bool cached_page_exists { @@ -754,7 +779,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { string txt = ""; string list = ""; - foreach (string deb in deb_list.keys) list += "\n"+deb; + foreach (string deb in deb_url_list.keys) list += "\n"+deb; if (list.length > 0) txt += ""+_("Packages Available")+"\n"+list; @@ -771,23 +796,32 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { private void load_cached_page() { vprint("load_cached_page(): '"+cached_page+"'",4); - var list = new Gee.HashMap(); + string txt = ""; + var url_list = new Gee.HashMap(); + deb_image = ""; + deb_header = ""; + deb_header_all = ""; + deb_image_extra = ""; + deb_modules = ""; + version_package = ""; + deb_url_list.clear(); if (!file_exists(cached_page)) { - vprint("load_cached_page(): " + _("File not found") + ": %s".printf(cached_page),1,stderr); + vprint("load_cached_page(): " + _("File not found") + ": "+cached_page,1,stderr); return; } - string txt = file_read(cached_page); + // skip if we already know it's a failed build + if (is_invalid) return; // parse index.html -------------------------- - + txt = file_read(cached_page); try { ////same deb name// var rex = new Regex("""([a-zA-Z0-9\-._/]+)<\/a>"""); MatchInfo match; - foreach(string line in txt.split("\n")) { + foreach (string line in txt.split("\n")) { if (rex.match(line, 0, out match)) { string file_name = Path.get_basename (match.fetch(2)); @@ -820,18 +854,20 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { add = true; } - if (add) list[file_name] = file_uri; + if (add) url_list[file_name] = file_uri; } } - - // if ((deb_header.length == 0) || (deb_header_all.length == 0) || (deb_image.length == 0)) - if (deb_image.length == 0) mark_invalid(); - } catch (Error e) { vprint(e.message,1,stderr); } - deb_list = list; + // if ((deb_header.length == 0) || (deb_header_all.length == 0) || (deb_image.length == 0)) + if (deb_image.length<1 || url_list.size<1) mark_invalid(); + + if (is_invalid) return; + + deb_url_list = url_list; + } // actions @@ -842,7 +878,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { vprint("----------------------------------------------------------------"); foreach(var k in kernel_list) { - if (!k.is_valid) continue; + if (k.is_invalid) continue; // check running/installed state before checking for hidden var desc = k.is_running ? _("Running") : (k.is_installed ? _("Installed") : ""); @@ -868,37 +904,52 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { // dep: aria2c public bool download_packages() { bool ok = true; + int MB = 1024 * 1024; check_if_initialized(); - foreach (string file_name in deb_list.keys) { - - string dl_dir = cache_subdir; - string file_path = "%s/%s".printf(dl_dir, file_name); + var mgr = new DownloadTask(); - if (file_exists(file_path) && !file_exists(file_path + ".aria2c")) continue; + // CHECKSUMS + //fetch CHECKSUMS or /CHECKSUMS depending on version + deb_checksum_list.clear(); + if (App.verify_checksums) { + vprint(_("CHECKSUMS enabled"),2); - dir_create(dl_dir); + if (!file_exists(cached_checksums_file)) { + mgr.add_to_queue(new DownloadItem(checksums_file_uri,cache_subdir,"CHECKSUMS")); + mgr.execute(); + while (mgr.is_running()) sleep(250); + } - vprint(_("Downloading")+": "+file_name); + // extract the sha256 hashes and save in aria2c format + // 52e8d02b2975920e7cc9a9d57843fcb8049addf53f1894073afce02d0e7351b2 linux-image-unsigned-6.2.9-060209-generic_6.2.9-060209.202303301133_amd64.deb + // deb_checksum_list[filename]="sha-256=...hash..." + // deb_checksum_list["linux-image-unsigned-6.2.9-060209-generic_6.2.9-060209.202303301133_amd64.deb"]="sha-256=52e8d02b2975920e7cc9a9d57843fcb8049addf53f1894073afce02d0e7351b2" + // aria2c -h#checksum ;aria2c -v |grep "^Hash Algorithms:" + // FIXME assumption: if 1st word is 64 bytes then it is a sha256 hash + // FIXME assumption: there will always be exactly 2 spaces between hash & filename + foreach (string l in file_read(cached_checksums_file).split("\n")) { + var w = l.split(" "); + if (w.length==3 && w[0].length==64) deb_checksum_list[w[2]] = "sha-256="+w[0]; + } + } - var item = new DownloadItem(deb_list[file_name], file_parent(file_path), file_basename(file_path)); - var mgr = new DownloadTask(); - mgr.add_to_queue(item); - mgr.execute(); + mgr = new DownloadTask(); + foreach (string file_name in deb_url_list.keys) mgr.add_to_queue(new DownloadItem(deb_url_list[file_name],cache_subdir,file_name,deb_checksum_list[file_name])); - while (mgr.is_running()) { - pbar(item.bytes_received,item.bytes_total); - sleep(200); - } + vprint(_("Downloading")+" "+version_main); + mgr.execute(); - string r = _("OK"); - if (!file_exists(file_path)) { - ok = false; - r = _("FAILED"); - } - pbar(0,0); + string[] stat = {"","",""}; + while (mgr.is_running()) { + stat = mgr.status_line.split_set(" /"); + if (stat[1]!=null && stat[2]!=null) pbar(int64.parse(stat[1])/MB,int64.parse(stat[2])/MB,"MB - file "+(mgr.prg_count+1).to_string()+"/"+deb_url_list.size.to_string()); + sleep(250); } + pbar(0,0); + + foreach (string f in deb_url_list.keys) if (!file_exists(cache_subdir+"/"+f)) ok = false; return ok; } @@ -919,14 +970,18 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { if (ok) { + // TODO + // collect the stdout and parse for errors + // write results to user_notes_file + // full paths instead of env -C // https://github.com/bkw777/mainline/issues/128 var flist = ""; - foreach (string file_name in deb_list.keys) flist += " '"+cache_subdir+"/"+file_name+"'"; + foreach (string file_name in deb_url_list.keys) flist += " '"+cache_subdir+"/"+file_name+"'"; string cmd = "pkexec env DISPLAY=${DISPLAY} XAUTHORITY=${XAUTHORITY} dpkg --install "+flist; status = Posix.system(cmd); ok = (status == 0); - foreach (string file_name in deb_list.keys) file_delete(cache_subdir+"/"+file_name); + foreach (string file_name in deb_url_list.keys) file_delete(cache_subdir+"/"+file_name); } @@ -998,7 +1053,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { //vprint("running_kernel: "+kern_running.version_main,4); foreach(var k in LinuxKernel.kernel_list) { - if (!k.is_valid) continue; + if (k.is_invalid) continue; if (!k.is_installed) continue; if (k.version_main == kern_running.version_main) { found_running_kernel = true; diff --git a/src/Common/Main.vala b/src/Common/Main.vala index 5de1ef3b..91499d61 100644 --- a/src/Common/Main.vala +++ b/src/Common/Main.vala @@ -38,28 +38,37 @@ using l.misc; [CCode(cname="BRANDING_WEBSITE")] extern const string BRANDING_WEBSITE; [CCode(cname="INSTALL_PREFIX")] extern const string INSTALL_PREFIX; -private const string LOCALE_DIR = INSTALL_PREFIX + "/share/locale"; -private const string APP_LIB_DIR = INSTALL_PREFIX + "/lib/" + BRANDING_SHORTNAME; - -// .h files are a pain in the ass in vala so dump these "defines" here -const string DEFAULT_PPA_URI = "https://kernel.ubuntu.com/~kernel-ppa/mainline/"; -const string DEFAULT_ALL_PROXY = ""; -const bool DEFAULT_NOTIFY_MAJOR = false; -const bool DEFAULT_NOTIFY_MINOR = false; -const bool DEFAULT_HIDE_UNSTABLE = true; -const int DEFAULT_PREVIOUS_MAJORS = 0; -const int DEFAULT_NOTIFY_INTERVAL_VALUE = 4; // -const int DEFAULT_NOTIFY_INTERVAL_UNIT = 0; // FIXME should really be an enum or string 0=hours, 1=days, 2=weeks, 3=seconds -const int DEFAULT_CONNECT_TIMEOUT_SECONDS = 15; -const int DEFAULT_CONCURRENT_DOWNLOADS = 1; -const int DEFAULT_WINDOW_WIDTH = 800; -const int DEFAULT_WINDOW_HEIGHT = 600; -const int DEFAULT_WINDOW_X = -1; -const int DEFAULT_WINDOW_Y = -1; -const int DEFAULT_TERM_WIDTH = 1100; -const int DEFAULT_TERM_HEIGHT = 600; -//const int DEFAULT_TERM_X = -1; -//const int DEFAULT_TERM_Y = -1; +const string LOCALE_DIR = INSTALL_PREFIX + "/share/locale"; +const string APP_LIB_DIR = INSTALL_PREFIX + "/lib/" + BRANDING_SHORTNAME; + +////////////////////////////////////////////////////////////////////////////// +// CONFIG FILE DEFAULTS +// .h files are a pain in the ass in vala so dump these here + +// network +const string DEFAULT_PPA_URI = "https://kernel.ubuntu.com/~kernel-ppa/mainline/"; +const string DEFAULT_ALL_PROXY = "" ; +const int DEFAULT_CONNECT_TIMEOUT_SECONDS = 15 ; +const int DEFAULT_CONCURRENT_DOWNLOADS = 1 ; +// filters +const bool DEFAULT_HIDE_UNSTABLE = true ; +const int DEFAULT_PREVIOUS_MAJORS = 0 ; +// notifications +const bool DEFAULT_NOTIFY_MAJOR = false ; +const bool DEFAULT_NOTIFY_MINOR = false ; +const int DEFAULT_NOTIFY_INTERVAL_VALUE = 4 ; // FIXME +const int DEFAULT_NOTIFY_INTERVAL_UNIT = 0 ; // use enum +// other +const bool DEFAULT_VERIFY_CHECKSUMS = false ; +// windows +const int DEFAULT_WINDOW_WIDTH = 800 ; +const int DEFAULT_WINDOW_HEIGHT = 600 ; +const int DEFAULT_WINDOW_X = -1 ; +const int DEFAULT_WINDOW_Y = -1 ; +const int DEFAULT_TERM_WIDTH = 1100 ; +const int DEFAULT_TERM_HEIGHT = 600 ; +//const int DEFAULT_TERM_X = -1 ; +//const int DEFAULT_TERM_Y = -1 ; extern void exit(int exit_code); @@ -75,8 +84,8 @@ public class Main : GLib.Object { public string OLD_STARTUP_SCRIPT_FILE = ""; // TRANSITION public string OLD_STARTUP_DESKTOP_FILE = ""; // TRANSITION public string NOTIFICATION_ID_FILE = ""; - public string MAJ_SEEN_FILE = ""; - public string MIN_SEEN_FILE = ""; + public string MAJOR_SEEN_FILE = ""; + public string MINOR_SEEN_FILE = ""; public string user_login = ""; public string user_home = ""; @@ -99,6 +108,18 @@ public class Main : GLib.Object { public bool ppa_up = true; public bool index_is_fresh = false; + public string ppa_uri = DEFAULT_PPA_URI; + public string all_proxy = DEFAULT_ALL_PROXY; + public int connect_timeout_seconds = DEFAULT_CONNECT_TIMEOUT_SECONDS; + public int concurrent_downloads = DEFAULT_CONCURRENT_DOWNLOADS; + public bool hide_unstable = DEFAULT_HIDE_UNSTABLE; + public int previous_majors = DEFAULT_PREVIOUS_MAJORS; + public bool notify_major = DEFAULT_NOTIFY_MAJOR; + public bool notify_minor = DEFAULT_NOTIFY_MINOR; + public int notify_interval_unit = DEFAULT_NOTIFY_INTERVAL_UNIT; + public int notify_interval_value = DEFAULT_NOTIFY_INTERVAL_VALUE; + public bool verify_checksums = DEFAULT_VERIFY_CHECKSUMS; + public int window_width = DEFAULT_WINDOW_WIDTH; public int window_height = DEFAULT_WINDOW_HEIGHT; public int _window_width = DEFAULT_WINDOW_WIDTH; @@ -108,27 +129,18 @@ public class Main : GLib.Object { public int _window_x = DEFAULT_WINDOW_X; public int _window_y = DEFAULT_WINDOW_Y; + // *sizing* the terminal window is working public int term_width = DEFAULT_TERM_WIDTH; public int term_height = DEFAULT_TERM_HEIGHT; public int _term_width = DEFAULT_TERM_WIDTH; public int _term_height = DEFAULT_TERM_HEIGHT; -/* // positioning terminal window is not working +/* // *positioning* the terminal window is not working public int term_x = DEFAULT_TERM_X; public int term_y = DEFAULT_TERM_Y; public int _term_x = DEFAULT_TERM_X; public int _term_y = DEFAULT_TERM_Y; */ - public string ppa_uri = DEFAULT_PPA_URI; - public string all_proxy = DEFAULT_ALL_PROXY; - public bool notify_major = DEFAULT_NOTIFY_MAJOR; - public bool notify_minor = DEFAULT_NOTIFY_MINOR; - public bool hide_unstable = DEFAULT_HIDE_UNSTABLE; - public int previous_majors = DEFAULT_PREVIOUS_MAJORS; - public int notify_interval_unit = DEFAULT_NOTIFY_INTERVAL_UNIT; - public int notify_interval_value = DEFAULT_NOTIFY_INTERVAL_VALUE; - public int connect_timeout_seconds = DEFAULT_CONNECT_TIMEOUT_SECONDS; - public int concurrent_downloads = DEFAULT_CONCURRENT_DOWNLOADS; public bool confirm = true; // constructors ------------ @@ -168,8 +180,8 @@ public class Main : GLib.Object { OLD_STARTUP_SCRIPT_FILE = APP_CONF_DIR + "/notify-loop.sh"; // TRANSITION OLD_STARTUP_DESKTOP_FILE = user_home + "/.config/autostart/" + BRANDING_SHORTNAME + ".desktop"; // TRANSITION NOTIFICATION_ID_FILE = APP_CONF_DIR + "/notification_id"; - MAJ_SEEN_FILE = APP_CONF_DIR + "/notification_seen.major"; - MIN_SEEN_FILE = APP_CONF_DIR + "/notification_seen.minor"; + MAJOR_SEEN_FILE = APP_CONF_DIR + "/notification_seen.major"; + MINOR_SEEN_FILE = APP_CONF_DIR + "/notification_seen.minor"; CACHE_DIR = user_home + "/.cache/" + BRANDING_SHORTNAME; TMP_PREFIX = Environment.get_tmp_dir() + "/." + BRANDING_SHORTNAME; @@ -181,24 +193,25 @@ public class Main : GLib.Object { vprint("save_app_config()",2); var config = new Json.Object(); - config.set_string_member("ppa_uri", ppa_uri); - config.set_string_member("all_proxy", all_proxy); - config.set_boolean_member("notify_major", notify_major); - config.set_boolean_member("notify_minor", notify_minor); - config.set_boolean_member("hide_unstable", hide_unstable); - config.set_int_member("previous_majors", previous_majors); - config.set_int_member("notify_interval_unit", notify_interval_unit); - config.set_int_member("notify_interval_value", notify_interval_value); - config.set_int_member("connect_timeout_seconds", connect_timeout_seconds); - config.set_int_member("concurrent_downloads", concurrent_downloads); - config.set_int_member("window_width", window_width); - config.set_int_member("window_height", window_height); - config.set_int_member("window_x", window_x); - config.set_int_member("window_y", window_y); - config.set_int_member("term_width", term_width); - config.set_int_member("term_height", term_height); -// config.set_int_member("term_x", term_x); -// config.set_int_member("term_y", term_y); + config.set_string_member( "ppa_uri", ppa_uri ); + config.set_string_member( "all_proxy", all_proxy ); + config.set_int_member( "connect_timeout_seconds", connect_timeout_seconds ); + config.set_int_member( "concurrent_downloads", concurrent_downloads ); + config.set_boolean_member( "hide_unstable", hide_unstable ); + config.set_int_member( "previous_majors", previous_majors ); + config.set_boolean_member( "notify_major", notify_major ); + config.set_boolean_member( "notify_minor", notify_minor ); + config.set_int_member( "notify_interval_unit", notify_interval_unit ); + config.set_int_member( "notify_interval_value", notify_interval_value ); + config.set_boolean_member( "verify_checksums", verify_checksums ); + config.set_int_member( "window_width", window_width ); + config.set_int_member( "window_height", window_height ); + config.set_int_member( "window_x", window_x ); + config.set_int_member( "window_y", window_y ); + config.set_int_member( "term_width", term_width ); + config.set_int_member( "term_height", term_height ); +// config.set_int_member( "term_x", term_x ); +// config.set_int_member( "term_y", term_y ); var json = new Json.Generator(); json.pretty = true; @@ -226,11 +239,11 @@ public class Main : GLib.Object { var parser = new Json.Parser(); - bool cf = true; try { parser.load_from_file(APP_CONFIG_FILE); } catch (Error e) { cf = false; vprint(e.message,2); } if (!cf) { + vprint("detetcted no config file",2); save_app_config(); try { parser.load_from_file(APP_CONFIG_FILE); } catch (Error e) { vprint(e.message,1,stderr); exit(1); } @@ -239,30 +252,68 @@ public class Main : GLib.Object { var node = parser.get_root(); var config = node.get_object(); - ppa_uri = config.get_string_member_with_default("ppa_uri",DEFAULT_PPA_URI); - if (ppa_uri.length==0) ppa_uri = DEFAULT_PPA_URI; - if (!ppa_uri.has_suffix("/")) ppa_uri += "/"; - LinuxKernel.PPA_URI = ppa_uri; + // TRANSITION PERIOD + // detect old file format + // hide_unstable, notify_major, notify minor + // are all options that have existed since the oldest version of ukuu, + // still exist today, and are not string type. + // They should be present in all config files no matter how old, + // and if they are stored as a string, + // then the config file is in the old format + bool resave = false; + if (config.get_string_member("hide_unstable")==null) { + vprint("detetcted new config file format",2); + // new config file format - values stored in native format + ppa_uri = config.get_string_member_with_default( "ppa_uri", DEFAULT_PPA_URI ); + all_proxy = config.get_string_member_with_default( "all_proxy", DEFAULT_ALL_PROXY ); + connect_timeout_seconds = (int)config.get_int_member_with_default( "connect_timeout_seconds", DEFAULT_CONNECT_TIMEOUT_SECONDS ); + concurrent_downloads = (int)config.get_int_member_with_default( "concurrent_downloads", DEFAULT_CONCURRENT_DOWNLOADS ); + hide_unstable = config.get_boolean_member_with_default( "hide_unstable", DEFAULT_HIDE_UNSTABLE ); + previous_majors = (int)config.get_int_member_with_default( "previous_majors", DEFAULT_PREVIOUS_MAJORS ); + notify_major = config.get_boolean_member_with_default( "notify_major", DEFAULT_NOTIFY_MAJOR ); + notify_minor = config.get_boolean_member_with_default( "notify_minor", DEFAULT_NOTIFY_MINOR ); + notify_interval_unit = (int)config.get_int_member_with_default( "notify_interval_unit", DEFAULT_NOTIFY_INTERVAL_UNIT ); + notify_interval_value = (int)config.get_int_member_with_default( "notify_interval_value", DEFAULT_NOTIFY_INTERVAL_VALUE ); + verify_checksums = config.get_boolean_member_with_default( "verify_checksums", DEFAULT_VERIFY_CHECKSUMS ); + window_width = (int)config.get_int_member_with_default( "window_width", DEFAULT_WINDOW_WIDTH ); + window_height = (int)config.get_int_member_with_default( "window_height", DEFAULT_WINDOW_HEIGHT ); + window_x = (int)config.get_int_member_with_default( "window_x", DEFAULT_WINDOW_X ); + window_y = (int)config.get_int_member_with_default( "window_y", DEFAULT_WINDOW_Y ); + term_width = (int)config.get_int_member_with_default( "term_width", DEFAULT_TERM_WIDTH ); + term_height = (int)config.get_int_member_with_default( "term_height", DEFAULT_TERM_HEIGHT ); + //term_x = (int)config.get_int_member_with_default( "term_x", DEFAULT_TERM_X ); + //term_y = (int)config.get_int_member_with_default( "term_y", DEFAULT_TERM_Y ); + } else { + vprint("detetcted old config file format",2); + resave = true; + // old config file format - all values stored as string + ppa_uri = config.get_string_member_with_default( "ppa_uri", DEFAULT_PPA_URI ) ; + all_proxy = config.get_string_member_with_default( "all_proxy", DEFAULT_ALL_PROXY ) ; + connect_timeout_seconds = int.parse( config.get_string_member_with_default( "connect_timeout_seconds", DEFAULT_CONNECT_TIMEOUT_SECONDS .to_string() ) ); + concurrent_downloads = int.parse( config.get_string_member_with_default( "concurrent_downloads", DEFAULT_CONCURRENT_DOWNLOADS .to_string() ) ); + hide_unstable = bool.parse( config.get_string_member_with_default( "hide_unstable", DEFAULT_HIDE_UNSTABLE .to_string() ) ); + previous_majors = int.parse( config.get_string_member_with_default( "previous_majors", DEFAULT_PREVIOUS_MAJORS .to_string() ) ); + notify_major = bool.parse( config.get_string_member_with_default( "notify_major", DEFAULT_NOTIFY_MAJOR .to_string() ) ); + notify_minor = bool.parse( config.get_string_member_with_default( "notify_minor", DEFAULT_NOTIFY_MINOR .to_string() ) ); + notify_interval_unit = int.parse( config.get_string_member_with_default( "notify_interval_unit", DEFAULT_NOTIFY_INTERVAL_UNIT .to_string() ) ); + notify_interval_value = int.parse( config.get_string_member_with_default( "notify_interval_value", DEFAULT_NOTIFY_INTERVAL_VALUE .to_string() ) ); + window_width = int.parse( config.get_string_member_with_default( "window_width", DEFAULT_WINDOW_WIDTH .to_string() ) ); + window_height = int.parse( config.get_string_member_with_default( "window_height", DEFAULT_WINDOW_HEIGHT .to_string() ) ); + window_x = int.parse( config.get_string_member_with_default( "window_x", DEFAULT_WINDOW_X .to_string() ) ); + window_y = int.parse( config.get_string_member_with_default( "window_y", DEFAULT_WINDOW_Y .to_string() ) ); + term_width = int.parse( config.get_string_member_with_default( "term_width", DEFAULT_TERM_WIDTH .to_string() ) ); + term_height = int.parse( config.get_string_member_with_default( "term_height", DEFAULT_TERM_HEIGHT .to_string() ) ); + //term_x = int.parse( config.get_string_member_with_default( "term_x", DEFAULT_TERM_X .to_string() ) ); + //term_y = int.parse( config.get_string_member_with_default( "term_y", DEFAULT_TERM_Y .to_string() ) ); + } - all_proxy = config.get_string_member_with_default("all_proxy",DEFAULT_ALL_PROXY); - notify_major = config.get_boolean_member_with_default("notify_major",DEFAULT_NOTIFY_MAJOR); - notify_minor = config.get_boolean_member_with_default("notify_minor",DEFAULT_NOTIFY_MINOR); - notify_interval_unit = (int)config.get_int_member_with_default("notify_interval_unit",DEFAULT_NOTIFY_INTERVAL_UNIT); - notify_interval_value = (int)config.get_int_member_with_default("notify_interval_value",DEFAULT_NOTIFY_INTERVAL_VALUE); - connect_timeout_seconds = (int)config.get_int_member_with_default("connect_timeout_seconds",DEFAULT_CONNECT_TIMEOUT_SECONDS); - concurrent_downloads = (int)config.get_int_member_with_default("concurrent_downloads",DEFAULT_CONCURRENT_DOWNLOADS); - hide_unstable = config.get_boolean_member_with_default("hide_unstable",DEFAULT_HIDE_UNSTABLE); - previous_majors = (int)config.get_int_member_with_default("previous_majors",DEFAULT_PREVIOUS_MAJORS); - - window_width = (int)config.get_int_member_with_default("window_width",DEFAULT_WINDOW_WIDTH); - window_height = (int)config.get_int_member_with_default("window_height",DEFAULT_WINDOW_HEIGHT); - window_x = (int)config.get_int_member_with_default("window_x",DEFAULT_WINDOW_X); - window_y = (int)config.get_int_member_with_default("window_y",DEFAULT_WINDOW_Y); - term_width = (int)config.get_int_member_with_default("term_width",DEFAULT_TERM_WIDTH); - term_height = (int)config.get_int_member_with_default("term_height",DEFAULT_TERM_HEIGHT); - //term_x = (int)config.get_int_member_with_default("term_x",DEFAULT_TERM_X); - //term_y = (int)config.get_int_member_with_default("term_y",DEFAULT_TERM_Y); + // fixups + if (ppa_uri.length==0) { ppa_uri = DEFAULT_PPA_URI; resave = true; } + if (!ppa_uri.has_suffix("/")) { ppa_uri += "/"; resave = true; } + LinuxKernel.PPA_URI = ppa_uri; + if (connect_timeout_seconds>600) connect_timeout_seconds = 600; // aria2c max allowed + if (resave) save_app_config(); vprint("Loaded config file: "+APP_CONFIG_FILE,2); } @@ -299,34 +350,34 @@ public class Main : GLib.Object { string s = "#!/bin/bash\n" + "# "+_("Called from")+" "+STARTUP_DESKTOP_FILE+" at logon.\n" + "# "+_("This file is over-written and executed again whenever settings are saved in")+" "+BRANDING_SHORTNAME+"-gtk\n" - + "[[ $1 == --autostart ]] && rm -f \""+NOTIFICATION_ID_FILE+"\" \""+MAJ_SEEN_FILE+"\" \""+MIN_SEEN_FILE+"\"\n" + + "[[ $1 == --autostart ]] && rm -f \""+NOTIFICATION_ID_FILE+"\" \""+MAJOR_SEEN_FILE+"\" \""+MINOR_SEEN_FILE+"\"\n" + "TMP=${XDG_RUNTIME_DIR:-/tmp}\n" + "N=${0//\\//_}\n" + "F=\"${TMP}/${N}.${$}.p\"\n" - + "trap 'read c<\\\"${F}_\\\" ;kill $c ;rm -f \\\"$F{,_}\\\"' 0\n" - + "echo -n \"${DISPLAY} ${$}\" > \"${F}\"\n" + + "trap '[[ -f ${F}_ ]] && read c < ${F}_ && kill $c ;rm -f $F{,_}' 0\n" + "typeset -i p\n" + "shopt -s extglob\n" + "\n" + "# clear previous state (kill previous instance)\n" + + "echo -n \"${DISPLAY} ${$}\" > $F\n" + "for f in ${TMP}/${N}.+([0-9]).p ;do\n" - + "\t[[ -s ${f} ]] || continue\n" + + "\t[[ -s $f ]] || continue\n" + "\t[[ $f -ot $F ]] || continue\n" - + "\tread d p x < \"$f\"\n" + + "\tread d p x < $f\n" + "\t[[ $d == ${DISPLAY} ]] || continue\n" + "\t((p>1)) || continue\n" - + "\trm -f \"$f\"\n" + + "\trm -f $f\n" + "\tkill $p\n" + "done\n" + "unset N f p d x\n" + "\n" + "# run whatever the new state should be\n"; if (notify_minor || notify_major) { - s += "while [[ -f \"$F\" ]] ;do\n" + s += "while [[ -f $F ]] ;do\n" + "\t"+BRANDING_SHORTNAME+" --notify 2>&- >&-\n" + "\tsleep %d%s &\n".printf(count,suffix) + "\tc=$!\n" - + "\techo $c >>\"${F}_\"\n" + + "\techo $c >>${F}_\n" + "\twait $c\n" // respond to signals during sleep + "done\n"; } else { @@ -335,14 +386,19 @@ public class Main : GLib.Object { } file_write(STARTUP_SCRIPT_FILE,s); - // settings get saved on startup if the file doesn't exist yet, - // so we don't always want to launch the background process immediately on save, - // because when notifications are enabled, - // the background process runs another instance of ourself while we are still starting up ourselves, - // and the two instances' cache operations step all over each other. + // save_app_config() gets run right at app startup if the config file + // doesn't exist yet, so sometimes update_startup_script() might run + // early in app start-up when we haven't done the cache update yet. + // If we blindly launch the background notification process immediately + // any time settings are updated, the --notify process and ourselves + // will both try to update the same cache files at the same time and + // step all over each other. // This is not really a fully correct answer, but mostly good enough: - // if notifications are now off, then run immediately so it clears out the existing watcher possibly already running - // if notifications are now on, then wait and run later on exit. + // * If notifications are now OFF, then run the new startup script + // immediately so that it clears out the existing notification loop + // that might be running. + // * If notifications are now ON, then delay running the new startup + // script until later at app exit. if (!notify_major && !notify_minor) exec_async("bash "+STARTUP_SCRIPT_FILE+" 2>&- >&- <&-"); } @@ -350,10 +406,10 @@ public class Main : GLib.Object { vprint("update_startup_desktop_file()",2); if (notify_minor || notify_major) { - string txt = "[Desktop Entry]\n" + string s = "[Desktop Entry]\n" + "Exec=bash \""+STARTUP_SCRIPT_FILE+"\" --autostart\n" ; - file_write(STARTUP_DESKTOP_FILE, txt); + file_write(STARTUP_DESKTOP_FILE,s); } else { file_delete(STARTUP_DESKTOP_FILE); file_delete(OLD_STARTUP_DESKTOP_FILE); // TRANSITION diff --git a/src/Console/AppConsole.vala b/src/Console/AppConsole.vala index 3562108c..0d83f82c 100644 --- a/src/Console/AppConsole.vala +++ b/src/Console/AppConsole.vala @@ -320,16 +320,18 @@ public class AppConsole : GLib.Object { var k = new LinuxKernel("",true); if (App.notify_major) { - if (file_exists(App.MAJ_SEEN_FILE)) seen = file_read(App.MAJ_SEEN_FILE).strip(); + if (file_exists(App.MAJOR_SEEN_FILE)) seen = file_read(App.MAJOR_SEEN_FILE).strip(); k = LinuxKernel.kernel_update_major; - if (k!=null && seen!=k.version_main) file_write(App.MAJ_SEEN_FILE,k.version_main); - } else if (App.notify_minor) { - if (file_exists(App.MIN_SEEN_FILE)) seen = file_read(App.MIN_SEEN_FILE).strip(); - k = LinuxKernel.kernel_update_minor; - if (k!=null && seen!=k.version_main) file_write(App.MIN_SEEN_FILE,k.version_main); + if (k!=null && seen!=k.version_main) file_write(App.MAJOR_SEEN_FILE,k.version_main); + else k = null; } - vprint(_("previously notified")+": \""+seen+"\"",3); + if (App.notify_minor && k==null) { + if (file_exists(App.MINOR_SEEN_FILE)) seen = file_read(App.MINOR_SEEN_FILE).strip(); + k = LinuxKernel.kernel_update_minor; + if (k!=null && seen!=k.version_main) file_write(App.MINOR_SEEN_FILE,k.version_main); + else k = null; + } if (k!=null) { title = _("Kernel %s Available").printf(k.version_main); @@ -339,6 +341,8 @@ public class AppConsole : GLib.Object { alist.add(_("Show")+":"+BRANDING_SHORTNAME+"-gtk"); alist.add(_("Install")+":"+BRANDING_SHORTNAME+"-gtk --install "+k.version_main); OSDNotify.notify_send(title,body,alist,close_action); + } else { + if (seen.length>0) title = _("Previously notified")+": \""+seen+"\""; } vprint(title); diff --git a/src/Gtk/MainWindow.vala b/src/Gtk/MainWindow.vala index d3f9df9f..74e3fa16 100644 --- a/src/Gtk/MainWindow.vala +++ b/src/Gtk/MainWindow.vala @@ -38,7 +38,7 @@ public class MainWindow : Gtk.Window { private Gtk.TreeView tv; private Gtk.Button btn_install; private Gtk.Button btn_uninstall; - private Gtk.Button btn_changes; + private Gtk.Button btn_notes; private Gtk.Button btn_ppa; private Gtk.Label lbl_info; @@ -179,7 +179,6 @@ public class MainWindow : Gtk.Window { model.get_iter(out iter, path); model.get (iter, 0, out kern, -1); selected_kernels.add(kern); - //log_msg("size=%d".printf(selected_kernels.size)); } set_button_state(); @@ -206,7 +205,7 @@ public class MainWindow : Gtk.Window { TreeIter iter; bool odd_row = false; foreach (var k in LinuxKernel.kernel_list) { - if (!k.is_valid) continue; + if (k.is_invalid) continue; if (!k.is_installed) { if (k.is_unstable && App.hide_unstable) continue; if (k.version_maj < LinuxKernel.threshold_major) continue; @@ -241,13 +240,13 @@ public class MainWindow : Gtk.Window { if (selected_kernels.size == 0) { btn_install.sensitive = false; btn_uninstall.sensitive = false; - btn_changes.sensitive = false; + btn_notes.sensitive = false; btn_ppa.sensitive = true; } else { // only allow selecting a single kernel for install/uninstall, examine the installed state btn_install.sensitive = (selected_kernels.size == 1) && !selected_kernels[0].is_installed; btn_uninstall.sensitive = selected_kernels[0].is_installed && !selected_kernels[0].is_running; - btn_changes.sensitive = (selected_kernels.size == 1) && file_exists(selected_kernels[0].changes_file); + btn_notes.sensitive = (selected_kernels.size == 1); btn_ppa.sensitive = (selected_kernels.size == 1) && selected_kernels[0].is_mainline; // allow selecting multiple kernels for install/uninstall, but IF only a single selected, examine the installed state // (the rest of the app does not have loops to process a list yet) @@ -281,15 +280,14 @@ public class MainWindow : Gtk.Window { do_uninstall(selected_kernels); }); - // changes - button = new Gtk.Button.with_label (_("Changes")); + // notes + button = new Gtk.Button.with_label (_("Notes")); hbox.pack_start (button, true, true, 0); - btn_changes = button; + btn_notes = button; button.clicked.connect(() => { - if ((selected_kernels.size == 1) && file_exists(selected_kernels[0].changes_file)) { - uri_open("file://"+selected_kernels[0].changes_file); - } + if (!file_exists(selected_kernels[0].user_notes_file)) file_write(selected_kernels[0].user_notes_file,_("User notes for")+" "+selected_kernels[0].version_main+"\n\n"); + uri_open("file://"+selected_kernels[0].user_notes_file); }); // ppa diff --git a/src/Gtk/SettingsDialog.vala b/src/Gtk/SettingsDialog.vala index a6f4af0b..4dd05dda 100644 --- a/src/Gtk/SettingsDialog.vala +++ b/src/Gtk/SettingsDialog.vala @@ -35,6 +35,7 @@ public class SettingsDialog : Gtk.Dialog { private Gtk.CheckButton chk_notify_major; private Gtk.CheckButton chk_notify_minor; private Gtk.CheckButton chk_hide_unstable; + private Gtk.CheckButton chk_verify_checksums; public SettingsDialog.with_parent(Window parent) { set_transient_for(parent); @@ -161,22 +162,22 @@ public class SettingsDialog : Gtk.Dialog { // kernel version threshold hbox = new Gtk.Box(Orientation.HORIZONTAL, 6); vbox_main.add (hbox); - label = new Label(_("Show")); + label = new Label(_("Show")); label.xalign = (float) 0.0; label.margin_start = 6; hbox.add (label); - var spm_adj = new Gtk.Adjustment(App.previous_majors, 0, 99, 1, 1, 0); + var spm_adj = new Gtk.Adjustment(App.previous_majors, -1, LinuxKernel.kernel_latest_available.version_maj , 1, 1, 0); var spm_spin = new Gtk.SpinButton (spm_adj, 1, 0); spm_spin.xalign = (float) 0.5; hbox.add(spm_spin); spm_spin.changed.connect(()=>{ App.previous_majors = (int) spm_spin.get_value(); }); - label = new Label(_("previous major versions")); + label = new Label(_("previous major versions ( -1 = all )")); hbox.add(label); - // other + // network label = new Label("" + _("Network") + ""); label.set_use_markup(true); label.xalign = (float) 0.0; @@ -184,7 +185,7 @@ public class SettingsDialog : Gtk.Dialog { label.margin_bottom = 6; vbox_main.add (label); - // timeout value + // connect timeout hbox = new Gtk.Box(Orientation.HORIZONTAL, 6); vbox_main.add (hbox); @@ -220,17 +221,25 @@ public class SettingsDialog : Gtk.Dialog { spin.changed.connect(()=>{ App.concurrent_downloads = (int) spin_concurrent.get_value(); }); + // verify_checksums + chk = new CheckButton.with_label(_("Verify Checksums with the CHECKSUMS files")); + chk.active = App.verify_checksums; + chk.margin_start = 6; + vbox_main.add(chk); + chk_verify_checksums = chk; + chk.toggled.connect(()=>{ App.verify_checksums = chk_verify_checksums.active; }); + // proxy - label = new Label("" + _("Proxy") + ""); - label.set_use_markup(true); + label = new Label(_("Proxy")); label.xalign = (float) 0.0; - label.margin_bottom = 6; + label.margin_start = 6; vbox_main.add (label); var proxy = new Entry (); proxy.set_placeholder_text("[http://][USER:PASSWORD@]HOST[:PORT]"); proxy.set_text(App.all_proxy); proxy.activate.connect(()=>{ App.all_proxy = proxy.get_text(); }); + proxy.margin_start = 6; vbox_main.add(proxy); // too easily screwed up and "blank to return to default" isn't working diff --git a/src/lib/AsyncTask.vala b/src/lib/AsyncTask.vala index 6794c08c..2339c3cc 100644 --- a/src/lib/AsyncTask.vala +++ b/src/lib/AsyncTask.vala @@ -83,6 +83,7 @@ public abstract class AsyncTask : GLib.Object { is_terminated = false; finish_called = false; + status_line = ""; prg_count = 0; error_msg = ""; @@ -259,7 +260,6 @@ public abstract class AsyncTask : GLib.Object { // there may be pending operations which may throw an error } - status_line = ""; err_line = ""; out_line = ""; diff --git a/src/lib/TeeJee.FileSystem.vala b/src/lib/TeeJee.FileSystem.vala index 4c28b1a1..91153947 100644 --- a/src/lib/TeeJee.FileSystem.vala +++ b/src/lib/TeeJee.FileSystem.vala @@ -62,16 +62,13 @@ namespace TeeJee.FileSystem { public string? file_read (string file_path) { vprint("file_read("+file_path+")",3); - string txt; + string txt = ""; size_t size; - try { - GLib.FileUtils.get_contents (file_path, out txt, out size); - return txt; - } + try { GLib.FileUtils.get_contents (file_path, out txt, out size); } catch (Error e) { vprint(e.message,1,stderr); } - return null; + return txt; } public bool file_write (string f, string contents) { @@ -157,13 +154,11 @@ namespace TeeJee.FileSystem { public bool dir_create (string d) { vprint("dir_create("+d+")",3); - - try{ + try { var dir = File.parse_name(d); if (!dir.query_exists()) dir.make_directory_with_parents(); return true; - } - catch (Error e) { + } catch (Error e) { vprint(e.message,1,stderr); return false; } diff --git a/src/lib/l.misc.vala b/src/lib/l.misc.vala index 87e861c2..9b1d881c 100644 --- a/src/lib/l.misc.vala +++ b/src/lib/l.misc.vala @@ -53,9 +53,13 @@ namespace l.misc { + " --max-tries=3" + " --dry-run" + " --quiet"; - if (App.connect_timeout_seconds>0) cmd += " --connect-timeout="+App.connect_timeout_seconds.to_string() + + if (App.connect_timeout_seconds>0) cmd += " --connect-timeout="+App.connect_timeout_seconds.to_string(); + if (App.all_proxy.length>0) cmd += " --all-proxy='"+App.all_proxy+"'"; - cmd += " \""+App.ppa_uri+"\""; + + cmd += " '"+App.ppa_uri+"'"; + vprint(cmd,3); int status = exec_sync(cmd, out std_out, out std_err); From a8e24ee3077fbaecc27f02b5c7d0ff283386ba9e Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Sat, 1 Apr 2023 14:15:25 -0400 Subject: [PATCH 285/567] readme --- README.md | 7 +++---- README.md.src | 7 +++---- settings.md | 34 ++++++++++++---------------------- 3 files changed, 18 insertions(+), 30 deletions(-) diff --git a/README.md b/README.md index 030606d7..05aca7c4 100644 --- a/README.md +++ b/README.md @@ -65,10 +65,11 @@ The app runs as the user and uses pkexec internally just for the dpkg command. **\[ Uninstall \]** - uninstalls the selected kernel(1) -**\[ Changes \]** - displays the CHANGES file for the selected kernel +**\[ Notes \]** - opens a notes.txt file in the cache directory for the selected kernel for user notes **\[ PPA \]** - launches your default https:// handler to the web page for the selected kernel -If no kernels are selected (when first launching the app before clicking on any) launches the main page listing all the kernels. +If no kernels are selected (when first launching the app before clicking on any) launches the main page listing all the kernels. +Use this to see the build summary and CHANGES files. **\[ Uninstall Old \]** - uninstalls all installed kernels below the latest installed version(1) @@ -116,14 +117,12 @@ For the single manual uninstall button, the button simply isn't activated. For t If you think the list is missing something, and the "Reload" button didn't make it appear, press the "PPA" button to jump to the mainline-ppa web site where the .deb packages come from, and look at the build results for the missing kernel, and you will usually find that it is a failed or incomplete build for your arch, and can not be installed. # TODO & WIP -* Improve the how "invalid" is determined, perhaps use the "status" file as suggested in #71 * Add some extra info into the version strings used for display and --install etc, to better handle multiple kernels of the same main version but from different sources, and other differences like builds and platform/feature options etc * Replace system("aria2c ...") with libsoup or libcurl or similar * Make the background process for notifications detect when the user logs out of the desktop session and exit itself * Move the notification/dbus code from the current shell script into the app and make an "applet" mode * Combine the gtk and cli apps into one, or, make the gtk app into a pure front-end for the cli app, either way * Replace the commandline parser -* Allow attaching notes to each kernel * Toggle display of invalid kernels so you could at least see they aren't simply missing, and use the "PPA" button too * UI quick toggle for show/hide unstable/-rc kernels * Right-click menu for more functions for a given kernel, such as reloading the cache just for a single kernel to check for new build status etc, without adding 18 buttons all over the ui. diff --git a/README.md.src b/README.md.src index 8685c43c..a1b3ca1b 100644 --- a/README.md.src +++ b/README.md.src @@ -65,10 +65,11 @@ The app runs as the user and uses pkexec internally just for the dpkg command. **\[ Uninstall \]** - uninstalls the selected kernel(1) -**\[ Changes \]** - displays the CHANGES file for the selected kernel +**\[ Notes \]** - opens a notes.txt file in the cache directory for the selected kernel for user notes **\[ PPA \]** - launches your default https:// handler to the web page for the selected kernel -If no kernels are selected (when first launching the app before clicking on any) launches the main page listing all the kernels. +If no kernels are selected (when first launching the app before clicking on any) launches the main page listing all the kernels. +Use this to see the build summary and CHANGES files. **\[ Uninstall Old \]** - uninstalls all installed kernels below the latest installed version(1) @@ -116,14 +117,12 @@ For the single manual uninstall button, the button simply isn't activated. For t If you think the list is missing something, and the "Reload" button didn't make it appear, press the "PPA" button to jump to the mainline-ppa web site where the .deb packages come from, and look at the build results for the missing kernel, and you will usually find that it is a failed or incomplete build for your arch, and can not be installed. # TODO & WIP -* Improve the how "invalid" is determined, perhaps use the "status" file as suggested in #71 * Add some extra info into the version strings used for display and --install etc, to better handle multiple kernels of the same main version but from different sources, and other differences like builds and platform/feature options etc * Replace system("aria2c ...") with libsoup or libcurl or similar * Make the background process for notifications detect when the user logs out of the desktop session and exit itself * Move the notification/dbus code from the current shell script into the app and make an "applet" mode * Combine the gtk and cli apps into one, or, make the gtk app into a pure front-end for the cli app, either way * Replace the commandline parser -* Allow attaching notes to each kernel * Toggle display of invalid kernels so you could at least see they aren't simply missing, and use the "PPA" button too * UI quick toggle for show/hide unstable/-rc kernels * Right-click menu for more functions for a given kernel, such as reloading the cache just for a single kernel to check for new build status etc, without adding 18 buttons all over the ui. diff --git a/settings.md b/settings.md index fe17acdc..3e45c381 100644 --- a/settings.md +++ b/settings.md @@ -15,34 +15,24 @@ Excludes less stable more bleeding edge -rc kernels from the list. **Show N previous major versions \[#\]** Defines a threshold value for the oldest major version to include in the display, as an offset from the whatever the current latest version is. -The algorithm is essentially this (pseudocode): +The algorithm is essentially this pseudocode: threshold_major = min( latest_available - N , oldest_installed ) -IE, the latest major version available minus N, or the oldest major version you have installed, whichever is lower. +In other words, whichever is lower: the latest major version available minus N, or the oldest major version you have installed. -Generally, you want this setting to just be 0. -It's really only even a configurable option because in the past it was dumber, and you needed the option to set it to 1 or 2 in order to cover the times when each new major version gets it's first viable kernel, but you still need to see the more new point releases of the previous major version for a while, and you also just in general usually want to have access to all newer point releases for any (mainline) kernel that you have installed, whatever they are. -Now, with this threshold_major rule, and N=0, you get the following behavior: - -Most of the time, you will have one or more kernels installed of the same major version as whatever is current at the time, and the list will only include the kernels from that one latest major version. It always includes all point releases for any given major version. -So today, that means you have a 6.2.2 installed and the list shows all of the 6.x.x versions. - -Then 7.0.0 comes out. - -All else being equal, latest=7 and N=0 and 7-0=7 means on that day the list would only show 7.0.0 and nothing else except whatever individual ones you actually have installed. - -But there is also 6.3.0 available you might have wanted to use, but you never got a chance to see it, and never will get a chace to see 6.3.1 etc. -So the above rule just adds another element to also consider whatever is the oldest mainline kernel you have installed, and set the threshold to that major version, or to latest-N, whichever is lower. +The special value "-1" is also allowed, and means always show all kernel versions. With this value the initial cache update takes a long time, but it's actually usable after that. -So for a while, as long as you have any 6.x installed, the list will include all of the 6.x.x and all of the 7.x.x. The list will still be not too slow for a while when there are not many 7.x.x yet, and later when you uninstall your last 6.x naturally, all the 6.x.x will go away then automatically, and you'll have only 7.x.x. - -On the other hand, if you explicitly *want* to see a bigger list including older kerneles, even if you don't have any of those installed, you can set N to 1 or greater, and you can get all the 6.x, all the 5.x, or more. +Generally, you want this setting to just be 0. -Distro kernels are not factored. -If the latest mainline available are 7.x and 6.x, and you also have a 5.x installed from ubuntu, the threshold is not set to 5.x. The purpose of setting the floor at your oldest installed kernel is so that you can see any *mainline* point releases available that might exist after your installed versions, so that you could still update to the latest 6.x even after 7.x becomes available, without having to deal with loading two full generations all the time if you don't actually need the previous generation. The distro provided kernels are unrelated. They are only even displayed in the list for completeness and for the convenience of un-installing. +Distribution (non-mainline) kernels are not included when determining the lowest or highest installed versions. ## Network **Internet connection timeout in \[##\] seconds** **Max concurrent downloads \[#\]** -**Proxy \[ \]** -These correspond to options for aria2c used to download index.html and deb package files in the background. + +**\[ \] Verify Checksums** +When downloading .deb packages, first download the CHECKSUMS file and extract the sha-256 hashes from it, and use them to verify the .deb file downloads. + +**Proxy +\[ \]** +proxy support via aria2c's [all-proxy](https://aria2.github.io/manual/en/html/aria2c.html#cmdoption-all-proxy) setting From dc5330d25d9dd2898b9e01f5b338d42545ddd99d Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Sat, 1 Apr 2023 15:32:08 -0400 Subject: [PATCH 286/567] 1.1.19 --- .deb_build_number.mak | 2 +- debian/changelog | 16 ++++++++++++++++ 2 files changed, 17 insertions(+), 1 deletion(-) diff --git a/.deb_build_number.mak b/.deb_build_number.mak index 204194a6..0e892ceb 100644 --- a/.deb_build_number.mak +++ b/.deb_build_number.mak @@ -1,3 +1,3 @@ # This file is generated by Makefile "make deb_build_number" -DEB_PKG_VERSION := 1.1.8 +DEB_PKG_VERSION := 1.1.9 DEB_BUILD_NUMBER := 0000 diff --git a/debian/changelog b/debian/changelog index 2568b053..8b77ca65 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,19 @@ +mainline (1.1.9) UNRELEASED; urgency=medium + + * CHECKSUMS - new config option verify_checksums. When true, downloads the + CHECKSUMS file before downloading .deb files, extracts the sha256 hashes, + and uses them to verify the .deb file downloads. + + * Improved config file and built-in defaults handling + + * Improved notification script reliability. + + * Removed CHANGES file and button. It's essentially redundant with the PPA button, and slows down the cache updates. + + * Add Notes button. Creates/opens notes.txt in individual kernel's cache subdirectory + + -- Brian K. White Sat, 01 Apr 2023 15:22:51 -0400 + mainline (1.1.8) unstable; urgency=medium * make load_app_config() more resilient From 51b5c7da1635137a534badaa99ab3fa69b3212e1 Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Sun, 2 Apr 2023 02:03:02 -0400 Subject: [PATCH 287/567] dc5330d commit message 1.1.19 was a typo, should have been 1.1.9 From d75f863aba9ce96e90dc7dff0dadf93ef2f9468c Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Sun, 2 Apr 2023 02:06:55 -0400 Subject: [PATCH 288/567] fix #215 verify_checksums=false --- BRANDING.mak | 2 +- po/de.po | 96 ++++++++++++++++++++++++++----------- po/el.po | 96 ++++++++++++++++++++++++++----------- po/es.po | 95 +++++++++++++++++++++++++----------- po/fr.po | 96 ++++++++++++++++++++++++++----------- po/hr.po | 96 ++++++++++++++++++++++++++----------- po/it.po | 96 ++++++++++++++++++++++++++----------- po/ko.po | 96 ++++++++++++++++++++++++++----------- po/messages.pot | 90 +++++++++++++++++++++++----------- po/nl.po | 96 ++++++++++++++++++++++++++----------- po/pl.po | 96 ++++++++++++++++++++++++++----------- po/ru.po | 96 ++++++++++++++++++++++++++----------- po/sv.po | 95 +++++++++++++++++++++++++----------- po/tr.po | 96 ++++++++++++++++++++++++++----------- po/uk.po | 96 ++++++++++++++++++++++++++----------- src/Common/LinuxKernel.vala | 19 +++++--- 16 files changed, 944 insertions(+), 413 deletions(-) diff --git a/BRANDING.mak b/BRANDING.mak index 0bb75e1d..c0e1743d 100644 --- a/BRANDING.mak +++ b/BRANDING.mak @@ -3,7 +3,7 @@ VERSION_MAJOR = 1 VERSION_MINOR = 1 -VERSION_MICRO = 9 +VERSION_MICRO = 10 BRANDING_SHORTNAME = mainline BRANDING_LONGNAME = Ubuntu Mainline Kernel Installer BRANDING_AUTHORNAME = Brian K. White diff --git a/po/de.po b/po/de.po index 771dd629..697126c7 100644 --- a/po/de.po +++ b/po/de.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-04-01 12:41-0400\n" +"POT-Creation-Date: 2023-04-02 01:20-0400\n" "PO-Revision-Date: 2023-02-20 18:40+0100\n" "Last-Translator: Marvin Meysel \n" "Language-Team: German\n" @@ -13,124 +13,162 @@ msgstr "" "X-Launchpad-Export-Date: 2017-04-13 11:48+0000\n" "X-Generator: Poedit 3.1.1\n" -#: src/Common/LinuxKernel.vala:92 +#: src/Common/LinuxKernel.vala:99 msgid "Distribution" msgstr "Distribution" -#: src/Common/LinuxKernel.vala:107 +#: src/Common/LinuxKernel.vala:114 msgid "Architecture" msgstr "Architektur" -#: src/Common/LinuxKernel.vala:280 +#: src/Common/LinuxKernel.vala:129 +#, fuzzy +msgid "Running kernel" +msgstr "Läuft" + +#: src/Common/LinuxKernel.vala:250 +msgid "loading cached" +msgstr "" + +#: src/Common/LinuxKernel.vala:264 +#, fuzzy +msgid "queuing download" +msgstr "Maximale Anzahl gleichzeitiger Downloads" + +#: src/Common/LinuxKernel.vala:287 #, fuzzy msgid "Fetching individual kernel indexes" msgstr "Index abrufen..." -#: src/Common/LinuxKernel.vala:332 +#: src/Common/LinuxKernel.vala:303 +msgid "loading downloaded" +msgstr "" + +#: src/Common/LinuxKernel.vala:339 msgid "Updating from" msgstr "" -#: src/Common/LinuxKernel.vala:349 +#: src/Common/LinuxKernel.vala:347 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:352 +#: src/Common/LinuxKernel.vala:350 msgid "FAILED" msgstr "" -#: src/Common/LinuxKernel.vala:793 +#: src/Common/LinuxKernel.vala:381 +#, fuzzy +msgid "latest_available" +msgstr "Verfügbar" + +#: src/Common/LinuxKernel.vala:396 +#, fuzzy +msgid "Found installed" +msgstr "Installiert" + +#: src/Common/LinuxKernel.vala:499 +#, fuzzy +msgid "latest_installed" +msgstr "Installierte Pakete" + +#: src/Common/LinuxKernel.vala:500 +#, fuzzy +msgid "oldest_installed" +msgstr "Installiert" + +#: src/Common/LinuxKernel.vala:790 msgid "Packages Available" msgstr "Verfügbare Pakete" -#: src/Common/LinuxKernel.vala:798 +#: src/Common/LinuxKernel.vala:795 msgid "Packages Installed" msgstr "Installierte Pakete" -#: src/Common/LinuxKernel.vala:819 src/lib/TeeJee.FileSystem.vala:118 +#: src/Common/LinuxKernel.vala:816 src/lib/TeeJee.FileSystem.vala:118 msgid "File not found" msgstr "Datei nicht gefunden " -#: src/Common/LinuxKernel.vala:886 +#: src/Common/LinuxKernel.vala:883 msgid "Available Kernels" msgstr "Verfügbare Kernel" -#: src/Common/LinuxKernel.vala:893 src/Gtk/MainWindow.vala:154 +#: src/Common/LinuxKernel.vala:890 src/Gtk/MainWindow.vala:154 msgid "Installed" msgstr "Installiert" -#: src/Common/LinuxKernel.vala:893 src/Gtk/MainWindow.vala:154 +#: src/Common/LinuxKernel.vala:890 src/Gtk/MainWindow.vala:154 #: src/Gtk/MainWindow.vala:495 src/Gtk/MainWindow.vala:508 msgid "Running" msgstr "Läuft" -#: src/Common/LinuxKernel.vala:926 +#: src/Common/LinuxKernel.vala:924 msgid "CHECKSUMS enabled" msgstr "" -#: src/Common/LinuxKernel.vala:950 +#: src/Common/LinuxKernel.vala:948 msgid "Downloading" msgstr "" -#: src/Common/LinuxKernel.vala:971 +#: src/Common/LinuxKernel.vala:969 #, fuzzy msgid "is already installed." msgstr "Dieser Kernel ist bereits installiert." -#: src/Common/LinuxKernel.vala:1005 +#: src/Common/LinuxKernel.vala:1003 #, fuzzy msgid "Uninstalling selected kernels" msgstr "Deinstallation des angegebenen Kernels" -#: src/Common/LinuxKernel.vala:1011 +#: src/Common/LinuxKernel.vala:1009 msgid "requested" msgstr "" -#: src/Common/LinuxKernel.vala:1014 +#: src/Common/LinuxKernel.vala:1012 #, fuzzy msgid "not uninstalling the currently running kernel" msgstr "Deinstallation des angegebenen Kernels" -#: src/Common/LinuxKernel.vala:1030 +#: src/Common/LinuxKernel.vala:1028 msgid "found" msgstr "" -#: src/Common/LinuxKernel.vala:1033 +#: src/Common/LinuxKernel.vala:1031 #, fuzzy msgid "No packages to un-install!" msgstr "Installierte Pakete" -#: src/Common/LinuxKernel.vala:1081 +#: src/Common/LinuxKernel.vala:1079 #, fuzzy msgid "Could not find running kernel in list" msgstr "Konnte keinen laufenden Kernel in der Liste finden!" -#: src/Common/LinuxKernel.vala:1086 +#: src/Common/LinuxKernel.vala:1084 msgid "Could not find any kernels to uninstall" msgstr "Es konnten keine Kernel zum Deinstallieren gefunden werden" -#: src/Common/LinuxKernel.vala:1094 +#: src/Common/LinuxKernel.vala:1092 #, fuzzy msgid "The following kernels will be uninstalled" msgstr "Die folgenden Kernel werden deinstalliert:" -#: src/Common/LinuxKernel.vala:1098 +#: src/Common/LinuxKernel.vala:1096 msgid "Continue ?" msgstr "Weiter ?" -#: src/Common/LinuxKernel.vala:1120 src/Console/AppConsole.vala:290 +#: src/Common/LinuxKernel.vala:1118 src/Console/AppConsole.vala:290 msgid "Latest update" msgstr "Neustes Update" -#: src/Common/LinuxKernel.vala:1131 src/Console/AppConsole.vala:297 +#: src/Common/LinuxKernel.vala:1129 src/Console/AppConsole.vala:297 msgid "Latest point update" msgstr "Letzte Punktaktualisierung" -#: src/Common/LinuxKernel.vala:1139 src/Console/AppConsole.vala:302 +#: src/Common/LinuxKernel.vala:1137 src/Console/AppConsole.vala:302 #: src/Console/AppConsole.vala:318 msgid "No updates found" msgstr "Keine Updates gefunden" -#: src/Common/LinuxKernel.vala:1148 +#: src/Common/LinuxKernel.vala:1146 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Kernel-Version %s installieren? (j/n):" diff --git a/po/el.po b/po/el.po index 49754f08..0b5aa53b 100644 --- a/po/el.po +++ b/po/el.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-04-01 12:41-0400\n" +"POT-Creation-Date: 2023-04-02 01:20-0400\n" "PO-Revision-Date: 2023-01-10 02:03-0600\n" "Last-Translator: Vasilis Kosmidis \n" "Language-Team: Greek\n" @@ -13,124 +13,162 @@ msgstr "" "X-Launchpad-Export-Date: 2017-04-13 11:48+0000\n" "X-Generator: Poedit 2.0.5\n" -#: src/Common/LinuxKernel.vala:92 +#: src/Common/LinuxKernel.vala:99 msgid "Distribution" msgstr "Διανομή" -#: src/Common/LinuxKernel.vala:107 +#: src/Common/LinuxKernel.vala:114 msgid "Architecture" msgstr "Αρχιτεκτονική" -#: src/Common/LinuxKernel.vala:280 +#: src/Common/LinuxKernel.vala:129 +#, fuzzy +msgid "Running kernel" +msgstr "Ενεργός" + +#: src/Common/LinuxKernel.vala:250 +msgid "loading cached" +msgstr "" + +#: src/Common/LinuxKernel.vala:264 +#, fuzzy +msgid "queuing download" +msgstr "Μέγιστες ταυτόχρονες λήψεις" + +#: src/Common/LinuxKernel.vala:287 #, fuzzy msgid "Fetching individual kernel indexes" msgstr "Ανάκτηση ευρετηρίου..." -#: src/Common/LinuxKernel.vala:332 +#: src/Common/LinuxKernel.vala:303 +msgid "loading downloaded" +msgstr "" + +#: src/Common/LinuxKernel.vala:339 msgid "Updating from" msgstr "" -#: src/Common/LinuxKernel.vala:349 +#: src/Common/LinuxKernel.vala:347 msgid "OK" msgstr "ΟΚ" -#: src/Common/LinuxKernel.vala:352 +#: src/Common/LinuxKernel.vala:350 msgid "FAILED" msgstr "" -#: src/Common/LinuxKernel.vala:793 +#: src/Common/LinuxKernel.vala:381 +#, fuzzy +msgid "latest_available" +msgstr "διαθέσιμος" + +#: src/Common/LinuxKernel.vala:396 +#, fuzzy +msgid "Found installed" +msgstr "Εγκατεστημένος" + +#: src/Common/LinuxKernel.vala:499 +#, fuzzy +msgid "latest_installed" +msgstr "Εγκατεστημένα πακέτα" + +#: src/Common/LinuxKernel.vala:500 +#, fuzzy +msgid "oldest_installed" +msgstr "Εγκατεστημένος" + +#: src/Common/LinuxKernel.vala:790 msgid "Packages Available" msgstr "Διαθέσιμα πακέτα" -#: src/Common/LinuxKernel.vala:798 +#: src/Common/LinuxKernel.vala:795 msgid "Packages Installed" msgstr "Εγκατεστημένα πακέτα" -#: src/Common/LinuxKernel.vala:819 src/lib/TeeJee.FileSystem.vala:118 +#: src/Common/LinuxKernel.vala:816 src/lib/TeeJee.FileSystem.vala:118 msgid "File not found" msgstr "Το αρχείο δε βρέθηκε" -#: src/Common/LinuxKernel.vala:886 +#: src/Common/LinuxKernel.vala:883 msgid "Available Kernels" msgstr "Διαθέσιμοι πυρήνες" -#: src/Common/LinuxKernel.vala:893 src/Gtk/MainWindow.vala:154 +#: src/Common/LinuxKernel.vala:890 src/Gtk/MainWindow.vala:154 msgid "Installed" msgstr "Εγκατεστημένος" -#: src/Common/LinuxKernel.vala:893 src/Gtk/MainWindow.vala:154 +#: src/Common/LinuxKernel.vala:890 src/Gtk/MainWindow.vala:154 #: src/Gtk/MainWindow.vala:495 src/Gtk/MainWindow.vala:508 msgid "Running" msgstr "Ενεργός" -#: src/Common/LinuxKernel.vala:926 +#: src/Common/LinuxKernel.vala:924 msgid "CHECKSUMS enabled" msgstr "" -#: src/Common/LinuxKernel.vala:950 +#: src/Common/LinuxKernel.vala:948 msgid "Downloading" msgstr "" -#: src/Common/LinuxKernel.vala:971 +#: src/Common/LinuxKernel.vala:969 #, fuzzy msgid "is already installed." msgstr "Αυτός ο πυρήνας είναι ήδη εγκατεστημένος." -#: src/Common/LinuxKernel.vala:1005 +#: src/Common/LinuxKernel.vala:1003 #, fuzzy msgid "Uninstalling selected kernels" msgstr "Απεγκατάσταση του καθορισμένου πυρήνα" -#: src/Common/LinuxKernel.vala:1011 +#: src/Common/LinuxKernel.vala:1009 msgid "requested" msgstr "" -#: src/Common/LinuxKernel.vala:1014 +#: src/Common/LinuxKernel.vala:1012 #, fuzzy msgid "not uninstalling the currently running kernel" msgstr "Απεγκατάσταση του καθορισμένου πυρήνα" -#: src/Common/LinuxKernel.vala:1030 +#: src/Common/LinuxKernel.vala:1028 msgid "found" msgstr "" -#: src/Common/LinuxKernel.vala:1033 +#: src/Common/LinuxKernel.vala:1031 #, fuzzy msgid "No packages to un-install!" msgstr "Εγκατεστημένα πακέτα" -#: src/Common/LinuxKernel.vala:1081 +#: src/Common/LinuxKernel.vala:1079 #, fuzzy msgid "Could not find running kernel in list" msgstr "Δεν ήταν δυνατή η εύρεση του τρέχοντος πυρήνα στη λίστα!" -#: src/Common/LinuxKernel.vala:1086 +#: src/Common/LinuxKernel.vala:1084 msgid "Could not find any kernels to uninstall" msgstr "Δεν βρέθηκε κανένας πυρήνας για απεγκατάσταση" -#: src/Common/LinuxKernel.vala:1094 +#: src/Common/LinuxKernel.vala:1092 #, fuzzy msgid "The following kernels will be uninstalled" msgstr "Αυτός ο πυρήνας είναι ήδη εγκατεστημένος." -#: src/Common/LinuxKernel.vala:1098 +#: src/Common/LinuxKernel.vala:1096 msgid "Continue ?" msgstr "Συνέχεια;" -#: src/Common/LinuxKernel.vala:1120 src/Console/AppConsole.vala:290 +#: src/Common/LinuxKernel.vala:1118 src/Console/AppConsole.vala:290 msgid "Latest update" msgstr "Τελευταία αναβάθμιση" -#: src/Common/LinuxKernel.vala:1131 src/Console/AppConsole.vala:297 +#: src/Common/LinuxKernel.vala:1129 src/Console/AppConsole.vala:297 msgid "Latest point update" msgstr "Τελευταία ενημέρωση συντήρησης" -#: src/Common/LinuxKernel.vala:1139 src/Console/AppConsole.vala:302 +#: src/Common/LinuxKernel.vala:1137 src/Console/AppConsole.vala:302 #: src/Console/AppConsole.vala:318 msgid "No updates found" msgstr "Δεν βρέθηκαν ενημερώσεις" -#: src/Common/LinuxKernel.vala:1148 +#: src/Common/LinuxKernel.vala:1146 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Εγκατάσταση του πυρήνα έκδοσης %s ; (ν/ό):" diff --git a/po/es.po b/po/es.po index 3660b416..be0b03c4 100644 --- a/po/es.po +++ b/po/es.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-04-01 12:41-0400\n" +"POT-Creation-Date: 2023-04-02 01:20-0400\n" "PO-Revision-Date: 2018-01-03 02:03-0600\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish\n" @@ -13,125 +13,162 @@ msgstr "" "X-Launchpad-Export-Date: 2017-04-13 11:48+0000\n" "X-Generator: Poedit 2.0.5\n" -#: src/Common/LinuxKernel.vala:92 +#: src/Common/LinuxKernel.vala:99 msgid "Distribution" msgstr "Distribución" -#: src/Common/LinuxKernel.vala:107 +#: src/Common/LinuxKernel.vala:114 msgid "Architecture" msgstr "Arquitectura del sistema" -#: src/Common/LinuxKernel.vala:280 +#: src/Common/LinuxKernel.vala:129 +#, fuzzy +msgid "Running kernel" +msgstr "En ejecución" + +#: src/Common/LinuxKernel.vala:250 +msgid "loading cached" +msgstr "" + +#: src/Common/LinuxKernel.vala:264 +msgid "queuing download" +msgstr "" + +#: src/Common/LinuxKernel.vala:287 #, fuzzy msgid "Fetching individual kernel indexes" msgstr "Recuperando índice..." -#: src/Common/LinuxKernel.vala:332 +#: src/Common/LinuxKernel.vala:303 +msgid "loading downloaded" +msgstr "" + +#: src/Common/LinuxKernel.vala:339 msgid "Updating from" msgstr "" -#: src/Common/LinuxKernel.vala:349 +#: src/Common/LinuxKernel.vala:347 msgid "OK" msgstr "Aceptar" -#: src/Common/LinuxKernel.vala:352 +#: src/Common/LinuxKernel.vala:350 msgid "FAILED" msgstr "" -#: src/Common/LinuxKernel.vala:793 +#: src/Common/LinuxKernel.vala:381 +#, fuzzy +msgid "latest_available" +msgstr "Paquetes disponibles" + +#: src/Common/LinuxKernel.vala:396 +#, fuzzy +msgid "Found installed" +msgstr "Instalado" + +#: src/Common/LinuxKernel.vala:499 +#, fuzzy +msgid "latest_installed" +msgstr "Paquetes instalados" + +#: src/Common/LinuxKernel.vala:500 +#, fuzzy +msgid "oldest_installed" +msgstr "Instalado" + +#: src/Common/LinuxKernel.vala:790 msgid "Packages Available" msgstr "Paquetes disponibles" -#: src/Common/LinuxKernel.vala:798 +#: src/Common/LinuxKernel.vala:795 msgid "Packages Installed" msgstr "Paquetes instalados" -#: src/Common/LinuxKernel.vala:819 src/lib/TeeJee.FileSystem.vala:118 +#: src/Common/LinuxKernel.vala:816 src/lib/TeeJee.FileSystem.vala:118 msgid "File not found" msgstr "No se encontró el archivo" -#: src/Common/LinuxKernel.vala:886 +#: src/Common/LinuxKernel.vala:883 msgid "Available Kernels" msgstr "Núcleos disponibles" -#: src/Common/LinuxKernel.vala:893 src/Gtk/MainWindow.vala:154 +#: src/Common/LinuxKernel.vala:890 src/Gtk/MainWindow.vala:154 msgid "Installed" msgstr "Instalado" -#: src/Common/LinuxKernel.vala:893 src/Gtk/MainWindow.vala:154 +#: src/Common/LinuxKernel.vala:890 src/Gtk/MainWindow.vala:154 #: src/Gtk/MainWindow.vala:495 src/Gtk/MainWindow.vala:508 msgid "Running" msgstr "En ejecución" -#: src/Common/LinuxKernel.vala:926 +#: src/Common/LinuxKernel.vala:924 msgid "CHECKSUMS enabled" msgstr "" -#: src/Common/LinuxKernel.vala:950 +#: src/Common/LinuxKernel.vala:948 msgid "Downloading" msgstr "" -#: src/Common/LinuxKernel.vala:971 +#: src/Common/LinuxKernel.vala:969 #, fuzzy msgid "is already installed." msgstr "Este núcleo ya se instaló." -#: src/Common/LinuxKernel.vala:1005 +#: src/Common/LinuxKernel.vala:1003 #, fuzzy msgid "Uninstalling selected kernels" msgstr "Instalar núcleo troncal especificado" -#: src/Common/LinuxKernel.vala:1011 +#: src/Common/LinuxKernel.vala:1009 msgid "requested" msgstr "" -#: src/Common/LinuxKernel.vala:1014 +#: src/Common/LinuxKernel.vala:1012 #, fuzzy msgid "not uninstalling the currently running kernel" msgstr "Instalar núcleo troncal especificado" -#: src/Common/LinuxKernel.vala:1030 +#: src/Common/LinuxKernel.vala:1028 msgid "found" msgstr "" -#: src/Common/LinuxKernel.vala:1033 +#: src/Common/LinuxKernel.vala:1031 #, fuzzy msgid "No packages to un-install!" msgstr "Paquetes instalados" -#: src/Common/LinuxKernel.vala:1081 +#: src/Common/LinuxKernel.vala:1079 #, fuzzy msgid "Could not find running kernel in list" msgstr "¡No se pudo encontrar el núcleo en ejecución en la lista!" -#: src/Common/LinuxKernel.vala:1086 +#: src/Common/LinuxKernel.vala:1084 #, fuzzy msgid "Could not find any kernels to uninstall" msgstr "Seleccione los núcleos que se desinstalarán" -#: src/Common/LinuxKernel.vala:1094 +#: src/Common/LinuxKernel.vala:1092 #, fuzzy msgid "The following kernels will be uninstalled" msgstr "Los siguientes kernels serán eliminados:" -#: src/Common/LinuxKernel.vala:1098 +#: src/Common/LinuxKernel.vala:1096 msgid "Continue ?" msgstr "¿Continuar?" -#: src/Common/LinuxKernel.vala:1120 src/Console/AppConsole.vala:290 +#: src/Common/LinuxKernel.vala:1118 src/Console/AppConsole.vala:290 msgid "Latest update" msgstr "" -#: src/Common/LinuxKernel.vala:1131 src/Console/AppConsole.vala:297 +#: src/Common/LinuxKernel.vala:1129 src/Console/AppConsole.vala:297 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:1139 src/Console/AppConsole.vala:302 +#: src/Common/LinuxKernel.vala:1137 src/Console/AppConsole.vala:302 #: src/Console/AppConsole.vala:318 msgid "No updates found" msgstr "No se encontró ninguna actualización" -#: src/Common/LinuxKernel.vala:1148 +#: src/Common/LinuxKernel.vala:1146 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "" diff --git a/po/fr.po b/po/fr.po index 87f48869..9574b12d 100644 --- a/po/fr.po +++ b/po/fr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-04-01 12:41-0400\n" +"POT-Creation-Date: 2023-04-02 01:20-0400\n" "PO-Revision-Date: 2018-08-05 15:50+0200\n" "Last-Translator: Yolateng0 \n" "Language-Team: French\n" @@ -13,125 +13,163 @@ msgstr "" "X-Launchpad-Export-Date: 2017-04-13 11:48+0000\n" "X-Generator: Poedit 2.0.6\n" -#: src/Common/LinuxKernel.vala:92 +#: src/Common/LinuxKernel.vala:99 msgid "Distribution" msgstr "Distribution" -#: src/Common/LinuxKernel.vala:107 +#: src/Common/LinuxKernel.vala:114 msgid "Architecture" msgstr "Architecture" -#: src/Common/LinuxKernel.vala:280 +#: src/Common/LinuxKernel.vala:129 +#, fuzzy +msgid "Running kernel" +msgstr "Actuel" + +#: src/Common/LinuxKernel.vala:250 +msgid "loading cached" +msgstr "" + +#: src/Common/LinuxKernel.vala:264 +#, fuzzy +msgid "queuing download" +msgstr "Nombre maximum de téléchargements parallèles" + +#: src/Common/LinuxKernel.vala:287 #, fuzzy msgid "Fetching individual kernel indexes" msgstr "Récupération de l'index..." -#: src/Common/LinuxKernel.vala:332 +#: src/Common/LinuxKernel.vala:303 +msgid "loading downloaded" +msgstr "" + +#: src/Common/LinuxKernel.vala:339 msgid "Updating from" msgstr "" -#: src/Common/LinuxKernel.vala:349 +#: src/Common/LinuxKernel.vala:347 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:352 +#: src/Common/LinuxKernel.vala:350 msgid "FAILED" msgstr "" -#: src/Common/LinuxKernel.vala:793 +#: src/Common/LinuxKernel.vala:381 +#, fuzzy +msgid "latest_available" +msgstr "disponible" + +#: src/Common/LinuxKernel.vala:396 +#, fuzzy +msgid "Found installed" +msgstr "Installé" + +#: src/Common/LinuxKernel.vala:499 +#, fuzzy +msgid "latest_installed" +msgstr "Paquets Installés" + +#: src/Common/LinuxKernel.vala:500 +#, fuzzy +msgid "oldest_installed" +msgstr "Installé" + +#: src/Common/LinuxKernel.vala:790 msgid "Packages Available" msgstr "Paquets Disponibles" -#: src/Common/LinuxKernel.vala:798 +#: src/Common/LinuxKernel.vala:795 msgid "Packages Installed" msgstr "Paquets Installés" -#: src/Common/LinuxKernel.vala:819 src/lib/TeeJee.FileSystem.vala:118 +#: src/Common/LinuxKernel.vala:816 src/lib/TeeJee.FileSystem.vala:118 msgid "File not found" msgstr "Fichier non trouvé" -#: src/Common/LinuxKernel.vala:886 +#: src/Common/LinuxKernel.vala:883 msgid "Available Kernels" msgstr "Noyaux Disponibles" -#: src/Common/LinuxKernel.vala:893 src/Gtk/MainWindow.vala:154 +#: src/Common/LinuxKernel.vala:890 src/Gtk/MainWindow.vala:154 msgid "Installed" msgstr "Installé" -#: src/Common/LinuxKernel.vala:893 src/Gtk/MainWindow.vala:154 +#: src/Common/LinuxKernel.vala:890 src/Gtk/MainWindow.vala:154 #: src/Gtk/MainWindow.vala:495 src/Gtk/MainWindow.vala:508 msgid "Running" msgstr "Actuel" -#: src/Common/LinuxKernel.vala:926 +#: src/Common/LinuxKernel.vala:924 msgid "CHECKSUMS enabled" msgstr "" -#: src/Common/LinuxKernel.vala:950 +#: src/Common/LinuxKernel.vala:948 msgid "Downloading" msgstr "" -#: src/Common/LinuxKernel.vala:971 +#: src/Common/LinuxKernel.vala:969 #, fuzzy msgid "is already installed." msgstr "Ce noyau est déjà installé." -#: src/Common/LinuxKernel.vala:1005 +#: src/Common/LinuxKernel.vala:1003 #, fuzzy msgid "Uninstalling selected kernels" msgstr "Installer les noyaux spécifiés" -#: src/Common/LinuxKernel.vala:1011 +#: src/Common/LinuxKernel.vala:1009 msgid "requested" msgstr "" -#: src/Common/LinuxKernel.vala:1014 +#: src/Common/LinuxKernel.vala:1012 #, fuzzy msgid "not uninstalling the currently running kernel" msgstr "Installer les noyaux spécifiés" -#: src/Common/LinuxKernel.vala:1030 +#: src/Common/LinuxKernel.vala:1028 msgid "found" msgstr "" -#: src/Common/LinuxKernel.vala:1033 +#: src/Common/LinuxKernel.vala:1031 #, fuzzy msgid "No packages to un-install!" msgstr "Paquets Installés" -#: src/Common/LinuxKernel.vala:1081 +#: src/Common/LinuxKernel.vala:1079 #, fuzzy msgid "Could not find running kernel in list" msgstr "Impossible de trouver la version courante dans la liste!" -#: src/Common/LinuxKernel.vala:1086 +#: src/Common/LinuxKernel.vala:1084 #, fuzzy msgid "Could not find any kernels to uninstall" msgstr "Impossible de trouver de noyaux à supprimer" -#: src/Common/LinuxKernel.vala:1094 +#: src/Common/LinuxKernel.vala:1092 #, fuzzy msgid "The following kernels will be uninstalled" msgstr "Les noyaux suivants seront supprimés:" -#: src/Common/LinuxKernel.vala:1098 +#: src/Common/LinuxKernel.vala:1096 msgid "Continue ?" msgstr "Reprendre ?" -#: src/Common/LinuxKernel.vala:1120 src/Console/AppConsole.vala:290 +#: src/Common/LinuxKernel.vala:1118 src/Console/AppConsole.vala:290 msgid "Latest update" msgstr "Dernière mise à jour" -#: src/Common/LinuxKernel.vala:1131 src/Console/AppConsole.vala:297 +#: src/Common/LinuxKernel.vala:1129 src/Console/AppConsole.vala:297 msgid "Latest point update" msgstr "Dernière mise à jour mineure" -#: src/Common/LinuxKernel.vala:1139 src/Console/AppConsole.vala:302 +#: src/Common/LinuxKernel.vala:1137 src/Console/AppConsole.vala:302 #: src/Console/AppConsole.vala:318 msgid "No updates found" msgstr "Aucune mise à jour disponible" -#: src/Common/LinuxKernel.vala:1148 +#: src/Common/LinuxKernel.vala:1146 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Installer le noyau en version %s ? (y/n): " diff --git a/po/hr.po b/po/hr.po index 6d1afbdd..ac3aa30f 100644 --- a/po/hr.po +++ b/po/hr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-04-01 12:41-0400\n" +"POT-Creation-Date: 2023-04-02 01:20-0400\n" "PO-Revision-Date: 2022-09-22 12:13+0200\n" "Last-Translator: gogo \n" "Language-Team: Croatian\n" @@ -13,124 +13,162 @@ msgstr "" "X-Launchpad-Export-Date: 2017-12-23 23:36+0000\n" "X-Generator: Poedit 3.0.1\n" -#: src/Common/LinuxKernel.vala:92 +#: src/Common/LinuxKernel.vala:99 msgid "Distribution" msgstr "Distribucija" -#: src/Common/LinuxKernel.vala:107 +#: src/Common/LinuxKernel.vala:114 msgid "Architecture" msgstr "Arhitektura" -#: src/Common/LinuxKernel.vala:280 +#: src/Common/LinuxKernel.vala:129 +#, fuzzy +msgid "Running kernel" +msgstr "Pokrenuto" + +#: src/Common/LinuxKernel.vala:250 +msgid "loading cached" +msgstr "" + +#: src/Common/LinuxKernel.vala:264 +#, fuzzy +msgid "queuing download" +msgstr "Najviše istodobnih preuzimanja" + +#: src/Common/LinuxKernel.vala:287 #, fuzzy msgid "Fetching individual kernel indexes" msgstr "Preuzimanje sadržaja..." -#: src/Common/LinuxKernel.vala:332 +#: src/Common/LinuxKernel.vala:303 +msgid "loading downloaded" +msgstr "" + +#: src/Common/LinuxKernel.vala:339 msgid "Updating from" msgstr "" -#: src/Common/LinuxKernel.vala:349 +#: src/Common/LinuxKernel.vala:347 msgid "OK" msgstr "U redu" -#: src/Common/LinuxKernel.vala:352 +#: src/Common/LinuxKernel.vala:350 msgid "FAILED" msgstr "" -#: src/Common/LinuxKernel.vala:793 +#: src/Common/LinuxKernel.vala:381 +#, fuzzy +msgid "latest_available" +msgstr "dostupno" + +#: src/Common/LinuxKernel.vala:396 +#, fuzzy +msgid "Found installed" +msgstr "Instalirano" + +#: src/Common/LinuxKernel.vala:499 +#, fuzzy +msgid "latest_installed" +msgstr "Instalirani paketi" + +#: src/Common/LinuxKernel.vala:500 +#, fuzzy +msgid "oldest_installed" +msgstr "Instalirano" + +#: src/Common/LinuxKernel.vala:790 msgid "Packages Available" msgstr "Dostupni paketi" -#: src/Common/LinuxKernel.vala:798 +#: src/Common/LinuxKernel.vala:795 msgid "Packages Installed" msgstr "Instalirani paketi" -#: src/Common/LinuxKernel.vala:819 src/lib/TeeJee.FileSystem.vala:118 +#: src/Common/LinuxKernel.vala:816 src/lib/TeeJee.FileSystem.vala:118 msgid "File not found" msgstr "Datoteka nije pronađena" -#: src/Common/LinuxKernel.vala:886 +#: src/Common/LinuxKernel.vala:883 msgid "Available Kernels" msgstr "Dostupni kerneli" -#: src/Common/LinuxKernel.vala:893 src/Gtk/MainWindow.vala:154 +#: src/Common/LinuxKernel.vala:890 src/Gtk/MainWindow.vala:154 msgid "Installed" msgstr "Instalirano" -#: src/Common/LinuxKernel.vala:893 src/Gtk/MainWindow.vala:154 +#: src/Common/LinuxKernel.vala:890 src/Gtk/MainWindow.vala:154 #: src/Gtk/MainWindow.vala:495 src/Gtk/MainWindow.vala:508 msgid "Running" msgstr "Pokrenuto" -#: src/Common/LinuxKernel.vala:926 +#: src/Common/LinuxKernel.vala:924 msgid "CHECKSUMS enabled" msgstr "" -#: src/Common/LinuxKernel.vala:950 +#: src/Common/LinuxKernel.vala:948 msgid "Downloading" msgstr "" -#: src/Common/LinuxKernel.vala:971 +#: src/Common/LinuxKernel.vala:969 #, fuzzy msgid "is already installed." msgstr "Ovaj kernel je već instaliran." -#: src/Common/LinuxKernel.vala:1005 +#: src/Common/LinuxKernel.vala:1003 #, fuzzy msgid "Uninstalling selected kernels" msgstr "Deinstaliraj određene kernele" -#: src/Common/LinuxKernel.vala:1011 +#: src/Common/LinuxKernel.vala:1009 msgid "requested" msgstr "" -#: src/Common/LinuxKernel.vala:1014 +#: src/Common/LinuxKernel.vala:1012 #, fuzzy msgid "not uninstalling the currently running kernel" msgstr "Deinstaliraj određene kernele" -#: src/Common/LinuxKernel.vala:1030 +#: src/Common/LinuxKernel.vala:1028 msgid "found" msgstr "" -#: src/Common/LinuxKernel.vala:1033 +#: src/Common/LinuxKernel.vala:1031 #, fuzzy msgid "No packages to un-install!" msgstr "Instalirani paketi" -#: src/Common/LinuxKernel.vala:1081 +#: src/Common/LinuxKernel.vala:1079 #, fuzzy msgid "Could not find running kernel in list" msgstr "Nemoguće je pronaći pokrenuti kernel na popisu!" -#: src/Common/LinuxKernel.vala:1086 +#: src/Common/LinuxKernel.vala:1084 msgid "Could not find any kernels to uninstall" msgstr "Nema pronađenih kernela za deinstaliranje" -#: src/Common/LinuxKernel.vala:1094 +#: src/Common/LinuxKernel.vala:1092 #, fuzzy msgid "The following kernels will be uninstalled" msgstr "Sljedeći kerneli će biti deinstalirani:" -#: src/Common/LinuxKernel.vala:1098 +#: src/Common/LinuxKernel.vala:1096 msgid "Continue ?" msgstr "Nastavi?" -#: src/Common/LinuxKernel.vala:1120 src/Console/AppConsole.vala:290 +#: src/Common/LinuxKernel.vala:1118 src/Console/AppConsole.vala:290 msgid "Latest update" msgstr "Najnovija nadopuna" -#: src/Common/LinuxKernel.vala:1131 src/Console/AppConsole.vala:297 +#: src/Common/LinuxKernel.vala:1129 src/Console/AppConsole.vala:297 msgid "Latest point update" msgstr "Najnovija ciljana nadopuna" -#: src/Common/LinuxKernel.vala:1139 src/Console/AppConsole.vala:302 +#: src/Common/LinuxKernel.vala:1137 src/Console/AppConsole.vala:302 #: src/Console/AppConsole.vala:318 msgid "No updates found" msgstr "Nema pronađenih nadopuna" -#: src/Common/LinuxKernel.vala:1148 +#: src/Common/LinuxKernel.vala:1146 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Instaliraj kernel inačice %s ? (d/n): " diff --git a/po/it.po b/po/it.po index e8dad02b..528565fd 100644 --- a/po/it.po +++ b/po/it.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline 1.0.15\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-04-01 12:41-0400\n" +"POT-Creation-Date: 2023-04-02 01:20-0400\n" "PO-Revision-Date: 2020-08-22 15:35+0100\n" "Last-Translator: Albano Battistella \n" "Language-Team: Italian\n" @@ -11,124 +11,162 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: src/Common/LinuxKernel.vala:92 +#: src/Common/LinuxKernel.vala:99 msgid "Distribution" msgstr "Distribuzione" -#: src/Common/LinuxKernel.vala:107 +#: src/Common/LinuxKernel.vala:114 msgid "Architecture" msgstr "Architettura" -#: src/Common/LinuxKernel.vala:280 +#: src/Common/LinuxKernel.vala:129 +#, fuzzy +msgid "Running kernel" +msgstr "Aggiornamento dei kernel" + +#: src/Common/LinuxKernel.vala:250 +msgid "loading cached" +msgstr "" + +#: src/Common/LinuxKernel.vala:264 +#, fuzzy +msgid "queuing download" +msgstr "Numero massimo di download simultanei" + +#: src/Common/LinuxKernel.vala:287 #, fuzzy msgid "Fetching individual kernel indexes" msgstr "Recupero dei singoli indici del kernel" -#: src/Common/LinuxKernel.vala:332 +#: src/Common/LinuxKernel.vala:303 +msgid "loading downloaded" +msgstr "" + +#: src/Common/LinuxKernel.vala:339 msgid "Updating from" msgstr "Aggiornamento da" -#: src/Common/LinuxKernel.vala:349 +#: src/Common/LinuxKernel.vala:347 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:352 +#: src/Common/LinuxKernel.vala:350 msgid "FAILED" msgstr "FALLITO" -#: src/Common/LinuxKernel.vala:793 +#: src/Common/LinuxKernel.vala:381 +#, fuzzy +msgid "latest_available" +msgstr "disponibile" + +#: src/Common/LinuxKernel.vala:396 +#, fuzzy +msgid "Found installed" +msgstr "Installato" + +#: src/Common/LinuxKernel.vala:499 +#, fuzzy +msgid "latest_installed" +msgstr "Pacchetti installati" + +#: src/Common/LinuxKernel.vala:500 +#, fuzzy +msgid "oldest_installed" +msgstr "Installato" + +#: src/Common/LinuxKernel.vala:790 msgid "Packages Available" msgstr "Pacchetti disponibili" -#: src/Common/LinuxKernel.vala:798 +#: src/Common/LinuxKernel.vala:795 msgid "Packages Installed" msgstr "Pacchetti installati" -#: src/Common/LinuxKernel.vala:819 src/lib/TeeJee.FileSystem.vala:118 +#: src/Common/LinuxKernel.vala:816 src/lib/TeeJee.FileSystem.vala:118 msgid "File not found" msgstr "File non trovato" -#: src/Common/LinuxKernel.vala:886 +#: src/Common/LinuxKernel.vala:883 msgid "Available Kernels" msgstr "Kernel disponibili" -#: src/Common/LinuxKernel.vala:893 src/Gtk/MainWindow.vala:154 +#: src/Common/LinuxKernel.vala:890 src/Gtk/MainWindow.vala:154 msgid "Installed" msgstr "Installato" -#: src/Common/LinuxKernel.vala:893 src/Gtk/MainWindow.vala:154 +#: src/Common/LinuxKernel.vala:890 src/Gtk/MainWindow.vala:154 #: src/Gtk/MainWindow.vala:495 src/Gtk/MainWindow.vala:508 msgid "Running" msgstr "In esecuzione" -#: src/Common/LinuxKernel.vala:926 +#: src/Common/LinuxKernel.vala:924 msgid "CHECKSUMS enabled" msgstr "" -#: src/Common/LinuxKernel.vala:950 +#: src/Common/LinuxKernel.vala:948 msgid "Downloading" msgstr "" -#: src/Common/LinuxKernel.vala:971 +#: src/Common/LinuxKernel.vala:969 #, fuzzy msgid "is already installed." msgstr "è già installato." -#: src/Common/LinuxKernel.vala:1005 +#: src/Common/LinuxKernel.vala:1003 #, fuzzy msgid "Uninstalling selected kernels" msgstr "Disinstalla i kernel specificati" -#: src/Common/LinuxKernel.vala:1011 +#: src/Common/LinuxKernel.vala:1009 msgid "requested" msgstr "richiesto" -#: src/Common/LinuxKernel.vala:1014 +#: src/Common/LinuxKernel.vala:1012 #, fuzzy msgid "not uninstalling the currently running kernel" msgstr "non disinstallare il kernel attualmente in esecuzione" -#: src/Common/LinuxKernel.vala:1030 +#: src/Common/LinuxKernel.vala:1028 msgid "found" msgstr "trovato" -#: src/Common/LinuxKernel.vala:1033 +#: src/Common/LinuxKernel.vala:1031 #, fuzzy msgid "No packages to un-install!" msgstr "Nessun pacchetto da disinstallare!" -#: src/Common/LinuxKernel.vala:1081 +#: src/Common/LinuxKernel.vala:1079 #, fuzzy msgid "Could not find running kernel in list" msgstr "Impossibile trovare il kernel in esecuzione nell'elenco" -#: src/Common/LinuxKernel.vala:1086 +#: src/Common/LinuxKernel.vala:1084 msgid "Could not find any kernels to uninstall" msgstr "Impossibile trovare alcun kernel da rimuovere" -#: src/Common/LinuxKernel.vala:1094 +#: src/Common/LinuxKernel.vala:1092 #, fuzzy msgid "The following kernels will be uninstalled" msgstr "I seguenti kernel saranno rimossi" -#: src/Common/LinuxKernel.vala:1098 +#: src/Common/LinuxKernel.vala:1096 msgid "Continue ?" msgstr "Continuare ?" -#: src/Common/LinuxKernel.vala:1120 src/Console/AppConsole.vala:290 +#: src/Common/LinuxKernel.vala:1118 src/Console/AppConsole.vala:290 msgid "Latest update" msgstr "Ultimo aggiornamento" -#: src/Common/LinuxKernel.vala:1131 src/Console/AppConsole.vala:297 +#: src/Common/LinuxKernel.vala:1129 src/Console/AppConsole.vala:297 msgid "Latest point update" msgstr "Ultimo aggiornamento del rilascio parziale" -#: src/Common/LinuxKernel.vala:1139 src/Console/AppConsole.vala:302 +#: src/Common/LinuxKernel.vala:1137 src/Console/AppConsole.vala:302 #: src/Console/AppConsole.vala:318 msgid "No updates found" msgstr "Nessun aggiornamento trovato" -#: src/Common/LinuxKernel.vala:1148 +#: src/Common/LinuxKernel.vala:1146 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Installare la versione del kernel %s ? (y/n): " diff --git a/po/ko.po b/po/ko.po index 876d1945..878f15b1 100644 --- a/po/ko.po +++ b/po/ko.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline 1.0.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-04-01 12:41-0400\n" +"POT-Creation-Date: 2023-04-02 01:20-0400\n" "PO-Revision-Date: 2022-09-28 11:48+0900\n" "Last-Translator: Kevin Kim \n" "Language-Team: Korean\n" @@ -13,124 +13,162 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Poedit 3.0.1\n" -#: src/Common/LinuxKernel.vala:92 +#: src/Common/LinuxKernel.vala:99 msgid "Distribution" msgstr "배포판" -#: src/Common/LinuxKernel.vala:107 +#: src/Common/LinuxKernel.vala:114 msgid "Architecture" msgstr "아키텍처" -#: src/Common/LinuxKernel.vala:280 +#: src/Common/LinuxKernel.vala:129 +#, fuzzy +msgid "Running kernel" +msgstr "구동 중" + +#: src/Common/LinuxKernel.vala:250 +msgid "loading cached" +msgstr "" + +#: src/Common/LinuxKernel.vala:264 +#, fuzzy +msgid "queuing download" +msgstr "동시 다운로드 최대 수" + +#: src/Common/LinuxKernel.vala:287 #, fuzzy msgid "Fetching individual kernel indexes" msgstr "목록 가져오기..." -#: src/Common/LinuxKernel.vala:332 +#: src/Common/LinuxKernel.vala:303 +msgid "loading downloaded" +msgstr "" + +#: src/Common/LinuxKernel.vala:339 msgid "Updating from" msgstr "" -#: src/Common/LinuxKernel.vala:349 +#: src/Common/LinuxKernel.vala:347 msgid "OK" msgstr "확인" -#: src/Common/LinuxKernel.vala:352 +#: src/Common/LinuxKernel.vala:350 msgid "FAILED" msgstr "" -#: src/Common/LinuxKernel.vala:793 +#: src/Common/LinuxKernel.vala:381 +#, fuzzy +msgid "latest_available" +msgstr "사용가능" + +#: src/Common/LinuxKernel.vala:396 +#, fuzzy +msgid "Found installed" +msgstr "설치 됨" + +#: src/Common/LinuxKernel.vala:499 +#, fuzzy +msgid "latest_installed" +msgstr "설치된 패키지" + +#: src/Common/LinuxKernel.vala:500 +#, fuzzy +msgid "oldest_installed" +msgstr "설치 됨" + +#: src/Common/LinuxKernel.vala:790 msgid "Packages Available" msgstr "설치 가능한 패키지" -#: src/Common/LinuxKernel.vala:798 +#: src/Common/LinuxKernel.vala:795 msgid "Packages Installed" msgstr "설치된 패키지" -#: src/Common/LinuxKernel.vala:819 src/lib/TeeJee.FileSystem.vala:118 +#: src/Common/LinuxKernel.vala:816 src/lib/TeeJee.FileSystem.vala:118 msgid "File not found" msgstr "파일을 찾을 수 없습니다" -#: src/Common/LinuxKernel.vala:886 +#: src/Common/LinuxKernel.vala:883 msgid "Available Kernels" msgstr "설치 가능한 커널" -#: src/Common/LinuxKernel.vala:893 src/Gtk/MainWindow.vala:154 +#: src/Common/LinuxKernel.vala:890 src/Gtk/MainWindow.vala:154 msgid "Installed" msgstr "설치 됨" -#: src/Common/LinuxKernel.vala:893 src/Gtk/MainWindow.vala:154 +#: src/Common/LinuxKernel.vala:890 src/Gtk/MainWindow.vala:154 #: src/Gtk/MainWindow.vala:495 src/Gtk/MainWindow.vala:508 msgid "Running" msgstr "구동 중" -#: src/Common/LinuxKernel.vala:926 +#: src/Common/LinuxKernel.vala:924 msgid "CHECKSUMS enabled" msgstr "" -#: src/Common/LinuxKernel.vala:950 +#: src/Common/LinuxKernel.vala:948 msgid "Downloading" msgstr "" -#: src/Common/LinuxKernel.vala:971 +#: src/Common/LinuxKernel.vala:969 #, fuzzy msgid "is already installed." msgstr "이 커널은 이미 설치되었습니다." -#: src/Common/LinuxKernel.vala:1005 +#: src/Common/LinuxKernel.vala:1003 #, fuzzy msgid "Uninstalling selected kernels" msgstr "지정한 커널 삭제" -#: src/Common/LinuxKernel.vala:1011 +#: src/Common/LinuxKernel.vala:1009 msgid "requested" msgstr "" -#: src/Common/LinuxKernel.vala:1014 +#: src/Common/LinuxKernel.vala:1012 #, fuzzy msgid "not uninstalling the currently running kernel" msgstr "지정한 커널 삭제" -#: src/Common/LinuxKernel.vala:1030 +#: src/Common/LinuxKernel.vala:1028 msgid "found" msgstr "" -#: src/Common/LinuxKernel.vala:1033 +#: src/Common/LinuxKernel.vala:1031 #, fuzzy msgid "No packages to un-install!" msgstr "설치된 패키지" -#: src/Common/LinuxKernel.vala:1081 +#: src/Common/LinuxKernel.vala:1079 #, fuzzy msgid "Could not find running kernel in list" msgstr "목록에서 사용중인 커널을 찾을 수 없습니다!" -#: src/Common/LinuxKernel.vala:1086 +#: src/Common/LinuxKernel.vala:1084 msgid "Could not find any kernels to uninstall" msgstr "삭제할 커널을 찾을 수 없습니다" -#: src/Common/LinuxKernel.vala:1094 +#: src/Common/LinuxKernel.vala:1092 #, fuzzy msgid "The following kernels will be uninstalled" msgstr "아래 커널이 삭제됩니다:" -#: src/Common/LinuxKernel.vala:1098 +#: src/Common/LinuxKernel.vala:1096 msgid "Continue ?" msgstr "계속하시겠습니까?" -#: src/Common/LinuxKernel.vala:1120 src/Console/AppConsole.vala:290 +#: src/Common/LinuxKernel.vala:1118 src/Console/AppConsole.vala:290 msgid "Latest update" msgstr "최신 업데이트" -#: src/Common/LinuxKernel.vala:1131 src/Console/AppConsole.vala:297 +#: src/Common/LinuxKernel.vala:1129 src/Console/AppConsole.vala:297 msgid "Latest point update" msgstr "최신 포인트 업데이트" -#: src/Common/LinuxKernel.vala:1139 src/Console/AppConsole.vala:302 +#: src/Common/LinuxKernel.vala:1137 src/Console/AppConsole.vala:302 #: src/Console/AppConsole.vala:318 msgid "No updates found" msgstr "업데이트를 찾을 수 없습니다" -#: src/Common/LinuxKernel.vala:1148 +#: src/Common/LinuxKernel.vala:1146 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "커널 %s 버전을 설치하시겠습니까? (y/n): " diff --git a/po/messages.pot b/po/messages.pot index fca710c4..005d8589 100644 --- a/po/messages.pot +++ b/po/messages.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline 1.1.9\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-04-01 12:41-0400\n" +"POT-Creation-Date: 2023-04-02 01:20-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,117 +17,149 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" -#: src/Common/LinuxKernel.vala:92 +#: src/Common/LinuxKernel.vala:99 msgid "Distribution" msgstr "" -#: src/Common/LinuxKernel.vala:107 +#: src/Common/LinuxKernel.vala:114 msgid "Architecture" msgstr "" -#: src/Common/LinuxKernel.vala:280 +#: src/Common/LinuxKernel.vala:129 +msgid "Running kernel" +msgstr "" + +#: src/Common/LinuxKernel.vala:250 +msgid "loading cached" +msgstr "" + +#: src/Common/LinuxKernel.vala:264 +msgid "queuing download" +msgstr "" + +#: src/Common/LinuxKernel.vala:287 msgid "Fetching individual kernel indexes" msgstr "" -#: src/Common/LinuxKernel.vala:332 +#: src/Common/LinuxKernel.vala:303 +msgid "loading downloaded" +msgstr "" + +#: src/Common/LinuxKernel.vala:339 msgid "Updating from" msgstr "" -#: src/Common/LinuxKernel.vala:349 +#: src/Common/LinuxKernel.vala:347 msgid "OK" msgstr "" -#: src/Common/LinuxKernel.vala:352 +#: src/Common/LinuxKernel.vala:350 msgid "FAILED" msgstr "" -#: src/Common/LinuxKernel.vala:793 +#: src/Common/LinuxKernel.vala:381 +msgid "latest_available" +msgstr "" + +#: src/Common/LinuxKernel.vala:396 +msgid "Found installed" +msgstr "" + +#: src/Common/LinuxKernel.vala:499 +msgid "latest_installed" +msgstr "" + +#: src/Common/LinuxKernel.vala:500 +msgid "oldest_installed" +msgstr "" + +#: src/Common/LinuxKernel.vala:790 msgid "Packages Available" msgstr "" -#: src/Common/LinuxKernel.vala:798 +#: src/Common/LinuxKernel.vala:795 msgid "Packages Installed" msgstr "" -#: src/Common/LinuxKernel.vala:819 src/lib/TeeJee.FileSystem.vala:118 +#: src/Common/LinuxKernel.vala:816 src/lib/TeeJee.FileSystem.vala:118 msgid "File not found" msgstr "" -#: src/Common/LinuxKernel.vala:886 +#: src/Common/LinuxKernel.vala:883 msgid "Available Kernels" msgstr "" -#: src/Common/LinuxKernel.vala:893 src/Gtk/MainWindow.vala:154 +#: src/Common/LinuxKernel.vala:890 src/Gtk/MainWindow.vala:154 msgid "Installed" msgstr "" -#: src/Common/LinuxKernel.vala:893 src/Gtk/MainWindow.vala:154 +#: src/Common/LinuxKernel.vala:890 src/Gtk/MainWindow.vala:154 #: src/Gtk/MainWindow.vala:495 src/Gtk/MainWindow.vala:508 msgid "Running" msgstr "" -#: src/Common/LinuxKernel.vala:926 +#: src/Common/LinuxKernel.vala:924 msgid "CHECKSUMS enabled" msgstr "" -#: src/Common/LinuxKernel.vala:950 +#: src/Common/LinuxKernel.vala:948 msgid "Downloading" msgstr "" -#: src/Common/LinuxKernel.vala:971 +#: src/Common/LinuxKernel.vala:969 msgid "is already installed." msgstr "" -#: src/Common/LinuxKernel.vala:1005 +#: src/Common/LinuxKernel.vala:1003 msgid "Uninstalling selected kernels" msgstr "" -#: src/Common/LinuxKernel.vala:1011 +#: src/Common/LinuxKernel.vala:1009 msgid "requested" msgstr "" -#: src/Common/LinuxKernel.vala:1014 +#: src/Common/LinuxKernel.vala:1012 msgid "not uninstalling the currently running kernel" msgstr "" -#: src/Common/LinuxKernel.vala:1030 +#: src/Common/LinuxKernel.vala:1028 msgid "found" msgstr "" -#: src/Common/LinuxKernel.vala:1033 +#: src/Common/LinuxKernel.vala:1031 msgid "No packages to un-install!" msgstr "" -#: src/Common/LinuxKernel.vala:1081 +#: src/Common/LinuxKernel.vala:1079 msgid "Could not find running kernel in list" msgstr "" -#: src/Common/LinuxKernel.vala:1086 +#: src/Common/LinuxKernel.vala:1084 msgid "Could not find any kernels to uninstall" msgstr "" -#: src/Common/LinuxKernel.vala:1094 +#: src/Common/LinuxKernel.vala:1092 msgid "The following kernels will be uninstalled" msgstr "" -#: src/Common/LinuxKernel.vala:1098 +#: src/Common/LinuxKernel.vala:1096 msgid "Continue ?" msgstr "" -#: src/Common/LinuxKernel.vala:1120 src/Console/AppConsole.vala:290 +#: src/Common/LinuxKernel.vala:1118 src/Console/AppConsole.vala:290 msgid "Latest update" msgstr "" -#: src/Common/LinuxKernel.vala:1131 src/Console/AppConsole.vala:297 +#: src/Common/LinuxKernel.vala:1129 src/Console/AppConsole.vala:297 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:1139 src/Console/AppConsole.vala:302 +#: src/Common/LinuxKernel.vala:1137 src/Console/AppConsole.vala:302 #: src/Console/AppConsole.vala:318 msgid "No updates found" msgstr "" -#: src/Common/LinuxKernel.vala:1148 +#: src/Common/LinuxKernel.vala:1146 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "" diff --git a/po/nl.po b/po/nl.po index 7dc38f47..dd990143 100644 --- a/po/nl.po +++ b/po/nl.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-04-01 12:41-0400\n" +"POT-Creation-Date: 2023-04-02 01:20-0400\n" "PO-Revision-Date: 2020-08-23 13:55+0200\n" "Last-Translator: Heimen Stoffels \n" "Language-Team: Dutch (Netherlands)\n" @@ -13,125 +13,163 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Poedit 3.2.2\n" -#: src/Common/LinuxKernel.vala:92 +#: src/Common/LinuxKernel.vala:99 msgid "Distribution" msgstr "Distributie" -#: src/Common/LinuxKernel.vala:107 +#: src/Common/LinuxKernel.vala:114 msgid "Architecture" msgstr "Architectuur" -#: src/Common/LinuxKernel.vala:280 +#: src/Common/LinuxKernel.vala:129 +#, fuzzy +msgid "Running kernel" +msgstr "Bezig met bijwerken van kernels…" + +#: src/Common/LinuxKernel.vala:250 +msgid "loading cached" +msgstr "" + +#: src/Common/LinuxKernel.vala:264 +#, fuzzy +msgid "queuing download" +msgstr "Max. aantal gelijktijdige downloads" + +#: src/Common/LinuxKernel.vala:287 #, fuzzy msgid "Fetching individual kernel indexes" msgstr "Bezig met ophalen van kernelindexen…" -#: src/Common/LinuxKernel.vala:332 +#: src/Common/LinuxKernel.vala:303 +msgid "loading downloaded" +msgstr "" + +#: src/Common/LinuxKernel.vala:339 msgid "Updating from" msgstr "Bezig met bijwerken van" -#: src/Common/LinuxKernel.vala:349 +#: src/Common/LinuxKernel.vala:347 msgid "OK" msgstr "Oké" -#: src/Common/LinuxKernel.vala:352 +#: src/Common/LinuxKernel.vala:350 msgid "FAILED" msgstr "" -#: src/Common/LinuxKernel.vala:793 +#: src/Common/LinuxKernel.vala:381 +#, fuzzy +msgid "latest_available" +msgstr "beschikbaar" + +#: src/Common/LinuxKernel.vala:396 +#, fuzzy +msgid "Found installed" +msgstr "Geïnstalleerd" + +#: src/Common/LinuxKernel.vala:499 +#, fuzzy +msgid "latest_installed" +msgstr "Geïnstalleerde pakketten" + +#: src/Common/LinuxKernel.vala:500 +#, fuzzy +msgid "oldest_installed" +msgstr "Geïnstalleerd" + +#: src/Common/LinuxKernel.vala:790 msgid "Packages Available" msgstr "Beschikbare pakketten" -#: src/Common/LinuxKernel.vala:798 +#: src/Common/LinuxKernel.vala:795 msgid "Packages Installed" msgstr "Geïnstalleerde pakketten" -#: src/Common/LinuxKernel.vala:819 src/lib/TeeJee.FileSystem.vala:118 +#: src/Common/LinuxKernel.vala:816 src/lib/TeeJee.FileSystem.vala:118 msgid "File not found" msgstr "Het bestand is niet gevonden" -#: src/Common/LinuxKernel.vala:886 +#: src/Common/LinuxKernel.vala:883 msgid "Available Kernels" msgstr "Beschikbare kernels" -#: src/Common/LinuxKernel.vala:893 src/Gtk/MainWindow.vala:154 +#: src/Common/LinuxKernel.vala:890 src/Gtk/MainWindow.vala:154 msgid "Installed" msgstr "Geïnstalleerd" -#: src/Common/LinuxKernel.vala:893 src/Gtk/MainWindow.vala:154 +#: src/Common/LinuxKernel.vala:890 src/Gtk/MainWindow.vala:154 #: src/Gtk/MainWindow.vala:495 src/Gtk/MainWindow.vala:508 msgid "Running" msgstr "In gebruik" -#: src/Common/LinuxKernel.vala:926 +#: src/Common/LinuxKernel.vala:924 msgid "CHECKSUMS enabled" msgstr "" -#: src/Common/LinuxKernel.vala:950 +#: src/Common/LinuxKernel.vala:948 msgid "Downloading" msgstr "" -#: src/Common/LinuxKernel.vala:971 +#: src/Common/LinuxKernel.vala:969 #, fuzzy msgid "is already installed." msgstr "Deze kernel is al geïnstalleerd." -#: src/Common/LinuxKernel.vala:1005 +#: src/Common/LinuxKernel.vala:1003 #, fuzzy msgid "Uninstalling selected kernels" msgstr "Bezig met deïnstalleren van geselecteerde kernels…" -#: src/Common/LinuxKernel.vala:1011 +#: src/Common/LinuxKernel.vala:1009 msgid "requested" msgstr "verzocht" -#: src/Common/LinuxKernel.vala:1014 +#: src/Common/LinuxKernel.vala:1012 #, fuzzy msgid "not uninstalling the currently running kernel" msgstr "Opgegeven kernels deïnstalleren" -#: src/Common/LinuxKernel.vala:1030 +#: src/Common/LinuxKernel.vala:1028 msgid "found" msgstr "gevonden" -#: src/Common/LinuxKernel.vala:1033 +#: src/Common/LinuxKernel.vala:1031 #, fuzzy msgid "No packages to un-install!" msgstr "Er zijn geen te deïnstalleren pakketten!" -#: src/Common/LinuxKernel.vala:1081 +#: src/Common/LinuxKernel.vala:1079 #, fuzzy msgid "Could not find running kernel in list" msgstr "De in gebruik zijnde kernel staat niet op de lijst" -#: src/Common/LinuxKernel.vala:1086 +#: src/Common/LinuxKernel.vala:1084 #, fuzzy msgid "Could not find any kernels to uninstall" msgstr "Er zijn geen te verwijderen kernels" -#: src/Common/LinuxKernel.vala:1094 +#: src/Common/LinuxKernel.vala:1092 #, fuzzy msgid "The following kernels will be uninstalled" msgstr "De volgende kernels worden verwijderd:" -#: src/Common/LinuxKernel.vala:1098 +#: src/Common/LinuxKernel.vala:1096 msgid "Continue ?" msgstr "Wilt u doorgaan?" -#: src/Common/LinuxKernel.vala:1120 src/Console/AppConsole.vala:290 +#: src/Common/LinuxKernel.vala:1118 src/Console/AppConsole.vala:290 msgid "Latest update" msgstr "Recentste update" -#: src/Common/LinuxKernel.vala:1131 src/Console/AppConsole.vala:297 +#: src/Common/LinuxKernel.vala:1129 src/Console/AppConsole.vala:297 msgid "Latest point update" msgstr "Recentste puntupdate" -#: src/Common/LinuxKernel.vala:1139 src/Console/AppConsole.vala:302 +#: src/Common/LinuxKernel.vala:1137 src/Console/AppConsole.vala:302 #: src/Console/AppConsole.vala:318 msgid "No updates found" msgstr "Geen updates gevonden" -#: src/Common/LinuxKernel.vala:1148 +#: src/Common/LinuxKernel.vala:1146 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Wilt u versie %s installeren? (j/n): " diff --git a/po/pl.po b/po/pl.po index 947dc55c..44511dc7 100644 --- a/po/pl.po +++ b/po/pl.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-04-01 12:41-0400\n" +"POT-Creation-Date: 2023-04-02 01:20-0400\n" "PO-Revision-Date: 2023-03-11 12:47+0100\n" "Last-Translator: Matthaiks\n" "Language-Team: Polish\n" @@ -12,117 +12,155 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Poedit 3.2\n" -#: src/Common/LinuxKernel.vala:92 +#: src/Common/LinuxKernel.vala:99 msgid "Distribution" msgstr "Dystrybucja" -#: src/Common/LinuxKernel.vala:107 +#: src/Common/LinuxKernel.vala:114 msgid "Architecture" msgstr "Architektura" -#: src/Common/LinuxKernel.vala:280 +#: src/Common/LinuxKernel.vala:129 +#, fuzzy +msgid "Running kernel" +msgstr "Aktualizowanie jąder" + +#: src/Common/LinuxKernel.vala:250 +msgid "loading cached" +msgstr "" + +#: src/Common/LinuxKernel.vala:264 +#, fuzzy +msgid "queuing download" +msgstr "Maksymalna liczba jednoczesnych pobrań" + +#: src/Common/LinuxKernel.vala:287 msgid "Fetching individual kernel indexes" msgstr "Pobieranie indywidualnych indeksów jąder" -#: src/Common/LinuxKernel.vala:332 +#: src/Common/LinuxKernel.vala:303 +msgid "loading downloaded" +msgstr "" + +#: src/Common/LinuxKernel.vala:339 msgid "Updating from" msgstr "Aktualizowanie z" -#: src/Common/LinuxKernel.vala:349 +#: src/Common/LinuxKernel.vala:347 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:352 +#: src/Common/LinuxKernel.vala:350 msgid "FAILED" msgstr "NIEPOWODZENIE" -#: src/Common/LinuxKernel.vala:793 +#: src/Common/LinuxKernel.vala:381 +#, fuzzy +msgid "latest_available" +msgstr "dostępne" + +#: src/Common/LinuxKernel.vala:396 +#, fuzzy +msgid "Found installed" +msgstr "Zainstalowane" + +#: src/Common/LinuxKernel.vala:499 +#, fuzzy +msgid "latest_installed" +msgstr "Pakiety zainstalowane" + +#: src/Common/LinuxKernel.vala:500 +#, fuzzy +msgid "oldest_installed" +msgstr "Zainstalowane" + +#: src/Common/LinuxKernel.vala:790 msgid "Packages Available" msgstr "Dostępne pakiety" -#: src/Common/LinuxKernel.vala:798 +#: src/Common/LinuxKernel.vala:795 msgid "Packages Installed" msgstr "Pakiety zainstalowane" -#: src/Common/LinuxKernel.vala:819 src/lib/TeeJee.FileSystem.vala:118 +#: src/Common/LinuxKernel.vala:816 src/lib/TeeJee.FileSystem.vala:118 msgid "File not found" msgstr "Nie odnaleziono pliku" -#: src/Common/LinuxKernel.vala:886 +#: src/Common/LinuxKernel.vala:883 msgid "Available Kernels" msgstr "Dostępne jądra" -#: src/Common/LinuxKernel.vala:893 src/Gtk/MainWindow.vala:154 +#: src/Common/LinuxKernel.vala:890 src/Gtk/MainWindow.vala:154 msgid "Installed" msgstr "Zainstalowane" -#: src/Common/LinuxKernel.vala:893 src/Gtk/MainWindow.vala:154 +#: src/Common/LinuxKernel.vala:890 src/Gtk/MainWindow.vala:154 #: src/Gtk/MainWindow.vala:495 src/Gtk/MainWindow.vala:508 msgid "Running" msgstr "Uruchomione" -#: src/Common/LinuxKernel.vala:926 +#: src/Common/LinuxKernel.vala:924 msgid "CHECKSUMS enabled" msgstr "" -#: src/Common/LinuxKernel.vala:950 +#: src/Common/LinuxKernel.vala:948 msgid "Downloading" msgstr "" -#: src/Common/LinuxKernel.vala:971 +#: src/Common/LinuxKernel.vala:969 msgid "is already installed." msgstr "jest już zainstalowane." -#: src/Common/LinuxKernel.vala:1005 +#: src/Common/LinuxKernel.vala:1003 msgid "Uninstalling selected kernels" msgstr "Odinstalowanie wybranych jąder" -#: src/Common/LinuxKernel.vala:1011 +#: src/Common/LinuxKernel.vala:1009 msgid "requested" msgstr "zażądane" -#: src/Common/LinuxKernel.vala:1014 +#: src/Common/LinuxKernel.vala:1012 msgid "not uninstalling the currently running kernel" msgstr "bez odinstalowywania aktualnie uruchomionego jądra" -#: src/Common/LinuxKernel.vala:1030 +#: src/Common/LinuxKernel.vala:1028 msgid "found" msgstr "znalezione" -#: src/Common/LinuxKernel.vala:1033 +#: src/Common/LinuxKernel.vala:1031 msgid "No packages to un-install!" msgstr "Brak pakietów do odinstalowania!" -#: src/Common/LinuxKernel.vala:1081 +#: src/Common/LinuxKernel.vala:1079 msgid "Could not find running kernel in list" msgstr "Nie można znaleźć uruchomionego jądra na liście" -#: src/Common/LinuxKernel.vala:1086 +#: src/Common/LinuxKernel.vala:1084 msgid "Could not find any kernels to uninstall" msgstr "Nie można znaleźć żadnych jąder do odinstalowania" -#: src/Common/LinuxKernel.vala:1094 +#: src/Common/LinuxKernel.vala:1092 msgid "The following kernels will be uninstalled" msgstr "Następujące jądra zostaną odinstalowane" -#: src/Common/LinuxKernel.vala:1098 +#: src/Common/LinuxKernel.vala:1096 msgid "Continue ?" msgstr "Kontynuować?" -#: src/Common/LinuxKernel.vala:1120 src/Console/AppConsole.vala:290 +#: src/Common/LinuxKernel.vala:1118 src/Console/AppConsole.vala:290 msgid "Latest update" msgstr "Najnowsza aktualizacja" -#: src/Common/LinuxKernel.vala:1131 src/Console/AppConsole.vala:297 +#: src/Common/LinuxKernel.vala:1129 src/Console/AppConsole.vala:297 msgid "Latest point update" msgstr "Najnowsza aktualizacja punktowa" -#: src/Common/LinuxKernel.vala:1139 src/Console/AppConsole.vala:302 +#: src/Common/LinuxKernel.vala:1137 src/Console/AppConsole.vala:302 #: src/Console/AppConsole.vala:318 msgid "No updates found" msgstr "Nie znaleziono aktualizacji" -#: src/Common/LinuxKernel.vala:1148 +#: src/Common/LinuxKernel.vala:1146 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Zainstalować wersję jądra %s? (t/n): " diff --git a/po/ru.po b/po/ru.po index 24ddf928..3e172dfd 100644 --- a/po/ru.po +++ b/po/ru.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-04-01 12:41-0400\n" +"POT-Creation-Date: 2023-04-02 01:20-0400\n" "PO-Revision-Date: 2023-03-12 18:24+0300\n" "Last-Translator: Faust3000 (Original) | Danik2343 (Update Transaltion) " "\n" @@ -14,120 +14,158 @@ msgstr "" "X-Launchpad-Export-Date: 2016-12-13 11:48+0000\n" "X-Generator: Poedit 3.1.1\n" -#: src/Common/LinuxKernel.vala:92 +#: src/Common/LinuxKernel.vala:99 msgid "Distribution" msgstr "Дистрибутив" -#: src/Common/LinuxKernel.vala:107 +#: src/Common/LinuxKernel.vala:114 msgid "Architecture" msgstr "Архитектура" -#: src/Common/LinuxKernel.vala:280 +#: src/Common/LinuxKernel.vala:129 +#, fuzzy +msgid "Running kernel" +msgstr "Обновление ядер" + +#: src/Common/LinuxKernel.vala:250 +msgid "loading cached" +msgstr "" + +#: src/Common/LinuxKernel.vala:264 +#, fuzzy +msgid "queuing download" +msgstr "Максимальное количество одновременных загрузок" + +#: src/Common/LinuxKernel.vala:287 msgid "Fetching individual kernel indexes" msgstr "Получение индивидуальных индексов ядра" -#: src/Common/LinuxKernel.vala:332 +#: src/Common/LinuxKernel.vala:303 +msgid "loading downloaded" +msgstr "" + +#: src/Common/LinuxKernel.vala:339 msgid "Updating from" msgstr "Обновление из" -#: src/Common/LinuxKernel.vala:349 +#: src/Common/LinuxKernel.vala:347 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:352 +#: src/Common/LinuxKernel.vala:350 msgid "FAILED" msgstr "" -#: src/Common/LinuxKernel.vala:793 +#: src/Common/LinuxKernel.vala:381 +#, fuzzy +msgid "latest_available" +msgstr "доступно" + +#: src/Common/LinuxKernel.vala:396 +#, fuzzy +msgid "Found installed" +msgstr "Установлено" + +#: src/Common/LinuxKernel.vala:499 +#, fuzzy +msgid "latest_installed" +msgstr "Установленные пакеты" + +#: src/Common/LinuxKernel.vala:500 +#, fuzzy +msgid "oldest_installed" +msgstr "Установлено" + +#: src/Common/LinuxKernel.vala:790 msgid "Packages Available" msgstr "Доступные пакеты" -#: src/Common/LinuxKernel.vala:798 +#: src/Common/LinuxKernel.vala:795 msgid "Packages Installed" msgstr "Установленные пакеты" -#: src/Common/LinuxKernel.vala:819 src/lib/TeeJee.FileSystem.vala:118 +#: src/Common/LinuxKernel.vala:816 src/lib/TeeJee.FileSystem.vala:118 msgid "File not found" msgstr "Файл не найден" -#: src/Common/LinuxKernel.vala:886 +#: src/Common/LinuxKernel.vala:883 msgid "Available Kernels" msgstr "Доступные ядра" -#: src/Common/LinuxKernel.vala:893 src/Gtk/MainWindow.vala:154 +#: src/Common/LinuxKernel.vala:890 src/Gtk/MainWindow.vala:154 msgid "Installed" msgstr "Установлено" -#: src/Common/LinuxKernel.vala:893 src/Gtk/MainWindow.vala:154 +#: src/Common/LinuxKernel.vala:890 src/Gtk/MainWindow.vala:154 #: src/Gtk/MainWindow.vala:495 src/Gtk/MainWindow.vala:508 msgid "Running" msgstr "Используется" -#: src/Common/LinuxKernel.vala:926 +#: src/Common/LinuxKernel.vala:924 msgid "CHECKSUMS enabled" msgstr "" -#: src/Common/LinuxKernel.vala:950 +#: src/Common/LinuxKernel.vala:948 msgid "Downloading" msgstr "" -#: src/Common/LinuxKernel.vala:971 +#: src/Common/LinuxKernel.vala:969 #, fuzzy msgid "is already installed." msgstr "Это ядро уже установлено." -#: src/Common/LinuxKernel.vala:1005 +#: src/Common/LinuxKernel.vala:1003 msgid "Uninstalling selected kernels" msgstr "Удаление выбранных ядер" -#: src/Common/LinuxKernel.vala:1011 +#: src/Common/LinuxKernel.vala:1009 msgid "requested" msgstr "запрошено" -#: src/Common/LinuxKernel.vala:1014 +#: src/Common/LinuxKernel.vala:1012 #, fuzzy msgid "not uninstalling the currently running kernel" msgstr "пропуск текущего загруженного ядра" -#: src/Common/LinuxKernel.vala:1030 +#: src/Common/LinuxKernel.vala:1028 msgid "found" msgstr "найдено" -#: src/Common/LinuxKernel.vala:1033 +#: src/Common/LinuxKernel.vala:1031 msgid "No packages to un-install!" msgstr "Нет пакетов для удаления!" -#: src/Common/LinuxKernel.vala:1081 +#: src/Common/LinuxKernel.vala:1079 msgid "Could not find running kernel in list" msgstr "Could not find running kernel in list" -#: src/Common/LinuxKernel.vala:1086 +#: src/Common/LinuxKernel.vala:1084 msgid "Could not find any kernels to uninstall" msgstr "Не удалось найти ядра для деинсталляции" -#: src/Common/LinuxKernel.vala:1094 +#: src/Common/LinuxKernel.vala:1092 #, fuzzy msgid "The following kernels will be uninstalled" msgstr "Следующие ядра будут деинсталлированы:" -#: src/Common/LinuxKernel.vala:1098 +#: src/Common/LinuxKernel.vala:1096 msgid "Continue ?" msgstr "Продолжить ?" -#: src/Common/LinuxKernel.vala:1120 src/Console/AppConsole.vala:290 +#: src/Common/LinuxKernel.vala:1118 src/Console/AppConsole.vala:290 msgid "Latest update" msgstr "Последнее обновление" -#: src/Common/LinuxKernel.vala:1131 src/Console/AppConsole.vala:297 +#: src/Common/LinuxKernel.vala:1129 src/Console/AppConsole.vala:297 msgid "Latest point update" msgstr "Последнее обновление пунктов" -#: src/Common/LinuxKernel.vala:1139 src/Console/AppConsole.vala:302 +#: src/Common/LinuxKernel.vala:1137 src/Console/AppConsole.vala:302 #: src/Console/AppConsole.vala:318 msgid "No updates found" msgstr "Обновлений не найдено" -#: src/Common/LinuxKernel.vala:1148 +#: src/Common/LinuxKernel.vala:1146 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Установить версию ядра %s ? (y/n): " diff --git a/po/sv.po b/po/sv.po index 9e8b2d80..b547d4ed 100644 --- a/po/sv.po +++ b/po/sv.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-04-01 12:41-0400\n" +"POT-Creation-Date: 2023-04-02 01:20-0400\n" "PO-Revision-Date: 2018-01-13 16:56+0100\n" "Last-Translator: Åke Engelbrektson \n" "Language-Team:Swedish\n" @@ -13,126 +13,163 @@ msgstr "" "X-Generator: Poedit 1.8.7.1\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: src/Common/LinuxKernel.vala:92 +#: src/Common/LinuxKernel.vala:99 msgid "Distribution" msgstr "Distribution" -#: src/Common/LinuxKernel.vala:107 +#: src/Common/LinuxKernel.vala:114 #, fuzzy msgid "Architecture" msgstr "Systemarkitektur" -#: src/Common/LinuxKernel.vala:280 +#: src/Common/LinuxKernel.vala:129 +#, fuzzy +msgid "Running kernel" +msgstr "Körs" + +#: src/Common/LinuxKernel.vala:250 +msgid "loading cached" +msgstr "" + +#: src/Common/LinuxKernel.vala:264 +msgid "queuing download" +msgstr "" + +#: src/Common/LinuxKernel.vala:287 #, fuzzy msgid "Fetching individual kernel indexes" msgstr "Hämtar index för" -#: src/Common/LinuxKernel.vala:332 +#: src/Common/LinuxKernel.vala:303 +msgid "loading downloaded" +msgstr "" + +#: src/Common/LinuxKernel.vala:339 msgid "Updating from" msgstr "" -#: src/Common/LinuxKernel.vala:349 +#: src/Common/LinuxKernel.vala:347 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:352 +#: src/Common/LinuxKernel.vala:350 msgid "FAILED" msgstr "" -#: src/Common/LinuxKernel.vala:793 +#: src/Common/LinuxKernel.vala:381 +#, fuzzy +msgid "latest_available" +msgstr "Tillgängliga paket" + +#: src/Common/LinuxKernel.vala:396 +#, fuzzy +msgid "Found installed" +msgstr "Installerad" + +#: src/Common/LinuxKernel.vala:499 +#, fuzzy +msgid "latest_installed" +msgstr "Installerade paket" + +#: src/Common/LinuxKernel.vala:500 +#, fuzzy +msgid "oldest_installed" +msgstr "Installerad" + +#: src/Common/LinuxKernel.vala:790 msgid "Packages Available" msgstr "Tillgängliga paket" -#: src/Common/LinuxKernel.vala:798 +#: src/Common/LinuxKernel.vala:795 msgid "Packages Installed" msgstr "Installerade paket" -#: src/Common/LinuxKernel.vala:819 src/lib/TeeJee.FileSystem.vala:118 +#: src/Common/LinuxKernel.vala:816 src/lib/TeeJee.FileSystem.vala:118 msgid "File not found" msgstr "Filen kan inte hittas" -#: src/Common/LinuxKernel.vala:886 +#: src/Common/LinuxKernel.vala:883 msgid "Available Kernels" msgstr "Tillgängliga kärnor" -#: src/Common/LinuxKernel.vala:893 src/Gtk/MainWindow.vala:154 +#: src/Common/LinuxKernel.vala:890 src/Gtk/MainWindow.vala:154 msgid "Installed" msgstr "Installerad" -#: src/Common/LinuxKernel.vala:893 src/Gtk/MainWindow.vala:154 +#: src/Common/LinuxKernel.vala:890 src/Gtk/MainWindow.vala:154 #: src/Gtk/MainWindow.vala:495 src/Gtk/MainWindow.vala:508 msgid "Running" msgstr "Körs" -#: src/Common/LinuxKernel.vala:926 +#: src/Common/LinuxKernel.vala:924 msgid "CHECKSUMS enabled" msgstr "" -#: src/Common/LinuxKernel.vala:950 +#: src/Common/LinuxKernel.vala:948 msgid "Downloading" msgstr "" -#: src/Common/LinuxKernel.vala:971 +#: src/Common/LinuxKernel.vala:969 #, fuzzy msgid "is already installed." msgstr "Denna kärna är redan installerad" -#: src/Common/LinuxKernel.vala:1005 +#: src/Common/LinuxKernel.vala:1003 #, fuzzy msgid "Uninstalling selected kernels" msgstr "Installera specificerad kärna" -#: src/Common/LinuxKernel.vala:1011 +#: src/Common/LinuxKernel.vala:1009 msgid "requested" msgstr "" -#: src/Common/LinuxKernel.vala:1014 +#: src/Common/LinuxKernel.vala:1012 #, fuzzy msgid "not uninstalling the currently running kernel" msgstr "Installera specificerad kärna" -#: src/Common/LinuxKernel.vala:1030 +#: src/Common/LinuxKernel.vala:1028 msgid "found" msgstr "" -#: src/Common/LinuxKernel.vala:1033 +#: src/Common/LinuxKernel.vala:1031 #, fuzzy msgid "No packages to un-install!" msgstr "Installerade paket" -#: src/Common/LinuxKernel.vala:1081 +#: src/Common/LinuxKernel.vala:1079 #, fuzzy msgid "Could not find running kernel in list" msgstr "Kunde inte hitta efterfrågad version" -#: src/Common/LinuxKernel.vala:1086 +#: src/Common/LinuxKernel.vala:1084 #, fuzzy msgid "Could not find any kernels to uninstall" msgstr "Välj kärnor för borttagning" -#: src/Common/LinuxKernel.vala:1094 +#: src/Common/LinuxKernel.vala:1092 #, fuzzy msgid "The following kernels will be uninstalled" msgstr "Denna kärna är redan installerad" -#: src/Common/LinuxKernel.vala:1098 +#: src/Common/LinuxKernel.vala:1096 msgid "Continue ?" msgstr "" -#: src/Common/LinuxKernel.vala:1120 src/Console/AppConsole.vala:290 +#: src/Common/LinuxKernel.vala:1118 src/Console/AppConsole.vala:290 msgid "Latest update" msgstr "" -#: src/Common/LinuxKernel.vala:1131 src/Console/AppConsole.vala:297 +#: src/Common/LinuxKernel.vala:1129 src/Console/AppConsole.vala:297 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:1139 src/Console/AppConsole.vala:302 +#: src/Common/LinuxKernel.vala:1137 src/Console/AppConsole.vala:302 #: src/Console/AppConsole.vala:318 msgid "No updates found" msgstr "Inga uppdateringar hittades" -#: src/Common/LinuxKernel.vala:1148 +#: src/Common/LinuxKernel.vala:1146 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "" diff --git a/po/tr.po b/po/tr.po index 926ce818..4b9fc134 100644 --- a/po/tr.po +++ b/po/tr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-04-01 12:41-0400\n" +"POT-Creation-Date: 2023-04-02 01:20-0400\n" "PO-Revision-Date: 2022-08-06 16:48+0300\n" "Last-Translator: Sabri Ünal \n" "Language-Team: Turkish\n" @@ -13,125 +13,163 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Poedit 3.1.1\n" -#: src/Common/LinuxKernel.vala:92 +#: src/Common/LinuxKernel.vala:99 msgid "Distribution" msgstr "Dağıtım" -#: src/Common/LinuxKernel.vala:107 +#: src/Common/LinuxKernel.vala:114 msgid "Architecture" msgstr "Sistem mimarisi" -#: src/Common/LinuxKernel.vala:280 +#: src/Common/LinuxKernel.vala:129 +#, fuzzy +msgid "Running kernel" +msgstr "Çalışıyor" + +#: src/Common/LinuxKernel.vala:250 +msgid "loading cached" +msgstr "" + +#: src/Common/LinuxKernel.vala:264 +#, fuzzy +msgid "queuing download" +msgstr "Azami eşzamanlı indirme" + +#: src/Common/LinuxKernel.vala:287 #, fuzzy msgid "Fetching individual kernel indexes" msgstr "İçerik dizini alınıyor..." -#: src/Common/LinuxKernel.vala:332 +#: src/Common/LinuxKernel.vala:303 +msgid "loading downloaded" +msgstr "" + +#: src/Common/LinuxKernel.vala:339 msgid "Updating from" msgstr "" -#: src/Common/LinuxKernel.vala:349 +#: src/Common/LinuxKernel.vala:347 msgid "OK" msgstr "Tamam" -#: src/Common/LinuxKernel.vala:352 +#: src/Common/LinuxKernel.vala:350 msgid "FAILED" msgstr "" -#: src/Common/LinuxKernel.vala:793 +#: src/Common/LinuxKernel.vala:381 +#, fuzzy +msgid "latest_available" +msgstr "mevcut" + +#: src/Common/LinuxKernel.vala:396 +#, fuzzy +msgid "Found installed" +msgstr "Kurulu" + +#: src/Common/LinuxKernel.vala:499 +#, fuzzy +msgid "latest_installed" +msgstr "Kurulu Paketler" + +#: src/Common/LinuxKernel.vala:500 +#, fuzzy +msgid "oldest_installed" +msgstr "Kurulu" + +#: src/Common/LinuxKernel.vala:790 msgid "Packages Available" msgstr "Mevcut Paketler" -#: src/Common/LinuxKernel.vala:798 +#: src/Common/LinuxKernel.vala:795 msgid "Packages Installed" msgstr "Kurulu Paketler" -#: src/Common/LinuxKernel.vala:819 src/lib/TeeJee.FileSystem.vala:118 +#: src/Common/LinuxKernel.vala:816 src/lib/TeeJee.FileSystem.vala:118 msgid "File not found" msgstr "Dosya bulunamadı" -#: src/Common/LinuxKernel.vala:886 +#: src/Common/LinuxKernel.vala:883 msgid "Available Kernels" msgstr "Mevcut Çekirdekler" -#: src/Common/LinuxKernel.vala:893 src/Gtk/MainWindow.vala:154 +#: src/Common/LinuxKernel.vala:890 src/Gtk/MainWindow.vala:154 msgid "Installed" msgstr "Kurulu" -#: src/Common/LinuxKernel.vala:893 src/Gtk/MainWindow.vala:154 +#: src/Common/LinuxKernel.vala:890 src/Gtk/MainWindow.vala:154 #: src/Gtk/MainWindow.vala:495 src/Gtk/MainWindow.vala:508 msgid "Running" msgstr "Çalışıyor" -#: src/Common/LinuxKernel.vala:926 +#: src/Common/LinuxKernel.vala:924 msgid "CHECKSUMS enabled" msgstr "" -#: src/Common/LinuxKernel.vala:950 +#: src/Common/LinuxKernel.vala:948 msgid "Downloading" msgstr "" -#: src/Common/LinuxKernel.vala:971 +#: src/Common/LinuxKernel.vala:969 #, fuzzy msgid "is already installed." msgstr "Bu çekirdek zaten kurulu." -#: src/Common/LinuxKernel.vala:1005 +#: src/Common/LinuxKernel.vala:1003 #, fuzzy msgid "Uninstalling selected kernels" msgstr "Belirtilen çekirdeğini kaldır" -#: src/Common/LinuxKernel.vala:1011 +#: src/Common/LinuxKernel.vala:1009 msgid "requested" msgstr "" -#: src/Common/LinuxKernel.vala:1014 +#: src/Common/LinuxKernel.vala:1012 #, fuzzy msgid "not uninstalling the currently running kernel" msgstr "Belirtilen çekirdeğini kaldır" -#: src/Common/LinuxKernel.vala:1030 +#: src/Common/LinuxKernel.vala:1028 msgid "found" msgstr "" -#: src/Common/LinuxKernel.vala:1033 +#: src/Common/LinuxKernel.vala:1031 #, fuzzy msgid "No packages to un-install!" msgstr "Kurulu Paketler" -#: src/Common/LinuxKernel.vala:1081 +#: src/Common/LinuxKernel.vala:1079 #, fuzzy msgid "Could not find running kernel in list" msgstr "Çalışan sürüm listede bulunamadı!" -#: src/Common/LinuxKernel.vala:1086 +#: src/Common/LinuxKernel.vala:1084 msgid "Could not find any kernels to uninstall" msgstr "Kaldırılacak çekirdek bulunamadı" -#: src/Common/LinuxKernel.vala:1094 +#: src/Common/LinuxKernel.vala:1092 #, fuzzy msgid "The following kernels will be uninstalled" msgstr "Aşağıdaki çekirdekler kaldırılacak:" -#: src/Common/LinuxKernel.vala:1098 +#: src/Common/LinuxKernel.vala:1096 msgid "Continue ?" msgstr "Devam edilsin mi?" -#: src/Common/LinuxKernel.vala:1120 src/Console/AppConsole.vala:290 +#: src/Common/LinuxKernel.vala:1118 src/Console/AppConsole.vala:290 msgid "Latest update" msgstr "Son güncelleme" # Point burada point release anlamında kullanılıyor. Örneğin 5.10.x sayısının en sonundaki x rakamı point release/nokta sürüm oluyor. -#: src/Common/LinuxKernel.vala:1131 src/Console/AppConsole.vala:297 +#: src/Common/LinuxKernel.vala:1129 src/Console/AppConsole.vala:297 msgid "Latest point update" msgstr "Son nokta güncellemesi" -#: src/Common/LinuxKernel.vala:1139 src/Console/AppConsole.vala:302 +#: src/Common/LinuxKernel.vala:1137 src/Console/AppConsole.vala:302 #: src/Console/AppConsole.vala:318 msgid "No updates found" msgstr "Güncelleme bulunamadı" -#: src/Common/LinuxKernel.vala:1148 +#: src/Common/LinuxKernel.vala:1146 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Linux Çekirdek Sürümü %s Kurulsun mu? (e/h): " diff --git a/po/uk.po b/po/uk.po index d04d8b43..2c865f73 100644 --- a/po/uk.po +++ b/po/uk.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-04-01 12:41-0400\n" +"POT-Creation-Date: 2023-04-02 01:20-0400\n" "PO-Revision-Date: 2019-07-25 11:00+0300\n" "Last-Translator: Serhii Golovko \n" "Language-Team: Ukranian\n" @@ -13,121 +13,159 @@ msgstr "" "X-Launchpad-Export-Date: 2016-12-13 11:48+0000\n" "X-Generator: Poedit 2.2.1\n" -#: src/Common/LinuxKernel.vala:92 +#: src/Common/LinuxKernel.vala:99 msgid "Distribution" msgstr "Дистрибутив" -#: src/Common/LinuxKernel.vala:107 +#: src/Common/LinuxKernel.vala:114 msgid "Architecture" msgstr "Системна архитектура" -#: src/Common/LinuxKernel.vala:280 +#: src/Common/LinuxKernel.vala:129 +#, fuzzy +msgid "Running kernel" +msgstr "Використовується" + +#: src/Common/LinuxKernel.vala:250 +msgid "loading cached" +msgstr "" + +#: src/Common/LinuxKernel.vala:264 +#, fuzzy +msgid "queuing download" +msgstr "Максимальна кількість завантажень" + +#: src/Common/LinuxKernel.vala:287 #, fuzzy msgid "Fetching individual kernel indexes" msgstr "Отримання окремих індексів ядра..." -#: src/Common/LinuxKernel.vala:332 +#: src/Common/LinuxKernel.vala:303 +msgid "loading downloaded" +msgstr "" + +#: src/Common/LinuxKernel.vala:339 msgid "Updating from" msgstr "" -#: src/Common/LinuxKernel.vala:349 +#: src/Common/LinuxKernel.vala:347 msgid "OK" msgstr "Добре" -#: src/Common/LinuxKernel.vala:352 +#: src/Common/LinuxKernel.vala:350 msgid "FAILED" msgstr "" -#: src/Common/LinuxKernel.vala:793 +#: src/Common/LinuxKernel.vala:381 +#, fuzzy +msgid "latest_available" +msgstr "доступний" + +#: src/Common/LinuxKernel.vala:396 +#, fuzzy +msgid "Found installed" +msgstr "Встановлено" + +#: src/Common/LinuxKernel.vala:499 +#, fuzzy +msgid "latest_installed" +msgstr "Встановлені пакети" + +#: src/Common/LinuxKernel.vala:500 +#, fuzzy +msgid "oldest_installed" +msgstr "Встановлено" + +#: src/Common/LinuxKernel.vala:790 msgid "Packages Available" msgstr "Доступні пакети" -#: src/Common/LinuxKernel.vala:798 +#: src/Common/LinuxKernel.vala:795 msgid "Packages Installed" msgstr "Встановлені пакети" -#: src/Common/LinuxKernel.vala:819 src/lib/TeeJee.FileSystem.vala:118 +#: src/Common/LinuxKernel.vala:816 src/lib/TeeJee.FileSystem.vala:118 msgid "File not found" msgstr "Файл не знайдено" -#: src/Common/LinuxKernel.vala:886 +#: src/Common/LinuxKernel.vala:883 msgid "Available Kernels" msgstr "Доступні ядра" -#: src/Common/LinuxKernel.vala:893 src/Gtk/MainWindow.vala:154 +#: src/Common/LinuxKernel.vala:890 src/Gtk/MainWindow.vala:154 msgid "Installed" msgstr "Встановлено" -#: src/Common/LinuxKernel.vala:893 src/Gtk/MainWindow.vala:154 +#: src/Common/LinuxKernel.vala:890 src/Gtk/MainWindow.vala:154 #: src/Gtk/MainWindow.vala:495 src/Gtk/MainWindow.vala:508 msgid "Running" msgstr "Використовується" -#: src/Common/LinuxKernel.vala:926 +#: src/Common/LinuxKernel.vala:924 msgid "CHECKSUMS enabled" msgstr "" -#: src/Common/LinuxKernel.vala:950 +#: src/Common/LinuxKernel.vala:948 msgid "Downloading" msgstr "" -#: src/Common/LinuxKernel.vala:971 +#: src/Common/LinuxKernel.vala:969 #, fuzzy msgid "is already installed." msgstr "Це ядро вже встановлено." -#: src/Common/LinuxKernel.vala:1005 +#: src/Common/LinuxKernel.vala:1003 msgid "Uninstalling selected kernels" msgstr "Видаліть конкретні ядра" -#: src/Common/LinuxKernel.vala:1011 +#: src/Common/LinuxKernel.vala:1009 msgid "requested" msgstr "запитуваний" -#: src/Common/LinuxKernel.vala:1014 +#: src/Common/LinuxKernel.vala:1012 #, fuzzy msgid "not uninstalling the currently running kernel" msgstr "пропускаючи поточне завантажене ядро" -#: src/Common/LinuxKernel.vala:1030 +#: src/Common/LinuxKernel.vala:1028 msgid "found" msgstr "знайдено" -#: src/Common/LinuxKernel.vala:1033 +#: src/Common/LinuxKernel.vala:1031 msgid "No packages to un-install!" msgstr "Немає пакетів для видалення!" -#: src/Common/LinuxKernel.vala:1081 +#: src/Common/LinuxKernel.vala:1079 msgid "Could not find running kernel in list" msgstr "Не вдалося знайти запущене ядро у списку!" -#: src/Common/LinuxKernel.vala:1086 +#: src/Common/LinuxKernel.vala:1084 msgid "Could not find any kernels to uninstall" msgstr "Не вдалося знайти жодне ядро для вилучення" -#: src/Common/LinuxKernel.vala:1094 +#: src/Common/LinuxKernel.vala:1092 #, fuzzy msgid "The following kernels will be uninstalled" msgstr "Наступні ядра будуть видалені:" -#: src/Common/LinuxKernel.vala:1098 +#: src/Common/LinuxKernel.vala:1096 msgid "Continue ?" msgstr "Продовжувати ?" -#: src/Common/LinuxKernel.vala:1120 src/Console/AppConsole.vala:290 +#: src/Common/LinuxKernel.vala:1118 src/Console/AppConsole.vala:290 msgid "Latest update" msgstr "Останнє оновлення" -#: src/Common/LinuxKernel.vala:1131 src/Console/AppConsole.vala:297 +#: src/Common/LinuxKernel.vala:1129 src/Console/AppConsole.vala:297 msgid "Latest point update" msgstr "Остання точка оновлення" -#: src/Common/LinuxKernel.vala:1139 src/Console/AppConsole.vala:302 +#: src/Common/LinuxKernel.vala:1137 src/Console/AppConsole.vala:302 #: src/Console/AppConsole.vala:318 msgid "No updates found" msgstr "Оновлень не знайдено" -#: src/Common/LinuxKernel.vala:1148 +#: src/Common/LinuxKernel.vala:1146 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Встановити Ядро Версії %s ? (так/ні): " diff --git a/src/Common/LinuxKernel.vala b/src/Common/LinuxKernel.vala index 1156834f..8bfb657a 100644 --- a/src/Common/LinuxKernel.vala +++ b/src/Common/LinuxKernel.vala @@ -26,7 +26,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { public bool is_installed = false; public bool is_running = false; public bool is_mainline = false; - public int ppa_dirs_ver = 0; // 1 = no .//... , 2 = with .//... + public int ppa_dirs_ver = 0; // 0 = not set, 1 = old single dirs, 2 = new // subdirs public string deb_header = ""; public string deb_header_all = ""; @@ -59,10 +59,10 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { public static Regex rex_modules = null; // global progress ------------ - public static string status_line; - public static int progress_total; - public static int progress_count; - public static bool cancelled; + public static string status_line = ""; + public static int progress_total = 0; + public static int progress_count = 0; + public static bool cancelled = false; public static int threshold_major = 0; // class initialize @@ -73,8 +73,15 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { NATIVE_ARCH = check_package_architecture(); RUNNING_KERNEL = check_running_kernel().replace("-generic",""); initialize_regex(); + + // Special kernel versions where the mainline-ppa site changed their directory structure. + // affects: + // - ./foo.deb vs .//foo.deb + // - ./CHECKSUMS vs .//CHECKSUMS + // - ./BUILT vs .//status kernel_last_stable_old_ppa_dirs = new LinuxKernel.from_version("5.6.17"); kernel_last_unstable_old_ppa_dirs = new LinuxKernel.from_version("5.7-rc7"); + kernel_latest_installed = new LinuxKernel.from_version(RUNNING_KERNEL); kernel_oldest_installed = kernel_latest_installed; kernel_latest_available = kernel_latest_installed; @@ -363,7 +370,6 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { foreach (string line in txt.split("\n")) { if (!rex.match(line, 0, out match)) continue; var k = new LinuxKernel(match.fetch(1), true); - //if (!k.is_valid) continue; if (k.is_unstable && App.hide_unstable) continue; kernel_list.add(k); vprint("kernel_list.add("+k.kname+")",3); @@ -913,6 +919,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { // CHECKSUMS //fetch CHECKSUMS or /CHECKSUMS depending on version deb_checksum_list.clear(); + foreach (string f in deb_url_list.keys) deb_checksum_list[f] = ""; if (App.verify_checksums) { vprint(_("CHECKSUMS enabled"),2); From 4c2e758f2b19d1c299b2a71d52f1e14fc3463e96 Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Sun, 2 Apr 2023 02:20:09 -0400 Subject: [PATCH 289/567] 1.1.10 --- .deb_build_number.mak | 2 +- debian/changelog | 8 +++++++- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/.deb_build_number.mak b/.deb_build_number.mak index 0e892ceb..e758261b 100644 --- a/.deb_build_number.mak +++ b/.deb_build_number.mak @@ -1,3 +1,3 @@ # This file is generated by Makefile "make deb_build_number" -DEB_PKG_VERSION := 1.1.9 +DEB_PKG_VERSION := 1.1.10 DEB_BUILD_NUMBER := 0000 diff --git a/debian/changelog b/debian/changelog index 8b77ca65..f4c50ca9 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,4 +1,10 @@ -mainline (1.1.9) UNRELEASED; urgency=medium +mainline (1.1.10) unstable; urgency=medium + + * bugfix - when verify_checksums disabled, fixes github.com/bkw777/mainline/issues/215 + + -- Brian K. White Sun, 02 Apr 2023 02:16:47 -0400 + +mainline (1.1.9) unstable; urgency=medium * CHECKSUMS - new config option verify_checksums. When true, downloads the CHECKSUMS file before downloading .deb files, extracts the sha256 hashes, From 68ec074ff43d9195eb14c65438ee541644f019cd Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Sun, 2 Apr 2023 07:06:47 -0400 Subject: [PATCH 290/567] translations --- po/de.po | 88 +++++++-------- po/el.po | 75 ++++++------ po/es.po | 105 ++++++++--------- po/fr.po | 111 ++++++++---------- po/hr.po | 92 +++++++-------- po/it.po | 52 ++++----- po/ko.po | 98 +++++++--------- po/messages.pot | 20 +--- po/nl.po | 112 ++++++------------ po/pl.po | 66 ++++------- po/ru.po | 89 +++++---------- po/sv.po | 219 ++++++++++++++---------------------- po/tr.po | 132 ++++++++-------------- po/uk.po | 116 +++++++------------ src/Common/LinuxKernel.vala | 8 +- src/Gtk/MainWindow.vala | 2 +- 16 files changed, 539 insertions(+), 846 deletions(-) diff --git a/po/de.po b/po/de.po index 697126c7..e151d449 100644 --- a/po/de.po +++ b/po/de.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-04-02 01:20-0400\n" +"POT-Creation-Date: 2023-04-02 04:23-0400\n" "PO-Revision-Date: 2023-02-20 18:40+0100\n" "Last-Translator: Marvin Meysel \n" "Language-Team: German\n" @@ -28,12 +28,12 @@ msgstr "Läuft" #: src/Common/LinuxKernel.vala:250 msgid "loading cached" -msgstr "" +msgstr "laden gecached" #: src/Common/LinuxKernel.vala:264 #, fuzzy msgid "queuing download" -msgstr "Maximale Anzahl gleichzeitiger Downloads" +msgstr "download der warteschlange" #: src/Common/LinuxKernel.vala:287 #, fuzzy @@ -42,11 +42,11 @@ msgstr "Index abrufen..." #: src/Common/LinuxKernel.vala:303 msgid "loading downloaded" -msgstr "" +msgstr "laden von heruntergeladenen Dateien" #: src/Common/LinuxKernel.vala:339 msgid "Updating from" -msgstr "" +msgstr "Aktualisieren von" #: src/Common/LinuxKernel.vala:347 msgid "OK" @@ -54,28 +54,13 @@ msgstr "OK" #: src/Common/LinuxKernel.vala:350 msgid "FAILED" -msgstr "" - -#: src/Common/LinuxKernel.vala:381 -#, fuzzy -msgid "latest_available" -msgstr "Verfügbar" +msgstr "MISSLUNGEN" #: src/Common/LinuxKernel.vala:396 #, fuzzy msgid "Found installed" msgstr "Installiert" -#: src/Common/LinuxKernel.vala:499 -#, fuzzy -msgid "latest_installed" -msgstr "Installierte Pakete" - -#: src/Common/LinuxKernel.vala:500 -#, fuzzy -msgid "oldest_installed" -msgstr "Installiert" - #: src/Common/LinuxKernel.vala:790 msgid "Packages Available" msgstr "Verfügbare Pakete" @@ -102,12 +87,12 @@ msgid "Running" msgstr "Läuft" #: src/Common/LinuxKernel.vala:924 -msgid "CHECKSUMS enabled" -msgstr "" +msgid "enabled" +msgstr "ermöglichte" #: src/Common/LinuxKernel.vala:948 msgid "Downloading" -msgstr "" +msgstr "Laden" #: src/Common/LinuxKernel.vala:969 #, fuzzy @@ -121,7 +106,7 @@ msgstr "Deinstallation des angegebenen Kernels" #: src/Common/LinuxKernel.vala:1009 msgid "requested" -msgstr "" +msgstr "angefordert" #: src/Common/LinuxKernel.vala:1012 #, fuzzy @@ -130,7 +115,7 @@ msgstr "Deinstallation des angegebenen Kernels" #: src/Common/LinuxKernel.vala:1028 msgid "found" -msgstr "" +msgstr "gründen" #: src/Common/LinuxKernel.vala:1031 #, fuzzy @@ -181,6 +166,7 @@ msgstr "Angerufen von" msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" +"Diese Datei wird überschrieben und erneut ausgeführt, wenn Einstellungen in" #: src/Common/Main.vala:384 msgid "Notifications are disabled" @@ -243,7 +229,7 @@ msgstr "Herunterladen bestimmter Kernel" #: src/Console/AppConsole.vala:61 msgid "Delete cached info about available kernels" -msgstr "" +msgstr "Löschen zwischengespeicherter Informationen über verfügbare Kernel" #: src/Console/AppConsole.vala:63 src/Gtk/AppGtk.vala:137 msgid "Options" @@ -251,12 +237,12 @@ msgstr "Optionen" #: src/Console/AppConsole.vala:65 msgid "Include unstable and RC releases" -msgstr "Unstable- und RC-Versionen einbeziehen" +msgstr "Unstable- und RC-Versionen einschließen" #: src/Console/AppConsole.vala:66 #, fuzzy msgid "Exclude unstable and RC releases" -msgstr "Unstable- und RC-Versionen einbeziehen" +msgstr "Ausschluss von Unstable- und RC-Veröffentlichungen" #: src/Console/AppConsole.vala:67 msgid "Enable verbose debugging output" @@ -272,7 +258,7 @@ msgstr "Eine Versionszeichenfolge aus der Ausgabe von --list" #: src/Console/AppConsole.vala:72 msgid "One or more, comma-seperated" -msgstr "" +msgstr "Ein oder mehrere, durch Kommas getrennte" #: src/Console/AppConsole.vala:73 #, fuzzy @@ -338,7 +324,7 @@ msgstr "Installieren" #: src/Console/AppConsole.vala:345 msgid "Previously notified" -msgstr "" +msgstr "Zuvor gemeldet" #: src/Gtk/AboutWindow.vala:162 src/Gtk/AboutWindow.vala:179 msgid "Credits" @@ -403,23 +389,25 @@ msgstr "Deinstallieren" #: src/Gtk/MainWindow.vala:284 msgid "Notes" -msgstr "" +msgstr "Notizen" #: src/Gtk/MainWindow.vala:289 msgid "User notes for" -msgstr "" +msgstr "Benutzerhinweise für" #: src/Gtk/MainWindow.vala:305 msgid "Uninstall Old" msgstr "Alte deinstallieren" #: src/Gtk/MainWindow.vala:306 -msgid "Uninstall kernels older than running kernel" -msgstr "Deinstallation von Kerneln, die älter sind als der aktuelle Kernel" +#, fuzzy +msgid "Uninstall kernels older than latest installed" +msgstr "" +"Deinstallieren von Kerneln, die älter als die zuletzt installierten sind" #: src/Gtk/MainWindow.vala:311 msgid "Reload" -msgstr "" +msgstr "Nachladen" #: src/Gtk/MainWindow.vala:316 src/Gtk/SettingsDialog.vala:49 msgid "Settings" @@ -431,7 +419,7 @@ msgstr "Über" #: src/Gtk/MainWindow.vala:326 msgid "Exit" -msgstr "" +msgstr "Ausgang" #: src/Gtk/MainWindow.vala:394 msgid "Kernel upgrade utility for Ubuntu-based distributions" @@ -439,7 +427,7 @@ msgstr "Kernel-Upgrade-Dienstprogramm für Ubuntu-basierte Distributionen" #: src/Gtk/MainWindow.vala:395 msgid "Forked" -msgstr "Forked" +msgstr "Gegabelte" #: src/Gtk/MainWindow.vala:395 msgid "Original" @@ -447,7 +435,7 @@ msgstr "Original" #: src/Gtk/MainWindow.vala:433 msgid "Updating kernels" -msgstr "" +msgstr "Aktualisieren von Kernels" #: src/Gtk/MainWindow.vala:504 msgid "available" @@ -456,7 +444,7 @@ msgstr "Verfügbar" #: src/Gtk/MainWindow.vala:547 src/Gtk/MainWindow.vala:587 #: src/Gtk/MainWindow.vala:621 msgid "DONE" -msgstr "" +msgstr "FERTIG" #: src/Gtk/ProgressWindow.vala:126 src/Gtk/TerminalWindow.vala:151 msgid "Cancel" @@ -477,7 +465,7 @@ msgstr "Benachrichtigen, wenn eine Punktfreigabe verfügbar ist" #: src/Gtk/SettingsDialog.vala:86 #, fuzzy msgid "Seconds interval enabled for debugging" -msgstr "(Erlaubt Intervalle in Sekunden für --debug)" +msgstr "Sekundenintervall für das Debuggen aktiviert" #: src/Gtk/SettingsDialog.vala:109 msgid "Check every" @@ -486,25 +474,25 @@ msgstr "Prüfen Sie jede" #: src/Gtk/SettingsDialog.vala:134 #, fuzzy msgid "Hours" -msgstr "Stunde(n)" +msgstr "Stunden" #: src/Gtk/SettingsDialog.vala:136 msgid "Days" -msgstr "" +msgstr "Tage" #: src/Gtk/SettingsDialog.vala:138 #, fuzzy msgid "Weeks" -msgstr "Woche(n)" +msgstr "Wochen" #: src/Gtk/SettingsDialog.vala:141 #, fuzzy msgid "Seconds" -msgstr "Sekunde(n)" +msgstr "Sekunden" #: src/Gtk/SettingsDialog.vala:147 msgid "Filters" -msgstr "" +msgstr "Filter" #: src/Gtk/SettingsDialog.vala:155 msgid "Hide unstable and RC releases" @@ -513,11 +501,11 @@ msgstr "Unstable- und RC-Versionen ausblenden" #: src/Gtk/SettingsDialog.vala:177 #, fuzzy msgid "previous major versions ( -1 = all )" -msgstr "N frühere Hauptversionen anzeigen" +msgstr "vorherige Hauptversionen (-1 = alle)" #: src/Gtk/SettingsDialog.vala:181 msgid "Network" -msgstr "" +msgstr "Netz" #: src/Gtk/SettingsDialog.vala:192 #, fuzzy @@ -534,11 +522,11 @@ msgstr "Maximale Anzahl gleichzeitiger Downloads" #: src/Gtk/SettingsDialog.vala:225 msgid "Verify Checksums with the CHECKSUMS files" -msgstr "" +msgstr "Überprüfen von Prüfsummen mit den PRÜFSUMMEN-Dateien" #: src/Gtk/SettingsDialog.vala:233 msgid "Proxy" -msgstr "" +msgstr "Stellvertreter" #: src/Gtk/l.gtk.vala:42 msgid "Missing Icon" diff --git a/po/el.po b/po/el.po index 0b5aa53b..24e526e6 100644 --- a/po/el.po +++ b/po/el.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-04-02 01:20-0400\n" +"POT-Creation-Date: 2023-04-02 04:23-0400\n" "PO-Revision-Date: 2023-01-10 02:03-0600\n" "Last-Translator: Vasilis Kosmidis \n" "Language-Team: Greek\n" @@ -28,7 +28,7 @@ msgstr "Ενεργός" #: src/Common/LinuxKernel.vala:250 msgid "loading cached" -msgstr "" +msgstr "φόρτωση προσωρινά αποθηκευμένου" #: src/Common/LinuxKernel.vala:264 #, fuzzy @@ -38,15 +38,15 @@ msgstr "Μέγιστες ταυτόχρονες λήψεις" #: src/Common/LinuxKernel.vala:287 #, fuzzy msgid "Fetching individual kernel indexes" -msgstr "Ανάκτηση ευρετηρίου..." +msgstr "Ανάκτηση μεμονωμένων ευρετηρίων πυρήνα" #: src/Common/LinuxKernel.vala:303 msgid "loading downloaded" -msgstr "" +msgstr "Φόρτωση λήψης" #: src/Common/LinuxKernel.vala:339 msgid "Updating from" -msgstr "" +msgstr "Ενημέρωση από" #: src/Common/LinuxKernel.vala:347 msgid "OK" @@ -54,28 +54,13 @@ msgstr "ΟΚ" #: src/Common/LinuxKernel.vala:350 msgid "FAILED" -msgstr "" - -#: src/Common/LinuxKernel.vala:381 -#, fuzzy -msgid "latest_available" -msgstr "διαθέσιμος" +msgstr "ΑΠΈΤΥΧΕ" #: src/Common/LinuxKernel.vala:396 #, fuzzy msgid "Found installed" msgstr "Εγκατεστημένος" -#: src/Common/LinuxKernel.vala:499 -#, fuzzy -msgid "latest_installed" -msgstr "Εγκατεστημένα πακέτα" - -#: src/Common/LinuxKernel.vala:500 -#, fuzzy -msgid "oldest_installed" -msgstr "Εγκατεστημένος" - #: src/Common/LinuxKernel.vala:790 msgid "Packages Available" msgstr "Διαθέσιμα πακέτα" @@ -102,12 +87,12 @@ msgid "Running" msgstr "Ενεργός" #: src/Common/LinuxKernel.vala:924 -msgid "CHECKSUMS enabled" -msgstr "" +msgid "enabled" +msgstr "ενεργοποιημένη" #: src/Common/LinuxKernel.vala:948 msgid "Downloading" -msgstr "" +msgstr "Κατέβασμα" #: src/Common/LinuxKernel.vala:969 #, fuzzy @@ -121,7 +106,7 @@ msgstr "Απεγκατάσταση του καθορισμένου πυρήνα" #: src/Common/LinuxKernel.vala:1009 msgid "requested" -msgstr "" +msgstr "ζητήθηκε" #: src/Common/LinuxKernel.vala:1012 #, fuzzy @@ -130,7 +115,7 @@ msgstr "Απεγκατάσταση του καθορισμένου πυρήνα" #: src/Common/LinuxKernel.vala:1028 msgid "found" -msgstr "" +msgstr "ιδρύω" #: src/Common/LinuxKernel.vala:1031 #, fuzzy @@ -181,6 +166,8 @@ msgstr "Κλήθηκε από" msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" +"Αυτό το αρχείο αντικαθίσταται και εκτελείται ξανά κάθε φορά που " +"αποθηκεύονται οι ρυθμίσεις στο" #: src/Common/Main.vala:384 msgid "Notifications are disabled" @@ -243,6 +230,7 @@ msgstr "Λήψη των καθορισμένων πυρήνων" #: src/Console/AppConsole.vala:61 msgid "Delete cached info about available kernels" msgstr "" +"Διαγραφή προσωρινά αποθηκευμένων πληροφοριών σχετικά με διαθέσιμους πυρήνες" #: src/Console/AppConsole.vala:63 src/Gtk/AppGtk.vala:137 msgid "Options" @@ -255,7 +243,7 @@ msgstr "Συμπεριλάβετε ασταθείς και RC εκδόσεις" #: src/Console/AppConsole.vala:66 #, fuzzy msgid "Exclude unstable and RC releases" -msgstr "Συμπεριλάβετε ασταθείς και RC εκδόσεις" +msgstr "Εξαίρεση ασταθών και RC εκδόσεων" #: src/Console/AppConsole.vala:67 msgid "Enable verbose debugging output" @@ -271,7 +259,7 @@ msgstr "Μια συμβολοσειρά έκδοσης που λαμβάνετα #: src/Console/AppConsole.vala:72 msgid "One or more, comma-seperated" -msgstr "" +msgstr "Ένα ή περισσότερα, διαχωρισμένα με κόμματα" #: src/Console/AppConsole.vala:73 #, fuzzy @@ -336,7 +324,7 @@ msgstr "Εγκατάσταση" #: src/Console/AppConsole.vala:345 msgid "Previously notified" -msgstr "" +msgstr "Έχει ήδη κοινοποιηθεί" #: src/Gtk/AboutWindow.vala:162 src/Gtk/AboutWindow.vala:179 msgid "Credits" @@ -405,19 +393,20 @@ msgstr "" #: src/Gtk/MainWindow.vala:289 msgid "User notes for" -msgstr "" +msgstr "Σημειώσεις χρήστη για" #: src/Gtk/MainWindow.vala:305 msgid "Uninstall Old" msgstr "Απεγκατάσταση παλαιών" #: src/Gtk/MainWindow.vala:306 -msgid "Uninstall kernels older than running kernel" -msgstr "Απεγκαταστήστε πυρήνες παλαιότερους από τον ενεργό" +#, fuzzy +msgid "Uninstall kernels older than latest installed" +msgstr "Απεγκατάσταση πυρήνων παλαιότερων από τον ενεργό" #: src/Gtk/MainWindow.vala:311 msgid "Reload" -msgstr "" +msgstr "Δροσίζω" #: src/Gtk/MainWindow.vala:316 src/Gtk/SettingsDialog.vala:49 msgid "Settings" @@ -429,7 +418,7 @@ msgstr "Σχετικά" #: src/Gtk/MainWindow.vala:326 msgid "Exit" -msgstr "" +msgstr "Έξοδος" #: src/Gtk/MainWindow.vala:394 msgid "Kernel upgrade utility for Ubuntu-based distributions" @@ -445,7 +434,7 @@ msgstr "Πρωτότυπο" #: src/Gtk/MainWindow.vala:433 msgid "Updating kernels" -msgstr "" +msgstr "Ενημέρωση πυρήνων" #: src/Gtk/MainWindow.vala:504 msgid "available" @@ -454,7 +443,7 @@ msgstr "διαθέσιμος" #: src/Gtk/MainWindow.vala:547 src/Gtk/MainWindow.vala:587 #: src/Gtk/MainWindow.vala:621 msgid "DONE" -msgstr "" +msgstr "ΈΤΟΙΜΟ" #: src/Gtk/ProgressWindow.vala:126 src/Gtk/TerminalWindow.vala:151 msgid "Cancel" @@ -475,7 +464,7 @@ msgstr "Ειδοποίηση αν είναι διαθέσιμη έκδοση σ #: src/Gtk/SettingsDialog.vala:86 #, fuzzy msgid "Seconds interval enabled for debugging" -msgstr "(Επιτρέποντας διαστήματα σε δευτερόλεπτα για --debug)" +msgstr "Ενεργοποιημένο διάστημα δευτερολέπτων για εντοπισμό σφαλμάτων" #: src/Gtk/SettingsDialog.vala:109 msgid "Check every" @@ -488,7 +477,7 @@ msgstr "Ώρες" #: src/Gtk/SettingsDialog.vala:136 msgid "Days" -msgstr "" +msgstr "Ημέρες" #: src/Gtk/SettingsDialog.vala:138 #, fuzzy @@ -502,7 +491,7 @@ msgstr "Δευτερόλεπτα" #: src/Gtk/SettingsDialog.vala:147 msgid "Filters" -msgstr "" +msgstr "Φίλτρα" #: src/Gtk/SettingsDialog.vala:155 msgid "Hide unstable and RC releases" @@ -511,11 +500,11 @@ msgstr "Απόκρυψη ασταθών και RC εκδόσεων" #: src/Gtk/SettingsDialog.vala:177 #, fuzzy msgid "previous major versions ( -1 = all )" -msgstr "Εμφάνιση N προηγούμενων κύριων εκδόσεων " +msgstr "προηγούμενες κύριες εκδόσεις ( -1 = όλες )" #: src/Gtk/SettingsDialog.vala:181 msgid "Network" -msgstr "" +msgstr "Δίκτυο" #: src/Gtk/SettingsDialog.vala:192 #, fuzzy @@ -532,11 +521,11 @@ msgstr "Μέγιστες ταυτόχρονες λήψεις" #: src/Gtk/SettingsDialog.vala:225 msgid "Verify Checksums with the CHECKSUMS files" -msgstr "" +msgstr "Επαλήθευση αθροισμάτων ελέγχου με τα αρχεία CHECKSUMS" #: src/Gtk/SettingsDialog.vala:233 msgid "Proxy" -msgstr "" +msgstr "Διακομιστής" #: src/Gtk/l.gtk.vala:42 msgid "Missing Icon" diff --git a/po/es.po b/po/es.po index be0b03c4..5132f00e 100644 --- a/po/es.po +++ b/po/es.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-04-02 01:20-0400\n" +"POT-Creation-Date: 2023-04-02 04:23-0400\n" "PO-Revision-Date: 2018-01-03 02:03-0600\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish\n" @@ -28,24 +28,24 @@ msgstr "En ejecución" #: src/Common/LinuxKernel.vala:250 msgid "loading cached" -msgstr "" +msgstr "carga en caché" #: src/Common/LinuxKernel.vala:264 msgid "queuing download" -msgstr "" +msgstr "descarga de colas" #: src/Common/LinuxKernel.vala:287 #, fuzzy msgid "Fetching individual kernel indexes" -msgstr "Recuperando índice..." +msgstr "Obtención de índices de kernel individuales" #: src/Common/LinuxKernel.vala:303 msgid "loading downloaded" -msgstr "" +msgstr "cargando descargado" #: src/Common/LinuxKernel.vala:339 msgid "Updating from" -msgstr "" +msgstr "Actualización desde" #: src/Common/LinuxKernel.vala:347 msgid "OK" @@ -53,28 +53,13 @@ msgstr "Aceptar" #: src/Common/LinuxKernel.vala:350 msgid "FAILED" -msgstr "" - -#: src/Common/LinuxKernel.vala:381 -#, fuzzy -msgid "latest_available" -msgstr "Paquetes disponibles" +msgstr "FRACASADO" #: src/Common/LinuxKernel.vala:396 #, fuzzy msgid "Found installed" msgstr "Instalado" -#: src/Common/LinuxKernel.vala:499 -#, fuzzy -msgid "latest_installed" -msgstr "Paquetes instalados" - -#: src/Common/LinuxKernel.vala:500 -#, fuzzy -msgid "oldest_installed" -msgstr "Instalado" - #: src/Common/LinuxKernel.vala:790 msgid "Packages Available" msgstr "Paquetes disponibles" @@ -101,12 +86,12 @@ msgid "Running" msgstr "En ejecución" #: src/Common/LinuxKernel.vala:924 -msgid "CHECKSUMS enabled" -msgstr "" +msgid "enabled" +msgstr "habilitado" #: src/Common/LinuxKernel.vala:948 msgid "Downloading" -msgstr "" +msgstr "Descargar" #: src/Common/LinuxKernel.vala:969 #, fuzzy @@ -120,7 +105,7 @@ msgstr "Instalar núcleo troncal especificado" #: src/Common/LinuxKernel.vala:1009 msgid "requested" -msgstr "" +msgstr "solicitado" #: src/Common/LinuxKernel.vala:1012 #, fuzzy @@ -129,7 +114,7 @@ msgstr "Instalar núcleo troncal especificado" #: src/Common/LinuxKernel.vala:1028 msgid "found" -msgstr "" +msgstr "fundar" #: src/Common/LinuxKernel.vala:1031 #, fuzzy @@ -157,11 +142,11 @@ msgstr "¿Continuar?" #: src/Common/LinuxKernel.vala:1118 src/Console/AppConsole.vala:290 msgid "Latest update" -msgstr "" +msgstr "Última actualización" #: src/Common/LinuxKernel.vala:1129 src/Console/AppConsole.vala:297 msgid "Latest point update" -msgstr "" +msgstr "Última actualización puntual" #: src/Common/LinuxKernel.vala:1137 src/Console/AppConsole.vala:302 #: src/Console/AppConsole.vala:318 @@ -171,21 +156,23 @@ msgstr "No se encontró ninguna actualización" #: src/Common/LinuxKernel.vala:1146 #, c-format msgid "Install Kernel Version %s ? (y/n): " -msgstr "" +msgstr "Instalar la versión del kernel %s? (s/n): " #: src/Common/Main.vala:351 msgid "Called from" -msgstr "" +msgstr "Llamado desde" #: src/Common/Main.vala:352 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" +"Este archivo se sobrescribe y se ejecuta de nuevo cada vez que se guarda la " +"configuración en" #: src/Common/Main.vala:384 #, fuzzy msgid "Notifications are disabled" -msgstr "Notificación" +msgstr "Las notificaciones están deshabilitadas" #: src/Common/Package.vala:58 #, fuzzy, c-format @@ -222,7 +209,7 @@ msgstr "Instalar kernel troncal especificado" #: src/Console/AppConsole.vala:56 msgid "Install latest point update for current series" -msgstr "" +msgstr "Instalar la actualización de punto más reciente para la serie actual" #: src/Console/AppConsole.vala:57 msgid "Install specified mainline kernel" @@ -235,7 +222,7 @@ msgstr "Instalar núcleo troncal especificado" #: src/Console/AppConsole.vala:59 msgid "Uninstall kernels older than the latest installed" -msgstr "" +msgstr "Desinstalar kernels anteriores a los últimos instalados" #: src/Console/AppConsole.vala:60 #, fuzzy @@ -244,7 +231,7 @@ msgstr "Descargar paquetes del núcleo especificado" #: src/Console/AppConsole.vala:61 msgid "Delete cached info about available kernels" -msgstr "" +msgstr "Eliminar información almacenada en caché sobre los kernels disponibles" #: src/Console/AppConsole.vala:63 src/Gtk/AppGtk.vala:137 msgid "Options" @@ -262,7 +249,7 @@ msgstr "Ocultar versiones inestables y RC" #: src/Console/AppConsole.vala:67 msgid "Enable verbose debugging output" -msgstr "" +msgstr "Habilitar la salida de depuración detallada" #: src/Console/AppConsole.vala:68 msgid "Assume Yes for all prompts (non-interactive mode)" @@ -270,11 +257,11 @@ msgstr "Asumir Sí para todas las solicitudes (modo no interactivo)" #: src/Console/AppConsole.vala:71 msgid "A version string taken from the output of --list" -msgstr "" +msgstr "Una cadena de versión tomada de la salida de --list" #: src/Console/AppConsole.vala:72 msgid "One or more, comma-seperated" -msgstr "" +msgstr "Uno o más, separados por comas" #: src/Console/AppConsole.vala:73 #, fuzzy @@ -298,7 +285,7 @@ msgstr "Mostrar todas las opciones" #: src/Console/AppConsole.vala:216 src/Console/AppConsole.vala:256 msgid "No kernels specified" -msgstr "" +msgstr "No se especifican núcleos" #: src/Console/AppConsole.vala:222 msgid "Multiple kernels selected for installation. Select only one." @@ -310,7 +297,7 @@ msgstr "No se pudo encontrar la versión solicitada" #: src/Console/AppConsole.vala:248 msgid "and use a version string listed in first column" -msgstr "" +msgstr "y utilice una cadena de versión enumerada en la primera columna" #: src/Console/AppConsole.vala:275 msgid "Command not specified" @@ -333,7 +320,7 @@ msgstr "Paquetes disponibles" #: src/Console/AppConsole.vala:341 src/Gtk/SettingsDialog.vala:166 msgid "Show" -msgstr "" +msgstr "Mostrar" #: src/Console/AppConsole.vala:342 src/Gtk/MainWindow.vala:264 msgid "Install" @@ -341,7 +328,7 @@ msgstr "Instalar" #: src/Console/AppConsole.vala:345 msgid "Previously notified" -msgstr "" +msgstr "Notificado previamente" #: src/Gtk/AboutWindow.vala:162 src/Gtk/AboutWindow.vala:179 msgid "Credits" @@ -412,7 +399,7 @@ msgstr "" #: src/Gtk/MainWindow.vala:289 msgid "User notes for" -msgstr "" +msgstr "Notas de usuario para" #: src/Gtk/MainWindow.vala:305 #, fuzzy @@ -420,12 +407,12 @@ msgid "Uninstall Old" msgstr "Desinstalación finalizada" #: src/Gtk/MainWindow.vala:306 -msgid "Uninstall kernels older than running kernel" -msgstr "" +msgid "Uninstall kernels older than latest installed" +msgstr "Desinstalar kernels anteriores a los últimos instalados" #: src/Gtk/MainWindow.vala:311 msgid "Reload" -msgstr "" +msgstr "Recargar" #: src/Gtk/MainWindow.vala:316 src/Gtk/SettingsDialog.vala:49 msgid "Settings" @@ -437,7 +424,7 @@ msgstr "Acerca de" #: src/Gtk/MainWindow.vala:326 msgid "Exit" -msgstr "" +msgstr "Salida" #: src/Gtk/MainWindow.vala:394 msgid "Kernel upgrade utility for Ubuntu-based distributions" @@ -446,7 +433,7 @@ msgstr "" #: src/Gtk/MainWindow.vala:395 msgid "Forked" -msgstr "" +msgstr "Bifurcada" #: src/Gtk/MainWindow.vala:395 msgid "Original" @@ -454,7 +441,7 @@ msgstr "" #: src/Gtk/MainWindow.vala:433 msgid "Updating kernels" -msgstr "" +msgstr "Actualización de kernels" #: src/Gtk/MainWindow.vala:504 #, fuzzy @@ -464,7 +451,7 @@ msgstr "Paquetes disponibles" #: src/Gtk/MainWindow.vala:547 src/Gtk/MainWindow.vala:587 #: src/Gtk/MainWindow.vala:621 msgid "DONE" -msgstr "" +msgstr "HECHO" #: src/Gtk/ProgressWindow.vala:126 src/Gtk/TerminalWindow.vala:151 msgid "Cancel" @@ -484,7 +471,7 @@ msgstr "Notificar si hay una versión puntual disponible" #: src/Gtk/SettingsDialog.vala:86 msgid "Seconds interval enabled for debugging" -msgstr "" +msgstr "Intervalo de segundos habilitado para la depuración" #: src/Gtk/SettingsDialog.vala:109 msgid "Check every" @@ -497,7 +484,7 @@ msgstr "Horas" #: src/Gtk/SettingsDialog.vala:136 msgid "Days" -msgstr "" +msgstr "Días" #: src/Gtk/SettingsDialog.vala:138 #, fuzzy @@ -506,11 +493,11 @@ msgstr "Semanas" #: src/Gtk/SettingsDialog.vala:141 msgid "Seconds" -msgstr "" +msgstr "Sobras" #: src/Gtk/SettingsDialog.vala:147 msgid "Filters" -msgstr "" +msgstr "Filtros" #: src/Gtk/SettingsDialog.vala:155 msgid "Hide unstable and RC releases" @@ -518,11 +505,11 @@ msgstr "Ocultar versiones inestables y RC" #: src/Gtk/SettingsDialog.vala:177 msgid "previous major versions ( -1 = all )" -msgstr "" +msgstr "Versiones principales anteriores ( -1 = todas )" #: src/Gtk/SettingsDialog.vala:181 msgid "Network" -msgstr "" +msgstr "Red" #: src/Gtk/SettingsDialog.vala:192 #, fuzzy @@ -531,15 +518,15 @@ msgstr "La conexión a Internet está inactiva" #: src/Gtk/SettingsDialog.vala:204 msgid "seconds" -msgstr "" +msgstr "sobras" #: src/Gtk/SettingsDialog.vala:211 msgid "Max concurrent downloads" -msgstr "" +msgstr "Descargas máximas de la competencia" #: src/Gtk/SettingsDialog.vala:225 msgid "Verify Checksums with the CHECKSUMS files" -msgstr "" +msgstr "Verificar sumas de comprobación con los archivos CHECKSUMS" #: src/Gtk/SettingsDialog.vala:233 msgid "Proxy" diff --git a/po/fr.po b/po/fr.po index 9574b12d..ec4a6423 100644 --- a/po/fr.po +++ b/po/fr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-04-02 01:20-0400\n" +"POT-Creation-Date: 2023-04-02 04:23-0400\n" "PO-Revision-Date: 2018-08-05 15:50+0200\n" "Last-Translator: Yolateng0 \n" "Language-Team: French\n" @@ -24,29 +24,29 @@ msgstr "Architecture" #: src/Common/LinuxKernel.vala:129 #, fuzzy msgid "Running kernel" -msgstr "Actuel" +msgstr "Exécution du noyau" #: src/Common/LinuxKernel.vala:250 msgid "loading cached" -msgstr "" +msgstr "chargement mis en cache" #: src/Common/LinuxKernel.vala:264 #, fuzzy msgid "queuing download" -msgstr "Nombre maximum de téléchargements parallèles" +msgstr "téléchargement de la file d'attente" #: src/Common/LinuxKernel.vala:287 #, fuzzy msgid "Fetching individual kernel indexes" -msgstr "Récupération de l'index..." +msgstr "Récupération d'index de noyau individuels" #: src/Common/LinuxKernel.vala:303 msgid "loading downloaded" -msgstr "" +msgstr "chargement téléchargé" #: src/Common/LinuxKernel.vala:339 msgid "Updating from" -msgstr "" +msgstr "Mise à jour à partir de" #: src/Common/LinuxKernel.vala:347 msgid "OK" @@ -54,27 +54,12 @@ msgstr "OK" #: src/Common/LinuxKernel.vala:350 msgid "FAILED" -msgstr "" - -#: src/Common/LinuxKernel.vala:381 -#, fuzzy -msgid "latest_available" -msgstr "disponible" +msgstr "RATÉ" #: src/Common/LinuxKernel.vala:396 #, fuzzy msgid "Found installed" -msgstr "Installé" - -#: src/Common/LinuxKernel.vala:499 -#, fuzzy -msgid "latest_installed" -msgstr "Paquets Installés" - -#: src/Common/LinuxKernel.vala:500 -#, fuzzy -msgid "oldest_installed" -msgstr "Installé" +msgstr "Trouvé installé" #: src/Common/LinuxKernel.vala:790 msgid "Packages Available" @@ -102,12 +87,12 @@ msgid "Running" msgstr "Actuel" #: src/Common/LinuxKernel.vala:924 -msgid "CHECKSUMS enabled" -msgstr "" +msgid "enabled" +msgstr "activé" #: src/Common/LinuxKernel.vala:948 msgid "Downloading" -msgstr "" +msgstr "Téléchargement" #: src/Common/LinuxKernel.vala:969 #, fuzzy @@ -117,25 +102,25 @@ msgstr "Ce noyau est déjà installé." #: src/Common/LinuxKernel.vala:1003 #, fuzzy msgid "Uninstalling selected kernels" -msgstr "Installer les noyaux spécifiés" +msgstr "Désinstallation des noyaux sélectionnés" #: src/Common/LinuxKernel.vala:1009 msgid "requested" -msgstr "" +msgstr "Demandé" #: src/Common/LinuxKernel.vala:1012 #, fuzzy msgid "not uninstalling the currently running kernel" -msgstr "Installer les noyaux spécifiés" +msgstr "Ne pas désinstaller le noyau en cours d'exécution" #: src/Common/LinuxKernel.vala:1028 msgid "found" -msgstr "" +msgstr "fonder" #: src/Common/LinuxKernel.vala:1031 #, fuzzy msgid "No packages to un-install!" -msgstr "Paquets Installés" +msgstr "Pas de paquets à désinstaller !" #: src/Common/LinuxKernel.vala:1079 #, fuzzy @@ -150,7 +135,7 @@ msgstr "Impossible de trouver de noyaux à supprimer" #: src/Common/LinuxKernel.vala:1092 #, fuzzy msgid "The following kernels will be uninstalled" -msgstr "Les noyaux suivants seront supprimés:" +msgstr "Les noyaux suivants seront désinstallés" #: src/Common/LinuxKernel.vala:1096 msgid "Continue ?" @@ -176,12 +161,14 @@ msgstr "Installer le noyau en version %s ? (y/n): " #: src/Common/Main.vala:351 msgid "Called from" -msgstr "" +msgstr "Appelé à partir de" #: src/Common/Main.vala:352 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" +"Ce fichier est écrasé et exécuté à nouveau chaque fois que les paramètres " +"sont enregistrés dans" #: src/Common/Main.vala:384 msgid "Notifications are disabled" @@ -231,7 +218,7 @@ msgstr "Installer le noyau mainline spécifié" #: src/Console/AppConsole.vala:58 #, fuzzy msgid "Uninstall specified kernel" -msgstr "Installer les noyaux spécifiés" +msgstr "Désinstaller le noyau spécifié" #: src/Console/AppConsole.vala:59 #, fuzzy @@ -244,7 +231,7 @@ msgstr "Télécharger les noyaux spécifiés" #: src/Console/AppConsole.vala:61 msgid "Delete cached info about available kernels" -msgstr "" +msgstr "Supprimer les informations mises en cache sur les noyaux disponibles" #: src/Console/AppConsole.vala:63 src/Gtk/AppGtk.vala:137 msgid "Options" @@ -253,12 +240,12 @@ msgstr "Options" #: src/Console/AppConsole.vala:65 #, fuzzy msgid "Include unstable and RC releases" -msgstr "Cacher les versions instables et RC" +msgstr "Inclure les versions instables et RC" #: src/Console/AppConsole.vala:66 #, fuzzy msgid "Exclude unstable and RC releases" -msgstr "Cacher les versions instables et RC" +msgstr "Exclure les versions instables et RC" #: src/Console/AppConsole.vala:67 msgid "Enable verbose debugging output" @@ -266,7 +253,7 @@ msgstr "Active la sortie verbeuse de débogage" #: src/Console/AppConsole.vala:68 msgid "Assume Yes for all prompts (non-interactive mode)" -msgstr "" +msgstr "Supposons Oui pour toutes les invites (mode non interactif)" #: src/Console/AppConsole.vala:71 msgid "A version string taken from the output of --list" @@ -274,12 +261,12 @@ msgstr "Une version prise du resultat de --list" #: src/Console/AppConsole.vala:72 msgid "One or more, comma-seperated" -msgstr "" +msgstr "Une ou plusieurs, séparées par des virgules" #: src/Console/AppConsole.vala:73 #, fuzzy msgid "The currently running kernel will always be ignored" -msgstr "Les noyaux suivants seront supprimés:" +msgstr "Le noyau en cours d'exécution sera toujours ignoré" #: src/Console/AppConsole.vala:161 src/Gtk/AppGtk.vala:121 msgid "Unknown option" @@ -310,7 +297,7 @@ msgstr "Impossible de trouver la version demandée" #: src/Console/AppConsole.vala:248 msgid "and use a version string listed in first column" -msgstr "" +msgstr "et utilisez une chaîne de version répertoriée dans la première colonne" #: src/Console/AppConsole.vala:275 msgid "Command not specified" @@ -340,7 +327,7 @@ msgstr "Installer" #: src/Console/AppConsole.vala:345 msgid "Previously notified" -msgstr "" +msgstr "Précédemment notifié" #: src/Gtk/AboutWindow.vala:162 src/Gtk/AboutWindow.vala:179 msgid "Credits" @@ -402,7 +389,7 @@ msgstr "Statut" #: src/Gtk/MainWindow.vala:274 #, fuzzy msgid "Uninstall" -msgstr "Installer" +msgstr "Désinstaller" #: src/Gtk/MainWindow.vala:284 msgid "Notes" @@ -410,7 +397,7 @@ msgstr "" #: src/Gtk/MainWindow.vala:289 msgid "User notes for" -msgstr "" +msgstr "Notes d'utilisation pour" #: src/Gtk/MainWindow.vala:305 #, fuzzy @@ -419,12 +406,12 @@ msgstr "Désinstallation complète" #: src/Gtk/MainWindow.vala:306 #, fuzzy -msgid "Uninstall kernels older than running kernel" -msgstr "Désinstalle les noyaux plus anciens que le noyau courant" +msgid "Uninstall kernels older than latest installed" +msgstr "Désinstaller les noyaux plus anciens que les derniers installés" #: src/Gtk/MainWindow.vala:311 msgid "Reload" -msgstr "" +msgstr "Recharger" #: src/Gtk/MainWindow.vala:316 src/Gtk/SettingsDialog.vala:49 msgid "Settings" @@ -436,7 +423,7 @@ msgstr "À propos" #: src/Gtk/MainWindow.vala:326 msgid "Exit" -msgstr "" +msgstr "Sortie" #: src/Gtk/MainWindow.vala:394 msgid "Kernel upgrade utility for Ubuntu-based distributions" @@ -446,15 +433,15 @@ msgstr "" #: src/Gtk/MainWindow.vala:395 msgid "Forked" -msgstr "Version forkée :" +msgstr "Forkée" #: src/Gtk/MainWindow.vala:395 msgid "Original" -msgstr "Version originale :" +msgstr "Originale" #: src/Gtk/MainWindow.vala:433 msgid "Updating kernels" -msgstr "" +msgstr "Mise à jour des noyaux" #: src/Gtk/MainWindow.vala:504 msgid "available" @@ -463,7 +450,7 @@ msgstr "disponible" #: src/Gtk/MainWindow.vala:547 src/Gtk/MainWindow.vala:587 #: src/Gtk/MainWindow.vala:621 msgid "DONE" -msgstr "" +msgstr "FAIT" #: src/Gtk/ProgressWindow.vala:126 src/Gtk/TerminalWindow.vala:151 msgid "Cancel" @@ -483,7 +470,7 @@ msgstr "Notifier si une version stable mineure est disponible" #: src/Gtk/SettingsDialog.vala:86 msgid "Seconds interval enabled for debugging" -msgstr "" +msgstr "Intervalle de secondes activé pour le débogage" #: src/Gtk/SettingsDialog.vala:109 msgid "Check every" @@ -492,25 +479,25 @@ msgstr "Vérifier toutes les" #: src/Gtk/SettingsDialog.vala:134 #, fuzzy msgid "Hours" -msgstr "Heure(s)" +msgstr "Heures" #: src/Gtk/SettingsDialog.vala:136 msgid "Days" -msgstr "" +msgstr "Jours" #: src/Gtk/SettingsDialog.vala:138 #, fuzzy msgid "Weeks" -msgstr "Semaine(s)" +msgstr "Semaines" #: src/Gtk/SettingsDialog.vala:141 #, fuzzy msgid "Seconds" -msgstr "Seconde(s)" +msgstr "Secondes" #: src/Gtk/SettingsDialog.vala:147 msgid "Filters" -msgstr "" +msgstr "Filtres" #: src/Gtk/SettingsDialog.vala:155 msgid "Hide unstable and RC releases" @@ -519,11 +506,11 @@ msgstr "Cacher les versions instables et RC" #: src/Gtk/SettingsDialog.vala:177 #, fuzzy msgid "previous major versions ( -1 = all )" -msgstr "Montrer les N dernières versions majeures" +msgstr "Versions majeures précédentes ( -1 = toutes )" #: src/Gtk/SettingsDialog.vala:181 msgid "Network" -msgstr "" +msgstr "Réseau" #: src/Gtk/SettingsDialog.vala:192 #, fuzzy @@ -540,7 +527,7 @@ msgstr "Nombre maximum de téléchargements parallèles" #: src/Gtk/SettingsDialog.vala:225 msgid "Verify Checksums with the CHECKSUMS files" -msgstr "" +msgstr "Vérifier les sommes de contrôle avec les fichiers CHECKSUMS" #: src/Gtk/SettingsDialog.vala:233 msgid "Proxy" diff --git a/po/hr.po b/po/hr.po index ac3aa30f..b8a0a599 100644 --- a/po/hr.po +++ b/po/hr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-04-02 01:20-0400\n" +"POT-Creation-Date: 2023-04-02 04:23-0400\n" "PO-Revision-Date: 2022-09-22 12:13+0200\n" "Last-Translator: gogo \n" "Language-Team: Croatian\n" @@ -24,57 +24,42 @@ msgstr "Arhitektura" #: src/Common/LinuxKernel.vala:129 #, fuzzy msgid "Running kernel" -msgstr "Pokrenuto" +msgstr "Jezgra trčanja" #: src/Common/LinuxKernel.vala:250 msgid "loading cached" -msgstr "" +msgstr "učitavanje predmemoriranog" #: src/Common/LinuxKernel.vala:264 #, fuzzy msgid "queuing download" -msgstr "Najviše istodobnih preuzimanja" +msgstr "preuzimanje u redu čekanja" #: src/Common/LinuxKernel.vala:287 #, fuzzy msgid "Fetching individual kernel indexes" -msgstr "Preuzimanje sadržaja..." +msgstr "Dohvaćanje pojedinačnih indeksa jezgre" #: src/Common/LinuxKernel.vala:303 msgid "loading downloaded" -msgstr "" +msgstr "učitavanje preuzeto" #: src/Common/LinuxKernel.vala:339 msgid "Updating from" -msgstr "" +msgstr "Ažuriranje iz" #: src/Common/LinuxKernel.vala:347 msgid "OK" -msgstr "U redu" +msgstr "" #: src/Common/LinuxKernel.vala:350 msgid "FAILED" -msgstr "" - -#: src/Common/LinuxKernel.vala:381 -#, fuzzy -msgid "latest_available" -msgstr "dostupno" +msgstr "NIJE USPIO" #: src/Common/LinuxKernel.vala:396 #, fuzzy msgid "Found installed" -msgstr "Instalirano" - -#: src/Common/LinuxKernel.vala:499 -#, fuzzy -msgid "latest_installed" -msgstr "Instalirani paketi" - -#: src/Common/LinuxKernel.vala:500 -#, fuzzy -msgid "oldest_installed" -msgstr "Instalirano" +msgstr "Pronađeno instalirano" #: src/Common/LinuxKernel.vala:790 msgid "Packages Available" @@ -102,12 +87,12 @@ msgid "Running" msgstr "Pokrenuto" #: src/Common/LinuxKernel.vala:924 -msgid "CHECKSUMS enabled" -msgstr "" +msgid "enabled" +msgstr "omogućen" #: src/Common/LinuxKernel.vala:948 msgid "Downloading" -msgstr "" +msgstr "Učitavanje" #: src/Common/LinuxKernel.vala:969 #, fuzzy @@ -121,7 +106,7 @@ msgstr "Deinstaliraj određene kernele" #: src/Common/LinuxKernel.vala:1009 msgid "requested" -msgstr "" +msgstr "Zatražio" #: src/Common/LinuxKernel.vala:1012 #, fuzzy @@ -130,12 +115,12 @@ msgstr "Deinstaliraj određene kernele" #: src/Common/LinuxKernel.vala:1028 msgid "found" -msgstr "" +msgstr "pronađen" #: src/Common/LinuxKernel.vala:1031 #, fuzzy msgid "No packages to un-install!" -msgstr "Instalirani paketi" +msgstr "Nema paketa za poništavanje instalacije!" #: src/Common/LinuxKernel.vala:1079 #, fuzzy @@ -180,7 +165,7 @@ msgstr "Pozvano od" #: src/Common/Main.vala:352 msgid "" "This file is over-written and executed again whenever settings are saved in" -msgstr "" +msgstr "Ova se datoteka prepisuje i ponovno izvršava kad god se postavke spremaju u" #: src/Common/Main.vala:384 msgid "Notifications are disabled" @@ -189,7 +174,7 @@ msgstr "Obavijesti su onemogućene" #: src/Common/Package.vala:58 #, fuzzy, c-format msgid "File not found: %s" -msgstr "Datoteka nije pronađena" +msgstr "Datoteka nije pronađena: %s" #: src/Console/AppConsole.vala:47 src/Gtk/AppGtk.vala:135 msgid "Syntax" @@ -242,7 +227,7 @@ msgstr "Preuzmi određene kernele" #: src/Console/AppConsole.vala:61 msgid "Delete cached info about available kernels" -msgstr "" +msgstr "Brisanje predmemoriranih podataka o dostupnim jezgrama" #: src/Console/AppConsole.vala:63 src/Gtk/AppGtk.vala:137 msgid "Options" @@ -271,7 +256,7 @@ msgstr "Izraz inačice uzet iz zapisa --list" #: src/Console/AppConsole.vala:72 msgid "One or more, comma-seperated" -msgstr "" +msgstr "Jedan ili više njih, odvojeni zarezom" #: src/Console/AppConsole.vala:73 #, fuzzy @@ -335,7 +320,7 @@ msgstr "Instaliraj" #: src/Console/AppConsole.vala:345 msgid "Previously notified" -msgstr "" +msgstr "Prethodno prijavljeno" #: src/Gtk/AboutWindow.vala:162 src/Gtk/AboutWindow.vala:179 msgid "Credits" @@ -400,23 +385,24 @@ msgstr "Deinstaliraj" #: src/Gtk/MainWindow.vala:284 msgid "Notes" -msgstr "" +msgstr "Bilješke" #: src/Gtk/MainWindow.vala:289 msgid "User notes for" -msgstr "" +msgstr "Korisničke bilješke za" #: src/Gtk/MainWindow.vala:305 msgid "Uninstall Old" msgstr "Deinstaliraj staro" #: src/Gtk/MainWindow.vala:306 -msgid "Uninstall kernels older than running kernel" -msgstr "Deinstaliraj kernele starije od pokrenutog krenela" +#, fuzzy +msgid "Uninstall kernels older than latest installed" +msgstr "Deinstaliraj starije kernele od trenutno pokrenutog krenela" #: src/Gtk/MainWindow.vala:311 msgid "Reload" -msgstr "" +msgstr "Ponovno učitati" #: src/Gtk/MainWindow.vala:316 src/Gtk/SettingsDialog.vala:49 msgid "Settings" @@ -428,7 +414,7 @@ msgstr "O programu" #: src/Gtk/MainWindow.vala:326 msgid "Exit" -msgstr "" +msgstr "Izlaz" #: src/Gtk/MainWindow.vala:394 msgid "Kernel upgrade utility for Ubuntu-based distributions" @@ -444,7 +430,7 @@ msgstr "Izvornik" #: src/Gtk/MainWindow.vala:433 msgid "Updating kernels" -msgstr "" +msgstr "Ažuriranje jezgri" #: src/Gtk/MainWindow.vala:504 msgid "available" @@ -453,7 +439,7 @@ msgstr "dostupno" #: src/Gtk/MainWindow.vala:547 src/Gtk/MainWindow.vala:587 #: src/Gtk/MainWindow.vala:621 msgid "DONE" -msgstr "" +msgstr "UČINJENO" #: src/Gtk/ProgressWindow.vala:126 src/Gtk/TerminalWindow.vala:151 msgid "Cancel" @@ -474,7 +460,7 @@ msgstr "Obavijesti kada je pojedino izdanje dostupno" #: src/Gtk/SettingsDialog.vala:86 #, fuzzy msgid "Seconds interval enabled for debugging" -msgstr "(Dopuštena razdoblja u sekundama za --debug)" +msgstr "Interval sekundi omogućen za ispravljanje pogrešaka" #: src/Gtk/SettingsDialog.vala:109 msgid "Check every" @@ -483,11 +469,11 @@ msgstr "Provjeri svaka" #: src/Gtk/SettingsDialog.vala:134 #, fuzzy msgid "Hours" -msgstr "Sat(a)" +msgstr "Sati" #: src/Gtk/SettingsDialog.vala:136 msgid "Days" -msgstr "" +msgstr "Dani" #: src/Gtk/SettingsDialog.vala:138 #, fuzzy @@ -497,24 +483,24 @@ msgstr "Tjedan(a)" #: src/Gtk/SettingsDialog.vala:141 #, fuzzy msgid "Seconds" -msgstr "Sekund(e)" +msgstr "Sekunde" #: src/Gtk/SettingsDialog.vala:147 msgid "Filters" -msgstr "" +msgstr "Filteri" #: src/Gtk/SettingsDialog.vala:155 msgid "Hide unstable and RC releases" -msgstr "Sakrij nestabilne kernele i predizdanja" +msgstr "Sakrij nestabilna i RC izdanja" #: src/Gtk/SettingsDialog.vala:177 #, fuzzy msgid "previous major versions ( -1 = all )" -msgstr "Prikaži N prijašnjih glavnih izdanja " +msgstr "prethodne glavne verzije (-1 = sve)" #: src/Gtk/SettingsDialog.vala:181 msgid "Network" -msgstr "" +msgstr "Mreža" #: src/Gtk/SettingsDialog.vala:192 #, fuzzy @@ -531,7 +517,7 @@ msgstr "Najviše istodobnih preuzimanja" #: src/Gtk/SettingsDialog.vala:225 msgid "Verify Checksums with the CHECKSUMS files" -msgstr "" +msgstr "Provjera kontrolnih zbrojeva pomoću CHECKSUMS datoteka" #: src/Gtk/SettingsDialog.vala:233 msgid "Proxy" diff --git a/po/it.po b/po/it.po index 528565fd..c207a3e1 100644 --- a/po/it.po +++ b/po/it.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline 1.0.15\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-04-02 01:20-0400\n" +"POT-Creation-Date: 2023-04-02 04:23-0400\n" "PO-Revision-Date: 2020-08-22 15:35+0100\n" "Last-Translator: Albano Battistella \n" "Language-Team: Italian\n" @@ -26,12 +26,12 @@ msgstr "Aggiornamento dei kernel" #: src/Common/LinuxKernel.vala:250 msgid "loading cached" -msgstr "" +msgstr "Caricamento memorizzato nella cache" #: src/Common/LinuxKernel.vala:264 #, fuzzy msgid "queuing download" -msgstr "Numero massimo di download simultanei" +msgstr "code scaricare" #: src/Common/LinuxKernel.vala:287 #, fuzzy @@ -40,7 +40,7 @@ msgstr "Recupero dei singoli indici del kernel" #: src/Common/LinuxKernel.vala:303 msgid "loading downloaded" -msgstr "" +msgstr "caricamento scaricati" #: src/Common/LinuxKernel.vala:339 msgid "Updating from" @@ -54,25 +54,10 @@ msgstr "OK" msgid "FAILED" msgstr "FALLITO" -#: src/Common/LinuxKernel.vala:381 -#, fuzzy -msgid "latest_available" -msgstr "disponibile" - #: src/Common/LinuxKernel.vala:396 #, fuzzy msgid "Found installed" -msgstr "Installato" - -#: src/Common/LinuxKernel.vala:499 -#, fuzzy -msgid "latest_installed" -msgstr "Pacchetti installati" - -#: src/Common/LinuxKernel.vala:500 -#, fuzzy -msgid "oldest_installed" -msgstr "Installato" +msgstr "Trovato installato" #: src/Common/LinuxKernel.vala:790 msgid "Packages Available" @@ -100,12 +85,12 @@ msgid "Running" msgstr "In esecuzione" #: src/Common/LinuxKernel.vala:924 -msgid "CHECKSUMS enabled" -msgstr "" +msgid "enabled" +msgstr "abilitato" #: src/Common/LinuxKernel.vala:948 msgid "Downloading" -msgstr "" +msgstr "Scaricare" #: src/Common/LinuxKernel.vala:969 #, fuzzy @@ -337,7 +322,7 @@ msgstr "Installa" #: src/Console/AppConsole.vala:345 msgid "Previously notified" -msgstr "" +msgstr "Notificato in precedenza" #: src/Gtk/AboutWindow.vala:162 src/Gtk/AboutWindow.vala:179 msgid "Credits" @@ -365,7 +350,7 @@ msgstr "Artisti" #: src/Gtk/AboutWindow.vala:228 msgid "Translators" -msgstr "Albano Battistella, Demetrio Mendozzi" +msgstr "Traduttori" #: src/Gtk/AboutWindow.vala:236 msgid "Documenters" @@ -402,19 +387,20 @@ msgstr "Disinstalla" #: src/Gtk/MainWindow.vala:284 msgid "Notes" -msgstr "" +msgstr "Note" #: src/Gtk/MainWindow.vala:289 msgid "User notes for" -msgstr "" +msgstr "Note utente per" #: src/Gtk/MainWindow.vala:305 msgid "Uninstall Old" msgstr "Disinstalla i vecchi" #: src/Gtk/MainWindow.vala:306 -msgid "Uninstall kernels older than running kernel" -msgstr "Rimuove i kernel installati più vecchi del kernel in esecuzione" +#, fuzzy +msgid "Uninstall kernels older than latest installed" +msgstr "Rimuovere i kernel installati più vecchi del kernel in esecuzione" #: src/Gtk/MainWindow.vala:311 msgid "Reload" @@ -485,16 +471,16 @@ msgstr "Controlla ogni" #: src/Gtk/SettingsDialog.vala:134 #, fuzzy msgid "Hours" -msgstr "Ora(e)" +msgstr "Orario" #: src/Gtk/SettingsDialog.vala:136 msgid "Days" -msgstr "" +msgstr "Giorni" #: src/Gtk/SettingsDialog.vala:138 #, fuzzy msgid "Weeks" -msgstr "Settimana(e)" +msgstr "Settimane" #: src/Gtk/SettingsDialog.vala:141 #, fuzzy @@ -533,7 +519,7 @@ msgstr "Numero massimo di download simultanei" #: src/Gtk/SettingsDialog.vala:225 msgid "Verify Checksums with the CHECKSUMS files" -msgstr "" +msgstr "Verifica dei checksum con i file CHECKSUMS" #: src/Gtk/SettingsDialog.vala:233 msgid "Proxy" diff --git a/po/ko.po b/po/ko.po index 878f15b1..63bab69f 100644 --- a/po/ko.po +++ b/po/ko.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline 1.0.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-04-02 01:20-0400\n" +"POT-Creation-Date: 2023-04-02 04:23-0400\n" "PO-Revision-Date: 2022-09-28 11:48+0900\n" "Last-Translator: Kevin Kim \n" "Language-Team: Korean\n" @@ -28,25 +28,25 @@ msgstr "구동 중" #: src/Common/LinuxKernel.vala:250 msgid "loading cached" -msgstr "" +msgstr "캐시된 로드 중" #: src/Common/LinuxKernel.vala:264 #, fuzzy msgid "queuing download" -msgstr "동시 다운로드 최대 수" +msgstr "대기열 다운로드" #: src/Common/LinuxKernel.vala:287 #, fuzzy msgid "Fetching individual kernel indexes" -msgstr "목록 가져오기..." +msgstr "개별 커널 인덱스 페치" #: src/Common/LinuxKernel.vala:303 msgid "loading downloaded" -msgstr "" +msgstr "다운로드 로드 중" #: src/Common/LinuxKernel.vala:339 msgid "Updating from" -msgstr "" +msgstr "다음에서 업데이트" #: src/Common/LinuxKernel.vala:347 msgid "OK" @@ -54,27 +54,12 @@ msgstr "확인" #: src/Common/LinuxKernel.vala:350 msgid "FAILED" -msgstr "" - -#: src/Common/LinuxKernel.vala:381 -#, fuzzy -msgid "latest_available" -msgstr "사용가능" +msgstr "실패" #: src/Common/LinuxKernel.vala:396 #, fuzzy msgid "Found installed" -msgstr "설치 됨" - -#: src/Common/LinuxKernel.vala:499 -#, fuzzy -msgid "latest_installed" -msgstr "설치된 패키지" - -#: src/Common/LinuxKernel.vala:500 -#, fuzzy -msgid "oldest_installed" -msgstr "설치 됨" +msgstr "설치된 것을 찾았습니다." #: src/Common/LinuxKernel.vala:790 msgid "Packages Available" @@ -102,12 +87,12 @@ msgid "Running" msgstr "구동 중" #: src/Common/LinuxKernel.vala:924 -msgid "CHECKSUMS enabled" -msgstr "" +msgid "enabled" +msgstr "사용" #: src/Common/LinuxKernel.vala:948 msgid "Downloading" -msgstr "" +msgstr "다운로드" #: src/Common/LinuxKernel.vala:969 #, fuzzy @@ -121,16 +106,16 @@ msgstr "지정한 커널 삭제" #: src/Common/LinuxKernel.vala:1009 msgid "requested" -msgstr "" +msgstr "요청" #: src/Common/LinuxKernel.vala:1012 #, fuzzy msgid "not uninstalling the currently running kernel" -msgstr "지정한 커널 삭제" +msgstr "현재 실행 중인 커널을 제거하지 않음" #: src/Common/LinuxKernel.vala:1028 msgid "found" -msgstr "" +msgstr "설립하다" #: src/Common/LinuxKernel.vala:1031 #, fuzzy @@ -180,7 +165,7 @@ msgstr "에서 호출" #: src/Common/Main.vala:352 msgid "" "This file is over-written and executed again whenever settings are saved in" -msgstr "" +msgstr "이 파일은 덮어쓰고 설정이 저장될 때마다 다시 실행됩니다." #: src/Common/Main.vala:384 msgid "Notifications are disabled" @@ -242,7 +227,7 @@ msgstr "지정한 커널 다운로드" #: src/Console/AppConsole.vala:61 msgid "Delete cached info about available kernels" -msgstr "" +msgstr "사용 가능한 커널에 대한 캐시된 정보 삭제" #: src/Console/AppConsole.vala:63 src/Gtk/AppGtk.vala:137 msgid "Options" @@ -250,12 +235,11 @@ msgstr "옵션" #: src/Console/AppConsole.vala:65 msgid "Include unstable and RC releases" -msgstr "목록에서 unstable, RC 버전 포함" +msgstr "unstable 및 RC 릴리스 포함" #: src/Console/AppConsole.vala:66 -#, fuzzy msgid "Exclude unstable and RC releases" -msgstr "목록에서 unstable, RC 버전 포함" +msgstr "unstable 및 RC 릴리스 제외" #: src/Console/AppConsole.vala:67 msgid "Enable verbose debugging output" @@ -271,12 +255,12 @@ msgstr "--list 의 출력에서 가져온 버전 문자열" #: src/Console/AppConsole.vala:72 msgid "One or more, comma-seperated" -msgstr "" +msgstr "하나 이상, 쉼표로 구분" #: src/Console/AppConsole.vala:73 #, fuzzy msgid "The currently running kernel will always be ignored" -msgstr "아래 커널이 삭제됩니다:" +msgstr "현재 실행중인 커널은 항상 무시됩니다." #: src/Console/AppConsole.vala:161 src/Gtk/AppGtk.vala:121 msgid "Unknown option" @@ -316,9 +300,8 @@ msgid "to list all commands" msgstr "모든 명령어 나열" #: src/Console/AppConsole.vala:312 -#, fuzzy msgid "Notifications disabled in settings" -msgstr "알림이 비활성화 되었습니다" +msgstr "설정에서 비활성화된 알림" #: src/Console/AppConsole.vala:337 #, c-format @@ -335,7 +318,7 @@ msgstr "설치" #: src/Console/AppConsole.vala:345 msgid "Previously notified" -msgstr "" +msgstr "이전에 통보됨" #: src/Gtk/AboutWindow.vala:162 src/Gtk/AboutWindow.vala:179 msgid "Credits" @@ -374,7 +357,6 @@ msgid "Third Party Inclusions" msgstr "서드파티 포함" #: src/Gtk/AppGtk.vala:135 -#, fuzzy msgid "options" msgstr "옵션" @@ -400,23 +382,24 @@ msgstr "삭제" #: src/Gtk/MainWindow.vala:284 msgid "Notes" -msgstr "" +msgstr "노트" #: src/Gtk/MainWindow.vala:289 msgid "User notes for" -msgstr "" +msgstr "사용자 참고 사항" #: src/Gtk/MainWindow.vala:305 msgid "Uninstall Old" msgstr "오래된 커널 제거" #: src/Gtk/MainWindow.vala:306 -msgid "Uninstall kernels older than running kernel" -msgstr "현재 사용 중인 커널보다 이전 버전의 커널을 제거" +#, fuzzy +msgid "Uninstall kernels older than latest installed" +msgstr "현재 사용중인 커널보다 이전 버전의 설치된 커널을 제거" #: src/Gtk/MainWindow.vala:311 msgid "Reload" -msgstr "" +msgstr "새로고침" #: src/Gtk/MainWindow.vala:316 src/Gtk/SettingsDialog.vala:49 msgid "Settings" @@ -428,7 +411,7 @@ msgstr "정보" #: src/Gtk/MainWindow.vala:326 msgid "Exit" -msgstr "" +msgstr "출구" #: src/Gtk/MainWindow.vala:394 msgid "Kernel upgrade utility for Ubuntu-based distributions" @@ -436,15 +419,15 @@ msgstr "우분투 기반 배포판의 커널 업그레이드 도구" #: src/Gtk/MainWindow.vala:395 msgid "Forked" -msgstr "" +msgstr "가랑이진" #: src/Gtk/MainWindow.vala:395 msgid "Original" -msgstr "" +msgstr "원문 언어" #: src/Gtk/MainWindow.vala:433 msgid "Updating kernels" -msgstr "" +msgstr "커널 업데이트" #: src/Gtk/MainWindow.vala:504 msgid "available" @@ -453,7 +436,7 @@ msgstr "사용가능" #: src/Gtk/MainWindow.vala:547 src/Gtk/MainWindow.vala:587 #: src/Gtk/MainWindow.vala:621 msgid "DONE" -msgstr "" +msgstr "수행" #: src/Gtk/ProgressWindow.vala:126 src/Gtk/TerminalWindow.vala:151 msgid "Cancel" @@ -472,9 +455,8 @@ msgid "Notify if a point release is available" msgstr "포인트 릴리즈가 있으면 알림" #: src/Gtk/SettingsDialog.vala:86 -#, fuzzy msgid "Seconds interval enabled for debugging" -msgstr "(--debug 를 위한 몇초간 지연 허용)" +msgstr "디버깅에 사용할 수 있는 초 간격" #: src/Gtk/SettingsDialog.vala:109 msgid "Check every" @@ -487,7 +469,7 @@ msgstr "시간" #: src/Gtk/SettingsDialog.vala:136 msgid "Days" -msgstr "" +msgstr "일" #: src/Gtk/SettingsDialog.vala:138 #, fuzzy @@ -501,7 +483,7 @@ msgstr "초" #: src/Gtk/SettingsDialog.vala:147 msgid "Filters" -msgstr "" +msgstr "필터" #: src/Gtk/SettingsDialog.vala:155 msgid "Hide unstable and RC releases" @@ -510,11 +492,11 @@ msgstr "목록에서 unstable, RC 버전 포함" #: src/Gtk/SettingsDialog.vala:177 #, fuzzy msgid "previous major versions ( -1 = all )" -msgstr "보여 질 이전 메이저 버전 수 " +msgstr "이전 주 버전 ( -1 = 모두 )" #: src/Gtk/SettingsDialog.vala:181 msgid "Network" -msgstr "" +msgstr "네트워크" #: src/Gtk/SettingsDialog.vala:192 #, fuzzy @@ -531,11 +513,11 @@ msgstr "동시 다운로드 최대 수" #: src/Gtk/SettingsDialog.vala:225 msgid "Verify Checksums with the CHECKSUMS files" -msgstr "" +msgstr "CHECKSUMS 파일로 체크섬 확인" #: src/Gtk/SettingsDialog.vala:233 msgid "Proxy" -msgstr "" +msgstr "대리" #: src/Gtk/l.gtk.vala:42 msgid "Missing Icon" diff --git a/po/messages.pot b/po/messages.pot index 005d8589..e3a65e8a 100644 --- a/po/messages.pot +++ b/po/messages.pot @@ -6,9 +6,9 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: mainline 1.1.9\n" +"Project-Id-Version: mainline 1.1.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-04-02 01:20-0400\n" +"POT-Creation-Date: 2023-04-02 04:23-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -57,22 +57,10 @@ msgstr "" msgid "FAILED" msgstr "" -#: src/Common/LinuxKernel.vala:381 -msgid "latest_available" -msgstr "" - #: src/Common/LinuxKernel.vala:396 msgid "Found installed" msgstr "" -#: src/Common/LinuxKernel.vala:499 -msgid "latest_installed" -msgstr "" - -#: src/Common/LinuxKernel.vala:500 -msgid "oldest_installed" -msgstr "" - #: src/Common/LinuxKernel.vala:790 msgid "Packages Available" msgstr "" @@ -99,7 +87,7 @@ msgid "Running" msgstr "" #: src/Common/LinuxKernel.vala:924 -msgid "CHECKSUMS enabled" +msgid "enabled" msgstr "" #: src/Common/LinuxKernel.vala:948 @@ -397,7 +385,7 @@ msgid "Uninstall Old" msgstr "" #: src/Gtk/MainWindow.vala:306 -msgid "Uninstall kernels older than running kernel" +msgid "Uninstall kernels older than latest installed" msgstr "" #: src/Gtk/MainWindow.vala:311 diff --git a/po/nl.po b/po/nl.po index dd990143..bbd35b51 100644 --- a/po/nl.po +++ b/po/nl.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-04-02 01:20-0400\n" +"POT-Creation-Date: 2023-04-02 04:23-0400\n" "PO-Revision-Date: 2020-08-23 13:55+0200\n" "Last-Translator: Heimen Stoffels \n" "Language-Team: Dutch (Netherlands)\n" @@ -22,31 +22,28 @@ msgid "Architecture" msgstr "Architectuur" #: src/Common/LinuxKernel.vala:129 -#, fuzzy msgid "Running kernel" -msgstr "Bezig met bijwerken van kernels…" +msgstr "Kernel uitvoeren" #: src/Common/LinuxKernel.vala:250 msgid "loading cached" -msgstr "" +msgstr "laden in cache" #: src/Common/LinuxKernel.vala:264 -#, fuzzy msgid "queuing download" -msgstr "Max. aantal gelijktijdige downloads" +msgstr "wachtrijen downloaden" #: src/Common/LinuxKernel.vala:287 -#, fuzzy msgid "Fetching individual kernel indexes" -msgstr "Bezig met ophalen van kernelindexen…" +msgstr "Afzonderlijke kernelindexen ophalen" #: src/Common/LinuxKernel.vala:303 msgid "loading downloaded" -msgstr "" +msgstr "laden gedownload" #: src/Common/LinuxKernel.vala:339 msgid "Updating from" -msgstr "Bezig met bijwerken van" +msgstr "Bijwerken van" #: src/Common/LinuxKernel.vala:347 msgid "OK" @@ -54,27 +51,11 @@ msgstr "Oké" #: src/Common/LinuxKernel.vala:350 msgid "FAILED" -msgstr "" - -#: src/Common/LinuxKernel.vala:381 -#, fuzzy -msgid "latest_available" -msgstr "beschikbaar" +msgstr "MISLUKT" #: src/Common/LinuxKernel.vala:396 -#, fuzzy msgid "Found installed" -msgstr "Geïnstalleerd" - -#: src/Common/LinuxKernel.vala:499 -#, fuzzy -msgid "latest_installed" -msgstr "Geïnstalleerde pakketten" - -#: src/Common/LinuxKernel.vala:500 -#, fuzzy -msgid "oldest_installed" -msgstr "Geïnstalleerd" +msgstr "Geïnstalleerd gevonden" #: src/Common/LinuxKernel.vala:790 msgid "Packages Available" @@ -102,12 +83,12 @@ msgid "Running" msgstr "In gebruik" #: src/Common/LinuxKernel.vala:924 -msgid "CHECKSUMS enabled" -msgstr "" +msgid "enabled" +msgstr "ingeschakeld" #: src/Common/LinuxKernel.vala:948 msgid "Downloading" -msgstr "" +msgstr "Downloaden" #: src/Common/LinuxKernel.vala:969 #, fuzzy @@ -117,40 +98,35 @@ msgstr "Deze kernel is al geïnstalleerd." #: src/Common/LinuxKernel.vala:1003 #, fuzzy msgid "Uninstalling selected kernels" -msgstr "Bezig met deïnstalleren van geselecteerde kernels…" +msgstr "Geselecteerde kernels verwijderen" #: src/Common/LinuxKernel.vala:1009 msgid "requested" msgstr "verzocht" #: src/Common/LinuxKernel.vala:1012 -#, fuzzy msgid "not uninstalling the currently running kernel" -msgstr "Opgegeven kernels deïnstalleren" +msgstr "de momenteel actieve kernel niet verwijderen" #: src/Common/LinuxKernel.vala:1028 msgid "found" msgstr "gevonden" #: src/Common/LinuxKernel.vala:1031 -#, fuzzy msgid "No packages to un-install!" -msgstr "Er zijn geen te deïnstalleren pakketten!" +msgstr "Geen pakketten om te verwijderen!" #: src/Common/LinuxKernel.vala:1079 -#, fuzzy msgid "Could not find running kernel in list" msgstr "De in gebruik zijnde kernel staat niet op de lijst" #: src/Common/LinuxKernel.vala:1084 -#, fuzzy msgid "Could not find any kernels to uninstall" msgstr "Er zijn geen te verwijderen kernels" #: src/Common/LinuxKernel.vala:1092 -#, fuzzy msgid "The following kernels will be uninstalled" -msgstr "De volgende kernels worden verwijderd:" +msgstr "De volgende kernels worden verwijderd" #: src/Common/LinuxKernel.vala:1096 msgid "Continue ?" @@ -181,7 +157,7 @@ msgstr "Aangeroepen door" #: src/Common/Main.vala:352 msgid "" "This file is over-written and executed again whenever settings are saved in" -msgstr "" +msgstr "Dit bestand wordt overschreven en opnieuw uitgevoerd wanneer instellingen worden opgeslagen in" #: src/Common/Main.vala:384 msgid "Notifications are disabled" @@ -229,14 +205,12 @@ msgid "Install specified mainline kernel" msgstr "Opgegeven mainline-kernel installeren" #: src/Console/AppConsole.vala:58 -#, fuzzy msgid "Uninstall specified kernel" -msgstr "Gekozen kernel deïnstalleren" +msgstr "Opgegeven kernel verwijderen" #: src/Console/AppConsole.vala:59 -#, fuzzy msgid "Uninstall kernels older than the latest installed" -msgstr "Geïnstalleerde kernels verwijderen die ouder zijn dan de huidige" +msgstr "Kernels verwijderen die ouder zijn dan de laatst geïnstalleerde" #: src/Console/AppConsole.vala:60 msgid "Download specified kernels" @@ -244,21 +218,19 @@ msgstr "Opgegeven kernels downloaden" #: src/Console/AppConsole.vala:61 msgid "Delete cached info about available kernels" -msgstr "Kernelcache wissen" +msgstr "Informatie over beschikbare kernels in de cache verwijderen" #: src/Console/AppConsole.vala:63 src/Gtk/AppGtk.vala:137 msgid "Options" msgstr "Opties" #: src/Console/AppConsole.vala:65 -#, fuzzy msgid "Include unstable and RC releases" -msgstr "Instabiele en rc-uitgaven tonen" +msgstr "Inclusief onstabiele en RC-releases" #: src/Console/AppConsole.vala:66 -#, fuzzy msgid "Exclude unstable and RC releases" -msgstr "Instabiele en rc-uitgaven verbergen" +msgstr "Onstabiele en RC-releases uitsluiten" #: src/Console/AppConsole.vala:67 msgid "Enable verbose debugging output" @@ -274,12 +246,11 @@ msgstr "Een versietekenreeks uit de uitvoer van --list" #: src/Console/AppConsole.vala:72 msgid "One or more, comma-seperated" -msgstr "" +msgstr "Een of meer, komma-gescheiden" #: src/Console/AppConsole.vala:73 -#, fuzzy msgid "The currently running kernel will always be ignored" -msgstr "De volgende kernels worden verwijderd:" +msgstr "De momenteel actieve kernel wordt altijd genegeerd" #: src/Console/AppConsole.vala:161 src/Gtk/AppGtk.vala:121 msgid "Unknown option" @@ -378,9 +349,8 @@ msgid "Third Party Inclusions" msgstr "Externe code" #: src/Gtk/AppGtk.vala:135 -#, fuzzy msgid "options" -msgstr "Opties" +msgstr "opties" #: src/Gtk/AppGtk.vala:139 msgid "Print debug information" @@ -399,27 +369,24 @@ msgid "Status" msgstr "Status" #: src/Gtk/MainWindow.vala:274 -#, fuzzy msgid "Uninstall" msgstr "Deïnstalleren" #: src/Gtk/MainWindow.vala:284 msgid "Notes" -msgstr "" +msgstr "Notities" #: src/Gtk/MainWindow.vala:289 msgid "User notes for" -msgstr "" +msgstr "Gebruikersnotities voor" #: src/Gtk/MainWindow.vala:305 -#, fuzzy msgid "Uninstall Old" -msgstr "Verouderde deïnstalleren" +msgstr "Verwijder Oude" #: src/Gtk/MainWindow.vala:306 -#, fuzzy -msgid "Uninstall kernels older than running kernel" -msgstr "Kernels verwijderen die ouder zijn dan de huidige" +msgid "Uninstall kernels older than latest installed" +msgstr "Kernels verwijderen die ouder zijn dan de laatst geïnstalleerde" #: src/Gtk/MainWindow.vala:311 msgid "Reload" @@ -451,7 +418,7 @@ msgstr "Origineel" #: src/Gtk/MainWindow.vala:433 msgid "Updating kernels" -msgstr "Bezig met bijwerken van kernels…" +msgstr "Kernels bijwerken" #: src/Gtk/MainWindow.vala:504 msgid "available" @@ -479,32 +446,28 @@ msgid "Notify if a point release is available" msgstr "Melding tonen als er een puntupdate beschikbaar is" #: src/Gtk/SettingsDialog.vala:86 -#, fuzzy msgid "Seconds interval enabled for debugging" -msgstr "(staat tussenpozen in seconden toe voor --debug)" +msgstr "Secondeninterval ingeschakeld voor foutopsporing" #: src/Gtk/SettingsDialog.vala:109 msgid "Check every" msgstr "Controleren, elke" #: src/Gtk/SettingsDialog.vala:134 -#, fuzzy msgid "Hours" msgstr "uur" #: src/Gtk/SettingsDialog.vala:136 msgid "Days" -msgstr "" +msgstr "dagen" #: src/Gtk/SettingsDialog.vala:138 -#, fuzzy msgid "Weeks" -msgstr "week/weken" +msgstr "weken" #: src/Gtk/SettingsDialog.vala:141 -#, fuzzy msgid "Seconds" -msgstr "seconde(n)" +msgstr "seconden" #: src/Gtk/SettingsDialog.vala:147 msgid "Filters" @@ -515,9 +478,8 @@ msgid "Hide unstable and RC releases" msgstr "Instabiele en rc-uitgaven verbergen" #: src/Gtk/SettingsDialog.vala:177 -#, fuzzy msgid "previous major versions ( -1 = all )" -msgstr "vorige grote updates" +msgstr "vorige hoofdversies ( -1 = alle )" #: src/Gtk/SettingsDialog.vala:181 msgid "Network" @@ -537,7 +499,7 @@ msgstr "Max. aantal gelijktijdige downloads" #: src/Gtk/SettingsDialog.vala:225 msgid "Verify Checksums with the CHECKSUMS files" -msgstr "" +msgstr "Controleer controlesommen met de CHECKSUMS-bestanden" #: src/Gtk/SettingsDialog.vala:233 msgid "Proxy" diff --git a/po/pl.po b/po/pl.po index 44511dc7..3f31d131 100644 --- a/po/pl.po +++ b/po/pl.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-04-02 01:20-0400\n" +"POT-Creation-Date: 2023-04-02 04:23-0400\n" "PO-Revision-Date: 2023-03-11 12:47+0100\n" "Last-Translator: Matthaiks\n" "Language-Team: Polish\n" @@ -27,20 +27,19 @@ msgstr "Aktualizowanie jąder" #: src/Common/LinuxKernel.vala:250 msgid "loading cached" -msgstr "" +msgstr "ładuje buforowanego" #: src/Common/LinuxKernel.vala:264 -#, fuzzy msgid "queuing download" -msgstr "Maksymalna liczba jednoczesnych pobrań" +msgstr "kolejkowanie do pobrania" #: src/Common/LinuxKernel.vala:287 msgid "Fetching individual kernel indexes" -msgstr "Pobieranie indywidualnych indeksów jąder" +msgstr "Pobieranie poszczególnych indeksów jądra" #: src/Common/LinuxKernel.vala:303 msgid "loading downloaded" -msgstr "" +msgstr "ładowanie pobranych" #: src/Common/LinuxKernel.vala:339 msgid "Updating from" @@ -54,26 +53,11 @@ msgstr "OK" msgid "FAILED" msgstr "NIEPOWODZENIE" -#: src/Common/LinuxKernel.vala:381 -#, fuzzy -msgid "latest_available" -msgstr "dostępne" - #: src/Common/LinuxKernel.vala:396 #, fuzzy msgid "Found installed" msgstr "Zainstalowane" -#: src/Common/LinuxKernel.vala:499 -#, fuzzy -msgid "latest_installed" -msgstr "Pakiety zainstalowane" - -#: src/Common/LinuxKernel.vala:500 -#, fuzzy -msgid "oldest_installed" -msgstr "Zainstalowane" - #: src/Common/LinuxKernel.vala:790 msgid "Packages Available" msgstr "Dostępne pakiety" @@ -100,12 +84,12 @@ msgid "Running" msgstr "Uruchomione" #: src/Common/LinuxKernel.vala:924 -msgid "CHECKSUMS enabled" -msgstr "" +msgid "enabled" +msgstr "włączone" #: src/Common/LinuxKernel.vala:948 msgid "Downloading" -msgstr "" +msgstr "Pobieranie" #: src/Common/LinuxKernel.vala:969 msgid "is already installed." @@ -172,7 +156,7 @@ msgstr "Wywołano z" #: src/Common/Main.vala:352 msgid "" "This file is over-written and executed again whenever settings are saved in" -msgstr "" +msgstr "Ten plik jest nadpisywany i wykonywany ponownie za każdym razem, gdy ustawienia są zapisywane w" #: src/Common/Main.vala:384 msgid "Notifications are disabled" @@ -305,9 +289,8 @@ msgid "to list all commands" msgstr "do wyświetlenia wszystkich poleceń" #: src/Console/AppConsole.vala:312 -#, fuzzy msgid "Notifications disabled in settings" -msgstr "Powiadomienia są wyłączone" +msgstr "Powiadomienia wyłączone w ustawieniach" #: src/Console/AppConsole.vala:337 #, c-format @@ -324,7 +307,7 @@ msgstr "Zainstaluj" #: src/Console/AppConsole.vala:345 msgid "Previously notified" -msgstr "" +msgstr "Wcześniej zgłoszone" #: src/Gtk/AboutWindow.vala:162 src/Gtk/AboutWindow.vala:179 msgid "Credits" @@ -388,23 +371,23 @@ msgstr "Odinstaluj" #: src/Gtk/MainWindow.vala:284 msgid "Notes" -msgstr "" +msgstr "Notatki" #: src/Gtk/MainWindow.vala:289 msgid "User notes for" -msgstr "" +msgstr "Uwagi użytkownika dotyczące" #: src/Gtk/MainWindow.vala:305 msgid "Uninstall Old" msgstr "Odinstaluj stare" #: src/Gtk/MainWindow.vala:306 -msgid "Uninstall kernels older than running kernel" -msgstr "Odinstaluj jądra starsze niż uruchomione jądro" +msgid "Uninstall kernels older than latest installed" +msgstr "Odinstaluj jądra starsze niż ostatnio zainstalowane" #: src/Gtk/MainWindow.vala:311 msgid "Reload" -msgstr "Wczytaj ponownie" +msgstr "Przeładować" #: src/Gtk/MainWindow.vala:316 src/Gtk/SettingsDialog.vala:49 msgid "Settings" @@ -461,20 +444,19 @@ msgstr "Powiadom, jeśli pojawi się wersja punktowa" #: src/Gtk/SettingsDialog.vala:86 msgid "Seconds interval enabled for debugging" -msgstr "Interwał w sekundach włączony do debugowania" +msgstr "Interwał sekund włączony do debugowania" #: src/Gtk/SettingsDialog.vala:109 msgid "Check every" msgstr "Sprawdzaj co" #: src/Gtk/SettingsDialog.vala:134 -#, fuzzy msgid "Hours" -msgstr "godziny" +msgstr "godzin" #: src/Gtk/SettingsDialog.vala:136 msgid "Days" -msgstr "" +msgstr "dni" #: src/Gtk/SettingsDialog.vala:138 #, fuzzy @@ -482,9 +464,8 @@ msgid "Weeks" msgstr "tygodnie" #: src/Gtk/SettingsDialog.vala:141 -#, fuzzy msgid "Seconds" -msgstr "sekundy" +msgstr "sekund" #: src/Gtk/SettingsDialog.vala:147 msgid "Filters" @@ -495,9 +476,8 @@ msgid "Hide unstable and RC releases" msgstr "Ukryj wydania niestabilne i RC" #: src/Gtk/SettingsDialog.vala:177 -#, fuzzy msgid "previous major versions ( -1 = all )" -msgstr "poprzednie główne wersje" +msgstr "Poprzednie wersje główne ( -1 = wszystkie )" #: src/Gtk/SettingsDialog.vala:181 msgid "Network" @@ -509,7 +489,7 @@ msgstr "Limit czasu połączenia internetowego po" #: src/Gtk/SettingsDialog.vala:204 msgid "seconds" -msgstr "sekundach" +msgstr "sekund" #: src/Gtk/SettingsDialog.vala:211 msgid "Max concurrent downloads" @@ -517,7 +497,7 @@ msgstr "Maksymalna liczba jednoczesnych pobrań" #: src/Gtk/SettingsDialog.vala:225 msgid "Verify Checksums with the CHECKSUMS files" -msgstr "" +msgstr "Weryfikowanie sum kontrolnych za pomocą plików CHECKSUMS" #: src/Gtk/SettingsDialog.vala:233 msgid "Proxy" diff --git a/po/ru.po b/po/ru.po index 3e172dfd..721e4603 100644 --- a/po/ru.po +++ b/po/ru.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-04-02 01:20-0400\n" +"POT-Creation-Date: 2023-04-02 04:23-0400\n" "PO-Revision-Date: 2023-03-12 18:24+0300\n" "Last-Translator: Faust3000 (Original) | Danik2343 (Update Transaltion) " "\n" @@ -29,20 +29,19 @@ msgstr "Обновление ядер" #: src/Common/LinuxKernel.vala:250 msgid "loading cached" -msgstr "" +msgstr "загрузка в кэше" #: src/Common/LinuxKernel.vala:264 -#, fuzzy msgid "queuing download" -msgstr "Максимальное количество одновременных загрузок" +msgstr "загрузка очередей" #: src/Common/LinuxKernel.vala:287 msgid "Fetching individual kernel indexes" -msgstr "Получение индивидуальных индексов ядра" +msgstr "Получение отдельных индексов ядра" #: src/Common/LinuxKernel.vala:303 msgid "loading downloaded" -msgstr "" +msgstr "загрузка загруженных" #: src/Common/LinuxKernel.vala:339 msgid "Updating from" @@ -54,27 +53,12 @@ msgstr "OK" #: src/Common/LinuxKernel.vala:350 msgid "FAILED" -msgstr "" - -#: src/Common/LinuxKernel.vala:381 -#, fuzzy -msgid "latest_available" -msgstr "доступно" +msgstr "НЕУДАВШИЙСЯ" #: src/Common/LinuxKernel.vala:396 #, fuzzy msgid "Found installed" -msgstr "Установлено" - -#: src/Common/LinuxKernel.vala:499 -#, fuzzy -msgid "latest_installed" -msgstr "Установленные пакеты" - -#: src/Common/LinuxKernel.vala:500 -#, fuzzy -msgid "oldest_installed" -msgstr "Установлено" +msgstr "Найдено установленным" #: src/Common/LinuxKernel.vala:790 msgid "Packages Available" @@ -102,17 +86,16 @@ msgid "Running" msgstr "Используется" #: src/Common/LinuxKernel.vala:924 -msgid "CHECKSUMS enabled" -msgstr "" +msgid "enabled" +msgstr "включено" #: src/Common/LinuxKernel.vala:948 msgid "Downloading" -msgstr "" +msgstr "Загрузки" #: src/Common/LinuxKernel.vala:969 -#, fuzzy msgid "is already installed." -msgstr "Это ядро уже установлено." +msgstr "уже установлен." #: src/Common/LinuxKernel.vala:1003 msgid "Uninstalling selected kernels" @@ -123,9 +106,8 @@ msgid "requested" msgstr "запрошено" #: src/Common/LinuxKernel.vala:1012 -#, fuzzy msgid "not uninstalling the currently running kernel" -msgstr "пропуск текущего загруженного ядра" +msgstr "не удаляет текущее работающее ядро" #: src/Common/LinuxKernel.vala:1028 msgid "found" @@ -144,9 +126,8 @@ msgid "Could not find any kernels to uninstall" msgstr "Не удалось найти ядра для деинсталляции" #: src/Common/LinuxKernel.vala:1092 -#, fuzzy msgid "The following kernels will be uninstalled" -msgstr "Следующие ядра будут деинсталлированы:" +msgstr "Следующие ядра будут удалены" #: src/Common/LinuxKernel.vala:1096 msgid "Continue ?" @@ -177,7 +158,7 @@ msgstr "Вызван из" #: src/Common/Main.vala:352 msgid "" "This file is over-written and executed again whenever settings are saved in" -msgstr "" +msgstr "Этот файл перезаписывается и выполняется снова при сохранении настроек в" #: src/Common/Main.vala:384 msgid "Notifications are disabled" @@ -229,9 +210,8 @@ msgid "Uninstall specified kernel" msgstr "Установить указанное ядро" #: src/Console/AppConsole.vala:59 -#, fuzzy msgid "Uninstall kernels older than the latest installed" -msgstr "Удалить более старшие установленные ядра, чем используемое ядро" +msgstr "Удаление ядер старше последней установленной версии" #: src/Console/AppConsole.vala:60 msgid "Download specified kernels" @@ -267,12 +247,11 @@ msgstr "Строка версии, взятая из вывода --list" #: src/Console/AppConsole.vala:72 msgid "One or more, comma-seperated" -msgstr "" +msgstr "Один или несколько, разделенных запятыми" #: src/Console/AppConsole.vala:73 -#, fuzzy msgid "The currently running kernel will always be ignored" -msgstr "Следующие ядра будут деинсталлированы:" +msgstr "Текущее работающее ядро всегда будет игнорироваться" #: src/Console/AppConsole.vala:161 src/Gtk/AppGtk.vala:121 msgid "Unknown option" @@ -312,9 +291,8 @@ msgid "to list all commands" msgstr "чтобы перечислить все команды" #: src/Console/AppConsole.vala:312 -#, fuzzy msgid "Notifications disabled in settings" -msgstr "Уведомления отключены" +msgstr "Уведомления отключены в настройках" #: src/Console/AppConsole.vala:337 #, c-format @@ -331,7 +309,7 @@ msgstr "Установить" #: src/Console/AppConsole.vala:345 msgid "Previously notified" -msgstr "" +msgstr "Предварительно уведомлено" #: src/Gtk/AboutWindow.vala:162 src/Gtk/AboutWindow.vala:179 msgid "Credits" @@ -395,19 +373,19 @@ msgstr "Удалить" #: src/Gtk/MainWindow.vala:284 msgid "Notes" -msgstr "" +msgstr "Примечания" #: src/Gtk/MainWindow.vala:289 msgid "User notes for" -msgstr "" +msgstr "Примечания пользователя для" #: src/Gtk/MainWindow.vala:305 msgid "Uninstall Old" msgstr "Удалить старые" #: src/Gtk/MainWindow.vala:306 -msgid "Uninstall kernels older than running kernel" -msgstr "Удалить более старшие установленные ядра, чем используемое" +msgid "Uninstall kernels older than latest installed" +msgstr "Удаление ядер старше последних установленных" #: src/Gtk/MainWindow.vala:311 msgid "Reload" @@ -467,32 +445,28 @@ msgid "Notify if a point release is available" msgstr "Уведомлять, если доступно небольшое обновление" #: src/Gtk/SettingsDialog.vala:86 -#, fuzzy msgid "Seconds interval enabled for debugging" -msgstr "(Разрешение интервалов в секундах для --debug)" +msgstr "Интервал секунд включен для отладки" #: src/Gtk/SettingsDialog.vala:109 msgid "Check every" msgstr "Проверять каждые" #: src/Gtk/SettingsDialog.vala:134 -#, fuzzy msgid "Hours" -msgstr "Час(ов)" +msgstr "часов" #: src/Gtk/SettingsDialog.vala:136 msgid "Days" -msgstr "" +msgstr "дней" #: src/Gtk/SettingsDialog.vala:138 -#, fuzzy msgid "Weeks" -msgstr "Неделю(ли)" +msgstr "недель" #: src/Gtk/SettingsDialog.vala:141 -#, fuzzy msgid "Seconds" -msgstr "Секунду(ды)" +msgstr "секунд" #: src/Gtk/SettingsDialog.vala:147 msgid "Filters" @@ -503,9 +477,8 @@ msgid "Hide unstable and RC releases" msgstr "Скрыть нестабильные и релиз-кандидат версии" #: src/Gtk/SettingsDialog.vala:177 -#, fuzzy msgid "previous major versions ( -1 = all )" -msgstr "предыдущие основные версии" +msgstr "предыдущие основные версии ( -1 = все )" #: src/Gtk/SettingsDialog.vala:181 msgid "Network" @@ -525,11 +498,11 @@ msgstr "Максимальное количество одновременных #: src/Gtk/SettingsDialog.vala:225 msgid "Verify Checksums with the CHECKSUMS files" -msgstr "" +msgstr "Проверка контрольных сумм с помощью файлов CHECKSUMS" #: src/Gtk/SettingsDialog.vala:233 msgid "Proxy" -msgstr "" +msgstr "Доверенность" #: src/Gtk/l.gtk.vala:42 msgid "Missing Icon" diff --git a/po/sv.po b/po/sv.po index b547d4ed..c854130f 100644 --- a/po/sv.po +++ b/po/sv.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-04-02 01:20-0400\n" +"POT-Creation-Date: 2023-04-02 04:23-0400\n" "PO-Revision-Date: 2018-01-13 16:56+0100\n" "Last-Translator: Åke Engelbrektson \n" "Language-Team:Swedish\n" @@ -25,28 +25,27 @@ msgstr "Systemarkitektur" #: src/Common/LinuxKernel.vala:129 #, fuzzy msgid "Running kernel" -msgstr "Körs" +msgstr "Köra kernel" #: src/Common/LinuxKernel.vala:250 msgid "loading cached" -msgstr "" +msgstr "laddar cachelagrat" #: src/Common/LinuxKernel.vala:264 msgid "queuing download" -msgstr "" +msgstr "köbildning nedladdning" #: src/Common/LinuxKernel.vala:287 -#, fuzzy msgid "Fetching individual kernel indexes" -msgstr "Hämtar index för" +msgstr "Hämta enskilda kernelindex" #: src/Common/LinuxKernel.vala:303 msgid "loading downloaded" -msgstr "" +msgstr "laddar nedladdad" #: src/Common/LinuxKernel.vala:339 msgid "Updating from" -msgstr "" +msgstr "Uppdatering från" #: src/Common/LinuxKernel.vala:347 msgid "OK" @@ -54,27 +53,11 @@ msgstr "OK" #: src/Common/LinuxKernel.vala:350 msgid "FAILED" -msgstr "" - -#: src/Common/LinuxKernel.vala:381 -#, fuzzy -msgid "latest_available" -msgstr "Tillgängliga paket" +msgstr "MISSLYCKADES" #: src/Common/LinuxKernel.vala:396 -#, fuzzy msgid "Found installed" -msgstr "Installerad" - -#: src/Common/LinuxKernel.vala:499 -#, fuzzy -msgid "latest_installed" -msgstr "Installerade paket" - -#: src/Common/LinuxKernel.vala:500 -#, fuzzy -msgid "oldest_installed" -msgstr "Installerad" +msgstr "Hittade installerat" #: src/Common/LinuxKernel.vala:790 msgid "Packages Available" @@ -102,67 +85,60 @@ msgid "Running" msgstr "Körs" #: src/Common/LinuxKernel.vala:924 -msgid "CHECKSUMS enabled" -msgstr "" +msgid "enabled" +msgstr "aktiverat" #: src/Common/LinuxKernel.vala:948 msgid "Downloading" -msgstr "" +msgstr "Ladda ner" #: src/Common/LinuxKernel.vala:969 -#, fuzzy msgid "is already installed." -msgstr "Denna kärna är redan installerad" +msgstr "är redan installerat." #: src/Common/LinuxKernel.vala:1003 -#, fuzzy msgid "Uninstalling selected kernels" -msgstr "Installera specificerad kärna" +msgstr "Avinstallera valda kärnor" #: src/Common/LinuxKernel.vala:1009 msgid "requested" -msgstr "" +msgstr "begärd" #: src/Common/LinuxKernel.vala:1012 -#, fuzzy msgid "not uninstalling the currently running kernel" -msgstr "Installera specificerad kärna" +msgstr "Avinstallera inte den kärna som körs, för närvarande" #: src/Common/LinuxKernel.vala:1028 msgid "found" -msgstr "" +msgstr "grunda" #: src/Common/LinuxKernel.vala:1031 -#, fuzzy msgid "No packages to un-install!" -msgstr "Installerade paket" +msgstr "Inga paket att avinstallera!" #: src/Common/LinuxKernel.vala:1079 -#, fuzzy msgid "Could not find running kernel in list" -msgstr "Kunde inte hitta efterfrågad version" +msgstr "Det gick inte att hitta kernel som körs i listan" #: src/Common/LinuxKernel.vala:1084 -#, fuzzy msgid "Could not find any kernels to uninstall" -msgstr "Välj kärnor för borttagning" +msgstr "Det gick inte att hitta några kärnor att avinstallera" #: src/Common/LinuxKernel.vala:1092 -#, fuzzy msgid "The following kernels will be uninstalled" -msgstr "Denna kärna är redan installerad" +msgstr "Följande kärnor kommer att avinstalleras" #: src/Common/LinuxKernel.vala:1096 msgid "Continue ?" -msgstr "" +msgstr "Fortsätta?" #: src/Common/LinuxKernel.vala:1118 src/Console/AppConsole.vala:290 msgid "Latest update" -msgstr "" +msgstr "Senaste uppdatering" #: src/Common/LinuxKernel.vala:1129 src/Console/AppConsole.vala:297 msgid "Latest point update" -msgstr "" +msgstr "Senaste punktuppdatering" #: src/Common/LinuxKernel.vala:1137 src/Console/AppConsole.vala:302 #: src/Console/AppConsole.vala:318 @@ -172,26 +148,25 @@ msgstr "Inga uppdateringar hittades" #: src/Common/LinuxKernel.vala:1146 #, c-format msgid "Install Kernel Version %s ? (y/n): " -msgstr "" +msgstr "Installera kärnversion %s ? (j/n):" #: src/Common/Main.vala:351 msgid "Called from" -msgstr "" +msgstr "Ringde från" #: src/Common/Main.vala:352 msgid "" "This file is over-written and executed again whenever settings are saved in" -msgstr "" +msgstr "Den här filen skrivs över och körs igen när inställningar sparas i" #: src/Common/Main.vala:384 -#, fuzzy msgid "Notifications are disabled" -msgstr "Avisering" +msgstr "Meddelanden är inaktiverade" #: src/Common/Package.vala:58 -#, fuzzy, c-format +#, c-format msgid "File not found: %s" -msgstr "Filen kan inte hittas" +msgstr "Filen hittades inte: %s" #: src/Console/AppConsole.vala:47 src/Gtk/AppGtk.vala:135 msgid "Syntax" @@ -199,92 +174,83 @@ msgstr "Syntax" #: src/Console/AppConsole.vala:49 msgid "Commands" -msgstr "" +msgstr "Kommandon" #: src/Console/AppConsole.vala:51 msgid "Check for kernel updates" msgstr "Sök efter kärnuppdateringar" #: src/Console/AppConsole.vala:52 -#, fuzzy msgid "Check for kernel updates and notify current user" -msgstr "Sök efter kärnuppdateringar" +msgstr "Sök efter kärnuppdateringar och meddela aktuell användare" #: src/Console/AppConsole.vala:53 msgid "List all available mainline kernels" msgstr "Lista alla tillgängliga kärnor" #: src/Console/AppConsole.vala:54 -#, fuzzy msgid "List installed kernels" -msgstr "Lista tillgängliga kärnor" +msgstr "Lista installerade kärnor" #: src/Console/AppConsole.vala:55 -#, fuzzy msgid "Install latest mainline kernel" -msgstr "Installera specificerad kärna" +msgstr "Installera senaste mainline-kärnan" #: src/Console/AppConsole.vala:56 msgid "Install latest point update for current series" -msgstr "" +msgstr "Installera senaste punktuppdateringen för aktuella serier" #: src/Console/AppConsole.vala:57 msgid "Install specified mainline kernel" -msgstr "Installera specificerad kärna" +msgstr "Installera angiven huvudkärna" #: src/Console/AppConsole.vala:58 -#, fuzzy msgid "Uninstall specified kernel" -msgstr "Installera specificerad kärna" +msgstr "Avinstallera angiven kärna" #: src/Console/AppConsole.vala:59 -#, fuzzy msgid "Uninstall kernels older than the latest installed" -msgstr "Ta bort installerade kärnor äldre än den som körs" +msgstr "Avinstallera kärnor som är äldre än de senast installerade" #: src/Console/AppConsole.vala:60 -#, fuzzy msgid "Download specified kernels" -msgstr "Ladda ner paket för specificerad kärna" +msgstr "Ladda ner angivna kärnor" #: src/Console/AppConsole.vala:61 msgid "Delete cached info about available kernels" -msgstr "" +msgstr "Ta bort cachelagrad information om tillgängliga kärnor" #: src/Console/AppConsole.vala:63 src/Gtk/AppGtk.vala:137 msgid "Options" msgstr "Alternativ" #: src/Console/AppConsole.vala:65 -#, fuzzy msgid "Include unstable and RC releases" -msgstr "Dölj instabila- och RC-publiceringar" +msgstr "Inkludera instabila utgåvor och RC-utgåvor" #: src/Console/AppConsole.vala:66 -#, fuzzy msgid "Exclude unstable and RC releases" -msgstr "Dölj instabila- och RC-publiceringar" +msgstr "Exkludera instabila utgåvor och RC-utgåvor" #: src/Console/AppConsole.vala:67 msgid "Enable verbose debugging output" -msgstr "" +msgstr "Aktivera utförliga felsökningsutdata" #: src/Console/AppConsole.vala:68 msgid "Assume Yes for all prompts (non-interactive mode)" -msgstr "" +msgstr "Antag Ja för alla prompter (icke-interaktivt läge)" #: src/Console/AppConsole.vala:71 msgid "A version string taken from the output of --list" -msgstr "" +msgstr "En versionssträng som hämtas från utdata från --list" #: src/Console/AppConsole.vala:72 msgid "One or more, comma-seperated" -msgstr "" +msgstr "En eller flera, kommaseparerade" #: src/Console/AppConsole.vala:73 -#, fuzzy msgid "The currently running kernel will always be ignored" -msgstr "Denna kärna är redan installerad" +msgstr "Den kärna som för närvarande körs ignoreras alltid" #: src/Console/AppConsole.vala:161 src/Gtk/AppGtk.vala:121 msgid "Unknown option" @@ -292,18 +258,16 @@ msgstr "Okänt alternativ" #: src/Console/AppConsole.vala:162 src/Console/AppConsole.vala:248 #: src/Console/AppConsole.vala:276 -#, fuzzy msgid "Run" -msgstr "Körs" +msgstr "Kör" #: src/Console/AppConsole.vala:162 -#, fuzzy msgid "to list all options" -msgstr "Visa alla alternativ" +msgstr "för att lista alla alternativ" #: src/Console/AppConsole.vala:216 src/Console/AppConsole.vala:256 msgid "No kernels specified" -msgstr "" +msgstr "Inga kärnor angivna" #: src/Console/AppConsole.vala:222 msgid "Multiple kernels selected for installation. Select only one." @@ -315,30 +279,28 @@ msgstr "Kunde inte hitta efterfrågad version" #: src/Console/AppConsole.vala:248 msgid "and use a version string listed in first column" -msgstr "" +msgstr "och använd en versionssträng som anges i första kolumnen" #: src/Console/AppConsole.vala:275 msgid "Command not specified" -msgstr "" +msgstr "Kommandot har inte angetts" #: src/Console/AppConsole.vala:276 -#, fuzzy msgid "to list all commands" -msgstr "Visa alla alternativ" +msgstr "för att lista alla kommandon" #: src/Console/AppConsole.vala:312 -#, fuzzy msgid "Notifications disabled in settings" -msgstr "Avisering" +msgstr "Meddelanden inaktiverade i inställningarna" #: src/Console/AppConsole.vala:337 -#, fuzzy, c-format +#, c-format msgid "Kernel %s Available" -msgstr "Tillgängliga paket" +msgstr "Kernel %s tillgängliga" #: src/Console/AppConsole.vala:341 src/Gtk/SettingsDialog.vala:166 msgid "Show" -msgstr "" +msgstr "Visa" #: src/Console/AppConsole.vala:342 src/Gtk/MainWindow.vala:264 msgid "Install" @@ -346,7 +308,7 @@ msgstr "Installera" #: src/Console/AppConsole.vala:345 msgid "Previously notified" -msgstr "" +msgstr "Tidigare anmält" #: src/Gtk/AboutWindow.vala:162 src/Gtk/AboutWindow.vala:179 msgid "Credits" @@ -381,14 +343,12 @@ msgid "Documenters" msgstr "Dokumentalister" #: src/Gtk/AboutWindow.vala:244 -#, fuzzy msgid "Third Party Inclusions" msgstr "Tredjepartsverktyg" #: src/Gtk/AppGtk.vala:135 -#, fuzzy msgid "options" -msgstr "Alternativ" +msgstr "alternativ" #: src/Gtk/AppGtk.vala:139 msgid "Print debug information" @@ -413,25 +373,23 @@ msgstr "Installera" #: src/Gtk/MainWindow.vala:284 msgid "Notes" -msgstr "" +msgstr "Anteckningar" #: src/Gtk/MainWindow.vala:289 msgid "User notes for" -msgstr "" +msgstr "Användaranteckningar för" #: src/Gtk/MainWindow.vala:305 -#, fuzzy msgid "Uninstall Old" -msgstr "Avinstallation slutförd" +msgstr "Avinstallera Gamla" #: src/Gtk/MainWindow.vala:306 -#, fuzzy -msgid "Uninstall kernels older than running kernel" -msgstr "Ta bort installerade kärnor äldre än den som körs" +msgid "Uninstall kernels older than latest installed" +msgstr "Avinstallera kärnor som är äldre än senast installerade" #: src/Gtk/MainWindow.vala:311 msgid "Reload" -msgstr "" +msgstr "Reload" #: src/Gtk/MainWindow.vala:316 src/Gtk/SettingsDialog.vala:49 msgid "Settings" @@ -443,7 +401,7 @@ msgstr "Om" #: src/Gtk/MainWindow.vala:326 msgid "Exit" -msgstr "" +msgstr "Utgång" #: src/Gtk/MainWindow.vala:394 msgid "Kernel upgrade utility for Ubuntu-based distributions" @@ -451,25 +409,24 @@ msgstr "Kärnuppgraderingsverktyg för Ubuntu-baserade distributioner" #: src/Gtk/MainWindow.vala:395 msgid "Forked" -msgstr "" +msgstr "Kluven" #: src/Gtk/MainWindow.vala:395 msgid "Original" -msgstr "" +msgstr "Original" #: src/Gtk/MainWindow.vala:433 msgid "Updating kernels" -msgstr "" +msgstr "Uppdatera kärnor" #: src/Gtk/MainWindow.vala:504 -#, fuzzy msgid "available" -msgstr "Tillgängliga paket" +msgstr "tillgänglig" #: src/Gtk/MainWindow.vala:547 src/Gtk/MainWindow.vala:587 #: src/Gtk/MainWindow.vala:621 msgid "DONE" -msgstr "" +msgstr "FÄRDIG" #: src/Gtk/ProgressWindow.vala:126 src/Gtk/TerminalWindow.vala:151 msgid "Cancel" @@ -481,41 +438,39 @@ msgstr "Avisering" #: src/Gtk/SettingsDialog.vala:66 msgid "Notify if a major release is available" -msgstr "Meddela om en ny (stor) uppdatering finns tillgänglig" +msgstr "Meddela om en större version är tillgänglig" #: src/Gtk/SettingsDialog.vala:75 msgid "Notify if a point release is available" -msgstr "Meddela om en ny (mindre) uppdatering finns tillgänglig" +msgstr "Meddela om en punktrelease är tillgänglig" #: src/Gtk/SettingsDialog.vala:86 msgid "Seconds interval enabled for debugging" -msgstr "" +msgstr "Sekundintervall aktiverat för felsökning" #: src/Gtk/SettingsDialog.vala:109 msgid "Check every" msgstr "Kontrollera varje" #: src/Gtk/SettingsDialog.vala:134 -#, fuzzy msgid "Hours" -msgstr "Timma(r)" +msgstr "timmar" #: src/Gtk/SettingsDialog.vala:136 msgid "Days" -msgstr "" +msgstr "dagar" #: src/Gtk/SettingsDialog.vala:138 -#, fuzzy msgid "Weeks" -msgstr "Veckor" +msgstr "veckor" #: src/Gtk/SettingsDialog.vala:141 msgid "Seconds" -msgstr "" +msgstr "sekunder" #: src/Gtk/SettingsDialog.vala:147 msgid "Filters" -msgstr "" +msgstr "Filter" #: src/Gtk/SettingsDialog.vala:155 msgid "Hide unstable and RC releases" @@ -523,38 +478,36 @@ msgstr "Dölj instabila- och RC-publiceringar" #: src/Gtk/SettingsDialog.vala:177 msgid "previous major versions ( -1 = all )" -msgstr "" +msgstr "tidigare huvudversioner ( -1 = alla )" #: src/Gtk/SettingsDialog.vala:181 msgid "Network" -msgstr "" +msgstr "Nätverk" #: src/Gtk/SettingsDialog.vala:192 -#, fuzzy msgid "Internet connection timeout in" msgstr "Internetuppkopplingen är inte aktiv" #: src/Gtk/SettingsDialog.vala:204 msgid "seconds" -msgstr "" +msgstr "sekunder" #: src/Gtk/SettingsDialog.vala:211 msgid "Max concurrent downloads" -msgstr "" +msgstr "Max antal nedladdningar av konkurrenter" #: src/Gtk/SettingsDialog.vala:225 msgid "Verify Checksums with the CHECKSUMS files" -msgstr "" +msgstr "Verifiera kontrollsummor med CHECKSUMS-filerna" #: src/Gtk/SettingsDialog.vala:233 msgid "Proxy" -msgstr "" +msgstr "Proxyserver" #: src/Gtk/l.gtk.vala:42 msgid "Missing Icon" msgstr "Saknad ikon" #: src/lib/l.misc.vala:71 -#, fuzzy msgid "Can not reach site" -msgstr "Kunde inte läsa filen" +msgstr "Kan inte nå webbplatsen" diff --git a/po/tr.po b/po/tr.po index 4b9fc134..eb7da2f9 100644 --- a/po/tr.po +++ b/po/tr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-04-02 01:20-0400\n" +"POT-Creation-Date: 2023-04-02 04:23-0400\n" "PO-Revision-Date: 2022-08-06 16:48+0300\n" "Last-Translator: Sabri Ünal \n" "Language-Team: Turkish\n" @@ -22,31 +22,28 @@ msgid "Architecture" msgstr "Sistem mimarisi" #: src/Common/LinuxKernel.vala:129 -#, fuzzy msgid "Running kernel" -msgstr "Çalışıyor" +msgstr "Çalışan çekirdek" #: src/Common/LinuxKernel.vala:250 msgid "loading cached" -msgstr "" +msgstr "önbelleğe alınmış yükleme" #: src/Common/LinuxKernel.vala:264 -#, fuzzy msgid "queuing download" -msgstr "Azami eşzamanlı indirme" +msgstr "kuyruğa alma indirme" #: src/Common/LinuxKernel.vala:287 -#, fuzzy msgid "Fetching individual kernel indexes" -msgstr "İçerik dizini alınıyor..." +msgstr "Tek tek çekirdek dizinlerini alma" #: src/Common/LinuxKernel.vala:303 msgid "loading downloaded" -msgstr "" +msgstr "indirilen yükleniyor" #: src/Common/LinuxKernel.vala:339 msgid "Updating from" -msgstr "" +msgstr "Şuradan güncelleniyor" #: src/Common/LinuxKernel.vala:347 msgid "OK" @@ -54,27 +51,11 @@ msgstr "Tamam" #: src/Common/LinuxKernel.vala:350 msgid "FAILED" -msgstr "" - -#: src/Common/LinuxKernel.vala:381 -#, fuzzy -msgid "latest_available" -msgstr "mevcut" +msgstr "BAŞARISIZ" #: src/Common/LinuxKernel.vala:396 -#, fuzzy msgid "Found installed" -msgstr "Kurulu" - -#: src/Common/LinuxKernel.vala:499 -#, fuzzy -msgid "latest_installed" -msgstr "Kurulu Paketler" - -#: src/Common/LinuxKernel.vala:500 -#, fuzzy -msgid "oldest_installed" -msgstr "Kurulu" +msgstr "Yüklü bulundu" #: src/Common/LinuxKernel.vala:790 msgid "Packages Available" @@ -102,54 +83,48 @@ msgid "Running" msgstr "Çalışıyor" #: src/Common/LinuxKernel.vala:924 -msgid "CHECKSUMS enabled" -msgstr "" +msgid "enabled" +msgstr "etkin" #: src/Common/LinuxKernel.vala:948 msgid "Downloading" -msgstr "" +msgstr "Indiriyor" #: src/Common/LinuxKernel.vala:969 -#, fuzzy msgid "is already installed." -msgstr "Bu çekirdek zaten kurulu." +msgstr "zaten yüklü." #: src/Common/LinuxKernel.vala:1003 -#, fuzzy msgid "Uninstalling selected kernels" -msgstr "Belirtilen çekirdeğini kaldır" +msgstr "Seçili çekirdekleri kaldırma" #: src/Common/LinuxKernel.vala:1009 msgid "requested" -msgstr "" +msgstr "istenen" #: src/Common/LinuxKernel.vala:1012 -#, fuzzy msgid "not uninstalling the currently running kernel" -msgstr "Belirtilen çekirdeğini kaldır" +msgstr "çalışmakta olan çekirdeğin kaldırılmaması" #: src/Common/LinuxKernel.vala:1028 msgid "found" -msgstr "" +msgstr "kurmak" #: src/Common/LinuxKernel.vala:1031 -#, fuzzy msgid "No packages to un-install!" -msgstr "Kurulu Paketler" +msgstr "Kaldırılacak paket yok!" #: src/Common/LinuxKernel.vala:1079 -#, fuzzy msgid "Could not find running kernel in list" -msgstr "Çalışan sürüm listede bulunamadı!" +msgstr "Listede çalışan çekirdek bulunamadı" #: src/Common/LinuxKernel.vala:1084 msgid "Could not find any kernels to uninstall" msgstr "Kaldırılacak çekirdek bulunamadı" #: src/Common/LinuxKernel.vala:1092 -#, fuzzy msgid "The following kernels will be uninstalled" -msgstr "Aşağıdaki çekirdekler kaldırılacak:" +msgstr "Aşağıdaki çekirdekler kaldırılacaktır" #: src/Common/LinuxKernel.vala:1096 msgid "Continue ?" @@ -181,16 +156,16 @@ msgstr "Çağrı konumu" #: src/Common/Main.vala:352 msgid "" "This file is over-written and executed again whenever settings are saved in" -msgstr "" +msgstr "Bu dosyanın üzerine yazılır ve ayarlar her kaydedildiğinde yeniden yürütülür" #: src/Common/Main.vala:384 msgid "Notifications are disabled" msgstr "Bildirimler devre dışı bırakılmış" #: src/Common/Package.vala:58 -#, fuzzy, c-format +#, c-format msgid "File not found: %s" -msgstr "Dosya bulunamadı" +msgstr "Dosya bulunamadı: %s" #: src/Console/AppConsole.vala:47 src/Gtk/AppGtk.vala:135 msgid "Syntax" @@ -233,9 +208,8 @@ msgid "Uninstall specified kernel" msgstr "Belirtilen çekirdeğini kaldır" #: src/Console/AppConsole.vala:59 -#, fuzzy msgid "Uninstall kernels older than the latest installed" -msgstr "Çalışan çekirdekten daha eski çekirdekleri kaldır" +msgstr "En son yüklenenden daha eski çekirdekleri kaldırma" #: src/Console/AppConsole.vala:60 msgid "Download specified kernels" @@ -243,7 +217,7 @@ msgstr "Belirtilen çekirdekleri indir" #: src/Console/AppConsole.vala:61 msgid "Delete cached info about available kernels" -msgstr "" +msgstr "Kullanılabilir çekirdekler hakkında önbelleğe alınmış bilgileri silme" #: src/Console/AppConsole.vala:63 src/Gtk/AppGtk.vala:137 msgid "Options" @@ -254,9 +228,8 @@ msgid "Include unstable and RC releases" msgstr "Kararsız ve RC sürümleri dahil et" #: src/Console/AppConsole.vala:66 -#, fuzzy msgid "Exclude unstable and RC releases" -msgstr "Kararsız ve RC sürümleri dahil et" +msgstr "Kararsız ve RC sürümlerini hariç tutma" #: src/Console/AppConsole.vala:67 msgid "Enable verbose debugging output" @@ -272,12 +245,11 @@ msgstr "--list çıktısından alınan sürüm dizgesi" #: src/Console/AppConsole.vala:72 msgid "One or more, comma-seperated" -msgstr "" +msgstr "Bir veya daha fazla, virgülle ayrılmış" #: src/Console/AppConsole.vala:73 -#, fuzzy msgid "The currently running kernel will always be ignored" -msgstr "Aşağıdaki çekirdekler kaldırılacak:" +msgstr "Şu anda çalışan çekirdek her zaman yoksayılır" #: src/Console/AppConsole.vala:161 src/Gtk/AppGtk.vala:121 msgid "Unknown option" @@ -317,9 +289,8 @@ msgid "to list all commands" msgstr "tüm komutları listele" #: src/Console/AppConsole.vala:312 -#, fuzzy msgid "Notifications disabled in settings" -msgstr "Bildirimler devre dışı bırakılmış" +msgstr "Ayarlarda devre dışı bırakılan bildirimler" #: src/Console/AppConsole.vala:337 #, c-format @@ -336,7 +307,7 @@ msgstr "Kur" #: src/Console/AppConsole.vala:345 msgid "Previously notified" -msgstr "" +msgstr "Daha önce bildirilmiş" #: src/Gtk/AboutWindow.vala:162 src/Gtk/AboutWindow.vala:179 msgid "Credits" @@ -375,9 +346,8 @@ msgid "Third Party Inclusions" msgstr "Üçüncü Taraf Eklemeler" #: src/Gtk/AppGtk.vala:135 -#, fuzzy msgid "options" -msgstr "Seçenekler" +msgstr "seçenekler" #: src/Gtk/AppGtk.vala:139 msgid "Print debug information" @@ -401,23 +371,23 @@ msgstr "Kaldır" #: src/Gtk/MainWindow.vala:284 msgid "Notes" -msgstr "" +msgstr "Notlar" #: src/Gtk/MainWindow.vala:289 msgid "User notes for" -msgstr "" +msgstr "Kullanıcı notları" #: src/Gtk/MainWindow.vala:305 msgid "Uninstall Old" msgstr "Eskileri Kaldır" #: src/Gtk/MainWindow.vala:306 -msgid "Uninstall kernels older than running kernel" -msgstr "Çalışan çekirdekten daha eski çekirdekleri kaldır" +msgid "Uninstall kernels older than latest installed" +msgstr "En son yüklenenden daha eski çekirdekleri kaldırma" #: src/Gtk/MainWindow.vala:311 msgid "Reload" -msgstr "" +msgstr "Arjantin" #: src/Gtk/MainWindow.vala:316 src/Gtk/SettingsDialog.vala:49 msgid "Settings" @@ -429,7 +399,7 @@ msgstr "Hakkında" #: src/Gtk/MainWindow.vala:326 msgid "Exit" -msgstr "" +msgstr "Çıkış" #: src/Gtk/MainWindow.vala:394 msgid "Kernel upgrade utility for Ubuntu-based distributions" @@ -445,7 +415,7 @@ msgstr "Özgün" #: src/Gtk/MainWindow.vala:433 msgid "Updating kernels" -msgstr "" +msgstr "Çekirdekleri güncelleme" #: src/Gtk/MainWindow.vala:504 msgid "available" @@ -454,7 +424,7 @@ msgstr "mevcut" #: src/Gtk/MainWindow.vala:547 src/Gtk/MainWindow.vala:587 #: src/Gtk/MainWindow.vala:621 msgid "DONE" -msgstr "" +msgstr "YAPILMIŞ" #: src/Gtk/ProgressWindow.vala:126 src/Gtk/TerminalWindow.vala:151 msgid "Cancel" @@ -473,52 +443,46 @@ msgid "Notify if a point release is available" msgstr "Nokta sürüm mevcutsa bildir" #: src/Gtk/SettingsDialog.vala:86 -#, fuzzy msgid "Seconds interval enabled for debugging" -msgstr "(--debug için saniye cinsinden aralıklara izin verir)" +msgstr "Hata ayıklama için etkinleştirilen saniye aralığı" #: src/Gtk/SettingsDialog.vala:109 msgid "Check every" msgstr "Kontrol aralığı" #: src/Gtk/SettingsDialog.vala:134 -#, fuzzy msgid "Hours" -msgstr "Saat" +msgstr "saat" #: src/Gtk/SettingsDialog.vala:136 msgid "Days" -msgstr "" +msgstr "gün" #: src/Gtk/SettingsDialog.vala:138 -#, fuzzy msgid "Weeks" -msgstr "Hafta" +msgstr "hafta" #: src/Gtk/SettingsDialog.vala:141 -#, fuzzy msgid "Seconds" -msgstr "Saniye" +msgstr "saniye" #: src/Gtk/SettingsDialog.vala:147 msgid "Filters" -msgstr "" +msgstr "Filtre" #: src/Gtk/SettingsDialog.vala:155 msgid "Hide unstable and RC releases" msgstr "Kararsız ve RC sürümleri gizle" #: src/Gtk/SettingsDialog.vala:177 -#, fuzzy msgid "previous major versions ( -1 = all )" -msgstr "Önceki ana sürümleri gösterme sayısı " +msgstr "önceki ana sürümler ( -1 = tümü )" #: src/Gtk/SettingsDialog.vala:181 msgid "Network" -msgstr "" +msgstr "Ağ" #: src/Gtk/SettingsDialog.vala:192 -#, fuzzy msgid "Internet connection timeout in" msgstr "İnternet bağlantısı zaman aşımı " @@ -532,7 +496,7 @@ msgstr "Azami eşzamanlı indirme" #: src/Gtk/SettingsDialog.vala:225 msgid "Verify Checksums with the CHECKSUMS files" -msgstr "" +msgstr "Sağlama toplamlarını CHECKSUMS dosyalarıyla doğrulama" #: src/Gtk/SettingsDialog.vala:233 msgid "Proxy" diff --git a/po/uk.po b/po/uk.po index 2c865f73..f8778542 100644 --- a/po/uk.po +++ b/po/uk.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-04-02 01:20-0400\n" +"POT-Creation-Date: 2023-04-02 04:23-0400\n" "PO-Revision-Date: 2019-07-25 11:00+0300\n" "Last-Translator: Serhii Golovko \n" "Language-Team: Ukranian\n" @@ -22,31 +22,28 @@ msgid "Architecture" msgstr "Системна архитектура" #: src/Common/LinuxKernel.vala:129 -#, fuzzy msgid "Running kernel" -msgstr "Використовується" +msgstr "Запуск ядра" #: src/Common/LinuxKernel.vala:250 msgid "loading cached" -msgstr "" +msgstr "Завантаження кешованого" #: src/Common/LinuxKernel.vala:264 -#, fuzzy msgid "queuing download" -msgstr "Максимальна кількість завантажень" +msgstr "Черга завантаження" #: src/Common/LinuxKernel.vala:287 -#, fuzzy msgid "Fetching individual kernel indexes" -msgstr "Отримання окремих індексів ядра..." +msgstr "Вибірка окремих індексів ядра" #: src/Common/LinuxKernel.vala:303 msgid "loading downloaded" -msgstr "" +msgstr "Завантаження завантаженого" #: src/Common/LinuxKernel.vala:339 msgid "Updating from" -msgstr "" +msgstr "Оновлення з" #: src/Common/LinuxKernel.vala:347 msgid "OK" @@ -54,27 +51,11 @@ msgstr "Добре" #: src/Common/LinuxKernel.vala:350 msgid "FAILED" -msgstr "" - -#: src/Common/LinuxKernel.vala:381 -#, fuzzy -msgid "latest_available" -msgstr "доступний" +msgstr "НЕ ВДАЛОСЯ" #: src/Common/LinuxKernel.vala:396 -#, fuzzy msgid "Found installed" -msgstr "Встановлено" - -#: src/Common/LinuxKernel.vala:499 -#, fuzzy -msgid "latest_installed" -msgstr "Встановлені пакети" - -#: src/Common/LinuxKernel.vala:500 -#, fuzzy -msgid "oldest_installed" -msgstr "Встановлено" +msgstr "Знайдено встановленим" #: src/Common/LinuxKernel.vala:790 msgid "Packages Available" @@ -102,17 +83,16 @@ msgid "Running" msgstr "Використовується" #: src/Common/LinuxKernel.vala:924 -msgid "CHECKSUMS enabled" -msgstr "" +msgid "enabled" +msgstr "увімкнено" #: src/Common/LinuxKernel.vala:948 msgid "Downloading" -msgstr "" +msgstr "Завантаження" #: src/Common/LinuxKernel.vala:969 -#, fuzzy msgid "is already installed." -msgstr "Це ядро вже встановлено." +msgstr "вже встановлено." #: src/Common/LinuxKernel.vala:1003 msgid "Uninstalling selected kernels" @@ -123,9 +103,8 @@ msgid "requested" msgstr "запитуваний" #: src/Common/LinuxKernel.vala:1012 -#, fuzzy msgid "not uninstalling the currently running kernel" -msgstr "пропускаючи поточне завантажене ядро" +msgstr "Не видаляючи поточне запущене ядро" #: src/Common/LinuxKernel.vala:1028 msgid "found" @@ -144,9 +123,8 @@ msgid "Could not find any kernels to uninstall" msgstr "Не вдалося знайти жодне ядро для вилучення" #: src/Common/LinuxKernel.vala:1092 -#, fuzzy msgid "The following kernels will be uninstalled" -msgstr "Наступні ядра будуть видалені:" +msgstr "Наступні ядра будуть видалені" #: src/Common/LinuxKernel.vala:1096 msgid "Continue ?" @@ -177,16 +155,16 @@ msgstr "Викликано з" #: src/Common/Main.vala:352 msgid "" "This file is over-written and executed again whenever settings are saved in" -msgstr "" +msgstr "Цей файл перезаписується та виконується знову під час збереження налаштувань" #: src/Common/Main.vala:384 msgid "Notifications are disabled" msgstr "Повідомлення вимкнено" #: src/Common/Package.vala:58 -#, fuzzy, c-format +#, c-format msgid "File not found: %s" -msgstr "Файл не знайдено" +msgstr "Файл не знайдено: %s" #: src/Console/AppConsole.vala:47 src/Gtk/AppGtk.vala:135 msgid "Syntax" @@ -229,9 +207,8 @@ msgid "Uninstall specified kernel" msgstr "Видаліть конкретні ядра" #: src/Console/AppConsole.vala:59 -#, fuzzy msgid "Uninstall kernels older than the latest installed" -msgstr "Видаліть ядра, старші за запущене ядро" +msgstr "Видалення ядер, старіших за останні встановлені" #: src/Console/AppConsole.vala:60 msgid "Download specified kernels" @@ -247,11 +224,11 @@ msgstr "Параметри" #: src/Console/AppConsole.vala:65 msgid "Include unstable and RC releases" -msgstr "Включати нестабільні і RC" +msgstr "Включення нестабільних і RC-релізів" #: src/Console/AppConsole.vala:66 msgid "Exclude unstable and RC releases" -msgstr "Виключити нестабільні та RC випуски" +msgstr "Виключення нестабільних і RC-релізів" #: src/Console/AppConsole.vala:67 msgid "Enable verbose debugging output" @@ -267,12 +244,11 @@ msgstr "Рядок версій, взятий з виводу --list" #: src/Console/AppConsole.vala:72 msgid "One or more, comma-seperated" -msgstr "" +msgstr "Один або кілька розділених комами" #: src/Console/AppConsole.vala:73 -#, fuzzy msgid "The currently running kernel will always be ignored" -msgstr "Наступні ядра будуть видалені:" +msgstr "Поточне ядро, що працює, завжди буде ігноруватися" #: src/Console/AppConsole.vala:161 src/Gtk/AppGtk.vala:121 msgid "Unknown option" @@ -312,9 +288,8 @@ msgid "to list all commands" msgstr "щоб відобразити всі команди" #: src/Console/AppConsole.vala:312 -#, fuzzy msgid "Notifications disabled in settings" -msgstr "Повідомлення вимкнено" +msgstr "Сповіщення, вимкнені в налаштуваннях" #: src/Console/AppConsole.vala:337 #, c-format @@ -331,7 +306,7 @@ msgstr "Встановити" #: src/Console/AppConsole.vala:345 msgid "Previously notified" -msgstr "" +msgstr "Попередньо повідомлено" #: src/Gtk/AboutWindow.vala:162 src/Gtk/AboutWindow.vala:179 msgid "Credits" @@ -395,19 +370,19 @@ msgstr "Видалити" #: src/Gtk/MainWindow.vala:284 msgid "Notes" -msgstr "" +msgstr "Нотатки" #: src/Gtk/MainWindow.vala:289 msgid "User notes for" -msgstr "" +msgstr "Примітки користувача до" #: src/Gtk/MainWindow.vala:305 msgid "Uninstall Old" msgstr "Видалити старе" #: src/Gtk/MainWindow.vala:306 -msgid "Uninstall kernels older than running kernel" -msgstr "Видалити ядра, старіші за запущене ядро" +msgid "Uninstall kernels older than latest installed" +msgstr "Видалення ядер, старіших за останні встановлені" #: src/Gtk/MainWindow.vala:311 msgid "Reload" @@ -439,7 +414,7 @@ msgstr "Оригінал" #: src/Gtk/MainWindow.vala:433 msgid "Updating kernels" -msgstr "" +msgstr "Оновлення ядер" #: src/Gtk/MainWindow.vala:504 msgid "available" @@ -467,52 +442,46 @@ msgid "Notify if a point release is available" msgstr "Повідомити, чи доступний невеликий випуск" #: src/Gtk/SettingsDialog.vala:86 -#, fuzzy msgid "Seconds interval enabled for debugging" -msgstr "(Дозволити інтервали в секундах для --debug)" +msgstr "Увімкнено інтервал секунд для налагодження" #: src/Gtk/SettingsDialog.vala:109 msgid "Check every" msgstr "Перевіряти кожні" #: src/Gtk/SettingsDialog.vala:134 -#, fuzzy msgid "Hours" -msgstr "Година(Годин)" +msgstr "годин" #: src/Gtk/SettingsDialog.vala:136 msgid "Days" -msgstr "" +msgstr "днів" #: src/Gtk/SettingsDialog.vala:138 -#, fuzzy msgid "Weeks" -msgstr "Тиждень(ні)" +msgstr "тижнів" #: src/Gtk/SettingsDialog.vala:141 -#, fuzzy msgid "Seconds" -msgstr "Секунда(и)" +msgstr "секунд" #: src/Gtk/SettingsDialog.vala:147 msgid "Filters" -msgstr "" +msgstr "Фільтри" #: src/Gtk/SettingsDialog.vala:155 msgid "Hide unstable and RC releases" -msgstr "Приховати нестабільні і RC" +msgstr "Приховати нестабільні та RC випуски" #: src/Gtk/SettingsDialog.vala:177 -#, fuzzy msgid "previous major versions ( -1 = all )" -msgstr "Показати N попередніх основних версій " +msgstr "попередніх основних версій ( -1 = усі )" #: src/Gtk/SettingsDialog.vala:181 msgid "Network" -msgstr "" +msgstr "Мережа" #: src/Gtk/SettingsDialog.vala:192 -#, fuzzy msgid "Internet connection timeout in" msgstr "Час очікування підключення до Інтернету в " @@ -526,17 +495,16 @@ msgstr "Максимальна кількість завантажень" #: src/Gtk/SettingsDialog.vala:225 msgid "Verify Checksums with the CHECKSUMS files" -msgstr "" +msgstr "Перевірка Контрольні суми за допомогою файлів CHECKSUMS" #: src/Gtk/SettingsDialog.vala:233 msgid "Proxy" -msgstr "" +msgstr "Проксі" #: src/Gtk/l.gtk.vala:42 msgid "Missing Icon" msgstr "Нема значка" #: src/lib/l.misc.vala:71 -#, fuzzy msgid "Can not reach site" -msgstr "Не може дістатися" +msgstr "Не вдається дістатися до сайту" diff --git a/src/Common/LinuxKernel.vala b/src/Common/LinuxKernel.vala index 8bfb657a..42814949 100644 --- a/src/Common/LinuxKernel.vala +++ b/src/Common/LinuxKernel.vala @@ -378,7 +378,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { kernel_list.sort((a,b) => { return a.compare_to(b) * -1; }); kernel_latest_available = kernel_list[0]; - vprint(_("latest_available")+": "+kernel_latest_available.version_main,2); + vprint("latest_available: "+kernel_latest_available.version_main,2); } catch (Error e) { vprint(e.message,1,stderr); @@ -496,8 +496,8 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { } // log_debug("latest_available: "+kernel_latest_available.version_main); - vprint(_("latest_installed")+": "+kernel_latest_installed.version_main,2); - vprint(_("oldest_installed")+": "+kernel_oldest_installed.version_main,2); + vprint("latest_installed: "+kernel_latest_installed.version_main,2); + vprint("oldest_installed: "+kernel_oldest_installed.version_main,2); } // scan kernel_list for versions newer than latest installed @@ -921,7 +921,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { deb_checksum_list.clear(); foreach (string f in deb_url_list.keys) deb_checksum_list[f] = ""; if (App.verify_checksums) { - vprint(_("CHECKSUMS enabled"),2); + vprint("CHECKSUMS "+_("enabled"),2); if (!file_exists(cached_checksums_file)) { mgr.add_to_queue(new DownloadItem(checksums_file_uri,cache_subdir,"CHECKSUMS")); diff --git a/src/Gtk/MainWindow.vala b/src/Gtk/MainWindow.vala index 74e3fa16..eb53e149 100644 --- a/src/Gtk/MainWindow.vala +++ b/src/Gtk/MainWindow.vala @@ -303,7 +303,7 @@ public class MainWindow : Gtk.Window { // uninstall-old button = new Gtk.Button.with_label (_("Uninstall Old")); - button.set_tooltip_text(_("Uninstall kernels older than running kernel")); + button.set_tooltip_text(_("Uninstall kernels older than latest installed")); hbox.pack_start (button, true, true, 0); button.clicked.connect(do_purge); From 60e8f64b48a76ec3f9c3057b4397fa3c3d9a4201 Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Sun, 2 Apr 2023 07:09:33 -0400 Subject: [PATCH 291/567] 1.1.11 --- .deb_build_number.mak | 2 +- BRANDING.mak | 2 +- debian/changelog | 6 ++++++ 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/.deb_build_number.mak b/.deb_build_number.mak index e758261b..2038048d 100644 --- a/.deb_build_number.mak +++ b/.deb_build_number.mak @@ -1,3 +1,3 @@ # This file is generated by Makefile "make deb_build_number" -DEB_PKG_VERSION := 1.1.10 +DEB_PKG_VERSION := 1.1.11 DEB_BUILD_NUMBER := 0000 diff --git a/BRANDING.mak b/BRANDING.mak index c0e1743d..d97a83b1 100644 --- a/BRANDING.mak +++ b/BRANDING.mak @@ -3,7 +3,7 @@ VERSION_MAJOR = 1 VERSION_MINOR = 1 -VERSION_MICRO = 10 +VERSION_MICRO = 11 BRANDING_SHORTNAME = mainline BRANDING_LONGNAME = Ubuntu Mainline Kernel Installer BRANDING_AUTHORNAME = Brian K. White diff --git a/debian/changelog b/debian/changelog index f4c50ca9..9771e1a9 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +mainline (1.1.11) unstable; urgency=medium + + * update translations + + -- Brian K. White Sun, 02 Apr 2023 07:07:30 -0400 + mainline (1.1.10) unstable; urgency=medium * bugfix - when verify_checksums disabled, fixes github.com/bkw777/mainline/issues/215 From d4d6e31cb7db4c298c44bb998f10815b835c45b5 Mon Sep 17 00:00:00 2001 From: Danik2343 <38865696+Danik2343@users.noreply.github.com> Date: Sun, 2 Apr 2023 17:51:13 +0300 Subject: [PATCH 292/567] Ru Lang Update --- po/ru.po | 19 ++++++++----------- 1 file changed, 8 insertions(+), 11 deletions(-) diff --git a/po/ru.po b/po/ru.po index 721e4603..43954d81 100644 --- a/po/ru.po +++ b/po/ru.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-04-02 04:23-0400\n" -"PO-Revision-Date: 2023-03-12 18:24+0300\n" +"PO-Revision-Date: 2023-04-02 17:50+0300\n" "Last-Translator: Faust3000 (Original) | Danik2343 (Update Transaltion) " "\n" "Language-Team: Russian\n" @@ -23,9 +23,8 @@ msgid "Architecture" msgstr "Архитектура" #: src/Common/LinuxKernel.vala:129 -#, fuzzy msgid "Running kernel" -msgstr "Обновление ядер" +msgstr "Запущенное ядро" #: src/Common/LinuxKernel.vala:250 msgid "loading cached" @@ -56,9 +55,8 @@ msgid "FAILED" msgstr "НЕУДАВШИЙСЯ" #: src/Common/LinuxKernel.vala:396 -#, fuzzy msgid "Found installed" -msgstr "Найдено установленным" +msgstr "Найдено установлененное" #: src/Common/LinuxKernel.vala:790 msgid "Packages Available" @@ -454,19 +452,19 @@ msgstr "Проверять каждые" #: src/Gtk/SettingsDialog.vala:134 msgid "Hours" -msgstr "часов" +msgstr "Часов" #: src/Gtk/SettingsDialog.vala:136 msgid "Days" -msgstr "дней" +msgstr "Дней" #: src/Gtk/SettingsDialog.vala:138 msgid "Weeks" -msgstr "недель" +msgstr "Недель" #: src/Gtk/SettingsDialog.vala:141 msgid "Seconds" -msgstr "секунд" +msgstr "Секунд" #: src/Gtk/SettingsDialog.vala:147 msgid "Filters" @@ -509,6 +507,5 @@ msgid "Missing Icon" msgstr "Значок отсутствует" #: src/lib/l.misc.vala:71 -#, fuzzy msgid "Can not reach site" -msgstr "Не удается получить" +msgstr "Не удается связаться с сайтом" From 0325a823dbbdb7261509085d1aaadb146199fe48 Mon Sep 17 00:00:00 2001 From: "Brian K. White" <54458165+bkw777@users.noreply.github.com> Date: Sun, 2 Apr 2023 12:21:19 -0400 Subject: [PATCH 293/567] Update README.md --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index 05aca7c4..1ffe3e7f 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,6 @@ +# Known Issue in 1.1.9 : assertion 'cksum != NULL'
Work-Around: Settings -> enable Verify Checksums
As soon as the ppa updates to 1.1.11 the problem will be gone. +---- + # Ubuntu Mainline Kernel Installer A tool for installing the latest Linux kernels from the [ubuntu mainline ppa](https://kernel.ubuntu.com/~kernel-ppa/mainline/) onto debian-based distributions. From e0abe0d6ec478222e987e2038824d0b18ca6b2ca Mon Sep 17 00:00:00 2001 From: Matthaiks <3577122+Matthaiks@users.noreply.github.com> Date: Sun, 2 Apr 2023 21:32:18 +0200 Subject: [PATCH 294/567] Update Polish translation --- po/pl.po | 40 +++++++++++++++++++--------------------- 1 file changed, 19 insertions(+), 21 deletions(-) diff --git a/po/pl.po b/po/pl.po index 3f31d131..b66e511a 100644 --- a/po/pl.po +++ b/po/pl.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-04-02 04:23-0400\n" -"PO-Revision-Date: 2023-03-11 12:47+0100\n" +"PO-Revision-Date: 2023-04-02 21:31+0200\n" "Last-Translator: Matthaiks\n" "Language-Team: Polish\n" "Language: pl\n" @@ -21,21 +21,20 @@ msgid "Architecture" msgstr "Architektura" #: src/Common/LinuxKernel.vala:129 -#, fuzzy msgid "Running kernel" -msgstr "Aktualizowanie jąder" +msgstr "Uruchomione jądro" #: src/Common/LinuxKernel.vala:250 msgid "loading cached" -msgstr "ładuje buforowanego" +msgstr "ładowanie z pamięci podręcznej" #: src/Common/LinuxKernel.vala:264 msgid "queuing download" -msgstr "kolejkowanie do pobrania" +msgstr "pobieranie w kolejce" #: src/Common/LinuxKernel.vala:287 msgid "Fetching individual kernel indexes" -msgstr "Pobieranie poszczególnych indeksów jądra" +msgstr "Pobieranie indywidualnych indeksów jądra" #: src/Common/LinuxKernel.vala:303 msgid "loading downloaded" @@ -54,9 +53,8 @@ msgid "FAILED" msgstr "NIEPOWODZENIE" #: src/Common/LinuxKernel.vala:396 -#, fuzzy msgid "Found installed" -msgstr "Zainstalowane" +msgstr "Znaleziono zainstalowane" #: src/Common/LinuxKernel.vala:790 msgid "Packages Available" @@ -156,7 +154,9 @@ msgstr "Wywołano z" #: src/Common/Main.vala:352 msgid "" "This file is over-written and executed again whenever settings are saved in" -msgstr "Ten plik jest nadpisywany i wykonywany ponownie za każdym razem, gdy ustawienia są zapisywane w" +msgstr "" +"Ten plik jest nadpisywany i wykonywany ponownie za każdym razem, gdy " +"ustawienia są zapisywane w" #: src/Common/Main.vala:384 msgid "Notifications are disabled" @@ -307,7 +307,7 @@ msgstr "Zainstaluj" #: src/Console/AppConsole.vala:345 msgid "Previously notified" -msgstr "Wcześniej zgłoszone" +msgstr "Wcześniej powiadomiono" #: src/Gtk/AboutWindow.vala:162 src/Gtk/AboutWindow.vala:179 msgid "Credits" @@ -375,7 +375,7 @@ msgstr "Notatki" #: src/Gtk/MainWindow.vala:289 msgid "User notes for" -msgstr "Uwagi użytkownika dotyczące" +msgstr "Notatki użytkownika dotyczące" #: src/Gtk/MainWindow.vala:305 msgid "Uninstall Old" @@ -387,7 +387,7 @@ msgstr "Odinstaluj jądra starsze niż ostatnio zainstalowane" #: src/Gtk/MainWindow.vala:311 msgid "Reload" -msgstr "Przeładować" +msgstr "Wczytaj ponownie" #: src/Gtk/MainWindow.vala:316 src/Gtk/SettingsDialog.vala:49 msgid "Settings" @@ -444,7 +444,7 @@ msgstr "Powiadom, jeśli pojawi się wersja punktowa" #: src/Gtk/SettingsDialog.vala:86 msgid "Seconds interval enabled for debugging" -msgstr "Interwał sekund włączony do debugowania" +msgstr "Interwał w sekundach włączony do debugowania" #: src/Gtk/SettingsDialog.vala:109 msgid "Check every" @@ -452,20 +452,19 @@ msgstr "Sprawdzaj co" #: src/Gtk/SettingsDialog.vala:134 msgid "Hours" -msgstr "godzin" +msgstr "godziny" #: src/Gtk/SettingsDialog.vala:136 msgid "Days" msgstr "dni" #: src/Gtk/SettingsDialog.vala:138 -#, fuzzy msgid "Weeks" msgstr "tygodnie" #: src/Gtk/SettingsDialog.vala:141 msgid "Seconds" -msgstr "sekund" +msgstr "sekundy" #: src/Gtk/SettingsDialog.vala:147 msgid "Filters" @@ -477,7 +476,7 @@ msgstr "Ukryj wydania niestabilne i RC" #: src/Gtk/SettingsDialog.vala:177 msgid "previous major versions ( -1 = all )" -msgstr "Poprzednie wersje główne ( -1 = wszystkie )" +msgstr "poprzednie główne wersje ( -1 = wszystkie )" #: src/Gtk/SettingsDialog.vala:181 msgid "Network" @@ -489,7 +488,7 @@ msgstr "Limit czasu połączenia internetowego po" #: src/Gtk/SettingsDialog.vala:204 msgid "seconds" -msgstr "sekund" +msgstr "sekundy" #: src/Gtk/SettingsDialog.vala:211 msgid "Max concurrent downloads" @@ -501,13 +500,12 @@ msgstr "Weryfikowanie sum kontrolnych za pomocą plików CHECKSUMS" #: src/Gtk/SettingsDialog.vala:233 msgid "Proxy" -msgstr "" +msgstr "Serwer pośredniczący" #: src/Gtk/l.gtk.vala:42 msgid "Missing Icon" msgstr "Brakująca ikona" #: src/lib/l.misc.vala:71 -#, fuzzy msgid "Can not reach site" -msgstr "Nie można dotrzeć" +msgstr "Nie można dotrzeć do witryny" From ced4660b49d10805d2785c36bf70b65fb22354fa Mon Sep 17 00:00:00 2001 From: "Brian K. White" <54458165+bkw777@users.noreply.github.com> Date: Sun, 2 Apr 2023 21:50:14 -0400 Subject: [PATCH 295/567] Update README.md --- README.md | 3 --- 1 file changed, 3 deletions(-) diff --git a/README.md b/README.md index 1ffe3e7f..05aca7c4 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,3 @@ -# Known Issue in 1.1.9 : assertion 'cksum != NULL'
Work-Around: Settings -> enable Verify Checksums
As soon as the ppa updates to 1.1.11 the problem will be gone. ----- - # Ubuntu Mainline Kernel Installer A tool for installing the latest Linux kernels from the [ubuntu mainline ppa](https://kernel.ubuntu.com/~kernel-ppa/mainline/) onto debian-based distributions. From 6468e57c2ad89714bd1576003559c7154267d9ab Mon Sep 17 00:00:00 2001 From: venerdi2 Date: Mon, 3 Apr 2023 17:14:43 +0200 Subject: [PATCH 296/567] Update it.po --- po/it.po | 31 +++++++++++++++---------------- 1 file changed, 15 insertions(+), 16 deletions(-) diff --git a/po/it.po b/po/it.po index c207a3e1..1273f9a2 100644 --- a/po/it.po +++ b/po/it.po @@ -26,12 +26,12 @@ msgstr "Aggiornamento dei kernel" #: src/Common/LinuxKernel.vala:250 msgid "loading cached" -msgstr "Caricamento memorizzato nella cache" +msgstr "Caricamento file della cache" #: src/Common/LinuxKernel.vala:264 #, fuzzy msgid "queuing download" -msgstr "code scaricare" +msgstr "download in coda" #: src/Common/LinuxKernel.vala:287 #, fuzzy @@ -40,7 +40,7 @@ msgstr "Recupero dei singoli indici del kernel" #: src/Common/LinuxKernel.vala:303 msgid "loading downloaded" -msgstr "caricamento scaricati" +msgstr "caricamento dei file scaricati" #: src/Common/LinuxKernel.vala:339 msgid "Updating from" @@ -90,7 +90,7 @@ msgstr "abilitato" #: src/Common/LinuxKernel.vala:948 msgid "Downloading" -msgstr "Scaricare" +msgstr "Scaricamento" #: src/Common/LinuxKernel.vala:969 #, fuzzy @@ -158,7 +158,7 @@ msgstr "Installare la versione del kernel %s ? (y/n): " #: src/Common/Main.vala:351 msgid "Called from" -msgstr "Chiamata da" +msgstr "Chiamato da" #: src/Common/Main.vala:352 msgid "" @@ -190,9 +190,8 @@ msgstr "Verifica aggiornamenti del kernel" #: src/Console/AppConsole.vala:52 msgid "Check for kernel updates and notify current user" -msgstr "" -"Verifica la disponibilità di aggiornamenti del kernel ed avvisa l'utente " -"corrente" +msgstr "Verifica la disponibilità di aggiornamenti del kernel" +"ed avvisa l'utente corrente" #: src/Console/AppConsole.vala:53 msgid "List all available mainline kernels" @@ -229,7 +228,7 @@ msgstr "Scarica i kernel specificati" #: src/Console/AppConsole.vala:61 msgid "Delete cached info about available kernels" -msgstr "Elimina le informazioni memorizzate nella cache sui kernel disponibili" +msgstr "Elimina le informazioni sui kernel disponibili dalla cache " #: src/Console/AppConsole.vala:63 src/Gtk/AppGtk.vala:137 msgid "Options" @@ -263,7 +262,7 @@ msgstr "Uno o più, separati da virgola" #: src/Console/AppConsole.vala:73 #, fuzzy msgid "The currently running kernel will always be ignored" -msgstr "Il kernel attualmente in esecuzione verrà sempre ignorato" +msgstr "Il kernel attualmente in esecuzione sarà sempre ignorato" #: src/Console/AppConsole.vala:161 src/Gtk/AppGtk.vala:121 msgid "Unknown option" @@ -276,7 +275,7 @@ msgstr "In corso" #: src/Console/AppConsole.vala:162 msgid "to list all options" -msgstr "Elencare tutte le opzioni" +msgstr "elencare tutte le opzioni" #: src/Console/AppConsole.vala:216 src/Console/AppConsole.vala:256 msgid "No kernels specified" @@ -363,7 +362,7 @@ msgstr "Inclusioni di terze parti" #: src/Gtk/AppGtk.vala:135 #, fuzzy msgid "options" -msgstr "Opzioni" +msgstr "opzioni" #: src/Gtk/AppGtk.vala:139 msgid "Print debug information" @@ -391,7 +390,7 @@ msgstr "Note" #: src/Gtk/MainWindow.vala:289 msgid "User notes for" -msgstr "Note utente per" +msgstr "Note dell'utente per" #: src/Gtk/MainWindow.vala:305 msgid "Uninstall Old" @@ -471,7 +470,7 @@ msgstr "Controlla ogni" #: src/Gtk/SettingsDialog.vala:134 #, fuzzy msgid "Hours" -msgstr "Orario" +msgstr "Ore" #: src/Gtk/SettingsDialog.vala:136 msgid "Days" @@ -485,7 +484,7 @@ msgstr "Settimane" #: src/Gtk/SettingsDialog.vala:141 #, fuzzy msgid "Seconds" -msgstr "Secondo(i)" +msgstr "Secondi" #: src/Gtk/SettingsDialog.vala:147 msgid "Filters" @@ -498,7 +497,7 @@ msgstr "Nascondi versioni instabili e rilasci RC" #: src/Gtk/SettingsDialog.vala:177 #, fuzzy msgid "previous major versions ( -1 = all )" -msgstr "versioni principali precedenti" +msgstr "versioni principali precedenti ( -1 = tutte )" #: src/Gtk/SettingsDialog.vala:181 msgid "Network" From 118a79a38bef241c2a13c706d6de976c3369b362 Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Mon, 3 Apr 2023 20:25:29 -0400 Subject: [PATCH 297/567] translations --- Makefile | 5 +- po/de.po | 104 ++++++++++--------------- po/el.po | 109 ++++++++++---------------- po/es.po | 147 ++++++++++++++---------------------- po/fr.po | 111 ++++++++++----------------- po/hr.po | 118 +++++++++++------------------ po/it.po | 86 ++++++++------------- po/ko.po | 53 ++++++------- po/messages.pot | 54 ++++++------- po/nl.po | 57 +++++++------- po/pl.po | 53 ++++++------- po/ru.po | 56 +++++++------- po/sv.po | 53 ++++++------- po/tr.po | 56 +++++++------- po/uk.po | 56 +++++++------- src/Common/LinuxKernel.vala | 3 +- src/Console/AppConsole.vala | 2 +- src/Gtk/MainWindow.vala | 2 +- 18 files changed, 466 insertions(+), 659 deletions(-) diff --git a/Makefile b/Makefile index 8799ec8d..43e55d85 100644 --- a/Makefile +++ b/Makefile @@ -115,10 +115,9 @@ install: all cp -dpr --no-preserve=ownership -t "$(DESTDIR)$(libdir)/$(BRANDING_SHORTNAME)" lib/* # install -m 0644 share/polkit-1/actions/$(BRANDING_SHORTNAME).policy "$(DESTDIR)$(polkitdir)" install -m 0755 $(BRANDING_SHORTNAME).desktop "$(DESTDIR)$(launcherdir)" - for p in $(po_files) ; do \ - l=$${p##*/} l=$${l%.*}; \ + for p in $(po_files) ; do l=$${p##*/} l=$${l%.*}; echo -n "$${l}: "; \ mkdir -p "$(DESTDIR)$(localedir)/$${l}/LC_MESSAGES"; \ - msgfmt --check --verbose -o "$(DESTDIR)$(localedir)/$${l}/LC_MESSAGES/$(BRANDING_SHORTNAME).mo" $${p} ; \ + msgfmt --check --verbose -o "$(DESTDIR)$(localedir)/$${l}/LC_MESSAGES/$(BRANDING_SHORTNAME).mo" $${p}; \ done install -m 0755 $(BRANDING_SHORTNAME) "$(DESTDIR)$(bindir)" install -m 0755 $(BRANDING_SHORTNAME)-gtk "$(DESTDIR)$(bindir)" diff --git a/po/de.po b/po/de.po index e151d449..1aaa23d2 100644 --- a/po/de.po +++ b/po/de.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-04-02 04:23-0400\n" +"POT-Creation-Date: 2023-04-03 19:46-0400\n" "PO-Revision-Date: 2023-02-20 18:40+0100\n" "Last-Translator: Marvin Meysel \n" "Language-Team: German\n" @@ -22,23 +22,20 @@ msgid "Architecture" msgstr "Architektur" #: src/Common/LinuxKernel.vala:129 -#, fuzzy msgid "Running kernel" -msgstr "Läuft" +msgstr "Laufender kernel" #: src/Common/LinuxKernel.vala:250 msgid "loading cached" msgstr "laden gecached" #: src/Common/LinuxKernel.vala:264 -#, fuzzy msgid "queuing download" msgstr "download der warteschlange" #: src/Common/LinuxKernel.vala:287 -#, fuzzy msgid "Fetching individual kernel indexes" -msgstr "Index abrufen..." +msgstr "Abrufen einzelner Kernel-Indizes" #: src/Common/LinuxKernel.vala:303 msgid "loading downloaded" @@ -57,103 +54,96 @@ msgid "FAILED" msgstr "MISSLUNGEN" #: src/Common/LinuxKernel.vala:396 -#, fuzzy msgid "Found installed" -msgstr "Installiert" +msgstr "Installiert gefunden" #: src/Common/LinuxKernel.vala:790 msgid "Packages Available" msgstr "Verfügbare Pakete" -#: src/Common/LinuxKernel.vala:795 +#: src/Common/LinuxKernel.vala:796 msgid "Packages Installed" msgstr "Installierte Pakete" -#: src/Common/LinuxKernel.vala:816 src/lib/TeeJee.FileSystem.vala:118 +#: src/Common/LinuxKernel.vala:817 src/lib/TeeJee.FileSystem.vala:118 msgid "File not found" msgstr "Datei nicht gefunden " -#: src/Common/LinuxKernel.vala:883 +#: src/Common/LinuxKernel.vala:884 msgid "Available Kernels" msgstr "Verfügbare Kernel" -#: src/Common/LinuxKernel.vala:890 src/Gtk/MainWindow.vala:154 +#: src/Common/LinuxKernel.vala:891 src/Gtk/MainWindow.vala:154 msgid "Installed" msgstr "Installiert" -#: src/Common/LinuxKernel.vala:890 src/Gtk/MainWindow.vala:154 +#: src/Common/LinuxKernel.vala:891 src/Gtk/MainWindow.vala:154 #: src/Gtk/MainWindow.vala:495 src/Gtk/MainWindow.vala:508 msgid "Running" msgstr "Läuft" -#: src/Common/LinuxKernel.vala:924 +#: src/Common/LinuxKernel.vala:925 msgid "enabled" msgstr "ermöglichte" -#: src/Common/LinuxKernel.vala:948 +#: src/Common/LinuxKernel.vala:949 msgid "Downloading" msgstr "Laden" -#: src/Common/LinuxKernel.vala:969 -#, fuzzy +#: src/Common/LinuxKernel.vala:970 msgid "is already installed." -msgstr "Dieser Kernel ist bereits installiert." +msgstr "ist bereits installiert." -#: src/Common/LinuxKernel.vala:1003 -#, fuzzy +#: src/Common/LinuxKernel.vala:1004 msgid "Uninstalling selected kernels" msgstr "Deinstallation des angegebenen Kernels" -#: src/Common/LinuxKernel.vala:1009 +#: src/Common/LinuxKernel.vala:1010 msgid "requested" msgstr "angefordert" -#: src/Common/LinuxKernel.vala:1012 -#, fuzzy +#: src/Common/LinuxKernel.vala:1013 msgid "not uninstalling the currently running kernel" -msgstr "Deinstallation des angegebenen Kernels" +msgstr "Den aktuell laufenden Kernel wird nicht deinstalliert" -#: src/Common/LinuxKernel.vala:1028 +#: src/Common/LinuxKernel.vala:1029 msgid "found" msgstr "gründen" -#: src/Common/LinuxKernel.vala:1031 -#, fuzzy +#: src/Common/LinuxKernel.vala:1032 msgid "No packages to un-install!" -msgstr "Installierte Pakete" +msgstr "Keine Pakete zum Deinstallieren!" -#: src/Common/LinuxKernel.vala:1079 -#, fuzzy +#: src/Common/LinuxKernel.vala:1080 msgid "Could not find running kernel in list" -msgstr "Konnte keinen laufenden Kernel in der Liste finden!" +msgstr "Konnte keinen laufenden Kernel in der Liste finden" -#: src/Common/LinuxKernel.vala:1084 +#: src/Common/LinuxKernel.vala:1085 msgid "Could not find any kernels to uninstall" msgstr "Es konnten keine Kernel zum Deinstallieren gefunden werden" -#: src/Common/LinuxKernel.vala:1092 -#, fuzzy +#: src/Common/LinuxKernel.vala:1093 msgid "The following kernels will be uninstalled" -msgstr "Die folgenden Kernel werden deinstalliert:" +msgstr "Die folgenden Kernel werden deinstalliert" -#: src/Common/LinuxKernel.vala:1096 +#: src/Common/LinuxKernel.vala:1097 msgid "Continue ?" msgstr "Weiter ?" -#: src/Common/LinuxKernel.vala:1118 src/Console/AppConsole.vala:290 +#: src/Common/LinuxKernel.vala:1119 src/Console/AppConsole.vala:290 msgid "Latest update" msgstr "Neustes Update" -#: src/Common/LinuxKernel.vala:1129 src/Console/AppConsole.vala:297 +#: src/Common/LinuxKernel.vala:1130 src/Console/AppConsole.vala:297 msgid "Latest point update" msgstr "Letzte Punktaktualisierung" -#: src/Common/LinuxKernel.vala:1137 src/Console/AppConsole.vala:302 +#: src/Common/LinuxKernel.vala:1138 src/Console/AppConsole.vala:302 #: src/Console/AppConsole.vala:318 msgid "No updates found" msgstr "Keine Updates gefunden" -#: src/Common/LinuxKernel.vala:1146 +#: src/Common/LinuxKernel.vala:1147 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Kernel-Version %s installieren? (j/n):" @@ -173,9 +163,9 @@ msgid "Notifications are disabled" msgstr "Benachrichtigungen sind deaktiviert" #: src/Common/Package.vala:58 -#, fuzzy, c-format +#, c-format msgid "File not found: %s" -msgstr "Datei nicht gefunden " +msgstr "Datei nicht gefunden: %s" #: src/Console/AppConsole.vala:47 src/Gtk/AppGtk.vala:135 msgid "Syntax" @@ -218,10 +208,9 @@ msgstr "Angegebenen Mainline-Kernel installieren" msgid "Uninstall specified kernel" msgstr "Deinstallation des angegebenen Kernels" -#: src/Console/AppConsole.vala:59 -#, fuzzy -msgid "Uninstall kernels older than the latest installed" -msgstr "Deinstallation von Kerneln, die älter sind als der aktuelle Kernel" +#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:306 +msgid "Uninstall all but the highest installed version" +msgstr "Deinstallieren Sie alle bis auf die höchste installierte Version" #: src/Console/AppConsole.vala:60 msgid "Download specified kernels" @@ -240,7 +229,6 @@ msgid "Include unstable and RC releases" msgstr "Unstable- und RC-Versionen einschließen" #: src/Console/AppConsole.vala:66 -#, fuzzy msgid "Exclude unstable and RC releases" msgstr "Ausschluss von Unstable- und RC-Veröffentlichungen" @@ -261,9 +249,8 @@ msgid "One or more, comma-seperated" msgstr "Ein oder mehrere, durch Kommas getrennte" #: src/Console/AppConsole.vala:73 -#, fuzzy msgid "The currently running kernel will always be ignored" -msgstr "Die folgenden Kernel werden deinstalliert:" +msgstr "Der aktuell laufende Kernel wird immer ignoriert" #: src/Console/AppConsole.vala:161 src/Gtk/AppGtk.vala:121 msgid "Unknown option" @@ -305,7 +292,6 @@ msgid "to list all commands" msgstr "um alle Befehle aufzulisten" #: src/Console/AppConsole.vala:312 -#, fuzzy msgid "Notifications disabled in settings" msgstr "Benachrichtigungen sind deaktiviert" @@ -363,9 +349,8 @@ msgid "Third Party Inclusions" msgstr "Einschlüsse von Drittparteien" #: src/Gtk/AppGtk.vala:135 -#, fuzzy msgid "options" -msgstr "Optionen" +msgstr "optionen" #: src/Gtk/AppGtk.vala:139 msgid "Print debug information" @@ -399,12 +384,6 @@ msgstr "Benutzerhinweise für" msgid "Uninstall Old" msgstr "Alte deinstallieren" -#: src/Gtk/MainWindow.vala:306 -#, fuzzy -msgid "Uninstall kernels older than latest installed" -msgstr "" -"Deinstallieren von Kerneln, die älter als die zuletzt installierten sind" - #: src/Gtk/MainWindow.vala:311 msgid "Reload" msgstr "Nachladen" @@ -463,7 +442,6 @@ msgid "Notify if a point release is available" msgstr "Benachrichtigen, wenn eine Punktfreigabe verfügbar ist" #: src/Gtk/SettingsDialog.vala:86 -#, fuzzy msgid "Seconds interval enabled for debugging" msgstr "Sekundenintervall für das Debuggen aktiviert" @@ -472,7 +450,6 @@ msgid "Check every" msgstr "Prüfen Sie jede" #: src/Gtk/SettingsDialog.vala:134 -#, fuzzy msgid "Hours" msgstr "Stunden" @@ -481,12 +458,10 @@ msgid "Days" msgstr "Tage" #: src/Gtk/SettingsDialog.vala:138 -#, fuzzy msgid "Weeks" msgstr "Wochen" #: src/Gtk/SettingsDialog.vala:141 -#, fuzzy msgid "Seconds" msgstr "Sekunden" @@ -499,16 +474,14 @@ msgid "Hide unstable and RC releases" msgstr "Unstable- und RC-Versionen ausblenden" #: src/Gtk/SettingsDialog.vala:177 -#, fuzzy msgid "previous major versions ( -1 = all )" -msgstr "vorherige Hauptversionen (-1 = alle)" +msgstr "vorherige Hauptversionen ( -1 = alle )" #: src/Gtk/SettingsDialog.vala:181 msgid "Network" msgstr "Netz" #: src/Gtk/SettingsDialog.vala:192 -#, fuzzy msgid "Internet connection timeout in" msgstr "Zeitüberschreitung der Internetverbindung in" @@ -533,6 +506,5 @@ msgid "Missing Icon" msgstr "Fehlendes Symbol" #: src/lib/l.misc.vala:71 -#, fuzzy msgid "Can not reach site" msgstr "Fehler beim lesen der Datei" diff --git a/po/el.po b/po/el.po index 24e526e6..4229c0e4 100644 --- a/po/el.po +++ b/po/el.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-04-02 04:23-0400\n" +"POT-Creation-Date: 2023-04-03 19:46-0400\n" "PO-Revision-Date: 2023-01-10 02:03-0600\n" "Last-Translator: Vasilis Kosmidis \n" "Language-Team: Greek\n" @@ -22,23 +22,20 @@ msgid "Architecture" msgstr "Αρχιτεκτονική" #: src/Common/LinuxKernel.vala:129 -#, fuzzy msgid "Running kernel" -msgstr "Ενεργός" +msgstr "Εκτέλεση πυρήνα" #: src/Common/LinuxKernel.vala:250 msgid "loading cached" msgstr "φόρτωση προσωρινά αποθηκευμένου" #: src/Common/LinuxKernel.vala:264 -#, fuzzy msgid "queuing download" -msgstr "Μέγιστες ταυτόχρονες λήψεις" +msgstr "Προσθήκη λήψης στην ουρά" #: src/Common/LinuxKernel.vala:287 -#, fuzzy msgid "Fetching individual kernel indexes" -msgstr "Ανάκτηση μεμονωμένων ευρετηρίων πυρήνα" +msgstr "Λήψη μεμονωμένων ευρετηρίων πυρήνα" #: src/Common/LinuxKernel.vala:303 msgid "loading downloaded" @@ -57,103 +54,96 @@ msgid "FAILED" msgstr "ΑΠΈΤΥΧΕ" #: src/Common/LinuxKernel.vala:396 -#, fuzzy msgid "Found installed" -msgstr "Εγκατεστημένος" +msgstr "Βρέθηκε εγκατεστημένο" #: src/Common/LinuxKernel.vala:790 msgid "Packages Available" msgstr "Διαθέσιμα πακέτα" -#: src/Common/LinuxKernel.vala:795 +#: src/Common/LinuxKernel.vala:796 msgid "Packages Installed" msgstr "Εγκατεστημένα πακέτα" -#: src/Common/LinuxKernel.vala:816 src/lib/TeeJee.FileSystem.vala:118 +#: src/Common/LinuxKernel.vala:817 src/lib/TeeJee.FileSystem.vala:118 msgid "File not found" msgstr "Το αρχείο δε βρέθηκε" -#: src/Common/LinuxKernel.vala:883 +#: src/Common/LinuxKernel.vala:884 msgid "Available Kernels" msgstr "Διαθέσιμοι πυρήνες" -#: src/Common/LinuxKernel.vala:890 src/Gtk/MainWindow.vala:154 +#: src/Common/LinuxKernel.vala:891 src/Gtk/MainWindow.vala:154 msgid "Installed" msgstr "Εγκατεστημένος" -#: src/Common/LinuxKernel.vala:890 src/Gtk/MainWindow.vala:154 +#: src/Common/LinuxKernel.vala:891 src/Gtk/MainWindow.vala:154 #: src/Gtk/MainWindow.vala:495 src/Gtk/MainWindow.vala:508 msgid "Running" msgstr "Ενεργός" -#: src/Common/LinuxKernel.vala:924 +#: src/Common/LinuxKernel.vala:925 msgid "enabled" msgstr "ενεργοποιημένη" -#: src/Common/LinuxKernel.vala:948 +#: src/Common/LinuxKernel.vala:949 msgid "Downloading" msgstr "Κατέβασμα" -#: src/Common/LinuxKernel.vala:969 -#, fuzzy +#: src/Common/LinuxKernel.vala:970 msgid "is already installed." -msgstr "Αυτός ο πυρήνας είναι ήδη εγκατεστημένος." +msgstr "είναι ήδη εγκατεστημένο." -#: src/Common/LinuxKernel.vala:1003 -#, fuzzy +#: src/Common/LinuxKernel.vala:1004 msgid "Uninstalling selected kernels" -msgstr "Απεγκατάσταση του καθορισμένου πυρήνα" +msgstr "Απεγκατάσταση επιλεγμένων πυρήνων" -#: src/Common/LinuxKernel.vala:1009 +#: src/Common/LinuxKernel.vala:1010 msgid "requested" msgstr "ζητήθηκε" -#: src/Common/LinuxKernel.vala:1012 -#, fuzzy +#: src/Common/LinuxKernel.vala:1013 msgid "not uninstalling the currently running kernel" -msgstr "Απεγκατάσταση του καθορισμένου πυρήνα" +msgstr "δεν θα απεγκαταστήσει τον πυρήνα που εκτελείται αυτήν τη στιγμή" -#: src/Common/LinuxKernel.vala:1028 +#: src/Common/LinuxKernel.vala:1029 msgid "found" msgstr "ιδρύω" -#: src/Common/LinuxKernel.vala:1031 -#, fuzzy +#: src/Common/LinuxKernel.vala:1032 msgid "No packages to un-install!" -msgstr "Εγκατεστημένα πακέτα" +msgstr "Δεν υπάρχουν πακέτα για απεγκατάσταση!" -#: src/Common/LinuxKernel.vala:1079 -#, fuzzy +#: src/Common/LinuxKernel.vala:1080 msgid "Could not find running kernel in list" -msgstr "Δεν ήταν δυνατή η εύρεση του τρέχοντος πυρήνα στη λίστα!" +msgstr "Δεν ήταν δυνατή η εύρεση του πυρήνα που εκτελείται αυτήν τη στιγμή" -#: src/Common/LinuxKernel.vala:1084 +#: src/Common/LinuxKernel.vala:1085 msgid "Could not find any kernels to uninstall" msgstr "Δεν βρέθηκε κανένας πυρήνας για απεγκατάσταση" -#: src/Common/LinuxKernel.vala:1092 -#, fuzzy +#: src/Common/LinuxKernel.vala:1093 msgid "The following kernels will be uninstalled" -msgstr "Αυτός ο πυρήνας είναι ήδη εγκατεστημένος." +msgstr "Θα καταργηθεί η εγκατάσταση των ακόλουθων πυρήνων" -#: src/Common/LinuxKernel.vala:1096 +#: src/Common/LinuxKernel.vala:1097 msgid "Continue ?" msgstr "Συνέχεια;" -#: src/Common/LinuxKernel.vala:1118 src/Console/AppConsole.vala:290 +#: src/Common/LinuxKernel.vala:1119 src/Console/AppConsole.vala:290 msgid "Latest update" msgstr "Τελευταία αναβάθμιση" -#: src/Common/LinuxKernel.vala:1129 src/Console/AppConsole.vala:297 +#: src/Common/LinuxKernel.vala:1130 src/Console/AppConsole.vala:297 msgid "Latest point update" msgstr "Τελευταία ενημέρωση συντήρησης" -#: src/Common/LinuxKernel.vala:1137 src/Console/AppConsole.vala:302 +#: src/Common/LinuxKernel.vala:1138 src/Console/AppConsole.vala:302 #: src/Console/AppConsole.vala:318 msgid "No updates found" msgstr "Δεν βρέθηκαν ενημερώσεις" -#: src/Common/LinuxKernel.vala:1146 +#: src/Common/LinuxKernel.vala:1147 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Εγκατάσταση του πυρήνα έκδοσης %s ; (ν/ό):" @@ -174,9 +164,9 @@ msgid "Notifications are disabled" msgstr "Οι ειδοποιήσεις είναι απενεργοποιημένες" #: src/Common/Package.vala:58 -#, fuzzy, c-format +#, c-format msgid "File not found: %s" -msgstr "Το αρχείο δε βρέθηκε" +msgstr "Το αρχείο δεν βρέθηκε: %s" #: src/Console/AppConsole.vala:47 src/Gtk/AppGtk.vala:135 msgid "Syntax" @@ -218,10 +208,9 @@ msgstr "Εγκατάσταση του καθορισμένου mainline πυρή msgid "Uninstall specified kernel" msgstr "Απεγκατάσταση του καθορισμένου πυρήνα" -#: src/Console/AppConsole.vala:59 -#, fuzzy -msgid "Uninstall kernels older than the latest installed" -msgstr "Απεγκατάσταση πυρήνων παλαιότερων από τον ενεργό" +#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:306 +msgid "Uninstall all but the highest installed version" +msgstr "Απεγκαταστήστε όλες εκτός από την υψηλότερη εγκατεστημένη έκδοση" #: src/Console/AppConsole.vala:60 msgid "Download specified kernels" @@ -241,7 +230,6 @@ msgid "Include unstable and RC releases" msgstr "Συμπεριλάβετε ασταθείς και RC εκδόσεις" #: src/Console/AppConsole.vala:66 -#, fuzzy msgid "Exclude unstable and RC releases" msgstr "Εξαίρεση ασταθών και RC εκδόσεων" @@ -262,7 +250,6 @@ msgid "One or more, comma-seperated" msgstr "Ένα ή περισσότερα, διαχωρισμένα με κόμματα" #: src/Console/AppConsole.vala:73 -#, fuzzy msgid "The currently running kernel will always be ignored" msgstr "Αυτός ο πυρήνας είναι ήδη εγκατεστημένος." @@ -305,9 +292,8 @@ msgid "to list all commands" msgstr "για να παραθέσετε όλες τις εντολές" #: src/Console/AppConsole.vala:312 -#, fuzzy msgid "Notifications disabled in settings" -msgstr "Οι ειδοποιήσεις είναι απενεργοποιημένες" +msgstr "Οι ειδοποιήσεις είναι απενεργοποιημένες στις ρυθμίσεις" #: src/Console/AppConsole.vala:337 #, c-format @@ -363,9 +349,8 @@ msgid "Third Party Inclusions" msgstr "Συμπεριλήψεις τρίτων" #: src/Gtk/AppGtk.vala:135 -#, fuzzy msgid "options" -msgstr "Επιλογές" +msgstr "επιλογές" #: src/Gtk/AppGtk.vala:139 msgid "Print debug information" @@ -389,7 +374,7 @@ msgstr "Απεγκατάσταση" #: src/Gtk/MainWindow.vala:284 msgid "Notes" -msgstr "" +msgstr "Σημειώσεις" #: src/Gtk/MainWindow.vala:289 msgid "User notes for" @@ -399,11 +384,6 @@ msgstr "Σημειώσεις χρήστη για" msgid "Uninstall Old" msgstr "Απεγκατάσταση παλαιών" -#: src/Gtk/MainWindow.vala:306 -#, fuzzy -msgid "Uninstall kernels older than latest installed" -msgstr "Απεγκατάσταση πυρήνων παλαιότερων από τον ενεργό" - #: src/Gtk/MainWindow.vala:311 msgid "Reload" msgstr "Δροσίζω" @@ -462,16 +442,14 @@ msgid "Notify if a point release is available" msgstr "Ειδοποίηση αν είναι διαθέσιμη έκδοση συντήρησης" #: src/Gtk/SettingsDialog.vala:86 -#, fuzzy msgid "Seconds interval enabled for debugging" -msgstr "Ενεργοποιημένο διάστημα δευτερολέπτων για εντοπισμό σφαλμάτων" +msgstr "διάστημα δευτερολέπτων είναι ενεργοποιημένο για εντοπισμό σφαλμάτων" #: src/Gtk/SettingsDialog.vala:109 msgid "Check every" msgstr "Έλεγχος κάθε" #: src/Gtk/SettingsDialog.vala:134 -#, fuzzy msgid "Hours" msgstr "Ώρες" @@ -480,12 +458,10 @@ msgid "Days" msgstr "Ημέρες" #: src/Gtk/SettingsDialog.vala:138 -#, fuzzy msgid "Weeks" msgstr "Εβδομάδες" #: src/Gtk/SettingsDialog.vala:141 -#, fuzzy msgid "Seconds" msgstr "Δευτερόλεπτα" @@ -498,7 +474,6 @@ msgid "Hide unstable and RC releases" msgstr "Απόκρυψη ασταθών και RC εκδόσεων" #: src/Gtk/SettingsDialog.vala:177 -#, fuzzy msgid "previous major versions ( -1 = all )" msgstr "προηγούμενες κύριες εκδόσεις ( -1 = όλες )" @@ -507,7 +482,6 @@ msgid "Network" msgstr "Δίκτυο" #: src/Gtk/SettingsDialog.vala:192 -#, fuzzy msgid "Internet connection timeout in" msgstr "Λήξη χρονικού ορίου σύνδεσης στο διαδίκτυο " @@ -532,6 +506,5 @@ msgid "Missing Icon" msgstr "Ελλείπον εικονίδιο" #: src/lib/l.misc.vala:71 -#, fuzzy msgid "Can not reach site" msgstr "Αποτυχία ανάγνωσης του αρχείου" diff --git a/po/es.po b/po/es.po index 5132f00e..5419b7cf 100644 --- a/po/es.po +++ b/po/es.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-04-02 04:23-0400\n" +"POT-Creation-Date: 2023-04-03 19:46-0400\n" "PO-Revision-Date: 2018-01-03 02:03-0600\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish\n" @@ -22,9 +22,8 @@ msgid "Architecture" msgstr "Arquitectura del sistema" #: src/Common/LinuxKernel.vala:129 -#, fuzzy msgid "Running kernel" -msgstr "En ejecución" +msgstr "Kernel en ejecución" #: src/Common/LinuxKernel.vala:250 msgid "loading cached" @@ -35,7 +34,6 @@ msgid "queuing download" msgstr "descarga de colas" #: src/Common/LinuxKernel.vala:287 -#, fuzzy msgid "Fetching individual kernel indexes" msgstr "Obtención de índices de kernel individuales" @@ -56,104 +54,96 @@ msgid "FAILED" msgstr "FRACASADO" #: src/Common/LinuxKernel.vala:396 -#, fuzzy msgid "Found installed" -msgstr "Instalado" +msgstr "Encontrado instalado" #: src/Common/LinuxKernel.vala:790 msgid "Packages Available" msgstr "Paquetes disponibles" -#: src/Common/LinuxKernel.vala:795 +#: src/Common/LinuxKernel.vala:796 msgid "Packages Installed" msgstr "Paquetes instalados" -#: src/Common/LinuxKernel.vala:816 src/lib/TeeJee.FileSystem.vala:118 +#: src/Common/LinuxKernel.vala:817 src/lib/TeeJee.FileSystem.vala:118 msgid "File not found" msgstr "No se encontró el archivo" -#: src/Common/LinuxKernel.vala:883 +#: src/Common/LinuxKernel.vala:884 msgid "Available Kernels" msgstr "Núcleos disponibles" -#: src/Common/LinuxKernel.vala:890 src/Gtk/MainWindow.vala:154 +#: src/Common/LinuxKernel.vala:891 src/Gtk/MainWindow.vala:154 msgid "Installed" msgstr "Instalado" -#: src/Common/LinuxKernel.vala:890 src/Gtk/MainWindow.vala:154 +#: src/Common/LinuxKernel.vala:891 src/Gtk/MainWindow.vala:154 #: src/Gtk/MainWindow.vala:495 src/Gtk/MainWindow.vala:508 msgid "Running" msgstr "En ejecución" -#: src/Common/LinuxKernel.vala:924 +#: src/Common/LinuxKernel.vala:925 msgid "enabled" msgstr "habilitado" -#: src/Common/LinuxKernel.vala:948 +#: src/Common/LinuxKernel.vala:949 msgid "Downloading" msgstr "Descargar" -#: src/Common/LinuxKernel.vala:969 -#, fuzzy +#: src/Common/LinuxKernel.vala:970 msgid "is already installed." -msgstr "Este núcleo ya se instaló." +msgstr "ya está instalado." -#: src/Common/LinuxKernel.vala:1003 -#, fuzzy +#: src/Common/LinuxKernel.vala:1004 msgid "Uninstalling selected kernels" -msgstr "Instalar núcleo troncal especificado" +msgstr "Desinstalación de kernels seleccionados" -#: src/Common/LinuxKernel.vala:1009 +#: src/Common/LinuxKernel.vala:1010 msgid "requested" msgstr "solicitado" -#: src/Common/LinuxKernel.vala:1012 -#, fuzzy +#: src/Common/LinuxKernel.vala:1013 msgid "not uninstalling the currently running kernel" -msgstr "Instalar núcleo troncal especificado" +msgstr "No desinstalará el kernel que se está ejecutando actualmente" -#: src/Common/LinuxKernel.vala:1028 +#: src/Common/LinuxKernel.vala:1029 msgid "found" msgstr "fundar" -#: src/Common/LinuxKernel.vala:1031 -#, fuzzy +#: src/Common/LinuxKernel.vala:1032 msgid "No packages to un-install!" -msgstr "Paquetes instalados" +msgstr "¡No hay paquetes para desinstalar!" -#: src/Common/LinuxKernel.vala:1079 -#, fuzzy +#: src/Common/LinuxKernel.vala:1080 msgid "Could not find running kernel in list" -msgstr "¡No se pudo encontrar el núcleo en ejecución en la lista!" +msgstr "No se pudo encontrar el kernel en ejecución en la lista" -#: src/Common/LinuxKernel.vala:1084 -#, fuzzy +#: src/Common/LinuxKernel.vala:1085 msgid "Could not find any kernels to uninstall" -msgstr "Seleccione los núcleos que se desinstalarán" +msgstr "No se pudo encontrar ningún kernel para desinstalar" -#: src/Common/LinuxKernel.vala:1092 -#, fuzzy +#: src/Common/LinuxKernel.vala:1093 msgid "The following kernels will be uninstalled" -msgstr "Los siguientes kernels serán eliminados:" +msgstr "Se desinstalarán los siguientes kernels" -#: src/Common/LinuxKernel.vala:1096 +#: src/Common/LinuxKernel.vala:1097 msgid "Continue ?" msgstr "¿Continuar?" -#: src/Common/LinuxKernel.vala:1118 src/Console/AppConsole.vala:290 +#: src/Common/LinuxKernel.vala:1119 src/Console/AppConsole.vala:290 msgid "Latest update" msgstr "Última actualización" -#: src/Common/LinuxKernel.vala:1129 src/Console/AppConsole.vala:297 +#: src/Common/LinuxKernel.vala:1130 src/Console/AppConsole.vala:297 msgid "Latest point update" msgstr "Última actualización puntual" -#: src/Common/LinuxKernel.vala:1137 src/Console/AppConsole.vala:302 +#: src/Common/LinuxKernel.vala:1138 src/Console/AppConsole.vala:302 #: src/Console/AppConsole.vala:318 msgid "No updates found" msgstr "No se encontró ninguna actualización" -#: src/Common/LinuxKernel.vala:1146 +#: src/Common/LinuxKernel.vala:1147 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Instalar la versión del kernel %s? (s/n): " @@ -170,14 +160,13 @@ msgstr "" "configuración en" #: src/Common/Main.vala:384 -#, fuzzy msgid "Notifications are disabled" msgstr "Las notificaciones están deshabilitadas" #: src/Common/Package.vala:58 -#, fuzzy, c-format +#, c-format msgid "File not found: %s" -msgstr "No se encontró el archivo" +msgstr "Archivo no encontrado: %s" #: src/Console/AppConsole.vala:47 src/Gtk/AppGtk.vala:135 msgid "Syntax" @@ -216,18 +205,16 @@ msgid "Install specified mainline kernel" msgstr "Instalar núcleo troncal especificado" #: src/Console/AppConsole.vala:58 -#, fuzzy msgid "Uninstall specified kernel" -msgstr "Instalar núcleo troncal especificado" +msgstr "Desinstalar el kernel especificado" -#: src/Console/AppConsole.vala:59 -msgid "Uninstall kernels older than the latest installed" -msgstr "Desinstalar kernels anteriores a los últimos instalados" +#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:306 +msgid "Uninstall all but the highest installed version" +msgstr "Desinstale todas las versiones instaladas excepto la más alta" #: src/Console/AppConsole.vala:60 -#, fuzzy msgid "Download specified kernels" -msgstr "Descargar paquetes del núcleo especificado" +msgstr "Descargar kernels especificados" #: src/Console/AppConsole.vala:61 msgid "Delete cached info about available kernels" @@ -238,14 +225,12 @@ msgid "Options" msgstr "Opciones" #: src/Console/AppConsole.vala:65 -#, fuzzy msgid "Include unstable and RC releases" -msgstr "Ocultar versiones inestables y RC" +msgstr "Incluye versiones inestables y RC" #: src/Console/AppConsole.vala:66 -#, fuzzy msgid "Exclude unstable and RC releases" -msgstr "Ocultar versiones inestables y RC" +msgstr "Excluir versiones inestables y RC" #: src/Console/AppConsole.vala:67 msgid "Enable verbose debugging output" @@ -264,9 +249,8 @@ msgid "One or more, comma-seperated" msgstr "Uno o más, separados por comas" #: src/Console/AppConsole.vala:73 -#, fuzzy msgid "The currently running kernel will always be ignored" -msgstr "Los siguientes kernels serán eliminados:" +msgstr "El kernel que se está ejecutando actualmente siempre será ignorado" #: src/Console/AppConsole.vala:161 src/Gtk/AppGtk.vala:121 msgid "Unknown option" @@ -274,14 +258,12 @@ msgstr "Opción desconocida" #: src/Console/AppConsole.vala:162 src/Console/AppConsole.vala:248 #: src/Console/AppConsole.vala:276 -#, fuzzy msgid "Run" msgstr "En ejecución" #: src/Console/AppConsole.vala:162 -#, fuzzy msgid "to list all options" -msgstr "Mostrar todas las opciones" +msgstr "para enumerar todas las opciones" #: src/Console/AppConsole.vala:216 src/Console/AppConsole.vala:256 msgid "No kernels specified" @@ -304,19 +286,17 @@ msgid "Command not specified" msgstr "Coomand no especificado" #: src/Console/AppConsole.vala:276 -#, fuzzy msgid "to list all commands" -msgstr "Mostrar todas las opciones" +msgstr "para enumerar todos los cmmands" #: src/Console/AppConsole.vala:312 -#, fuzzy msgid "Notifications disabled in settings" -msgstr "Notificación" +msgstr "Notificaciones deshabilitadas en la configuración" #: src/Console/AppConsole.vala:337 -#, fuzzy, c-format +#, c-format msgid "Kernel %s Available" -msgstr "Paquetes disponibles" +msgstr "Kernel %s Disponible" #: src/Console/AppConsole.vala:341 src/Gtk/SettingsDialog.vala:166 msgid "Show" @@ -363,14 +343,12 @@ msgid "Documenters" msgstr "Documentadores" #: src/Gtk/AboutWindow.vala:244 -#, fuzzy msgid "Third Party Inclusions" -msgstr "Herramientas de terceros" +msgstr "Herramientas de Terceros" #: src/Gtk/AppGtk.vala:135 -#, fuzzy msgid "options" -msgstr "Opciones" +msgstr "opciones" #: src/Gtk/AppGtk.vala:139 msgid "Print debug information" @@ -389,26 +367,20 @@ msgid "Status" msgstr "Estado" #: src/Gtk/MainWindow.vala:274 -#, fuzzy msgid "Uninstall" -msgstr "Instalar" +msgstr "Desinstalar" #: src/Gtk/MainWindow.vala:284 msgid "Notes" -msgstr "" +msgstr "Notas" #: src/Gtk/MainWindow.vala:289 msgid "User notes for" msgstr "Notas de usuario para" #: src/Gtk/MainWindow.vala:305 -#, fuzzy msgid "Uninstall Old" -msgstr "Desinstalación finalizada" - -#: src/Gtk/MainWindow.vala:306 -msgid "Uninstall kernels older than latest installed" -msgstr "Desinstalar kernels anteriores a los últimos instalados" +msgstr "Desinstalar Antiguo" #: src/Gtk/MainWindow.vala:311 msgid "Reload" @@ -437,16 +409,15 @@ msgstr "Bifurcada" #: src/Gtk/MainWindow.vala:395 msgid "Original" -msgstr "" +msgstr "Original" #: src/Gtk/MainWindow.vala:433 msgid "Updating kernels" msgstr "Actualización de kernels" #: src/Gtk/MainWindow.vala:504 -#, fuzzy msgid "available" -msgstr "Paquetes disponibles" +msgstr "disponibles" #: src/Gtk/MainWindow.vala:547 src/Gtk/MainWindow.vala:587 #: src/Gtk/MainWindow.vala:621 @@ -478,7 +449,6 @@ msgid "Check every" msgstr "Comprobar cada" #: src/Gtk/SettingsDialog.vala:134 -#, fuzzy msgid "Hours" msgstr "Horas" @@ -487,7 +457,6 @@ msgid "Days" msgstr "Días" #: src/Gtk/SettingsDialog.vala:138 -#, fuzzy msgid "Weeks" msgstr "Semanas" @@ -505,16 +474,15 @@ msgstr "Ocultar versiones inestables y RC" #: src/Gtk/SettingsDialog.vala:177 msgid "previous major versions ( -1 = all )" -msgstr "Versiones principales anteriores ( -1 = todas )" +msgstr "Versiones principales anteriores ( -1 = todas )" #: src/Gtk/SettingsDialog.vala:181 msgid "Network" msgstr "Red" #: src/Gtk/SettingsDialog.vala:192 -#, fuzzy msgid "Internet connection timeout in" -msgstr "La conexión a Internet está inactiva" +msgstr "Tiempo de espera de conexión a Internet en" #: src/Gtk/SettingsDialog.vala:204 msgid "seconds" @@ -530,13 +498,12 @@ msgstr "Verificar sumas de comprobación con los archivos CHECKSUMS" #: src/Gtk/SettingsDialog.vala:233 msgid "Proxy" -msgstr "" +msgstr "Proxy" #: src/Gtk/l.gtk.vala:42 msgid "Missing Icon" msgstr "Falta el icono" #: src/lib/l.misc.vala:71 -#, fuzzy msgid "Can not reach site" -msgstr "Falló la lectura del archivo" +msgstr "No se puede llegar al sitio" diff --git a/po/fr.po b/po/fr.po index ec4a6423..56be1cf3 100644 --- a/po/fr.po +++ b/po/fr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-04-02 04:23-0400\n" +"POT-Creation-Date: 2023-04-03 19:46-0400\n" "PO-Revision-Date: 2018-08-05 15:50+0200\n" "Last-Translator: Yolateng0 \n" "Language-Team: French\n" @@ -22,21 +22,18 @@ msgid "Architecture" msgstr "Architecture" #: src/Common/LinuxKernel.vala:129 -#, fuzzy msgid "Running kernel" -msgstr "Exécution du noyau" +msgstr "Noyau en cours d'exécution" #: src/Common/LinuxKernel.vala:250 msgid "loading cached" msgstr "chargement mis en cache" #: src/Common/LinuxKernel.vala:264 -#, fuzzy msgid "queuing download" -msgstr "téléchargement de la file d'attente" +msgstr "enqueuing télécharger" #: src/Common/LinuxKernel.vala:287 -#, fuzzy msgid "Fetching individual kernel indexes" msgstr "Récupération d'index de noyau individuels" @@ -57,7 +54,6 @@ msgid "FAILED" msgstr "RATÉ" #: src/Common/LinuxKernel.vala:396 -#, fuzzy msgid "Found installed" msgstr "Trouvé installé" @@ -65,96 +61,89 @@ msgstr "Trouvé installé" msgid "Packages Available" msgstr "Paquets Disponibles" -#: src/Common/LinuxKernel.vala:795 +#: src/Common/LinuxKernel.vala:796 msgid "Packages Installed" msgstr "Paquets Installés" -#: src/Common/LinuxKernel.vala:816 src/lib/TeeJee.FileSystem.vala:118 +#: src/Common/LinuxKernel.vala:817 src/lib/TeeJee.FileSystem.vala:118 msgid "File not found" msgstr "Fichier non trouvé" -#: src/Common/LinuxKernel.vala:883 +#: src/Common/LinuxKernel.vala:884 msgid "Available Kernels" msgstr "Noyaux Disponibles" -#: src/Common/LinuxKernel.vala:890 src/Gtk/MainWindow.vala:154 +#: src/Common/LinuxKernel.vala:891 src/Gtk/MainWindow.vala:154 msgid "Installed" msgstr "Installé" -#: src/Common/LinuxKernel.vala:890 src/Gtk/MainWindow.vala:154 +#: src/Common/LinuxKernel.vala:891 src/Gtk/MainWindow.vala:154 #: src/Gtk/MainWindow.vala:495 src/Gtk/MainWindow.vala:508 msgid "Running" msgstr "Actuel" -#: src/Common/LinuxKernel.vala:924 +#: src/Common/LinuxKernel.vala:925 msgid "enabled" msgstr "activé" -#: src/Common/LinuxKernel.vala:948 +#: src/Common/LinuxKernel.vala:949 msgid "Downloading" msgstr "Téléchargement" -#: src/Common/LinuxKernel.vala:969 -#, fuzzy +#: src/Common/LinuxKernel.vala:970 msgid "is already installed." -msgstr "Ce noyau est déjà installé." +msgstr "est déjà installé." -#: src/Common/LinuxKernel.vala:1003 -#, fuzzy +#: src/Common/LinuxKernel.vala:1004 msgid "Uninstalling selected kernels" msgstr "Désinstallation des noyaux sélectionnés" -#: src/Common/LinuxKernel.vala:1009 +#: src/Common/LinuxKernel.vala:1010 msgid "requested" msgstr "Demandé" -#: src/Common/LinuxKernel.vala:1012 -#, fuzzy +#: src/Common/LinuxKernel.vala:1013 msgid "not uninstalling the currently running kernel" msgstr "Ne pas désinstaller le noyau en cours d'exécution" -#: src/Common/LinuxKernel.vala:1028 +#: src/Common/LinuxKernel.vala:1029 msgid "found" msgstr "fonder" -#: src/Common/LinuxKernel.vala:1031 -#, fuzzy +#: src/Common/LinuxKernel.vala:1032 msgid "No packages to un-install!" msgstr "Pas de paquets à désinstaller !" -#: src/Common/LinuxKernel.vala:1079 -#, fuzzy +#: src/Common/LinuxKernel.vala:1080 msgid "Could not find running kernel in list" -msgstr "Impossible de trouver la version courante dans la liste!" +msgstr "Impossible de trouver le noyau en cours d'exécution dans la liste" -#: src/Common/LinuxKernel.vala:1084 -#, fuzzy +#: src/Common/LinuxKernel.vala:1085 msgid "Could not find any kernels to uninstall" -msgstr "Impossible de trouver de noyaux à supprimer" +msgstr "Impossible de trouver des noyaux à désinstaller" -#: src/Common/LinuxKernel.vala:1092 -#, fuzzy +#: src/Common/LinuxKernel.vala:1093 msgid "The following kernels will be uninstalled" msgstr "Les noyaux suivants seront désinstallés" -#: src/Common/LinuxKernel.vala:1096 +#: src/Common/LinuxKernel.vala:1097 msgid "Continue ?" msgstr "Reprendre ?" -#: src/Common/LinuxKernel.vala:1118 src/Console/AppConsole.vala:290 +#: src/Common/LinuxKernel.vala:1119 src/Console/AppConsole.vala:290 msgid "Latest update" msgstr "Dernière mise à jour" -#: src/Common/LinuxKernel.vala:1129 src/Console/AppConsole.vala:297 +#: src/Common/LinuxKernel.vala:1130 src/Console/AppConsole.vala:297 msgid "Latest point update" msgstr "Dernière mise à jour mineure" -#: src/Common/LinuxKernel.vala:1137 src/Console/AppConsole.vala:302 +#: src/Common/LinuxKernel.vala:1138 src/Console/AppConsole.vala:302 #: src/Console/AppConsole.vala:318 msgid "No updates found" msgstr "Aucune mise à jour disponible" -#: src/Common/LinuxKernel.vala:1146 +#: src/Common/LinuxKernel.vala:1147 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Installer le noyau en version %s ? (y/n): " @@ -175,9 +164,9 @@ msgid "Notifications are disabled" msgstr "Les notifications sont désactivées" #: src/Common/Package.vala:58 -#, fuzzy, c-format +#, c-format msgid "File not found: %s" -msgstr "Fichier non trouvé" +msgstr "Fichier introuvable : %s" #: src/Console/AppConsole.vala:47 src/Gtk/AppGtk.vala:135 msgid "Syntax" @@ -216,14 +205,12 @@ msgid "Install specified mainline kernel" msgstr "Installer le noyau mainline spécifié" #: src/Console/AppConsole.vala:58 -#, fuzzy msgid "Uninstall specified kernel" msgstr "Désinstaller le noyau spécifié" -#: src/Console/AppConsole.vala:59 -#, fuzzy -msgid "Uninstall kernels older than the latest installed" -msgstr "Désinstalle les noyaux plus anciens que le noyau courant" +#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:306 +msgid "Uninstall all but the highest installed version" +msgstr "Désinstallez toutes le version installées, sauf la plus élevée" #: src/Console/AppConsole.vala:60 msgid "Download specified kernels" @@ -238,12 +225,10 @@ msgid "Options" msgstr "Options" #: src/Console/AppConsole.vala:65 -#, fuzzy msgid "Include unstable and RC releases" msgstr "Inclure les versions instables et RC" #: src/Console/AppConsole.vala:66 -#, fuzzy msgid "Exclude unstable and RC releases" msgstr "Exclure les versions instables et RC" @@ -264,7 +249,6 @@ msgid "One or more, comma-seperated" msgstr "Une ou plusieurs, séparées par des virgules" #: src/Console/AppConsole.vala:73 -#, fuzzy msgid "The currently running kernel will always be ignored" msgstr "Le noyau en cours d'exécution sera toujours ignoré" @@ -308,9 +292,8 @@ msgid "to list all commands" msgstr "pour afficher toutes les commandes" #: src/Console/AppConsole.vala:312 -#, fuzzy msgid "Notifications disabled in settings" -msgstr "Les notifications sont désactivées" +msgstr "Notifications désactivées dans les paramètres" #: src/Console/AppConsole.vala:337 #, c-format @@ -366,9 +349,8 @@ msgid "Third Party Inclusions" msgstr "Dépendances Tierces" #: src/Gtk/AppGtk.vala:135 -#, fuzzy msgid "options" -msgstr "Options" +msgstr "options" #: src/Gtk/AppGtk.vala:139 msgid "Print debug information" @@ -387,27 +369,20 @@ msgid "Status" msgstr "Statut" #: src/Gtk/MainWindow.vala:274 -#, fuzzy msgid "Uninstall" msgstr "Désinstaller" #: src/Gtk/MainWindow.vala:284 msgid "Notes" -msgstr "" +msgstr "Notes" #: src/Gtk/MainWindow.vala:289 msgid "User notes for" msgstr "Notes d'utilisation pour" #: src/Gtk/MainWindow.vala:305 -#, fuzzy msgid "Uninstall Old" -msgstr "Désinstallation complète" - -#: src/Gtk/MainWindow.vala:306 -#, fuzzy -msgid "Uninstall kernels older than latest installed" -msgstr "Désinstaller les noyaux plus anciens que les derniers installés" +msgstr "Désinstaller Ancien" #: src/Gtk/MainWindow.vala:311 msgid "Reload" @@ -477,7 +452,6 @@ msgid "Check every" msgstr "Vérifier toutes les" #: src/Gtk/SettingsDialog.vala:134 -#, fuzzy msgid "Hours" msgstr "Heures" @@ -486,12 +460,10 @@ msgid "Days" msgstr "Jours" #: src/Gtk/SettingsDialog.vala:138 -#, fuzzy msgid "Weeks" msgstr "Semaines" #: src/Gtk/SettingsDialog.vala:141 -#, fuzzy msgid "Seconds" msgstr "Secondes" @@ -504,18 +476,16 @@ msgid "Hide unstable and RC releases" msgstr "Cacher les versions instables et RC" #: src/Gtk/SettingsDialog.vala:177 -#, fuzzy msgid "previous major versions ( -1 = all )" -msgstr "Versions majeures précédentes ( -1 = toutes )" +msgstr "versions majeures précédentes ( -1 = toutes )" #: src/Gtk/SettingsDialog.vala:181 msgid "Network" msgstr "Réseau" #: src/Gtk/SettingsDialog.vala:192 -#, fuzzy msgid "Internet connection timeout in" -msgstr "Attendre la connection internet " +msgstr "Délai d'expiration de la connexion Internet dans" #: src/Gtk/SettingsDialog.vala:204 msgid "seconds" @@ -531,13 +501,12 @@ msgstr "Vérifier les sommes de contrôle avec les fichiers CHECKSUMS" #: src/Gtk/SettingsDialog.vala:233 msgid "Proxy" -msgstr "" +msgstr "Proxy" #: src/Gtk/l.gtk.vala:42 msgid "Missing Icon" msgstr "Icône introuvable" #: src/lib/l.misc.vala:71 -#, fuzzy msgid "Can not reach site" -msgstr "Impossible de lire le fichier" +msgstr "No se puede llegar al sitio" diff --git a/po/hr.po b/po/hr.po index b8a0a599..c65d6fb6 100644 --- a/po/hr.po +++ b/po/hr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-04-02 04:23-0400\n" +"POT-Creation-Date: 2023-04-03 19:46-0400\n" "PO-Revision-Date: 2022-09-22 12:13+0200\n" "Last-Translator: gogo \n" "Language-Team: Croatian\n" @@ -22,23 +22,20 @@ msgid "Architecture" msgstr "Arhitektura" #: src/Common/LinuxKernel.vala:129 -#, fuzzy msgid "Running kernel" -msgstr "Jezgra trčanja" +msgstr "Trčanje kernel" #: src/Common/LinuxKernel.vala:250 msgid "loading cached" msgstr "učitavanje predmemoriranog" #: src/Common/LinuxKernel.vala:264 -#, fuzzy msgid "queuing download" msgstr "preuzimanje u redu čekanja" #: src/Common/LinuxKernel.vala:287 -#, fuzzy msgid "Fetching individual kernel indexes" -msgstr "Dohvaćanje pojedinačnih indeksa jezgre" +msgstr "Dohvaćanje pojedinačnih indeksa kernel" #: src/Common/LinuxKernel.vala:303 msgid "loading downloaded" @@ -50,110 +47,103 @@ msgstr "Ažuriranje iz" #: src/Common/LinuxKernel.vala:347 msgid "OK" -msgstr "" +msgstr "OK" #: src/Common/LinuxKernel.vala:350 msgid "FAILED" msgstr "NIJE USPIO" #: src/Common/LinuxKernel.vala:396 -#, fuzzy msgid "Found installed" msgstr "Pronađeno instalirano" #: src/Common/LinuxKernel.vala:790 msgid "Packages Available" -msgstr "Dostupni paketi" +msgstr "Dostupni Paketi" -#: src/Common/LinuxKernel.vala:795 +#: src/Common/LinuxKernel.vala:796 msgid "Packages Installed" msgstr "Instalirani paketi" -#: src/Common/LinuxKernel.vala:816 src/lib/TeeJee.FileSystem.vala:118 +#: src/Common/LinuxKernel.vala:817 src/lib/TeeJee.FileSystem.vala:118 msgid "File not found" msgstr "Datoteka nije pronađena" -#: src/Common/LinuxKernel.vala:883 +#: src/Common/LinuxKernel.vala:884 msgid "Available Kernels" msgstr "Dostupni kerneli" -#: src/Common/LinuxKernel.vala:890 src/Gtk/MainWindow.vala:154 +#: src/Common/LinuxKernel.vala:891 src/Gtk/MainWindow.vala:154 msgid "Installed" msgstr "Instalirano" -#: src/Common/LinuxKernel.vala:890 src/Gtk/MainWindow.vala:154 +#: src/Common/LinuxKernel.vala:891 src/Gtk/MainWindow.vala:154 #: src/Gtk/MainWindow.vala:495 src/Gtk/MainWindow.vala:508 msgid "Running" msgstr "Pokrenuto" -#: src/Common/LinuxKernel.vala:924 +#: src/Common/LinuxKernel.vala:925 msgid "enabled" msgstr "omogućen" -#: src/Common/LinuxKernel.vala:948 +#: src/Common/LinuxKernel.vala:949 msgid "Downloading" msgstr "Učitavanje" -#: src/Common/LinuxKernel.vala:969 -#, fuzzy +#: src/Common/LinuxKernel.vala:970 msgid "is already installed." -msgstr "Ovaj kernel je već instaliran." +msgstr "je već instaliran." -#: src/Common/LinuxKernel.vala:1003 -#, fuzzy +#: src/Common/LinuxKernel.vala:1004 msgid "Uninstalling selected kernels" msgstr "Deinstaliraj određene kernele" -#: src/Common/LinuxKernel.vala:1009 +#: src/Common/LinuxKernel.vala:1010 msgid "requested" msgstr "Zatražio" -#: src/Common/LinuxKernel.vala:1012 -#, fuzzy +#: src/Common/LinuxKernel.vala:1013 msgid "not uninstalling the currently running kernel" -msgstr "Deinstaliraj određene kernele" +msgstr "ne deinstaliranje trenutno pokrenute kernel" -#: src/Common/LinuxKernel.vala:1028 +#: src/Common/LinuxKernel.vala:1029 msgid "found" msgstr "pronađen" -#: src/Common/LinuxKernel.vala:1031 -#, fuzzy +#: src/Common/LinuxKernel.vala:1032 msgid "No packages to un-install!" msgstr "Nema paketa za poništavanje instalacije!" -#: src/Common/LinuxKernel.vala:1079 -#, fuzzy +#: src/Common/LinuxKernel.vala:1080 msgid "Could not find running kernel in list" -msgstr "Nemoguće je pronaći pokrenuti kernel na popisu!" +msgstr "Nije moguće pronaći pokrenutu kernel na popisu" -#: src/Common/LinuxKernel.vala:1084 +#: src/Common/LinuxKernel.vala:1085 msgid "Could not find any kernels to uninstall" msgstr "Nema pronađenih kernela za deinstaliranje" -#: src/Common/LinuxKernel.vala:1092 -#, fuzzy +#: src/Common/LinuxKernel.vala:1093 msgid "The following kernels will be uninstalled" -msgstr "Sljedeći kerneli će biti deinstalirani:" +msgstr "Deinstalirat će se sljedeće kerneli" -#: src/Common/LinuxKernel.vala:1096 +#: src/Common/LinuxKernel.vala:1097 msgid "Continue ?" msgstr "Nastavi?" -#: src/Common/LinuxKernel.vala:1118 src/Console/AppConsole.vala:290 +#: src/Common/LinuxKernel.vala:1119 src/Console/AppConsole.vala:290 msgid "Latest update" msgstr "Najnovija nadopuna" -#: src/Common/LinuxKernel.vala:1129 src/Console/AppConsole.vala:297 +#: src/Common/LinuxKernel.vala:1130 src/Console/AppConsole.vala:297 msgid "Latest point update" msgstr "Najnovija ciljana nadopuna" -#: src/Common/LinuxKernel.vala:1137 src/Console/AppConsole.vala:302 +#: src/Common/LinuxKernel.vala:1138 src/Console/AppConsole.vala:302 #: src/Console/AppConsole.vala:318 msgid "No updates found" msgstr "Nema pronađenih nadopuna" -#: src/Common/LinuxKernel.vala:1146 +#: src/Common/LinuxKernel.vala:1147 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Instaliraj kernel inačice %s ? (d/n): " @@ -165,14 +155,15 @@ msgstr "Pozvano od" #: src/Common/Main.vala:352 msgid "" "This file is over-written and executed again whenever settings are saved in" -msgstr "Ova se datoteka prepisuje i ponovno izvršava kad god se postavke spremaju u" +msgstr "" +"Ova se datoteka prepisuje i ponovno izvršava kad god se postavke spremaju u" #: src/Common/Main.vala:384 msgid "Notifications are disabled" msgstr "Obavijesti su onemogućene" #: src/Common/Package.vala:58 -#, fuzzy, c-format +#, c-format msgid "File not found: %s" msgstr "Datoteka nije pronađena: %s" @@ -216,10 +207,9 @@ msgstr "Instaliraj određeni mainline kernel" msgid "Uninstall specified kernel" msgstr "Deinstaliraj određene kernele" -#: src/Console/AppConsole.vala:59 -#, fuzzy -msgid "Uninstall kernels older than the latest installed" -msgstr "Deinstaliraj starije kernele od trenutno pokrenutog krenela" +#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:306 +msgid "Uninstall all but the highest installed version" +msgstr "Deinstaliraj sve osim najnovije instalirane verzije" #: src/Console/AppConsole.vala:60 msgid "Download specified kernels" @@ -235,12 +225,11 @@ msgstr "Mogućnosti" #: src/Console/AppConsole.vala:65 msgid "Include unstable and RC releases" -msgstr "Uključi predizdanja i nestabilne kernele" +msgstr "Uključivati nestabilne i RC kernele" #: src/Console/AppConsole.vala:66 -#, fuzzy msgid "Exclude unstable and RC releases" -msgstr "Uključi predizdanja i nestabilne kernele" +msgstr "Isključivati nestabilne i RC izdanja" #: src/Console/AppConsole.vala:67 msgid "Enable verbose debugging output" @@ -259,9 +248,8 @@ msgid "One or more, comma-seperated" msgstr "Jedan ili više njih, odvojeni zarezom" #: src/Console/AppConsole.vala:73 -#, fuzzy msgid "The currently running kernel will always be ignored" -msgstr "Sljedeći kerneli će biti deinstalirani:" +msgstr "Trenutno pokrenuta jezgra uvijek će se zanemariti" #: src/Console/AppConsole.vala:161 src/Gtk/AppGtk.vala:121 msgid "Unknown option" @@ -301,9 +289,8 @@ msgid "to list all commands" msgstr "za prikaz svih mogućnosti" #: src/Console/AppConsole.vala:312 -#, fuzzy msgid "Notifications disabled in settings" -msgstr "Obavijesti su onemogućene" +msgstr "Obavijesti onemogućene u postavkama" #: src/Console/AppConsole.vala:337 #, c-format @@ -359,9 +346,8 @@ msgid "Third Party Inclusions" msgstr "Uključene treće strane" #: src/Gtk/AppGtk.vala:135 -#, fuzzy msgid "options" -msgstr "Mogućnosti" +msgstr "mogućnosti" #: src/Gtk/AppGtk.vala:139 msgid "Print debug information" @@ -395,11 +381,6 @@ msgstr "Korisničke bilješke za" msgid "Uninstall Old" msgstr "Deinstaliraj staro" -#: src/Gtk/MainWindow.vala:306 -#, fuzzy -msgid "Uninstall kernels older than latest installed" -msgstr "Deinstaliraj starije kernele od trenutno pokrenutog krenela" - #: src/Gtk/MainWindow.vala:311 msgid "Reload" msgstr "Ponovno učitati" @@ -458,7 +439,6 @@ msgid "Notify if a point release is available" msgstr "Obavijesti kada je pojedino izdanje dostupno" #: src/Gtk/SettingsDialog.vala:86 -#, fuzzy msgid "Seconds interval enabled for debugging" msgstr "Interval sekundi omogućen za ispravljanje pogrešaka" @@ -467,7 +447,6 @@ msgid "Check every" msgstr "Provjeri svaka" #: src/Gtk/SettingsDialog.vala:134 -#, fuzzy msgid "Hours" msgstr "Sati" @@ -476,12 +455,10 @@ msgid "Days" msgstr "Dani" #: src/Gtk/SettingsDialog.vala:138 -#, fuzzy msgid "Weeks" -msgstr "Tjedan(a)" +msgstr "Tjedna" #: src/Gtk/SettingsDialog.vala:141 -#, fuzzy msgid "Seconds" msgstr "Sekunde" @@ -494,18 +471,16 @@ msgid "Hide unstable and RC releases" msgstr "Sakrij nestabilna i RC izdanja" #: src/Gtk/SettingsDialog.vala:177 -#, fuzzy msgid "previous major versions ( -1 = all )" -msgstr "prethodne glavne verzije (-1 = sve)" +msgstr "prethodne glavne verzije ( -1 = sve )" #: src/Gtk/SettingsDialog.vala:181 msgid "Network" msgstr "Mreža" #: src/Gtk/SettingsDialog.vala:192 -#, fuzzy msgid "Internet connection timeout in" -msgstr "Istek internet povezivanja za " +msgstr "Prekoračenje vremena internetske veze u" #: src/Gtk/SettingsDialog.vala:204 msgid "seconds" @@ -521,13 +496,12 @@ msgstr "Provjera kontrolnih zbrojeva pomoću CHECKSUMS datoteka" #: src/Gtk/SettingsDialog.vala:233 msgid "Proxy" -msgstr "" +msgstr "Proxy" #: src/Gtk/l.gtk.vala:42 msgid "Missing Icon" msgstr "Ikone koje nedostaju" #: src/lib/l.misc.vala:71 -#, fuzzy msgid "Can not reach site" -msgstr "Neuspjelo čitanje datoteke" +msgstr "Nije moguće doći do web-mjesta" diff --git a/po/it.po b/po/it.po index 1273f9a2..61d6666f 100644 --- a/po/it.po +++ b/po/it.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline 1.0.15\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-04-02 04:23-0400\n" +"POT-Creation-Date: 2023-04-03 19:46-0400\n" "PO-Revision-Date: 2020-08-22 15:35+0100\n" "Last-Translator: Albano Battistella \n" "Language-Team: Italian\n" @@ -20,7 +20,6 @@ msgid "Architecture" msgstr "Architettura" #: src/Common/LinuxKernel.vala:129 -#, fuzzy msgid "Running kernel" msgstr "Aggiornamento dei kernel" @@ -29,12 +28,10 @@ msgid "loading cached" msgstr "Caricamento file della cache" #: src/Common/LinuxKernel.vala:264 -#, fuzzy msgid "queuing download" msgstr "download in coda" #: src/Common/LinuxKernel.vala:287 -#, fuzzy msgid "Fetching individual kernel indexes" msgstr "Recupero dei singoli indici del kernel" @@ -55,7 +52,6 @@ msgid "FAILED" msgstr "FALLITO" #: src/Common/LinuxKernel.vala:396 -#, fuzzy msgid "Found installed" msgstr "Trovato installato" @@ -63,95 +59,89 @@ msgstr "Trovato installato" msgid "Packages Available" msgstr "Pacchetti disponibili" -#: src/Common/LinuxKernel.vala:795 +#: src/Common/LinuxKernel.vala:796 msgid "Packages Installed" msgstr "Pacchetti installati" -#: src/Common/LinuxKernel.vala:816 src/lib/TeeJee.FileSystem.vala:118 +#: src/Common/LinuxKernel.vala:817 src/lib/TeeJee.FileSystem.vala:118 msgid "File not found" msgstr "File non trovato" -#: src/Common/LinuxKernel.vala:883 +#: src/Common/LinuxKernel.vala:884 msgid "Available Kernels" msgstr "Kernel disponibili" -#: src/Common/LinuxKernel.vala:890 src/Gtk/MainWindow.vala:154 +#: src/Common/LinuxKernel.vala:891 src/Gtk/MainWindow.vala:154 msgid "Installed" msgstr "Installato" -#: src/Common/LinuxKernel.vala:890 src/Gtk/MainWindow.vala:154 +#: src/Common/LinuxKernel.vala:891 src/Gtk/MainWindow.vala:154 #: src/Gtk/MainWindow.vala:495 src/Gtk/MainWindow.vala:508 msgid "Running" msgstr "In esecuzione" -#: src/Common/LinuxKernel.vala:924 +#: src/Common/LinuxKernel.vala:925 msgid "enabled" msgstr "abilitato" -#: src/Common/LinuxKernel.vala:948 +#: src/Common/LinuxKernel.vala:949 msgid "Downloading" msgstr "Scaricamento" -#: src/Common/LinuxKernel.vala:969 -#, fuzzy +#: src/Common/LinuxKernel.vala:970 msgid "is already installed." msgstr "è già installato." -#: src/Common/LinuxKernel.vala:1003 -#, fuzzy +#: src/Common/LinuxKernel.vala:1004 msgid "Uninstalling selected kernels" msgstr "Disinstalla i kernel specificati" -#: src/Common/LinuxKernel.vala:1009 +#: src/Common/LinuxKernel.vala:1010 msgid "requested" msgstr "richiesto" -#: src/Common/LinuxKernel.vala:1012 -#, fuzzy +#: src/Common/LinuxKernel.vala:1013 msgid "not uninstalling the currently running kernel" msgstr "non disinstallare il kernel attualmente in esecuzione" -#: src/Common/LinuxKernel.vala:1028 +#: src/Common/LinuxKernel.vala:1029 msgid "found" msgstr "trovato" -#: src/Common/LinuxKernel.vala:1031 -#, fuzzy +#: src/Common/LinuxKernel.vala:1032 msgid "No packages to un-install!" msgstr "Nessun pacchetto da disinstallare!" -#: src/Common/LinuxKernel.vala:1079 -#, fuzzy +#: src/Common/LinuxKernel.vala:1080 msgid "Could not find running kernel in list" msgstr "Impossibile trovare il kernel in esecuzione nell'elenco" -#: src/Common/LinuxKernel.vala:1084 +#: src/Common/LinuxKernel.vala:1085 msgid "Could not find any kernels to uninstall" msgstr "Impossibile trovare alcun kernel da rimuovere" -#: src/Common/LinuxKernel.vala:1092 -#, fuzzy +#: src/Common/LinuxKernel.vala:1093 msgid "The following kernels will be uninstalled" msgstr "I seguenti kernel saranno rimossi" -#: src/Common/LinuxKernel.vala:1096 +#: src/Common/LinuxKernel.vala:1097 msgid "Continue ?" msgstr "Continuare ?" -#: src/Common/LinuxKernel.vala:1118 src/Console/AppConsole.vala:290 +#: src/Common/LinuxKernel.vala:1119 src/Console/AppConsole.vala:290 msgid "Latest update" msgstr "Ultimo aggiornamento" -#: src/Common/LinuxKernel.vala:1129 src/Console/AppConsole.vala:297 +#: src/Common/LinuxKernel.vala:1130 src/Console/AppConsole.vala:297 msgid "Latest point update" msgstr "Ultimo aggiornamento del rilascio parziale" -#: src/Common/LinuxKernel.vala:1137 src/Console/AppConsole.vala:302 +#: src/Common/LinuxKernel.vala:1138 src/Console/AppConsole.vala:302 #: src/Console/AppConsole.vala:318 msgid "No updates found" msgstr "Nessun aggiornamento trovato" -#: src/Common/LinuxKernel.vala:1146 +#: src/Common/LinuxKernel.vala:1147 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Installare la versione del kernel %s ? (y/n): " @@ -172,7 +162,7 @@ msgid "Notifications are disabled" msgstr "Le notifiche sono disabilitate" #: src/Common/Package.vala:58 -#, fuzzy, c-format +#, c-format msgid "File not found: %s" msgstr "File non trovato: %s" @@ -190,8 +180,9 @@ msgstr "Verifica aggiornamenti del kernel" #: src/Console/AppConsole.vala:52 msgid "Check for kernel updates and notify current user" -msgstr "Verifica la disponibilità di aggiornamenti del kernel" -"ed avvisa l'utente corrente" +msgstr "" +"Verifica la disponibilità di aggiornamenti del kerneled avvisa l'utente " +"corrente" #: src/Console/AppConsole.vala:53 msgid "List all available mainline kernels" @@ -217,10 +208,9 @@ msgstr "Installa kernel mainline specificato" msgid "Uninstall specified kernel" msgstr "Disinstalla i kernel specificati" -#: src/Console/AppConsole.vala:59 -#, fuzzy -msgid "Uninstall kernels older than the latest installed" -msgstr "Rimuovere i kernel installati più vecchi del kernel in esecuzione" +#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:306 +msgid "Uninstall all but the highest installed version" +msgstr "Disinstallare tutti tranne la versione più recente installata" #: src/Console/AppConsole.vala:60 msgid "Download specified kernels" @@ -239,7 +229,6 @@ msgid "Include unstable and RC releases" msgstr "Includi versioni instabili e rilasci RC" #: src/Console/AppConsole.vala:66 -#, fuzzy msgid "Exclude unstable and RC releases" msgstr "Escludi versioni instabili e rilasci RC" @@ -260,7 +249,6 @@ msgid "One or more, comma-seperated" msgstr "Uno o più, separati da virgola" #: src/Console/AppConsole.vala:73 -#, fuzzy msgid "The currently running kernel will always be ignored" msgstr "Il kernel attualmente in esecuzione sarà sempre ignorato" @@ -302,7 +290,6 @@ msgid "to list all commands" msgstr "elencare tutti i comandi" #: src/Console/AppConsole.vala:312 -#, fuzzy msgid "Notifications disabled in settings" msgstr "Le notifiche sono disabilitate" @@ -360,7 +347,6 @@ msgid "Third Party Inclusions" msgstr "Inclusioni di terze parti" #: src/Gtk/AppGtk.vala:135 -#, fuzzy msgid "options" msgstr "opzioni" @@ -396,11 +382,6 @@ msgstr "Note dell'utente per" msgid "Uninstall Old" msgstr "Disinstalla i vecchi" -#: src/Gtk/MainWindow.vala:306 -#, fuzzy -msgid "Uninstall kernels older than latest installed" -msgstr "Rimuovere i kernel installati più vecchi del kernel in esecuzione" - #: src/Gtk/MainWindow.vala:311 msgid "Reload" msgstr "Ricarica" @@ -459,7 +440,6 @@ msgid "Notify if a point release is available" msgstr "Avvisa se è disponibile un rilascio parziale" #: src/Gtk/SettingsDialog.vala:86 -#, fuzzy msgid "Seconds interval enabled for debugging" msgstr "Intervallo in secondi abilitato per il debug" @@ -468,7 +448,6 @@ msgid "Check every" msgstr "Controlla ogni" #: src/Gtk/SettingsDialog.vala:134 -#, fuzzy msgid "Hours" msgstr "Ore" @@ -477,12 +456,10 @@ msgid "Days" msgstr "Giorni" #: src/Gtk/SettingsDialog.vala:138 -#, fuzzy msgid "Weeks" msgstr "Settimane" #: src/Gtk/SettingsDialog.vala:141 -#, fuzzy msgid "Seconds" msgstr "Secondi" @@ -495,7 +472,6 @@ msgid "Hide unstable and RC releases" msgstr "Nascondi versioni instabili e rilasci RC" #: src/Gtk/SettingsDialog.vala:177 -#, fuzzy msgid "previous major versions ( -1 = all )" msgstr "versioni principali precedenti ( -1 = tutte )" @@ -504,7 +480,6 @@ msgid "Network" msgstr "Rete" #: src/Gtk/SettingsDialog.vala:192 -#, fuzzy msgid "Internet connection timeout in" msgstr "Timeout connessione Internet in" @@ -522,13 +497,12 @@ msgstr "Verifica dei checksum con i file CHECKSUMS" #: src/Gtk/SettingsDialog.vala:233 msgid "Proxy" -msgstr "" +msgstr "Proxy" #: src/Gtk/l.gtk.vala:42 msgid "Missing Icon" msgstr "Icona mancante" #: src/lib/l.misc.vala:71 -#, fuzzy msgid "Can not reach site" msgstr "Impossibile raggiungere il sito" diff --git a/po/ko.po b/po/ko.po index 63bab69f..07c99da1 100644 --- a/po/ko.po +++ b/po/ko.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline 1.0.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-04-02 04:23-0400\n" +"POT-Creation-Date: 2023-04-03 19:46-0400\n" "PO-Revision-Date: 2022-09-28 11:48+0900\n" "Last-Translator: Kevin Kim \n" "Language-Team: Korean\n" @@ -65,95 +65,95 @@ msgstr "설치된 것을 찾았습니다." msgid "Packages Available" msgstr "설치 가능한 패키지" -#: src/Common/LinuxKernel.vala:795 +#: src/Common/LinuxKernel.vala:796 msgid "Packages Installed" msgstr "설치된 패키지" -#: src/Common/LinuxKernel.vala:816 src/lib/TeeJee.FileSystem.vala:118 +#: src/Common/LinuxKernel.vala:817 src/lib/TeeJee.FileSystem.vala:118 msgid "File not found" msgstr "파일을 찾을 수 없습니다" -#: src/Common/LinuxKernel.vala:883 +#: src/Common/LinuxKernel.vala:884 msgid "Available Kernels" msgstr "설치 가능한 커널" -#: src/Common/LinuxKernel.vala:890 src/Gtk/MainWindow.vala:154 +#: src/Common/LinuxKernel.vala:891 src/Gtk/MainWindow.vala:154 msgid "Installed" msgstr "설치 됨" -#: src/Common/LinuxKernel.vala:890 src/Gtk/MainWindow.vala:154 +#: src/Common/LinuxKernel.vala:891 src/Gtk/MainWindow.vala:154 #: src/Gtk/MainWindow.vala:495 src/Gtk/MainWindow.vala:508 msgid "Running" msgstr "구동 중" -#: src/Common/LinuxKernel.vala:924 +#: src/Common/LinuxKernel.vala:925 msgid "enabled" msgstr "사용" -#: src/Common/LinuxKernel.vala:948 +#: src/Common/LinuxKernel.vala:949 msgid "Downloading" msgstr "다운로드" -#: src/Common/LinuxKernel.vala:969 +#: src/Common/LinuxKernel.vala:970 #, fuzzy msgid "is already installed." msgstr "이 커널은 이미 설치되었습니다." -#: src/Common/LinuxKernel.vala:1003 +#: src/Common/LinuxKernel.vala:1004 #, fuzzy msgid "Uninstalling selected kernels" msgstr "지정한 커널 삭제" -#: src/Common/LinuxKernel.vala:1009 +#: src/Common/LinuxKernel.vala:1010 msgid "requested" msgstr "요청" -#: src/Common/LinuxKernel.vala:1012 +#: src/Common/LinuxKernel.vala:1013 #, fuzzy msgid "not uninstalling the currently running kernel" msgstr "현재 실행 중인 커널을 제거하지 않음" -#: src/Common/LinuxKernel.vala:1028 +#: src/Common/LinuxKernel.vala:1029 msgid "found" msgstr "설립하다" -#: src/Common/LinuxKernel.vala:1031 +#: src/Common/LinuxKernel.vala:1032 #, fuzzy msgid "No packages to un-install!" msgstr "설치된 패키지" -#: src/Common/LinuxKernel.vala:1079 +#: src/Common/LinuxKernel.vala:1080 #, fuzzy msgid "Could not find running kernel in list" msgstr "목록에서 사용중인 커널을 찾을 수 없습니다!" -#: src/Common/LinuxKernel.vala:1084 +#: src/Common/LinuxKernel.vala:1085 msgid "Could not find any kernels to uninstall" msgstr "삭제할 커널을 찾을 수 없습니다" -#: src/Common/LinuxKernel.vala:1092 +#: src/Common/LinuxKernel.vala:1093 #, fuzzy msgid "The following kernels will be uninstalled" msgstr "아래 커널이 삭제됩니다:" -#: src/Common/LinuxKernel.vala:1096 +#: src/Common/LinuxKernel.vala:1097 msgid "Continue ?" msgstr "계속하시겠습니까?" -#: src/Common/LinuxKernel.vala:1118 src/Console/AppConsole.vala:290 +#: src/Common/LinuxKernel.vala:1119 src/Console/AppConsole.vala:290 msgid "Latest update" msgstr "최신 업데이트" -#: src/Common/LinuxKernel.vala:1129 src/Console/AppConsole.vala:297 +#: src/Common/LinuxKernel.vala:1130 src/Console/AppConsole.vala:297 msgid "Latest point update" msgstr "최신 포인트 업데이트" -#: src/Common/LinuxKernel.vala:1137 src/Console/AppConsole.vala:302 +#: src/Common/LinuxKernel.vala:1138 src/Console/AppConsole.vala:302 #: src/Console/AppConsole.vala:318 msgid "No updates found" msgstr "업데이트를 찾을 수 없습니다" -#: src/Common/LinuxKernel.vala:1146 +#: src/Common/LinuxKernel.vala:1147 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "커널 %s 버전을 설치하시겠습니까? (y/n): " @@ -216,9 +216,9 @@ msgstr "지정한 메인라인 커널 설치" msgid "Uninstall specified kernel" msgstr "지정한 커널 삭제" -#: src/Console/AppConsole.vala:59 +#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:306 #, fuzzy -msgid "Uninstall kernels older than the latest installed" +msgid "Uninstall all but the highest installed version" msgstr "현재 사용중인 커널보다 이전 버전의 설치된 커널을 제거" #: src/Console/AppConsole.vala:60 @@ -392,11 +392,6 @@ msgstr "사용자 참고 사항" msgid "Uninstall Old" msgstr "오래된 커널 제거" -#: src/Gtk/MainWindow.vala:306 -#, fuzzy -msgid "Uninstall kernels older than latest installed" -msgstr "현재 사용중인 커널보다 이전 버전의 설치된 커널을 제거" - #: src/Gtk/MainWindow.vala:311 msgid "Reload" msgstr "새로고침" diff --git a/po/messages.pot b/po/messages.pot index e3a65e8a..841dcb8a 100644 --- a/po/messages.pot +++ b/po/messages.pot @@ -6,9 +6,9 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: mainline 1.1.10\n" +"Project-Id-Version: mainline 1.1.11\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-04-02 04:23-0400\n" +"POT-Creation-Date: 2023-04-03 19:46-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -65,89 +65,89 @@ msgstr "" msgid "Packages Available" msgstr "" -#: src/Common/LinuxKernel.vala:795 +#: src/Common/LinuxKernel.vala:796 msgid "Packages Installed" msgstr "" -#: src/Common/LinuxKernel.vala:816 src/lib/TeeJee.FileSystem.vala:118 +#: src/Common/LinuxKernel.vala:817 src/lib/TeeJee.FileSystem.vala:118 msgid "File not found" msgstr "" -#: src/Common/LinuxKernel.vala:883 +#: src/Common/LinuxKernel.vala:884 msgid "Available Kernels" msgstr "" -#: src/Common/LinuxKernel.vala:890 src/Gtk/MainWindow.vala:154 +#: src/Common/LinuxKernel.vala:891 src/Gtk/MainWindow.vala:154 msgid "Installed" msgstr "" -#: src/Common/LinuxKernel.vala:890 src/Gtk/MainWindow.vala:154 +#: src/Common/LinuxKernel.vala:891 src/Gtk/MainWindow.vala:154 #: src/Gtk/MainWindow.vala:495 src/Gtk/MainWindow.vala:508 msgid "Running" msgstr "" -#: src/Common/LinuxKernel.vala:924 +#: src/Common/LinuxKernel.vala:925 msgid "enabled" msgstr "" -#: src/Common/LinuxKernel.vala:948 +#: src/Common/LinuxKernel.vala:949 msgid "Downloading" msgstr "" -#: src/Common/LinuxKernel.vala:969 +#: src/Common/LinuxKernel.vala:970 msgid "is already installed." msgstr "" -#: src/Common/LinuxKernel.vala:1003 +#: src/Common/LinuxKernel.vala:1004 msgid "Uninstalling selected kernels" msgstr "" -#: src/Common/LinuxKernel.vala:1009 +#: src/Common/LinuxKernel.vala:1010 msgid "requested" msgstr "" -#: src/Common/LinuxKernel.vala:1012 +#: src/Common/LinuxKernel.vala:1013 msgid "not uninstalling the currently running kernel" msgstr "" -#: src/Common/LinuxKernel.vala:1028 +#: src/Common/LinuxKernel.vala:1029 msgid "found" msgstr "" -#: src/Common/LinuxKernel.vala:1031 +#: src/Common/LinuxKernel.vala:1032 msgid "No packages to un-install!" msgstr "" -#: src/Common/LinuxKernel.vala:1079 +#: src/Common/LinuxKernel.vala:1080 msgid "Could not find running kernel in list" msgstr "" -#: src/Common/LinuxKernel.vala:1084 +#: src/Common/LinuxKernel.vala:1085 msgid "Could not find any kernels to uninstall" msgstr "" -#: src/Common/LinuxKernel.vala:1092 +#: src/Common/LinuxKernel.vala:1093 msgid "The following kernels will be uninstalled" msgstr "" -#: src/Common/LinuxKernel.vala:1096 +#: src/Common/LinuxKernel.vala:1097 msgid "Continue ?" msgstr "" -#: src/Common/LinuxKernel.vala:1118 src/Console/AppConsole.vala:290 +#: src/Common/LinuxKernel.vala:1119 src/Console/AppConsole.vala:290 msgid "Latest update" msgstr "" -#: src/Common/LinuxKernel.vala:1129 src/Console/AppConsole.vala:297 +#: src/Common/LinuxKernel.vala:1130 src/Console/AppConsole.vala:297 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:1137 src/Console/AppConsole.vala:302 +#: src/Common/LinuxKernel.vala:1138 src/Console/AppConsole.vala:302 #: src/Console/AppConsole.vala:318 msgid "No updates found" msgstr "" -#: src/Common/LinuxKernel.vala:1146 +#: src/Common/LinuxKernel.vala:1147 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "" @@ -210,8 +210,8 @@ msgstr "" msgid "Uninstall specified kernel" msgstr "" -#: src/Console/AppConsole.vala:59 -msgid "Uninstall kernels older than the latest installed" +#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:306 +msgid "Uninstall all but the highest installed version" msgstr "" #: src/Console/AppConsole.vala:60 @@ -384,10 +384,6 @@ msgstr "" msgid "Uninstall Old" msgstr "" -#: src/Gtk/MainWindow.vala:306 -msgid "Uninstall kernels older than latest installed" -msgstr "" - #: src/Gtk/MainWindow.vala:311 msgid "Reload" msgstr "" diff --git a/po/nl.po b/po/nl.po index bbd35b51..6985cadb 100644 --- a/po/nl.po +++ b/po/nl.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-04-02 04:23-0400\n" +"POT-Creation-Date: 2023-04-03 19:46-0400\n" "PO-Revision-Date: 2020-08-23 13:55+0200\n" "Last-Translator: Heimen Stoffels \n" "Language-Team: Dutch (Netherlands)\n" @@ -61,91 +61,91 @@ msgstr "Geïnstalleerd gevonden" msgid "Packages Available" msgstr "Beschikbare pakketten" -#: src/Common/LinuxKernel.vala:795 +#: src/Common/LinuxKernel.vala:796 msgid "Packages Installed" msgstr "Geïnstalleerde pakketten" -#: src/Common/LinuxKernel.vala:816 src/lib/TeeJee.FileSystem.vala:118 +#: src/Common/LinuxKernel.vala:817 src/lib/TeeJee.FileSystem.vala:118 msgid "File not found" msgstr "Het bestand is niet gevonden" -#: src/Common/LinuxKernel.vala:883 +#: src/Common/LinuxKernel.vala:884 msgid "Available Kernels" msgstr "Beschikbare kernels" -#: src/Common/LinuxKernel.vala:890 src/Gtk/MainWindow.vala:154 +#: src/Common/LinuxKernel.vala:891 src/Gtk/MainWindow.vala:154 msgid "Installed" msgstr "Geïnstalleerd" -#: src/Common/LinuxKernel.vala:890 src/Gtk/MainWindow.vala:154 +#: src/Common/LinuxKernel.vala:891 src/Gtk/MainWindow.vala:154 #: src/Gtk/MainWindow.vala:495 src/Gtk/MainWindow.vala:508 msgid "Running" msgstr "In gebruik" -#: src/Common/LinuxKernel.vala:924 +#: src/Common/LinuxKernel.vala:925 msgid "enabled" msgstr "ingeschakeld" -#: src/Common/LinuxKernel.vala:948 +#: src/Common/LinuxKernel.vala:949 msgid "Downloading" msgstr "Downloaden" -#: src/Common/LinuxKernel.vala:969 +#: src/Common/LinuxKernel.vala:970 #, fuzzy msgid "is already installed." msgstr "Deze kernel is al geïnstalleerd." -#: src/Common/LinuxKernel.vala:1003 +#: src/Common/LinuxKernel.vala:1004 #, fuzzy msgid "Uninstalling selected kernels" msgstr "Geselecteerde kernels verwijderen" -#: src/Common/LinuxKernel.vala:1009 +#: src/Common/LinuxKernel.vala:1010 msgid "requested" msgstr "verzocht" -#: src/Common/LinuxKernel.vala:1012 +#: src/Common/LinuxKernel.vala:1013 msgid "not uninstalling the currently running kernel" msgstr "de momenteel actieve kernel niet verwijderen" -#: src/Common/LinuxKernel.vala:1028 +#: src/Common/LinuxKernel.vala:1029 msgid "found" msgstr "gevonden" -#: src/Common/LinuxKernel.vala:1031 +#: src/Common/LinuxKernel.vala:1032 msgid "No packages to un-install!" msgstr "Geen pakketten om te verwijderen!" -#: src/Common/LinuxKernel.vala:1079 +#: src/Common/LinuxKernel.vala:1080 msgid "Could not find running kernel in list" msgstr "De in gebruik zijnde kernel staat niet op de lijst" -#: src/Common/LinuxKernel.vala:1084 +#: src/Common/LinuxKernel.vala:1085 msgid "Could not find any kernels to uninstall" msgstr "Er zijn geen te verwijderen kernels" -#: src/Common/LinuxKernel.vala:1092 +#: src/Common/LinuxKernel.vala:1093 msgid "The following kernels will be uninstalled" msgstr "De volgende kernels worden verwijderd" -#: src/Common/LinuxKernel.vala:1096 +#: src/Common/LinuxKernel.vala:1097 msgid "Continue ?" msgstr "Wilt u doorgaan?" -#: src/Common/LinuxKernel.vala:1118 src/Console/AppConsole.vala:290 +#: src/Common/LinuxKernel.vala:1119 src/Console/AppConsole.vala:290 msgid "Latest update" msgstr "Recentste update" -#: src/Common/LinuxKernel.vala:1129 src/Console/AppConsole.vala:297 +#: src/Common/LinuxKernel.vala:1130 src/Console/AppConsole.vala:297 msgid "Latest point update" msgstr "Recentste puntupdate" -#: src/Common/LinuxKernel.vala:1137 src/Console/AppConsole.vala:302 +#: src/Common/LinuxKernel.vala:1138 src/Console/AppConsole.vala:302 #: src/Console/AppConsole.vala:318 msgid "No updates found" msgstr "Geen updates gevonden" -#: src/Common/LinuxKernel.vala:1146 +#: src/Common/LinuxKernel.vala:1147 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Wilt u versie %s installeren? (j/n): " @@ -157,7 +157,9 @@ msgstr "Aangeroepen door" #: src/Common/Main.vala:352 msgid "" "This file is over-written and executed again whenever settings are saved in" -msgstr "Dit bestand wordt overschreven en opnieuw uitgevoerd wanneer instellingen worden opgeslagen in" +msgstr "" +"Dit bestand wordt overschreven en opnieuw uitgevoerd wanneer instellingen " +"worden opgeslagen in" #: src/Common/Main.vala:384 msgid "Notifications are disabled" @@ -208,8 +210,9 @@ msgstr "Opgegeven mainline-kernel installeren" msgid "Uninstall specified kernel" msgstr "Opgegeven kernel verwijderen" -#: src/Console/AppConsole.vala:59 -msgid "Uninstall kernels older than the latest installed" +#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:306 +#, fuzzy +msgid "Uninstall all but the highest installed version" msgstr "Kernels verwijderen die ouder zijn dan de laatst geïnstalleerde" #: src/Console/AppConsole.vala:60 @@ -384,10 +387,6 @@ msgstr "Gebruikersnotities voor" msgid "Uninstall Old" msgstr "Verwijder Oude" -#: src/Gtk/MainWindow.vala:306 -msgid "Uninstall kernels older than latest installed" -msgstr "Kernels verwijderen die ouder zijn dan de laatst geïnstalleerde" - #: src/Gtk/MainWindow.vala:311 msgid "Reload" msgstr "Herladen" diff --git a/po/pl.po b/po/pl.po index b66e511a..074a9da4 100644 --- a/po/pl.po +++ b/po/pl.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-04-02 04:23-0400\n" +"POT-Creation-Date: 2023-04-03 19:46-0400\n" "PO-Revision-Date: 2023-04-02 21:31+0200\n" "Last-Translator: Matthaiks\n" "Language-Team: Polish\n" @@ -60,89 +60,89 @@ msgstr "Znaleziono zainstalowane" msgid "Packages Available" msgstr "Dostępne pakiety" -#: src/Common/LinuxKernel.vala:795 +#: src/Common/LinuxKernel.vala:796 msgid "Packages Installed" msgstr "Pakiety zainstalowane" -#: src/Common/LinuxKernel.vala:816 src/lib/TeeJee.FileSystem.vala:118 +#: src/Common/LinuxKernel.vala:817 src/lib/TeeJee.FileSystem.vala:118 msgid "File not found" msgstr "Nie odnaleziono pliku" -#: src/Common/LinuxKernel.vala:883 +#: src/Common/LinuxKernel.vala:884 msgid "Available Kernels" msgstr "Dostępne jądra" -#: src/Common/LinuxKernel.vala:890 src/Gtk/MainWindow.vala:154 +#: src/Common/LinuxKernel.vala:891 src/Gtk/MainWindow.vala:154 msgid "Installed" msgstr "Zainstalowane" -#: src/Common/LinuxKernel.vala:890 src/Gtk/MainWindow.vala:154 +#: src/Common/LinuxKernel.vala:891 src/Gtk/MainWindow.vala:154 #: src/Gtk/MainWindow.vala:495 src/Gtk/MainWindow.vala:508 msgid "Running" msgstr "Uruchomione" -#: src/Common/LinuxKernel.vala:924 +#: src/Common/LinuxKernel.vala:925 msgid "enabled" msgstr "włączone" -#: src/Common/LinuxKernel.vala:948 +#: src/Common/LinuxKernel.vala:949 msgid "Downloading" msgstr "Pobieranie" -#: src/Common/LinuxKernel.vala:969 +#: src/Common/LinuxKernel.vala:970 msgid "is already installed." msgstr "jest już zainstalowane." -#: src/Common/LinuxKernel.vala:1003 +#: src/Common/LinuxKernel.vala:1004 msgid "Uninstalling selected kernels" msgstr "Odinstalowanie wybranych jąder" -#: src/Common/LinuxKernel.vala:1009 +#: src/Common/LinuxKernel.vala:1010 msgid "requested" msgstr "zażądane" -#: src/Common/LinuxKernel.vala:1012 +#: src/Common/LinuxKernel.vala:1013 msgid "not uninstalling the currently running kernel" msgstr "bez odinstalowywania aktualnie uruchomionego jądra" -#: src/Common/LinuxKernel.vala:1028 +#: src/Common/LinuxKernel.vala:1029 msgid "found" msgstr "znalezione" -#: src/Common/LinuxKernel.vala:1031 +#: src/Common/LinuxKernel.vala:1032 msgid "No packages to un-install!" msgstr "Brak pakietów do odinstalowania!" -#: src/Common/LinuxKernel.vala:1079 +#: src/Common/LinuxKernel.vala:1080 msgid "Could not find running kernel in list" msgstr "Nie można znaleźć uruchomionego jądra na liście" -#: src/Common/LinuxKernel.vala:1084 +#: src/Common/LinuxKernel.vala:1085 msgid "Could not find any kernels to uninstall" msgstr "Nie można znaleźć żadnych jąder do odinstalowania" -#: src/Common/LinuxKernel.vala:1092 +#: src/Common/LinuxKernel.vala:1093 msgid "The following kernels will be uninstalled" msgstr "Następujące jądra zostaną odinstalowane" -#: src/Common/LinuxKernel.vala:1096 +#: src/Common/LinuxKernel.vala:1097 msgid "Continue ?" msgstr "Kontynuować?" -#: src/Common/LinuxKernel.vala:1118 src/Console/AppConsole.vala:290 +#: src/Common/LinuxKernel.vala:1119 src/Console/AppConsole.vala:290 msgid "Latest update" msgstr "Najnowsza aktualizacja" -#: src/Common/LinuxKernel.vala:1129 src/Console/AppConsole.vala:297 +#: src/Common/LinuxKernel.vala:1130 src/Console/AppConsole.vala:297 msgid "Latest point update" msgstr "Najnowsza aktualizacja punktowa" -#: src/Common/LinuxKernel.vala:1137 src/Console/AppConsole.vala:302 +#: src/Common/LinuxKernel.vala:1138 src/Console/AppConsole.vala:302 #: src/Console/AppConsole.vala:318 msgid "No updates found" msgstr "Nie znaleziono aktualizacji" -#: src/Common/LinuxKernel.vala:1146 +#: src/Common/LinuxKernel.vala:1147 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Zainstalować wersję jądra %s? (t/n): " @@ -207,8 +207,9 @@ msgstr "Zainstaluj wybrane jądro" msgid "Uninstall specified kernel" msgstr "Odinstaluj wybrane jądro" -#: src/Console/AppConsole.vala:59 -msgid "Uninstall kernels older than the latest installed" +#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:306 +#, fuzzy +msgid "Uninstall all but the highest installed version" msgstr "Odinstaluj jądra starsze niż ostatnio zainstalowane" #: src/Console/AppConsole.vala:60 @@ -381,10 +382,6 @@ msgstr "Notatki użytkownika dotyczące" msgid "Uninstall Old" msgstr "Odinstaluj stare" -#: src/Gtk/MainWindow.vala:306 -msgid "Uninstall kernels older than latest installed" -msgstr "Odinstaluj jądra starsze niż ostatnio zainstalowane" - #: src/Gtk/MainWindow.vala:311 msgid "Reload" msgstr "Wczytaj ponownie" diff --git a/po/ru.po b/po/ru.po index 43954d81..a915f4a3 100644 --- a/po/ru.po +++ b/po/ru.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-04-02 04:23-0400\n" +"POT-Creation-Date: 2023-04-03 19:46-0400\n" "PO-Revision-Date: 2023-04-02 17:50+0300\n" "Last-Translator: Faust3000 (Original) | Danik2343 (Update Transaltion) " "\n" @@ -62,89 +62,89 @@ msgstr "Найдено установлененное" msgid "Packages Available" msgstr "Доступные пакеты" -#: src/Common/LinuxKernel.vala:795 +#: src/Common/LinuxKernel.vala:796 msgid "Packages Installed" msgstr "Установленные пакеты" -#: src/Common/LinuxKernel.vala:816 src/lib/TeeJee.FileSystem.vala:118 +#: src/Common/LinuxKernel.vala:817 src/lib/TeeJee.FileSystem.vala:118 msgid "File not found" msgstr "Файл не найден" -#: src/Common/LinuxKernel.vala:883 +#: src/Common/LinuxKernel.vala:884 msgid "Available Kernels" msgstr "Доступные ядра" -#: src/Common/LinuxKernel.vala:890 src/Gtk/MainWindow.vala:154 +#: src/Common/LinuxKernel.vala:891 src/Gtk/MainWindow.vala:154 msgid "Installed" msgstr "Установлено" -#: src/Common/LinuxKernel.vala:890 src/Gtk/MainWindow.vala:154 +#: src/Common/LinuxKernel.vala:891 src/Gtk/MainWindow.vala:154 #: src/Gtk/MainWindow.vala:495 src/Gtk/MainWindow.vala:508 msgid "Running" msgstr "Используется" -#: src/Common/LinuxKernel.vala:924 +#: src/Common/LinuxKernel.vala:925 msgid "enabled" msgstr "включено" -#: src/Common/LinuxKernel.vala:948 +#: src/Common/LinuxKernel.vala:949 msgid "Downloading" msgstr "Загрузки" -#: src/Common/LinuxKernel.vala:969 +#: src/Common/LinuxKernel.vala:970 msgid "is already installed." msgstr "уже установлен." -#: src/Common/LinuxKernel.vala:1003 +#: src/Common/LinuxKernel.vala:1004 msgid "Uninstalling selected kernels" msgstr "Удаление выбранных ядер" -#: src/Common/LinuxKernel.vala:1009 +#: src/Common/LinuxKernel.vala:1010 msgid "requested" msgstr "запрошено" -#: src/Common/LinuxKernel.vala:1012 +#: src/Common/LinuxKernel.vala:1013 msgid "not uninstalling the currently running kernel" msgstr "не удаляет текущее работающее ядро" -#: src/Common/LinuxKernel.vala:1028 +#: src/Common/LinuxKernel.vala:1029 msgid "found" msgstr "найдено" -#: src/Common/LinuxKernel.vala:1031 +#: src/Common/LinuxKernel.vala:1032 msgid "No packages to un-install!" msgstr "Нет пакетов для удаления!" -#: src/Common/LinuxKernel.vala:1079 +#: src/Common/LinuxKernel.vala:1080 msgid "Could not find running kernel in list" msgstr "Could not find running kernel in list" -#: src/Common/LinuxKernel.vala:1084 +#: src/Common/LinuxKernel.vala:1085 msgid "Could not find any kernels to uninstall" msgstr "Не удалось найти ядра для деинсталляции" -#: src/Common/LinuxKernel.vala:1092 +#: src/Common/LinuxKernel.vala:1093 msgid "The following kernels will be uninstalled" msgstr "Следующие ядра будут удалены" -#: src/Common/LinuxKernel.vala:1096 +#: src/Common/LinuxKernel.vala:1097 msgid "Continue ?" msgstr "Продолжить ?" -#: src/Common/LinuxKernel.vala:1118 src/Console/AppConsole.vala:290 +#: src/Common/LinuxKernel.vala:1119 src/Console/AppConsole.vala:290 msgid "Latest update" msgstr "Последнее обновление" -#: src/Common/LinuxKernel.vala:1129 src/Console/AppConsole.vala:297 +#: src/Common/LinuxKernel.vala:1130 src/Console/AppConsole.vala:297 msgid "Latest point update" msgstr "Последнее обновление пунктов" -#: src/Common/LinuxKernel.vala:1137 src/Console/AppConsole.vala:302 +#: src/Common/LinuxKernel.vala:1138 src/Console/AppConsole.vala:302 #: src/Console/AppConsole.vala:318 msgid "No updates found" msgstr "Обновлений не найдено" -#: src/Common/LinuxKernel.vala:1146 +#: src/Common/LinuxKernel.vala:1147 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Установить версию ядра %s ? (y/n): " @@ -156,7 +156,8 @@ msgstr "Вызван из" #: src/Common/Main.vala:352 msgid "" "This file is over-written and executed again whenever settings are saved in" -msgstr "Этот файл перезаписывается и выполняется снова при сохранении настроек в" +msgstr "" +"Этот файл перезаписывается и выполняется снова при сохранении настроек в" #: src/Common/Main.vala:384 msgid "Notifications are disabled" @@ -207,8 +208,9 @@ msgstr "Установить указанную ветку основного я msgid "Uninstall specified kernel" msgstr "Установить указанное ядро" -#: src/Console/AppConsole.vala:59 -msgid "Uninstall kernels older than the latest installed" +#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:306 +#, fuzzy +msgid "Uninstall all but the highest installed version" msgstr "Удаление ядер старше последней установленной версии" #: src/Console/AppConsole.vala:60 @@ -381,10 +383,6 @@ msgstr "Примечания пользователя для" msgid "Uninstall Old" msgstr "Удалить старые" -#: src/Gtk/MainWindow.vala:306 -msgid "Uninstall kernels older than latest installed" -msgstr "Удаление ядер старше последних установленных" - #: src/Gtk/MainWindow.vala:311 msgid "Reload" msgstr "Перезагрузить" diff --git a/po/sv.po b/po/sv.po index c854130f..f148d283 100644 --- a/po/sv.po +++ b/po/sv.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-04-02 04:23-0400\n" +"POT-Creation-Date: 2023-04-03 19:46-0400\n" "PO-Revision-Date: 2018-01-13 16:56+0100\n" "Last-Translator: Åke Engelbrektson \n" "Language-Team:Swedish\n" @@ -63,89 +63,89 @@ msgstr "Hittade installerat" msgid "Packages Available" msgstr "Tillgängliga paket" -#: src/Common/LinuxKernel.vala:795 +#: src/Common/LinuxKernel.vala:796 msgid "Packages Installed" msgstr "Installerade paket" -#: src/Common/LinuxKernel.vala:816 src/lib/TeeJee.FileSystem.vala:118 +#: src/Common/LinuxKernel.vala:817 src/lib/TeeJee.FileSystem.vala:118 msgid "File not found" msgstr "Filen kan inte hittas" -#: src/Common/LinuxKernel.vala:883 +#: src/Common/LinuxKernel.vala:884 msgid "Available Kernels" msgstr "Tillgängliga kärnor" -#: src/Common/LinuxKernel.vala:890 src/Gtk/MainWindow.vala:154 +#: src/Common/LinuxKernel.vala:891 src/Gtk/MainWindow.vala:154 msgid "Installed" msgstr "Installerad" -#: src/Common/LinuxKernel.vala:890 src/Gtk/MainWindow.vala:154 +#: src/Common/LinuxKernel.vala:891 src/Gtk/MainWindow.vala:154 #: src/Gtk/MainWindow.vala:495 src/Gtk/MainWindow.vala:508 msgid "Running" msgstr "Körs" -#: src/Common/LinuxKernel.vala:924 +#: src/Common/LinuxKernel.vala:925 msgid "enabled" msgstr "aktiverat" -#: src/Common/LinuxKernel.vala:948 +#: src/Common/LinuxKernel.vala:949 msgid "Downloading" msgstr "Ladda ner" -#: src/Common/LinuxKernel.vala:969 +#: src/Common/LinuxKernel.vala:970 msgid "is already installed." msgstr "är redan installerat." -#: src/Common/LinuxKernel.vala:1003 +#: src/Common/LinuxKernel.vala:1004 msgid "Uninstalling selected kernels" msgstr "Avinstallera valda kärnor" -#: src/Common/LinuxKernel.vala:1009 +#: src/Common/LinuxKernel.vala:1010 msgid "requested" msgstr "begärd" -#: src/Common/LinuxKernel.vala:1012 +#: src/Common/LinuxKernel.vala:1013 msgid "not uninstalling the currently running kernel" msgstr "Avinstallera inte den kärna som körs, för närvarande" -#: src/Common/LinuxKernel.vala:1028 +#: src/Common/LinuxKernel.vala:1029 msgid "found" msgstr "grunda" -#: src/Common/LinuxKernel.vala:1031 +#: src/Common/LinuxKernel.vala:1032 msgid "No packages to un-install!" msgstr "Inga paket att avinstallera!" -#: src/Common/LinuxKernel.vala:1079 +#: src/Common/LinuxKernel.vala:1080 msgid "Could not find running kernel in list" msgstr "Det gick inte att hitta kernel som körs i listan" -#: src/Common/LinuxKernel.vala:1084 +#: src/Common/LinuxKernel.vala:1085 msgid "Could not find any kernels to uninstall" msgstr "Det gick inte att hitta några kärnor att avinstallera" -#: src/Common/LinuxKernel.vala:1092 +#: src/Common/LinuxKernel.vala:1093 msgid "The following kernels will be uninstalled" msgstr "Följande kärnor kommer att avinstalleras" -#: src/Common/LinuxKernel.vala:1096 +#: src/Common/LinuxKernel.vala:1097 msgid "Continue ?" msgstr "Fortsätta?" -#: src/Common/LinuxKernel.vala:1118 src/Console/AppConsole.vala:290 +#: src/Common/LinuxKernel.vala:1119 src/Console/AppConsole.vala:290 msgid "Latest update" msgstr "Senaste uppdatering" -#: src/Common/LinuxKernel.vala:1129 src/Console/AppConsole.vala:297 +#: src/Common/LinuxKernel.vala:1130 src/Console/AppConsole.vala:297 msgid "Latest point update" msgstr "Senaste punktuppdatering" -#: src/Common/LinuxKernel.vala:1137 src/Console/AppConsole.vala:302 +#: src/Common/LinuxKernel.vala:1138 src/Console/AppConsole.vala:302 #: src/Console/AppConsole.vala:318 msgid "No updates found" msgstr "Inga uppdateringar hittades" -#: src/Common/LinuxKernel.vala:1146 +#: src/Common/LinuxKernel.vala:1147 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Installera kärnversion %s ? (j/n):" @@ -208,8 +208,9 @@ msgstr "Installera angiven huvudkärna" msgid "Uninstall specified kernel" msgstr "Avinstallera angiven kärna" -#: src/Console/AppConsole.vala:59 -msgid "Uninstall kernels older than the latest installed" +#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:306 +#, fuzzy +msgid "Uninstall all but the highest installed version" msgstr "Avinstallera kärnor som är äldre än de senast installerade" #: src/Console/AppConsole.vala:60 @@ -383,10 +384,6 @@ msgstr "Användaranteckningar för" msgid "Uninstall Old" msgstr "Avinstallera Gamla" -#: src/Gtk/MainWindow.vala:306 -msgid "Uninstall kernels older than latest installed" -msgstr "Avinstallera kärnor som är äldre än senast installerade" - #: src/Gtk/MainWindow.vala:311 msgid "Reload" msgstr "Reload" diff --git a/po/tr.po b/po/tr.po index eb7da2f9..dc06fa9b 100644 --- a/po/tr.po +++ b/po/tr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-04-02 04:23-0400\n" +"POT-Creation-Date: 2023-04-03 19:46-0400\n" "PO-Revision-Date: 2022-08-06 16:48+0300\n" "Last-Translator: Sabri Ünal \n" "Language-Team: Turkish\n" @@ -61,90 +61,90 @@ msgstr "Yüklü bulundu" msgid "Packages Available" msgstr "Mevcut Paketler" -#: src/Common/LinuxKernel.vala:795 +#: src/Common/LinuxKernel.vala:796 msgid "Packages Installed" msgstr "Kurulu Paketler" -#: src/Common/LinuxKernel.vala:816 src/lib/TeeJee.FileSystem.vala:118 +#: src/Common/LinuxKernel.vala:817 src/lib/TeeJee.FileSystem.vala:118 msgid "File not found" msgstr "Dosya bulunamadı" -#: src/Common/LinuxKernel.vala:883 +#: src/Common/LinuxKernel.vala:884 msgid "Available Kernels" msgstr "Mevcut Çekirdekler" -#: src/Common/LinuxKernel.vala:890 src/Gtk/MainWindow.vala:154 +#: src/Common/LinuxKernel.vala:891 src/Gtk/MainWindow.vala:154 msgid "Installed" msgstr "Kurulu" -#: src/Common/LinuxKernel.vala:890 src/Gtk/MainWindow.vala:154 +#: src/Common/LinuxKernel.vala:891 src/Gtk/MainWindow.vala:154 #: src/Gtk/MainWindow.vala:495 src/Gtk/MainWindow.vala:508 msgid "Running" msgstr "Çalışıyor" -#: src/Common/LinuxKernel.vala:924 +#: src/Common/LinuxKernel.vala:925 msgid "enabled" msgstr "etkin" -#: src/Common/LinuxKernel.vala:948 +#: src/Common/LinuxKernel.vala:949 msgid "Downloading" msgstr "Indiriyor" -#: src/Common/LinuxKernel.vala:969 +#: src/Common/LinuxKernel.vala:970 msgid "is already installed." msgstr "zaten yüklü." -#: src/Common/LinuxKernel.vala:1003 +#: src/Common/LinuxKernel.vala:1004 msgid "Uninstalling selected kernels" msgstr "Seçili çekirdekleri kaldırma" -#: src/Common/LinuxKernel.vala:1009 +#: src/Common/LinuxKernel.vala:1010 msgid "requested" msgstr "istenen" -#: src/Common/LinuxKernel.vala:1012 +#: src/Common/LinuxKernel.vala:1013 msgid "not uninstalling the currently running kernel" msgstr "çalışmakta olan çekirdeğin kaldırılmaması" -#: src/Common/LinuxKernel.vala:1028 +#: src/Common/LinuxKernel.vala:1029 msgid "found" msgstr "kurmak" -#: src/Common/LinuxKernel.vala:1031 +#: src/Common/LinuxKernel.vala:1032 msgid "No packages to un-install!" msgstr "Kaldırılacak paket yok!" -#: src/Common/LinuxKernel.vala:1079 +#: src/Common/LinuxKernel.vala:1080 msgid "Could not find running kernel in list" msgstr "Listede çalışan çekirdek bulunamadı" -#: src/Common/LinuxKernel.vala:1084 +#: src/Common/LinuxKernel.vala:1085 msgid "Could not find any kernels to uninstall" msgstr "Kaldırılacak çekirdek bulunamadı" -#: src/Common/LinuxKernel.vala:1092 +#: src/Common/LinuxKernel.vala:1093 msgid "The following kernels will be uninstalled" msgstr "Aşağıdaki çekirdekler kaldırılacaktır" -#: src/Common/LinuxKernel.vala:1096 +#: src/Common/LinuxKernel.vala:1097 msgid "Continue ?" msgstr "Devam edilsin mi?" -#: src/Common/LinuxKernel.vala:1118 src/Console/AppConsole.vala:290 +#: src/Common/LinuxKernel.vala:1119 src/Console/AppConsole.vala:290 msgid "Latest update" msgstr "Son güncelleme" # Point burada point release anlamında kullanılıyor. Örneğin 5.10.x sayısının en sonundaki x rakamı point release/nokta sürüm oluyor. -#: src/Common/LinuxKernel.vala:1129 src/Console/AppConsole.vala:297 +#: src/Common/LinuxKernel.vala:1130 src/Console/AppConsole.vala:297 msgid "Latest point update" msgstr "Son nokta güncellemesi" -#: src/Common/LinuxKernel.vala:1137 src/Console/AppConsole.vala:302 +#: src/Common/LinuxKernel.vala:1138 src/Console/AppConsole.vala:302 #: src/Console/AppConsole.vala:318 msgid "No updates found" msgstr "Güncelleme bulunamadı" -#: src/Common/LinuxKernel.vala:1146 +#: src/Common/LinuxKernel.vala:1147 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Linux Çekirdek Sürümü %s Kurulsun mu? (e/h): " @@ -156,7 +156,8 @@ msgstr "Çağrı konumu" #: src/Common/Main.vala:352 msgid "" "This file is over-written and executed again whenever settings are saved in" -msgstr "Bu dosyanın üzerine yazılır ve ayarlar her kaydedildiğinde yeniden yürütülür" +msgstr "" +"Bu dosyanın üzerine yazılır ve ayarlar her kaydedildiğinde yeniden yürütülür" #: src/Common/Main.vala:384 msgid "Notifications are disabled" @@ -207,8 +208,9 @@ msgstr "Belirtilen mainline çekirdeğini kur" msgid "Uninstall specified kernel" msgstr "Belirtilen çekirdeğini kaldır" -#: src/Console/AppConsole.vala:59 -msgid "Uninstall kernels older than the latest installed" +#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:306 +#, fuzzy +msgid "Uninstall all but the highest installed version" msgstr "En son yüklenenden daha eski çekirdekleri kaldırma" #: src/Console/AppConsole.vala:60 @@ -381,10 +383,6 @@ msgstr "Kullanıcı notları" msgid "Uninstall Old" msgstr "Eskileri Kaldır" -#: src/Gtk/MainWindow.vala:306 -msgid "Uninstall kernels older than latest installed" -msgstr "En son yüklenenden daha eski çekirdekleri kaldırma" - #: src/Gtk/MainWindow.vala:311 msgid "Reload" msgstr "Arjantin" diff --git a/po/uk.po b/po/uk.po index f8778542..dd20457c 100644 --- a/po/uk.po +++ b/po/uk.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-04-02 04:23-0400\n" +"POT-Creation-Date: 2023-04-03 19:46-0400\n" "PO-Revision-Date: 2019-07-25 11:00+0300\n" "Last-Translator: Serhii Golovko \n" "Language-Team: Ukranian\n" @@ -61,89 +61,89 @@ msgstr "Знайдено встановленим" msgid "Packages Available" msgstr "Доступні пакети" -#: src/Common/LinuxKernel.vala:795 +#: src/Common/LinuxKernel.vala:796 msgid "Packages Installed" msgstr "Встановлені пакети" -#: src/Common/LinuxKernel.vala:816 src/lib/TeeJee.FileSystem.vala:118 +#: src/Common/LinuxKernel.vala:817 src/lib/TeeJee.FileSystem.vala:118 msgid "File not found" msgstr "Файл не знайдено" -#: src/Common/LinuxKernel.vala:883 +#: src/Common/LinuxKernel.vala:884 msgid "Available Kernels" msgstr "Доступні ядра" -#: src/Common/LinuxKernel.vala:890 src/Gtk/MainWindow.vala:154 +#: src/Common/LinuxKernel.vala:891 src/Gtk/MainWindow.vala:154 msgid "Installed" msgstr "Встановлено" -#: src/Common/LinuxKernel.vala:890 src/Gtk/MainWindow.vala:154 +#: src/Common/LinuxKernel.vala:891 src/Gtk/MainWindow.vala:154 #: src/Gtk/MainWindow.vala:495 src/Gtk/MainWindow.vala:508 msgid "Running" msgstr "Використовується" -#: src/Common/LinuxKernel.vala:924 +#: src/Common/LinuxKernel.vala:925 msgid "enabled" msgstr "увімкнено" -#: src/Common/LinuxKernel.vala:948 +#: src/Common/LinuxKernel.vala:949 msgid "Downloading" msgstr "Завантаження" -#: src/Common/LinuxKernel.vala:969 +#: src/Common/LinuxKernel.vala:970 msgid "is already installed." msgstr "вже встановлено." -#: src/Common/LinuxKernel.vala:1003 +#: src/Common/LinuxKernel.vala:1004 msgid "Uninstalling selected kernels" msgstr "Видаліть конкретні ядра" -#: src/Common/LinuxKernel.vala:1009 +#: src/Common/LinuxKernel.vala:1010 msgid "requested" msgstr "запитуваний" -#: src/Common/LinuxKernel.vala:1012 +#: src/Common/LinuxKernel.vala:1013 msgid "not uninstalling the currently running kernel" msgstr "Не видаляючи поточне запущене ядро" -#: src/Common/LinuxKernel.vala:1028 +#: src/Common/LinuxKernel.vala:1029 msgid "found" msgstr "знайдено" -#: src/Common/LinuxKernel.vala:1031 +#: src/Common/LinuxKernel.vala:1032 msgid "No packages to un-install!" msgstr "Немає пакетів для видалення!" -#: src/Common/LinuxKernel.vala:1079 +#: src/Common/LinuxKernel.vala:1080 msgid "Could not find running kernel in list" msgstr "Не вдалося знайти запущене ядро у списку!" -#: src/Common/LinuxKernel.vala:1084 +#: src/Common/LinuxKernel.vala:1085 msgid "Could not find any kernels to uninstall" msgstr "Не вдалося знайти жодне ядро для вилучення" -#: src/Common/LinuxKernel.vala:1092 +#: src/Common/LinuxKernel.vala:1093 msgid "The following kernels will be uninstalled" msgstr "Наступні ядра будуть видалені" -#: src/Common/LinuxKernel.vala:1096 +#: src/Common/LinuxKernel.vala:1097 msgid "Continue ?" msgstr "Продовжувати ?" -#: src/Common/LinuxKernel.vala:1118 src/Console/AppConsole.vala:290 +#: src/Common/LinuxKernel.vala:1119 src/Console/AppConsole.vala:290 msgid "Latest update" msgstr "Останнє оновлення" -#: src/Common/LinuxKernel.vala:1129 src/Console/AppConsole.vala:297 +#: src/Common/LinuxKernel.vala:1130 src/Console/AppConsole.vala:297 msgid "Latest point update" msgstr "Остання точка оновлення" -#: src/Common/LinuxKernel.vala:1137 src/Console/AppConsole.vala:302 +#: src/Common/LinuxKernel.vala:1138 src/Console/AppConsole.vala:302 #: src/Console/AppConsole.vala:318 msgid "No updates found" msgstr "Оновлень не знайдено" -#: src/Common/LinuxKernel.vala:1146 +#: src/Common/LinuxKernel.vala:1147 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Встановити Ядро Версії %s ? (так/ні): " @@ -155,7 +155,8 @@ msgstr "Викликано з" #: src/Common/Main.vala:352 msgid "" "This file is over-written and executed again whenever settings are saved in" -msgstr "Цей файл перезаписується та виконується знову під час збереження налаштувань" +msgstr "" +"Цей файл перезаписується та виконується знову під час збереження налаштувань" #: src/Common/Main.vala:384 msgid "Notifications are disabled" @@ -206,8 +207,9 @@ msgstr "Встановіть конкретне основне ядро" msgid "Uninstall specified kernel" msgstr "Видаліть конкретні ядра" -#: src/Console/AppConsole.vala:59 -msgid "Uninstall kernels older than the latest installed" +#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:306 +#, fuzzy +msgid "Uninstall all but the highest installed version" msgstr "Видалення ядер, старіших за останні встановлені" #: src/Console/AppConsole.vala:60 @@ -380,10 +382,6 @@ msgstr "Примітки користувача до" msgid "Uninstall Old" msgstr "Видалити старе" -#: src/Gtk/MainWindow.vala:306 -msgid "Uninstall kernels older than latest installed" -msgstr "Видалення ядер, старіших за останні встановлені" - #: src/Gtk/MainWindow.vala:311 msgid "Reload" msgstr "Перезавантажити" diff --git a/src/Common/LinuxKernel.vala b/src/Common/LinuxKernel.vala index 42814949..21dad26a 100644 --- a/src/Common/LinuxKernel.vala +++ b/src/Common/LinuxKernel.vala @@ -792,7 +792,8 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { list = ""; foreach (string deb in pkg_list.keys) list += "\n"+deb; - if (list.length > 0) txt += "\n\n"+_("Packages Installed")+"\n"+list; + if (txt.length > 0 && list.length > 0) txt += "\n\n"; + if (list.length > 0) txt += ""+_("Packages Installed")+"\n"+list; return txt; } diff --git a/src/Console/AppConsole.vala b/src/Console/AppConsole.vala index 0d83f82c..a093f3fa 100644 --- a/src/Console/AppConsole.vala +++ b/src/Console/AppConsole.vala @@ -56,7 +56,7 @@ public class AppConsole : GLib.Object { + " --install-point " + _("Install latest point update for current series") + "\n" + " --install " + _("Install specified mainline kernel") + "(1)(3)\n" + " --uninstall " + _("Uninstall specified kernel") + "(1)(2)(3)\n" - + " --uninstall-old " + _("Uninstall kernels older than the latest installed") + "(3)\n" + + " --uninstall-old " + _("Uninstall all but the highest installed version") + "(3)\n" + " --download " + _("Download specified kernels") + "(2)\n" + " --delete-cache " + _("Delete cached info about available kernels") + "\n" + "\n" diff --git a/src/Gtk/MainWindow.vala b/src/Gtk/MainWindow.vala index eb53e149..87b4de38 100644 --- a/src/Gtk/MainWindow.vala +++ b/src/Gtk/MainWindow.vala @@ -303,7 +303,7 @@ public class MainWindow : Gtk.Window { // uninstall-old button = new Gtk.Button.with_label (_("Uninstall Old")); - button.set_tooltip_text(_("Uninstall kernels older than latest installed")); + button.set_tooltip_text(_("Uninstall all but the highest installed version")); hbox.pack_start (button, true, true, 0); button.clicked.connect(do_purge); From 8ecdf47e38254c20a12e2321c4c5ef43fb385378 Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Mon, 3 Apr 2023 23:47:51 -0400 Subject: [PATCH 298/567] translations --- .deb_build_number.mak | 2 +- po/ko.po | 46 +++++++++++++------------------------------ po/nl.po | 21 ++++++++------------ po/pl.po | 3 +-- po/ru.po | 3 +-- po/sv.po | 12 ++++------- po/tr.po | 8 +++----- po/uk.po | 5 ++--- 8 files changed, 34 insertions(+), 66 deletions(-) diff --git a/.deb_build_number.mak b/.deb_build_number.mak index 2038048d..a8931661 100644 --- a/.deb_build_number.mak +++ b/.deb_build_number.mak @@ -1,3 +1,3 @@ # This file is generated by Makefile "make deb_build_number" DEB_PKG_VERSION := 1.1.11 -DEB_BUILD_NUMBER := 0000 +DEB_BUILD_NUMBER := 0001 diff --git a/po/ko.po b/po/ko.po index 07c99da1..e88d748a 100644 --- a/po/ko.po +++ b/po/ko.po @@ -22,21 +22,18 @@ msgid "Architecture" msgstr "아키텍처" #: src/Common/LinuxKernel.vala:129 -#, fuzzy msgid "Running kernel" -msgstr "구동 중" +msgstr "현재 실행 중인 커널" #: src/Common/LinuxKernel.vala:250 msgid "loading cached" msgstr "캐시된 로드 중" #: src/Common/LinuxKernel.vala:264 -#, fuzzy msgid "queuing download" msgstr "대기열 다운로드" #: src/Common/LinuxKernel.vala:287 -#, fuzzy msgid "Fetching individual kernel indexes" msgstr "개별 커널 인덱스 페치" @@ -57,9 +54,8 @@ msgid "FAILED" msgstr "실패" #: src/Common/LinuxKernel.vala:396 -#, fuzzy msgid "Found installed" -msgstr "설치된 것을 찾았습니다." +msgstr "설치된 것을 찾았습니다" #: src/Common/LinuxKernel.vala:790 msgid "Packages Available" @@ -95,21 +91,18 @@ msgid "Downloading" msgstr "다운로드" #: src/Common/LinuxKernel.vala:970 -#, fuzzy msgid "is already installed." -msgstr "이 커널은 이미 설치되었습니다." +msgstr "가 이미 설치되어 있습니다" #: src/Common/LinuxKernel.vala:1004 -#, fuzzy msgid "Uninstalling selected kernels" -msgstr "지정한 커널 삭제" +msgstr "선택한 커널 제거" #: src/Common/LinuxKernel.vala:1010 msgid "requested" msgstr "요청" #: src/Common/LinuxKernel.vala:1013 -#, fuzzy msgid "not uninstalling the currently running kernel" msgstr "현재 실행 중인 커널을 제거하지 않음" @@ -118,23 +111,20 @@ msgid "found" msgstr "설립하다" #: src/Common/LinuxKernel.vala:1032 -#, fuzzy msgid "No packages to un-install!" -msgstr "설치된 패키지" +msgstr "제거 할 패키지가 없습니다!" #: src/Common/LinuxKernel.vala:1080 -#, fuzzy msgid "Could not find running kernel in list" -msgstr "목록에서 사용중인 커널을 찾을 수 없습니다!" +msgstr "현재 실행 중인 커널을 찾을 수 없습니다" #: src/Common/LinuxKernel.vala:1085 msgid "Could not find any kernels to uninstall" msgstr "삭제할 커널을 찾을 수 없습니다" #: src/Common/LinuxKernel.vala:1093 -#, fuzzy msgid "The following kernels will be uninstalled" -msgstr "아래 커널이 삭제됩니다:" +msgstr "풀이" #: src/Common/LinuxKernel.vala:1097 msgid "Continue ?" @@ -172,9 +162,9 @@ msgid "Notifications are disabled" msgstr "알림이 비활성화 되었습니다" #: src/Common/Package.vala:58 -#, fuzzy, c-format +#, c-format msgid "File not found: %s" -msgstr "파일을 찾을 수 없습니다" +msgstr "파일을 찾을 수 없음: %s" #: src/Console/AppConsole.vala:47 src/Gtk/AppGtk.vala:135 msgid "Syntax" @@ -217,9 +207,8 @@ msgid "Uninstall specified kernel" msgstr "지정한 커널 삭제" #: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:306 -#, fuzzy msgid "Uninstall all but the highest installed version" -msgstr "현재 사용중인 커널보다 이전 버전의 설치된 커널을 제거" +msgstr "설치된 가장 높은 버전을 제외한 모든 버전을 제거합니다" #: src/Console/AppConsole.vala:60 msgid "Download specified kernels" @@ -258,9 +247,8 @@ msgid "One or more, comma-seperated" msgstr "하나 이상, 쉼표로 구분" #: src/Console/AppConsole.vala:73 -#, fuzzy msgid "The currently running kernel will always be ignored" -msgstr "현재 실행중인 커널은 항상 무시됩니다." +msgstr "현재 실행중인 커널은 항상 무시됩니다" #: src/Console/AppConsole.vala:161 src/Gtk/AppGtk.vala:121 msgid "Unknown option" @@ -458,7 +446,6 @@ msgid "Check every" msgstr "확인 주기" #: src/Gtk/SettingsDialog.vala:134 -#, fuzzy msgid "Hours" msgstr "시간" @@ -467,12 +454,10 @@ msgid "Days" msgstr "일" #: src/Gtk/SettingsDialog.vala:138 -#, fuzzy msgid "Weeks" msgstr "주" #: src/Gtk/SettingsDialog.vala:141 -#, fuzzy msgid "Seconds" msgstr "초" @@ -485,18 +470,16 @@ msgid "Hide unstable and RC releases" msgstr "목록에서 unstable, RC 버전 포함" #: src/Gtk/SettingsDialog.vala:177 -#, fuzzy msgid "previous major versions ( -1 = all )" -msgstr "이전 주 버전 ( -1 = 모두 )" +msgstr "이전 주 버전 ( -1 = 모두 )" #: src/Gtk/SettingsDialog.vala:181 msgid "Network" msgstr "네트워크" #: src/Gtk/SettingsDialog.vala:192 -#, fuzzy msgid "Internet connection timeout in" -msgstr "인터넷 연결 타임아웃 시간 " +msgstr "인터넷 연결 시간 초과" #: src/Gtk/SettingsDialog.vala:204 msgid "seconds" @@ -519,6 +502,5 @@ msgid "Missing Icon" msgstr "아이콘을 찾을 수 없습니다" #: src/lib/l.misc.vala:71 -#, fuzzy msgid "Can not reach site" -msgstr "파일 읽기를 실패했습니다" +msgstr "사이트에 도달 할 수 없습니다" diff --git a/po/nl.po b/po/nl.po index 6985cadb..835c5fd4 100644 --- a/po/nl.po +++ b/po/nl.po @@ -91,12 +91,10 @@ msgid "Downloading" msgstr "Downloaden" #: src/Common/LinuxKernel.vala:970 -#, fuzzy msgid "is already installed." -msgstr "Deze kernel is al geïnstalleerd." +msgstr "is al geïnstalleerd." #: src/Common/LinuxKernel.vala:1004 -#, fuzzy msgid "Uninstalling selected kernels" msgstr "Geselecteerde kernels verwijderen" @@ -166,9 +164,9 @@ msgid "Notifications are disabled" msgstr "Meldingen zijn uitgeschakeld" #: src/Common/Package.vala:58 -#, fuzzy, c-format +#, c-format msgid "File not found: %s" -msgstr "Bestand is niet gevonden: %s" +msgstr "Bestand niet gevonden: %s" #: src/Console/AppConsole.vala:47 src/Gtk/AppGtk.vala:135 msgid "Syntax" @@ -211,9 +209,8 @@ msgid "Uninstall specified kernel" msgstr "Opgegeven kernel verwijderen" #: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:306 -#, fuzzy msgid "Uninstall all but the highest installed version" -msgstr "Kernels verwijderen die ouder zijn dan de laatst geïnstalleerde" +msgstr "Verwijder alle behalve de hoogst geïnstalleerde versie" #: src/Console/AppConsole.vala:60 msgid "Download specified kernels" @@ -294,9 +291,8 @@ msgid "to list all commands" msgstr "om alle opdrachten te tonen" #: src/Console/AppConsole.vala:312 -#, fuzzy msgid "Notifications disabled in settings" -msgstr "Meldingen zijn uitgeschakeld" +msgstr "Meldingen uitgeschakeld in instellingen" #: src/Console/AppConsole.vala:337 #, c-format @@ -313,7 +309,7 @@ msgstr "Installeren" #: src/Console/AppConsole.vala:345 msgid "Previously notified" -msgstr "" +msgstr "Eerder gemeld" #: src/Gtk/AboutWindow.vala:162 src/Gtk/AboutWindow.vala:179 msgid "Credits" @@ -502,13 +498,12 @@ msgstr "Controleer controlesommen met de CHECKSUMS-bestanden" #: src/Gtk/SettingsDialog.vala:233 msgid "Proxy" -msgstr "" +msgstr "Proxy" #: src/Gtk/l.gtk.vala:42 msgid "Missing Icon" msgstr "Ontbrekend pictogram" #: src/lib/l.misc.vala:71 -#, fuzzy msgid "Can not reach site" -msgstr "Het bestand kan niet worden uitgelezen" +msgstr "Kan de site niet bereiken" diff --git a/po/pl.po b/po/pl.po index 074a9da4..15736467 100644 --- a/po/pl.po +++ b/po/pl.po @@ -208,9 +208,8 @@ msgid "Uninstall specified kernel" msgstr "Odinstaluj wybrane jądro" #: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:306 -#, fuzzy msgid "Uninstall all but the highest installed version" -msgstr "Odinstaluj jądra starsze niż ostatnio zainstalowane" +msgstr "Odinstaluj wszystkie wersje oprócz najwyżej zainstalowanej" #: src/Console/AppConsole.vala:60 msgid "Download specified kernels" diff --git a/po/ru.po b/po/ru.po index a915f4a3..270a3e28 100644 --- a/po/ru.po +++ b/po/ru.po @@ -209,9 +209,8 @@ msgid "Uninstall specified kernel" msgstr "Установить указанное ядро" #: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:306 -#, fuzzy msgid "Uninstall all but the highest installed version" -msgstr "Удаление ядер старше последней установленной версии" +msgstr "Удаление всех установленных версий, кроме самой высокой" #: src/Console/AppConsole.vala:60 msgid "Download specified kernels" diff --git a/po/sv.po b/po/sv.po index f148d283..0f217b67 100644 --- a/po/sv.po +++ b/po/sv.po @@ -18,14 +18,12 @@ msgid "Distribution" msgstr "Distribution" #: src/Common/LinuxKernel.vala:114 -#, fuzzy msgid "Architecture" -msgstr "Systemarkitektur" +msgstr "Arkitektur" #: src/Common/LinuxKernel.vala:129 -#, fuzzy msgid "Running kernel" -msgstr "Köra kernel" +msgstr "Löpande kernel" #: src/Common/LinuxKernel.vala:250 msgid "loading cached" @@ -209,9 +207,8 @@ msgid "Uninstall specified kernel" msgstr "Avinstallera angiven kärna" #: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:306 -#, fuzzy msgid "Uninstall all but the highest installed version" -msgstr "Avinstallera kärnor som är äldre än de senast installerade" +msgstr "Avinstallera alla utom den högsta installerade versionen" #: src/Console/AppConsole.vala:60 msgid "Download specified kernels" @@ -368,9 +365,8 @@ msgid "Status" msgstr "Status" #: src/Gtk/MainWindow.vala:274 -#, fuzzy msgid "Uninstall" -msgstr "Installera" +msgstr "Avinstallera" #: src/Gtk/MainWindow.vala:284 msgid "Notes" diff --git a/po/tr.po b/po/tr.po index dc06fa9b..f6bfcd6c 100644 --- a/po/tr.po +++ b/po/tr.po @@ -209,9 +209,8 @@ msgid "Uninstall specified kernel" msgstr "Belirtilen çekirdeğini kaldır" #: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:306 -#, fuzzy msgid "Uninstall all but the highest installed version" -msgstr "En son yüklenenden daha eski çekirdekleri kaldırma" +msgstr "En yüksek yüklü sürüm dışındaki tüm sürümleri kaldırın" #: src/Console/AppConsole.vala:60 msgid "Download specified kernels" @@ -498,13 +497,12 @@ msgstr "Sağlama toplamlarını CHECKSUMS dosyalarıyla doğrulama" #: src/Gtk/SettingsDialog.vala:233 msgid "Proxy" -msgstr "" +msgstr "Proxy" #: src/Gtk/l.gtk.vala:42 msgid "Missing Icon" msgstr "Eksik Simge" #: src/lib/l.misc.vala:71 -#, fuzzy msgid "Can not reach site" -msgstr "Dosya okunamadı" +msgstr "Siteye ulaşılamıyor" diff --git a/po/uk.po b/po/uk.po index dd20457c..48e8112e 100644 --- a/po/uk.po +++ b/po/uk.po @@ -104,7 +104,7 @@ msgstr "запитуваний" #: src/Common/LinuxKernel.vala:1013 msgid "not uninstalling the currently running kernel" -msgstr "Не видаляючи поточне запущене ядро" +msgstr "не видалятиме поточне запущене ядро" #: src/Common/LinuxKernel.vala:1029 msgid "found" @@ -208,9 +208,8 @@ msgid "Uninstall specified kernel" msgstr "Видаліть конкретні ядра" #: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:306 -#, fuzzy msgid "Uninstall all but the highest installed version" -msgstr "Видалення ядер, старіших за останні встановлені" +msgstr "Видаліть усі, крім найвищої встановленої версії" #: src/Console/AppConsole.vala:60 msgid "Download specified kernels" From 69ee54886fd78219f3ada0bf7ff3150491c6809c Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Tue, 4 Apr 2023 08:01:20 -0400 Subject: [PATCH 299/567] add editable notes per kernel --- .deb_build_number.mak | 4 +- BRANDING.mak | 4 +- README.md | 2 - README.md.src | 2 - debian/changelog | 6 ++ po/de.po | 142 +++++++++++++++++++----------------- po/el.po | 142 +++++++++++++++++++----------------- po/es.po | 142 +++++++++++++++++++----------------- po/fr.po | 142 +++++++++++++++++++----------------- po/hr.po | 142 +++++++++++++++++++----------------- po/it.po | 142 +++++++++++++++++++----------------- po/ko.po | 142 +++++++++++++++++++----------------- po/messages.pot | 139 ++++++++++++++++++----------------- po/nl.po | 142 +++++++++++++++++++----------------- po/pl.po | 142 +++++++++++++++++++----------------- po/ru.po | 142 +++++++++++++++++++----------------- po/sv.po | 142 +++++++++++++++++++----------------- po/tr.po | 142 +++++++++++++++++++----------------- po/uk.po | 142 +++++++++++++++++++----------------- src/Common/LinuxKernel.vala | 60 +++++++-------- src/Gtk/MainWindow.vala | 108 ++++++++++++++++----------- src/Gtk/l.gtk.vala | 15 +--- 22 files changed, 1169 insertions(+), 1017 deletions(-) diff --git a/.deb_build_number.mak b/.deb_build_number.mak index a8931661..c2090200 100644 --- a/.deb_build_number.mak +++ b/.deb_build_number.mak @@ -1,3 +1,3 @@ # This file is generated by Makefile "make deb_build_number" -DEB_PKG_VERSION := 1.1.11 -DEB_BUILD_NUMBER := 0001 +DEB_PKG_VERSION := 1.2.0 +DEB_BUILD_NUMBER := 0000 diff --git a/BRANDING.mak b/BRANDING.mak index d97a83b1..afd70158 100644 --- a/BRANDING.mak +++ b/BRANDING.mak @@ -2,8 +2,8 @@ # This is the single place where you edit these values manually VERSION_MAJOR = 1 -VERSION_MINOR = 1 -VERSION_MICRO = 11 +VERSION_MINOR = 2 +VERSION_MICRO = 0 BRANDING_SHORTNAME = mainline BRANDING_LONGNAME = Ubuntu Mainline Kernel Installer BRANDING_AUTHORNAME = Brian K. White diff --git a/README.md b/README.md index 05aca7c4..4625feaf 100644 --- a/README.md +++ b/README.md @@ -65,8 +65,6 @@ The app runs as the user and uses pkexec internally just for the dpkg command. **\[ Uninstall \]** - uninstalls the selected kernel(1) -**\[ Notes \]** - opens a notes.txt file in the cache directory for the selected kernel for user notes - **\[ PPA \]** - launches your default https:// handler to the web page for the selected kernel If no kernels are selected (when first launching the app before clicking on any) launches the main page listing all the kernels. Use this to see the build summary and CHANGES files. diff --git a/README.md.src b/README.md.src index a1b3ca1b..fc6bbe3c 100644 --- a/README.md.src +++ b/README.md.src @@ -65,8 +65,6 @@ The app runs as the user and uses pkexec internally just for the dpkg command. **\[ Uninstall \]** - uninstalls the selected kernel(1) -**\[ Notes \]** - opens a notes.txt file in the cache directory for the selected kernel for user notes - **\[ PPA \]** - launches your default https:// handler to the web page for the selected kernel If no kernels are selected (when first launching the app before clicking on any) launches the main page listing all the kernels. Use this to see the build summary and CHANGES files. diff --git a/debian/changelog b/debian/changelog index 9771e1a9..bd643d0c 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +mainline (1.2.0) unstable; urgency=medium + + * NOTES! + + -- Brian K. White Tue, 04 Apr 2023 07:58:52 -0400 + mainline (1.1.11) unstable; urgency=medium * update translations diff --git a/po/de.po b/po/de.po index 1aaa23d2..c6306ed8 100644 --- a/po/de.po +++ b/po/de.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-04-03 19:46-0400\n" +"POT-Creation-Date: 2023-04-04 07:52-0400\n" "PO-Revision-Date: 2023-02-20 18:40+0100\n" "Last-Translator: Marvin Meysel \n" "Language-Team: German\n" @@ -13,137 +13,141 @@ msgstr "" "X-Launchpad-Export-Date: 2017-04-13 11:48+0000\n" "X-Generator: Poedit 3.1.1\n" -#: src/Common/LinuxKernel.vala:99 +#: src/Common/LinuxKernel.vala:102 msgid "Distribution" msgstr "Distribution" -#: src/Common/LinuxKernel.vala:114 +#: src/Common/LinuxKernel.vala:117 msgid "Architecture" msgstr "Architektur" -#: src/Common/LinuxKernel.vala:129 +#: src/Common/LinuxKernel.vala:132 msgid "Running kernel" msgstr "Laufender kernel" -#: src/Common/LinuxKernel.vala:250 +#: src/Common/LinuxKernel.vala:253 msgid "loading cached" msgstr "laden gecached" -#: src/Common/LinuxKernel.vala:264 +#: src/Common/LinuxKernel.vala:267 msgid "queuing download" msgstr "download der warteschlange" -#: src/Common/LinuxKernel.vala:287 +#: src/Common/LinuxKernel.vala:290 msgid "Fetching individual kernel indexes" msgstr "Abrufen einzelner Kernel-Indizes" -#: src/Common/LinuxKernel.vala:303 +#: src/Common/LinuxKernel.vala:306 msgid "loading downloaded" msgstr "laden von heruntergeladenen Dateien" -#: src/Common/LinuxKernel.vala:339 +#: src/Common/LinuxKernel.vala:341 msgid "Updating from" msgstr "Aktualisieren von" -#: src/Common/LinuxKernel.vala:347 +#: src/Common/LinuxKernel.vala:349 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:350 +#: src/Common/LinuxKernel.vala:352 msgid "FAILED" msgstr "MISSLUNGEN" -#: src/Common/LinuxKernel.vala:396 +#: src/Common/LinuxKernel.vala:397 msgid "Found installed" msgstr "Installiert gefunden" -#: src/Common/LinuxKernel.vala:790 +#: src/Common/LinuxKernel.vala:721 src/Gtk/MainWindow.vala:519 +#: src/Gtk/MainWindow.vala:532 +msgid "Running" +msgstr "Läuft" + +#: src/Common/LinuxKernel.vala:722 +msgid "Installed" +msgstr "Installiert" + +#: src/Common/LinuxKernel.vala:723 +msgid "Invalid" +msgstr "Ungültig" + +#: src/Common/LinuxKernel.vala:797 msgid "Packages Available" msgstr "Verfügbare Pakete" -#: src/Common/LinuxKernel.vala:796 +#: src/Common/LinuxKernel.vala:803 msgid "Packages Installed" msgstr "Installierte Pakete" -#: src/Common/LinuxKernel.vala:817 src/lib/TeeJee.FileSystem.vala:118 +#: src/Common/LinuxKernel.vala:825 src/lib/TeeJee.FileSystem.vala:118 msgid "File not found" msgstr "Datei nicht gefunden " -#: src/Common/LinuxKernel.vala:884 +#: src/Common/LinuxKernel.vala:894 msgid "Available Kernels" msgstr "Verfügbare Kernel" -#: src/Common/LinuxKernel.vala:891 src/Gtk/MainWindow.vala:154 -msgid "Installed" -msgstr "Installiert" - -#: src/Common/LinuxKernel.vala:891 src/Gtk/MainWindow.vala:154 -#: src/Gtk/MainWindow.vala:495 src/Gtk/MainWindow.vala:508 -msgid "Running" -msgstr "Läuft" - -#: src/Common/LinuxKernel.vala:925 +#: src/Common/LinuxKernel.vala:931 msgid "enabled" msgstr "ermöglichte" -#: src/Common/LinuxKernel.vala:949 +#: src/Common/LinuxKernel.vala:955 msgid "Downloading" msgstr "Laden" -#: src/Common/LinuxKernel.vala:970 +#: src/Common/LinuxKernel.vala:976 msgid "is already installed." msgstr "ist bereits installiert." -#: src/Common/LinuxKernel.vala:1004 +#: src/Common/LinuxKernel.vala:1006 msgid "Uninstalling selected kernels" msgstr "Deinstallation des angegebenen Kernels" -#: src/Common/LinuxKernel.vala:1010 +#: src/Common/LinuxKernel.vala:1012 msgid "requested" msgstr "angefordert" -#: src/Common/LinuxKernel.vala:1013 +#: src/Common/LinuxKernel.vala:1015 msgid "not uninstalling the currently running kernel" msgstr "Den aktuell laufenden Kernel wird nicht deinstalliert" -#: src/Common/LinuxKernel.vala:1029 +#: src/Common/LinuxKernel.vala:1031 msgid "found" msgstr "gründen" -#: src/Common/LinuxKernel.vala:1032 +#: src/Common/LinuxKernel.vala:1034 msgid "No packages to un-install!" msgstr "Keine Pakete zum Deinstallieren!" -#: src/Common/LinuxKernel.vala:1080 +#: src/Common/LinuxKernel.vala:1082 msgid "Could not find running kernel in list" msgstr "Konnte keinen laufenden Kernel in der Liste finden" -#: src/Common/LinuxKernel.vala:1085 +#: src/Common/LinuxKernel.vala:1087 msgid "Could not find any kernels to uninstall" msgstr "Es konnten keine Kernel zum Deinstallieren gefunden werden" -#: src/Common/LinuxKernel.vala:1093 +#: src/Common/LinuxKernel.vala:1095 msgid "The following kernels will be uninstalled" msgstr "Die folgenden Kernel werden deinstalliert" -#: src/Common/LinuxKernel.vala:1097 +#: src/Common/LinuxKernel.vala:1099 msgid "Continue ?" msgstr "Weiter ?" -#: src/Common/LinuxKernel.vala:1119 src/Console/AppConsole.vala:290 +#: src/Common/LinuxKernel.vala:1121 src/Console/AppConsole.vala:290 msgid "Latest update" msgstr "Neustes Update" -#: src/Common/LinuxKernel.vala:1130 src/Console/AppConsole.vala:297 +#: src/Common/LinuxKernel.vala:1132 src/Console/AppConsole.vala:297 msgid "Latest point update" msgstr "Letzte Punktaktualisierung" -#: src/Common/LinuxKernel.vala:1138 src/Console/AppConsole.vala:302 +#: src/Common/LinuxKernel.vala:1140 src/Console/AppConsole.vala:302 #: src/Console/AppConsole.vala:318 msgid "No updates found" msgstr "Keine Updates gefunden" -#: src/Common/LinuxKernel.vala:1147 +#: src/Common/LinuxKernel.vala:1149 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Kernel-Version %s installieren? (j/n):" @@ -208,7 +212,7 @@ msgstr "Angegebenen Mainline-Kernel installieren" msgid "Uninstall specified kernel" msgstr "Deinstallation des angegebenen Kernels" -#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:306 +#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:328 msgid "Uninstall all but the highest installed version" msgstr "Deinstallieren Sie alle bis auf die höchste installierte Version" @@ -304,7 +308,7 @@ msgstr "Kernel %s verfügbar" msgid "Show" msgstr "Zeigen" -#: src/Console/AppConsole.vala:342 src/Gtk/MainWindow.vala:264 +#: src/Console/AppConsole.vala:342 src/Gtk/MainWindow.vala:296 msgid "Install" msgstr "Installieren" @@ -360,68 +364,74 @@ msgstr "Zeige Debug Informationen" msgid "Show all options" msgstr "Alle Optionen anzeigen" -#: src/Gtk/MainWindow.vala:111 +#: src/Gtk/MainWindow.vala:110 msgid "Kernel" msgstr "Kernel" -#: src/Gtk/MainWindow.vala:141 +#: src/Gtk/MainWindow.vala:143 msgid "Status" msgstr "Status" -#: src/Gtk/MainWindow.vala:274 -msgid "Uninstall" -msgstr "Deinstallieren" - -#: src/Gtk/MainWindow.vala:284 +#: src/Gtk/MainWindow.vala:158 msgid "Notes" msgstr "Notizen" -#: src/Gtk/MainWindow.vala:289 -msgid "User notes for" -msgstr "Benutzerhinweise für" +#: src/Gtk/MainWindow.vala:306 +msgid "Uninstall" +msgstr "Deinstallieren" -#: src/Gtk/MainWindow.vala:305 +#: src/Gtk/MainWindow.vala:327 msgid "Uninstall Old" msgstr "Alte deinstallieren" -#: src/Gtk/MainWindow.vala:311 +#: src/Gtk/MainWindow.vala:333 msgid "Reload" msgstr "Nachladen" -#: src/Gtk/MainWindow.vala:316 src/Gtk/SettingsDialog.vala:49 +#: src/Gtk/MainWindow.vala:334 +msgid "" +"Delete cache and reload all kernel info\n" +"\n" +"THIS WILL ALSO DELETE ALL USER NOTES" +msgstr "" +"Cache löschen und alle Kernel-Informationen neu laden\n" +"\n" +"DADURCH WERDEN AUCH ALLE BENUTZERNOTIZEN GELÖSCHT" + +#: src/Gtk/MainWindow.vala:339 src/Gtk/SettingsDialog.vala:49 msgid "Settings" msgstr "Einstellungen" -#: src/Gtk/MainWindow.vala:321 +#: src/Gtk/MainWindow.vala:344 msgid "About" msgstr "Über" -#: src/Gtk/MainWindow.vala:326 +#: src/Gtk/MainWindow.vala:349 msgid "Exit" msgstr "Ausgang" -#: src/Gtk/MainWindow.vala:394 +#: src/Gtk/MainWindow.vala:418 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Kernel-Upgrade-Dienstprogramm für Ubuntu-basierte Distributionen" -#: src/Gtk/MainWindow.vala:395 +#: src/Gtk/MainWindow.vala:419 msgid "Forked" msgstr "Gegabelte" -#: src/Gtk/MainWindow.vala:395 +#: src/Gtk/MainWindow.vala:419 msgid "Original" msgstr "Original" -#: src/Gtk/MainWindow.vala:433 +#: src/Gtk/MainWindow.vala:457 msgid "Updating kernels" msgstr "Aktualisieren von Kernels" -#: src/Gtk/MainWindow.vala:504 +#: src/Gtk/MainWindow.vala:528 msgid "available" msgstr "Verfügbar" -#: src/Gtk/MainWindow.vala:547 src/Gtk/MainWindow.vala:587 -#: src/Gtk/MainWindow.vala:621 +#: src/Gtk/MainWindow.vala:571 src/Gtk/MainWindow.vala:611 +#: src/Gtk/MainWindow.vala:645 msgid "DONE" msgstr "FERTIG" @@ -501,7 +511,7 @@ msgstr "Überprüfen von Prüfsummen mit den PRÜFSUMMEN-Dateien" msgid "Proxy" msgstr "Stellvertreter" -#: src/Gtk/l.gtk.vala:42 +#: src/Gtk/l.gtk.vala:29 msgid "Missing Icon" msgstr "Fehlendes Symbol" diff --git a/po/el.po b/po/el.po index 4229c0e4..fb5c8faa 100644 --- a/po/el.po +++ b/po/el.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-04-03 19:46-0400\n" +"POT-Creation-Date: 2023-04-04 07:52-0400\n" "PO-Revision-Date: 2023-01-10 02:03-0600\n" "Last-Translator: Vasilis Kosmidis \n" "Language-Team: Greek\n" @@ -13,137 +13,141 @@ msgstr "" "X-Launchpad-Export-Date: 2017-04-13 11:48+0000\n" "X-Generator: Poedit 2.0.5\n" -#: src/Common/LinuxKernel.vala:99 +#: src/Common/LinuxKernel.vala:102 msgid "Distribution" msgstr "Διανομή" -#: src/Common/LinuxKernel.vala:114 +#: src/Common/LinuxKernel.vala:117 msgid "Architecture" msgstr "Αρχιτεκτονική" -#: src/Common/LinuxKernel.vala:129 +#: src/Common/LinuxKernel.vala:132 msgid "Running kernel" msgstr "Εκτέλεση πυρήνα" -#: src/Common/LinuxKernel.vala:250 +#: src/Common/LinuxKernel.vala:253 msgid "loading cached" msgstr "φόρτωση προσωρινά αποθηκευμένου" -#: src/Common/LinuxKernel.vala:264 +#: src/Common/LinuxKernel.vala:267 msgid "queuing download" msgstr "Προσθήκη λήψης στην ουρά" -#: src/Common/LinuxKernel.vala:287 +#: src/Common/LinuxKernel.vala:290 msgid "Fetching individual kernel indexes" msgstr "Λήψη μεμονωμένων ευρετηρίων πυρήνα" -#: src/Common/LinuxKernel.vala:303 +#: src/Common/LinuxKernel.vala:306 msgid "loading downloaded" msgstr "Φόρτωση λήψης" -#: src/Common/LinuxKernel.vala:339 +#: src/Common/LinuxKernel.vala:341 msgid "Updating from" msgstr "Ενημέρωση από" -#: src/Common/LinuxKernel.vala:347 +#: src/Common/LinuxKernel.vala:349 msgid "OK" msgstr "ΟΚ" -#: src/Common/LinuxKernel.vala:350 +#: src/Common/LinuxKernel.vala:352 msgid "FAILED" msgstr "ΑΠΈΤΥΧΕ" -#: src/Common/LinuxKernel.vala:396 +#: src/Common/LinuxKernel.vala:397 msgid "Found installed" msgstr "Βρέθηκε εγκατεστημένο" -#: src/Common/LinuxKernel.vala:790 +#: src/Common/LinuxKernel.vala:721 src/Gtk/MainWindow.vala:519 +#: src/Gtk/MainWindow.vala:532 +msgid "Running" +msgstr "Ενεργός" + +#: src/Common/LinuxKernel.vala:722 +msgid "Installed" +msgstr "Εγκατεστημένος" + +#: src/Common/LinuxKernel.vala:723 +msgid "Invalid" +msgstr "Άκυρος" + +#: src/Common/LinuxKernel.vala:797 msgid "Packages Available" msgstr "Διαθέσιμα πακέτα" -#: src/Common/LinuxKernel.vala:796 +#: src/Common/LinuxKernel.vala:803 msgid "Packages Installed" msgstr "Εγκατεστημένα πακέτα" -#: src/Common/LinuxKernel.vala:817 src/lib/TeeJee.FileSystem.vala:118 +#: src/Common/LinuxKernel.vala:825 src/lib/TeeJee.FileSystem.vala:118 msgid "File not found" msgstr "Το αρχείο δε βρέθηκε" -#: src/Common/LinuxKernel.vala:884 +#: src/Common/LinuxKernel.vala:894 msgid "Available Kernels" msgstr "Διαθέσιμοι πυρήνες" -#: src/Common/LinuxKernel.vala:891 src/Gtk/MainWindow.vala:154 -msgid "Installed" -msgstr "Εγκατεστημένος" - -#: src/Common/LinuxKernel.vala:891 src/Gtk/MainWindow.vala:154 -#: src/Gtk/MainWindow.vala:495 src/Gtk/MainWindow.vala:508 -msgid "Running" -msgstr "Ενεργός" - -#: src/Common/LinuxKernel.vala:925 +#: src/Common/LinuxKernel.vala:931 msgid "enabled" msgstr "ενεργοποιημένη" -#: src/Common/LinuxKernel.vala:949 +#: src/Common/LinuxKernel.vala:955 msgid "Downloading" msgstr "Κατέβασμα" -#: src/Common/LinuxKernel.vala:970 +#: src/Common/LinuxKernel.vala:976 msgid "is already installed." msgstr "είναι ήδη εγκατεστημένο." -#: src/Common/LinuxKernel.vala:1004 +#: src/Common/LinuxKernel.vala:1006 msgid "Uninstalling selected kernels" msgstr "Απεγκατάσταση επιλεγμένων πυρήνων" -#: src/Common/LinuxKernel.vala:1010 +#: src/Common/LinuxKernel.vala:1012 msgid "requested" msgstr "ζητήθηκε" -#: src/Common/LinuxKernel.vala:1013 +#: src/Common/LinuxKernel.vala:1015 msgid "not uninstalling the currently running kernel" msgstr "δεν θα απεγκαταστήσει τον πυρήνα που εκτελείται αυτήν τη στιγμή" -#: src/Common/LinuxKernel.vala:1029 +#: src/Common/LinuxKernel.vala:1031 msgid "found" msgstr "ιδρύω" -#: src/Common/LinuxKernel.vala:1032 +#: src/Common/LinuxKernel.vala:1034 msgid "No packages to un-install!" msgstr "Δεν υπάρχουν πακέτα για απεγκατάσταση!" -#: src/Common/LinuxKernel.vala:1080 +#: src/Common/LinuxKernel.vala:1082 msgid "Could not find running kernel in list" msgstr "Δεν ήταν δυνατή η εύρεση του πυρήνα που εκτελείται αυτήν τη στιγμή" -#: src/Common/LinuxKernel.vala:1085 +#: src/Common/LinuxKernel.vala:1087 msgid "Could not find any kernels to uninstall" msgstr "Δεν βρέθηκε κανένας πυρήνας για απεγκατάσταση" -#: src/Common/LinuxKernel.vala:1093 +#: src/Common/LinuxKernel.vala:1095 msgid "The following kernels will be uninstalled" msgstr "Θα καταργηθεί η εγκατάσταση των ακόλουθων πυρήνων" -#: src/Common/LinuxKernel.vala:1097 +#: src/Common/LinuxKernel.vala:1099 msgid "Continue ?" msgstr "Συνέχεια;" -#: src/Common/LinuxKernel.vala:1119 src/Console/AppConsole.vala:290 +#: src/Common/LinuxKernel.vala:1121 src/Console/AppConsole.vala:290 msgid "Latest update" msgstr "Τελευταία αναβάθμιση" -#: src/Common/LinuxKernel.vala:1130 src/Console/AppConsole.vala:297 +#: src/Common/LinuxKernel.vala:1132 src/Console/AppConsole.vala:297 msgid "Latest point update" msgstr "Τελευταία ενημέρωση συντήρησης" -#: src/Common/LinuxKernel.vala:1138 src/Console/AppConsole.vala:302 +#: src/Common/LinuxKernel.vala:1140 src/Console/AppConsole.vala:302 #: src/Console/AppConsole.vala:318 msgid "No updates found" msgstr "Δεν βρέθηκαν ενημερώσεις" -#: src/Common/LinuxKernel.vala:1147 +#: src/Common/LinuxKernel.vala:1149 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Εγκατάσταση του πυρήνα έκδοσης %s ; (ν/ό):" @@ -208,7 +212,7 @@ msgstr "Εγκατάσταση του καθορισμένου mainline πυρή msgid "Uninstall specified kernel" msgstr "Απεγκατάσταση του καθορισμένου πυρήνα" -#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:306 +#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:328 msgid "Uninstall all but the highest installed version" msgstr "Απεγκαταστήστε όλες εκτός από την υψηλότερη εγκατεστημένη έκδοση" @@ -304,7 +308,7 @@ msgstr "Πυρήνας %s διαθέσιμος" msgid "Show" msgstr "Προβολή" -#: src/Console/AppConsole.vala:342 src/Gtk/MainWindow.vala:264 +#: src/Console/AppConsole.vala:342 src/Gtk/MainWindow.vala:296 msgid "Install" msgstr "Εγκατάσταση" @@ -360,68 +364,74 @@ msgstr "Εκτύπωση πληροφοριών εντοπισμού σφαλμ msgid "Show all options" msgstr "Εμφάνιση όλων των επιλογών" -#: src/Gtk/MainWindow.vala:111 +#: src/Gtk/MainWindow.vala:110 msgid "Kernel" msgstr "Πυρήνας" -#: src/Gtk/MainWindow.vala:141 +#: src/Gtk/MainWindow.vala:143 msgid "Status" msgstr "Κατάσταση" -#: src/Gtk/MainWindow.vala:274 -msgid "Uninstall" -msgstr "Απεγκατάσταση" - -#: src/Gtk/MainWindow.vala:284 +#: src/Gtk/MainWindow.vala:158 msgid "Notes" msgstr "Σημειώσεις" -#: src/Gtk/MainWindow.vala:289 -msgid "User notes for" -msgstr "Σημειώσεις χρήστη για" +#: src/Gtk/MainWindow.vala:306 +msgid "Uninstall" +msgstr "Απεγκατάσταση" -#: src/Gtk/MainWindow.vala:305 +#: src/Gtk/MainWindow.vala:327 msgid "Uninstall Old" msgstr "Απεγκατάσταση παλαιών" -#: src/Gtk/MainWindow.vala:311 +#: src/Gtk/MainWindow.vala:333 msgid "Reload" msgstr "Δροσίζω" -#: src/Gtk/MainWindow.vala:316 src/Gtk/SettingsDialog.vala:49 +#: src/Gtk/MainWindow.vala:334 +msgid "" +"Delete cache and reload all kernel info\n" +"\n" +"THIS WILL ALSO DELETE ALL USER NOTES" +msgstr "" +"Διαγραφή προσωρινής μνήμης και επαναφόρτωση όλων των πληροφοριών πυρήνα \n" +"\n" +"ΑΥΤΌ ΘΑ ΔΙΑΓΡΆΨΕΙ ΕΠΊΣΗΣ ΌΛΕΣ ΤΙΣ ΣΗΜΕΙΏΣΕΙΣ ΧΡΉΣΤΗ" + +#: src/Gtk/MainWindow.vala:339 src/Gtk/SettingsDialog.vala:49 msgid "Settings" msgstr "Ρυθμίσεις" -#: src/Gtk/MainWindow.vala:321 +#: src/Gtk/MainWindow.vala:344 msgid "About" msgstr "Σχετικά" -#: src/Gtk/MainWindow.vala:326 +#: src/Gtk/MainWindow.vala:349 msgid "Exit" msgstr "Έξοδος" -#: src/Gtk/MainWindow.vala:394 +#: src/Gtk/MainWindow.vala:418 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Πρόγραμμα αναβάθμισης πυρήνα για διανομές που βασίζονται στο Ubuntu" -#: src/Gtk/MainWindow.vala:395 +#: src/Gtk/MainWindow.vala:419 msgid "Forked" msgstr "Forked" -#: src/Gtk/MainWindow.vala:395 +#: src/Gtk/MainWindow.vala:419 msgid "Original" msgstr "Πρωτότυπο" -#: src/Gtk/MainWindow.vala:433 +#: src/Gtk/MainWindow.vala:457 msgid "Updating kernels" msgstr "Ενημέρωση πυρήνων" -#: src/Gtk/MainWindow.vala:504 +#: src/Gtk/MainWindow.vala:528 msgid "available" msgstr "διαθέσιμος" -#: src/Gtk/MainWindow.vala:547 src/Gtk/MainWindow.vala:587 -#: src/Gtk/MainWindow.vala:621 +#: src/Gtk/MainWindow.vala:571 src/Gtk/MainWindow.vala:611 +#: src/Gtk/MainWindow.vala:645 msgid "DONE" msgstr "ΈΤΟΙΜΟ" @@ -501,7 +511,7 @@ msgstr "Επαλήθευση αθροισμάτων ελέγχου με τα α msgid "Proxy" msgstr "Διακομιστής" -#: src/Gtk/l.gtk.vala:42 +#: src/Gtk/l.gtk.vala:29 msgid "Missing Icon" msgstr "Ελλείπον εικονίδιο" diff --git a/po/es.po b/po/es.po index 5419b7cf..7c87b9e9 100644 --- a/po/es.po +++ b/po/es.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-04-03 19:46-0400\n" +"POT-Creation-Date: 2023-04-04 07:52-0400\n" "PO-Revision-Date: 2018-01-03 02:03-0600\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish\n" @@ -13,137 +13,141 @@ msgstr "" "X-Launchpad-Export-Date: 2017-04-13 11:48+0000\n" "X-Generator: Poedit 2.0.5\n" -#: src/Common/LinuxKernel.vala:99 +#: src/Common/LinuxKernel.vala:102 msgid "Distribution" msgstr "Distribución" -#: src/Common/LinuxKernel.vala:114 +#: src/Common/LinuxKernel.vala:117 msgid "Architecture" msgstr "Arquitectura del sistema" -#: src/Common/LinuxKernel.vala:129 +#: src/Common/LinuxKernel.vala:132 msgid "Running kernel" msgstr "Kernel en ejecución" -#: src/Common/LinuxKernel.vala:250 +#: src/Common/LinuxKernel.vala:253 msgid "loading cached" msgstr "carga en caché" -#: src/Common/LinuxKernel.vala:264 +#: src/Common/LinuxKernel.vala:267 msgid "queuing download" msgstr "descarga de colas" -#: src/Common/LinuxKernel.vala:287 +#: src/Common/LinuxKernel.vala:290 msgid "Fetching individual kernel indexes" msgstr "Obtención de índices de kernel individuales" -#: src/Common/LinuxKernel.vala:303 +#: src/Common/LinuxKernel.vala:306 msgid "loading downloaded" msgstr "cargando descargado" -#: src/Common/LinuxKernel.vala:339 +#: src/Common/LinuxKernel.vala:341 msgid "Updating from" msgstr "Actualización desde" -#: src/Common/LinuxKernel.vala:347 +#: src/Common/LinuxKernel.vala:349 msgid "OK" msgstr "Aceptar" -#: src/Common/LinuxKernel.vala:350 +#: src/Common/LinuxKernel.vala:352 msgid "FAILED" msgstr "FRACASADO" -#: src/Common/LinuxKernel.vala:396 +#: src/Common/LinuxKernel.vala:397 msgid "Found installed" msgstr "Encontrado instalado" -#: src/Common/LinuxKernel.vala:790 +#: src/Common/LinuxKernel.vala:721 src/Gtk/MainWindow.vala:519 +#: src/Gtk/MainWindow.vala:532 +msgid "Running" +msgstr "En ejecución" + +#: src/Common/LinuxKernel.vala:722 +msgid "Installed" +msgstr "Instalado" + +#: src/Common/LinuxKernel.vala:723 +msgid "Invalid" +msgstr "No válido" + +#: src/Common/LinuxKernel.vala:797 msgid "Packages Available" msgstr "Paquetes disponibles" -#: src/Common/LinuxKernel.vala:796 +#: src/Common/LinuxKernel.vala:803 msgid "Packages Installed" msgstr "Paquetes instalados" -#: src/Common/LinuxKernel.vala:817 src/lib/TeeJee.FileSystem.vala:118 +#: src/Common/LinuxKernel.vala:825 src/lib/TeeJee.FileSystem.vala:118 msgid "File not found" msgstr "No se encontró el archivo" -#: src/Common/LinuxKernel.vala:884 +#: src/Common/LinuxKernel.vala:894 msgid "Available Kernels" msgstr "Núcleos disponibles" -#: src/Common/LinuxKernel.vala:891 src/Gtk/MainWindow.vala:154 -msgid "Installed" -msgstr "Instalado" - -#: src/Common/LinuxKernel.vala:891 src/Gtk/MainWindow.vala:154 -#: src/Gtk/MainWindow.vala:495 src/Gtk/MainWindow.vala:508 -msgid "Running" -msgstr "En ejecución" - -#: src/Common/LinuxKernel.vala:925 +#: src/Common/LinuxKernel.vala:931 msgid "enabled" msgstr "habilitado" -#: src/Common/LinuxKernel.vala:949 +#: src/Common/LinuxKernel.vala:955 msgid "Downloading" msgstr "Descargar" -#: src/Common/LinuxKernel.vala:970 +#: src/Common/LinuxKernel.vala:976 msgid "is already installed." msgstr "ya está instalado." -#: src/Common/LinuxKernel.vala:1004 +#: src/Common/LinuxKernel.vala:1006 msgid "Uninstalling selected kernels" msgstr "Desinstalación de kernels seleccionados" -#: src/Common/LinuxKernel.vala:1010 +#: src/Common/LinuxKernel.vala:1012 msgid "requested" msgstr "solicitado" -#: src/Common/LinuxKernel.vala:1013 +#: src/Common/LinuxKernel.vala:1015 msgid "not uninstalling the currently running kernel" msgstr "No desinstalará el kernel que se está ejecutando actualmente" -#: src/Common/LinuxKernel.vala:1029 +#: src/Common/LinuxKernel.vala:1031 msgid "found" msgstr "fundar" -#: src/Common/LinuxKernel.vala:1032 +#: src/Common/LinuxKernel.vala:1034 msgid "No packages to un-install!" msgstr "¡No hay paquetes para desinstalar!" -#: src/Common/LinuxKernel.vala:1080 +#: src/Common/LinuxKernel.vala:1082 msgid "Could not find running kernel in list" msgstr "No se pudo encontrar el kernel en ejecución en la lista" -#: src/Common/LinuxKernel.vala:1085 +#: src/Common/LinuxKernel.vala:1087 msgid "Could not find any kernels to uninstall" msgstr "No se pudo encontrar ningún kernel para desinstalar" -#: src/Common/LinuxKernel.vala:1093 +#: src/Common/LinuxKernel.vala:1095 msgid "The following kernels will be uninstalled" msgstr "Se desinstalarán los siguientes kernels" -#: src/Common/LinuxKernel.vala:1097 +#: src/Common/LinuxKernel.vala:1099 msgid "Continue ?" msgstr "¿Continuar?" -#: src/Common/LinuxKernel.vala:1119 src/Console/AppConsole.vala:290 +#: src/Common/LinuxKernel.vala:1121 src/Console/AppConsole.vala:290 msgid "Latest update" msgstr "Última actualización" -#: src/Common/LinuxKernel.vala:1130 src/Console/AppConsole.vala:297 +#: src/Common/LinuxKernel.vala:1132 src/Console/AppConsole.vala:297 msgid "Latest point update" msgstr "Última actualización puntual" -#: src/Common/LinuxKernel.vala:1138 src/Console/AppConsole.vala:302 +#: src/Common/LinuxKernel.vala:1140 src/Console/AppConsole.vala:302 #: src/Console/AppConsole.vala:318 msgid "No updates found" msgstr "No se encontró ninguna actualización" -#: src/Common/LinuxKernel.vala:1147 +#: src/Common/LinuxKernel.vala:1149 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Instalar la versión del kernel %s? (s/n): " @@ -208,7 +212,7 @@ msgstr "Instalar núcleo troncal especificado" msgid "Uninstall specified kernel" msgstr "Desinstalar el kernel especificado" -#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:306 +#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:328 msgid "Uninstall all but the highest installed version" msgstr "Desinstale todas las versiones instaladas excepto la más alta" @@ -302,7 +306,7 @@ msgstr "Kernel %s Disponible" msgid "Show" msgstr "Mostrar" -#: src/Console/AppConsole.vala:342 src/Gtk/MainWindow.vala:264 +#: src/Console/AppConsole.vala:342 src/Gtk/MainWindow.vala:296 msgid "Install" msgstr "Instalar" @@ -358,69 +362,75 @@ msgstr "Mostrar información de depuración" msgid "Show all options" msgstr "Mostrar todas las opciones" -#: src/Gtk/MainWindow.vala:111 +#: src/Gtk/MainWindow.vala:110 msgid "Kernel" msgstr "Núcleo" -#: src/Gtk/MainWindow.vala:141 +#: src/Gtk/MainWindow.vala:143 msgid "Status" msgstr "Estado" -#: src/Gtk/MainWindow.vala:274 -msgid "Uninstall" -msgstr "Desinstalar" - -#: src/Gtk/MainWindow.vala:284 +#: src/Gtk/MainWindow.vala:158 msgid "Notes" msgstr "Notas" -#: src/Gtk/MainWindow.vala:289 -msgid "User notes for" -msgstr "Notas de usuario para" +#: src/Gtk/MainWindow.vala:306 +msgid "Uninstall" +msgstr "Desinstalar" -#: src/Gtk/MainWindow.vala:305 +#: src/Gtk/MainWindow.vala:327 msgid "Uninstall Old" msgstr "Desinstalar Antiguo" -#: src/Gtk/MainWindow.vala:311 +#: src/Gtk/MainWindow.vala:333 msgid "Reload" msgstr "Recargar" -#: src/Gtk/MainWindow.vala:316 src/Gtk/SettingsDialog.vala:49 +#: src/Gtk/MainWindow.vala:334 +msgid "" +"Delete cache and reload all kernel info\n" +"\n" +"THIS WILL ALSO DELETE ALL USER NOTES" +msgstr "" +"Borrar caché y volver a cargar toda la información del kernel \n" +"\n" +"ESTO TAMBIÉN ELIMINARÁ TODAS LAS NOTAS DEL USUARIO" + +#: src/Gtk/MainWindow.vala:339 src/Gtk/SettingsDialog.vala:49 msgid "Settings" msgstr "Configuración" -#: src/Gtk/MainWindow.vala:321 +#: src/Gtk/MainWindow.vala:344 msgid "About" msgstr "Acerca de" -#: src/Gtk/MainWindow.vala:326 +#: src/Gtk/MainWindow.vala:349 msgid "Exit" msgstr "Salida" -#: src/Gtk/MainWindow.vala:394 +#: src/Gtk/MainWindow.vala:418 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "" "Herramienta de renovación de núcleo para distribuciones basadas en Ubuntu" -#: src/Gtk/MainWindow.vala:395 +#: src/Gtk/MainWindow.vala:419 msgid "Forked" msgstr "Bifurcada" -#: src/Gtk/MainWindow.vala:395 +#: src/Gtk/MainWindow.vala:419 msgid "Original" msgstr "Original" -#: src/Gtk/MainWindow.vala:433 +#: src/Gtk/MainWindow.vala:457 msgid "Updating kernels" msgstr "Actualización de kernels" -#: src/Gtk/MainWindow.vala:504 +#: src/Gtk/MainWindow.vala:528 msgid "available" msgstr "disponibles" -#: src/Gtk/MainWindow.vala:547 src/Gtk/MainWindow.vala:587 -#: src/Gtk/MainWindow.vala:621 +#: src/Gtk/MainWindow.vala:571 src/Gtk/MainWindow.vala:611 +#: src/Gtk/MainWindow.vala:645 msgid "DONE" msgstr "HECHO" @@ -500,7 +510,7 @@ msgstr "Verificar sumas de comprobación con los archivos CHECKSUMS" msgid "Proxy" msgstr "Proxy" -#: src/Gtk/l.gtk.vala:42 +#: src/Gtk/l.gtk.vala:29 msgid "Missing Icon" msgstr "Falta el icono" diff --git a/po/fr.po b/po/fr.po index 56be1cf3..fb9f1fc6 100644 --- a/po/fr.po +++ b/po/fr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-04-03 19:46-0400\n" +"POT-Creation-Date: 2023-04-04 07:52-0400\n" "PO-Revision-Date: 2018-08-05 15:50+0200\n" "Last-Translator: Yolateng0 \n" "Language-Team: French\n" @@ -13,137 +13,141 @@ msgstr "" "X-Launchpad-Export-Date: 2017-04-13 11:48+0000\n" "X-Generator: Poedit 2.0.6\n" -#: src/Common/LinuxKernel.vala:99 +#: src/Common/LinuxKernel.vala:102 msgid "Distribution" msgstr "Distribution" -#: src/Common/LinuxKernel.vala:114 +#: src/Common/LinuxKernel.vala:117 msgid "Architecture" msgstr "Architecture" -#: src/Common/LinuxKernel.vala:129 +#: src/Common/LinuxKernel.vala:132 msgid "Running kernel" msgstr "Noyau en cours d'exécution" -#: src/Common/LinuxKernel.vala:250 +#: src/Common/LinuxKernel.vala:253 msgid "loading cached" msgstr "chargement mis en cache" -#: src/Common/LinuxKernel.vala:264 +#: src/Common/LinuxKernel.vala:267 msgid "queuing download" msgstr "enqueuing télécharger" -#: src/Common/LinuxKernel.vala:287 +#: src/Common/LinuxKernel.vala:290 msgid "Fetching individual kernel indexes" msgstr "Récupération d'index de noyau individuels" -#: src/Common/LinuxKernel.vala:303 +#: src/Common/LinuxKernel.vala:306 msgid "loading downloaded" msgstr "chargement téléchargé" -#: src/Common/LinuxKernel.vala:339 +#: src/Common/LinuxKernel.vala:341 msgid "Updating from" msgstr "Mise à jour à partir de" -#: src/Common/LinuxKernel.vala:347 +#: src/Common/LinuxKernel.vala:349 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:350 +#: src/Common/LinuxKernel.vala:352 msgid "FAILED" msgstr "RATÉ" -#: src/Common/LinuxKernel.vala:396 +#: src/Common/LinuxKernel.vala:397 msgid "Found installed" msgstr "Trouvé installé" -#: src/Common/LinuxKernel.vala:790 +#: src/Common/LinuxKernel.vala:721 src/Gtk/MainWindow.vala:519 +#: src/Gtk/MainWindow.vala:532 +msgid "Running" +msgstr "Actuel" + +#: src/Common/LinuxKernel.vala:722 +msgid "Installed" +msgstr "Installé" + +#: src/Common/LinuxKernel.vala:723 +msgid "Invalid" +msgstr "No válido" + +#: src/Common/LinuxKernel.vala:797 msgid "Packages Available" msgstr "Paquets Disponibles" -#: src/Common/LinuxKernel.vala:796 +#: src/Common/LinuxKernel.vala:803 msgid "Packages Installed" msgstr "Paquets Installés" -#: src/Common/LinuxKernel.vala:817 src/lib/TeeJee.FileSystem.vala:118 +#: src/Common/LinuxKernel.vala:825 src/lib/TeeJee.FileSystem.vala:118 msgid "File not found" msgstr "Fichier non trouvé" -#: src/Common/LinuxKernel.vala:884 +#: src/Common/LinuxKernel.vala:894 msgid "Available Kernels" msgstr "Noyaux Disponibles" -#: src/Common/LinuxKernel.vala:891 src/Gtk/MainWindow.vala:154 -msgid "Installed" -msgstr "Installé" - -#: src/Common/LinuxKernel.vala:891 src/Gtk/MainWindow.vala:154 -#: src/Gtk/MainWindow.vala:495 src/Gtk/MainWindow.vala:508 -msgid "Running" -msgstr "Actuel" - -#: src/Common/LinuxKernel.vala:925 +#: src/Common/LinuxKernel.vala:931 msgid "enabled" msgstr "activé" -#: src/Common/LinuxKernel.vala:949 +#: src/Common/LinuxKernel.vala:955 msgid "Downloading" msgstr "Téléchargement" -#: src/Common/LinuxKernel.vala:970 +#: src/Common/LinuxKernel.vala:976 msgid "is already installed." msgstr "est déjà installé." -#: src/Common/LinuxKernel.vala:1004 +#: src/Common/LinuxKernel.vala:1006 msgid "Uninstalling selected kernels" msgstr "Désinstallation des noyaux sélectionnés" -#: src/Common/LinuxKernel.vala:1010 +#: src/Common/LinuxKernel.vala:1012 msgid "requested" msgstr "Demandé" -#: src/Common/LinuxKernel.vala:1013 +#: src/Common/LinuxKernel.vala:1015 msgid "not uninstalling the currently running kernel" msgstr "Ne pas désinstaller le noyau en cours d'exécution" -#: src/Common/LinuxKernel.vala:1029 +#: src/Common/LinuxKernel.vala:1031 msgid "found" msgstr "fonder" -#: src/Common/LinuxKernel.vala:1032 +#: src/Common/LinuxKernel.vala:1034 msgid "No packages to un-install!" msgstr "Pas de paquets à désinstaller !" -#: src/Common/LinuxKernel.vala:1080 +#: src/Common/LinuxKernel.vala:1082 msgid "Could not find running kernel in list" msgstr "Impossible de trouver le noyau en cours d'exécution dans la liste" -#: src/Common/LinuxKernel.vala:1085 +#: src/Common/LinuxKernel.vala:1087 msgid "Could not find any kernels to uninstall" msgstr "Impossible de trouver des noyaux à désinstaller" -#: src/Common/LinuxKernel.vala:1093 +#: src/Common/LinuxKernel.vala:1095 msgid "The following kernels will be uninstalled" msgstr "Les noyaux suivants seront désinstallés" -#: src/Common/LinuxKernel.vala:1097 +#: src/Common/LinuxKernel.vala:1099 msgid "Continue ?" msgstr "Reprendre ?" -#: src/Common/LinuxKernel.vala:1119 src/Console/AppConsole.vala:290 +#: src/Common/LinuxKernel.vala:1121 src/Console/AppConsole.vala:290 msgid "Latest update" msgstr "Dernière mise à jour" -#: src/Common/LinuxKernel.vala:1130 src/Console/AppConsole.vala:297 +#: src/Common/LinuxKernel.vala:1132 src/Console/AppConsole.vala:297 msgid "Latest point update" msgstr "Dernière mise à jour mineure" -#: src/Common/LinuxKernel.vala:1138 src/Console/AppConsole.vala:302 +#: src/Common/LinuxKernel.vala:1140 src/Console/AppConsole.vala:302 #: src/Console/AppConsole.vala:318 msgid "No updates found" msgstr "Aucune mise à jour disponible" -#: src/Common/LinuxKernel.vala:1147 +#: src/Common/LinuxKernel.vala:1149 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Installer le noyau en version %s ? (y/n): " @@ -208,7 +212,7 @@ msgstr "Installer le noyau mainline spécifié" msgid "Uninstall specified kernel" msgstr "Désinstaller le noyau spécifié" -#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:306 +#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:328 msgid "Uninstall all but the highest installed version" msgstr "Désinstallez toutes le version installées, sauf la plus élevée" @@ -304,7 +308,7 @@ msgstr "Paquet %s disponibles" msgid "Show" msgstr "Montrer" -#: src/Console/AppConsole.vala:342 src/Gtk/MainWindow.vala:264 +#: src/Console/AppConsole.vala:342 src/Gtk/MainWindow.vala:296 msgid "Install" msgstr "Installer" @@ -360,70 +364,76 @@ msgstr "Afficher les informations de débogage" msgid "Show all options" msgstr "Afficher toutes les options" -#: src/Gtk/MainWindow.vala:111 +#: src/Gtk/MainWindow.vala:110 msgid "Kernel" msgstr "Noyau" -#: src/Gtk/MainWindow.vala:141 +#: src/Gtk/MainWindow.vala:143 msgid "Status" msgstr "Statut" -#: src/Gtk/MainWindow.vala:274 -msgid "Uninstall" -msgstr "Désinstaller" - -#: src/Gtk/MainWindow.vala:284 +#: src/Gtk/MainWindow.vala:158 msgid "Notes" msgstr "Notes" -#: src/Gtk/MainWindow.vala:289 -msgid "User notes for" -msgstr "Notes d'utilisation pour" +#: src/Gtk/MainWindow.vala:306 +msgid "Uninstall" +msgstr "Désinstaller" -#: src/Gtk/MainWindow.vala:305 +#: src/Gtk/MainWindow.vala:327 msgid "Uninstall Old" msgstr "Désinstaller Ancien" -#: src/Gtk/MainWindow.vala:311 +#: src/Gtk/MainWindow.vala:333 msgid "Reload" msgstr "Recharger" -#: src/Gtk/MainWindow.vala:316 src/Gtk/SettingsDialog.vala:49 +#: src/Gtk/MainWindow.vala:334 +msgid "" +"Delete cache and reload all kernel info\n" +"\n" +"THIS WILL ALSO DELETE ALL USER NOTES" +msgstr "" +"Supprimer le cache et recharger toutes les informations du noyau\n" +"\n" +"CELA SUPPRIMERA ÉGALEMENT TOUTES LES NOTES DE UTILISATEUR" + +#: src/Gtk/MainWindow.vala:339 src/Gtk/SettingsDialog.vala:49 msgid "Settings" msgstr "Paramètres" -#: src/Gtk/MainWindow.vala:321 +#: src/Gtk/MainWindow.vala:344 msgid "About" msgstr "À propos" -#: src/Gtk/MainWindow.vala:326 +#: src/Gtk/MainWindow.vala:349 msgid "Exit" msgstr "Sortie" -#: src/Gtk/MainWindow.vala:394 +#: src/Gtk/MainWindow.vala:418 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "" "Utilitaire de mise à niveau des noyaux pour les distributions basées sur " "Ubuntu" -#: src/Gtk/MainWindow.vala:395 +#: src/Gtk/MainWindow.vala:419 msgid "Forked" msgstr "Forkée" -#: src/Gtk/MainWindow.vala:395 +#: src/Gtk/MainWindow.vala:419 msgid "Original" msgstr "Originale" -#: src/Gtk/MainWindow.vala:433 +#: src/Gtk/MainWindow.vala:457 msgid "Updating kernels" msgstr "Mise à jour des noyaux" -#: src/Gtk/MainWindow.vala:504 +#: src/Gtk/MainWindow.vala:528 msgid "available" msgstr "disponible" -#: src/Gtk/MainWindow.vala:547 src/Gtk/MainWindow.vala:587 -#: src/Gtk/MainWindow.vala:621 +#: src/Gtk/MainWindow.vala:571 src/Gtk/MainWindow.vala:611 +#: src/Gtk/MainWindow.vala:645 msgid "DONE" msgstr "FAIT" @@ -503,7 +513,7 @@ msgstr "Vérifier les sommes de contrôle avec les fichiers CHECKSUMS" msgid "Proxy" msgstr "Proxy" -#: src/Gtk/l.gtk.vala:42 +#: src/Gtk/l.gtk.vala:29 msgid "Missing Icon" msgstr "Icône introuvable" diff --git a/po/hr.po b/po/hr.po index c65d6fb6..14152f0c 100644 --- a/po/hr.po +++ b/po/hr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-04-03 19:46-0400\n" +"POT-Creation-Date: 2023-04-04 07:52-0400\n" "PO-Revision-Date: 2022-09-22 12:13+0200\n" "Last-Translator: gogo \n" "Language-Team: Croatian\n" @@ -13,137 +13,141 @@ msgstr "" "X-Launchpad-Export-Date: 2017-12-23 23:36+0000\n" "X-Generator: Poedit 3.0.1\n" -#: src/Common/LinuxKernel.vala:99 +#: src/Common/LinuxKernel.vala:102 msgid "Distribution" msgstr "Distribucija" -#: src/Common/LinuxKernel.vala:114 +#: src/Common/LinuxKernel.vala:117 msgid "Architecture" msgstr "Arhitektura" -#: src/Common/LinuxKernel.vala:129 +#: src/Common/LinuxKernel.vala:132 msgid "Running kernel" msgstr "Trčanje kernel" -#: src/Common/LinuxKernel.vala:250 +#: src/Common/LinuxKernel.vala:253 msgid "loading cached" msgstr "učitavanje predmemoriranog" -#: src/Common/LinuxKernel.vala:264 +#: src/Common/LinuxKernel.vala:267 msgid "queuing download" msgstr "preuzimanje u redu čekanja" -#: src/Common/LinuxKernel.vala:287 +#: src/Common/LinuxKernel.vala:290 msgid "Fetching individual kernel indexes" msgstr "Dohvaćanje pojedinačnih indeksa kernel" -#: src/Common/LinuxKernel.vala:303 +#: src/Common/LinuxKernel.vala:306 msgid "loading downloaded" msgstr "učitavanje preuzeto" -#: src/Common/LinuxKernel.vala:339 +#: src/Common/LinuxKernel.vala:341 msgid "Updating from" msgstr "Ažuriranje iz" -#: src/Common/LinuxKernel.vala:347 +#: src/Common/LinuxKernel.vala:349 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:350 +#: src/Common/LinuxKernel.vala:352 msgid "FAILED" msgstr "NIJE USPIO" -#: src/Common/LinuxKernel.vala:396 +#: src/Common/LinuxKernel.vala:397 msgid "Found installed" msgstr "Pronađeno instalirano" -#: src/Common/LinuxKernel.vala:790 +#: src/Common/LinuxKernel.vala:721 src/Gtk/MainWindow.vala:519 +#: src/Gtk/MainWindow.vala:532 +msgid "Running" +msgstr "Pokrenuto" + +#: src/Common/LinuxKernel.vala:722 +msgid "Installed" +msgstr "Instalirano" + +#: src/Common/LinuxKernel.vala:723 +msgid "Invalid" +msgstr "Érvénytelen" + +#: src/Common/LinuxKernel.vala:797 msgid "Packages Available" msgstr "Dostupni Paketi" -#: src/Common/LinuxKernel.vala:796 +#: src/Common/LinuxKernel.vala:803 msgid "Packages Installed" msgstr "Instalirani paketi" -#: src/Common/LinuxKernel.vala:817 src/lib/TeeJee.FileSystem.vala:118 +#: src/Common/LinuxKernel.vala:825 src/lib/TeeJee.FileSystem.vala:118 msgid "File not found" msgstr "Datoteka nije pronađena" -#: src/Common/LinuxKernel.vala:884 +#: src/Common/LinuxKernel.vala:894 msgid "Available Kernels" msgstr "Dostupni kerneli" -#: src/Common/LinuxKernel.vala:891 src/Gtk/MainWindow.vala:154 -msgid "Installed" -msgstr "Instalirano" - -#: src/Common/LinuxKernel.vala:891 src/Gtk/MainWindow.vala:154 -#: src/Gtk/MainWindow.vala:495 src/Gtk/MainWindow.vala:508 -msgid "Running" -msgstr "Pokrenuto" - -#: src/Common/LinuxKernel.vala:925 +#: src/Common/LinuxKernel.vala:931 msgid "enabled" msgstr "omogućen" -#: src/Common/LinuxKernel.vala:949 +#: src/Common/LinuxKernel.vala:955 msgid "Downloading" msgstr "Učitavanje" -#: src/Common/LinuxKernel.vala:970 +#: src/Common/LinuxKernel.vala:976 msgid "is already installed." msgstr "je već instaliran." -#: src/Common/LinuxKernel.vala:1004 +#: src/Common/LinuxKernel.vala:1006 msgid "Uninstalling selected kernels" msgstr "Deinstaliraj određene kernele" -#: src/Common/LinuxKernel.vala:1010 +#: src/Common/LinuxKernel.vala:1012 msgid "requested" msgstr "Zatražio" -#: src/Common/LinuxKernel.vala:1013 +#: src/Common/LinuxKernel.vala:1015 msgid "not uninstalling the currently running kernel" msgstr "ne deinstaliranje trenutno pokrenute kernel" -#: src/Common/LinuxKernel.vala:1029 +#: src/Common/LinuxKernel.vala:1031 msgid "found" msgstr "pronađen" -#: src/Common/LinuxKernel.vala:1032 +#: src/Common/LinuxKernel.vala:1034 msgid "No packages to un-install!" msgstr "Nema paketa za poništavanje instalacije!" -#: src/Common/LinuxKernel.vala:1080 +#: src/Common/LinuxKernel.vala:1082 msgid "Could not find running kernel in list" msgstr "Nije moguće pronaći pokrenutu kernel na popisu" -#: src/Common/LinuxKernel.vala:1085 +#: src/Common/LinuxKernel.vala:1087 msgid "Could not find any kernels to uninstall" msgstr "Nema pronađenih kernela za deinstaliranje" -#: src/Common/LinuxKernel.vala:1093 +#: src/Common/LinuxKernel.vala:1095 msgid "The following kernels will be uninstalled" msgstr "Deinstalirat će se sljedeće kerneli" -#: src/Common/LinuxKernel.vala:1097 +#: src/Common/LinuxKernel.vala:1099 msgid "Continue ?" msgstr "Nastavi?" -#: src/Common/LinuxKernel.vala:1119 src/Console/AppConsole.vala:290 +#: src/Common/LinuxKernel.vala:1121 src/Console/AppConsole.vala:290 msgid "Latest update" msgstr "Najnovija nadopuna" -#: src/Common/LinuxKernel.vala:1130 src/Console/AppConsole.vala:297 +#: src/Common/LinuxKernel.vala:1132 src/Console/AppConsole.vala:297 msgid "Latest point update" msgstr "Najnovija ciljana nadopuna" -#: src/Common/LinuxKernel.vala:1138 src/Console/AppConsole.vala:302 +#: src/Common/LinuxKernel.vala:1140 src/Console/AppConsole.vala:302 #: src/Console/AppConsole.vala:318 msgid "No updates found" msgstr "Nema pronađenih nadopuna" -#: src/Common/LinuxKernel.vala:1147 +#: src/Common/LinuxKernel.vala:1149 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Instaliraj kernel inačice %s ? (d/n): " @@ -207,7 +211,7 @@ msgstr "Instaliraj određeni mainline kernel" msgid "Uninstall specified kernel" msgstr "Deinstaliraj određene kernele" -#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:306 +#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:328 msgid "Uninstall all but the highest installed version" msgstr "Deinstaliraj sve osim najnovije instalirane verzije" @@ -301,7 +305,7 @@ msgstr "Kernel %s je dostupan" msgid "Show" msgstr "Prikaži" -#: src/Console/AppConsole.vala:342 src/Gtk/MainWindow.vala:264 +#: src/Console/AppConsole.vala:342 src/Gtk/MainWindow.vala:296 msgid "Install" msgstr "Instaliraj" @@ -357,68 +361,74 @@ msgstr "Ispiši informacije otklanjanja grešaka" msgid "Show all options" msgstr "Prikaži sve mogućnosti" -#: src/Gtk/MainWindow.vala:111 +#: src/Gtk/MainWindow.vala:110 msgid "Kernel" msgstr "Kernel" -#: src/Gtk/MainWindow.vala:141 +#: src/Gtk/MainWindow.vala:143 msgid "Status" msgstr "Stanje" -#: src/Gtk/MainWindow.vala:274 -msgid "Uninstall" -msgstr "Deinstaliraj" - -#: src/Gtk/MainWindow.vala:284 +#: src/Gtk/MainWindow.vala:158 msgid "Notes" msgstr "Bilješke" -#: src/Gtk/MainWindow.vala:289 -msgid "User notes for" -msgstr "Korisničke bilješke za" +#: src/Gtk/MainWindow.vala:306 +msgid "Uninstall" +msgstr "Deinstaliraj" -#: src/Gtk/MainWindow.vala:305 +#: src/Gtk/MainWindow.vala:327 msgid "Uninstall Old" msgstr "Deinstaliraj staro" -#: src/Gtk/MainWindow.vala:311 +#: src/Gtk/MainWindow.vala:333 msgid "Reload" msgstr "Ponovno učitati" -#: src/Gtk/MainWindow.vala:316 src/Gtk/SettingsDialog.vala:49 +#: src/Gtk/MainWindow.vala:334 +msgid "" +"Delete cache and reload all kernel info\n" +"\n" +"THIS WILL ALSO DELETE ALL USER NOTES" +msgstr "" +"Törölje a gyorsítótárat, és töltse be újra az összes kernelinformációt\n" +"\n" +"EZZEL AZ ÖSSZES FELHASZNÁLÓI JEGYZETET IS TÖRLI" + +#: src/Gtk/MainWindow.vala:339 src/Gtk/SettingsDialog.vala:49 msgid "Settings" msgstr "Postavke" -#: src/Gtk/MainWindow.vala:321 +#: src/Gtk/MainWindow.vala:344 msgid "About" msgstr "O programu" -#: src/Gtk/MainWindow.vala:326 +#: src/Gtk/MainWindow.vala:349 msgid "Exit" msgstr "Izlaz" -#: src/Gtk/MainWindow.vala:394 +#: src/Gtk/MainWindow.vala:418 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Alat za nadogradnju kernela Ubuntu temeljenih distribucija" -#: src/Gtk/MainWindow.vala:395 +#: src/Gtk/MainWindow.vala:419 msgid "Forked" msgstr "Forkano" -#: src/Gtk/MainWindow.vala:395 +#: src/Gtk/MainWindow.vala:419 msgid "Original" msgstr "Izvornik" -#: src/Gtk/MainWindow.vala:433 +#: src/Gtk/MainWindow.vala:457 msgid "Updating kernels" msgstr "Ažuriranje jezgri" -#: src/Gtk/MainWindow.vala:504 +#: src/Gtk/MainWindow.vala:528 msgid "available" msgstr "dostupno" -#: src/Gtk/MainWindow.vala:547 src/Gtk/MainWindow.vala:587 -#: src/Gtk/MainWindow.vala:621 +#: src/Gtk/MainWindow.vala:571 src/Gtk/MainWindow.vala:611 +#: src/Gtk/MainWindow.vala:645 msgid "DONE" msgstr "UČINJENO" @@ -498,7 +508,7 @@ msgstr "Provjera kontrolnih zbrojeva pomoću CHECKSUMS datoteka" msgid "Proxy" msgstr "Proxy" -#: src/Gtk/l.gtk.vala:42 +#: src/Gtk/l.gtk.vala:29 msgid "Missing Icon" msgstr "Ikone koje nedostaju" diff --git a/po/it.po b/po/it.po index 61d6666f..0f3d6718 100644 --- a/po/it.po +++ b/po/it.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline 1.0.15\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-04-03 19:46-0400\n" +"POT-Creation-Date: 2023-04-04 07:52-0400\n" "PO-Revision-Date: 2020-08-22 15:35+0100\n" "Last-Translator: Albano Battistella \n" "Language-Team: Italian\n" @@ -11,137 +11,141 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: src/Common/LinuxKernel.vala:99 +#: src/Common/LinuxKernel.vala:102 msgid "Distribution" msgstr "Distribuzione" -#: src/Common/LinuxKernel.vala:114 +#: src/Common/LinuxKernel.vala:117 msgid "Architecture" msgstr "Architettura" -#: src/Common/LinuxKernel.vala:129 +#: src/Common/LinuxKernel.vala:132 msgid "Running kernel" msgstr "Aggiornamento dei kernel" -#: src/Common/LinuxKernel.vala:250 +#: src/Common/LinuxKernel.vala:253 msgid "loading cached" msgstr "Caricamento file della cache" -#: src/Common/LinuxKernel.vala:264 +#: src/Common/LinuxKernel.vala:267 msgid "queuing download" msgstr "download in coda" -#: src/Common/LinuxKernel.vala:287 +#: src/Common/LinuxKernel.vala:290 msgid "Fetching individual kernel indexes" msgstr "Recupero dei singoli indici del kernel" -#: src/Common/LinuxKernel.vala:303 +#: src/Common/LinuxKernel.vala:306 msgid "loading downloaded" msgstr "caricamento dei file scaricati" -#: src/Common/LinuxKernel.vala:339 +#: src/Common/LinuxKernel.vala:341 msgid "Updating from" msgstr "Aggiornamento da" -#: src/Common/LinuxKernel.vala:347 +#: src/Common/LinuxKernel.vala:349 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:350 +#: src/Common/LinuxKernel.vala:352 msgid "FAILED" msgstr "FALLITO" -#: src/Common/LinuxKernel.vala:396 +#: src/Common/LinuxKernel.vala:397 msgid "Found installed" msgstr "Trovato installato" -#: src/Common/LinuxKernel.vala:790 +#: src/Common/LinuxKernel.vala:721 src/Gtk/MainWindow.vala:519 +#: src/Gtk/MainWindow.vala:532 +msgid "Running" +msgstr "In esecuzione" + +#: src/Common/LinuxKernel.vala:722 +msgid "Installed" +msgstr "Installato" + +#: src/Common/LinuxKernel.vala:723 +msgid "Invalid" +msgstr "Non valido" + +#: src/Common/LinuxKernel.vala:797 msgid "Packages Available" msgstr "Pacchetti disponibili" -#: src/Common/LinuxKernel.vala:796 +#: src/Common/LinuxKernel.vala:803 msgid "Packages Installed" msgstr "Pacchetti installati" -#: src/Common/LinuxKernel.vala:817 src/lib/TeeJee.FileSystem.vala:118 +#: src/Common/LinuxKernel.vala:825 src/lib/TeeJee.FileSystem.vala:118 msgid "File not found" msgstr "File non trovato" -#: src/Common/LinuxKernel.vala:884 +#: src/Common/LinuxKernel.vala:894 msgid "Available Kernels" msgstr "Kernel disponibili" -#: src/Common/LinuxKernel.vala:891 src/Gtk/MainWindow.vala:154 -msgid "Installed" -msgstr "Installato" - -#: src/Common/LinuxKernel.vala:891 src/Gtk/MainWindow.vala:154 -#: src/Gtk/MainWindow.vala:495 src/Gtk/MainWindow.vala:508 -msgid "Running" -msgstr "In esecuzione" - -#: src/Common/LinuxKernel.vala:925 +#: src/Common/LinuxKernel.vala:931 msgid "enabled" msgstr "abilitato" -#: src/Common/LinuxKernel.vala:949 +#: src/Common/LinuxKernel.vala:955 msgid "Downloading" msgstr "Scaricamento" -#: src/Common/LinuxKernel.vala:970 +#: src/Common/LinuxKernel.vala:976 msgid "is already installed." msgstr "è già installato." -#: src/Common/LinuxKernel.vala:1004 +#: src/Common/LinuxKernel.vala:1006 msgid "Uninstalling selected kernels" msgstr "Disinstalla i kernel specificati" -#: src/Common/LinuxKernel.vala:1010 +#: src/Common/LinuxKernel.vala:1012 msgid "requested" msgstr "richiesto" -#: src/Common/LinuxKernel.vala:1013 +#: src/Common/LinuxKernel.vala:1015 msgid "not uninstalling the currently running kernel" msgstr "non disinstallare il kernel attualmente in esecuzione" -#: src/Common/LinuxKernel.vala:1029 +#: src/Common/LinuxKernel.vala:1031 msgid "found" msgstr "trovato" -#: src/Common/LinuxKernel.vala:1032 +#: src/Common/LinuxKernel.vala:1034 msgid "No packages to un-install!" msgstr "Nessun pacchetto da disinstallare!" -#: src/Common/LinuxKernel.vala:1080 +#: src/Common/LinuxKernel.vala:1082 msgid "Could not find running kernel in list" msgstr "Impossibile trovare il kernel in esecuzione nell'elenco" -#: src/Common/LinuxKernel.vala:1085 +#: src/Common/LinuxKernel.vala:1087 msgid "Could not find any kernels to uninstall" msgstr "Impossibile trovare alcun kernel da rimuovere" -#: src/Common/LinuxKernel.vala:1093 +#: src/Common/LinuxKernel.vala:1095 msgid "The following kernels will be uninstalled" msgstr "I seguenti kernel saranno rimossi" -#: src/Common/LinuxKernel.vala:1097 +#: src/Common/LinuxKernel.vala:1099 msgid "Continue ?" msgstr "Continuare ?" -#: src/Common/LinuxKernel.vala:1119 src/Console/AppConsole.vala:290 +#: src/Common/LinuxKernel.vala:1121 src/Console/AppConsole.vala:290 msgid "Latest update" msgstr "Ultimo aggiornamento" -#: src/Common/LinuxKernel.vala:1130 src/Console/AppConsole.vala:297 +#: src/Common/LinuxKernel.vala:1132 src/Console/AppConsole.vala:297 msgid "Latest point update" msgstr "Ultimo aggiornamento del rilascio parziale" -#: src/Common/LinuxKernel.vala:1138 src/Console/AppConsole.vala:302 +#: src/Common/LinuxKernel.vala:1140 src/Console/AppConsole.vala:302 #: src/Console/AppConsole.vala:318 msgid "No updates found" msgstr "Nessun aggiornamento trovato" -#: src/Common/LinuxKernel.vala:1147 +#: src/Common/LinuxKernel.vala:1149 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Installare la versione del kernel %s ? (y/n): " @@ -208,7 +212,7 @@ msgstr "Installa kernel mainline specificato" msgid "Uninstall specified kernel" msgstr "Disinstalla i kernel specificati" -#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:306 +#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:328 msgid "Uninstall all but the highest installed version" msgstr "Disinstallare tutti tranne la versione più recente installata" @@ -302,7 +306,7 @@ msgstr "Kernel %s Disponibile" msgid "Show" msgstr "Mostra" -#: src/Console/AppConsole.vala:342 src/Gtk/MainWindow.vala:264 +#: src/Console/AppConsole.vala:342 src/Gtk/MainWindow.vala:296 msgid "Install" msgstr "Installa" @@ -358,68 +362,74 @@ msgstr "Stampa le informazioni di debug" msgid "Show all options" msgstr "Mostra tutte le opzioni" -#: src/Gtk/MainWindow.vala:111 +#: src/Gtk/MainWindow.vala:110 msgid "Kernel" msgstr "Kernel" -#: src/Gtk/MainWindow.vala:141 +#: src/Gtk/MainWindow.vala:143 msgid "Status" msgstr "Stato" -#: src/Gtk/MainWindow.vala:274 -msgid "Uninstall" -msgstr "Disinstalla" - -#: src/Gtk/MainWindow.vala:284 +#: src/Gtk/MainWindow.vala:158 msgid "Notes" msgstr "Note" -#: src/Gtk/MainWindow.vala:289 -msgid "User notes for" -msgstr "Note dell'utente per" +#: src/Gtk/MainWindow.vala:306 +msgid "Uninstall" +msgstr "Disinstalla" -#: src/Gtk/MainWindow.vala:305 +#: src/Gtk/MainWindow.vala:327 msgid "Uninstall Old" msgstr "Disinstalla i vecchi" -#: src/Gtk/MainWindow.vala:311 +#: src/Gtk/MainWindow.vala:333 msgid "Reload" msgstr "Ricarica" -#: src/Gtk/MainWindow.vala:316 src/Gtk/SettingsDialog.vala:49 +#: src/Gtk/MainWindow.vala:334 +msgid "" +"Delete cache and reload all kernel info\n" +"\n" +"THIS WILL ALSO DELETE ALL USER NOTES" +msgstr "" +"Eliminare la cache e ricaricare tutte le informazioni del kernel\n" +"\n" +"QUESTO CANCELLERÀ ANCHE TUTTE LE NOTE UTENTE" + +#: src/Gtk/MainWindow.vala:339 src/Gtk/SettingsDialog.vala:49 msgid "Settings" msgstr "Impostazioni" -#: src/Gtk/MainWindow.vala:321 +#: src/Gtk/MainWindow.vala:344 msgid "About" msgstr "Informazioni" -#: src/Gtk/MainWindow.vala:326 +#: src/Gtk/MainWindow.vala:349 msgid "Exit" msgstr "Chiudi" -#: src/Gtk/MainWindow.vala:394 +#: src/Gtk/MainWindow.vala:418 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Utilità di aggiornamento del kernel per distribuzioni basate su Ubuntu" -#: src/Gtk/MainWindow.vala:395 +#: src/Gtk/MainWindow.vala:419 msgid "Forked" msgstr "Forked" -#: src/Gtk/MainWindow.vala:395 +#: src/Gtk/MainWindow.vala:419 msgid "Original" msgstr "Originale" -#: src/Gtk/MainWindow.vala:433 +#: src/Gtk/MainWindow.vala:457 msgid "Updating kernels" msgstr "Aggiornamento dei kernel" -#: src/Gtk/MainWindow.vala:504 +#: src/Gtk/MainWindow.vala:528 msgid "available" msgstr "disponibile" -#: src/Gtk/MainWindow.vala:547 src/Gtk/MainWindow.vala:587 -#: src/Gtk/MainWindow.vala:621 +#: src/Gtk/MainWindow.vala:571 src/Gtk/MainWindow.vala:611 +#: src/Gtk/MainWindow.vala:645 msgid "DONE" msgstr "FATTO" @@ -499,7 +509,7 @@ msgstr "Verifica dei checksum con i file CHECKSUMS" msgid "Proxy" msgstr "Proxy" -#: src/Gtk/l.gtk.vala:42 +#: src/Gtk/l.gtk.vala:29 msgid "Missing Icon" msgstr "Icona mancante" diff --git a/po/ko.po b/po/ko.po index e88d748a..6ae1a4a0 100644 --- a/po/ko.po +++ b/po/ko.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline 1.0.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-04-03 19:46-0400\n" +"POT-Creation-Date: 2023-04-04 07:52-0400\n" "PO-Revision-Date: 2022-09-28 11:48+0900\n" "Last-Translator: Kevin Kim \n" "Language-Team: Korean\n" @@ -13,137 +13,141 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Poedit 3.0.1\n" -#: src/Common/LinuxKernel.vala:99 +#: src/Common/LinuxKernel.vala:102 msgid "Distribution" msgstr "배포판" -#: src/Common/LinuxKernel.vala:114 +#: src/Common/LinuxKernel.vala:117 msgid "Architecture" msgstr "아키텍처" -#: src/Common/LinuxKernel.vala:129 +#: src/Common/LinuxKernel.vala:132 msgid "Running kernel" msgstr "현재 실행 중인 커널" -#: src/Common/LinuxKernel.vala:250 +#: src/Common/LinuxKernel.vala:253 msgid "loading cached" msgstr "캐시된 로드 중" -#: src/Common/LinuxKernel.vala:264 +#: src/Common/LinuxKernel.vala:267 msgid "queuing download" msgstr "대기열 다운로드" -#: src/Common/LinuxKernel.vala:287 +#: src/Common/LinuxKernel.vala:290 msgid "Fetching individual kernel indexes" msgstr "개별 커널 인덱스 페치" -#: src/Common/LinuxKernel.vala:303 +#: src/Common/LinuxKernel.vala:306 msgid "loading downloaded" msgstr "다운로드 로드 중" -#: src/Common/LinuxKernel.vala:339 +#: src/Common/LinuxKernel.vala:341 msgid "Updating from" msgstr "다음에서 업데이트" -#: src/Common/LinuxKernel.vala:347 +#: src/Common/LinuxKernel.vala:349 msgid "OK" msgstr "확인" -#: src/Common/LinuxKernel.vala:350 +#: src/Common/LinuxKernel.vala:352 msgid "FAILED" msgstr "실패" -#: src/Common/LinuxKernel.vala:396 +#: src/Common/LinuxKernel.vala:397 msgid "Found installed" msgstr "설치된 것을 찾았습니다" -#: src/Common/LinuxKernel.vala:790 +#: src/Common/LinuxKernel.vala:721 src/Gtk/MainWindow.vala:519 +#: src/Gtk/MainWindow.vala:532 +msgid "Running" +msgstr "구동 중" + +#: src/Common/LinuxKernel.vala:722 +msgid "Installed" +msgstr "설치 됨" + +#: src/Common/LinuxKernel.vala:723 +msgid "Invalid" +msgstr "사용할 수 없음" + +#: src/Common/LinuxKernel.vala:797 msgid "Packages Available" msgstr "설치 가능한 패키지" -#: src/Common/LinuxKernel.vala:796 +#: src/Common/LinuxKernel.vala:803 msgid "Packages Installed" msgstr "설치된 패키지" -#: src/Common/LinuxKernel.vala:817 src/lib/TeeJee.FileSystem.vala:118 +#: src/Common/LinuxKernel.vala:825 src/lib/TeeJee.FileSystem.vala:118 msgid "File not found" msgstr "파일을 찾을 수 없습니다" -#: src/Common/LinuxKernel.vala:884 +#: src/Common/LinuxKernel.vala:894 msgid "Available Kernels" msgstr "설치 가능한 커널" -#: src/Common/LinuxKernel.vala:891 src/Gtk/MainWindow.vala:154 -msgid "Installed" -msgstr "설치 됨" - -#: src/Common/LinuxKernel.vala:891 src/Gtk/MainWindow.vala:154 -#: src/Gtk/MainWindow.vala:495 src/Gtk/MainWindow.vala:508 -msgid "Running" -msgstr "구동 중" - -#: src/Common/LinuxKernel.vala:925 +#: src/Common/LinuxKernel.vala:931 msgid "enabled" msgstr "사용" -#: src/Common/LinuxKernel.vala:949 +#: src/Common/LinuxKernel.vala:955 msgid "Downloading" msgstr "다운로드" -#: src/Common/LinuxKernel.vala:970 +#: src/Common/LinuxKernel.vala:976 msgid "is already installed." msgstr "가 이미 설치되어 있습니다" -#: src/Common/LinuxKernel.vala:1004 +#: src/Common/LinuxKernel.vala:1006 msgid "Uninstalling selected kernels" msgstr "선택한 커널 제거" -#: src/Common/LinuxKernel.vala:1010 +#: src/Common/LinuxKernel.vala:1012 msgid "requested" msgstr "요청" -#: src/Common/LinuxKernel.vala:1013 +#: src/Common/LinuxKernel.vala:1015 msgid "not uninstalling the currently running kernel" msgstr "현재 실행 중인 커널을 제거하지 않음" -#: src/Common/LinuxKernel.vala:1029 +#: src/Common/LinuxKernel.vala:1031 msgid "found" msgstr "설립하다" -#: src/Common/LinuxKernel.vala:1032 +#: src/Common/LinuxKernel.vala:1034 msgid "No packages to un-install!" msgstr "제거 할 패키지가 없습니다!" -#: src/Common/LinuxKernel.vala:1080 +#: src/Common/LinuxKernel.vala:1082 msgid "Could not find running kernel in list" msgstr "현재 실행 중인 커널을 찾을 수 없습니다" -#: src/Common/LinuxKernel.vala:1085 +#: src/Common/LinuxKernel.vala:1087 msgid "Could not find any kernels to uninstall" msgstr "삭제할 커널을 찾을 수 없습니다" -#: src/Common/LinuxKernel.vala:1093 +#: src/Common/LinuxKernel.vala:1095 msgid "The following kernels will be uninstalled" msgstr "풀이" -#: src/Common/LinuxKernel.vala:1097 +#: src/Common/LinuxKernel.vala:1099 msgid "Continue ?" msgstr "계속하시겠습니까?" -#: src/Common/LinuxKernel.vala:1119 src/Console/AppConsole.vala:290 +#: src/Common/LinuxKernel.vala:1121 src/Console/AppConsole.vala:290 msgid "Latest update" msgstr "최신 업데이트" -#: src/Common/LinuxKernel.vala:1130 src/Console/AppConsole.vala:297 +#: src/Common/LinuxKernel.vala:1132 src/Console/AppConsole.vala:297 msgid "Latest point update" msgstr "최신 포인트 업데이트" -#: src/Common/LinuxKernel.vala:1138 src/Console/AppConsole.vala:302 +#: src/Common/LinuxKernel.vala:1140 src/Console/AppConsole.vala:302 #: src/Console/AppConsole.vala:318 msgid "No updates found" msgstr "업데이트를 찾을 수 없습니다" -#: src/Common/LinuxKernel.vala:1147 +#: src/Common/LinuxKernel.vala:1149 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "커널 %s 버전을 설치하시겠습니까? (y/n): " @@ -206,7 +210,7 @@ msgstr "지정한 메인라인 커널 설치" msgid "Uninstall specified kernel" msgstr "지정한 커널 삭제" -#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:306 +#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:328 msgid "Uninstall all but the highest installed version" msgstr "설치된 가장 높은 버전을 제외한 모든 버전을 제거합니다" @@ -300,7 +304,7 @@ msgstr "커널 %s 사용 가능" msgid "Show" msgstr "보이기" -#: src/Console/AppConsole.vala:342 src/Gtk/MainWindow.vala:264 +#: src/Console/AppConsole.vala:342 src/Gtk/MainWindow.vala:296 msgid "Install" msgstr "설치" @@ -356,68 +360,74 @@ msgstr "디버그 정보 출력" msgid "Show all options" msgstr "모든 옵션 보기" -#: src/Gtk/MainWindow.vala:111 +#: src/Gtk/MainWindow.vala:110 msgid "Kernel" msgstr "커널" -#: src/Gtk/MainWindow.vala:141 +#: src/Gtk/MainWindow.vala:143 msgid "Status" msgstr "상태" -#: src/Gtk/MainWindow.vala:274 -msgid "Uninstall" -msgstr "삭제" - -#: src/Gtk/MainWindow.vala:284 +#: src/Gtk/MainWindow.vala:158 msgid "Notes" msgstr "노트" -#: src/Gtk/MainWindow.vala:289 -msgid "User notes for" -msgstr "사용자 참고 사항" +#: src/Gtk/MainWindow.vala:306 +msgid "Uninstall" +msgstr "삭제" -#: src/Gtk/MainWindow.vala:305 +#: src/Gtk/MainWindow.vala:327 msgid "Uninstall Old" msgstr "오래된 커널 제거" -#: src/Gtk/MainWindow.vala:311 +#: src/Gtk/MainWindow.vala:333 msgid "Reload" msgstr "새로고침" -#: src/Gtk/MainWindow.vala:316 src/Gtk/SettingsDialog.vala:49 +#: src/Gtk/MainWindow.vala:334 +msgid "" +"Delete cache and reload all kernel info\n" +"\n" +"THIS WILL ALSO DELETE ALL USER NOTES" +msgstr "" +"캐시 삭제 및 모든 커널 정보 다시로드\n" +"\n" +"!! 이렇게 하면 모든 사용자 메모도 삭제됩니다 !!" + +#: src/Gtk/MainWindow.vala:339 src/Gtk/SettingsDialog.vala:49 msgid "Settings" msgstr "설정" -#: src/Gtk/MainWindow.vala:321 +#: src/Gtk/MainWindow.vala:344 msgid "About" msgstr "정보" -#: src/Gtk/MainWindow.vala:326 +#: src/Gtk/MainWindow.vala:349 msgid "Exit" msgstr "출구" -#: src/Gtk/MainWindow.vala:394 +#: src/Gtk/MainWindow.vala:418 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "우분투 기반 배포판의 커널 업그레이드 도구" -#: src/Gtk/MainWindow.vala:395 +#: src/Gtk/MainWindow.vala:419 msgid "Forked" msgstr "가랑이진" -#: src/Gtk/MainWindow.vala:395 +#: src/Gtk/MainWindow.vala:419 msgid "Original" msgstr "원문 언어" -#: src/Gtk/MainWindow.vala:433 +#: src/Gtk/MainWindow.vala:457 msgid "Updating kernels" msgstr "커널 업데이트" -#: src/Gtk/MainWindow.vala:504 +#: src/Gtk/MainWindow.vala:528 msgid "available" msgstr "사용가능" -#: src/Gtk/MainWindow.vala:547 src/Gtk/MainWindow.vala:587 -#: src/Gtk/MainWindow.vala:621 +#: src/Gtk/MainWindow.vala:571 src/Gtk/MainWindow.vala:611 +#: src/Gtk/MainWindow.vala:645 msgid "DONE" msgstr "수행" @@ -497,7 +507,7 @@ msgstr "CHECKSUMS 파일로 체크섬 확인" msgid "Proxy" msgstr "대리" -#: src/Gtk/l.gtk.vala:42 +#: src/Gtk/l.gtk.vala:29 msgid "Missing Icon" msgstr "아이콘을 찾을 수 없습니다" diff --git a/po/messages.pot b/po/messages.pot index 841dcb8a..d596df5d 100644 --- a/po/messages.pot +++ b/po/messages.pot @@ -6,9 +6,9 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: mainline 1.1.11\n" +"Project-Id-Version: mainline 1.2.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-04-03 19:46-0400\n" +"POT-Creation-Date: 2023-04-04 07:52-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,137 +17,141 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" -#: src/Common/LinuxKernel.vala:99 +#: src/Common/LinuxKernel.vala:102 msgid "Distribution" msgstr "" -#: src/Common/LinuxKernel.vala:114 +#: src/Common/LinuxKernel.vala:117 msgid "Architecture" msgstr "" -#: src/Common/LinuxKernel.vala:129 +#: src/Common/LinuxKernel.vala:132 msgid "Running kernel" msgstr "" -#: src/Common/LinuxKernel.vala:250 +#: src/Common/LinuxKernel.vala:253 msgid "loading cached" msgstr "" -#: src/Common/LinuxKernel.vala:264 +#: src/Common/LinuxKernel.vala:267 msgid "queuing download" msgstr "" -#: src/Common/LinuxKernel.vala:287 +#: src/Common/LinuxKernel.vala:290 msgid "Fetching individual kernel indexes" msgstr "" -#: src/Common/LinuxKernel.vala:303 +#: src/Common/LinuxKernel.vala:306 msgid "loading downloaded" msgstr "" -#: src/Common/LinuxKernel.vala:339 +#: src/Common/LinuxKernel.vala:341 msgid "Updating from" msgstr "" -#: src/Common/LinuxKernel.vala:347 +#: src/Common/LinuxKernel.vala:349 msgid "OK" msgstr "" -#: src/Common/LinuxKernel.vala:350 +#: src/Common/LinuxKernel.vala:352 msgid "FAILED" msgstr "" -#: src/Common/LinuxKernel.vala:396 +#: src/Common/LinuxKernel.vala:397 msgid "Found installed" msgstr "" -#: src/Common/LinuxKernel.vala:790 -msgid "Packages Available" +#: src/Common/LinuxKernel.vala:721 src/Gtk/MainWindow.vala:519 +#: src/Gtk/MainWindow.vala:532 +msgid "Running" msgstr "" -#: src/Common/LinuxKernel.vala:796 -msgid "Packages Installed" +#: src/Common/LinuxKernel.vala:722 +msgid "Installed" msgstr "" -#: src/Common/LinuxKernel.vala:817 src/lib/TeeJee.FileSystem.vala:118 -msgid "File not found" +#: src/Common/LinuxKernel.vala:723 +msgid "Invalid" msgstr "" -#: src/Common/LinuxKernel.vala:884 -msgid "Available Kernels" +#: src/Common/LinuxKernel.vala:797 +msgid "Packages Available" msgstr "" -#: src/Common/LinuxKernel.vala:891 src/Gtk/MainWindow.vala:154 -msgid "Installed" +#: src/Common/LinuxKernel.vala:803 +msgid "Packages Installed" msgstr "" -#: src/Common/LinuxKernel.vala:891 src/Gtk/MainWindow.vala:154 -#: src/Gtk/MainWindow.vala:495 src/Gtk/MainWindow.vala:508 -msgid "Running" +#: src/Common/LinuxKernel.vala:825 src/lib/TeeJee.FileSystem.vala:118 +msgid "File not found" msgstr "" -#: src/Common/LinuxKernel.vala:925 +#: src/Common/LinuxKernel.vala:894 +msgid "Available Kernels" +msgstr "" + +#: src/Common/LinuxKernel.vala:931 msgid "enabled" msgstr "" -#: src/Common/LinuxKernel.vala:949 +#: src/Common/LinuxKernel.vala:955 msgid "Downloading" msgstr "" -#: src/Common/LinuxKernel.vala:970 +#: src/Common/LinuxKernel.vala:976 msgid "is already installed." msgstr "" -#: src/Common/LinuxKernel.vala:1004 +#: src/Common/LinuxKernel.vala:1006 msgid "Uninstalling selected kernels" msgstr "" -#: src/Common/LinuxKernel.vala:1010 +#: src/Common/LinuxKernel.vala:1012 msgid "requested" msgstr "" -#: src/Common/LinuxKernel.vala:1013 +#: src/Common/LinuxKernel.vala:1015 msgid "not uninstalling the currently running kernel" msgstr "" -#: src/Common/LinuxKernel.vala:1029 +#: src/Common/LinuxKernel.vala:1031 msgid "found" msgstr "" -#: src/Common/LinuxKernel.vala:1032 +#: src/Common/LinuxKernel.vala:1034 msgid "No packages to un-install!" msgstr "" -#: src/Common/LinuxKernel.vala:1080 +#: src/Common/LinuxKernel.vala:1082 msgid "Could not find running kernel in list" msgstr "" -#: src/Common/LinuxKernel.vala:1085 +#: src/Common/LinuxKernel.vala:1087 msgid "Could not find any kernels to uninstall" msgstr "" -#: src/Common/LinuxKernel.vala:1093 +#: src/Common/LinuxKernel.vala:1095 msgid "The following kernels will be uninstalled" msgstr "" -#: src/Common/LinuxKernel.vala:1097 +#: src/Common/LinuxKernel.vala:1099 msgid "Continue ?" msgstr "" -#: src/Common/LinuxKernel.vala:1119 src/Console/AppConsole.vala:290 +#: src/Common/LinuxKernel.vala:1121 src/Console/AppConsole.vala:290 msgid "Latest update" msgstr "" -#: src/Common/LinuxKernel.vala:1130 src/Console/AppConsole.vala:297 +#: src/Common/LinuxKernel.vala:1132 src/Console/AppConsole.vala:297 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:1138 src/Console/AppConsole.vala:302 +#: src/Common/LinuxKernel.vala:1140 src/Console/AppConsole.vala:302 #: src/Console/AppConsole.vala:318 msgid "No updates found" msgstr "" -#: src/Common/LinuxKernel.vala:1147 +#: src/Common/LinuxKernel.vala:1149 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "" @@ -210,7 +214,7 @@ msgstr "" msgid "Uninstall specified kernel" msgstr "" -#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:306 +#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:328 msgid "Uninstall all but the highest installed version" msgstr "" @@ -304,7 +308,7 @@ msgstr "" msgid "Show" msgstr "" -#: src/Console/AppConsole.vala:342 src/Gtk/MainWindow.vala:264 +#: src/Console/AppConsole.vala:342 src/Gtk/MainWindow.vala:296 msgid "Install" msgstr "" @@ -360,68 +364,71 @@ msgstr "" msgid "Show all options" msgstr "" -#: src/Gtk/MainWindow.vala:111 +#: src/Gtk/MainWindow.vala:110 msgid "Kernel" msgstr "" -#: src/Gtk/MainWindow.vala:141 +#: src/Gtk/MainWindow.vala:143 msgid "Status" msgstr "" -#: src/Gtk/MainWindow.vala:274 -msgid "Uninstall" -msgstr "" - -#: src/Gtk/MainWindow.vala:284 +#: src/Gtk/MainWindow.vala:158 msgid "Notes" msgstr "" -#: src/Gtk/MainWindow.vala:289 -msgid "User notes for" +#: src/Gtk/MainWindow.vala:306 +msgid "Uninstall" msgstr "" -#: src/Gtk/MainWindow.vala:305 +#: src/Gtk/MainWindow.vala:327 msgid "Uninstall Old" msgstr "" -#: src/Gtk/MainWindow.vala:311 +#: src/Gtk/MainWindow.vala:333 msgid "Reload" msgstr "" -#: src/Gtk/MainWindow.vala:316 src/Gtk/SettingsDialog.vala:49 +#: src/Gtk/MainWindow.vala:334 +msgid "" +"Delete cache and reload all kernel info\n" +"\n" +"THIS WILL ALSO DELETE ALL USER NOTES" +msgstr "" + +#: src/Gtk/MainWindow.vala:339 src/Gtk/SettingsDialog.vala:49 msgid "Settings" msgstr "" -#: src/Gtk/MainWindow.vala:321 +#: src/Gtk/MainWindow.vala:344 msgid "About" msgstr "" -#: src/Gtk/MainWindow.vala:326 +#: src/Gtk/MainWindow.vala:349 msgid "Exit" msgstr "" -#: src/Gtk/MainWindow.vala:394 +#: src/Gtk/MainWindow.vala:418 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "" -#: src/Gtk/MainWindow.vala:395 +#: src/Gtk/MainWindow.vala:419 msgid "Forked" msgstr "" -#: src/Gtk/MainWindow.vala:395 +#: src/Gtk/MainWindow.vala:419 msgid "Original" msgstr "" -#: src/Gtk/MainWindow.vala:433 +#: src/Gtk/MainWindow.vala:457 msgid "Updating kernels" msgstr "" -#: src/Gtk/MainWindow.vala:504 +#: src/Gtk/MainWindow.vala:528 msgid "available" msgstr "" -#: src/Gtk/MainWindow.vala:547 src/Gtk/MainWindow.vala:587 -#: src/Gtk/MainWindow.vala:621 +#: src/Gtk/MainWindow.vala:571 src/Gtk/MainWindow.vala:611 +#: src/Gtk/MainWindow.vala:645 msgid "DONE" msgstr "" @@ -501,7 +508,7 @@ msgstr "" msgid "Proxy" msgstr "" -#: src/Gtk/l.gtk.vala:42 +#: src/Gtk/l.gtk.vala:29 msgid "Missing Icon" msgstr "" diff --git a/po/nl.po b/po/nl.po index 835c5fd4..61b4dbf6 100644 --- a/po/nl.po +++ b/po/nl.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-04-03 19:46-0400\n" +"POT-Creation-Date: 2023-04-04 07:52-0400\n" "PO-Revision-Date: 2020-08-23 13:55+0200\n" "Last-Translator: Heimen Stoffels \n" "Language-Team: Dutch (Netherlands)\n" @@ -13,137 +13,141 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Poedit 3.2.2\n" -#: src/Common/LinuxKernel.vala:99 +#: src/Common/LinuxKernel.vala:102 msgid "Distribution" msgstr "Distributie" -#: src/Common/LinuxKernel.vala:114 +#: src/Common/LinuxKernel.vala:117 msgid "Architecture" msgstr "Architectuur" -#: src/Common/LinuxKernel.vala:129 +#: src/Common/LinuxKernel.vala:132 msgid "Running kernel" msgstr "Kernel uitvoeren" -#: src/Common/LinuxKernel.vala:250 +#: src/Common/LinuxKernel.vala:253 msgid "loading cached" msgstr "laden in cache" -#: src/Common/LinuxKernel.vala:264 +#: src/Common/LinuxKernel.vala:267 msgid "queuing download" msgstr "wachtrijen downloaden" -#: src/Common/LinuxKernel.vala:287 +#: src/Common/LinuxKernel.vala:290 msgid "Fetching individual kernel indexes" msgstr "Afzonderlijke kernelindexen ophalen" -#: src/Common/LinuxKernel.vala:303 +#: src/Common/LinuxKernel.vala:306 msgid "loading downloaded" msgstr "laden gedownload" -#: src/Common/LinuxKernel.vala:339 +#: src/Common/LinuxKernel.vala:341 msgid "Updating from" msgstr "Bijwerken van" -#: src/Common/LinuxKernel.vala:347 +#: src/Common/LinuxKernel.vala:349 msgid "OK" msgstr "Oké" -#: src/Common/LinuxKernel.vala:350 +#: src/Common/LinuxKernel.vala:352 msgid "FAILED" msgstr "MISLUKT" -#: src/Common/LinuxKernel.vala:396 +#: src/Common/LinuxKernel.vala:397 msgid "Found installed" msgstr "Geïnstalleerd gevonden" -#: src/Common/LinuxKernel.vala:790 +#: src/Common/LinuxKernel.vala:721 src/Gtk/MainWindow.vala:519 +#: src/Gtk/MainWindow.vala:532 +msgid "Running" +msgstr "In gebruik" + +#: src/Common/LinuxKernel.vala:722 +msgid "Installed" +msgstr "Geïnstalleerd" + +#: src/Common/LinuxKernel.vala:723 +msgid "Invalid" +msgstr "Ongeldig" + +#: src/Common/LinuxKernel.vala:797 msgid "Packages Available" msgstr "Beschikbare pakketten" -#: src/Common/LinuxKernel.vala:796 +#: src/Common/LinuxKernel.vala:803 msgid "Packages Installed" msgstr "Geïnstalleerde pakketten" -#: src/Common/LinuxKernel.vala:817 src/lib/TeeJee.FileSystem.vala:118 +#: src/Common/LinuxKernel.vala:825 src/lib/TeeJee.FileSystem.vala:118 msgid "File not found" msgstr "Het bestand is niet gevonden" -#: src/Common/LinuxKernel.vala:884 +#: src/Common/LinuxKernel.vala:894 msgid "Available Kernels" msgstr "Beschikbare kernels" -#: src/Common/LinuxKernel.vala:891 src/Gtk/MainWindow.vala:154 -msgid "Installed" -msgstr "Geïnstalleerd" - -#: src/Common/LinuxKernel.vala:891 src/Gtk/MainWindow.vala:154 -#: src/Gtk/MainWindow.vala:495 src/Gtk/MainWindow.vala:508 -msgid "Running" -msgstr "In gebruik" - -#: src/Common/LinuxKernel.vala:925 +#: src/Common/LinuxKernel.vala:931 msgid "enabled" msgstr "ingeschakeld" -#: src/Common/LinuxKernel.vala:949 +#: src/Common/LinuxKernel.vala:955 msgid "Downloading" msgstr "Downloaden" -#: src/Common/LinuxKernel.vala:970 +#: src/Common/LinuxKernel.vala:976 msgid "is already installed." msgstr "is al geïnstalleerd." -#: src/Common/LinuxKernel.vala:1004 +#: src/Common/LinuxKernel.vala:1006 msgid "Uninstalling selected kernels" msgstr "Geselecteerde kernels verwijderen" -#: src/Common/LinuxKernel.vala:1010 +#: src/Common/LinuxKernel.vala:1012 msgid "requested" msgstr "verzocht" -#: src/Common/LinuxKernel.vala:1013 +#: src/Common/LinuxKernel.vala:1015 msgid "not uninstalling the currently running kernel" msgstr "de momenteel actieve kernel niet verwijderen" -#: src/Common/LinuxKernel.vala:1029 +#: src/Common/LinuxKernel.vala:1031 msgid "found" msgstr "gevonden" -#: src/Common/LinuxKernel.vala:1032 +#: src/Common/LinuxKernel.vala:1034 msgid "No packages to un-install!" msgstr "Geen pakketten om te verwijderen!" -#: src/Common/LinuxKernel.vala:1080 +#: src/Common/LinuxKernel.vala:1082 msgid "Could not find running kernel in list" msgstr "De in gebruik zijnde kernel staat niet op de lijst" -#: src/Common/LinuxKernel.vala:1085 +#: src/Common/LinuxKernel.vala:1087 msgid "Could not find any kernels to uninstall" msgstr "Er zijn geen te verwijderen kernels" -#: src/Common/LinuxKernel.vala:1093 +#: src/Common/LinuxKernel.vala:1095 msgid "The following kernels will be uninstalled" msgstr "De volgende kernels worden verwijderd" -#: src/Common/LinuxKernel.vala:1097 +#: src/Common/LinuxKernel.vala:1099 msgid "Continue ?" msgstr "Wilt u doorgaan?" -#: src/Common/LinuxKernel.vala:1119 src/Console/AppConsole.vala:290 +#: src/Common/LinuxKernel.vala:1121 src/Console/AppConsole.vala:290 msgid "Latest update" msgstr "Recentste update" -#: src/Common/LinuxKernel.vala:1130 src/Console/AppConsole.vala:297 +#: src/Common/LinuxKernel.vala:1132 src/Console/AppConsole.vala:297 msgid "Latest point update" msgstr "Recentste puntupdate" -#: src/Common/LinuxKernel.vala:1138 src/Console/AppConsole.vala:302 +#: src/Common/LinuxKernel.vala:1140 src/Console/AppConsole.vala:302 #: src/Console/AppConsole.vala:318 msgid "No updates found" msgstr "Geen updates gevonden" -#: src/Common/LinuxKernel.vala:1147 +#: src/Common/LinuxKernel.vala:1149 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Wilt u versie %s installeren? (j/n): " @@ -208,7 +212,7 @@ msgstr "Opgegeven mainline-kernel installeren" msgid "Uninstall specified kernel" msgstr "Opgegeven kernel verwijderen" -#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:306 +#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:328 msgid "Uninstall all but the highest installed version" msgstr "Verwijder alle behalve de hoogst geïnstalleerde versie" @@ -303,7 +307,7 @@ msgstr "Kernel %s is beschikbaar" msgid "Show" msgstr "Tonen" -#: src/Console/AppConsole.vala:342 src/Gtk/MainWindow.vala:264 +#: src/Console/AppConsole.vala:342 src/Gtk/MainWindow.vala:296 msgid "Install" msgstr "Installeren" @@ -359,68 +363,74 @@ msgstr "Foutopsporingsinformatie tonen" msgid "Show all options" msgstr "Alle opties tonen" -#: src/Gtk/MainWindow.vala:111 +#: src/Gtk/MainWindow.vala:110 msgid "Kernel" msgstr "Kernel" -#: src/Gtk/MainWindow.vala:141 +#: src/Gtk/MainWindow.vala:143 msgid "Status" msgstr "Status" -#: src/Gtk/MainWindow.vala:274 -msgid "Uninstall" -msgstr "Deïnstalleren" - -#: src/Gtk/MainWindow.vala:284 +#: src/Gtk/MainWindow.vala:158 msgid "Notes" msgstr "Notities" -#: src/Gtk/MainWindow.vala:289 -msgid "User notes for" -msgstr "Gebruikersnotities voor" +#: src/Gtk/MainWindow.vala:306 +msgid "Uninstall" +msgstr "Deïnstalleren" -#: src/Gtk/MainWindow.vala:305 +#: src/Gtk/MainWindow.vala:327 msgid "Uninstall Old" msgstr "Verwijder Oude" -#: src/Gtk/MainWindow.vala:311 +#: src/Gtk/MainWindow.vala:333 msgid "Reload" msgstr "Herladen" -#: src/Gtk/MainWindow.vala:316 src/Gtk/SettingsDialog.vala:49 +#: src/Gtk/MainWindow.vala:334 +msgid "" +"Delete cache and reload all kernel info\n" +"\n" +"THIS WILL ALSO DELETE ALL USER NOTES" +msgstr "" +"Cache verwijderen en alle kernelinformatie opnieuw laden\n" +"\n" +"HIERMEE WORDEN OOK ALLE GEBRUIKERSNOTITIES VERWIJDERD" + +#: src/Gtk/MainWindow.vala:339 src/Gtk/SettingsDialog.vala:49 msgid "Settings" msgstr "Instellingen" -#: src/Gtk/MainWindow.vala:321 +#: src/Gtk/MainWindow.vala:344 msgid "About" msgstr "Over" -#: src/Gtk/MainWindow.vala:326 +#: src/Gtk/MainWindow.vala:349 msgid "Exit" msgstr "Afsluiten" -#: src/Gtk/MainWindow.vala:394 +#: src/Gtk/MainWindow.vala:418 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Een kernelupgradehulpmiddel voor op Ubuntu gebaseerde distributies" -#: src/Gtk/MainWindow.vala:395 +#: src/Gtk/MainWindow.vala:419 msgid "Forked" msgstr "Geforkt" -#: src/Gtk/MainWindow.vala:395 +#: src/Gtk/MainWindow.vala:419 msgid "Original" msgstr "Origineel" -#: src/Gtk/MainWindow.vala:433 +#: src/Gtk/MainWindow.vala:457 msgid "Updating kernels" msgstr "Kernels bijwerken" -#: src/Gtk/MainWindow.vala:504 +#: src/Gtk/MainWindow.vala:528 msgid "available" msgstr "beschikbaar" -#: src/Gtk/MainWindow.vala:547 src/Gtk/MainWindow.vala:587 -#: src/Gtk/MainWindow.vala:621 +#: src/Gtk/MainWindow.vala:571 src/Gtk/MainWindow.vala:611 +#: src/Gtk/MainWindow.vala:645 msgid "DONE" msgstr "AFGEROND" @@ -500,7 +510,7 @@ msgstr "Controleer controlesommen met de CHECKSUMS-bestanden" msgid "Proxy" msgstr "Proxy" -#: src/Gtk/l.gtk.vala:42 +#: src/Gtk/l.gtk.vala:29 msgid "Missing Icon" msgstr "Ontbrekend pictogram" diff --git a/po/pl.po b/po/pl.po index 15736467..5ff21797 100644 --- a/po/pl.po +++ b/po/pl.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-04-03 19:46-0400\n" +"POT-Creation-Date: 2023-04-04 07:52-0400\n" "PO-Revision-Date: 2023-04-02 21:31+0200\n" "Last-Translator: Matthaiks\n" "Language-Team: Polish\n" @@ -12,137 +12,141 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Poedit 3.2\n" -#: src/Common/LinuxKernel.vala:99 +#: src/Common/LinuxKernel.vala:102 msgid "Distribution" msgstr "Dystrybucja" -#: src/Common/LinuxKernel.vala:114 +#: src/Common/LinuxKernel.vala:117 msgid "Architecture" msgstr "Architektura" -#: src/Common/LinuxKernel.vala:129 +#: src/Common/LinuxKernel.vala:132 msgid "Running kernel" msgstr "Uruchomione jądro" -#: src/Common/LinuxKernel.vala:250 +#: src/Common/LinuxKernel.vala:253 msgid "loading cached" msgstr "ładowanie z pamięci podręcznej" -#: src/Common/LinuxKernel.vala:264 +#: src/Common/LinuxKernel.vala:267 msgid "queuing download" msgstr "pobieranie w kolejce" -#: src/Common/LinuxKernel.vala:287 +#: src/Common/LinuxKernel.vala:290 msgid "Fetching individual kernel indexes" msgstr "Pobieranie indywidualnych indeksów jądra" -#: src/Common/LinuxKernel.vala:303 +#: src/Common/LinuxKernel.vala:306 msgid "loading downloaded" msgstr "ładowanie pobranych" -#: src/Common/LinuxKernel.vala:339 +#: src/Common/LinuxKernel.vala:341 msgid "Updating from" msgstr "Aktualizowanie z" -#: src/Common/LinuxKernel.vala:347 +#: src/Common/LinuxKernel.vala:349 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:350 +#: src/Common/LinuxKernel.vala:352 msgid "FAILED" msgstr "NIEPOWODZENIE" -#: src/Common/LinuxKernel.vala:396 +#: src/Common/LinuxKernel.vala:397 msgid "Found installed" msgstr "Znaleziono zainstalowane" -#: src/Common/LinuxKernel.vala:790 +#: src/Common/LinuxKernel.vala:721 src/Gtk/MainWindow.vala:519 +#: src/Gtk/MainWindow.vala:532 +msgid "Running" +msgstr "Uruchomione" + +#: src/Common/LinuxKernel.vala:722 +msgid "Installed" +msgstr "Zainstalowane" + +#: src/Common/LinuxKernel.vala:723 +msgid "Invalid" +msgstr "Nieprawidłowy" + +#: src/Common/LinuxKernel.vala:797 msgid "Packages Available" msgstr "Dostępne pakiety" -#: src/Common/LinuxKernel.vala:796 +#: src/Common/LinuxKernel.vala:803 msgid "Packages Installed" msgstr "Pakiety zainstalowane" -#: src/Common/LinuxKernel.vala:817 src/lib/TeeJee.FileSystem.vala:118 +#: src/Common/LinuxKernel.vala:825 src/lib/TeeJee.FileSystem.vala:118 msgid "File not found" msgstr "Nie odnaleziono pliku" -#: src/Common/LinuxKernel.vala:884 +#: src/Common/LinuxKernel.vala:894 msgid "Available Kernels" msgstr "Dostępne jądra" -#: src/Common/LinuxKernel.vala:891 src/Gtk/MainWindow.vala:154 -msgid "Installed" -msgstr "Zainstalowane" - -#: src/Common/LinuxKernel.vala:891 src/Gtk/MainWindow.vala:154 -#: src/Gtk/MainWindow.vala:495 src/Gtk/MainWindow.vala:508 -msgid "Running" -msgstr "Uruchomione" - -#: src/Common/LinuxKernel.vala:925 +#: src/Common/LinuxKernel.vala:931 msgid "enabled" msgstr "włączone" -#: src/Common/LinuxKernel.vala:949 +#: src/Common/LinuxKernel.vala:955 msgid "Downloading" msgstr "Pobieranie" -#: src/Common/LinuxKernel.vala:970 +#: src/Common/LinuxKernel.vala:976 msgid "is already installed." msgstr "jest już zainstalowane." -#: src/Common/LinuxKernel.vala:1004 +#: src/Common/LinuxKernel.vala:1006 msgid "Uninstalling selected kernels" msgstr "Odinstalowanie wybranych jąder" -#: src/Common/LinuxKernel.vala:1010 +#: src/Common/LinuxKernel.vala:1012 msgid "requested" msgstr "zażądane" -#: src/Common/LinuxKernel.vala:1013 +#: src/Common/LinuxKernel.vala:1015 msgid "not uninstalling the currently running kernel" msgstr "bez odinstalowywania aktualnie uruchomionego jądra" -#: src/Common/LinuxKernel.vala:1029 +#: src/Common/LinuxKernel.vala:1031 msgid "found" msgstr "znalezione" -#: src/Common/LinuxKernel.vala:1032 +#: src/Common/LinuxKernel.vala:1034 msgid "No packages to un-install!" msgstr "Brak pakietów do odinstalowania!" -#: src/Common/LinuxKernel.vala:1080 +#: src/Common/LinuxKernel.vala:1082 msgid "Could not find running kernel in list" msgstr "Nie można znaleźć uruchomionego jądra na liście" -#: src/Common/LinuxKernel.vala:1085 +#: src/Common/LinuxKernel.vala:1087 msgid "Could not find any kernels to uninstall" msgstr "Nie można znaleźć żadnych jąder do odinstalowania" -#: src/Common/LinuxKernel.vala:1093 +#: src/Common/LinuxKernel.vala:1095 msgid "The following kernels will be uninstalled" msgstr "Następujące jądra zostaną odinstalowane" -#: src/Common/LinuxKernel.vala:1097 +#: src/Common/LinuxKernel.vala:1099 msgid "Continue ?" msgstr "Kontynuować?" -#: src/Common/LinuxKernel.vala:1119 src/Console/AppConsole.vala:290 +#: src/Common/LinuxKernel.vala:1121 src/Console/AppConsole.vala:290 msgid "Latest update" msgstr "Najnowsza aktualizacja" -#: src/Common/LinuxKernel.vala:1130 src/Console/AppConsole.vala:297 +#: src/Common/LinuxKernel.vala:1132 src/Console/AppConsole.vala:297 msgid "Latest point update" msgstr "Najnowsza aktualizacja punktowa" -#: src/Common/LinuxKernel.vala:1138 src/Console/AppConsole.vala:302 +#: src/Common/LinuxKernel.vala:1140 src/Console/AppConsole.vala:302 #: src/Console/AppConsole.vala:318 msgid "No updates found" msgstr "Nie znaleziono aktualizacji" -#: src/Common/LinuxKernel.vala:1147 +#: src/Common/LinuxKernel.vala:1149 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Zainstalować wersję jądra %s? (t/n): " @@ -207,7 +211,7 @@ msgstr "Zainstaluj wybrane jądro" msgid "Uninstall specified kernel" msgstr "Odinstaluj wybrane jądro" -#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:306 +#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:328 msgid "Uninstall all but the highest installed version" msgstr "Odinstaluj wszystkie wersje oprócz najwyżej zainstalowanej" @@ -301,7 +305,7 @@ msgstr "Dostępne %s jądra" msgid "Show" msgstr "Pokaż" -#: src/Console/AppConsole.vala:342 src/Gtk/MainWindow.vala:264 +#: src/Console/AppConsole.vala:342 src/Gtk/MainWindow.vala:296 msgid "Install" msgstr "Zainstaluj" @@ -357,68 +361,74 @@ msgstr "Wypisz informacje debugujące" msgid "Show all options" msgstr "Pokaż wszystkie opcje" -#: src/Gtk/MainWindow.vala:111 +#: src/Gtk/MainWindow.vala:110 msgid "Kernel" msgstr "Jądro" -#: src/Gtk/MainWindow.vala:141 +#: src/Gtk/MainWindow.vala:143 msgid "Status" msgstr "Status" -#: src/Gtk/MainWindow.vala:274 -msgid "Uninstall" -msgstr "Odinstaluj" - -#: src/Gtk/MainWindow.vala:284 +#: src/Gtk/MainWindow.vala:158 msgid "Notes" msgstr "Notatki" -#: src/Gtk/MainWindow.vala:289 -msgid "User notes for" -msgstr "Notatki użytkownika dotyczące" +#: src/Gtk/MainWindow.vala:306 +msgid "Uninstall" +msgstr "Odinstaluj" -#: src/Gtk/MainWindow.vala:305 +#: src/Gtk/MainWindow.vala:327 msgid "Uninstall Old" msgstr "Odinstaluj stare" -#: src/Gtk/MainWindow.vala:311 +#: src/Gtk/MainWindow.vala:333 msgid "Reload" msgstr "Wczytaj ponownie" -#: src/Gtk/MainWindow.vala:316 src/Gtk/SettingsDialog.vala:49 +#: src/Gtk/MainWindow.vala:334 +msgid "" +"Delete cache and reload all kernel info\n" +"\n" +"THIS WILL ALSO DELETE ALL USER NOTES" +msgstr "" +"Usuń pamięć podręczną i ponownie załaduj wszystkie informacje o jądrze\n" +"\n" +"SPOWODUJE TO RÓWNIEŻ USUNIĘCIE WSZYSTKICH NOTATEK UŻYTKOWNIKA" + +#: src/Gtk/MainWindow.vala:339 src/Gtk/SettingsDialog.vala:49 msgid "Settings" msgstr "Ustawienia" -#: src/Gtk/MainWindow.vala:321 +#: src/Gtk/MainWindow.vala:344 msgid "About" msgstr "O programie" -#: src/Gtk/MainWindow.vala:326 +#: src/Gtk/MainWindow.vala:349 msgid "Exit" msgstr "Wyjdź" -#: src/Gtk/MainWindow.vala:394 +#: src/Gtk/MainWindow.vala:418 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Narzędzie uaktualniania jądra dla dystrybucji z rodziny Ubuntu" -#: src/Gtk/MainWindow.vala:395 +#: src/Gtk/MainWindow.vala:419 msgid "Forked" msgstr "Sforkowane" -#: src/Gtk/MainWindow.vala:395 +#: src/Gtk/MainWindow.vala:419 msgid "Original" msgstr "Oryginalne" -#: src/Gtk/MainWindow.vala:433 +#: src/Gtk/MainWindow.vala:457 msgid "Updating kernels" msgstr "Aktualizowanie jąder" -#: src/Gtk/MainWindow.vala:504 +#: src/Gtk/MainWindow.vala:528 msgid "available" msgstr "dostępne" -#: src/Gtk/MainWindow.vala:547 src/Gtk/MainWindow.vala:587 -#: src/Gtk/MainWindow.vala:621 +#: src/Gtk/MainWindow.vala:571 src/Gtk/MainWindow.vala:611 +#: src/Gtk/MainWindow.vala:645 msgid "DONE" msgstr "GOTOWE" @@ -498,7 +508,7 @@ msgstr "Weryfikowanie sum kontrolnych za pomocą plików CHECKSUMS" msgid "Proxy" msgstr "Serwer pośredniczący" -#: src/Gtk/l.gtk.vala:42 +#: src/Gtk/l.gtk.vala:29 msgid "Missing Icon" msgstr "Brakująca ikona" diff --git a/po/ru.po b/po/ru.po index 270a3e28..e9950d2b 100644 --- a/po/ru.po +++ b/po/ru.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-04-03 19:46-0400\n" +"POT-Creation-Date: 2023-04-04 07:52-0400\n" "PO-Revision-Date: 2023-04-02 17:50+0300\n" "Last-Translator: Faust3000 (Original) | Danik2343 (Update Transaltion) " "\n" @@ -14,137 +14,141 @@ msgstr "" "X-Launchpad-Export-Date: 2016-12-13 11:48+0000\n" "X-Generator: Poedit 3.1.1\n" -#: src/Common/LinuxKernel.vala:99 +#: src/Common/LinuxKernel.vala:102 msgid "Distribution" msgstr "Дистрибутив" -#: src/Common/LinuxKernel.vala:114 +#: src/Common/LinuxKernel.vala:117 msgid "Architecture" msgstr "Архитектура" -#: src/Common/LinuxKernel.vala:129 +#: src/Common/LinuxKernel.vala:132 msgid "Running kernel" msgstr "Запущенное ядро" -#: src/Common/LinuxKernel.vala:250 +#: src/Common/LinuxKernel.vala:253 msgid "loading cached" msgstr "загрузка в кэше" -#: src/Common/LinuxKernel.vala:264 +#: src/Common/LinuxKernel.vala:267 msgid "queuing download" msgstr "загрузка очередей" -#: src/Common/LinuxKernel.vala:287 +#: src/Common/LinuxKernel.vala:290 msgid "Fetching individual kernel indexes" msgstr "Получение отдельных индексов ядра" -#: src/Common/LinuxKernel.vala:303 +#: src/Common/LinuxKernel.vala:306 msgid "loading downloaded" msgstr "загрузка загруженных" -#: src/Common/LinuxKernel.vala:339 +#: src/Common/LinuxKernel.vala:341 msgid "Updating from" msgstr "Обновление из" -#: src/Common/LinuxKernel.vala:347 +#: src/Common/LinuxKernel.vala:349 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:350 +#: src/Common/LinuxKernel.vala:352 msgid "FAILED" msgstr "НЕУДАВШИЙСЯ" -#: src/Common/LinuxKernel.vala:396 +#: src/Common/LinuxKernel.vala:397 msgid "Found installed" msgstr "Найдено установлененное" -#: src/Common/LinuxKernel.vala:790 +#: src/Common/LinuxKernel.vala:721 src/Gtk/MainWindow.vala:519 +#: src/Gtk/MainWindow.vala:532 +msgid "Running" +msgstr "Используется" + +#: src/Common/LinuxKernel.vala:722 +msgid "Installed" +msgstr "Установлено" + +#: src/Common/LinuxKernel.vala:723 +msgid "Invalid" +msgstr "Негодный" + +#: src/Common/LinuxKernel.vala:797 msgid "Packages Available" msgstr "Доступные пакеты" -#: src/Common/LinuxKernel.vala:796 +#: src/Common/LinuxKernel.vala:803 msgid "Packages Installed" msgstr "Установленные пакеты" -#: src/Common/LinuxKernel.vala:817 src/lib/TeeJee.FileSystem.vala:118 +#: src/Common/LinuxKernel.vala:825 src/lib/TeeJee.FileSystem.vala:118 msgid "File not found" msgstr "Файл не найден" -#: src/Common/LinuxKernel.vala:884 +#: src/Common/LinuxKernel.vala:894 msgid "Available Kernels" msgstr "Доступные ядра" -#: src/Common/LinuxKernel.vala:891 src/Gtk/MainWindow.vala:154 -msgid "Installed" -msgstr "Установлено" - -#: src/Common/LinuxKernel.vala:891 src/Gtk/MainWindow.vala:154 -#: src/Gtk/MainWindow.vala:495 src/Gtk/MainWindow.vala:508 -msgid "Running" -msgstr "Используется" - -#: src/Common/LinuxKernel.vala:925 +#: src/Common/LinuxKernel.vala:931 msgid "enabled" msgstr "включено" -#: src/Common/LinuxKernel.vala:949 +#: src/Common/LinuxKernel.vala:955 msgid "Downloading" msgstr "Загрузки" -#: src/Common/LinuxKernel.vala:970 +#: src/Common/LinuxKernel.vala:976 msgid "is already installed." msgstr "уже установлен." -#: src/Common/LinuxKernel.vala:1004 +#: src/Common/LinuxKernel.vala:1006 msgid "Uninstalling selected kernels" msgstr "Удаление выбранных ядер" -#: src/Common/LinuxKernel.vala:1010 +#: src/Common/LinuxKernel.vala:1012 msgid "requested" msgstr "запрошено" -#: src/Common/LinuxKernel.vala:1013 +#: src/Common/LinuxKernel.vala:1015 msgid "not uninstalling the currently running kernel" msgstr "не удаляет текущее работающее ядро" -#: src/Common/LinuxKernel.vala:1029 +#: src/Common/LinuxKernel.vala:1031 msgid "found" msgstr "найдено" -#: src/Common/LinuxKernel.vala:1032 +#: src/Common/LinuxKernel.vala:1034 msgid "No packages to un-install!" msgstr "Нет пакетов для удаления!" -#: src/Common/LinuxKernel.vala:1080 +#: src/Common/LinuxKernel.vala:1082 msgid "Could not find running kernel in list" msgstr "Could not find running kernel in list" -#: src/Common/LinuxKernel.vala:1085 +#: src/Common/LinuxKernel.vala:1087 msgid "Could not find any kernels to uninstall" msgstr "Не удалось найти ядра для деинсталляции" -#: src/Common/LinuxKernel.vala:1093 +#: src/Common/LinuxKernel.vala:1095 msgid "The following kernels will be uninstalled" msgstr "Следующие ядра будут удалены" -#: src/Common/LinuxKernel.vala:1097 +#: src/Common/LinuxKernel.vala:1099 msgid "Continue ?" msgstr "Продолжить ?" -#: src/Common/LinuxKernel.vala:1119 src/Console/AppConsole.vala:290 +#: src/Common/LinuxKernel.vala:1121 src/Console/AppConsole.vala:290 msgid "Latest update" msgstr "Последнее обновление" -#: src/Common/LinuxKernel.vala:1130 src/Console/AppConsole.vala:297 +#: src/Common/LinuxKernel.vala:1132 src/Console/AppConsole.vala:297 msgid "Latest point update" msgstr "Последнее обновление пунктов" -#: src/Common/LinuxKernel.vala:1138 src/Console/AppConsole.vala:302 +#: src/Common/LinuxKernel.vala:1140 src/Console/AppConsole.vala:302 #: src/Console/AppConsole.vala:318 msgid "No updates found" msgstr "Обновлений не найдено" -#: src/Common/LinuxKernel.vala:1147 +#: src/Common/LinuxKernel.vala:1149 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Установить версию ядра %s ? (y/n): " @@ -208,7 +212,7 @@ msgstr "Установить указанную ветку основного я msgid "Uninstall specified kernel" msgstr "Установить указанное ядро" -#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:306 +#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:328 msgid "Uninstall all but the highest installed version" msgstr "Удаление всех установленных версий, кроме самой высокой" @@ -302,7 +306,7 @@ msgstr "Доступно ядро %s" msgid "Show" msgstr "Показать" -#: src/Console/AppConsole.vala:342 src/Gtk/MainWindow.vala:264 +#: src/Console/AppConsole.vala:342 src/Gtk/MainWindow.vala:296 msgid "Install" msgstr "Установить" @@ -358,68 +362,74 @@ msgstr "Распечатать отладочную информацию" msgid "Show all options" msgstr "Показать все параметры" -#: src/Gtk/MainWindow.vala:111 +#: src/Gtk/MainWindow.vala:110 msgid "Kernel" msgstr "Ядро" -#: src/Gtk/MainWindow.vala:141 +#: src/Gtk/MainWindow.vala:143 msgid "Status" msgstr "Состояние" -#: src/Gtk/MainWindow.vala:274 -msgid "Uninstall" -msgstr "Удалить" - -#: src/Gtk/MainWindow.vala:284 +#: src/Gtk/MainWindow.vala:158 msgid "Notes" msgstr "Примечания" -#: src/Gtk/MainWindow.vala:289 -msgid "User notes for" -msgstr "Примечания пользователя для" +#: src/Gtk/MainWindow.vala:306 +msgid "Uninstall" +msgstr "Удалить" -#: src/Gtk/MainWindow.vala:305 +#: src/Gtk/MainWindow.vala:327 msgid "Uninstall Old" msgstr "Удалить старые" -#: src/Gtk/MainWindow.vala:311 +#: src/Gtk/MainWindow.vala:333 msgid "Reload" msgstr "Перезагрузить" -#: src/Gtk/MainWindow.vala:316 src/Gtk/SettingsDialog.vala:49 +#: src/Gtk/MainWindow.vala:334 +msgid "" +"Delete cache and reload all kernel info\n" +"\n" +"THIS WILL ALSO DELETE ALL USER NOTES" +msgstr "" +"Удаление кэша и перезагрузка всей информации о ядре\n" +"\n" +"ЭТО ТАКЖЕ ПРИВЕДЕТ К УДАЛЕНИЮ ВСЕХ ЗАМЕТОК ПОЛЬЗОВАТЕЛЯ" + +#: src/Gtk/MainWindow.vala:339 src/Gtk/SettingsDialog.vala:49 msgid "Settings" msgstr "Настройки" -#: src/Gtk/MainWindow.vala:321 +#: src/Gtk/MainWindow.vala:344 msgid "About" msgstr "О программе" -#: src/Gtk/MainWindow.vala:326 +#: src/Gtk/MainWindow.vala:349 msgid "Exit" msgstr "Выход" -#: src/Gtk/MainWindow.vala:394 +#: src/Gtk/MainWindow.vala:418 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Программа обновления ядра для дистрибутивов на базе Ubuntu" -#: src/Gtk/MainWindow.vala:395 +#: src/Gtk/MainWindow.vala:419 msgid "Forked" msgstr "Форк" -#: src/Gtk/MainWindow.vala:395 +#: src/Gtk/MainWindow.vala:419 msgid "Original" msgstr "Оригинал" -#: src/Gtk/MainWindow.vala:433 +#: src/Gtk/MainWindow.vala:457 msgid "Updating kernels" msgstr "Обновление ядер" -#: src/Gtk/MainWindow.vala:504 +#: src/Gtk/MainWindow.vala:528 msgid "available" msgstr "доступно" -#: src/Gtk/MainWindow.vala:547 src/Gtk/MainWindow.vala:587 -#: src/Gtk/MainWindow.vala:621 +#: src/Gtk/MainWindow.vala:571 src/Gtk/MainWindow.vala:611 +#: src/Gtk/MainWindow.vala:645 msgid "DONE" msgstr "ГОТОВО" @@ -499,7 +509,7 @@ msgstr "Проверка контрольных сумм с помощью фа msgid "Proxy" msgstr "Доверенность" -#: src/Gtk/l.gtk.vala:42 +#: src/Gtk/l.gtk.vala:29 msgid "Missing Icon" msgstr "Значок отсутствует" diff --git a/po/sv.po b/po/sv.po index 0f217b67..5cca4653 100644 --- a/po/sv.po +++ b/po/sv.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-04-03 19:46-0400\n" +"POT-Creation-Date: 2023-04-04 07:52-0400\n" "PO-Revision-Date: 2018-01-13 16:56+0100\n" "Last-Translator: Åke Engelbrektson \n" "Language-Team:Swedish\n" @@ -13,137 +13,141 @@ msgstr "" "X-Generator: Poedit 1.8.7.1\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: src/Common/LinuxKernel.vala:99 +#: src/Common/LinuxKernel.vala:102 msgid "Distribution" msgstr "Distribution" -#: src/Common/LinuxKernel.vala:114 +#: src/Common/LinuxKernel.vala:117 msgid "Architecture" msgstr "Arkitektur" -#: src/Common/LinuxKernel.vala:129 +#: src/Common/LinuxKernel.vala:132 msgid "Running kernel" msgstr "Löpande kernel" -#: src/Common/LinuxKernel.vala:250 +#: src/Common/LinuxKernel.vala:253 msgid "loading cached" msgstr "laddar cachelagrat" -#: src/Common/LinuxKernel.vala:264 +#: src/Common/LinuxKernel.vala:267 msgid "queuing download" msgstr "köbildning nedladdning" -#: src/Common/LinuxKernel.vala:287 +#: src/Common/LinuxKernel.vala:290 msgid "Fetching individual kernel indexes" msgstr "Hämta enskilda kernelindex" -#: src/Common/LinuxKernel.vala:303 +#: src/Common/LinuxKernel.vala:306 msgid "loading downloaded" msgstr "laddar nedladdad" -#: src/Common/LinuxKernel.vala:339 +#: src/Common/LinuxKernel.vala:341 msgid "Updating from" msgstr "Uppdatering från" -#: src/Common/LinuxKernel.vala:347 +#: src/Common/LinuxKernel.vala:349 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:350 +#: src/Common/LinuxKernel.vala:352 msgid "FAILED" msgstr "MISSLYCKADES" -#: src/Common/LinuxKernel.vala:396 +#: src/Common/LinuxKernel.vala:397 msgid "Found installed" msgstr "Hittade installerat" -#: src/Common/LinuxKernel.vala:790 +#: src/Common/LinuxKernel.vala:721 src/Gtk/MainWindow.vala:519 +#: src/Gtk/MainWindow.vala:532 +msgid "Running" +msgstr "Körs" + +#: src/Common/LinuxKernel.vala:722 +msgid "Installed" +msgstr "Installerad" + +#: src/Common/LinuxKernel.vala:723 +msgid "Invalid" +msgstr "Ogiltig" + +#: src/Common/LinuxKernel.vala:797 msgid "Packages Available" msgstr "Tillgängliga paket" -#: src/Common/LinuxKernel.vala:796 +#: src/Common/LinuxKernel.vala:803 msgid "Packages Installed" msgstr "Installerade paket" -#: src/Common/LinuxKernel.vala:817 src/lib/TeeJee.FileSystem.vala:118 +#: src/Common/LinuxKernel.vala:825 src/lib/TeeJee.FileSystem.vala:118 msgid "File not found" msgstr "Filen kan inte hittas" -#: src/Common/LinuxKernel.vala:884 +#: src/Common/LinuxKernel.vala:894 msgid "Available Kernels" msgstr "Tillgängliga kärnor" -#: src/Common/LinuxKernel.vala:891 src/Gtk/MainWindow.vala:154 -msgid "Installed" -msgstr "Installerad" - -#: src/Common/LinuxKernel.vala:891 src/Gtk/MainWindow.vala:154 -#: src/Gtk/MainWindow.vala:495 src/Gtk/MainWindow.vala:508 -msgid "Running" -msgstr "Körs" - -#: src/Common/LinuxKernel.vala:925 +#: src/Common/LinuxKernel.vala:931 msgid "enabled" msgstr "aktiverat" -#: src/Common/LinuxKernel.vala:949 +#: src/Common/LinuxKernel.vala:955 msgid "Downloading" msgstr "Ladda ner" -#: src/Common/LinuxKernel.vala:970 +#: src/Common/LinuxKernel.vala:976 msgid "is already installed." msgstr "är redan installerat." -#: src/Common/LinuxKernel.vala:1004 +#: src/Common/LinuxKernel.vala:1006 msgid "Uninstalling selected kernels" msgstr "Avinstallera valda kärnor" -#: src/Common/LinuxKernel.vala:1010 +#: src/Common/LinuxKernel.vala:1012 msgid "requested" msgstr "begärd" -#: src/Common/LinuxKernel.vala:1013 +#: src/Common/LinuxKernel.vala:1015 msgid "not uninstalling the currently running kernel" msgstr "Avinstallera inte den kärna som körs, för närvarande" -#: src/Common/LinuxKernel.vala:1029 +#: src/Common/LinuxKernel.vala:1031 msgid "found" msgstr "grunda" -#: src/Common/LinuxKernel.vala:1032 +#: src/Common/LinuxKernel.vala:1034 msgid "No packages to un-install!" msgstr "Inga paket att avinstallera!" -#: src/Common/LinuxKernel.vala:1080 +#: src/Common/LinuxKernel.vala:1082 msgid "Could not find running kernel in list" msgstr "Det gick inte att hitta kernel som körs i listan" -#: src/Common/LinuxKernel.vala:1085 +#: src/Common/LinuxKernel.vala:1087 msgid "Could not find any kernels to uninstall" msgstr "Det gick inte att hitta några kärnor att avinstallera" -#: src/Common/LinuxKernel.vala:1093 +#: src/Common/LinuxKernel.vala:1095 msgid "The following kernels will be uninstalled" msgstr "Följande kärnor kommer att avinstalleras" -#: src/Common/LinuxKernel.vala:1097 +#: src/Common/LinuxKernel.vala:1099 msgid "Continue ?" msgstr "Fortsätta?" -#: src/Common/LinuxKernel.vala:1119 src/Console/AppConsole.vala:290 +#: src/Common/LinuxKernel.vala:1121 src/Console/AppConsole.vala:290 msgid "Latest update" msgstr "Senaste uppdatering" -#: src/Common/LinuxKernel.vala:1130 src/Console/AppConsole.vala:297 +#: src/Common/LinuxKernel.vala:1132 src/Console/AppConsole.vala:297 msgid "Latest point update" msgstr "Senaste punktuppdatering" -#: src/Common/LinuxKernel.vala:1138 src/Console/AppConsole.vala:302 +#: src/Common/LinuxKernel.vala:1140 src/Console/AppConsole.vala:302 #: src/Console/AppConsole.vala:318 msgid "No updates found" msgstr "Inga uppdateringar hittades" -#: src/Common/LinuxKernel.vala:1147 +#: src/Common/LinuxKernel.vala:1149 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Installera kärnversion %s ? (j/n):" @@ -206,7 +210,7 @@ msgstr "Installera angiven huvudkärna" msgid "Uninstall specified kernel" msgstr "Avinstallera angiven kärna" -#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:306 +#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:328 msgid "Uninstall all but the highest installed version" msgstr "Avinstallera alla utom den högsta installerade versionen" @@ -300,7 +304,7 @@ msgstr "Kernel %s tillgängliga" msgid "Show" msgstr "Visa" -#: src/Console/AppConsole.vala:342 src/Gtk/MainWindow.vala:264 +#: src/Console/AppConsole.vala:342 src/Gtk/MainWindow.vala:296 msgid "Install" msgstr "Installera" @@ -356,68 +360,74 @@ msgstr "Skriv ut felsökningsinformation" msgid "Show all options" msgstr "Visa alla alternativ" -#: src/Gtk/MainWindow.vala:111 +#: src/Gtk/MainWindow.vala:110 msgid "Kernel" msgstr "Kärna" -#: src/Gtk/MainWindow.vala:141 +#: src/Gtk/MainWindow.vala:143 msgid "Status" msgstr "Status" -#: src/Gtk/MainWindow.vala:274 -msgid "Uninstall" -msgstr "Avinstallera" - -#: src/Gtk/MainWindow.vala:284 +#: src/Gtk/MainWindow.vala:158 msgid "Notes" msgstr "Anteckningar" -#: src/Gtk/MainWindow.vala:289 -msgid "User notes for" -msgstr "Användaranteckningar för" +#: src/Gtk/MainWindow.vala:306 +msgid "Uninstall" +msgstr "Avinstallera" -#: src/Gtk/MainWindow.vala:305 +#: src/Gtk/MainWindow.vala:327 msgid "Uninstall Old" msgstr "Avinstallera Gamla" -#: src/Gtk/MainWindow.vala:311 +#: src/Gtk/MainWindow.vala:333 msgid "Reload" msgstr "Reload" -#: src/Gtk/MainWindow.vala:316 src/Gtk/SettingsDialog.vala:49 +#: src/Gtk/MainWindow.vala:334 +msgid "" +"Delete cache and reload all kernel info\n" +"\n" +"THIS WILL ALSO DELETE ALL USER NOTES" +msgstr "" +"Ta bort cacheminnet och ladda om all kärninformation\n" +"\n" +"DETTA TAR OCKSÅ BORT ALLA ANVÄNDARANTECKNINGAR" + +#: src/Gtk/MainWindow.vala:339 src/Gtk/SettingsDialog.vala:49 msgid "Settings" msgstr "Inställningar" -#: src/Gtk/MainWindow.vala:321 +#: src/Gtk/MainWindow.vala:344 msgid "About" msgstr "Om" -#: src/Gtk/MainWindow.vala:326 +#: src/Gtk/MainWindow.vala:349 msgid "Exit" msgstr "Utgång" -#: src/Gtk/MainWindow.vala:394 +#: src/Gtk/MainWindow.vala:418 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Kärnuppgraderingsverktyg för Ubuntu-baserade distributioner" -#: src/Gtk/MainWindow.vala:395 +#: src/Gtk/MainWindow.vala:419 msgid "Forked" msgstr "Kluven" -#: src/Gtk/MainWindow.vala:395 +#: src/Gtk/MainWindow.vala:419 msgid "Original" msgstr "Original" -#: src/Gtk/MainWindow.vala:433 +#: src/Gtk/MainWindow.vala:457 msgid "Updating kernels" msgstr "Uppdatera kärnor" -#: src/Gtk/MainWindow.vala:504 +#: src/Gtk/MainWindow.vala:528 msgid "available" msgstr "tillgänglig" -#: src/Gtk/MainWindow.vala:547 src/Gtk/MainWindow.vala:587 -#: src/Gtk/MainWindow.vala:621 +#: src/Gtk/MainWindow.vala:571 src/Gtk/MainWindow.vala:611 +#: src/Gtk/MainWindow.vala:645 msgid "DONE" msgstr "FÄRDIG" @@ -497,7 +507,7 @@ msgstr "Verifiera kontrollsummor med CHECKSUMS-filerna" msgid "Proxy" msgstr "Proxyserver" -#: src/Gtk/l.gtk.vala:42 +#: src/Gtk/l.gtk.vala:29 msgid "Missing Icon" msgstr "Saknad ikon" diff --git a/po/tr.po b/po/tr.po index f6bfcd6c..aea1a1b3 100644 --- a/po/tr.po +++ b/po/tr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-04-03 19:46-0400\n" +"POT-Creation-Date: 2023-04-04 07:52-0400\n" "PO-Revision-Date: 2022-08-06 16:48+0300\n" "Last-Translator: Sabri Ünal \n" "Language-Team: Turkish\n" @@ -13,138 +13,142 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Poedit 3.1.1\n" -#: src/Common/LinuxKernel.vala:99 +#: src/Common/LinuxKernel.vala:102 msgid "Distribution" msgstr "Dağıtım" -#: src/Common/LinuxKernel.vala:114 +#: src/Common/LinuxKernel.vala:117 msgid "Architecture" msgstr "Sistem mimarisi" -#: src/Common/LinuxKernel.vala:129 +#: src/Common/LinuxKernel.vala:132 msgid "Running kernel" msgstr "Çalışan çekirdek" -#: src/Common/LinuxKernel.vala:250 +#: src/Common/LinuxKernel.vala:253 msgid "loading cached" msgstr "önbelleğe alınmış yükleme" -#: src/Common/LinuxKernel.vala:264 +#: src/Common/LinuxKernel.vala:267 msgid "queuing download" msgstr "kuyruğa alma indirme" -#: src/Common/LinuxKernel.vala:287 +#: src/Common/LinuxKernel.vala:290 msgid "Fetching individual kernel indexes" msgstr "Tek tek çekirdek dizinlerini alma" -#: src/Common/LinuxKernel.vala:303 +#: src/Common/LinuxKernel.vala:306 msgid "loading downloaded" msgstr "indirilen yükleniyor" -#: src/Common/LinuxKernel.vala:339 +#: src/Common/LinuxKernel.vala:341 msgid "Updating from" msgstr "Şuradan güncelleniyor" -#: src/Common/LinuxKernel.vala:347 +#: src/Common/LinuxKernel.vala:349 msgid "OK" msgstr "Tamam" -#: src/Common/LinuxKernel.vala:350 +#: src/Common/LinuxKernel.vala:352 msgid "FAILED" msgstr "BAŞARISIZ" -#: src/Common/LinuxKernel.vala:396 +#: src/Common/LinuxKernel.vala:397 msgid "Found installed" msgstr "Yüklü bulundu" -#: src/Common/LinuxKernel.vala:790 +#: src/Common/LinuxKernel.vala:721 src/Gtk/MainWindow.vala:519 +#: src/Gtk/MainWindow.vala:532 +msgid "Running" +msgstr "Çalışıyor" + +#: src/Common/LinuxKernel.vala:722 +msgid "Installed" +msgstr "Kurulu" + +#: src/Common/LinuxKernel.vala:723 +msgid "Invalid" +msgstr "Geçersiz" + +#: src/Common/LinuxKernel.vala:797 msgid "Packages Available" msgstr "Mevcut Paketler" -#: src/Common/LinuxKernel.vala:796 +#: src/Common/LinuxKernel.vala:803 msgid "Packages Installed" msgstr "Kurulu Paketler" -#: src/Common/LinuxKernel.vala:817 src/lib/TeeJee.FileSystem.vala:118 +#: src/Common/LinuxKernel.vala:825 src/lib/TeeJee.FileSystem.vala:118 msgid "File not found" msgstr "Dosya bulunamadı" -#: src/Common/LinuxKernel.vala:884 +#: src/Common/LinuxKernel.vala:894 msgid "Available Kernels" msgstr "Mevcut Çekirdekler" -#: src/Common/LinuxKernel.vala:891 src/Gtk/MainWindow.vala:154 -msgid "Installed" -msgstr "Kurulu" - -#: src/Common/LinuxKernel.vala:891 src/Gtk/MainWindow.vala:154 -#: src/Gtk/MainWindow.vala:495 src/Gtk/MainWindow.vala:508 -msgid "Running" -msgstr "Çalışıyor" - -#: src/Common/LinuxKernel.vala:925 +#: src/Common/LinuxKernel.vala:931 msgid "enabled" msgstr "etkin" -#: src/Common/LinuxKernel.vala:949 +#: src/Common/LinuxKernel.vala:955 msgid "Downloading" msgstr "Indiriyor" -#: src/Common/LinuxKernel.vala:970 +#: src/Common/LinuxKernel.vala:976 msgid "is already installed." msgstr "zaten yüklü." -#: src/Common/LinuxKernel.vala:1004 +#: src/Common/LinuxKernel.vala:1006 msgid "Uninstalling selected kernels" msgstr "Seçili çekirdekleri kaldırma" -#: src/Common/LinuxKernel.vala:1010 +#: src/Common/LinuxKernel.vala:1012 msgid "requested" msgstr "istenen" -#: src/Common/LinuxKernel.vala:1013 +#: src/Common/LinuxKernel.vala:1015 msgid "not uninstalling the currently running kernel" msgstr "çalışmakta olan çekirdeğin kaldırılmaması" -#: src/Common/LinuxKernel.vala:1029 +#: src/Common/LinuxKernel.vala:1031 msgid "found" msgstr "kurmak" -#: src/Common/LinuxKernel.vala:1032 +#: src/Common/LinuxKernel.vala:1034 msgid "No packages to un-install!" msgstr "Kaldırılacak paket yok!" -#: src/Common/LinuxKernel.vala:1080 +#: src/Common/LinuxKernel.vala:1082 msgid "Could not find running kernel in list" msgstr "Listede çalışan çekirdek bulunamadı" -#: src/Common/LinuxKernel.vala:1085 +#: src/Common/LinuxKernel.vala:1087 msgid "Could not find any kernels to uninstall" msgstr "Kaldırılacak çekirdek bulunamadı" -#: src/Common/LinuxKernel.vala:1093 +#: src/Common/LinuxKernel.vala:1095 msgid "The following kernels will be uninstalled" msgstr "Aşağıdaki çekirdekler kaldırılacaktır" -#: src/Common/LinuxKernel.vala:1097 +#: src/Common/LinuxKernel.vala:1099 msgid "Continue ?" msgstr "Devam edilsin mi?" -#: src/Common/LinuxKernel.vala:1119 src/Console/AppConsole.vala:290 +#: src/Common/LinuxKernel.vala:1121 src/Console/AppConsole.vala:290 msgid "Latest update" msgstr "Son güncelleme" # Point burada point release anlamında kullanılıyor. Örneğin 5.10.x sayısının en sonundaki x rakamı point release/nokta sürüm oluyor. -#: src/Common/LinuxKernel.vala:1130 src/Console/AppConsole.vala:297 +#: src/Common/LinuxKernel.vala:1132 src/Console/AppConsole.vala:297 msgid "Latest point update" msgstr "Son nokta güncellemesi" -#: src/Common/LinuxKernel.vala:1138 src/Console/AppConsole.vala:302 +#: src/Common/LinuxKernel.vala:1140 src/Console/AppConsole.vala:302 #: src/Console/AppConsole.vala:318 msgid "No updates found" msgstr "Güncelleme bulunamadı" -#: src/Common/LinuxKernel.vala:1147 +#: src/Common/LinuxKernel.vala:1149 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Linux Çekirdek Sürümü %s Kurulsun mu? (e/h): " @@ -208,7 +212,7 @@ msgstr "Belirtilen mainline çekirdeğini kur" msgid "Uninstall specified kernel" msgstr "Belirtilen çekirdeğini kaldır" -#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:306 +#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:328 msgid "Uninstall all but the highest installed version" msgstr "En yüksek yüklü sürüm dışındaki tüm sürümleri kaldırın" @@ -302,7 +306,7 @@ msgstr "Çekirdek %s Kullanılabilir" msgid "Show" msgstr "Göster" -#: src/Console/AppConsole.vala:342 src/Gtk/MainWindow.vala:264 +#: src/Console/AppConsole.vala:342 src/Gtk/MainWindow.vala:296 msgid "Install" msgstr "Kur" @@ -358,68 +362,74 @@ msgstr "Hata ayıklama bilgisini yazdır" msgid "Show all options" msgstr "Tüm seçenekleri göster" -#: src/Gtk/MainWindow.vala:111 +#: src/Gtk/MainWindow.vala:110 msgid "Kernel" msgstr "Çekirdek" -#: src/Gtk/MainWindow.vala:141 +#: src/Gtk/MainWindow.vala:143 msgid "Status" msgstr "Durum" -#: src/Gtk/MainWindow.vala:274 -msgid "Uninstall" -msgstr "Kaldır" - -#: src/Gtk/MainWindow.vala:284 +#: src/Gtk/MainWindow.vala:158 msgid "Notes" msgstr "Notlar" -#: src/Gtk/MainWindow.vala:289 -msgid "User notes for" -msgstr "Kullanıcı notları" +#: src/Gtk/MainWindow.vala:306 +msgid "Uninstall" +msgstr "Kaldır" -#: src/Gtk/MainWindow.vala:305 +#: src/Gtk/MainWindow.vala:327 msgid "Uninstall Old" msgstr "Eskileri Kaldır" -#: src/Gtk/MainWindow.vala:311 +#: src/Gtk/MainWindow.vala:333 msgid "Reload" msgstr "Arjantin" -#: src/Gtk/MainWindow.vala:316 src/Gtk/SettingsDialog.vala:49 +#: src/Gtk/MainWindow.vala:334 +msgid "" +"Delete cache and reload all kernel info\n" +"\n" +"THIS WILL ALSO DELETE ALL USER NOTES" +msgstr "" +"Önbelleği silme ve tüm çekirdek bilgilerini yeniden yükleme\n" +"\n" +"BU AYNI ZAMANDA TÜM KULLANICI NOTLARINI DA SILER" + +#: src/Gtk/MainWindow.vala:339 src/Gtk/SettingsDialog.vala:49 msgid "Settings" msgstr "Ayarlar" -#: src/Gtk/MainWindow.vala:321 +#: src/Gtk/MainWindow.vala:344 msgid "About" msgstr "Hakkında" -#: src/Gtk/MainWindow.vala:326 +#: src/Gtk/MainWindow.vala:349 msgid "Exit" msgstr "Çıkış" -#: src/Gtk/MainWindow.vala:394 +#: src/Gtk/MainWindow.vala:418 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Ubuntu tabanlı dağıtımlar için çekirdek güncelleme aracı" -#: src/Gtk/MainWindow.vala:395 +#: src/Gtk/MainWindow.vala:419 msgid "Forked" msgstr "Çatallandı" -#: src/Gtk/MainWindow.vala:395 +#: src/Gtk/MainWindow.vala:419 msgid "Original" msgstr "Özgün" -#: src/Gtk/MainWindow.vala:433 +#: src/Gtk/MainWindow.vala:457 msgid "Updating kernels" msgstr "Çekirdekleri güncelleme" -#: src/Gtk/MainWindow.vala:504 +#: src/Gtk/MainWindow.vala:528 msgid "available" msgstr "mevcut" -#: src/Gtk/MainWindow.vala:547 src/Gtk/MainWindow.vala:587 -#: src/Gtk/MainWindow.vala:621 +#: src/Gtk/MainWindow.vala:571 src/Gtk/MainWindow.vala:611 +#: src/Gtk/MainWindow.vala:645 msgid "DONE" msgstr "YAPILMIŞ" @@ -499,7 +509,7 @@ msgstr "Sağlama toplamlarını CHECKSUMS dosyalarıyla doğrulama" msgid "Proxy" msgstr "Proxy" -#: src/Gtk/l.gtk.vala:42 +#: src/Gtk/l.gtk.vala:29 msgid "Missing Icon" msgstr "Eksik Simge" diff --git a/po/uk.po b/po/uk.po index 48e8112e..a2b429aa 100644 --- a/po/uk.po +++ b/po/uk.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-04-03 19:46-0400\n" +"POT-Creation-Date: 2023-04-04 07:52-0400\n" "PO-Revision-Date: 2019-07-25 11:00+0300\n" "Last-Translator: Serhii Golovko \n" "Language-Team: Ukranian\n" @@ -13,137 +13,141 @@ msgstr "" "X-Launchpad-Export-Date: 2016-12-13 11:48+0000\n" "X-Generator: Poedit 2.2.1\n" -#: src/Common/LinuxKernel.vala:99 +#: src/Common/LinuxKernel.vala:102 msgid "Distribution" msgstr "Дистрибутив" -#: src/Common/LinuxKernel.vala:114 +#: src/Common/LinuxKernel.vala:117 msgid "Architecture" msgstr "Системна архитектура" -#: src/Common/LinuxKernel.vala:129 +#: src/Common/LinuxKernel.vala:132 msgid "Running kernel" msgstr "Запуск ядра" -#: src/Common/LinuxKernel.vala:250 +#: src/Common/LinuxKernel.vala:253 msgid "loading cached" msgstr "Завантаження кешованого" -#: src/Common/LinuxKernel.vala:264 +#: src/Common/LinuxKernel.vala:267 msgid "queuing download" msgstr "Черга завантаження" -#: src/Common/LinuxKernel.vala:287 +#: src/Common/LinuxKernel.vala:290 msgid "Fetching individual kernel indexes" msgstr "Вибірка окремих індексів ядра" -#: src/Common/LinuxKernel.vala:303 +#: src/Common/LinuxKernel.vala:306 msgid "loading downloaded" msgstr "Завантаження завантаженого" -#: src/Common/LinuxKernel.vala:339 +#: src/Common/LinuxKernel.vala:341 msgid "Updating from" msgstr "Оновлення з" -#: src/Common/LinuxKernel.vala:347 +#: src/Common/LinuxKernel.vala:349 msgid "OK" msgstr "Добре" -#: src/Common/LinuxKernel.vala:350 +#: src/Common/LinuxKernel.vala:352 msgid "FAILED" msgstr "НЕ ВДАЛОСЯ" -#: src/Common/LinuxKernel.vala:396 +#: src/Common/LinuxKernel.vala:397 msgid "Found installed" msgstr "Знайдено встановленим" -#: src/Common/LinuxKernel.vala:790 +#: src/Common/LinuxKernel.vala:721 src/Gtk/MainWindow.vala:519 +#: src/Gtk/MainWindow.vala:532 +msgid "Running" +msgstr "Використовується" + +#: src/Common/LinuxKernel.vala:722 +msgid "Installed" +msgstr "Встановлено" + +#: src/Common/LinuxKernel.vala:723 +msgid "Invalid" +msgstr "Інвалід" + +#: src/Common/LinuxKernel.vala:797 msgid "Packages Available" msgstr "Доступні пакети" -#: src/Common/LinuxKernel.vala:796 +#: src/Common/LinuxKernel.vala:803 msgid "Packages Installed" msgstr "Встановлені пакети" -#: src/Common/LinuxKernel.vala:817 src/lib/TeeJee.FileSystem.vala:118 +#: src/Common/LinuxKernel.vala:825 src/lib/TeeJee.FileSystem.vala:118 msgid "File not found" msgstr "Файл не знайдено" -#: src/Common/LinuxKernel.vala:884 +#: src/Common/LinuxKernel.vala:894 msgid "Available Kernels" msgstr "Доступні ядра" -#: src/Common/LinuxKernel.vala:891 src/Gtk/MainWindow.vala:154 -msgid "Installed" -msgstr "Встановлено" - -#: src/Common/LinuxKernel.vala:891 src/Gtk/MainWindow.vala:154 -#: src/Gtk/MainWindow.vala:495 src/Gtk/MainWindow.vala:508 -msgid "Running" -msgstr "Використовується" - -#: src/Common/LinuxKernel.vala:925 +#: src/Common/LinuxKernel.vala:931 msgid "enabled" msgstr "увімкнено" -#: src/Common/LinuxKernel.vala:949 +#: src/Common/LinuxKernel.vala:955 msgid "Downloading" msgstr "Завантаження" -#: src/Common/LinuxKernel.vala:970 +#: src/Common/LinuxKernel.vala:976 msgid "is already installed." msgstr "вже встановлено." -#: src/Common/LinuxKernel.vala:1004 +#: src/Common/LinuxKernel.vala:1006 msgid "Uninstalling selected kernels" msgstr "Видаліть конкретні ядра" -#: src/Common/LinuxKernel.vala:1010 +#: src/Common/LinuxKernel.vala:1012 msgid "requested" msgstr "запитуваний" -#: src/Common/LinuxKernel.vala:1013 +#: src/Common/LinuxKernel.vala:1015 msgid "not uninstalling the currently running kernel" msgstr "не видалятиме поточне запущене ядро" -#: src/Common/LinuxKernel.vala:1029 +#: src/Common/LinuxKernel.vala:1031 msgid "found" msgstr "знайдено" -#: src/Common/LinuxKernel.vala:1032 +#: src/Common/LinuxKernel.vala:1034 msgid "No packages to un-install!" msgstr "Немає пакетів для видалення!" -#: src/Common/LinuxKernel.vala:1080 +#: src/Common/LinuxKernel.vala:1082 msgid "Could not find running kernel in list" msgstr "Не вдалося знайти запущене ядро у списку!" -#: src/Common/LinuxKernel.vala:1085 +#: src/Common/LinuxKernel.vala:1087 msgid "Could not find any kernels to uninstall" msgstr "Не вдалося знайти жодне ядро для вилучення" -#: src/Common/LinuxKernel.vala:1093 +#: src/Common/LinuxKernel.vala:1095 msgid "The following kernels will be uninstalled" msgstr "Наступні ядра будуть видалені" -#: src/Common/LinuxKernel.vala:1097 +#: src/Common/LinuxKernel.vala:1099 msgid "Continue ?" msgstr "Продовжувати ?" -#: src/Common/LinuxKernel.vala:1119 src/Console/AppConsole.vala:290 +#: src/Common/LinuxKernel.vala:1121 src/Console/AppConsole.vala:290 msgid "Latest update" msgstr "Останнє оновлення" -#: src/Common/LinuxKernel.vala:1130 src/Console/AppConsole.vala:297 +#: src/Common/LinuxKernel.vala:1132 src/Console/AppConsole.vala:297 msgid "Latest point update" msgstr "Остання точка оновлення" -#: src/Common/LinuxKernel.vala:1138 src/Console/AppConsole.vala:302 +#: src/Common/LinuxKernel.vala:1140 src/Console/AppConsole.vala:302 #: src/Console/AppConsole.vala:318 msgid "No updates found" msgstr "Оновлень не знайдено" -#: src/Common/LinuxKernel.vala:1147 +#: src/Common/LinuxKernel.vala:1149 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Встановити Ядро Версії %s ? (так/ні): " @@ -207,7 +211,7 @@ msgstr "Встановіть конкретне основне ядро" msgid "Uninstall specified kernel" msgstr "Видаліть конкретні ядра" -#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:306 +#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:328 msgid "Uninstall all but the highest installed version" msgstr "Видаліть усі, крім найвищої встановленої версії" @@ -301,7 +305,7 @@ msgstr "Ядро %s Доступне" msgid "Show" msgstr "Показати" -#: src/Console/AppConsole.vala:342 src/Gtk/MainWindow.vala:264 +#: src/Console/AppConsole.vala:342 src/Gtk/MainWindow.vala:296 msgid "Install" msgstr "Встановити" @@ -357,68 +361,74 @@ msgstr "Роздрукувати зневадження" msgid "Show all options" msgstr "Показати усі параметри" -#: src/Gtk/MainWindow.vala:111 +#: src/Gtk/MainWindow.vala:110 msgid "Kernel" msgstr "Ядро" -#: src/Gtk/MainWindow.vala:141 +#: src/Gtk/MainWindow.vala:143 msgid "Status" msgstr "Стан" -#: src/Gtk/MainWindow.vala:274 -msgid "Uninstall" -msgstr "Видалити" - -#: src/Gtk/MainWindow.vala:284 +#: src/Gtk/MainWindow.vala:158 msgid "Notes" msgstr "Нотатки" -#: src/Gtk/MainWindow.vala:289 -msgid "User notes for" -msgstr "Примітки користувача до" +#: src/Gtk/MainWindow.vala:306 +msgid "Uninstall" +msgstr "Видалити" -#: src/Gtk/MainWindow.vala:305 +#: src/Gtk/MainWindow.vala:327 msgid "Uninstall Old" msgstr "Видалити старе" -#: src/Gtk/MainWindow.vala:311 +#: src/Gtk/MainWindow.vala:333 msgid "Reload" msgstr "Перезавантажити" -#: src/Gtk/MainWindow.vala:316 src/Gtk/SettingsDialog.vala:49 +#: src/Gtk/MainWindow.vala:334 +msgid "" +"Delete cache and reload all kernel info\n" +"\n" +"THIS WILL ALSO DELETE ALL USER NOTES" +msgstr "" +"Видаліть кеш і перезавантажте всю інформацію про ядро\n" +"\n" +"ЦЕ ТАКОЖ ВИДАЛИТЬ УСІ НОТАТКИ КОРИСТУВАЧА" + +#: src/Gtk/MainWindow.vala:339 src/Gtk/SettingsDialog.vala:49 msgid "Settings" msgstr "Налаштування" -#: src/Gtk/MainWindow.vala:321 +#: src/Gtk/MainWindow.vala:344 msgid "About" msgstr "Про программу" -#: src/Gtk/MainWindow.vala:326 +#: src/Gtk/MainWindow.vala:349 msgid "Exit" msgstr "Вихід" -#: src/Gtk/MainWindow.vala:394 +#: src/Gtk/MainWindow.vala:418 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Програма оновлення ядра для дистрибутивів на базі Ubuntu" -#: src/Gtk/MainWindow.vala:395 +#: src/Gtk/MainWindow.vala:419 msgid "Forked" msgstr "Двоєний" -#: src/Gtk/MainWindow.vala:395 +#: src/Gtk/MainWindow.vala:419 msgid "Original" msgstr "Оригінал" -#: src/Gtk/MainWindow.vala:433 +#: src/Gtk/MainWindow.vala:457 msgid "Updating kernels" msgstr "Оновлення ядер" -#: src/Gtk/MainWindow.vala:504 +#: src/Gtk/MainWindow.vala:528 msgid "available" msgstr "доступний" -#: src/Gtk/MainWindow.vala:547 src/Gtk/MainWindow.vala:587 -#: src/Gtk/MainWindow.vala:621 +#: src/Gtk/MainWindow.vala:571 src/Gtk/MainWindow.vala:611 +#: src/Gtk/MainWindow.vala:645 msgid "DONE" msgstr "ГОТОВО" @@ -498,7 +508,7 @@ msgstr "Перевірка Контрольні суми за допомогою msgid "Proxy" msgstr "Проксі" -#: src/Gtk/l.gtk.vala:42 +#: src/Gtk/l.gtk.vala:29 msgid "Missing Icon" msgstr "Нема значка" diff --git a/src/Common/LinuxKernel.vala b/src/Common/LinuxKernel.vala index 21dad26a..184b6ffc 100644 --- a/src/Common/LinuxKernel.vala +++ b/src/Common/LinuxKernel.vala @@ -11,6 +11,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { public string version_main = ""; public string version_package = ""; public string page_uri = ""; + public string notes = ""; public int version_maj = -1; public int version_min = -1; @@ -40,6 +41,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { public static string RUNNING_KERNEL; public static string PPA_URI; public static string CACHE_DIR; + public static string MAIN_INDEX_HTML; public static LinuxKernel kernel_active; public static LinuxKernel kernel_update_major; @@ -72,6 +74,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { LINUX_DISTRO = check_distribution(); NATIVE_ARCH = check_package_architecture(); RUNNING_KERNEL = check_running_kernel().replace("-generic",""); + MAIN_INDEX_HTML = CACHE_DIR+"/index.html"; initialize_regex(); // Special kernel versions where the mainline-ppa site changed their directory structure. @@ -175,11 +178,11 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { // same as what's in the urls on the kernel ppa index.html // strip off the trailing "/" - if (_name.has_suffix("/")) this.kname = _name[0: _name.length - 1]; - else this.kname = _name; + if (_name.has_suffix("/")) kname = _name[0: _name.length - 1]; + else kname = _name; // extract version numbers from the name - kver = this.kname; + kver = kname; split_version_string(kver, out version_main); // build url @@ -322,11 +325,10 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { check_if_initialized(); if (!try_ppa()) return false; - if (!file_exists(index_page)) App.index_is_fresh=false; + if (!file_exists(MAIN_INDEX_HTML)) App.index_is_fresh=false; if (App.index_is_fresh) return true; - dir_create(file_parent(index_page)); - file_delete(index_page+"_"); + dir_create(CACHE_DIR); // preserve the old index in case the dl fails string tbn = random_string(); @@ -342,7 +344,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { while (mgr.is_running()) sleep(500); if (file_exists(tfn)) { - file_move(tfn,index_page); + file_move(tfn,MAIN_INDEX_HTML); App.index_is_fresh=true; vprint(_("OK")); return true; @@ -356,8 +358,8 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { private static void load_index() { vprint("load_index()",2); - if (!file_exists(index_page)) return; - string txt = file_read(index_page); + if (!file_exists(MAIN_INDEX_HTML)) return; + string txt = file_read(MAIN_INDEX_HTML); kernel_list.clear(); try { @@ -370,7 +372,6 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { foreach (string line in txt.split("\n")) { if (!rex.match(line, 0, out match)) continue; var k = new LinuxKernel(match.fetch(1), true); - if (k.is_unstable && App.hide_unstable) continue; kernel_list.add(k); vprint("kernel_list.add("+k.kname+")",3); } @@ -420,6 +421,8 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { if (!found) { //vprint("kernel_list.add("+pkern.kname+") (distro kernel)",3); // not always true, --uninstall-old thinks all are vprint("kernel_list.add("+pkern.kname+")",3); + pkern.is_mainline = false; + if (file_exists(pkern.notes_file)) pkern.notes = file_read(pkern.notes_file); kernel_list.add(pkern); } } @@ -712,6 +715,16 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { } } + public string status { + get { + return + is_running ? _("Running") : + is_installed ? _("Installed") : + is_invalid ? _("Invalid") : + ""; + } + } + public bool new_ppa_dirs { get { // if stable and newer than kernel_last_stable_old_ppa_dirs @@ -726,12 +739,6 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { } } - public static string index_page { - owned get { - return CACHE_DIR+"/index.html"; - } - } - public string cache_subdir { owned get { return CACHE_DIR+"/"+version_main; @@ -750,9 +757,9 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { } } - public string user_notes_file { + public string notes_file { owned get { - return cache_subdir+"/notes.txt"; + return cache_subdir+"/notes"; } } @@ -812,6 +819,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { deb_modules = ""; version_package = ""; deb_url_list.clear(); + notes = ""; if (!file_exists(cached_page)) { vprint("load_cached_page(): " + _("File not found") + ": "+cached_page,1,stderr); @@ -821,6 +829,8 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { // skip if we already know it's a failed build if (is_invalid) return; + if (file_exists(notes_file)) notes = file_read(notes_file).strip(); + // parse index.html -------------------------- txt = file_read(cached_page); try { @@ -884,22 +894,18 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { vprint(_("Available Kernels")); vprint("----------------------------------------------------------------"); + int nl = 16; // name length foreach(var k in kernel_list) { if (k.is_invalid) continue; - // check running/installed state before checking for hidden - var desc = k.is_running ? _("Running") : (k.is_installed ? _("Installed") : ""); - // hide hidden, but don't hide any installed if (!k.is_installed) { if (App.hide_unstable && k.is_unstable) continue; if (k.version_maj < threshold_major) continue; } - // kern.kname "v5.6.11" -> cache download dir names, needed for --install, --remove - // kern.kver or kern.version_main "5.6.11" -> most displays & references - //log_msg("%-32s %-32s %s".printf(kern.kname, kern.version_main, desc)); - vprint("%-32s %s".printf(k.version_main, desc)); + if (k.version_main.length>nl) nl = k.version_main.length; + vprint("%-*s %-10s %s".printf(nl, k.version_main, k.status, k.notes)); } } @@ -978,10 +984,6 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { if (ok) { - // TODO - // collect the stdout and parse for errors - // write results to user_notes_file - // full paths instead of env -C // https://github.com/bkw777/mainline/issues/128 var flist = ""; diff --git a/src/Gtk/MainWindow.vala b/src/Gtk/MainWindow.vala index 87b4de38..a2e2b887 100644 --- a/src/Gtk/MainWindow.vala +++ b/src/Gtk/MainWindow.vala @@ -38,7 +38,6 @@ public class MainWindow : Gtk.Window { private Gtk.TreeView tv; private Gtk.Button btn_install; private Gtk.Button btn_uninstall; - private Gtk.Button btn_notes; private Gtk.Button btn_ppa; private Gtk.Label lbl_info; @@ -110,6 +109,9 @@ public class MainWindow : Gtk.Window { var col = new TreeViewColumn(); col.title = _("Kernel"); col.resizable = true; + col.set_sort_column_id(0); + col.set_sort_indicator(true); + col.sort_indicator = true; col.min_width = 200; tv.append_column(col); @@ -120,7 +122,7 @@ public class MainWindow : Gtk.Window { col.pack_start (cell_pix, false); col.set_cell_data_func (cell_pix, (cell_layout, cell, model, iter)=>{ Gdk.Pixbuf pix; - model.get (iter, 1, out pix, -1); + model.get (iter, 2, out pix, -1); return_if_fail(cell as Gtk.CellRendererPixbuf != null); ((Gtk.CellRendererPixbuf) cell).pixbuf = pix; }); @@ -131,7 +133,7 @@ public class MainWindow : Gtk.Window { col.pack_start (cellText, false); col.set_cell_data_func (cellText, (cell_layout, cell, model, iter)=>{ LinuxKernel kern; - model.get (iter, 0, out kern, -1); + model.get (iter, 1, out kern, -1); return_if_fail(cell as Gtk.CellRendererText != null); ((Gtk.CellRendererText) cell).text = kern.version_main; }); @@ -139,6 +141,8 @@ public class MainWindow : Gtk.Window { //column col = new TreeViewColumn(); col.title = _("Status"); + col.set_sort_column_id(3); + col.set_sort_indicator(true); col.resizable = true; col.min_width = 200; tv.append_column(col); @@ -146,22 +150,49 @@ public class MainWindow : Gtk.Window { //cell text cellText = new CellRendererText(); cellText.ellipsize = Pango.EllipsizeMode.END; + col.pack_start(cellText, true); + col.add_attribute(cellText, "text", 3); + + //column + col = new TreeViewColumn(); + col.title = _("Notes"); + //col.set_sort_column_id(4); // not working ? + col.resizable = true; + col.min_width = 200; + tv.append_column(col); + + //cell text + cellText = new CellRendererText(); + cellText.ellipsize = Pango.EllipsizeMode.END; + col.pack_start (cellText, false); - col.set_cell_data_func (cellText, (cell_layout, cell, model, iter)=>{ - LinuxKernel kern; - model.get (iter, 0, out kern, -1); + col.set_cell_data_func(cellText, (cell_layout, cell, model, iter)=>{ + LinuxKernel k; + model.get(iter, 1, out k, -1); return_if_fail(cell as Gtk.CellRendererText != null); - ((Gtk.CellRendererText) cell).text = kern.is_running ? _("Running") : (kern.is_installed ? _("Installed") : ""); + ((Gtk.CellRendererText) cell).text = k.notes; }); - tv.set_tooltip_column(3); + cellText.editable = true; + cellText.edited.connect((path,data) => { + TreeIter iter; + tv.model.get_iter_from_string(out iter, path); + LinuxKernel k; + tv.model.get(iter, 1, out k, -1); + if (k.notes != data._strip()) { + k.notes = data; + file_write(k.notes_file,data); + } + }); + + tv.set_tooltip_column(5); } private void tv_row_activated(TreePath path, TreeViewColumn column) { TreeIter iter; tv.model.get_iter_from_string(out iter, path.to_string()); - LinuxKernel kern; - tv.model.get (iter, 0, out kern, -1); + LinuxKernel k; + tv.model.get (iter, 1, out k, -1); set_button_state(); } @@ -175,10 +206,10 @@ public class MainWindow : Gtk.Window { selected_kernels.clear(); foreach (var path in paths) { - LinuxKernel kern; + LinuxKernel k; model.get_iter(out iter, path); - model.get (iter, 0, out kern, -1); - selected_kernels.add(kern); + model.get(iter, 1, out k, -1); + selected_kernels.add(k); } set_button_state(); @@ -186,8 +217,8 @@ public class MainWindow : Gtk.Window { private void tv_refresh() { vprint("tv_refresh()",2); - - var model = new Gtk.ListStore(4, typeof(LinuxKernel), typeof(Gdk.Pixbuf), typeof(bool), typeof(string)); + // 0 index 1 kernel 2 icon 3 status 4 notes 5 tooltip + var model = new Gtk.ListStore(6, typeof(int), typeof(LinuxKernel), typeof(Gdk.Pixbuf), typeof(string), typeof(string), typeof(string)); Gdk.Pixbuf pix_ubuntu = null; Gdk.Pixbuf pix_mainline = null; @@ -202,8 +233,8 @@ public class MainWindow : Gtk.Window { vprint(e.message,1,stderr); } + int i = -1; TreeIter iter; - bool odd_row = false; foreach (var k in LinuxKernel.kernel_list) { if (k.is_invalid) continue; if (!k.is_installed) { @@ -211,20 +242,23 @@ public class MainWindow : Gtk.Window { if (k.version_maj < LinuxKernel.threshold_major) continue; } - odd_row = !odd_row; - // add row model.append(out iter); - model.set(iter, 0, k); - - if (k.is_mainline) { - if (k.is_unstable) model.set(iter, 1, pix_mainline_rc); - else model.set (iter, 1, pix_mainline); + model.set(iter, 0, ++i); // for sorting the "Kernel" column + model.set(iter, 1, k); + + if (!k.is_invalid) { + if (k.is_mainline) { + if (k.is_unstable) model.set(iter, 2, pix_mainline_rc); + else model.set (iter, 2, pix_mainline); + } else model.set(iter, 2, pix_ubuntu); } - else model.set(iter, 1, pix_ubuntu); - model.set(iter, 2, odd_row); - model.set(iter, 3, k.tooltip_text()); + model.set(iter, 3, k.status); + + //model.set(iter, 4, file_read(k.user_notes_file)); + + model.set(iter, 5, k.tooltip_text()); } tv.set_model(model); @@ -240,13 +274,11 @@ public class MainWindow : Gtk.Window { if (selected_kernels.size == 0) { btn_install.sensitive = false; btn_uninstall.sensitive = false; - btn_notes.sensitive = false; btn_ppa.sensitive = true; } else { // only allow selecting a single kernel for install/uninstall, examine the installed state btn_install.sensitive = (selected_kernels.size == 1) && !selected_kernels[0].is_installed; btn_uninstall.sensitive = selected_kernels[0].is_installed && !selected_kernels[0].is_running; - btn_notes.sensitive = (selected_kernels.size == 1); btn_ppa.sensitive = (selected_kernels.size == 1) && selected_kernels[0].is_mainline; // allow selecting multiple kernels for install/uninstall, but IF only a single selected, examine the installed state // (the rest of the app does not have loops to process a list yet) @@ -280,16 +312,6 @@ public class MainWindow : Gtk.Window { do_uninstall(selected_kernels); }); - // notes - button = new Gtk.Button.with_label (_("Notes")); - hbox.pack_start (button, true, true, 0); - btn_notes = button; - - button.clicked.connect(() => { - if (!file_exists(selected_kernels[0].user_notes_file)) file_write(selected_kernels[0].user_notes_file,_("User notes for")+" "+selected_kernels[0].version_main+"\n\n"); - uri_open("file://"+selected_kernels[0].user_notes_file); - }); - // ppa button = new Gtk.Button.with_label ("PPA"); hbox.pack_start (button, true, true, 0); @@ -309,6 +331,7 @@ public class MainWindow : Gtk.Window { // reload button = new Gtk.Button.with_label (_("Reload")); + button.set_tooltip_text(_("Delete cache and reload all kernel info\n\nTHIS WILL ALSO DELETE ALL USER NOTES")); hbox.pack_start (button, true, true, 0); button.clicked.connect(reload_cache); @@ -341,7 +364,8 @@ public class MainWindow : Gtk.Window { (_previous_majors != App.previous_majors) || (_hide_unstable != App.hide_unstable) ) { - reload_cache(); + //reload_cache(); + update_cache(); } } @@ -512,9 +536,9 @@ public class MainWindow : Gtk.Window { public void do_install(LinuxKernel k) { if (App.command == "install") App.command = "list"; return_if_fail(!k.is_installed); - // let it try even if we think the net is down - // just so the button responds instead of looking broken - //if (!test_net()) return; + // try even if we think the net is down + // so the button responds instead of looking broken + //if (!ppa_up()) return; var term = new TerminalWindow.with_parent(this, false, true); string t_dir = create_tmp_dir(); diff --git a/src/Gtk/l.gtk.vala b/src/Gtk/l.gtk.vala index 8a35816b..14602ba8 100644 --- a/src/Gtk/l.gtk.vala +++ b/src/Gtk/l.gtk.vala @@ -8,18 +8,6 @@ namespace l.gtk { using Gtk; - public void errbox (Window parent, string message) { - Gtk.MessageDialog msg = new Gtk.MessageDialog ( - parent, - Gtk.DialogFlags.MODAL, - Gtk.MessageType.ERROR, - Gtk.ButtonsType.OK, - message - ); - msg.response.connect((response_id) => msg.destroy()); - msg.show(); - } - public Gdk.Pixbuf? get_app_icon(int icon_size) { var img_icon = get_shared_icon(BRANDING_SHORTNAME ,icon_size); if (img_icon != null) return img_icon.pixbuf; @@ -33,8 +21,7 @@ namespace l.gtk { try { Gtk.IconTheme icon_theme = Gtk.IconTheme.get_default(); - pix_icon = icon_theme.load_icon_for_scale ( - icon_name, Gtk.IconSize.MENU, icon_size, Gtk.IconLookupFlags.FORCE_SIZE); + pix_icon = icon_theme.load_icon_for_scale (icon_name, Gtk.IconSize.MENU, icon_size, Gtk.IconLookupFlags.FORCE_SIZE); } catch (Error e) { //vprint(e.message,1,stderr); } From c16d5a5cef3123246c5f646a8f60cc845710d83f Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Tue, 4 Apr 2023 08:11:20 -0400 Subject: [PATCH 300/567] readme --- README.md | 8 ++++++-- README.md.src | 8 ++++++-- 2 files changed, 12 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 4625feaf..63129aaf 100644 --- a/README.md +++ b/README.md @@ -13,7 +13,8 @@ mainline is a fork of [ukuu](https://github.com/teejee2008/ukuu) * Removed un-related/un-used code * Better temp and cache management * Better desktop notification behavior -* Reduced dependencies and system()s (still ongoing) +* Reduced dependencies and system() (still ongoing) +* Notes * Slow but ongoing re-writes of most parts ## Features @@ -86,6 +87,8 @@ That can lead to some files being stale or wrong over time, so, to compensate fo (1) In all cases the currently running kernel is protected and the app will not uninstall the currently running kernel. For the single manual uninstall button, the button simply isn't activated. For the cli app if you manually give that version, it will simply ignore it. For uninstall-old, either gui or cli, the currently running kernel is simply skipped over when scanning and building the list of uninstall candidates. +Clicking on the Notes field allows to attach arbitrary text to a kernel. + # Help / FAQ * General debugging Aside from the ```--debug``` option, there is an environment variable ```VERBOSE```, which takes a numerical value from 0 and up. @@ -122,6 +125,7 @@ For the single manual uninstall button, the button simply isn't activated. For t * Combine the gtk and cli apps into one, or, make the gtk app into a pure front-end for the cli app, either way * Replace the commandline parser * Toggle display of invalid kernels so you could at least see they aren't simply missing, and use the "PPA" button too -* UI quick toggle for show/hide unstable/-rc kernels +* UI quick toggle for show/hide unstable/-rc kernels instead of going to settings * Right-click menu for more functions for a given kernel, such as reloading the cache just for a single kernel to check for new build status etc, without adding 18 buttons all over the ui. * Support all installable kernel variants, not just "-generic" +* Add commandline flags to override all settings. Currently the filter settings also control the cli output, but the cli has no way to change settings. diff --git a/README.md.src b/README.md.src index fc6bbe3c..7bca8553 100644 --- a/README.md.src +++ b/README.md.src @@ -13,7 +13,8 @@ BRANDING_SHORTNAME is a fork of [ukuu](https://github.com/teejee2008/ukuu) * Removed un-related/un-used code * Better temp and cache management * Better desktop notification behavior -* Reduced dependencies and system()s (still ongoing) +* Reduced dependencies and system() (still ongoing) +* Notes * Slow but ongoing re-writes of most parts ## Features @@ -86,6 +87,8 @@ That can lead to some files being stale or wrong over time, so, to compensate fo (1) In all cases the currently running kernel is protected and the app will not uninstall the currently running kernel. For the single manual uninstall button, the button simply isn't activated. For the cli app if you manually give that version, it will simply ignore it. For uninstall-old, either gui or cli, the currently running kernel is simply skipped over when scanning and building the list of uninstall candidates. +Clicking on the Notes field allows to attach arbitrary text to a kernel. + # Help / FAQ * General debugging Aside from the ```--debug``` option, there is an environment variable ```VERBOSE```, which takes a numerical value from 0 and up. @@ -122,6 +125,7 @@ For the single manual uninstall button, the button simply isn't activated. For t * Combine the gtk and cli apps into one, or, make the gtk app into a pure front-end for the cli app, either way * Replace the commandline parser * Toggle display of invalid kernels so you could at least see they aren't simply missing, and use the "PPA" button too -* UI quick toggle for show/hide unstable/-rc kernels +* UI quick toggle for show/hide unstable/-rc kernels instead of going to settings * Right-click menu for more functions for a given kernel, such as reloading the cache just for a single kernel to check for new build status etc, without adding 18 buttons all over the ui. * Support all installable kernel variants, not just "-generic" +* Add commandline flags to override all settings. Currently the filter settings also control the cli output, but the cli has no way to change settings. From 45c22b18ca808479c58949e78cc4c29b06d4d75b Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Tue, 4 Apr 2023 08:28:00 -0400 Subject: [PATCH 301/567] pic --- .deb_build_number.mak | 2 +- main_window.png | Bin 27423 -> 141151 bytes 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/.deb_build_number.mak b/.deb_build_number.mak index c2090200..f7b71746 100644 --- a/.deb_build_number.mak +++ b/.deb_build_number.mak @@ -1,3 +1,3 @@ # This file is generated by Makefile "make deb_build_number" DEB_PKG_VERSION := 1.2.0 -DEB_BUILD_NUMBER := 0000 +DEB_BUILD_NUMBER := 0001 diff --git a/main_window.png b/main_window.png index 0c86841f26223617d13bb4abb1aa42797f4ae5b8..de3fdc3f5af825f5e4ced3803c979817399e82d8 100644 GIT binary patch literal 141151 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

XQQS>d2F3V_`;Y=CytR%lL9z2;hfjLL+A!)(xz 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 literal 141151 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 Bd9wfj From 7374ab794e0eb2f822d05a972a45e578d0c8d0c2 Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Thu, 25 May 2023 08:56:27 -0400 Subject: [PATCH 326/567] readme --- README.md | 18 +++++++----------- README.md.src | 18 +++++++----------- 2 files changed, 14 insertions(+), 22 deletions(-) diff --git a/README.md b/README.md index d654af20..274197c9 100644 --- a/README.md +++ b/README.md @@ -73,10 +73,6 @@ Use this to see the build summary and CHANGES files. **\[ Uninstall Old \]** - uninstalls all installed kernels below the latest installed version(1) **\[ Reload \]** - deletes, re-downloads, and re-reads the local cached copies of all the index.html's from the mainline-ppa web site, and regenerates the displayed list. -Management of these files has been a problem with this app in the past due to various spaghetti code and permissions issues. -This is much more reliable now, but there can still be glitches from bad downloads or sometimes the upstream contents change after your copy was downloaded. For instance a kernel might be invalid when you happened to first cache it, and then later become valid (failed build that later succeeded), but your local cached info about that kernel doesn't know it, etc. -Normally the app avoids re-downloading things as much as possible for speed and annoyance reasons. The main index is always re-downloaded at least once every start-up, but the individual pages for each kernel are cached and never re-downloaded by default, only new/missing ones are downloaded. -That can lead to some files being stale or wrong over time, so, to compensate for that, this button just makes it as convenient as possible to force a full re-load any time you want. **\[ Settings \]** - access the [settings](settings.md) dialog to configure various options @@ -84,16 +80,16 @@ That can lead to some files being stale or wrong over time, so, to compensate fo **\[ Exit \]** - order pizza -(1) In all cases the currently running kernel is protected and the app will not uninstall the currently running kernel. -For the single manual uninstall button, the button simply isn't activated. For the cli app if you manually give that version, it will simply ignore it. For uninstall-old, either gui or cli, the currently running kernel is simply skipped over when scanning and building the list of uninstall candidates. +(1) The currently running kernel and any locked kernels are protected and ignoreded. +## Notes Clicking on the Notes field allows to attach arbitrary text to a kernel. -The Lock checkbox serves as both whitelist and blacklist. -A locked kernel will not be installed if it's currently uninstalled, and will not be uninstalled if it's currently installed. -This applies to all methods of installing or uninstalling, from the gui or cli, -including the gui Install & Uninstall buttons, cli ""--install" & "--uninstall", -gui "Uninstall Old" & cli "--uninstall-old", and cli "--install-latest" +## Lock +The Lock checkbox serves as both whitelist and blacklist. +A locked kernel will not be installed or uninstalled. +If it is currently installed, the Uninstall button is inactive and it will be ignored by "Uninstall Old" and "--uninstall". +If it is not currently installed, the Install button is inactive and it will be ignored by "--install-latest", "--notify", and "--install". # Help / FAQ diff --git a/README.md.src b/README.md.src index 4ccb70c1..196cd090 100644 --- a/README.md.src +++ b/README.md.src @@ -73,10 +73,6 @@ Use this to see the build summary and CHANGES files. **\[ Uninstall Old \]** - uninstalls all installed kernels below the latest installed version(1) **\[ Reload \]** - deletes, re-downloads, and re-reads the local cached copies of all the index.html's from the mainline-ppa web site, and regenerates the displayed list. -Management of these files has been a problem with this app in the past due to various spaghetti code and permissions issues. -This is much more reliable now, but there can still be glitches from bad downloads or sometimes the upstream contents change after your copy was downloaded. For instance a kernel might be invalid when you happened to first cache it, and then later become valid (failed build that later succeeded), but your local cached info about that kernel doesn't know it, etc. -Normally the app avoids re-downloading things as much as possible for speed and annoyance reasons. The main index is always re-downloaded at least once every start-up, but the individual pages for each kernel are cached and never re-downloaded by default, only new/missing ones are downloaded. -That can lead to some files being stale or wrong over time, so, to compensate for that, this button just makes it as convenient as possible to force a full re-load any time you want. **\[ Settings \]** - access the [settings](settings.md) dialog to configure various options @@ -84,16 +80,16 @@ That can lead to some files being stale or wrong over time, so, to compensate fo **\[ Exit \]** - order pizza -(1) In all cases the currently running kernel is protected and the app will not uninstall the currently running kernel. -For the single manual uninstall button, the button simply isn't activated. For the cli app if you manually give that version, it will simply ignore it. For uninstall-old, either gui or cli, the currently running kernel is simply skipped over when scanning and building the list of uninstall candidates. +(1) The currently running kernel and any locked kernels are protected and ignoreded. +## Notes Clicking on the Notes field allows to attach arbitrary text to a kernel. -The Lock checkbox serves as both whitelist and blacklist. -A locked kernel will not be installed if it's currently uninstalled, and will not be uninstalled if it's currently installed. -This applies to all methods of installing or uninstalling, from the gui or cli, -including the gui Install & Uninstall buttons, cli ""--install" & "--uninstall", -gui "Uninstall Old" & cli "--uninstall-old", and cli "--install-latest" +## Lock +The Lock checkbox serves as both whitelist and blacklist. +A locked kernel will not be installed or uninstalled. +If it is currently installed, the Uninstall button is inactive and it will be ignored by "Uninstall Old" and "--uninstall". +If it is not currently installed, the Install button is inactive and it will be ignored by "--install-latest", "--notify", and "--install". # Help / FAQ From 3c7cf128ca8dce3087409ca7d22aa20708be4a91 Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Thu, 25 May 2023 09:02:53 -0400 Subject: [PATCH 327/567] readme typo --- README.md | 2 +- README.md.src | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 274197c9..d0f0c41d 100644 --- a/README.md +++ b/README.md @@ -80,7 +80,7 @@ Use this to see the build summary and CHANGES files. **\[ Exit \]** - order pizza -(1) The currently running kernel and any locked kernels are protected and ignoreded. +(1) The currently running kernel and any locked kernels are protected and ignored. ## Notes Clicking on the Notes field allows to attach arbitrary text to a kernel. diff --git a/README.md.src b/README.md.src index 196cd090..cdd01654 100644 --- a/README.md.src +++ b/README.md.src @@ -80,7 +80,7 @@ Use this to see the build summary and CHANGES files. **\[ Exit \]** - order pizza -(1) The currently running kernel and any locked kernels are protected and ignoreded. +(1) The currently running kernel and any locked kernels are protected and ignored. ## Notes Clicking on the Notes field allows to attach arbitrary text to a kernel. From 967fa2bb4dcdcb7169486da5052997c56c030174 Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Thu, 25 May 2023 17:09:44 -0400 Subject: [PATCH 328/567] readme --- README.md | 37 +++++++++++++++++++++++++++---------- README.md.src | 37 +++++++++++++++++++++++++++---------- 2 files changed, 54 insertions(+), 20 deletions(-) diff --git a/README.md b/README.md index d0f0c41d..d2f3a9ba 100644 --- a/README.md +++ b/README.md @@ -13,8 +13,9 @@ mainline is a fork of [ukuu](https://github.com/teejee2008/ukuu) * Removed un-related/un-used code * Better temp and cache management * Better desktop notification behavior -* Reduced dependencies and system() (still ongoing) -* Notes +* Reduced dependencies (ex: no longer uses aptitude, just dpkg) +* Per-Kernel User Notes +* Pinning/Locking Kernels * Slow but ongoing re-writes of most parts ## Features @@ -34,7 +35,6 @@ sudo apt update sudo apt install mainline ``` There is also usually a single reference .deb package in [releases](../../releases/latest), generated by ```make release_deb``` -but it is usually not current. # Build ``` @@ -82,14 +82,31 @@ Use this to see the build summary and CHANGES files. (1) The currently running kernel and any locked kernels are protected and ignored. -## Notes -Clicking on the Notes field allows to attach arbitrary text to a kernel. +## Pinning / Locking +The Lock checkboxes serve as both whitelist and blacklist. + +A locked kernel will be frozen in whatever state it was in when you locked it. +If it was installed, it will now stay installed. +If it was not installed, it will now stay uninstalled. + +All forms of install/uninstall commands & methods are affected. +The gui "Install" and "Uninstall" buttons are inactive on that kernel. +The cli "--install" and "--uninstall" commands ignore that kernel. +The gui "Uninstall Old" button and the cli "--uninstall-old" command ignore that kernel. +The cli "--install-latest" and "--notify" for the background notification ignore that kernel. +The kernel is still visible, you can still write notes and pull up the PPA info page and toggle the lock to unlock it. -## Lock -The Lock checkbox serves as both whitelist and blacklist. -A locked kernel will not be installed or uninstalled. -If it is currently installed, the Uninstall button is inactive and it will be ignored by "Uninstall Old" and "--uninstall". -If it is not currently installed, the Install button is inactive and it will be ignored by "--install-latest", "--notify", and "--install". +This can be handy to keep a stock distribution kernel from being uninstalled by "Uninstall Old", or prevent a known buggy kernel from being installed by "--install-latest" and preven "--notify" from generating a notification to install it. + +## Notes +Clicking on the Notes field allows to attach arbitrary note text to a kernel. + +## Display Sorting +All column headers are clickable to re-sort the list. +The "Kernel" coulumn sorts by the special kernel version number sort where "1.2.3-rc3" is higher than "1.2.3-rc2", yet "1.2.3" is higher than "1.2.3-rc3". +Sorting on the "Lock" column is a way to see all locked kernels together. +Sorting on the "Status" column is a way to see all installed kernels together. +Sorting on the "Notes" column is a way to see all kernels that have any notes together. # Help / FAQ diff --git a/README.md.src b/README.md.src index cdd01654..cfa24881 100644 --- a/README.md.src +++ b/README.md.src @@ -13,8 +13,9 @@ BRANDING_SHORTNAME is a fork of [ukuu](https://github.com/teejee2008/ukuu) * Removed un-related/un-used code * Better temp and cache management * Better desktop notification behavior -* Reduced dependencies and system() (still ongoing) -* Notes +* Reduced dependencies (ex: no longer uses aptitude, just dpkg) +* Per-Kernel User Notes +* Pinning/Locking Kernels * Slow but ongoing re-writes of most parts ## Features @@ -34,7 +35,6 @@ sudo apt update sudo apt install BRANDING_SHORTNAME ``` There is also usually a single reference .deb package in [releases](../../releases/latest), generated by ```make release_deb``` -but it is usually not current. # Build ``` @@ -82,14 +82,31 @@ Use this to see the build summary and CHANGES files. (1) The currently running kernel and any locked kernels are protected and ignored. -## Notes -Clicking on the Notes field allows to attach arbitrary text to a kernel. +## Pinning / Locking +The Lock checkboxes serve as both whitelist and blacklist. + +A locked kernel will be frozen in whatever state it was in when you locked it. +If it was installed, it will now stay installed. +If it was not installed, it will now stay uninstalled. + +All forms of install/uninstall commands & methods are affected. +The gui "Install" and "Uninstall" buttons are inactive on that kernel. +The cli "--install" and "--uninstall" commands ignore that kernel. +The gui "Uninstall Old" button and the cli "--uninstall-old" command ignore that kernel. +The cli "--install-latest" and "--notify" for the background notification ignore that kernel. +The kernel is still visible, you can still write notes and pull up the PPA info page and toggle the lock to unlock it. -## Lock -The Lock checkbox serves as both whitelist and blacklist. -A locked kernel will not be installed or uninstalled. -If it is currently installed, the Uninstall button is inactive and it will be ignored by "Uninstall Old" and "--uninstall". -If it is not currently installed, the Install button is inactive and it will be ignored by "--install-latest", "--notify", and "--install". +This can be handy to keep a stock distribution kernel from being uninstalled by "Uninstall Old", or prevent a known buggy kernel from being installed by "--install-latest" and preven "--notify" from generating a notification to install it. + +## Notes +Clicking on the Notes field allows to attach arbitrary note text to a kernel. + +## Display Sorting +All column headers are clickable to re-sort the list. +The "Kernel" coulumn sorts by the special kernel version number sort where "1.2.3-rc3" is higher than "1.2.3-rc2", yet "1.2.3" is higher than "1.2.3-rc3". +Sorting on the "Lock" column is a way to see all locked kernels together. +Sorting on the "Status" column is a way to see all installed kernels together. +Sorting on the "Notes" column is a way to see all kernels that have any notes together. # Help / FAQ From 11ad3e3d3fac7adfd39e6ecb464b08d3ce9b3e0f Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Thu, 25 May 2023 23:31:31 -0400 Subject: [PATCH 329/567] readme & tooltip --- Makefile | 2 +- README.md | 9 +++++++ README.md.src | 9 +++++++ po/de.po | 54 +++++++++++++++++--------------------- po/el.po | 54 +++++++++++++++++--------------------- po/es.po | 54 +++++++++++++++++--------------------- po/fr.po | 54 +++++++++++++++++--------------------- po/hr.po | 54 +++++++++++++++++--------------------- po/it.po | 54 +++++++++++++++++--------------------- po/ko.po | 54 +++++++++++++++++--------------------- po/messages.pot | 51 +++++++++++++++++------------------- po/nl.po | 54 +++++++++++++++++--------------------- po/pl.po | 56 ++++++++++++++++++---------------------- po/ru.po | 54 +++++++++++++++++--------------------- po/sv.po | 54 +++++++++++++++++--------------------- po/tr.po | 54 +++++++++++++++++--------------------- po/uk.po | 54 +++++++++++++++++--------------------- sort_by_locked.png | Bin 0 -> 129769 bytes sort_by_notes.png | Bin 0 -> 126932 bytes sort_by_status.png | Bin 0 -> 133052 bytes src/Gtk/MainWindow.vala | 8 ++++-- 21 files changed, 362 insertions(+), 421 deletions(-) create mode 100644 sort_by_locked.png create mode 100644 sort_by_notes.png create mode 100644 sort_by_status.png diff --git a/Makefile b/Makefile index 11b80fe3..6745f389 100644 --- a/Makefile +++ b/Makefile @@ -2,7 +2,7 @@ SHELL := /bin/bash CFLAGS := -O2 -VALACFLAGS := +VALACFLAGS := #-D LOCK_TOGGLES_IN_KERNEL_COLUMN prefix := /usr bindir := $(prefix)/bin diff --git a/README.md b/README.md index d2f3a9ba..6ab1c7d3 100644 --- a/README.md +++ b/README.md @@ -3,6 +3,15 @@ A tool for installing [Ubuntu Mainline Kernel Builds](https://wiki.ubuntu.com/Ke ![Main window screenshot](main_window.png) +Sort by the Lock column to collect all the locked kernels together +![sort by locked](sort_by_locked.png) + +Sort by the Status column to collect all the installed kernels together +![sort by status](sort_by_status.png) + +Sort by the Notes column to see all kernels with any remarks +![sort_by_notes](sort_by_notes.png) + ## About mainline is a fork of [ukuu](https://github.com/teejee2008/ukuu) diff --git a/README.md.src b/README.md.src index cfa24881..f4aedfc4 100644 --- a/README.md.src +++ b/README.md.src @@ -3,6 +3,15 @@ A tool for installing [Ubuntu Mainline Kernel Builds](https://wiki.ubuntu.com/Ke ![Main window screenshot](main_window.png) +Sort by the Lock column to collect all the locked kernels together +![sort by locked](sort_by_locked.png) + +Sort by the Status column to collect all the installed kernels together +![sort by status](sort_by_status.png) + +Sort by the Notes column to see all kernels with any remarks +![sort_by_notes](sort_by_notes.png) + ## About BRANDING_SHORTNAME is a fork of [ukuu](https://github.com/teejee2008/ukuu) diff --git a/po/de.po b/po/de.po index 71cc2a74..f3c10b9e 100644 --- a/po/de.po +++ b/po/de.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-25 07:13-0400\n" +"POT-Creation-Date: 2023-05-25 23:23-0400\n" "PO-Revision-Date: 2023-02-20 18:40+0100\n" "Last-Translator: Marvin Meysel \n" "Language-Team: German\n" @@ -66,8 +66,8 @@ msgstr "" msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:729 src/Gtk/MainWindow.vala:523 -#: src/Gtk/MainWindow.vala:536 +#: src/Common/LinuxKernel.vala:729 src/Gtk/MainWindow.vala:527 +#: src/Gtk/MainWindow.vala:540 msgid "Running" msgstr "Läuft" @@ -230,7 +230,7 @@ msgstr "Angegebenen Mainline-Kernel installieren" msgid "Uninstall specified kernel" msgstr "Deinstallation des angegebenen Kernels" -#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:335 +#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:339 msgid "Uninstall all but the highest installed version" msgstr "Deinstallieren Sie alle bis auf die höchste installierte Version" @@ -326,7 +326,7 @@ msgstr "Kernel %s verfügbar" msgid "Show" msgstr "Zeigen" -#: src/Console/AppConsole.vala:347 src/Gtk/MainWindow.vala:302 +#: src/Console/AppConsole.vala:347 src/Gtk/MainWindow.vala:306 msgid "Install" msgstr "Installieren" @@ -386,78 +386,72 @@ msgstr "Alle Optionen anzeigen" msgid "Kernel" msgstr "Kernel" -#: src/Gtk/MainWindow.vala:143 +#: src/Gtk/MainWindow.vala:147 msgid "Lock" msgstr "" -#: src/Gtk/MainWindow.vala:160 +#: src/Gtk/MainWindow.vala:164 msgid "Status" msgstr "Status" -#: src/Gtk/MainWindow.vala:172 +#: src/Gtk/MainWindow.vala:176 msgid "Notes" msgstr "Notizen" -#: src/Gtk/MainWindow.vala:312 +#: src/Gtk/MainWindow.vala:316 msgid "Uninstall" msgstr "Deinstallieren" -#: src/Gtk/MainWindow.vala:323 +#: src/Gtk/MainWindow.vala:327 msgid "Changelog, build status, etc" msgstr "" -#: src/Gtk/MainWindow.vala:334 +#: src/Gtk/MainWindow.vala:338 msgid "Uninstall Old" msgstr "Alte deinstallieren" -#: src/Gtk/MainWindow.vala:340 +#: src/Gtk/MainWindow.vala:344 msgid "Reload" msgstr "Nachladen" -#: src/Gtk/MainWindow.vala:341 -msgid "" -"Delete cache and reload all kernel info\n" -"\n" -"THIS WILL ALSO DELETE ALL USER NOTES" +#: src/Gtk/MainWindow.vala:345 +msgid "Delete and reload all cached kernel info" msgstr "" -"Cache löschen und alle Kernel-Informationen neu laden\n" -"\n" -"DADURCH WERDEN AUCH ALLE BENUTZERNOTIZEN GELÖSCHT" -#: src/Gtk/MainWindow.vala:346 src/Gtk/SettingsDialog.vala:49 +#: src/Gtk/MainWindow.vala:350 src/Gtk/SettingsDialog.vala:49 msgid "Settings" msgstr "Einstellungen" -#: src/Gtk/MainWindow.vala:351 +#: src/Gtk/MainWindow.vala:355 msgid "About" msgstr "Über" -#: src/Gtk/MainWindow.vala:356 +#: src/Gtk/MainWindow.vala:360 msgid "Exit" msgstr "Ausgang" -#: src/Gtk/MainWindow.vala:422 +#: src/Gtk/MainWindow.vala:426 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Kernel-Upgrade-Dienstprogramm für Ubuntu-basierte Distributionen" -#: src/Gtk/MainWindow.vala:423 +#: src/Gtk/MainWindow.vala:427 msgid "Forked" msgstr "Gegabelte" -#: src/Gtk/MainWindow.vala:423 +#: src/Gtk/MainWindow.vala:427 msgid "Original" msgstr "Original" -#: src/Gtk/MainWindow.vala:461 +#: src/Gtk/MainWindow.vala:465 msgid "Updating kernels" msgstr "Aktualisieren von Kernels" -#: src/Gtk/MainWindow.vala:532 +#: src/Gtk/MainWindow.vala:536 msgid "available" msgstr "Verfügbar" -#: src/Gtk/MainWindow.vala:574 src/Gtk/MainWindow.vala:615 -#: src/Gtk/MainWindow.vala:650 +#: src/Gtk/MainWindow.vala:578 src/Gtk/MainWindow.vala:619 +#: src/Gtk/MainWindow.vala:654 msgid "DONE" msgstr "FERTIG" diff --git a/po/el.po b/po/el.po index 69f39f57..d0d006ef 100644 --- a/po/el.po +++ b/po/el.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-25 07:13-0400\n" +"POT-Creation-Date: 2023-05-25 23:23-0400\n" "PO-Revision-Date: 2023-01-10 02:03-0600\n" "Last-Translator: Vasilis Kosmidis \n" "Language-Team: Greek\n" @@ -66,8 +66,8 @@ msgstr "" msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:729 src/Gtk/MainWindow.vala:523 -#: src/Gtk/MainWindow.vala:536 +#: src/Common/LinuxKernel.vala:729 src/Gtk/MainWindow.vala:527 +#: src/Gtk/MainWindow.vala:540 msgid "Running" msgstr "Ενεργός" @@ -230,7 +230,7 @@ msgstr "Εγκατάσταση του καθορισμένου mainline πυρή msgid "Uninstall specified kernel" msgstr "Απεγκατάσταση του καθορισμένου πυρήνα" -#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:335 +#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:339 msgid "Uninstall all but the highest installed version" msgstr "Απεγκαταστήστε όλες εκτός από την υψηλότερη εγκατεστημένη έκδοση" @@ -326,7 +326,7 @@ msgstr "Πυρήνας %s διαθέσιμος" msgid "Show" msgstr "Προβολή" -#: src/Console/AppConsole.vala:347 src/Gtk/MainWindow.vala:302 +#: src/Console/AppConsole.vala:347 src/Gtk/MainWindow.vala:306 msgid "Install" msgstr "Εγκατάσταση" @@ -386,78 +386,72 @@ msgstr "Εμφάνιση όλων των επιλογών" msgid "Kernel" msgstr "Πυρήνας" -#: src/Gtk/MainWindow.vala:143 +#: src/Gtk/MainWindow.vala:147 msgid "Lock" msgstr "" -#: src/Gtk/MainWindow.vala:160 +#: src/Gtk/MainWindow.vala:164 msgid "Status" msgstr "Κατάσταση" -#: src/Gtk/MainWindow.vala:172 +#: src/Gtk/MainWindow.vala:176 msgid "Notes" msgstr "Σημειώσεις" -#: src/Gtk/MainWindow.vala:312 +#: src/Gtk/MainWindow.vala:316 msgid "Uninstall" msgstr "Απεγκατάσταση" -#: src/Gtk/MainWindow.vala:323 +#: src/Gtk/MainWindow.vala:327 msgid "Changelog, build status, etc" msgstr "" -#: src/Gtk/MainWindow.vala:334 +#: src/Gtk/MainWindow.vala:338 msgid "Uninstall Old" msgstr "Απεγκατάσταση παλαιών" -#: src/Gtk/MainWindow.vala:340 +#: src/Gtk/MainWindow.vala:344 msgid "Reload" msgstr "Δροσίζω" -#: src/Gtk/MainWindow.vala:341 -msgid "" -"Delete cache and reload all kernel info\n" -"\n" -"THIS WILL ALSO DELETE ALL USER NOTES" +#: src/Gtk/MainWindow.vala:345 +msgid "Delete and reload all cached kernel info" msgstr "" -"Διαγραφή προσωρινής μνήμης και επαναφόρτωση όλων των πληροφοριών πυρήνα \n" -"\n" -"ΑΥΤΌ ΘΑ ΔΙΑΓΡΆΨΕΙ ΕΠΊΣΗΣ ΌΛΕΣ ΤΙΣ ΣΗΜΕΙΏΣΕΙΣ ΧΡΉΣΤΗ" -#: src/Gtk/MainWindow.vala:346 src/Gtk/SettingsDialog.vala:49 +#: src/Gtk/MainWindow.vala:350 src/Gtk/SettingsDialog.vala:49 msgid "Settings" msgstr "Ρυθμίσεις" -#: src/Gtk/MainWindow.vala:351 +#: src/Gtk/MainWindow.vala:355 msgid "About" msgstr "Σχετικά" -#: src/Gtk/MainWindow.vala:356 +#: src/Gtk/MainWindow.vala:360 msgid "Exit" msgstr "Έξοδος" -#: src/Gtk/MainWindow.vala:422 +#: src/Gtk/MainWindow.vala:426 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Πρόγραμμα αναβάθμισης πυρήνα για διανομές που βασίζονται στο Ubuntu" -#: src/Gtk/MainWindow.vala:423 +#: src/Gtk/MainWindow.vala:427 msgid "Forked" msgstr "Forked" -#: src/Gtk/MainWindow.vala:423 +#: src/Gtk/MainWindow.vala:427 msgid "Original" msgstr "Πρωτότυπο" -#: src/Gtk/MainWindow.vala:461 +#: src/Gtk/MainWindow.vala:465 msgid "Updating kernels" msgstr "Ενημέρωση πυρήνων" -#: src/Gtk/MainWindow.vala:532 +#: src/Gtk/MainWindow.vala:536 msgid "available" msgstr "διαθέσιμος" -#: src/Gtk/MainWindow.vala:574 src/Gtk/MainWindow.vala:615 -#: src/Gtk/MainWindow.vala:650 +#: src/Gtk/MainWindow.vala:578 src/Gtk/MainWindow.vala:619 +#: src/Gtk/MainWindow.vala:654 msgid "DONE" msgstr "ΈΤΟΙΜΟ" diff --git a/po/es.po b/po/es.po index 3a2c123c..11362fa0 100644 --- a/po/es.po +++ b/po/es.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-25 07:13-0400\n" +"POT-Creation-Date: 2023-05-25 23:23-0400\n" "PO-Revision-Date: 2018-01-03 02:03-0600\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish\n" @@ -66,8 +66,8 @@ msgstr "" msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:729 src/Gtk/MainWindow.vala:523 -#: src/Gtk/MainWindow.vala:536 +#: src/Common/LinuxKernel.vala:729 src/Gtk/MainWindow.vala:527 +#: src/Gtk/MainWindow.vala:540 msgid "Running" msgstr "En ejecución" @@ -230,7 +230,7 @@ msgstr "Instalar núcleo troncal especificado" msgid "Uninstall specified kernel" msgstr "Desinstalar el kernel especificado" -#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:335 +#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:339 msgid "Uninstall all but the highest installed version" msgstr "Desinstale todas las versiones instaladas excepto la más alta" @@ -324,7 +324,7 @@ msgstr "Kernel %s Disponible" msgid "Show" msgstr "Mostrar" -#: src/Console/AppConsole.vala:347 src/Gtk/MainWindow.vala:302 +#: src/Console/AppConsole.vala:347 src/Gtk/MainWindow.vala:306 msgid "Install" msgstr "Instalar" @@ -384,79 +384,73 @@ msgstr "Mostrar todas las opciones" msgid "Kernel" msgstr "Núcleo" -#: src/Gtk/MainWindow.vala:143 +#: src/Gtk/MainWindow.vala:147 msgid "Lock" msgstr "" -#: src/Gtk/MainWindow.vala:160 +#: src/Gtk/MainWindow.vala:164 msgid "Status" msgstr "Estado" -#: src/Gtk/MainWindow.vala:172 +#: src/Gtk/MainWindow.vala:176 msgid "Notes" msgstr "Notas" -#: src/Gtk/MainWindow.vala:312 +#: src/Gtk/MainWindow.vala:316 msgid "Uninstall" msgstr "Desinstalar" -#: src/Gtk/MainWindow.vala:323 +#: src/Gtk/MainWindow.vala:327 msgid "Changelog, build status, etc" msgstr "" -#: src/Gtk/MainWindow.vala:334 +#: src/Gtk/MainWindow.vala:338 msgid "Uninstall Old" msgstr "Desinstalar Antiguo" -#: src/Gtk/MainWindow.vala:340 +#: src/Gtk/MainWindow.vala:344 msgid "Reload" msgstr "Recargar" -#: src/Gtk/MainWindow.vala:341 -msgid "" -"Delete cache and reload all kernel info\n" -"\n" -"THIS WILL ALSO DELETE ALL USER NOTES" +#: src/Gtk/MainWindow.vala:345 +msgid "Delete and reload all cached kernel info" msgstr "" -"Borrar caché y volver a cargar toda la información del kernel \n" -"\n" -"ESTO TAMBIÉN ELIMINARÁ TODAS LAS NOTAS DEL USUARIO" -#: src/Gtk/MainWindow.vala:346 src/Gtk/SettingsDialog.vala:49 +#: src/Gtk/MainWindow.vala:350 src/Gtk/SettingsDialog.vala:49 msgid "Settings" msgstr "Configuración" -#: src/Gtk/MainWindow.vala:351 +#: src/Gtk/MainWindow.vala:355 msgid "About" msgstr "Acerca de" -#: src/Gtk/MainWindow.vala:356 +#: src/Gtk/MainWindow.vala:360 msgid "Exit" msgstr "Salida" -#: src/Gtk/MainWindow.vala:422 +#: src/Gtk/MainWindow.vala:426 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "" "Herramienta de renovación de núcleo para distribuciones basadas en Ubuntu" -#: src/Gtk/MainWindow.vala:423 +#: src/Gtk/MainWindow.vala:427 msgid "Forked" msgstr "Bifurcada" -#: src/Gtk/MainWindow.vala:423 +#: src/Gtk/MainWindow.vala:427 msgid "Original" msgstr "Original" -#: src/Gtk/MainWindow.vala:461 +#: src/Gtk/MainWindow.vala:465 msgid "Updating kernels" msgstr "Actualización de kernels" -#: src/Gtk/MainWindow.vala:532 +#: src/Gtk/MainWindow.vala:536 msgid "available" msgstr "disponibles" -#: src/Gtk/MainWindow.vala:574 src/Gtk/MainWindow.vala:615 -#: src/Gtk/MainWindow.vala:650 +#: src/Gtk/MainWindow.vala:578 src/Gtk/MainWindow.vala:619 +#: src/Gtk/MainWindow.vala:654 msgid "DONE" msgstr "HECHO" diff --git a/po/fr.po b/po/fr.po index c6e898b1..ee8ae534 100644 --- a/po/fr.po +++ b/po/fr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-25 07:13-0400\n" +"POT-Creation-Date: 2023-05-25 23:23-0400\n" "PO-Revision-Date: 2018-08-05 15:50+0200\n" "Last-Translator: Yolateng0 \n" "Language-Team: French\n" @@ -66,8 +66,8 @@ msgstr "" msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:729 src/Gtk/MainWindow.vala:523 -#: src/Gtk/MainWindow.vala:536 +#: src/Common/LinuxKernel.vala:729 src/Gtk/MainWindow.vala:527 +#: src/Gtk/MainWindow.vala:540 msgid "Running" msgstr "Actuel" @@ -230,7 +230,7 @@ msgstr "Installer le noyau mainline spécifié" msgid "Uninstall specified kernel" msgstr "Désinstaller le noyau spécifié" -#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:335 +#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:339 msgid "Uninstall all but the highest installed version" msgstr "Désinstallez toutes le version installées, sauf la plus élevée" @@ -326,7 +326,7 @@ msgstr "Paquet %s disponibles" msgid "Show" msgstr "Montrer" -#: src/Console/AppConsole.vala:347 src/Gtk/MainWindow.vala:302 +#: src/Console/AppConsole.vala:347 src/Gtk/MainWindow.vala:306 msgid "Install" msgstr "Installer" @@ -386,80 +386,74 @@ msgstr "Afficher toutes les options" msgid "Kernel" msgstr "Noyau" -#: src/Gtk/MainWindow.vala:143 +#: src/Gtk/MainWindow.vala:147 msgid "Lock" msgstr "" -#: src/Gtk/MainWindow.vala:160 +#: src/Gtk/MainWindow.vala:164 msgid "Status" msgstr "Statut" -#: src/Gtk/MainWindow.vala:172 +#: src/Gtk/MainWindow.vala:176 msgid "Notes" msgstr "Notes" -#: src/Gtk/MainWindow.vala:312 +#: src/Gtk/MainWindow.vala:316 msgid "Uninstall" msgstr "Désinstaller" -#: src/Gtk/MainWindow.vala:323 +#: src/Gtk/MainWindow.vala:327 msgid "Changelog, build status, etc" msgstr "" -#: src/Gtk/MainWindow.vala:334 +#: src/Gtk/MainWindow.vala:338 msgid "Uninstall Old" msgstr "Désinstaller Ancien" -#: src/Gtk/MainWindow.vala:340 +#: src/Gtk/MainWindow.vala:344 msgid "Reload" msgstr "Recharger" -#: src/Gtk/MainWindow.vala:341 -msgid "" -"Delete cache and reload all kernel info\n" -"\n" -"THIS WILL ALSO DELETE ALL USER NOTES" +#: src/Gtk/MainWindow.vala:345 +msgid "Delete and reload all cached kernel info" msgstr "" -"Supprimer le cache et recharger toutes les informations du noyau\n" -"\n" -"CELA SUPPRIMERA ÉGALEMENT TOUTES LES NOTES DE UTILISATEUR" -#: src/Gtk/MainWindow.vala:346 src/Gtk/SettingsDialog.vala:49 +#: src/Gtk/MainWindow.vala:350 src/Gtk/SettingsDialog.vala:49 msgid "Settings" msgstr "Paramètres" -#: src/Gtk/MainWindow.vala:351 +#: src/Gtk/MainWindow.vala:355 msgid "About" msgstr "À propos" -#: src/Gtk/MainWindow.vala:356 +#: src/Gtk/MainWindow.vala:360 msgid "Exit" msgstr "Sortie" -#: src/Gtk/MainWindow.vala:422 +#: src/Gtk/MainWindow.vala:426 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "" "Utilitaire de mise à niveau des noyaux pour les distributions basées sur " "Ubuntu" -#: src/Gtk/MainWindow.vala:423 +#: src/Gtk/MainWindow.vala:427 msgid "Forked" msgstr "Forkée" -#: src/Gtk/MainWindow.vala:423 +#: src/Gtk/MainWindow.vala:427 msgid "Original" msgstr "Originale" -#: src/Gtk/MainWindow.vala:461 +#: src/Gtk/MainWindow.vala:465 msgid "Updating kernels" msgstr "Mise à jour des noyaux" -#: src/Gtk/MainWindow.vala:532 +#: src/Gtk/MainWindow.vala:536 msgid "available" msgstr "disponible" -#: src/Gtk/MainWindow.vala:574 src/Gtk/MainWindow.vala:615 -#: src/Gtk/MainWindow.vala:650 +#: src/Gtk/MainWindow.vala:578 src/Gtk/MainWindow.vala:619 +#: src/Gtk/MainWindow.vala:654 msgid "DONE" msgstr "FAIT" diff --git a/po/hr.po b/po/hr.po index 5d06e0e5..3a8b4482 100644 --- a/po/hr.po +++ b/po/hr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-25 07:13-0400\n" +"POT-Creation-Date: 2023-05-25 23:23-0400\n" "PO-Revision-Date: 2022-09-22 12:13+0200\n" "Last-Translator: gogo \n" "Language-Team: Croatian\n" @@ -66,8 +66,8 @@ msgstr "" msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:729 src/Gtk/MainWindow.vala:523 -#: src/Gtk/MainWindow.vala:536 +#: src/Common/LinuxKernel.vala:729 src/Gtk/MainWindow.vala:527 +#: src/Gtk/MainWindow.vala:540 msgid "Running" msgstr "Pokrenuto" @@ -229,7 +229,7 @@ msgstr "Instaliraj određeni mainline kernel" msgid "Uninstall specified kernel" msgstr "Deinstaliraj određene kernele" -#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:335 +#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:339 msgid "Uninstall all but the highest installed version" msgstr "Deinstaliraj sve osim najnovije instalirane verzije" @@ -323,7 +323,7 @@ msgstr "Kernel %s je dostupan" msgid "Show" msgstr "Prikaži" -#: src/Console/AppConsole.vala:347 src/Gtk/MainWindow.vala:302 +#: src/Console/AppConsole.vala:347 src/Gtk/MainWindow.vala:306 msgid "Install" msgstr "Instaliraj" @@ -383,78 +383,72 @@ msgstr "Prikaži sve mogućnosti" msgid "Kernel" msgstr "Kernel" -#: src/Gtk/MainWindow.vala:143 +#: src/Gtk/MainWindow.vala:147 msgid "Lock" msgstr "" -#: src/Gtk/MainWindow.vala:160 +#: src/Gtk/MainWindow.vala:164 msgid "Status" msgstr "Stanje" -#: src/Gtk/MainWindow.vala:172 +#: src/Gtk/MainWindow.vala:176 msgid "Notes" msgstr "Bilješke" -#: src/Gtk/MainWindow.vala:312 +#: src/Gtk/MainWindow.vala:316 msgid "Uninstall" msgstr "Deinstaliraj" -#: src/Gtk/MainWindow.vala:323 +#: src/Gtk/MainWindow.vala:327 msgid "Changelog, build status, etc" msgstr "" -#: src/Gtk/MainWindow.vala:334 +#: src/Gtk/MainWindow.vala:338 msgid "Uninstall Old" msgstr "Deinstaliraj staro" -#: src/Gtk/MainWindow.vala:340 +#: src/Gtk/MainWindow.vala:344 msgid "Reload" msgstr "Ponovno učitati" -#: src/Gtk/MainWindow.vala:341 -msgid "" -"Delete cache and reload all kernel info\n" -"\n" -"THIS WILL ALSO DELETE ALL USER NOTES" +#: src/Gtk/MainWindow.vala:345 +msgid "Delete and reload all cached kernel info" msgstr "" -"Törölje a gyorsítótárat, és töltse be újra az összes kernelinformációt\n" -"\n" -"EZZEL AZ ÖSSZES FELHASZNÁLÓI JEGYZETET IS TÖRLI" -#: src/Gtk/MainWindow.vala:346 src/Gtk/SettingsDialog.vala:49 +#: src/Gtk/MainWindow.vala:350 src/Gtk/SettingsDialog.vala:49 msgid "Settings" msgstr "Postavke" -#: src/Gtk/MainWindow.vala:351 +#: src/Gtk/MainWindow.vala:355 msgid "About" msgstr "O programu" -#: src/Gtk/MainWindow.vala:356 +#: src/Gtk/MainWindow.vala:360 msgid "Exit" msgstr "Izlaz" -#: src/Gtk/MainWindow.vala:422 +#: src/Gtk/MainWindow.vala:426 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Alat za nadogradnju kernela Ubuntu temeljenih distribucija" -#: src/Gtk/MainWindow.vala:423 +#: src/Gtk/MainWindow.vala:427 msgid "Forked" msgstr "Forkano" -#: src/Gtk/MainWindow.vala:423 +#: src/Gtk/MainWindow.vala:427 msgid "Original" msgstr "Izvornik" -#: src/Gtk/MainWindow.vala:461 +#: src/Gtk/MainWindow.vala:465 msgid "Updating kernels" msgstr "Ažuriranje jezgri" -#: src/Gtk/MainWindow.vala:532 +#: src/Gtk/MainWindow.vala:536 msgid "available" msgstr "dostupno" -#: src/Gtk/MainWindow.vala:574 src/Gtk/MainWindow.vala:615 -#: src/Gtk/MainWindow.vala:650 +#: src/Gtk/MainWindow.vala:578 src/Gtk/MainWindow.vala:619 +#: src/Gtk/MainWindow.vala:654 msgid "DONE" msgstr "UČINJENO" diff --git a/po/it.po b/po/it.po index 1109dc1a..5064a98b 100644 --- a/po/it.po +++ b/po/it.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-25 07:13-0400\n" +"POT-Creation-Date: 2023-05-25 23:23-0400\n" "PO-Revision-Date: 2020-08-22 15:35+0100\n" "Last-Translator: Demetrio Mendozzi\n" "Language-Team: Italian\n" @@ -64,8 +64,8 @@ msgstr "" msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:729 src/Gtk/MainWindow.vala:523 -#: src/Gtk/MainWindow.vala:536 +#: src/Common/LinuxKernel.vala:729 src/Gtk/MainWindow.vala:527 +#: src/Gtk/MainWindow.vala:540 msgid "Running" msgstr "In esecuzione" @@ -230,7 +230,7 @@ msgstr "Installa il kernel mainline specificato" msgid "Uninstall specified kernel" msgstr "Disinstalla i kernel specificati" -#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:335 +#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:339 msgid "Uninstall all but the highest installed version" msgstr "Disinstallare tutti tranne la versione più recente installata" @@ -324,7 +324,7 @@ msgstr "Kernel %s Disponibile" msgid "Show" msgstr "Mostra" -#: src/Console/AppConsole.vala:347 src/Gtk/MainWindow.vala:302 +#: src/Console/AppConsole.vala:347 src/Gtk/MainWindow.vala:306 msgid "Install" msgstr "Installa" @@ -384,78 +384,72 @@ msgstr "Mostra tutte le opzioni" msgid "Kernel" msgstr "Kernel" -#: src/Gtk/MainWindow.vala:143 +#: src/Gtk/MainWindow.vala:147 msgid "Lock" msgstr "" -#: src/Gtk/MainWindow.vala:160 +#: src/Gtk/MainWindow.vala:164 msgid "Status" msgstr "Stato" -#: src/Gtk/MainWindow.vala:172 +#: src/Gtk/MainWindow.vala:176 msgid "Notes" msgstr "Note" -#: src/Gtk/MainWindow.vala:312 +#: src/Gtk/MainWindow.vala:316 msgid "Uninstall" msgstr "Disinstalla" -#: src/Gtk/MainWindow.vala:323 +#: src/Gtk/MainWindow.vala:327 msgid "Changelog, build status, etc" msgstr "" -#: src/Gtk/MainWindow.vala:334 +#: src/Gtk/MainWindow.vala:338 msgid "Uninstall Old" msgstr "Disinstalla i vecchi" -#: src/Gtk/MainWindow.vala:340 +#: src/Gtk/MainWindow.vala:344 msgid "Reload" msgstr "Ricarica" -#: src/Gtk/MainWindow.vala:341 -msgid "" -"Delete cache and reload all kernel info\n" -"\n" -"THIS WILL ALSO DELETE ALL USER NOTES" +#: src/Gtk/MainWindow.vala:345 +msgid "Delete and reload all cached kernel info" msgstr "" -"Eliminare la cache e ricaricare tutte le informazioni del kernel\n" -"\n" -"QUESTO CANCELLERÀ ANCHE TUTTE LE NOTE UTENTE" -#: src/Gtk/MainWindow.vala:346 src/Gtk/SettingsDialog.vala:49 +#: src/Gtk/MainWindow.vala:350 src/Gtk/SettingsDialog.vala:49 msgid "Settings" msgstr "Impostazioni" -#: src/Gtk/MainWindow.vala:351 +#: src/Gtk/MainWindow.vala:355 msgid "About" msgstr "Informazioni" -#: src/Gtk/MainWindow.vala:356 +#: src/Gtk/MainWindow.vala:360 msgid "Exit" msgstr "Chiudi" -#: src/Gtk/MainWindow.vala:422 +#: src/Gtk/MainWindow.vala:426 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Utilità di aggiornamento del kernel per distribuzioni basate su Ubuntu" -#: src/Gtk/MainWindow.vala:423 +#: src/Gtk/MainWindow.vala:427 msgid "Forked" msgstr "Forked" -#: src/Gtk/MainWindow.vala:423 +#: src/Gtk/MainWindow.vala:427 msgid "Original" msgstr "Originale" -#: src/Gtk/MainWindow.vala:461 +#: src/Gtk/MainWindow.vala:465 msgid "Updating kernels" msgstr "Aggiornamento dei kernel" -#: src/Gtk/MainWindow.vala:532 +#: src/Gtk/MainWindow.vala:536 msgid "available" msgstr "disponibile" -#: src/Gtk/MainWindow.vala:574 src/Gtk/MainWindow.vala:615 -#: src/Gtk/MainWindow.vala:650 +#: src/Gtk/MainWindow.vala:578 src/Gtk/MainWindow.vala:619 +#: src/Gtk/MainWindow.vala:654 msgid "DONE" msgstr "FATTO" diff --git a/po/ko.po b/po/ko.po index 38efab1f..23828d46 100644 --- a/po/ko.po +++ b/po/ko.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-25 07:13-0400\n" +"POT-Creation-Date: 2023-05-25 23:23-0400\n" "PO-Revision-Date: 2022-09-28 11:48+0900\n" "Last-Translator: Kevin Kim \n" "Language-Team: Korean\n" @@ -66,8 +66,8 @@ msgstr "" msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:729 src/Gtk/MainWindow.vala:523 -#: src/Gtk/MainWindow.vala:536 +#: src/Common/LinuxKernel.vala:729 src/Gtk/MainWindow.vala:527 +#: src/Gtk/MainWindow.vala:540 msgid "Running" msgstr "구동 중" @@ -228,7 +228,7 @@ msgstr "지정한 메인라인 커널 설치" msgid "Uninstall specified kernel" msgstr "지정한 커널 삭제" -#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:335 +#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:339 msgid "Uninstall all but the highest installed version" msgstr "설치된 가장 높은 버전을 제외한 모든 버전을 제거합니다" @@ -322,7 +322,7 @@ msgstr "커널 %s 사용 가능" msgid "Show" msgstr "보이기" -#: src/Console/AppConsole.vala:347 src/Gtk/MainWindow.vala:302 +#: src/Console/AppConsole.vala:347 src/Gtk/MainWindow.vala:306 msgid "Install" msgstr "설치" @@ -382,78 +382,72 @@ msgstr "모든 옵션 보기" msgid "Kernel" msgstr "커널" -#: src/Gtk/MainWindow.vala:143 +#: src/Gtk/MainWindow.vala:147 msgid "Lock" msgstr "" -#: src/Gtk/MainWindow.vala:160 +#: src/Gtk/MainWindow.vala:164 msgid "Status" msgstr "상태" -#: src/Gtk/MainWindow.vala:172 +#: src/Gtk/MainWindow.vala:176 msgid "Notes" msgstr "노트" -#: src/Gtk/MainWindow.vala:312 +#: src/Gtk/MainWindow.vala:316 msgid "Uninstall" msgstr "삭제" -#: src/Gtk/MainWindow.vala:323 +#: src/Gtk/MainWindow.vala:327 msgid "Changelog, build status, etc" msgstr "" -#: src/Gtk/MainWindow.vala:334 +#: src/Gtk/MainWindow.vala:338 msgid "Uninstall Old" msgstr "오래된 커널 제거" -#: src/Gtk/MainWindow.vala:340 +#: src/Gtk/MainWindow.vala:344 msgid "Reload" msgstr "새로고침" -#: src/Gtk/MainWindow.vala:341 -msgid "" -"Delete cache and reload all kernel info\n" -"\n" -"THIS WILL ALSO DELETE ALL USER NOTES" +#: src/Gtk/MainWindow.vala:345 +msgid "Delete and reload all cached kernel info" msgstr "" -"캐시 삭제 및 모든 커널 정보 다시로드\n" -"\n" -"!! 이렇게 하면 모든 사용자 메모도 삭제됩니다 !!" -#: src/Gtk/MainWindow.vala:346 src/Gtk/SettingsDialog.vala:49 +#: src/Gtk/MainWindow.vala:350 src/Gtk/SettingsDialog.vala:49 msgid "Settings" msgstr "설정" -#: src/Gtk/MainWindow.vala:351 +#: src/Gtk/MainWindow.vala:355 msgid "About" msgstr "정보" -#: src/Gtk/MainWindow.vala:356 +#: src/Gtk/MainWindow.vala:360 msgid "Exit" msgstr "출구" -#: src/Gtk/MainWindow.vala:422 +#: src/Gtk/MainWindow.vala:426 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "우분투 기반 배포판의 커널 업그레이드 도구" -#: src/Gtk/MainWindow.vala:423 +#: src/Gtk/MainWindow.vala:427 msgid "Forked" msgstr "가랑이진" -#: src/Gtk/MainWindow.vala:423 +#: src/Gtk/MainWindow.vala:427 msgid "Original" msgstr "원문 언어" -#: src/Gtk/MainWindow.vala:461 +#: src/Gtk/MainWindow.vala:465 msgid "Updating kernels" msgstr "커널 업데이트" -#: src/Gtk/MainWindow.vala:532 +#: src/Gtk/MainWindow.vala:536 msgid "available" msgstr "사용가능" -#: src/Gtk/MainWindow.vala:574 src/Gtk/MainWindow.vala:615 -#: src/Gtk/MainWindow.vala:650 +#: src/Gtk/MainWindow.vala:578 src/Gtk/MainWindow.vala:619 +#: src/Gtk/MainWindow.vala:654 msgid "DONE" msgstr "수행" diff --git a/po/messages.pot b/po/messages.pot index 8c3283ce..b7574609 100644 --- a/po/messages.pot +++ b/po/messages.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline 1.3.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-25 07:13-0400\n" +"POT-Creation-Date: 2023-05-25 23:23-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -70,8 +70,8 @@ msgstr "" msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:729 src/Gtk/MainWindow.vala:523 -#: src/Gtk/MainWindow.vala:536 +#: src/Common/LinuxKernel.vala:729 src/Gtk/MainWindow.vala:527 +#: src/Gtk/MainWindow.vala:540 msgid "Running" msgstr "" @@ -231,7 +231,7 @@ msgstr "" msgid "Uninstall specified kernel" msgstr "" -#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:335 +#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:339 msgid "Uninstall all but the highest installed version" msgstr "" @@ -325,7 +325,7 @@ msgstr "" msgid "Show" msgstr "" -#: src/Console/AppConsole.vala:347 src/Gtk/MainWindow.vala:302 +#: src/Console/AppConsole.vala:347 src/Gtk/MainWindow.vala:306 msgid "Install" msgstr "" @@ -385,75 +385,72 @@ msgstr "" msgid "Kernel" msgstr "" -#: src/Gtk/MainWindow.vala:143 +#: src/Gtk/MainWindow.vala:147 msgid "Lock" msgstr "" -#: src/Gtk/MainWindow.vala:160 +#: src/Gtk/MainWindow.vala:164 msgid "Status" msgstr "" -#: src/Gtk/MainWindow.vala:172 +#: src/Gtk/MainWindow.vala:176 msgid "Notes" msgstr "" -#: src/Gtk/MainWindow.vala:312 +#: src/Gtk/MainWindow.vala:316 msgid "Uninstall" msgstr "" -#: src/Gtk/MainWindow.vala:323 +#: src/Gtk/MainWindow.vala:327 msgid "Changelog, build status, etc" msgstr "" -#: src/Gtk/MainWindow.vala:334 +#: src/Gtk/MainWindow.vala:338 msgid "Uninstall Old" msgstr "" -#: src/Gtk/MainWindow.vala:340 +#: src/Gtk/MainWindow.vala:344 msgid "Reload" msgstr "" -#: src/Gtk/MainWindow.vala:341 -msgid "" -"Delete cache and reload all kernel info\n" -"\n" -"THIS WILL ALSO DELETE ALL USER NOTES" +#: src/Gtk/MainWindow.vala:345 +msgid "Delete and reload all cached kernel info" msgstr "" -#: src/Gtk/MainWindow.vala:346 src/Gtk/SettingsDialog.vala:49 +#: src/Gtk/MainWindow.vala:350 src/Gtk/SettingsDialog.vala:49 msgid "Settings" msgstr "" -#: src/Gtk/MainWindow.vala:351 +#: src/Gtk/MainWindow.vala:355 msgid "About" msgstr "" -#: src/Gtk/MainWindow.vala:356 +#: src/Gtk/MainWindow.vala:360 msgid "Exit" msgstr "" -#: src/Gtk/MainWindow.vala:422 +#: src/Gtk/MainWindow.vala:426 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "" -#: src/Gtk/MainWindow.vala:423 +#: src/Gtk/MainWindow.vala:427 msgid "Forked" msgstr "" -#: src/Gtk/MainWindow.vala:423 +#: src/Gtk/MainWindow.vala:427 msgid "Original" msgstr "" -#: src/Gtk/MainWindow.vala:461 +#: src/Gtk/MainWindow.vala:465 msgid "Updating kernels" msgstr "" -#: src/Gtk/MainWindow.vala:532 +#: src/Gtk/MainWindow.vala:536 msgid "available" msgstr "" -#: src/Gtk/MainWindow.vala:574 src/Gtk/MainWindow.vala:615 -#: src/Gtk/MainWindow.vala:650 +#: src/Gtk/MainWindow.vala:578 src/Gtk/MainWindow.vala:619 +#: src/Gtk/MainWindow.vala:654 msgid "DONE" msgstr "" diff --git a/po/nl.po b/po/nl.po index 35f94879..fc738f4f 100644 --- a/po/nl.po +++ b/po/nl.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-25 07:13-0400\n" +"POT-Creation-Date: 2023-05-25 23:23-0400\n" "PO-Revision-Date: 2020-08-23 13:55+0200\n" "Last-Translator: Heimen Stoffels \n" "Language-Team: Dutch (Netherlands)\n" @@ -66,8 +66,8 @@ msgstr "" msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:729 src/Gtk/MainWindow.vala:523 -#: src/Gtk/MainWindow.vala:536 +#: src/Common/LinuxKernel.vala:729 src/Gtk/MainWindow.vala:527 +#: src/Gtk/MainWindow.vala:540 msgid "Running" msgstr "In gebruik" @@ -230,7 +230,7 @@ msgstr "Opgegeven mainline-kernel installeren" msgid "Uninstall specified kernel" msgstr "Opgegeven kernel verwijderen" -#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:335 +#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:339 msgid "Uninstall all but the highest installed version" msgstr "Verwijder alle behalve de hoogst geïnstalleerde versie" @@ -325,7 +325,7 @@ msgstr "Kernel %s is beschikbaar" msgid "Show" msgstr "Tonen" -#: src/Console/AppConsole.vala:347 src/Gtk/MainWindow.vala:302 +#: src/Console/AppConsole.vala:347 src/Gtk/MainWindow.vala:306 msgid "Install" msgstr "Installeren" @@ -385,78 +385,72 @@ msgstr "Alle opties tonen" msgid "Kernel" msgstr "Kernel" -#: src/Gtk/MainWindow.vala:143 +#: src/Gtk/MainWindow.vala:147 msgid "Lock" msgstr "" -#: src/Gtk/MainWindow.vala:160 +#: src/Gtk/MainWindow.vala:164 msgid "Status" msgstr "Status" -#: src/Gtk/MainWindow.vala:172 +#: src/Gtk/MainWindow.vala:176 msgid "Notes" msgstr "Notities" -#: src/Gtk/MainWindow.vala:312 +#: src/Gtk/MainWindow.vala:316 msgid "Uninstall" msgstr "Deïnstalleren" -#: src/Gtk/MainWindow.vala:323 +#: src/Gtk/MainWindow.vala:327 msgid "Changelog, build status, etc" msgstr "" -#: src/Gtk/MainWindow.vala:334 +#: src/Gtk/MainWindow.vala:338 msgid "Uninstall Old" msgstr "Verwijder Oude" -#: src/Gtk/MainWindow.vala:340 +#: src/Gtk/MainWindow.vala:344 msgid "Reload" msgstr "Herladen" -#: src/Gtk/MainWindow.vala:341 -msgid "" -"Delete cache and reload all kernel info\n" -"\n" -"THIS WILL ALSO DELETE ALL USER NOTES" +#: src/Gtk/MainWindow.vala:345 +msgid "Delete and reload all cached kernel info" msgstr "" -"Cache verwijderen en alle kernelinformatie opnieuw laden\n" -"\n" -"HIERMEE WORDEN OOK ALLE GEBRUIKERSNOTITIES VERWIJDERD" -#: src/Gtk/MainWindow.vala:346 src/Gtk/SettingsDialog.vala:49 +#: src/Gtk/MainWindow.vala:350 src/Gtk/SettingsDialog.vala:49 msgid "Settings" msgstr "Instellingen" -#: src/Gtk/MainWindow.vala:351 +#: src/Gtk/MainWindow.vala:355 msgid "About" msgstr "Over" -#: src/Gtk/MainWindow.vala:356 +#: src/Gtk/MainWindow.vala:360 msgid "Exit" msgstr "Afsluiten" -#: src/Gtk/MainWindow.vala:422 +#: src/Gtk/MainWindow.vala:426 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Een kernelupgradehulpmiddel voor op Ubuntu gebaseerde distributies" -#: src/Gtk/MainWindow.vala:423 +#: src/Gtk/MainWindow.vala:427 msgid "Forked" msgstr "Geforkt" -#: src/Gtk/MainWindow.vala:423 +#: src/Gtk/MainWindow.vala:427 msgid "Original" msgstr "Origineel" -#: src/Gtk/MainWindow.vala:461 +#: src/Gtk/MainWindow.vala:465 msgid "Updating kernels" msgstr "Kernels bijwerken" -#: src/Gtk/MainWindow.vala:532 +#: src/Gtk/MainWindow.vala:536 msgid "available" msgstr "beschikbaar" -#: src/Gtk/MainWindow.vala:574 src/Gtk/MainWindow.vala:615 -#: src/Gtk/MainWindow.vala:650 +#: src/Gtk/MainWindow.vala:578 src/Gtk/MainWindow.vala:619 +#: src/Gtk/MainWindow.vala:654 msgid "DONE" msgstr "AFGEROND" diff --git a/po/pl.po b/po/pl.po index 34bb4792..f73c1574 100644 --- a/po/pl.po +++ b/po/pl.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-25 07:13-0400\n" +"POT-Creation-Date: 2023-05-25 23:23-0400\n" "PO-Revision-Date: 2023-05-25 13:37+0200\n" "Last-Translator: Matthaiks\n" "Language-Team: Polish\n" @@ -65,8 +65,8 @@ msgstr "zablokowane" msgid "is locked." msgstr "jest zablokowane." -#: src/Common/LinuxKernel.vala:729 src/Gtk/MainWindow.vala:523 -#: src/Gtk/MainWindow.vala:536 +#: src/Common/LinuxKernel.vala:729 src/Gtk/MainWindow.vala:527 +#: src/Gtk/MainWindow.vala:540 msgid "Running" msgstr "Uruchomione" @@ -228,7 +228,7 @@ msgstr "Zainstaluj wybrane jądro" msgid "Uninstall specified kernel" msgstr "Odinstaluj wybrane jądro" -#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:335 +#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:339 msgid "Uninstall all but the highest installed version" msgstr "Odinstaluj wszystkie oprócz najwyższej zainstalowanej wersji" @@ -322,7 +322,7 @@ msgstr "Dostępne %s jądra" msgid "Show" msgstr "Pokaż" -#: src/Console/AppConsole.vala:347 src/Gtk/MainWindow.vala:302 +#: src/Console/AppConsole.vala:347 src/Gtk/MainWindow.vala:306 msgid "Install" msgstr "Zainstaluj" @@ -382,78 +382,72 @@ msgstr "Pokaż wszystkie opcje" msgid "Kernel" msgstr "Jądro" -#: src/Gtk/MainWindow.vala:143 +#: src/Gtk/MainWindow.vala:147 msgid "Lock" -msgstr "Zablokuj" +msgstr "" -#: src/Gtk/MainWindow.vala:160 +#: src/Gtk/MainWindow.vala:164 msgid "Status" msgstr "Status" -#: src/Gtk/MainWindow.vala:172 +#: src/Gtk/MainWindow.vala:176 msgid "Notes" msgstr "Notatki" -#: src/Gtk/MainWindow.vala:312 +#: src/Gtk/MainWindow.vala:316 msgid "Uninstall" msgstr "Odinstaluj" -#: src/Gtk/MainWindow.vala:323 +#: src/Gtk/MainWindow.vala:327 msgid "Changelog, build status, etc" msgstr "Dziennik zmian, status kompilacji itd." -#: src/Gtk/MainWindow.vala:334 +#: src/Gtk/MainWindow.vala:338 msgid "Uninstall Old" msgstr "Odinstaluj stare" -#: src/Gtk/MainWindow.vala:340 +#: src/Gtk/MainWindow.vala:344 msgid "Reload" msgstr "Wczytaj ponownie" -#: src/Gtk/MainWindow.vala:341 -msgid "" -"Delete cache and reload all kernel info\n" -"\n" -"THIS WILL ALSO DELETE ALL USER NOTES" +#: src/Gtk/MainWindow.vala:345 +msgid "Delete and reload all cached kernel info" msgstr "" -"Usuń pamięć podręczną i ponownie załaduj wszystkie informacje o jądrze\n" -"\n" -"SPOWODUJE TO RÓWNIEŻ USUNIĘCIE WSZYSTKICH NOTATEK UŻYTKOWNIKA" -#: src/Gtk/MainWindow.vala:346 src/Gtk/SettingsDialog.vala:49 +#: src/Gtk/MainWindow.vala:350 src/Gtk/SettingsDialog.vala:49 msgid "Settings" msgstr "Ustawienia" -#: src/Gtk/MainWindow.vala:351 +#: src/Gtk/MainWindow.vala:355 msgid "About" msgstr "O programie" -#: src/Gtk/MainWindow.vala:356 +#: src/Gtk/MainWindow.vala:360 msgid "Exit" msgstr "Wyjdź" -#: src/Gtk/MainWindow.vala:422 +#: src/Gtk/MainWindow.vala:426 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Narzędzie uaktualniania jądra dla dystrybucji z rodziny Ubuntu" -#: src/Gtk/MainWindow.vala:423 +#: src/Gtk/MainWindow.vala:427 msgid "Forked" msgstr "Sforkowane" -#: src/Gtk/MainWindow.vala:423 +#: src/Gtk/MainWindow.vala:427 msgid "Original" msgstr "Oryginalne" -#: src/Gtk/MainWindow.vala:461 +#: src/Gtk/MainWindow.vala:465 msgid "Updating kernels" msgstr "Aktualizowanie jąder" -#: src/Gtk/MainWindow.vala:532 +#: src/Gtk/MainWindow.vala:536 msgid "available" msgstr "dostępne" -#: src/Gtk/MainWindow.vala:574 src/Gtk/MainWindow.vala:615 -#: src/Gtk/MainWindow.vala:650 +#: src/Gtk/MainWindow.vala:578 src/Gtk/MainWindow.vala:619 +#: src/Gtk/MainWindow.vala:654 msgid "DONE" msgstr "GOTOWE" diff --git a/po/ru.po b/po/ru.po index 0becc32a..a40ce8b1 100644 --- a/po/ru.po +++ b/po/ru.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-25 07:13-0400\n" +"POT-Creation-Date: 2023-05-25 23:23-0400\n" "PO-Revision-Date: 2023-04-17 20:16+0300\n" "Last-Translator: Danik2343 \n" "Language-Team: Russian\n" @@ -66,8 +66,8 @@ msgstr "" msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:729 src/Gtk/MainWindow.vala:523 -#: src/Gtk/MainWindow.vala:536 +#: src/Common/LinuxKernel.vala:729 src/Gtk/MainWindow.vala:527 +#: src/Gtk/MainWindow.vala:540 msgid "Running" msgstr "Используется" @@ -229,7 +229,7 @@ msgstr "Установить указанную ветку основного я msgid "Uninstall specified kernel" msgstr "Установить указанное ядро" -#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:335 +#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:339 msgid "Uninstall all but the highest installed version" msgstr "Удаление всех установленных версий, кроме самой высокой" @@ -323,7 +323,7 @@ msgstr "Доступно ядро %s" msgid "Show" msgstr "Показать" -#: src/Console/AppConsole.vala:347 src/Gtk/MainWindow.vala:302 +#: src/Console/AppConsole.vala:347 src/Gtk/MainWindow.vala:306 msgid "Install" msgstr "Установить" @@ -383,78 +383,72 @@ msgstr "Показать все параметры" msgid "Kernel" msgstr "Ядро" -#: src/Gtk/MainWindow.vala:143 +#: src/Gtk/MainWindow.vala:147 msgid "Lock" msgstr "" -#: src/Gtk/MainWindow.vala:160 +#: src/Gtk/MainWindow.vala:164 msgid "Status" msgstr "Состояние" -#: src/Gtk/MainWindow.vala:172 +#: src/Gtk/MainWindow.vala:176 msgid "Notes" msgstr "Примечания" -#: src/Gtk/MainWindow.vala:312 +#: src/Gtk/MainWindow.vala:316 msgid "Uninstall" msgstr "Удалить" -#: src/Gtk/MainWindow.vala:323 +#: src/Gtk/MainWindow.vala:327 msgid "Changelog, build status, etc" msgstr "Список изменений, статус сборки и т.д" -#: src/Gtk/MainWindow.vala:334 +#: src/Gtk/MainWindow.vala:338 msgid "Uninstall Old" msgstr "Удалить старые" -#: src/Gtk/MainWindow.vala:340 +#: src/Gtk/MainWindow.vala:344 msgid "Reload" msgstr "Перезагрузить" -#: src/Gtk/MainWindow.vala:341 -msgid "" -"Delete cache and reload all kernel info\n" -"\n" -"THIS WILL ALSO DELETE ALL USER NOTES" +#: src/Gtk/MainWindow.vala:345 +msgid "Delete and reload all cached kernel info" msgstr "" -"Удаление кэша и перезагрузка всей информации о ядре\n" -"\n" -"ЭТО ТАКЖЕ ПРИВЕДЕТ К УДАЛЕНИЮ ВСЕХ ЗАМЕТОК ПОЛЬЗОВАТЕЛЯ" -#: src/Gtk/MainWindow.vala:346 src/Gtk/SettingsDialog.vala:49 +#: src/Gtk/MainWindow.vala:350 src/Gtk/SettingsDialog.vala:49 msgid "Settings" msgstr "Настройки" -#: src/Gtk/MainWindow.vala:351 +#: src/Gtk/MainWindow.vala:355 msgid "About" msgstr "О программе" -#: src/Gtk/MainWindow.vala:356 +#: src/Gtk/MainWindow.vala:360 msgid "Exit" msgstr "Выход" -#: src/Gtk/MainWindow.vala:422 +#: src/Gtk/MainWindow.vala:426 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Программа обновления ядра для дистрибутивов на базе Ubuntu" -#: src/Gtk/MainWindow.vala:423 +#: src/Gtk/MainWindow.vala:427 msgid "Forked" msgstr "Форк" -#: src/Gtk/MainWindow.vala:423 +#: src/Gtk/MainWindow.vala:427 msgid "Original" msgstr "Оригинал" -#: src/Gtk/MainWindow.vala:461 +#: src/Gtk/MainWindow.vala:465 msgid "Updating kernels" msgstr "Обновление ядер" -#: src/Gtk/MainWindow.vala:532 +#: src/Gtk/MainWindow.vala:536 msgid "available" msgstr "доступно" -#: src/Gtk/MainWindow.vala:574 src/Gtk/MainWindow.vala:615 -#: src/Gtk/MainWindow.vala:650 +#: src/Gtk/MainWindow.vala:578 src/Gtk/MainWindow.vala:619 +#: src/Gtk/MainWindow.vala:654 msgid "DONE" msgstr "ГОТОВО" diff --git a/po/sv.po b/po/sv.po index 782fe8ea..34e4f457 100644 --- a/po/sv.po +++ b/po/sv.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-25 07:13-0400\n" +"POT-Creation-Date: 2023-05-25 23:23-0400\n" "PO-Revision-Date: 2018-01-13 16:56+0100\n" "Last-Translator: Åke Engelbrektson \n" "Language-Team:Swedish\n" @@ -66,8 +66,8 @@ msgstr "" msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:729 src/Gtk/MainWindow.vala:523 -#: src/Gtk/MainWindow.vala:536 +#: src/Common/LinuxKernel.vala:729 src/Gtk/MainWindow.vala:527 +#: src/Gtk/MainWindow.vala:540 msgid "Running" msgstr "Körs" @@ -228,7 +228,7 @@ msgstr "Installera angiven huvudkärna" msgid "Uninstall specified kernel" msgstr "Avinstallera angiven kärna" -#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:335 +#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:339 msgid "Uninstall all but the highest installed version" msgstr "Avinstallera alla utom den högsta installerade versionen" @@ -322,7 +322,7 @@ msgstr "Kernel %s tillgängliga" msgid "Show" msgstr "Visa" -#: src/Console/AppConsole.vala:347 src/Gtk/MainWindow.vala:302 +#: src/Console/AppConsole.vala:347 src/Gtk/MainWindow.vala:306 msgid "Install" msgstr "Installera" @@ -382,78 +382,72 @@ msgstr "Visa alla alternativ" msgid "Kernel" msgstr "Kärna" -#: src/Gtk/MainWindow.vala:143 +#: src/Gtk/MainWindow.vala:147 msgid "Lock" msgstr "" -#: src/Gtk/MainWindow.vala:160 +#: src/Gtk/MainWindow.vala:164 msgid "Status" msgstr "Status" -#: src/Gtk/MainWindow.vala:172 +#: src/Gtk/MainWindow.vala:176 msgid "Notes" msgstr "Anteckningar" -#: src/Gtk/MainWindow.vala:312 +#: src/Gtk/MainWindow.vala:316 msgid "Uninstall" msgstr "Avinstallera" -#: src/Gtk/MainWindow.vala:323 +#: src/Gtk/MainWindow.vala:327 msgid "Changelog, build status, etc" msgstr "" -#: src/Gtk/MainWindow.vala:334 +#: src/Gtk/MainWindow.vala:338 msgid "Uninstall Old" msgstr "Avinstallera Gamla" -#: src/Gtk/MainWindow.vala:340 +#: src/Gtk/MainWindow.vala:344 msgid "Reload" msgstr "Reload" -#: src/Gtk/MainWindow.vala:341 -msgid "" -"Delete cache and reload all kernel info\n" -"\n" -"THIS WILL ALSO DELETE ALL USER NOTES" +#: src/Gtk/MainWindow.vala:345 +msgid "Delete and reload all cached kernel info" msgstr "" -"Ta bort cacheminnet och ladda om all kärninformation\n" -"\n" -"DETTA TAR OCKSÅ BORT ALLA ANVÄNDARANTECKNINGAR" -#: src/Gtk/MainWindow.vala:346 src/Gtk/SettingsDialog.vala:49 +#: src/Gtk/MainWindow.vala:350 src/Gtk/SettingsDialog.vala:49 msgid "Settings" msgstr "Inställningar" -#: src/Gtk/MainWindow.vala:351 +#: src/Gtk/MainWindow.vala:355 msgid "About" msgstr "Om" -#: src/Gtk/MainWindow.vala:356 +#: src/Gtk/MainWindow.vala:360 msgid "Exit" msgstr "Utgång" -#: src/Gtk/MainWindow.vala:422 +#: src/Gtk/MainWindow.vala:426 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Kärnuppgraderingsverktyg för Ubuntu-baserade distributioner" -#: src/Gtk/MainWindow.vala:423 +#: src/Gtk/MainWindow.vala:427 msgid "Forked" msgstr "Kluven" -#: src/Gtk/MainWindow.vala:423 +#: src/Gtk/MainWindow.vala:427 msgid "Original" msgstr "Original" -#: src/Gtk/MainWindow.vala:461 +#: src/Gtk/MainWindow.vala:465 msgid "Updating kernels" msgstr "Uppdatera kärnor" -#: src/Gtk/MainWindow.vala:532 +#: src/Gtk/MainWindow.vala:536 msgid "available" msgstr "tillgänglig" -#: src/Gtk/MainWindow.vala:574 src/Gtk/MainWindow.vala:615 -#: src/Gtk/MainWindow.vala:650 +#: src/Gtk/MainWindow.vala:578 src/Gtk/MainWindow.vala:619 +#: src/Gtk/MainWindow.vala:654 msgid "DONE" msgstr "FÄRDIG" diff --git a/po/tr.po b/po/tr.po index b806586f..8a213f6b 100644 --- a/po/tr.po +++ b/po/tr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-25 07:13-0400\n" +"POT-Creation-Date: 2023-05-25 23:23-0400\n" "PO-Revision-Date: 2022-08-06 16:48+0300\n" "Last-Translator: Sabri Ünal \n" "Language-Team: Turkish\n" @@ -66,8 +66,8 @@ msgstr "" msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:729 src/Gtk/MainWindow.vala:523 -#: src/Gtk/MainWindow.vala:536 +#: src/Common/LinuxKernel.vala:729 src/Gtk/MainWindow.vala:527 +#: src/Gtk/MainWindow.vala:540 msgid "Running" msgstr "Çalışıyor" @@ -230,7 +230,7 @@ msgstr "Belirtilen mainline çekirdeğini kur" msgid "Uninstall specified kernel" msgstr "Belirtilen çekirdeğini kaldır" -#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:335 +#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:339 msgid "Uninstall all but the highest installed version" msgstr "En yüksek yüklü sürüm dışındaki tüm sürümleri kaldırın" @@ -324,7 +324,7 @@ msgstr "Çekirdek %s Kullanılabilir" msgid "Show" msgstr "Göster" -#: src/Console/AppConsole.vala:347 src/Gtk/MainWindow.vala:302 +#: src/Console/AppConsole.vala:347 src/Gtk/MainWindow.vala:306 msgid "Install" msgstr "Kur" @@ -384,78 +384,72 @@ msgstr "Tüm seçenekleri göster" msgid "Kernel" msgstr "Çekirdek" -#: src/Gtk/MainWindow.vala:143 +#: src/Gtk/MainWindow.vala:147 msgid "Lock" msgstr "" -#: src/Gtk/MainWindow.vala:160 +#: src/Gtk/MainWindow.vala:164 msgid "Status" msgstr "Durum" -#: src/Gtk/MainWindow.vala:172 +#: src/Gtk/MainWindow.vala:176 msgid "Notes" msgstr "Notlar" -#: src/Gtk/MainWindow.vala:312 +#: src/Gtk/MainWindow.vala:316 msgid "Uninstall" msgstr "Kaldır" -#: src/Gtk/MainWindow.vala:323 +#: src/Gtk/MainWindow.vala:327 msgid "Changelog, build status, etc" msgstr "" -#: src/Gtk/MainWindow.vala:334 +#: src/Gtk/MainWindow.vala:338 msgid "Uninstall Old" msgstr "Eskileri Kaldır" -#: src/Gtk/MainWindow.vala:340 +#: src/Gtk/MainWindow.vala:344 msgid "Reload" msgstr "Arjantin" -#: src/Gtk/MainWindow.vala:341 -msgid "" -"Delete cache and reload all kernel info\n" -"\n" -"THIS WILL ALSO DELETE ALL USER NOTES" +#: src/Gtk/MainWindow.vala:345 +msgid "Delete and reload all cached kernel info" msgstr "" -"Önbelleği silme ve tüm çekirdek bilgilerini yeniden yükleme\n" -"\n" -"BU AYNI ZAMANDA TÜM KULLANICI NOTLARINI DA SILER" -#: src/Gtk/MainWindow.vala:346 src/Gtk/SettingsDialog.vala:49 +#: src/Gtk/MainWindow.vala:350 src/Gtk/SettingsDialog.vala:49 msgid "Settings" msgstr "Ayarlar" -#: src/Gtk/MainWindow.vala:351 +#: src/Gtk/MainWindow.vala:355 msgid "About" msgstr "Hakkında" -#: src/Gtk/MainWindow.vala:356 +#: src/Gtk/MainWindow.vala:360 msgid "Exit" msgstr "Çıkış" -#: src/Gtk/MainWindow.vala:422 +#: src/Gtk/MainWindow.vala:426 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Ubuntu tabanlı dağıtımlar için çekirdek güncelleme aracı" -#: src/Gtk/MainWindow.vala:423 +#: src/Gtk/MainWindow.vala:427 msgid "Forked" msgstr "Çatallandı" -#: src/Gtk/MainWindow.vala:423 +#: src/Gtk/MainWindow.vala:427 msgid "Original" msgstr "Özgün" -#: src/Gtk/MainWindow.vala:461 +#: src/Gtk/MainWindow.vala:465 msgid "Updating kernels" msgstr "Çekirdekleri güncelleme" -#: src/Gtk/MainWindow.vala:532 +#: src/Gtk/MainWindow.vala:536 msgid "available" msgstr "mevcut" -#: src/Gtk/MainWindow.vala:574 src/Gtk/MainWindow.vala:615 -#: src/Gtk/MainWindow.vala:650 +#: src/Gtk/MainWindow.vala:578 src/Gtk/MainWindow.vala:619 +#: src/Gtk/MainWindow.vala:654 msgid "DONE" msgstr "YAPILMIŞ" diff --git a/po/uk.po b/po/uk.po index 22a56613..6bc051f7 100644 --- a/po/uk.po +++ b/po/uk.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-25 07:13-0400\n" +"POT-Creation-Date: 2023-05-25 23:23-0400\n" "PO-Revision-Date: 2019-07-25 11:00+0300\n" "Last-Translator: Serhii Golovko \n" "Language-Team: Ukranian\n" @@ -66,8 +66,8 @@ msgstr "" msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:729 src/Gtk/MainWindow.vala:523 -#: src/Gtk/MainWindow.vala:536 +#: src/Common/LinuxKernel.vala:729 src/Gtk/MainWindow.vala:527 +#: src/Gtk/MainWindow.vala:540 msgid "Running" msgstr "Використовується" @@ -229,7 +229,7 @@ msgstr "Встановіть конкретне основне ядро" msgid "Uninstall specified kernel" msgstr "Видаліть конкретні ядра" -#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:335 +#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:339 msgid "Uninstall all but the highest installed version" msgstr "Видаліть усі, крім найвищої встановленої версії" @@ -323,7 +323,7 @@ msgstr "Ядро %s Доступне" msgid "Show" msgstr "Показати" -#: src/Console/AppConsole.vala:347 src/Gtk/MainWindow.vala:302 +#: src/Console/AppConsole.vala:347 src/Gtk/MainWindow.vala:306 msgid "Install" msgstr "Встановити" @@ -383,78 +383,72 @@ msgstr "Показати усі параметри" msgid "Kernel" msgstr "Ядро" -#: src/Gtk/MainWindow.vala:143 +#: src/Gtk/MainWindow.vala:147 msgid "Lock" msgstr "" -#: src/Gtk/MainWindow.vala:160 +#: src/Gtk/MainWindow.vala:164 msgid "Status" msgstr "Стан" -#: src/Gtk/MainWindow.vala:172 +#: src/Gtk/MainWindow.vala:176 msgid "Notes" msgstr "Нотатки" -#: src/Gtk/MainWindow.vala:312 +#: src/Gtk/MainWindow.vala:316 msgid "Uninstall" msgstr "Видалити" -#: src/Gtk/MainWindow.vala:323 +#: src/Gtk/MainWindow.vala:327 msgid "Changelog, build status, etc" msgstr "Журнал змін, статус збірки тощо" -#: src/Gtk/MainWindow.vala:334 +#: src/Gtk/MainWindow.vala:338 msgid "Uninstall Old" msgstr "Видалити старе" -#: src/Gtk/MainWindow.vala:340 +#: src/Gtk/MainWindow.vala:344 msgid "Reload" msgstr "Перезавантажити" -#: src/Gtk/MainWindow.vala:341 -msgid "" -"Delete cache and reload all kernel info\n" -"\n" -"THIS WILL ALSO DELETE ALL USER NOTES" +#: src/Gtk/MainWindow.vala:345 +msgid "Delete and reload all cached kernel info" msgstr "" -"Видаліть кеш і перезавантажте всю інформацію про ядро\n" -"\n" -"ЦЕ ТАКОЖ ВИДАЛИТЬ УСІ НОТАТКИ КОРИСТУВАЧА" -#: src/Gtk/MainWindow.vala:346 src/Gtk/SettingsDialog.vala:49 +#: src/Gtk/MainWindow.vala:350 src/Gtk/SettingsDialog.vala:49 msgid "Settings" msgstr "Налаштування" -#: src/Gtk/MainWindow.vala:351 +#: src/Gtk/MainWindow.vala:355 msgid "About" msgstr "Про программу" -#: src/Gtk/MainWindow.vala:356 +#: src/Gtk/MainWindow.vala:360 msgid "Exit" msgstr "Вихід" -#: src/Gtk/MainWindow.vala:422 +#: src/Gtk/MainWindow.vala:426 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Програма оновлення ядра для дистрибутивів на базі Ubuntu" -#: src/Gtk/MainWindow.vala:423 +#: src/Gtk/MainWindow.vala:427 msgid "Forked" msgstr "Двоєний" -#: src/Gtk/MainWindow.vala:423 +#: src/Gtk/MainWindow.vala:427 msgid "Original" msgstr "Оригінал" -#: src/Gtk/MainWindow.vala:461 +#: src/Gtk/MainWindow.vala:465 msgid "Updating kernels" msgstr "Оновлення ядер" -#: src/Gtk/MainWindow.vala:532 +#: src/Gtk/MainWindow.vala:536 msgid "available" msgstr "доступний" -#: src/Gtk/MainWindow.vala:574 src/Gtk/MainWindow.vala:615 -#: src/Gtk/MainWindow.vala:650 +#: src/Gtk/MainWindow.vala:578 src/Gtk/MainWindow.vala:619 +#: src/Gtk/MainWindow.vala:654 msgid "DONE" msgstr "ГОТОВО" diff --git a/sort_by_locked.png b/sort_by_locked.png new file mode 100644 index 0000000000000000000000000000000000000000..99cefb2f3f4a1a2df9b494416865771e843be6e1 GIT binary patch literal 129769 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

IjW~`oUbygH)%3ntm-Hm2zZ6d^t$^dM);)mM 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

yx**W5%=IFsud6vi8o4W@@ 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�RK#VdJXmxCEcz>$sWhv9`U|yE^p4)`QTr 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Ã z+Hr43h!CG4D?nh)hcL9Bl;BeEd$b8&O61c@!CwAfmPsduu(|&1BPDV)^pM8ilC43! zlgNpOCb*vJ9+j+$aHu`S^mO)L-!&p+^e5Ga#djD%*lv7y2_z~pzkVf`UoYY zBM0NQc5FvWZOWvv`qc>@gbKxYrhi^GPac-5Cnr}k%4GD9!U=^=!ZX!bkjA4pgO7?f z(@CY7`f;0^STq4IxsTh_NH+GdYVI!LJhW&lFM@j?c}NTUz$#00?yt-EUCR}^R_wcM zoo_S#uTzL(9{62Z;N3e?db0j9P$|pbd2V8hOrVpq+NuQ*3y_FTAG_|U1}cDcXG&C{ z2e z?iE_`r2U`c^&^6^l)3-?(?o(RNc--8J>}p1_O4|JZAq_Nk-GW23`u8Z^8%5)h!cMs|H-AZB8RzRej|%GLPeNkPJ_Kx%hf3Cygn_MkrCM% zLa=Y&8vcxL`L6o%@J&6xQ~3ltohvKL5*-;5YsyQEl_JdgEA@JWAu5uQ>PxjIrK$~h z*E2&M^MNH2n&FEJc&})QhgelAj60r=@t2noE0Djh-f%&VyNb=v!>x3gc4fNJw$WbTo_W!hc#$0vd0e)dc2ph55gdPB;Ad|X}@C#zZ75-n*`QeRX@##F{#jC(Vu{rg_QK~v#k zdu*g6EKC-Wx`wrdPrgbv(w=!M50rR{>aE@H1#2pilWUzO?E>>QC0yWYH6rI3Z-%Pv zf`Ju@5A3+O2Bt@Vx?{%!TFI!yOpD32OYw&0lwGGDo#9IrEs$od8+y$<;!Rg2_MT=w zjB9{G(~`$Zg?$T^B-IjbACzG4lLt<6KB0q_nsS#6Ia_rschTneds*Jt;dRL}o|Z0N z{sdn9(`_-;#RfO`ayacdNOs1|u7|LG(^ xLdO6u|jJEFf*=cwbWLXwVAUR-&74RjY@VY`=O7g0&N?)1={y&O|bJhR= literal 0 HcmV?d00001 diff --git a/sort_by_notes.png b/sort_by_notes.png new file mode 100644 index 0000000000000000000000000000000000000000..5cf4501b37c19c30c533aeaeb5c96673c0ac4d17 GIT binary patch literal 126932 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

FWt_GEHgW;R4&h|gE5^mBb5G#Z0} z80e)>(km~U-gkxzg$6sKnrtD;o_W8`-^aI=9FN+qvXrPyBwHtHv&f;?aV1=QBHg?R zzo_z%2#fXA-&D@7U?I{TrJPLRZXTqV?oioqzx?|VC#7kU7sxD;psi8-#bTq>=+_EW zNtxToA7fDr(V#yCp#g}NW%e?fsiVQg-u=$?M59AYr6F}Gd3RS9EZuR|e zY=HLS_OsJw*D-Wo}KWiMyoz*+1QH#aSgMAgK)#;J@nK*v}-V&Y_6K`aVF zq_9k%L8HFMMvJ$bDuNKjl@ix7)J+wV_1Lx;s)e*KEBzW>j*%@x&T(oFGUn!FotS00 zcO|TDAkDD+TBXL z#QN0O&TzC=$Z(>U@b8YXI>@huj`ZfP<4O{e|eKf(6SO!$gPN8+- zVP;fPH5kasP)0PlYO`-Jt9ZBHO03tV^yKiuk3A`Iiw3K3q1HXSN+@XAbStYOZ)_h$ zg=bm6rD3v7m1#h2gxX*)XH;ruojaCKYZ3cqRIX!(ROjw<>6WQNdB&*3 zJ~3G2a_I`sIE+K}z+&>)FX|1m<+B9P<=64LEI4f>V^l+MNyfxFrRBOr)WY0v=C&`gp~z{DU_pLW6}EV;$7_QddMz-Y4Y*oHGrx+T}&P_e={4|m&US8Gl9z` z(5tq)P?_FYB^6oHi{5P6!2W_XJQ8<-Okj26xZz)MBJ;w}XK4r9^LK=^r+wjdX;V1l6(9z0Rb`;z;rv8^tQ4GRzQQF>AQQ>zziz)dzQG!CBGz0k?aHS zu#am+Ecw~r*gu^YDS5Hf?surO#<0nURPs1F^RCKJC`;D`%e18F%mfTFXE-z#y-*_uz zX@>Fs8ReGHM%SquKxZG%xpj|O)2y$O;?)uwHGQ+yjU*b!vM*aqcD308_Y(*iZtI!| zGDb>}FzI1C^O*p|Nk_qSs05<6kJtgb7QeC@mgNMJ2{dN5wF%8d<3N`}Bm4fDkD*+$ zqN9=Jv`4Z;$~lX&diUb<>NkK}2{z5L#h7;^!cG`4vERn7s48nE$sq@!3A5;IUAT6= zWYa+&B1p6d+;{O4t79H#%Q3Y^zl(CSowumG;hIIFEQ^&o$Jur9;wqKavnHRm?JH}d zwG4<$tKNXNFyzF;K?gM4$GjljNf8l)85C|PlWc6mt=@PzT_Na{ylWV?k;KNMoz&LH zr;(HcvgeQVM0w6>dHZ+rYU|W8tIR8RhT)utRWhae@>@u629RA<#%TMcMw{3L>tW

$iO^O+N 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 Xy^4z@^d6f1+*#ArGSsYAcYN`Gfqql@ literal 0 HcmV?d00001 diff --git a/sort_by_status.png b/sort_by_status.png new file mode 100644 index 0000000000000000000000000000000000000000..ba7a463ab8c3581e4ffe0b8885c2c4de6ee9d2ac GIT binary patch literal 133052 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

mo`97pVSYlApnx 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 literal 0 HcmV?d00001 diff --git a/src/Gtk/MainWindow.vala b/src/Gtk/MainWindow.vala index 98ead9a3..e0f63420 100644 --- a/src/Gtk/MainWindow.vala +++ b/src/Gtk/MainWindow.vala @@ -138,12 +138,16 @@ public class MainWindow : Gtk.Window { col.add_attribute(k_version_text, "text", COL.VERSION); // locked + var k_lock_toggle = new CellRendererToggle(); +#if LOCK_TOGGLES_IN_KERNEL_COLUMN // not sortable + col.pack_end(k_lock_toggle, false); +#else // sortable col = new TreeViewColumn(); col.set_sort_column_id(COL.LOCKED); col.title = _("Lock"); - var k_lock_toggle = new CellRendererToggle(); col.pack_start(k_lock_toggle, false); tv.append_column (col); +#endif col.add_attribute(k_lock_toggle,"active", COL.LOCKED); k_lock_toggle.toggled.connect((toggle,path) => { TreeIter iter; @@ -338,7 +342,7 @@ public class MainWindow : Gtk.Window { // reload button = new Gtk.Button.with_label (_("Reload")); - button.set_tooltip_text(_("Delete cache and reload all kernel info\n\nTHIS WILL ALSO DELETE ALL USER NOTES")); + button.set_tooltip_text(_("Delete and reload all cached kernel info")); hbox.pack_start (button, true, true, 0); button.clicked.connect(reload_cache); From 4b97e3be928f961d701c7f313322ff661c1caba4 Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Thu, 25 May 2023 23:36:48 -0400 Subject: [PATCH 330/567] 1.3.1 --- .deb_build_number.mak | 4 ++-- BRANDING.mak | 2 +- debian/changelog | 6 ++++++ 3 files changed, 9 insertions(+), 3 deletions(-) diff --git a/.deb_build_number.mak b/.deb_build_number.mak index d19e640c..63705e50 100644 --- a/.deb_build_number.mak +++ b/.deb_build_number.mak @@ -1,3 +1,3 @@ # This file is generated by Makefile "make deb_build_number" -DEB_PKG_VERSION := 1.3.0 -DEB_BUILD_NUMBER := 0003 +DEB_PKG_VERSION := 1.3.1 +DEB_BUILD_NUMBER := 0000 diff --git a/BRANDING.mak b/BRANDING.mak index ece913f9..67974cb1 100644 --- a/BRANDING.mak +++ b/BRANDING.mak @@ -3,7 +3,7 @@ VERSION_MAJOR = 1 VERSION_MINOR = 3 -VERSION_MICRO = 0 +VERSION_MICRO = 1 BRANDING_SHORTNAME = mainline BRANDING_LONGNAME = Ubuntu Mainline Kernel Installer BRANDING_AUTHORNAME = Brian K. White diff --git a/debian/changelog b/debian/changelog index abb76759..dd9818c5 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +mainline (1.3.1) unstable; urgency=medium + + * just update a tooltip message - Reload does not delete user notes any more + + -- Brian K. White Thu, 25 May 2023 23:33:48 -0400 + mainline (1.3.0) unstable; urgency=medium * individual kernels may be locked to prevent installing or uninstalling From 0781ea61753167ce939f8339f7acb31a2533fa40 Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Thu, 25 May 2023 23:45:24 -0400 Subject: [PATCH 331/567] readme typo --- README.md | 2 +- README.md.src | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 6ab1c7d3..3e354470 100644 --- a/README.md +++ b/README.md @@ -105,7 +105,7 @@ The gui "Uninstall Old" button and the cli "--uninstall-old" command ignore that The cli "--install-latest" and "--notify" for the background notification ignore that kernel. The kernel is still visible, you can still write notes and pull up the PPA info page and toggle the lock to unlock it. -This can be handy to keep a stock distribution kernel from being uninstalled by "Uninstall Old", or prevent a known buggy kernel from being installed by "--install-latest" and preven "--notify" from generating a notification to install it. +This can be handy to keep a stock distribution kernel from being uninstalled by "Uninstall Old", or prevent a known buggy kernel from being installed by "--install-latest" and prevent "--notify" from generating a notification to install it. ## Notes Clicking on the Notes field allows to attach arbitrary note text to a kernel. diff --git a/README.md.src b/README.md.src index f4aedfc4..bce1d081 100644 --- a/README.md.src +++ b/README.md.src @@ -105,7 +105,7 @@ The gui "Uninstall Old" button and the cli "--uninstall-old" command ignore that The cli "--install-latest" and "--notify" for the background notification ignore that kernel. The kernel is still visible, you can still write notes and pull up the PPA info page and toggle the lock to unlock it. -This can be handy to keep a stock distribution kernel from being uninstalled by "Uninstall Old", or prevent a known buggy kernel from being installed by "--install-latest" and preven "--notify" from generating a notification to install it. +This can be handy to keep a stock distribution kernel from being uninstalled by "Uninstall Old", or prevent a known buggy kernel from being installed by "--install-latest" and prevent "--notify" from generating a notification to install it. ## Notes Clicking on the Notes field allows to attach arbitrary note text to a kernel. From 2fd070812564db8db9491661c9ad0ff8937b628b Mon Sep 17 00:00:00 2001 From: cappelikan Date: Fri, 26 May 2023 14:05:33 +0300 Subject: [PATCH 332/567] Update uk.po --- po/uk.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/uk.po b/po/uk.po index 6bc051f7..beea9683 100644 --- a/po/uk.po +++ b/po/uk.po @@ -59,12 +59,12 @@ msgstr "Знайдено встановленим" #: src/Common/LinuxKernel.vala:411 msgid "locked" -msgstr "" +msgstr "заблокований" #: src/Common/LinuxKernel.vala:495 src/Common/LinuxKernel.vala:1031 #: src/Common/LinuxKernel.vala:1075 src/Common/LinuxKernel.vala:1142 msgid "is locked." -msgstr "" +msgstr "заблоковано." #: src/Common/LinuxKernel.vala:729 src/Gtk/MainWindow.vala:527 #: src/Gtk/MainWindow.vala:540 From 01448528a3429868a21641e357db5f1f434c964f Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Fri, 26 May 2023 13:51:43 -0400 Subject: [PATCH 333/567] remove a redundant tv_refresh() --- po/de.po | 48 +++++++-------- po/el.po | 48 +++++++-------- po/es.po | 48 +++++++-------- po/fr.po | 48 +++++++-------- po/hr.po | 48 +++++++-------- po/it.po | 48 +++++++-------- po/ko.po | 48 +++++++-------- po/messages.pot | 50 ++++++++-------- po/nl.po | 48 +++++++-------- po/pl.po | 48 +++++++-------- po/ru.po | 48 +++++++-------- po/sv.po | 48 +++++++-------- po/tr.po | 48 +++++++-------- src/Console/AppConsole.vala | 2 +- src/Gtk/MainWindow.vala | 113 +++++++++++++++++------------------- 15 files changed, 368 insertions(+), 373 deletions(-) diff --git a/po/de.po b/po/de.po index f3c10b9e..11b85685 100644 --- a/po/de.po +++ b/po/de.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-25 23:23-0400\n" +"POT-Creation-Date: 2023-05-26 13:36-0400\n" "PO-Revision-Date: 2023-02-20 18:40+0100\n" "Last-Translator: Marvin Meysel \n" "Language-Team: German\n" @@ -66,8 +66,8 @@ msgstr "" msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:729 src/Gtk/MainWindow.vala:527 -#: src/Gtk/MainWindow.vala:540 +#: src/Common/LinuxKernel.vala:729 src/Gtk/MainWindow.vala:522 +#: src/Gtk/MainWindow.vala:535 msgid "Running" msgstr "Läuft" @@ -230,7 +230,7 @@ msgstr "Angegebenen Mainline-Kernel installieren" msgid "Uninstall specified kernel" msgstr "Deinstallation des angegebenen Kernels" -#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:339 +#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:338 msgid "Uninstall all but the highest installed version" msgstr "Deinstallieren Sie alle bis auf die höchste installierte Version" @@ -326,7 +326,7 @@ msgstr "Kernel %s verfügbar" msgid "Show" msgstr "Zeigen" -#: src/Console/AppConsole.vala:347 src/Gtk/MainWindow.vala:306 +#: src/Console/AppConsole.vala:347 src/Gtk/MainWindow.vala:305 msgid "Install" msgstr "Installieren" @@ -382,76 +382,76 @@ msgstr "Zeige Debug Informationen" msgid "Show all options" msgstr "Alle Optionen anzeigen" -#: src/Gtk/MainWindow.vala:124 +#: src/Gtk/MainWindow.vala:123 msgid "Kernel" msgstr "Kernel" -#: src/Gtk/MainWindow.vala:147 +#: src/Gtk/MainWindow.vala:145 msgid "Lock" msgstr "" -#: src/Gtk/MainWindow.vala:164 +#: src/Gtk/MainWindow.vala:162 msgid "Status" msgstr "Status" -#: src/Gtk/MainWindow.vala:176 +#: src/Gtk/MainWindow.vala:174 msgid "Notes" msgstr "Notizen" -#: src/Gtk/MainWindow.vala:316 +#: src/Gtk/MainWindow.vala:315 msgid "Uninstall" msgstr "Deinstallieren" -#: src/Gtk/MainWindow.vala:327 +#: src/Gtk/MainWindow.vala:326 msgid "Changelog, build status, etc" msgstr "" -#: src/Gtk/MainWindow.vala:338 +#: src/Gtk/MainWindow.vala:337 msgid "Uninstall Old" msgstr "Alte deinstallieren" -#: src/Gtk/MainWindow.vala:344 +#: src/Gtk/MainWindow.vala:343 msgid "Reload" msgstr "Nachladen" -#: src/Gtk/MainWindow.vala:345 +#: src/Gtk/MainWindow.vala:344 msgid "Delete and reload all cached kernel info" msgstr "" -#: src/Gtk/MainWindow.vala:350 src/Gtk/SettingsDialog.vala:49 +#: src/Gtk/MainWindow.vala:349 src/Gtk/SettingsDialog.vala:49 msgid "Settings" msgstr "Einstellungen" -#: src/Gtk/MainWindow.vala:355 +#: src/Gtk/MainWindow.vala:354 msgid "About" msgstr "Über" -#: src/Gtk/MainWindow.vala:360 +#: src/Gtk/MainWindow.vala:359 msgid "Exit" msgstr "Ausgang" -#: src/Gtk/MainWindow.vala:426 +#: src/Gtk/MainWindow.vala:425 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Kernel-Upgrade-Dienstprogramm für Ubuntu-basierte Distributionen" -#: src/Gtk/MainWindow.vala:427 +#: src/Gtk/MainWindow.vala:426 msgid "Forked" msgstr "Gegabelte" -#: src/Gtk/MainWindow.vala:427 +#: src/Gtk/MainWindow.vala:426 msgid "Original" msgstr "Original" -#: src/Gtk/MainWindow.vala:465 +#: src/Gtk/MainWindow.vala:463 msgid "Updating kernels" msgstr "Aktualisieren von Kernels" -#: src/Gtk/MainWindow.vala:536 +#: src/Gtk/MainWindow.vala:531 msgid "available" msgstr "Verfügbar" -#: src/Gtk/MainWindow.vala:578 src/Gtk/MainWindow.vala:619 -#: src/Gtk/MainWindow.vala:654 +#: src/Gtk/MainWindow.vala:573 src/Gtk/MainWindow.vala:614 +#: src/Gtk/MainWindow.vala:649 msgid "DONE" msgstr "FERTIG" diff --git a/po/el.po b/po/el.po index d0d006ef..e095ca7d 100644 --- a/po/el.po +++ b/po/el.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-25 23:23-0400\n" +"POT-Creation-Date: 2023-05-26 13:36-0400\n" "PO-Revision-Date: 2023-01-10 02:03-0600\n" "Last-Translator: Vasilis Kosmidis \n" "Language-Team: Greek\n" @@ -66,8 +66,8 @@ msgstr "" msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:729 src/Gtk/MainWindow.vala:527 -#: src/Gtk/MainWindow.vala:540 +#: src/Common/LinuxKernel.vala:729 src/Gtk/MainWindow.vala:522 +#: src/Gtk/MainWindow.vala:535 msgid "Running" msgstr "Ενεργός" @@ -230,7 +230,7 @@ msgstr "Εγκατάσταση του καθορισμένου mainline πυρή msgid "Uninstall specified kernel" msgstr "Απεγκατάσταση του καθορισμένου πυρήνα" -#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:339 +#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:338 msgid "Uninstall all but the highest installed version" msgstr "Απεγκαταστήστε όλες εκτός από την υψηλότερη εγκατεστημένη έκδοση" @@ -326,7 +326,7 @@ msgstr "Πυρήνας %s διαθέσιμος" msgid "Show" msgstr "Προβολή" -#: src/Console/AppConsole.vala:347 src/Gtk/MainWindow.vala:306 +#: src/Console/AppConsole.vala:347 src/Gtk/MainWindow.vala:305 msgid "Install" msgstr "Εγκατάσταση" @@ -382,76 +382,76 @@ msgstr "Εκτύπωση πληροφοριών εντοπισμού σφαλμ msgid "Show all options" msgstr "Εμφάνιση όλων των επιλογών" -#: src/Gtk/MainWindow.vala:124 +#: src/Gtk/MainWindow.vala:123 msgid "Kernel" msgstr "Πυρήνας" -#: src/Gtk/MainWindow.vala:147 +#: src/Gtk/MainWindow.vala:145 msgid "Lock" msgstr "" -#: src/Gtk/MainWindow.vala:164 +#: src/Gtk/MainWindow.vala:162 msgid "Status" msgstr "Κατάσταση" -#: src/Gtk/MainWindow.vala:176 +#: src/Gtk/MainWindow.vala:174 msgid "Notes" msgstr "Σημειώσεις" -#: src/Gtk/MainWindow.vala:316 +#: src/Gtk/MainWindow.vala:315 msgid "Uninstall" msgstr "Απεγκατάσταση" -#: src/Gtk/MainWindow.vala:327 +#: src/Gtk/MainWindow.vala:326 msgid "Changelog, build status, etc" msgstr "" -#: src/Gtk/MainWindow.vala:338 +#: src/Gtk/MainWindow.vala:337 msgid "Uninstall Old" msgstr "Απεγκατάσταση παλαιών" -#: src/Gtk/MainWindow.vala:344 +#: src/Gtk/MainWindow.vala:343 msgid "Reload" msgstr "Δροσίζω" -#: src/Gtk/MainWindow.vala:345 +#: src/Gtk/MainWindow.vala:344 msgid "Delete and reload all cached kernel info" msgstr "" -#: src/Gtk/MainWindow.vala:350 src/Gtk/SettingsDialog.vala:49 +#: src/Gtk/MainWindow.vala:349 src/Gtk/SettingsDialog.vala:49 msgid "Settings" msgstr "Ρυθμίσεις" -#: src/Gtk/MainWindow.vala:355 +#: src/Gtk/MainWindow.vala:354 msgid "About" msgstr "Σχετικά" -#: src/Gtk/MainWindow.vala:360 +#: src/Gtk/MainWindow.vala:359 msgid "Exit" msgstr "Έξοδος" -#: src/Gtk/MainWindow.vala:426 +#: src/Gtk/MainWindow.vala:425 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Πρόγραμμα αναβάθμισης πυρήνα για διανομές που βασίζονται στο Ubuntu" -#: src/Gtk/MainWindow.vala:427 +#: src/Gtk/MainWindow.vala:426 msgid "Forked" msgstr "Forked" -#: src/Gtk/MainWindow.vala:427 +#: src/Gtk/MainWindow.vala:426 msgid "Original" msgstr "Πρωτότυπο" -#: src/Gtk/MainWindow.vala:465 +#: src/Gtk/MainWindow.vala:463 msgid "Updating kernels" msgstr "Ενημέρωση πυρήνων" -#: src/Gtk/MainWindow.vala:536 +#: src/Gtk/MainWindow.vala:531 msgid "available" msgstr "διαθέσιμος" -#: src/Gtk/MainWindow.vala:578 src/Gtk/MainWindow.vala:619 -#: src/Gtk/MainWindow.vala:654 +#: src/Gtk/MainWindow.vala:573 src/Gtk/MainWindow.vala:614 +#: src/Gtk/MainWindow.vala:649 msgid "DONE" msgstr "ΈΤΟΙΜΟ" diff --git a/po/es.po b/po/es.po index 11362fa0..a41d7ab0 100644 --- a/po/es.po +++ b/po/es.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-25 23:23-0400\n" +"POT-Creation-Date: 2023-05-26 13:36-0400\n" "PO-Revision-Date: 2018-01-03 02:03-0600\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish\n" @@ -66,8 +66,8 @@ msgstr "" msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:729 src/Gtk/MainWindow.vala:527 -#: src/Gtk/MainWindow.vala:540 +#: src/Common/LinuxKernel.vala:729 src/Gtk/MainWindow.vala:522 +#: src/Gtk/MainWindow.vala:535 msgid "Running" msgstr "En ejecución" @@ -230,7 +230,7 @@ msgstr "Instalar núcleo troncal especificado" msgid "Uninstall specified kernel" msgstr "Desinstalar el kernel especificado" -#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:339 +#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:338 msgid "Uninstall all but the highest installed version" msgstr "Desinstale todas las versiones instaladas excepto la más alta" @@ -324,7 +324,7 @@ msgstr "Kernel %s Disponible" msgid "Show" msgstr "Mostrar" -#: src/Console/AppConsole.vala:347 src/Gtk/MainWindow.vala:306 +#: src/Console/AppConsole.vala:347 src/Gtk/MainWindow.vala:305 msgid "Install" msgstr "Instalar" @@ -380,77 +380,77 @@ msgstr "Mostrar información de depuración" msgid "Show all options" msgstr "Mostrar todas las opciones" -#: src/Gtk/MainWindow.vala:124 +#: src/Gtk/MainWindow.vala:123 msgid "Kernel" msgstr "Núcleo" -#: src/Gtk/MainWindow.vala:147 +#: src/Gtk/MainWindow.vala:145 msgid "Lock" msgstr "" -#: src/Gtk/MainWindow.vala:164 +#: src/Gtk/MainWindow.vala:162 msgid "Status" msgstr "Estado" -#: src/Gtk/MainWindow.vala:176 +#: src/Gtk/MainWindow.vala:174 msgid "Notes" msgstr "Notas" -#: src/Gtk/MainWindow.vala:316 +#: src/Gtk/MainWindow.vala:315 msgid "Uninstall" msgstr "Desinstalar" -#: src/Gtk/MainWindow.vala:327 +#: src/Gtk/MainWindow.vala:326 msgid "Changelog, build status, etc" msgstr "" -#: src/Gtk/MainWindow.vala:338 +#: src/Gtk/MainWindow.vala:337 msgid "Uninstall Old" msgstr "Desinstalar Antiguo" -#: src/Gtk/MainWindow.vala:344 +#: src/Gtk/MainWindow.vala:343 msgid "Reload" msgstr "Recargar" -#: src/Gtk/MainWindow.vala:345 +#: src/Gtk/MainWindow.vala:344 msgid "Delete and reload all cached kernel info" msgstr "" -#: src/Gtk/MainWindow.vala:350 src/Gtk/SettingsDialog.vala:49 +#: src/Gtk/MainWindow.vala:349 src/Gtk/SettingsDialog.vala:49 msgid "Settings" msgstr "Configuración" -#: src/Gtk/MainWindow.vala:355 +#: src/Gtk/MainWindow.vala:354 msgid "About" msgstr "Acerca de" -#: src/Gtk/MainWindow.vala:360 +#: src/Gtk/MainWindow.vala:359 msgid "Exit" msgstr "Salida" -#: src/Gtk/MainWindow.vala:426 +#: src/Gtk/MainWindow.vala:425 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "" "Herramienta de renovación de núcleo para distribuciones basadas en Ubuntu" -#: src/Gtk/MainWindow.vala:427 +#: src/Gtk/MainWindow.vala:426 msgid "Forked" msgstr "Bifurcada" -#: src/Gtk/MainWindow.vala:427 +#: src/Gtk/MainWindow.vala:426 msgid "Original" msgstr "Original" -#: src/Gtk/MainWindow.vala:465 +#: src/Gtk/MainWindow.vala:463 msgid "Updating kernels" msgstr "Actualización de kernels" -#: src/Gtk/MainWindow.vala:536 +#: src/Gtk/MainWindow.vala:531 msgid "available" msgstr "disponibles" -#: src/Gtk/MainWindow.vala:578 src/Gtk/MainWindow.vala:619 -#: src/Gtk/MainWindow.vala:654 +#: src/Gtk/MainWindow.vala:573 src/Gtk/MainWindow.vala:614 +#: src/Gtk/MainWindow.vala:649 msgid "DONE" msgstr "HECHO" diff --git a/po/fr.po b/po/fr.po index ee8ae534..b05f1e14 100644 --- a/po/fr.po +++ b/po/fr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-25 23:23-0400\n" +"POT-Creation-Date: 2023-05-26 13:36-0400\n" "PO-Revision-Date: 2018-08-05 15:50+0200\n" "Last-Translator: Yolateng0 \n" "Language-Team: French\n" @@ -66,8 +66,8 @@ msgstr "" msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:729 src/Gtk/MainWindow.vala:527 -#: src/Gtk/MainWindow.vala:540 +#: src/Common/LinuxKernel.vala:729 src/Gtk/MainWindow.vala:522 +#: src/Gtk/MainWindow.vala:535 msgid "Running" msgstr "Actuel" @@ -230,7 +230,7 @@ msgstr "Installer le noyau mainline spécifié" msgid "Uninstall specified kernel" msgstr "Désinstaller le noyau spécifié" -#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:339 +#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:338 msgid "Uninstall all but the highest installed version" msgstr "Désinstallez toutes le version installées, sauf la plus élevée" @@ -326,7 +326,7 @@ msgstr "Paquet %s disponibles" msgid "Show" msgstr "Montrer" -#: src/Console/AppConsole.vala:347 src/Gtk/MainWindow.vala:306 +#: src/Console/AppConsole.vala:347 src/Gtk/MainWindow.vala:305 msgid "Install" msgstr "Installer" @@ -382,78 +382,78 @@ msgstr "Afficher les informations de débogage" msgid "Show all options" msgstr "Afficher toutes les options" -#: src/Gtk/MainWindow.vala:124 +#: src/Gtk/MainWindow.vala:123 msgid "Kernel" msgstr "Noyau" -#: src/Gtk/MainWindow.vala:147 +#: src/Gtk/MainWindow.vala:145 msgid "Lock" msgstr "" -#: src/Gtk/MainWindow.vala:164 +#: src/Gtk/MainWindow.vala:162 msgid "Status" msgstr "Statut" -#: src/Gtk/MainWindow.vala:176 +#: src/Gtk/MainWindow.vala:174 msgid "Notes" msgstr "Notes" -#: src/Gtk/MainWindow.vala:316 +#: src/Gtk/MainWindow.vala:315 msgid "Uninstall" msgstr "Désinstaller" -#: src/Gtk/MainWindow.vala:327 +#: src/Gtk/MainWindow.vala:326 msgid "Changelog, build status, etc" msgstr "" -#: src/Gtk/MainWindow.vala:338 +#: src/Gtk/MainWindow.vala:337 msgid "Uninstall Old" msgstr "Désinstaller Ancien" -#: src/Gtk/MainWindow.vala:344 +#: src/Gtk/MainWindow.vala:343 msgid "Reload" msgstr "Recharger" -#: src/Gtk/MainWindow.vala:345 +#: src/Gtk/MainWindow.vala:344 msgid "Delete and reload all cached kernel info" msgstr "" -#: src/Gtk/MainWindow.vala:350 src/Gtk/SettingsDialog.vala:49 +#: src/Gtk/MainWindow.vala:349 src/Gtk/SettingsDialog.vala:49 msgid "Settings" msgstr "Paramètres" -#: src/Gtk/MainWindow.vala:355 +#: src/Gtk/MainWindow.vala:354 msgid "About" msgstr "À propos" -#: src/Gtk/MainWindow.vala:360 +#: src/Gtk/MainWindow.vala:359 msgid "Exit" msgstr "Sortie" -#: src/Gtk/MainWindow.vala:426 +#: src/Gtk/MainWindow.vala:425 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "" "Utilitaire de mise à niveau des noyaux pour les distributions basées sur " "Ubuntu" -#: src/Gtk/MainWindow.vala:427 +#: src/Gtk/MainWindow.vala:426 msgid "Forked" msgstr "Forkée" -#: src/Gtk/MainWindow.vala:427 +#: src/Gtk/MainWindow.vala:426 msgid "Original" msgstr "Originale" -#: src/Gtk/MainWindow.vala:465 +#: src/Gtk/MainWindow.vala:463 msgid "Updating kernels" msgstr "Mise à jour des noyaux" -#: src/Gtk/MainWindow.vala:536 +#: src/Gtk/MainWindow.vala:531 msgid "available" msgstr "disponible" -#: src/Gtk/MainWindow.vala:578 src/Gtk/MainWindow.vala:619 -#: src/Gtk/MainWindow.vala:654 +#: src/Gtk/MainWindow.vala:573 src/Gtk/MainWindow.vala:614 +#: src/Gtk/MainWindow.vala:649 msgid "DONE" msgstr "FAIT" diff --git a/po/hr.po b/po/hr.po index 3a8b4482..450a54ac 100644 --- a/po/hr.po +++ b/po/hr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-25 23:23-0400\n" +"POT-Creation-Date: 2023-05-26 13:36-0400\n" "PO-Revision-Date: 2022-09-22 12:13+0200\n" "Last-Translator: gogo \n" "Language-Team: Croatian\n" @@ -66,8 +66,8 @@ msgstr "" msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:729 src/Gtk/MainWindow.vala:527 -#: src/Gtk/MainWindow.vala:540 +#: src/Common/LinuxKernel.vala:729 src/Gtk/MainWindow.vala:522 +#: src/Gtk/MainWindow.vala:535 msgid "Running" msgstr "Pokrenuto" @@ -229,7 +229,7 @@ msgstr "Instaliraj određeni mainline kernel" msgid "Uninstall specified kernel" msgstr "Deinstaliraj određene kernele" -#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:339 +#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:338 msgid "Uninstall all but the highest installed version" msgstr "Deinstaliraj sve osim najnovije instalirane verzije" @@ -323,7 +323,7 @@ msgstr "Kernel %s je dostupan" msgid "Show" msgstr "Prikaži" -#: src/Console/AppConsole.vala:347 src/Gtk/MainWindow.vala:306 +#: src/Console/AppConsole.vala:347 src/Gtk/MainWindow.vala:305 msgid "Install" msgstr "Instaliraj" @@ -379,76 +379,76 @@ msgstr "Ispiši informacije otklanjanja grešaka" msgid "Show all options" msgstr "Prikaži sve mogućnosti" -#: src/Gtk/MainWindow.vala:124 +#: src/Gtk/MainWindow.vala:123 msgid "Kernel" msgstr "Kernel" -#: src/Gtk/MainWindow.vala:147 +#: src/Gtk/MainWindow.vala:145 msgid "Lock" msgstr "" -#: src/Gtk/MainWindow.vala:164 +#: src/Gtk/MainWindow.vala:162 msgid "Status" msgstr "Stanje" -#: src/Gtk/MainWindow.vala:176 +#: src/Gtk/MainWindow.vala:174 msgid "Notes" msgstr "Bilješke" -#: src/Gtk/MainWindow.vala:316 +#: src/Gtk/MainWindow.vala:315 msgid "Uninstall" msgstr "Deinstaliraj" -#: src/Gtk/MainWindow.vala:327 +#: src/Gtk/MainWindow.vala:326 msgid "Changelog, build status, etc" msgstr "" -#: src/Gtk/MainWindow.vala:338 +#: src/Gtk/MainWindow.vala:337 msgid "Uninstall Old" msgstr "Deinstaliraj staro" -#: src/Gtk/MainWindow.vala:344 +#: src/Gtk/MainWindow.vala:343 msgid "Reload" msgstr "Ponovno učitati" -#: src/Gtk/MainWindow.vala:345 +#: src/Gtk/MainWindow.vala:344 msgid "Delete and reload all cached kernel info" msgstr "" -#: src/Gtk/MainWindow.vala:350 src/Gtk/SettingsDialog.vala:49 +#: src/Gtk/MainWindow.vala:349 src/Gtk/SettingsDialog.vala:49 msgid "Settings" msgstr "Postavke" -#: src/Gtk/MainWindow.vala:355 +#: src/Gtk/MainWindow.vala:354 msgid "About" msgstr "O programu" -#: src/Gtk/MainWindow.vala:360 +#: src/Gtk/MainWindow.vala:359 msgid "Exit" msgstr "Izlaz" -#: src/Gtk/MainWindow.vala:426 +#: src/Gtk/MainWindow.vala:425 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Alat za nadogradnju kernela Ubuntu temeljenih distribucija" -#: src/Gtk/MainWindow.vala:427 +#: src/Gtk/MainWindow.vala:426 msgid "Forked" msgstr "Forkano" -#: src/Gtk/MainWindow.vala:427 +#: src/Gtk/MainWindow.vala:426 msgid "Original" msgstr "Izvornik" -#: src/Gtk/MainWindow.vala:465 +#: src/Gtk/MainWindow.vala:463 msgid "Updating kernels" msgstr "Ažuriranje jezgri" -#: src/Gtk/MainWindow.vala:536 +#: src/Gtk/MainWindow.vala:531 msgid "available" msgstr "dostupno" -#: src/Gtk/MainWindow.vala:578 src/Gtk/MainWindow.vala:619 -#: src/Gtk/MainWindow.vala:654 +#: src/Gtk/MainWindow.vala:573 src/Gtk/MainWindow.vala:614 +#: src/Gtk/MainWindow.vala:649 msgid "DONE" msgstr "UČINJENO" diff --git a/po/it.po b/po/it.po index 5064a98b..c7c8f9eb 100644 --- a/po/it.po +++ b/po/it.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-25 23:23-0400\n" +"POT-Creation-Date: 2023-05-26 13:36-0400\n" "PO-Revision-Date: 2020-08-22 15:35+0100\n" "Last-Translator: Demetrio Mendozzi\n" "Language-Team: Italian\n" @@ -64,8 +64,8 @@ msgstr "" msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:729 src/Gtk/MainWindow.vala:527 -#: src/Gtk/MainWindow.vala:540 +#: src/Common/LinuxKernel.vala:729 src/Gtk/MainWindow.vala:522 +#: src/Gtk/MainWindow.vala:535 msgid "Running" msgstr "In esecuzione" @@ -230,7 +230,7 @@ msgstr "Installa il kernel mainline specificato" msgid "Uninstall specified kernel" msgstr "Disinstalla i kernel specificati" -#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:339 +#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:338 msgid "Uninstall all but the highest installed version" msgstr "Disinstallare tutti tranne la versione più recente installata" @@ -324,7 +324,7 @@ msgstr "Kernel %s Disponibile" msgid "Show" msgstr "Mostra" -#: src/Console/AppConsole.vala:347 src/Gtk/MainWindow.vala:306 +#: src/Console/AppConsole.vala:347 src/Gtk/MainWindow.vala:305 msgid "Install" msgstr "Installa" @@ -380,76 +380,76 @@ msgstr "Stampa le informazioni di debug" msgid "Show all options" msgstr "Mostra tutte le opzioni" -#: src/Gtk/MainWindow.vala:124 +#: src/Gtk/MainWindow.vala:123 msgid "Kernel" msgstr "Kernel" -#: src/Gtk/MainWindow.vala:147 +#: src/Gtk/MainWindow.vala:145 msgid "Lock" msgstr "" -#: src/Gtk/MainWindow.vala:164 +#: src/Gtk/MainWindow.vala:162 msgid "Status" msgstr "Stato" -#: src/Gtk/MainWindow.vala:176 +#: src/Gtk/MainWindow.vala:174 msgid "Notes" msgstr "Note" -#: src/Gtk/MainWindow.vala:316 +#: src/Gtk/MainWindow.vala:315 msgid "Uninstall" msgstr "Disinstalla" -#: src/Gtk/MainWindow.vala:327 +#: src/Gtk/MainWindow.vala:326 msgid "Changelog, build status, etc" msgstr "" -#: src/Gtk/MainWindow.vala:338 +#: src/Gtk/MainWindow.vala:337 msgid "Uninstall Old" msgstr "Disinstalla i vecchi" -#: src/Gtk/MainWindow.vala:344 +#: src/Gtk/MainWindow.vala:343 msgid "Reload" msgstr "Ricarica" -#: src/Gtk/MainWindow.vala:345 +#: src/Gtk/MainWindow.vala:344 msgid "Delete and reload all cached kernel info" msgstr "" -#: src/Gtk/MainWindow.vala:350 src/Gtk/SettingsDialog.vala:49 +#: src/Gtk/MainWindow.vala:349 src/Gtk/SettingsDialog.vala:49 msgid "Settings" msgstr "Impostazioni" -#: src/Gtk/MainWindow.vala:355 +#: src/Gtk/MainWindow.vala:354 msgid "About" msgstr "Informazioni" -#: src/Gtk/MainWindow.vala:360 +#: src/Gtk/MainWindow.vala:359 msgid "Exit" msgstr "Chiudi" -#: src/Gtk/MainWindow.vala:426 +#: src/Gtk/MainWindow.vala:425 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Utilità di aggiornamento del kernel per distribuzioni basate su Ubuntu" -#: src/Gtk/MainWindow.vala:427 +#: src/Gtk/MainWindow.vala:426 msgid "Forked" msgstr "Forked" -#: src/Gtk/MainWindow.vala:427 +#: src/Gtk/MainWindow.vala:426 msgid "Original" msgstr "Originale" -#: src/Gtk/MainWindow.vala:465 +#: src/Gtk/MainWindow.vala:463 msgid "Updating kernels" msgstr "Aggiornamento dei kernel" -#: src/Gtk/MainWindow.vala:536 +#: src/Gtk/MainWindow.vala:531 msgid "available" msgstr "disponibile" -#: src/Gtk/MainWindow.vala:578 src/Gtk/MainWindow.vala:619 -#: src/Gtk/MainWindow.vala:654 +#: src/Gtk/MainWindow.vala:573 src/Gtk/MainWindow.vala:614 +#: src/Gtk/MainWindow.vala:649 msgid "DONE" msgstr "FATTO" diff --git a/po/ko.po b/po/ko.po index 23828d46..377fb0e7 100644 --- a/po/ko.po +++ b/po/ko.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-25 23:23-0400\n" +"POT-Creation-Date: 2023-05-26 13:36-0400\n" "PO-Revision-Date: 2022-09-28 11:48+0900\n" "Last-Translator: Kevin Kim \n" "Language-Team: Korean\n" @@ -66,8 +66,8 @@ msgstr "" msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:729 src/Gtk/MainWindow.vala:527 -#: src/Gtk/MainWindow.vala:540 +#: src/Common/LinuxKernel.vala:729 src/Gtk/MainWindow.vala:522 +#: src/Gtk/MainWindow.vala:535 msgid "Running" msgstr "구동 중" @@ -228,7 +228,7 @@ msgstr "지정한 메인라인 커널 설치" msgid "Uninstall specified kernel" msgstr "지정한 커널 삭제" -#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:339 +#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:338 msgid "Uninstall all but the highest installed version" msgstr "설치된 가장 높은 버전을 제외한 모든 버전을 제거합니다" @@ -322,7 +322,7 @@ msgstr "커널 %s 사용 가능" msgid "Show" msgstr "보이기" -#: src/Console/AppConsole.vala:347 src/Gtk/MainWindow.vala:306 +#: src/Console/AppConsole.vala:347 src/Gtk/MainWindow.vala:305 msgid "Install" msgstr "설치" @@ -378,76 +378,76 @@ msgstr "디버그 정보 출력" msgid "Show all options" msgstr "모든 옵션 보기" -#: src/Gtk/MainWindow.vala:124 +#: src/Gtk/MainWindow.vala:123 msgid "Kernel" msgstr "커널" -#: src/Gtk/MainWindow.vala:147 +#: src/Gtk/MainWindow.vala:145 msgid "Lock" msgstr "" -#: src/Gtk/MainWindow.vala:164 +#: src/Gtk/MainWindow.vala:162 msgid "Status" msgstr "상태" -#: src/Gtk/MainWindow.vala:176 +#: src/Gtk/MainWindow.vala:174 msgid "Notes" msgstr "노트" -#: src/Gtk/MainWindow.vala:316 +#: src/Gtk/MainWindow.vala:315 msgid "Uninstall" msgstr "삭제" -#: src/Gtk/MainWindow.vala:327 +#: src/Gtk/MainWindow.vala:326 msgid "Changelog, build status, etc" msgstr "" -#: src/Gtk/MainWindow.vala:338 +#: src/Gtk/MainWindow.vala:337 msgid "Uninstall Old" msgstr "오래된 커널 제거" -#: src/Gtk/MainWindow.vala:344 +#: src/Gtk/MainWindow.vala:343 msgid "Reload" msgstr "새로고침" -#: src/Gtk/MainWindow.vala:345 +#: src/Gtk/MainWindow.vala:344 msgid "Delete and reload all cached kernel info" msgstr "" -#: src/Gtk/MainWindow.vala:350 src/Gtk/SettingsDialog.vala:49 +#: src/Gtk/MainWindow.vala:349 src/Gtk/SettingsDialog.vala:49 msgid "Settings" msgstr "설정" -#: src/Gtk/MainWindow.vala:355 +#: src/Gtk/MainWindow.vala:354 msgid "About" msgstr "정보" -#: src/Gtk/MainWindow.vala:360 +#: src/Gtk/MainWindow.vala:359 msgid "Exit" msgstr "출구" -#: src/Gtk/MainWindow.vala:426 +#: src/Gtk/MainWindow.vala:425 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "우분투 기반 배포판의 커널 업그레이드 도구" -#: src/Gtk/MainWindow.vala:427 +#: src/Gtk/MainWindow.vala:426 msgid "Forked" msgstr "가랑이진" -#: src/Gtk/MainWindow.vala:427 +#: src/Gtk/MainWindow.vala:426 msgid "Original" msgstr "원문 언어" -#: src/Gtk/MainWindow.vala:465 +#: src/Gtk/MainWindow.vala:463 msgid "Updating kernels" msgstr "커널 업데이트" -#: src/Gtk/MainWindow.vala:536 +#: src/Gtk/MainWindow.vala:531 msgid "available" msgstr "사용가능" -#: src/Gtk/MainWindow.vala:578 src/Gtk/MainWindow.vala:619 -#: src/Gtk/MainWindow.vala:654 +#: src/Gtk/MainWindow.vala:573 src/Gtk/MainWindow.vala:614 +#: src/Gtk/MainWindow.vala:649 msgid "DONE" msgstr "수행" diff --git a/po/messages.pot b/po/messages.pot index b7574609..a19c7647 100644 --- a/po/messages.pot +++ b/po/messages.pot @@ -6,9 +6,9 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: mainline 1.3.0\n" +"Project-Id-Version: mainline 1.3.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-25 23:23-0400\n" +"POT-Creation-Date: 2023-05-26 13:36-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -70,8 +70,8 @@ msgstr "" msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:729 src/Gtk/MainWindow.vala:527 -#: src/Gtk/MainWindow.vala:540 +#: src/Common/LinuxKernel.vala:729 src/Gtk/MainWindow.vala:522 +#: src/Gtk/MainWindow.vala:535 msgid "Running" msgstr "" @@ -231,7 +231,7 @@ msgstr "" msgid "Uninstall specified kernel" msgstr "" -#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:339 +#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:338 msgid "Uninstall all but the highest installed version" msgstr "" @@ -325,7 +325,7 @@ msgstr "" msgid "Show" msgstr "" -#: src/Console/AppConsole.vala:347 src/Gtk/MainWindow.vala:306 +#: src/Console/AppConsole.vala:347 src/Gtk/MainWindow.vala:305 msgid "Install" msgstr "" @@ -381,76 +381,76 @@ msgstr "" msgid "Show all options" msgstr "" -#: src/Gtk/MainWindow.vala:124 +#: src/Gtk/MainWindow.vala:123 msgid "Kernel" msgstr "" -#: src/Gtk/MainWindow.vala:147 +#: src/Gtk/MainWindow.vala:145 msgid "Lock" msgstr "" -#: src/Gtk/MainWindow.vala:164 +#: src/Gtk/MainWindow.vala:162 msgid "Status" msgstr "" -#: src/Gtk/MainWindow.vala:176 +#: src/Gtk/MainWindow.vala:174 msgid "Notes" msgstr "" -#: src/Gtk/MainWindow.vala:316 +#: src/Gtk/MainWindow.vala:315 msgid "Uninstall" msgstr "" -#: src/Gtk/MainWindow.vala:327 +#: src/Gtk/MainWindow.vala:326 msgid "Changelog, build status, etc" msgstr "" -#: src/Gtk/MainWindow.vala:338 +#: src/Gtk/MainWindow.vala:337 msgid "Uninstall Old" msgstr "" -#: src/Gtk/MainWindow.vala:344 +#: src/Gtk/MainWindow.vala:343 msgid "Reload" msgstr "" -#: src/Gtk/MainWindow.vala:345 +#: src/Gtk/MainWindow.vala:344 msgid "Delete and reload all cached kernel info" msgstr "" -#: src/Gtk/MainWindow.vala:350 src/Gtk/SettingsDialog.vala:49 +#: src/Gtk/MainWindow.vala:349 src/Gtk/SettingsDialog.vala:49 msgid "Settings" msgstr "" -#: src/Gtk/MainWindow.vala:355 +#: src/Gtk/MainWindow.vala:354 msgid "About" msgstr "" -#: src/Gtk/MainWindow.vala:360 +#: src/Gtk/MainWindow.vala:359 msgid "Exit" msgstr "" -#: src/Gtk/MainWindow.vala:426 +#: src/Gtk/MainWindow.vala:425 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "" -#: src/Gtk/MainWindow.vala:427 +#: src/Gtk/MainWindow.vala:426 msgid "Forked" msgstr "" -#: src/Gtk/MainWindow.vala:427 +#: src/Gtk/MainWindow.vala:426 msgid "Original" msgstr "" -#: src/Gtk/MainWindow.vala:465 +#: src/Gtk/MainWindow.vala:463 msgid "Updating kernels" msgstr "" -#: src/Gtk/MainWindow.vala:536 +#: src/Gtk/MainWindow.vala:531 msgid "available" msgstr "" -#: src/Gtk/MainWindow.vala:578 src/Gtk/MainWindow.vala:619 -#: src/Gtk/MainWindow.vala:654 +#: src/Gtk/MainWindow.vala:573 src/Gtk/MainWindow.vala:614 +#: src/Gtk/MainWindow.vala:649 msgid "DONE" msgstr "" diff --git a/po/nl.po b/po/nl.po index fc738f4f..6a909e4a 100644 --- a/po/nl.po +++ b/po/nl.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-25 23:23-0400\n" +"POT-Creation-Date: 2023-05-26 13:36-0400\n" "PO-Revision-Date: 2020-08-23 13:55+0200\n" "Last-Translator: Heimen Stoffels \n" "Language-Team: Dutch (Netherlands)\n" @@ -66,8 +66,8 @@ msgstr "" msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:729 src/Gtk/MainWindow.vala:527 -#: src/Gtk/MainWindow.vala:540 +#: src/Common/LinuxKernel.vala:729 src/Gtk/MainWindow.vala:522 +#: src/Gtk/MainWindow.vala:535 msgid "Running" msgstr "In gebruik" @@ -230,7 +230,7 @@ msgstr "Opgegeven mainline-kernel installeren" msgid "Uninstall specified kernel" msgstr "Opgegeven kernel verwijderen" -#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:339 +#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:338 msgid "Uninstall all but the highest installed version" msgstr "Verwijder alle behalve de hoogst geïnstalleerde versie" @@ -325,7 +325,7 @@ msgstr "Kernel %s is beschikbaar" msgid "Show" msgstr "Tonen" -#: src/Console/AppConsole.vala:347 src/Gtk/MainWindow.vala:306 +#: src/Console/AppConsole.vala:347 src/Gtk/MainWindow.vala:305 msgid "Install" msgstr "Installeren" @@ -381,76 +381,76 @@ msgstr "Foutopsporingsinformatie tonen" msgid "Show all options" msgstr "Alle opties tonen" -#: src/Gtk/MainWindow.vala:124 +#: src/Gtk/MainWindow.vala:123 msgid "Kernel" msgstr "Kernel" -#: src/Gtk/MainWindow.vala:147 +#: src/Gtk/MainWindow.vala:145 msgid "Lock" msgstr "" -#: src/Gtk/MainWindow.vala:164 +#: src/Gtk/MainWindow.vala:162 msgid "Status" msgstr "Status" -#: src/Gtk/MainWindow.vala:176 +#: src/Gtk/MainWindow.vala:174 msgid "Notes" msgstr "Notities" -#: src/Gtk/MainWindow.vala:316 +#: src/Gtk/MainWindow.vala:315 msgid "Uninstall" msgstr "Deïnstalleren" -#: src/Gtk/MainWindow.vala:327 +#: src/Gtk/MainWindow.vala:326 msgid "Changelog, build status, etc" msgstr "" -#: src/Gtk/MainWindow.vala:338 +#: src/Gtk/MainWindow.vala:337 msgid "Uninstall Old" msgstr "Verwijder Oude" -#: src/Gtk/MainWindow.vala:344 +#: src/Gtk/MainWindow.vala:343 msgid "Reload" msgstr "Herladen" -#: src/Gtk/MainWindow.vala:345 +#: src/Gtk/MainWindow.vala:344 msgid "Delete and reload all cached kernel info" msgstr "" -#: src/Gtk/MainWindow.vala:350 src/Gtk/SettingsDialog.vala:49 +#: src/Gtk/MainWindow.vala:349 src/Gtk/SettingsDialog.vala:49 msgid "Settings" msgstr "Instellingen" -#: src/Gtk/MainWindow.vala:355 +#: src/Gtk/MainWindow.vala:354 msgid "About" msgstr "Over" -#: src/Gtk/MainWindow.vala:360 +#: src/Gtk/MainWindow.vala:359 msgid "Exit" msgstr "Afsluiten" -#: src/Gtk/MainWindow.vala:426 +#: src/Gtk/MainWindow.vala:425 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Een kernelupgradehulpmiddel voor op Ubuntu gebaseerde distributies" -#: src/Gtk/MainWindow.vala:427 +#: src/Gtk/MainWindow.vala:426 msgid "Forked" msgstr "Geforkt" -#: src/Gtk/MainWindow.vala:427 +#: src/Gtk/MainWindow.vala:426 msgid "Original" msgstr "Origineel" -#: src/Gtk/MainWindow.vala:465 +#: src/Gtk/MainWindow.vala:463 msgid "Updating kernels" msgstr "Kernels bijwerken" -#: src/Gtk/MainWindow.vala:536 +#: src/Gtk/MainWindow.vala:531 msgid "available" msgstr "beschikbaar" -#: src/Gtk/MainWindow.vala:578 src/Gtk/MainWindow.vala:619 -#: src/Gtk/MainWindow.vala:654 +#: src/Gtk/MainWindow.vala:573 src/Gtk/MainWindow.vala:614 +#: src/Gtk/MainWindow.vala:649 msgid "DONE" msgstr "AFGEROND" diff --git a/po/pl.po b/po/pl.po index f73c1574..26c9d8c3 100644 --- a/po/pl.po +++ b/po/pl.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-25 23:23-0400\n" +"POT-Creation-Date: 2023-05-26 13:36-0400\n" "PO-Revision-Date: 2023-05-25 13:37+0200\n" "Last-Translator: Matthaiks\n" "Language-Team: Polish\n" @@ -65,8 +65,8 @@ msgstr "zablokowane" msgid "is locked." msgstr "jest zablokowane." -#: src/Common/LinuxKernel.vala:729 src/Gtk/MainWindow.vala:527 -#: src/Gtk/MainWindow.vala:540 +#: src/Common/LinuxKernel.vala:729 src/Gtk/MainWindow.vala:522 +#: src/Gtk/MainWindow.vala:535 msgid "Running" msgstr "Uruchomione" @@ -228,7 +228,7 @@ msgstr "Zainstaluj wybrane jądro" msgid "Uninstall specified kernel" msgstr "Odinstaluj wybrane jądro" -#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:339 +#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:338 msgid "Uninstall all but the highest installed version" msgstr "Odinstaluj wszystkie oprócz najwyższej zainstalowanej wersji" @@ -322,7 +322,7 @@ msgstr "Dostępne %s jądra" msgid "Show" msgstr "Pokaż" -#: src/Console/AppConsole.vala:347 src/Gtk/MainWindow.vala:306 +#: src/Console/AppConsole.vala:347 src/Gtk/MainWindow.vala:305 msgid "Install" msgstr "Zainstaluj" @@ -378,76 +378,76 @@ msgstr "Wypisz informacje debugujące" msgid "Show all options" msgstr "Pokaż wszystkie opcje" -#: src/Gtk/MainWindow.vala:124 +#: src/Gtk/MainWindow.vala:123 msgid "Kernel" msgstr "Jądro" -#: src/Gtk/MainWindow.vala:147 +#: src/Gtk/MainWindow.vala:145 msgid "Lock" msgstr "" -#: src/Gtk/MainWindow.vala:164 +#: src/Gtk/MainWindow.vala:162 msgid "Status" msgstr "Status" -#: src/Gtk/MainWindow.vala:176 +#: src/Gtk/MainWindow.vala:174 msgid "Notes" msgstr "Notatki" -#: src/Gtk/MainWindow.vala:316 +#: src/Gtk/MainWindow.vala:315 msgid "Uninstall" msgstr "Odinstaluj" -#: src/Gtk/MainWindow.vala:327 +#: src/Gtk/MainWindow.vala:326 msgid "Changelog, build status, etc" msgstr "Dziennik zmian, status kompilacji itd." -#: src/Gtk/MainWindow.vala:338 +#: src/Gtk/MainWindow.vala:337 msgid "Uninstall Old" msgstr "Odinstaluj stare" -#: src/Gtk/MainWindow.vala:344 +#: src/Gtk/MainWindow.vala:343 msgid "Reload" msgstr "Wczytaj ponownie" -#: src/Gtk/MainWindow.vala:345 +#: src/Gtk/MainWindow.vala:344 msgid "Delete and reload all cached kernel info" msgstr "" -#: src/Gtk/MainWindow.vala:350 src/Gtk/SettingsDialog.vala:49 +#: src/Gtk/MainWindow.vala:349 src/Gtk/SettingsDialog.vala:49 msgid "Settings" msgstr "Ustawienia" -#: src/Gtk/MainWindow.vala:355 +#: src/Gtk/MainWindow.vala:354 msgid "About" msgstr "O programie" -#: src/Gtk/MainWindow.vala:360 +#: src/Gtk/MainWindow.vala:359 msgid "Exit" msgstr "Wyjdź" -#: src/Gtk/MainWindow.vala:426 +#: src/Gtk/MainWindow.vala:425 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Narzędzie uaktualniania jądra dla dystrybucji z rodziny Ubuntu" -#: src/Gtk/MainWindow.vala:427 +#: src/Gtk/MainWindow.vala:426 msgid "Forked" msgstr "Sforkowane" -#: src/Gtk/MainWindow.vala:427 +#: src/Gtk/MainWindow.vala:426 msgid "Original" msgstr "Oryginalne" -#: src/Gtk/MainWindow.vala:465 +#: src/Gtk/MainWindow.vala:463 msgid "Updating kernels" msgstr "Aktualizowanie jąder" -#: src/Gtk/MainWindow.vala:536 +#: src/Gtk/MainWindow.vala:531 msgid "available" msgstr "dostępne" -#: src/Gtk/MainWindow.vala:578 src/Gtk/MainWindow.vala:619 -#: src/Gtk/MainWindow.vala:654 +#: src/Gtk/MainWindow.vala:573 src/Gtk/MainWindow.vala:614 +#: src/Gtk/MainWindow.vala:649 msgid "DONE" msgstr "GOTOWE" diff --git a/po/ru.po b/po/ru.po index a40ce8b1..5483ea1b 100644 --- a/po/ru.po +++ b/po/ru.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-25 23:23-0400\n" +"POT-Creation-Date: 2023-05-26 13:36-0400\n" "PO-Revision-Date: 2023-04-17 20:16+0300\n" "Last-Translator: Danik2343 \n" "Language-Team: Russian\n" @@ -66,8 +66,8 @@ msgstr "" msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:729 src/Gtk/MainWindow.vala:527 -#: src/Gtk/MainWindow.vala:540 +#: src/Common/LinuxKernel.vala:729 src/Gtk/MainWindow.vala:522 +#: src/Gtk/MainWindow.vala:535 msgid "Running" msgstr "Используется" @@ -229,7 +229,7 @@ msgstr "Установить указанную ветку основного я msgid "Uninstall specified kernel" msgstr "Установить указанное ядро" -#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:339 +#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:338 msgid "Uninstall all but the highest installed version" msgstr "Удаление всех установленных версий, кроме самой высокой" @@ -323,7 +323,7 @@ msgstr "Доступно ядро %s" msgid "Show" msgstr "Показать" -#: src/Console/AppConsole.vala:347 src/Gtk/MainWindow.vala:306 +#: src/Console/AppConsole.vala:347 src/Gtk/MainWindow.vala:305 msgid "Install" msgstr "Установить" @@ -379,76 +379,76 @@ msgstr "Распечатать отладочную информацию" msgid "Show all options" msgstr "Показать все параметры" -#: src/Gtk/MainWindow.vala:124 +#: src/Gtk/MainWindow.vala:123 msgid "Kernel" msgstr "Ядро" -#: src/Gtk/MainWindow.vala:147 +#: src/Gtk/MainWindow.vala:145 msgid "Lock" msgstr "" -#: src/Gtk/MainWindow.vala:164 +#: src/Gtk/MainWindow.vala:162 msgid "Status" msgstr "Состояние" -#: src/Gtk/MainWindow.vala:176 +#: src/Gtk/MainWindow.vala:174 msgid "Notes" msgstr "Примечания" -#: src/Gtk/MainWindow.vala:316 +#: src/Gtk/MainWindow.vala:315 msgid "Uninstall" msgstr "Удалить" -#: src/Gtk/MainWindow.vala:327 +#: src/Gtk/MainWindow.vala:326 msgid "Changelog, build status, etc" msgstr "Список изменений, статус сборки и т.д" -#: src/Gtk/MainWindow.vala:338 +#: src/Gtk/MainWindow.vala:337 msgid "Uninstall Old" msgstr "Удалить старые" -#: src/Gtk/MainWindow.vala:344 +#: src/Gtk/MainWindow.vala:343 msgid "Reload" msgstr "Перезагрузить" -#: src/Gtk/MainWindow.vala:345 +#: src/Gtk/MainWindow.vala:344 msgid "Delete and reload all cached kernel info" msgstr "" -#: src/Gtk/MainWindow.vala:350 src/Gtk/SettingsDialog.vala:49 +#: src/Gtk/MainWindow.vala:349 src/Gtk/SettingsDialog.vala:49 msgid "Settings" msgstr "Настройки" -#: src/Gtk/MainWindow.vala:355 +#: src/Gtk/MainWindow.vala:354 msgid "About" msgstr "О программе" -#: src/Gtk/MainWindow.vala:360 +#: src/Gtk/MainWindow.vala:359 msgid "Exit" msgstr "Выход" -#: src/Gtk/MainWindow.vala:426 +#: src/Gtk/MainWindow.vala:425 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Программа обновления ядра для дистрибутивов на базе Ubuntu" -#: src/Gtk/MainWindow.vala:427 +#: src/Gtk/MainWindow.vala:426 msgid "Forked" msgstr "Форк" -#: src/Gtk/MainWindow.vala:427 +#: src/Gtk/MainWindow.vala:426 msgid "Original" msgstr "Оригинал" -#: src/Gtk/MainWindow.vala:465 +#: src/Gtk/MainWindow.vala:463 msgid "Updating kernels" msgstr "Обновление ядер" -#: src/Gtk/MainWindow.vala:536 +#: src/Gtk/MainWindow.vala:531 msgid "available" msgstr "доступно" -#: src/Gtk/MainWindow.vala:578 src/Gtk/MainWindow.vala:619 -#: src/Gtk/MainWindow.vala:654 +#: src/Gtk/MainWindow.vala:573 src/Gtk/MainWindow.vala:614 +#: src/Gtk/MainWindow.vala:649 msgid "DONE" msgstr "ГОТОВО" diff --git a/po/sv.po b/po/sv.po index 34e4f457..28c95249 100644 --- a/po/sv.po +++ b/po/sv.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-25 23:23-0400\n" +"POT-Creation-Date: 2023-05-26 13:36-0400\n" "PO-Revision-Date: 2018-01-13 16:56+0100\n" "Last-Translator: Åke Engelbrektson \n" "Language-Team:Swedish\n" @@ -66,8 +66,8 @@ msgstr "" msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:729 src/Gtk/MainWindow.vala:527 -#: src/Gtk/MainWindow.vala:540 +#: src/Common/LinuxKernel.vala:729 src/Gtk/MainWindow.vala:522 +#: src/Gtk/MainWindow.vala:535 msgid "Running" msgstr "Körs" @@ -228,7 +228,7 @@ msgstr "Installera angiven huvudkärna" msgid "Uninstall specified kernel" msgstr "Avinstallera angiven kärna" -#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:339 +#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:338 msgid "Uninstall all but the highest installed version" msgstr "Avinstallera alla utom den högsta installerade versionen" @@ -322,7 +322,7 @@ msgstr "Kernel %s tillgängliga" msgid "Show" msgstr "Visa" -#: src/Console/AppConsole.vala:347 src/Gtk/MainWindow.vala:306 +#: src/Console/AppConsole.vala:347 src/Gtk/MainWindow.vala:305 msgid "Install" msgstr "Installera" @@ -378,76 +378,76 @@ msgstr "Skriv ut felsökningsinformation" msgid "Show all options" msgstr "Visa alla alternativ" -#: src/Gtk/MainWindow.vala:124 +#: src/Gtk/MainWindow.vala:123 msgid "Kernel" msgstr "Kärna" -#: src/Gtk/MainWindow.vala:147 +#: src/Gtk/MainWindow.vala:145 msgid "Lock" msgstr "" -#: src/Gtk/MainWindow.vala:164 +#: src/Gtk/MainWindow.vala:162 msgid "Status" msgstr "Status" -#: src/Gtk/MainWindow.vala:176 +#: src/Gtk/MainWindow.vala:174 msgid "Notes" msgstr "Anteckningar" -#: src/Gtk/MainWindow.vala:316 +#: src/Gtk/MainWindow.vala:315 msgid "Uninstall" msgstr "Avinstallera" -#: src/Gtk/MainWindow.vala:327 +#: src/Gtk/MainWindow.vala:326 msgid "Changelog, build status, etc" msgstr "" -#: src/Gtk/MainWindow.vala:338 +#: src/Gtk/MainWindow.vala:337 msgid "Uninstall Old" msgstr "Avinstallera Gamla" -#: src/Gtk/MainWindow.vala:344 +#: src/Gtk/MainWindow.vala:343 msgid "Reload" msgstr "Reload" -#: src/Gtk/MainWindow.vala:345 +#: src/Gtk/MainWindow.vala:344 msgid "Delete and reload all cached kernel info" msgstr "" -#: src/Gtk/MainWindow.vala:350 src/Gtk/SettingsDialog.vala:49 +#: src/Gtk/MainWindow.vala:349 src/Gtk/SettingsDialog.vala:49 msgid "Settings" msgstr "Inställningar" -#: src/Gtk/MainWindow.vala:355 +#: src/Gtk/MainWindow.vala:354 msgid "About" msgstr "Om" -#: src/Gtk/MainWindow.vala:360 +#: src/Gtk/MainWindow.vala:359 msgid "Exit" msgstr "Utgång" -#: src/Gtk/MainWindow.vala:426 +#: src/Gtk/MainWindow.vala:425 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Kärnuppgraderingsverktyg för Ubuntu-baserade distributioner" -#: src/Gtk/MainWindow.vala:427 +#: src/Gtk/MainWindow.vala:426 msgid "Forked" msgstr "Kluven" -#: src/Gtk/MainWindow.vala:427 +#: src/Gtk/MainWindow.vala:426 msgid "Original" msgstr "Original" -#: src/Gtk/MainWindow.vala:465 +#: src/Gtk/MainWindow.vala:463 msgid "Updating kernels" msgstr "Uppdatera kärnor" -#: src/Gtk/MainWindow.vala:536 +#: src/Gtk/MainWindow.vala:531 msgid "available" msgstr "tillgänglig" -#: src/Gtk/MainWindow.vala:578 src/Gtk/MainWindow.vala:619 -#: src/Gtk/MainWindow.vala:654 +#: src/Gtk/MainWindow.vala:573 src/Gtk/MainWindow.vala:614 +#: src/Gtk/MainWindow.vala:649 msgid "DONE" msgstr "FÄRDIG" diff --git a/po/tr.po b/po/tr.po index 8a213f6b..4e3a28e1 100644 --- a/po/tr.po +++ b/po/tr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-25 23:23-0400\n" +"POT-Creation-Date: 2023-05-26 13:36-0400\n" "PO-Revision-Date: 2022-08-06 16:48+0300\n" "Last-Translator: Sabri Ünal \n" "Language-Team: Turkish\n" @@ -66,8 +66,8 @@ msgstr "" msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:729 src/Gtk/MainWindow.vala:527 -#: src/Gtk/MainWindow.vala:540 +#: src/Common/LinuxKernel.vala:729 src/Gtk/MainWindow.vala:522 +#: src/Gtk/MainWindow.vala:535 msgid "Running" msgstr "Çalışıyor" @@ -230,7 +230,7 @@ msgstr "Belirtilen mainline çekirdeğini kur" msgid "Uninstall specified kernel" msgstr "Belirtilen çekirdeğini kaldır" -#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:339 +#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:338 msgid "Uninstall all but the highest installed version" msgstr "En yüksek yüklü sürüm dışındaki tüm sürümleri kaldırın" @@ -324,7 +324,7 @@ msgstr "Çekirdek %s Kullanılabilir" msgid "Show" msgstr "Göster" -#: src/Console/AppConsole.vala:347 src/Gtk/MainWindow.vala:306 +#: src/Console/AppConsole.vala:347 src/Gtk/MainWindow.vala:305 msgid "Install" msgstr "Kur" @@ -380,76 +380,76 @@ msgstr "Hata ayıklama bilgisini yazdır" msgid "Show all options" msgstr "Tüm seçenekleri göster" -#: src/Gtk/MainWindow.vala:124 +#: src/Gtk/MainWindow.vala:123 msgid "Kernel" msgstr "Çekirdek" -#: src/Gtk/MainWindow.vala:147 +#: src/Gtk/MainWindow.vala:145 msgid "Lock" msgstr "" -#: src/Gtk/MainWindow.vala:164 +#: src/Gtk/MainWindow.vala:162 msgid "Status" msgstr "Durum" -#: src/Gtk/MainWindow.vala:176 +#: src/Gtk/MainWindow.vala:174 msgid "Notes" msgstr "Notlar" -#: src/Gtk/MainWindow.vala:316 +#: src/Gtk/MainWindow.vala:315 msgid "Uninstall" msgstr "Kaldır" -#: src/Gtk/MainWindow.vala:327 +#: src/Gtk/MainWindow.vala:326 msgid "Changelog, build status, etc" msgstr "" -#: src/Gtk/MainWindow.vala:338 +#: src/Gtk/MainWindow.vala:337 msgid "Uninstall Old" msgstr "Eskileri Kaldır" -#: src/Gtk/MainWindow.vala:344 +#: src/Gtk/MainWindow.vala:343 msgid "Reload" msgstr "Arjantin" -#: src/Gtk/MainWindow.vala:345 +#: src/Gtk/MainWindow.vala:344 msgid "Delete and reload all cached kernel info" msgstr "" -#: src/Gtk/MainWindow.vala:350 src/Gtk/SettingsDialog.vala:49 +#: src/Gtk/MainWindow.vala:349 src/Gtk/SettingsDialog.vala:49 msgid "Settings" msgstr "Ayarlar" -#: src/Gtk/MainWindow.vala:355 +#: src/Gtk/MainWindow.vala:354 msgid "About" msgstr "Hakkında" -#: src/Gtk/MainWindow.vala:360 +#: src/Gtk/MainWindow.vala:359 msgid "Exit" msgstr "Çıkış" -#: src/Gtk/MainWindow.vala:426 +#: src/Gtk/MainWindow.vala:425 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Ubuntu tabanlı dağıtımlar için çekirdek güncelleme aracı" -#: src/Gtk/MainWindow.vala:427 +#: src/Gtk/MainWindow.vala:426 msgid "Forked" msgstr "Çatallandı" -#: src/Gtk/MainWindow.vala:427 +#: src/Gtk/MainWindow.vala:426 msgid "Original" msgstr "Özgün" -#: src/Gtk/MainWindow.vala:465 +#: src/Gtk/MainWindow.vala:463 msgid "Updating kernels" msgstr "Çekirdekleri güncelleme" -#: src/Gtk/MainWindow.vala:536 +#: src/Gtk/MainWindow.vala:531 msgid "available" msgstr "mevcut" -#: src/Gtk/MainWindow.vala:578 src/Gtk/MainWindow.vala:619 -#: src/Gtk/MainWindow.vala:654 +#: src/Gtk/MainWindow.vala:573 src/Gtk/MainWindow.vala:614 +#: src/Gtk/MainWindow.vala:649 msgid "DONE" msgstr "YAPILMIŞ" diff --git a/src/Console/AppConsole.vala b/src/Console/AppConsole.vala index 96e58cf5..030fe24c 100644 --- a/src/Console/AppConsole.vala +++ b/src/Console/AppConsole.vala @@ -236,7 +236,7 @@ public class AppConsole : GLib.Object { // FIXME version_main can dupe with mainline & distro pkgs of the same version // if cmd is uninstall, must also match k.is_installed // but if cmd is download or install, must IGNORE k.is_installed - // extra FUGLY because this whole cmdline parser is redundant junk + // extra FUGLY because this whole cmdline parser is redundant multi-pass junk if (k.version_main == requested_version && (cmd != "--uninstall" || k.is_installed)) { kern_requested = k; break; diff --git a/src/Gtk/MainWindow.vala b/src/Gtk/MainWindow.vala index e0f63420..611efc3c 100644 --- a/src/Gtk/MainWindow.vala +++ b/src/Gtk/MainWindow.vala @@ -22,7 +22,6 @@ */ using Gtk; -using Gee; using TeeJee.FileSystem; using TeeJee.ProcessHelper; @@ -30,18 +29,18 @@ using l.gtk; using TeeJee.Misc; using l.misc; -public class MainWindow : Gtk.Window { +public class MainWindow : Window { - private Gtk.Box vbox_main; - private Gtk.Box hbox_list; + private Box vbox_main; + private Box hbox_list; - private Gtk.Button btn_install; - private Gtk.Button btn_uninstall; - private Gtk.Button btn_ppa; - private Gtk.Label lbl_info; + private Button btn_install; + private Button btn_uninstall; + private Button btn_ppa; + private Label lbl_info; - private Gtk.TreeView tv; - private Gtk.ListStore tv_model; + private Gtk.ListStore tm; + private TreeView tv; private Gee.ArrayList selected_kernels; enum COL { @@ -63,7 +62,7 @@ public class MainWindow : Gtk.Window { icon = get_app_icon(16); // vbox_main - vbox_main = new Gtk.Box(Orientation.VERTICAL, 6); + vbox_main = new Box(Orientation.VERTICAL, 6); vbox_main.margin = 6; vbox_main.set_size_request(App._window_width,App._window_height); App._window_width = App.window_width; @@ -71,9 +70,9 @@ public class MainWindow : Gtk.Window { add(vbox_main); selected_kernels = new Gee.ArrayList(); - // 0 index 1 kernel 2 kernel-icon 3 version 4 locked 5 status 6 notes 7 tooltip - tv_model = new Gtk.ListStore(8, typeof(int), typeof(LinuxKernel), typeof(Gdk.Pixbuf), typeof(string), typeof(bool), typeof(string), typeof(string), typeof(string)); - tv = new TreeView.with_model(tv_model); + // 0 index 1 kernel 2 kernel-icon 3 version 4 locked 5 status 6 notes 7 tooltip + tm = new Gtk.ListStore(8, typeof(int), typeof(LinuxKernel), typeof(Gdk.Pixbuf), typeof(string), typeof(bool), typeof(string), typeof(string), typeof(string)); + tv = new TreeView.with_model(tm); init_ui(); @@ -131,7 +130,6 @@ public class MainWindow : Gtk.Window { k_version_icon.ypad = 6; col.pack_start(k_version_icon, false); col.add_attribute(k_version_icon, "pixbuf", COL.ICON); - var k_version_text = new CellRendererText(); k_version_text.ellipsize = Pango.EllipsizeMode.END; col.pack_start(k_version_text, true); @@ -151,12 +149,12 @@ public class MainWindow : Gtk.Window { col.add_attribute(k_lock_toggle,"active", COL.LOCKED); k_lock_toggle.toggled.connect((toggle,path) => { TreeIter iter; - tv_model.get_iter_from_string(out iter, path); + tm.get_iter_from_string(out iter, path); LinuxKernel k; - tv_model.get(iter, COL.KERN, out k, -1); + tm.get(iter, COL.KERN, out k, -1); if (toggle.active) file_delete(k.locked_file); else file_write(k.locked_file, ""); - tv_model.set(iter, COL.LOCKED, k.is_locked); + tm.set(iter, COL.LOCKED, k.is_locked); }); // status @@ -184,17 +182,17 @@ public class MainWindow : Gtk.Window { col.add_attribute(k_notes_text, "text", COL.NOTES); // text from column 5 k_notes_text.editable = true; k_notes_text.edited.connect((path, data) => { - TreeIter iter; + TreeIter i; LinuxKernel k; - tv_model.get_iter_from_string(out iter, path); - tv_model.get(iter, COL.KERN, out k, -1); + tm.get_iter_from_string(out i, path); + tm.get(i, COL.KERN, out k, -1); var t_old = k.notes.strip(); var t_new = data.strip(); if (t_old != t_new) { k.notes = t_new; if (t_new=="") file_delete(k.notes_file); else file_write(k.notes_file, t_new); - tv_model.set(iter, COL.NOTES, t_new, -1); + tm.set(i, COL.NOTES, t_new, -1); } }); @@ -210,15 +208,15 @@ public class MainWindow : Gtk.Window { private void tv_selection_changed() { var sel = tv.get_selection(); - TreeModel model; - TreeIter iter; - var paths = sel.get_selected_rows (out model); + TreeModel m; + TreeIter i; + var paths = sel.get_selected_rows (out m); selected_kernels.clear(); foreach (var path in paths) { LinuxKernel k; - model.get_iter(out iter, path); - model.get(iter, 1, out k, -1); + m.get_iter(out i, path); + m.get(i, 1, out k, -1); selected_kernels.add(k); } @@ -242,9 +240,9 @@ public class MainWindow : Gtk.Window { } int i = -1; - Gdk.Pixbuf p = null; + Gdk.Pixbuf p; TreeIter iter; - tv_model.clear(); + tm.clear(); foreach (var k in LinuxKernel.kernel_list) { if (!k.is_installed) { // don't hide anything that's installed @@ -253,26 +251,27 @@ public class MainWindow : Gtk.Window { if (k.version_major < LinuxKernel.threshold_major) continue; // hide versions older than settings threshold } - tv_model.append(out iter); // add row + tm.append(out iter); // add row - tv_model.set(iter, COL.INDEX, ++i); // saves the special version sorting from compare_to() + tm.set(iter, COL.INDEX, ++i); // saves the special version number sorting built by compare_to() - tv_model.set(iter, COL.KERN, k); + tm.set(iter, COL.KERN, k); + // TODO store a pointer not a pixbuf p = pix_mainline; if (k.is_unstable) p = pix_mainline_rc; if (!k.is_mainline) p = pix_ubuntu; - tv_model.set(iter, COL.ICON, p); + tm.set(iter, COL.ICON, p); - tv_model.set(iter, COL.VERSION, k.version_main); + tm.set(iter, COL.VERSION, k.version_main); - tv_model.set(iter, COL.LOCKED, k.is_locked); + tm.set(iter, COL.LOCKED, k.is_locked); - tv_model.set(iter, COL.STATUS, k.status); + tm.set(iter, COL.STATUS, k.status); - tv_model.set(iter, COL.NOTES, k.notes); + tm.set(iter, COL.NOTES, k.notes); - tv_model.set(iter, COL.TOOLTIP, k.tooltip_text()); + tm.set(iter, COL.TOOLTIP, k.tooltip_text()); } selected_kernels.clear(); @@ -299,11 +298,11 @@ public class MainWindow : Gtk.Window { private void init_actions() { - var hbox = new Gtk.Box(Orientation.VERTICAL, 6); + var hbox = new Box(Orientation.VERTICAL, 6); hbox_list.add (hbox); // install - var button = new Gtk.Button.with_label (_("Install")); + var button = new Button.with_label (_("Install")); hbox.pack_start (button, true, true, 0); btn_install = button; @@ -313,7 +312,7 @@ public class MainWindow : Gtk.Window { }); // uninstall - button = new Gtk.Button.with_label (_("Uninstall")); + button = new Button.with_label (_("Uninstall")); hbox.pack_start (button, true, true, 0); btn_uninstall = button; @@ -323,7 +322,7 @@ public class MainWindow : Gtk.Window { }); // ppa - button = new Gtk.Button.with_label ("PPA"); + button = new Button.with_label ("PPA"); button.set_tooltip_text(_("Changelog, build status, etc")); hbox.pack_start (button, true, true, 0); btn_ppa = button; @@ -335,29 +334,29 @@ public class MainWindow : Gtk.Window { }); // uninstall-old - button = new Gtk.Button.with_label (_("Uninstall Old")); + button = new Button.with_label (_("Uninstall Old")); button.set_tooltip_text(_("Uninstall all but the highest installed version")); hbox.pack_start (button, true, true, 0); - button.clicked.connect(do_purge); + button.clicked.connect(uninstall_old); // reload - button = new Gtk.Button.with_label (_("Reload")); + button = new Button.with_label (_("Reload")); button.set_tooltip_text(_("Delete and reload all cached kernel info")); hbox.pack_start (button, true, true, 0); button.clicked.connect(reload_cache); // settings - button = new Gtk.Button.with_label (_("Settings")); + button = new Button.with_label (_("Settings")); hbox.pack_start (button, true, true, 0); button.clicked.connect(do_settings); // about - button = new Gtk.Button.with_label (_("About")); + button = new Button.with_label (_("About")); hbox.pack_start (button, true, true, 0); button.clicked.connect(do_about); // exit - button = new Gtk.Button.with_label (_("Exit")); + button = new Button.with_label (_("Exit")); hbox.pack_start (button, true, true, 0); button.clicked.connect(do_exit); @@ -378,7 +377,7 @@ public class MainWindow : Gtk.Window { } private void do_exit () { - Gtk.main_quit(); + main_quit(); } private void do_about () { @@ -457,20 +456,16 @@ public class MainWindow : Gtk.Window { if (!try_ppa()) return; if (!App.GUI_MODE) { - // refresh without GUI - LinuxKernel.query(false); + LinuxKernel.query(true); return; } string message = _("Updating kernels"); var progress_window = new ProgressWindow.with_parent(this, message, true); progress_window.show_all(); - LinuxKernel.query(false, (timer, ref count, last) => { update_progress_window(progress_window, message, timer, ref count, last); }); - - tv_refresh(); } private void update_progress_window(ProgressWindow progress_window, string message, GLib.Timer timer, ref long count, bool last = false) { @@ -505,16 +500,16 @@ public class MainWindow : Gtk.Window { scrolled.set_shadow_type (ShadowType.ETCHED_IN); //scrolled.margin = 6; scrolled.margin_top = 0; - scrolled.hscrollbar_policy = Gtk.PolicyType.NEVER; - scrolled.vscrollbar_policy = Gtk.PolicyType.NEVER; + scrolled.hscrollbar_policy = PolicyType.NEVER; + scrolled.vscrollbar_policy = PolicyType.NEVER; vbox_main.add(scrolled); // hbox - var hbox = new Gtk.Box(Orientation.HORIZONTAL, 6); + var hbox = new Box(Orientation.HORIZONTAL, 6); //hbox.margin = 6; scrolled.add(hbox); - lbl_info = new Gtk.Label(""); + lbl_info = new Label(""); lbl_info.margin = 6; lbl_info.set_use_markup(true); hbox.add(lbl_info); @@ -624,7 +619,7 @@ public class MainWindow : Gtk.Window { vprint(line); } - public void do_purge () { + public void uninstall_old () { var term = new TerminalWindow.with_parent(this, false, true); string t_dir = create_tmp_dir(); string t_file = get_temp_file_path(t_dir)+".sh"; From 1c63e5eb9c228cab37ae3bf2892494967f724f39 Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Mon, 29 May 2023 07:13:03 -0400 Subject: [PATCH 334/567] intall/ununstall/download lists --- .deb_build_number.mak | 2 +- BRANDING.mak | 2 +- debian/changelog | 10 + po/de.po | 255 +++++++++++----------- po/el.po | 254 +++++++++++----------- po/es.po | 253 +++++++++++----------- po/fr.po | 255 +++++++++++----------- po/hr.po | 253 +++++++++++----------- po/it.po | 253 +++++++++++----------- po/ko.po | 253 +++++++++++----------- po/messages.pot | 239 ++++++++++----------- po/nl.po | 254 +++++++++++----------- po/pl.po | 253 +++++++++++----------- po/ru.po | 253 +++++++++++----------- po/sv.po | 253 +++++++++++----------- po/tr.po | 253 +++++++++++----------- po/uk.po | 253 +++++++++++----------- src/Common/LinuxKernel.vala | 410 ++++++++++++++++++------------------ src/Common/Main.vala | 2 +- src/Common/Package.vala | 24 +-- src/Console/AppConsole.vala | 136 ++++-------- src/Gtk/AppGtk.vala | 16 +- src/Gtk/MainWindow.vala | 126 ++++++----- 23 files changed, 2127 insertions(+), 2135 deletions(-) diff --git a/.deb_build_number.mak b/.deb_build_number.mak index 63705e50..98334245 100644 --- a/.deb_build_number.mak +++ b/.deb_build_number.mak @@ -1,3 +1,3 @@ # This file is generated by Makefile "make deb_build_number" -DEB_PKG_VERSION := 1.3.1 +DEB_PKG_VERSION := 1.3.2 DEB_BUILD_NUMBER := 0000 diff --git a/BRANDING.mak b/BRANDING.mak index 67974cb1..898d48a3 100644 --- a/BRANDING.mak +++ b/BRANDING.mak @@ -3,7 +3,7 @@ VERSION_MAJOR = 1 VERSION_MINOR = 3 -VERSION_MICRO = 1 +VERSION_MICRO = 2 BRANDING_SHORTNAME = mainline BRANDING_LONGNAME = Ubuntu Mainline Kernel Installer BRANDING_AUTHORNAME = Brian K. White diff --git a/debian/changelog b/debian/changelog index dd9818c5..afe6f6a8 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,13 @@ +mainline (1.3.2) unstable; urgency=medium + + * install/uninstall/download all now accept lists + in the gui you may select multiple kernels to instll or uninstall at once + * more handy -v --verbose option + * small speedup, figure out threshold_major earlier and use it to skip old kernels in load_index() + * improve the version string parsing stuff a little + + -- Brian K. White Mon, 29 May 2023 06:56:54 -0400 + mainline (1.3.1) unstable; urgency=medium * just update a tooltip message - Reload does not delete user notes any more diff --git a/po/de.po b/po/de.po index 11b85685..42ee6952 100644 --- a/po/de.po +++ b/po/de.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-26 13:36-0400\n" +"POT-Creation-Date: 2023-05-29 06:50-0400\n" "PO-Revision-Date: 2023-02-20 18:40+0100\n" "Last-Translator: Marvin Meysel \n" "Language-Team: German\n" @@ -13,77 +13,77 @@ msgstr "" "X-Launchpad-Export-Date: 2017-04-13 11:48+0000\n" "X-Generator: Poedit 3.1.1\n" -#: src/Common/LinuxKernel.vala:105 +#: src/Common/LinuxKernel.vala:104 msgid "Distribution" msgstr "Distribution" -#: src/Common/LinuxKernel.vala:120 +#: src/Common/LinuxKernel.vala:119 msgid "Architecture" msgstr "Architektur" -#: src/Common/LinuxKernel.vala:135 +#: src/Common/LinuxKernel.vala:134 msgid "Running kernel" msgstr "Laufender kernel" -#: src/Common/LinuxKernel.vala:257 +#: src/Common/LinuxKernel.vala:250 msgid "loading cached" msgstr "laden gecached" -#: src/Common/LinuxKernel.vala:269 +#: src/Common/LinuxKernel.vala:262 msgid "queuing download" msgstr "download der warteschlange" -#: src/Common/LinuxKernel.vala:290 +#: src/Common/LinuxKernel.vala:283 msgid "Fetching individual kernel indexes" msgstr "Abrufen einzelner Kernel-Indizes" -#: src/Common/LinuxKernel.vala:306 +#: src/Common/LinuxKernel.vala:299 msgid "loading downloaded" msgstr "laden von heruntergeladenen Dateien" -#: src/Common/LinuxKernel.vala:341 +#: src/Common/LinuxKernel.vala:334 msgid "Updating from" msgstr "Aktualisieren von" -#: src/Common/LinuxKernel.vala:349 +#: src/Common/LinuxKernel.vala:342 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:352 +#: src/Common/LinuxKernel.vala:345 msgid "FAILED" msgstr "MISSLUNGEN" -#: src/Common/LinuxKernel.vala:405 +#: src/Common/LinuxKernel.vala:409 msgid "Found installed" msgstr "Installiert gefunden" -#: src/Common/LinuxKernel.vala:411 +#: src/Common/LinuxKernel.vala:410 msgid "locked" msgstr "" -#: src/Common/LinuxKernel.vala:495 src/Common/LinuxKernel.vala:1031 -#: src/Common/LinuxKernel.vala:1075 src/Common/LinuxKernel.vala:1142 +#: src/Common/LinuxKernel.vala:497 src/Common/LinuxKernel.vala:1060 +#: src/Common/LinuxKernel.vala:1094 src/Common/LinuxKernel.vala:1150 msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:729 src/Gtk/MainWindow.vala:522 -#: src/Gtk/MainWindow.vala:535 +#: src/Common/LinuxKernel.vala:732 src/Gtk/MainWindow.vala:511 +#: src/Gtk/MainWindow.vala:524 msgid "Running" msgstr "Läuft" -#: src/Common/LinuxKernel.vala:730 +#: src/Common/LinuxKernel.vala:733 msgid "Installed" msgstr "Installiert" -#: src/Common/LinuxKernel.vala:731 +#: src/Common/LinuxKernel.vala:734 msgid "Invalid" msgstr "Ungültig" -#: src/Common/LinuxKernel.vala:817 +#: src/Common/LinuxKernel.vala:820 msgid "Packages Available" msgstr "Verfügbare Pakete" -#: src/Common/LinuxKernel.vala:823 +#: src/Common/LinuxKernel.vala:826 msgid "Packages Installed" msgstr "Installierte Pakete" @@ -91,77 +91,95 @@ msgstr "Installierte Pakete" msgid "File not found" msgstr "Datei nicht gefunden " -#: src/Common/LinuxKernel.vala:942 +#: src/Common/LinuxKernel.vala:945 msgid "Available Kernels" msgstr "Verfügbare Kernel" -#: src/Common/LinuxKernel.vala:982 +#: src/Common/LinuxKernel.vala:973 +#, fuzzy +msgid "No kernels specified" +msgstr "Befehl nicht angegeben" + +#: src/Common/LinuxKernel.vala:980 src/Gtk/MainWindow.vala:119 +msgid "Kernel" +msgstr "Kernel" + +#: src/Common/LinuxKernel.vala:980 +#, fuzzy +msgid "not found" +msgstr "Datei nicht gefunden " + +#: src/Common/LinuxKernel.vala:1006 msgid "enabled" msgstr "ermöglichte" -#: src/Common/LinuxKernel.vala:1006 +#: src/Common/LinuxKernel.vala:1030 msgid "Downloading" msgstr "Laden" -#: src/Common/LinuxKernel.vala:1026 +#: src/Common/LinuxKernel.vala:1055 msgid "is already installed." msgstr "ist bereits installiert." -#: src/Common/LinuxKernel.vala:1061 +#: src/Common/LinuxKernel.vala:1065 +msgid "download failed." +msgstr "" + +#: src/Common/LinuxKernel.vala:1082 msgid "Uninstalling selected kernels" msgstr "Deinstallation des angegebenen Kernels" -#: src/Common/LinuxKernel.vala:1067 +#: src/Common/LinuxKernel.vala:1086 msgid "requested" msgstr "angefordert" -#: src/Common/LinuxKernel.vala:1070 +#: src/Common/LinuxKernel.vala:1089 msgid "not uninstalling the currently running kernel" msgstr "Den aktuell laufenden Kernel wird nicht deinstalliert" -#: src/Common/LinuxKernel.vala:1091 +#: src/Common/LinuxKernel.vala:1102 msgid "found" msgstr "gründen" -#: src/Common/LinuxKernel.vala:1094 +#: src/Common/LinuxKernel.vala:1107 msgid "No packages to un-install!" msgstr "Keine Pakete zum Deinstallieren!" -#: src/Common/LinuxKernel.vala:1138 +#: src/Common/LinuxKernel.vala:1146 #, fuzzy msgid "is the highest installed version." msgstr "Deinstallieren Sie alle bis auf die höchste installierte Version" -#: src/Common/LinuxKernel.vala:1151 +#: src/Common/LinuxKernel.vala:1159 msgid "Could not find running kernel in list" msgstr "Konnte keinen laufenden Kernel in der Liste finden" -#: src/Common/LinuxKernel.vala:1156 +#: src/Common/LinuxKernel.vala:1164 msgid "Could not find any kernels to uninstall" msgstr "Es konnten keine Kernel zum Deinstallieren gefunden werden" -#: src/Common/LinuxKernel.vala:1164 +#: src/Common/LinuxKernel.vala:1172 msgid "The following kernels will be uninstalled" msgstr "Die folgenden Kernel werden deinstalliert" -#: src/Common/LinuxKernel.vala:1168 +#: src/Common/LinuxKernel.vala:1176 msgid "Continue ?" msgstr "Weiter ?" -#: src/Common/LinuxKernel.vala:1190 src/Console/AppConsole.vala:292 +#: src/Common/LinuxKernel.vala:1198 src/Console/AppConsole.vala:234 msgid "Latest update" msgstr "Neustes Update" -#: src/Common/LinuxKernel.vala:1201 src/Console/AppConsole.vala:299 +#: src/Common/LinuxKernel.vala:1209 src/Console/AppConsole.vala:241 msgid "Latest point update" msgstr "Letzte Punktaktualisierung" -#: src/Common/LinuxKernel.vala:1209 src/Console/AppConsole.vala:304 -#: src/Console/AppConsole.vala:320 +#: src/Common/LinuxKernel.vala:1217 src/Console/AppConsole.vala:246 +#: src/Console/AppConsole.vala:262 msgid "No updates found" msgstr "Keine Updates gefunden" -#: src/Common/LinuxKernel.vala:1218 +#: src/Common/LinuxKernel.vala:1226 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Kernel-Version %s installieren? (j/n):" @@ -189,148 +207,135 @@ msgstr "Benachrichtigungen sind deaktiviert" msgid "File not found: %s" msgstr "Datei nicht gefunden: %s" -#: src/Console/AppConsole.vala:47 src/Gtk/AppGtk.vala:133 +#: src/Console/AppConsole.vala:43 src/Gtk/AppGtk.vala:139 msgid "Syntax" msgstr "Syntax" -#: src/Console/AppConsole.vala:49 +#: src/Console/AppConsole.vala:45 msgid "Commands" msgstr "Befehle" -#: src/Console/AppConsole.vala:51 +#: src/Console/AppConsole.vala:47 msgid "Check for kernel updates" msgstr "Nach Kernel-Updates suchen" -#: src/Console/AppConsole.vala:52 +#: src/Console/AppConsole.vala:48 msgid "Check for kernel updates and notify current user" msgstr "" "Prüfung auf Kernel-Updates und Benachrichtigung des aktuellen Benutzers" -#: src/Console/AppConsole.vala:53 -msgid "List all available mainline kernels" +#: src/Console/AppConsole.vala:49 +#, fuzzy +msgid "List available mainline kernels" msgstr "Alle verfügbaren Mainline-Kernel auflisten" -#: src/Console/AppConsole.vala:54 +#: src/Console/AppConsole.vala:50 msgid "List installed kernels" msgstr "Installierte Kernel auflisten" -#: src/Console/AppConsole.vala:55 +#: src/Console/AppConsole.vala:51 msgid "Install latest mainline kernel" msgstr "Installieren Sie den neuesten Mainline-Kernel" -#: src/Console/AppConsole.vala:56 -msgid "Install latest point update for current series" +#: src/Console/AppConsole.vala:52 +#, fuzzy +msgid "Install latest point update in the current major version" msgstr "Neueste Punktaktualisierung für die aktuelle Serie installieren" -#: src/Console/AppConsole.vala:57 -msgid "Install specified mainline kernel" -msgstr "Angegebenen Mainline-Kernel installieren" +#: src/Console/AppConsole.vala:53 +#, fuzzy +msgid "Install specified kernels" +msgstr "Deinstallation des angegebenen Kernels" -#: src/Console/AppConsole.vala:58 -msgid "Uninstall specified kernel" +#: src/Console/AppConsole.vala:54 +#, fuzzy +msgid "Uninstall specified kernels" msgstr "Deinstallation des angegebenen Kernels" -#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:338 +#: src/Console/AppConsole.vala:55 src/Gtk/MainWindow.vala:327 msgid "Uninstall all but the highest installed version" msgstr "Deinstallieren Sie alle bis auf die höchste installierte Version" -#: src/Console/AppConsole.vala:60 +#: src/Console/AppConsole.vala:56 msgid "Download specified kernels" msgstr "Herunterladen bestimmter Kernel" -#: src/Console/AppConsole.vala:61 +#: src/Console/AppConsole.vala:57 msgid "Delete cached info about available kernels" msgstr "Löschen zwischengespeicherter Informationen über verfügbare Kernel" -#: src/Console/AppConsole.vala:63 src/Gtk/AppGtk.vala:135 +#: src/Console/AppConsole.vala:59 src/Gtk/AppGtk.vala:141 msgid "Options" msgstr "Optionen" -#: src/Console/AppConsole.vala:65 +#: src/Console/AppConsole.vala:61 msgid "Include unstable and RC releases" msgstr "Unstable- und RC-Versionen einschließen" -#: src/Console/AppConsole.vala:66 +#: src/Console/AppConsole.vala:62 msgid "Exclude unstable and RC releases" msgstr "Ausschluss von Unstable- und RC-Veröffentlichungen" -#: src/Console/AppConsole.vala:67 -msgid "Enable verbose debugging output" -msgstr "Ausführliche Debugging-Ausgabe einschalten" +#: src/Console/AppConsole.vala:63 +msgid "Verbosity. Set to n if given, or increment." +msgstr "" -#: src/Console/AppConsole.vala:68 +#: src/Console/AppConsole.vala:64 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "Alle Aufforderungen mit Ja beantworten (nicht interaktiver Modus)" -#: src/Console/AppConsole.vala:71 -msgid "A version string taken from the output of --list" +#: src/Console/AppConsole.vala:67 +#, fuzzy +msgid "One or more version strings taken from the output of --list" msgstr "Eine Versionszeichenfolge aus der Ausgabe von --list" -#: src/Console/AppConsole.vala:72 -msgid "One or more, comma-seperated" -msgstr "Ein oder mehrere, durch Kommas getrennte" +#: src/Console/AppConsole.vala:68 +msgid "comma, pipe, or colon-seperated, or quoted space seperated" +msgstr "" -#: src/Console/AppConsole.vala:73 -msgid "The currently running kernel will always be ignored" +#: src/Console/AppConsole.vala:69 +#, fuzzy +msgid "Locked kernels and the currently running kernel are ignored" msgstr "Der aktuell laufende Kernel wird immer ignoriert" -#: src/Console/AppConsole.vala:163 src/Gtk/AppGtk.vala:119 +#: src/Console/AppConsole.vala:160 src/Gtk/AppGtk.vala:125 msgid "Unknown option" msgstr "Unbekannte Option" -#: src/Console/AppConsole.vala:164 src/Console/AppConsole.vala:250 -#: src/Console/AppConsole.vala:278 +#: src/Console/AppConsole.vala:161 src/Console/AppConsole.vala:220 msgid "Run" msgstr "Ausführen" -#: src/Console/AppConsole.vala:164 +#: src/Console/AppConsole.vala:161 msgid "to list all options" msgstr "um alle Optionen aufzulisten" -#: src/Console/AppConsole.vala:218 src/Console/AppConsole.vala:258 -msgid "No kernels specified" -msgstr "Keine Kernel angegeben" - -#: src/Console/AppConsole.vala:224 -msgid "Multiple kernels selected for installation. Select only one." -msgstr "" -"Mehrere Kernel für die Installation ausgewählt. Wählen Sie nur einen aus." - -#: src/Console/AppConsole.vala:247 -msgid "Could not find requested version" -msgstr "Die gewünschte Version konnte nicht gefunden werden" - -#: src/Console/AppConsole.vala:250 -msgid "and use a version string listed in first column" -msgstr "" -"und verwenden Sie eine in der ersten Spalte aufgeführte Versionszeichenfolge" - -#: src/Console/AppConsole.vala:277 +#: src/Console/AppConsole.vala:219 msgid "Command not specified" msgstr "Befehl nicht angegeben" -#: src/Console/AppConsole.vala:278 +#: src/Console/AppConsole.vala:220 msgid "to list all commands" msgstr "um alle Befehle aufzulisten" -#: src/Console/AppConsole.vala:314 +#: src/Console/AppConsole.vala:256 msgid "Notifications disabled in settings" msgstr "Benachrichtigungen sind deaktiviert" -#: src/Console/AppConsole.vala:342 +#: src/Console/AppConsole.vala:284 #, c-format msgid "Kernel %s Available" msgstr "Kernel %s verfügbar" -#: src/Console/AppConsole.vala:346 src/Gtk/SettingsDialog.vala:166 +#: src/Console/AppConsole.vala:288 src/Gtk/SettingsDialog.vala:166 msgid "Show" msgstr "Zeigen" -#: src/Console/AppConsole.vala:347 src/Gtk/MainWindow.vala:305 +#: src/Console/AppConsole.vala:289 src/Gtk/MainWindow.vala:299 msgid "Install" msgstr "Installieren" -#: src/Console/AppConsole.vala:350 +#: src/Console/AppConsole.vala:292 msgid "Previously notified" msgstr "Zuvor gemeldet" @@ -370,90 +375,86 @@ msgstr "Dokumentierer" msgid "Third Party Inclusions" msgstr "Einschlüsse von Drittparteien" -#: src/Gtk/AppGtk.vala:133 +#: src/Gtk/AppGtk.vala:139 msgid "options" msgstr "optionen" -#: src/Gtk/AppGtk.vala:137 +#: src/Gtk/AppGtk.vala:143 msgid "Print debug information" msgstr "Zeige Debug Informationen" -#: src/Gtk/AppGtk.vala:138 +#: src/Gtk/AppGtk.vala:144 msgid "Show all options" msgstr "Alle Optionen anzeigen" -#: src/Gtk/MainWindow.vala:123 -msgid "Kernel" -msgstr "Kernel" - -#: src/Gtk/MainWindow.vala:145 +#: src/Gtk/MainWindow.vala:143 msgid "Lock" msgstr "" -#: src/Gtk/MainWindow.vala:162 +#: src/Gtk/MainWindow.vala:160 msgid "Status" msgstr "Status" -#: src/Gtk/MainWindow.vala:174 +#: src/Gtk/MainWindow.vala:172 msgid "Notes" msgstr "Notizen" -#: src/Gtk/MainWindow.vala:315 +#: src/Gtk/MainWindow.vala:307 msgid "Uninstall" msgstr "Deinstallieren" -#: src/Gtk/MainWindow.vala:326 +#: src/Gtk/MainWindow.vala:316 msgid "Changelog, build status, etc" msgstr "" -#: src/Gtk/MainWindow.vala:337 +#: src/Gtk/MainWindow.vala:326 msgid "Uninstall Old" msgstr "Alte deinstallieren" -#: src/Gtk/MainWindow.vala:343 +#: src/Gtk/MainWindow.vala:332 msgid "Reload" msgstr "Nachladen" -#: src/Gtk/MainWindow.vala:344 +#: src/Gtk/MainWindow.vala:333 msgid "Delete and reload all cached kernel info" msgstr "" -#: src/Gtk/MainWindow.vala:349 src/Gtk/SettingsDialog.vala:49 +#: src/Gtk/MainWindow.vala:338 src/Gtk/SettingsDialog.vala:49 msgid "Settings" msgstr "Einstellungen" -#: src/Gtk/MainWindow.vala:354 +#: src/Gtk/MainWindow.vala:343 msgid "About" msgstr "Über" -#: src/Gtk/MainWindow.vala:359 +#: src/Gtk/MainWindow.vala:348 msgid "Exit" msgstr "Ausgang" -#: src/Gtk/MainWindow.vala:425 +#: src/Gtk/MainWindow.vala:414 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Kernel-Upgrade-Dienstprogramm für Ubuntu-basierte Distributionen" -#: src/Gtk/MainWindow.vala:426 +#: src/Gtk/MainWindow.vala:415 msgid "Forked" msgstr "Gegabelte" -#: src/Gtk/MainWindow.vala:426 +#: src/Gtk/MainWindow.vala:415 msgid "Original" msgstr "Original" -#: src/Gtk/MainWindow.vala:463 +#: src/Gtk/MainWindow.vala:452 msgid "Updating kernels" msgstr "Aktualisieren von Kernels" -#: src/Gtk/MainWindow.vala:531 +#: src/Gtk/MainWindow.vala:520 msgid "available" msgstr "Verfügbar" -#: src/Gtk/MainWindow.vala:573 src/Gtk/MainWindow.vala:614 -#: src/Gtk/MainWindow.vala:649 +#: src/Gtk/MainWindow.vala:575 src/Gtk/MainWindow.vala:614 +#: src/Gtk/MainWindow.vala:646 msgid "DONE" -msgstr "FERTIG" +msgstr "" #: src/Gtk/ProgressWindow.vala:126 src/Gtk/TerminalWindow.vala:151 msgid "Cancel" diff --git a/po/el.po b/po/el.po index e095ca7d..594828d8 100644 --- a/po/el.po +++ b/po/el.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-26 13:36-0400\n" +"POT-Creation-Date: 2023-05-29 06:50-0400\n" "PO-Revision-Date: 2023-01-10 02:03-0600\n" "Last-Translator: Vasilis Kosmidis \n" "Language-Team: Greek\n" @@ -13,77 +13,77 @@ msgstr "" "X-Launchpad-Export-Date: 2017-04-13 11:48+0000\n" "X-Generator: Poedit 2.0.5\n" -#: src/Common/LinuxKernel.vala:105 +#: src/Common/LinuxKernel.vala:104 msgid "Distribution" msgstr "Διανομή" -#: src/Common/LinuxKernel.vala:120 +#: src/Common/LinuxKernel.vala:119 msgid "Architecture" msgstr "Αρχιτεκτονική" -#: src/Common/LinuxKernel.vala:135 +#: src/Common/LinuxKernel.vala:134 msgid "Running kernel" msgstr "Εκτέλεση πυρήνα" -#: src/Common/LinuxKernel.vala:257 +#: src/Common/LinuxKernel.vala:250 msgid "loading cached" msgstr "φόρτωση προσωρινά αποθηκευμένου" -#: src/Common/LinuxKernel.vala:269 +#: src/Common/LinuxKernel.vala:262 msgid "queuing download" msgstr "Προσθήκη λήψης στην ουρά" -#: src/Common/LinuxKernel.vala:290 +#: src/Common/LinuxKernel.vala:283 msgid "Fetching individual kernel indexes" msgstr "Λήψη μεμονωμένων ευρετηρίων πυρήνα" -#: src/Common/LinuxKernel.vala:306 +#: src/Common/LinuxKernel.vala:299 msgid "loading downloaded" msgstr "Φόρτωση λήψης" -#: src/Common/LinuxKernel.vala:341 +#: src/Common/LinuxKernel.vala:334 msgid "Updating from" msgstr "Ενημέρωση από" -#: src/Common/LinuxKernel.vala:349 +#: src/Common/LinuxKernel.vala:342 msgid "OK" msgstr "ΟΚ" -#: src/Common/LinuxKernel.vala:352 +#: src/Common/LinuxKernel.vala:345 msgid "FAILED" msgstr "ΑΠΈΤΥΧΕ" -#: src/Common/LinuxKernel.vala:405 +#: src/Common/LinuxKernel.vala:409 msgid "Found installed" msgstr "Βρέθηκε εγκατεστημένο" -#: src/Common/LinuxKernel.vala:411 +#: src/Common/LinuxKernel.vala:410 msgid "locked" msgstr "" -#: src/Common/LinuxKernel.vala:495 src/Common/LinuxKernel.vala:1031 -#: src/Common/LinuxKernel.vala:1075 src/Common/LinuxKernel.vala:1142 +#: src/Common/LinuxKernel.vala:497 src/Common/LinuxKernel.vala:1060 +#: src/Common/LinuxKernel.vala:1094 src/Common/LinuxKernel.vala:1150 msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:729 src/Gtk/MainWindow.vala:522 -#: src/Gtk/MainWindow.vala:535 +#: src/Common/LinuxKernel.vala:732 src/Gtk/MainWindow.vala:511 +#: src/Gtk/MainWindow.vala:524 msgid "Running" msgstr "Ενεργός" -#: src/Common/LinuxKernel.vala:730 +#: src/Common/LinuxKernel.vala:733 msgid "Installed" msgstr "Εγκατεστημένος" -#: src/Common/LinuxKernel.vala:731 +#: src/Common/LinuxKernel.vala:734 msgid "Invalid" msgstr "Άκυρος" -#: src/Common/LinuxKernel.vala:817 +#: src/Common/LinuxKernel.vala:820 msgid "Packages Available" msgstr "Διαθέσιμα πακέτα" -#: src/Common/LinuxKernel.vala:823 +#: src/Common/LinuxKernel.vala:826 msgid "Packages Installed" msgstr "Εγκατεστημένα πακέτα" @@ -91,77 +91,95 @@ msgstr "Εγκατεστημένα πακέτα" msgid "File not found" msgstr "Το αρχείο δε βρέθηκε" -#: src/Common/LinuxKernel.vala:942 +#: src/Common/LinuxKernel.vala:945 msgid "Available Kernels" msgstr "Διαθέσιμοι πυρήνες" -#: src/Common/LinuxKernel.vala:982 +#: src/Common/LinuxKernel.vala:973 +#, fuzzy +msgid "No kernels specified" +msgstr "Η εντολή δεν προσδιορίστηκε" + +#: src/Common/LinuxKernel.vala:980 src/Gtk/MainWindow.vala:119 +msgid "Kernel" +msgstr "Πυρήνας" + +#: src/Common/LinuxKernel.vala:980 +#, fuzzy +msgid "not found" +msgstr "Το αρχείο δε βρέθηκε" + +#: src/Common/LinuxKernel.vala:1006 msgid "enabled" msgstr "ενεργοποιημένη" -#: src/Common/LinuxKernel.vala:1006 +#: src/Common/LinuxKernel.vala:1030 msgid "Downloading" msgstr "Κατέβασμα" -#: src/Common/LinuxKernel.vala:1026 +#: src/Common/LinuxKernel.vala:1055 msgid "is already installed." msgstr "είναι ήδη εγκατεστημένο." -#: src/Common/LinuxKernel.vala:1061 +#: src/Common/LinuxKernel.vala:1065 +msgid "download failed." +msgstr "" + +#: src/Common/LinuxKernel.vala:1082 msgid "Uninstalling selected kernels" msgstr "Απεγκατάσταση επιλεγμένων πυρήνων" -#: src/Common/LinuxKernel.vala:1067 +#: src/Common/LinuxKernel.vala:1086 msgid "requested" msgstr "ζητήθηκε" -#: src/Common/LinuxKernel.vala:1070 +#: src/Common/LinuxKernel.vala:1089 msgid "not uninstalling the currently running kernel" msgstr "δεν θα απεγκαταστήσει τον πυρήνα που εκτελείται αυτήν τη στιγμή" -#: src/Common/LinuxKernel.vala:1091 +#: src/Common/LinuxKernel.vala:1102 msgid "found" msgstr "ιδρύω" -#: src/Common/LinuxKernel.vala:1094 +#: src/Common/LinuxKernel.vala:1107 msgid "No packages to un-install!" msgstr "Δεν υπάρχουν πακέτα για απεγκατάσταση!" -#: src/Common/LinuxKernel.vala:1138 +#: src/Common/LinuxKernel.vala:1146 #, fuzzy msgid "is the highest installed version." msgstr "Απεγκαταστήστε όλες εκτός από την υψηλότερη εγκατεστημένη έκδοση" -#: src/Common/LinuxKernel.vala:1151 +#: src/Common/LinuxKernel.vala:1159 msgid "Could not find running kernel in list" msgstr "Δεν ήταν δυνατή η εύρεση του πυρήνα που εκτελείται αυτήν τη στιγμή" -#: src/Common/LinuxKernel.vala:1156 +#: src/Common/LinuxKernel.vala:1164 msgid "Could not find any kernels to uninstall" msgstr "Δεν βρέθηκε κανένας πυρήνας για απεγκατάσταση" -#: src/Common/LinuxKernel.vala:1164 +#: src/Common/LinuxKernel.vala:1172 msgid "The following kernels will be uninstalled" msgstr "Θα καταργηθεί η εγκατάσταση των ακόλουθων πυρήνων" -#: src/Common/LinuxKernel.vala:1168 +#: src/Common/LinuxKernel.vala:1176 msgid "Continue ?" msgstr "Συνέχεια;" -#: src/Common/LinuxKernel.vala:1190 src/Console/AppConsole.vala:292 +#: src/Common/LinuxKernel.vala:1198 src/Console/AppConsole.vala:234 msgid "Latest update" msgstr "Τελευταία αναβάθμιση" -#: src/Common/LinuxKernel.vala:1201 src/Console/AppConsole.vala:299 +#: src/Common/LinuxKernel.vala:1209 src/Console/AppConsole.vala:241 msgid "Latest point update" msgstr "Τελευταία ενημέρωση συντήρησης" -#: src/Common/LinuxKernel.vala:1209 src/Console/AppConsole.vala:304 -#: src/Console/AppConsole.vala:320 +#: src/Common/LinuxKernel.vala:1217 src/Console/AppConsole.vala:246 +#: src/Console/AppConsole.vala:262 msgid "No updates found" msgstr "Δεν βρέθηκαν ενημερώσεις" -#: src/Common/LinuxKernel.vala:1218 +#: src/Common/LinuxKernel.vala:1226 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Εγκατάσταση του πυρήνα έκδοσης %s ; (ν/ό):" @@ -190,147 +208,135 @@ msgstr "Οι ειδοποιήσεις είναι απενεργοποιημέν msgid "File not found: %s" msgstr "Το αρχείο δεν βρέθηκε: %s" -#: src/Console/AppConsole.vala:47 src/Gtk/AppGtk.vala:133 +#: src/Console/AppConsole.vala:43 src/Gtk/AppGtk.vala:139 msgid "Syntax" msgstr "Σύνταξη" -#: src/Console/AppConsole.vala:49 +#: src/Console/AppConsole.vala:45 msgid "Commands" msgstr "Εντολές" -#: src/Console/AppConsole.vala:51 +#: src/Console/AppConsole.vala:47 msgid "Check for kernel updates" msgstr "Έλεγχος για ενημερώσεις πυρήνα" -#: src/Console/AppConsole.vala:52 +#: src/Console/AppConsole.vala:48 msgid "Check for kernel updates and notify current user" msgstr "Έλεγχος για ενημερώσεις πυρήνα και ειδοποίηση τρέχοντα χρήστη" -#: src/Console/AppConsole.vala:53 -msgid "List all available mainline kernels" +#: src/Console/AppConsole.vala:49 +#, fuzzy +msgid "List available mainline kernels" msgstr "Εμφάνιση όλων των διαθέσιμων πυρήνων mainline" -#: src/Console/AppConsole.vala:54 +#: src/Console/AppConsole.vala:50 msgid "List installed kernels" msgstr "Εμφάνιση εγκατεστημένων πυρήνων" -#: src/Console/AppConsole.vala:55 +#: src/Console/AppConsole.vala:51 msgid "Install latest mainline kernel" msgstr "Εγκατάσταση του πιο πρόσφατου πυρήνα mainline" -#: src/Console/AppConsole.vala:56 -msgid "Install latest point update for current series" +#: src/Console/AppConsole.vala:52 +#, fuzzy +msgid "Install latest point update in the current major version" msgstr "Εγκαταστήστε την τελευταία ενημέρωση συντήρησης για την τρέχουσα σειρά" -#: src/Console/AppConsole.vala:57 -msgid "Install specified mainline kernel" -msgstr "Εγκατάσταση του καθορισμένου mainline πυρήνα" +#: src/Console/AppConsole.vala:53 +#, fuzzy +msgid "Install specified kernels" +msgstr "Απεγκατάσταση του καθορισμένου πυρήνα" -#: src/Console/AppConsole.vala:58 -msgid "Uninstall specified kernel" +#: src/Console/AppConsole.vala:54 +#, fuzzy +msgid "Uninstall specified kernels" msgstr "Απεγκατάσταση του καθορισμένου πυρήνα" -#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:338 +#: src/Console/AppConsole.vala:55 src/Gtk/MainWindow.vala:327 msgid "Uninstall all but the highest installed version" msgstr "Απεγκαταστήστε όλες εκτός από την υψηλότερη εγκατεστημένη έκδοση" -#: src/Console/AppConsole.vala:60 +#: src/Console/AppConsole.vala:56 msgid "Download specified kernels" msgstr "Λήψη των καθορισμένων πυρήνων" -#: src/Console/AppConsole.vala:61 +#: src/Console/AppConsole.vala:57 msgid "Delete cached info about available kernels" msgstr "" "Διαγραφή προσωρινά αποθηκευμένων πληροφοριών σχετικά με διαθέσιμους πυρήνες" -#: src/Console/AppConsole.vala:63 src/Gtk/AppGtk.vala:135 +#: src/Console/AppConsole.vala:59 src/Gtk/AppGtk.vala:141 msgid "Options" msgstr "Επιλογές" -#: src/Console/AppConsole.vala:65 +#: src/Console/AppConsole.vala:61 msgid "Include unstable and RC releases" msgstr "Συμπεριλάβετε ασταθείς και RC εκδόσεις" -#: src/Console/AppConsole.vala:66 +#: src/Console/AppConsole.vala:62 msgid "Exclude unstable and RC releases" msgstr "Εξαίρεση ασταθών και RC εκδόσεων" -#: src/Console/AppConsole.vala:67 -msgid "Enable verbose debugging output" -msgstr "Ενεργοποίηση αναλυτικής εξόδου εντοπισμού σφαλμάτων" +#: src/Console/AppConsole.vala:63 +msgid "Verbosity. Set to n if given, or increment." +msgstr "" -#: src/Console/AppConsole.vala:68 +#: src/Console/AppConsole.vala:64 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "Υποθέστε Ναι για όλα τα μηνύματα (μη διαδραστική λειτουργία)" -#: src/Console/AppConsole.vala:71 -msgid "A version string taken from the output of --list" +#: src/Console/AppConsole.vala:67 +#, fuzzy +msgid "One or more version strings taken from the output of --list" msgstr "Μια συμβολοσειρά έκδοσης που λαμβάνεται από την έξοδο του --list" -#: src/Console/AppConsole.vala:72 -msgid "One or more, comma-seperated" -msgstr "Ένα ή περισσότερα, διαχωρισμένα με κόμματα" +#: src/Console/AppConsole.vala:68 +msgid "comma, pipe, or colon-seperated, or quoted space seperated" +msgstr "" -#: src/Console/AppConsole.vala:73 -msgid "The currently running kernel will always be ignored" +#: src/Console/AppConsole.vala:69 +#, fuzzy +msgid "Locked kernels and the currently running kernel are ignored" msgstr "Αυτός ο πυρήνας είναι ήδη εγκατεστημένος." -#: src/Console/AppConsole.vala:163 src/Gtk/AppGtk.vala:119 +#: src/Console/AppConsole.vala:160 src/Gtk/AppGtk.vala:125 msgid "Unknown option" msgstr "Άγνωστη επιλογή" -#: src/Console/AppConsole.vala:164 src/Console/AppConsole.vala:250 -#: src/Console/AppConsole.vala:278 +#: src/Console/AppConsole.vala:161 src/Console/AppConsole.vala:220 msgid "Run" msgstr "Τρέξτε" -#: src/Console/AppConsole.vala:164 +#: src/Console/AppConsole.vala:161 msgid "to list all options" msgstr "για να παραθέσετε όλες τις επιλογές" -#: src/Console/AppConsole.vala:218 src/Console/AppConsole.vala:258 -msgid "No kernels specified" -msgstr "Δεν έχουν καθοριστεί πυρήνες" - -#: src/Console/AppConsole.vala:224 -msgid "Multiple kernels selected for installation. Select only one." -msgstr "Επιλέχθηκαν πολλαπλοί πυρήνες για εγκατάσταση. Επιλέξτε μόνο ένα." - -#: src/Console/AppConsole.vala:247 -msgid "Could not find requested version" -msgstr "Δε βρέθηκε η ζητούμενη έκδοση" - -#: src/Console/AppConsole.vala:250 -msgid "and use a version string listed in first column" -msgstr "" -"και χρησιμοποιήστε μια συμβολοσειρά έκδοσης που αναφέρεται στην πρώτη στήλη" - -#: src/Console/AppConsole.vala:277 +#: src/Console/AppConsole.vala:219 msgid "Command not specified" msgstr "Η εντολή δεν προσδιορίστηκε" -#: src/Console/AppConsole.vala:278 +#: src/Console/AppConsole.vala:220 msgid "to list all commands" msgstr "για να παραθέσετε όλες τις εντολές" -#: src/Console/AppConsole.vala:314 +#: src/Console/AppConsole.vala:256 msgid "Notifications disabled in settings" msgstr "Οι ειδοποιήσεις είναι απενεργοποιημένες στις ρυθμίσεις" -#: src/Console/AppConsole.vala:342 +#: src/Console/AppConsole.vala:284 #, c-format msgid "Kernel %s Available" msgstr "Πυρήνας %s διαθέσιμος" -#: src/Console/AppConsole.vala:346 src/Gtk/SettingsDialog.vala:166 +#: src/Console/AppConsole.vala:288 src/Gtk/SettingsDialog.vala:166 msgid "Show" msgstr "Προβολή" -#: src/Console/AppConsole.vala:347 src/Gtk/MainWindow.vala:305 +#: src/Console/AppConsole.vala:289 src/Gtk/MainWindow.vala:299 msgid "Install" msgstr "Εγκατάσταση" -#: src/Console/AppConsole.vala:350 +#: src/Console/AppConsole.vala:292 msgid "Previously notified" msgstr "Έχει ήδη κοινοποιηθεί" @@ -370,90 +376,86 @@ msgstr "Τεκμηριωτές" msgid "Third Party Inclusions" msgstr "Συμπεριλήψεις τρίτων" -#: src/Gtk/AppGtk.vala:133 +#: src/Gtk/AppGtk.vala:139 msgid "options" msgstr "επιλογές" -#: src/Gtk/AppGtk.vala:137 +#: src/Gtk/AppGtk.vala:143 msgid "Print debug information" msgstr "Εκτύπωση πληροφοριών εντοπισμού σφαλμάτων" -#: src/Gtk/AppGtk.vala:138 +#: src/Gtk/AppGtk.vala:144 msgid "Show all options" msgstr "Εμφάνιση όλων των επιλογών" -#: src/Gtk/MainWindow.vala:123 -msgid "Kernel" -msgstr "Πυρήνας" - -#: src/Gtk/MainWindow.vala:145 +#: src/Gtk/MainWindow.vala:143 msgid "Lock" msgstr "" -#: src/Gtk/MainWindow.vala:162 +#: src/Gtk/MainWindow.vala:160 msgid "Status" msgstr "Κατάσταση" -#: src/Gtk/MainWindow.vala:174 +#: src/Gtk/MainWindow.vala:172 msgid "Notes" msgstr "Σημειώσεις" -#: src/Gtk/MainWindow.vala:315 +#: src/Gtk/MainWindow.vala:307 msgid "Uninstall" msgstr "Απεγκατάσταση" -#: src/Gtk/MainWindow.vala:326 +#: src/Gtk/MainWindow.vala:316 msgid "Changelog, build status, etc" msgstr "" -#: src/Gtk/MainWindow.vala:337 +#: src/Gtk/MainWindow.vala:326 msgid "Uninstall Old" msgstr "Απεγκατάσταση παλαιών" -#: src/Gtk/MainWindow.vala:343 +#: src/Gtk/MainWindow.vala:332 msgid "Reload" msgstr "Δροσίζω" -#: src/Gtk/MainWindow.vala:344 +#: src/Gtk/MainWindow.vala:333 msgid "Delete and reload all cached kernel info" msgstr "" -#: src/Gtk/MainWindow.vala:349 src/Gtk/SettingsDialog.vala:49 +#: src/Gtk/MainWindow.vala:338 src/Gtk/SettingsDialog.vala:49 msgid "Settings" msgstr "Ρυθμίσεις" -#: src/Gtk/MainWindow.vala:354 +#: src/Gtk/MainWindow.vala:343 msgid "About" msgstr "Σχετικά" -#: src/Gtk/MainWindow.vala:359 +#: src/Gtk/MainWindow.vala:348 msgid "Exit" msgstr "Έξοδος" -#: src/Gtk/MainWindow.vala:425 +#: src/Gtk/MainWindow.vala:414 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Πρόγραμμα αναβάθμισης πυρήνα για διανομές που βασίζονται στο Ubuntu" -#: src/Gtk/MainWindow.vala:426 +#: src/Gtk/MainWindow.vala:415 msgid "Forked" msgstr "Forked" -#: src/Gtk/MainWindow.vala:426 +#: src/Gtk/MainWindow.vala:415 msgid "Original" msgstr "Πρωτότυπο" -#: src/Gtk/MainWindow.vala:463 +#: src/Gtk/MainWindow.vala:452 msgid "Updating kernels" msgstr "Ενημέρωση πυρήνων" -#: src/Gtk/MainWindow.vala:531 +#: src/Gtk/MainWindow.vala:520 msgid "available" msgstr "διαθέσιμος" -#: src/Gtk/MainWindow.vala:573 src/Gtk/MainWindow.vala:614 -#: src/Gtk/MainWindow.vala:649 +#: src/Gtk/MainWindow.vala:575 src/Gtk/MainWindow.vala:614 +#: src/Gtk/MainWindow.vala:646 msgid "DONE" -msgstr "ΈΤΟΙΜΟ" +msgstr "" #: src/Gtk/ProgressWindow.vala:126 src/Gtk/TerminalWindow.vala:151 msgid "Cancel" diff --git a/po/es.po b/po/es.po index a41d7ab0..115cd7ed 100644 --- a/po/es.po +++ b/po/es.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-26 13:36-0400\n" +"POT-Creation-Date: 2023-05-29 06:50-0400\n" "PO-Revision-Date: 2018-01-03 02:03-0600\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish\n" @@ -13,77 +13,77 @@ msgstr "" "X-Launchpad-Export-Date: 2017-04-13 11:48+0000\n" "X-Generator: Poedit 2.0.5\n" -#: src/Common/LinuxKernel.vala:105 +#: src/Common/LinuxKernel.vala:104 msgid "Distribution" msgstr "Distribución" -#: src/Common/LinuxKernel.vala:120 +#: src/Common/LinuxKernel.vala:119 msgid "Architecture" msgstr "Arquitectura del sistema" -#: src/Common/LinuxKernel.vala:135 +#: src/Common/LinuxKernel.vala:134 msgid "Running kernel" msgstr "Kernel en ejecución" -#: src/Common/LinuxKernel.vala:257 +#: src/Common/LinuxKernel.vala:250 msgid "loading cached" msgstr "carga en caché" -#: src/Common/LinuxKernel.vala:269 +#: src/Common/LinuxKernel.vala:262 msgid "queuing download" msgstr "descarga de colas" -#: src/Common/LinuxKernel.vala:290 +#: src/Common/LinuxKernel.vala:283 msgid "Fetching individual kernel indexes" msgstr "Obtención de índices de kernel individuales" -#: src/Common/LinuxKernel.vala:306 +#: src/Common/LinuxKernel.vala:299 msgid "loading downloaded" msgstr "cargando descargado" -#: src/Common/LinuxKernel.vala:341 +#: src/Common/LinuxKernel.vala:334 msgid "Updating from" msgstr "Actualización desde" -#: src/Common/LinuxKernel.vala:349 +#: src/Common/LinuxKernel.vala:342 msgid "OK" msgstr "Aceptar" -#: src/Common/LinuxKernel.vala:352 +#: src/Common/LinuxKernel.vala:345 msgid "FAILED" msgstr "FRACASADO" -#: src/Common/LinuxKernel.vala:405 +#: src/Common/LinuxKernel.vala:409 msgid "Found installed" msgstr "Encontrado instalado" -#: src/Common/LinuxKernel.vala:411 +#: src/Common/LinuxKernel.vala:410 msgid "locked" msgstr "" -#: src/Common/LinuxKernel.vala:495 src/Common/LinuxKernel.vala:1031 -#: src/Common/LinuxKernel.vala:1075 src/Common/LinuxKernel.vala:1142 +#: src/Common/LinuxKernel.vala:497 src/Common/LinuxKernel.vala:1060 +#: src/Common/LinuxKernel.vala:1094 src/Common/LinuxKernel.vala:1150 msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:729 src/Gtk/MainWindow.vala:522 -#: src/Gtk/MainWindow.vala:535 +#: src/Common/LinuxKernel.vala:732 src/Gtk/MainWindow.vala:511 +#: src/Gtk/MainWindow.vala:524 msgid "Running" msgstr "En ejecución" -#: src/Common/LinuxKernel.vala:730 +#: src/Common/LinuxKernel.vala:733 msgid "Installed" msgstr "Instalado" -#: src/Common/LinuxKernel.vala:731 +#: src/Common/LinuxKernel.vala:734 msgid "Invalid" msgstr "No válido" -#: src/Common/LinuxKernel.vala:817 +#: src/Common/LinuxKernel.vala:820 msgid "Packages Available" msgstr "Paquetes disponibles" -#: src/Common/LinuxKernel.vala:823 +#: src/Common/LinuxKernel.vala:826 msgid "Packages Installed" msgstr "Paquetes instalados" @@ -91,77 +91,95 @@ msgstr "Paquetes instalados" msgid "File not found" msgstr "No se encontró el archivo" -#: src/Common/LinuxKernel.vala:942 +#: src/Common/LinuxKernel.vala:945 msgid "Available Kernels" msgstr "Núcleos disponibles" -#: src/Common/LinuxKernel.vala:982 +#: src/Common/LinuxKernel.vala:973 +#, fuzzy +msgid "No kernels specified" +msgstr "Coomand no especificado" + +#: src/Common/LinuxKernel.vala:980 src/Gtk/MainWindow.vala:119 +msgid "Kernel" +msgstr "Núcleo" + +#: src/Common/LinuxKernel.vala:980 +#, fuzzy +msgid "not found" +msgstr "No se encontró el archivo" + +#: src/Common/LinuxKernel.vala:1006 msgid "enabled" msgstr "habilitado" -#: src/Common/LinuxKernel.vala:1006 +#: src/Common/LinuxKernel.vala:1030 msgid "Downloading" msgstr "Descargar" -#: src/Common/LinuxKernel.vala:1026 +#: src/Common/LinuxKernel.vala:1055 msgid "is already installed." msgstr "ya está instalado." -#: src/Common/LinuxKernel.vala:1061 +#: src/Common/LinuxKernel.vala:1065 +msgid "download failed." +msgstr "" + +#: src/Common/LinuxKernel.vala:1082 msgid "Uninstalling selected kernels" msgstr "Desinstalación de kernels seleccionados" -#: src/Common/LinuxKernel.vala:1067 +#: src/Common/LinuxKernel.vala:1086 msgid "requested" msgstr "solicitado" -#: src/Common/LinuxKernel.vala:1070 +#: src/Common/LinuxKernel.vala:1089 msgid "not uninstalling the currently running kernel" msgstr "No desinstalará el kernel que se está ejecutando actualmente" -#: src/Common/LinuxKernel.vala:1091 +#: src/Common/LinuxKernel.vala:1102 msgid "found" msgstr "fundar" -#: src/Common/LinuxKernel.vala:1094 +#: src/Common/LinuxKernel.vala:1107 msgid "No packages to un-install!" msgstr "¡No hay paquetes para desinstalar!" -#: src/Common/LinuxKernel.vala:1138 +#: src/Common/LinuxKernel.vala:1146 #, fuzzy msgid "is the highest installed version." msgstr "Desinstale todas las versiones instaladas excepto la más alta" -#: src/Common/LinuxKernel.vala:1151 +#: src/Common/LinuxKernel.vala:1159 msgid "Could not find running kernel in list" msgstr "No se pudo encontrar el kernel en ejecución en la lista" -#: src/Common/LinuxKernel.vala:1156 +#: src/Common/LinuxKernel.vala:1164 msgid "Could not find any kernels to uninstall" msgstr "No se pudo encontrar ningún kernel para desinstalar" -#: src/Common/LinuxKernel.vala:1164 +#: src/Common/LinuxKernel.vala:1172 msgid "The following kernels will be uninstalled" msgstr "Se desinstalarán los siguientes kernels" -#: src/Common/LinuxKernel.vala:1168 +#: src/Common/LinuxKernel.vala:1176 msgid "Continue ?" msgstr "¿Continuar?" -#: src/Common/LinuxKernel.vala:1190 src/Console/AppConsole.vala:292 +#: src/Common/LinuxKernel.vala:1198 src/Console/AppConsole.vala:234 msgid "Latest update" msgstr "Última actualización" -#: src/Common/LinuxKernel.vala:1201 src/Console/AppConsole.vala:299 +#: src/Common/LinuxKernel.vala:1209 src/Console/AppConsole.vala:241 msgid "Latest point update" msgstr "Última actualización puntual" -#: src/Common/LinuxKernel.vala:1209 src/Console/AppConsole.vala:304 -#: src/Console/AppConsole.vala:320 +#: src/Common/LinuxKernel.vala:1217 src/Console/AppConsole.vala:246 +#: src/Console/AppConsole.vala:262 msgid "No updates found" msgstr "No se encontró ninguna actualización" -#: src/Common/LinuxKernel.vala:1218 +#: src/Common/LinuxKernel.vala:1226 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Instalar la versión del kernel %s? (s/n): " @@ -190,145 +208,134 @@ msgstr "Las notificaciones están deshabilitadas" msgid "File not found: %s" msgstr "Archivo no encontrado: %s" -#: src/Console/AppConsole.vala:47 src/Gtk/AppGtk.vala:133 +#: src/Console/AppConsole.vala:43 src/Gtk/AppGtk.vala:139 msgid "Syntax" msgstr "Sintaxis" -#: src/Console/AppConsole.vala:49 +#: src/Console/AppConsole.vala:45 msgid "Commands" msgstr "Comandos" -#: src/Console/AppConsole.vala:51 +#: src/Console/AppConsole.vala:47 msgid "Check for kernel updates" msgstr "Buscar actualizaciones del núcleo" -#: src/Console/AppConsole.vala:52 +#: src/Console/AppConsole.vala:48 msgid "Check for kernel updates and notify current user" msgstr "Compruebe las actualizaciones del kernel y notifique al usuario actual" -#: src/Console/AppConsole.vala:53 -msgid "List all available mainline kernels" +#: src/Console/AppConsole.vala:49 +#, fuzzy +msgid "List available mainline kernels" msgstr "Mostrar todos los núcleos troncales disponibles" -#: src/Console/AppConsole.vala:54 +#: src/Console/AppConsole.vala:50 msgid "List installed kernels" msgstr "Mostrar kernels disponibles" -#: src/Console/AppConsole.vala:55 +#: src/Console/AppConsole.vala:51 msgid "Install latest mainline kernel" msgstr "Instalar kernel troncal especificado" -#: src/Console/AppConsole.vala:56 -msgid "Install latest point update for current series" +#: src/Console/AppConsole.vala:52 +#, fuzzy +msgid "Install latest point update in the current major version" msgstr "Instalar la actualización de punto más reciente para la serie actual" -#: src/Console/AppConsole.vala:57 -msgid "Install specified mainline kernel" -msgstr "Instalar núcleo troncal especificado" +#: src/Console/AppConsole.vala:53 +#, fuzzy +msgid "Install specified kernels" +msgstr "Desinstalar el kernel especificado" -#: src/Console/AppConsole.vala:58 -msgid "Uninstall specified kernel" +#: src/Console/AppConsole.vala:54 +#, fuzzy +msgid "Uninstall specified kernels" msgstr "Desinstalar el kernel especificado" -#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:338 +#: src/Console/AppConsole.vala:55 src/Gtk/MainWindow.vala:327 msgid "Uninstall all but the highest installed version" msgstr "Desinstale todas las versiones instaladas excepto la más alta" -#: src/Console/AppConsole.vala:60 +#: src/Console/AppConsole.vala:56 msgid "Download specified kernels" msgstr "Descargar kernels especificados" -#: src/Console/AppConsole.vala:61 +#: src/Console/AppConsole.vala:57 msgid "Delete cached info about available kernels" msgstr "Eliminar información almacenada en caché sobre los kernels disponibles" -#: src/Console/AppConsole.vala:63 src/Gtk/AppGtk.vala:135 +#: src/Console/AppConsole.vala:59 src/Gtk/AppGtk.vala:141 msgid "Options" msgstr "Opciones" -#: src/Console/AppConsole.vala:65 +#: src/Console/AppConsole.vala:61 msgid "Include unstable and RC releases" msgstr "Incluye versiones inestables y RC" -#: src/Console/AppConsole.vala:66 +#: src/Console/AppConsole.vala:62 msgid "Exclude unstable and RC releases" msgstr "Excluir versiones inestables y RC" -#: src/Console/AppConsole.vala:67 -msgid "Enable verbose debugging output" -msgstr "Habilitar la salida de depuración detallada" +#: src/Console/AppConsole.vala:63 +msgid "Verbosity. Set to n if given, or increment." +msgstr "" -#: src/Console/AppConsole.vala:68 +#: src/Console/AppConsole.vala:64 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "Asumir Sí para todas las solicitudes (modo no interactivo)" -#: src/Console/AppConsole.vala:71 -msgid "A version string taken from the output of --list" +#: src/Console/AppConsole.vala:67 +#, fuzzy +msgid "One or more version strings taken from the output of --list" msgstr "Una cadena de versión tomada de la salida de --list" -#: src/Console/AppConsole.vala:72 -msgid "One or more, comma-seperated" -msgstr "Uno o más, separados por comas" +#: src/Console/AppConsole.vala:68 +msgid "comma, pipe, or colon-seperated, or quoted space seperated" +msgstr "" -#: src/Console/AppConsole.vala:73 -msgid "The currently running kernel will always be ignored" +#: src/Console/AppConsole.vala:69 +#, fuzzy +msgid "Locked kernels and the currently running kernel are ignored" msgstr "El kernel que se está ejecutando actualmente siempre será ignorado" -#: src/Console/AppConsole.vala:163 src/Gtk/AppGtk.vala:119 +#: src/Console/AppConsole.vala:160 src/Gtk/AppGtk.vala:125 msgid "Unknown option" msgstr "Opción desconocida" -#: src/Console/AppConsole.vala:164 src/Console/AppConsole.vala:250 -#: src/Console/AppConsole.vala:278 +#: src/Console/AppConsole.vala:161 src/Console/AppConsole.vala:220 msgid "Run" msgstr "En ejecución" -#: src/Console/AppConsole.vala:164 +#: src/Console/AppConsole.vala:161 msgid "to list all options" msgstr "para enumerar todas las opciones" -#: src/Console/AppConsole.vala:218 src/Console/AppConsole.vala:258 -msgid "No kernels specified" -msgstr "No se especifican núcleos" - -#: src/Console/AppConsole.vala:224 -msgid "Multiple kernels selected for installation. Select only one." -msgstr "Se seleccionaron varios núcleos para su instalación. Elija solo uno." - -#: src/Console/AppConsole.vala:247 -msgid "Could not find requested version" -msgstr "No se pudo encontrar la versión solicitada" - -#: src/Console/AppConsole.vala:250 -msgid "and use a version string listed in first column" -msgstr "y utilice una cadena de versión enumerada en la primera columna" - -#: src/Console/AppConsole.vala:277 +#: src/Console/AppConsole.vala:219 msgid "Command not specified" msgstr "Coomand no especificado" -#: src/Console/AppConsole.vala:278 +#: src/Console/AppConsole.vala:220 msgid "to list all commands" msgstr "para enumerar todos los cmmands" -#: src/Console/AppConsole.vala:314 +#: src/Console/AppConsole.vala:256 msgid "Notifications disabled in settings" msgstr "Notificaciones deshabilitadas en la configuración" -#: src/Console/AppConsole.vala:342 +#: src/Console/AppConsole.vala:284 #, c-format msgid "Kernel %s Available" msgstr "Kernel %s Disponible" -#: src/Console/AppConsole.vala:346 src/Gtk/SettingsDialog.vala:166 +#: src/Console/AppConsole.vala:288 src/Gtk/SettingsDialog.vala:166 msgid "Show" msgstr "Mostrar" -#: src/Console/AppConsole.vala:347 src/Gtk/MainWindow.vala:305 +#: src/Console/AppConsole.vala:289 src/Gtk/MainWindow.vala:299 msgid "Install" msgstr "Instalar" -#: src/Console/AppConsole.vala:350 +#: src/Console/AppConsole.vala:292 msgid "Previously notified" msgstr "Notificado previamente" @@ -368,91 +375,87 @@ msgstr "Documentadores" msgid "Third Party Inclusions" msgstr "Herramientas de Terceros" -#: src/Gtk/AppGtk.vala:133 +#: src/Gtk/AppGtk.vala:139 msgid "options" msgstr "opciones" -#: src/Gtk/AppGtk.vala:137 +#: src/Gtk/AppGtk.vala:143 msgid "Print debug information" msgstr "Mostrar información de depuración" -#: src/Gtk/AppGtk.vala:138 +#: src/Gtk/AppGtk.vala:144 msgid "Show all options" msgstr "Mostrar todas las opciones" -#: src/Gtk/MainWindow.vala:123 -msgid "Kernel" -msgstr "Núcleo" - -#: src/Gtk/MainWindow.vala:145 +#: src/Gtk/MainWindow.vala:143 msgid "Lock" msgstr "" -#: src/Gtk/MainWindow.vala:162 +#: src/Gtk/MainWindow.vala:160 msgid "Status" msgstr "Estado" -#: src/Gtk/MainWindow.vala:174 +#: src/Gtk/MainWindow.vala:172 msgid "Notes" msgstr "Notas" -#: src/Gtk/MainWindow.vala:315 +#: src/Gtk/MainWindow.vala:307 msgid "Uninstall" msgstr "Desinstalar" -#: src/Gtk/MainWindow.vala:326 +#: src/Gtk/MainWindow.vala:316 msgid "Changelog, build status, etc" msgstr "" -#: src/Gtk/MainWindow.vala:337 +#: src/Gtk/MainWindow.vala:326 msgid "Uninstall Old" msgstr "Desinstalar Antiguo" -#: src/Gtk/MainWindow.vala:343 +#: src/Gtk/MainWindow.vala:332 msgid "Reload" msgstr "Recargar" -#: src/Gtk/MainWindow.vala:344 +#: src/Gtk/MainWindow.vala:333 msgid "Delete and reload all cached kernel info" msgstr "" -#: src/Gtk/MainWindow.vala:349 src/Gtk/SettingsDialog.vala:49 +#: src/Gtk/MainWindow.vala:338 src/Gtk/SettingsDialog.vala:49 msgid "Settings" msgstr "Configuración" -#: src/Gtk/MainWindow.vala:354 +#: src/Gtk/MainWindow.vala:343 msgid "About" msgstr "Acerca de" -#: src/Gtk/MainWindow.vala:359 +#: src/Gtk/MainWindow.vala:348 msgid "Exit" msgstr "Salida" -#: src/Gtk/MainWindow.vala:425 +#: src/Gtk/MainWindow.vala:414 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "" "Herramienta de renovación de núcleo para distribuciones basadas en Ubuntu" -#: src/Gtk/MainWindow.vala:426 +#: src/Gtk/MainWindow.vala:415 msgid "Forked" msgstr "Bifurcada" -#: src/Gtk/MainWindow.vala:426 +#: src/Gtk/MainWindow.vala:415 msgid "Original" msgstr "Original" -#: src/Gtk/MainWindow.vala:463 +#: src/Gtk/MainWindow.vala:452 msgid "Updating kernels" msgstr "Actualización de kernels" -#: src/Gtk/MainWindow.vala:531 +#: src/Gtk/MainWindow.vala:520 msgid "available" msgstr "disponibles" -#: src/Gtk/MainWindow.vala:573 src/Gtk/MainWindow.vala:614 -#: src/Gtk/MainWindow.vala:649 +#: src/Gtk/MainWindow.vala:575 src/Gtk/MainWindow.vala:614 +#: src/Gtk/MainWindow.vala:646 msgid "DONE" -msgstr "HECHO" +msgstr "" #: src/Gtk/ProgressWindow.vala:126 src/Gtk/TerminalWindow.vala:151 msgid "Cancel" diff --git a/po/fr.po b/po/fr.po index b05f1e14..586ecbd6 100644 --- a/po/fr.po +++ b/po/fr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-26 13:36-0400\n" +"POT-Creation-Date: 2023-05-29 06:50-0400\n" "PO-Revision-Date: 2018-08-05 15:50+0200\n" "Last-Translator: Yolateng0 \n" "Language-Team: French\n" @@ -13,77 +13,77 @@ msgstr "" "X-Launchpad-Export-Date: 2017-04-13 11:48+0000\n" "X-Generator: Poedit 2.0.6\n" -#: src/Common/LinuxKernel.vala:105 +#: src/Common/LinuxKernel.vala:104 msgid "Distribution" msgstr "Distribution" -#: src/Common/LinuxKernel.vala:120 +#: src/Common/LinuxKernel.vala:119 msgid "Architecture" msgstr "Architecture" -#: src/Common/LinuxKernel.vala:135 +#: src/Common/LinuxKernel.vala:134 msgid "Running kernel" msgstr "Noyau en cours d'exécution" -#: src/Common/LinuxKernel.vala:257 +#: src/Common/LinuxKernel.vala:250 msgid "loading cached" msgstr "chargement mis en cache" -#: src/Common/LinuxKernel.vala:269 +#: src/Common/LinuxKernel.vala:262 msgid "queuing download" msgstr "enqueuing télécharger" -#: src/Common/LinuxKernel.vala:290 +#: src/Common/LinuxKernel.vala:283 msgid "Fetching individual kernel indexes" msgstr "Récupération d'index de noyau individuels" -#: src/Common/LinuxKernel.vala:306 +#: src/Common/LinuxKernel.vala:299 msgid "loading downloaded" msgstr "chargement téléchargé" -#: src/Common/LinuxKernel.vala:341 +#: src/Common/LinuxKernel.vala:334 msgid "Updating from" msgstr "Mise à jour à partir de" -#: src/Common/LinuxKernel.vala:349 +#: src/Common/LinuxKernel.vala:342 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:352 +#: src/Common/LinuxKernel.vala:345 msgid "FAILED" msgstr "RATÉ" -#: src/Common/LinuxKernel.vala:405 +#: src/Common/LinuxKernel.vala:409 msgid "Found installed" msgstr "Trouvé installé" -#: src/Common/LinuxKernel.vala:411 +#: src/Common/LinuxKernel.vala:410 msgid "locked" msgstr "" -#: src/Common/LinuxKernel.vala:495 src/Common/LinuxKernel.vala:1031 -#: src/Common/LinuxKernel.vala:1075 src/Common/LinuxKernel.vala:1142 +#: src/Common/LinuxKernel.vala:497 src/Common/LinuxKernel.vala:1060 +#: src/Common/LinuxKernel.vala:1094 src/Common/LinuxKernel.vala:1150 msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:729 src/Gtk/MainWindow.vala:522 -#: src/Gtk/MainWindow.vala:535 +#: src/Common/LinuxKernel.vala:732 src/Gtk/MainWindow.vala:511 +#: src/Gtk/MainWindow.vala:524 msgid "Running" msgstr "Actuel" -#: src/Common/LinuxKernel.vala:730 +#: src/Common/LinuxKernel.vala:733 msgid "Installed" msgstr "Installé" -#: src/Common/LinuxKernel.vala:731 +#: src/Common/LinuxKernel.vala:734 msgid "Invalid" msgstr "No válido" -#: src/Common/LinuxKernel.vala:817 +#: src/Common/LinuxKernel.vala:820 msgid "Packages Available" msgstr "Paquets Disponibles" -#: src/Common/LinuxKernel.vala:823 +#: src/Common/LinuxKernel.vala:826 msgid "Packages Installed" msgstr "Paquets Installés" @@ -91,77 +91,95 @@ msgstr "Paquets Installés" msgid "File not found" msgstr "Fichier non trouvé" -#: src/Common/LinuxKernel.vala:942 +#: src/Common/LinuxKernel.vala:945 msgid "Available Kernels" msgstr "Noyaux Disponibles" -#: src/Common/LinuxKernel.vala:982 +#: src/Common/LinuxKernel.vala:973 +#, fuzzy +msgid "No kernels specified" +msgstr "Pas de commande fournie" + +#: src/Common/LinuxKernel.vala:980 src/Gtk/MainWindow.vala:119 +msgid "Kernel" +msgstr "Noyau" + +#: src/Common/LinuxKernel.vala:980 +#, fuzzy +msgid "not found" +msgstr "Fichier non trouvé" + +#: src/Common/LinuxKernel.vala:1006 msgid "enabled" msgstr "activé" -#: src/Common/LinuxKernel.vala:1006 +#: src/Common/LinuxKernel.vala:1030 msgid "Downloading" msgstr "Téléchargement" -#: src/Common/LinuxKernel.vala:1026 +#: src/Common/LinuxKernel.vala:1055 msgid "is already installed." msgstr "est déjà installé." -#: src/Common/LinuxKernel.vala:1061 +#: src/Common/LinuxKernel.vala:1065 +msgid "download failed." +msgstr "" + +#: src/Common/LinuxKernel.vala:1082 msgid "Uninstalling selected kernels" msgstr "Désinstallation des noyaux sélectionnés" -#: src/Common/LinuxKernel.vala:1067 +#: src/Common/LinuxKernel.vala:1086 msgid "requested" msgstr "Demandé" -#: src/Common/LinuxKernel.vala:1070 +#: src/Common/LinuxKernel.vala:1089 msgid "not uninstalling the currently running kernel" msgstr "Ne pas désinstaller le noyau en cours d'exécution" -#: src/Common/LinuxKernel.vala:1091 +#: src/Common/LinuxKernel.vala:1102 msgid "found" msgstr "fonder" -#: src/Common/LinuxKernel.vala:1094 +#: src/Common/LinuxKernel.vala:1107 msgid "No packages to un-install!" msgstr "Pas de paquets à désinstaller !" -#: src/Common/LinuxKernel.vala:1138 +#: src/Common/LinuxKernel.vala:1146 #, fuzzy msgid "is the highest installed version." msgstr "Désinstallez toutes le version installées, sauf la plus élevée" -#: src/Common/LinuxKernel.vala:1151 +#: src/Common/LinuxKernel.vala:1159 msgid "Could not find running kernel in list" msgstr "Impossible de trouver le noyau en cours d'exécution dans la liste" -#: src/Common/LinuxKernel.vala:1156 +#: src/Common/LinuxKernel.vala:1164 msgid "Could not find any kernels to uninstall" msgstr "Impossible de trouver des noyaux à désinstaller" -#: src/Common/LinuxKernel.vala:1164 +#: src/Common/LinuxKernel.vala:1172 msgid "The following kernels will be uninstalled" msgstr "Les noyaux suivants seront désinstallés" -#: src/Common/LinuxKernel.vala:1168 +#: src/Common/LinuxKernel.vala:1176 msgid "Continue ?" msgstr "Reprendre ?" -#: src/Common/LinuxKernel.vala:1190 src/Console/AppConsole.vala:292 +#: src/Common/LinuxKernel.vala:1198 src/Console/AppConsole.vala:234 msgid "Latest update" msgstr "Dernière mise à jour" -#: src/Common/LinuxKernel.vala:1201 src/Console/AppConsole.vala:299 +#: src/Common/LinuxKernel.vala:1209 src/Console/AppConsole.vala:241 msgid "Latest point update" msgstr "Dernière mise à jour mineure" -#: src/Common/LinuxKernel.vala:1209 src/Console/AppConsole.vala:304 -#: src/Console/AppConsole.vala:320 +#: src/Common/LinuxKernel.vala:1217 src/Console/AppConsole.vala:246 +#: src/Console/AppConsole.vala:262 msgid "No updates found" msgstr "Aucune mise à jour disponible" -#: src/Common/LinuxKernel.vala:1218 +#: src/Common/LinuxKernel.vala:1226 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Installer le noyau en version %s ? (y/n): " @@ -190,147 +208,134 @@ msgstr "Les notifications sont désactivées" msgid "File not found: %s" msgstr "Fichier introuvable : %s" -#: src/Console/AppConsole.vala:47 src/Gtk/AppGtk.vala:133 +#: src/Console/AppConsole.vala:43 src/Gtk/AppGtk.vala:139 msgid "Syntax" msgstr "Syntaxe" -#: src/Console/AppConsole.vala:49 +#: src/Console/AppConsole.vala:45 msgid "Commands" msgstr "Commandes" -#: src/Console/AppConsole.vala:51 +#: src/Console/AppConsole.vala:47 msgid "Check for kernel updates" msgstr "Vérifier les mises à jour de noyau" -#: src/Console/AppConsole.vala:52 +#: src/Console/AppConsole.vala:48 msgid "Check for kernel updates and notify current user" msgstr "Vérifier les mises à jour de noyau et notifier l'utilisateur" -#: src/Console/AppConsole.vala:53 -msgid "List all available mainline kernels" +#: src/Console/AppConsole.vala:49 +#, fuzzy +msgid "List available mainline kernels" msgstr "Lister tous les noyaux mainline disponibles" -#: src/Console/AppConsole.vala:54 +#: src/Console/AppConsole.vala:50 msgid "List installed kernels" msgstr "Lister les noyaux installés" -#: src/Console/AppConsole.vala:55 +#: src/Console/AppConsole.vala:51 msgid "Install latest mainline kernel" msgstr "Installer le dernier noyau mainline" -#: src/Console/AppConsole.vala:56 -msgid "Install latest point update for current series" +#: src/Console/AppConsole.vala:52 +#, fuzzy +msgid "Install latest point update in the current major version" msgstr "Installer la dernière version mineure pour la série courante" -#: src/Console/AppConsole.vala:57 -msgid "Install specified mainline kernel" -msgstr "Installer le noyau mainline spécifié" +#: src/Console/AppConsole.vala:53 +#, fuzzy +msgid "Install specified kernels" +msgstr "Désinstaller le noyau spécifié" -#: src/Console/AppConsole.vala:58 -msgid "Uninstall specified kernel" +#: src/Console/AppConsole.vala:54 +#, fuzzy +msgid "Uninstall specified kernels" msgstr "Désinstaller le noyau spécifié" -#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:338 +#: src/Console/AppConsole.vala:55 src/Gtk/MainWindow.vala:327 msgid "Uninstall all but the highest installed version" msgstr "Désinstallez toutes le version installées, sauf la plus élevée" -#: src/Console/AppConsole.vala:60 +#: src/Console/AppConsole.vala:56 msgid "Download specified kernels" msgstr "Télécharger les noyaux spécifiés" -#: src/Console/AppConsole.vala:61 +#: src/Console/AppConsole.vala:57 msgid "Delete cached info about available kernels" msgstr "Supprimer les informations mises en cache sur les noyaux disponibles" -#: src/Console/AppConsole.vala:63 src/Gtk/AppGtk.vala:135 +#: src/Console/AppConsole.vala:59 src/Gtk/AppGtk.vala:141 msgid "Options" msgstr "Options" -#: src/Console/AppConsole.vala:65 +#: src/Console/AppConsole.vala:61 msgid "Include unstable and RC releases" msgstr "Inclure les versions instables et RC" -#: src/Console/AppConsole.vala:66 +#: src/Console/AppConsole.vala:62 msgid "Exclude unstable and RC releases" msgstr "Exclure les versions instables et RC" -#: src/Console/AppConsole.vala:67 -msgid "Enable verbose debugging output" -msgstr "Active la sortie verbeuse de débogage" +#: src/Console/AppConsole.vala:63 +msgid "Verbosity. Set to n if given, or increment." +msgstr "" -#: src/Console/AppConsole.vala:68 +#: src/Console/AppConsole.vala:64 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "Supposons Oui pour toutes les invites (mode non interactif)" -#: src/Console/AppConsole.vala:71 -msgid "A version string taken from the output of --list" +#: src/Console/AppConsole.vala:67 +#, fuzzy +msgid "One or more version strings taken from the output of --list" msgstr "Une version prise du resultat de --list" -#: src/Console/AppConsole.vala:72 -msgid "One or more, comma-seperated" -msgstr "Une ou plusieurs, séparées par des virgules" +#: src/Console/AppConsole.vala:68 +msgid "comma, pipe, or colon-seperated, or quoted space seperated" +msgstr "" -#: src/Console/AppConsole.vala:73 -msgid "The currently running kernel will always be ignored" +#: src/Console/AppConsole.vala:69 +#, fuzzy +msgid "Locked kernels and the currently running kernel are ignored" msgstr "Le noyau en cours d'exécution sera toujours ignoré" -#: src/Console/AppConsole.vala:163 src/Gtk/AppGtk.vala:119 +#: src/Console/AppConsole.vala:160 src/Gtk/AppGtk.vala:125 msgid "Unknown option" msgstr "Option inconnue" -#: src/Console/AppConsole.vala:164 src/Console/AppConsole.vala:250 -#: src/Console/AppConsole.vala:278 +#: src/Console/AppConsole.vala:161 src/Console/AppConsole.vala:220 msgid "Run" msgstr "Executez" -#: src/Console/AppConsole.vala:164 +#: src/Console/AppConsole.vala:161 msgid "to list all options" msgstr "pour afficher toutes les options" -#: src/Console/AppConsole.vala:218 src/Console/AppConsole.vala:258 -msgid "No kernels specified" -msgstr "Aucun noyau spécifié" - -#: src/Console/AppConsole.vala:224 -msgid "Multiple kernels selected for installation. Select only one." -msgstr "" -"Plusieurs noyaux sélectionnés pour être installés. Sélectionnez en seulement " -"un." - -#: src/Console/AppConsole.vala:247 -msgid "Could not find requested version" -msgstr "Impossible de trouver la version demandée" - -#: src/Console/AppConsole.vala:250 -msgid "and use a version string listed in first column" -msgstr "et utilisez une chaîne de version répertoriée dans la première colonne" - -#: src/Console/AppConsole.vala:277 +#: src/Console/AppConsole.vala:219 msgid "Command not specified" msgstr "Pas de commande fournie" -#: src/Console/AppConsole.vala:278 +#: src/Console/AppConsole.vala:220 msgid "to list all commands" msgstr "pour afficher toutes les commandes" -#: src/Console/AppConsole.vala:314 +#: src/Console/AppConsole.vala:256 msgid "Notifications disabled in settings" msgstr "Notifications désactivées dans les paramètres" -#: src/Console/AppConsole.vala:342 +#: src/Console/AppConsole.vala:284 #, c-format msgid "Kernel %s Available" msgstr "Paquet %s disponibles" -#: src/Console/AppConsole.vala:346 src/Gtk/SettingsDialog.vala:166 +#: src/Console/AppConsole.vala:288 src/Gtk/SettingsDialog.vala:166 msgid "Show" msgstr "Montrer" -#: src/Console/AppConsole.vala:347 src/Gtk/MainWindow.vala:305 +#: src/Console/AppConsole.vala:289 src/Gtk/MainWindow.vala:299 msgid "Install" msgstr "Installer" -#: src/Console/AppConsole.vala:350 +#: src/Console/AppConsole.vala:292 msgid "Previously notified" msgstr "Précédemment notifié" @@ -370,92 +375,88 @@ msgstr "Documentalistes" msgid "Third Party Inclusions" msgstr "Dépendances Tierces" -#: src/Gtk/AppGtk.vala:133 +#: src/Gtk/AppGtk.vala:139 msgid "options" msgstr "options" -#: src/Gtk/AppGtk.vala:137 +#: src/Gtk/AppGtk.vala:143 msgid "Print debug information" msgstr "Afficher les informations de débogage" -#: src/Gtk/AppGtk.vala:138 +#: src/Gtk/AppGtk.vala:144 msgid "Show all options" msgstr "Afficher toutes les options" -#: src/Gtk/MainWindow.vala:123 -msgid "Kernel" -msgstr "Noyau" - -#: src/Gtk/MainWindow.vala:145 +#: src/Gtk/MainWindow.vala:143 msgid "Lock" msgstr "" -#: src/Gtk/MainWindow.vala:162 +#: src/Gtk/MainWindow.vala:160 msgid "Status" msgstr "Statut" -#: src/Gtk/MainWindow.vala:174 +#: src/Gtk/MainWindow.vala:172 msgid "Notes" msgstr "Notes" -#: src/Gtk/MainWindow.vala:315 +#: src/Gtk/MainWindow.vala:307 msgid "Uninstall" msgstr "Désinstaller" -#: src/Gtk/MainWindow.vala:326 +#: src/Gtk/MainWindow.vala:316 msgid "Changelog, build status, etc" msgstr "" -#: src/Gtk/MainWindow.vala:337 +#: src/Gtk/MainWindow.vala:326 msgid "Uninstall Old" msgstr "Désinstaller Ancien" -#: src/Gtk/MainWindow.vala:343 +#: src/Gtk/MainWindow.vala:332 msgid "Reload" msgstr "Recharger" -#: src/Gtk/MainWindow.vala:344 +#: src/Gtk/MainWindow.vala:333 msgid "Delete and reload all cached kernel info" msgstr "" -#: src/Gtk/MainWindow.vala:349 src/Gtk/SettingsDialog.vala:49 +#: src/Gtk/MainWindow.vala:338 src/Gtk/SettingsDialog.vala:49 msgid "Settings" msgstr "Paramètres" -#: src/Gtk/MainWindow.vala:354 +#: src/Gtk/MainWindow.vala:343 msgid "About" msgstr "À propos" -#: src/Gtk/MainWindow.vala:359 +#: src/Gtk/MainWindow.vala:348 msgid "Exit" msgstr "Sortie" -#: src/Gtk/MainWindow.vala:425 +#: src/Gtk/MainWindow.vala:414 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "" "Utilitaire de mise à niveau des noyaux pour les distributions basées sur " "Ubuntu" -#: src/Gtk/MainWindow.vala:426 +#: src/Gtk/MainWindow.vala:415 msgid "Forked" msgstr "Forkée" -#: src/Gtk/MainWindow.vala:426 +#: src/Gtk/MainWindow.vala:415 msgid "Original" msgstr "Originale" -#: src/Gtk/MainWindow.vala:463 +#: src/Gtk/MainWindow.vala:452 msgid "Updating kernels" msgstr "Mise à jour des noyaux" -#: src/Gtk/MainWindow.vala:531 +#: src/Gtk/MainWindow.vala:520 msgid "available" msgstr "disponible" -#: src/Gtk/MainWindow.vala:573 src/Gtk/MainWindow.vala:614 -#: src/Gtk/MainWindow.vala:649 +#: src/Gtk/MainWindow.vala:575 src/Gtk/MainWindow.vala:614 +#: src/Gtk/MainWindow.vala:646 msgid "DONE" -msgstr "FAIT" +msgstr "" #: src/Gtk/ProgressWindow.vala:126 src/Gtk/TerminalWindow.vala:151 msgid "Cancel" diff --git a/po/hr.po b/po/hr.po index 450a54ac..48aa1afd 100644 --- a/po/hr.po +++ b/po/hr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-26 13:36-0400\n" +"POT-Creation-Date: 2023-05-29 06:50-0400\n" "PO-Revision-Date: 2022-09-22 12:13+0200\n" "Last-Translator: gogo \n" "Language-Team: Croatian\n" @@ -13,77 +13,77 @@ msgstr "" "X-Launchpad-Export-Date: 2017-12-23 23:36+0000\n" "X-Generator: Poedit 3.0.1\n" -#: src/Common/LinuxKernel.vala:105 +#: src/Common/LinuxKernel.vala:104 msgid "Distribution" msgstr "Distribucija" -#: src/Common/LinuxKernel.vala:120 +#: src/Common/LinuxKernel.vala:119 msgid "Architecture" msgstr "Arhitektura" -#: src/Common/LinuxKernel.vala:135 +#: src/Common/LinuxKernel.vala:134 msgid "Running kernel" msgstr "Trčanje kernel" -#: src/Common/LinuxKernel.vala:257 +#: src/Common/LinuxKernel.vala:250 msgid "loading cached" msgstr "učitavanje predmemoriranog" -#: src/Common/LinuxKernel.vala:269 +#: src/Common/LinuxKernel.vala:262 msgid "queuing download" msgstr "preuzimanje u redu čekanja" -#: src/Common/LinuxKernel.vala:290 +#: src/Common/LinuxKernel.vala:283 msgid "Fetching individual kernel indexes" msgstr "Dohvaćanje pojedinačnih indeksa kernel" -#: src/Common/LinuxKernel.vala:306 +#: src/Common/LinuxKernel.vala:299 msgid "loading downloaded" msgstr "učitavanje preuzeto" -#: src/Common/LinuxKernel.vala:341 +#: src/Common/LinuxKernel.vala:334 msgid "Updating from" msgstr "Ažuriranje iz" -#: src/Common/LinuxKernel.vala:349 +#: src/Common/LinuxKernel.vala:342 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:352 +#: src/Common/LinuxKernel.vala:345 msgid "FAILED" msgstr "NIJE USPIO" -#: src/Common/LinuxKernel.vala:405 +#: src/Common/LinuxKernel.vala:409 msgid "Found installed" msgstr "Pronađeno instalirano" -#: src/Common/LinuxKernel.vala:411 +#: src/Common/LinuxKernel.vala:410 msgid "locked" msgstr "" -#: src/Common/LinuxKernel.vala:495 src/Common/LinuxKernel.vala:1031 -#: src/Common/LinuxKernel.vala:1075 src/Common/LinuxKernel.vala:1142 +#: src/Common/LinuxKernel.vala:497 src/Common/LinuxKernel.vala:1060 +#: src/Common/LinuxKernel.vala:1094 src/Common/LinuxKernel.vala:1150 msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:729 src/Gtk/MainWindow.vala:522 -#: src/Gtk/MainWindow.vala:535 +#: src/Common/LinuxKernel.vala:732 src/Gtk/MainWindow.vala:511 +#: src/Gtk/MainWindow.vala:524 msgid "Running" msgstr "Pokrenuto" -#: src/Common/LinuxKernel.vala:730 +#: src/Common/LinuxKernel.vala:733 msgid "Installed" msgstr "Instalirano" -#: src/Common/LinuxKernel.vala:731 +#: src/Common/LinuxKernel.vala:734 msgid "Invalid" msgstr "Érvénytelen" -#: src/Common/LinuxKernel.vala:817 +#: src/Common/LinuxKernel.vala:820 msgid "Packages Available" msgstr "Dostupni Paketi" -#: src/Common/LinuxKernel.vala:823 +#: src/Common/LinuxKernel.vala:826 msgid "Packages Installed" msgstr "Instalirani paketi" @@ -91,77 +91,95 @@ msgstr "Instalirani paketi" msgid "File not found" msgstr "Datoteka nije pronađena" -#: src/Common/LinuxKernel.vala:942 +#: src/Common/LinuxKernel.vala:945 msgid "Available Kernels" msgstr "Dostupni kerneli" -#: src/Common/LinuxKernel.vala:982 +#: src/Common/LinuxKernel.vala:973 +#, fuzzy +msgid "No kernels specified" +msgstr "Naredba nije navedena" + +#: src/Common/LinuxKernel.vala:980 src/Gtk/MainWindow.vala:119 +msgid "Kernel" +msgstr "Kernel" + +#: src/Common/LinuxKernel.vala:980 +#, fuzzy +msgid "not found" +msgstr "Datoteka nije pronađena" + +#: src/Common/LinuxKernel.vala:1006 msgid "enabled" msgstr "omogućen" -#: src/Common/LinuxKernel.vala:1006 +#: src/Common/LinuxKernel.vala:1030 msgid "Downloading" msgstr "Učitavanje" -#: src/Common/LinuxKernel.vala:1026 +#: src/Common/LinuxKernel.vala:1055 msgid "is already installed." msgstr "je već instaliran." -#: src/Common/LinuxKernel.vala:1061 +#: src/Common/LinuxKernel.vala:1065 +msgid "download failed." +msgstr "" + +#: src/Common/LinuxKernel.vala:1082 msgid "Uninstalling selected kernels" msgstr "Deinstaliraj određene kernele" -#: src/Common/LinuxKernel.vala:1067 +#: src/Common/LinuxKernel.vala:1086 msgid "requested" msgstr "Zatražio" -#: src/Common/LinuxKernel.vala:1070 +#: src/Common/LinuxKernel.vala:1089 msgid "not uninstalling the currently running kernel" msgstr "ne deinstaliranje trenutno pokrenute kernel" -#: src/Common/LinuxKernel.vala:1091 +#: src/Common/LinuxKernel.vala:1102 msgid "found" msgstr "pronađen" -#: src/Common/LinuxKernel.vala:1094 +#: src/Common/LinuxKernel.vala:1107 msgid "No packages to un-install!" msgstr "Nema paketa za poništavanje instalacije!" -#: src/Common/LinuxKernel.vala:1138 +#: src/Common/LinuxKernel.vala:1146 #, fuzzy msgid "is the highest installed version." msgstr "Deinstaliraj sve osim najnovije instalirane verzije" -#: src/Common/LinuxKernel.vala:1151 +#: src/Common/LinuxKernel.vala:1159 msgid "Could not find running kernel in list" msgstr "Nije moguće pronaći pokrenutu kernel na popisu" -#: src/Common/LinuxKernel.vala:1156 +#: src/Common/LinuxKernel.vala:1164 msgid "Could not find any kernels to uninstall" msgstr "Nema pronađenih kernela za deinstaliranje" -#: src/Common/LinuxKernel.vala:1164 +#: src/Common/LinuxKernel.vala:1172 msgid "The following kernels will be uninstalled" msgstr "Deinstalirat će se sljedeće kerneli" -#: src/Common/LinuxKernel.vala:1168 +#: src/Common/LinuxKernel.vala:1176 msgid "Continue ?" msgstr "Nastavi?" -#: src/Common/LinuxKernel.vala:1190 src/Console/AppConsole.vala:292 +#: src/Common/LinuxKernel.vala:1198 src/Console/AppConsole.vala:234 msgid "Latest update" msgstr "Najnovija nadopuna" -#: src/Common/LinuxKernel.vala:1201 src/Console/AppConsole.vala:299 +#: src/Common/LinuxKernel.vala:1209 src/Console/AppConsole.vala:241 msgid "Latest point update" msgstr "Najnovija ciljana nadopuna" -#: src/Common/LinuxKernel.vala:1209 src/Console/AppConsole.vala:304 -#: src/Console/AppConsole.vala:320 +#: src/Common/LinuxKernel.vala:1217 src/Console/AppConsole.vala:246 +#: src/Console/AppConsole.vala:262 msgid "No updates found" msgstr "Nema pronađenih nadopuna" -#: src/Common/LinuxKernel.vala:1218 +#: src/Common/LinuxKernel.vala:1226 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Instaliraj kernel inačice %s ? (d/n): " @@ -189,145 +207,134 @@ msgstr "Obavijesti su onemogućene" msgid "File not found: %s" msgstr "Datoteka nije pronađena: %s" -#: src/Console/AppConsole.vala:47 src/Gtk/AppGtk.vala:133 +#: src/Console/AppConsole.vala:43 src/Gtk/AppGtk.vala:139 msgid "Syntax" msgstr "Sintaksa" -#: src/Console/AppConsole.vala:49 +#: src/Console/AppConsole.vala:45 msgid "Commands" msgstr "Naredbe" -#: src/Console/AppConsole.vala:51 +#: src/Console/AppConsole.vala:47 msgid "Check for kernel updates" msgstr "Provjeri nadopune kernela" -#: src/Console/AppConsole.vala:52 +#: src/Console/AppConsole.vala:48 msgid "Check for kernel updates and notify current user" msgstr "Provjeri nadopune kernela i obavijesti trenutnog korisnika" -#: src/Console/AppConsole.vala:53 -msgid "List all available mainline kernels" +#: src/Console/AppConsole.vala:49 +#, fuzzy +msgid "List available mainline kernels" msgstr "Prikaži sve mainline kernele" -#: src/Console/AppConsole.vala:54 +#: src/Console/AppConsole.vala:50 msgid "List installed kernels" msgstr "Prikaži instalirane kernele" -#: src/Console/AppConsole.vala:55 +#: src/Console/AppConsole.vala:51 msgid "Install latest mainline kernel" msgstr "Instaliraj najnoviji mainline kernel" -#: src/Console/AppConsole.vala:56 -msgid "Install latest point update for current series" +#: src/Console/AppConsole.vala:52 +#, fuzzy +msgid "Install latest point update in the current major version" msgstr "Instaliraj najnoviju ciljanu nadopunu za trenutnu seriju" -#: src/Console/AppConsole.vala:57 -msgid "Install specified mainline kernel" -msgstr "Instaliraj određeni mainline kernel" +#: src/Console/AppConsole.vala:53 +#, fuzzy +msgid "Install specified kernels" +msgstr "Deinstaliraj određene kernele" -#: src/Console/AppConsole.vala:58 -msgid "Uninstall specified kernel" +#: src/Console/AppConsole.vala:54 +#, fuzzy +msgid "Uninstall specified kernels" msgstr "Deinstaliraj određene kernele" -#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:338 +#: src/Console/AppConsole.vala:55 src/Gtk/MainWindow.vala:327 msgid "Uninstall all but the highest installed version" msgstr "Deinstaliraj sve osim najnovije instalirane verzije" -#: src/Console/AppConsole.vala:60 +#: src/Console/AppConsole.vala:56 msgid "Download specified kernels" msgstr "Preuzmi određene kernele" -#: src/Console/AppConsole.vala:61 +#: src/Console/AppConsole.vala:57 msgid "Delete cached info about available kernels" msgstr "Brisanje predmemoriranih podataka o dostupnim jezgrama" -#: src/Console/AppConsole.vala:63 src/Gtk/AppGtk.vala:135 +#: src/Console/AppConsole.vala:59 src/Gtk/AppGtk.vala:141 msgid "Options" msgstr "Mogućnosti" -#: src/Console/AppConsole.vala:65 +#: src/Console/AppConsole.vala:61 msgid "Include unstable and RC releases" msgstr "Uključivati nestabilne i RC kernele" -#: src/Console/AppConsole.vala:66 +#: src/Console/AppConsole.vala:62 msgid "Exclude unstable and RC releases" msgstr "Isključivati nestabilne i RC izdanja" -#: src/Console/AppConsole.vala:67 -msgid "Enable verbose debugging output" -msgstr "Omogući opširnije zapisivanje" +#: src/Console/AppConsole.vala:63 +msgid "Verbosity. Set to n if given, or increment." +msgstr "" -#: src/Console/AppConsole.vala:68 +#: src/Console/AppConsole.vala:64 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "Pretpostavi Da za sve upite (neinteraktivan način rada)" -#: src/Console/AppConsole.vala:71 -msgid "A version string taken from the output of --list" +#: src/Console/AppConsole.vala:67 +#, fuzzy +msgid "One or more version strings taken from the output of --list" msgstr "Izraz inačice uzet iz zapisa --list" -#: src/Console/AppConsole.vala:72 -msgid "One or more, comma-seperated" -msgstr "Jedan ili više njih, odvojeni zarezom" +#: src/Console/AppConsole.vala:68 +msgid "comma, pipe, or colon-seperated, or quoted space seperated" +msgstr "" -#: src/Console/AppConsole.vala:73 -msgid "The currently running kernel will always be ignored" +#: src/Console/AppConsole.vala:69 +#, fuzzy +msgid "Locked kernels and the currently running kernel are ignored" msgstr "Trenutno pokrenuta jezgra uvijek će se zanemariti" -#: src/Console/AppConsole.vala:163 src/Gtk/AppGtk.vala:119 +#: src/Console/AppConsole.vala:160 src/Gtk/AppGtk.vala:125 msgid "Unknown option" msgstr "Nepoznata mogućnost" -#: src/Console/AppConsole.vala:164 src/Console/AppConsole.vala:250 -#: src/Console/AppConsole.vala:278 +#: src/Console/AppConsole.vala:161 src/Console/AppConsole.vala:220 msgid "Run" msgstr "Pokreni" -#: src/Console/AppConsole.vala:164 +#: src/Console/AppConsole.vala:161 msgid "to list all options" msgstr "za prikaz svih mogućnosti" -#: src/Console/AppConsole.vala:218 src/Console/AppConsole.vala:258 -msgid "No kernels specified" -msgstr "Nema određenih kernela" - -#: src/Console/AppConsole.vala:224 -msgid "Multiple kernels selected for installation. Select only one." -msgstr "Više kernela je odabrano za instalaciju. odaberite samo jedan." - -#: src/Console/AppConsole.vala:247 -msgid "Could not find requested version" -msgstr "Nemoguće je pronaći zatraženu inačicu" - -#: src/Console/AppConsole.vala:250 -msgid "and use a version string listed in first column" -msgstr "i koristite izraz inačice prikazan u prvom stupcu" - -#: src/Console/AppConsole.vala:277 +#: src/Console/AppConsole.vala:219 msgid "Command not specified" msgstr "Naredba nije navedena" -#: src/Console/AppConsole.vala:278 +#: src/Console/AppConsole.vala:220 msgid "to list all commands" msgstr "za prikaz svih mogućnosti" -#: src/Console/AppConsole.vala:314 +#: src/Console/AppConsole.vala:256 msgid "Notifications disabled in settings" msgstr "Obavijesti onemogućene u postavkama" -#: src/Console/AppConsole.vala:342 +#: src/Console/AppConsole.vala:284 #, c-format msgid "Kernel %s Available" msgstr "Kernel %s je dostupan" -#: src/Console/AppConsole.vala:346 src/Gtk/SettingsDialog.vala:166 +#: src/Console/AppConsole.vala:288 src/Gtk/SettingsDialog.vala:166 msgid "Show" msgstr "Prikaži" -#: src/Console/AppConsole.vala:347 src/Gtk/MainWindow.vala:305 +#: src/Console/AppConsole.vala:289 src/Gtk/MainWindow.vala:299 msgid "Install" msgstr "Instaliraj" -#: src/Console/AppConsole.vala:350 +#: src/Console/AppConsole.vala:292 msgid "Previously notified" msgstr "Prethodno prijavljeno" @@ -367,90 +374,86 @@ msgstr "Autori dokumentacije" msgid "Third Party Inclusions" msgstr "Uključene treće strane" -#: src/Gtk/AppGtk.vala:133 +#: src/Gtk/AppGtk.vala:139 msgid "options" msgstr "mogućnosti" -#: src/Gtk/AppGtk.vala:137 +#: src/Gtk/AppGtk.vala:143 msgid "Print debug information" msgstr "Ispiši informacije otklanjanja grešaka" -#: src/Gtk/AppGtk.vala:138 +#: src/Gtk/AppGtk.vala:144 msgid "Show all options" msgstr "Prikaži sve mogućnosti" -#: src/Gtk/MainWindow.vala:123 -msgid "Kernel" -msgstr "Kernel" - -#: src/Gtk/MainWindow.vala:145 +#: src/Gtk/MainWindow.vala:143 msgid "Lock" msgstr "" -#: src/Gtk/MainWindow.vala:162 +#: src/Gtk/MainWindow.vala:160 msgid "Status" msgstr "Stanje" -#: src/Gtk/MainWindow.vala:174 +#: src/Gtk/MainWindow.vala:172 msgid "Notes" msgstr "Bilješke" -#: src/Gtk/MainWindow.vala:315 +#: src/Gtk/MainWindow.vala:307 msgid "Uninstall" msgstr "Deinstaliraj" -#: src/Gtk/MainWindow.vala:326 +#: src/Gtk/MainWindow.vala:316 msgid "Changelog, build status, etc" msgstr "" -#: src/Gtk/MainWindow.vala:337 +#: src/Gtk/MainWindow.vala:326 msgid "Uninstall Old" msgstr "Deinstaliraj staro" -#: src/Gtk/MainWindow.vala:343 +#: src/Gtk/MainWindow.vala:332 msgid "Reload" msgstr "Ponovno učitati" -#: src/Gtk/MainWindow.vala:344 +#: src/Gtk/MainWindow.vala:333 msgid "Delete and reload all cached kernel info" msgstr "" -#: src/Gtk/MainWindow.vala:349 src/Gtk/SettingsDialog.vala:49 +#: src/Gtk/MainWindow.vala:338 src/Gtk/SettingsDialog.vala:49 msgid "Settings" msgstr "Postavke" -#: src/Gtk/MainWindow.vala:354 +#: src/Gtk/MainWindow.vala:343 msgid "About" msgstr "O programu" -#: src/Gtk/MainWindow.vala:359 +#: src/Gtk/MainWindow.vala:348 msgid "Exit" msgstr "Izlaz" -#: src/Gtk/MainWindow.vala:425 +#: src/Gtk/MainWindow.vala:414 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Alat za nadogradnju kernela Ubuntu temeljenih distribucija" -#: src/Gtk/MainWindow.vala:426 +#: src/Gtk/MainWindow.vala:415 msgid "Forked" msgstr "Forkano" -#: src/Gtk/MainWindow.vala:426 +#: src/Gtk/MainWindow.vala:415 msgid "Original" msgstr "Izvornik" -#: src/Gtk/MainWindow.vala:463 +#: src/Gtk/MainWindow.vala:452 msgid "Updating kernels" msgstr "Ažuriranje jezgri" -#: src/Gtk/MainWindow.vala:531 +#: src/Gtk/MainWindow.vala:520 msgid "available" msgstr "dostupno" -#: src/Gtk/MainWindow.vala:573 src/Gtk/MainWindow.vala:614 -#: src/Gtk/MainWindow.vala:649 +#: src/Gtk/MainWindow.vala:575 src/Gtk/MainWindow.vala:614 +#: src/Gtk/MainWindow.vala:646 msgid "DONE" -msgstr "UČINJENO" +msgstr "" #: src/Gtk/ProgressWindow.vala:126 src/Gtk/TerminalWindow.vala:151 msgid "Cancel" diff --git a/po/it.po b/po/it.po index c7c8f9eb..df749724 100644 --- a/po/it.po +++ b/po/it.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-26 13:36-0400\n" +"POT-Creation-Date: 2023-05-29 06:50-0400\n" "PO-Revision-Date: 2020-08-22 15:35+0100\n" "Last-Translator: Demetrio Mendozzi\n" "Language-Team: Italian\n" @@ -11,77 +11,77 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: src/Common/LinuxKernel.vala:105 +#: src/Common/LinuxKernel.vala:104 msgid "Distribution" msgstr "Distribuzione" -#: src/Common/LinuxKernel.vala:120 +#: src/Common/LinuxKernel.vala:119 msgid "Architecture" msgstr "Architettura" -#: src/Common/LinuxKernel.vala:135 +#: src/Common/LinuxKernel.vala:134 msgid "Running kernel" msgstr "Kernel in esecuzione" -#: src/Common/LinuxKernel.vala:257 +#: src/Common/LinuxKernel.vala:250 msgid "loading cached" msgstr "Caricamento file della cache" -#: src/Common/LinuxKernel.vala:269 +#: src/Common/LinuxKernel.vala:262 msgid "queuing download" msgstr "download in coda" -#: src/Common/LinuxKernel.vala:290 +#: src/Common/LinuxKernel.vala:283 msgid "Fetching individual kernel indexes" msgstr "Recupero dei singoli indici del kernel" -#: src/Common/LinuxKernel.vala:306 +#: src/Common/LinuxKernel.vala:299 msgid "loading downloaded" msgstr "caricamento dei file scaricati" -#: src/Common/LinuxKernel.vala:341 +#: src/Common/LinuxKernel.vala:334 msgid "Updating from" msgstr "Aggiornamento da" -#: src/Common/LinuxKernel.vala:349 +#: src/Common/LinuxKernel.vala:342 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:352 +#: src/Common/LinuxKernel.vala:345 msgid "FAILED" msgstr "FALLITO" -#: src/Common/LinuxKernel.vala:405 +#: src/Common/LinuxKernel.vala:409 msgid "Found installed" msgstr "Trovato installato" -#: src/Common/LinuxKernel.vala:411 +#: src/Common/LinuxKernel.vala:410 msgid "locked" msgstr "" -#: src/Common/LinuxKernel.vala:495 src/Common/LinuxKernel.vala:1031 -#: src/Common/LinuxKernel.vala:1075 src/Common/LinuxKernel.vala:1142 +#: src/Common/LinuxKernel.vala:497 src/Common/LinuxKernel.vala:1060 +#: src/Common/LinuxKernel.vala:1094 src/Common/LinuxKernel.vala:1150 msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:729 src/Gtk/MainWindow.vala:522 -#: src/Gtk/MainWindow.vala:535 +#: src/Common/LinuxKernel.vala:732 src/Gtk/MainWindow.vala:511 +#: src/Gtk/MainWindow.vala:524 msgid "Running" msgstr "In esecuzione" -#: src/Common/LinuxKernel.vala:730 +#: src/Common/LinuxKernel.vala:733 msgid "Installed" msgstr "Installato" -#: src/Common/LinuxKernel.vala:731 +#: src/Common/LinuxKernel.vala:734 msgid "Invalid" msgstr "Non valido" -#: src/Common/LinuxKernel.vala:817 +#: src/Common/LinuxKernel.vala:820 msgid "Packages Available" msgstr "Pacchetti disponibili" -#: src/Common/LinuxKernel.vala:823 +#: src/Common/LinuxKernel.vala:826 msgid "Packages Installed" msgstr "Pacchetti installati" @@ -89,77 +89,95 @@ msgstr "Pacchetti installati" msgid "File not found" msgstr "File non trovato" -#: src/Common/LinuxKernel.vala:942 +#: src/Common/LinuxKernel.vala:945 msgid "Available Kernels" msgstr "Kernel disponibili" -#: src/Common/LinuxKernel.vala:982 +#: src/Common/LinuxKernel.vala:973 +#, fuzzy +msgid "No kernels specified" +msgstr "Comando non specificato" + +#: src/Common/LinuxKernel.vala:980 src/Gtk/MainWindow.vala:119 +msgid "Kernel" +msgstr "Kernel" + +#: src/Common/LinuxKernel.vala:980 +#, fuzzy +msgid "not found" +msgstr "File non trovato" + +#: src/Common/LinuxKernel.vala:1006 msgid "enabled" msgstr "abilitato" -#: src/Common/LinuxKernel.vala:1006 +#: src/Common/LinuxKernel.vala:1030 msgid "Downloading" msgstr "Scaricamento" -#: src/Common/LinuxKernel.vala:1026 +#: src/Common/LinuxKernel.vala:1055 msgid "is already installed." msgstr "è già installato." -#: src/Common/LinuxKernel.vala:1061 +#: src/Common/LinuxKernel.vala:1065 +msgid "download failed." +msgstr "" + +#: src/Common/LinuxKernel.vala:1082 msgid "Uninstalling selected kernels" msgstr "Disinstalla i kernel specificati" -#: src/Common/LinuxKernel.vala:1067 +#: src/Common/LinuxKernel.vala:1086 msgid "requested" msgstr "richiesto" -#: src/Common/LinuxKernel.vala:1070 +#: src/Common/LinuxKernel.vala:1089 msgid "not uninstalling the currently running kernel" msgstr "non disinstallare il kernel attualmente in esecuzione" -#: src/Common/LinuxKernel.vala:1091 +#: src/Common/LinuxKernel.vala:1102 msgid "found" msgstr "trovato" -#: src/Common/LinuxKernel.vala:1094 +#: src/Common/LinuxKernel.vala:1107 msgid "No packages to un-install!" msgstr "Nessun pacchetto da disinstallare!" -#: src/Common/LinuxKernel.vala:1138 +#: src/Common/LinuxKernel.vala:1146 #, fuzzy msgid "is the highest installed version." msgstr "Disinstallare tutti tranne la versione più recente installata" -#: src/Common/LinuxKernel.vala:1151 +#: src/Common/LinuxKernel.vala:1159 msgid "Could not find running kernel in list" msgstr "Impossibile trovare il kernel in esecuzione nell'elenco" -#: src/Common/LinuxKernel.vala:1156 +#: src/Common/LinuxKernel.vala:1164 msgid "Could not find any kernels to uninstall" msgstr "Impossibile trovare alcun kernel da rimuovere" -#: src/Common/LinuxKernel.vala:1164 +#: src/Common/LinuxKernel.vala:1172 msgid "The following kernels will be uninstalled" msgstr "I seguenti kernel saranno rimossi" -#: src/Common/LinuxKernel.vala:1168 +#: src/Common/LinuxKernel.vala:1176 msgid "Continue ?" msgstr "Continuare ?" -#: src/Common/LinuxKernel.vala:1190 src/Console/AppConsole.vala:292 +#: src/Common/LinuxKernel.vala:1198 src/Console/AppConsole.vala:234 msgid "Latest update" msgstr "Ultimo aggiornamento" -#: src/Common/LinuxKernel.vala:1201 src/Console/AppConsole.vala:299 +#: src/Common/LinuxKernel.vala:1209 src/Console/AppConsole.vala:241 msgid "Latest point update" msgstr "Ultimo aggiornamento del rilascio parziale" -#: src/Common/LinuxKernel.vala:1209 src/Console/AppConsole.vala:304 -#: src/Console/AppConsole.vala:320 +#: src/Common/LinuxKernel.vala:1217 src/Console/AppConsole.vala:246 +#: src/Console/AppConsole.vala:262 msgid "No updates found" msgstr "Nessun aggiornamento trovato" -#: src/Common/LinuxKernel.vala:1218 +#: src/Common/LinuxKernel.vala:1226 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Installare la versione del kernel %s ? (y/n): " @@ -188,147 +206,136 @@ msgstr "Le notifiche sono disabilitate" msgid "File not found: %s" msgstr "File non trovato: %s" -#: src/Console/AppConsole.vala:47 src/Gtk/AppGtk.vala:133 +#: src/Console/AppConsole.vala:43 src/Gtk/AppGtk.vala:139 msgid "Syntax" msgstr "Sintassi" -#: src/Console/AppConsole.vala:49 +#: src/Console/AppConsole.vala:45 msgid "Commands" msgstr "Comandi" -#: src/Console/AppConsole.vala:51 +#: src/Console/AppConsole.vala:47 msgid "Check for kernel updates" msgstr "Verifica aggiornamenti del kernel" -#: src/Console/AppConsole.vala:52 +#: src/Console/AppConsole.vala:48 msgid "Check for kernel updates and notify current user" msgstr "" "Verifica la disponibilità di aggiornamenti del kerneled avvisa l'utente " "corrente" -#: src/Console/AppConsole.vala:53 -msgid "List all available mainline kernels" +#: src/Console/AppConsole.vala:49 +#, fuzzy +msgid "List available mainline kernels" msgstr "Elenca tutti i kernel mainline disponibili" -#: src/Console/AppConsole.vala:54 +#: src/Console/AppConsole.vala:50 msgid "List installed kernels" msgstr "Elenca i kernel installati" -#: src/Console/AppConsole.vala:55 +#: src/Console/AppConsole.vala:51 msgid "Install latest mainline kernel" msgstr "Installa l'ultimo kernel mainline" -#: src/Console/AppConsole.vala:56 -msgid "Install latest point update for current series" +#: src/Console/AppConsole.vala:52 +#, fuzzy +msgid "Install latest point update in the current major version" msgstr "installa l'ultimo rilascio parziale per le serie attuali" -#: src/Console/AppConsole.vala:57 -msgid "Install specified mainline kernel" -msgstr "Installa il kernel mainline specificato" +#: src/Console/AppConsole.vala:53 +#, fuzzy +msgid "Install specified kernels" +msgstr "Disinstalla i kernel specificati" -#: src/Console/AppConsole.vala:58 -msgid "Uninstall specified kernel" +#: src/Console/AppConsole.vala:54 +#, fuzzy +msgid "Uninstall specified kernels" msgstr "Disinstalla i kernel specificati" -#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:338 +#: src/Console/AppConsole.vala:55 src/Gtk/MainWindow.vala:327 msgid "Uninstall all but the highest installed version" msgstr "Disinstallare tutti tranne la versione più recente installata" -#: src/Console/AppConsole.vala:60 +#: src/Console/AppConsole.vala:56 msgid "Download specified kernels" msgstr "Scarica i kernel specificati" -#: src/Console/AppConsole.vala:61 +#: src/Console/AppConsole.vala:57 msgid "Delete cached info about available kernels" msgstr "Elimina le informazioni sui kernel disponibili dalla cache " -#: src/Console/AppConsole.vala:63 src/Gtk/AppGtk.vala:135 +#: src/Console/AppConsole.vala:59 src/Gtk/AppGtk.vala:141 msgid "Options" msgstr "Opzioni" -#: src/Console/AppConsole.vala:65 +#: src/Console/AppConsole.vala:61 msgid "Include unstable and RC releases" msgstr "Includi versioni instabili e rilasci RC" -#: src/Console/AppConsole.vala:66 +#: src/Console/AppConsole.vala:62 msgid "Exclude unstable and RC releases" msgstr "Escludi versioni instabili e rilasci RC" -#: src/Console/AppConsole.vala:67 -msgid "Enable verbose debugging output" -msgstr "Abilita l'output di debug dettagliato" +#: src/Console/AppConsole.vala:63 +msgid "Verbosity. Set to n if given, or increment." +msgstr "" -#: src/Console/AppConsole.vala:68 +#: src/Console/AppConsole.vala:64 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "Imposta Sì per tutte le richieste (modalità non interattiva)" -#: src/Console/AppConsole.vala:71 -msgid "A version string taken from the output of --list" +#: src/Console/AppConsole.vala:67 +#, fuzzy +msgid "One or more version strings taken from the output of --list" msgstr "Una stringa di versione presa dall'output di --list" -#: src/Console/AppConsole.vala:72 -msgid "One or more, comma-seperated" -msgstr "Uno o più, separati da virgola" +#: src/Console/AppConsole.vala:68 +msgid "comma, pipe, or colon-seperated, or quoted space seperated" +msgstr "" -#: src/Console/AppConsole.vala:73 -msgid "The currently running kernel will always be ignored" +#: src/Console/AppConsole.vala:69 +#, fuzzy +msgid "Locked kernels and the currently running kernel are ignored" msgstr "Il kernel attualmente in esecuzione sarà sempre ignorato" -#: src/Console/AppConsole.vala:163 src/Gtk/AppGtk.vala:119 +#: src/Console/AppConsole.vala:160 src/Gtk/AppGtk.vala:125 msgid "Unknown option" msgstr "Opzione sconosciuta" -#: src/Console/AppConsole.vala:164 src/Console/AppConsole.vala:250 -#: src/Console/AppConsole.vala:278 +#: src/Console/AppConsole.vala:161 src/Console/AppConsole.vala:220 msgid "Run" msgstr "In corso" -#: src/Console/AppConsole.vala:164 +#: src/Console/AppConsole.vala:161 msgid "to list all options" msgstr "elencare tutte le opzioni" -#: src/Console/AppConsole.vala:218 src/Console/AppConsole.vala:258 -msgid "No kernels specified" -msgstr "Nessun kernel specificato" - -#: src/Console/AppConsole.vala:224 -msgid "Multiple kernels selected for installation. Select only one." -msgstr "Più kernel selezionati per l'installazione. Selezionarne uno solo." - -#: src/Console/AppConsole.vala:247 -msgid "Could not find requested version" -msgstr "Impossibile trovare la versione richiesta" - -#: src/Console/AppConsole.vala:250 -msgid "and use a version string listed in first column" -msgstr "ed usa una stringa di versione elencata nella prima colonna" - -#: src/Console/AppConsole.vala:277 +#: src/Console/AppConsole.vala:219 msgid "Command not specified" msgstr "Comando non specificato" -#: src/Console/AppConsole.vala:278 +#: src/Console/AppConsole.vala:220 msgid "to list all commands" msgstr "elencare tutti i comandi" -#: src/Console/AppConsole.vala:314 +#: src/Console/AppConsole.vala:256 msgid "Notifications disabled in settings" msgstr "Le notifiche sono disabilitate" -#: src/Console/AppConsole.vala:342 +#: src/Console/AppConsole.vala:284 #, c-format msgid "Kernel %s Available" msgstr "Kernel %s Disponibile" -#: src/Console/AppConsole.vala:346 src/Gtk/SettingsDialog.vala:166 +#: src/Console/AppConsole.vala:288 src/Gtk/SettingsDialog.vala:166 msgid "Show" msgstr "Mostra" -#: src/Console/AppConsole.vala:347 src/Gtk/MainWindow.vala:305 +#: src/Console/AppConsole.vala:289 src/Gtk/MainWindow.vala:299 msgid "Install" msgstr "Installa" -#: src/Console/AppConsole.vala:350 +#: src/Console/AppConsole.vala:292 msgid "Previously notified" msgstr "Notificato in precedenza" @@ -368,90 +375,86 @@ msgstr "Documentatori" msgid "Third Party Inclusions" msgstr "Inclusioni di terze parti" -#: src/Gtk/AppGtk.vala:133 +#: src/Gtk/AppGtk.vala:139 msgid "options" msgstr "opzioni" -#: src/Gtk/AppGtk.vala:137 +#: src/Gtk/AppGtk.vala:143 msgid "Print debug information" msgstr "Stampa le informazioni di debug" -#: src/Gtk/AppGtk.vala:138 +#: src/Gtk/AppGtk.vala:144 msgid "Show all options" msgstr "Mostra tutte le opzioni" -#: src/Gtk/MainWindow.vala:123 -msgid "Kernel" -msgstr "Kernel" - -#: src/Gtk/MainWindow.vala:145 +#: src/Gtk/MainWindow.vala:143 msgid "Lock" msgstr "" -#: src/Gtk/MainWindow.vala:162 +#: src/Gtk/MainWindow.vala:160 msgid "Status" msgstr "Stato" -#: src/Gtk/MainWindow.vala:174 +#: src/Gtk/MainWindow.vala:172 msgid "Notes" msgstr "Note" -#: src/Gtk/MainWindow.vala:315 +#: src/Gtk/MainWindow.vala:307 msgid "Uninstall" msgstr "Disinstalla" -#: src/Gtk/MainWindow.vala:326 +#: src/Gtk/MainWindow.vala:316 msgid "Changelog, build status, etc" msgstr "" -#: src/Gtk/MainWindow.vala:337 +#: src/Gtk/MainWindow.vala:326 msgid "Uninstall Old" msgstr "Disinstalla i vecchi" -#: src/Gtk/MainWindow.vala:343 +#: src/Gtk/MainWindow.vala:332 msgid "Reload" msgstr "Ricarica" -#: src/Gtk/MainWindow.vala:344 +#: src/Gtk/MainWindow.vala:333 msgid "Delete and reload all cached kernel info" msgstr "" -#: src/Gtk/MainWindow.vala:349 src/Gtk/SettingsDialog.vala:49 +#: src/Gtk/MainWindow.vala:338 src/Gtk/SettingsDialog.vala:49 msgid "Settings" msgstr "Impostazioni" -#: src/Gtk/MainWindow.vala:354 +#: src/Gtk/MainWindow.vala:343 msgid "About" msgstr "Informazioni" -#: src/Gtk/MainWindow.vala:359 +#: src/Gtk/MainWindow.vala:348 msgid "Exit" msgstr "Chiudi" -#: src/Gtk/MainWindow.vala:425 +#: src/Gtk/MainWindow.vala:414 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Utilità di aggiornamento del kernel per distribuzioni basate su Ubuntu" -#: src/Gtk/MainWindow.vala:426 +#: src/Gtk/MainWindow.vala:415 msgid "Forked" msgstr "Forked" -#: src/Gtk/MainWindow.vala:426 +#: src/Gtk/MainWindow.vala:415 msgid "Original" msgstr "Originale" -#: src/Gtk/MainWindow.vala:463 +#: src/Gtk/MainWindow.vala:452 msgid "Updating kernels" msgstr "Aggiornamento dei kernel" -#: src/Gtk/MainWindow.vala:531 +#: src/Gtk/MainWindow.vala:520 msgid "available" msgstr "disponibile" -#: src/Gtk/MainWindow.vala:573 src/Gtk/MainWindow.vala:614 -#: src/Gtk/MainWindow.vala:649 +#: src/Gtk/MainWindow.vala:575 src/Gtk/MainWindow.vala:614 +#: src/Gtk/MainWindow.vala:646 msgid "DONE" -msgstr "FATTO" +msgstr "" #: src/Gtk/ProgressWindow.vala:126 src/Gtk/TerminalWindow.vala:151 msgid "Cancel" diff --git a/po/ko.po b/po/ko.po index 377fb0e7..3d017507 100644 --- a/po/ko.po +++ b/po/ko.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-26 13:36-0400\n" +"POT-Creation-Date: 2023-05-29 06:50-0400\n" "PO-Revision-Date: 2022-09-28 11:48+0900\n" "Last-Translator: Kevin Kim \n" "Language-Team: Korean\n" @@ -13,77 +13,77 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Poedit 3.0.1\n" -#: src/Common/LinuxKernel.vala:105 +#: src/Common/LinuxKernel.vala:104 msgid "Distribution" msgstr "배포판" -#: src/Common/LinuxKernel.vala:120 +#: src/Common/LinuxKernel.vala:119 msgid "Architecture" msgstr "아키텍처" -#: src/Common/LinuxKernel.vala:135 +#: src/Common/LinuxKernel.vala:134 msgid "Running kernel" msgstr "현재 실행 중인 커널" -#: src/Common/LinuxKernel.vala:257 +#: src/Common/LinuxKernel.vala:250 msgid "loading cached" msgstr "캐시된 로드 중" -#: src/Common/LinuxKernel.vala:269 +#: src/Common/LinuxKernel.vala:262 msgid "queuing download" msgstr "대기열 다운로드" -#: src/Common/LinuxKernel.vala:290 +#: src/Common/LinuxKernel.vala:283 msgid "Fetching individual kernel indexes" msgstr "개별 커널 인덱스 페치" -#: src/Common/LinuxKernel.vala:306 +#: src/Common/LinuxKernel.vala:299 msgid "loading downloaded" msgstr "다운로드 로드 중" -#: src/Common/LinuxKernel.vala:341 +#: src/Common/LinuxKernel.vala:334 msgid "Updating from" msgstr "다음에서 업데이트" -#: src/Common/LinuxKernel.vala:349 +#: src/Common/LinuxKernel.vala:342 msgid "OK" msgstr "확인" -#: src/Common/LinuxKernel.vala:352 +#: src/Common/LinuxKernel.vala:345 msgid "FAILED" msgstr "실패" -#: src/Common/LinuxKernel.vala:405 +#: src/Common/LinuxKernel.vala:409 msgid "Found installed" msgstr "설치된 것을 찾았습니다" -#: src/Common/LinuxKernel.vala:411 +#: src/Common/LinuxKernel.vala:410 msgid "locked" msgstr "" -#: src/Common/LinuxKernel.vala:495 src/Common/LinuxKernel.vala:1031 -#: src/Common/LinuxKernel.vala:1075 src/Common/LinuxKernel.vala:1142 +#: src/Common/LinuxKernel.vala:497 src/Common/LinuxKernel.vala:1060 +#: src/Common/LinuxKernel.vala:1094 src/Common/LinuxKernel.vala:1150 msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:729 src/Gtk/MainWindow.vala:522 -#: src/Gtk/MainWindow.vala:535 +#: src/Common/LinuxKernel.vala:732 src/Gtk/MainWindow.vala:511 +#: src/Gtk/MainWindow.vala:524 msgid "Running" msgstr "구동 중" -#: src/Common/LinuxKernel.vala:730 +#: src/Common/LinuxKernel.vala:733 msgid "Installed" msgstr "설치 됨" -#: src/Common/LinuxKernel.vala:731 +#: src/Common/LinuxKernel.vala:734 msgid "Invalid" msgstr "사용할 수 없음" -#: src/Common/LinuxKernel.vala:817 +#: src/Common/LinuxKernel.vala:820 msgid "Packages Available" msgstr "설치 가능한 패키지" -#: src/Common/LinuxKernel.vala:823 +#: src/Common/LinuxKernel.vala:826 msgid "Packages Installed" msgstr "설치된 패키지" @@ -91,77 +91,95 @@ msgstr "설치된 패키지" msgid "File not found" msgstr "파일을 찾을 수 없습니다" -#: src/Common/LinuxKernel.vala:942 +#: src/Common/LinuxKernel.vala:945 msgid "Available Kernels" msgstr "설치 가능한 커널" -#: src/Common/LinuxKernel.vala:982 +#: src/Common/LinuxKernel.vala:973 +#, fuzzy +msgid "No kernels specified" +msgstr "지정한 명령어가 없습니다" + +#: src/Common/LinuxKernel.vala:980 src/Gtk/MainWindow.vala:119 +msgid "Kernel" +msgstr "커널" + +#: src/Common/LinuxKernel.vala:980 +#, fuzzy +msgid "not found" +msgstr "파일을 찾을 수 없습니다" + +#: src/Common/LinuxKernel.vala:1006 msgid "enabled" msgstr "사용" -#: src/Common/LinuxKernel.vala:1006 +#: src/Common/LinuxKernel.vala:1030 msgid "Downloading" msgstr "다운로드" -#: src/Common/LinuxKernel.vala:1026 +#: src/Common/LinuxKernel.vala:1055 msgid "is already installed." msgstr "가 이미 설치되어 있습니다" -#: src/Common/LinuxKernel.vala:1061 +#: src/Common/LinuxKernel.vala:1065 +msgid "download failed." +msgstr "" + +#: src/Common/LinuxKernel.vala:1082 msgid "Uninstalling selected kernels" msgstr "선택한 커널 제거" -#: src/Common/LinuxKernel.vala:1067 +#: src/Common/LinuxKernel.vala:1086 msgid "requested" msgstr "요청" -#: src/Common/LinuxKernel.vala:1070 +#: src/Common/LinuxKernel.vala:1089 msgid "not uninstalling the currently running kernel" msgstr "현재 실행 중인 커널을 제거하지 않음" -#: src/Common/LinuxKernel.vala:1091 +#: src/Common/LinuxKernel.vala:1102 msgid "found" msgstr "설립하다" -#: src/Common/LinuxKernel.vala:1094 +#: src/Common/LinuxKernel.vala:1107 msgid "No packages to un-install!" msgstr "제거 할 패키지가 없습니다!" -#: src/Common/LinuxKernel.vala:1138 +#: src/Common/LinuxKernel.vala:1146 #, fuzzy msgid "is the highest installed version." msgstr "설치된 가장 높은 버전을 제외한 모든 버전을 제거합니다" -#: src/Common/LinuxKernel.vala:1151 +#: src/Common/LinuxKernel.vala:1159 msgid "Could not find running kernel in list" msgstr "현재 실행 중인 커널을 찾을 수 없습니다" -#: src/Common/LinuxKernel.vala:1156 +#: src/Common/LinuxKernel.vala:1164 msgid "Could not find any kernels to uninstall" msgstr "삭제할 커널을 찾을 수 없습니다" -#: src/Common/LinuxKernel.vala:1164 +#: src/Common/LinuxKernel.vala:1172 msgid "The following kernels will be uninstalled" msgstr "풀이" -#: src/Common/LinuxKernel.vala:1168 +#: src/Common/LinuxKernel.vala:1176 msgid "Continue ?" msgstr "계속하시겠습니까?" -#: src/Common/LinuxKernel.vala:1190 src/Console/AppConsole.vala:292 +#: src/Common/LinuxKernel.vala:1198 src/Console/AppConsole.vala:234 msgid "Latest update" msgstr "최신 업데이트" -#: src/Common/LinuxKernel.vala:1201 src/Console/AppConsole.vala:299 +#: src/Common/LinuxKernel.vala:1209 src/Console/AppConsole.vala:241 msgid "Latest point update" msgstr "최신 포인트 업데이트" -#: src/Common/LinuxKernel.vala:1209 src/Console/AppConsole.vala:304 -#: src/Console/AppConsole.vala:320 +#: src/Common/LinuxKernel.vala:1217 src/Console/AppConsole.vala:246 +#: src/Console/AppConsole.vala:262 msgid "No updates found" msgstr "업데이트를 찾을 수 없습니다" -#: src/Common/LinuxKernel.vala:1218 +#: src/Common/LinuxKernel.vala:1226 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "커널 %s 버전을 설치하시겠습니까? (y/n): " @@ -188,145 +206,134 @@ msgstr "알림이 비활성화 되었습니다" msgid "File not found: %s" msgstr "파일을 찾을 수 없음: %s" -#: src/Console/AppConsole.vala:47 src/Gtk/AppGtk.vala:133 +#: src/Console/AppConsole.vala:43 src/Gtk/AppGtk.vala:139 msgid "Syntax" msgstr "문법" -#: src/Console/AppConsole.vala:49 +#: src/Console/AppConsole.vala:45 msgid "Commands" msgstr "명령어" -#: src/Console/AppConsole.vala:51 +#: src/Console/AppConsole.vala:47 msgid "Check for kernel updates" msgstr "커널 업데이트 확인" -#: src/Console/AppConsole.vala:52 +#: src/Console/AppConsole.vala:48 msgid "Check for kernel updates and notify current user" msgstr "커널 업데이트를 확인하고 현재 사용자에게 알림" -#: src/Console/AppConsole.vala:53 -msgid "List all available mainline kernels" +#: src/Console/AppConsole.vala:49 +#, fuzzy +msgid "List available mainline kernels" msgstr "사용 가능한 모든 메인라인 커널 보기" -#: src/Console/AppConsole.vala:54 +#: src/Console/AppConsole.vala:50 msgid "List installed kernels" msgstr "설치된 커널 보기" -#: src/Console/AppConsole.vala:55 +#: src/Console/AppConsole.vala:51 msgid "Install latest mainline kernel" msgstr "최신 메인라인 커널 설치" -#: src/Console/AppConsole.vala:56 -msgid "Install latest point update for current series" +#: src/Console/AppConsole.vala:52 +#, fuzzy +msgid "Install latest point update in the current major version" msgstr "현재 사용중인 배포판을 위한 최신 포인트 업데이트 설치" -#: src/Console/AppConsole.vala:57 -msgid "Install specified mainline kernel" -msgstr "지정한 메인라인 커널 설치" +#: src/Console/AppConsole.vala:53 +#, fuzzy +msgid "Install specified kernels" +msgstr "지정한 커널 삭제" -#: src/Console/AppConsole.vala:58 -msgid "Uninstall specified kernel" +#: src/Console/AppConsole.vala:54 +#, fuzzy +msgid "Uninstall specified kernels" msgstr "지정한 커널 삭제" -#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:338 +#: src/Console/AppConsole.vala:55 src/Gtk/MainWindow.vala:327 msgid "Uninstall all but the highest installed version" msgstr "설치된 가장 높은 버전을 제외한 모든 버전을 제거합니다" -#: src/Console/AppConsole.vala:60 +#: src/Console/AppConsole.vala:56 msgid "Download specified kernels" msgstr "지정한 커널 다운로드" -#: src/Console/AppConsole.vala:61 +#: src/Console/AppConsole.vala:57 msgid "Delete cached info about available kernels" msgstr "사용 가능한 커널에 대한 캐시된 정보 삭제" -#: src/Console/AppConsole.vala:63 src/Gtk/AppGtk.vala:135 +#: src/Console/AppConsole.vala:59 src/Gtk/AppGtk.vala:141 msgid "Options" msgstr "옵션" -#: src/Console/AppConsole.vala:65 +#: src/Console/AppConsole.vala:61 msgid "Include unstable and RC releases" msgstr "unstable 및 RC 릴리스 포함" -#: src/Console/AppConsole.vala:66 +#: src/Console/AppConsole.vala:62 msgid "Exclude unstable and RC releases" msgstr "unstable 및 RC 릴리스 제외" -#: src/Console/AppConsole.vala:67 -msgid "Enable verbose debugging output" -msgstr "디버깅을 위한 진행 과정 보이기 활성화" +#: src/Console/AppConsole.vala:63 +msgid "Verbosity. Set to n if given, or increment." +msgstr "" -#: src/Console/AppConsole.vala:68 +#: src/Console/AppConsole.vala:64 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "모든 물음에 자동으로 \"예\"라고 가정 (비 대화형 모드)" -#: src/Console/AppConsole.vala:71 -msgid "A version string taken from the output of --list" +#: src/Console/AppConsole.vala:67 +#, fuzzy +msgid "One or more version strings taken from the output of --list" msgstr "--list 의 출력에서 가져온 버전 문자열" -#: src/Console/AppConsole.vala:72 -msgid "One or more, comma-seperated" -msgstr "하나 이상, 쉼표로 구분" +#: src/Console/AppConsole.vala:68 +msgid "comma, pipe, or colon-seperated, or quoted space seperated" +msgstr "" -#: src/Console/AppConsole.vala:73 -msgid "The currently running kernel will always be ignored" +#: src/Console/AppConsole.vala:69 +#, fuzzy +msgid "Locked kernels and the currently running kernel are ignored" msgstr "현재 실행중인 커널은 항상 무시됩니다" -#: src/Console/AppConsole.vala:163 src/Gtk/AppGtk.vala:119 +#: src/Console/AppConsole.vala:160 src/Gtk/AppGtk.vala:125 msgid "Unknown option" msgstr "알 수 없는 옵션" -#: src/Console/AppConsole.vala:164 src/Console/AppConsole.vala:250 -#: src/Console/AppConsole.vala:278 +#: src/Console/AppConsole.vala:161 src/Console/AppConsole.vala:220 msgid "Run" msgstr "실행" -#: src/Console/AppConsole.vala:164 +#: src/Console/AppConsole.vala:161 msgid "to list all options" msgstr "모든 옵션을 나열" -#: src/Console/AppConsole.vala:218 src/Console/AppConsole.vala:258 -msgid "No kernels specified" -msgstr "지정한 커널이 없습니다" - -#: src/Console/AppConsole.vala:224 -msgid "Multiple kernels selected for installation. Select only one." -msgstr "설치할 커널이 여러개 선택되었습니다. 하나의 커널만 선택하세요." - -#: src/Console/AppConsole.vala:247 -msgid "Could not find requested version" -msgstr "요청한 버전을 찾을 수 없습니다" - -#: src/Console/AppConsole.vala:250 -msgid "and use a version string listed in first column" -msgstr "첫 번째 열에 나열된 버전 문자열을 사용" - -#: src/Console/AppConsole.vala:277 +#: src/Console/AppConsole.vala:219 msgid "Command not specified" msgstr "지정한 명령어가 없습니다" -#: src/Console/AppConsole.vala:278 +#: src/Console/AppConsole.vala:220 msgid "to list all commands" msgstr "모든 명령어 나열" -#: src/Console/AppConsole.vala:314 +#: src/Console/AppConsole.vala:256 msgid "Notifications disabled in settings" msgstr "설정에서 비활성화된 알림" -#: src/Console/AppConsole.vala:342 +#: src/Console/AppConsole.vala:284 #, c-format msgid "Kernel %s Available" msgstr "커널 %s 사용 가능" -#: src/Console/AppConsole.vala:346 src/Gtk/SettingsDialog.vala:166 +#: src/Console/AppConsole.vala:288 src/Gtk/SettingsDialog.vala:166 msgid "Show" msgstr "보이기" -#: src/Console/AppConsole.vala:347 src/Gtk/MainWindow.vala:305 +#: src/Console/AppConsole.vala:289 src/Gtk/MainWindow.vala:299 msgid "Install" msgstr "설치" -#: src/Console/AppConsole.vala:350 +#: src/Console/AppConsole.vala:292 msgid "Previously notified" msgstr "이전에 통보됨" @@ -366,90 +373,86 @@ msgstr "문서작성" msgid "Third Party Inclusions" msgstr "서드파티 포함" -#: src/Gtk/AppGtk.vala:133 +#: src/Gtk/AppGtk.vala:139 msgid "options" msgstr "옵션" -#: src/Gtk/AppGtk.vala:137 +#: src/Gtk/AppGtk.vala:143 msgid "Print debug information" msgstr "디버그 정보 출력" -#: src/Gtk/AppGtk.vala:138 +#: src/Gtk/AppGtk.vala:144 msgid "Show all options" msgstr "모든 옵션 보기" -#: src/Gtk/MainWindow.vala:123 -msgid "Kernel" -msgstr "커널" - -#: src/Gtk/MainWindow.vala:145 +#: src/Gtk/MainWindow.vala:143 msgid "Lock" msgstr "" -#: src/Gtk/MainWindow.vala:162 +#: src/Gtk/MainWindow.vala:160 msgid "Status" msgstr "상태" -#: src/Gtk/MainWindow.vala:174 +#: src/Gtk/MainWindow.vala:172 msgid "Notes" msgstr "노트" -#: src/Gtk/MainWindow.vala:315 +#: src/Gtk/MainWindow.vala:307 msgid "Uninstall" msgstr "삭제" -#: src/Gtk/MainWindow.vala:326 +#: src/Gtk/MainWindow.vala:316 msgid "Changelog, build status, etc" msgstr "" -#: src/Gtk/MainWindow.vala:337 +#: src/Gtk/MainWindow.vala:326 msgid "Uninstall Old" msgstr "오래된 커널 제거" -#: src/Gtk/MainWindow.vala:343 +#: src/Gtk/MainWindow.vala:332 msgid "Reload" msgstr "새로고침" -#: src/Gtk/MainWindow.vala:344 +#: src/Gtk/MainWindow.vala:333 msgid "Delete and reload all cached kernel info" msgstr "" -#: src/Gtk/MainWindow.vala:349 src/Gtk/SettingsDialog.vala:49 +#: src/Gtk/MainWindow.vala:338 src/Gtk/SettingsDialog.vala:49 msgid "Settings" msgstr "설정" -#: src/Gtk/MainWindow.vala:354 +#: src/Gtk/MainWindow.vala:343 msgid "About" msgstr "정보" -#: src/Gtk/MainWindow.vala:359 +#: src/Gtk/MainWindow.vala:348 msgid "Exit" msgstr "출구" -#: src/Gtk/MainWindow.vala:425 +#: src/Gtk/MainWindow.vala:414 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "우분투 기반 배포판의 커널 업그레이드 도구" -#: src/Gtk/MainWindow.vala:426 +#: src/Gtk/MainWindow.vala:415 msgid "Forked" msgstr "가랑이진" -#: src/Gtk/MainWindow.vala:426 +#: src/Gtk/MainWindow.vala:415 msgid "Original" msgstr "원문 언어" -#: src/Gtk/MainWindow.vala:463 +#: src/Gtk/MainWindow.vala:452 msgid "Updating kernels" msgstr "커널 업데이트" -#: src/Gtk/MainWindow.vala:531 +#: src/Gtk/MainWindow.vala:520 msgid "available" msgstr "사용가능" -#: src/Gtk/MainWindow.vala:573 src/Gtk/MainWindow.vala:614 -#: src/Gtk/MainWindow.vala:649 +#: src/Gtk/MainWindow.vala:575 src/Gtk/MainWindow.vala:614 +#: src/Gtk/MainWindow.vala:646 msgid "DONE" -msgstr "수행" +msgstr "" #: src/Gtk/ProgressWindow.vala:126 src/Gtk/TerminalWindow.vala:151 msgid "Cancel" diff --git a/po/messages.pot b/po/messages.pot index a19c7647..eafef367 100644 --- a/po/messages.pot +++ b/po/messages.pot @@ -6,9 +6,9 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: mainline 1.3.1\n" +"Project-Id-Version: mainline 1.3.2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-26 13:36-0400\n" +"POT-Creation-Date: 2023-05-29 06:50-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,77 +17,77 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" -#: src/Common/LinuxKernel.vala:105 +#: src/Common/LinuxKernel.vala:104 msgid "Distribution" msgstr "" -#: src/Common/LinuxKernel.vala:120 +#: src/Common/LinuxKernel.vala:119 msgid "Architecture" msgstr "" -#: src/Common/LinuxKernel.vala:135 +#: src/Common/LinuxKernel.vala:134 msgid "Running kernel" msgstr "" -#: src/Common/LinuxKernel.vala:257 +#: src/Common/LinuxKernel.vala:250 msgid "loading cached" msgstr "" -#: src/Common/LinuxKernel.vala:269 +#: src/Common/LinuxKernel.vala:262 msgid "queuing download" msgstr "" -#: src/Common/LinuxKernel.vala:290 +#: src/Common/LinuxKernel.vala:283 msgid "Fetching individual kernel indexes" msgstr "" -#: src/Common/LinuxKernel.vala:306 +#: src/Common/LinuxKernel.vala:299 msgid "loading downloaded" msgstr "" -#: src/Common/LinuxKernel.vala:341 +#: src/Common/LinuxKernel.vala:334 msgid "Updating from" msgstr "" -#: src/Common/LinuxKernel.vala:349 +#: src/Common/LinuxKernel.vala:342 msgid "OK" msgstr "" -#: src/Common/LinuxKernel.vala:352 +#: src/Common/LinuxKernel.vala:345 msgid "FAILED" msgstr "" -#: src/Common/LinuxKernel.vala:405 +#: src/Common/LinuxKernel.vala:409 msgid "Found installed" msgstr "" -#: src/Common/LinuxKernel.vala:411 +#: src/Common/LinuxKernel.vala:410 msgid "locked" msgstr "" -#: src/Common/LinuxKernel.vala:495 src/Common/LinuxKernel.vala:1031 -#: src/Common/LinuxKernel.vala:1075 src/Common/LinuxKernel.vala:1142 +#: src/Common/LinuxKernel.vala:497 src/Common/LinuxKernel.vala:1060 +#: src/Common/LinuxKernel.vala:1094 src/Common/LinuxKernel.vala:1150 msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:729 src/Gtk/MainWindow.vala:522 -#: src/Gtk/MainWindow.vala:535 +#: src/Common/LinuxKernel.vala:732 src/Gtk/MainWindow.vala:511 +#: src/Gtk/MainWindow.vala:524 msgid "Running" msgstr "" -#: src/Common/LinuxKernel.vala:730 +#: src/Common/LinuxKernel.vala:733 msgid "Installed" msgstr "" -#: src/Common/LinuxKernel.vala:731 +#: src/Common/LinuxKernel.vala:734 msgid "Invalid" msgstr "" -#: src/Common/LinuxKernel.vala:817 +#: src/Common/LinuxKernel.vala:820 msgid "Packages Available" msgstr "" -#: src/Common/LinuxKernel.vala:823 +#: src/Common/LinuxKernel.vala:826 msgid "Packages Installed" msgstr "" @@ -95,76 +95,92 @@ msgstr "" msgid "File not found" msgstr "" -#: src/Common/LinuxKernel.vala:942 +#: src/Common/LinuxKernel.vala:945 msgid "Available Kernels" msgstr "" -#: src/Common/LinuxKernel.vala:982 -msgid "enabled" +#: src/Common/LinuxKernel.vala:973 +msgid "No kernels specified" +msgstr "" + +#: src/Common/LinuxKernel.vala:980 src/Gtk/MainWindow.vala:119 +msgid "Kernel" +msgstr "" + +#: src/Common/LinuxKernel.vala:980 +msgid "not found" msgstr "" #: src/Common/LinuxKernel.vala:1006 +msgid "enabled" +msgstr "" + +#: src/Common/LinuxKernel.vala:1030 msgid "Downloading" msgstr "" -#: src/Common/LinuxKernel.vala:1026 +#: src/Common/LinuxKernel.vala:1055 msgid "is already installed." msgstr "" -#: src/Common/LinuxKernel.vala:1061 +#: src/Common/LinuxKernel.vala:1065 +msgid "download failed." +msgstr "" + +#: src/Common/LinuxKernel.vala:1082 msgid "Uninstalling selected kernels" msgstr "" -#: src/Common/LinuxKernel.vala:1067 +#: src/Common/LinuxKernel.vala:1086 msgid "requested" msgstr "" -#: src/Common/LinuxKernel.vala:1070 +#: src/Common/LinuxKernel.vala:1089 msgid "not uninstalling the currently running kernel" msgstr "" -#: src/Common/LinuxKernel.vala:1091 +#: src/Common/LinuxKernel.vala:1102 msgid "found" msgstr "" -#: src/Common/LinuxKernel.vala:1094 +#: src/Common/LinuxKernel.vala:1107 msgid "No packages to un-install!" msgstr "" -#: src/Common/LinuxKernel.vala:1138 +#: src/Common/LinuxKernel.vala:1146 msgid "is the highest installed version." msgstr "" -#: src/Common/LinuxKernel.vala:1151 +#: src/Common/LinuxKernel.vala:1159 msgid "Could not find running kernel in list" msgstr "" -#: src/Common/LinuxKernel.vala:1156 +#: src/Common/LinuxKernel.vala:1164 msgid "Could not find any kernels to uninstall" msgstr "" -#: src/Common/LinuxKernel.vala:1164 +#: src/Common/LinuxKernel.vala:1172 msgid "The following kernels will be uninstalled" msgstr "" -#: src/Common/LinuxKernel.vala:1168 +#: src/Common/LinuxKernel.vala:1176 msgid "Continue ?" msgstr "" -#: src/Common/LinuxKernel.vala:1190 src/Console/AppConsole.vala:292 +#: src/Common/LinuxKernel.vala:1198 src/Console/AppConsole.vala:234 msgid "Latest update" msgstr "" -#: src/Common/LinuxKernel.vala:1201 src/Console/AppConsole.vala:299 +#: src/Common/LinuxKernel.vala:1209 src/Console/AppConsole.vala:241 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:1209 src/Console/AppConsole.vala:304 -#: src/Console/AppConsole.vala:320 +#: src/Common/LinuxKernel.vala:1217 src/Console/AppConsole.vala:246 +#: src/Console/AppConsole.vala:262 msgid "No updates found" msgstr "" -#: src/Common/LinuxKernel.vala:1218 +#: src/Common/LinuxKernel.vala:1226 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "" @@ -191,145 +207,128 @@ msgstr "" msgid "File not found: %s" msgstr "" -#: src/Console/AppConsole.vala:47 src/Gtk/AppGtk.vala:133 +#: src/Console/AppConsole.vala:43 src/Gtk/AppGtk.vala:139 msgid "Syntax" msgstr "" -#: src/Console/AppConsole.vala:49 +#: src/Console/AppConsole.vala:45 msgid "Commands" msgstr "" -#: src/Console/AppConsole.vala:51 +#: src/Console/AppConsole.vala:47 msgid "Check for kernel updates" msgstr "" -#: src/Console/AppConsole.vala:52 +#: src/Console/AppConsole.vala:48 msgid "Check for kernel updates and notify current user" msgstr "" -#: src/Console/AppConsole.vala:53 -msgid "List all available mainline kernels" +#: src/Console/AppConsole.vala:49 +msgid "List available mainline kernels" msgstr "" -#: src/Console/AppConsole.vala:54 +#: src/Console/AppConsole.vala:50 msgid "List installed kernels" msgstr "" -#: src/Console/AppConsole.vala:55 +#: src/Console/AppConsole.vala:51 msgid "Install latest mainline kernel" msgstr "" -#: src/Console/AppConsole.vala:56 -msgid "Install latest point update for current series" +#: src/Console/AppConsole.vala:52 +msgid "Install latest point update in the current major version" msgstr "" -#: src/Console/AppConsole.vala:57 -msgid "Install specified mainline kernel" +#: src/Console/AppConsole.vala:53 +msgid "Install specified kernels" msgstr "" -#: src/Console/AppConsole.vala:58 -msgid "Uninstall specified kernel" +#: src/Console/AppConsole.vala:54 +msgid "Uninstall specified kernels" msgstr "" -#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:338 +#: src/Console/AppConsole.vala:55 src/Gtk/MainWindow.vala:327 msgid "Uninstall all but the highest installed version" msgstr "" -#: src/Console/AppConsole.vala:60 +#: src/Console/AppConsole.vala:56 msgid "Download specified kernels" msgstr "" -#: src/Console/AppConsole.vala:61 +#: src/Console/AppConsole.vala:57 msgid "Delete cached info about available kernels" msgstr "" -#: src/Console/AppConsole.vala:63 src/Gtk/AppGtk.vala:135 +#: src/Console/AppConsole.vala:59 src/Gtk/AppGtk.vala:141 msgid "Options" msgstr "" -#: src/Console/AppConsole.vala:65 +#: src/Console/AppConsole.vala:61 msgid "Include unstable and RC releases" msgstr "" -#: src/Console/AppConsole.vala:66 +#: src/Console/AppConsole.vala:62 msgid "Exclude unstable and RC releases" msgstr "" -#: src/Console/AppConsole.vala:67 -msgid "Enable verbose debugging output" +#: src/Console/AppConsole.vala:63 +msgid "Verbosity. Set to n if given, or increment." msgstr "" -#: src/Console/AppConsole.vala:68 +#: src/Console/AppConsole.vala:64 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "" -#: src/Console/AppConsole.vala:71 -msgid "A version string taken from the output of --list" +#: src/Console/AppConsole.vala:67 +msgid "One or more version strings taken from the output of --list" msgstr "" -#: src/Console/AppConsole.vala:72 -msgid "One or more, comma-seperated" +#: src/Console/AppConsole.vala:68 +msgid "comma, pipe, or colon-seperated, or quoted space seperated" msgstr "" -#: src/Console/AppConsole.vala:73 -msgid "The currently running kernel will always be ignored" +#: src/Console/AppConsole.vala:69 +msgid "Locked kernels and the currently running kernel are ignored" msgstr "" -#: src/Console/AppConsole.vala:163 src/Gtk/AppGtk.vala:119 +#: src/Console/AppConsole.vala:160 src/Gtk/AppGtk.vala:125 msgid "Unknown option" msgstr "" -#: src/Console/AppConsole.vala:164 src/Console/AppConsole.vala:250 -#: src/Console/AppConsole.vala:278 +#: src/Console/AppConsole.vala:161 src/Console/AppConsole.vala:220 msgid "Run" msgstr "" -#: src/Console/AppConsole.vala:164 +#: src/Console/AppConsole.vala:161 msgid "to list all options" msgstr "" -#: src/Console/AppConsole.vala:218 src/Console/AppConsole.vala:258 -msgid "No kernels specified" -msgstr "" - -#: src/Console/AppConsole.vala:224 -msgid "Multiple kernels selected for installation. Select only one." -msgstr "" - -#: src/Console/AppConsole.vala:247 -msgid "Could not find requested version" -msgstr "" - -#: src/Console/AppConsole.vala:250 -msgid "and use a version string listed in first column" -msgstr "" - -#: src/Console/AppConsole.vala:277 +#: src/Console/AppConsole.vala:219 msgid "Command not specified" msgstr "" -#: src/Console/AppConsole.vala:278 +#: src/Console/AppConsole.vala:220 msgid "to list all commands" msgstr "" -#: src/Console/AppConsole.vala:314 +#: src/Console/AppConsole.vala:256 msgid "Notifications disabled in settings" msgstr "" -#: src/Console/AppConsole.vala:342 +#: src/Console/AppConsole.vala:284 #, c-format msgid "Kernel %s Available" msgstr "" -#: src/Console/AppConsole.vala:346 src/Gtk/SettingsDialog.vala:166 +#: src/Console/AppConsole.vala:288 src/Gtk/SettingsDialog.vala:166 msgid "Show" msgstr "" -#: src/Console/AppConsole.vala:347 src/Gtk/MainWindow.vala:305 +#: src/Console/AppConsole.vala:289 src/Gtk/MainWindow.vala:299 msgid "Install" msgstr "" -#: src/Console/AppConsole.vala:350 +#: src/Console/AppConsole.vala:292 msgid "Previously notified" msgstr "" @@ -369,88 +368,84 @@ msgstr "" msgid "Third Party Inclusions" msgstr "" -#: src/Gtk/AppGtk.vala:133 +#: src/Gtk/AppGtk.vala:139 msgid "options" msgstr "" -#: src/Gtk/AppGtk.vala:137 +#: src/Gtk/AppGtk.vala:143 msgid "Print debug information" msgstr "" -#: src/Gtk/AppGtk.vala:138 +#: src/Gtk/AppGtk.vala:144 msgid "Show all options" msgstr "" -#: src/Gtk/MainWindow.vala:123 -msgid "Kernel" -msgstr "" - -#: src/Gtk/MainWindow.vala:145 +#: src/Gtk/MainWindow.vala:143 msgid "Lock" msgstr "" -#: src/Gtk/MainWindow.vala:162 +#: src/Gtk/MainWindow.vala:160 msgid "Status" msgstr "" -#: src/Gtk/MainWindow.vala:174 +#: src/Gtk/MainWindow.vala:172 msgid "Notes" msgstr "" -#: src/Gtk/MainWindow.vala:315 +#: src/Gtk/MainWindow.vala:307 msgid "Uninstall" msgstr "" -#: src/Gtk/MainWindow.vala:326 +#: src/Gtk/MainWindow.vala:316 msgid "Changelog, build status, etc" msgstr "" -#: src/Gtk/MainWindow.vala:337 +#: src/Gtk/MainWindow.vala:326 msgid "Uninstall Old" msgstr "" -#: src/Gtk/MainWindow.vala:343 +#: src/Gtk/MainWindow.vala:332 msgid "Reload" msgstr "" -#: src/Gtk/MainWindow.vala:344 +#: src/Gtk/MainWindow.vala:333 msgid "Delete and reload all cached kernel info" msgstr "" -#: src/Gtk/MainWindow.vala:349 src/Gtk/SettingsDialog.vala:49 +#: src/Gtk/MainWindow.vala:338 src/Gtk/SettingsDialog.vala:49 msgid "Settings" msgstr "" -#: src/Gtk/MainWindow.vala:354 +#: src/Gtk/MainWindow.vala:343 msgid "About" msgstr "" -#: src/Gtk/MainWindow.vala:359 +#: src/Gtk/MainWindow.vala:348 msgid "Exit" msgstr "" -#: src/Gtk/MainWindow.vala:425 +#: src/Gtk/MainWindow.vala:414 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "" -#: src/Gtk/MainWindow.vala:426 +#: src/Gtk/MainWindow.vala:415 msgid "Forked" msgstr "" -#: src/Gtk/MainWindow.vala:426 +#: src/Gtk/MainWindow.vala:415 msgid "Original" msgstr "" -#: src/Gtk/MainWindow.vala:463 +#: src/Gtk/MainWindow.vala:452 msgid "Updating kernels" msgstr "" -#: src/Gtk/MainWindow.vala:531 +#: src/Gtk/MainWindow.vala:520 msgid "available" msgstr "" -#: src/Gtk/MainWindow.vala:573 src/Gtk/MainWindow.vala:614 -#: src/Gtk/MainWindow.vala:649 +#: src/Gtk/MainWindow.vala:575 src/Gtk/MainWindow.vala:614 +#: src/Gtk/MainWindow.vala:646 msgid "DONE" msgstr "" diff --git a/po/nl.po b/po/nl.po index 6a909e4a..a9b2cb14 100644 --- a/po/nl.po +++ b/po/nl.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-26 13:36-0400\n" +"POT-Creation-Date: 2023-05-29 06:50-0400\n" "PO-Revision-Date: 2020-08-23 13:55+0200\n" "Last-Translator: Heimen Stoffels \n" "Language-Team: Dutch (Netherlands)\n" @@ -13,77 +13,77 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Poedit 3.2.2\n" -#: src/Common/LinuxKernel.vala:105 +#: src/Common/LinuxKernel.vala:104 msgid "Distribution" msgstr "Distributie" -#: src/Common/LinuxKernel.vala:120 +#: src/Common/LinuxKernel.vala:119 msgid "Architecture" msgstr "Architectuur" -#: src/Common/LinuxKernel.vala:135 +#: src/Common/LinuxKernel.vala:134 msgid "Running kernel" msgstr "Kernel uitvoeren" -#: src/Common/LinuxKernel.vala:257 +#: src/Common/LinuxKernel.vala:250 msgid "loading cached" msgstr "laden in cache" -#: src/Common/LinuxKernel.vala:269 +#: src/Common/LinuxKernel.vala:262 msgid "queuing download" msgstr "wachtrijen downloaden" -#: src/Common/LinuxKernel.vala:290 +#: src/Common/LinuxKernel.vala:283 msgid "Fetching individual kernel indexes" msgstr "Afzonderlijke kernelindexen ophalen" -#: src/Common/LinuxKernel.vala:306 +#: src/Common/LinuxKernel.vala:299 msgid "loading downloaded" msgstr "laden gedownload" -#: src/Common/LinuxKernel.vala:341 +#: src/Common/LinuxKernel.vala:334 msgid "Updating from" msgstr "Bijwerken van" -#: src/Common/LinuxKernel.vala:349 +#: src/Common/LinuxKernel.vala:342 msgid "OK" msgstr "Oké" -#: src/Common/LinuxKernel.vala:352 +#: src/Common/LinuxKernel.vala:345 msgid "FAILED" msgstr "MISLUKT" -#: src/Common/LinuxKernel.vala:405 +#: src/Common/LinuxKernel.vala:409 msgid "Found installed" msgstr "Geïnstalleerd gevonden" -#: src/Common/LinuxKernel.vala:411 +#: src/Common/LinuxKernel.vala:410 msgid "locked" msgstr "" -#: src/Common/LinuxKernel.vala:495 src/Common/LinuxKernel.vala:1031 -#: src/Common/LinuxKernel.vala:1075 src/Common/LinuxKernel.vala:1142 +#: src/Common/LinuxKernel.vala:497 src/Common/LinuxKernel.vala:1060 +#: src/Common/LinuxKernel.vala:1094 src/Common/LinuxKernel.vala:1150 msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:729 src/Gtk/MainWindow.vala:522 -#: src/Gtk/MainWindow.vala:535 +#: src/Common/LinuxKernel.vala:732 src/Gtk/MainWindow.vala:511 +#: src/Gtk/MainWindow.vala:524 msgid "Running" msgstr "In gebruik" -#: src/Common/LinuxKernel.vala:730 +#: src/Common/LinuxKernel.vala:733 msgid "Installed" msgstr "Geïnstalleerd" -#: src/Common/LinuxKernel.vala:731 +#: src/Common/LinuxKernel.vala:734 msgid "Invalid" msgstr "Ongeldig" -#: src/Common/LinuxKernel.vala:817 +#: src/Common/LinuxKernel.vala:820 msgid "Packages Available" msgstr "Beschikbare pakketten" -#: src/Common/LinuxKernel.vala:823 +#: src/Common/LinuxKernel.vala:826 msgid "Packages Installed" msgstr "Geïnstalleerde pakketten" @@ -91,77 +91,95 @@ msgstr "Geïnstalleerde pakketten" msgid "File not found" msgstr "Het bestand is niet gevonden" -#: src/Common/LinuxKernel.vala:942 +#: src/Common/LinuxKernel.vala:945 msgid "Available Kernels" msgstr "Beschikbare kernels" -#: src/Common/LinuxKernel.vala:982 +#: src/Common/LinuxKernel.vala:973 +#, fuzzy +msgid "No kernels specified" +msgstr "Geen opdracht opgegeven" + +#: src/Common/LinuxKernel.vala:980 src/Gtk/MainWindow.vala:119 +msgid "Kernel" +msgstr "Kernel" + +#: src/Common/LinuxKernel.vala:980 +#, fuzzy +msgid "not found" +msgstr "Het bestand is niet gevonden" + +#: src/Common/LinuxKernel.vala:1006 msgid "enabled" msgstr "ingeschakeld" -#: src/Common/LinuxKernel.vala:1006 +#: src/Common/LinuxKernel.vala:1030 msgid "Downloading" msgstr "Downloaden" -#: src/Common/LinuxKernel.vala:1026 +#: src/Common/LinuxKernel.vala:1055 msgid "is already installed." msgstr "is al geïnstalleerd." -#: src/Common/LinuxKernel.vala:1061 +#: src/Common/LinuxKernel.vala:1065 +msgid "download failed." +msgstr "" + +#: src/Common/LinuxKernel.vala:1082 msgid "Uninstalling selected kernels" msgstr "Geselecteerde kernels verwijderen" -#: src/Common/LinuxKernel.vala:1067 +#: src/Common/LinuxKernel.vala:1086 msgid "requested" msgstr "verzocht" -#: src/Common/LinuxKernel.vala:1070 +#: src/Common/LinuxKernel.vala:1089 msgid "not uninstalling the currently running kernel" msgstr "de momenteel actieve kernel niet verwijderen" -#: src/Common/LinuxKernel.vala:1091 +#: src/Common/LinuxKernel.vala:1102 msgid "found" msgstr "gevonden" -#: src/Common/LinuxKernel.vala:1094 +#: src/Common/LinuxKernel.vala:1107 msgid "No packages to un-install!" msgstr "Geen pakketten om te verwijderen!" -#: src/Common/LinuxKernel.vala:1138 +#: src/Common/LinuxKernel.vala:1146 #, fuzzy msgid "is the highest installed version." msgstr "Verwijder alle behalve de hoogst geïnstalleerde versie" -#: src/Common/LinuxKernel.vala:1151 +#: src/Common/LinuxKernel.vala:1159 msgid "Could not find running kernel in list" msgstr "De in gebruik zijnde kernel staat niet op de lijst" -#: src/Common/LinuxKernel.vala:1156 +#: src/Common/LinuxKernel.vala:1164 msgid "Could not find any kernels to uninstall" msgstr "Er zijn geen te verwijderen kernels" -#: src/Common/LinuxKernel.vala:1164 +#: src/Common/LinuxKernel.vala:1172 msgid "The following kernels will be uninstalled" msgstr "De volgende kernels worden verwijderd" -#: src/Common/LinuxKernel.vala:1168 +#: src/Common/LinuxKernel.vala:1176 msgid "Continue ?" msgstr "Wilt u doorgaan?" -#: src/Common/LinuxKernel.vala:1190 src/Console/AppConsole.vala:292 +#: src/Common/LinuxKernel.vala:1198 src/Console/AppConsole.vala:234 msgid "Latest update" msgstr "Recentste update" -#: src/Common/LinuxKernel.vala:1201 src/Console/AppConsole.vala:299 +#: src/Common/LinuxKernel.vala:1209 src/Console/AppConsole.vala:241 msgid "Latest point update" msgstr "Recentste puntupdate" -#: src/Common/LinuxKernel.vala:1209 src/Console/AppConsole.vala:304 -#: src/Console/AppConsole.vala:320 +#: src/Common/LinuxKernel.vala:1217 src/Console/AppConsole.vala:246 +#: src/Console/AppConsole.vala:262 msgid "No updates found" msgstr "Geen updates gevonden" -#: src/Common/LinuxKernel.vala:1218 +#: src/Common/LinuxKernel.vala:1226 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Wilt u versie %s installeren? (j/n): " @@ -190,146 +208,134 @@ msgstr "Meldingen zijn uitgeschakeld" msgid "File not found: %s" msgstr "Bestand niet gevonden: %s" -#: src/Console/AppConsole.vala:47 src/Gtk/AppGtk.vala:133 +#: src/Console/AppConsole.vala:43 src/Gtk/AppGtk.vala:139 msgid "Syntax" msgstr "Syntaxis" -#: src/Console/AppConsole.vala:49 +#: src/Console/AppConsole.vala:45 msgid "Commands" msgstr "Opdrachten" -#: src/Console/AppConsole.vala:51 +#: src/Console/AppConsole.vala:47 msgid "Check for kernel updates" msgstr "Controleren op kernelupdates" -#: src/Console/AppConsole.vala:52 +#: src/Console/AppConsole.vala:48 msgid "Check for kernel updates and notify current user" msgstr "Controleren op kernelupdates en gebruiker op de hoogte brengen" -#: src/Console/AppConsole.vala:53 -msgid "List all available mainline kernels" +#: src/Console/AppConsole.vala:49 +#, fuzzy +msgid "List available mainline kernels" msgstr "Alle beschikbare mainline-kernels tonen" -#: src/Console/AppConsole.vala:54 +#: src/Console/AppConsole.vala:50 msgid "List installed kernels" msgstr "Alle geïnstalleerde kernels tonen" -#: src/Console/AppConsole.vala:55 +#: src/Console/AppConsole.vala:51 msgid "Install latest mainline kernel" msgstr "Recentste mainline-kernel installeren" -#: src/Console/AppConsole.vala:56 -msgid "Install latest point update for current series" +#: src/Console/AppConsole.vala:52 +#, fuzzy +msgid "Install latest point update in the current major version" msgstr "Recentste puntupdate uit huidige editie installeren" -#: src/Console/AppConsole.vala:57 -msgid "Install specified mainline kernel" -msgstr "Opgegeven mainline-kernel installeren" +#: src/Console/AppConsole.vala:53 +#, fuzzy +msgid "Install specified kernels" +msgstr "Opgegeven kernel verwijderen" -#: src/Console/AppConsole.vala:58 -msgid "Uninstall specified kernel" +#: src/Console/AppConsole.vala:54 +#, fuzzy +msgid "Uninstall specified kernels" msgstr "Opgegeven kernel verwijderen" -#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:338 +#: src/Console/AppConsole.vala:55 src/Gtk/MainWindow.vala:327 msgid "Uninstall all but the highest installed version" msgstr "Verwijder alle behalve de hoogst geïnstalleerde versie" -#: src/Console/AppConsole.vala:60 +#: src/Console/AppConsole.vala:56 msgid "Download specified kernels" msgstr "Opgegeven kernels downloaden" -#: src/Console/AppConsole.vala:61 +#: src/Console/AppConsole.vala:57 msgid "Delete cached info about available kernels" msgstr "Informatie over beschikbare kernels in de cache verwijderen" -#: src/Console/AppConsole.vala:63 src/Gtk/AppGtk.vala:135 +#: src/Console/AppConsole.vala:59 src/Gtk/AppGtk.vala:141 msgid "Options" msgstr "Opties" -#: src/Console/AppConsole.vala:65 +#: src/Console/AppConsole.vala:61 msgid "Include unstable and RC releases" msgstr "Inclusief onstabiele en RC-releases" -#: src/Console/AppConsole.vala:66 +#: src/Console/AppConsole.vala:62 msgid "Exclude unstable and RC releases" msgstr "Onstabiele en RC-releases uitsluiten" -#: src/Console/AppConsole.vala:67 -msgid "Enable verbose debugging output" -msgstr "Foutopsporingsinformatie vastleggen" +#: src/Console/AppConsole.vala:63 +msgid "Verbosity. Set to n if given, or increment." +msgstr "" -#: src/Console/AppConsole.vala:68 +#: src/Console/AppConsole.vala:64 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "Ja op alles (in de niet-interactieve modus)" -#: src/Console/AppConsole.vala:71 -msgid "A version string taken from the output of --list" +#: src/Console/AppConsole.vala:67 +#, fuzzy +msgid "One or more version strings taken from the output of --list" msgstr "Een versietekenreeks uit de uitvoer van --list" -#: src/Console/AppConsole.vala:72 -msgid "One or more, comma-seperated" -msgstr "Een of meer, komma-gescheiden" +#: src/Console/AppConsole.vala:68 +msgid "comma, pipe, or colon-seperated, or quoted space seperated" +msgstr "" -#: src/Console/AppConsole.vala:73 -msgid "The currently running kernel will always be ignored" +#: src/Console/AppConsole.vala:69 +#, fuzzy +msgid "Locked kernels and the currently running kernel are ignored" msgstr "De momenteel actieve kernel wordt altijd genegeerd" -#: src/Console/AppConsole.vala:163 src/Gtk/AppGtk.vala:119 +#: src/Console/AppConsole.vala:160 src/Gtk/AppGtk.vala:125 msgid "Unknown option" msgstr "Onbekende optie" -#: src/Console/AppConsole.vala:164 src/Console/AppConsole.vala:250 -#: src/Console/AppConsole.vala:278 +#: src/Console/AppConsole.vala:161 src/Console/AppConsole.vala:220 msgid "Run" msgstr "Uitvoeren" -#: src/Console/AppConsole.vala:164 +#: src/Console/AppConsole.vala:161 msgid "to list all options" msgstr "om alle opties te tonen" -#: src/Console/AppConsole.vala:218 src/Console/AppConsole.vala:258 -msgid "No kernels specified" -msgstr "Geen kernels opgegeven" - -#: src/Console/AppConsole.vala:224 -msgid "Multiple kernels selected for installation. Select only one." -msgstr "" -"Er zijn meerdere te installeren kernels geselecteerd. Selecteer er één." - -#: src/Console/AppConsole.vala:247 -msgid "Could not find requested version" -msgstr "De vereiste versie kan niet worden gevonden" - -#: src/Console/AppConsole.vala:250 -msgid "and use a version string listed in first column" -msgstr "en gebruik een versietekenreeks in de eerste kolom" - -#: src/Console/AppConsole.vala:277 +#: src/Console/AppConsole.vala:219 msgid "Command not specified" msgstr "Geen opdracht opgegeven" -#: src/Console/AppConsole.vala:278 +#: src/Console/AppConsole.vala:220 msgid "to list all commands" msgstr "om alle opdrachten te tonen" -#: src/Console/AppConsole.vala:314 +#: src/Console/AppConsole.vala:256 msgid "Notifications disabled in settings" msgstr "Meldingen uitgeschakeld in instellingen" -#: src/Console/AppConsole.vala:342 +#: src/Console/AppConsole.vala:284 #, c-format msgid "Kernel %s Available" msgstr "Kernel %s is beschikbaar" -#: src/Console/AppConsole.vala:346 src/Gtk/SettingsDialog.vala:166 +#: src/Console/AppConsole.vala:288 src/Gtk/SettingsDialog.vala:166 msgid "Show" msgstr "Tonen" -#: src/Console/AppConsole.vala:347 src/Gtk/MainWindow.vala:305 +#: src/Console/AppConsole.vala:289 src/Gtk/MainWindow.vala:299 msgid "Install" msgstr "Installeren" -#: src/Console/AppConsole.vala:350 +#: src/Console/AppConsole.vala:292 msgid "Previously notified" msgstr "Eerder gemeld" @@ -369,90 +375,86 @@ msgstr "Documenteerders" msgid "Third Party Inclusions" msgstr "Externe code" -#: src/Gtk/AppGtk.vala:133 +#: src/Gtk/AppGtk.vala:139 msgid "options" msgstr "opties" -#: src/Gtk/AppGtk.vala:137 +#: src/Gtk/AppGtk.vala:143 msgid "Print debug information" msgstr "Foutopsporingsinformatie tonen" -#: src/Gtk/AppGtk.vala:138 +#: src/Gtk/AppGtk.vala:144 msgid "Show all options" msgstr "Alle opties tonen" -#: src/Gtk/MainWindow.vala:123 -msgid "Kernel" -msgstr "Kernel" - -#: src/Gtk/MainWindow.vala:145 +#: src/Gtk/MainWindow.vala:143 msgid "Lock" msgstr "" -#: src/Gtk/MainWindow.vala:162 +#: src/Gtk/MainWindow.vala:160 msgid "Status" msgstr "Status" -#: src/Gtk/MainWindow.vala:174 +#: src/Gtk/MainWindow.vala:172 msgid "Notes" msgstr "Notities" -#: src/Gtk/MainWindow.vala:315 +#: src/Gtk/MainWindow.vala:307 msgid "Uninstall" msgstr "Deïnstalleren" -#: src/Gtk/MainWindow.vala:326 +#: src/Gtk/MainWindow.vala:316 msgid "Changelog, build status, etc" msgstr "" -#: src/Gtk/MainWindow.vala:337 +#: src/Gtk/MainWindow.vala:326 msgid "Uninstall Old" msgstr "Verwijder Oude" -#: src/Gtk/MainWindow.vala:343 +#: src/Gtk/MainWindow.vala:332 msgid "Reload" msgstr "Herladen" -#: src/Gtk/MainWindow.vala:344 +#: src/Gtk/MainWindow.vala:333 msgid "Delete and reload all cached kernel info" msgstr "" -#: src/Gtk/MainWindow.vala:349 src/Gtk/SettingsDialog.vala:49 +#: src/Gtk/MainWindow.vala:338 src/Gtk/SettingsDialog.vala:49 msgid "Settings" msgstr "Instellingen" -#: src/Gtk/MainWindow.vala:354 +#: src/Gtk/MainWindow.vala:343 msgid "About" msgstr "Over" -#: src/Gtk/MainWindow.vala:359 +#: src/Gtk/MainWindow.vala:348 msgid "Exit" msgstr "Afsluiten" -#: src/Gtk/MainWindow.vala:425 +#: src/Gtk/MainWindow.vala:414 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Een kernelupgradehulpmiddel voor op Ubuntu gebaseerde distributies" -#: src/Gtk/MainWindow.vala:426 +#: src/Gtk/MainWindow.vala:415 msgid "Forked" msgstr "Geforkt" -#: src/Gtk/MainWindow.vala:426 +#: src/Gtk/MainWindow.vala:415 msgid "Original" msgstr "Origineel" -#: src/Gtk/MainWindow.vala:463 +#: src/Gtk/MainWindow.vala:452 msgid "Updating kernels" msgstr "Kernels bijwerken" -#: src/Gtk/MainWindow.vala:531 +#: src/Gtk/MainWindow.vala:520 msgid "available" msgstr "beschikbaar" -#: src/Gtk/MainWindow.vala:573 src/Gtk/MainWindow.vala:614 -#: src/Gtk/MainWindow.vala:649 +#: src/Gtk/MainWindow.vala:575 src/Gtk/MainWindow.vala:614 +#: src/Gtk/MainWindow.vala:646 msgid "DONE" -msgstr "AFGEROND" +msgstr "" #: src/Gtk/ProgressWindow.vala:126 src/Gtk/TerminalWindow.vala:151 msgid "Cancel" diff --git a/po/pl.po b/po/pl.po index 26c9d8c3..a9d3ca20 100644 --- a/po/pl.po +++ b/po/pl.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-26 13:36-0400\n" +"POT-Creation-Date: 2023-05-29 06:50-0400\n" "PO-Revision-Date: 2023-05-25 13:37+0200\n" "Last-Translator: Matthaiks\n" "Language-Team: Polish\n" @@ -12,77 +12,77 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Poedit 3.3.1\n" -#: src/Common/LinuxKernel.vala:105 +#: src/Common/LinuxKernel.vala:104 msgid "Distribution" msgstr "Dystrybucja" -#: src/Common/LinuxKernel.vala:120 +#: src/Common/LinuxKernel.vala:119 msgid "Architecture" msgstr "Architektura" -#: src/Common/LinuxKernel.vala:135 +#: src/Common/LinuxKernel.vala:134 msgid "Running kernel" msgstr "Uruchomione jądro" -#: src/Common/LinuxKernel.vala:257 +#: src/Common/LinuxKernel.vala:250 msgid "loading cached" msgstr "ładowanie z pamięci podręcznej" -#: src/Common/LinuxKernel.vala:269 +#: src/Common/LinuxKernel.vala:262 msgid "queuing download" msgstr "pobieranie w kolejce" -#: src/Common/LinuxKernel.vala:290 +#: src/Common/LinuxKernel.vala:283 msgid "Fetching individual kernel indexes" msgstr "Pobieranie indywidualnych indeksów jądra" -#: src/Common/LinuxKernel.vala:306 +#: src/Common/LinuxKernel.vala:299 msgid "loading downloaded" msgstr "ładowanie pobranych" -#: src/Common/LinuxKernel.vala:341 +#: src/Common/LinuxKernel.vala:334 msgid "Updating from" msgstr "Aktualizowanie z" -#: src/Common/LinuxKernel.vala:349 +#: src/Common/LinuxKernel.vala:342 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:352 +#: src/Common/LinuxKernel.vala:345 msgid "FAILED" msgstr "NIEPOWODZENIE" -#: src/Common/LinuxKernel.vala:405 +#: src/Common/LinuxKernel.vala:409 msgid "Found installed" msgstr "Znaleziono zainstalowane" -#: src/Common/LinuxKernel.vala:411 +#: src/Common/LinuxKernel.vala:410 msgid "locked" msgstr "zablokowane" -#: src/Common/LinuxKernel.vala:495 src/Common/LinuxKernel.vala:1031 -#: src/Common/LinuxKernel.vala:1075 src/Common/LinuxKernel.vala:1142 +#: src/Common/LinuxKernel.vala:497 src/Common/LinuxKernel.vala:1060 +#: src/Common/LinuxKernel.vala:1094 src/Common/LinuxKernel.vala:1150 msgid "is locked." msgstr "jest zablokowane." -#: src/Common/LinuxKernel.vala:729 src/Gtk/MainWindow.vala:522 -#: src/Gtk/MainWindow.vala:535 +#: src/Common/LinuxKernel.vala:732 src/Gtk/MainWindow.vala:511 +#: src/Gtk/MainWindow.vala:524 msgid "Running" msgstr "Uruchomione" -#: src/Common/LinuxKernel.vala:730 +#: src/Common/LinuxKernel.vala:733 msgid "Installed" msgstr "Zainstalowane" -#: src/Common/LinuxKernel.vala:731 +#: src/Common/LinuxKernel.vala:734 msgid "Invalid" msgstr "Nieprawidłowe" -#: src/Common/LinuxKernel.vala:817 +#: src/Common/LinuxKernel.vala:820 msgid "Packages Available" msgstr "Dostępne pakiety" -#: src/Common/LinuxKernel.vala:823 +#: src/Common/LinuxKernel.vala:826 msgid "Packages Installed" msgstr "Pakiety zainstalowane" @@ -90,76 +90,94 @@ msgstr "Pakiety zainstalowane" msgid "File not found" msgstr "Nie odnaleziono pliku" -#: src/Common/LinuxKernel.vala:942 +#: src/Common/LinuxKernel.vala:945 msgid "Available Kernels" msgstr "Dostępne jądra" -#: src/Common/LinuxKernel.vala:982 +#: src/Common/LinuxKernel.vala:973 +#, fuzzy +msgid "No kernels specified" +msgstr "Nie określono polecenia" + +#: src/Common/LinuxKernel.vala:980 src/Gtk/MainWindow.vala:119 +msgid "Kernel" +msgstr "Jądro" + +#: src/Common/LinuxKernel.vala:980 +#, fuzzy +msgid "not found" +msgstr "Nie odnaleziono pliku" + +#: src/Common/LinuxKernel.vala:1006 msgid "enabled" msgstr "włączone" -#: src/Common/LinuxKernel.vala:1006 +#: src/Common/LinuxKernel.vala:1030 msgid "Downloading" msgstr "Pobieranie" -#: src/Common/LinuxKernel.vala:1026 +#: src/Common/LinuxKernel.vala:1055 msgid "is already installed." msgstr "jest już zainstalowane." -#: src/Common/LinuxKernel.vala:1061 +#: src/Common/LinuxKernel.vala:1065 +msgid "download failed." +msgstr "" + +#: src/Common/LinuxKernel.vala:1082 msgid "Uninstalling selected kernels" msgstr "Odinstalowanie wybranych jąder" -#: src/Common/LinuxKernel.vala:1067 +#: src/Common/LinuxKernel.vala:1086 msgid "requested" msgstr "zażądane" -#: src/Common/LinuxKernel.vala:1070 +#: src/Common/LinuxKernel.vala:1089 msgid "not uninstalling the currently running kernel" msgstr "bez odinstalowywania aktualnie uruchomionego jądra" -#: src/Common/LinuxKernel.vala:1091 +#: src/Common/LinuxKernel.vala:1102 msgid "found" msgstr "znalezione" -#: src/Common/LinuxKernel.vala:1094 +#: src/Common/LinuxKernel.vala:1107 msgid "No packages to un-install!" msgstr "Brak pakietów do odinstalowania!" -#: src/Common/LinuxKernel.vala:1138 +#: src/Common/LinuxKernel.vala:1146 msgid "is the highest installed version." msgstr "to najwyższa zainstalowana wersja." -#: src/Common/LinuxKernel.vala:1151 +#: src/Common/LinuxKernel.vala:1159 msgid "Could not find running kernel in list" msgstr "Nie można znaleźć uruchomionego jądra na liście" -#: src/Common/LinuxKernel.vala:1156 +#: src/Common/LinuxKernel.vala:1164 msgid "Could not find any kernels to uninstall" msgstr "Nie można znaleźć żadnych jąder do odinstalowania" -#: src/Common/LinuxKernel.vala:1164 +#: src/Common/LinuxKernel.vala:1172 msgid "The following kernels will be uninstalled" msgstr "Następujące jądra zostaną odinstalowane" -#: src/Common/LinuxKernel.vala:1168 +#: src/Common/LinuxKernel.vala:1176 msgid "Continue ?" msgstr "Kontynuować?" -#: src/Common/LinuxKernel.vala:1190 src/Console/AppConsole.vala:292 +#: src/Common/LinuxKernel.vala:1198 src/Console/AppConsole.vala:234 msgid "Latest update" msgstr "Najnowsza aktualizacja" -#: src/Common/LinuxKernel.vala:1201 src/Console/AppConsole.vala:299 +#: src/Common/LinuxKernel.vala:1209 src/Console/AppConsole.vala:241 msgid "Latest point update" msgstr "Najnowsza aktualizacja punktowa" -#: src/Common/LinuxKernel.vala:1209 src/Console/AppConsole.vala:304 -#: src/Console/AppConsole.vala:320 +#: src/Common/LinuxKernel.vala:1217 src/Console/AppConsole.vala:246 +#: src/Console/AppConsole.vala:262 msgid "No updates found" msgstr "Nie znaleziono aktualizacji" -#: src/Common/LinuxKernel.vala:1218 +#: src/Common/LinuxKernel.vala:1226 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Zainstalować wersję jądra %s? (t/n): " @@ -188,145 +206,134 @@ msgstr "Powiadomienia są wyłączone" msgid "File not found: %s" msgstr "Nie znaleziono pliku: %s" -#: src/Console/AppConsole.vala:47 src/Gtk/AppGtk.vala:133 +#: src/Console/AppConsole.vala:43 src/Gtk/AppGtk.vala:139 msgid "Syntax" msgstr "Składnia" -#: src/Console/AppConsole.vala:49 +#: src/Console/AppConsole.vala:45 msgid "Commands" msgstr "Polecenia" -#: src/Console/AppConsole.vala:51 +#: src/Console/AppConsole.vala:47 msgid "Check for kernel updates" msgstr "Sprawdź nowe wersje jądra" -#: src/Console/AppConsole.vala:52 +#: src/Console/AppConsole.vala:48 msgid "Check for kernel updates and notify current user" msgstr "Sprawdź nowe wersje jądra i powiadom bieżącego użytkownika" -#: src/Console/AppConsole.vala:53 -msgid "List all available mainline kernels" +#: src/Console/AppConsole.vala:49 +#, fuzzy +msgid "List available mainline kernels" msgstr "Pokaż wszystkie dostępne jądra" -#: src/Console/AppConsole.vala:54 +#: src/Console/AppConsole.vala:50 msgid "List installed kernels" msgstr "Wyświetl listę zainstalowanych jąder" -#: src/Console/AppConsole.vala:55 +#: src/Console/AppConsole.vala:51 msgid "Install latest mainline kernel" msgstr "Zainstaluj najnowsze jądro" -#: src/Console/AppConsole.vala:56 -msgid "Install latest point update for current series" +#: src/Console/AppConsole.vala:52 +#, fuzzy +msgid "Install latest point update in the current major version" msgstr "Zainstaluj najnowszą aktualizację punktową dla bieżącej serii" -#: src/Console/AppConsole.vala:57 -msgid "Install specified mainline kernel" -msgstr "Zainstaluj wybrane jądro" +#: src/Console/AppConsole.vala:53 +#, fuzzy +msgid "Install specified kernels" +msgstr "Odinstaluj wybrane jądro" -#: src/Console/AppConsole.vala:58 -msgid "Uninstall specified kernel" +#: src/Console/AppConsole.vala:54 +#, fuzzy +msgid "Uninstall specified kernels" msgstr "Odinstaluj wybrane jądro" -#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:338 +#: src/Console/AppConsole.vala:55 src/Gtk/MainWindow.vala:327 msgid "Uninstall all but the highest installed version" msgstr "Odinstaluj wszystkie oprócz najwyższej zainstalowanej wersji" -#: src/Console/AppConsole.vala:60 +#: src/Console/AppConsole.vala:56 msgid "Download specified kernels" msgstr "Pobierz wybrane jądra" -#: src/Console/AppConsole.vala:61 +#: src/Console/AppConsole.vala:57 msgid "Delete cached info about available kernels" msgstr "Usuń informacje z pamięci podręcznej o dostępnych jądrach" -#: src/Console/AppConsole.vala:63 src/Gtk/AppGtk.vala:135 +#: src/Console/AppConsole.vala:59 src/Gtk/AppGtk.vala:141 msgid "Options" msgstr "Opcje" -#: src/Console/AppConsole.vala:65 +#: src/Console/AppConsole.vala:61 msgid "Include unstable and RC releases" msgstr "Uwzględnij wydania niestabilne i RC" -#: src/Console/AppConsole.vala:66 +#: src/Console/AppConsole.vala:62 msgid "Exclude unstable and RC releases" msgstr "Wyklucz wersje niestabilne i RC" -#: src/Console/AppConsole.vala:67 -msgid "Enable verbose debugging output" -msgstr "Włącz szczegółowe dane wyjściowe debugowania" +#: src/Console/AppConsole.vala:63 +msgid "Verbosity. Set to n if given, or increment." +msgstr "" -#: src/Console/AppConsole.vala:68 +#: src/Console/AppConsole.vala:64 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "Przyjmij Tak dla wszystkich monitów (tryb nieinteraktywny)" -#: src/Console/AppConsole.vala:71 -msgid "A version string taken from the output of --list" +#: src/Console/AppConsole.vala:67 +#, fuzzy +msgid "One or more version strings taken from the output of --list" msgstr "Ciąg wersji pobrany z danych wyjściowych --list" -#: src/Console/AppConsole.vala:72 -msgid "One or more, comma-seperated" -msgstr "Jedno lub więcej, oddzielone przecinkami" +#: src/Console/AppConsole.vala:68 +msgid "comma, pipe, or colon-seperated, or quoted space seperated" +msgstr "" -#: src/Console/AppConsole.vala:73 -msgid "The currently running kernel will always be ignored" +#: src/Console/AppConsole.vala:69 +#, fuzzy +msgid "Locked kernels and the currently running kernel are ignored" msgstr "Aktualnie uruchomione jądro będzie zawsze ignorowane" -#: src/Console/AppConsole.vala:163 src/Gtk/AppGtk.vala:119 +#: src/Console/AppConsole.vala:160 src/Gtk/AppGtk.vala:125 msgid "Unknown option" msgstr "Nieznana opcja" -#: src/Console/AppConsole.vala:164 src/Console/AppConsole.vala:250 -#: src/Console/AppConsole.vala:278 +#: src/Console/AppConsole.vala:161 src/Console/AppConsole.vala:220 msgid "Run" msgstr "Uruchom" -#: src/Console/AppConsole.vala:164 +#: src/Console/AppConsole.vala:161 msgid "to list all options" msgstr "do wyświetlenia wszystkich opcji" -#: src/Console/AppConsole.vala:218 src/Console/AppConsole.vala:258 -msgid "No kernels specified" -msgstr "Nie wybrano jąder" - -#: src/Console/AppConsole.vala:224 -msgid "Multiple kernels selected for installation. Select only one." -msgstr "Wybrano kilka jąder do instalacji. Wybierz tylko jedno." - -#: src/Console/AppConsole.vala:247 -msgid "Could not find requested version" -msgstr "Nie można odnaleźć żądanej wersji" - -#: src/Console/AppConsole.vala:250 -msgid "and use a version string listed in first column" -msgstr "i użyć numeru wersji wymienionego w pierwszej kolumnie" - -#: src/Console/AppConsole.vala:277 +#: src/Console/AppConsole.vala:219 msgid "Command not specified" msgstr "Nie określono polecenia" -#: src/Console/AppConsole.vala:278 +#: src/Console/AppConsole.vala:220 msgid "to list all commands" msgstr "do wyświetlenia wszystkich poleceń" -#: src/Console/AppConsole.vala:314 +#: src/Console/AppConsole.vala:256 msgid "Notifications disabled in settings" msgstr "Powiadomienia wyłączone w ustawieniach" -#: src/Console/AppConsole.vala:342 +#: src/Console/AppConsole.vala:284 #, c-format msgid "Kernel %s Available" msgstr "Dostępne %s jądra" -#: src/Console/AppConsole.vala:346 src/Gtk/SettingsDialog.vala:166 +#: src/Console/AppConsole.vala:288 src/Gtk/SettingsDialog.vala:166 msgid "Show" msgstr "Pokaż" -#: src/Console/AppConsole.vala:347 src/Gtk/MainWindow.vala:305 +#: src/Console/AppConsole.vala:289 src/Gtk/MainWindow.vala:299 msgid "Install" msgstr "Zainstaluj" -#: src/Console/AppConsole.vala:350 +#: src/Console/AppConsole.vala:292 msgid "Previously notified" msgstr "Wcześniej powiadomiono" @@ -366,90 +373,86 @@ msgstr "Dokumentujący" msgid "Third Party Inclusions" msgstr "Włączenia stron trzecich" -#: src/Gtk/AppGtk.vala:133 +#: src/Gtk/AppGtk.vala:139 msgid "options" msgstr "opcje" -#: src/Gtk/AppGtk.vala:137 +#: src/Gtk/AppGtk.vala:143 msgid "Print debug information" msgstr "Wypisz informacje debugujące" -#: src/Gtk/AppGtk.vala:138 +#: src/Gtk/AppGtk.vala:144 msgid "Show all options" msgstr "Pokaż wszystkie opcje" -#: src/Gtk/MainWindow.vala:123 -msgid "Kernel" -msgstr "Jądro" - -#: src/Gtk/MainWindow.vala:145 +#: src/Gtk/MainWindow.vala:143 msgid "Lock" msgstr "" -#: src/Gtk/MainWindow.vala:162 +#: src/Gtk/MainWindow.vala:160 msgid "Status" msgstr "Status" -#: src/Gtk/MainWindow.vala:174 +#: src/Gtk/MainWindow.vala:172 msgid "Notes" msgstr "Notatki" -#: src/Gtk/MainWindow.vala:315 +#: src/Gtk/MainWindow.vala:307 msgid "Uninstall" msgstr "Odinstaluj" -#: src/Gtk/MainWindow.vala:326 +#: src/Gtk/MainWindow.vala:316 msgid "Changelog, build status, etc" msgstr "Dziennik zmian, status kompilacji itd." -#: src/Gtk/MainWindow.vala:337 +#: src/Gtk/MainWindow.vala:326 msgid "Uninstall Old" msgstr "Odinstaluj stare" -#: src/Gtk/MainWindow.vala:343 +#: src/Gtk/MainWindow.vala:332 msgid "Reload" msgstr "Wczytaj ponownie" -#: src/Gtk/MainWindow.vala:344 +#: src/Gtk/MainWindow.vala:333 msgid "Delete and reload all cached kernel info" msgstr "" -#: src/Gtk/MainWindow.vala:349 src/Gtk/SettingsDialog.vala:49 +#: src/Gtk/MainWindow.vala:338 src/Gtk/SettingsDialog.vala:49 msgid "Settings" msgstr "Ustawienia" -#: src/Gtk/MainWindow.vala:354 +#: src/Gtk/MainWindow.vala:343 msgid "About" msgstr "O programie" -#: src/Gtk/MainWindow.vala:359 +#: src/Gtk/MainWindow.vala:348 msgid "Exit" msgstr "Wyjdź" -#: src/Gtk/MainWindow.vala:425 +#: src/Gtk/MainWindow.vala:414 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Narzędzie uaktualniania jądra dla dystrybucji z rodziny Ubuntu" -#: src/Gtk/MainWindow.vala:426 +#: src/Gtk/MainWindow.vala:415 msgid "Forked" msgstr "Sforkowane" -#: src/Gtk/MainWindow.vala:426 +#: src/Gtk/MainWindow.vala:415 msgid "Original" msgstr "Oryginalne" -#: src/Gtk/MainWindow.vala:463 +#: src/Gtk/MainWindow.vala:452 msgid "Updating kernels" msgstr "Aktualizowanie jąder" -#: src/Gtk/MainWindow.vala:531 +#: src/Gtk/MainWindow.vala:520 msgid "available" msgstr "dostępne" -#: src/Gtk/MainWindow.vala:573 src/Gtk/MainWindow.vala:614 -#: src/Gtk/MainWindow.vala:649 +#: src/Gtk/MainWindow.vala:575 src/Gtk/MainWindow.vala:614 +#: src/Gtk/MainWindow.vala:646 msgid "DONE" -msgstr "GOTOWE" +msgstr "" #: src/Gtk/ProgressWindow.vala:126 src/Gtk/TerminalWindow.vala:151 msgid "Cancel" diff --git a/po/ru.po b/po/ru.po index 5483ea1b..27e4c3a7 100644 --- a/po/ru.po +++ b/po/ru.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-26 13:36-0400\n" +"POT-Creation-Date: 2023-05-29 06:50-0400\n" "PO-Revision-Date: 2023-04-17 20:16+0300\n" "Last-Translator: Danik2343 \n" "Language-Team: Russian\n" @@ -13,77 +13,77 @@ msgstr "" "X-Launchpad-Export-Date: 2016-12-13 11:48+0000\n" "X-Generator: Poedit 3.0.1\n" -#: src/Common/LinuxKernel.vala:105 +#: src/Common/LinuxKernel.vala:104 msgid "Distribution" msgstr "Дистрибутив" -#: src/Common/LinuxKernel.vala:120 +#: src/Common/LinuxKernel.vala:119 msgid "Architecture" msgstr "Архитектура" -#: src/Common/LinuxKernel.vala:135 +#: src/Common/LinuxKernel.vala:134 msgid "Running kernel" msgstr "Запущенное ядро" -#: src/Common/LinuxKernel.vala:257 +#: src/Common/LinuxKernel.vala:250 msgid "loading cached" msgstr "загрузка в кэше" -#: src/Common/LinuxKernel.vala:269 +#: src/Common/LinuxKernel.vala:262 msgid "queuing download" msgstr "загрузка очередей" -#: src/Common/LinuxKernel.vala:290 +#: src/Common/LinuxKernel.vala:283 msgid "Fetching individual kernel indexes" msgstr "Получение отдельных индексов ядра" -#: src/Common/LinuxKernel.vala:306 +#: src/Common/LinuxKernel.vala:299 msgid "loading downloaded" msgstr "загрузка загруженных" -#: src/Common/LinuxKernel.vala:341 +#: src/Common/LinuxKernel.vala:334 msgid "Updating from" msgstr "Обновление из" -#: src/Common/LinuxKernel.vala:349 +#: src/Common/LinuxKernel.vala:342 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:352 +#: src/Common/LinuxKernel.vala:345 msgid "FAILED" msgstr "НЕУДАВШИЙСЯ" -#: src/Common/LinuxKernel.vala:405 +#: src/Common/LinuxKernel.vala:409 msgid "Found installed" msgstr "Найдено установлененное" -#: src/Common/LinuxKernel.vala:411 +#: src/Common/LinuxKernel.vala:410 msgid "locked" msgstr "" -#: src/Common/LinuxKernel.vala:495 src/Common/LinuxKernel.vala:1031 -#: src/Common/LinuxKernel.vala:1075 src/Common/LinuxKernel.vala:1142 +#: src/Common/LinuxKernel.vala:497 src/Common/LinuxKernel.vala:1060 +#: src/Common/LinuxKernel.vala:1094 src/Common/LinuxKernel.vala:1150 msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:729 src/Gtk/MainWindow.vala:522 -#: src/Gtk/MainWindow.vala:535 +#: src/Common/LinuxKernel.vala:732 src/Gtk/MainWindow.vala:511 +#: src/Gtk/MainWindow.vala:524 msgid "Running" msgstr "Используется" -#: src/Common/LinuxKernel.vala:730 +#: src/Common/LinuxKernel.vala:733 msgid "Installed" msgstr "Установлено" -#: src/Common/LinuxKernel.vala:731 +#: src/Common/LinuxKernel.vala:734 msgid "Invalid" msgstr "Негодный" -#: src/Common/LinuxKernel.vala:817 +#: src/Common/LinuxKernel.vala:820 msgid "Packages Available" msgstr "Доступные пакеты" -#: src/Common/LinuxKernel.vala:823 +#: src/Common/LinuxKernel.vala:826 msgid "Packages Installed" msgstr "Установленные пакеты" @@ -91,77 +91,95 @@ msgstr "Установленные пакеты" msgid "File not found" msgstr "Файл не найден" -#: src/Common/LinuxKernel.vala:942 +#: src/Common/LinuxKernel.vala:945 msgid "Available Kernels" msgstr "Доступные ядра" -#: src/Common/LinuxKernel.vala:982 +#: src/Common/LinuxKernel.vala:973 +#, fuzzy +msgid "No kernels specified" +msgstr "Команда не указана" + +#: src/Common/LinuxKernel.vala:980 src/Gtk/MainWindow.vala:119 +msgid "Kernel" +msgstr "Ядро" + +#: src/Common/LinuxKernel.vala:980 +#, fuzzy +msgid "not found" +msgstr "Файл не найден" + +#: src/Common/LinuxKernel.vala:1006 msgid "enabled" msgstr "включено" -#: src/Common/LinuxKernel.vala:1006 +#: src/Common/LinuxKernel.vala:1030 msgid "Downloading" msgstr "Загрузки" -#: src/Common/LinuxKernel.vala:1026 +#: src/Common/LinuxKernel.vala:1055 msgid "is already installed." msgstr "уже установлен." -#: src/Common/LinuxKernel.vala:1061 +#: src/Common/LinuxKernel.vala:1065 +msgid "download failed." +msgstr "" + +#: src/Common/LinuxKernel.vala:1082 msgid "Uninstalling selected kernels" msgstr "Удаление выбранных ядер" -#: src/Common/LinuxKernel.vala:1067 +#: src/Common/LinuxKernel.vala:1086 msgid "requested" msgstr "запрошено" -#: src/Common/LinuxKernel.vala:1070 +#: src/Common/LinuxKernel.vala:1089 msgid "not uninstalling the currently running kernel" msgstr "не удаляет текущее работающее ядро" -#: src/Common/LinuxKernel.vala:1091 +#: src/Common/LinuxKernel.vala:1102 msgid "found" msgstr "найдено" -#: src/Common/LinuxKernel.vala:1094 +#: src/Common/LinuxKernel.vala:1107 msgid "No packages to un-install!" msgstr "Нет пакетов для удаления!" -#: src/Common/LinuxKernel.vala:1138 +#: src/Common/LinuxKernel.vala:1146 #, fuzzy msgid "is the highest installed version." msgstr "Удаление всех установленных версий, кроме самой высокой" -#: src/Common/LinuxKernel.vala:1151 +#: src/Common/LinuxKernel.vala:1159 msgid "Could not find running kernel in list" msgstr "Could not find running kernel in list" -#: src/Common/LinuxKernel.vala:1156 +#: src/Common/LinuxKernel.vala:1164 msgid "Could not find any kernels to uninstall" msgstr "Не удалось найти ядра для деинсталляции" -#: src/Common/LinuxKernel.vala:1164 +#: src/Common/LinuxKernel.vala:1172 msgid "The following kernels will be uninstalled" msgstr "Следующие ядра будут удалены" -#: src/Common/LinuxKernel.vala:1168 +#: src/Common/LinuxKernel.vala:1176 msgid "Continue ?" msgstr "Продолжить ?" -#: src/Common/LinuxKernel.vala:1190 src/Console/AppConsole.vala:292 +#: src/Common/LinuxKernel.vala:1198 src/Console/AppConsole.vala:234 msgid "Latest update" msgstr "Последнее обновление" -#: src/Common/LinuxKernel.vala:1201 src/Console/AppConsole.vala:299 +#: src/Common/LinuxKernel.vala:1209 src/Console/AppConsole.vala:241 msgid "Latest point update" msgstr "Последнее обновление пунктов" -#: src/Common/LinuxKernel.vala:1209 src/Console/AppConsole.vala:304 -#: src/Console/AppConsole.vala:320 +#: src/Common/LinuxKernel.vala:1217 src/Console/AppConsole.vala:246 +#: src/Console/AppConsole.vala:262 msgid "No updates found" msgstr "Обновлений не найдено" -#: src/Common/LinuxKernel.vala:1218 +#: src/Common/LinuxKernel.vala:1226 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Установить версию ядра %s ? (y/n): " @@ -189,145 +207,134 @@ msgstr "Уведомления отключены" msgid "File not found: %s" msgstr "Файл не найден: %s" -#: src/Console/AppConsole.vala:47 src/Gtk/AppGtk.vala:133 +#: src/Console/AppConsole.vala:43 src/Gtk/AppGtk.vala:139 msgid "Syntax" msgstr "Синтаксис" -#: src/Console/AppConsole.vala:49 +#: src/Console/AppConsole.vala:45 msgid "Commands" msgstr "Комманды" -#: src/Console/AppConsole.vala:51 +#: src/Console/AppConsole.vala:47 msgid "Check for kernel updates" msgstr "Проверить обновления ядра" -#: src/Console/AppConsole.vala:52 +#: src/Console/AppConsole.vala:48 msgid "Check for kernel updates and notify current user" msgstr "Проверить обновления ядра и уведомить текущего пользователя" -#: src/Console/AppConsole.vala:53 -msgid "List all available mainline kernels" +#: src/Console/AppConsole.vala:49 +#, fuzzy +msgid "List available mainline kernels" msgstr "Список всех доступных основных ядер" -#: src/Console/AppConsole.vala:54 +#: src/Console/AppConsole.vala:50 msgid "List installed kernels" msgstr "Список установленных ядер" -#: src/Console/AppConsole.vala:55 +#: src/Console/AppConsole.vala:51 msgid "Install latest mainline kernel" msgstr "Установите последнюю версию основного ядра" -#: src/Console/AppConsole.vala:56 -msgid "Install latest point update for current series" +#: src/Console/AppConsole.vala:52 +#, fuzzy +msgid "Install latest point update in the current major version" msgstr "Установить последнее обновление точек для текущей серии" -#: src/Console/AppConsole.vala:57 -msgid "Install specified mainline kernel" -msgstr "Установить указанную ветку основного ядра" +#: src/Console/AppConsole.vala:53 +#, fuzzy +msgid "Install specified kernels" +msgstr "Установить указанное ядро" -#: src/Console/AppConsole.vala:58 -msgid "Uninstall specified kernel" +#: src/Console/AppConsole.vala:54 +#, fuzzy +msgid "Uninstall specified kernels" msgstr "Установить указанное ядро" -#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:338 +#: src/Console/AppConsole.vala:55 src/Gtk/MainWindow.vala:327 msgid "Uninstall all but the highest installed version" msgstr "Удаление всех установленных версий, кроме самой высокой" -#: src/Console/AppConsole.vala:60 +#: src/Console/AppConsole.vala:56 msgid "Download specified kernels" msgstr "Скачать указанные ядра" -#: src/Console/AppConsole.vala:61 +#: src/Console/AppConsole.vala:57 msgid "Delete cached info about available kernels" msgstr "Удаление кэшированной информации о доступных ядрах" -#: src/Console/AppConsole.vala:63 src/Gtk/AppGtk.vala:135 +#: src/Console/AppConsole.vala:59 src/Gtk/AppGtk.vala:141 msgid "Options" msgstr "Параметры" -#: src/Console/AppConsole.vala:65 +#: src/Console/AppConsole.vala:61 msgid "Include unstable and RC releases" msgstr "Включать нестабильные и релиз-кандидат релизы" -#: src/Console/AppConsole.vala:66 +#: src/Console/AppConsole.vala:62 msgid "Exclude unstable and RC releases" msgstr "Исключить нестабильные и релиз-кандидат релизы" -#: src/Console/AppConsole.vala:67 -msgid "Enable verbose debugging output" -msgstr "Включить подробный отладочный вывод" +#: src/Console/AppConsole.vala:63 +msgid "Verbosity. Set to n if given, or increment." +msgstr "" -#: src/Console/AppConsole.vala:68 +#: src/Console/AppConsole.vala:64 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "Предполагать \"Да\" для всех запросов (неинтерактивный режим)" -#: src/Console/AppConsole.vala:71 -msgid "A version string taken from the output of --list" +#: src/Console/AppConsole.vala:67 +#, fuzzy +msgid "One or more version strings taken from the output of --list" msgstr "Строка версии, взятая из вывода --list" -#: src/Console/AppConsole.vala:72 -msgid "One or more, comma-seperated" -msgstr "Один или несколько, разделенных запятыми" +#: src/Console/AppConsole.vala:68 +msgid "comma, pipe, or colon-seperated, or quoted space seperated" +msgstr "" -#: src/Console/AppConsole.vala:73 -msgid "The currently running kernel will always be ignored" +#: src/Console/AppConsole.vala:69 +#, fuzzy +msgid "Locked kernels and the currently running kernel are ignored" msgstr "Текущее работающее ядро всегда будет игнорироваться" -#: src/Console/AppConsole.vala:163 src/Gtk/AppGtk.vala:119 +#: src/Console/AppConsole.vala:160 src/Gtk/AppGtk.vala:125 msgid "Unknown option" msgstr "Неизвестный параметр" -#: src/Console/AppConsole.vala:164 src/Console/AppConsole.vala:250 -#: src/Console/AppConsole.vala:278 +#: src/Console/AppConsole.vala:161 src/Console/AppConsole.vala:220 msgid "Run" msgstr "Используется" -#: src/Console/AppConsole.vala:164 +#: src/Console/AppConsole.vala:161 msgid "to list all options" msgstr "чтобы перечислить все параметры" -#: src/Console/AppConsole.vala:218 src/Console/AppConsole.vala:258 -msgid "No kernels specified" -msgstr "Ядра не указаны" - -#: src/Console/AppConsole.vala:224 -msgid "Multiple kernels selected for installation. Select only one." -msgstr "Для установки выбрано несколько ядер. Выберите только одно." - -#: src/Console/AppConsole.vala:247 -msgid "Could not find requested version" -msgstr "Не удалось найти запрошенную версию" - -#: src/Console/AppConsole.vala:250 -msgid "and use a version string listed in first column" -msgstr "и использовать строку версии, указанную в первом столбце" - -#: src/Console/AppConsole.vala:277 +#: src/Console/AppConsole.vala:219 msgid "Command not specified" msgstr "Команда не указана" -#: src/Console/AppConsole.vala:278 +#: src/Console/AppConsole.vala:220 msgid "to list all commands" msgstr "чтобы перечислить все команды" -#: src/Console/AppConsole.vala:314 +#: src/Console/AppConsole.vala:256 msgid "Notifications disabled in settings" msgstr "Уведомления отключены в настройках" -#: src/Console/AppConsole.vala:342 +#: src/Console/AppConsole.vala:284 #, c-format msgid "Kernel %s Available" msgstr "Доступно ядро %s" -#: src/Console/AppConsole.vala:346 src/Gtk/SettingsDialog.vala:166 +#: src/Console/AppConsole.vala:288 src/Gtk/SettingsDialog.vala:166 msgid "Show" msgstr "Показать" -#: src/Console/AppConsole.vala:347 src/Gtk/MainWindow.vala:305 +#: src/Console/AppConsole.vala:289 src/Gtk/MainWindow.vala:299 msgid "Install" msgstr "Установить" -#: src/Console/AppConsole.vala:350 +#: src/Console/AppConsole.vala:292 msgid "Previously notified" msgstr "Предварительно уведомлено" @@ -367,90 +374,86 @@ msgstr "Составители документации" msgid "Third Party Inclusions" msgstr "Включая сторонние инструменты" -#: src/Gtk/AppGtk.vala:133 +#: src/Gtk/AppGtk.vala:139 msgid "options" msgstr "параметры" -#: src/Gtk/AppGtk.vala:137 +#: src/Gtk/AppGtk.vala:143 msgid "Print debug information" msgstr "Распечатать отладочную информацию" -#: src/Gtk/AppGtk.vala:138 +#: src/Gtk/AppGtk.vala:144 msgid "Show all options" msgstr "Показать все параметры" -#: src/Gtk/MainWindow.vala:123 -msgid "Kernel" -msgstr "Ядро" - -#: src/Gtk/MainWindow.vala:145 +#: src/Gtk/MainWindow.vala:143 msgid "Lock" msgstr "" -#: src/Gtk/MainWindow.vala:162 +#: src/Gtk/MainWindow.vala:160 msgid "Status" msgstr "Состояние" -#: src/Gtk/MainWindow.vala:174 +#: src/Gtk/MainWindow.vala:172 msgid "Notes" msgstr "Примечания" -#: src/Gtk/MainWindow.vala:315 +#: src/Gtk/MainWindow.vala:307 msgid "Uninstall" msgstr "Удалить" -#: src/Gtk/MainWindow.vala:326 +#: src/Gtk/MainWindow.vala:316 msgid "Changelog, build status, etc" msgstr "Список изменений, статус сборки и т.д" -#: src/Gtk/MainWindow.vala:337 +#: src/Gtk/MainWindow.vala:326 msgid "Uninstall Old" msgstr "Удалить старые" -#: src/Gtk/MainWindow.vala:343 +#: src/Gtk/MainWindow.vala:332 msgid "Reload" msgstr "Перезагрузить" -#: src/Gtk/MainWindow.vala:344 +#: src/Gtk/MainWindow.vala:333 msgid "Delete and reload all cached kernel info" msgstr "" -#: src/Gtk/MainWindow.vala:349 src/Gtk/SettingsDialog.vala:49 +#: src/Gtk/MainWindow.vala:338 src/Gtk/SettingsDialog.vala:49 msgid "Settings" msgstr "Настройки" -#: src/Gtk/MainWindow.vala:354 +#: src/Gtk/MainWindow.vala:343 msgid "About" msgstr "О программе" -#: src/Gtk/MainWindow.vala:359 +#: src/Gtk/MainWindow.vala:348 msgid "Exit" msgstr "Выход" -#: src/Gtk/MainWindow.vala:425 +#: src/Gtk/MainWindow.vala:414 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Программа обновления ядра для дистрибутивов на базе Ubuntu" -#: src/Gtk/MainWindow.vala:426 +#: src/Gtk/MainWindow.vala:415 msgid "Forked" msgstr "Форк" -#: src/Gtk/MainWindow.vala:426 +#: src/Gtk/MainWindow.vala:415 msgid "Original" msgstr "Оригинал" -#: src/Gtk/MainWindow.vala:463 +#: src/Gtk/MainWindow.vala:452 msgid "Updating kernels" msgstr "Обновление ядер" -#: src/Gtk/MainWindow.vala:531 +#: src/Gtk/MainWindow.vala:520 msgid "available" msgstr "доступно" -#: src/Gtk/MainWindow.vala:573 src/Gtk/MainWindow.vala:614 -#: src/Gtk/MainWindow.vala:649 +#: src/Gtk/MainWindow.vala:575 src/Gtk/MainWindow.vala:614 +#: src/Gtk/MainWindow.vala:646 msgid "DONE" -msgstr "ГОТОВО" +msgstr "" #: src/Gtk/ProgressWindow.vala:126 src/Gtk/TerminalWindow.vala:151 msgid "Cancel" diff --git a/po/sv.po b/po/sv.po index 28c95249..87cbafa3 100644 --- a/po/sv.po +++ b/po/sv.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-26 13:36-0400\n" +"POT-Creation-Date: 2023-05-29 06:50-0400\n" "PO-Revision-Date: 2018-01-13 16:56+0100\n" "Last-Translator: Åke Engelbrektson \n" "Language-Team:Swedish\n" @@ -13,77 +13,77 @@ msgstr "" "X-Generator: Poedit 1.8.7.1\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: src/Common/LinuxKernel.vala:105 +#: src/Common/LinuxKernel.vala:104 msgid "Distribution" msgstr "Distribution" -#: src/Common/LinuxKernel.vala:120 +#: src/Common/LinuxKernel.vala:119 msgid "Architecture" msgstr "Arkitektur" -#: src/Common/LinuxKernel.vala:135 +#: src/Common/LinuxKernel.vala:134 msgid "Running kernel" msgstr "Löpande kernel" -#: src/Common/LinuxKernel.vala:257 +#: src/Common/LinuxKernel.vala:250 msgid "loading cached" msgstr "laddar cachelagrat" -#: src/Common/LinuxKernel.vala:269 +#: src/Common/LinuxKernel.vala:262 msgid "queuing download" msgstr "köbildning nedladdning" -#: src/Common/LinuxKernel.vala:290 +#: src/Common/LinuxKernel.vala:283 msgid "Fetching individual kernel indexes" msgstr "Hämta enskilda kernelindex" -#: src/Common/LinuxKernel.vala:306 +#: src/Common/LinuxKernel.vala:299 msgid "loading downloaded" msgstr "laddar nedladdad" -#: src/Common/LinuxKernel.vala:341 +#: src/Common/LinuxKernel.vala:334 msgid "Updating from" msgstr "Uppdatering från" -#: src/Common/LinuxKernel.vala:349 +#: src/Common/LinuxKernel.vala:342 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:352 +#: src/Common/LinuxKernel.vala:345 msgid "FAILED" msgstr "MISSLYCKADES" -#: src/Common/LinuxKernel.vala:405 +#: src/Common/LinuxKernel.vala:409 msgid "Found installed" msgstr "Hittade installerat" -#: src/Common/LinuxKernel.vala:411 +#: src/Common/LinuxKernel.vala:410 msgid "locked" msgstr "" -#: src/Common/LinuxKernel.vala:495 src/Common/LinuxKernel.vala:1031 -#: src/Common/LinuxKernel.vala:1075 src/Common/LinuxKernel.vala:1142 +#: src/Common/LinuxKernel.vala:497 src/Common/LinuxKernel.vala:1060 +#: src/Common/LinuxKernel.vala:1094 src/Common/LinuxKernel.vala:1150 msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:729 src/Gtk/MainWindow.vala:522 -#: src/Gtk/MainWindow.vala:535 +#: src/Common/LinuxKernel.vala:732 src/Gtk/MainWindow.vala:511 +#: src/Gtk/MainWindow.vala:524 msgid "Running" msgstr "Körs" -#: src/Common/LinuxKernel.vala:730 +#: src/Common/LinuxKernel.vala:733 msgid "Installed" msgstr "Installerad" -#: src/Common/LinuxKernel.vala:731 +#: src/Common/LinuxKernel.vala:734 msgid "Invalid" msgstr "Ogiltig" -#: src/Common/LinuxKernel.vala:817 +#: src/Common/LinuxKernel.vala:820 msgid "Packages Available" msgstr "Tillgängliga paket" -#: src/Common/LinuxKernel.vala:823 +#: src/Common/LinuxKernel.vala:826 msgid "Packages Installed" msgstr "Installerade paket" @@ -91,77 +91,95 @@ msgstr "Installerade paket" msgid "File not found" msgstr "Filen kan inte hittas" -#: src/Common/LinuxKernel.vala:942 +#: src/Common/LinuxKernel.vala:945 msgid "Available Kernels" msgstr "Tillgängliga kärnor" -#: src/Common/LinuxKernel.vala:982 +#: src/Common/LinuxKernel.vala:973 +#, fuzzy +msgid "No kernels specified" +msgstr "Kommandot har inte angetts" + +#: src/Common/LinuxKernel.vala:980 src/Gtk/MainWindow.vala:119 +msgid "Kernel" +msgstr "Kärna" + +#: src/Common/LinuxKernel.vala:980 +#, fuzzy +msgid "not found" +msgstr "Filen kan inte hittas" + +#: src/Common/LinuxKernel.vala:1006 msgid "enabled" msgstr "aktiverat" -#: src/Common/LinuxKernel.vala:1006 +#: src/Common/LinuxKernel.vala:1030 msgid "Downloading" msgstr "Ladda ner" -#: src/Common/LinuxKernel.vala:1026 +#: src/Common/LinuxKernel.vala:1055 msgid "is already installed." msgstr "är redan installerat." -#: src/Common/LinuxKernel.vala:1061 +#: src/Common/LinuxKernel.vala:1065 +msgid "download failed." +msgstr "" + +#: src/Common/LinuxKernel.vala:1082 msgid "Uninstalling selected kernels" msgstr "Avinstallera valda kärnor" -#: src/Common/LinuxKernel.vala:1067 +#: src/Common/LinuxKernel.vala:1086 msgid "requested" msgstr "begärd" -#: src/Common/LinuxKernel.vala:1070 +#: src/Common/LinuxKernel.vala:1089 msgid "not uninstalling the currently running kernel" msgstr "Avinstallera inte den kärna som körs, för närvarande" -#: src/Common/LinuxKernel.vala:1091 +#: src/Common/LinuxKernel.vala:1102 msgid "found" msgstr "grunda" -#: src/Common/LinuxKernel.vala:1094 +#: src/Common/LinuxKernel.vala:1107 msgid "No packages to un-install!" msgstr "Inga paket att avinstallera!" -#: src/Common/LinuxKernel.vala:1138 +#: src/Common/LinuxKernel.vala:1146 #, fuzzy msgid "is the highest installed version." msgstr "Avinstallera alla utom den högsta installerade versionen" -#: src/Common/LinuxKernel.vala:1151 +#: src/Common/LinuxKernel.vala:1159 msgid "Could not find running kernel in list" msgstr "Det gick inte att hitta kernel som körs i listan" -#: src/Common/LinuxKernel.vala:1156 +#: src/Common/LinuxKernel.vala:1164 msgid "Could not find any kernels to uninstall" msgstr "Det gick inte att hitta några kärnor att avinstallera" -#: src/Common/LinuxKernel.vala:1164 +#: src/Common/LinuxKernel.vala:1172 msgid "The following kernels will be uninstalled" msgstr "Följande kärnor kommer att avinstalleras" -#: src/Common/LinuxKernel.vala:1168 +#: src/Common/LinuxKernel.vala:1176 msgid "Continue ?" msgstr "Fortsätta?" -#: src/Common/LinuxKernel.vala:1190 src/Console/AppConsole.vala:292 +#: src/Common/LinuxKernel.vala:1198 src/Console/AppConsole.vala:234 msgid "Latest update" msgstr "Senaste uppdatering" -#: src/Common/LinuxKernel.vala:1201 src/Console/AppConsole.vala:299 +#: src/Common/LinuxKernel.vala:1209 src/Console/AppConsole.vala:241 msgid "Latest point update" msgstr "Senaste punktuppdatering" -#: src/Common/LinuxKernel.vala:1209 src/Console/AppConsole.vala:304 -#: src/Console/AppConsole.vala:320 +#: src/Common/LinuxKernel.vala:1217 src/Console/AppConsole.vala:246 +#: src/Console/AppConsole.vala:262 msgid "No updates found" msgstr "Inga uppdateringar hittades" -#: src/Common/LinuxKernel.vala:1218 +#: src/Common/LinuxKernel.vala:1226 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Installera kärnversion %s ? (j/n):" @@ -188,145 +206,134 @@ msgstr "Meddelanden är inaktiverade" msgid "File not found: %s" msgstr "Filen hittades inte: %s" -#: src/Console/AppConsole.vala:47 src/Gtk/AppGtk.vala:133 +#: src/Console/AppConsole.vala:43 src/Gtk/AppGtk.vala:139 msgid "Syntax" msgstr "Syntax" -#: src/Console/AppConsole.vala:49 +#: src/Console/AppConsole.vala:45 msgid "Commands" msgstr "Kommandon" -#: src/Console/AppConsole.vala:51 +#: src/Console/AppConsole.vala:47 msgid "Check for kernel updates" msgstr "Sök efter kärnuppdateringar" -#: src/Console/AppConsole.vala:52 +#: src/Console/AppConsole.vala:48 msgid "Check for kernel updates and notify current user" msgstr "Sök efter kärnuppdateringar och meddela aktuell användare" -#: src/Console/AppConsole.vala:53 -msgid "List all available mainline kernels" +#: src/Console/AppConsole.vala:49 +#, fuzzy +msgid "List available mainline kernels" msgstr "Lista alla tillgängliga kärnor" -#: src/Console/AppConsole.vala:54 +#: src/Console/AppConsole.vala:50 msgid "List installed kernels" msgstr "Lista installerade kärnor" -#: src/Console/AppConsole.vala:55 +#: src/Console/AppConsole.vala:51 msgid "Install latest mainline kernel" msgstr "Installera senaste mainline-kärnan" -#: src/Console/AppConsole.vala:56 -msgid "Install latest point update for current series" +#: src/Console/AppConsole.vala:52 +#, fuzzy +msgid "Install latest point update in the current major version" msgstr "Installera senaste punktuppdateringen för aktuella serier" -#: src/Console/AppConsole.vala:57 -msgid "Install specified mainline kernel" -msgstr "Installera angiven huvudkärna" +#: src/Console/AppConsole.vala:53 +#, fuzzy +msgid "Install specified kernels" +msgstr "Avinstallera angiven kärna" -#: src/Console/AppConsole.vala:58 -msgid "Uninstall specified kernel" +#: src/Console/AppConsole.vala:54 +#, fuzzy +msgid "Uninstall specified kernels" msgstr "Avinstallera angiven kärna" -#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:338 +#: src/Console/AppConsole.vala:55 src/Gtk/MainWindow.vala:327 msgid "Uninstall all but the highest installed version" msgstr "Avinstallera alla utom den högsta installerade versionen" -#: src/Console/AppConsole.vala:60 +#: src/Console/AppConsole.vala:56 msgid "Download specified kernels" msgstr "Ladda ner angivna kärnor" -#: src/Console/AppConsole.vala:61 +#: src/Console/AppConsole.vala:57 msgid "Delete cached info about available kernels" msgstr "Ta bort cachelagrad information om tillgängliga kärnor" -#: src/Console/AppConsole.vala:63 src/Gtk/AppGtk.vala:135 +#: src/Console/AppConsole.vala:59 src/Gtk/AppGtk.vala:141 msgid "Options" msgstr "Alternativ" -#: src/Console/AppConsole.vala:65 +#: src/Console/AppConsole.vala:61 msgid "Include unstable and RC releases" msgstr "Inkludera instabila utgåvor och RC-utgåvor" -#: src/Console/AppConsole.vala:66 +#: src/Console/AppConsole.vala:62 msgid "Exclude unstable and RC releases" msgstr "Exkludera instabila utgåvor och RC-utgåvor" -#: src/Console/AppConsole.vala:67 -msgid "Enable verbose debugging output" -msgstr "Aktivera utförliga felsökningsutdata" +#: src/Console/AppConsole.vala:63 +msgid "Verbosity. Set to n if given, or increment." +msgstr "" -#: src/Console/AppConsole.vala:68 +#: src/Console/AppConsole.vala:64 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "Antag Ja för alla prompter (icke-interaktivt läge)" -#: src/Console/AppConsole.vala:71 -msgid "A version string taken from the output of --list" +#: src/Console/AppConsole.vala:67 +#, fuzzy +msgid "One or more version strings taken from the output of --list" msgstr "En versionssträng som hämtas från utdata från --list" -#: src/Console/AppConsole.vala:72 -msgid "One or more, comma-seperated" -msgstr "En eller flera, kommaseparerade" +#: src/Console/AppConsole.vala:68 +msgid "comma, pipe, or colon-seperated, or quoted space seperated" +msgstr "" -#: src/Console/AppConsole.vala:73 -msgid "The currently running kernel will always be ignored" +#: src/Console/AppConsole.vala:69 +#, fuzzy +msgid "Locked kernels and the currently running kernel are ignored" msgstr "Den kärna som för närvarande körs ignoreras alltid" -#: src/Console/AppConsole.vala:163 src/Gtk/AppGtk.vala:119 +#: src/Console/AppConsole.vala:160 src/Gtk/AppGtk.vala:125 msgid "Unknown option" msgstr "Okänt alternativ" -#: src/Console/AppConsole.vala:164 src/Console/AppConsole.vala:250 -#: src/Console/AppConsole.vala:278 +#: src/Console/AppConsole.vala:161 src/Console/AppConsole.vala:220 msgid "Run" msgstr "Kör" -#: src/Console/AppConsole.vala:164 +#: src/Console/AppConsole.vala:161 msgid "to list all options" msgstr "för att lista alla alternativ" -#: src/Console/AppConsole.vala:218 src/Console/AppConsole.vala:258 -msgid "No kernels specified" -msgstr "Inga kärnor angivna" - -#: src/Console/AppConsole.vala:224 -msgid "Multiple kernels selected for installation. Select only one." -msgstr "Flera kärnor valda för installation. Välj endast en." - -#: src/Console/AppConsole.vala:247 -msgid "Could not find requested version" -msgstr "Kunde inte hitta efterfrågad version" - -#: src/Console/AppConsole.vala:250 -msgid "and use a version string listed in first column" -msgstr "och använd en versionssträng som anges i första kolumnen" - -#: src/Console/AppConsole.vala:277 +#: src/Console/AppConsole.vala:219 msgid "Command not specified" msgstr "Kommandot har inte angetts" -#: src/Console/AppConsole.vala:278 +#: src/Console/AppConsole.vala:220 msgid "to list all commands" msgstr "för att lista alla kommandon" -#: src/Console/AppConsole.vala:314 +#: src/Console/AppConsole.vala:256 msgid "Notifications disabled in settings" msgstr "Meddelanden inaktiverade i inställningarna" -#: src/Console/AppConsole.vala:342 +#: src/Console/AppConsole.vala:284 #, c-format msgid "Kernel %s Available" msgstr "Kernel %s tillgängliga" -#: src/Console/AppConsole.vala:346 src/Gtk/SettingsDialog.vala:166 +#: src/Console/AppConsole.vala:288 src/Gtk/SettingsDialog.vala:166 msgid "Show" msgstr "Visa" -#: src/Console/AppConsole.vala:347 src/Gtk/MainWindow.vala:305 +#: src/Console/AppConsole.vala:289 src/Gtk/MainWindow.vala:299 msgid "Install" msgstr "Installera" -#: src/Console/AppConsole.vala:350 +#: src/Console/AppConsole.vala:292 msgid "Previously notified" msgstr "Tidigare anmält" @@ -366,90 +373,86 @@ msgstr "Dokumentalister" msgid "Third Party Inclusions" msgstr "Tredjepartsverktyg" -#: src/Gtk/AppGtk.vala:133 +#: src/Gtk/AppGtk.vala:139 msgid "options" msgstr "alternativ" -#: src/Gtk/AppGtk.vala:137 +#: src/Gtk/AppGtk.vala:143 msgid "Print debug information" msgstr "Skriv ut felsökningsinformation" -#: src/Gtk/AppGtk.vala:138 +#: src/Gtk/AppGtk.vala:144 msgid "Show all options" msgstr "Visa alla alternativ" -#: src/Gtk/MainWindow.vala:123 -msgid "Kernel" -msgstr "Kärna" - -#: src/Gtk/MainWindow.vala:145 +#: src/Gtk/MainWindow.vala:143 msgid "Lock" msgstr "" -#: src/Gtk/MainWindow.vala:162 +#: src/Gtk/MainWindow.vala:160 msgid "Status" msgstr "Status" -#: src/Gtk/MainWindow.vala:174 +#: src/Gtk/MainWindow.vala:172 msgid "Notes" msgstr "Anteckningar" -#: src/Gtk/MainWindow.vala:315 +#: src/Gtk/MainWindow.vala:307 msgid "Uninstall" msgstr "Avinstallera" -#: src/Gtk/MainWindow.vala:326 +#: src/Gtk/MainWindow.vala:316 msgid "Changelog, build status, etc" msgstr "" -#: src/Gtk/MainWindow.vala:337 +#: src/Gtk/MainWindow.vala:326 msgid "Uninstall Old" msgstr "Avinstallera Gamla" -#: src/Gtk/MainWindow.vala:343 +#: src/Gtk/MainWindow.vala:332 msgid "Reload" msgstr "Reload" -#: src/Gtk/MainWindow.vala:344 +#: src/Gtk/MainWindow.vala:333 msgid "Delete and reload all cached kernel info" msgstr "" -#: src/Gtk/MainWindow.vala:349 src/Gtk/SettingsDialog.vala:49 +#: src/Gtk/MainWindow.vala:338 src/Gtk/SettingsDialog.vala:49 msgid "Settings" msgstr "Inställningar" -#: src/Gtk/MainWindow.vala:354 +#: src/Gtk/MainWindow.vala:343 msgid "About" msgstr "Om" -#: src/Gtk/MainWindow.vala:359 +#: src/Gtk/MainWindow.vala:348 msgid "Exit" msgstr "Utgång" -#: src/Gtk/MainWindow.vala:425 +#: src/Gtk/MainWindow.vala:414 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Kärnuppgraderingsverktyg för Ubuntu-baserade distributioner" -#: src/Gtk/MainWindow.vala:426 +#: src/Gtk/MainWindow.vala:415 msgid "Forked" msgstr "Kluven" -#: src/Gtk/MainWindow.vala:426 +#: src/Gtk/MainWindow.vala:415 msgid "Original" msgstr "Original" -#: src/Gtk/MainWindow.vala:463 +#: src/Gtk/MainWindow.vala:452 msgid "Updating kernels" msgstr "Uppdatera kärnor" -#: src/Gtk/MainWindow.vala:531 +#: src/Gtk/MainWindow.vala:520 msgid "available" msgstr "tillgänglig" -#: src/Gtk/MainWindow.vala:573 src/Gtk/MainWindow.vala:614 -#: src/Gtk/MainWindow.vala:649 +#: src/Gtk/MainWindow.vala:575 src/Gtk/MainWindow.vala:614 +#: src/Gtk/MainWindow.vala:646 msgid "DONE" -msgstr "FÄRDIG" +msgstr "" #: src/Gtk/ProgressWindow.vala:126 src/Gtk/TerminalWindow.vala:151 msgid "Cancel" diff --git a/po/tr.po b/po/tr.po index 4e3a28e1..0fd5a0a2 100644 --- a/po/tr.po +++ b/po/tr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-26 13:36-0400\n" +"POT-Creation-Date: 2023-05-29 06:50-0400\n" "PO-Revision-Date: 2022-08-06 16:48+0300\n" "Last-Translator: Sabri Ünal \n" "Language-Team: Turkish\n" @@ -13,77 +13,77 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Poedit 3.1.1\n" -#: src/Common/LinuxKernel.vala:105 +#: src/Common/LinuxKernel.vala:104 msgid "Distribution" msgstr "Dağıtım" -#: src/Common/LinuxKernel.vala:120 +#: src/Common/LinuxKernel.vala:119 msgid "Architecture" msgstr "Sistem mimarisi" -#: src/Common/LinuxKernel.vala:135 +#: src/Common/LinuxKernel.vala:134 msgid "Running kernel" msgstr "Çalışan çekirdek" -#: src/Common/LinuxKernel.vala:257 +#: src/Common/LinuxKernel.vala:250 msgid "loading cached" msgstr "önbelleğe alınmış yükleme" -#: src/Common/LinuxKernel.vala:269 +#: src/Common/LinuxKernel.vala:262 msgid "queuing download" msgstr "kuyruğa alma indirme" -#: src/Common/LinuxKernel.vala:290 +#: src/Common/LinuxKernel.vala:283 msgid "Fetching individual kernel indexes" msgstr "Tek tek çekirdek dizinlerini alma" -#: src/Common/LinuxKernel.vala:306 +#: src/Common/LinuxKernel.vala:299 msgid "loading downloaded" msgstr "indirilen yükleniyor" -#: src/Common/LinuxKernel.vala:341 +#: src/Common/LinuxKernel.vala:334 msgid "Updating from" msgstr "Şuradan güncelleniyor" -#: src/Common/LinuxKernel.vala:349 +#: src/Common/LinuxKernel.vala:342 msgid "OK" msgstr "Tamam" -#: src/Common/LinuxKernel.vala:352 +#: src/Common/LinuxKernel.vala:345 msgid "FAILED" msgstr "BAŞARISIZ" -#: src/Common/LinuxKernel.vala:405 +#: src/Common/LinuxKernel.vala:409 msgid "Found installed" msgstr "Yüklü bulundu" -#: src/Common/LinuxKernel.vala:411 +#: src/Common/LinuxKernel.vala:410 msgid "locked" msgstr "" -#: src/Common/LinuxKernel.vala:495 src/Common/LinuxKernel.vala:1031 -#: src/Common/LinuxKernel.vala:1075 src/Common/LinuxKernel.vala:1142 +#: src/Common/LinuxKernel.vala:497 src/Common/LinuxKernel.vala:1060 +#: src/Common/LinuxKernel.vala:1094 src/Common/LinuxKernel.vala:1150 msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:729 src/Gtk/MainWindow.vala:522 -#: src/Gtk/MainWindow.vala:535 +#: src/Common/LinuxKernel.vala:732 src/Gtk/MainWindow.vala:511 +#: src/Gtk/MainWindow.vala:524 msgid "Running" msgstr "Çalışıyor" -#: src/Common/LinuxKernel.vala:730 +#: src/Common/LinuxKernel.vala:733 msgid "Installed" msgstr "Kurulu" -#: src/Common/LinuxKernel.vala:731 +#: src/Common/LinuxKernel.vala:734 msgid "Invalid" msgstr "Geçersiz" -#: src/Common/LinuxKernel.vala:817 +#: src/Common/LinuxKernel.vala:820 msgid "Packages Available" msgstr "Mevcut Paketler" -#: src/Common/LinuxKernel.vala:823 +#: src/Common/LinuxKernel.vala:826 msgid "Packages Installed" msgstr "Kurulu Paketler" @@ -91,78 +91,96 @@ msgstr "Kurulu Paketler" msgid "File not found" msgstr "Dosya bulunamadı" -#: src/Common/LinuxKernel.vala:942 +#: src/Common/LinuxKernel.vala:945 msgid "Available Kernels" msgstr "Mevcut Çekirdekler" -#: src/Common/LinuxKernel.vala:982 +#: src/Common/LinuxKernel.vala:973 +#, fuzzy +msgid "No kernels specified" +msgstr "Komut belirtilmedi" + +#: src/Common/LinuxKernel.vala:980 src/Gtk/MainWindow.vala:119 +msgid "Kernel" +msgstr "Çekirdek" + +#: src/Common/LinuxKernel.vala:980 +#, fuzzy +msgid "not found" +msgstr "Dosya bulunamadı" + +#: src/Common/LinuxKernel.vala:1006 msgid "enabled" msgstr "etkin" -#: src/Common/LinuxKernel.vala:1006 +#: src/Common/LinuxKernel.vala:1030 msgid "Downloading" msgstr "Indiriyor" -#: src/Common/LinuxKernel.vala:1026 +#: src/Common/LinuxKernel.vala:1055 msgid "is already installed." msgstr "zaten yüklü." -#: src/Common/LinuxKernel.vala:1061 +#: src/Common/LinuxKernel.vala:1065 +msgid "download failed." +msgstr "" + +#: src/Common/LinuxKernel.vala:1082 msgid "Uninstalling selected kernels" msgstr "Seçili çekirdekleri kaldırma" -#: src/Common/LinuxKernel.vala:1067 +#: src/Common/LinuxKernel.vala:1086 msgid "requested" msgstr "istenen" -#: src/Common/LinuxKernel.vala:1070 +#: src/Common/LinuxKernel.vala:1089 msgid "not uninstalling the currently running kernel" msgstr "çalışmakta olan çekirdeğin kaldırılmaması" -#: src/Common/LinuxKernel.vala:1091 +#: src/Common/LinuxKernel.vala:1102 msgid "found" msgstr "kurmak" -#: src/Common/LinuxKernel.vala:1094 +#: src/Common/LinuxKernel.vala:1107 msgid "No packages to un-install!" msgstr "Kaldırılacak paket yok!" -#: src/Common/LinuxKernel.vala:1138 +#: src/Common/LinuxKernel.vala:1146 #, fuzzy msgid "is the highest installed version." msgstr "En yüksek yüklü sürüm dışındaki tüm sürümleri kaldırın" -#: src/Common/LinuxKernel.vala:1151 +#: src/Common/LinuxKernel.vala:1159 msgid "Could not find running kernel in list" msgstr "Listede çalışan çekirdek bulunamadı" -#: src/Common/LinuxKernel.vala:1156 +#: src/Common/LinuxKernel.vala:1164 msgid "Could not find any kernels to uninstall" msgstr "Kaldırılacak çekirdek bulunamadı" -#: src/Common/LinuxKernel.vala:1164 +#: src/Common/LinuxKernel.vala:1172 msgid "The following kernels will be uninstalled" msgstr "Aşağıdaki çekirdekler kaldırılacaktır" -#: src/Common/LinuxKernel.vala:1168 +#: src/Common/LinuxKernel.vala:1176 msgid "Continue ?" msgstr "Devam edilsin mi?" -#: src/Common/LinuxKernel.vala:1190 src/Console/AppConsole.vala:292 +#: src/Common/LinuxKernel.vala:1198 src/Console/AppConsole.vala:234 msgid "Latest update" msgstr "Son güncelleme" # Point burada point release anlamında kullanılıyor. Örneğin 5.10.x sayısının en sonundaki x rakamı point release/nokta sürüm oluyor. -#: src/Common/LinuxKernel.vala:1201 src/Console/AppConsole.vala:299 +#: src/Common/LinuxKernel.vala:1209 src/Console/AppConsole.vala:241 msgid "Latest point update" msgstr "Son nokta güncellemesi" -#: src/Common/LinuxKernel.vala:1209 src/Console/AppConsole.vala:304 -#: src/Console/AppConsole.vala:320 +#: src/Common/LinuxKernel.vala:1217 src/Console/AppConsole.vala:246 +#: src/Console/AppConsole.vala:262 msgid "No updates found" msgstr "Güncelleme bulunamadı" -#: src/Common/LinuxKernel.vala:1218 +#: src/Common/LinuxKernel.vala:1226 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Linux Çekirdek Sürümü %s Kurulsun mu? (e/h): " @@ -190,145 +208,134 @@ msgstr "Bildirimler devre dışı bırakılmış" msgid "File not found: %s" msgstr "Dosya bulunamadı: %s" -#: src/Console/AppConsole.vala:47 src/Gtk/AppGtk.vala:133 +#: src/Console/AppConsole.vala:43 src/Gtk/AppGtk.vala:139 msgid "Syntax" msgstr "Sözdizimi" -#: src/Console/AppConsole.vala:49 +#: src/Console/AppConsole.vala:45 msgid "Commands" msgstr "Komutlar" -#: src/Console/AppConsole.vala:51 +#: src/Console/AppConsole.vala:47 msgid "Check for kernel updates" msgstr "Çekirdek güncellemelerini kontrol et" -#: src/Console/AppConsole.vala:52 +#: src/Console/AppConsole.vala:48 msgid "Check for kernel updates and notify current user" msgstr "Çekirdek güncellemelerini kontrol et ve mevcut kullanıcıyı uyar" -#: src/Console/AppConsole.vala:53 -msgid "List all available mainline kernels" +#: src/Console/AppConsole.vala:49 +#, fuzzy +msgid "List available mainline kernels" msgstr "Tüm mainline çekirdeklerini listele" -#: src/Console/AppConsole.vala:54 +#: src/Console/AppConsole.vala:50 msgid "List installed kernels" msgstr "Kurulu çekirdekleri listele" -#: src/Console/AppConsole.vala:55 +#: src/Console/AppConsole.vala:51 msgid "Install latest mainline kernel" msgstr "En son mainline çekirdeğini kur" -#: src/Console/AppConsole.vala:56 -msgid "Install latest point update for current series" +#: src/Console/AppConsole.vala:52 +#, fuzzy +msgid "Install latest point update in the current major version" msgstr "Mevcut çekirdek serisi için en son nokta güncellemesini kur" -#: src/Console/AppConsole.vala:57 -msgid "Install specified mainline kernel" -msgstr "Belirtilen mainline çekirdeğini kur" +#: src/Console/AppConsole.vala:53 +#, fuzzy +msgid "Install specified kernels" +msgstr "Belirtilen çekirdeğini kaldır" -#: src/Console/AppConsole.vala:58 -msgid "Uninstall specified kernel" +#: src/Console/AppConsole.vala:54 +#, fuzzy +msgid "Uninstall specified kernels" msgstr "Belirtilen çekirdeğini kaldır" -#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:338 +#: src/Console/AppConsole.vala:55 src/Gtk/MainWindow.vala:327 msgid "Uninstall all but the highest installed version" msgstr "En yüksek yüklü sürüm dışındaki tüm sürümleri kaldırın" -#: src/Console/AppConsole.vala:60 +#: src/Console/AppConsole.vala:56 msgid "Download specified kernels" msgstr "Belirtilen çekirdekleri indir" -#: src/Console/AppConsole.vala:61 +#: src/Console/AppConsole.vala:57 msgid "Delete cached info about available kernels" msgstr "Kullanılabilir çekirdekler hakkında önbelleğe alınmış bilgileri silme" -#: src/Console/AppConsole.vala:63 src/Gtk/AppGtk.vala:135 +#: src/Console/AppConsole.vala:59 src/Gtk/AppGtk.vala:141 msgid "Options" msgstr "Seçenekler" -#: src/Console/AppConsole.vala:65 +#: src/Console/AppConsole.vala:61 msgid "Include unstable and RC releases" msgstr "Kararsız ve RC sürümleri dahil et" -#: src/Console/AppConsole.vala:66 +#: src/Console/AppConsole.vala:62 msgid "Exclude unstable and RC releases" msgstr "Kararsız ve RC sürümlerini hariç tutma" -#: src/Console/AppConsole.vala:67 -msgid "Enable verbose debugging output" -msgstr "Ayrıntılı hata ayıklama çıktısını etkinleştir" +#: src/Console/AppConsole.vala:63 +msgid "Verbosity. Set to n if given, or increment." +msgstr "" -#: src/Console/AppConsole.vala:68 +#: src/Console/AppConsole.vala:64 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "Tüm istemler için Evet'i kabul edin (etkileşimsiz kip)" -#: src/Console/AppConsole.vala:71 -msgid "A version string taken from the output of --list" +#: src/Console/AppConsole.vala:67 +#, fuzzy +msgid "One or more version strings taken from the output of --list" msgstr "--list çıktısından alınan sürüm dizgesi" -#: src/Console/AppConsole.vala:72 -msgid "One or more, comma-seperated" -msgstr "Bir veya daha fazla, virgülle ayrılmış" +#: src/Console/AppConsole.vala:68 +msgid "comma, pipe, or colon-seperated, or quoted space seperated" +msgstr "" -#: src/Console/AppConsole.vala:73 -msgid "The currently running kernel will always be ignored" +#: src/Console/AppConsole.vala:69 +#, fuzzy +msgid "Locked kernels and the currently running kernel are ignored" msgstr "Şu anda çalışan çekirdek her zaman yoksayılır" -#: src/Console/AppConsole.vala:163 src/Gtk/AppGtk.vala:119 +#: src/Console/AppConsole.vala:160 src/Gtk/AppGtk.vala:125 msgid "Unknown option" msgstr "Bilinmeyen seçenek" -#: src/Console/AppConsole.vala:164 src/Console/AppConsole.vala:250 -#: src/Console/AppConsole.vala:278 +#: src/Console/AppConsole.vala:161 src/Console/AppConsole.vala:220 msgid "Run" msgstr "Çalıştır" -#: src/Console/AppConsole.vala:164 +#: src/Console/AppConsole.vala:161 msgid "to list all options" msgstr "tüm seçenekleri listele" -#: src/Console/AppConsole.vala:218 src/Console/AppConsole.vala:258 -msgid "No kernels specified" -msgstr "Çekirdek belirtilmedi" - -#: src/Console/AppConsole.vala:224 -msgid "Multiple kernels selected for installation. Select only one." -msgstr "Kurulum için birden fazla çekirdek seçildi. Sadece bir tane seçiniz." - -#: src/Console/AppConsole.vala:247 -msgid "Could not find requested version" -msgstr "İstenen sürüm bulunamadı" - -#: src/Console/AppConsole.vala:250 -msgid "and use a version string listed in first column" -msgstr "ve ilk sütunda listelenen bir sürüm dizgesini kullanın" - -#: src/Console/AppConsole.vala:277 +#: src/Console/AppConsole.vala:219 msgid "Command not specified" msgstr "Komut belirtilmedi" -#: src/Console/AppConsole.vala:278 +#: src/Console/AppConsole.vala:220 msgid "to list all commands" msgstr "tüm komutları listele" -#: src/Console/AppConsole.vala:314 +#: src/Console/AppConsole.vala:256 msgid "Notifications disabled in settings" msgstr "Ayarlarda devre dışı bırakılan bildirimler" -#: src/Console/AppConsole.vala:342 +#: src/Console/AppConsole.vala:284 #, c-format msgid "Kernel %s Available" msgstr "Çekirdek %s Kullanılabilir" -#: src/Console/AppConsole.vala:346 src/Gtk/SettingsDialog.vala:166 +#: src/Console/AppConsole.vala:288 src/Gtk/SettingsDialog.vala:166 msgid "Show" msgstr "Göster" -#: src/Console/AppConsole.vala:347 src/Gtk/MainWindow.vala:305 +#: src/Console/AppConsole.vala:289 src/Gtk/MainWindow.vala:299 msgid "Install" msgstr "Kur" -#: src/Console/AppConsole.vala:350 +#: src/Console/AppConsole.vala:292 msgid "Previously notified" msgstr "Daha önce bildirilmiş" @@ -368,90 +375,86 @@ msgstr "Belgelendirenler" msgid "Third Party Inclusions" msgstr "Üçüncü Taraf Eklemeler" -#: src/Gtk/AppGtk.vala:133 +#: src/Gtk/AppGtk.vala:139 msgid "options" msgstr "seçenekler" -#: src/Gtk/AppGtk.vala:137 +#: src/Gtk/AppGtk.vala:143 msgid "Print debug information" msgstr "Hata ayıklama bilgisini yazdır" -#: src/Gtk/AppGtk.vala:138 +#: src/Gtk/AppGtk.vala:144 msgid "Show all options" msgstr "Tüm seçenekleri göster" -#: src/Gtk/MainWindow.vala:123 -msgid "Kernel" -msgstr "Çekirdek" - -#: src/Gtk/MainWindow.vala:145 +#: src/Gtk/MainWindow.vala:143 msgid "Lock" msgstr "" -#: src/Gtk/MainWindow.vala:162 +#: src/Gtk/MainWindow.vala:160 msgid "Status" msgstr "Durum" -#: src/Gtk/MainWindow.vala:174 +#: src/Gtk/MainWindow.vala:172 msgid "Notes" msgstr "Notlar" -#: src/Gtk/MainWindow.vala:315 +#: src/Gtk/MainWindow.vala:307 msgid "Uninstall" msgstr "Kaldır" -#: src/Gtk/MainWindow.vala:326 +#: src/Gtk/MainWindow.vala:316 msgid "Changelog, build status, etc" msgstr "" -#: src/Gtk/MainWindow.vala:337 +#: src/Gtk/MainWindow.vala:326 msgid "Uninstall Old" msgstr "Eskileri Kaldır" -#: src/Gtk/MainWindow.vala:343 +#: src/Gtk/MainWindow.vala:332 msgid "Reload" msgstr "Arjantin" -#: src/Gtk/MainWindow.vala:344 +#: src/Gtk/MainWindow.vala:333 msgid "Delete and reload all cached kernel info" msgstr "" -#: src/Gtk/MainWindow.vala:349 src/Gtk/SettingsDialog.vala:49 +#: src/Gtk/MainWindow.vala:338 src/Gtk/SettingsDialog.vala:49 msgid "Settings" msgstr "Ayarlar" -#: src/Gtk/MainWindow.vala:354 +#: src/Gtk/MainWindow.vala:343 msgid "About" msgstr "Hakkında" -#: src/Gtk/MainWindow.vala:359 +#: src/Gtk/MainWindow.vala:348 msgid "Exit" msgstr "Çıkış" -#: src/Gtk/MainWindow.vala:425 +#: src/Gtk/MainWindow.vala:414 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Ubuntu tabanlı dağıtımlar için çekirdek güncelleme aracı" -#: src/Gtk/MainWindow.vala:426 +#: src/Gtk/MainWindow.vala:415 msgid "Forked" msgstr "Çatallandı" -#: src/Gtk/MainWindow.vala:426 +#: src/Gtk/MainWindow.vala:415 msgid "Original" msgstr "Özgün" -#: src/Gtk/MainWindow.vala:463 +#: src/Gtk/MainWindow.vala:452 msgid "Updating kernels" msgstr "Çekirdekleri güncelleme" -#: src/Gtk/MainWindow.vala:531 +#: src/Gtk/MainWindow.vala:520 msgid "available" msgstr "mevcut" -#: src/Gtk/MainWindow.vala:573 src/Gtk/MainWindow.vala:614 -#: src/Gtk/MainWindow.vala:649 +#: src/Gtk/MainWindow.vala:575 src/Gtk/MainWindow.vala:614 +#: src/Gtk/MainWindow.vala:646 msgid "DONE" -msgstr "YAPILMIŞ" +msgstr "" #: src/Gtk/ProgressWindow.vala:126 src/Gtk/TerminalWindow.vala:151 msgid "Cancel" diff --git a/po/uk.po b/po/uk.po index beea9683..8e3e3514 100644 --- a/po/uk.po +++ b/po/uk.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-25 23:23-0400\n" +"POT-Creation-Date: 2023-05-29 06:50-0400\n" "PO-Revision-Date: 2019-07-25 11:00+0300\n" "Last-Translator: Serhii Golovko \n" "Language-Team: Ukranian\n" @@ -13,77 +13,77 @@ msgstr "" "X-Launchpad-Export-Date: 2016-12-13 11:48+0000\n" "X-Generator: Poedit 2.2.1\n" -#: src/Common/LinuxKernel.vala:105 +#: src/Common/LinuxKernel.vala:104 msgid "Distribution" msgstr "Дистрибутив" -#: src/Common/LinuxKernel.vala:120 +#: src/Common/LinuxKernel.vala:119 msgid "Architecture" msgstr "Системна архитектура" -#: src/Common/LinuxKernel.vala:135 +#: src/Common/LinuxKernel.vala:134 msgid "Running kernel" msgstr "Запуск ядра" -#: src/Common/LinuxKernel.vala:257 +#: src/Common/LinuxKernel.vala:250 msgid "loading cached" msgstr "Завантаження кешованого" -#: src/Common/LinuxKernel.vala:269 +#: src/Common/LinuxKernel.vala:262 msgid "queuing download" msgstr "Черга завантаження" -#: src/Common/LinuxKernel.vala:290 +#: src/Common/LinuxKernel.vala:283 msgid "Fetching individual kernel indexes" msgstr "Вибірка окремих індексів ядра" -#: src/Common/LinuxKernel.vala:306 +#: src/Common/LinuxKernel.vala:299 msgid "loading downloaded" msgstr "Завантаження завантаженого" -#: src/Common/LinuxKernel.vala:341 +#: src/Common/LinuxKernel.vala:334 msgid "Updating from" msgstr "Оновлення з" -#: src/Common/LinuxKernel.vala:349 +#: src/Common/LinuxKernel.vala:342 msgid "OK" msgstr "Добре" -#: src/Common/LinuxKernel.vala:352 +#: src/Common/LinuxKernel.vala:345 msgid "FAILED" msgstr "НЕ ВДАЛОСЯ" -#: src/Common/LinuxKernel.vala:405 +#: src/Common/LinuxKernel.vala:409 msgid "Found installed" msgstr "Знайдено встановленим" -#: src/Common/LinuxKernel.vala:411 +#: src/Common/LinuxKernel.vala:410 msgid "locked" msgstr "заблокований" -#: src/Common/LinuxKernel.vala:495 src/Common/LinuxKernel.vala:1031 -#: src/Common/LinuxKernel.vala:1075 src/Common/LinuxKernel.vala:1142 +#: src/Common/LinuxKernel.vala:497 src/Common/LinuxKernel.vala:1060 +#: src/Common/LinuxKernel.vala:1094 src/Common/LinuxKernel.vala:1150 msgid "is locked." msgstr "заблоковано." -#: src/Common/LinuxKernel.vala:729 src/Gtk/MainWindow.vala:527 -#: src/Gtk/MainWindow.vala:540 +#: src/Common/LinuxKernel.vala:732 src/Gtk/MainWindow.vala:511 +#: src/Gtk/MainWindow.vala:524 msgid "Running" msgstr "Використовується" -#: src/Common/LinuxKernel.vala:730 +#: src/Common/LinuxKernel.vala:733 msgid "Installed" msgstr "Встановлено" -#: src/Common/LinuxKernel.vala:731 +#: src/Common/LinuxKernel.vala:734 msgid "Invalid" msgstr "Інвалід" -#: src/Common/LinuxKernel.vala:817 +#: src/Common/LinuxKernel.vala:820 msgid "Packages Available" msgstr "Доступні пакети" -#: src/Common/LinuxKernel.vala:823 +#: src/Common/LinuxKernel.vala:826 msgid "Packages Installed" msgstr "Встановлені пакети" @@ -91,77 +91,95 @@ msgstr "Встановлені пакети" msgid "File not found" msgstr "Файл не знайдено" -#: src/Common/LinuxKernel.vala:942 +#: src/Common/LinuxKernel.vala:945 msgid "Available Kernels" msgstr "Доступні ядра" -#: src/Common/LinuxKernel.vala:982 +#: src/Common/LinuxKernel.vala:973 +#, fuzzy +msgid "No kernels specified" +msgstr "Команда не вказана" + +#: src/Common/LinuxKernel.vala:980 src/Gtk/MainWindow.vala:119 +msgid "Kernel" +msgstr "Ядро" + +#: src/Common/LinuxKernel.vala:980 +#, fuzzy +msgid "not found" +msgstr "Файл не знайдено" + +#: src/Common/LinuxKernel.vala:1006 msgid "enabled" msgstr "увімкнено" -#: src/Common/LinuxKernel.vala:1006 +#: src/Common/LinuxKernel.vala:1030 msgid "Downloading" msgstr "Завантаження" -#: src/Common/LinuxKernel.vala:1026 +#: src/Common/LinuxKernel.vala:1055 msgid "is already installed." msgstr "вже встановлено." -#: src/Common/LinuxKernel.vala:1061 +#: src/Common/LinuxKernel.vala:1065 +msgid "download failed." +msgstr "" + +#: src/Common/LinuxKernel.vala:1082 msgid "Uninstalling selected kernels" msgstr "Видаліть конкретні ядра" -#: src/Common/LinuxKernel.vala:1067 +#: src/Common/LinuxKernel.vala:1086 msgid "requested" msgstr "запитуваний" -#: src/Common/LinuxKernel.vala:1070 +#: src/Common/LinuxKernel.vala:1089 msgid "not uninstalling the currently running kernel" msgstr "не видалятиме поточне запущене ядро" -#: src/Common/LinuxKernel.vala:1091 +#: src/Common/LinuxKernel.vala:1102 msgid "found" msgstr "знайдено" -#: src/Common/LinuxKernel.vala:1094 +#: src/Common/LinuxKernel.vala:1107 msgid "No packages to un-install!" msgstr "Немає пакетів для видалення!" -#: src/Common/LinuxKernel.vala:1138 +#: src/Common/LinuxKernel.vala:1146 #, fuzzy msgid "is the highest installed version." msgstr "Видаліть усі, крім найвищої встановленої версії" -#: src/Common/LinuxKernel.vala:1151 +#: src/Common/LinuxKernel.vala:1159 msgid "Could not find running kernel in list" msgstr "Не вдалося знайти запущене ядро у списку!" -#: src/Common/LinuxKernel.vala:1156 +#: src/Common/LinuxKernel.vala:1164 msgid "Could not find any kernels to uninstall" msgstr "Не вдалося знайти жодне ядро для вилучення" -#: src/Common/LinuxKernel.vala:1164 +#: src/Common/LinuxKernel.vala:1172 msgid "The following kernels will be uninstalled" msgstr "Наступні ядра будуть видалені" -#: src/Common/LinuxKernel.vala:1168 +#: src/Common/LinuxKernel.vala:1176 msgid "Continue ?" msgstr "Продовжувати ?" -#: src/Common/LinuxKernel.vala:1190 src/Console/AppConsole.vala:292 +#: src/Common/LinuxKernel.vala:1198 src/Console/AppConsole.vala:234 msgid "Latest update" msgstr "Останнє оновлення" -#: src/Common/LinuxKernel.vala:1201 src/Console/AppConsole.vala:299 +#: src/Common/LinuxKernel.vala:1209 src/Console/AppConsole.vala:241 msgid "Latest point update" msgstr "Остання точка оновлення" -#: src/Common/LinuxKernel.vala:1209 src/Console/AppConsole.vala:304 -#: src/Console/AppConsole.vala:320 +#: src/Common/LinuxKernel.vala:1217 src/Console/AppConsole.vala:246 +#: src/Console/AppConsole.vala:262 msgid "No updates found" msgstr "Оновлень не знайдено" -#: src/Common/LinuxKernel.vala:1218 +#: src/Common/LinuxKernel.vala:1226 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Встановити Ядро Версії %s ? (так/ні): " @@ -189,145 +207,134 @@ msgstr "Повідомлення вимкнено" msgid "File not found: %s" msgstr "Файл не знайдено: %s" -#: src/Console/AppConsole.vala:47 src/Gtk/AppGtk.vala:133 +#: src/Console/AppConsole.vala:43 src/Gtk/AppGtk.vala:139 msgid "Syntax" msgstr "Синтаксис" -#: src/Console/AppConsole.vala:49 +#: src/Console/AppConsole.vala:45 msgid "Commands" msgstr "Команди" -#: src/Console/AppConsole.vala:51 +#: src/Console/AppConsole.vala:47 msgid "Check for kernel updates" msgstr "Перевірити оновлення ядра" -#: src/Console/AppConsole.vala:52 +#: src/Console/AppConsole.vala:48 msgid "Check for kernel updates and notify current user" msgstr "Перевірте наявність оновлень ядра та повідомте поточного користувача" -#: src/Console/AppConsole.vala:53 -msgid "List all available mainline kernels" +#: src/Console/AppConsole.vala:49 +#, fuzzy +msgid "List available mainline kernels" msgstr "Список усіх доступних основних ядер" -#: src/Console/AppConsole.vala:54 +#: src/Console/AppConsole.vala:50 msgid "List installed kernels" msgstr "Список встановлених ядер" -#: src/Console/AppConsole.vala:55 +#: src/Console/AppConsole.vala:51 msgid "Install latest mainline kernel" msgstr "Встановіть останнє основне ядро" -#: src/Console/AppConsole.vala:56 -msgid "Install latest point update for current series" +#: src/Console/AppConsole.vala:52 +#, fuzzy +msgid "Install latest point update in the current major version" msgstr "Встановіть останню точку оновлення для поточної серії" -#: src/Console/AppConsole.vala:57 -msgid "Install specified mainline kernel" -msgstr "Встановіть конкретне основне ядро" +#: src/Console/AppConsole.vala:53 +#, fuzzy +msgid "Install specified kernels" +msgstr "Видаліть конкретні ядра" -#: src/Console/AppConsole.vala:58 -msgid "Uninstall specified kernel" +#: src/Console/AppConsole.vala:54 +#, fuzzy +msgid "Uninstall specified kernels" msgstr "Видаліть конкретні ядра" -#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:339 +#: src/Console/AppConsole.vala:55 src/Gtk/MainWindow.vala:327 msgid "Uninstall all but the highest installed version" msgstr "Видаліть усі, крім найвищої встановленої версії" -#: src/Console/AppConsole.vala:60 +#: src/Console/AppConsole.vala:56 msgid "Download specified kernels" msgstr "Завантажте конкретні ядра" -#: src/Console/AppConsole.vala:61 +#: src/Console/AppConsole.vala:57 msgid "Delete cached info about available kernels" msgstr "Видалити кешовану інформацію про доступні ядра" -#: src/Console/AppConsole.vala:63 src/Gtk/AppGtk.vala:135 +#: src/Console/AppConsole.vala:59 src/Gtk/AppGtk.vala:141 msgid "Options" msgstr "Параметри" -#: src/Console/AppConsole.vala:65 +#: src/Console/AppConsole.vala:61 msgid "Include unstable and RC releases" msgstr "Включення нестабільних і RC-релізів" -#: src/Console/AppConsole.vala:66 +#: src/Console/AppConsole.vala:62 msgid "Exclude unstable and RC releases" msgstr "Виключення нестабільних і RC-релізів" -#: src/Console/AppConsole.vala:67 -msgid "Enable verbose debugging output" -msgstr "Увімкнути вивід налагодження" +#: src/Console/AppConsole.vala:63 +msgid "Verbosity. Set to n if given, or increment." +msgstr "" -#: src/Console/AppConsole.vala:68 +#: src/Console/AppConsole.vala:64 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "Так для всіх підказок (неінтерактивний режим)" -#: src/Console/AppConsole.vala:71 -msgid "A version string taken from the output of --list" +#: src/Console/AppConsole.vala:67 +#, fuzzy +msgid "One or more version strings taken from the output of --list" msgstr "Рядок версій, взятий з виводу --list" -#: src/Console/AppConsole.vala:72 -msgid "One or more, comma-seperated" -msgstr "Один або кілька розділених комами" +#: src/Console/AppConsole.vala:68 +msgid "comma, pipe, or colon-seperated, or quoted space seperated" +msgstr "" -#: src/Console/AppConsole.vala:73 -msgid "The currently running kernel will always be ignored" +#: src/Console/AppConsole.vala:69 +#, fuzzy +msgid "Locked kernels and the currently running kernel are ignored" msgstr "Поточне ядро, що працює, завжди буде ігноруватися" -#: src/Console/AppConsole.vala:163 src/Gtk/AppGtk.vala:119 +#: src/Console/AppConsole.vala:160 src/Gtk/AppGtk.vala:125 msgid "Unknown option" msgstr "Невідомий параметр" -#: src/Console/AppConsole.vala:164 src/Console/AppConsole.vala:250 -#: src/Console/AppConsole.vala:278 +#: src/Console/AppConsole.vala:161 src/Console/AppConsole.vala:220 msgid "Run" msgstr "Запуск" -#: src/Console/AppConsole.vala:164 +#: src/Console/AppConsole.vala:161 msgid "to list all options" msgstr "Показати усі параметри" -#: src/Console/AppConsole.vala:218 src/Console/AppConsole.vala:258 -msgid "No kernels specified" -msgstr "Ядра не вказані" - -#: src/Console/AppConsole.vala:224 -msgid "Multiple kernels selected for installation. Select only one." -msgstr "Для встановлення вибрано кілька ядер. Виберіть лише одну." - -#: src/Console/AppConsole.vala:247 -msgid "Could not find requested version" -msgstr "Не вдалося знайти запитувану версію" - -#: src/Console/AppConsole.vala:250 -msgid "and use a version string listed in first column" -msgstr "і використовувати рядок версій, вказаний у першому стовпці" - -#: src/Console/AppConsole.vala:277 +#: src/Console/AppConsole.vala:219 msgid "Command not specified" msgstr "Команда не вказана" -#: src/Console/AppConsole.vala:278 +#: src/Console/AppConsole.vala:220 msgid "to list all commands" msgstr "щоб відобразити всі команди" -#: src/Console/AppConsole.vala:314 +#: src/Console/AppConsole.vala:256 msgid "Notifications disabled in settings" msgstr "Сповіщення, вимкнені в налаштуваннях" -#: src/Console/AppConsole.vala:342 +#: src/Console/AppConsole.vala:284 #, c-format msgid "Kernel %s Available" msgstr "Ядро %s Доступне" -#: src/Console/AppConsole.vala:346 src/Gtk/SettingsDialog.vala:166 +#: src/Console/AppConsole.vala:288 src/Gtk/SettingsDialog.vala:166 msgid "Show" msgstr "Показати" -#: src/Console/AppConsole.vala:347 src/Gtk/MainWindow.vala:306 +#: src/Console/AppConsole.vala:289 src/Gtk/MainWindow.vala:299 msgid "Install" msgstr "Встановити" -#: src/Console/AppConsole.vala:350 +#: src/Console/AppConsole.vala:292 msgid "Previously notified" msgstr "Попередньо повідомлено" @@ -367,90 +374,86 @@ msgstr "Документатори" msgid "Third Party Inclusions" msgstr "Включення третіх осіб" -#: src/Gtk/AppGtk.vala:133 +#: src/Gtk/AppGtk.vala:139 msgid "options" msgstr "параметри" -#: src/Gtk/AppGtk.vala:137 +#: src/Gtk/AppGtk.vala:143 msgid "Print debug information" msgstr "Роздрукувати зневадження" -#: src/Gtk/AppGtk.vala:138 +#: src/Gtk/AppGtk.vala:144 msgid "Show all options" msgstr "Показати усі параметри" -#: src/Gtk/MainWindow.vala:124 -msgid "Kernel" -msgstr "Ядро" - -#: src/Gtk/MainWindow.vala:147 +#: src/Gtk/MainWindow.vala:143 msgid "Lock" msgstr "" -#: src/Gtk/MainWindow.vala:164 +#: src/Gtk/MainWindow.vala:160 msgid "Status" msgstr "Стан" -#: src/Gtk/MainWindow.vala:176 +#: src/Gtk/MainWindow.vala:172 msgid "Notes" msgstr "Нотатки" -#: src/Gtk/MainWindow.vala:316 +#: src/Gtk/MainWindow.vala:307 msgid "Uninstall" msgstr "Видалити" -#: src/Gtk/MainWindow.vala:327 +#: src/Gtk/MainWindow.vala:316 msgid "Changelog, build status, etc" msgstr "Журнал змін, статус збірки тощо" -#: src/Gtk/MainWindow.vala:338 +#: src/Gtk/MainWindow.vala:326 msgid "Uninstall Old" msgstr "Видалити старе" -#: src/Gtk/MainWindow.vala:344 +#: src/Gtk/MainWindow.vala:332 msgid "Reload" msgstr "Перезавантажити" -#: src/Gtk/MainWindow.vala:345 +#: src/Gtk/MainWindow.vala:333 msgid "Delete and reload all cached kernel info" msgstr "" -#: src/Gtk/MainWindow.vala:350 src/Gtk/SettingsDialog.vala:49 +#: src/Gtk/MainWindow.vala:338 src/Gtk/SettingsDialog.vala:49 msgid "Settings" msgstr "Налаштування" -#: src/Gtk/MainWindow.vala:355 +#: src/Gtk/MainWindow.vala:343 msgid "About" msgstr "Про программу" -#: src/Gtk/MainWindow.vala:360 +#: src/Gtk/MainWindow.vala:348 msgid "Exit" msgstr "Вихід" -#: src/Gtk/MainWindow.vala:426 +#: src/Gtk/MainWindow.vala:414 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Програма оновлення ядра для дистрибутивів на базі Ubuntu" -#: src/Gtk/MainWindow.vala:427 +#: src/Gtk/MainWindow.vala:415 msgid "Forked" msgstr "Двоєний" -#: src/Gtk/MainWindow.vala:427 +#: src/Gtk/MainWindow.vala:415 msgid "Original" msgstr "Оригінал" -#: src/Gtk/MainWindow.vala:465 +#: src/Gtk/MainWindow.vala:452 msgid "Updating kernels" msgstr "Оновлення ядер" -#: src/Gtk/MainWindow.vala:536 +#: src/Gtk/MainWindow.vala:520 msgid "available" msgstr "доступний" -#: src/Gtk/MainWindow.vala:578 src/Gtk/MainWindow.vala:619 -#: src/Gtk/MainWindow.vala:654 +#: src/Gtk/MainWindow.vala:575 src/Gtk/MainWindow.vala:614 +#: src/Gtk/MainWindow.vala:646 msgid "DONE" -msgstr "ГОТОВО" +msgstr "" #: src/Gtk/ProgressWindow.vala:126 src/Gtk/TerminalWindow.vala:151 msgid "Cancel" diff --git a/src/Common/LinuxKernel.vala b/src/Common/LinuxKernel.vala index 76efc0a7..30c1f7a7 100644 --- a/src/Common/LinuxKernel.vala +++ b/src/Common/LinuxKernel.vala @@ -9,8 +9,6 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { public string kname = ""; public string kver = ""; public string version_main = ""; - //public string pname = ""; - public string pver = ""; public string page_uri = ""; public string notes = ""; @@ -18,6 +16,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { public int version_minor = -1; public int version_point = -1; public int version_rc = -1; + public string version_extra = ""; public Gee.HashMap deb_url_list = new Gee.HashMap(); // assosciated .deb files K=filename,V=url public Gee.HashMap deb_checksum_list = new Gee.HashMap(); // assosciated .deb files K=filename,V=checksum @@ -142,19 +141,19 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { try { //linux-headers-3.4.75-030475-generic_3.4.75-030475.201312201255_amd64.deb - rex_header = new Regex("(?:" + NATIVE_ARCH + """/|>)?linux-headers-[a-zA-Z0-9\.\-_]*-generic_[a-zA-Z0-9\.\-]*_""" + NATIVE_ARCH + ".deb"); + rex_header = new Regex("(?:" + NATIVE_ARCH + """/|>)?linux-headers-[a-zA-Z0-9\.\-_]+-generic_[a-zA-Z0-9\.\-]+_""" + NATIVE_ARCH + ".deb"); //linux-headers-3.4.75-030475_3.4.75-030475.201312201255_all.deb - rex_header_all = new Regex("(?:" + NATIVE_ARCH + """/|>)?linux-headers-[a-zA-Z0-9\.\-_]*_all.deb"""); + rex_header_all = new Regex("(?:" + NATIVE_ARCH + """/|>)?linux-headers-[a-zA-Z0-9\.\-_]+_all.deb"""); //linux-image-3.4.75-030475-generic_3.4.75-030475.201312201255_amd64.deb - rex_image = new Regex("(?:" + NATIVE_ARCH + """/|>)?linux-image-[a-zA-Z0-9\.\-_]*-generic_([a-zA-Z0-9\.\-]*)_""" + NATIVE_ARCH + ".deb"); + rex_image = new Regex("(?:" + NATIVE_ARCH + """/|>)?linux-image-[a-zA-Z0-9\.\-_]+-generic_([a-zA-Z0-9\.\-]+)_""" + NATIVE_ARCH + ".deb"); //linux-image-extra-3.4.75-030475-generic_3.4.75-030475.201312201255_amd64.deb - rex_image_extra = new Regex("(?:" + NATIVE_ARCH + """/|>)?linux-image-extra-[a-zA-Z0-9\.\-_]*-generic_[a-zA-Z0-9\.\-]*_""" + NATIVE_ARCH + ".deb"); + rex_image_extra = new Regex("(?:" + NATIVE_ARCH + """/|>)?linux-image-extra-[a-zA-Z0-9\.\-_]+-generic_[a-zA-Z0-9\.\-]+_""" + NATIVE_ARCH + ".deb"); //linux-image-extra-3.4.75-030475-generic_3.4.75-030475.201312201255_amd64.deb - rex_modules = new Regex("(?:" + NATIVE_ARCH + """/|>)?linux-modules-[a-zA-Z0-9\.\-_]*-generic_[a-zA-Z0-9\.\-]*_""" + NATIVE_ARCH + ".deb"); + rex_modules = new Regex("(?:" + NATIVE_ARCH + """/|>)?linux-modules-[a-zA-Z0-9\.\-_]+-generic_[a-zA-Z0-9\.\-]+_""" + NATIVE_ARCH + ".deb"); } catch (Error e) { vprint(e.message,1,stderr); @@ -177,26 +176,21 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { } // constructor - public LinuxKernel(string _name) { - vprint("LinuxKernel("+_name+")",4); - // _name, kname includes the leading "v" and everything after the version number - // same as what's in the urls on the kernel ppa index.html - - // strip off the trailing "/" - if (_name.has_suffix("/")) kname = _name[0: _name.length - 1]; - else kname = _name; + public LinuxKernel(string s) { + vprint("LinuxKernel("+s+")",4); // extract version numbers from the name - kver = kname; - split_version_string(kver, out version_main); + split_version_string(s); // build url - page_uri = PPA_URI + _name; + page_uri = PPA_URI + s; } - public LinuxKernel.from_version(string _version) { + // this is for non-mainline/distro/local/placeholder k objects with no page on the mainline-ppa site + public LinuxKernel.from_version(string _version="") { + vprint("LinuxKernel.from_version("+_version+")",4); kver = _version; - split_version_string(kver, out version_main); + split_version_string(kver); page_uri = ""; } @@ -204,10 +198,10 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { public delegate void Notifier(GLib.Timer timer, ref long count, bool last = false); - public static void query(bool wait, owned Notifier? notifier = null) { - vprint("LinuxKernel.query()",2); - + public static void mk_kernel_list(bool wait = true, owned Notifier? notifier = null) { + vprint("LinuxKernel.mk_kernel_list()",2); check_if_initialized(); + kernel_list.clear(); try { @@ -230,14 +224,13 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { progress_total = 0; progress_count = 0; + // find the oldest major version to include + update_threshold_major(true); + // ===== download the main index.html listing all kernels ===== download_index(); load_index(); - // find the oldest major version to include - Package.update_dpkg_list(); - update_threshold_major(); - // ===== download the per-kernel index.html and CHANGES ===== // list of kernels - 1 LinuxKernel object per kernel to update @@ -324,9 +317,9 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { vprint("download_index()",2); check_if_initialized(); - if (!try_ppa()) return false; if (!file_exists(MAIN_INDEX_HTML)) App.index_is_fresh=false; if (App.index_is_fresh) return true; + if (!try_ppa()) return false; dir_create(CACHE_DIR); @@ -357,31 +350,30 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { // read the main index.html listing all kernels private static void load_index() { vprint("load_index()",2); + if (threshold_major<1) update_threshold_major(true); + if (threshold_major<1) { vprint("threshold_major not initialized"); exit(1); } if (!file_exists(MAIN_INDEX_HTML)) return; string txt = file_read(MAIN_INDEX_HTML); kernel_list.clear(); try { -// [DIR]v2.6.27.61/2018-05-13 20:40 -   - var rex = new Regex("""v([a-zA-Z0-9\-._]+)[\/]*<\/a>.*>([0-9]{4})-([0-9]{2})-([0-9]{2}) ([0-9]{2}):([0-9]{2}) *<"""); - // v3.1.8-precise/ - // ###fetch(1)#### ##fetch(2)### - - MatchInfo match; - - foreach (string line in txt.split("\n")) { - if (!rex.match(line, 0, out match)) continue; - var k = new LinuxKernel(match.fetch(1)); - kernel_list.add(k); + var rex = new Regex("""href="(v[0-9][a-zA-Z0-9\-._\/]+)".+>[\t ]*([0-9]{4})-([0-9]{2})-([0-9]{2})[\t ]+([0-9]{2}):([0-9]{2})[\t ]*<"""); + // [DIR]v2.6.27.61/2018-05-13 20:40 -   + // ########### #### ## ## ## ## + // fetch(1) 2 3 4 5 6 + + MatchInfo mi; + foreach (string l in txt.split("\n")) { + //vprint(l); + if (!rex.match(l, 0, out mi)) continue; + var k = new LinuxKernel(mi.fetch(1)); + //vprint("######## "+k.version_main+" major:"+k.version_major.to_string()); + if (k.version_major2018-05-13 20:40 ..." -> 201805132040 - // kernel date/time from main index converted to int - // used to detect kernel that changed after we cached it - k.ppa_datetime = int64.parse(match.fetch(3)+match.fetch(4)+match.fetch(5)+match.fetch(6)+match.fetch(7)); - - vprint("kernel_list.add("+k.kname+")",3); + k.ppa_datetime = int64.parse(mi.fetch(2)+mi.fetch(3)+mi.fetch(4)+mi.fetch(5)+mi.fetch(6)); + vprint("kernel_list.add("+k.version_main+") "+k.ppa_datetime.to_string(),2); + kernel_list.add(k); } kernel_list.sort((a,b) => { return a.compare_to(b) * -1; }); @@ -390,7 +382,6 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { catch (Error e) { vprint(e.message,1,stderr); } - } public static void check_installed() { @@ -399,32 +390,43 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { var pkg_versions = new Gee.ArrayList(); string msg = ""; - foreach (var pkg in Package.dpkg_list) { - if (!pkg.pname.has_prefix("linux-image-")) continue; - //vprint(_("Found installed")+" : "+pkg.version); - msg = _("Found installed")+" : "+pkg.version; - pkg_versions.add(pkg.version); + if (Package.dpkg_list.size<1) { vprint("dpkg_list empty!"); exit(1); } + if (kernel_list.size<1) { vprint("kernel_list empty!"); exit(1); } + + foreach (var p in Package.dpkg_list) { + if (!p.pname.has_prefix("linux-image-")) continue; + //vprint(_("Found installed")+" : "+p.version); + pkg_versions.add(p.version); // temp kernel object for current pkg - string pkern_name = pkg.version; - var pkern = new LinuxKernel(pkern_name); - if (pkern.is_locked) msg += " (" + _("locked") +")"; + var pk = new LinuxKernel.from_version(p.version); + pk.kname = p.pname; + pk.kver = p.version; + pk.is_mainline = false; + pk.is_installed = true; // dpkg_list[] only contains installed packages + pk.set_pkg_list(); // find assosciated packages and fill pkern.pkg_list[] + + msg = _("Found installed")+" : "+p.version; + if (pk.is_locked) msg += " (" + _("locked") +")"; vprint(msg); - pkern.is_mainline = false; - pkern.is_installed = true; // dpkg_list[] only contains installed packages - pkern.set_pkg_list(); // find assosciated packages and fill pkern.pkg_list[] // search the mainline list for matching package name // fill k.pkg_list list of assosciated pkgs + //vprint("###############################################################"); + //vprint("## look for "+p.pname+" "+p.version+" in kernel_list"); bool found = false; foreach (var k in kernel_list) { - //k.is_mainline = true; // HACK FIXME --uninstall-old thinks all kernels are not mainline if (k.is_invalid) continue; - //if (k.version_major { // so it's a distro kernel, add to kernel_list with is_mainline = false; if (!found) { //vprint("kernel_list.add("+pkern.kname+") (distro kernel)",3); // not always true, --uninstall-old thinks all are - vprint("kernel_list.add("+pkern.kname+")",3); - pkern.is_mainline = false; - pkern.pver = pkg.version; - if (file_exists(pkern.notes_file)) pkern.notes = file_read(pkern.notes_file); - kernel_list.add(pkern); + //vprint("not found : kernel is not mainline"); + vprint("kernel_list.add("+pk.version_main+" "+pk.kname+" "+pk.kver+")",2); + pk.is_mainline = false; + if (file_exists(pk.notes_file)) pk.notes = file_read(pk.notes_file); + kernel_list.add(pk); } } @@ -449,8 +451,8 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { // kernel_list should contain both mainline and distro kernels now foreach (var k in kernel_list) { - if (k.pver.length < 1) continue; - if (k.pver[0 : k.pver.last_index_of(".")] != RUNNING_KERNEL) continue; + if (k.kver.length < 1) continue; + if (k.kver[0 : k.kver.last_index_of(".")] != RUNNING_KERNEL) continue; k.is_running = true; k.is_installed = true; // redundant but whatever kernel_active = k; @@ -529,65 +531,66 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { // helpers - public static void update_threshold_major() { + // this is needed before mk_kernel_list, used within mk_kernel_list + // so we cannot consult kernel_list or run mk_kernel_list + public static void update_threshold_major(bool up=false) { vprint("update_threshold_major()",2); - //Package.update_dpkg_list(); + if (up || Package.dpkg_list.size<1) Package.mk_dpkg_list(); if (App.previous_majors<0 || App.previous_majors>=kernel_latest_available.version_major) { threshold_major=0; return; } - // start from the latest available and work down, ignore ubuntu kernels + // start from the latest available and work down, ignore distro kernels kernel_oldest_installed = kernel_latest_installed; - foreach (var pkg in Package.dpkg_list) { - if (!pkg.pname.has_prefix("linux-image-")) continue; - var candidate = new LinuxKernel(pkg.version); - - // override the garbage guess made in split_version_string() - candidate.is_mainline = false; - foreach (var k in LinuxKernel.kernel_list) { - if (k.pver == candidate.kname) { - candidate.is_mainline = true; - break; - } - } - - if (candidate.is_mainline && candidate.version_major < kernel_oldest_installed.version_major) kernel_oldest_installed = candidate; + foreach (var p in Package.dpkg_list) { + if (!p.pname.has_prefix("linux-image-")) continue; + var k = new LinuxKernel.from_version(p.version); + // This k.is_mainline test is only based on an unreliable semantic used in split_version_string(). + // A real test would be to scan kernel_list for matching k.kver or k.name, + // but we don't have kernel_list yet and we can't run mk_kernel_list to generate it, + // because we are being run from within mk_kernel_list itself to set bounds on kernel_list. + // It's not critical. All this does is try to avoid having an installed distro kernel + // cause kernel_list to include a whole previous generation. + if (k.version_major < kernel_oldest_installed.version_major && k.is_mainline) kernel_oldest_installed = k; } threshold_major = kernel_latest_available.version_major - App.previous_majors; if (kernel_oldest_installed.is_mainline && kernel_oldest_installed.version_major < threshold_major) threshold_major = kernel_oldest_installed.version_major; - vprint("threshold_major %d".printf(threshold_major),2); } - public void split_version_string(string _version_string, out string ver_main) { - ver_main = ""; + public void split_version_string(string s) { + version_main = ""; version_major = 0; version_minor = 0; version_point = 0; version_rc = -1; - is_mainline = true; // FIXME garbage assumption + version_extra = ""; + is_mainline = true; // FIXME bad assumption - if (_version_string.length == 0) return; + string t = s; + if (t==null || t.length<1) t = "0"; + if (t.has_prefix("v")) t = t[1: t.length - 1]; + if (t.has_suffix("/")) t = t[0: t.length - 1]; - var version_string = _version_string.split("~")[0]; - var match = regex_match("""[v]*([0-9]+|r+c+)""", version_string); - int index = -1; - string version_extra = ""; + var version_string = t.split("~")[0]; + var mi = regex_match("""([0-9]+|rc)""", version_string); + int i = -1; bool saw_rc = false; - while (match != null){ - string? num = match.fetch(1); + while (mi != null) { + string? num = mi.fetch(1); - if (num != null){ - index++; + if (num != null) { + i++; + //vprint("num="+num); if (saw_rc) { saw_rc = false; version_rc = int.parse(num); } else if (num == "rc") { saw_rc = true; } else { - switch (index) { + switch (i) { case 0: version_major = int.parse(num); break; @@ -604,15 +607,15 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { if ((version_rc<0) && (num.length<3)) version_extra += "."+num; break; } - if (num.length < 12) is_mainline = false; // FIXME this is garbage + if (num.length<12) is_mainline = false; // FIXME bad assumption } } if (version_rc>-1) version_extra = "-rc%d".printf(version_rc); - ver_main = "%d.%d.%d%s".printf(version_major,version_minor,version_point,version_extra); + version_main = "%d.%d.%d%s".printf(version_major,version_minor,version_point,version_extra); try{ - if (!match.next()) break; + if (!mi.next()) break; } catch(Error e) { break; @@ -707,7 +710,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { public bool is_unstable { get { - return kver.contains("-rc") || kver.contains("-unstable"); + return version_main.contains("-rc") || version_main.contains("-unstable"); } } @@ -825,12 +828,10 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { return txt; } - // load - // return false if we don't have the cached page or if it's out of date // return true if we have a valid cached page, whether the kernel itself is a valid build or not private bool load_cached_page() { - vprint("load_cached_page(): '"+cached_page+"'",4); + vprint("load_cached_page("+cached_page+")",2); string txt = ""; int64 d_this = 0; @@ -840,7 +841,6 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { deb_header_all = ""; deb_image_extra = ""; deb_modules = ""; - pver = ""; deb_url_list.clear(); notes = ""; @@ -859,24 +859,24 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { //[TXT]HEADER.html2023-05-11 23:21 5.6K  //[DIR]amd64/2023-05-11 22:30 -   try { - var rex = new Regex(""">([0-9]{4})-([0-9]{2})-([0-9]{2}) ([0-9]{2}):([0-9]{2}) *<"""); - MatchInfo match; - foreach (string line in txt.split("\n")) { - if (rex.match(line, 0, out match)) { - d_this = int64.parse(match.fetch(1)+match.fetch(2)+match.fetch(3)+match.fetch(4)+match.fetch(5)); + var rex = new Regex(""">[\t ]*([0-9]{4})-([0-9]{2})-([0-9]{2})[\t ]+([0-9]{2}):([0-9]{2})[\t ]*<"""); + MatchInfo mi; + foreach (string l in txt.split("\n")) { + if (rex.match(l, 0, out mi)) { + d_this = int64.parse(mi.fetch(1)+mi.fetch(2)+mi.fetch(3)+mi.fetch(4)+mi.fetch(5)); if (d_this>d_max) d_max = d_this; + //vprint(d_this.to_string()+" "+d_max.to_string()); } } } catch (Error e) { vprint(e.message,1,stderr); } - // if datetime from main index is newer than the latest cached datetime, - // delete the cached index and status, keep the notes, return false + // if datetime from main index is later than the latest cached datetime, + // delete the cached index and status, return false if (ppa_datetime>d_max) { - file_delete(cached_page); - file_delete(cached_status_file); - file_delete(cached_checksums_file); + vprint(version_main+": ppa:"+ppa_datetime.to_string()+" > cache:"+d_max.to_string()+" : needs update"); + dir_delete(cache_subdir); return false; } @@ -886,41 +886,44 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { // scan for urls to .deb files try { ////same deb name// - var rex = new Regex("""([a-zA-Z0-9\-\._/]+\.deb)<\/a>"""); - MatchInfo match; - - foreach (string line in txt.split("\n")) { - if (rex.match(line, 0, out match)) { - - string file_name = Path.get_basename (match.fetch(2)); - string file_uri = "%s%s".printf(page_uri, match.fetch(1)); + var rex = new Regex("""href="([a-zA-Z0-9\-\._/]+\.deb)""""); + MatchInfo mi; + foreach (string l in txt.split("\n")) { + if (rex.match(l, 0, out mi)) { + + string file_uri = page_uri + mi.fetch(1); + //vprint("file_uri:"+file_uri); + string file_name = Path.get_basename(file_uri); + //vprint("file_name:"+file_name); if (deb_url_list.has_key(file_name)) continue; bool add = false; - if (rex_header.match(file_name, 0, out match)) { + if (rex_header.match(file_name, 0, out mi)) { deb_header = file_name; add = true; } - if (rex_header_all.match(file_name, 0, out match)) { + if (rex_header_all.match(file_name, 0, out mi)) { deb_header_all = file_name; add = true; } - if (rex_image.match(file_name, 0, out match)) { + if (rex_image.match(file_name, 0, out mi)) { deb_image = file_name; - //pname = file_name.split("_")[0]; - pver = match.fetch(1); add = true; + // linux-headers-4.6.0-040600rc1-generic_4.6.0-040600rc1.201603261930_amd64.deb + var p = file_name.split("_"); + if (p[0]!="") kname = p[0]; + if (p[1]!="") kver = p[1]; } - if (rex_image_extra.match(file_name, 0, out match)) { + if (rex_image_extra.match(file_name, 0, out mi)) { deb_image_extra = file_name; add = true; } - if (rex_modules.match(file_name, 0, out match)) { + if (rex_modules.match(file_name, 0, out mi)) { deb_modules = file_name; add = true; } @@ -960,18 +963,39 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { } } - public static bool download_kernels(Gee.ArrayList selected_kernels) { - foreach (var k in selected_kernels) k.download_packages(); - return true; + public static Gee.ArrayList vlist_to_klist(string list="",bool uk=false) { + vprint("vlist_to_klist("+list+")",3); + check_if_initialized(); + var klist = new Gee.ArrayList(); + var vlist = list.split_set(",;:| "); + int i=vlist.length; + foreach (var v in vlist) if (v.strip()=="") i-- ; + if (i<1) { vprint(_("No kernels specified")); return klist; } + if (uk || kernel_list.size<1) mk_kernel_list(true); + bool e = false; + foreach (var v in vlist) { + e = false; + if (v.strip()=="") continue; + foreach (var k in kernel_list) if (k.version_main==v) { e = true; klist.add(k); break; } + if (!e) vprint(_("Kernel")+" \""+v+"\" "+_("not found")); + } + //vprint("end vlist_to_klist"); + return klist; + } + + public static bool download_klist(Gee.ArrayList klist) { + bool r = true; + foreach (var k in klist) if (!k.download_packages()) r = false; + return r; } // dep: aria2c public bool download_packages() { + vprint("download_packages()",2); + check_if_initialized(); bool ok = true; int MB = 1024 * 1024; - check_if_initialized(); - var mgr = new DownloadTask(); // CHECKSUMS @@ -1020,50 +1044,45 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { } // dep: dpkg - public bool kinst() { - - if (is_installed) { - vprint(version_main+" "+_("is already installed."),1,stderr); - return false; - } - - if (is_locked) { - vprint(version_main+" "+_("is locked."),1,stderr); - return false; - } + public static bool install_klist(Gee.ArrayList klist) { if (!try_ppa()) return false; - bool ok = download_packages(); - int status = -1; + string flist = ""; + foreach (var k in klist) { - if (ok) { + if (k.is_installed) { + vprint(k.version_main+" "+_("is already installed."),1,stderr); + continue; + } - // full paths instead of env -C - // https://github.com/bkw777/mainline/issues/128 - var flist = ""; - foreach (string file_name in deb_url_list.keys) flist += " '"+cache_subdir+"/"+file_name+"'"; - string cmd = "pkexec env DISPLAY=${DISPLAY} XAUTHORITY=${XAUTHORITY} dpkg --install "+flist; - status = Posix.system(cmd); - ok = (status == 0); - foreach (string file_name in deb_url_list.keys) file_delete(cache_subdir+"/"+file_name); + if (k.is_locked) { + vprint(k.version_main+" "+_("is locked."),1,stderr); + continue; + } + + if (!k.download_packages()) { + vprint(k.version_main+" "+_("download failed."),1,stderr); + continue; + } + foreach (string f in k.deb_url_list.keys) flist += " '"+k.cache_subdir+"/"+f+"'"; } - return ok; + // full paths instead of env -C + // https://github.com/bkw777/mainline/issues/128 + string cmd = "pkexec env DISPLAY=${DISPLAY} XAUTHORITY=${XAUTHORITY} dpkg --install " + flist; + bool r = (Posix.system(cmd)==0); + foreach (var f in flist.split(" ")) file_delete(f); + return r; } // dep: dpkg - public static bool kunin_list(Gee.ArrayList selected_kernels) { - bool ok = false; - int status = -1; - + public static bool uninstall_klist(Gee.ArrayList klist) { vprint(_("Uninstalling selected kernels")+":"); - string cmd = "pkexec env DISPLAY=${DISPLAY} XAUTHORITY=${XAUTHORITY} dpkg --purge"; - string found = ""; - - foreach (var k in selected_kernels) { + string pnames = ""; + foreach (var k in klist) { vprint(_("requested")+" "+k.version_main); if (k.is_running) { @@ -1076,48 +1095,37 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { continue; } - found = ""; - foreach (var pkg_name in k.pkg_list.values) { - //vprint(pkg_name,5); - if ( - !pkg_name.has_prefix("linux-tools") && - !pkg_name.has_prefix("linux-libc") - ) { - cmd += " '%s'".printf(pkg_name); - found += " "+pkg_name; - ok = true; - } - } - vprint(_("found")+" : "+found,2); - - if (!ok) { - vprint(_("No packages to un-install!"),1,stderr); - return false; + foreach (var p in k.pkg_list.values) { + if (p.has_prefix("linux-tools")) continue; + if (p.has_prefix("linux-libc")) continue; + pnames += " '"+p+"'"; + vprint(_("found")+" : "+p,2); } + } + if (pnames=="") { + vprint(_("No packages to un-install!"),1,stderr); + return false; } + string cmd = "pkexec env DISPLAY=${DISPLAY} XAUTHORITY=${XAUTHORITY} dpkg --purge " + pnames; vprint(cmd,2); - status = Posix.system(cmd); - ok = (status == 0); - - return ok; + return (Posix.system(cmd)==0); } public static void kunin_old(bool confirm) { vprint("kunin_old()",2); + update_threshold_major(true); download_index(); load_index(); - Package.update_dpkg_list(); - update_threshold_major(); check_installed(); //vprint("kernel_oldest_installed: "+kernel_oldest_installed.version_main,2); //vprint("kernel_latest_installed: "+kernel_latest_installed.version_main,2); //vprint("kernel_latest_available: "+kernel_latest_available.version_main,2); - var list = new Gee.ArrayList(); + var klist = new Gee.ArrayList(); var kern_running = new LinuxKernel.from_version(RUNNING_KERNEL); @@ -1144,7 +1152,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { } //vprint(k.version_main+" < "+kernel_latest_installed.version_main+" -> delete",4); - list.add(k); + klist.add(k); } if (!found_running_kernel) { @@ -1152,7 +1160,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { return; } - if (list.size == 0){ + if (klist.size == 0){ vprint(_("Could not find any kernels to uninstall"),2); return; } @@ -1163,7 +1171,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { var message = "\n"+_("The following kernels will be uninstalled")+"\n"; - foreach (var k in list) message += " ▰ %s\n".printf(k.version_main); + foreach (var k in klist) message += " ▰ %s\n".printf(k.version_main); message += "\n%s (y/n): ".printf(_("Continue ?")); @@ -1175,13 +1183,13 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { } // uninstall -------------------------------- - kunin_list(list); + uninstall_klist(klist); } public static void kinst_latest(bool point_update, bool confirm) { vprint("kinst_latest()",2); - query(true); + mk_kernel_list(true); var kern_major = LinuxKernel.kernel_update_major; @@ -1222,7 +1230,9 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { if (ch != 'y') return; } - k.kinst(); + var klist = new Gee.ArrayList(); + klist.add(k); + install_klist(klist); } } diff --git a/src/Common/Main.vala b/src/Common/Main.vala index 05db26b2..d693ed26 100644 --- a/src/Common/Main.vala +++ b/src/Common/Main.vala @@ -105,7 +105,7 @@ public class Main : GLib.Object { public int VERBOSE = 1; public bool GUI_MODE = false; public string command = "list"; - public string requested_version = ""; + public string requested_versions = ""; public bool ppa_tried = false; public bool ppa_up = true; public bool index_is_fresh = false; diff --git a/src/Common/Package.vala b/src/Common/Package.vala index e1d97b83..cb5d7fa3 100644 --- a/src/Common/Package.vala +++ b/src/Common/Package.vala @@ -6,8 +6,8 @@ using l.misc; public class Package : GLib.Object { public string pname = ""; - public string arch = ""; public string version = ""; + public string arch = ""; public bool is_installed = false; public static Gee.ArrayList dpkg_list = new Gee.ArrayList(); @@ -19,8 +19,8 @@ public class Package : GLib.Object { pname = _name; } - public static void update_dpkg_list() { - vprint("update_dpkg_list()",2); + public static void mk_dpkg_list() { + vprint("mk_dpkg_list()",2); // get installed packages from dpkg -------------- string t_dir = create_tmp_dir(); @@ -33,11 +33,11 @@ public class Package : GLib.Object { try { string line; - var file = File.new_for_path (t_file); - if (file.query_exists ()) { - var dis = new DataInputStream (file.read()); + var file = File.new_for_path(t_file); + if (file.query_exists()) { + var dis = new DataInputStream(file.read()); dpkg_list.clear(); - while ((line = dis.read_line (null)) != null) { + while ((line = dis.read_line(null)) != null) { string[] arr = line.split("|"); if (arr.length != 4) continue; if (arr[3].substring(1,1) != "i" ) continue; @@ -48,11 +48,11 @@ public class Package : GLib.Object { if (arch != LinuxKernel.NATIVE_ARCH && arch != "all" && arch != "any") continue; - var pkg = new Package(name); - pkg.version = vers; - pkg.arch = arch; - dpkg_list.add(pkg); - vprint("dpkg_list.add("+pkg.pname+") version:"+pkg.version+" arch:"+pkg.arch,3); + var p = new Package(name); + p.version = vers; + p.arch = arch; + dpkg_list.add(p); + vprint("dpkg_list.add("+p.pname+") version:"+p.version+" arch:"+p.arch,2); } } else { vprint(_("File not found: %s").printf(t_file),1,stderr); diff --git a/src/Console/AppConsole.vala b/src/Console/AppConsole.vala index 030fe24c..a5c5721d 100644 --- a/src/Console/AppConsole.vala +++ b/src/Console/AppConsole.vala @@ -19,10 +19,6 @@ * MA 02110-1301, USA. */ -using GLib; -using Gee; -using Json; - using TeeJee.FileSystem; using TeeJee.ProcessHelper; using TeeJee.Misc; @@ -50,27 +46,27 @@ public class AppConsole : GLib.Object { + "\n" + " --check " + _("Check for kernel updates") + "\n" + " --notify " + _("Check for kernel updates and notify current user") + "\n" - + " --list " + _("List all available mainline kernels") + "\n" + + " --list " + _("List available mainline kernels") + "\n" + " --list-installed " + _("List installed kernels") + "\n" + " --install-latest " + _("Install latest mainline kernel") + "\n" - + " --install-point " + _("Install latest point update for current series") + "\n" - + " --install " + _("Install specified mainline kernel") + "(1)(3)\n" - + " --uninstall " + _("Uninstall specified kernel") + "(1)(2)(3)\n" - + " --uninstall-old " + _("Uninstall all but the highest installed version") + "(3)\n" - + " --download " + _("Download specified kernels") + "(2)\n" + + " --install-point " + _("Install latest point update in the current major version") + "\n" + + " --install " + _("Install specified kernels") + "(1)(2)\n" + + " --uninstall " + _("Uninstall specified kernels") + "(1)(2)\n" + + " --uninstall-old " + _("Uninstall all but the highest installed version") + "(2)\n" + + " --download " + _("Download specified kernels") + "(1)\n" + " --delete-cache " + _("Delete cached info about available kernels") + "\n" + "\n" + _("Options") + ":\n" + "\n" + " --include-unstable " + _("Include unstable and RC releases") + "\n" + " --exclude-unstable " + _("Exclude unstable and RC releases") + "\n" - + " --debug " + _("Enable verbose debugging output") + "\n" - + " --yes " + _("Assume Yes for all prompts (non-interactive mode)") + "\n" + + " -v|--verbose [n] " + _("Verbosity. Set to n if given, or increment.") + "\n" + + " -y|--yes " + _("Assume Yes for all prompts (non-interactive mode)") + "\n" + "\n" + "Notes:\n" - + "(1) " +_("A version string taken from the output of --list") + "\n" - + "(2) " +_("One or more, comma-seperated") + "\n" - + "(3) " +_("The currently running kernel will always be ignored") + "\n" + + "(1) " +_("One or more version strings taken from the output of --list") + "\n" + + " " +_("comma, pipe, or colon-seperated, or quoted space seperated") + "\n" + + "(2) " +_("Locked kernels and the currently running kernel are ignored") + "\n" ; return msg; } @@ -88,7 +84,7 @@ public class AppConsole : GLib.Object { } string cmd = ""; - string cmd_versions = ""; + string vlist = ""; string a = ""; // parse options first -------------- @@ -97,12 +93,21 @@ public class AppConsole : GLib.Object { { a = args[i].down(); switch (a) { + + case "-v": case "--debug": - App.VERBOSE = 2; - l.misc.VERBOSE = 2; - Environment.set_variable("VERBOSE","2",true); + case "--verbose": + int v = App.VERBOSE; + a = args[i+1]; + if (a==null || a.has_prefix("-")) v++; + else if (++i < args.length) v = int.parse(args[i]); + App.VERBOSE = v; + l.misc.VERBOSE = v; + Environment.set_variable("VERBOSE",v.to_string(),true); + //vprint("verbose="+App.VERBOSE.to_string()); break; + case "-y": case "--yes": App.confirm = false; break; @@ -134,24 +139,16 @@ public class AppConsole : GLib.Object { cmd = a; break; - case "--remove": // back compat - cmd = "--uninstall"; - if (++i < args.length) cmd_versions = args[i]; - break; - - case "--uninstall": case "--download": + case "--remove": + case "--uninstall": case "--install": + if (a=="--remove") a = "--uninstall"; cmd = a; - if (++i < args.length) cmd_versions = args[i]; - break; - - // which is better for no args ? - case "": // no args -> --list - cmd = "--list"; + if (++i < args.length) vlist = args[i]; break; - //case "": // no args -> --help + case "": case "--help": case "-h": case "-?": @@ -170,12 +167,12 @@ public class AppConsole : GLib.Object { switch (cmd) { case "--list": - LinuxKernel.query(true); + LinuxKernel.mk_kernel_list(true); LinuxKernel.print_list(); break; case "--list-installed": - Package.update_dpkg_list(); + Package.mk_dpkg_list(); LinuxKernel.check_installed(); break; @@ -184,7 +181,7 @@ public class AppConsole : GLib.Object { break; case "--notify": - // silence VERBOSE only if it's 1 + // silence VERBOSE only if it's exactly 1 if (App.VERBOSE==1) App.VERBOSE=0; l.misc.VERBOSE = App.VERBOSE; notify_user(); @@ -209,68 +206,13 @@ public class AppConsole : GLib.Object { break; case "--download": - case "--install": - case "--uninstall": - - // FIXME move this list-builder out of the switch - - if (cmd_versions.length==0) { - vprint(_("No kernels specified"),1,stderr); - exit(1); - } - - string[] requested_versions = cmd_versions.split_set(",;:| "); - if ((requested_versions.length > 1) && (cmd == "--install")) { - vprint(_("Multiple kernels selected for installation. Select only one."),1,stderr); - exit(1); - } - - LinuxKernel.query(true); - - var list = new Gee.ArrayList(); - - foreach(string requested_version in requested_versions) { - LinuxKernel kern_requested = null; - foreach(var k in LinuxKernel.kernel_list) { - // match --list output - // FIXME version_main can dupe with mainline & distro pkgs of the same version - // if cmd is uninstall, must also match k.is_installed - // but if cmd is download or install, must IGNORE k.is_installed - // extra FUGLY because this whole cmdline parser is redundant multi-pass junk - if (k.version_main == requested_version && (cmd != "--uninstall" || k.is_installed)) { - kern_requested = k; - break; - } - } - - if (kern_requested == null) { - var msg = _("Could not find requested version"); - msg += ": "+requested_version; - vprint(msg,1,stderr); - vprint(_("Run")+" '"+args[0]+" --list' "+_("and use a version string listed in first column"),1,stderr); - exit(1); - } - - list.add(kern_requested); - } - - if (list.size == 0) { - vprint(_("No kernels specified"),1,stderr); - exit(1); - } - - switch (cmd) { - case "--download": - return LinuxKernel.download_kernels(list); + return LinuxKernel.download_klist(LinuxKernel.vlist_to_klist(vlist,true)); - case "--uninstall": - return LinuxKernel.kunin_list(list); - - case "--install": - return list[0].kinst(); - } + case "--uninstall": + return LinuxKernel.uninstall_klist(LinuxKernel.vlist_to_klist(vlist,true)); - break; + case "--install": + return LinuxKernel.install_klist(LinuxKernel.vlist_to_klist(vlist,true)); default: // unknown command @@ -284,7 +226,7 @@ public class AppConsole : GLib.Object { private void print_updates() { - LinuxKernel.query(true); + LinuxKernel.mk_kernel_list(true); var kern_major = LinuxKernel.kernel_update_major; @@ -315,7 +257,7 @@ public class AppConsole : GLib.Object { return; } - LinuxKernel.query(true); + LinuxKernel.mk_kernel_list(true); string title = _("No updates found"); string seen = ""; diff --git a/src/Gtk/AppGtk.vala b/src/Gtk/AppGtk.vala index ef6d1a14..6f4f64b5 100644 --- a/src/Gtk/AppGtk.vala +++ b/src/Gtk/AppGtk.vala @@ -94,17 +94,23 @@ public class AppGtk : GLib.Object { { switch (args[i].down()) { + case "-v": case "--debug": - App.VERBOSE = 2; - l.misc.VERBOSE = 2; - Environment.set_variable("VERBOSE","2",true); + case "--verbose": + int v = App.VERBOSE; + if (args[i+1]==null || args[i+1].has_prefix("-")) v++; + else if (++i < args.length) v = int.parse(args[i]); + App.VERBOSE = v; + l.misc.VERBOSE = v; + Environment.set_variable("VERBOSE",v.to_string(),true); + //vprint("verbose="+App.VERBOSE.to_string()); break; - // this is used by the notifications + // this is the notification run action case "--install": if (++i < args.length) { App.command = "install"; - App.requested_version = args[i].down(); + App.requested_versions = args[i].down(); } break; diff --git a/src/Gtk/MainWindow.vala b/src/Gtk/MainWindow.vala index 611efc3c..c8aa99a4 100644 --- a/src/Gtk/MainWindow.vala +++ b/src/Gtk/MainWindow.vala @@ -36,7 +36,6 @@ public class MainWindow : Window { private Button btn_install; private Button btn_uninstall; - private Button btn_ppa; private Label lbl_info; private Gtk.ListStore tm; @@ -70,21 +69,18 @@ public class MainWindow : Window { add(vbox_main); selected_kernels = new Gee.ArrayList(); + // 0 index 1 kernel 2 kernel-icon 3 version 4 locked 5 status 6 notes 7 tooltip tm = new Gtk.ListStore(8, typeof(int), typeof(LinuxKernel), typeof(Gdk.Pixbuf), typeof(string), typeof(bool), typeof(string), typeof(string), typeof(string)); tv = new TreeView.with_model(tm); init_ui(); - - if (App.command == "install") do_install(new LinuxKernel.from_version(App.requested_version)); - + if (App.command == "install") do_install(LinuxKernel.vlist_to_klist(App.requested_versions)); update_cache(); - } private void init_ui() { init_treeview(); - init_actions(); init_infobar(); @@ -118,18 +114,20 @@ public class MainWindow : Window { // kernel icon & version // sort on the index column not on the version column - // special version/rc sorting by compare_to() + // special version number sorting built by compare_to() var col = new TreeViewColumn(); col.title = _("Kernel"); col.resizable = true; col.set_sort_column_id(COL.INDEX); col.min_width = 180; tv.append_column(col); + var k_version_icon = new CellRendererPixbuf(); k_version_icon.xpad = 4; k_version_icon.ypad = 6; col.pack_start(k_version_icon, false); col.add_attribute(k_version_icon, "pixbuf", COL.ICON); + var k_version_text = new CellRendererText(); k_version_text.ellipsize = Pango.EllipsizeMode.END; col.pack_start(k_version_text, true); @@ -206,17 +204,16 @@ public class MainWindow : Window { } private void tv_selection_changed() { + TreeModel model; + TreeIter iter; var sel = tv.get_selection(); - - TreeModel m; - TreeIter i; - var paths = sel.get_selected_rows (out m); + var paths = sel.get_selected_rows (out model); selected_kernels.clear(); foreach (var path in paths) { LinuxKernel k; - m.get_iter(out i, path); - m.get(i, 1, out k, -1); + model.get_iter(out iter, path); + model.get(iter, 1, out k, -1); selected_kernels.add(k); } @@ -229,7 +226,6 @@ public class MainWindow : Window { Gdk.Pixbuf pix_ubuntu = null; Gdk.Pixbuf pix_mainline = null; Gdk.Pixbuf pix_mainline_rc = null; - try { pix_ubuntu = new Gdk.Pixbuf.from_file (INSTALL_PREFIX + "/share/pixmaps/" + BRANDING_SHORTNAME + "/ubuntu-logo.png"); pix_mainline = new Gdk.Pixbuf.from_file (INSTALL_PREFIX + "/share/pixmaps/" + BRANDING_SHORTNAME + "/tux.png"); @@ -257,13 +253,15 @@ public class MainWindow : Window { tm.set(iter, COL.KERN, k); - // TODO store a pointer not a pixbuf p = pix_mainline; if (k.is_unstable) p = pix_mainline_rc; if (!k.is_mainline) p = pix_ubuntu; tm.set(iter, COL.ICON, p); tm.set(iter, COL.VERSION, k.version_main); + //tm.set(iter, COL.VERSION, k.kver); + //tm.set(iter, COL.VERSION, k.kname); + //tm.set(iter, COL.VERSION, k.kname.replace("linux-image-","")); tm.set(iter, COL.LOCKED, k.is_locked); @@ -280,19 +278,15 @@ public class MainWindow : Window { } private void set_button_state() { - if (selected_kernels.size == 0) { - btn_install.sensitive = false; - btn_uninstall.sensitive = false; - btn_ppa.sensitive = true; - } else { - // only allow selecting a single kernel for install/uninstall, examine the installed state - btn_install.sensitive = selected_kernels.size==1 && !selected_kernels[0].is_installed && !selected_kernels[0].is_locked; - btn_uninstall.sensitive = selected_kernels[0].is_installed && !selected_kernels[0].is_running && !selected_kernels[0].is_locked ; - btn_ppa.sensitive = (selected_kernels.size == 1) && selected_kernels[0].is_mainline; - // allow selecting multiple kernels for install/uninstall, but IF only a single selected, examine the installed state - // (the rest of the app does not have loops to process a list yet) - //btn_install.sensitive = selected_kernels.size == 1 ? !selected_kernels[0].is_installed : true; - //btn_uninstall.sensitive = selected_kernels.size == 1 ? selected_kernels[0].is_installed && !selected_kernels[0].is_running : true; + btn_install.sensitive = false; + btn_uninstall.sensitive = false; + + if (selected_kernels.size > 0) { + foreach (var k in selected_kernels) { + if (k.is_locked || k.is_running) continue; + if (k.is_installed) btn_uninstall.sensitive = true; + else btn_install.sensitive = true; + } } } @@ -305,19 +299,15 @@ public class MainWindow : Window { var button = new Button.with_label (_("Install")); hbox.pack_start (button, true, true, 0); btn_install = button; - button.clicked.connect(() => { - return_if_fail(selected_kernels.size == 1); - do_install(selected_kernels[0]); + do_install(selected_kernels); }); // uninstall button = new Button.with_label (_("Uninstall")); hbox.pack_start (button, true, true, 0); btn_uninstall = button; - button.clicked.connect(() => { - return_if_fail(selected_kernels.size > 0); do_uninstall(selected_kernels); }); @@ -325,11 +315,10 @@ public class MainWindow : Window { button = new Button.with_label ("PPA"); button.set_tooltip_text(_("Changelog, build status, etc")); hbox.pack_start (button, true, true, 0); - btn_ppa = button; button.clicked.connect(() => { string uri = App.ppa_uri; - if (selected_kernels.size == 1) uri += selected_kernels[0].kname; + if (selected_kernels.size==1 && selected_kernels[0].is_mainline) uri += selected_kernels[0].kname; uri_open(uri); }); @@ -456,14 +445,14 @@ public class MainWindow : Window { if (!try_ppa()) return; if (!App.GUI_MODE) { - LinuxKernel.query(true); + LinuxKernel.mk_kernel_list(true); return; } string message = _("Updating kernels"); var progress_window = new ProgressWindow.with_parent(this, message, true); progress_window.show_all(); - LinuxKernel.query(false, (timer, ref count, last) => { + LinuxKernel.mk_kernel_list(false, (timer, ref count, last) => { update_progress_window(progress_window, message, timer, ref count, last); }); } @@ -536,12 +525,27 @@ public class MainWindow : Window { } } - public void do_install(LinuxKernel k) { + public void do_install(Gee.ArrayList klist = new Gee.ArrayList()) { + string vlist=""; + if (App.VERBOSE>2) { + foreach (var k in klist) vlist += k.version_main+" "; + vprint("do_install("+vlist.strip()+")"); + } + + // if we jumped directly here from a notification, switch to normal interactive mode after this if (App.command == "install") App.command = "list"; - return_if_fail(!k.is_installed); - // try even if we think the net is down - // so the button responds instead of looking broken - //if (!ppa_up()) return; + + vlist = ""; + foreach (var k in klist) { + vprint(k.version_main); + if (k.is_installed) { vprint(k.version_main+" is already installed"); continue; } + if (k.is_locked) { vprint(k.version_main+" is locked"); continue; } + vprint("adding "+k.version_main); + vlist += k.version_main+" "; + } + if (vlist=="") { vprint("no installable kernels specified"); return; } + vprint("vlist=\""+vlist+"\"",3); + var term = new TerminalWindow.with_parent(this, false, true); string t_dir = create_tmp_dir(); string t_file = get_temp_file_path(t_dir)+".sh"; @@ -565,20 +569,19 @@ public class MainWindow : Window { update_cache(); }); - string sh = BRANDING_SHORTNAME; - if (App.index_is_fresh) sh += " --index-is-fresh"; - if (App.VERBOSE>1) sh += " --debug"; - sh += " --install %s\n".printf(k.version_main) - + "echo \n" - + "echo '"+_("DONE")+"'\n" - ; + string sh = "VERBOSE="+App.VERBOSE.to_string()+" "+BRANDING_SHORTNAME; + if (App.index_is_fresh) sh += " --index-is-fresh"; + sh += " --install \"" + vlist + "\"\n" + + "echo '"+_("DONE")+"'\n" + ; save_bash_script_temp(sh,t_file); term.execute_script(t_file,t_dir); - vprint(line); } public void do_uninstall(Gee.ArrayList klist) { + if (klist==null || klist.size<1) return; + var term = new TerminalWindow.with_parent(this, false, true); string t_dir = create_tmp_dir(); string t_file = get_temp_file_path(t_dir)+".sh"; @@ -595,28 +598,24 @@ public class MainWindow : Window { dir_delete(t_dir); }); - term.destroy.connect(()=>{ + term.destroy.connect(() => { this.present(); update_cache(); }); - string names = ""; + string cmd_klist = ""; foreach(var k in klist) { - if (names.length > 0) names += ","; - names += "%s".printf(k.version_main); + cmd_klist += k.version_main+" "; } - string sh = BRANDING_SHORTNAME; - if (App.index_is_fresh) sh += " --index-is-fresh"; - if (App.VERBOSE>1) sh += " --debug"; - sh += " --uninstall %s\n".printf(names) - + "echo \n" + string sh = "VERBOSE="+App.VERBOSE.to_string()+" "+BRANDING_SHORTNAME; + if (App.index_is_fresh) sh += " --index-is-fresh"; + sh += " --uninstall \"" + cmd_klist + "\"\n" + "echo '"+_("DONE")+"'\n" ; save_bash_script_temp(sh,t_file); term.execute_script(t_file,t_dir); - vprint(line); } public void uninstall_old () { @@ -641,17 +640,14 @@ public class MainWindow : Window { update_cache(); }); - string sh = BRANDING_SHORTNAME+" --uninstall-old"; - if (App.index_is_fresh) sh += " --index-is-fresh"; - if (App.VERBOSE>1) sh += " --debug"; + string sh = "VERBOSE="+App.VERBOSE.to_string()+" "+BRANDING_SHORTNAME+" --uninstall-old"; + if (App.index_is_fresh) sh += " --index-is-fresh"; sh += "\n" - + "echo \n" + "echo '"+_("DONE")+"'\n" ; save_bash_script_temp(sh,t_file); term.execute_script(t_file,t_dir); - vprint(line); } } From 5cc0df1ca44b7d63913c5cb4764685694ade593a Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Mon, 29 May 2023 19:05:30 -0400 Subject: [PATCH 335/567] fix threshold_major when show_previous=-1, fix is_mainline in split_version_string() --- .deb_build_number.mak | 2 +- BRANDING.mak | 2 +- debian/changelog | 8 ++ po/de.po | 62 +++++------ po/el.po | 62 +++++------ po/es.po | 62 +++++------ po/fr.po | 62 +++++------ po/hr.po | 62 +++++------ po/it.po | 62 +++++------ po/ko.po | 62 +++++------ po/messages.pot | 64 ++++++------ po/nl.po | 62 +++++------ po/pl.po | 62 +++++------ po/ru.po | 62 +++++------ po/sv.po | 62 +++++------ po/tr.po | 62 +++++------ po/uk.po | 62 +++++------ settings.md | 12 +-- src/Common/LinuxKernel.vala | 201 +++++++++++++++++++----------------- src/Gtk/MainWindow.vala | 4 +- 20 files changed, 562 insertions(+), 537 deletions(-) diff --git a/.deb_build_number.mak b/.deb_build_number.mak index 98334245..cb252455 100644 --- a/.deb_build_number.mak +++ b/.deb_build_number.mak @@ -1,3 +1,3 @@ # This file is generated by Makefile "make deb_build_number" -DEB_PKG_VERSION := 1.3.2 +DEB_PKG_VERSION := 1.3.3 DEB_BUILD_NUMBER := 0000 diff --git a/BRANDING.mak b/BRANDING.mak index 898d48a3..aefb6cc1 100644 --- a/BRANDING.mak +++ b/BRANDING.mak @@ -3,7 +3,7 @@ VERSION_MAJOR = 1 VERSION_MINOR = 3 -VERSION_MICRO = 2 +VERSION_MICRO = 3 BRANDING_SHORTNAME = mainline BRANDING_LONGNAME = Ubuntu Mainline Kernel Installer BRANDING_AUTHORNAME = Brian K. White diff --git a/debian/changelog b/debian/changelog index afe6f6a8..e5f84b6f 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,11 @@ +mainline (1.3.3) unstable; urgency=medium + + * fix threshold_major when show_previous=-1 + * improve some version string parsing stuff + * fix the is_mainline test in split_version_string() + + -- Brian K. White Mon, 29 May 2023 18:58:42 -0400 + mainline (1.3.2) unstable; urgency=medium * install/uninstall/download all now accept lists diff --git a/po/de.po b/po/de.po index 42ee6952..121f67f9 100644 --- a/po/de.po +++ b/po/de.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-29 06:50-0400\n" +"POT-Creation-Date: 2023-05-29 18:58-0400\n" "PO-Revision-Date: 2023-02-20 18:40+0100\n" "Last-Translator: Marvin Meysel \n" "Language-Team: German\n" @@ -61,125 +61,125 @@ msgstr "Installiert gefunden" msgid "locked" msgstr "" -#: src/Common/LinuxKernel.vala:497 src/Common/LinuxKernel.vala:1060 -#: src/Common/LinuxKernel.vala:1094 src/Common/LinuxKernel.vala:1150 +#: src/Common/LinuxKernel.vala:497 src/Common/LinuxKernel.vala:1077 +#: src/Common/LinuxKernel.vala:1111 src/Common/LinuxKernel.vala:1167 msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:732 src/Gtk/MainWindow.vala:511 +#: src/Common/LinuxKernel.vala:749 src/Gtk/MainWindow.vala:511 #: src/Gtk/MainWindow.vala:524 msgid "Running" msgstr "Läuft" -#: src/Common/LinuxKernel.vala:733 +#: src/Common/LinuxKernel.vala:750 msgid "Installed" msgstr "Installiert" -#: src/Common/LinuxKernel.vala:734 +#: src/Common/LinuxKernel.vala:751 msgid "Invalid" msgstr "Ungültig" -#: src/Common/LinuxKernel.vala:820 +#: src/Common/LinuxKernel.vala:837 msgid "Packages Available" msgstr "Verfügbare Pakete" -#: src/Common/LinuxKernel.vala:826 +#: src/Common/LinuxKernel.vala:843 msgid "Packages Installed" msgstr "Installierte Pakete" -#: src/Common/LinuxKernel.vala:851 src/lib/TeeJee.FileSystem.vala:118 +#: src/Common/LinuxKernel.vala:868 src/lib/TeeJee.FileSystem.vala:118 msgid "File not found" msgstr "Datei nicht gefunden " -#: src/Common/LinuxKernel.vala:945 +#: src/Common/LinuxKernel.vala:962 msgid "Available Kernels" msgstr "Verfügbare Kernel" -#: src/Common/LinuxKernel.vala:973 +#: src/Common/LinuxKernel.vala:990 #, fuzzy msgid "No kernels specified" msgstr "Befehl nicht angegeben" -#: src/Common/LinuxKernel.vala:980 src/Gtk/MainWindow.vala:119 +#: src/Common/LinuxKernel.vala:997 src/Gtk/MainWindow.vala:119 msgid "Kernel" msgstr "Kernel" -#: src/Common/LinuxKernel.vala:980 +#: src/Common/LinuxKernel.vala:997 #, fuzzy msgid "not found" msgstr "Datei nicht gefunden " -#: src/Common/LinuxKernel.vala:1006 +#: src/Common/LinuxKernel.vala:1023 msgid "enabled" msgstr "ermöglichte" -#: src/Common/LinuxKernel.vala:1030 +#: src/Common/LinuxKernel.vala:1047 msgid "Downloading" msgstr "Laden" -#: src/Common/LinuxKernel.vala:1055 +#: src/Common/LinuxKernel.vala:1072 msgid "is already installed." msgstr "ist bereits installiert." -#: src/Common/LinuxKernel.vala:1065 +#: src/Common/LinuxKernel.vala:1082 msgid "download failed." msgstr "" -#: src/Common/LinuxKernel.vala:1082 +#: src/Common/LinuxKernel.vala:1099 msgid "Uninstalling selected kernels" msgstr "Deinstallation des angegebenen Kernels" -#: src/Common/LinuxKernel.vala:1086 +#: src/Common/LinuxKernel.vala:1103 msgid "requested" msgstr "angefordert" -#: src/Common/LinuxKernel.vala:1089 +#: src/Common/LinuxKernel.vala:1106 msgid "not uninstalling the currently running kernel" msgstr "Den aktuell laufenden Kernel wird nicht deinstalliert" -#: src/Common/LinuxKernel.vala:1102 +#: src/Common/LinuxKernel.vala:1119 msgid "found" msgstr "gründen" -#: src/Common/LinuxKernel.vala:1107 +#: src/Common/LinuxKernel.vala:1124 msgid "No packages to un-install!" msgstr "Keine Pakete zum Deinstallieren!" -#: src/Common/LinuxKernel.vala:1146 +#: src/Common/LinuxKernel.vala:1163 #, fuzzy msgid "is the highest installed version." msgstr "Deinstallieren Sie alle bis auf die höchste installierte Version" -#: src/Common/LinuxKernel.vala:1159 +#: src/Common/LinuxKernel.vala:1176 msgid "Could not find running kernel in list" msgstr "Konnte keinen laufenden Kernel in der Liste finden" -#: src/Common/LinuxKernel.vala:1164 +#: src/Common/LinuxKernel.vala:1181 msgid "Could not find any kernels to uninstall" msgstr "Es konnten keine Kernel zum Deinstallieren gefunden werden" -#: src/Common/LinuxKernel.vala:1172 +#: src/Common/LinuxKernel.vala:1189 msgid "The following kernels will be uninstalled" msgstr "Die folgenden Kernel werden deinstalliert" -#: src/Common/LinuxKernel.vala:1176 +#: src/Common/LinuxKernel.vala:1193 msgid "Continue ?" msgstr "Weiter ?" -#: src/Common/LinuxKernel.vala:1198 src/Console/AppConsole.vala:234 +#: src/Common/LinuxKernel.vala:1215 src/Console/AppConsole.vala:234 msgid "Latest update" msgstr "Neustes Update" -#: src/Common/LinuxKernel.vala:1209 src/Console/AppConsole.vala:241 +#: src/Common/LinuxKernel.vala:1226 src/Console/AppConsole.vala:241 msgid "Latest point update" msgstr "Letzte Punktaktualisierung" -#: src/Common/LinuxKernel.vala:1217 src/Console/AppConsole.vala:246 +#: src/Common/LinuxKernel.vala:1234 src/Console/AppConsole.vala:246 #: src/Console/AppConsole.vala:262 msgid "No updates found" msgstr "Keine Updates gefunden" -#: src/Common/LinuxKernel.vala:1226 +#: src/Common/LinuxKernel.vala:1243 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Kernel-Version %s installieren? (j/n):" diff --git a/po/el.po b/po/el.po index 594828d8..ad7fe839 100644 --- a/po/el.po +++ b/po/el.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-29 06:50-0400\n" +"POT-Creation-Date: 2023-05-29 18:58-0400\n" "PO-Revision-Date: 2023-01-10 02:03-0600\n" "Last-Translator: Vasilis Kosmidis \n" "Language-Team: Greek\n" @@ -61,125 +61,125 @@ msgstr "Βρέθηκε εγκατεστημένο" msgid "locked" msgstr "" -#: src/Common/LinuxKernel.vala:497 src/Common/LinuxKernel.vala:1060 -#: src/Common/LinuxKernel.vala:1094 src/Common/LinuxKernel.vala:1150 +#: src/Common/LinuxKernel.vala:497 src/Common/LinuxKernel.vala:1077 +#: src/Common/LinuxKernel.vala:1111 src/Common/LinuxKernel.vala:1167 msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:732 src/Gtk/MainWindow.vala:511 +#: src/Common/LinuxKernel.vala:749 src/Gtk/MainWindow.vala:511 #: src/Gtk/MainWindow.vala:524 msgid "Running" msgstr "Ενεργός" -#: src/Common/LinuxKernel.vala:733 +#: src/Common/LinuxKernel.vala:750 msgid "Installed" msgstr "Εγκατεστημένος" -#: src/Common/LinuxKernel.vala:734 +#: src/Common/LinuxKernel.vala:751 msgid "Invalid" msgstr "Άκυρος" -#: src/Common/LinuxKernel.vala:820 +#: src/Common/LinuxKernel.vala:837 msgid "Packages Available" msgstr "Διαθέσιμα πακέτα" -#: src/Common/LinuxKernel.vala:826 +#: src/Common/LinuxKernel.vala:843 msgid "Packages Installed" msgstr "Εγκατεστημένα πακέτα" -#: src/Common/LinuxKernel.vala:851 src/lib/TeeJee.FileSystem.vala:118 +#: src/Common/LinuxKernel.vala:868 src/lib/TeeJee.FileSystem.vala:118 msgid "File not found" msgstr "Το αρχείο δε βρέθηκε" -#: src/Common/LinuxKernel.vala:945 +#: src/Common/LinuxKernel.vala:962 msgid "Available Kernels" msgstr "Διαθέσιμοι πυρήνες" -#: src/Common/LinuxKernel.vala:973 +#: src/Common/LinuxKernel.vala:990 #, fuzzy msgid "No kernels specified" msgstr "Η εντολή δεν προσδιορίστηκε" -#: src/Common/LinuxKernel.vala:980 src/Gtk/MainWindow.vala:119 +#: src/Common/LinuxKernel.vala:997 src/Gtk/MainWindow.vala:119 msgid "Kernel" msgstr "Πυρήνας" -#: src/Common/LinuxKernel.vala:980 +#: src/Common/LinuxKernel.vala:997 #, fuzzy msgid "not found" msgstr "Το αρχείο δε βρέθηκε" -#: src/Common/LinuxKernel.vala:1006 +#: src/Common/LinuxKernel.vala:1023 msgid "enabled" msgstr "ενεργοποιημένη" -#: src/Common/LinuxKernel.vala:1030 +#: src/Common/LinuxKernel.vala:1047 msgid "Downloading" msgstr "Κατέβασμα" -#: src/Common/LinuxKernel.vala:1055 +#: src/Common/LinuxKernel.vala:1072 msgid "is already installed." msgstr "είναι ήδη εγκατεστημένο." -#: src/Common/LinuxKernel.vala:1065 +#: src/Common/LinuxKernel.vala:1082 msgid "download failed." msgstr "" -#: src/Common/LinuxKernel.vala:1082 +#: src/Common/LinuxKernel.vala:1099 msgid "Uninstalling selected kernels" msgstr "Απεγκατάσταση επιλεγμένων πυρήνων" -#: src/Common/LinuxKernel.vala:1086 +#: src/Common/LinuxKernel.vala:1103 msgid "requested" msgstr "ζητήθηκε" -#: src/Common/LinuxKernel.vala:1089 +#: src/Common/LinuxKernel.vala:1106 msgid "not uninstalling the currently running kernel" msgstr "δεν θα απεγκαταστήσει τον πυρήνα που εκτελείται αυτήν τη στιγμή" -#: src/Common/LinuxKernel.vala:1102 +#: src/Common/LinuxKernel.vala:1119 msgid "found" msgstr "ιδρύω" -#: src/Common/LinuxKernel.vala:1107 +#: src/Common/LinuxKernel.vala:1124 msgid "No packages to un-install!" msgstr "Δεν υπάρχουν πακέτα για απεγκατάσταση!" -#: src/Common/LinuxKernel.vala:1146 +#: src/Common/LinuxKernel.vala:1163 #, fuzzy msgid "is the highest installed version." msgstr "Απεγκαταστήστε όλες εκτός από την υψηλότερη εγκατεστημένη έκδοση" -#: src/Common/LinuxKernel.vala:1159 +#: src/Common/LinuxKernel.vala:1176 msgid "Could not find running kernel in list" msgstr "Δεν ήταν δυνατή η εύρεση του πυρήνα που εκτελείται αυτήν τη στιγμή" -#: src/Common/LinuxKernel.vala:1164 +#: src/Common/LinuxKernel.vala:1181 msgid "Could not find any kernels to uninstall" msgstr "Δεν βρέθηκε κανένας πυρήνας για απεγκατάσταση" -#: src/Common/LinuxKernel.vala:1172 +#: src/Common/LinuxKernel.vala:1189 msgid "The following kernels will be uninstalled" msgstr "Θα καταργηθεί η εγκατάσταση των ακόλουθων πυρήνων" -#: src/Common/LinuxKernel.vala:1176 +#: src/Common/LinuxKernel.vala:1193 msgid "Continue ?" msgstr "Συνέχεια;" -#: src/Common/LinuxKernel.vala:1198 src/Console/AppConsole.vala:234 +#: src/Common/LinuxKernel.vala:1215 src/Console/AppConsole.vala:234 msgid "Latest update" msgstr "Τελευταία αναβάθμιση" -#: src/Common/LinuxKernel.vala:1209 src/Console/AppConsole.vala:241 +#: src/Common/LinuxKernel.vala:1226 src/Console/AppConsole.vala:241 msgid "Latest point update" msgstr "Τελευταία ενημέρωση συντήρησης" -#: src/Common/LinuxKernel.vala:1217 src/Console/AppConsole.vala:246 +#: src/Common/LinuxKernel.vala:1234 src/Console/AppConsole.vala:246 #: src/Console/AppConsole.vala:262 msgid "No updates found" msgstr "Δεν βρέθηκαν ενημερώσεις" -#: src/Common/LinuxKernel.vala:1226 +#: src/Common/LinuxKernel.vala:1243 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Εγκατάσταση του πυρήνα έκδοσης %s ; (ν/ό):" diff --git a/po/es.po b/po/es.po index 115cd7ed..f1c3e756 100644 --- a/po/es.po +++ b/po/es.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-29 06:50-0400\n" +"POT-Creation-Date: 2023-05-29 18:58-0400\n" "PO-Revision-Date: 2018-01-03 02:03-0600\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish\n" @@ -61,125 +61,125 @@ msgstr "Encontrado instalado" msgid "locked" msgstr "" -#: src/Common/LinuxKernel.vala:497 src/Common/LinuxKernel.vala:1060 -#: src/Common/LinuxKernel.vala:1094 src/Common/LinuxKernel.vala:1150 +#: src/Common/LinuxKernel.vala:497 src/Common/LinuxKernel.vala:1077 +#: src/Common/LinuxKernel.vala:1111 src/Common/LinuxKernel.vala:1167 msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:732 src/Gtk/MainWindow.vala:511 +#: src/Common/LinuxKernel.vala:749 src/Gtk/MainWindow.vala:511 #: src/Gtk/MainWindow.vala:524 msgid "Running" msgstr "En ejecución" -#: src/Common/LinuxKernel.vala:733 +#: src/Common/LinuxKernel.vala:750 msgid "Installed" msgstr "Instalado" -#: src/Common/LinuxKernel.vala:734 +#: src/Common/LinuxKernel.vala:751 msgid "Invalid" msgstr "No válido" -#: src/Common/LinuxKernel.vala:820 +#: src/Common/LinuxKernel.vala:837 msgid "Packages Available" msgstr "Paquetes disponibles" -#: src/Common/LinuxKernel.vala:826 +#: src/Common/LinuxKernel.vala:843 msgid "Packages Installed" msgstr "Paquetes instalados" -#: src/Common/LinuxKernel.vala:851 src/lib/TeeJee.FileSystem.vala:118 +#: src/Common/LinuxKernel.vala:868 src/lib/TeeJee.FileSystem.vala:118 msgid "File not found" msgstr "No se encontró el archivo" -#: src/Common/LinuxKernel.vala:945 +#: src/Common/LinuxKernel.vala:962 msgid "Available Kernels" msgstr "Núcleos disponibles" -#: src/Common/LinuxKernel.vala:973 +#: src/Common/LinuxKernel.vala:990 #, fuzzy msgid "No kernels specified" msgstr "Coomand no especificado" -#: src/Common/LinuxKernel.vala:980 src/Gtk/MainWindow.vala:119 +#: src/Common/LinuxKernel.vala:997 src/Gtk/MainWindow.vala:119 msgid "Kernel" msgstr "Núcleo" -#: src/Common/LinuxKernel.vala:980 +#: src/Common/LinuxKernel.vala:997 #, fuzzy msgid "not found" msgstr "No se encontró el archivo" -#: src/Common/LinuxKernel.vala:1006 +#: src/Common/LinuxKernel.vala:1023 msgid "enabled" msgstr "habilitado" -#: src/Common/LinuxKernel.vala:1030 +#: src/Common/LinuxKernel.vala:1047 msgid "Downloading" msgstr "Descargar" -#: src/Common/LinuxKernel.vala:1055 +#: src/Common/LinuxKernel.vala:1072 msgid "is already installed." msgstr "ya está instalado." -#: src/Common/LinuxKernel.vala:1065 +#: src/Common/LinuxKernel.vala:1082 msgid "download failed." msgstr "" -#: src/Common/LinuxKernel.vala:1082 +#: src/Common/LinuxKernel.vala:1099 msgid "Uninstalling selected kernels" msgstr "Desinstalación de kernels seleccionados" -#: src/Common/LinuxKernel.vala:1086 +#: src/Common/LinuxKernel.vala:1103 msgid "requested" msgstr "solicitado" -#: src/Common/LinuxKernel.vala:1089 +#: src/Common/LinuxKernel.vala:1106 msgid "not uninstalling the currently running kernel" msgstr "No desinstalará el kernel que se está ejecutando actualmente" -#: src/Common/LinuxKernel.vala:1102 +#: src/Common/LinuxKernel.vala:1119 msgid "found" msgstr "fundar" -#: src/Common/LinuxKernel.vala:1107 +#: src/Common/LinuxKernel.vala:1124 msgid "No packages to un-install!" msgstr "¡No hay paquetes para desinstalar!" -#: src/Common/LinuxKernel.vala:1146 +#: src/Common/LinuxKernel.vala:1163 #, fuzzy msgid "is the highest installed version." msgstr "Desinstale todas las versiones instaladas excepto la más alta" -#: src/Common/LinuxKernel.vala:1159 +#: src/Common/LinuxKernel.vala:1176 msgid "Could not find running kernel in list" msgstr "No se pudo encontrar el kernel en ejecución en la lista" -#: src/Common/LinuxKernel.vala:1164 +#: src/Common/LinuxKernel.vala:1181 msgid "Could not find any kernels to uninstall" msgstr "No se pudo encontrar ningún kernel para desinstalar" -#: src/Common/LinuxKernel.vala:1172 +#: src/Common/LinuxKernel.vala:1189 msgid "The following kernels will be uninstalled" msgstr "Se desinstalarán los siguientes kernels" -#: src/Common/LinuxKernel.vala:1176 +#: src/Common/LinuxKernel.vala:1193 msgid "Continue ?" msgstr "¿Continuar?" -#: src/Common/LinuxKernel.vala:1198 src/Console/AppConsole.vala:234 +#: src/Common/LinuxKernel.vala:1215 src/Console/AppConsole.vala:234 msgid "Latest update" msgstr "Última actualización" -#: src/Common/LinuxKernel.vala:1209 src/Console/AppConsole.vala:241 +#: src/Common/LinuxKernel.vala:1226 src/Console/AppConsole.vala:241 msgid "Latest point update" msgstr "Última actualización puntual" -#: src/Common/LinuxKernel.vala:1217 src/Console/AppConsole.vala:246 +#: src/Common/LinuxKernel.vala:1234 src/Console/AppConsole.vala:246 #: src/Console/AppConsole.vala:262 msgid "No updates found" msgstr "No se encontró ninguna actualización" -#: src/Common/LinuxKernel.vala:1226 +#: src/Common/LinuxKernel.vala:1243 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Instalar la versión del kernel %s? (s/n): " diff --git a/po/fr.po b/po/fr.po index 586ecbd6..6d7e71f2 100644 --- a/po/fr.po +++ b/po/fr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-29 06:50-0400\n" +"POT-Creation-Date: 2023-05-29 18:58-0400\n" "PO-Revision-Date: 2018-08-05 15:50+0200\n" "Last-Translator: Yolateng0 \n" "Language-Team: French\n" @@ -61,125 +61,125 @@ msgstr "Trouvé installé" msgid "locked" msgstr "" -#: src/Common/LinuxKernel.vala:497 src/Common/LinuxKernel.vala:1060 -#: src/Common/LinuxKernel.vala:1094 src/Common/LinuxKernel.vala:1150 +#: src/Common/LinuxKernel.vala:497 src/Common/LinuxKernel.vala:1077 +#: src/Common/LinuxKernel.vala:1111 src/Common/LinuxKernel.vala:1167 msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:732 src/Gtk/MainWindow.vala:511 +#: src/Common/LinuxKernel.vala:749 src/Gtk/MainWindow.vala:511 #: src/Gtk/MainWindow.vala:524 msgid "Running" msgstr "Actuel" -#: src/Common/LinuxKernel.vala:733 +#: src/Common/LinuxKernel.vala:750 msgid "Installed" msgstr "Installé" -#: src/Common/LinuxKernel.vala:734 +#: src/Common/LinuxKernel.vala:751 msgid "Invalid" msgstr "No válido" -#: src/Common/LinuxKernel.vala:820 +#: src/Common/LinuxKernel.vala:837 msgid "Packages Available" msgstr "Paquets Disponibles" -#: src/Common/LinuxKernel.vala:826 +#: src/Common/LinuxKernel.vala:843 msgid "Packages Installed" msgstr "Paquets Installés" -#: src/Common/LinuxKernel.vala:851 src/lib/TeeJee.FileSystem.vala:118 +#: src/Common/LinuxKernel.vala:868 src/lib/TeeJee.FileSystem.vala:118 msgid "File not found" msgstr "Fichier non trouvé" -#: src/Common/LinuxKernel.vala:945 +#: src/Common/LinuxKernel.vala:962 msgid "Available Kernels" msgstr "Noyaux Disponibles" -#: src/Common/LinuxKernel.vala:973 +#: src/Common/LinuxKernel.vala:990 #, fuzzy msgid "No kernels specified" msgstr "Pas de commande fournie" -#: src/Common/LinuxKernel.vala:980 src/Gtk/MainWindow.vala:119 +#: src/Common/LinuxKernel.vala:997 src/Gtk/MainWindow.vala:119 msgid "Kernel" msgstr "Noyau" -#: src/Common/LinuxKernel.vala:980 +#: src/Common/LinuxKernel.vala:997 #, fuzzy msgid "not found" msgstr "Fichier non trouvé" -#: src/Common/LinuxKernel.vala:1006 +#: src/Common/LinuxKernel.vala:1023 msgid "enabled" msgstr "activé" -#: src/Common/LinuxKernel.vala:1030 +#: src/Common/LinuxKernel.vala:1047 msgid "Downloading" msgstr "Téléchargement" -#: src/Common/LinuxKernel.vala:1055 +#: src/Common/LinuxKernel.vala:1072 msgid "is already installed." msgstr "est déjà installé." -#: src/Common/LinuxKernel.vala:1065 +#: src/Common/LinuxKernel.vala:1082 msgid "download failed." msgstr "" -#: src/Common/LinuxKernel.vala:1082 +#: src/Common/LinuxKernel.vala:1099 msgid "Uninstalling selected kernels" msgstr "Désinstallation des noyaux sélectionnés" -#: src/Common/LinuxKernel.vala:1086 +#: src/Common/LinuxKernel.vala:1103 msgid "requested" msgstr "Demandé" -#: src/Common/LinuxKernel.vala:1089 +#: src/Common/LinuxKernel.vala:1106 msgid "not uninstalling the currently running kernel" msgstr "Ne pas désinstaller le noyau en cours d'exécution" -#: src/Common/LinuxKernel.vala:1102 +#: src/Common/LinuxKernel.vala:1119 msgid "found" msgstr "fonder" -#: src/Common/LinuxKernel.vala:1107 +#: src/Common/LinuxKernel.vala:1124 msgid "No packages to un-install!" msgstr "Pas de paquets à désinstaller !" -#: src/Common/LinuxKernel.vala:1146 +#: src/Common/LinuxKernel.vala:1163 #, fuzzy msgid "is the highest installed version." msgstr "Désinstallez toutes le version installées, sauf la plus élevée" -#: src/Common/LinuxKernel.vala:1159 +#: src/Common/LinuxKernel.vala:1176 msgid "Could not find running kernel in list" msgstr "Impossible de trouver le noyau en cours d'exécution dans la liste" -#: src/Common/LinuxKernel.vala:1164 +#: src/Common/LinuxKernel.vala:1181 msgid "Could not find any kernels to uninstall" msgstr "Impossible de trouver des noyaux à désinstaller" -#: src/Common/LinuxKernel.vala:1172 +#: src/Common/LinuxKernel.vala:1189 msgid "The following kernels will be uninstalled" msgstr "Les noyaux suivants seront désinstallés" -#: src/Common/LinuxKernel.vala:1176 +#: src/Common/LinuxKernel.vala:1193 msgid "Continue ?" msgstr "Reprendre ?" -#: src/Common/LinuxKernel.vala:1198 src/Console/AppConsole.vala:234 +#: src/Common/LinuxKernel.vala:1215 src/Console/AppConsole.vala:234 msgid "Latest update" msgstr "Dernière mise à jour" -#: src/Common/LinuxKernel.vala:1209 src/Console/AppConsole.vala:241 +#: src/Common/LinuxKernel.vala:1226 src/Console/AppConsole.vala:241 msgid "Latest point update" msgstr "Dernière mise à jour mineure" -#: src/Common/LinuxKernel.vala:1217 src/Console/AppConsole.vala:246 +#: src/Common/LinuxKernel.vala:1234 src/Console/AppConsole.vala:246 #: src/Console/AppConsole.vala:262 msgid "No updates found" msgstr "Aucune mise à jour disponible" -#: src/Common/LinuxKernel.vala:1226 +#: src/Common/LinuxKernel.vala:1243 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Installer le noyau en version %s ? (y/n): " diff --git a/po/hr.po b/po/hr.po index 48aa1afd..5fd3df9a 100644 --- a/po/hr.po +++ b/po/hr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-29 06:50-0400\n" +"POT-Creation-Date: 2023-05-29 18:58-0400\n" "PO-Revision-Date: 2022-09-22 12:13+0200\n" "Last-Translator: gogo \n" "Language-Team: Croatian\n" @@ -61,125 +61,125 @@ msgstr "Pronađeno instalirano" msgid "locked" msgstr "" -#: src/Common/LinuxKernel.vala:497 src/Common/LinuxKernel.vala:1060 -#: src/Common/LinuxKernel.vala:1094 src/Common/LinuxKernel.vala:1150 +#: src/Common/LinuxKernel.vala:497 src/Common/LinuxKernel.vala:1077 +#: src/Common/LinuxKernel.vala:1111 src/Common/LinuxKernel.vala:1167 msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:732 src/Gtk/MainWindow.vala:511 +#: src/Common/LinuxKernel.vala:749 src/Gtk/MainWindow.vala:511 #: src/Gtk/MainWindow.vala:524 msgid "Running" msgstr "Pokrenuto" -#: src/Common/LinuxKernel.vala:733 +#: src/Common/LinuxKernel.vala:750 msgid "Installed" msgstr "Instalirano" -#: src/Common/LinuxKernel.vala:734 +#: src/Common/LinuxKernel.vala:751 msgid "Invalid" msgstr "Érvénytelen" -#: src/Common/LinuxKernel.vala:820 +#: src/Common/LinuxKernel.vala:837 msgid "Packages Available" msgstr "Dostupni Paketi" -#: src/Common/LinuxKernel.vala:826 +#: src/Common/LinuxKernel.vala:843 msgid "Packages Installed" msgstr "Instalirani paketi" -#: src/Common/LinuxKernel.vala:851 src/lib/TeeJee.FileSystem.vala:118 +#: src/Common/LinuxKernel.vala:868 src/lib/TeeJee.FileSystem.vala:118 msgid "File not found" msgstr "Datoteka nije pronađena" -#: src/Common/LinuxKernel.vala:945 +#: src/Common/LinuxKernel.vala:962 msgid "Available Kernels" msgstr "Dostupni kerneli" -#: src/Common/LinuxKernel.vala:973 +#: src/Common/LinuxKernel.vala:990 #, fuzzy msgid "No kernels specified" msgstr "Naredba nije navedena" -#: src/Common/LinuxKernel.vala:980 src/Gtk/MainWindow.vala:119 +#: src/Common/LinuxKernel.vala:997 src/Gtk/MainWindow.vala:119 msgid "Kernel" msgstr "Kernel" -#: src/Common/LinuxKernel.vala:980 +#: src/Common/LinuxKernel.vala:997 #, fuzzy msgid "not found" msgstr "Datoteka nije pronađena" -#: src/Common/LinuxKernel.vala:1006 +#: src/Common/LinuxKernel.vala:1023 msgid "enabled" msgstr "omogućen" -#: src/Common/LinuxKernel.vala:1030 +#: src/Common/LinuxKernel.vala:1047 msgid "Downloading" msgstr "Učitavanje" -#: src/Common/LinuxKernel.vala:1055 +#: src/Common/LinuxKernel.vala:1072 msgid "is already installed." msgstr "je već instaliran." -#: src/Common/LinuxKernel.vala:1065 +#: src/Common/LinuxKernel.vala:1082 msgid "download failed." msgstr "" -#: src/Common/LinuxKernel.vala:1082 +#: src/Common/LinuxKernel.vala:1099 msgid "Uninstalling selected kernels" msgstr "Deinstaliraj određene kernele" -#: src/Common/LinuxKernel.vala:1086 +#: src/Common/LinuxKernel.vala:1103 msgid "requested" msgstr "Zatražio" -#: src/Common/LinuxKernel.vala:1089 +#: src/Common/LinuxKernel.vala:1106 msgid "not uninstalling the currently running kernel" msgstr "ne deinstaliranje trenutno pokrenute kernel" -#: src/Common/LinuxKernel.vala:1102 +#: src/Common/LinuxKernel.vala:1119 msgid "found" msgstr "pronađen" -#: src/Common/LinuxKernel.vala:1107 +#: src/Common/LinuxKernel.vala:1124 msgid "No packages to un-install!" msgstr "Nema paketa za poništavanje instalacije!" -#: src/Common/LinuxKernel.vala:1146 +#: src/Common/LinuxKernel.vala:1163 #, fuzzy msgid "is the highest installed version." msgstr "Deinstaliraj sve osim najnovije instalirane verzije" -#: src/Common/LinuxKernel.vala:1159 +#: src/Common/LinuxKernel.vala:1176 msgid "Could not find running kernel in list" msgstr "Nije moguće pronaći pokrenutu kernel na popisu" -#: src/Common/LinuxKernel.vala:1164 +#: src/Common/LinuxKernel.vala:1181 msgid "Could not find any kernels to uninstall" msgstr "Nema pronađenih kernela za deinstaliranje" -#: src/Common/LinuxKernel.vala:1172 +#: src/Common/LinuxKernel.vala:1189 msgid "The following kernels will be uninstalled" msgstr "Deinstalirat će se sljedeće kerneli" -#: src/Common/LinuxKernel.vala:1176 +#: src/Common/LinuxKernel.vala:1193 msgid "Continue ?" msgstr "Nastavi?" -#: src/Common/LinuxKernel.vala:1198 src/Console/AppConsole.vala:234 +#: src/Common/LinuxKernel.vala:1215 src/Console/AppConsole.vala:234 msgid "Latest update" msgstr "Najnovija nadopuna" -#: src/Common/LinuxKernel.vala:1209 src/Console/AppConsole.vala:241 +#: src/Common/LinuxKernel.vala:1226 src/Console/AppConsole.vala:241 msgid "Latest point update" msgstr "Najnovija ciljana nadopuna" -#: src/Common/LinuxKernel.vala:1217 src/Console/AppConsole.vala:246 +#: src/Common/LinuxKernel.vala:1234 src/Console/AppConsole.vala:246 #: src/Console/AppConsole.vala:262 msgid "No updates found" msgstr "Nema pronađenih nadopuna" -#: src/Common/LinuxKernel.vala:1226 +#: src/Common/LinuxKernel.vala:1243 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Instaliraj kernel inačice %s ? (d/n): " diff --git a/po/it.po b/po/it.po index df749724..f490cfca 100644 --- a/po/it.po +++ b/po/it.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-29 06:50-0400\n" +"POT-Creation-Date: 2023-05-29 18:58-0400\n" "PO-Revision-Date: 2020-08-22 15:35+0100\n" "Last-Translator: Demetrio Mendozzi\n" "Language-Team: Italian\n" @@ -59,125 +59,125 @@ msgstr "Trovato installato" msgid "locked" msgstr "" -#: src/Common/LinuxKernel.vala:497 src/Common/LinuxKernel.vala:1060 -#: src/Common/LinuxKernel.vala:1094 src/Common/LinuxKernel.vala:1150 +#: src/Common/LinuxKernel.vala:497 src/Common/LinuxKernel.vala:1077 +#: src/Common/LinuxKernel.vala:1111 src/Common/LinuxKernel.vala:1167 msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:732 src/Gtk/MainWindow.vala:511 +#: src/Common/LinuxKernel.vala:749 src/Gtk/MainWindow.vala:511 #: src/Gtk/MainWindow.vala:524 msgid "Running" msgstr "In esecuzione" -#: src/Common/LinuxKernel.vala:733 +#: src/Common/LinuxKernel.vala:750 msgid "Installed" msgstr "Installato" -#: src/Common/LinuxKernel.vala:734 +#: src/Common/LinuxKernel.vala:751 msgid "Invalid" msgstr "Non valido" -#: src/Common/LinuxKernel.vala:820 +#: src/Common/LinuxKernel.vala:837 msgid "Packages Available" msgstr "Pacchetti disponibili" -#: src/Common/LinuxKernel.vala:826 +#: src/Common/LinuxKernel.vala:843 msgid "Packages Installed" msgstr "Pacchetti installati" -#: src/Common/LinuxKernel.vala:851 src/lib/TeeJee.FileSystem.vala:118 +#: src/Common/LinuxKernel.vala:868 src/lib/TeeJee.FileSystem.vala:118 msgid "File not found" msgstr "File non trovato" -#: src/Common/LinuxKernel.vala:945 +#: src/Common/LinuxKernel.vala:962 msgid "Available Kernels" msgstr "Kernel disponibili" -#: src/Common/LinuxKernel.vala:973 +#: src/Common/LinuxKernel.vala:990 #, fuzzy msgid "No kernels specified" msgstr "Comando non specificato" -#: src/Common/LinuxKernel.vala:980 src/Gtk/MainWindow.vala:119 +#: src/Common/LinuxKernel.vala:997 src/Gtk/MainWindow.vala:119 msgid "Kernel" msgstr "Kernel" -#: src/Common/LinuxKernel.vala:980 +#: src/Common/LinuxKernel.vala:997 #, fuzzy msgid "not found" msgstr "File non trovato" -#: src/Common/LinuxKernel.vala:1006 +#: src/Common/LinuxKernel.vala:1023 msgid "enabled" msgstr "abilitato" -#: src/Common/LinuxKernel.vala:1030 +#: src/Common/LinuxKernel.vala:1047 msgid "Downloading" msgstr "Scaricamento" -#: src/Common/LinuxKernel.vala:1055 +#: src/Common/LinuxKernel.vala:1072 msgid "is already installed." msgstr "è già installato." -#: src/Common/LinuxKernel.vala:1065 +#: src/Common/LinuxKernel.vala:1082 msgid "download failed." msgstr "" -#: src/Common/LinuxKernel.vala:1082 +#: src/Common/LinuxKernel.vala:1099 msgid "Uninstalling selected kernels" msgstr "Disinstalla i kernel specificati" -#: src/Common/LinuxKernel.vala:1086 +#: src/Common/LinuxKernel.vala:1103 msgid "requested" msgstr "richiesto" -#: src/Common/LinuxKernel.vala:1089 +#: src/Common/LinuxKernel.vala:1106 msgid "not uninstalling the currently running kernel" msgstr "non disinstallare il kernel attualmente in esecuzione" -#: src/Common/LinuxKernel.vala:1102 +#: src/Common/LinuxKernel.vala:1119 msgid "found" msgstr "trovato" -#: src/Common/LinuxKernel.vala:1107 +#: src/Common/LinuxKernel.vala:1124 msgid "No packages to un-install!" msgstr "Nessun pacchetto da disinstallare!" -#: src/Common/LinuxKernel.vala:1146 +#: src/Common/LinuxKernel.vala:1163 #, fuzzy msgid "is the highest installed version." msgstr "Disinstallare tutti tranne la versione più recente installata" -#: src/Common/LinuxKernel.vala:1159 +#: src/Common/LinuxKernel.vala:1176 msgid "Could not find running kernel in list" msgstr "Impossibile trovare il kernel in esecuzione nell'elenco" -#: src/Common/LinuxKernel.vala:1164 +#: src/Common/LinuxKernel.vala:1181 msgid "Could not find any kernels to uninstall" msgstr "Impossibile trovare alcun kernel da rimuovere" -#: src/Common/LinuxKernel.vala:1172 +#: src/Common/LinuxKernel.vala:1189 msgid "The following kernels will be uninstalled" msgstr "I seguenti kernel saranno rimossi" -#: src/Common/LinuxKernel.vala:1176 +#: src/Common/LinuxKernel.vala:1193 msgid "Continue ?" msgstr "Continuare ?" -#: src/Common/LinuxKernel.vala:1198 src/Console/AppConsole.vala:234 +#: src/Common/LinuxKernel.vala:1215 src/Console/AppConsole.vala:234 msgid "Latest update" msgstr "Ultimo aggiornamento" -#: src/Common/LinuxKernel.vala:1209 src/Console/AppConsole.vala:241 +#: src/Common/LinuxKernel.vala:1226 src/Console/AppConsole.vala:241 msgid "Latest point update" msgstr "Ultimo aggiornamento del rilascio parziale" -#: src/Common/LinuxKernel.vala:1217 src/Console/AppConsole.vala:246 +#: src/Common/LinuxKernel.vala:1234 src/Console/AppConsole.vala:246 #: src/Console/AppConsole.vala:262 msgid "No updates found" msgstr "Nessun aggiornamento trovato" -#: src/Common/LinuxKernel.vala:1226 +#: src/Common/LinuxKernel.vala:1243 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Installare la versione del kernel %s ? (y/n): " diff --git a/po/ko.po b/po/ko.po index 3d017507..25b926eb 100644 --- a/po/ko.po +++ b/po/ko.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-29 06:50-0400\n" +"POT-Creation-Date: 2023-05-29 18:58-0400\n" "PO-Revision-Date: 2022-09-28 11:48+0900\n" "Last-Translator: Kevin Kim \n" "Language-Team: Korean\n" @@ -61,125 +61,125 @@ msgstr "설치된 것을 찾았습니다" msgid "locked" msgstr "" -#: src/Common/LinuxKernel.vala:497 src/Common/LinuxKernel.vala:1060 -#: src/Common/LinuxKernel.vala:1094 src/Common/LinuxKernel.vala:1150 +#: src/Common/LinuxKernel.vala:497 src/Common/LinuxKernel.vala:1077 +#: src/Common/LinuxKernel.vala:1111 src/Common/LinuxKernel.vala:1167 msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:732 src/Gtk/MainWindow.vala:511 +#: src/Common/LinuxKernel.vala:749 src/Gtk/MainWindow.vala:511 #: src/Gtk/MainWindow.vala:524 msgid "Running" msgstr "구동 중" -#: src/Common/LinuxKernel.vala:733 +#: src/Common/LinuxKernel.vala:750 msgid "Installed" msgstr "설치 됨" -#: src/Common/LinuxKernel.vala:734 +#: src/Common/LinuxKernel.vala:751 msgid "Invalid" msgstr "사용할 수 없음" -#: src/Common/LinuxKernel.vala:820 +#: src/Common/LinuxKernel.vala:837 msgid "Packages Available" msgstr "설치 가능한 패키지" -#: src/Common/LinuxKernel.vala:826 +#: src/Common/LinuxKernel.vala:843 msgid "Packages Installed" msgstr "설치된 패키지" -#: src/Common/LinuxKernel.vala:851 src/lib/TeeJee.FileSystem.vala:118 +#: src/Common/LinuxKernel.vala:868 src/lib/TeeJee.FileSystem.vala:118 msgid "File not found" msgstr "파일을 찾을 수 없습니다" -#: src/Common/LinuxKernel.vala:945 +#: src/Common/LinuxKernel.vala:962 msgid "Available Kernels" msgstr "설치 가능한 커널" -#: src/Common/LinuxKernel.vala:973 +#: src/Common/LinuxKernel.vala:990 #, fuzzy msgid "No kernels specified" msgstr "지정한 명령어가 없습니다" -#: src/Common/LinuxKernel.vala:980 src/Gtk/MainWindow.vala:119 +#: src/Common/LinuxKernel.vala:997 src/Gtk/MainWindow.vala:119 msgid "Kernel" msgstr "커널" -#: src/Common/LinuxKernel.vala:980 +#: src/Common/LinuxKernel.vala:997 #, fuzzy msgid "not found" msgstr "파일을 찾을 수 없습니다" -#: src/Common/LinuxKernel.vala:1006 +#: src/Common/LinuxKernel.vala:1023 msgid "enabled" msgstr "사용" -#: src/Common/LinuxKernel.vala:1030 +#: src/Common/LinuxKernel.vala:1047 msgid "Downloading" msgstr "다운로드" -#: src/Common/LinuxKernel.vala:1055 +#: src/Common/LinuxKernel.vala:1072 msgid "is already installed." msgstr "가 이미 설치되어 있습니다" -#: src/Common/LinuxKernel.vala:1065 +#: src/Common/LinuxKernel.vala:1082 msgid "download failed." msgstr "" -#: src/Common/LinuxKernel.vala:1082 +#: src/Common/LinuxKernel.vala:1099 msgid "Uninstalling selected kernels" msgstr "선택한 커널 제거" -#: src/Common/LinuxKernel.vala:1086 +#: src/Common/LinuxKernel.vala:1103 msgid "requested" msgstr "요청" -#: src/Common/LinuxKernel.vala:1089 +#: src/Common/LinuxKernel.vala:1106 msgid "not uninstalling the currently running kernel" msgstr "현재 실행 중인 커널을 제거하지 않음" -#: src/Common/LinuxKernel.vala:1102 +#: src/Common/LinuxKernel.vala:1119 msgid "found" msgstr "설립하다" -#: src/Common/LinuxKernel.vala:1107 +#: src/Common/LinuxKernel.vala:1124 msgid "No packages to un-install!" msgstr "제거 할 패키지가 없습니다!" -#: src/Common/LinuxKernel.vala:1146 +#: src/Common/LinuxKernel.vala:1163 #, fuzzy msgid "is the highest installed version." msgstr "설치된 가장 높은 버전을 제외한 모든 버전을 제거합니다" -#: src/Common/LinuxKernel.vala:1159 +#: src/Common/LinuxKernel.vala:1176 msgid "Could not find running kernel in list" msgstr "현재 실행 중인 커널을 찾을 수 없습니다" -#: src/Common/LinuxKernel.vala:1164 +#: src/Common/LinuxKernel.vala:1181 msgid "Could not find any kernels to uninstall" msgstr "삭제할 커널을 찾을 수 없습니다" -#: src/Common/LinuxKernel.vala:1172 +#: src/Common/LinuxKernel.vala:1189 msgid "The following kernels will be uninstalled" msgstr "풀이" -#: src/Common/LinuxKernel.vala:1176 +#: src/Common/LinuxKernel.vala:1193 msgid "Continue ?" msgstr "계속하시겠습니까?" -#: src/Common/LinuxKernel.vala:1198 src/Console/AppConsole.vala:234 +#: src/Common/LinuxKernel.vala:1215 src/Console/AppConsole.vala:234 msgid "Latest update" msgstr "최신 업데이트" -#: src/Common/LinuxKernel.vala:1209 src/Console/AppConsole.vala:241 +#: src/Common/LinuxKernel.vala:1226 src/Console/AppConsole.vala:241 msgid "Latest point update" msgstr "최신 포인트 업데이트" -#: src/Common/LinuxKernel.vala:1217 src/Console/AppConsole.vala:246 +#: src/Common/LinuxKernel.vala:1234 src/Console/AppConsole.vala:246 #: src/Console/AppConsole.vala:262 msgid "No updates found" msgstr "업데이트를 찾을 수 없습니다" -#: src/Common/LinuxKernel.vala:1226 +#: src/Common/LinuxKernel.vala:1243 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "커널 %s 버전을 설치하시겠습니까? (y/n): " diff --git a/po/messages.pot b/po/messages.pot index eafef367..e96a0b37 100644 --- a/po/messages.pot +++ b/po/messages.pot @@ -6,9 +6,9 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: mainline 1.3.2\n" +"Project-Id-Version: mainline 1.3.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-29 06:50-0400\n" +"POT-Creation-Date: 2023-05-29 18:58-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -65,122 +65,122 @@ msgstr "" msgid "locked" msgstr "" -#: src/Common/LinuxKernel.vala:497 src/Common/LinuxKernel.vala:1060 -#: src/Common/LinuxKernel.vala:1094 src/Common/LinuxKernel.vala:1150 +#: src/Common/LinuxKernel.vala:497 src/Common/LinuxKernel.vala:1077 +#: src/Common/LinuxKernel.vala:1111 src/Common/LinuxKernel.vala:1167 msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:732 src/Gtk/MainWindow.vala:511 +#: src/Common/LinuxKernel.vala:749 src/Gtk/MainWindow.vala:511 #: src/Gtk/MainWindow.vala:524 msgid "Running" msgstr "" -#: src/Common/LinuxKernel.vala:733 +#: src/Common/LinuxKernel.vala:750 msgid "Installed" msgstr "" -#: src/Common/LinuxKernel.vala:734 +#: src/Common/LinuxKernel.vala:751 msgid "Invalid" msgstr "" -#: src/Common/LinuxKernel.vala:820 +#: src/Common/LinuxKernel.vala:837 msgid "Packages Available" msgstr "" -#: src/Common/LinuxKernel.vala:826 +#: src/Common/LinuxKernel.vala:843 msgid "Packages Installed" msgstr "" -#: src/Common/LinuxKernel.vala:851 src/lib/TeeJee.FileSystem.vala:118 +#: src/Common/LinuxKernel.vala:868 src/lib/TeeJee.FileSystem.vala:118 msgid "File not found" msgstr "" -#: src/Common/LinuxKernel.vala:945 +#: src/Common/LinuxKernel.vala:962 msgid "Available Kernels" msgstr "" -#: src/Common/LinuxKernel.vala:973 +#: src/Common/LinuxKernel.vala:990 msgid "No kernels specified" msgstr "" -#: src/Common/LinuxKernel.vala:980 src/Gtk/MainWindow.vala:119 +#: src/Common/LinuxKernel.vala:997 src/Gtk/MainWindow.vala:119 msgid "Kernel" msgstr "" -#: src/Common/LinuxKernel.vala:980 +#: src/Common/LinuxKernel.vala:997 msgid "not found" msgstr "" -#: src/Common/LinuxKernel.vala:1006 +#: src/Common/LinuxKernel.vala:1023 msgid "enabled" msgstr "" -#: src/Common/LinuxKernel.vala:1030 +#: src/Common/LinuxKernel.vala:1047 msgid "Downloading" msgstr "" -#: src/Common/LinuxKernel.vala:1055 +#: src/Common/LinuxKernel.vala:1072 msgid "is already installed." msgstr "" -#: src/Common/LinuxKernel.vala:1065 +#: src/Common/LinuxKernel.vala:1082 msgid "download failed." msgstr "" -#: src/Common/LinuxKernel.vala:1082 +#: src/Common/LinuxKernel.vala:1099 msgid "Uninstalling selected kernels" msgstr "" -#: src/Common/LinuxKernel.vala:1086 +#: src/Common/LinuxKernel.vala:1103 msgid "requested" msgstr "" -#: src/Common/LinuxKernel.vala:1089 +#: src/Common/LinuxKernel.vala:1106 msgid "not uninstalling the currently running kernel" msgstr "" -#: src/Common/LinuxKernel.vala:1102 +#: src/Common/LinuxKernel.vala:1119 msgid "found" msgstr "" -#: src/Common/LinuxKernel.vala:1107 +#: src/Common/LinuxKernel.vala:1124 msgid "No packages to un-install!" msgstr "" -#: src/Common/LinuxKernel.vala:1146 +#: src/Common/LinuxKernel.vala:1163 msgid "is the highest installed version." msgstr "" -#: src/Common/LinuxKernel.vala:1159 +#: src/Common/LinuxKernel.vala:1176 msgid "Could not find running kernel in list" msgstr "" -#: src/Common/LinuxKernel.vala:1164 +#: src/Common/LinuxKernel.vala:1181 msgid "Could not find any kernels to uninstall" msgstr "" -#: src/Common/LinuxKernel.vala:1172 +#: src/Common/LinuxKernel.vala:1189 msgid "The following kernels will be uninstalled" msgstr "" -#: src/Common/LinuxKernel.vala:1176 +#: src/Common/LinuxKernel.vala:1193 msgid "Continue ?" msgstr "" -#: src/Common/LinuxKernel.vala:1198 src/Console/AppConsole.vala:234 +#: src/Common/LinuxKernel.vala:1215 src/Console/AppConsole.vala:234 msgid "Latest update" msgstr "" -#: src/Common/LinuxKernel.vala:1209 src/Console/AppConsole.vala:241 +#: src/Common/LinuxKernel.vala:1226 src/Console/AppConsole.vala:241 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:1217 src/Console/AppConsole.vala:246 +#: src/Common/LinuxKernel.vala:1234 src/Console/AppConsole.vala:246 #: src/Console/AppConsole.vala:262 msgid "No updates found" msgstr "" -#: src/Common/LinuxKernel.vala:1226 +#: src/Common/LinuxKernel.vala:1243 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "" diff --git a/po/nl.po b/po/nl.po index a9b2cb14..ed03a9e6 100644 --- a/po/nl.po +++ b/po/nl.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-29 06:50-0400\n" +"POT-Creation-Date: 2023-05-29 18:58-0400\n" "PO-Revision-Date: 2020-08-23 13:55+0200\n" "Last-Translator: Heimen Stoffels \n" "Language-Team: Dutch (Netherlands)\n" @@ -61,125 +61,125 @@ msgstr "Geïnstalleerd gevonden" msgid "locked" msgstr "" -#: src/Common/LinuxKernel.vala:497 src/Common/LinuxKernel.vala:1060 -#: src/Common/LinuxKernel.vala:1094 src/Common/LinuxKernel.vala:1150 +#: src/Common/LinuxKernel.vala:497 src/Common/LinuxKernel.vala:1077 +#: src/Common/LinuxKernel.vala:1111 src/Common/LinuxKernel.vala:1167 msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:732 src/Gtk/MainWindow.vala:511 +#: src/Common/LinuxKernel.vala:749 src/Gtk/MainWindow.vala:511 #: src/Gtk/MainWindow.vala:524 msgid "Running" msgstr "In gebruik" -#: src/Common/LinuxKernel.vala:733 +#: src/Common/LinuxKernel.vala:750 msgid "Installed" msgstr "Geïnstalleerd" -#: src/Common/LinuxKernel.vala:734 +#: src/Common/LinuxKernel.vala:751 msgid "Invalid" msgstr "Ongeldig" -#: src/Common/LinuxKernel.vala:820 +#: src/Common/LinuxKernel.vala:837 msgid "Packages Available" msgstr "Beschikbare pakketten" -#: src/Common/LinuxKernel.vala:826 +#: src/Common/LinuxKernel.vala:843 msgid "Packages Installed" msgstr "Geïnstalleerde pakketten" -#: src/Common/LinuxKernel.vala:851 src/lib/TeeJee.FileSystem.vala:118 +#: src/Common/LinuxKernel.vala:868 src/lib/TeeJee.FileSystem.vala:118 msgid "File not found" msgstr "Het bestand is niet gevonden" -#: src/Common/LinuxKernel.vala:945 +#: src/Common/LinuxKernel.vala:962 msgid "Available Kernels" msgstr "Beschikbare kernels" -#: src/Common/LinuxKernel.vala:973 +#: src/Common/LinuxKernel.vala:990 #, fuzzy msgid "No kernels specified" msgstr "Geen opdracht opgegeven" -#: src/Common/LinuxKernel.vala:980 src/Gtk/MainWindow.vala:119 +#: src/Common/LinuxKernel.vala:997 src/Gtk/MainWindow.vala:119 msgid "Kernel" msgstr "Kernel" -#: src/Common/LinuxKernel.vala:980 +#: src/Common/LinuxKernel.vala:997 #, fuzzy msgid "not found" msgstr "Het bestand is niet gevonden" -#: src/Common/LinuxKernel.vala:1006 +#: src/Common/LinuxKernel.vala:1023 msgid "enabled" msgstr "ingeschakeld" -#: src/Common/LinuxKernel.vala:1030 +#: src/Common/LinuxKernel.vala:1047 msgid "Downloading" msgstr "Downloaden" -#: src/Common/LinuxKernel.vala:1055 +#: src/Common/LinuxKernel.vala:1072 msgid "is already installed." msgstr "is al geïnstalleerd." -#: src/Common/LinuxKernel.vala:1065 +#: src/Common/LinuxKernel.vala:1082 msgid "download failed." msgstr "" -#: src/Common/LinuxKernel.vala:1082 +#: src/Common/LinuxKernel.vala:1099 msgid "Uninstalling selected kernels" msgstr "Geselecteerde kernels verwijderen" -#: src/Common/LinuxKernel.vala:1086 +#: src/Common/LinuxKernel.vala:1103 msgid "requested" msgstr "verzocht" -#: src/Common/LinuxKernel.vala:1089 +#: src/Common/LinuxKernel.vala:1106 msgid "not uninstalling the currently running kernel" msgstr "de momenteel actieve kernel niet verwijderen" -#: src/Common/LinuxKernel.vala:1102 +#: src/Common/LinuxKernel.vala:1119 msgid "found" msgstr "gevonden" -#: src/Common/LinuxKernel.vala:1107 +#: src/Common/LinuxKernel.vala:1124 msgid "No packages to un-install!" msgstr "Geen pakketten om te verwijderen!" -#: src/Common/LinuxKernel.vala:1146 +#: src/Common/LinuxKernel.vala:1163 #, fuzzy msgid "is the highest installed version." msgstr "Verwijder alle behalve de hoogst geïnstalleerde versie" -#: src/Common/LinuxKernel.vala:1159 +#: src/Common/LinuxKernel.vala:1176 msgid "Could not find running kernel in list" msgstr "De in gebruik zijnde kernel staat niet op de lijst" -#: src/Common/LinuxKernel.vala:1164 +#: src/Common/LinuxKernel.vala:1181 msgid "Could not find any kernels to uninstall" msgstr "Er zijn geen te verwijderen kernels" -#: src/Common/LinuxKernel.vala:1172 +#: src/Common/LinuxKernel.vala:1189 msgid "The following kernels will be uninstalled" msgstr "De volgende kernels worden verwijderd" -#: src/Common/LinuxKernel.vala:1176 +#: src/Common/LinuxKernel.vala:1193 msgid "Continue ?" msgstr "Wilt u doorgaan?" -#: src/Common/LinuxKernel.vala:1198 src/Console/AppConsole.vala:234 +#: src/Common/LinuxKernel.vala:1215 src/Console/AppConsole.vala:234 msgid "Latest update" msgstr "Recentste update" -#: src/Common/LinuxKernel.vala:1209 src/Console/AppConsole.vala:241 +#: src/Common/LinuxKernel.vala:1226 src/Console/AppConsole.vala:241 msgid "Latest point update" msgstr "Recentste puntupdate" -#: src/Common/LinuxKernel.vala:1217 src/Console/AppConsole.vala:246 +#: src/Common/LinuxKernel.vala:1234 src/Console/AppConsole.vala:246 #: src/Console/AppConsole.vala:262 msgid "No updates found" msgstr "Geen updates gevonden" -#: src/Common/LinuxKernel.vala:1226 +#: src/Common/LinuxKernel.vala:1243 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Wilt u versie %s installeren? (j/n): " diff --git a/po/pl.po b/po/pl.po index a9d3ca20..0b243400 100644 --- a/po/pl.po +++ b/po/pl.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-29 06:50-0400\n" +"POT-Creation-Date: 2023-05-29 18:58-0400\n" "PO-Revision-Date: 2023-05-25 13:37+0200\n" "Last-Translator: Matthaiks\n" "Language-Team: Polish\n" @@ -60,124 +60,124 @@ msgstr "Znaleziono zainstalowane" msgid "locked" msgstr "zablokowane" -#: src/Common/LinuxKernel.vala:497 src/Common/LinuxKernel.vala:1060 -#: src/Common/LinuxKernel.vala:1094 src/Common/LinuxKernel.vala:1150 +#: src/Common/LinuxKernel.vala:497 src/Common/LinuxKernel.vala:1077 +#: src/Common/LinuxKernel.vala:1111 src/Common/LinuxKernel.vala:1167 msgid "is locked." msgstr "jest zablokowane." -#: src/Common/LinuxKernel.vala:732 src/Gtk/MainWindow.vala:511 +#: src/Common/LinuxKernel.vala:749 src/Gtk/MainWindow.vala:511 #: src/Gtk/MainWindow.vala:524 msgid "Running" msgstr "Uruchomione" -#: src/Common/LinuxKernel.vala:733 +#: src/Common/LinuxKernel.vala:750 msgid "Installed" msgstr "Zainstalowane" -#: src/Common/LinuxKernel.vala:734 +#: src/Common/LinuxKernel.vala:751 msgid "Invalid" msgstr "Nieprawidłowe" -#: src/Common/LinuxKernel.vala:820 +#: src/Common/LinuxKernel.vala:837 msgid "Packages Available" msgstr "Dostępne pakiety" -#: src/Common/LinuxKernel.vala:826 +#: src/Common/LinuxKernel.vala:843 msgid "Packages Installed" msgstr "Pakiety zainstalowane" -#: src/Common/LinuxKernel.vala:851 src/lib/TeeJee.FileSystem.vala:118 +#: src/Common/LinuxKernel.vala:868 src/lib/TeeJee.FileSystem.vala:118 msgid "File not found" msgstr "Nie odnaleziono pliku" -#: src/Common/LinuxKernel.vala:945 +#: src/Common/LinuxKernel.vala:962 msgid "Available Kernels" msgstr "Dostępne jądra" -#: src/Common/LinuxKernel.vala:973 +#: src/Common/LinuxKernel.vala:990 #, fuzzy msgid "No kernels specified" msgstr "Nie określono polecenia" -#: src/Common/LinuxKernel.vala:980 src/Gtk/MainWindow.vala:119 +#: src/Common/LinuxKernel.vala:997 src/Gtk/MainWindow.vala:119 msgid "Kernel" msgstr "Jądro" -#: src/Common/LinuxKernel.vala:980 +#: src/Common/LinuxKernel.vala:997 #, fuzzy msgid "not found" msgstr "Nie odnaleziono pliku" -#: src/Common/LinuxKernel.vala:1006 +#: src/Common/LinuxKernel.vala:1023 msgid "enabled" msgstr "włączone" -#: src/Common/LinuxKernel.vala:1030 +#: src/Common/LinuxKernel.vala:1047 msgid "Downloading" msgstr "Pobieranie" -#: src/Common/LinuxKernel.vala:1055 +#: src/Common/LinuxKernel.vala:1072 msgid "is already installed." msgstr "jest już zainstalowane." -#: src/Common/LinuxKernel.vala:1065 +#: src/Common/LinuxKernel.vala:1082 msgid "download failed." msgstr "" -#: src/Common/LinuxKernel.vala:1082 +#: src/Common/LinuxKernel.vala:1099 msgid "Uninstalling selected kernels" msgstr "Odinstalowanie wybranych jąder" -#: src/Common/LinuxKernel.vala:1086 +#: src/Common/LinuxKernel.vala:1103 msgid "requested" msgstr "zażądane" -#: src/Common/LinuxKernel.vala:1089 +#: src/Common/LinuxKernel.vala:1106 msgid "not uninstalling the currently running kernel" msgstr "bez odinstalowywania aktualnie uruchomionego jądra" -#: src/Common/LinuxKernel.vala:1102 +#: src/Common/LinuxKernel.vala:1119 msgid "found" msgstr "znalezione" -#: src/Common/LinuxKernel.vala:1107 +#: src/Common/LinuxKernel.vala:1124 msgid "No packages to un-install!" msgstr "Brak pakietów do odinstalowania!" -#: src/Common/LinuxKernel.vala:1146 +#: src/Common/LinuxKernel.vala:1163 msgid "is the highest installed version." msgstr "to najwyższa zainstalowana wersja." -#: src/Common/LinuxKernel.vala:1159 +#: src/Common/LinuxKernel.vala:1176 msgid "Could not find running kernel in list" msgstr "Nie można znaleźć uruchomionego jądra na liście" -#: src/Common/LinuxKernel.vala:1164 +#: src/Common/LinuxKernel.vala:1181 msgid "Could not find any kernels to uninstall" msgstr "Nie można znaleźć żadnych jąder do odinstalowania" -#: src/Common/LinuxKernel.vala:1172 +#: src/Common/LinuxKernel.vala:1189 msgid "The following kernels will be uninstalled" msgstr "Następujące jądra zostaną odinstalowane" -#: src/Common/LinuxKernel.vala:1176 +#: src/Common/LinuxKernel.vala:1193 msgid "Continue ?" msgstr "Kontynuować?" -#: src/Common/LinuxKernel.vala:1198 src/Console/AppConsole.vala:234 +#: src/Common/LinuxKernel.vala:1215 src/Console/AppConsole.vala:234 msgid "Latest update" msgstr "Najnowsza aktualizacja" -#: src/Common/LinuxKernel.vala:1209 src/Console/AppConsole.vala:241 +#: src/Common/LinuxKernel.vala:1226 src/Console/AppConsole.vala:241 msgid "Latest point update" msgstr "Najnowsza aktualizacja punktowa" -#: src/Common/LinuxKernel.vala:1217 src/Console/AppConsole.vala:246 +#: src/Common/LinuxKernel.vala:1234 src/Console/AppConsole.vala:246 #: src/Console/AppConsole.vala:262 msgid "No updates found" msgstr "Nie znaleziono aktualizacji" -#: src/Common/LinuxKernel.vala:1226 +#: src/Common/LinuxKernel.vala:1243 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Zainstalować wersję jądra %s? (t/n): " diff --git a/po/ru.po b/po/ru.po index 27e4c3a7..65f3ecef 100644 --- a/po/ru.po +++ b/po/ru.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-29 06:50-0400\n" +"POT-Creation-Date: 2023-05-29 18:58-0400\n" "PO-Revision-Date: 2023-04-17 20:16+0300\n" "Last-Translator: Danik2343 \n" "Language-Team: Russian\n" @@ -61,125 +61,125 @@ msgstr "Найдено установлененное" msgid "locked" msgstr "" -#: src/Common/LinuxKernel.vala:497 src/Common/LinuxKernel.vala:1060 -#: src/Common/LinuxKernel.vala:1094 src/Common/LinuxKernel.vala:1150 +#: src/Common/LinuxKernel.vala:497 src/Common/LinuxKernel.vala:1077 +#: src/Common/LinuxKernel.vala:1111 src/Common/LinuxKernel.vala:1167 msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:732 src/Gtk/MainWindow.vala:511 +#: src/Common/LinuxKernel.vala:749 src/Gtk/MainWindow.vala:511 #: src/Gtk/MainWindow.vala:524 msgid "Running" msgstr "Используется" -#: src/Common/LinuxKernel.vala:733 +#: src/Common/LinuxKernel.vala:750 msgid "Installed" msgstr "Установлено" -#: src/Common/LinuxKernel.vala:734 +#: src/Common/LinuxKernel.vala:751 msgid "Invalid" msgstr "Негодный" -#: src/Common/LinuxKernel.vala:820 +#: src/Common/LinuxKernel.vala:837 msgid "Packages Available" msgstr "Доступные пакеты" -#: src/Common/LinuxKernel.vala:826 +#: src/Common/LinuxKernel.vala:843 msgid "Packages Installed" msgstr "Установленные пакеты" -#: src/Common/LinuxKernel.vala:851 src/lib/TeeJee.FileSystem.vala:118 +#: src/Common/LinuxKernel.vala:868 src/lib/TeeJee.FileSystem.vala:118 msgid "File not found" msgstr "Файл не найден" -#: src/Common/LinuxKernel.vala:945 +#: src/Common/LinuxKernel.vala:962 msgid "Available Kernels" msgstr "Доступные ядра" -#: src/Common/LinuxKernel.vala:973 +#: src/Common/LinuxKernel.vala:990 #, fuzzy msgid "No kernels specified" msgstr "Команда не указана" -#: src/Common/LinuxKernel.vala:980 src/Gtk/MainWindow.vala:119 +#: src/Common/LinuxKernel.vala:997 src/Gtk/MainWindow.vala:119 msgid "Kernel" msgstr "Ядро" -#: src/Common/LinuxKernel.vala:980 +#: src/Common/LinuxKernel.vala:997 #, fuzzy msgid "not found" msgstr "Файл не найден" -#: src/Common/LinuxKernel.vala:1006 +#: src/Common/LinuxKernel.vala:1023 msgid "enabled" msgstr "включено" -#: src/Common/LinuxKernel.vala:1030 +#: src/Common/LinuxKernel.vala:1047 msgid "Downloading" msgstr "Загрузки" -#: src/Common/LinuxKernel.vala:1055 +#: src/Common/LinuxKernel.vala:1072 msgid "is already installed." msgstr "уже установлен." -#: src/Common/LinuxKernel.vala:1065 +#: src/Common/LinuxKernel.vala:1082 msgid "download failed." msgstr "" -#: src/Common/LinuxKernel.vala:1082 +#: src/Common/LinuxKernel.vala:1099 msgid "Uninstalling selected kernels" msgstr "Удаление выбранных ядер" -#: src/Common/LinuxKernel.vala:1086 +#: src/Common/LinuxKernel.vala:1103 msgid "requested" msgstr "запрошено" -#: src/Common/LinuxKernel.vala:1089 +#: src/Common/LinuxKernel.vala:1106 msgid "not uninstalling the currently running kernel" msgstr "не удаляет текущее работающее ядро" -#: src/Common/LinuxKernel.vala:1102 +#: src/Common/LinuxKernel.vala:1119 msgid "found" msgstr "найдено" -#: src/Common/LinuxKernel.vala:1107 +#: src/Common/LinuxKernel.vala:1124 msgid "No packages to un-install!" msgstr "Нет пакетов для удаления!" -#: src/Common/LinuxKernel.vala:1146 +#: src/Common/LinuxKernel.vala:1163 #, fuzzy msgid "is the highest installed version." msgstr "Удаление всех установленных версий, кроме самой высокой" -#: src/Common/LinuxKernel.vala:1159 +#: src/Common/LinuxKernel.vala:1176 msgid "Could not find running kernel in list" msgstr "Could not find running kernel in list" -#: src/Common/LinuxKernel.vala:1164 +#: src/Common/LinuxKernel.vala:1181 msgid "Could not find any kernels to uninstall" msgstr "Не удалось найти ядра для деинсталляции" -#: src/Common/LinuxKernel.vala:1172 +#: src/Common/LinuxKernel.vala:1189 msgid "The following kernels will be uninstalled" msgstr "Следующие ядра будут удалены" -#: src/Common/LinuxKernel.vala:1176 +#: src/Common/LinuxKernel.vala:1193 msgid "Continue ?" msgstr "Продолжить ?" -#: src/Common/LinuxKernel.vala:1198 src/Console/AppConsole.vala:234 +#: src/Common/LinuxKernel.vala:1215 src/Console/AppConsole.vala:234 msgid "Latest update" msgstr "Последнее обновление" -#: src/Common/LinuxKernel.vala:1209 src/Console/AppConsole.vala:241 +#: src/Common/LinuxKernel.vala:1226 src/Console/AppConsole.vala:241 msgid "Latest point update" msgstr "Последнее обновление пунктов" -#: src/Common/LinuxKernel.vala:1217 src/Console/AppConsole.vala:246 +#: src/Common/LinuxKernel.vala:1234 src/Console/AppConsole.vala:246 #: src/Console/AppConsole.vala:262 msgid "No updates found" msgstr "Обновлений не найдено" -#: src/Common/LinuxKernel.vala:1226 +#: src/Common/LinuxKernel.vala:1243 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Установить версию ядра %s ? (y/n): " diff --git a/po/sv.po b/po/sv.po index 87cbafa3..d59ac5fd 100644 --- a/po/sv.po +++ b/po/sv.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-29 06:50-0400\n" +"POT-Creation-Date: 2023-05-29 18:58-0400\n" "PO-Revision-Date: 2018-01-13 16:56+0100\n" "Last-Translator: Åke Engelbrektson \n" "Language-Team:Swedish\n" @@ -61,125 +61,125 @@ msgstr "Hittade installerat" msgid "locked" msgstr "" -#: src/Common/LinuxKernel.vala:497 src/Common/LinuxKernel.vala:1060 -#: src/Common/LinuxKernel.vala:1094 src/Common/LinuxKernel.vala:1150 +#: src/Common/LinuxKernel.vala:497 src/Common/LinuxKernel.vala:1077 +#: src/Common/LinuxKernel.vala:1111 src/Common/LinuxKernel.vala:1167 msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:732 src/Gtk/MainWindow.vala:511 +#: src/Common/LinuxKernel.vala:749 src/Gtk/MainWindow.vala:511 #: src/Gtk/MainWindow.vala:524 msgid "Running" msgstr "Körs" -#: src/Common/LinuxKernel.vala:733 +#: src/Common/LinuxKernel.vala:750 msgid "Installed" msgstr "Installerad" -#: src/Common/LinuxKernel.vala:734 +#: src/Common/LinuxKernel.vala:751 msgid "Invalid" msgstr "Ogiltig" -#: src/Common/LinuxKernel.vala:820 +#: src/Common/LinuxKernel.vala:837 msgid "Packages Available" msgstr "Tillgängliga paket" -#: src/Common/LinuxKernel.vala:826 +#: src/Common/LinuxKernel.vala:843 msgid "Packages Installed" msgstr "Installerade paket" -#: src/Common/LinuxKernel.vala:851 src/lib/TeeJee.FileSystem.vala:118 +#: src/Common/LinuxKernel.vala:868 src/lib/TeeJee.FileSystem.vala:118 msgid "File not found" msgstr "Filen kan inte hittas" -#: src/Common/LinuxKernel.vala:945 +#: src/Common/LinuxKernel.vala:962 msgid "Available Kernels" msgstr "Tillgängliga kärnor" -#: src/Common/LinuxKernel.vala:973 +#: src/Common/LinuxKernel.vala:990 #, fuzzy msgid "No kernels specified" msgstr "Kommandot har inte angetts" -#: src/Common/LinuxKernel.vala:980 src/Gtk/MainWindow.vala:119 +#: src/Common/LinuxKernel.vala:997 src/Gtk/MainWindow.vala:119 msgid "Kernel" msgstr "Kärna" -#: src/Common/LinuxKernel.vala:980 +#: src/Common/LinuxKernel.vala:997 #, fuzzy msgid "not found" msgstr "Filen kan inte hittas" -#: src/Common/LinuxKernel.vala:1006 +#: src/Common/LinuxKernel.vala:1023 msgid "enabled" msgstr "aktiverat" -#: src/Common/LinuxKernel.vala:1030 +#: src/Common/LinuxKernel.vala:1047 msgid "Downloading" msgstr "Ladda ner" -#: src/Common/LinuxKernel.vala:1055 +#: src/Common/LinuxKernel.vala:1072 msgid "is already installed." msgstr "är redan installerat." -#: src/Common/LinuxKernel.vala:1065 +#: src/Common/LinuxKernel.vala:1082 msgid "download failed." msgstr "" -#: src/Common/LinuxKernel.vala:1082 +#: src/Common/LinuxKernel.vala:1099 msgid "Uninstalling selected kernels" msgstr "Avinstallera valda kärnor" -#: src/Common/LinuxKernel.vala:1086 +#: src/Common/LinuxKernel.vala:1103 msgid "requested" msgstr "begärd" -#: src/Common/LinuxKernel.vala:1089 +#: src/Common/LinuxKernel.vala:1106 msgid "not uninstalling the currently running kernel" msgstr "Avinstallera inte den kärna som körs, för närvarande" -#: src/Common/LinuxKernel.vala:1102 +#: src/Common/LinuxKernel.vala:1119 msgid "found" msgstr "grunda" -#: src/Common/LinuxKernel.vala:1107 +#: src/Common/LinuxKernel.vala:1124 msgid "No packages to un-install!" msgstr "Inga paket att avinstallera!" -#: src/Common/LinuxKernel.vala:1146 +#: src/Common/LinuxKernel.vala:1163 #, fuzzy msgid "is the highest installed version." msgstr "Avinstallera alla utom den högsta installerade versionen" -#: src/Common/LinuxKernel.vala:1159 +#: src/Common/LinuxKernel.vala:1176 msgid "Could not find running kernel in list" msgstr "Det gick inte att hitta kernel som körs i listan" -#: src/Common/LinuxKernel.vala:1164 +#: src/Common/LinuxKernel.vala:1181 msgid "Could not find any kernels to uninstall" msgstr "Det gick inte att hitta några kärnor att avinstallera" -#: src/Common/LinuxKernel.vala:1172 +#: src/Common/LinuxKernel.vala:1189 msgid "The following kernels will be uninstalled" msgstr "Följande kärnor kommer att avinstalleras" -#: src/Common/LinuxKernel.vala:1176 +#: src/Common/LinuxKernel.vala:1193 msgid "Continue ?" msgstr "Fortsätta?" -#: src/Common/LinuxKernel.vala:1198 src/Console/AppConsole.vala:234 +#: src/Common/LinuxKernel.vala:1215 src/Console/AppConsole.vala:234 msgid "Latest update" msgstr "Senaste uppdatering" -#: src/Common/LinuxKernel.vala:1209 src/Console/AppConsole.vala:241 +#: src/Common/LinuxKernel.vala:1226 src/Console/AppConsole.vala:241 msgid "Latest point update" msgstr "Senaste punktuppdatering" -#: src/Common/LinuxKernel.vala:1217 src/Console/AppConsole.vala:246 +#: src/Common/LinuxKernel.vala:1234 src/Console/AppConsole.vala:246 #: src/Console/AppConsole.vala:262 msgid "No updates found" msgstr "Inga uppdateringar hittades" -#: src/Common/LinuxKernel.vala:1226 +#: src/Common/LinuxKernel.vala:1243 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Installera kärnversion %s ? (j/n):" diff --git a/po/tr.po b/po/tr.po index 0fd5a0a2..0377115f 100644 --- a/po/tr.po +++ b/po/tr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-29 06:50-0400\n" +"POT-Creation-Date: 2023-05-29 18:58-0400\n" "PO-Revision-Date: 2022-08-06 16:48+0300\n" "Last-Translator: Sabri Ünal \n" "Language-Team: Turkish\n" @@ -61,126 +61,126 @@ msgstr "Yüklü bulundu" msgid "locked" msgstr "" -#: src/Common/LinuxKernel.vala:497 src/Common/LinuxKernel.vala:1060 -#: src/Common/LinuxKernel.vala:1094 src/Common/LinuxKernel.vala:1150 +#: src/Common/LinuxKernel.vala:497 src/Common/LinuxKernel.vala:1077 +#: src/Common/LinuxKernel.vala:1111 src/Common/LinuxKernel.vala:1167 msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:732 src/Gtk/MainWindow.vala:511 +#: src/Common/LinuxKernel.vala:749 src/Gtk/MainWindow.vala:511 #: src/Gtk/MainWindow.vala:524 msgid "Running" msgstr "Çalışıyor" -#: src/Common/LinuxKernel.vala:733 +#: src/Common/LinuxKernel.vala:750 msgid "Installed" msgstr "Kurulu" -#: src/Common/LinuxKernel.vala:734 +#: src/Common/LinuxKernel.vala:751 msgid "Invalid" msgstr "Geçersiz" -#: src/Common/LinuxKernel.vala:820 +#: src/Common/LinuxKernel.vala:837 msgid "Packages Available" msgstr "Mevcut Paketler" -#: src/Common/LinuxKernel.vala:826 +#: src/Common/LinuxKernel.vala:843 msgid "Packages Installed" msgstr "Kurulu Paketler" -#: src/Common/LinuxKernel.vala:851 src/lib/TeeJee.FileSystem.vala:118 +#: src/Common/LinuxKernel.vala:868 src/lib/TeeJee.FileSystem.vala:118 msgid "File not found" msgstr "Dosya bulunamadı" -#: src/Common/LinuxKernel.vala:945 +#: src/Common/LinuxKernel.vala:962 msgid "Available Kernels" msgstr "Mevcut Çekirdekler" -#: src/Common/LinuxKernel.vala:973 +#: src/Common/LinuxKernel.vala:990 #, fuzzy msgid "No kernels specified" msgstr "Komut belirtilmedi" -#: src/Common/LinuxKernel.vala:980 src/Gtk/MainWindow.vala:119 +#: src/Common/LinuxKernel.vala:997 src/Gtk/MainWindow.vala:119 msgid "Kernel" msgstr "Çekirdek" -#: src/Common/LinuxKernel.vala:980 +#: src/Common/LinuxKernel.vala:997 #, fuzzy msgid "not found" msgstr "Dosya bulunamadı" -#: src/Common/LinuxKernel.vala:1006 +#: src/Common/LinuxKernel.vala:1023 msgid "enabled" msgstr "etkin" -#: src/Common/LinuxKernel.vala:1030 +#: src/Common/LinuxKernel.vala:1047 msgid "Downloading" msgstr "Indiriyor" -#: src/Common/LinuxKernel.vala:1055 +#: src/Common/LinuxKernel.vala:1072 msgid "is already installed." msgstr "zaten yüklü." -#: src/Common/LinuxKernel.vala:1065 +#: src/Common/LinuxKernel.vala:1082 msgid "download failed." msgstr "" -#: src/Common/LinuxKernel.vala:1082 +#: src/Common/LinuxKernel.vala:1099 msgid "Uninstalling selected kernels" msgstr "Seçili çekirdekleri kaldırma" -#: src/Common/LinuxKernel.vala:1086 +#: src/Common/LinuxKernel.vala:1103 msgid "requested" msgstr "istenen" -#: src/Common/LinuxKernel.vala:1089 +#: src/Common/LinuxKernel.vala:1106 msgid "not uninstalling the currently running kernel" msgstr "çalışmakta olan çekirdeğin kaldırılmaması" -#: src/Common/LinuxKernel.vala:1102 +#: src/Common/LinuxKernel.vala:1119 msgid "found" msgstr "kurmak" -#: src/Common/LinuxKernel.vala:1107 +#: src/Common/LinuxKernel.vala:1124 msgid "No packages to un-install!" msgstr "Kaldırılacak paket yok!" -#: src/Common/LinuxKernel.vala:1146 +#: src/Common/LinuxKernel.vala:1163 #, fuzzy msgid "is the highest installed version." msgstr "En yüksek yüklü sürüm dışındaki tüm sürümleri kaldırın" -#: src/Common/LinuxKernel.vala:1159 +#: src/Common/LinuxKernel.vala:1176 msgid "Could not find running kernel in list" msgstr "Listede çalışan çekirdek bulunamadı" -#: src/Common/LinuxKernel.vala:1164 +#: src/Common/LinuxKernel.vala:1181 msgid "Could not find any kernels to uninstall" msgstr "Kaldırılacak çekirdek bulunamadı" -#: src/Common/LinuxKernel.vala:1172 +#: src/Common/LinuxKernel.vala:1189 msgid "The following kernels will be uninstalled" msgstr "Aşağıdaki çekirdekler kaldırılacaktır" -#: src/Common/LinuxKernel.vala:1176 +#: src/Common/LinuxKernel.vala:1193 msgid "Continue ?" msgstr "Devam edilsin mi?" -#: src/Common/LinuxKernel.vala:1198 src/Console/AppConsole.vala:234 +#: src/Common/LinuxKernel.vala:1215 src/Console/AppConsole.vala:234 msgid "Latest update" msgstr "Son güncelleme" # Point burada point release anlamında kullanılıyor. Örneğin 5.10.x sayısının en sonundaki x rakamı point release/nokta sürüm oluyor. -#: src/Common/LinuxKernel.vala:1209 src/Console/AppConsole.vala:241 +#: src/Common/LinuxKernel.vala:1226 src/Console/AppConsole.vala:241 msgid "Latest point update" msgstr "Son nokta güncellemesi" -#: src/Common/LinuxKernel.vala:1217 src/Console/AppConsole.vala:246 +#: src/Common/LinuxKernel.vala:1234 src/Console/AppConsole.vala:246 #: src/Console/AppConsole.vala:262 msgid "No updates found" msgstr "Güncelleme bulunamadı" -#: src/Common/LinuxKernel.vala:1226 +#: src/Common/LinuxKernel.vala:1243 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Linux Çekirdek Sürümü %s Kurulsun mu? (e/h): " diff --git a/po/uk.po b/po/uk.po index 8e3e3514..2500c550 100644 --- a/po/uk.po +++ b/po/uk.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-29 06:50-0400\n" +"POT-Creation-Date: 2023-05-29 18:58-0400\n" "PO-Revision-Date: 2019-07-25 11:00+0300\n" "Last-Translator: Serhii Golovko \n" "Language-Team: Ukranian\n" @@ -61,125 +61,125 @@ msgstr "Знайдено встановленим" msgid "locked" msgstr "заблокований" -#: src/Common/LinuxKernel.vala:497 src/Common/LinuxKernel.vala:1060 -#: src/Common/LinuxKernel.vala:1094 src/Common/LinuxKernel.vala:1150 +#: src/Common/LinuxKernel.vala:497 src/Common/LinuxKernel.vala:1077 +#: src/Common/LinuxKernel.vala:1111 src/Common/LinuxKernel.vala:1167 msgid "is locked." msgstr "заблоковано." -#: src/Common/LinuxKernel.vala:732 src/Gtk/MainWindow.vala:511 +#: src/Common/LinuxKernel.vala:749 src/Gtk/MainWindow.vala:511 #: src/Gtk/MainWindow.vala:524 msgid "Running" msgstr "Використовується" -#: src/Common/LinuxKernel.vala:733 +#: src/Common/LinuxKernel.vala:750 msgid "Installed" msgstr "Встановлено" -#: src/Common/LinuxKernel.vala:734 +#: src/Common/LinuxKernel.vala:751 msgid "Invalid" msgstr "Інвалід" -#: src/Common/LinuxKernel.vala:820 +#: src/Common/LinuxKernel.vala:837 msgid "Packages Available" msgstr "Доступні пакети" -#: src/Common/LinuxKernel.vala:826 +#: src/Common/LinuxKernel.vala:843 msgid "Packages Installed" msgstr "Встановлені пакети" -#: src/Common/LinuxKernel.vala:851 src/lib/TeeJee.FileSystem.vala:118 +#: src/Common/LinuxKernel.vala:868 src/lib/TeeJee.FileSystem.vala:118 msgid "File not found" msgstr "Файл не знайдено" -#: src/Common/LinuxKernel.vala:945 +#: src/Common/LinuxKernel.vala:962 msgid "Available Kernels" msgstr "Доступні ядра" -#: src/Common/LinuxKernel.vala:973 +#: src/Common/LinuxKernel.vala:990 #, fuzzy msgid "No kernels specified" msgstr "Команда не вказана" -#: src/Common/LinuxKernel.vala:980 src/Gtk/MainWindow.vala:119 +#: src/Common/LinuxKernel.vala:997 src/Gtk/MainWindow.vala:119 msgid "Kernel" msgstr "Ядро" -#: src/Common/LinuxKernel.vala:980 +#: src/Common/LinuxKernel.vala:997 #, fuzzy msgid "not found" msgstr "Файл не знайдено" -#: src/Common/LinuxKernel.vala:1006 +#: src/Common/LinuxKernel.vala:1023 msgid "enabled" msgstr "увімкнено" -#: src/Common/LinuxKernel.vala:1030 +#: src/Common/LinuxKernel.vala:1047 msgid "Downloading" msgstr "Завантаження" -#: src/Common/LinuxKernel.vala:1055 +#: src/Common/LinuxKernel.vala:1072 msgid "is already installed." msgstr "вже встановлено." -#: src/Common/LinuxKernel.vala:1065 +#: src/Common/LinuxKernel.vala:1082 msgid "download failed." msgstr "" -#: src/Common/LinuxKernel.vala:1082 +#: src/Common/LinuxKernel.vala:1099 msgid "Uninstalling selected kernels" msgstr "Видаліть конкретні ядра" -#: src/Common/LinuxKernel.vala:1086 +#: src/Common/LinuxKernel.vala:1103 msgid "requested" msgstr "запитуваний" -#: src/Common/LinuxKernel.vala:1089 +#: src/Common/LinuxKernel.vala:1106 msgid "not uninstalling the currently running kernel" msgstr "не видалятиме поточне запущене ядро" -#: src/Common/LinuxKernel.vala:1102 +#: src/Common/LinuxKernel.vala:1119 msgid "found" msgstr "знайдено" -#: src/Common/LinuxKernel.vala:1107 +#: src/Common/LinuxKernel.vala:1124 msgid "No packages to un-install!" msgstr "Немає пакетів для видалення!" -#: src/Common/LinuxKernel.vala:1146 +#: src/Common/LinuxKernel.vala:1163 #, fuzzy msgid "is the highest installed version." msgstr "Видаліть усі, крім найвищої встановленої версії" -#: src/Common/LinuxKernel.vala:1159 +#: src/Common/LinuxKernel.vala:1176 msgid "Could not find running kernel in list" msgstr "Не вдалося знайти запущене ядро у списку!" -#: src/Common/LinuxKernel.vala:1164 +#: src/Common/LinuxKernel.vala:1181 msgid "Could not find any kernels to uninstall" msgstr "Не вдалося знайти жодне ядро для вилучення" -#: src/Common/LinuxKernel.vala:1172 +#: src/Common/LinuxKernel.vala:1189 msgid "The following kernels will be uninstalled" msgstr "Наступні ядра будуть видалені" -#: src/Common/LinuxKernel.vala:1176 +#: src/Common/LinuxKernel.vala:1193 msgid "Continue ?" msgstr "Продовжувати ?" -#: src/Common/LinuxKernel.vala:1198 src/Console/AppConsole.vala:234 +#: src/Common/LinuxKernel.vala:1215 src/Console/AppConsole.vala:234 msgid "Latest update" msgstr "Останнє оновлення" -#: src/Common/LinuxKernel.vala:1209 src/Console/AppConsole.vala:241 +#: src/Common/LinuxKernel.vala:1226 src/Console/AppConsole.vala:241 msgid "Latest point update" msgstr "Остання точка оновлення" -#: src/Common/LinuxKernel.vala:1217 src/Console/AppConsole.vala:246 +#: src/Common/LinuxKernel.vala:1234 src/Console/AppConsole.vala:246 #: src/Console/AppConsole.vala:262 msgid "No updates found" msgstr "Оновлень не знайдено" -#: src/Common/LinuxKernel.vala:1226 +#: src/Common/LinuxKernel.vala:1243 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Встановити Ядро Версії %s ? (так/ні): " diff --git a/settings.md b/settings.md index 3e45c381..ef0bc2e5 100644 --- a/settings.md +++ b/settings.md @@ -15,17 +15,17 @@ Excludes less stable more bleeding edge -rc kernels from the list. **Show N previous major versions \[#\]** Defines a threshold value for the oldest major version to include in the display, as an offset from the whatever the current latest version is. -The algorithm is essentially this pseudocode: -threshold_major = min( latest_available - N , oldest_installed ) +The threshold is whichever is lower: + - the oldest mainline kernel you have installed + - the highest mainline version available minus N -In other words, whichever is lower: the latest major version available minus N, or the oldest major version you have installed. +The special value "-1" is also allowed, and means to show all possible kernel versions. With this setting the initial cache update or Reload takes a long time, but it's actually usable after that. -The special value "-1" is also allowed, and means always show all kernel versions. With this value the initial cache update takes a long time, but it's actually usable after that. +Any installed non-mainline kernels are ignored for this. +This allows to have a prior-generation distribution kernel installed without causing the list to include the entire prior generation of mainline kernels for no reason. Generally, you want this setting to just be 0. -Distribution (non-mainline) kernels are not included when determining the lowest or highest installed versions. - ## Network **Internet connection timeout in \[##\] seconds** **Max concurrent downloads \[#\]** diff --git a/src/Common/LinuxKernel.vala b/src/Common/LinuxKernel.vala index 30c1f7a7..dac04676 100644 --- a/src/Common/LinuxKernel.vala +++ b/src/Common/LinuxKernel.vala @@ -67,7 +67,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { public static int progress_total = 0; public static int progress_count = 0; public static bool cancelled = false; - public static int threshold_major = 0; + public static int threshold_major = -1; // class initialize public static void initialize() { @@ -255,7 +255,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { if (!k.is_installed) { if (k.version_major < threshold_major) continue; - if (App.hide_unstable && k.is_unstable) continue; + if (App.hide_unstable && k.version_rc>=0) continue; } // add index.html to download list @@ -350,8 +350,8 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { // read the main index.html listing all kernels private static void load_index() { vprint("load_index()",2); - if (threshold_major<1) update_threshold_major(true); - if (threshold_major<1) { vprint("threshold_major not initialized"); exit(1); } + if (threshold_major<0) update_threshold_major(true); + if (threshold_major<0) { vprint("load_index(): threshold_major not initialized"); exit(1); } if (!file_exists(MAIN_INDEX_HTML)) return; string txt = file_read(MAIN_INDEX_HTML); @@ -417,7 +417,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { bool found = false; foreach (var k in kernel_list) { if (k.is_invalid) continue; - if (k.version_major { vprint(k.version_main+" "+_("is locked."),2); continue; } - if (k.is_unstable && App.hide_unstable) continue; + if (k.version_rc>=0 && App.hide_unstable) continue; if (k.version_major < threshold_major) break; if (k.compare_to(kernel_latest_installed)<=0) break; @@ -548,9 +548,11 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { // This k.is_mainline test is only based on an unreliable semantic used in split_version_string(). // A real test would be to scan kernel_list for matching k.kver or k.name, // but we don't have kernel_list yet and we can't run mk_kernel_list to generate it, - // because we are being run from within mk_kernel_list itself to set bounds on kernel_list. + // because we are run from within mk_kernel_list itself to set bounds on kernel_list. // It's not critical. All this does is try to avoid having an installed distro kernel // cause kernel_list to include a whole previous generation. + // If the assumption in split_version_string() is ever wrong, + // all it means is threshold_major would not ignore non-mainline kernels. if (k.version_major < kernel_oldest_installed.version_major && k.is_mainline) kernel_oldest_installed = k; } @@ -567,63 +569,81 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { version_extra = ""; is_mainline = true; // FIXME bad assumption + /* + * The is_mainline test below is an unsafe assumption. + * But we need *something*, and it is working for now. + * + * The definitive way to determine is_mainline, is to scan the main + * index.html and see if the current kernel is in there. + * + * But mk_kernel_list() uses is_mainline itself as part of + * determining threshold_major. + * + * Possible fix, go back to letting mk_kernel_list() build + * a full list including everything in the main index.html, + * tag those all as mainline, make sure kernel_list + * has a unique id index that can be used to find a record without + * walking the entire list with a foreach loop. + * + * Then when getting a new unknown kernel from a version number + * or from dpkg, we can answer if it's mainline by looking if + * the same id exists in the list. + * + * Actually this whole version string parser is pretty hokey. + */ + string t = s; if (t==null || t.length<1) t = "0"; if (t.has_prefix("v")) t = t[1: t.length - 1]; if (t.has_suffix("/")) t = t[0: t.length - 1]; + t = t.split("~")[0]; // old ubuntu versions in dpkg, not seen lately - var version_string = t.split("~")[0]; - var mi = regex_match("""([0-9]+|rc)""", version_string); + // Unsafe. "rc" could be part of intel-arc or something some day. + var mi = regex_match("""([0-9]+|rc)""",t); int i = -1; - bool saw_rc = false; + bool rc = false; while (mi != null) { - string? num = mi.fetch(1); + string? v = mi.fetch(1); - if (num != null) { + if (v != null) { i++; - //vprint("num="+num); - if (saw_rc) { - saw_rc = false; - version_rc = int.parse(num); - } else if (num == "rc") { - saw_rc = true; + if (rc) { + rc = false; + version_rc = int.parse(v); + //vprint ("%s: i=%d v.length=%d mainline=%s".printf(t,i,v.length,is_mainline.to_string())); + } else if (v == "rc") { + rc = true; + //vprint ("%s: i=%d v.length=%d mainline=%s".printf(t,i,v.length,is_mainline.to_string())); } else { switch (i) { - case 0: - version_major = int.parse(num); - break; - case 1: - version_minor = int.parse(num); - break; - case 2: - version_point = int.parse(num); - break; - case 3: - if ((version_rc<0) && (num.length<3)) version_extra += "."+num; - break; - case 4: - if ((version_rc<0) && (num.length<3)) version_extra += "."+num; - break; + case 0: version_major = int.parse(v); break; + case 1: version_minor = int.parse(v); break; + case 2: version_point = int.parse(v); break; + case 3: if (version_rc<0 && v.length<6) version_extra += "."+v; break; // not great + case 4: + if (version_rc<0 && v.length<6) version_extra += "."+v; // not great + if (v.length<12) is_mainline = false; // FIXME bad assumption + break; } - if (num.length<12) is_mainline = false; // FIXME bad assumption + //vprint ("%s: i=%d v.length=%d mainline=%s".printf(t,i,v.length,is_mainline.to_string())); } } - if (version_rc>-1) version_extra = "-rc%d".printf(version_rc); + if (version_rc>=0) version_extra = "-rc%d".printf(version_rc); version_main = "%d.%d.%d%s".printf(version_major,version_minor,version_point,version_extra); - try{ - if (!mi.next()) break; - } - catch(Error e) { - break; - } + try { if (!mi.next()) break; } + catch (Error e) { break; } } - } +// inputs a & b: a.compare_to(b) +// return: +// ab return 1 public int compare_to(LinuxKernel b) { LinuxKernel a = this; //vprint("compare_to()",5); @@ -632,59 +652,62 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { //vprint("a "+a.version_main,5); //vprint("b "+b.version_main,5); - int i = 0; + int i = -1; int x, y; // while both arrays have an element - while ((i < arr_a.length) && (i < arr_b.length)) { + while ((++i < arr_a.length) && (i < arr_b.length)) { - // continue if equal - //vprint("("+arr_a[i]+" == "+arr_b[i]+")",5); - if (arr_a[i] == arr_b[i]) { - i++; - continue; - } + // keep reading if both are the same + if (arr_a[i] == arr_b[i]) continue; - // check if number + // this doesn't distinguish "000" from "abc", but quickly handles if both are >0 x = int.parse(arr_a[i]); y = int.parse(arr_b[i]); - if ((x > 0) && (y > 0)) { - // both are numbers - //vprint(arr_a[i]+" - "+arr_b[i]+" = return "+(x-y).to_string(),5); - return (x - y); - } else if ((x == 0) && (y == 0)) { - // BKW - this is one place where "-rc3" gets compared to "-rc4" - // both are strings - //vprint("strcmp("+arr_a[i]+","+arr_b[i]+") = return "+strcmp(arr_a[i], arr_b[i]).to_string(),5); - return strcmp(arr_a[i], arr_b[i]); - } else { - //vprint("("+arr_a[i]+">0)",5); - if (x > 0) { - //vprint("return 1",5); - return 1; - } - //vprint("return -1",5); - return -1; - } - } + if (x>0 && y>0) return (x - y); - // if we got here - // one array has less parts than the other, and all corresponding parts are equal + // this is one place where "-rc3" gets compared to "-rc4" + // both are either text or "0", int.parse() returns 0 for "ABC" or "000" + // strcmp() will return "00" is less than "ab" + if (x==0 && y==0) return strcmp(arr_a[i], arr_b[i]); - if (i < arr_a.length) { - //vprint("a ("+arr_a[i]+">0)",5); - x = int.parse(arr_a[i]); + // if we got this far: + // the two sides were neither both numbers nor both text + + // if a is a number > 0, then b must be either text or number 0 + // any number > 0 is bigger than either text or number 0 + // because rc comes before non-rc if (x > 0) return 1; + + // if we didn't return above, then all the same but for b return -1; } + // if we got this far: + // * all elements are equal up to this point + // * one array has more elements than the other + + + // These next two catch the case where one array + // is longer than the other, and the longer arrays + // next element is numeric, not rnN + + // if there are any more a elements + if (i < arr_a.length) { + // if a is a number > 0 + if (int.parse(arr_a[i])>0) return 1; // a is bigger + return -1; // b is bigger + } + + // if there are any more b elements if (i < arr_b.length) { - //vprint("b ("+arr_b[i]+">0)",5); - y = int.parse(arr_b[i]); - if (y > 0) return -1; - return 1; + // if b is a number > 0 + if (int.parse(arr_b[i]) > 0) return -1; // b is bigger + return 1; // a is bigger } + // is it possible to get here? + // the larger array is the lower version, // because 1.2.3-rcN comes before 1.2.3 return (arr_a.length - arr_b.length) * -1; @@ -693,11 +716,11 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { public void set_pkg_list() { vprint("set_pkg_list()",2); vprint("kname:"+kname+" kver:"+kver+" version_main:"+version_main,3); - foreach(var pkg in Package.dpkg_list) { - if (!pkg.pname.has_prefix("linux-")) continue; - if (pkg.version == kver) { - pkg_list[pkg.pname] = pkg.pname; - vprint("Package: "+pkg.pname,2); + foreach(var p in Package.dpkg_list) { + if (!p.pname.has_prefix("linux-")) continue; + if (p.version == kver) { + pkg_list[p.pname] = p.pname; + vprint("Package: "+p.pname,2); } } } @@ -708,12 +731,6 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { // properties - public bool is_unstable { - get { - return version_main.contains("-rc") || version_main.contains("-unstable"); - } - } - public bool is_invalid { get { return file_exists(cached_status_file); @@ -743,7 +760,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { if (ppa_dirs_ver==2) return true; if (ppa_dirs_ver==1) return false; int r = 0; - if (is_unstable) r = compare_to(kernel_last_unstable_old_ppa_dirs); + if (version_rc>=0) r = compare_to(kernel_last_unstable_old_ppa_dirs); else r = compare_to(kernel_last_stable_old_ppa_dirs); if (r>0) { ppa_dirs_ver = 2; return true; } else { ppa_dirs_ver = 1; return false; } @@ -951,7 +968,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { // hide hidden, but don't hide any installed if (!k.is_installed) { - if (App.hide_unstable && k.is_unstable) continue; + if (App.hide_unstable && k.version_rc>=0) continue; if (k.version_major < threshold_major) continue; } diff --git a/src/Gtk/MainWindow.vala b/src/Gtk/MainWindow.vala index c8aa99a4..db9b5c71 100644 --- a/src/Gtk/MainWindow.vala +++ b/src/Gtk/MainWindow.vala @@ -243,7 +243,7 @@ public class MainWindow : Window { if (!k.is_installed) { // don't hide anything that's installed if (k.is_invalid) continue; // hide invalid - if (k.is_unstable && App.hide_unstable) continue; // hide unstable if settings say to + if (k.version_rc>=0 && App.hide_unstable) continue; // hide unstable if settings say to if (k.version_major < LinuxKernel.threshold_major) continue; // hide versions older than settings threshold } @@ -254,7 +254,7 @@ public class MainWindow : Window { tm.set(iter, COL.KERN, k); p = pix_mainline; - if (k.is_unstable) p = pix_mainline_rc; + if (k.version_rc>=0) p = pix_mainline_rc; if (!k.is_mainline) p = pix_ubuntu; tm.set(iter, COL.ICON, p); From 1e2f5ef5cf9206b4712a5d34c6f814db338b7c96 Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Mon, 29 May 2023 19:24:02 -0400 Subject: [PATCH 336/567] remove pointless math --- .deb_build_number.mak | 2 +- po/messages.pot | 2 +- src/Common/LinuxKernel.vala | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.deb_build_number.mak b/.deb_build_number.mak index cb252455..c730186b 100644 --- a/.deb_build_number.mak +++ b/.deb_build_number.mak @@ -1,3 +1,3 @@ # This file is generated by Makefile "make deb_build_number" DEB_PKG_VERSION := 1.3.3 -DEB_BUILD_NUMBER := 0000 +DEB_BUILD_NUMBER := 0001 diff --git a/po/messages.pot b/po/messages.pot index e96a0b37..e4f83c42 100644 --- a/po/messages.pot +++ b/po/messages.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline 1.3.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-29 18:58-0400\n" +"POT-Creation-Date: 2023-05-29 19:13-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/src/Common/LinuxKernel.vala b/src/Common/LinuxKernel.vala index dac04676..d7c9866b 100644 --- a/src/Common/LinuxKernel.vala +++ b/src/Common/LinuxKernel.vala @@ -710,7 +710,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { // the larger array is the lower version, // because 1.2.3-rcN comes before 1.2.3 - return (arr_a.length - arr_b.length) * -1; + return (arr_b.length - arr_a.length); } public void set_pkg_list() { From 7fe81dd3446294b0343d9a6944d24874b4de500b Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Tue, 30 May 2023 02:32:25 -0400 Subject: [PATCH 337/567] minor display and list-handling stuff --- .deb_build_number.mak | 2 +- po/de.po | 135 +++++++++++++++++++---------------- po/el.po | 135 +++++++++++++++++++---------------- po/es.po | 135 +++++++++++++++++++---------------- po/fr.po | 135 +++++++++++++++++++---------------- po/hr.po | 135 +++++++++++++++++++---------------- po/it.po | 135 +++++++++++++++++++---------------- po/ko.po | 135 +++++++++++++++++++---------------- po/messages.pot | 128 +++++++++++++++++---------------- po/nl.po | 135 +++++++++++++++++++---------------- po/pl.po | 136 +++++++++++++++++++---------------- po/ru.po | 135 +++++++++++++++++++---------------- po/sv.po | 135 +++++++++++++++++++---------------- po/tr.po | 135 +++++++++++++++++++---------------- po/uk.po | 136 +++++++++++++++++++---------------- src/Common/LinuxKernel.vala | 137 +++++++++++------------------------- src/Common/Main.vala | 2 - src/Console/AppConsole.vala | 1 - src/Gtk/AppGtk.vala | 8 +-- src/Gtk/MainWindow.vala | 15 ++-- 20 files changed, 1073 insertions(+), 977 deletions(-) diff --git a/.deb_build_number.mak b/.deb_build_number.mak index c730186b..78275aa6 100644 --- a/.deb_build_number.mak +++ b/.deb_build_number.mak @@ -1,3 +1,3 @@ # This file is generated by Makefile "make deb_build_number" DEB_PKG_VERSION := 1.3.3 -DEB_BUILD_NUMBER := 0001 +DEB_BUILD_NUMBER := 0002 diff --git a/po/de.po b/po/de.po index 121f67f9..d7e6641f 100644 --- a/po/de.po +++ b/po/de.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-29 18:58-0400\n" +"POT-Creation-Date: 2023-05-30 02:25-0400\n" "PO-Revision-Date: 2023-02-20 18:40+0100\n" "Last-Translator: Marvin Meysel \n" "Language-Team: German\n" @@ -53,152 +53,163 @@ msgstr "OK" msgid "FAILED" msgstr "MISSLUNGEN" -#: src/Common/LinuxKernel.vala:409 +#: src/Common/LinuxKernel.vala:410 msgid "Found installed" msgstr "Installiert gefunden" -#: src/Common/LinuxKernel.vala:410 +#: src/Common/LinuxKernel.vala:411 msgid "locked" msgstr "" -#: src/Common/LinuxKernel.vala:497 src/Common/LinuxKernel.vala:1077 -#: src/Common/LinuxKernel.vala:1111 src/Common/LinuxKernel.vala:1167 +#: src/Common/LinuxKernel.vala:496 src/Common/LinuxKernel.vala:1024 +#: src/Common/LinuxKernel.vala:1114 msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:749 src/Gtk/MainWindow.vala:511 -#: src/Gtk/MainWindow.vala:524 +#: src/Common/LinuxKernel.vala:696 src/Gtk/MainWindow.vala:512 +#: src/Gtk/MainWindow.vala:525 msgid "Running" msgstr "Läuft" -#: src/Common/LinuxKernel.vala:750 +#: src/Common/LinuxKernel.vala:697 msgid "Installed" msgstr "Installiert" -#: src/Common/LinuxKernel.vala:751 +#: src/Common/LinuxKernel.vala:698 msgid "Invalid" msgstr "Ungültig" -#: src/Common/LinuxKernel.vala:837 +#: src/Common/LinuxKernel.vala:783 msgid "Packages Available" msgstr "Verfügbare Pakete" -#: src/Common/LinuxKernel.vala:843 +#: src/Common/LinuxKernel.vala:789 msgid "Packages Installed" msgstr "Installierte Pakete" -#: src/Common/LinuxKernel.vala:868 src/lib/TeeJee.FileSystem.vala:118 +#: src/Common/LinuxKernel.vala:814 src/lib/TeeJee.FileSystem.vala:118 msgid "File not found" msgstr "Datei nicht gefunden " -#: src/Common/LinuxKernel.vala:962 +#: src/Common/LinuxKernel.vala:908 msgid "Available Kernels" msgstr "Verfügbare Kernel" -#: src/Common/LinuxKernel.vala:990 -#, fuzzy -msgid "No kernels specified" -msgstr "Befehl nicht angegeben" - -#: src/Common/LinuxKernel.vala:997 src/Gtk/MainWindow.vala:119 +#: src/Common/LinuxKernel.vala:943 src/Gtk/MainWindow.vala:119 msgid "Kernel" msgstr "Kernel" -#: src/Common/LinuxKernel.vala:997 +#: src/Common/LinuxKernel.vala:943 #, fuzzy msgid "not found" msgstr "Datei nicht gefunden " -#: src/Common/LinuxKernel.vala:1023 +#: src/Common/LinuxKernel.vala:950 +#, fuzzy +msgid "Download: no downloadable kernels specified" +msgstr "Befehl nicht angegeben" + +#: src/Common/LinuxKernel.vala:970 msgid "enabled" msgstr "ermöglichte" -#: src/Common/LinuxKernel.vala:1047 +#: src/Common/LinuxKernel.vala:994 msgid "Downloading" msgstr "Laden" -#: src/Common/LinuxKernel.vala:1072 +#: src/Common/LinuxKernel.vala:1019 msgid "is already installed." msgstr "ist bereits installiert." -#: src/Common/LinuxKernel.vala:1082 +#: src/Common/LinuxKernel.vala:1029 msgid "download failed." msgstr "" -#: src/Common/LinuxKernel.vala:1099 +#: src/Common/LinuxKernel.vala:1037 +#, fuzzy +msgid "Install: no installable kernels secified" +msgstr "Befehl nicht angegeben" + +#: src/Common/LinuxKernel.vala:1049 msgid "Uninstalling selected kernels" msgstr "Deinstallation des angegebenen Kernels" -#: src/Common/LinuxKernel.vala:1103 -msgid "requested" +#: src/Common/LinuxKernel.vala:1053 +#, fuzzy +msgid "Requested" msgstr "angefordert" -#: src/Common/LinuxKernel.vala:1106 -msgid "not uninstalling the currently running kernel" +#: src/Common/LinuxKernel.vala:1056 +#, fuzzy +msgid "Not uninstalling the currently running kernel" msgstr "Den aktuell laufenden Kernel wird nicht deinstalliert" -#: src/Common/LinuxKernel.vala:1119 +#: src/Common/LinuxKernel.vala:1061 +msgid "is locked" +msgstr "" + +#: src/Common/LinuxKernel.vala:1069 msgid "found" msgstr "gründen" -#: src/Common/LinuxKernel.vala:1124 -msgid "No packages to un-install!" -msgstr "Keine Pakete zum Deinstallieren!" +#: src/Common/LinuxKernel.vala:1073 +msgid "Uninstall: no uninstallable packages found" +msgstr "" -#: src/Common/LinuxKernel.vala:1163 +#: src/Common/LinuxKernel.vala:1110 #, fuzzy msgid "is the highest installed version." msgstr "Deinstallieren Sie alle bis auf die höchste installierte Version" -#: src/Common/LinuxKernel.vala:1176 +#: src/Common/LinuxKernel.vala:1123 msgid "Could not find running kernel in list" msgstr "Konnte keinen laufenden Kernel in der Liste finden" -#: src/Common/LinuxKernel.vala:1181 +#: src/Common/LinuxKernel.vala:1128 msgid "Could not find any kernels to uninstall" msgstr "Es konnten keine Kernel zum Deinstallieren gefunden werden" -#: src/Common/LinuxKernel.vala:1189 +#: src/Common/LinuxKernel.vala:1136 msgid "The following kernels will be uninstalled" msgstr "Die folgenden Kernel werden deinstalliert" -#: src/Common/LinuxKernel.vala:1193 +#: src/Common/LinuxKernel.vala:1140 msgid "Continue ?" msgstr "Weiter ?" -#: src/Common/LinuxKernel.vala:1215 src/Console/AppConsole.vala:234 +#: src/Common/LinuxKernel.vala:1162 src/Console/AppConsole.vala:234 msgid "Latest update" msgstr "Neustes Update" -#: src/Common/LinuxKernel.vala:1226 src/Console/AppConsole.vala:241 +#: src/Common/LinuxKernel.vala:1173 src/Console/AppConsole.vala:241 msgid "Latest point update" msgstr "Letzte Punktaktualisierung" -#: src/Common/LinuxKernel.vala:1234 src/Console/AppConsole.vala:246 -#: src/Console/AppConsole.vala:262 +#: src/Common/LinuxKernel.vala:1181 src/Console/AppConsole.vala:246 +#: src/Console/AppConsole.vala:261 msgid "No updates found" msgstr "Keine Updates gefunden" -#: src/Common/LinuxKernel.vala:1243 +#: src/Common/LinuxKernel.vala:1190 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Kernel-Version %s installieren? (j/n):" -#: src/Common/Main.vala:336 +#: src/Common/Main.vala:334 msgid "Called from" msgstr "Angerufen von" -#: src/Common/Main.vala:336 +#: src/Common/Main.vala:334 msgid "at logon" msgstr "beim start" -#: src/Common/Main.vala:337 +#: src/Common/Main.vala:335 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" "Diese Datei wird überschrieben und erneut ausgeführt, wenn Einstellungen in" -#: src/Common/Main.vala:369 +#: src/Common/Main.vala:367 msgid "Notifications are disabled" msgstr "Benachrichtigungen sind deaktiviert" @@ -207,7 +218,7 @@ msgstr "Benachrichtigungen sind deaktiviert" msgid "File not found: %s" msgstr "Datei nicht gefunden: %s" -#: src/Console/AppConsole.vala:43 src/Gtk/AppGtk.vala:139 +#: src/Console/AppConsole.vala:43 src/Gtk/AppGtk.vala:137 msgid "Syntax" msgstr "Syntax" @@ -264,7 +275,7 @@ msgstr "Herunterladen bestimmter Kernel" msgid "Delete cached info about available kernels" msgstr "Löschen zwischengespeicherter Informationen über verfügbare Kernel" -#: src/Console/AppConsole.vala:59 src/Gtk/AppGtk.vala:141 +#: src/Console/AppConsole.vala:59 src/Gtk/AppGtk.vala:139 msgid "Options" msgstr "Optionen" @@ -298,7 +309,7 @@ msgstr "" msgid "Locked kernels and the currently running kernel are ignored" msgstr "Der aktuell laufende Kernel wird immer ignoriert" -#: src/Console/AppConsole.vala:160 src/Gtk/AppGtk.vala:125 +#: src/Console/AppConsole.vala:160 src/Gtk/AppGtk.vala:123 msgid "Unknown option" msgstr "Unbekannte Option" @@ -318,24 +329,24 @@ msgstr "Befehl nicht angegeben" msgid "to list all commands" msgstr "um alle Befehle aufzulisten" -#: src/Console/AppConsole.vala:256 +#: src/Console/AppConsole.vala:255 msgid "Notifications disabled in settings" msgstr "Benachrichtigungen sind deaktiviert" -#: src/Console/AppConsole.vala:284 +#: src/Console/AppConsole.vala:283 #, c-format msgid "Kernel %s Available" msgstr "Kernel %s verfügbar" -#: src/Console/AppConsole.vala:288 src/Gtk/SettingsDialog.vala:166 +#: src/Console/AppConsole.vala:287 src/Gtk/SettingsDialog.vala:166 msgid "Show" msgstr "Zeigen" -#: src/Console/AppConsole.vala:289 src/Gtk/MainWindow.vala:299 +#: src/Console/AppConsole.vala:288 src/Gtk/MainWindow.vala:299 msgid "Install" msgstr "Installieren" -#: src/Console/AppConsole.vala:292 +#: src/Console/AppConsole.vala:291 msgid "Previously notified" msgstr "Zuvor gemeldet" @@ -375,15 +386,15 @@ msgstr "Dokumentierer" msgid "Third Party Inclusions" msgstr "Einschlüsse von Drittparteien" -#: src/Gtk/AppGtk.vala:139 +#: src/Gtk/AppGtk.vala:137 msgid "options" msgstr "optionen" -#: src/Gtk/AppGtk.vala:143 +#: src/Gtk/AppGtk.vala:141 msgid "Print debug information" msgstr "Zeige Debug Informationen" -#: src/Gtk/AppGtk.vala:144 +#: src/Gtk/AppGtk.vala:142 msgid "Show all options" msgstr "Alle Optionen anzeigen" @@ -443,16 +454,16 @@ msgstr "Gegabelte" msgid "Original" msgstr "Original" -#: src/Gtk/MainWindow.vala:452 +#: src/Gtk/MainWindow.vala:444 msgid "Updating kernels" msgstr "Aktualisieren von Kernels" -#: src/Gtk/MainWindow.vala:520 +#: src/Gtk/MainWindow.vala:521 msgid "available" msgstr "Verfügbar" -#: src/Gtk/MainWindow.vala:575 src/Gtk/MainWindow.vala:614 -#: src/Gtk/MainWindow.vala:646 +#: src/Gtk/MainWindow.vala:576 src/Gtk/MainWindow.vala:615 +#: src/Gtk/MainWindow.vala:647 msgid "DONE" msgstr "" diff --git a/po/el.po b/po/el.po index ad7fe839..f0805db8 100644 --- a/po/el.po +++ b/po/el.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-29 18:58-0400\n" +"POT-Creation-Date: 2023-05-30 02:25-0400\n" "PO-Revision-Date: 2023-01-10 02:03-0600\n" "Last-Translator: Vasilis Kosmidis \n" "Language-Team: Greek\n" @@ -53,153 +53,164 @@ msgstr "ΟΚ" msgid "FAILED" msgstr "ΑΠΈΤΥΧΕ" -#: src/Common/LinuxKernel.vala:409 +#: src/Common/LinuxKernel.vala:410 msgid "Found installed" msgstr "Βρέθηκε εγκατεστημένο" -#: src/Common/LinuxKernel.vala:410 +#: src/Common/LinuxKernel.vala:411 msgid "locked" msgstr "" -#: src/Common/LinuxKernel.vala:497 src/Common/LinuxKernel.vala:1077 -#: src/Common/LinuxKernel.vala:1111 src/Common/LinuxKernel.vala:1167 +#: src/Common/LinuxKernel.vala:496 src/Common/LinuxKernel.vala:1024 +#: src/Common/LinuxKernel.vala:1114 msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:749 src/Gtk/MainWindow.vala:511 -#: src/Gtk/MainWindow.vala:524 +#: src/Common/LinuxKernel.vala:696 src/Gtk/MainWindow.vala:512 +#: src/Gtk/MainWindow.vala:525 msgid "Running" msgstr "Ενεργός" -#: src/Common/LinuxKernel.vala:750 +#: src/Common/LinuxKernel.vala:697 msgid "Installed" msgstr "Εγκατεστημένος" -#: src/Common/LinuxKernel.vala:751 +#: src/Common/LinuxKernel.vala:698 msgid "Invalid" msgstr "Άκυρος" -#: src/Common/LinuxKernel.vala:837 +#: src/Common/LinuxKernel.vala:783 msgid "Packages Available" msgstr "Διαθέσιμα πακέτα" -#: src/Common/LinuxKernel.vala:843 +#: src/Common/LinuxKernel.vala:789 msgid "Packages Installed" msgstr "Εγκατεστημένα πακέτα" -#: src/Common/LinuxKernel.vala:868 src/lib/TeeJee.FileSystem.vala:118 +#: src/Common/LinuxKernel.vala:814 src/lib/TeeJee.FileSystem.vala:118 msgid "File not found" msgstr "Το αρχείο δε βρέθηκε" -#: src/Common/LinuxKernel.vala:962 +#: src/Common/LinuxKernel.vala:908 msgid "Available Kernels" msgstr "Διαθέσιμοι πυρήνες" -#: src/Common/LinuxKernel.vala:990 -#, fuzzy -msgid "No kernels specified" -msgstr "Η εντολή δεν προσδιορίστηκε" - -#: src/Common/LinuxKernel.vala:997 src/Gtk/MainWindow.vala:119 +#: src/Common/LinuxKernel.vala:943 src/Gtk/MainWindow.vala:119 msgid "Kernel" msgstr "Πυρήνας" -#: src/Common/LinuxKernel.vala:997 +#: src/Common/LinuxKernel.vala:943 #, fuzzy msgid "not found" msgstr "Το αρχείο δε βρέθηκε" -#: src/Common/LinuxKernel.vala:1023 +#: src/Common/LinuxKernel.vala:950 +#, fuzzy +msgid "Download: no downloadable kernels specified" +msgstr "Η εντολή δεν προσδιορίστηκε" + +#: src/Common/LinuxKernel.vala:970 msgid "enabled" msgstr "ενεργοποιημένη" -#: src/Common/LinuxKernel.vala:1047 +#: src/Common/LinuxKernel.vala:994 msgid "Downloading" msgstr "Κατέβασμα" -#: src/Common/LinuxKernel.vala:1072 +#: src/Common/LinuxKernel.vala:1019 msgid "is already installed." msgstr "είναι ήδη εγκατεστημένο." -#: src/Common/LinuxKernel.vala:1082 +#: src/Common/LinuxKernel.vala:1029 msgid "download failed." msgstr "" -#: src/Common/LinuxKernel.vala:1099 +#: src/Common/LinuxKernel.vala:1037 +#, fuzzy +msgid "Install: no installable kernels secified" +msgstr "Η εντολή δεν προσδιορίστηκε" + +#: src/Common/LinuxKernel.vala:1049 msgid "Uninstalling selected kernels" msgstr "Απεγκατάσταση επιλεγμένων πυρήνων" -#: src/Common/LinuxKernel.vala:1103 -msgid "requested" +#: src/Common/LinuxKernel.vala:1053 +#, fuzzy +msgid "Requested" msgstr "ζητήθηκε" -#: src/Common/LinuxKernel.vala:1106 -msgid "not uninstalling the currently running kernel" +#: src/Common/LinuxKernel.vala:1056 +#, fuzzy +msgid "Not uninstalling the currently running kernel" msgstr "δεν θα απεγκαταστήσει τον πυρήνα που εκτελείται αυτήν τη στιγμή" -#: src/Common/LinuxKernel.vala:1119 +#: src/Common/LinuxKernel.vala:1061 +msgid "is locked" +msgstr "" + +#: src/Common/LinuxKernel.vala:1069 msgid "found" msgstr "ιδρύω" -#: src/Common/LinuxKernel.vala:1124 -msgid "No packages to un-install!" -msgstr "Δεν υπάρχουν πακέτα για απεγκατάσταση!" +#: src/Common/LinuxKernel.vala:1073 +msgid "Uninstall: no uninstallable packages found" +msgstr "" -#: src/Common/LinuxKernel.vala:1163 +#: src/Common/LinuxKernel.vala:1110 #, fuzzy msgid "is the highest installed version." msgstr "Απεγκαταστήστε όλες εκτός από την υψηλότερη εγκατεστημένη έκδοση" -#: src/Common/LinuxKernel.vala:1176 +#: src/Common/LinuxKernel.vala:1123 msgid "Could not find running kernel in list" msgstr "Δεν ήταν δυνατή η εύρεση του πυρήνα που εκτελείται αυτήν τη στιγμή" -#: src/Common/LinuxKernel.vala:1181 +#: src/Common/LinuxKernel.vala:1128 msgid "Could not find any kernels to uninstall" msgstr "Δεν βρέθηκε κανένας πυρήνας για απεγκατάσταση" -#: src/Common/LinuxKernel.vala:1189 +#: src/Common/LinuxKernel.vala:1136 msgid "The following kernels will be uninstalled" msgstr "Θα καταργηθεί η εγκατάσταση των ακόλουθων πυρήνων" -#: src/Common/LinuxKernel.vala:1193 +#: src/Common/LinuxKernel.vala:1140 msgid "Continue ?" msgstr "Συνέχεια;" -#: src/Common/LinuxKernel.vala:1215 src/Console/AppConsole.vala:234 +#: src/Common/LinuxKernel.vala:1162 src/Console/AppConsole.vala:234 msgid "Latest update" msgstr "Τελευταία αναβάθμιση" -#: src/Common/LinuxKernel.vala:1226 src/Console/AppConsole.vala:241 +#: src/Common/LinuxKernel.vala:1173 src/Console/AppConsole.vala:241 msgid "Latest point update" msgstr "Τελευταία ενημέρωση συντήρησης" -#: src/Common/LinuxKernel.vala:1234 src/Console/AppConsole.vala:246 -#: src/Console/AppConsole.vala:262 +#: src/Common/LinuxKernel.vala:1181 src/Console/AppConsole.vala:246 +#: src/Console/AppConsole.vala:261 msgid "No updates found" msgstr "Δεν βρέθηκαν ενημερώσεις" -#: src/Common/LinuxKernel.vala:1243 +#: src/Common/LinuxKernel.vala:1190 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Εγκατάσταση του πυρήνα έκδοσης %s ; (ν/ό):" -#: src/Common/Main.vala:336 +#: src/Common/Main.vala:334 msgid "Called from" msgstr "Κλήθηκε από" -#: src/Common/Main.vala:336 +#: src/Common/Main.vala:334 msgid "at logon" msgstr "κατά την εκκίνηση" -#: src/Common/Main.vala:337 +#: src/Common/Main.vala:335 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" "Αυτό το αρχείο αντικαθίσταται και εκτελείται ξανά κάθε φορά που " "αποθηκεύονται οι ρυθμίσεις στο" -#: src/Common/Main.vala:369 +#: src/Common/Main.vala:367 msgid "Notifications are disabled" msgstr "Οι ειδοποιήσεις είναι απενεργοποιημένες" @@ -208,7 +219,7 @@ msgstr "Οι ειδοποιήσεις είναι απενεργοποιημέν msgid "File not found: %s" msgstr "Το αρχείο δεν βρέθηκε: %s" -#: src/Console/AppConsole.vala:43 src/Gtk/AppGtk.vala:139 +#: src/Console/AppConsole.vala:43 src/Gtk/AppGtk.vala:137 msgid "Syntax" msgstr "Σύνταξη" @@ -265,7 +276,7 @@ msgid "Delete cached info about available kernels" msgstr "" "Διαγραφή προσωρινά αποθηκευμένων πληροφοριών σχετικά με διαθέσιμους πυρήνες" -#: src/Console/AppConsole.vala:59 src/Gtk/AppGtk.vala:141 +#: src/Console/AppConsole.vala:59 src/Gtk/AppGtk.vala:139 msgid "Options" msgstr "Επιλογές" @@ -299,7 +310,7 @@ msgstr "" msgid "Locked kernels and the currently running kernel are ignored" msgstr "Αυτός ο πυρήνας είναι ήδη εγκατεστημένος." -#: src/Console/AppConsole.vala:160 src/Gtk/AppGtk.vala:125 +#: src/Console/AppConsole.vala:160 src/Gtk/AppGtk.vala:123 msgid "Unknown option" msgstr "Άγνωστη επιλογή" @@ -319,24 +330,24 @@ msgstr "Η εντολή δεν προσδιορίστηκε" msgid "to list all commands" msgstr "για να παραθέσετε όλες τις εντολές" -#: src/Console/AppConsole.vala:256 +#: src/Console/AppConsole.vala:255 msgid "Notifications disabled in settings" msgstr "Οι ειδοποιήσεις είναι απενεργοποιημένες στις ρυθμίσεις" -#: src/Console/AppConsole.vala:284 +#: src/Console/AppConsole.vala:283 #, c-format msgid "Kernel %s Available" msgstr "Πυρήνας %s διαθέσιμος" -#: src/Console/AppConsole.vala:288 src/Gtk/SettingsDialog.vala:166 +#: src/Console/AppConsole.vala:287 src/Gtk/SettingsDialog.vala:166 msgid "Show" msgstr "Προβολή" -#: src/Console/AppConsole.vala:289 src/Gtk/MainWindow.vala:299 +#: src/Console/AppConsole.vala:288 src/Gtk/MainWindow.vala:299 msgid "Install" msgstr "Εγκατάσταση" -#: src/Console/AppConsole.vala:292 +#: src/Console/AppConsole.vala:291 msgid "Previously notified" msgstr "Έχει ήδη κοινοποιηθεί" @@ -376,15 +387,15 @@ msgstr "Τεκμηριωτές" msgid "Third Party Inclusions" msgstr "Συμπεριλήψεις τρίτων" -#: src/Gtk/AppGtk.vala:139 +#: src/Gtk/AppGtk.vala:137 msgid "options" msgstr "επιλογές" -#: src/Gtk/AppGtk.vala:143 +#: src/Gtk/AppGtk.vala:141 msgid "Print debug information" msgstr "Εκτύπωση πληροφοριών εντοπισμού σφαλμάτων" -#: src/Gtk/AppGtk.vala:144 +#: src/Gtk/AppGtk.vala:142 msgid "Show all options" msgstr "Εμφάνιση όλων των επιλογών" @@ -444,16 +455,16 @@ msgstr "Forked" msgid "Original" msgstr "Πρωτότυπο" -#: src/Gtk/MainWindow.vala:452 +#: src/Gtk/MainWindow.vala:444 msgid "Updating kernels" msgstr "Ενημέρωση πυρήνων" -#: src/Gtk/MainWindow.vala:520 +#: src/Gtk/MainWindow.vala:521 msgid "available" msgstr "διαθέσιμος" -#: src/Gtk/MainWindow.vala:575 src/Gtk/MainWindow.vala:614 -#: src/Gtk/MainWindow.vala:646 +#: src/Gtk/MainWindow.vala:576 src/Gtk/MainWindow.vala:615 +#: src/Gtk/MainWindow.vala:647 msgid "DONE" msgstr "" diff --git a/po/es.po b/po/es.po index f1c3e756..6e56d345 100644 --- a/po/es.po +++ b/po/es.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-29 18:58-0400\n" +"POT-Creation-Date: 2023-05-30 02:25-0400\n" "PO-Revision-Date: 2018-01-03 02:03-0600\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish\n" @@ -53,153 +53,164 @@ msgstr "Aceptar" msgid "FAILED" msgstr "FRACASADO" -#: src/Common/LinuxKernel.vala:409 +#: src/Common/LinuxKernel.vala:410 msgid "Found installed" msgstr "Encontrado instalado" -#: src/Common/LinuxKernel.vala:410 +#: src/Common/LinuxKernel.vala:411 msgid "locked" msgstr "" -#: src/Common/LinuxKernel.vala:497 src/Common/LinuxKernel.vala:1077 -#: src/Common/LinuxKernel.vala:1111 src/Common/LinuxKernel.vala:1167 +#: src/Common/LinuxKernel.vala:496 src/Common/LinuxKernel.vala:1024 +#: src/Common/LinuxKernel.vala:1114 msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:749 src/Gtk/MainWindow.vala:511 -#: src/Gtk/MainWindow.vala:524 +#: src/Common/LinuxKernel.vala:696 src/Gtk/MainWindow.vala:512 +#: src/Gtk/MainWindow.vala:525 msgid "Running" msgstr "En ejecución" -#: src/Common/LinuxKernel.vala:750 +#: src/Common/LinuxKernel.vala:697 msgid "Installed" msgstr "Instalado" -#: src/Common/LinuxKernel.vala:751 +#: src/Common/LinuxKernel.vala:698 msgid "Invalid" msgstr "No válido" -#: src/Common/LinuxKernel.vala:837 +#: src/Common/LinuxKernel.vala:783 msgid "Packages Available" msgstr "Paquetes disponibles" -#: src/Common/LinuxKernel.vala:843 +#: src/Common/LinuxKernel.vala:789 msgid "Packages Installed" msgstr "Paquetes instalados" -#: src/Common/LinuxKernel.vala:868 src/lib/TeeJee.FileSystem.vala:118 +#: src/Common/LinuxKernel.vala:814 src/lib/TeeJee.FileSystem.vala:118 msgid "File not found" msgstr "No se encontró el archivo" -#: src/Common/LinuxKernel.vala:962 +#: src/Common/LinuxKernel.vala:908 msgid "Available Kernels" msgstr "Núcleos disponibles" -#: src/Common/LinuxKernel.vala:990 -#, fuzzy -msgid "No kernels specified" -msgstr "Coomand no especificado" - -#: src/Common/LinuxKernel.vala:997 src/Gtk/MainWindow.vala:119 +#: src/Common/LinuxKernel.vala:943 src/Gtk/MainWindow.vala:119 msgid "Kernel" msgstr "Núcleo" -#: src/Common/LinuxKernel.vala:997 +#: src/Common/LinuxKernel.vala:943 #, fuzzy msgid "not found" msgstr "No se encontró el archivo" -#: src/Common/LinuxKernel.vala:1023 +#: src/Common/LinuxKernel.vala:950 +#, fuzzy +msgid "Download: no downloadable kernels specified" +msgstr "Coomand no especificado" + +#: src/Common/LinuxKernel.vala:970 msgid "enabled" msgstr "habilitado" -#: src/Common/LinuxKernel.vala:1047 +#: src/Common/LinuxKernel.vala:994 msgid "Downloading" msgstr "Descargar" -#: src/Common/LinuxKernel.vala:1072 +#: src/Common/LinuxKernel.vala:1019 msgid "is already installed." msgstr "ya está instalado." -#: src/Common/LinuxKernel.vala:1082 +#: src/Common/LinuxKernel.vala:1029 msgid "download failed." msgstr "" -#: src/Common/LinuxKernel.vala:1099 +#: src/Common/LinuxKernel.vala:1037 +#, fuzzy +msgid "Install: no installable kernels secified" +msgstr "Coomand no especificado" + +#: src/Common/LinuxKernel.vala:1049 msgid "Uninstalling selected kernels" msgstr "Desinstalación de kernels seleccionados" -#: src/Common/LinuxKernel.vala:1103 -msgid "requested" +#: src/Common/LinuxKernel.vala:1053 +#, fuzzy +msgid "Requested" msgstr "solicitado" -#: src/Common/LinuxKernel.vala:1106 -msgid "not uninstalling the currently running kernel" +#: src/Common/LinuxKernel.vala:1056 +#, fuzzy +msgid "Not uninstalling the currently running kernel" msgstr "No desinstalará el kernel que se está ejecutando actualmente" -#: src/Common/LinuxKernel.vala:1119 +#: src/Common/LinuxKernel.vala:1061 +msgid "is locked" +msgstr "" + +#: src/Common/LinuxKernel.vala:1069 msgid "found" msgstr "fundar" -#: src/Common/LinuxKernel.vala:1124 -msgid "No packages to un-install!" -msgstr "¡No hay paquetes para desinstalar!" +#: src/Common/LinuxKernel.vala:1073 +msgid "Uninstall: no uninstallable packages found" +msgstr "" -#: src/Common/LinuxKernel.vala:1163 +#: src/Common/LinuxKernel.vala:1110 #, fuzzy msgid "is the highest installed version." msgstr "Desinstale todas las versiones instaladas excepto la más alta" -#: src/Common/LinuxKernel.vala:1176 +#: src/Common/LinuxKernel.vala:1123 msgid "Could not find running kernel in list" msgstr "No se pudo encontrar el kernel en ejecución en la lista" -#: src/Common/LinuxKernel.vala:1181 +#: src/Common/LinuxKernel.vala:1128 msgid "Could not find any kernels to uninstall" msgstr "No se pudo encontrar ningún kernel para desinstalar" -#: src/Common/LinuxKernel.vala:1189 +#: src/Common/LinuxKernel.vala:1136 msgid "The following kernels will be uninstalled" msgstr "Se desinstalarán los siguientes kernels" -#: src/Common/LinuxKernel.vala:1193 +#: src/Common/LinuxKernel.vala:1140 msgid "Continue ?" msgstr "¿Continuar?" -#: src/Common/LinuxKernel.vala:1215 src/Console/AppConsole.vala:234 +#: src/Common/LinuxKernel.vala:1162 src/Console/AppConsole.vala:234 msgid "Latest update" msgstr "Última actualización" -#: src/Common/LinuxKernel.vala:1226 src/Console/AppConsole.vala:241 +#: src/Common/LinuxKernel.vala:1173 src/Console/AppConsole.vala:241 msgid "Latest point update" msgstr "Última actualización puntual" -#: src/Common/LinuxKernel.vala:1234 src/Console/AppConsole.vala:246 -#: src/Console/AppConsole.vala:262 +#: src/Common/LinuxKernel.vala:1181 src/Console/AppConsole.vala:246 +#: src/Console/AppConsole.vala:261 msgid "No updates found" msgstr "No se encontró ninguna actualización" -#: src/Common/LinuxKernel.vala:1243 +#: src/Common/LinuxKernel.vala:1190 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Instalar la versión del kernel %s? (s/n): " -#: src/Common/Main.vala:336 +#: src/Common/Main.vala:334 msgid "Called from" msgstr "Llamado desde" -#: src/Common/Main.vala:336 +#: src/Common/Main.vala:334 msgid "at logon" msgstr "al inicio" -#: src/Common/Main.vala:337 +#: src/Common/Main.vala:335 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" "Este archivo se sobrescribe y se ejecuta de nuevo cada vez que se guarda la " "configuración en" -#: src/Common/Main.vala:369 +#: src/Common/Main.vala:367 msgid "Notifications are disabled" msgstr "Las notificaciones están deshabilitadas" @@ -208,7 +219,7 @@ msgstr "Las notificaciones están deshabilitadas" msgid "File not found: %s" msgstr "Archivo no encontrado: %s" -#: src/Console/AppConsole.vala:43 src/Gtk/AppGtk.vala:139 +#: src/Console/AppConsole.vala:43 src/Gtk/AppGtk.vala:137 msgid "Syntax" msgstr "Sintaxis" @@ -264,7 +275,7 @@ msgstr "Descargar kernels especificados" msgid "Delete cached info about available kernels" msgstr "Eliminar información almacenada en caché sobre los kernels disponibles" -#: src/Console/AppConsole.vala:59 src/Gtk/AppGtk.vala:141 +#: src/Console/AppConsole.vala:59 src/Gtk/AppGtk.vala:139 msgid "Options" msgstr "Opciones" @@ -298,7 +309,7 @@ msgstr "" msgid "Locked kernels and the currently running kernel are ignored" msgstr "El kernel que se está ejecutando actualmente siempre será ignorado" -#: src/Console/AppConsole.vala:160 src/Gtk/AppGtk.vala:125 +#: src/Console/AppConsole.vala:160 src/Gtk/AppGtk.vala:123 msgid "Unknown option" msgstr "Opción desconocida" @@ -318,24 +329,24 @@ msgstr "Coomand no especificado" msgid "to list all commands" msgstr "para enumerar todos los cmmands" -#: src/Console/AppConsole.vala:256 +#: src/Console/AppConsole.vala:255 msgid "Notifications disabled in settings" msgstr "Notificaciones deshabilitadas en la configuración" -#: src/Console/AppConsole.vala:284 +#: src/Console/AppConsole.vala:283 #, c-format msgid "Kernel %s Available" msgstr "Kernel %s Disponible" -#: src/Console/AppConsole.vala:288 src/Gtk/SettingsDialog.vala:166 +#: src/Console/AppConsole.vala:287 src/Gtk/SettingsDialog.vala:166 msgid "Show" msgstr "Mostrar" -#: src/Console/AppConsole.vala:289 src/Gtk/MainWindow.vala:299 +#: src/Console/AppConsole.vala:288 src/Gtk/MainWindow.vala:299 msgid "Install" msgstr "Instalar" -#: src/Console/AppConsole.vala:292 +#: src/Console/AppConsole.vala:291 msgid "Previously notified" msgstr "Notificado previamente" @@ -375,15 +386,15 @@ msgstr "Documentadores" msgid "Third Party Inclusions" msgstr "Herramientas de Terceros" -#: src/Gtk/AppGtk.vala:139 +#: src/Gtk/AppGtk.vala:137 msgid "options" msgstr "opciones" -#: src/Gtk/AppGtk.vala:143 +#: src/Gtk/AppGtk.vala:141 msgid "Print debug information" msgstr "Mostrar información de depuración" -#: src/Gtk/AppGtk.vala:144 +#: src/Gtk/AppGtk.vala:142 msgid "Show all options" msgstr "Mostrar todas las opciones" @@ -444,16 +455,16 @@ msgstr "Bifurcada" msgid "Original" msgstr "Original" -#: src/Gtk/MainWindow.vala:452 +#: src/Gtk/MainWindow.vala:444 msgid "Updating kernels" msgstr "Actualización de kernels" -#: src/Gtk/MainWindow.vala:520 +#: src/Gtk/MainWindow.vala:521 msgid "available" msgstr "disponibles" -#: src/Gtk/MainWindow.vala:575 src/Gtk/MainWindow.vala:614 -#: src/Gtk/MainWindow.vala:646 +#: src/Gtk/MainWindow.vala:576 src/Gtk/MainWindow.vala:615 +#: src/Gtk/MainWindow.vala:647 msgid "DONE" msgstr "" diff --git a/po/fr.po b/po/fr.po index 6d7e71f2..0fb01f10 100644 --- a/po/fr.po +++ b/po/fr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-29 18:58-0400\n" +"POT-Creation-Date: 2023-05-30 02:25-0400\n" "PO-Revision-Date: 2018-08-05 15:50+0200\n" "Last-Translator: Yolateng0 \n" "Language-Team: French\n" @@ -53,153 +53,164 @@ msgstr "OK" msgid "FAILED" msgstr "RATÉ" -#: src/Common/LinuxKernel.vala:409 +#: src/Common/LinuxKernel.vala:410 msgid "Found installed" msgstr "Trouvé installé" -#: src/Common/LinuxKernel.vala:410 +#: src/Common/LinuxKernel.vala:411 msgid "locked" msgstr "" -#: src/Common/LinuxKernel.vala:497 src/Common/LinuxKernel.vala:1077 -#: src/Common/LinuxKernel.vala:1111 src/Common/LinuxKernel.vala:1167 +#: src/Common/LinuxKernel.vala:496 src/Common/LinuxKernel.vala:1024 +#: src/Common/LinuxKernel.vala:1114 msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:749 src/Gtk/MainWindow.vala:511 -#: src/Gtk/MainWindow.vala:524 +#: src/Common/LinuxKernel.vala:696 src/Gtk/MainWindow.vala:512 +#: src/Gtk/MainWindow.vala:525 msgid "Running" msgstr "Actuel" -#: src/Common/LinuxKernel.vala:750 +#: src/Common/LinuxKernel.vala:697 msgid "Installed" msgstr "Installé" -#: src/Common/LinuxKernel.vala:751 +#: src/Common/LinuxKernel.vala:698 msgid "Invalid" msgstr "No válido" -#: src/Common/LinuxKernel.vala:837 +#: src/Common/LinuxKernel.vala:783 msgid "Packages Available" msgstr "Paquets Disponibles" -#: src/Common/LinuxKernel.vala:843 +#: src/Common/LinuxKernel.vala:789 msgid "Packages Installed" msgstr "Paquets Installés" -#: src/Common/LinuxKernel.vala:868 src/lib/TeeJee.FileSystem.vala:118 +#: src/Common/LinuxKernel.vala:814 src/lib/TeeJee.FileSystem.vala:118 msgid "File not found" msgstr "Fichier non trouvé" -#: src/Common/LinuxKernel.vala:962 +#: src/Common/LinuxKernel.vala:908 msgid "Available Kernels" msgstr "Noyaux Disponibles" -#: src/Common/LinuxKernel.vala:990 -#, fuzzy -msgid "No kernels specified" -msgstr "Pas de commande fournie" - -#: src/Common/LinuxKernel.vala:997 src/Gtk/MainWindow.vala:119 +#: src/Common/LinuxKernel.vala:943 src/Gtk/MainWindow.vala:119 msgid "Kernel" msgstr "Noyau" -#: src/Common/LinuxKernel.vala:997 +#: src/Common/LinuxKernel.vala:943 #, fuzzy msgid "not found" msgstr "Fichier non trouvé" -#: src/Common/LinuxKernel.vala:1023 +#: src/Common/LinuxKernel.vala:950 +#, fuzzy +msgid "Download: no downloadable kernels specified" +msgstr "Pas de commande fournie" + +#: src/Common/LinuxKernel.vala:970 msgid "enabled" msgstr "activé" -#: src/Common/LinuxKernel.vala:1047 +#: src/Common/LinuxKernel.vala:994 msgid "Downloading" msgstr "Téléchargement" -#: src/Common/LinuxKernel.vala:1072 +#: src/Common/LinuxKernel.vala:1019 msgid "is already installed." msgstr "est déjà installé." -#: src/Common/LinuxKernel.vala:1082 +#: src/Common/LinuxKernel.vala:1029 msgid "download failed." msgstr "" -#: src/Common/LinuxKernel.vala:1099 +#: src/Common/LinuxKernel.vala:1037 +#, fuzzy +msgid "Install: no installable kernels secified" +msgstr "Pas de commande fournie" + +#: src/Common/LinuxKernel.vala:1049 msgid "Uninstalling selected kernels" msgstr "Désinstallation des noyaux sélectionnés" -#: src/Common/LinuxKernel.vala:1103 -msgid "requested" +#: src/Common/LinuxKernel.vala:1053 +#, fuzzy +msgid "Requested" msgstr "Demandé" -#: src/Common/LinuxKernel.vala:1106 -msgid "not uninstalling the currently running kernel" +#: src/Common/LinuxKernel.vala:1056 +#, fuzzy +msgid "Not uninstalling the currently running kernel" msgstr "Ne pas désinstaller le noyau en cours d'exécution" -#: src/Common/LinuxKernel.vala:1119 +#: src/Common/LinuxKernel.vala:1061 +msgid "is locked" +msgstr "" + +#: src/Common/LinuxKernel.vala:1069 msgid "found" msgstr "fonder" -#: src/Common/LinuxKernel.vala:1124 -msgid "No packages to un-install!" -msgstr "Pas de paquets à désinstaller !" +#: src/Common/LinuxKernel.vala:1073 +msgid "Uninstall: no uninstallable packages found" +msgstr "" -#: src/Common/LinuxKernel.vala:1163 +#: src/Common/LinuxKernel.vala:1110 #, fuzzy msgid "is the highest installed version." msgstr "Désinstallez toutes le version installées, sauf la plus élevée" -#: src/Common/LinuxKernel.vala:1176 +#: src/Common/LinuxKernel.vala:1123 msgid "Could not find running kernel in list" msgstr "Impossible de trouver le noyau en cours d'exécution dans la liste" -#: src/Common/LinuxKernel.vala:1181 +#: src/Common/LinuxKernel.vala:1128 msgid "Could not find any kernels to uninstall" msgstr "Impossible de trouver des noyaux à désinstaller" -#: src/Common/LinuxKernel.vala:1189 +#: src/Common/LinuxKernel.vala:1136 msgid "The following kernels will be uninstalled" msgstr "Les noyaux suivants seront désinstallés" -#: src/Common/LinuxKernel.vala:1193 +#: src/Common/LinuxKernel.vala:1140 msgid "Continue ?" msgstr "Reprendre ?" -#: src/Common/LinuxKernel.vala:1215 src/Console/AppConsole.vala:234 +#: src/Common/LinuxKernel.vala:1162 src/Console/AppConsole.vala:234 msgid "Latest update" msgstr "Dernière mise à jour" -#: src/Common/LinuxKernel.vala:1226 src/Console/AppConsole.vala:241 +#: src/Common/LinuxKernel.vala:1173 src/Console/AppConsole.vala:241 msgid "Latest point update" msgstr "Dernière mise à jour mineure" -#: src/Common/LinuxKernel.vala:1234 src/Console/AppConsole.vala:246 -#: src/Console/AppConsole.vala:262 +#: src/Common/LinuxKernel.vala:1181 src/Console/AppConsole.vala:246 +#: src/Console/AppConsole.vala:261 msgid "No updates found" msgstr "Aucune mise à jour disponible" -#: src/Common/LinuxKernel.vala:1243 +#: src/Common/LinuxKernel.vala:1190 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Installer le noyau en version %s ? (y/n): " -#: src/Common/Main.vala:336 +#: src/Common/Main.vala:334 msgid "Called from" msgstr "Appelé à partir de" -#: src/Common/Main.vala:336 +#: src/Common/Main.vala:334 msgid "at logon" msgstr "au démarrage" -#: src/Common/Main.vala:337 +#: src/Common/Main.vala:335 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" "Ce fichier est écrasé et exécuté à nouveau chaque fois que les paramètres " "sont enregistrés dans" -#: src/Common/Main.vala:369 +#: src/Common/Main.vala:367 msgid "Notifications are disabled" msgstr "Les notifications sont désactivées" @@ -208,7 +219,7 @@ msgstr "Les notifications sont désactivées" msgid "File not found: %s" msgstr "Fichier introuvable : %s" -#: src/Console/AppConsole.vala:43 src/Gtk/AppGtk.vala:139 +#: src/Console/AppConsole.vala:43 src/Gtk/AppGtk.vala:137 msgid "Syntax" msgstr "Syntaxe" @@ -264,7 +275,7 @@ msgstr "Télécharger les noyaux spécifiés" msgid "Delete cached info about available kernels" msgstr "Supprimer les informations mises en cache sur les noyaux disponibles" -#: src/Console/AppConsole.vala:59 src/Gtk/AppGtk.vala:141 +#: src/Console/AppConsole.vala:59 src/Gtk/AppGtk.vala:139 msgid "Options" msgstr "Options" @@ -298,7 +309,7 @@ msgstr "" msgid "Locked kernels and the currently running kernel are ignored" msgstr "Le noyau en cours d'exécution sera toujours ignoré" -#: src/Console/AppConsole.vala:160 src/Gtk/AppGtk.vala:125 +#: src/Console/AppConsole.vala:160 src/Gtk/AppGtk.vala:123 msgid "Unknown option" msgstr "Option inconnue" @@ -318,24 +329,24 @@ msgstr "Pas de commande fournie" msgid "to list all commands" msgstr "pour afficher toutes les commandes" -#: src/Console/AppConsole.vala:256 +#: src/Console/AppConsole.vala:255 msgid "Notifications disabled in settings" msgstr "Notifications désactivées dans les paramètres" -#: src/Console/AppConsole.vala:284 +#: src/Console/AppConsole.vala:283 #, c-format msgid "Kernel %s Available" msgstr "Paquet %s disponibles" -#: src/Console/AppConsole.vala:288 src/Gtk/SettingsDialog.vala:166 +#: src/Console/AppConsole.vala:287 src/Gtk/SettingsDialog.vala:166 msgid "Show" msgstr "Montrer" -#: src/Console/AppConsole.vala:289 src/Gtk/MainWindow.vala:299 +#: src/Console/AppConsole.vala:288 src/Gtk/MainWindow.vala:299 msgid "Install" msgstr "Installer" -#: src/Console/AppConsole.vala:292 +#: src/Console/AppConsole.vala:291 msgid "Previously notified" msgstr "Précédemment notifié" @@ -375,15 +386,15 @@ msgstr "Documentalistes" msgid "Third Party Inclusions" msgstr "Dépendances Tierces" -#: src/Gtk/AppGtk.vala:139 +#: src/Gtk/AppGtk.vala:137 msgid "options" msgstr "options" -#: src/Gtk/AppGtk.vala:143 +#: src/Gtk/AppGtk.vala:141 msgid "Print debug information" msgstr "Afficher les informations de débogage" -#: src/Gtk/AppGtk.vala:144 +#: src/Gtk/AppGtk.vala:142 msgid "Show all options" msgstr "Afficher toutes les options" @@ -445,16 +456,16 @@ msgstr "Forkée" msgid "Original" msgstr "Originale" -#: src/Gtk/MainWindow.vala:452 +#: src/Gtk/MainWindow.vala:444 msgid "Updating kernels" msgstr "Mise à jour des noyaux" -#: src/Gtk/MainWindow.vala:520 +#: src/Gtk/MainWindow.vala:521 msgid "available" msgstr "disponible" -#: src/Gtk/MainWindow.vala:575 src/Gtk/MainWindow.vala:614 -#: src/Gtk/MainWindow.vala:646 +#: src/Gtk/MainWindow.vala:576 src/Gtk/MainWindow.vala:615 +#: src/Gtk/MainWindow.vala:647 msgid "DONE" msgstr "" diff --git a/po/hr.po b/po/hr.po index 5fd3df9a..caf2a7e6 100644 --- a/po/hr.po +++ b/po/hr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-29 18:58-0400\n" +"POT-Creation-Date: 2023-05-30 02:25-0400\n" "PO-Revision-Date: 2022-09-22 12:13+0200\n" "Last-Translator: gogo \n" "Language-Team: Croatian\n" @@ -53,152 +53,163 @@ msgstr "OK" msgid "FAILED" msgstr "NIJE USPIO" -#: src/Common/LinuxKernel.vala:409 +#: src/Common/LinuxKernel.vala:410 msgid "Found installed" msgstr "Pronađeno instalirano" -#: src/Common/LinuxKernel.vala:410 +#: src/Common/LinuxKernel.vala:411 msgid "locked" msgstr "" -#: src/Common/LinuxKernel.vala:497 src/Common/LinuxKernel.vala:1077 -#: src/Common/LinuxKernel.vala:1111 src/Common/LinuxKernel.vala:1167 +#: src/Common/LinuxKernel.vala:496 src/Common/LinuxKernel.vala:1024 +#: src/Common/LinuxKernel.vala:1114 msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:749 src/Gtk/MainWindow.vala:511 -#: src/Gtk/MainWindow.vala:524 +#: src/Common/LinuxKernel.vala:696 src/Gtk/MainWindow.vala:512 +#: src/Gtk/MainWindow.vala:525 msgid "Running" msgstr "Pokrenuto" -#: src/Common/LinuxKernel.vala:750 +#: src/Common/LinuxKernel.vala:697 msgid "Installed" msgstr "Instalirano" -#: src/Common/LinuxKernel.vala:751 +#: src/Common/LinuxKernel.vala:698 msgid "Invalid" msgstr "Érvénytelen" -#: src/Common/LinuxKernel.vala:837 +#: src/Common/LinuxKernel.vala:783 msgid "Packages Available" msgstr "Dostupni Paketi" -#: src/Common/LinuxKernel.vala:843 +#: src/Common/LinuxKernel.vala:789 msgid "Packages Installed" msgstr "Instalirani paketi" -#: src/Common/LinuxKernel.vala:868 src/lib/TeeJee.FileSystem.vala:118 +#: src/Common/LinuxKernel.vala:814 src/lib/TeeJee.FileSystem.vala:118 msgid "File not found" msgstr "Datoteka nije pronađena" -#: src/Common/LinuxKernel.vala:962 +#: src/Common/LinuxKernel.vala:908 msgid "Available Kernels" msgstr "Dostupni kerneli" -#: src/Common/LinuxKernel.vala:990 -#, fuzzy -msgid "No kernels specified" -msgstr "Naredba nije navedena" - -#: src/Common/LinuxKernel.vala:997 src/Gtk/MainWindow.vala:119 +#: src/Common/LinuxKernel.vala:943 src/Gtk/MainWindow.vala:119 msgid "Kernel" msgstr "Kernel" -#: src/Common/LinuxKernel.vala:997 +#: src/Common/LinuxKernel.vala:943 #, fuzzy msgid "not found" msgstr "Datoteka nije pronađena" -#: src/Common/LinuxKernel.vala:1023 +#: src/Common/LinuxKernel.vala:950 +#, fuzzy +msgid "Download: no downloadable kernels specified" +msgstr "Naredba nije navedena" + +#: src/Common/LinuxKernel.vala:970 msgid "enabled" msgstr "omogućen" -#: src/Common/LinuxKernel.vala:1047 +#: src/Common/LinuxKernel.vala:994 msgid "Downloading" msgstr "Učitavanje" -#: src/Common/LinuxKernel.vala:1072 +#: src/Common/LinuxKernel.vala:1019 msgid "is already installed." msgstr "je već instaliran." -#: src/Common/LinuxKernel.vala:1082 +#: src/Common/LinuxKernel.vala:1029 msgid "download failed." msgstr "" -#: src/Common/LinuxKernel.vala:1099 +#: src/Common/LinuxKernel.vala:1037 +#, fuzzy +msgid "Install: no installable kernels secified" +msgstr "Naredba nije navedena" + +#: src/Common/LinuxKernel.vala:1049 msgid "Uninstalling selected kernels" msgstr "Deinstaliraj određene kernele" -#: src/Common/LinuxKernel.vala:1103 -msgid "requested" +#: src/Common/LinuxKernel.vala:1053 +#, fuzzy +msgid "Requested" msgstr "Zatražio" -#: src/Common/LinuxKernel.vala:1106 -msgid "not uninstalling the currently running kernel" +#: src/Common/LinuxKernel.vala:1056 +#, fuzzy +msgid "Not uninstalling the currently running kernel" msgstr "ne deinstaliranje trenutno pokrenute kernel" -#: src/Common/LinuxKernel.vala:1119 +#: src/Common/LinuxKernel.vala:1061 +msgid "is locked" +msgstr "" + +#: src/Common/LinuxKernel.vala:1069 msgid "found" msgstr "pronađen" -#: src/Common/LinuxKernel.vala:1124 -msgid "No packages to un-install!" -msgstr "Nema paketa za poništavanje instalacije!" +#: src/Common/LinuxKernel.vala:1073 +msgid "Uninstall: no uninstallable packages found" +msgstr "" -#: src/Common/LinuxKernel.vala:1163 +#: src/Common/LinuxKernel.vala:1110 #, fuzzy msgid "is the highest installed version." msgstr "Deinstaliraj sve osim najnovije instalirane verzije" -#: src/Common/LinuxKernel.vala:1176 +#: src/Common/LinuxKernel.vala:1123 msgid "Could not find running kernel in list" msgstr "Nije moguće pronaći pokrenutu kernel na popisu" -#: src/Common/LinuxKernel.vala:1181 +#: src/Common/LinuxKernel.vala:1128 msgid "Could not find any kernels to uninstall" msgstr "Nema pronađenih kernela za deinstaliranje" -#: src/Common/LinuxKernel.vala:1189 +#: src/Common/LinuxKernel.vala:1136 msgid "The following kernels will be uninstalled" msgstr "Deinstalirat će se sljedeće kerneli" -#: src/Common/LinuxKernel.vala:1193 +#: src/Common/LinuxKernel.vala:1140 msgid "Continue ?" msgstr "Nastavi?" -#: src/Common/LinuxKernel.vala:1215 src/Console/AppConsole.vala:234 +#: src/Common/LinuxKernel.vala:1162 src/Console/AppConsole.vala:234 msgid "Latest update" msgstr "Najnovija nadopuna" -#: src/Common/LinuxKernel.vala:1226 src/Console/AppConsole.vala:241 +#: src/Common/LinuxKernel.vala:1173 src/Console/AppConsole.vala:241 msgid "Latest point update" msgstr "Najnovija ciljana nadopuna" -#: src/Common/LinuxKernel.vala:1234 src/Console/AppConsole.vala:246 -#: src/Console/AppConsole.vala:262 +#: src/Common/LinuxKernel.vala:1181 src/Console/AppConsole.vala:246 +#: src/Console/AppConsole.vala:261 msgid "No updates found" msgstr "Nema pronađenih nadopuna" -#: src/Common/LinuxKernel.vala:1243 +#: src/Common/LinuxKernel.vala:1190 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Instaliraj kernel inačice %s ? (d/n): " -#: src/Common/Main.vala:336 +#: src/Common/Main.vala:334 msgid "Called from" msgstr "Pozvano od" -#: src/Common/Main.vala:336 +#: src/Common/Main.vala:334 msgid "at logon" msgstr "indításkor" -#: src/Common/Main.vala:337 +#: src/Common/Main.vala:335 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" "Ova se datoteka prepisuje i ponovno izvršava kad god se postavke spremaju u" -#: src/Common/Main.vala:369 +#: src/Common/Main.vala:367 msgid "Notifications are disabled" msgstr "Obavijesti su onemogućene" @@ -207,7 +218,7 @@ msgstr "Obavijesti su onemogućene" msgid "File not found: %s" msgstr "Datoteka nije pronađena: %s" -#: src/Console/AppConsole.vala:43 src/Gtk/AppGtk.vala:139 +#: src/Console/AppConsole.vala:43 src/Gtk/AppGtk.vala:137 msgid "Syntax" msgstr "Sintaksa" @@ -263,7 +274,7 @@ msgstr "Preuzmi određene kernele" msgid "Delete cached info about available kernels" msgstr "Brisanje predmemoriranih podataka o dostupnim jezgrama" -#: src/Console/AppConsole.vala:59 src/Gtk/AppGtk.vala:141 +#: src/Console/AppConsole.vala:59 src/Gtk/AppGtk.vala:139 msgid "Options" msgstr "Mogućnosti" @@ -297,7 +308,7 @@ msgstr "" msgid "Locked kernels and the currently running kernel are ignored" msgstr "Trenutno pokrenuta jezgra uvijek će se zanemariti" -#: src/Console/AppConsole.vala:160 src/Gtk/AppGtk.vala:125 +#: src/Console/AppConsole.vala:160 src/Gtk/AppGtk.vala:123 msgid "Unknown option" msgstr "Nepoznata mogućnost" @@ -317,24 +328,24 @@ msgstr "Naredba nije navedena" msgid "to list all commands" msgstr "za prikaz svih mogućnosti" -#: src/Console/AppConsole.vala:256 +#: src/Console/AppConsole.vala:255 msgid "Notifications disabled in settings" msgstr "Obavijesti onemogućene u postavkama" -#: src/Console/AppConsole.vala:284 +#: src/Console/AppConsole.vala:283 #, c-format msgid "Kernel %s Available" msgstr "Kernel %s je dostupan" -#: src/Console/AppConsole.vala:288 src/Gtk/SettingsDialog.vala:166 +#: src/Console/AppConsole.vala:287 src/Gtk/SettingsDialog.vala:166 msgid "Show" msgstr "Prikaži" -#: src/Console/AppConsole.vala:289 src/Gtk/MainWindow.vala:299 +#: src/Console/AppConsole.vala:288 src/Gtk/MainWindow.vala:299 msgid "Install" msgstr "Instaliraj" -#: src/Console/AppConsole.vala:292 +#: src/Console/AppConsole.vala:291 msgid "Previously notified" msgstr "Prethodno prijavljeno" @@ -374,15 +385,15 @@ msgstr "Autori dokumentacije" msgid "Third Party Inclusions" msgstr "Uključene treće strane" -#: src/Gtk/AppGtk.vala:139 +#: src/Gtk/AppGtk.vala:137 msgid "options" msgstr "mogućnosti" -#: src/Gtk/AppGtk.vala:143 +#: src/Gtk/AppGtk.vala:141 msgid "Print debug information" msgstr "Ispiši informacije otklanjanja grešaka" -#: src/Gtk/AppGtk.vala:144 +#: src/Gtk/AppGtk.vala:142 msgid "Show all options" msgstr "Prikaži sve mogućnosti" @@ -442,16 +453,16 @@ msgstr "Forkano" msgid "Original" msgstr "Izvornik" -#: src/Gtk/MainWindow.vala:452 +#: src/Gtk/MainWindow.vala:444 msgid "Updating kernels" msgstr "Ažuriranje jezgri" -#: src/Gtk/MainWindow.vala:520 +#: src/Gtk/MainWindow.vala:521 msgid "available" msgstr "dostupno" -#: src/Gtk/MainWindow.vala:575 src/Gtk/MainWindow.vala:614 -#: src/Gtk/MainWindow.vala:646 +#: src/Gtk/MainWindow.vala:576 src/Gtk/MainWindow.vala:615 +#: src/Gtk/MainWindow.vala:647 msgid "DONE" msgstr "" diff --git a/po/it.po b/po/it.po index f490cfca..c31a0283 100644 --- a/po/it.po +++ b/po/it.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-29 18:58-0400\n" +"POT-Creation-Date: 2023-05-30 02:25-0400\n" "PO-Revision-Date: 2020-08-22 15:35+0100\n" "Last-Translator: Demetrio Mendozzi\n" "Language-Team: Italian\n" @@ -51,153 +51,164 @@ msgstr "OK" msgid "FAILED" msgstr "FALLITO" -#: src/Common/LinuxKernel.vala:409 +#: src/Common/LinuxKernel.vala:410 msgid "Found installed" msgstr "Trovato installato" -#: src/Common/LinuxKernel.vala:410 +#: src/Common/LinuxKernel.vala:411 msgid "locked" msgstr "" -#: src/Common/LinuxKernel.vala:497 src/Common/LinuxKernel.vala:1077 -#: src/Common/LinuxKernel.vala:1111 src/Common/LinuxKernel.vala:1167 +#: src/Common/LinuxKernel.vala:496 src/Common/LinuxKernel.vala:1024 +#: src/Common/LinuxKernel.vala:1114 msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:749 src/Gtk/MainWindow.vala:511 -#: src/Gtk/MainWindow.vala:524 +#: src/Common/LinuxKernel.vala:696 src/Gtk/MainWindow.vala:512 +#: src/Gtk/MainWindow.vala:525 msgid "Running" msgstr "In esecuzione" -#: src/Common/LinuxKernel.vala:750 +#: src/Common/LinuxKernel.vala:697 msgid "Installed" msgstr "Installato" -#: src/Common/LinuxKernel.vala:751 +#: src/Common/LinuxKernel.vala:698 msgid "Invalid" msgstr "Non valido" -#: src/Common/LinuxKernel.vala:837 +#: src/Common/LinuxKernel.vala:783 msgid "Packages Available" msgstr "Pacchetti disponibili" -#: src/Common/LinuxKernel.vala:843 +#: src/Common/LinuxKernel.vala:789 msgid "Packages Installed" msgstr "Pacchetti installati" -#: src/Common/LinuxKernel.vala:868 src/lib/TeeJee.FileSystem.vala:118 +#: src/Common/LinuxKernel.vala:814 src/lib/TeeJee.FileSystem.vala:118 msgid "File not found" msgstr "File non trovato" -#: src/Common/LinuxKernel.vala:962 +#: src/Common/LinuxKernel.vala:908 msgid "Available Kernels" msgstr "Kernel disponibili" -#: src/Common/LinuxKernel.vala:990 -#, fuzzy -msgid "No kernels specified" -msgstr "Comando non specificato" - -#: src/Common/LinuxKernel.vala:997 src/Gtk/MainWindow.vala:119 +#: src/Common/LinuxKernel.vala:943 src/Gtk/MainWindow.vala:119 msgid "Kernel" msgstr "Kernel" -#: src/Common/LinuxKernel.vala:997 +#: src/Common/LinuxKernel.vala:943 #, fuzzy msgid "not found" msgstr "File non trovato" -#: src/Common/LinuxKernel.vala:1023 +#: src/Common/LinuxKernel.vala:950 +#, fuzzy +msgid "Download: no downloadable kernels specified" +msgstr "Comando non specificato" + +#: src/Common/LinuxKernel.vala:970 msgid "enabled" msgstr "abilitato" -#: src/Common/LinuxKernel.vala:1047 +#: src/Common/LinuxKernel.vala:994 msgid "Downloading" msgstr "Scaricamento" -#: src/Common/LinuxKernel.vala:1072 +#: src/Common/LinuxKernel.vala:1019 msgid "is already installed." msgstr "è già installato." -#: src/Common/LinuxKernel.vala:1082 +#: src/Common/LinuxKernel.vala:1029 msgid "download failed." msgstr "" -#: src/Common/LinuxKernel.vala:1099 +#: src/Common/LinuxKernel.vala:1037 +#, fuzzy +msgid "Install: no installable kernels secified" +msgstr "Comando non specificato" + +#: src/Common/LinuxKernel.vala:1049 msgid "Uninstalling selected kernels" msgstr "Disinstalla i kernel specificati" -#: src/Common/LinuxKernel.vala:1103 -msgid "requested" +#: src/Common/LinuxKernel.vala:1053 +#, fuzzy +msgid "Requested" msgstr "richiesto" -#: src/Common/LinuxKernel.vala:1106 -msgid "not uninstalling the currently running kernel" +#: src/Common/LinuxKernel.vala:1056 +#, fuzzy +msgid "Not uninstalling the currently running kernel" msgstr "non disinstallare il kernel attualmente in esecuzione" -#: src/Common/LinuxKernel.vala:1119 +#: src/Common/LinuxKernel.vala:1061 +msgid "is locked" +msgstr "" + +#: src/Common/LinuxKernel.vala:1069 msgid "found" msgstr "trovato" -#: src/Common/LinuxKernel.vala:1124 -msgid "No packages to un-install!" -msgstr "Nessun pacchetto da disinstallare!" +#: src/Common/LinuxKernel.vala:1073 +msgid "Uninstall: no uninstallable packages found" +msgstr "" -#: src/Common/LinuxKernel.vala:1163 +#: src/Common/LinuxKernel.vala:1110 #, fuzzy msgid "is the highest installed version." msgstr "Disinstallare tutti tranne la versione più recente installata" -#: src/Common/LinuxKernel.vala:1176 +#: src/Common/LinuxKernel.vala:1123 msgid "Could not find running kernel in list" msgstr "Impossibile trovare il kernel in esecuzione nell'elenco" -#: src/Common/LinuxKernel.vala:1181 +#: src/Common/LinuxKernel.vala:1128 msgid "Could not find any kernels to uninstall" msgstr "Impossibile trovare alcun kernel da rimuovere" -#: src/Common/LinuxKernel.vala:1189 +#: src/Common/LinuxKernel.vala:1136 msgid "The following kernels will be uninstalled" msgstr "I seguenti kernel saranno rimossi" -#: src/Common/LinuxKernel.vala:1193 +#: src/Common/LinuxKernel.vala:1140 msgid "Continue ?" msgstr "Continuare ?" -#: src/Common/LinuxKernel.vala:1215 src/Console/AppConsole.vala:234 +#: src/Common/LinuxKernel.vala:1162 src/Console/AppConsole.vala:234 msgid "Latest update" msgstr "Ultimo aggiornamento" -#: src/Common/LinuxKernel.vala:1226 src/Console/AppConsole.vala:241 +#: src/Common/LinuxKernel.vala:1173 src/Console/AppConsole.vala:241 msgid "Latest point update" msgstr "Ultimo aggiornamento del rilascio parziale" -#: src/Common/LinuxKernel.vala:1234 src/Console/AppConsole.vala:246 -#: src/Console/AppConsole.vala:262 +#: src/Common/LinuxKernel.vala:1181 src/Console/AppConsole.vala:246 +#: src/Console/AppConsole.vala:261 msgid "No updates found" msgstr "Nessun aggiornamento trovato" -#: src/Common/LinuxKernel.vala:1243 +#: src/Common/LinuxKernel.vala:1190 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Installare la versione del kernel %s ? (y/n): " -#: src/Common/Main.vala:336 +#: src/Common/Main.vala:334 msgid "Called from" msgstr "Chiamato da" -#: src/Common/Main.vala:336 +#: src/Common/Main.vala:334 msgid "at logon" msgstr "all'avvio" -#: src/Common/Main.vala:337 +#: src/Common/Main.vala:335 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" "Questo file viene sovrascritto ed eseguito nuovamente ogni volta che vengono " "salvate le impostazioni" -#: src/Common/Main.vala:369 +#: src/Common/Main.vala:367 msgid "Notifications are disabled" msgstr "Le notifiche sono disabilitate" @@ -206,7 +217,7 @@ msgstr "Le notifiche sono disabilitate" msgid "File not found: %s" msgstr "File non trovato: %s" -#: src/Console/AppConsole.vala:43 src/Gtk/AppGtk.vala:139 +#: src/Console/AppConsole.vala:43 src/Gtk/AppGtk.vala:137 msgid "Syntax" msgstr "Sintassi" @@ -264,7 +275,7 @@ msgstr "Scarica i kernel specificati" msgid "Delete cached info about available kernels" msgstr "Elimina le informazioni sui kernel disponibili dalla cache " -#: src/Console/AppConsole.vala:59 src/Gtk/AppGtk.vala:141 +#: src/Console/AppConsole.vala:59 src/Gtk/AppGtk.vala:139 msgid "Options" msgstr "Opzioni" @@ -298,7 +309,7 @@ msgstr "" msgid "Locked kernels and the currently running kernel are ignored" msgstr "Il kernel attualmente in esecuzione sarà sempre ignorato" -#: src/Console/AppConsole.vala:160 src/Gtk/AppGtk.vala:125 +#: src/Console/AppConsole.vala:160 src/Gtk/AppGtk.vala:123 msgid "Unknown option" msgstr "Opzione sconosciuta" @@ -318,24 +329,24 @@ msgstr "Comando non specificato" msgid "to list all commands" msgstr "elencare tutti i comandi" -#: src/Console/AppConsole.vala:256 +#: src/Console/AppConsole.vala:255 msgid "Notifications disabled in settings" msgstr "Le notifiche sono disabilitate" -#: src/Console/AppConsole.vala:284 +#: src/Console/AppConsole.vala:283 #, c-format msgid "Kernel %s Available" msgstr "Kernel %s Disponibile" -#: src/Console/AppConsole.vala:288 src/Gtk/SettingsDialog.vala:166 +#: src/Console/AppConsole.vala:287 src/Gtk/SettingsDialog.vala:166 msgid "Show" msgstr "Mostra" -#: src/Console/AppConsole.vala:289 src/Gtk/MainWindow.vala:299 +#: src/Console/AppConsole.vala:288 src/Gtk/MainWindow.vala:299 msgid "Install" msgstr "Installa" -#: src/Console/AppConsole.vala:292 +#: src/Console/AppConsole.vala:291 msgid "Previously notified" msgstr "Notificato in precedenza" @@ -375,15 +386,15 @@ msgstr "Documentatori" msgid "Third Party Inclusions" msgstr "Inclusioni di terze parti" -#: src/Gtk/AppGtk.vala:139 +#: src/Gtk/AppGtk.vala:137 msgid "options" msgstr "opzioni" -#: src/Gtk/AppGtk.vala:143 +#: src/Gtk/AppGtk.vala:141 msgid "Print debug information" msgstr "Stampa le informazioni di debug" -#: src/Gtk/AppGtk.vala:144 +#: src/Gtk/AppGtk.vala:142 msgid "Show all options" msgstr "Mostra tutte le opzioni" @@ -443,16 +454,16 @@ msgstr "Forked" msgid "Original" msgstr "Originale" -#: src/Gtk/MainWindow.vala:452 +#: src/Gtk/MainWindow.vala:444 msgid "Updating kernels" msgstr "Aggiornamento dei kernel" -#: src/Gtk/MainWindow.vala:520 +#: src/Gtk/MainWindow.vala:521 msgid "available" msgstr "disponibile" -#: src/Gtk/MainWindow.vala:575 src/Gtk/MainWindow.vala:614 -#: src/Gtk/MainWindow.vala:646 +#: src/Gtk/MainWindow.vala:576 src/Gtk/MainWindow.vala:615 +#: src/Gtk/MainWindow.vala:647 msgid "DONE" msgstr "" diff --git a/po/ko.po b/po/ko.po index 25b926eb..b15a9126 100644 --- a/po/ko.po +++ b/po/ko.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-29 18:58-0400\n" +"POT-Creation-Date: 2023-05-30 02:25-0400\n" "PO-Revision-Date: 2022-09-28 11:48+0900\n" "Last-Translator: Kevin Kim \n" "Language-Team: Korean\n" @@ -53,151 +53,162 @@ msgstr "확인" msgid "FAILED" msgstr "실패" -#: src/Common/LinuxKernel.vala:409 +#: src/Common/LinuxKernel.vala:410 msgid "Found installed" msgstr "설치된 것을 찾았습니다" -#: src/Common/LinuxKernel.vala:410 +#: src/Common/LinuxKernel.vala:411 msgid "locked" msgstr "" -#: src/Common/LinuxKernel.vala:497 src/Common/LinuxKernel.vala:1077 -#: src/Common/LinuxKernel.vala:1111 src/Common/LinuxKernel.vala:1167 +#: src/Common/LinuxKernel.vala:496 src/Common/LinuxKernel.vala:1024 +#: src/Common/LinuxKernel.vala:1114 msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:749 src/Gtk/MainWindow.vala:511 -#: src/Gtk/MainWindow.vala:524 +#: src/Common/LinuxKernel.vala:696 src/Gtk/MainWindow.vala:512 +#: src/Gtk/MainWindow.vala:525 msgid "Running" msgstr "구동 중" -#: src/Common/LinuxKernel.vala:750 +#: src/Common/LinuxKernel.vala:697 msgid "Installed" msgstr "설치 됨" -#: src/Common/LinuxKernel.vala:751 +#: src/Common/LinuxKernel.vala:698 msgid "Invalid" msgstr "사용할 수 없음" -#: src/Common/LinuxKernel.vala:837 +#: src/Common/LinuxKernel.vala:783 msgid "Packages Available" msgstr "설치 가능한 패키지" -#: src/Common/LinuxKernel.vala:843 +#: src/Common/LinuxKernel.vala:789 msgid "Packages Installed" msgstr "설치된 패키지" -#: src/Common/LinuxKernel.vala:868 src/lib/TeeJee.FileSystem.vala:118 +#: src/Common/LinuxKernel.vala:814 src/lib/TeeJee.FileSystem.vala:118 msgid "File not found" msgstr "파일을 찾을 수 없습니다" -#: src/Common/LinuxKernel.vala:962 +#: src/Common/LinuxKernel.vala:908 msgid "Available Kernels" msgstr "설치 가능한 커널" -#: src/Common/LinuxKernel.vala:990 -#, fuzzy -msgid "No kernels specified" -msgstr "지정한 명령어가 없습니다" - -#: src/Common/LinuxKernel.vala:997 src/Gtk/MainWindow.vala:119 +#: src/Common/LinuxKernel.vala:943 src/Gtk/MainWindow.vala:119 msgid "Kernel" msgstr "커널" -#: src/Common/LinuxKernel.vala:997 +#: src/Common/LinuxKernel.vala:943 #, fuzzy msgid "not found" msgstr "파일을 찾을 수 없습니다" -#: src/Common/LinuxKernel.vala:1023 +#: src/Common/LinuxKernel.vala:950 +#, fuzzy +msgid "Download: no downloadable kernels specified" +msgstr "지정한 명령어가 없습니다" + +#: src/Common/LinuxKernel.vala:970 msgid "enabled" msgstr "사용" -#: src/Common/LinuxKernel.vala:1047 +#: src/Common/LinuxKernel.vala:994 msgid "Downloading" msgstr "다운로드" -#: src/Common/LinuxKernel.vala:1072 +#: src/Common/LinuxKernel.vala:1019 msgid "is already installed." msgstr "가 이미 설치되어 있습니다" -#: src/Common/LinuxKernel.vala:1082 +#: src/Common/LinuxKernel.vala:1029 msgid "download failed." msgstr "" -#: src/Common/LinuxKernel.vala:1099 +#: src/Common/LinuxKernel.vala:1037 +#, fuzzy +msgid "Install: no installable kernels secified" +msgstr "지정한 명령어가 없습니다" + +#: src/Common/LinuxKernel.vala:1049 msgid "Uninstalling selected kernels" msgstr "선택한 커널 제거" -#: src/Common/LinuxKernel.vala:1103 -msgid "requested" +#: src/Common/LinuxKernel.vala:1053 +#, fuzzy +msgid "Requested" msgstr "요청" -#: src/Common/LinuxKernel.vala:1106 -msgid "not uninstalling the currently running kernel" +#: src/Common/LinuxKernel.vala:1056 +#, fuzzy +msgid "Not uninstalling the currently running kernel" msgstr "현재 실행 중인 커널을 제거하지 않음" -#: src/Common/LinuxKernel.vala:1119 +#: src/Common/LinuxKernel.vala:1061 +msgid "is locked" +msgstr "" + +#: src/Common/LinuxKernel.vala:1069 msgid "found" msgstr "설립하다" -#: src/Common/LinuxKernel.vala:1124 -msgid "No packages to un-install!" -msgstr "제거 할 패키지가 없습니다!" +#: src/Common/LinuxKernel.vala:1073 +msgid "Uninstall: no uninstallable packages found" +msgstr "" -#: src/Common/LinuxKernel.vala:1163 +#: src/Common/LinuxKernel.vala:1110 #, fuzzy msgid "is the highest installed version." msgstr "설치된 가장 높은 버전을 제외한 모든 버전을 제거합니다" -#: src/Common/LinuxKernel.vala:1176 +#: src/Common/LinuxKernel.vala:1123 msgid "Could not find running kernel in list" msgstr "현재 실행 중인 커널을 찾을 수 없습니다" -#: src/Common/LinuxKernel.vala:1181 +#: src/Common/LinuxKernel.vala:1128 msgid "Could not find any kernels to uninstall" msgstr "삭제할 커널을 찾을 수 없습니다" -#: src/Common/LinuxKernel.vala:1189 +#: src/Common/LinuxKernel.vala:1136 msgid "The following kernels will be uninstalled" msgstr "풀이" -#: src/Common/LinuxKernel.vala:1193 +#: src/Common/LinuxKernel.vala:1140 msgid "Continue ?" msgstr "계속하시겠습니까?" -#: src/Common/LinuxKernel.vala:1215 src/Console/AppConsole.vala:234 +#: src/Common/LinuxKernel.vala:1162 src/Console/AppConsole.vala:234 msgid "Latest update" msgstr "최신 업데이트" -#: src/Common/LinuxKernel.vala:1226 src/Console/AppConsole.vala:241 +#: src/Common/LinuxKernel.vala:1173 src/Console/AppConsole.vala:241 msgid "Latest point update" msgstr "최신 포인트 업데이트" -#: src/Common/LinuxKernel.vala:1234 src/Console/AppConsole.vala:246 -#: src/Console/AppConsole.vala:262 +#: src/Common/LinuxKernel.vala:1181 src/Console/AppConsole.vala:246 +#: src/Console/AppConsole.vala:261 msgid "No updates found" msgstr "업데이트를 찾을 수 없습니다" -#: src/Common/LinuxKernel.vala:1243 +#: src/Common/LinuxKernel.vala:1190 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "커널 %s 버전을 설치하시겠습니까? (y/n): " -#: src/Common/Main.vala:336 +#: src/Common/Main.vala:334 msgid "Called from" msgstr "에서 호출" -#: src/Common/Main.vala:336 +#: src/Common/Main.vala:334 msgid "at logon" msgstr "로그온 시" -#: src/Common/Main.vala:337 +#: src/Common/Main.vala:335 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "이 파일은 덮어쓰고 설정이 저장될 때마다 다시 실행됩니다." -#: src/Common/Main.vala:369 +#: src/Common/Main.vala:367 msgid "Notifications are disabled" msgstr "알림이 비활성화 되었습니다" @@ -206,7 +217,7 @@ msgstr "알림이 비활성화 되었습니다" msgid "File not found: %s" msgstr "파일을 찾을 수 없음: %s" -#: src/Console/AppConsole.vala:43 src/Gtk/AppGtk.vala:139 +#: src/Console/AppConsole.vala:43 src/Gtk/AppGtk.vala:137 msgid "Syntax" msgstr "문법" @@ -262,7 +273,7 @@ msgstr "지정한 커널 다운로드" msgid "Delete cached info about available kernels" msgstr "사용 가능한 커널에 대한 캐시된 정보 삭제" -#: src/Console/AppConsole.vala:59 src/Gtk/AppGtk.vala:141 +#: src/Console/AppConsole.vala:59 src/Gtk/AppGtk.vala:139 msgid "Options" msgstr "옵션" @@ -296,7 +307,7 @@ msgstr "" msgid "Locked kernels and the currently running kernel are ignored" msgstr "현재 실행중인 커널은 항상 무시됩니다" -#: src/Console/AppConsole.vala:160 src/Gtk/AppGtk.vala:125 +#: src/Console/AppConsole.vala:160 src/Gtk/AppGtk.vala:123 msgid "Unknown option" msgstr "알 수 없는 옵션" @@ -316,24 +327,24 @@ msgstr "지정한 명령어가 없습니다" msgid "to list all commands" msgstr "모든 명령어 나열" -#: src/Console/AppConsole.vala:256 +#: src/Console/AppConsole.vala:255 msgid "Notifications disabled in settings" msgstr "설정에서 비활성화된 알림" -#: src/Console/AppConsole.vala:284 +#: src/Console/AppConsole.vala:283 #, c-format msgid "Kernel %s Available" msgstr "커널 %s 사용 가능" -#: src/Console/AppConsole.vala:288 src/Gtk/SettingsDialog.vala:166 +#: src/Console/AppConsole.vala:287 src/Gtk/SettingsDialog.vala:166 msgid "Show" msgstr "보이기" -#: src/Console/AppConsole.vala:289 src/Gtk/MainWindow.vala:299 +#: src/Console/AppConsole.vala:288 src/Gtk/MainWindow.vala:299 msgid "Install" msgstr "설치" -#: src/Console/AppConsole.vala:292 +#: src/Console/AppConsole.vala:291 msgid "Previously notified" msgstr "이전에 통보됨" @@ -373,15 +384,15 @@ msgstr "문서작성" msgid "Third Party Inclusions" msgstr "서드파티 포함" -#: src/Gtk/AppGtk.vala:139 +#: src/Gtk/AppGtk.vala:137 msgid "options" msgstr "옵션" -#: src/Gtk/AppGtk.vala:143 +#: src/Gtk/AppGtk.vala:141 msgid "Print debug information" msgstr "디버그 정보 출력" -#: src/Gtk/AppGtk.vala:144 +#: src/Gtk/AppGtk.vala:142 msgid "Show all options" msgstr "모든 옵션 보기" @@ -441,16 +452,16 @@ msgstr "가랑이진" msgid "Original" msgstr "원문 언어" -#: src/Gtk/MainWindow.vala:452 +#: src/Gtk/MainWindow.vala:444 msgid "Updating kernels" msgstr "커널 업데이트" -#: src/Gtk/MainWindow.vala:520 +#: src/Gtk/MainWindow.vala:521 msgid "available" msgstr "사용가능" -#: src/Gtk/MainWindow.vala:575 src/Gtk/MainWindow.vala:614 -#: src/Gtk/MainWindow.vala:646 +#: src/Gtk/MainWindow.vala:576 src/Gtk/MainWindow.vala:615 +#: src/Gtk/MainWindow.vala:647 msgid "DONE" msgstr "" diff --git a/po/messages.pot b/po/messages.pot index e4f83c42..a323c0ff 100644 --- a/po/messages.pot +++ b/po/messages.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline 1.3.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-29 19:13-0400\n" +"POT-Creation-Date: 2023-05-30 02:25-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -57,148 +57,156 @@ msgstr "" msgid "FAILED" msgstr "" -#: src/Common/LinuxKernel.vala:409 +#: src/Common/LinuxKernel.vala:410 msgid "Found installed" msgstr "" -#: src/Common/LinuxKernel.vala:410 +#: src/Common/LinuxKernel.vala:411 msgid "locked" msgstr "" -#: src/Common/LinuxKernel.vala:497 src/Common/LinuxKernel.vala:1077 -#: src/Common/LinuxKernel.vala:1111 src/Common/LinuxKernel.vala:1167 +#: src/Common/LinuxKernel.vala:496 src/Common/LinuxKernel.vala:1024 +#: src/Common/LinuxKernel.vala:1114 msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:749 src/Gtk/MainWindow.vala:511 -#: src/Gtk/MainWindow.vala:524 +#: src/Common/LinuxKernel.vala:696 src/Gtk/MainWindow.vala:512 +#: src/Gtk/MainWindow.vala:525 msgid "Running" msgstr "" -#: src/Common/LinuxKernel.vala:750 +#: src/Common/LinuxKernel.vala:697 msgid "Installed" msgstr "" -#: src/Common/LinuxKernel.vala:751 +#: src/Common/LinuxKernel.vala:698 msgid "Invalid" msgstr "" -#: src/Common/LinuxKernel.vala:837 +#: src/Common/LinuxKernel.vala:783 msgid "Packages Available" msgstr "" -#: src/Common/LinuxKernel.vala:843 +#: src/Common/LinuxKernel.vala:789 msgid "Packages Installed" msgstr "" -#: src/Common/LinuxKernel.vala:868 src/lib/TeeJee.FileSystem.vala:118 +#: src/Common/LinuxKernel.vala:814 src/lib/TeeJee.FileSystem.vala:118 msgid "File not found" msgstr "" -#: src/Common/LinuxKernel.vala:962 +#: src/Common/LinuxKernel.vala:908 msgid "Available Kernels" msgstr "" -#: src/Common/LinuxKernel.vala:990 -msgid "No kernels specified" -msgstr "" - -#: src/Common/LinuxKernel.vala:997 src/Gtk/MainWindow.vala:119 +#: src/Common/LinuxKernel.vala:943 src/Gtk/MainWindow.vala:119 msgid "Kernel" msgstr "" -#: src/Common/LinuxKernel.vala:997 +#: src/Common/LinuxKernel.vala:943 msgid "not found" msgstr "" -#: src/Common/LinuxKernel.vala:1023 +#: src/Common/LinuxKernel.vala:950 +msgid "Download: no downloadable kernels specified" +msgstr "" + +#: src/Common/LinuxKernel.vala:970 msgid "enabled" msgstr "" -#: src/Common/LinuxKernel.vala:1047 +#: src/Common/LinuxKernel.vala:994 msgid "Downloading" msgstr "" -#: src/Common/LinuxKernel.vala:1072 +#: src/Common/LinuxKernel.vala:1019 msgid "is already installed." msgstr "" -#: src/Common/LinuxKernel.vala:1082 +#: src/Common/LinuxKernel.vala:1029 msgid "download failed." msgstr "" -#: src/Common/LinuxKernel.vala:1099 +#: src/Common/LinuxKernel.vala:1037 +msgid "Install: no installable kernels secified" +msgstr "" + +#: src/Common/LinuxKernel.vala:1049 msgid "Uninstalling selected kernels" msgstr "" -#: src/Common/LinuxKernel.vala:1103 -msgid "requested" +#: src/Common/LinuxKernel.vala:1053 +msgid "Requested" +msgstr "" + +#: src/Common/LinuxKernel.vala:1056 +msgid "Not uninstalling the currently running kernel" msgstr "" -#: src/Common/LinuxKernel.vala:1106 -msgid "not uninstalling the currently running kernel" +#: src/Common/LinuxKernel.vala:1061 +msgid "is locked" msgstr "" -#: src/Common/LinuxKernel.vala:1119 +#: src/Common/LinuxKernel.vala:1069 msgid "found" msgstr "" -#: src/Common/LinuxKernel.vala:1124 -msgid "No packages to un-install!" +#: src/Common/LinuxKernel.vala:1073 +msgid "Uninstall: no uninstallable packages found" msgstr "" -#: src/Common/LinuxKernel.vala:1163 +#: src/Common/LinuxKernel.vala:1110 msgid "is the highest installed version." msgstr "" -#: src/Common/LinuxKernel.vala:1176 +#: src/Common/LinuxKernel.vala:1123 msgid "Could not find running kernel in list" msgstr "" -#: src/Common/LinuxKernel.vala:1181 +#: src/Common/LinuxKernel.vala:1128 msgid "Could not find any kernels to uninstall" msgstr "" -#: src/Common/LinuxKernel.vala:1189 +#: src/Common/LinuxKernel.vala:1136 msgid "The following kernels will be uninstalled" msgstr "" -#: src/Common/LinuxKernel.vala:1193 +#: src/Common/LinuxKernel.vala:1140 msgid "Continue ?" msgstr "" -#: src/Common/LinuxKernel.vala:1215 src/Console/AppConsole.vala:234 +#: src/Common/LinuxKernel.vala:1162 src/Console/AppConsole.vala:234 msgid "Latest update" msgstr "" -#: src/Common/LinuxKernel.vala:1226 src/Console/AppConsole.vala:241 +#: src/Common/LinuxKernel.vala:1173 src/Console/AppConsole.vala:241 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:1234 src/Console/AppConsole.vala:246 -#: src/Console/AppConsole.vala:262 +#: src/Common/LinuxKernel.vala:1181 src/Console/AppConsole.vala:246 +#: src/Console/AppConsole.vala:261 msgid "No updates found" msgstr "" -#: src/Common/LinuxKernel.vala:1243 +#: src/Common/LinuxKernel.vala:1190 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "" -#: src/Common/Main.vala:336 +#: src/Common/Main.vala:334 msgid "Called from" msgstr "" -#: src/Common/Main.vala:336 +#: src/Common/Main.vala:334 msgid "at logon" msgstr "" -#: src/Common/Main.vala:337 +#: src/Common/Main.vala:335 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" -#: src/Common/Main.vala:369 +#: src/Common/Main.vala:367 msgid "Notifications are disabled" msgstr "" @@ -207,7 +215,7 @@ msgstr "" msgid "File not found: %s" msgstr "" -#: src/Console/AppConsole.vala:43 src/Gtk/AppGtk.vala:139 +#: src/Console/AppConsole.vala:43 src/Gtk/AppGtk.vala:137 msgid "Syntax" msgstr "" @@ -259,7 +267,7 @@ msgstr "" msgid "Delete cached info about available kernels" msgstr "" -#: src/Console/AppConsole.vala:59 src/Gtk/AppGtk.vala:141 +#: src/Console/AppConsole.vala:59 src/Gtk/AppGtk.vala:139 msgid "Options" msgstr "" @@ -291,7 +299,7 @@ msgstr "" msgid "Locked kernels and the currently running kernel are ignored" msgstr "" -#: src/Console/AppConsole.vala:160 src/Gtk/AppGtk.vala:125 +#: src/Console/AppConsole.vala:160 src/Gtk/AppGtk.vala:123 msgid "Unknown option" msgstr "" @@ -311,24 +319,24 @@ msgstr "" msgid "to list all commands" msgstr "" -#: src/Console/AppConsole.vala:256 +#: src/Console/AppConsole.vala:255 msgid "Notifications disabled in settings" msgstr "" -#: src/Console/AppConsole.vala:284 +#: src/Console/AppConsole.vala:283 #, c-format msgid "Kernel %s Available" msgstr "" -#: src/Console/AppConsole.vala:288 src/Gtk/SettingsDialog.vala:166 +#: src/Console/AppConsole.vala:287 src/Gtk/SettingsDialog.vala:166 msgid "Show" msgstr "" -#: src/Console/AppConsole.vala:289 src/Gtk/MainWindow.vala:299 +#: src/Console/AppConsole.vala:288 src/Gtk/MainWindow.vala:299 msgid "Install" msgstr "" -#: src/Console/AppConsole.vala:292 +#: src/Console/AppConsole.vala:291 msgid "Previously notified" msgstr "" @@ -368,15 +376,15 @@ msgstr "" msgid "Third Party Inclusions" msgstr "" -#: src/Gtk/AppGtk.vala:139 +#: src/Gtk/AppGtk.vala:137 msgid "options" msgstr "" -#: src/Gtk/AppGtk.vala:143 +#: src/Gtk/AppGtk.vala:141 msgid "Print debug information" msgstr "" -#: src/Gtk/AppGtk.vala:144 +#: src/Gtk/AppGtk.vala:142 msgid "Show all options" msgstr "" @@ -436,16 +444,16 @@ msgstr "" msgid "Original" msgstr "" -#: src/Gtk/MainWindow.vala:452 +#: src/Gtk/MainWindow.vala:444 msgid "Updating kernels" msgstr "" -#: src/Gtk/MainWindow.vala:520 +#: src/Gtk/MainWindow.vala:521 msgid "available" msgstr "" -#: src/Gtk/MainWindow.vala:575 src/Gtk/MainWindow.vala:614 -#: src/Gtk/MainWindow.vala:646 +#: src/Gtk/MainWindow.vala:576 src/Gtk/MainWindow.vala:615 +#: src/Gtk/MainWindow.vala:647 msgid "DONE" msgstr "" diff --git a/po/nl.po b/po/nl.po index ed03a9e6..dcc0942b 100644 --- a/po/nl.po +++ b/po/nl.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-29 18:58-0400\n" +"POT-Creation-Date: 2023-05-30 02:25-0400\n" "PO-Revision-Date: 2020-08-23 13:55+0200\n" "Last-Translator: Heimen Stoffels \n" "Language-Team: Dutch (Netherlands)\n" @@ -53,153 +53,164 @@ msgstr "Oké" msgid "FAILED" msgstr "MISLUKT" -#: src/Common/LinuxKernel.vala:409 +#: src/Common/LinuxKernel.vala:410 msgid "Found installed" msgstr "Geïnstalleerd gevonden" -#: src/Common/LinuxKernel.vala:410 +#: src/Common/LinuxKernel.vala:411 msgid "locked" msgstr "" -#: src/Common/LinuxKernel.vala:497 src/Common/LinuxKernel.vala:1077 -#: src/Common/LinuxKernel.vala:1111 src/Common/LinuxKernel.vala:1167 +#: src/Common/LinuxKernel.vala:496 src/Common/LinuxKernel.vala:1024 +#: src/Common/LinuxKernel.vala:1114 msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:749 src/Gtk/MainWindow.vala:511 -#: src/Gtk/MainWindow.vala:524 +#: src/Common/LinuxKernel.vala:696 src/Gtk/MainWindow.vala:512 +#: src/Gtk/MainWindow.vala:525 msgid "Running" msgstr "In gebruik" -#: src/Common/LinuxKernel.vala:750 +#: src/Common/LinuxKernel.vala:697 msgid "Installed" msgstr "Geïnstalleerd" -#: src/Common/LinuxKernel.vala:751 +#: src/Common/LinuxKernel.vala:698 msgid "Invalid" msgstr "Ongeldig" -#: src/Common/LinuxKernel.vala:837 +#: src/Common/LinuxKernel.vala:783 msgid "Packages Available" msgstr "Beschikbare pakketten" -#: src/Common/LinuxKernel.vala:843 +#: src/Common/LinuxKernel.vala:789 msgid "Packages Installed" msgstr "Geïnstalleerde pakketten" -#: src/Common/LinuxKernel.vala:868 src/lib/TeeJee.FileSystem.vala:118 +#: src/Common/LinuxKernel.vala:814 src/lib/TeeJee.FileSystem.vala:118 msgid "File not found" msgstr "Het bestand is niet gevonden" -#: src/Common/LinuxKernel.vala:962 +#: src/Common/LinuxKernel.vala:908 msgid "Available Kernels" msgstr "Beschikbare kernels" -#: src/Common/LinuxKernel.vala:990 -#, fuzzy -msgid "No kernels specified" -msgstr "Geen opdracht opgegeven" - -#: src/Common/LinuxKernel.vala:997 src/Gtk/MainWindow.vala:119 +#: src/Common/LinuxKernel.vala:943 src/Gtk/MainWindow.vala:119 msgid "Kernel" msgstr "Kernel" -#: src/Common/LinuxKernel.vala:997 +#: src/Common/LinuxKernel.vala:943 #, fuzzy msgid "not found" msgstr "Het bestand is niet gevonden" -#: src/Common/LinuxKernel.vala:1023 +#: src/Common/LinuxKernel.vala:950 +#, fuzzy +msgid "Download: no downloadable kernels specified" +msgstr "Geen opdracht opgegeven" + +#: src/Common/LinuxKernel.vala:970 msgid "enabled" msgstr "ingeschakeld" -#: src/Common/LinuxKernel.vala:1047 +#: src/Common/LinuxKernel.vala:994 msgid "Downloading" msgstr "Downloaden" -#: src/Common/LinuxKernel.vala:1072 +#: src/Common/LinuxKernel.vala:1019 msgid "is already installed." msgstr "is al geïnstalleerd." -#: src/Common/LinuxKernel.vala:1082 +#: src/Common/LinuxKernel.vala:1029 msgid "download failed." msgstr "" -#: src/Common/LinuxKernel.vala:1099 +#: src/Common/LinuxKernel.vala:1037 +#, fuzzy +msgid "Install: no installable kernels secified" +msgstr "Geen opdracht opgegeven" + +#: src/Common/LinuxKernel.vala:1049 msgid "Uninstalling selected kernels" msgstr "Geselecteerde kernels verwijderen" -#: src/Common/LinuxKernel.vala:1103 -msgid "requested" +#: src/Common/LinuxKernel.vala:1053 +#, fuzzy +msgid "Requested" msgstr "verzocht" -#: src/Common/LinuxKernel.vala:1106 -msgid "not uninstalling the currently running kernel" +#: src/Common/LinuxKernel.vala:1056 +#, fuzzy +msgid "Not uninstalling the currently running kernel" msgstr "de momenteel actieve kernel niet verwijderen" -#: src/Common/LinuxKernel.vala:1119 +#: src/Common/LinuxKernel.vala:1061 +msgid "is locked" +msgstr "" + +#: src/Common/LinuxKernel.vala:1069 msgid "found" msgstr "gevonden" -#: src/Common/LinuxKernel.vala:1124 -msgid "No packages to un-install!" -msgstr "Geen pakketten om te verwijderen!" +#: src/Common/LinuxKernel.vala:1073 +msgid "Uninstall: no uninstallable packages found" +msgstr "" -#: src/Common/LinuxKernel.vala:1163 +#: src/Common/LinuxKernel.vala:1110 #, fuzzy msgid "is the highest installed version." msgstr "Verwijder alle behalve de hoogst geïnstalleerde versie" -#: src/Common/LinuxKernel.vala:1176 +#: src/Common/LinuxKernel.vala:1123 msgid "Could not find running kernel in list" msgstr "De in gebruik zijnde kernel staat niet op de lijst" -#: src/Common/LinuxKernel.vala:1181 +#: src/Common/LinuxKernel.vala:1128 msgid "Could not find any kernels to uninstall" msgstr "Er zijn geen te verwijderen kernels" -#: src/Common/LinuxKernel.vala:1189 +#: src/Common/LinuxKernel.vala:1136 msgid "The following kernels will be uninstalled" msgstr "De volgende kernels worden verwijderd" -#: src/Common/LinuxKernel.vala:1193 +#: src/Common/LinuxKernel.vala:1140 msgid "Continue ?" msgstr "Wilt u doorgaan?" -#: src/Common/LinuxKernel.vala:1215 src/Console/AppConsole.vala:234 +#: src/Common/LinuxKernel.vala:1162 src/Console/AppConsole.vala:234 msgid "Latest update" msgstr "Recentste update" -#: src/Common/LinuxKernel.vala:1226 src/Console/AppConsole.vala:241 +#: src/Common/LinuxKernel.vala:1173 src/Console/AppConsole.vala:241 msgid "Latest point update" msgstr "Recentste puntupdate" -#: src/Common/LinuxKernel.vala:1234 src/Console/AppConsole.vala:246 -#: src/Console/AppConsole.vala:262 +#: src/Common/LinuxKernel.vala:1181 src/Console/AppConsole.vala:246 +#: src/Console/AppConsole.vala:261 msgid "No updates found" msgstr "Geen updates gevonden" -#: src/Common/LinuxKernel.vala:1243 +#: src/Common/LinuxKernel.vala:1190 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Wilt u versie %s installeren? (j/n): " -#: src/Common/Main.vala:336 +#: src/Common/Main.vala:334 msgid "Called from" msgstr "Aangeroepen door" -#: src/Common/Main.vala:336 +#: src/Common/Main.vala:334 msgid "at logon" msgstr "bij het opstarten" -#: src/Common/Main.vala:337 +#: src/Common/Main.vala:335 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" "Dit bestand wordt overschreven en opnieuw uitgevoerd wanneer instellingen " "worden opgeslagen in" -#: src/Common/Main.vala:369 +#: src/Common/Main.vala:367 msgid "Notifications are disabled" msgstr "Meldingen zijn uitgeschakeld" @@ -208,7 +219,7 @@ msgstr "Meldingen zijn uitgeschakeld" msgid "File not found: %s" msgstr "Bestand niet gevonden: %s" -#: src/Console/AppConsole.vala:43 src/Gtk/AppGtk.vala:139 +#: src/Console/AppConsole.vala:43 src/Gtk/AppGtk.vala:137 msgid "Syntax" msgstr "Syntaxis" @@ -264,7 +275,7 @@ msgstr "Opgegeven kernels downloaden" msgid "Delete cached info about available kernels" msgstr "Informatie over beschikbare kernels in de cache verwijderen" -#: src/Console/AppConsole.vala:59 src/Gtk/AppGtk.vala:141 +#: src/Console/AppConsole.vala:59 src/Gtk/AppGtk.vala:139 msgid "Options" msgstr "Opties" @@ -298,7 +309,7 @@ msgstr "" msgid "Locked kernels and the currently running kernel are ignored" msgstr "De momenteel actieve kernel wordt altijd genegeerd" -#: src/Console/AppConsole.vala:160 src/Gtk/AppGtk.vala:125 +#: src/Console/AppConsole.vala:160 src/Gtk/AppGtk.vala:123 msgid "Unknown option" msgstr "Onbekende optie" @@ -318,24 +329,24 @@ msgstr "Geen opdracht opgegeven" msgid "to list all commands" msgstr "om alle opdrachten te tonen" -#: src/Console/AppConsole.vala:256 +#: src/Console/AppConsole.vala:255 msgid "Notifications disabled in settings" msgstr "Meldingen uitgeschakeld in instellingen" -#: src/Console/AppConsole.vala:284 +#: src/Console/AppConsole.vala:283 #, c-format msgid "Kernel %s Available" msgstr "Kernel %s is beschikbaar" -#: src/Console/AppConsole.vala:288 src/Gtk/SettingsDialog.vala:166 +#: src/Console/AppConsole.vala:287 src/Gtk/SettingsDialog.vala:166 msgid "Show" msgstr "Tonen" -#: src/Console/AppConsole.vala:289 src/Gtk/MainWindow.vala:299 +#: src/Console/AppConsole.vala:288 src/Gtk/MainWindow.vala:299 msgid "Install" msgstr "Installeren" -#: src/Console/AppConsole.vala:292 +#: src/Console/AppConsole.vala:291 msgid "Previously notified" msgstr "Eerder gemeld" @@ -375,15 +386,15 @@ msgstr "Documenteerders" msgid "Third Party Inclusions" msgstr "Externe code" -#: src/Gtk/AppGtk.vala:139 +#: src/Gtk/AppGtk.vala:137 msgid "options" msgstr "opties" -#: src/Gtk/AppGtk.vala:143 +#: src/Gtk/AppGtk.vala:141 msgid "Print debug information" msgstr "Foutopsporingsinformatie tonen" -#: src/Gtk/AppGtk.vala:144 +#: src/Gtk/AppGtk.vala:142 msgid "Show all options" msgstr "Alle opties tonen" @@ -443,16 +454,16 @@ msgstr "Geforkt" msgid "Original" msgstr "Origineel" -#: src/Gtk/MainWindow.vala:452 +#: src/Gtk/MainWindow.vala:444 msgid "Updating kernels" msgstr "Kernels bijwerken" -#: src/Gtk/MainWindow.vala:520 +#: src/Gtk/MainWindow.vala:521 msgid "available" msgstr "beschikbaar" -#: src/Gtk/MainWindow.vala:575 src/Gtk/MainWindow.vala:614 -#: src/Gtk/MainWindow.vala:646 +#: src/Gtk/MainWindow.vala:576 src/Gtk/MainWindow.vala:615 +#: src/Gtk/MainWindow.vala:647 msgid "DONE" msgstr "" diff --git a/po/pl.po b/po/pl.po index 0b243400..724d7361 100644 --- a/po/pl.po +++ b/po/pl.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-29 18:58-0400\n" +"POT-Creation-Date: 2023-05-30 02:25-0400\n" "PO-Revision-Date: 2023-05-25 13:37+0200\n" "Last-Translator: Matthaiks\n" "Language-Team: Polish\n" @@ -52,152 +52,164 @@ msgstr "OK" msgid "FAILED" msgstr "NIEPOWODZENIE" -#: src/Common/LinuxKernel.vala:409 +#: src/Common/LinuxKernel.vala:410 msgid "Found installed" msgstr "Znaleziono zainstalowane" -#: src/Common/LinuxKernel.vala:410 +#: src/Common/LinuxKernel.vala:411 msgid "locked" msgstr "zablokowane" -#: src/Common/LinuxKernel.vala:497 src/Common/LinuxKernel.vala:1077 -#: src/Common/LinuxKernel.vala:1111 src/Common/LinuxKernel.vala:1167 +#: src/Common/LinuxKernel.vala:496 src/Common/LinuxKernel.vala:1024 +#: src/Common/LinuxKernel.vala:1114 msgid "is locked." msgstr "jest zablokowane." -#: src/Common/LinuxKernel.vala:749 src/Gtk/MainWindow.vala:511 -#: src/Gtk/MainWindow.vala:524 +#: src/Common/LinuxKernel.vala:696 src/Gtk/MainWindow.vala:512 +#: src/Gtk/MainWindow.vala:525 msgid "Running" msgstr "Uruchomione" -#: src/Common/LinuxKernel.vala:750 +#: src/Common/LinuxKernel.vala:697 msgid "Installed" msgstr "Zainstalowane" -#: src/Common/LinuxKernel.vala:751 +#: src/Common/LinuxKernel.vala:698 msgid "Invalid" msgstr "Nieprawidłowe" -#: src/Common/LinuxKernel.vala:837 +#: src/Common/LinuxKernel.vala:783 msgid "Packages Available" msgstr "Dostępne pakiety" -#: src/Common/LinuxKernel.vala:843 +#: src/Common/LinuxKernel.vala:789 msgid "Packages Installed" msgstr "Pakiety zainstalowane" -#: src/Common/LinuxKernel.vala:868 src/lib/TeeJee.FileSystem.vala:118 +#: src/Common/LinuxKernel.vala:814 src/lib/TeeJee.FileSystem.vala:118 msgid "File not found" msgstr "Nie odnaleziono pliku" -#: src/Common/LinuxKernel.vala:962 +#: src/Common/LinuxKernel.vala:908 msgid "Available Kernels" msgstr "Dostępne jądra" -#: src/Common/LinuxKernel.vala:990 -#, fuzzy -msgid "No kernels specified" -msgstr "Nie określono polecenia" - -#: src/Common/LinuxKernel.vala:997 src/Gtk/MainWindow.vala:119 +#: src/Common/LinuxKernel.vala:943 src/Gtk/MainWindow.vala:119 msgid "Kernel" msgstr "Jądro" -#: src/Common/LinuxKernel.vala:997 +#: src/Common/LinuxKernel.vala:943 #, fuzzy msgid "not found" msgstr "Nie odnaleziono pliku" -#: src/Common/LinuxKernel.vala:1023 +#: src/Common/LinuxKernel.vala:950 +#, fuzzy +msgid "Download: no downloadable kernels specified" +msgstr "Nie określono polecenia" + +#: src/Common/LinuxKernel.vala:970 msgid "enabled" msgstr "włączone" -#: src/Common/LinuxKernel.vala:1047 +#: src/Common/LinuxKernel.vala:994 msgid "Downloading" msgstr "Pobieranie" -#: src/Common/LinuxKernel.vala:1072 +#: src/Common/LinuxKernel.vala:1019 msgid "is already installed." msgstr "jest już zainstalowane." -#: src/Common/LinuxKernel.vala:1082 +#: src/Common/LinuxKernel.vala:1029 msgid "download failed." msgstr "" -#: src/Common/LinuxKernel.vala:1099 +#: src/Common/LinuxKernel.vala:1037 +#, fuzzy +msgid "Install: no installable kernels secified" +msgstr "Nie określono polecenia" + +#: src/Common/LinuxKernel.vala:1049 msgid "Uninstalling selected kernels" msgstr "Odinstalowanie wybranych jąder" -#: src/Common/LinuxKernel.vala:1103 -msgid "requested" +#: src/Common/LinuxKernel.vala:1053 +#, fuzzy +msgid "Requested" msgstr "zażądane" -#: src/Common/LinuxKernel.vala:1106 -msgid "not uninstalling the currently running kernel" +#: src/Common/LinuxKernel.vala:1056 +#, fuzzy +msgid "Not uninstalling the currently running kernel" msgstr "bez odinstalowywania aktualnie uruchomionego jądra" -#: src/Common/LinuxKernel.vala:1119 +#: src/Common/LinuxKernel.vala:1061 +#, fuzzy +msgid "is locked" +msgstr "jest zablokowane." + +#: src/Common/LinuxKernel.vala:1069 msgid "found" msgstr "znalezione" -#: src/Common/LinuxKernel.vala:1124 -msgid "No packages to un-install!" -msgstr "Brak pakietów do odinstalowania!" +#: src/Common/LinuxKernel.vala:1073 +msgid "Uninstall: no uninstallable packages found" +msgstr "" -#: src/Common/LinuxKernel.vala:1163 +#: src/Common/LinuxKernel.vala:1110 msgid "is the highest installed version." msgstr "to najwyższa zainstalowana wersja." -#: src/Common/LinuxKernel.vala:1176 +#: src/Common/LinuxKernel.vala:1123 msgid "Could not find running kernel in list" msgstr "Nie można znaleźć uruchomionego jądra na liście" -#: src/Common/LinuxKernel.vala:1181 +#: src/Common/LinuxKernel.vala:1128 msgid "Could not find any kernels to uninstall" msgstr "Nie można znaleźć żadnych jąder do odinstalowania" -#: src/Common/LinuxKernel.vala:1189 +#: src/Common/LinuxKernel.vala:1136 msgid "The following kernels will be uninstalled" msgstr "Następujące jądra zostaną odinstalowane" -#: src/Common/LinuxKernel.vala:1193 +#: src/Common/LinuxKernel.vala:1140 msgid "Continue ?" msgstr "Kontynuować?" -#: src/Common/LinuxKernel.vala:1215 src/Console/AppConsole.vala:234 +#: src/Common/LinuxKernel.vala:1162 src/Console/AppConsole.vala:234 msgid "Latest update" msgstr "Najnowsza aktualizacja" -#: src/Common/LinuxKernel.vala:1226 src/Console/AppConsole.vala:241 +#: src/Common/LinuxKernel.vala:1173 src/Console/AppConsole.vala:241 msgid "Latest point update" msgstr "Najnowsza aktualizacja punktowa" -#: src/Common/LinuxKernel.vala:1234 src/Console/AppConsole.vala:246 -#: src/Console/AppConsole.vala:262 +#: src/Common/LinuxKernel.vala:1181 src/Console/AppConsole.vala:246 +#: src/Console/AppConsole.vala:261 msgid "No updates found" msgstr "Nie znaleziono aktualizacji" -#: src/Common/LinuxKernel.vala:1243 +#: src/Common/LinuxKernel.vala:1190 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Zainstalować wersję jądra %s? (t/n): " -#: src/Common/Main.vala:336 +#: src/Common/Main.vala:334 msgid "Called from" msgstr "Wywołano z" -#: src/Common/Main.vala:336 +#: src/Common/Main.vala:334 msgid "at logon" msgstr "przy logowaniu" -#: src/Common/Main.vala:337 +#: src/Common/Main.vala:335 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" "Ten plik jest nadpisywany i wykonywany ponownie za każdym razem, gdy " "ustawienia są zapisywane w" -#: src/Common/Main.vala:369 +#: src/Common/Main.vala:367 msgid "Notifications are disabled" msgstr "Powiadomienia są wyłączone" @@ -206,7 +218,7 @@ msgstr "Powiadomienia są wyłączone" msgid "File not found: %s" msgstr "Nie znaleziono pliku: %s" -#: src/Console/AppConsole.vala:43 src/Gtk/AppGtk.vala:139 +#: src/Console/AppConsole.vala:43 src/Gtk/AppGtk.vala:137 msgid "Syntax" msgstr "Składnia" @@ -262,7 +274,7 @@ msgstr "Pobierz wybrane jądra" msgid "Delete cached info about available kernels" msgstr "Usuń informacje z pamięci podręcznej o dostępnych jądrach" -#: src/Console/AppConsole.vala:59 src/Gtk/AppGtk.vala:141 +#: src/Console/AppConsole.vala:59 src/Gtk/AppGtk.vala:139 msgid "Options" msgstr "Opcje" @@ -296,7 +308,7 @@ msgstr "" msgid "Locked kernels and the currently running kernel are ignored" msgstr "Aktualnie uruchomione jądro będzie zawsze ignorowane" -#: src/Console/AppConsole.vala:160 src/Gtk/AppGtk.vala:125 +#: src/Console/AppConsole.vala:160 src/Gtk/AppGtk.vala:123 msgid "Unknown option" msgstr "Nieznana opcja" @@ -316,24 +328,24 @@ msgstr "Nie określono polecenia" msgid "to list all commands" msgstr "do wyświetlenia wszystkich poleceń" -#: src/Console/AppConsole.vala:256 +#: src/Console/AppConsole.vala:255 msgid "Notifications disabled in settings" msgstr "Powiadomienia wyłączone w ustawieniach" -#: src/Console/AppConsole.vala:284 +#: src/Console/AppConsole.vala:283 #, c-format msgid "Kernel %s Available" msgstr "Dostępne %s jądra" -#: src/Console/AppConsole.vala:288 src/Gtk/SettingsDialog.vala:166 +#: src/Console/AppConsole.vala:287 src/Gtk/SettingsDialog.vala:166 msgid "Show" msgstr "Pokaż" -#: src/Console/AppConsole.vala:289 src/Gtk/MainWindow.vala:299 +#: src/Console/AppConsole.vala:288 src/Gtk/MainWindow.vala:299 msgid "Install" msgstr "Zainstaluj" -#: src/Console/AppConsole.vala:292 +#: src/Console/AppConsole.vala:291 msgid "Previously notified" msgstr "Wcześniej powiadomiono" @@ -373,15 +385,15 @@ msgstr "Dokumentujący" msgid "Third Party Inclusions" msgstr "Włączenia stron trzecich" -#: src/Gtk/AppGtk.vala:139 +#: src/Gtk/AppGtk.vala:137 msgid "options" msgstr "opcje" -#: src/Gtk/AppGtk.vala:143 +#: src/Gtk/AppGtk.vala:141 msgid "Print debug information" msgstr "Wypisz informacje debugujące" -#: src/Gtk/AppGtk.vala:144 +#: src/Gtk/AppGtk.vala:142 msgid "Show all options" msgstr "Pokaż wszystkie opcje" @@ -441,16 +453,16 @@ msgstr "Sforkowane" msgid "Original" msgstr "Oryginalne" -#: src/Gtk/MainWindow.vala:452 +#: src/Gtk/MainWindow.vala:444 msgid "Updating kernels" msgstr "Aktualizowanie jąder" -#: src/Gtk/MainWindow.vala:520 +#: src/Gtk/MainWindow.vala:521 msgid "available" msgstr "dostępne" -#: src/Gtk/MainWindow.vala:575 src/Gtk/MainWindow.vala:614 -#: src/Gtk/MainWindow.vala:646 +#: src/Gtk/MainWindow.vala:576 src/Gtk/MainWindow.vala:615 +#: src/Gtk/MainWindow.vala:647 msgid "DONE" msgstr "" diff --git a/po/ru.po b/po/ru.po index 65f3ecef..d72470b6 100644 --- a/po/ru.po +++ b/po/ru.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-29 18:58-0400\n" +"POT-Creation-Date: 2023-05-30 02:25-0400\n" "PO-Revision-Date: 2023-04-17 20:16+0300\n" "Last-Translator: Danik2343 \n" "Language-Team: Russian\n" @@ -53,152 +53,163 @@ msgstr "OK" msgid "FAILED" msgstr "НЕУДАВШИЙСЯ" -#: src/Common/LinuxKernel.vala:409 +#: src/Common/LinuxKernel.vala:410 msgid "Found installed" msgstr "Найдено установлененное" -#: src/Common/LinuxKernel.vala:410 +#: src/Common/LinuxKernel.vala:411 msgid "locked" msgstr "" -#: src/Common/LinuxKernel.vala:497 src/Common/LinuxKernel.vala:1077 -#: src/Common/LinuxKernel.vala:1111 src/Common/LinuxKernel.vala:1167 +#: src/Common/LinuxKernel.vala:496 src/Common/LinuxKernel.vala:1024 +#: src/Common/LinuxKernel.vala:1114 msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:749 src/Gtk/MainWindow.vala:511 -#: src/Gtk/MainWindow.vala:524 +#: src/Common/LinuxKernel.vala:696 src/Gtk/MainWindow.vala:512 +#: src/Gtk/MainWindow.vala:525 msgid "Running" msgstr "Используется" -#: src/Common/LinuxKernel.vala:750 +#: src/Common/LinuxKernel.vala:697 msgid "Installed" msgstr "Установлено" -#: src/Common/LinuxKernel.vala:751 +#: src/Common/LinuxKernel.vala:698 msgid "Invalid" msgstr "Негодный" -#: src/Common/LinuxKernel.vala:837 +#: src/Common/LinuxKernel.vala:783 msgid "Packages Available" msgstr "Доступные пакеты" -#: src/Common/LinuxKernel.vala:843 +#: src/Common/LinuxKernel.vala:789 msgid "Packages Installed" msgstr "Установленные пакеты" -#: src/Common/LinuxKernel.vala:868 src/lib/TeeJee.FileSystem.vala:118 +#: src/Common/LinuxKernel.vala:814 src/lib/TeeJee.FileSystem.vala:118 msgid "File not found" msgstr "Файл не найден" -#: src/Common/LinuxKernel.vala:962 +#: src/Common/LinuxKernel.vala:908 msgid "Available Kernels" msgstr "Доступные ядра" -#: src/Common/LinuxKernel.vala:990 -#, fuzzy -msgid "No kernels specified" -msgstr "Команда не указана" - -#: src/Common/LinuxKernel.vala:997 src/Gtk/MainWindow.vala:119 +#: src/Common/LinuxKernel.vala:943 src/Gtk/MainWindow.vala:119 msgid "Kernel" msgstr "Ядро" -#: src/Common/LinuxKernel.vala:997 +#: src/Common/LinuxKernel.vala:943 #, fuzzy msgid "not found" msgstr "Файл не найден" -#: src/Common/LinuxKernel.vala:1023 +#: src/Common/LinuxKernel.vala:950 +#, fuzzy +msgid "Download: no downloadable kernels specified" +msgstr "Команда не указана" + +#: src/Common/LinuxKernel.vala:970 msgid "enabled" msgstr "включено" -#: src/Common/LinuxKernel.vala:1047 +#: src/Common/LinuxKernel.vala:994 msgid "Downloading" msgstr "Загрузки" -#: src/Common/LinuxKernel.vala:1072 +#: src/Common/LinuxKernel.vala:1019 msgid "is already installed." msgstr "уже установлен." -#: src/Common/LinuxKernel.vala:1082 +#: src/Common/LinuxKernel.vala:1029 msgid "download failed." msgstr "" -#: src/Common/LinuxKernel.vala:1099 +#: src/Common/LinuxKernel.vala:1037 +#, fuzzy +msgid "Install: no installable kernels secified" +msgstr "Команда не указана" + +#: src/Common/LinuxKernel.vala:1049 msgid "Uninstalling selected kernels" msgstr "Удаление выбранных ядер" -#: src/Common/LinuxKernel.vala:1103 -msgid "requested" +#: src/Common/LinuxKernel.vala:1053 +#, fuzzy +msgid "Requested" msgstr "запрошено" -#: src/Common/LinuxKernel.vala:1106 -msgid "not uninstalling the currently running kernel" +#: src/Common/LinuxKernel.vala:1056 +#, fuzzy +msgid "Not uninstalling the currently running kernel" msgstr "не удаляет текущее работающее ядро" -#: src/Common/LinuxKernel.vala:1119 +#: src/Common/LinuxKernel.vala:1061 +msgid "is locked" +msgstr "" + +#: src/Common/LinuxKernel.vala:1069 msgid "found" msgstr "найдено" -#: src/Common/LinuxKernel.vala:1124 -msgid "No packages to un-install!" -msgstr "Нет пакетов для удаления!" +#: src/Common/LinuxKernel.vala:1073 +msgid "Uninstall: no uninstallable packages found" +msgstr "" -#: src/Common/LinuxKernel.vala:1163 +#: src/Common/LinuxKernel.vala:1110 #, fuzzy msgid "is the highest installed version." msgstr "Удаление всех установленных версий, кроме самой высокой" -#: src/Common/LinuxKernel.vala:1176 +#: src/Common/LinuxKernel.vala:1123 msgid "Could not find running kernel in list" msgstr "Could not find running kernel in list" -#: src/Common/LinuxKernel.vala:1181 +#: src/Common/LinuxKernel.vala:1128 msgid "Could not find any kernels to uninstall" msgstr "Не удалось найти ядра для деинсталляции" -#: src/Common/LinuxKernel.vala:1189 +#: src/Common/LinuxKernel.vala:1136 msgid "The following kernels will be uninstalled" msgstr "Следующие ядра будут удалены" -#: src/Common/LinuxKernel.vala:1193 +#: src/Common/LinuxKernel.vala:1140 msgid "Continue ?" msgstr "Продолжить ?" -#: src/Common/LinuxKernel.vala:1215 src/Console/AppConsole.vala:234 +#: src/Common/LinuxKernel.vala:1162 src/Console/AppConsole.vala:234 msgid "Latest update" msgstr "Последнее обновление" -#: src/Common/LinuxKernel.vala:1226 src/Console/AppConsole.vala:241 +#: src/Common/LinuxKernel.vala:1173 src/Console/AppConsole.vala:241 msgid "Latest point update" msgstr "Последнее обновление пунктов" -#: src/Common/LinuxKernel.vala:1234 src/Console/AppConsole.vala:246 -#: src/Console/AppConsole.vala:262 +#: src/Common/LinuxKernel.vala:1181 src/Console/AppConsole.vala:246 +#: src/Console/AppConsole.vala:261 msgid "No updates found" msgstr "Обновлений не найдено" -#: src/Common/LinuxKernel.vala:1243 +#: src/Common/LinuxKernel.vala:1190 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Установить версию ядра %s ? (y/n): " -#: src/Common/Main.vala:336 +#: src/Common/Main.vala:334 msgid "Called from" msgstr "Вызван из" -#: src/Common/Main.vala:336 +#: src/Common/Main.vala:334 msgid "at logon" msgstr "при запуске" -#: src/Common/Main.vala:337 +#: src/Common/Main.vala:335 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" "Этот файл перезаписывается и выполняется снова при сохранении настроек в" -#: src/Common/Main.vala:369 +#: src/Common/Main.vala:367 msgid "Notifications are disabled" msgstr "Уведомления отключены" @@ -207,7 +218,7 @@ msgstr "Уведомления отключены" msgid "File not found: %s" msgstr "Файл не найден: %s" -#: src/Console/AppConsole.vala:43 src/Gtk/AppGtk.vala:139 +#: src/Console/AppConsole.vala:43 src/Gtk/AppGtk.vala:137 msgid "Syntax" msgstr "Синтаксис" @@ -263,7 +274,7 @@ msgstr "Скачать указанные ядра" msgid "Delete cached info about available kernels" msgstr "Удаление кэшированной информации о доступных ядрах" -#: src/Console/AppConsole.vala:59 src/Gtk/AppGtk.vala:141 +#: src/Console/AppConsole.vala:59 src/Gtk/AppGtk.vala:139 msgid "Options" msgstr "Параметры" @@ -297,7 +308,7 @@ msgstr "" msgid "Locked kernels and the currently running kernel are ignored" msgstr "Текущее работающее ядро всегда будет игнорироваться" -#: src/Console/AppConsole.vala:160 src/Gtk/AppGtk.vala:125 +#: src/Console/AppConsole.vala:160 src/Gtk/AppGtk.vala:123 msgid "Unknown option" msgstr "Неизвестный параметр" @@ -317,24 +328,24 @@ msgstr "Команда не указана" msgid "to list all commands" msgstr "чтобы перечислить все команды" -#: src/Console/AppConsole.vala:256 +#: src/Console/AppConsole.vala:255 msgid "Notifications disabled in settings" msgstr "Уведомления отключены в настройках" -#: src/Console/AppConsole.vala:284 +#: src/Console/AppConsole.vala:283 #, c-format msgid "Kernel %s Available" msgstr "Доступно ядро %s" -#: src/Console/AppConsole.vala:288 src/Gtk/SettingsDialog.vala:166 +#: src/Console/AppConsole.vala:287 src/Gtk/SettingsDialog.vala:166 msgid "Show" msgstr "Показать" -#: src/Console/AppConsole.vala:289 src/Gtk/MainWindow.vala:299 +#: src/Console/AppConsole.vala:288 src/Gtk/MainWindow.vala:299 msgid "Install" msgstr "Установить" -#: src/Console/AppConsole.vala:292 +#: src/Console/AppConsole.vala:291 msgid "Previously notified" msgstr "Предварительно уведомлено" @@ -374,15 +385,15 @@ msgstr "Составители документации" msgid "Third Party Inclusions" msgstr "Включая сторонние инструменты" -#: src/Gtk/AppGtk.vala:139 +#: src/Gtk/AppGtk.vala:137 msgid "options" msgstr "параметры" -#: src/Gtk/AppGtk.vala:143 +#: src/Gtk/AppGtk.vala:141 msgid "Print debug information" msgstr "Распечатать отладочную информацию" -#: src/Gtk/AppGtk.vala:144 +#: src/Gtk/AppGtk.vala:142 msgid "Show all options" msgstr "Показать все параметры" @@ -442,16 +453,16 @@ msgstr "Форк" msgid "Original" msgstr "Оригинал" -#: src/Gtk/MainWindow.vala:452 +#: src/Gtk/MainWindow.vala:444 msgid "Updating kernels" msgstr "Обновление ядер" -#: src/Gtk/MainWindow.vala:520 +#: src/Gtk/MainWindow.vala:521 msgid "available" msgstr "доступно" -#: src/Gtk/MainWindow.vala:575 src/Gtk/MainWindow.vala:614 -#: src/Gtk/MainWindow.vala:646 +#: src/Gtk/MainWindow.vala:576 src/Gtk/MainWindow.vala:615 +#: src/Gtk/MainWindow.vala:647 msgid "DONE" msgstr "" diff --git a/po/sv.po b/po/sv.po index d59ac5fd..9165b847 100644 --- a/po/sv.po +++ b/po/sv.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-29 18:58-0400\n" +"POT-Creation-Date: 2023-05-30 02:25-0400\n" "PO-Revision-Date: 2018-01-13 16:56+0100\n" "Last-Translator: Åke Engelbrektson \n" "Language-Team:Swedish\n" @@ -53,151 +53,162 @@ msgstr "OK" msgid "FAILED" msgstr "MISSLYCKADES" -#: src/Common/LinuxKernel.vala:409 +#: src/Common/LinuxKernel.vala:410 msgid "Found installed" msgstr "Hittade installerat" -#: src/Common/LinuxKernel.vala:410 +#: src/Common/LinuxKernel.vala:411 msgid "locked" msgstr "" -#: src/Common/LinuxKernel.vala:497 src/Common/LinuxKernel.vala:1077 -#: src/Common/LinuxKernel.vala:1111 src/Common/LinuxKernel.vala:1167 +#: src/Common/LinuxKernel.vala:496 src/Common/LinuxKernel.vala:1024 +#: src/Common/LinuxKernel.vala:1114 msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:749 src/Gtk/MainWindow.vala:511 -#: src/Gtk/MainWindow.vala:524 +#: src/Common/LinuxKernel.vala:696 src/Gtk/MainWindow.vala:512 +#: src/Gtk/MainWindow.vala:525 msgid "Running" msgstr "Körs" -#: src/Common/LinuxKernel.vala:750 +#: src/Common/LinuxKernel.vala:697 msgid "Installed" msgstr "Installerad" -#: src/Common/LinuxKernel.vala:751 +#: src/Common/LinuxKernel.vala:698 msgid "Invalid" msgstr "Ogiltig" -#: src/Common/LinuxKernel.vala:837 +#: src/Common/LinuxKernel.vala:783 msgid "Packages Available" msgstr "Tillgängliga paket" -#: src/Common/LinuxKernel.vala:843 +#: src/Common/LinuxKernel.vala:789 msgid "Packages Installed" msgstr "Installerade paket" -#: src/Common/LinuxKernel.vala:868 src/lib/TeeJee.FileSystem.vala:118 +#: src/Common/LinuxKernel.vala:814 src/lib/TeeJee.FileSystem.vala:118 msgid "File not found" msgstr "Filen kan inte hittas" -#: src/Common/LinuxKernel.vala:962 +#: src/Common/LinuxKernel.vala:908 msgid "Available Kernels" msgstr "Tillgängliga kärnor" -#: src/Common/LinuxKernel.vala:990 -#, fuzzy -msgid "No kernels specified" -msgstr "Kommandot har inte angetts" - -#: src/Common/LinuxKernel.vala:997 src/Gtk/MainWindow.vala:119 +#: src/Common/LinuxKernel.vala:943 src/Gtk/MainWindow.vala:119 msgid "Kernel" msgstr "Kärna" -#: src/Common/LinuxKernel.vala:997 +#: src/Common/LinuxKernel.vala:943 #, fuzzy msgid "not found" msgstr "Filen kan inte hittas" -#: src/Common/LinuxKernel.vala:1023 +#: src/Common/LinuxKernel.vala:950 +#, fuzzy +msgid "Download: no downloadable kernels specified" +msgstr "Kommandot har inte angetts" + +#: src/Common/LinuxKernel.vala:970 msgid "enabled" msgstr "aktiverat" -#: src/Common/LinuxKernel.vala:1047 +#: src/Common/LinuxKernel.vala:994 msgid "Downloading" msgstr "Ladda ner" -#: src/Common/LinuxKernel.vala:1072 +#: src/Common/LinuxKernel.vala:1019 msgid "is already installed." msgstr "är redan installerat." -#: src/Common/LinuxKernel.vala:1082 +#: src/Common/LinuxKernel.vala:1029 msgid "download failed." msgstr "" -#: src/Common/LinuxKernel.vala:1099 +#: src/Common/LinuxKernel.vala:1037 +#, fuzzy +msgid "Install: no installable kernels secified" +msgstr "Kommandot har inte angetts" + +#: src/Common/LinuxKernel.vala:1049 msgid "Uninstalling selected kernels" msgstr "Avinstallera valda kärnor" -#: src/Common/LinuxKernel.vala:1103 -msgid "requested" +#: src/Common/LinuxKernel.vala:1053 +#, fuzzy +msgid "Requested" msgstr "begärd" -#: src/Common/LinuxKernel.vala:1106 -msgid "not uninstalling the currently running kernel" +#: src/Common/LinuxKernel.vala:1056 +#, fuzzy +msgid "Not uninstalling the currently running kernel" msgstr "Avinstallera inte den kärna som körs, för närvarande" -#: src/Common/LinuxKernel.vala:1119 +#: src/Common/LinuxKernel.vala:1061 +msgid "is locked" +msgstr "" + +#: src/Common/LinuxKernel.vala:1069 msgid "found" msgstr "grunda" -#: src/Common/LinuxKernel.vala:1124 -msgid "No packages to un-install!" -msgstr "Inga paket att avinstallera!" +#: src/Common/LinuxKernel.vala:1073 +msgid "Uninstall: no uninstallable packages found" +msgstr "" -#: src/Common/LinuxKernel.vala:1163 +#: src/Common/LinuxKernel.vala:1110 #, fuzzy msgid "is the highest installed version." msgstr "Avinstallera alla utom den högsta installerade versionen" -#: src/Common/LinuxKernel.vala:1176 +#: src/Common/LinuxKernel.vala:1123 msgid "Could not find running kernel in list" msgstr "Det gick inte att hitta kernel som körs i listan" -#: src/Common/LinuxKernel.vala:1181 +#: src/Common/LinuxKernel.vala:1128 msgid "Could not find any kernels to uninstall" msgstr "Det gick inte att hitta några kärnor att avinstallera" -#: src/Common/LinuxKernel.vala:1189 +#: src/Common/LinuxKernel.vala:1136 msgid "The following kernels will be uninstalled" msgstr "Följande kärnor kommer att avinstalleras" -#: src/Common/LinuxKernel.vala:1193 +#: src/Common/LinuxKernel.vala:1140 msgid "Continue ?" msgstr "Fortsätta?" -#: src/Common/LinuxKernel.vala:1215 src/Console/AppConsole.vala:234 +#: src/Common/LinuxKernel.vala:1162 src/Console/AppConsole.vala:234 msgid "Latest update" msgstr "Senaste uppdatering" -#: src/Common/LinuxKernel.vala:1226 src/Console/AppConsole.vala:241 +#: src/Common/LinuxKernel.vala:1173 src/Console/AppConsole.vala:241 msgid "Latest point update" msgstr "Senaste punktuppdatering" -#: src/Common/LinuxKernel.vala:1234 src/Console/AppConsole.vala:246 -#: src/Console/AppConsole.vala:262 +#: src/Common/LinuxKernel.vala:1181 src/Console/AppConsole.vala:246 +#: src/Console/AppConsole.vala:261 msgid "No updates found" msgstr "Inga uppdateringar hittades" -#: src/Common/LinuxKernel.vala:1243 +#: src/Common/LinuxKernel.vala:1190 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Installera kärnversion %s ? (j/n):" -#: src/Common/Main.vala:336 +#: src/Common/Main.vala:334 msgid "Called from" msgstr "Ringde från" -#: src/Common/Main.vala:336 +#: src/Common/Main.vala:334 msgid "at logon" msgstr "vid start" -#: src/Common/Main.vala:337 +#: src/Common/Main.vala:335 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "Den här filen skrivs över och körs igen när inställningar sparas i" -#: src/Common/Main.vala:369 +#: src/Common/Main.vala:367 msgid "Notifications are disabled" msgstr "Meddelanden är inaktiverade" @@ -206,7 +217,7 @@ msgstr "Meddelanden är inaktiverade" msgid "File not found: %s" msgstr "Filen hittades inte: %s" -#: src/Console/AppConsole.vala:43 src/Gtk/AppGtk.vala:139 +#: src/Console/AppConsole.vala:43 src/Gtk/AppGtk.vala:137 msgid "Syntax" msgstr "Syntax" @@ -262,7 +273,7 @@ msgstr "Ladda ner angivna kärnor" msgid "Delete cached info about available kernels" msgstr "Ta bort cachelagrad information om tillgängliga kärnor" -#: src/Console/AppConsole.vala:59 src/Gtk/AppGtk.vala:141 +#: src/Console/AppConsole.vala:59 src/Gtk/AppGtk.vala:139 msgid "Options" msgstr "Alternativ" @@ -296,7 +307,7 @@ msgstr "" msgid "Locked kernels and the currently running kernel are ignored" msgstr "Den kärna som för närvarande körs ignoreras alltid" -#: src/Console/AppConsole.vala:160 src/Gtk/AppGtk.vala:125 +#: src/Console/AppConsole.vala:160 src/Gtk/AppGtk.vala:123 msgid "Unknown option" msgstr "Okänt alternativ" @@ -316,24 +327,24 @@ msgstr "Kommandot har inte angetts" msgid "to list all commands" msgstr "för att lista alla kommandon" -#: src/Console/AppConsole.vala:256 +#: src/Console/AppConsole.vala:255 msgid "Notifications disabled in settings" msgstr "Meddelanden inaktiverade i inställningarna" -#: src/Console/AppConsole.vala:284 +#: src/Console/AppConsole.vala:283 #, c-format msgid "Kernel %s Available" msgstr "Kernel %s tillgängliga" -#: src/Console/AppConsole.vala:288 src/Gtk/SettingsDialog.vala:166 +#: src/Console/AppConsole.vala:287 src/Gtk/SettingsDialog.vala:166 msgid "Show" msgstr "Visa" -#: src/Console/AppConsole.vala:289 src/Gtk/MainWindow.vala:299 +#: src/Console/AppConsole.vala:288 src/Gtk/MainWindow.vala:299 msgid "Install" msgstr "Installera" -#: src/Console/AppConsole.vala:292 +#: src/Console/AppConsole.vala:291 msgid "Previously notified" msgstr "Tidigare anmält" @@ -373,15 +384,15 @@ msgstr "Dokumentalister" msgid "Third Party Inclusions" msgstr "Tredjepartsverktyg" -#: src/Gtk/AppGtk.vala:139 +#: src/Gtk/AppGtk.vala:137 msgid "options" msgstr "alternativ" -#: src/Gtk/AppGtk.vala:143 +#: src/Gtk/AppGtk.vala:141 msgid "Print debug information" msgstr "Skriv ut felsökningsinformation" -#: src/Gtk/AppGtk.vala:144 +#: src/Gtk/AppGtk.vala:142 msgid "Show all options" msgstr "Visa alla alternativ" @@ -441,16 +452,16 @@ msgstr "Kluven" msgid "Original" msgstr "Original" -#: src/Gtk/MainWindow.vala:452 +#: src/Gtk/MainWindow.vala:444 msgid "Updating kernels" msgstr "Uppdatera kärnor" -#: src/Gtk/MainWindow.vala:520 +#: src/Gtk/MainWindow.vala:521 msgid "available" msgstr "tillgänglig" -#: src/Gtk/MainWindow.vala:575 src/Gtk/MainWindow.vala:614 -#: src/Gtk/MainWindow.vala:646 +#: src/Gtk/MainWindow.vala:576 src/Gtk/MainWindow.vala:615 +#: src/Gtk/MainWindow.vala:647 msgid "DONE" msgstr "" diff --git a/po/tr.po b/po/tr.po index 0377115f..b9a1671a 100644 --- a/po/tr.po +++ b/po/tr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-29 18:58-0400\n" +"POT-Creation-Date: 2023-05-30 02:25-0400\n" "PO-Revision-Date: 2022-08-06 16:48+0300\n" "Last-Translator: Sabri Ünal \n" "Language-Team: Turkish\n" @@ -53,153 +53,164 @@ msgstr "Tamam" msgid "FAILED" msgstr "BAŞARISIZ" -#: src/Common/LinuxKernel.vala:409 +#: src/Common/LinuxKernel.vala:410 msgid "Found installed" msgstr "Yüklü bulundu" -#: src/Common/LinuxKernel.vala:410 +#: src/Common/LinuxKernel.vala:411 msgid "locked" msgstr "" -#: src/Common/LinuxKernel.vala:497 src/Common/LinuxKernel.vala:1077 -#: src/Common/LinuxKernel.vala:1111 src/Common/LinuxKernel.vala:1167 +#: src/Common/LinuxKernel.vala:496 src/Common/LinuxKernel.vala:1024 +#: src/Common/LinuxKernel.vala:1114 msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:749 src/Gtk/MainWindow.vala:511 -#: src/Gtk/MainWindow.vala:524 +#: src/Common/LinuxKernel.vala:696 src/Gtk/MainWindow.vala:512 +#: src/Gtk/MainWindow.vala:525 msgid "Running" msgstr "Çalışıyor" -#: src/Common/LinuxKernel.vala:750 +#: src/Common/LinuxKernel.vala:697 msgid "Installed" msgstr "Kurulu" -#: src/Common/LinuxKernel.vala:751 +#: src/Common/LinuxKernel.vala:698 msgid "Invalid" msgstr "Geçersiz" -#: src/Common/LinuxKernel.vala:837 +#: src/Common/LinuxKernel.vala:783 msgid "Packages Available" msgstr "Mevcut Paketler" -#: src/Common/LinuxKernel.vala:843 +#: src/Common/LinuxKernel.vala:789 msgid "Packages Installed" msgstr "Kurulu Paketler" -#: src/Common/LinuxKernel.vala:868 src/lib/TeeJee.FileSystem.vala:118 +#: src/Common/LinuxKernel.vala:814 src/lib/TeeJee.FileSystem.vala:118 msgid "File not found" msgstr "Dosya bulunamadı" -#: src/Common/LinuxKernel.vala:962 +#: src/Common/LinuxKernel.vala:908 msgid "Available Kernels" msgstr "Mevcut Çekirdekler" -#: src/Common/LinuxKernel.vala:990 -#, fuzzy -msgid "No kernels specified" -msgstr "Komut belirtilmedi" - -#: src/Common/LinuxKernel.vala:997 src/Gtk/MainWindow.vala:119 +#: src/Common/LinuxKernel.vala:943 src/Gtk/MainWindow.vala:119 msgid "Kernel" msgstr "Çekirdek" -#: src/Common/LinuxKernel.vala:997 +#: src/Common/LinuxKernel.vala:943 #, fuzzy msgid "not found" msgstr "Dosya bulunamadı" -#: src/Common/LinuxKernel.vala:1023 +#: src/Common/LinuxKernel.vala:950 +#, fuzzy +msgid "Download: no downloadable kernels specified" +msgstr "Komut belirtilmedi" + +#: src/Common/LinuxKernel.vala:970 msgid "enabled" msgstr "etkin" -#: src/Common/LinuxKernel.vala:1047 +#: src/Common/LinuxKernel.vala:994 msgid "Downloading" msgstr "Indiriyor" -#: src/Common/LinuxKernel.vala:1072 +#: src/Common/LinuxKernel.vala:1019 msgid "is already installed." msgstr "zaten yüklü." -#: src/Common/LinuxKernel.vala:1082 +#: src/Common/LinuxKernel.vala:1029 msgid "download failed." msgstr "" -#: src/Common/LinuxKernel.vala:1099 +#: src/Common/LinuxKernel.vala:1037 +#, fuzzy +msgid "Install: no installable kernels secified" +msgstr "Komut belirtilmedi" + +#: src/Common/LinuxKernel.vala:1049 msgid "Uninstalling selected kernels" msgstr "Seçili çekirdekleri kaldırma" -#: src/Common/LinuxKernel.vala:1103 -msgid "requested" +#: src/Common/LinuxKernel.vala:1053 +#, fuzzy +msgid "Requested" msgstr "istenen" -#: src/Common/LinuxKernel.vala:1106 -msgid "not uninstalling the currently running kernel" +#: src/Common/LinuxKernel.vala:1056 +#, fuzzy +msgid "Not uninstalling the currently running kernel" msgstr "çalışmakta olan çekirdeğin kaldırılmaması" -#: src/Common/LinuxKernel.vala:1119 +#: src/Common/LinuxKernel.vala:1061 +msgid "is locked" +msgstr "" + +#: src/Common/LinuxKernel.vala:1069 msgid "found" msgstr "kurmak" -#: src/Common/LinuxKernel.vala:1124 -msgid "No packages to un-install!" -msgstr "Kaldırılacak paket yok!" +#: src/Common/LinuxKernel.vala:1073 +msgid "Uninstall: no uninstallable packages found" +msgstr "" -#: src/Common/LinuxKernel.vala:1163 +#: src/Common/LinuxKernel.vala:1110 #, fuzzy msgid "is the highest installed version." msgstr "En yüksek yüklü sürüm dışındaki tüm sürümleri kaldırın" -#: src/Common/LinuxKernel.vala:1176 +#: src/Common/LinuxKernel.vala:1123 msgid "Could not find running kernel in list" msgstr "Listede çalışan çekirdek bulunamadı" -#: src/Common/LinuxKernel.vala:1181 +#: src/Common/LinuxKernel.vala:1128 msgid "Could not find any kernels to uninstall" msgstr "Kaldırılacak çekirdek bulunamadı" -#: src/Common/LinuxKernel.vala:1189 +#: src/Common/LinuxKernel.vala:1136 msgid "The following kernels will be uninstalled" msgstr "Aşağıdaki çekirdekler kaldırılacaktır" -#: src/Common/LinuxKernel.vala:1193 +#: src/Common/LinuxKernel.vala:1140 msgid "Continue ?" msgstr "Devam edilsin mi?" -#: src/Common/LinuxKernel.vala:1215 src/Console/AppConsole.vala:234 +#: src/Common/LinuxKernel.vala:1162 src/Console/AppConsole.vala:234 msgid "Latest update" msgstr "Son güncelleme" # Point burada point release anlamında kullanılıyor. Örneğin 5.10.x sayısının en sonundaki x rakamı point release/nokta sürüm oluyor. -#: src/Common/LinuxKernel.vala:1226 src/Console/AppConsole.vala:241 +#: src/Common/LinuxKernel.vala:1173 src/Console/AppConsole.vala:241 msgid "Latest point update" msgstr "Son nokta güncellemesi" -#: src/Common/LinuxKernel.vala:1234 src/Console/AppConsole.vala:246 -#: src/Console/AppConsole.vala:262 +#: src/Common/LinuxKernel.vala:1181 src/Console/AppConsole.vala:246 +#: src/Console/AppConsole.vala:261 msgid "No updates found" msgstr "Güncelleme bulunamadı" -#: src/Common/LinuxKernel.vala:1243 +#: src/Common/LinuxKernel.vala:1190 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Linux Çekirdek Sürümü %s Kurulsun mu? (e/h): " -#: src/Common/Main.vala:336 +#: src/Common/Main.vala:334 msgid "Called from" msgstr "Çağrı konumu" -#: src/Common/Main.vala:336 +#: src/Common/Main.vala:334 msgid "at logon" msgstr "başlangıçta" -#: src/Common/Main.vala:337 +#: src/Common/Main.vala:335 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" "Bu dosyanın üzerine yazılır ve ayarlar her kaydedildiğinde yeniden yürütülür" -#: src/Common/Main.vala:369 +#: src/Common/Main.vala:367 msgid "Notifications are disabled" msgstr "Bildirimler devre dışı bırakılmış" @@ -208,7 +219,7 @@ msgstr "Bildirimler devre dışı bırakılmış" msgid "File not found: %s" msgstr "Dosya bulunamadı: %s" -#: src/Console/AppConsole.vala:43 src/Gtk/AppGtk.vala:139 +#: src/Console/AppConsole.vala:43 src/Gtk/AppGtk.vala:137 msgid "Syntax" msgstr "Sözdizimi" @@ -264,7 +275,7 @@ msgstr "Belirtilen çekirdekleri indir" msgid "Delete cached info about available kernels" msgstr "Kullanılabilir çekirdekler hakkında önbelleğe alınmış bilgileri silme" -#: src/Console/AppConsole.vala:59 src/Gtk/AppGtk.vala:141 +#: src/Console/AppConsole.vala:59 src/Gtk/AppGtk.vala:139 msgid "Options" msgstr "Seçenekler" @@ -298,7 +309,7 @@ msgstr "" msgid "Locked kernels and the currently running kernel are ignored" msgstr "Şu anda çalışan çekirdek her zaman yoksayılır" -#: src/Console/AppConsole.vala:160 src/Gtk/AppGtk.vala:125 +#: src/Console/AppConsole.vala:160 src/Gtk/AppGtk.vala:123 msgid "Unknown option" msgstr "Bilinmeyen seçenek" @@ -318,24 +329,24 @@ msgstr "Komut belirtilmedi" msgid "to list all commands" msgstr "tüm komutları listele" -#: src/Console/AppConsole.vala:256 +#: src/Console/AppConsole.vala:255 msgid "Notifications disabled in settings" msgstr "Ayarlarda devre dışı bırakılan bildirimler" -#: src/Console/AppConsole.vala:284 +#: src/Console/AppConsole.vala:283 #, c-format msgid "Kernel %s Available" msgstr "Çekirdek %s Kullanılabilir" -#: src/Console/AppConsole.vala:288 src/Gtk/SettingsDialog.vala:166 +#: src/Console/AppConsole.vala:287 src/Gtk/SettingsDialog.vala:166 msgid "Show" msgstr "Göster" -#: src/Console/AppConsole.vala:289 src/Gtk/MainWindow.vala:299 +#: src/Console/AppConsole.vala:288 src/Gtk/MainWindow.vala:299 msgid "Install" msgstr "Kur" -#: src/Console/AppConsole.vala:292 +#: src/Console/AppConsole.vala:291 msgid "Previously notified" msgstr "Daha önce bildirilmiş" @@ -375,15 +386,15 @@ msgstr "Belgelendirenler" msgid "Third Party Inclusions" msgstr "Üçüncü Taraf Eklemeler" -#: src/Gtk/AppGtk.vala:139 +#: src/Gtk/AppGtk.vala:137 msgid "options" msgstr "seçenekler" -#: src/Gtk/AppGtk.vala:143 +#: src/Gtk/AppGtk.vala:141 msgid "Print debug information" msgstr "Hata ayıklama bilgisini yazdır" -#: src/Gtk/AppGtk.vala:144 +#: src/Gtk/AppGtk.vala:142 msgid "Show all options" msgstr "Tüm seçenekleri göster" @@ -443,16 +454,16 @@ msgstr "Çatallandı" msgid "Original" msgstr "Özgün" -#: src/Gtk/MainWindow.vala:452 +#: src/Gtk/MainWindow.vala:444 msgid "Updating kernels" msgstr "Çekirdekleri güncelleme" -#: src/Gtk/MainWindow.vala:520 +#: src/Gtk/MainWindow.vala:521 msgid "available" msgstr "mevcut" -#: src/Gtk/MainWindow.vala:575 src/Gtk/MainWindow.vala:614 -#: src/Gtk/MainWindow.vala:646 +#: src/Gtk/MainWindow.vala:576 src/Gtk/MainWindow.vala:615 +#: src/Gtk/MainWindow.vala:647 msgid "DONE" msgstr "" diff --git a/po/uk.po b/po/uk.po index 2500c550..0342a120 100644 --- a/po/uk.po +++ b/po/uk.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-29 18:58-0400\n" +"POT-Creation-Date: 2023-05-30 02:25-0400\n" "PO-Revision-Date: 2019-07-25 11:00+0300\n" "Last-Translator: Serhii Golovko \n" "Language-Team: Ukranian\n" @@ -53,152 +53,164 @@ msgstr "Добре" msgid "FAILED" msgstr "НЕ ВДАЛОСЯ" -#: src/Common/LinuxKernel.vala:409 +#: src/Common/LinuxKernel.vala:410 msgid "Found installed" msgstr "Знайдено встановленим" -#: src/Common/LinuxKernel.vala:410 +#: src/Common/LinuxKernel.vala:411 msgid "locked" msgstr "заблокований" -#: src/Common/LinuxKernel.vala:497 src/Common/LinuxKernel.vala:1077 -#: src/Common/LinuxKernel.vala:1111 src/Common/LinuxKernel.vala:1167 +#: src/Common/LinuxKernel.vala:496 src/Common/LinuxKernel.vala:1024 +#: src/Common/LinuxKernel.vala:1114 msgid "is locked." msgstr "заблоковано." -#: src/Common/LinuxKernel.vala:749 src/Gtk/MainWindow.vala:511 -#: src/Gtk/MainWindow.vala:524 +#: src/Common/LinuxKernel.vala:696 src/Gtk/MainWindow.vala:512 +#: src/Gtk/MainWindow.vala:525 msgid "Running" msgstr "Використовується" -#: src/Common/LinuxKernel.vala:750 +#: src/Common/LinuxKernel.vala:697 msgid "Installed" msgstr "Встановлено" -#: src/Common/LinuxKernel.vala:751 +#: src/Common/LinuxKernel.vala:698 msgid "Invalid" msgstr "Інвалід" -#: src/Common/LinuxKernel.vala:837 +#: src/Common/LinuxKernel.vala:783 msgid "Packages Available" msgstr "Доступні пакети" -#: src/Common/LinuxKernel.vala:843 +#: src/Common/LinuxKernel.vala:789 msgid "Packages Installed" msgstr "Встановлені пакети" -#: src/Common/LinuxKernel.vala:868 src/lib/TeeJee.FileSystem.vala:118 +#: src/Common/LinuxKernel.vala:814 src/lib/TeeJee.FileSystem.vala:118 msgid "File not found" msgstr "Файл не знайдено" -#: src/Common/LinuxKernel.vala:962 +#: src/Common/LinuxKernel.vala:908 msgid "Available Kernels" msgstr "Доступні ядра" -#: src/Common/LinuxKernel.vala:990 -#, fuzzy -msgid "No kernels specified" -msgstr "Команда не вказана" - -#: src/Common/LinuxKernel.vala:997 src/Gtk/MainWindow.vala:119 +#: src/Common/LinuxKernel.vala:943 src/Gtk/MainWindow.vala:119 msgid "Kernel" msgstr "Ядро" -#: src/Common/LinuxKernel.vala:997 +#: src/Common/LinuxKernel.vala:943 #, fuzzy msgid "not found" msgstr "Файл не знайдено" -#: src/Common/LinuxKernel.vala:1023 +#: src/Common/LinuxKernel.vala:950 +#, fuzzy +msgid "Download: no downloadable kernels specified" +msgstr "Команда не вказана" + +#: src/Common/LinuxKernel.vala:970 msgid "enabled" msgstr "увімкнено" -#: src/Common/LinuxKernel.vala:1047 +#: src/Common/LinuxKernel.vala:994 msgid "Downloading" msgstr "Завантаження" -#: src/Common/LinuxKernel.vala:1072 +#: src/Common/LinuxKernel.vala:1019 msgid "is already installed." msgstr "вже встановлено." -#: src/Common/LinuxKernel.vala:1082 +#: src/Common/LinuxKernel.vala:1029 msgid "download failed." msgstr "" -#: src/Common/LinuxKernel.vala:1099 +#: src/Common/LinuxKernel.vala:1037 +#, fuzzy +msgid "Install: no installable kernels secified" +msgstr "Команда не вказана" + +#: src/Common/LinuxKernel.vala:1049 msgid "Uninstalling selected kernels" msgstr "Видаліть конкретні ядра" -#: src/Common/LinuxKernel.vala:1103 -msgid "requested" +#: src/Common/LinuxKernel.vala:1053 +#, fuzzy +msgid "Requested" msgstr "запитуваний" -#: src/Common/LinuxKernel.vala:1106 -msgid "not uninstalling the currently running kernel" +#: src/Common/LinuxKernel.vala:1056 +#, fuzzy +msgid "Not uninstalling the currently running kernel" msgstr "не видалятиме поточне запущене ядро" -#: src/Common/LinuxKernel.vala:1119 +#: src/Common/LinuxKernel.vala:1061 +#, fuzzy +msgid "is locked" +msgstr "заблоковано." + +#: src/Common/LinuxKernel.vala:1069 msgid "found" msgstr "знайдено" -#: src/Common/LinuxKernel.vala:1124 -msgid "No packages to un-install!" -msgstr "Немає пакетів для видалення!" +#: src/Common/LinuxKernel.vala:1073 +msgid "Uninstall: no uninstallable packages found" +msgstr "" -#: src/Common/LinuxKernel.vala:1163 +#: src/Common/LinuxKernel.vala:1110 #, fuzzy msgid "is the highest installed version." msgstr "Видаліть усі, крім найвищої встановленої версії" -#: src/Common/LinuxKernel.vala:1176 +#: src/Common/LinuxKernel.vala:1123 msgid "Could not find running kernel in list" msgstr "Не вдалося знайти запущене ядро у списку!" -#: src/Common/LinuxKernel.vala:1181 +#: src/Common/LinuxKernel.vala:1128 msgid "Could not find any kernels to uninstall" msgstr "Не вдалося знайти жодне ядро для вилучення" -#: src/Common/LinuxKernel.vala:1189 +#: src/Common/LinuxKernel.vala:1136 msgid "The following kernels will be uninstalled" msgstr "Наступні ядра будуть видалені" -#: src/Common/LinuxKernel.vala:1193 +#: src/Common/LinuxKernel.vala:1140 msgid "Continue ?" msgstr "Продовжувати ?" -#: src/Common/LinuxKernel.vala:1215 src/Console/AppConsole.vala:234 +#: src/Common/LinuxKernel.vala:1162 src/Console/AppConsole.vala:234 msgid "Latest update" msgstr "Останнє оновлення" -#: src/Common/LinuxKernel.vala:1226 src/Console/AppConsole.vala:241 +#: src/Common/LinuxKernel.vala:1173 src/Console/AppConsole.vala:241 msgid "Latest point update" msgstr "Остання точка оновлення" -#: src/Common/LinuxKernel.vala:1234 src/Console/AppConsole.vala:246 -#: src/Console/AppConsole.vala:262 +#: src/Common/LinuxKernel.vala:1181 src/Console/AppConsole.vala:246 +#: src/Console/AppConsole.vala:261 msgid "No updates found" msgstr "Оновлень не знайдено" -#: src/Common/LinuxKernel.vala:1243 +#: src/Common/LinuxKernel.vala:1190 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Встановити Ядро Версії %s ? (так/ні): " -#: src/Common/Main.vala:336 +#: src/Common/Main.vala:334 msgid "Called from" msgstr "Викликано з" -#: src/Common/Main.vala:336 +#: src/Common/Main.vala:334 msgid "at logon" msgstr "при запуску" -#: src/Common/Main.vala:337 +#: src/Common/Main.vala:335 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" "Цей файл перезаписується та виконується знову під час збереження налаштувань" -#: src/Common/Main.vala:369 +#: src/Common/Main.vala:367 msgid "Notifications are disabled" msgstr "Повідомлення вимкнено" @@ -207,7 +219,7 @@ msgstr "Повідомлення вимкнено" msgid "File not found: %s" msgstr "Файл не знайдено: %s" -#: src/Console/AppConsole.vala:43 src/Gtk/AppGtk.vala:139 +#: src/Console/AppConsole.vala:43 src/Gtk/AppGtk.vala:137 msgid "Syntax" msgstr "Синтаксис" @@ -263,7 +275,7 @@ msgstr "Завантажте конкретні ядра" msgid "Delete cached info about available kernels" msgstr "Видалити кешовану інформацію про доступні ядра" -#: src/Console/AppConsole.vala:59 src/Gtk/AppGtk.vala:141 +#: src/Console/AppConsole.vala:59 src/Gtk/AppGtk.vala:139 msgid "Options" msgstr "Параметри" @@ -297,7 +309,7 @@ msgstr "" msgid "Locked kernels and the currently running kernel are ignored" msgstr "Поточне ядро, що працює, завжди буде ігноруватися" -#: src/Console/AppConsole.vala:160 src/Gtk/AppGtk.vala:125 +#: src/Console/AppConsole.vala:160 src/Gtk/AppGtk.vala:123 msgid "Unknown option" msgstr "Невідомий параметр" @@ -317,24 +329,24 @@ msgstr "Команда не вказана" msgid "to list all commands" msgstr "щоб відобразити всі команди" -#: src/Console/AppConsole.vala:256 +#: src/Console/AppConsole.vala:255 msgid "Notifications disabled in settings" msgstr "Сповіщення, вимкнені в налаштуваннях" -#: src/Console/AppConsole.vala:284 +#: src/Console/AppConsole.vala:283 #, c-format msgid "Kernel %s Available" msgstr "Ядро %s Доступне" -#: src/Console/AppConsole.vala:288 src/Gtk/SettingsDialog.vala:166 +#: src/Console/AppConsole.vala:287 src/Gtk/SettingsDialog.vala:166 msgid "Show" msgstr "Показати" -#: src/Console/AppConsole.vala:289 src/Gtk/MainWindow.vala:299 +#: src/Console/AppConsole.vala:288 src/Gtk/MainWindow.vala:299 msgid "Install" msgstr "Встановити" -#: src/Console/AppConsole.vala:292 +#: src/Console/AppConsole.vala:291 msgid "Previously notified" msgstr "Попередньо повідомлено" @@ -374,15 +386,15 @@ msgstr "Документатори" msgid "Third Party Inclusions" msgstr "Включення третіх осіб" -#: src/Gtk/AppGtk.vala:139 +#: src/Gtk/AppGtk.vala:137 msgid "options" msgstr "параметри" -#: src/Gtk/AppGtk.vala:143 +#: src/Gtk/AppGtk.vala:141 msgid "Print debug information" msgstr "Роздрукувати зневадження" -#: src/Gtk/AppGtk.vala:144 +#: src/Gtk/AppGtk.vala:142 msgid "Show all options" msgstr "Показати усі параметри" @@ -442,16 +454,16 @@ msgstr "Двоєний" msgid "Original" msgstr "Оригінал" -#: src/Gtk/MainWindow.vala:452 +#: src/Gtk/MainWindow.vala:444 msgid "Updating kernels" msgstr "Оновлення ядер" -#: src/Gtk/MainWindow.vala:520 +#: src/Gtk/MainWindow.vala:521 msgid "available" msgstr "доступний" -#: src/Gtk/MainWindow.vala:575 src/Gtk/MainWindow.vala:614 -#: src/Gtk/MainWindow.vala:646 +#: src/Gtk/MainWindow.vala:576 src/Gtk/MainWindow.vala:615 +#: src/Gtk/MainWindow.vala:647 msgid "DONE" msgstr "" diff --git a/src/Common/LinuxKernel.vala b/src/Common/LinuxKernel.vala index d7c9866b..90030d2b 100644 --- a/src/Common/LinuxKernel.vala +++ b/src/Common/LinuxKernel.vala @@ -376,7 +376,8 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { kernel_list.add(k); } - kernel_list.sort((a,b) => { return a.compare_to(b) * -1; }); + // sort the list, highest first + kernel_list.sort((a,b) => { return b.compare_to(a); }); } catch (Error e) { @@ -459,9 +460,8 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { break; } - kernel_list.sort((a,b) => { - return a.compare_to(b) * -1; - }); + // sort, reverse + kernel_list.sort((a,b) => { return b.compare_to(a); }); // find the highest & lowest installed versions kernel_latest_installed = new LinuxKernel.from_version("0"); @@ -489,17 +489,14 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { bool major_available = false; bool minor_available = false; - foreach(var k in LinuxKernel.kernel_list) { + foreach(var k in kernel_list) { vprint(k.version_main,3); if (k.is_invalid) continue; if (k.is_installed) continue; - if (k.is_locked) { - vprint(k.version_main+" "+_("is locked."),2); - continue; - } + if (k.is_locked) { vprint(k.version_main+" "+_("is locked."),2); continue; } if (k.version_rc>=0 && App.hide_unstable) continue; if (k.version_major < threshold_major) break; - if (k.compare_to(kernel_latest_installed)<=0) break; + if (k.compare_to(kernel_latest_installed)<1) break; // kernel_list is sorted so first match is highest match if (k.version_major > kernel_latest_installed.version_major) major_available = true; @@ -639,78 +636,28 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { } } -// inputs a & b: a.compare_to(b) -// return: -// ab return 1 - public int compare_to(LinuxKernel b) { - LinuxKernel a = this; - //vprint("compare_to()",5); - string[] arr_a = a.version_main.split_set(".-_"); - string[] arr_b = b.version_main.split_set(".-_"); - //vprint("a "+a.version_main,5); - //vprint("b "+b.version_main,5); - - int i = -1; - int x, y; - - // while both arrays have an element - while ((++i < arr_a.length) && (i < arr_b.length)) { - - // keep reading if both are the same - if (arr_a[i] == arr_b[i]) continue; - - // this doesn't distinguish "000" from "abc", but quickly handles if both are >0 - x = int.parse(arr_a[i]); - y = int.parse(arr_b[i]); +// complicated comparison logic for kernel version strings +// like strcmp(), but l & r are LinuxKernel objects +// lr return 1 + public int compare_to(LinuxKernel t) { + vprint("version_main compare_to("+t.version_main+")",4); + var a = version_main.split_set(".-_"); + var b = t.version_main.split_set(".-_"); + int x, y, i = -1; + while (++i0 && y>0) return (x - y); - - // this is one place where "-rc3" gets compared to "-rc4" - // both are either text or "0", int.parse() returns 0 for "ABC" or "000" - // strcmp() will return "00" is less than "ab" - if (x==0 && y==0) return strcmp(arr_a[i], arr_b[i]); - - // if we got this far: - // the two sides were neither both numbers nor both text - - // if a is a number > 0, then b must be either text or number 0 - // any number > 0 is bigger than either text or number 0 - // because rc comes before non-rc - if (x > 0) return 1; - - // if we didn't return above, then all the same but for b + if (x==0 && y==0) return strcmp(a[i],b[i]); + if (x>0) return 1; return -1; } - - // if we got this far: - // * all elements are equal up to this point - // * one array has more elements than the other - - - // These next two catch the case where one array - // is longer than the other, and the longer arrays - // next element is numeric, not rnN - - // if there are any more a elements - if (i < arr_a.length) { - // if a is a number > 0 - if (int.parse(arr_a[i])>0) return 1; // a is bigger - return -1; // b is bigger - } - - // if there are any more b elements - if (i < arr_b.length) { - // if b is a number > 0 - if (int.parse(arr_b[i]) > 0) return -1; // b is bigger - return 1; // a is bigger - } - - // is it possible to get here? - - // the larger array is the lower version, - // because 1.2.3-rcN comes before 1.2.3 - return (arr_b.length - arr_a.length); + if (i0) return 1; return -1; } + if (i0) return -1; return 1; } + return 0; } public void set_pkg_list() { @@ -759,10 +706,9 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { // or if unstable and newer than kernel_last_unstable_old_ppa_dirs if (ppa_dirs_ver==2) return true; if (ppa_dirs_ver==1) return false; - int r = 0; - if (version_rc>=0) r = compare_to(kernel_last_unstable_old_ppa_dirs); - else r = compare_to(kernel_last_stable_old_ppa_dirs); - if (r>0) { ppa_dirs_ver = 2; return true; } + var k = kernel_last_stable_old_ppa_dirs; + if (version_rc>=0) k = kernel_last_unstable_old_ppa_dirs; + if (compare_to(k)>0) { ppa_dirs_ver = 2; return true; } else { ppa_dirs_ver = 1; return false; } } } @@ -987,7 +933,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { var vlist = list.split_set(",;:| "); int i=vlist.length; foreach (var v in vlist) if (v.strip()=="") i-- ; - if (i<1) { vprint(_("No kernels specified")); return klist; } + if (i<1) return klist; if (uk || kernel_list.size<1) mk_kernel_list(true); bool e = false; foreach (var v in vlist) { @@ -996,11 +942,12 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { foreach (var k in kernel_list) if (k.version_main==v) { e = true; klist.add(k); break; } if (!e) vprint(_("Kernel")+" \""+v+"\" "+_("not found")); } - //vprint("end vlist_to_klist"); return klist; } public static bool download_klist(Gee.ArrayList klist) { + vprint("download_klist()",2); + if (klist.size<1) vprint(_("Download: no downloadable kernels specified")); bool r = true; foreach (var k in klist) if (!k.download_packages()) r = false; return r; @@ -1008,7 +955,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { // dep: aria2c public bool download_packages() { - vprint("download_packages()",2); + vprint("download_packages("+version_main+")",2); check_if_initialized(); bool ok = true; int MB = 1024 * 1024; @@ -1086,6 +1033,9 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { foreach (string f in k.deb_url_list.keys) flist += " '"+k.cache_subdir+"/"+f+"'"; } + flist = flist.strip(); + if (flist=="") { vprint(_("Install: no installable kernels secified")); return false; } + // full paths instead of env -C // https://github.com/bkw777/mainline/issues/128 string cmd = "pkexec env DISPLAY=${DISPLAY} XAUTHORITY=${XAUTHORITY} dpkg --install " + flist; @@ -1100,15 +1050,15 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { string pnames = ""; foreach (var k in klist) { - vprint(_("requested")+" "+k.version_main); + vprint(_("Requested")+" "+k.version_main); if (k.is_running) { - vprint("! "+_("not uninstalling the currently running kernel")+" "+k.version_main); + vprint("! "+_("Not uninstalling the currently running kernel")+" "+k.version_main); continue; } if (k.is_locked) { - vprint("! "+k.version_main+" "+_("is locked.")); + vprint("! "+k.version_main+" "+_("is locked")); continue; } @@ -1119,11 +1069,8 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { vprint(_("found")+" : "+p,2); } } - - if (pnames=="") { - vprint(_("No packages to un-install!"),1,stderr); - return false; - } + pnames = pnames.strip(); + if (pnames=="") { vprint(_("Uninstall: no uninstallable packages found"),1,stderr); return false; } string cmd = "pkexec env DISPLAY=${DISPLAY} XAUTHORITY=${XAUTHORITY} dpkg --purge " + pnames; vprint(cmd,2); @@ -1151,7 +1098,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { //vprint("latest_installed: "+kernel_latest_installed.version_main,4); //vprint("running_kernel: "+kern_running.version_main,4); - foreach(var k in LinuxKernel.kernel_list) { + foreach(var k in kernel_list) { if (k.is_invalid) continue; if (!k.is_installed) continue; if (k.version_main == kern_running.version_main) { diff --git a/src/Common/Main.vala b/src/Common/Main.vala index d693ed26..847161dd 100644 --- a/src/Common/Main.vala +++ b/src/Common/Main.vala @@ -73,8 +73,6 @@ const int DEFAULT_TERM_HEIGHT = 600 ; //const int DEFAULT_TERM_X = -1 ; //const int DEFAULT_TERM_Y = -1 ; -const string line = "----------------------------------------------------------------------"; - extern void exit(int exit_code); public class Main : GLib.Object { diff --git a/src/Console/AppConsole.vala b/src/Console/AppConsole.vala index a5c5721d..8a8ea398 100644 --- a/src/Console/AppConsole.vala +++ b/src/Console/AppConsole.vala @@ -246,7 +246,6 @@ public class AppConsole : GLib.Object { vprint(_("No updates found")); } - vprint(line); } private void notify_user() { diff --git a/src/Gtk/AppGtk.vala b/src/Gtk/AppGtk.vala index 6f4f64b5..fe9bd0ac 100644 --- a/src/Gtk/AppGtk.vala +++ b/src/Gtk/AppGtk.vala @@ -106,12 +106,10 @@ public class AppGtk : GLib.Object { //vprint("verbose="+App.VERBOSE.to_string()); break; - // this is the notification run action + // this is the notification action case "--install": - if (++i < args.length) { - App.command = "install"; - App.requested_versions = args[i].down(); - } + App.command = "install"; + if (++i < args.length) App.requested_versions = args[i].down(); break; case "--help": diff --git a/src/Gtk/MainWindow.vala b/src/Gtk/MainWindow.vala index db9b5c71..bd15a9f2 100644 --- a/src/Gtk/MainWindow.vala +++ b/src/Gtk/MainWindow.vala @@ -441,6 +441,8 @@ public class MainWindow : Window { // Update the cache as optimally as possible. private void update_cache() { vprint("update_cache()",2); + string message = _("Updating kernels"); + vprint(message); if (!try_ppa()) return; @@ -449,7 +451,6 @@ public class MainWindow : Window { return; } - string message = _("Updating kernels"); var progress_window = new ProgressWindow.with_parent(this, message, true); progress_window.show_all(); LinuxKernel.mk_kernel_list(false, (timer, ref count, last) => { @@ -525,7 +526,7 @@ public class MainWindow : Window { } } - public void do_install(Gee.ArrayList klist = new Gee.ArrayList()) { + public void do_install(Gee.ArrayList klist) { string vlist=""; if (App.VERBOSE>2) { foreach (var k in klist) vlist += k.version_main+" "; @@ -537,14 +538,14 @@ public class MainWindow : Window { vlist = ""; foreach (var k in klist) { - vprint(k.version_main); if (k.is_installed) { vprint(k.version_main+" is already installed"); continue; } if (k.is_locked) { vprint(k.version_main+" is locked"); continue; } vprint("adding "+k.version_main); - vlist += k.version_main+" "; + vlist += " "+k.version_main; } - if (vlist=="") { vprint("no installable kernels specified"); return; } - vprint("vlist=\""+vlist+"\"",3); + vlist = vlist.strip(); + if (vlist=="") { vprint("Install: no installable kernels specified"); return; } + vprint("vlist=\""+vlist+"\""); var term = new TerminalWindow.with_parent(this, false, true); string t_dir = create_tmp_dir(); @@ -571,7 +572,7 @@ public class MainWindow : Window { string sh = "VERBOSE="+App.VERBOSE.to_string()+" "+BRANDING_SHORTNAME; if (App.index_is_fresh) sh += " --index-is-fresh"; - sh += " --install \"" + vlist + "\"\n" + sh += " --install \""+vlist+"\"\n" + "echo '"+_("DONE")+"'\n" ; From 4049a0cd625fdacfe919b6e18d2b2e86ce86ef40 Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Tue, 30 May 2023 10:11:41 -0400 Subject: [PATCH 338/567] fix k.page_uri & ppa button, change how version strings are stored and compared --- BRANDING.mak | 2 +- po/de.po | 126 +++++++++++++++++------------------ po/el.po | 126 +++++++++++++++++------------------ po/es.po | 126 +++++++++++++++++------------------ po/fr.po | 126 +++++++++++++++++------------------ po/hr.po | 126 +++++++++++++++++------------------ po/it.po | 126 +++++++++++++++++------------------ po/ko.po | 126 +++++++++++++++++------------------ po/messages.pot | 128 ++++++++++++++++++------------------ po/nl.po | 126 +++++++++++++++++------------------ po/pl.po | 126 +++++++++++++++++------------------ po/ru.po | 126 +++++++++++++++++------------------ po/sv.po | 126 +++++++++++++++++------------------ po/tr.po | 126 +++++++++++++++++------------------ po/uk.po | 126 +++++++++++++++++------------------ src/Common/LinuxKernel.vala | 108 +++++++++++++----------------- src/Gtk/MainWindow.vala | 6 +- 17 files changed, 931 insertions(+), 951 deletions(-) diff --git a/BRANDING.mak b/BRANDING.mak index aefb6cc1..4bcefde7 100644 --- a/BRANDING.mak +++ b/BRANDING.mak @@ -3,7 +3,7 @@ VERSION_MAJOR = 1 VERSION_MINOR = 3 -VERSION_MICRO = 3 +VERSION_MICRO = 4 BRANDING_SHORTNAME = mainline BRANDING_LONGNAME = Ubuntu Mainline Kernel Installer BRANDING_AUTHORNAME = Brian K. White diff --git a/po/de.po b/po/de.po index d7e6641f..306c90e1 100644 --- a/po/de.po +++ b/po/de.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-30 02:25-0400\n" +"POT-Creation-Date: 2023-05-30 10:06-0400\n" "PO-Revision-Date: 2023-02-20 18:40+0100\n" "Last-Translator: Marvin Meysel \n" "Language-Team: German\n" @@ -13,184 +13,184 @@ msgstr "" "X-Launchpad-Export-Date: 2017-04-13 11:48+0000\n" "X-Generator: Poedit 3.1.1\n" -#: src/Common/LinuxKernel.vala:104 +#: src/Common/LinuxKernel.vala:105 msgid "Distribution" msgstr "Distribution" -#: src/Common/LinuxKernel.vala:119 +#: src/Common/LinuxKernel.vala:120 msgid "Architecture" msgstr "Architektur" -#: src/Common/LinuxKernel.vala:134 +#: src/Common/LinuxKernel.vala:135 msgid "Running kernel" msgstr "Laufender kernel" -#: src/Common/LinuxKernel.vala:250 +#: src/Common/LinuxKernel.vala:238 msgid "loading cached" msgstr "laden gecached" -#: src/Common/LinuxKernel.vala:262 +#: src/Common/LinuxKernel.vala:250 msgid "queuing download" msgstr "download der warteschlange" -#: src/Common/LinuxKernel.vala:283 +#: src/Common/LinuxKernel.vala:271 msgid "Fetching individual kernel indexes" msgstr "Abrufen einzelner Kernel-Indizes" -#: src/Common/LinuxKernel.vala:299 +#: src/Common/LinuxKernel.vala:287 msgid "loading downloaded" msgstr "laden von heruntergeladenen Dateien" -#: src/Common/LinuxKernel.vala:334 +#: src/Common/LinuxKernel.vala:322 msgid "Updating from" msgstr "Aktualisieren von" -#: src/Common/LinuxKernel.vala:342 +#: src/Common/LinuxKernel.vala:330 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:345 +#: src/Common/LinuxKernel.vala:333 msgid "FAILED" msgstr "MISSLUNGEN" -#: src/Common/LinuxKernel.vala:410 +#: src/Common/LinuxKernel.vala:392 msgid "Found installed" msgstr "Installiert gefunden" -#: src/Common/LinuxKernel.vala:411 +#: src/Common/LinuxKernel.vala:393 msgid "locked" msgstr "" -#: src/Common/LinuxKernel.vala:496 src/Common/LinuxKernel.vala:1024 -#: src/Common/LinuxKernel.vala:1114 +#: src/Common/LinuxKernel.vala:477 src/Common/LinuxKernel.vala:1009 +#: src/Common/LinuxKernel.vala:1098 msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:696 src/Gtk/MainWindow.vala:512 -#: src/Gtk/MainWindow.vala:525 +#: src/Common/LinuxKernel.vala:681 src/Gtk/MainWindow.vala:509 +#: src/Gtk/MainWindow.vala:522 msgid "Running" msgstr "Läuft" -#: src/Common/LinuxKernel.vala:697 +#: src/Common/LinuxKernel.vala:682 msgid "Installed" msgstr "Installiert" -#: src/Common/LinuxKernel.vala:698 +#: src/Common/LinuxKernel.vala:683 msgid "Invalid" msgstr "Ungültig" -#: src/Common/LinuxKernel.vala:783 +#: src/Common/LinuxKernel.vala:768 msgid "Packages Available" msgstr "Verfügbare Pakete" -#: src/Common/LinuxKernel.vala:789 +#: src/Common/LinuxKernel.vala:774 msgid "Packages Installed" msgstr "Installierte Pakete" -#: src/Common/LinuxKernel.vala:814 src/lib/TeeJee.FileSystem.vala:118 +#: src/Common/LinuxKernel.vala:799 src/lib/TeeJee.FileSystem.vala:118 msgid "File not found" msgstr "Datei nicht gefunden " -#: src/Common/LinuxKernel.vala:908 +#: src/Common/LinuxKernel.vala:893 msgid "Available Kernels" msgstr "Verfügbare Kernel" -#: src/Common/LinuxKernel.vala:943 src/Gtk/MainWindow.vala:119 +#: src/Common/LinuxKernel.vala:928 src/Gtk/MainWindow.vala:119 msgid "Kernel" msgstr "Kernel" -#: src/Common/LinuxKernel.vala:943 +#: src/Common/LinuxKernel.vala:928 #, fuzzy msgid "not found" msgstr "Datei nicht gefunden " -#: src/Common/LinuxKernel.vala:950 +#: src/Common/LinuxKernel.vala:935 #, fuzzy msgid "Download: no downloadable kernels specified" msgstr "Befehl nicht angegeben" -#: src/Common/LinuxKernel.vala:970 +#: src/Common/LinuxKernel.vala:955 msgid "enabled" msgstr "ermöglichte" -#: src/Common/LinuxKernel.vala:994 +#: src/Common/LinuxKernel.vala:979 msgid "Downloading" msgstr "Laden" -#: src/Common/LinuxKernel.vala:1019 +#: src/Common/LinuxKernel.vala:1004 msgid "is already installed." msgstr "ist bereits installiert." -#: src/Common/LinuxKernel.vala:1029 +#: src/Common/LinuxKernel.vala:1014 msgid "download failed." msgstr "" -#: src/Common/LinuxKernel.vala:1037 +#: src/Common/LinuxKernel.vala:1022 #, fuzzy msgid "Install: no installable kernels secified" msgstr "Befehl nicht angegeben" -#: src/Common/LinuxKernel.vala:1049 +#: src/Common/LinuxKernel.vala:1034 msgid "Uninstalling selected kernels" msgstr "Deinstallation des angegebenen Kernels" -#: src/Common/LinuxKernel.vala:1053 +#: src/Common/LinuxKernel.vala:1038 #, fuzzy msgid "Requested" msgstr "angefordert" -#: src/Common/LinuxKernel.vala:1056 +#: src/Common/LinuxKernel.vala:1041 #, fuzzy msgid "Not uninstalling the currently running kernel" msgstr "Den aktuell laufenden Kernel wird nicht deinstalliert" -#: src/Common/LinuxKernel.vala:1061 +#: src/Common/LinuxKernel.vala:1046 msgid "is locked" msgstr "" -#: src/Common/LinuxKernel.vala:1069 +#: src/Common/LinuxKernel.vala:1054 msgid "found" msgstr "gründen" -#: src/Common/LinuxKernel.vala:1073 +#: src/Common/LinuxKernel.vala:1058 msgid "Uninstall: no uninstallable packages found" msgstr "" -#: src/Common/LinuxKernel.vala:1110 +#: src/Common/LinuxKernel.vala:1094 #, fuzzy msgid "is the highest installed version." msgstr "Deinstallieren Sie alle bis auf die höchste installierte Version" -#: src/Common/LinuxKernel.vala:1123 +#: src/Common/LinuxKernel.vala:1107 msgid "Could not find running kernel in list" msgstr "Konnte keinen laufenden Kernel in der Liste finden" -#: src/Common/LinuxKernel.vala:1128 +#: src/Common/LinuxKernel.vala:1112 msgid "Could not find any kernels to uninstall" msgstr "Es konnten keine Kernel zum Deinstallieren gefunden werden" -#: src/Common/LinuxKernel.vala:1136 +#: src/Common/LinuxKernel.vala:1120 msgid "The following kernels will be uninstalled" msgstr "Die folgenden Kernel werden deinstalliert" -#: src/Common/LinuxKernel.vala:1140 +#: src/Common/LinuxKernel.vala:1124 msgid "Continue ?" msgstr "Weiter ?" -#: src/Common/LinuxKernel.vala:1162 src/Console/AppConsole.vala:234 +#: src/Common/LinuxKernel.vala:1146 src/Console/AppConsole.vala:234 msgid "Latest update" msgstr "Neustes Update" -#: src/Common/LinuxKernel.vala:1173 src/Console/AppConsole.vala:241 +#: src/Common/LinuxKernel.vala:1157 src/Console/AppConsole.vala:241 msgid "Latest point update" msgstr "Letzte Punktaktualisierung" -#: src/Common/LinuxKernel.vala:1181 src/Console/AppConsole.vala:246 +#: src/Common/LinuxKernel.vala:1165 src/Console/AppConsole.vala:246 #: src/Console/AppConsole.vala:261 msgid "No updates found" msgstr "Keine Updates gefunden" -#: src/Common/LinuxKernel.vala:1190 +#: src/Common/LinuxKernel.vala:1174 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Kernel-Version %s installieren? (j/n):" @@ -263,7 +263,7 @@ msgstr "Deinstallation des angegebenen Kernels" msgid "Uninstall specified kernels" msgstr "Deinstallation des angegebenen Kernels" -#: src/Console/AppConsole.vala:55 src/Gtk/MainWindow.vala:327 +#: src/Console/AppConsole.vala:55 src/Gtk/MainWindow.vala:324 msgid "Uninstall all but the highest installed version" msgstr "Deinstallieren Sie alle bis auf die höchste installierte Version" @@ -342,7 +342,7 @@ msgstr "Kernel %s verfügbar" msgid "Show" msgstr "Zeigen" -#: src/Console/AppConsole.vala:288 src/Gtk/MainWindow.vala:299 +#: src/Console/AppConsole.vala:288 src/Gtk/MainWindow.vala:296 msgid "Install" msgstr "Installieren" @@ -410,60 +410,60 @@ msgstr "Status" msgid "Notes" msgstr "Notizen" -#: src/Gtk/MainWindow.vala:307 +#: src/Gtk/MainWindow.vala:304 msgid "Uninstall" msgstr "Deinstallieren" -#: src/Gtk/MainWindow.vala:316 +#: src/Gtk/MainWindow.vala:313 msgid "Changelog, build status, etc" msgstr "" -#: src/Gtk/MainWindow.vala:326 +#: src/Gtk/MainWindow.vala:323 msgid "Uninstall Old" msgstr "Alte deinstallieren" -#: src/Gtk/MainWindow.vala:332 +#: src/Gtk/MainWindow.vala:329 msgid "Reload" msgstr "Nachladen" -#: src/Gtk/MainWindow.vala:333 +#: src/Gtk/MainWindow.vala:330 msgid "Delete and reload all cached kernel info" msgstr "" -#: src/Gtk/MainWindow.vala:338 src/Gtk/SettingsDialog.vala:49 +#: src/Gtk/MainWindow.vala:335 src/Gtk/SettingsDialog.vala:49 msgid "Settings" msgstr "Einstellungen" -#: src/Gtk/MainWindow.vala:343 +#: src/Gtk/MainWindow.vala:340 msgid "About" msgstr "Über" -#: src/Gtk/MainWindow.vala:348 +#: src/Gtk/MainWindow.vala:345 msgid "Exit" msgstr "Ausgang" -#: src/Gtk/MainWindow.vala:414 +#: src/Gtk/MainWindow.vala:411 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Kernel-Upgrade-Dienstprogramm für Ubuntu-basierte Distributionen" -#: src/Gtk/MainWindow.vala:415 +#: src/Gtk/MainWindow.vala:412 msgid "Forked" msgstr "Gegabelte" -#: src/Gtk/MainWindow.vala:415 +#: src/Gtk/MainWindow.vala:412 msgid "Original" msgstr "Original" -#: src/Gtk/MainWindow.vala:444 +#: src/Gtk/MainWindow.vala:441 msgid "Updating kernels" msgstr "Aktualisieren von Kernels" -#: src/Gtk/MainWindow.vala:521 +#: src/Gtk/MainWindow.vala:518 msgid "available" msgstr "Verfügbar" -#: src/Gtk/MainWindow.vala:576 src/Gtk/MainWindow.vala:615 -#: src/Gtk/MainWindow.vala:647 +#: src/Gtk/MainWindow.vala:572 src/Gtk/MainWindow.vala:611 +#: src/Gtk/MainWindow.vala:643 msgid "DONE" msgstr "" diff --git a/po/el.po b/po/el.po index f0805db8..35faea10 100644 --- a/po/el.po +++ b/po/el.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-30 02:25-0400\n" +"POT-Creation-Date: 2023-05-30 10:06-0400\n" "PO-Revision-Date: 2023-01-10 02:03-0600\n" "Last-Translator: Vasilis Kosmidis \n" "Language-Team: Greek\n" @@ -13,184 +13,184 @@ msgstr "" "X-Launchpad-Export-Date: 2017-04-13 11:48+0000\n" "X-Generator: Poedit 2.0.5\n" -#: src/Common/LinuxKernel.vala:104 +#: src/Common/LinuxKernel.vala:105 msgid "Distribution" msgstr "Διανομή" -#: src/Common/LinuxKernel.vala:119 +#: src/Common/LinuxKernel.vala:120 msgid "Architecture" msgstr "Αρχιτεκτονική" -#: src/Common/LinuxKernel.vala:134 +#: src/Common/LinuxKernel.vala:135 msgid "Running kernel" msgstr "Εκτέλεση πυρήνα" -#: src/Common/LinuxKernel.vala:250 +#: src/Common/LinuxKernel.vala:238 msgid "loading cached" msgstr "φόρτωση προσωρινά αποθηκευμένου" -#: src/Common/LinuxKernel.vala:262 +#: src/Common/LinuxKernel.vala:250 msgid "queuing download" msgstr "Προσθήκη λήψης στην ουρά" -#: src/Common/LinuxKernel.vala:283 +#: src/Common/LinuxKernel.vala:271 msgid "Fetching individual kernel indexes" msgstr "Λήψη μεμονωμένων ευρετηρίων πυρήνα" -#: src/Common/LinuxKernel.vala:299 +#: src/Common/LinuxKernel.vala:287 msgid "loading downloaded" msgstr "Φόρτωση λήψης" -#: src/Common/LinuxKernel.vala:334 +#: src/Common/LinuxKernel.vala:322 msgid "Updating from" msgstr "Ενημέρωση από" -#: src/Common/LinuxKernel.vala:342 +#: src/Common/LinuxKernel.vala:330 msgid "OK" msgstr "ΟΚ" -#: src/Common/LinuxKernel.vala:345 +#: src/Common/LinuxKernel.vala:333 msgid "FAILED" msgstr "ΑΠΈΤΥΧΕ" -#: src/Common/LinuxKernel.vala:410 +#: src/Common/LinuxKernel.vala:392 msgid "Found installed" msgstr "Βρέθηκε εγκατεστημένο" -#: src/Common/LinuxKernel.vala:411 +#: src/Common/LinuxKernel.vala:393 msgid "locked" msgstr "" -#: src/Common/LinuxKernel.vala:496 src/Common/LinuxKernel.vala:1024 -#: src/Common/LinuxKernel.vala:1114 +#: src/Common/LinuxKernel.vala:477 src/Common/LinuxKernel.vala:1009 +#: src/Common/LinuxKernel.vala:1098 msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:696 src/Gtk/MainWindow.vala:512 -#: src/Gtk/MainWindow.vala:525 +#: src/Common/LinuxKernel.vala:681 src/Gtk/MainWindow.vala:509 +#: src/Gtk/MainWindow.vala:522 msgid "Running" msgstr "Ενεργός" -#: src/Common/LinuxKernel.vala:697 +#: src/Common/LinuxKernel.vala:682 msgid "Installed" msgstr "Εγκατεστημένος" -#: src/Common/LinuxKernel.vala:698 +#: src/Common/LinuxKernel.vala:683 msgid "Invalid" msgstr "Άκυρος" -#: src/Common/LinuxKernel.vala:783 +#: src/Common/LinuxKernel.vala:768 msgid "Packages Available" msgstr "Διαθέσιμα πακέτα" -#: src/Common/LinuxKernel.vala:789 +#: src/Common/LinuxKernel.vala:774 msgid "Packages Installed" msgstr "Εγκατεστημένα πακέτα" -#: src/Common/LinuxKernel.vala:814 src/lib/TeeJee.FileSystem.vala:118 +#: src/Common/LinuxKernel.vala:799 src/lib/TeeJee.FileSystem.vala:118 msgid "File not found" msgstr "Το αρχείο δε βρέθηκε" -#: src/Common/LinuxKernel.vala:908 +#: src/Common/LinuxKernel.vala:893 msgid "Available Kernels" msgstr "Διαθέσιμοι πυρήνες" -#: src/Common/LinuxKernel.vala:943 src/Gtk/MainWindow.vala:119 +#: src/Common/LinuxKernel.vala:928 src/Gtk/MainWindow.vala:119 msgid "Kernel" msgstr "Πυρήνας" -#: src/Common/LinuxKernel.vala:943 +#: src/Common/LinuxKernel.vala:928 #, fuzzy msgid "not found" msgstr "Το αρχείο δε βρέθηκε" -#: src/Common/LinuxKernel.vala:950 +#: src/Common/LinuxKernel.vala:935 #, fuzzy msgid "Download: no downloadable kernels specified" msgstr "Η εντολή δεν προσδιορίστηκε" -#: src/Common/LinuxKernel.vala:970 +#: src/Common/LinuxKernel.vala:955 msgid "enabled" msgstr "ενεργοποιημένη" -#: src/Common/LinuxKernel.vala:994 +#: src/Common/LinuxKernel.vala:979 msgid "Downloading" msgstr "Κατέβασμα" -#: src/Common/LinuxKernel.vala:1019 +#: src/Common/LinuxKernel.vala:1004 msgid "is already installed." msgstr "είναι ήδη εγκατεστημένο." -#: src/Common/LinuxKernel.vala:1029 +#: src/Common/LinuxKernel.vala:1014 msgid "download failed." msgstr "" -#: src/Common/LinuxKernel.vala:1037 +#: src/Common/LinuxKernel.vala:1022 #, fuzzy msgid "Install: no installable kernels secified" msgstr "Η εντολή δεν προσδιορίστηκε" -#: src/Common/LinuxKernel.vala:1049 +#: src/Common/LinuxKernel.vala:1034 msgid "Uninstalling selected kernels" msgstr "Απεγκατάσταση επιλεγμένων πυρήνων" -#: src/Common/LinuxKernel.vala:1053 +#: src/Common/LinuxKernel.vala:1038 #, fuzzy msgid "Requested" msgstr "ζητήθηκε" -#: src/Common/LinuxKernel.vala:1056 +#: src/Common/LinuxKernel.vala:1041 #, fuzzy msgid "Not uninstalling the currently running kernel" msgstr "δεν θα απεγκαταστήσει τον πυρήνα που εκτελείται αυτήν τη στιγμή" -#: src/Common/LinuxKernel.vala:1061 +#: src/Common/LinuxKernel.vala:1046 msgid "is locked" msgstr "" -#: src/Common/LinuxKernel.vala:1069 +#: src/Common/LinuxKernel.vala:1054 msgid "found" msgstr "ιδρύω" -#: src/Common/LinuxKernel.vala:1073 +#: src/Common/LinuxKernel.vala:1058 msgid "Uninstall: no uninstallable packages found" msgstr "" -#: src/Common/LinuxKernel.vala:1110 +#: src/Common/LinuxKernel.vala:1094 #, fuzzy msgid "is the highest installed version." msgstr "Απεγκαταστήστε όλες εκτός από την υψηλότερη εγκατεστημένη έκδοση" -#: src/Common/LinuxKernel.vala:1123 +#: src/Common/LinuxKernel.vala:1107 msgid "Could not find running kernel in list" msgstr "Δεν ήταν δυνατή η εύρεση του πυρήνα που εκτελείται αυτήν τη στιγμή" -#: src/Common/LinuxKernel.vala:1128 +#: src/Common/LinuxKernel.vala:1112 msgid "Could not find any kernels to uninstall" msgstr "Δεν βρέθηκε κανένας πυρήνας για απεγκατάσταση" -#: src/Common/LinuxKernel.vala:1136 +#: src/Common/LinuxKernel.vala:1120 msgid "The following kernels will be uninstalled" msgstr "Θα καταργηθεί η εγκατάσταση των ακόλουθων πυρήνων" -#: src/Common/LinuxKernel.vala:1140 +#: src/Common/LinuxKernel.vala:1124 msgid "Continue ?" msgstr "Συνέχεια;" -#: src/Common/LinuxKernel.vala:1162 src/Console/AppConsole.vala:234 +#: src/Common/LinuxKernel.vala:1146 src/Console/AppConsole.vala:234 msgid "Latest update" msgstr "Τελευταία αναβάθμιση" -#: src/Common/LinuxKernel.vala:1173 src/Console/AppConsole.vala:241 +#: src/Common/LinuxKernel.vala:1157 src/Console/AppConsole.vala:241 msgid "Latest point update" msgstr "Τελευταία ενημέρωση συντήρησης" -#: src/Common/LinuxKernel.vala:1181 src/Console/AppConsole.vala:246 +#: src/Common/LinuxKernel.vala:1165 src/Console/AppConsole.vala:246 #: src/Console/AppConsole.vala:261 msgid "No updates found" msgstr "Δεν βρέθηκαν ενημερώσεις" -#: src/Common/LinuxKernel.vala:1190 +#: src/Common/LinuxKernel.vala:1174 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Εγκατάσταση του πυρήνα έκδοσης %s ; (ν/ό):" @@ -263,7 +263,7 @@ msgstr "Απεγκατάσταση του καθορισμένου πυρήνα" msgid "Uninstall specified kernels" msgstr "Απεγκατάσταση του καθορισμένου πυρήνα" -#: src/Console/AppConsole.vala:55 src/Gtk/MainWindow.vala:327 +#: src/Console/AppConsole.vala:55 src/Gtk/MainWindow.vala:324 msgid "Uninstall all but the highest installed version" msgstr "Απεγκαταστήστε όλες εκτός από την υψηλότερη εγκατεστημένη έκδοση" @@ -343,7 +343,7 @@ msgstr "Πυρήνας %s διαθέσιμος" msgid "Show" msgstr "Προβολή" -#: src/Console/AppConsole.vala:288 src/Gtk/MainWindow.vala:299 +#: src/Console/AppConsole.vala:288 src/Gtk/MainWindow.vala:296 msgid "Install" msgstr "Εγκατάσταση" @@ -411,60 +411,60 @@ msgstr "Κατάσταση" msgid "Notes" msgstr "Σημειώσεις" -#: src/Gtk/MainWindow.vala:307 +#: src/Gtk/MainWindow.vala:304 msgid "Uninstall" msgstr "Απεγκατάσταση" -#: src/Gtk/MainWindow.vala:316 +#: src/Gtk/MainWindow.vala:313 msgid "Changelog, build status, etc" msgstr "" -#: src/Gtk/MainWindow.vala:326 +#: src/Gtk/MainWindow.vala:323 msgid "Uninstall Old" msgstr "Απεγκατάσταση παλαιών" -#: src/Gtk/MainWindow.vala:332 +#: src/Gtk/MainWindow.vala:329 msgid "Reload" msgstr "Δροσίζω" -#: src/Gtk/MainWindow.vala:333 +#: src/Gtk/MainWindow.vala:330 msgid "Delete and reload all cached kernel info" msgstr "" -#: src/Gtk/MainWindow.vala:338 src/Gtk/SettingsDialog.vala:49 +#: src/Gtk/MainWindow.vala:335 src/Gtk/SettingsDialog.vala:49 msgid "Settings" msgstr "Ρυθμίσεις" -#: src/Gtk/MainWindow.vala:343 +#: src/Gtk/MainWindow.vala:340 msgid "About" msgstr "Σχετικά" -#: src/Gtk/MainWindow.vala:348 +#: src/Gtk/MainWindow.vala:345 msgid "Exit" msgstr "Έξοδος" -#: src/Gtk/MainWindow.vala:414 +#: src/Gtk/MainWindow.vala:411 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Πρόγραμμα αναβάθμισης πυρήνα για διανομές που βασίζονται στο Ubuntu" -#: src/Gtk/MainWindow.vala:415 +#: src/Gtk/MainWindow.vala:412 msgid "Forked" msgstr "Forked" -#: src/Gtk/MainWindow.vala:415 +#: src/Gtk/MainWindow.vala:412 msgid "Original" msgstr "Πρωτότυπο" -#: src/Gtk/MainWindow.vala:444 +#: src/Gtk/MainWindow.vala:441 msgid "Updating kernels" msgstr "Ενημέρωση πυρήνων" -#: src/Gtk/MainWindow.vala:521 +#: src/Gtk/MainWindow.vala:518 msgid "available" msgstr "διαθέσιμος" -#: src/Gtk/MainWindow.vala:576 src/Gtk/MainWindow.vala:615 -#: src/Gtk/MainWindow.vala:647 +#: src/Gtk/MainWindow.vala:572 src/Gtk/MainWindow.vala:611 +#: src/Gtk/MainWindow.vala:643 msgid "DONE" msgstr "" diff --git a/po/es.po b/po/es.po index 6e56d345..4579af5c 100644 --- a/po/es.po +++ b/po/es.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-30 02:25-0400\n" +"POT-Creation-Date: 2023-05-30 10:06-0400\n" "PO-Revision-Date: 2018-01-03 02:03-0600\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish\n" @@ -13,184 +13,184 @@ msgstr "" "X-Launchpad-Export-Date: 2017-04-13 11:48+0000\n" "X-Generator: Poedit 2.0.5\n" -#: src/Common/LinuxKernel.vala:104 +#: src/Common/LinuxKernel.vala:105 msgid "Distribution" msgstr "Distribución" -#: src/Common/LinuxKernel.vala:119 +#: src/Common/LinuxKernel.vala:120 msgid "Architecture" msgstr "Arquitectura del sistema" -#: src/Common/LinuxKernel.vala:134 +#: src/Common/LinuxKernel.vala:135 msgid "Running kernel" msgstr "Kernel en ejecución" -#: src/Common/LinuxKernel.vala:250 +#: src/Common/LinuxKernel.vala:238 msgid "loading cached" msgstr "carga en caché" -#: src/Common/LinuxKernel.vala:262 +#: src/Common/LinuxKernel.vala:250 msgid "queuing download" msgstr "descarga de colas" -#: src/Common/LinuxKernel.vala:283 +#: src/Common/LinuxKernel.vala:271 msgid "Fetching individual kernel indexes" msgstr "Obtención de índices de kernel individuales" -#: src/Common/LinuxKernel.vala:299 +#: src/Common/LinuxKernel.vala:287 msgid "loading downloaded" msgstr "cargando descargado" -#: src/Common/LinuxKernel.vala:334 +#: src/Common/LinuxKernel.vala:322 msgid "Updating from" msgstr "Actualización desde" -#: src/Common/LinuxKernel.vala:342 +#: src/Common/LinuxKernel.vala:330 msgid "OK" msgstr "Aceptar" -#: src/Common/LinuxKernel.vala:345 +#: src/Common/LinuxKernel.vala:333 msgid "FAILED" msgstr "FRACASADO" -#: src/Common/LinuxKernel.vala:410 +#: src/Common/LinuxKernel.vala:392 msgid "Found installed" msgstr "Encontrado instalado" -#: src/Common/LinuxKernel.vala:411 +#: src/Common/LinuxKernel.vala:393 msgid "locked" msgstr "" -#: src/Common/LinuxKernel.vala:496 src/Common/LinuxKernel.vala:1024 -#: src/Common/LinuxKernel.vala:1114 +#: src/Common/LinuxKernel.vala:477 src/Common/LinuxKernel.vala:1009 +#: src/Common/LinuxKernel.vala:1098 msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:696 src/Gtk/MainWindow.vala:512 -#: src/Gtk/MainWindow.vala:525 +#: src/Common/LinuxKernel.vala:681 src/Gtk/MainWindow.vala:509 +#: src/Gtk/MainWindow.vala:522 msgid "Running" msgstr "En ejecución" -#: src/Common/LinuxKernel.vala:697 +#: src/Common/LinuxKernel.vala:682 msgid "Installed" msgstr "Instalado" -#: src/Common/LinuxKernel.vala:698 +#: src/Common/LinuxKernel.vala:683 msgid "Invalid" msgstr "No válido" -#: src/Common/LinuxKernel.vala:783 +#: src/Common/LinuxKernel.vala:768 msgid "Packages Available" msgstr "Paquetes disponibles" -#: src/Common/LinuxKernel.vala:789 +#: src/Common/LinuxKernel.vala:774 msgid "Packages Installed" msgstr "Paquetes instalados" -#: src/Common/LinuxKernel.vala:814 src/lib/TeeJee.FileSystem.vala:118 +#: src/Common/LinuxKernel.vala:799 src/lib/TeeJee.FileSystem.vala:118 msgid "File not found" msgstr "No se encontró el archivo" -#: src/Common/LinuxKernel.vala:908 +#: src/Common/LinuxKernel.vala:893 msgid "Available Kernels" msgstr "Núcleos disponibles" -#: src/Common/LinuxKernel.vala:943 src/Gtk/MainWindow.vala:119 +#: src/Common/LinuxKernel.vala:928 src/Gtk/MainWindow.vala:119 msgid "Kernel" msgstr "Núcleo" -#: src/Common/LinuxKernel.vala:943 +#: src/Common/LinuxKernel.vala:928 #, fuzzy msgid "not found" msgstr "No se encontró el archivo" -#: src/Common/LinuxKernel.vala:950 +#: src/Common/LinuxKernel.vala:935 #, fuzzy msgid "Download: no downloadable kernels specified" msgstr "Coomand no especificado" -#: src/Common/LinuxKernel.vala:970 +#: src/Common/LinuxKernel.vala:955 msgid "enabled" msgstr "habilitado" -#: src/Common/LinuxKernel.vala:994 +#: src/Common/LinuxKernel.vala:979 msgid "Downloading" msgstr "Descargar" -#: src/Common/LinuxKernel.vala:1019 +#: src/Common/LinuxKernel.vala:1004 msgid "is already installed." msgstr "ya está instalado." -#: src/Common/LinuxKernel.vala:1029 +#: src/Common/LinuxKernel.vala:1014 msgid "download failed." msgstr "" -#: src/Common/LinuxKernel.vala:1037 +#: src/Common/LinuxKernel.vala:1022 #, fuzzy msgid "Install: no installable kernels secified" msgstr "Coomand no especificado" -#: src/Common/LinuxKernel.vala:1049 +#: src/Common/LinuxKernel.vala:1034 msgid "Uninstalling selected kernels" msgstr "Desinstalación de kernels seleccionados" -#: src/Common/LinuxKernel.vala:1053 +#: src/Common/LinuxKernel.vala:1038 #, fuzzy msgid "Requested" msgstr "solicitado" -#: src/Common/LinuxKernel.vala:1056 +#: src/Common/LinuxKernel.vala:1041 #, fuzzy msgid "Not uninstalling the currently running kernel" msgstr "No desinstalará el kernel que se está ejecutando actualmente" -#: src/Common/LinuxKernel.vala:1061 +#: src/Common/LinuxKernel.vala:1046 msgid "is locked" msgstr "" -#: src/Common/LinuxKernel.vala:1069 +#: src/Common/LinuxKernel.vala:1054 msgid "found" msgstr "fundar" -#: src/Common/LinuxKernel.vala:1073 +#: src/Common/LinuxKernel.vala:1058 msgid "Uninstall: no uninstallable packages found" msgstr "" -#: src/Common/LinuxKernel.vala:1110 +#: src/Common/LinuxKernel.vala:1094 #, fuzzy msgid "is the highest installed version." msgstr "Desinstale todas las versiones instaladas excepto la más alta" -#: src/Common/LinuxKernel.vala:1123 +#: src/Common/LinuxKernel.vala:1107 msgid "Could not find running kernel in list" msgstr "No se pudo encontrar el kernel en ejecución en la lista" -#: src/Common/LinuxKernel.vala:1128 +#: src/Common/LinuxKernel.vala:1112 msgid "Could not find any kernels to uninstall" msgstr "No se pudo encontrar ningún kernel para desinstalar" -#: src/Common/LinuxKernel.vala:1136 +#: src/Common/LinuxKernel.vala:1120 msgid "The following kernels will be uninstalled" msgstr "Se desinstalarán los siguientes kernels" -#: src/Common/LinuxKernel.vala:1140 +#: src/Common/LinuxKernel.vala:1124 msgid "Continue ?" msgstr "¿Continuar?" -#: src/Common/LinuxKernel.vala:1162 src/Console/AppConsole.vala:234 +#: src/Common/LinuxKernel.vala:1146 src/Console/AppConsole.vala:234 msgid "Latest update" msgstr "Última actualización" -#: src/Common/LinuxKernel.vala:1173 src/Console/AppConsole.vala:241 +#: src/Common/LinuxKernel.vala:1157 src/Console/AppConsole.vala:241 msgid "Latest point update" msgstr "Última actualización puntual" -#: src/Common/LinuxKernel.vala:1181 src/Console/AppConsole.vala:246 +#: src/Common/LinuxKernel.vala:1165 src/Console/AppConsole.vala:246 #: src/Console/AppConsole.vala:261 msgid "No updates found" msgstr "No se encontró ninguna actualización" -#: src/Common/LinuxKernel.vala:1190 +#: src/Common/LinuxKernel.vala:1174 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Instalar la versión del kernel %s? (s/n): " @@ -263,7 +263,7 @@ msgstr "Desinstalar el kernel especificado" msgid "Uninstall specified kernels" msgstr "Desinstalar el kernel especificado" -#: src/Console/AppConsole.vala:55 src/Gtk/MainWindow.vala:327 +#: src/Console/AppConsole.vala:55 src/Gtk/MainWindow.vala:324 msgid "Uninstall all but the highest installed version" msgstr "Desinstale todas las versiones instaladas excepto la más alta" @@ -342,7 +342,7 @@ msgstr "Kernel %s Disponible" msgid "Show" msgstr "Mostrar" -#: src/Console/AppConsole.vala:288 src/Gtk/MainWindow.vala:299 +#: src/Console/AppConsole.vala:288 src/Gtk/MainWindow.vala:296 msgid "Install" msgstr "Instalar" @@ -410,61 +410,61 @@ msgstr "Estado" msgid "Notes" msgstr "Notas" -#: src/Gtk/MainWindow.vala:307 +#: src/Gtk/MainWindow.vala:304 msgid "Uninstall" msgstr "Desinstalar" -#: src/Gtk/MainWindow.vala:316 +#: src/Gtk/MainWindow.vala:313 msgid "Changelog, build status, etc" msgstr "" -#: src/Gtk/MainWindow.vala:326 +#: src/Gtk/MainWindow.vala:323 msgid "Uninstall Old" msgstr "Desinstalar Antiguo" -#: src/Gtk/MainWindow.vala:332 +#: src/Gtk/MainWindow.vala:329 msgid "Reload" msgstr "Recargar" -#: src/Gtk/MainWindow.vala:333 +#: src/Gtk/MainWindow.vala:330 msgid "Delete and reload all cached kernel info" msgstr "" -#: src/Gtk/MainWindow.vala:338 src/Gtk/SettingsDialog.vala:49 +#: src/Gtk/MainWindow.vala:335 src/Gtk/SettingsDialog.vala:49 msgid "Settings" msgstr "Configuración" -#: src/Gtk/MainWindow.vala:343 +#: src/Gtk/MainWindow.vala:340 msgid "About" msgstr "Acerca de" -#: src/Gtk/MainWindow.vala:348 +#: src/Gtk/MainWindow.vala:345 msgid "Exit" msgstr "Salida" -#: src/Gtk/MainWindow.vala:414 +#: src/Gtk/MainWindow.vala:411 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "" "Herramienta de renovación de núcleo para distribuciones basadas en Ubuntu" -#: src/Gtk/MainWindow.vala:415 +#: src/Gtk/MainWindow.vala:412 msgid "Forked" msgstr "Bifurcada" -#: src/Gtk/MainWindow.vala:415 +#: src/Gtk/MainWindow.vala:412 msgid "Original" msgstr "Original" -#: src/Gtk/MainWindow.vala:444 +#: src/Gtk/MainWindow.vala:441 msgid "Updating kernels" msgstr "Actualización de kernels" -#: src/Gtk/MainWindow.vala:521 +#: src/Gtk/MainWindow.vala:518 msgid "available" msgstr "disponibles" -#: src/Gtk/MainWindow.vala:576 src/Gtk/MainWindow.vala:615 -#: src/Gtk/MainWindow.vala:647 +#: src/Gtk/MainWindow.vala:572 src/Gtk/MainWindow.vala:611 +#: src/Gtk/MainWindow.vala:643 msgid "DONE" msgstr "" diff --git a/po/fr.po b/po/fr.po index 0fb01f10..f9e89da9 100644 --- a/po/fr.po +++ b/po/fr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-30 02:25-0400\n" +"POT-Creation-Date: 2023-05-30 10:06-0400\n" "PO-Revision-Date: 2018-08-05 15:50+0200\n" "Last-Translator: Yolateng0 \n" "Language-Team: French\n" @@ -13,184 +13,184 @@ msgstr "" "X-Launchpad-Export-Date: 2017-04-13 11:48+0000\n" "X-Generator: Poedit 2.0.6\n" -#: src/Common/LinuxKernel.vala:104 +#: src/Common/LinuxKernel.vala:105 msgid "Distribution" msgstr "Distribution" -#: src/Common/LinuxKernel.vala:119 +#: src/Common/LinuxKernel.vala:120 msgid "Architecture" msgstr "Architecture" -#: src/Common/LinuxKernel.vala:134 +#: src/Common/LinuxKernel.vala:135 msgid "Running kernel" msgstr "Noyau en cours d'exécution" -#: src/Common/LinuxKernel.vala:250 +#: src/Common/LinuxKernel.vala:238 msgid "loading cached" msgstr "chargement mis en cache" -#: src/Common/LinuxKernel.vala:262 +#: src/Common/LinuxKernel.vala:250 msgid "queuing download" msgstr "enqueuing télécharger" -#: src/Common/LinuxKernel.vala:283 +#: src/Common/LinuxKernel.vala:271 msgid "Fetching individual kernel indexes" msgstr "Récupération d'index de noyau individuels" -#: src/Common/LinuxKernel.vala:299 +#: src/Common/LinuxKernel.vala:287 msgid "loading downloaded" msgstr "chargement téléchargé" -#: src/Common/LinuxKernel.vala:334 +#: src/Common/LinuxKernel.vala:322 msgid "Updating from" msgstr "Mise à jour à partir de" -#: src/Common/LinuxKernel.vala:342 +#: src/Common/LinuxKernel.vala:330 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:345 +#: src/Common/LinuxKernel.vala:333 msgid "FAILED" msgstr "RATÉ" -#: src/Common/LinuxKernel.vala:410 +#: src/Common/LinuxKernel.vala:392 msgid "Found installed" msgstr "Trouvé installé" -#: src/Common/LinuxKernel.vala:411 +#: src/Common/LinuxKernel.vala:393 msgid "locked" msgstr "" -#: src/Common/LinuxKernel.vala:496 src/Common/LinuxKernel.vala:1024 -#: src/Common/LinuxKernel.vala:1114 +#: src/Common/LinuxKernel.vala:477 src/Common/LinuxKernel.vala:1009 +#: src/Common/LinuxKernel.vala:1098 msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:696 src/Gtk/MainWindow.vala:512 -#: src/Gtk/MainWindow.vala:525 +#: src/Common/LinuxKernel.vala:681 src/Gtk/MainWindow.vala:509 +#: src/Gtk/MainWindow.vala:522 msgid "Running" msgstr "Actuel" -#: src/Common/LinuxKernel.vala:697 +#: src/Common/LinuxKernel.vala:682 msgid "Installed" msgstr "Installé" -#: src/Common/LinuxKernel.vala:698 +#: src/Common/LinuxKernel.vala:683 msgid "Invalid" msgstr "No válido" -#: src/Common/LinuxKernel.vala:783 +#: src/Common/LinuxKernel.vala:768 msgid "Packages Available" msgstr "Paquets Disponibles" -#: src/Common/LinuxKernel.vala:789 +#: src/Common/LinuxKernel.vala:774 msgid "Packages Installed" msgstr "Paquets Installés" -#: src/Common/LinuxKernel.vala:814 src/lib/TeeJee.FileSystem.vala:118 +#: src/Common/LinuxKernel.vala:799 src/lib/TeeJee.FileSystem.vala:118 msgid "File not found" msgstr "Fichier non trouvé" -#: src/Common/LinuxKernel.vala:908 +#: src/Common/LinuxKernel.vala:893 msgid "Available Kernels" msgstr "Noyaux Disponibles" -#: src/Common/LinuxKernel.vala:943 src/Gtk/MainWindow.vala:119 +#: src/Common/LinuxKernel.vala:928 src/Gtk/MainWindow.vala:119 msgid "Kernel" msgstr "Noyau" -#: src/Common/LinuxKernel.vala:943 +#: src/Common/LinuxKernel.vala:928 #, fuzzy msgid "not found" msgstr "Fichier non trouvé" -#: src/Common/LinuxKernel.vala:950 +#: src/Common/LinuxKernel.vala:935 #, fuzzy msgid "Download: no downloadable kernels specified" msgstr "Pas de commande fournie" -#: src/Common/LinuxKernel.vala:970 +#: src/Common/LinuxKernel.vala:955 msgid "enabled" msgstr "activé" -#: src/Common/LinuxKernel.vala:994 +#: src/Common/LinuxKernel.vala:979 msgid "Downloading" msgstr "Téléchargement" -#: src/Common/LinuxKernel.vala:1019 +#: src/Common/LinuxKernel.vala:1004 msgid "is already installed." msgstr "est déjà installé." -#: src/Common/LinuxKernel.vala:1029 +#: src/Common/LinuxKernel.vala:1014 msgid "download failed." msgstr "" -#: src/Common/LinuxKernel.vala:1037 +#: src/Common/LinuxKernel.vala:1022 #, fuzzy msgid "Install: no installable kernels secified" msgstr "Pas de commande fournie" -#: src/Common/LinuxKernel.vala:1049 +#: src/Common/LinuxKernel.vala:1034 msgid "Uninstalling selected kernels" msgstr "Désinstallation des noyaux sélectionnés" -#: src/Common/LinuxKernel.vala:1053 +#: src/Common/LinuxKernel.vala:1038 #, fuzzy msgid "Requested" msgstr "Demandé" -#: src/Common/LinuxKernel.vala:1056 +#: src/Common/LinuxKernel.vala:1041 #, fuzzy msgid "Not uninstalling the currently running kernel" msgstr "Ne pas désinstaller le noyau en cours d'exécution" -#: src/Common/LinuxKernel.vala:1061 +#: src/Common/LinuxKernel.vala:1046 msgid "is locked" msgstr "" -#: src/Common/LinuxKernel.vala:1069 +#: src/Common/LinuxKernel.vala:1054 msgid "found" msgstr "fonder" -#: src/Common/LinuxKernel.vala:1073 +#: src/Common/LinuxKernel.vala:1058 msgid "Uninstall: no uninstallable packages found" msgstr "" -#: src/Common/LinuxKernel.vala:1110 +#: src/Common/LinuxKernel.vala:1094 #, fuzzy msgid "is the highest installed version." msgstr "Désinstallez toutes le version installées, sauf la plus élevée" -#: src/Common/LinuxKernel.vala:1123 +#: src/Common/LinuxKernel.vala:1107 msgid "Could not find running kernel in list" msgstr "Impossible de trouver le noyau en cours d'exécution dans la liste" -#: src/Common/LinuxKernel.vala:1128 +#: src/Common/LinuxKernel.vala:1112 msgid "Could not find any kernels to uninstall" msgstr "Impossible de trouver des noyaux à désinstaller" -#: src/Common/LinuxKernel.vala:1136 +#: src/Common/LinuxKernel.vala:1120 msgid "The following kernels will be uninstalled" msgstr "Les noyaux suivants seront désinstallés" -#: src/Common/LinuxKernel.vala:1140 +#: src/Common/LinuxKernel.vala:1124 msgid "Continue ?" msgstr "Reprendre ?" -#: src/Common/LinuxKernel.vala:1162 src/Console/AppConsole.vala:234 +#: src/Common/LinuxKernel.vala:1146 src/Console/AppConsole.vala:234 msgid "Latest update" msgstr "Dernière mise à jour" -#: src/Common/LinuxKernel.vala:1173 src/Console/AppConsole.vala:241 +#: src/Common/LinuxKernel.vala:1157 src/Console/AppConsole.vala:241 msgid "Latest point update" msgstr "Dernière mise à jour mineure" -#: src/Common/LinuxKernel.vala:1181 src/Console/AppConsole.vala:246 +#: src/Common/LinuxKernel.vala:1165 src/Console/AppConsole.vala:246 #: src/Console/AppConsole.vala:261 msgid "No updates found" msgstr "Aucune mise à jour disponible" -#: src/Common/LinuxKernel.vala:1190 +#: src/Common/LinuxKernel.vala:1174 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Installer le noyau en version %s ? (y/n): " @@ -263,7 +263,7 @@ msgstr "Désinstaller le noyau spécifié" msgid "Uninstall specified kernels" msgstr "Désinstaller le noyau spécifié" -#: src/Console/AppConsole.vala:55 src/Gtk/MainWindow.vala:327 +#: src/Console/AppConsole.vala:55 src/Gtk/MainWindow.vala:324 msgid "Uninstall all but the highest installed version" msgstr "Désinstallez toutes le version installées, sauf la plus élevée" @@ -342,7 +342,7 @@ msgstr "Paquet %s disponibles" msgid "Show" msgstr "Montrer" -#: src/Console/AppConsole.vala:288 src/Gtk/MainWindow.vala:299 +#: src/Console/AppConsole.vala:288 src/Gtk/MainWindow.vala:296 msgid "Install" msgstr "Installer" @@ -410,62 +410,62 @@ msgstr "Statut" msgid "Notes" msgstr "Notes" -#: src/Gtk/MainWindow.vala:307 +#: src/Gtk/MainWindow.vala:304 msgid "Uninstall" msgstr "Désinstaller" -#: src/Gtk/MainWindow.vala:316 +#: src/Gtk/MainWindow.vala:313 msgid "Changelog, build status, etc" msgstr "" -#: src/Gtk/MainWindow.vala:326 +#: src/Gtk/MainWindow.vala:323 msgid "Uninstall Old" msgstr "Désinstaller Ancien" -#: src/Gtk/MainWindow.vala:332 +#: src/Gtk/MainWindow.vala:329 msgid "Reload" msgstr "Recharger" -#: src/Gtk/MainWindow.vala:333 +#: src/Gtk/MainWindow.vala:330 msgid "Delete and reload all cached kernel info" msgstr "" -#: src/Gtk/MainWindow.vala:338 src/Gtk/SettingsDialog.vala:49 +#: src/Gtk/MainWindow.vala:335 src/Gtk/SettingsDialog.vala:49 msgid "Settings" msgstr "Paramètres" -#: src/Gtk/MainWindow.vala:343 +#: src/Gtk/MainWindow.vala:340 msgid "About" msgstr "À propos" -#: src/Gtk/MainWindow.vala:348 +#: src/Gtk/MainWindow.vala:345 msgid "Exit" msgstr "Sortie" -#: src/Gtk/MainWindow.vala:414 +#: src/Gtk/MainWindow.vala:411 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "" "Utilitaire de mise à niveau des noyaux pour les distributions basées sur " "Ubuntu" -#: src/Gtk/MainWindow.vala:415 +#: src/Gtk/MainWindow.vala:412 msgid "Forked" msgstr "Forkée" -#: src/Gtk/MainWindow.vala:415 +#: src/Gtk/MainWindow.vala:412 msgid "Original" msgstr "Originale" -#: src/Gtk/MainWindow.vala:444 +#: src/Gtk/MainWindow.vala:441 msgid "Updating kernels" msgstr "Mise à jour des noyaux" -#: src/Gtk/MainWindow.vala:521 +#: src/Gtk/MainWindow.vala:518 msgid "available" msgstr "disponible" -#: src/Gtk/MainWindow.vala:576 src/Gtk/MainWindow.vala:615 -#: src/Gtk/MainWindow.vala:647 +#: src/Gtk/MainWindow.vala:572 src/Gtk/MainWindow.vala:611 +#: src/Gtk/MainWindow.vala:643 msgid "DONE" msgstr "" diff --git a/po/hr.po b/po/hr.po index caf2a7e6..abc015fa 100644 --- a/po/hr.po +++ b/po/hr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-30 02:25-0400\n" +"POT-Creation-Date: 2023-05-30 10:06-0400\n" "PO-Revision-Date: 2022-09-22 12:13+0200\n" "Last-Translator: gogo \n" "Language-Team: Croatian\n" @@ -13,184 +13,184 @@ msgstr "" "X-Launchpad-Export-Date: 2017-12-23 23:36+0000\n" "X-Generator: Poedit 3.0.1\n" -#: src/Common/LinuxKernel.vala:104 +#: src/Common/LinuxKernel.vala:105 msgid "Distribution" msgstr "Distribucija" -#: src/Common/LinuxKernel.vala:119 +#: src/Common/LinuxKernel.vala:120 msgid "Architecture" msgstr "Arhitektura" -#: src/Common/LinuxKernel.vala:134 +#: src/Common/LinuxKernel.vala:135 msgid "Running kernel" msgstr "Trčanje kernel" -#: src/Common/LinuxKernel.vala:250 +#: src/Common/LinuxKernel.vala:238 msgid "loading cached" msgstr "učitavanje predmemoriranog" -#: src/Common/LinuxKernel.vala:262 +#: src/Common/LinuxKernel.vala:250 msgid "queuing download" msgstr "preuzimanje u redu čekanja" -#: src/Common/LinuxKernel.vala:283 +#: src/Common/LinuxKernel.vala:271 msgid "Fetching individual kernel indexes" msgstr "Dohvaćanje pojedinačnih indeksa kernel" -#: src/Common/LinuxKernel.vala:299 +#: src/Common/LinuxKernel.vala:287 msgid "loading downloaded" msgstr "učitavanje preuzeto" -#: src/Common/LinuxKernel.vala:334 +#: src/Common/LinuxKernel.vala:322 msgid "Updating from" msgstr "Ažuriranje iz" -#: src/Common/LinuxKernel.vala:342 +#: src/Common/LinuxKernel.vala:330 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:345 +#: src/Common/LinuxKernel.vala:333 msgid "FAILED" msgstr "NIJE USPIO" -#: src/Common/LinuxKernel.vala:410 +#: src/Common/LinuxKernel.vala:392 msgid "Found installed" msgstr "Pronađeno instalirano" -#: src/Common/LinuxKernel.vala:411 +#: src/Common/LinuxKernel.vala:393 msgid "locked" msgstr "" -#: src/Common/LinuxKernel.vala:496 src/Common/LinuxKernel.vala:1024 -#: src/Common/LinuxKernel.vala:1114 +#: src/Common/LinuxKernel.vala:477 src/Common/LinuxKernel.vala:1009 +#: src/Common/LinuxKernel.vala:1098 msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:696 src/Gtk/MainWindow.vala:512 -#: src/Gtk/MainWindow.vala:525 +#: src/Common/LinuxKernel.vala:681 src/Gtk/MainWindow.vala:509 +#: src/Gtk/MainWindow.vala:522 msgid "Running" msgstr "Pokrenuto" -#: src/Common/LinuxKernel.vala:697 +#: src/Common/LinuxKernel.vala:682 msgid "Installed" msgstr "Instalirano" -#: src/Common/LinuxKernel.vala:698 +#: src/Common/LinuxKernel.vala:683 msgid "Invalid" msgstr "Érvénytelen" -#: src/Common/LinuxKernel.vala:783 +#: src/Common/LinuxKernel.vala:768 msgid "Packages Available" msgstr "Dostupni Paketi" -#: src/Common/LinuxKernel.vala:789 +#: src/Common/LinuxKernel.vala:774 msgid "Packages Installed" msgstr "Instalirani paketi" -#: src/Common/LinuxKernel.vala:814 src/lib/TeeJee.FileSystem.vala:118 +#: src/Common/LinuxKernel.vala:799 src/lib/TeeJee.FileSystem.vala:118 msgid "File not found" msgstr "Datoteka nije pronađena" -#: src/Common/LinuxKernel.vala:908 +#: src/Common/LinuxKernel.vala:893 msgid "Available Kernels" msgstr "Dostupni kerneli" -#: src/Common/LinuxKernel.vala:943 src/Gtk/MainWindow.vala:119 +#: src/Common/LinuxKernel.vala:928 src/Gtk/MainWindow.vala:119 msgid "Kernel" msgstr "Kernel" -#: src/Common/LinuxKernel.vala:943 +#: src/Common/LinuxKernel.vala:928 #, fuzzy msgid "not found" msgstr "Datoteka nije pronađena" -#: src/Common/LinuxKernel.vala:950 +#: src/Common/LinuxKernel.vala:935 #, fuzzy msgid "Download: no downloadable kernels specified" msgstr "Naredba nije navedena" -#: src/Common/LinuxKernel.vala:970 +#: src/Common/LinuxKernel.vala:955 msgid "enabled" msgstr "omogućen" -#: src/Common/LinuxKernel.vala:994 +#: src/Common/LinuxKernel.vala:979 msgid "Downloading" msgstr "Učitavanje" -#: src/Common/LinuxKernel.vala:1019 +#: src/Common/LinuxKernel.vala:1004 msgid "is already installed." msgstr "je već instaliran." -#: src/Common/LinuxKernel.vala:1029 +#: src/Common/LinuxKernel.vala:1014 msgid "download failed." msgstr "" -#: src/Common/LinuxKernel.vala:1037 +#: src/Common/LinuxKernel.vala:1022 #, fuzzy msgid "Install: no installable kernels secified" msgstr "Naredba nije navedena" -#: src/Common/LinuxKernel.vala:1049 +#: src/Common/LinuxKernel.vala:1034 msgid "Uninstalling selected kernels" msgstr "Deinstaliraj određene kernele" -#: src/Common/LinuxKernel.vala:1053 +#: src/Common/LinuxKernel.vala:1038 #, fuzzy msgid "Requested" msgstr "Zatražio" -#: src/Common/LinuxKernel.vala:1056 +#: src/Common/LinuxKernel.vala:1041 #, fuzzy msgid "Not uninstalling the currently running kernel" msgstr "ne deinstaliranje trenutno pokrenute kernel" -#: src/Common/LinuxKernel.vala:1061 +#: src/Common/LinuxKernel.vala:1046 msgid "is locked" msgstr "" -#: src/Common/LinuxKernel.vala:1069 +#: src/Common/LinuxKernel.vala:1054 msgid "found" msgstr "pronađen" -#: src/Common/LinuxKernel.vala:1073 +#: src/Common/LinuxKernel.vala:1058 msgid "Uninstall: no uninstallable packages found" msgstr "" -#: src/Common/LinuxKernel.vala:1110 +#: src/Common/LinuxKernel.vala:1094 #, fuzzy msgid "is the highest installed version." msgstr "Deinstaliraj sve osim najnovije instalirane verzije" -#: src/Common/LinuxKernel.vala:1123 +#: src/Common/LinuxKernel.vala:1107 msgid "Could not find running kernel in list" msgstr "Nije moguće pronaći pokrenutu kernel na popisu" -#: src/Common/LinuxKernel.vala:1128 +#: src/Common/LinuxKernel.vala:1112 msgid "Could not find any kernels to uninstall" msgstr "Nema pronađenih kernela za deinstaliranje" -#: src/Common/LinuxKernel.vala:1136 +#: src/Common/LinuxKernel.vala:1120 msgid "The following kernels will be uninstalled" msgstr "Deinstalirat će se sljedeće kerneli" -#: src/Common/LinuxKernel.vala:1140 +#: src/Common/LinuxKernel.vala:1124 msgid "Continue ?" msgstr "Nastavi?" -#: src/Common/LinuxKernel.vala:1162 src/Console/AppConsole.vala:234 +#: src/Common/LinuxKernel.vala:1146 src/Console/AppConsole.vala:234 msgid "Latest update" msgstr "Najnovija nadopuna" -#: src/Common/LinuxKernel.vala:1173 src/Console/AppConsole.vala:241 +#: src/Common/LinuxKernel.vala:1157 src/Console/AppConsole.vala:241 msgid "Latest point update" msgstr "Najnovija ciljana nadopuna" -#: src/Common/LinuxKernel.vala:1181 src/Console/AppConsole.vala:246 +#: src/Common/LinuxKernel.vala:1165 src/Console/AppConsole.vala:246 #: src/Console/AppConsole.vala:261 msgid "No updates found" msgstr "Nema pronađenih nadopuna" -#: src/Common/LinuxKernel.vala:1190 +#: src/Common/LinuxKernel.vala:1174 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Instaliraj kernel inačice %s ? (d/n): " @@ -262,7 +262,7 @@ msgstr "Deinstaliraj određene kernele" msgid "Uninstall specified kernels" msgstr "Deinstaliraj određene kernele" -#: src/Console/AppConsole.vala:55 src/Gtk/MainWindow.vala:327 +#: src/Console/AppConsole.vala:55 src/Gtk/MainWindow.vala:324 msgid "Uninstall all but the highest installed version" msgstr "Deinstaliraj sve osim najnovije instalirane verzije" @@ -341,7 +341,7 @@ msgstr "Kernel %s je dostupan" msgid "Show" msgstr "Prikaži" -#: src/Console/AppConsole.vala:288 src/Gtk/MainWindow.vala:299 +#: src/Console/AppConsole.vala:288 src/Gtk/MainWindow.vala:296 msgid "Install" msgstr "Instaliraj" @@ -409,60 +409,60 @@ msgstr "Stanje" msgid "Notes" msgstr "Bilješke" -#: src/Gtk/MainWindow.vala:307 +#: src/Gtk/MainWindow.vala:304 msgid "Uninstall" msgstr "Deinstaliraj" -#: src/Gtk/MainWindow.vala:316 +#: src/Gtk/MainWindow.vala:313 msgid "Changelog, build status, etc" msgstr "" -#: src/Gtk/MainWindow.vala:326 +#: src/Gtk/MainWindow.vala:323 msgid "Uninstall Old" msgstr "Deinstaliraj staro" -#: src/Gtk/MainWindow.vala:332 +#: src/Gtk/MainWindow.vala:329 msgid "Reload" msgstr "Ponovno učitati" -#: src/Gtk/MainWindow.vala:333 +#: src/Gtk/MainWindow.vala:330 msgid "Delete and reload all cached kernel info" msgstr "" -#: src/Gtk/MainWindow.vala:338 src/Gtk/SettingsDialog.vala:49 +#: src/Gtk/MainWindow.vala:335 src/Gtk/SettingsDialog.vala:49 msgid "Settings" msgstr "Postavke" -#: src/Gtk/MainWindow.vala:343 +#: src/Gtk/MainWindow.vala:340 msgid "About" msgstr "O programu" -#: src/Gtk/MainWindow.vala:348 +#: src/Gtk/MainWindow.vala:345 msgid "Exit" msgstr "Izlaz" -#: src/Gtk/MainWindow.vala:414 +#: src/Gtk/MainWindow.vala:411 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Alat za nadogradnju kernela Ubuntu temeljenih distribucija" -#: src/Gtk/MainWindow.vala:415 +#: src/Gtk/MainWindow.vala:412 msgid "Forked" msgstr "Forkano" -#: src/Gtk/MainWindow.vala:415 +#: src/Gtk/MainWindow.vala:412 msgid "Original" msgstr "Izvornik" -#: src/Gtk/MainWindow.vala:444 +#: src/Gtk/MainWindow.vala:441 msgid "Updating kernels" msgstr "Ažuriranje jezgri" -#: src/Gtk/MainWindow.vala:521 +#: src/Gtk/MainWindow.vala:518 msgid "available" msgstr "dostupno" -#: src/Gtk/MainWindow.vala:576 src/Gtk/MainWindow.vala:615 -#: src/Gtk/MainWindow.vala:647 +#: src/Gtk/MainWindow.vala:572 src/Gtk/MainWindow.vala:611 +#: src/Gtk/MainWindow.vala:643 msgid "DONE" msgstr "" diff --git a/po/it.po b/po/it.po index c31a0283..b51d2a5f 100644 --- a/po/it.po +++ b/po/it.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-30 02:25-0400\n" +"POT-Creation-Date: 2023-05-30 10:06-0400\n" "PO-Revision-Date: 2020-08-22 15:35+0100\n" "Last-Translator: Demetrio Mendozzi\n" "Language-Team: Italian\n" @@ -11,184 +11,184 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: src/Common/LinuxKernel.vala:104 +#: src/Common/LinuxKernel.vala:105 msgid "Distribution" msgstr "Distribuzione" -#: src/Common/LinuxKernel.vala:119 +#: src/Common/LinuxKernel.vala:120 msgid "Architecture" msgstr "Architettura" -#: src/Common/LinuxKernel.vala:134 +#: src/Common/LinuxKernel.vala:135 msgid "Running kernel" msgstr "Kernel in esecuzione" -#: src/Common/LinuxKernel.vala:250 +#: src/Common/LinuxKernel.vala:238 msgid "loading cached" msgstr "Caricamento file della cache" -#: src/Common/LinuxKernel.vala:262 +#: src/Common/LinuxKernel.vala:250 msgid "queuing download" msgstr "download in coda" -#: src/Common/LinuxKernel.vala:283 +#: src/Common/LinuxKernel.vala:271 msgid "Fetching individual kernel indexes" msgstr "Recupero dei singoli indici del kernel" -#: src/Common/LinuxKernel.vala:299 +#: src/Common/LinuxKernel.vala:287 msgid "loading downloaded" msgstr "caricamento dei file scaricati" -#: src/Common/LinuxKernel.vala:334 +#: src/Common/LinuxKernel.vala:322 msgid "Updating from" msgstr "Aggiornamento da" -#: src/Common/LinuxKernel.vala:342 +#: src/Common/LinuxKernel.vala:330 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:345 +#: src/Common/LinuxKernel.vala:333 msgid "FAILED" msgstr "FALLITO" -#: src/Common/LinuxKernel.vala:410 +#: src/Common/LinuxKernel.vala:392 msgid "Found installed" msgstr "Trovato installato" -#: src/Common/LinuxKernel.vala:411 +#: src/Common/LinuxKernel.vala:393 msgid "locked" msgstr "" -#: src/Common/LinuxKernel.vala:496 src/Common/LinuxKernel.vala:1024 -#: src/Common/LinuxKernel.vala:1114 +#: src/Common/LinuxKernel.vala:477 src/Common/LinuxKernel.vala:1009 +#: src/Common/LinuxKernel.vala:1098 msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:696 src/Gtk/MainWindow.vala:512 -#: src/Gtk/MainWindow.vala:525 +#: src/Common/LinuxKernel.vala:681 src/Gtk/MainWindow.vala:509 +#: src/Gtk/MainWindow.vala:522 msgid "Running" msgstr "In esecuzione" -#: src/Common/LinuxKernel.vala:697 +#: src/Common/LinuxKernel.vala:682 msgid "Installed" msgstr "Installato" -#: src/Common/LinuxKernel.vala:698 +#: src/Common/LinuxKernel.vala:683 msgid "Invalid" msgstr "Non valido" -#: src/Common/LinuxKernel.vala:783 +#: src/Common/LinuxKernel.vala:768 msgid "Packages Available" msgstr "Pacchetti disponibili" -#: src/Common/LinuxKernel.vala:789 +#: src/Common/LinuxKernel.vala:774 msgid "Packages Installed" msgstr "Pacchetti installati" -#: src/Common/LinuxKernel.vala:814 src/lib/TeeJee.FileSystem.vala:118 +#: src/Common/LinuxKernel.vala:799 src/lib/TeeJee.FileSystem.vala:118 msgid "File not found" msgstr "File non trovato" -#: src/Common/LinuxKernel.vala:908 +#: src/Common/LinuxKernel.vala:893 msgid "Available Kernels" msgstr "Kernel disponibili" -#: src/Common/LinuxKernel.vala:943 src/Gtk/MainWindow.vala:119 +#: src/Common/LinuxKernel.vala:928 src/Gtk/MainWindow.vala:119 msgid "Kernel" msgstr "Kernel" -#: src/Common/LinuxKernel.vala:943 +#: src/Common/LinuxKernel.vala:928 #, fuzzy msgid "not found" msgstr "File non trovato" -#: src/Common/LinuxKernel.vala:950 +#: src/Common/LinuxKernel.vala:935 #, fuzzy msgid "Download: no downloadable kernels specified" msgstr "Comando non specificato" -#: src/Common/LinuxKernel.vala:970 +#: src/Common/LinuxKernel.vala:955 msgid "enabled" msgstr "abilitato" -#: src/Common/LinuxKernel.vala:994 +#: src/Common/LinuxKernel.vala:979 msgid "Downloading" msgstr "Scaricamento" -#: src/Common/LinuxKernel.vala:1019 +#: src/Common/LinuxKernel.vala:1004 msgid "is already installed." msgstr "è già installato." -#: src/Common/LinuxKernel.vala:1029 +#: src/Common/LinuxKernel.vala:1014 msgid "download failed." msgstr "" -#: src/Common/LinuxKernel.vala:1037 +#: src/Common/LinuxKernel.vala:1022 #, fuzzy msgid "Install: no installable kernels secified" msgstr "Comando non specificato" -#: src/Common/LinuxKernel.vala:1049 +#: src/Common/LinuxKernel.vala:1034 msgid "Uninstalling selected kernels" msgstr "Disinstalla i kernel specificati" -#: src/Common/LinuxKernel.vala:1053 +#: src/Common/LinuxKernel.vala:1038 #, fuzzy msgid "Requested" msgstr "richiesto" -#: src/Common/LinuxKernel.vala:1056 +#: src/Common/LinuxKernel.vala:1041 #, fuzzy msgid "Not uninstalling the currently running kernel" msgstr "non disinstallare il kernel attualmente in esecuzione" -#: src/Common/LinuxKernel.vala:1061 +#: src/Common/LinuxKernel.vala:1046 msgid "is locked" msgstr "" -#: src/Common/LinuxKernel.vala:1069 +#: src/Common/LinuxKernel.vala:1054 msgid "found" msgstr "trovato" -#: src/Common/LinuxKernel.vala:1073 +#: src/Common/LinuxKernel.vala:1058 msgid "Uninstall: no uninstallable packages found" msgstr "" -#: src/Common/LinuxKernel.vala:1110 +#: src/Common/LinuxKernel.vala:1094 #, fuzzy msgid "is the highest installed version." msgstr "Disinstallare tutti tranne la versione più recente installata" -#: src/Common/LinuxKernel.vala:1123 +#: src/Common/LinuxKernel.vala:1107 msgid "Could not find running kernel in list" msgstr "Impossibile trovare il kernel in esecuzione nell'elenco" -#: src/Common/LinuxKernel.vala:1128 +#: src/Common/LinuxKernel.vala:1112 msgid "Could not find any kernels to uninstall" msgstr "Impossibile trovare alcun kernel da rimuovere" -#: src/Common/LinuxKernel.vala:1136 +#: src/Common/LinuxKernel.vala:1120 msgid "The following kernels will be uninstalled" msgstr "I seguenti kernel saranno rimossi" -#: src/Common/LinuxKernel.vala:1140 +#: src/Common/LinuxKernel.vala:1124 msgid "Continue ?" msgstr "Continuare ?" -#: src/Common/LinuxKernel.vala:1162 src/Console/AppConsole.vala:234 +#: src/Common/LinuxKernel.vala:1146 src/Console/AppConsole.vala:234 msgid "Latest update" msgstr "Ultimo aggiornamento" -#: src/Common/LinuxKernel.vala:1173 src/Console/AppConsole.vala:241 +#: src/Common/LinuxKernel.vala:1157 src/Console/AppConsole.vala:241 msgid "Latest point update" msgstr "Ultimo aggiornamento del rilascio parziale" -#: src/Common/LinuxKernel.vala:1181 src/Console/AppConsole.vala:246 +#: src/Common/LinuxKernel.vala:1165 src/Console/AppConsole.vala:246 #: src/Console/AppConsole.vala:261 msgid "No updates found" msgstr "Nessun aggiornamento trovato" -#: src/Common/LinuxKernel.vala:1190 +#: src/Common/LinuxKernel.vala:1174 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Installare la versione del kernel %s ? (y/n): " @@ -263,7 +263,7 @@ msgstr "Disinstalla i kernel specificati" msgid "Uninstall specified kernels" msgstr "Disinstalla i kernel specificati" -#: src/Console/AppConsole.vala:55 src/Gtk/MainWindow.vala:327 +#: src/Console/AppConsole.vala:55 src/Gtk/MainWindow.vala:324 msgid "Uninstall all but the highest installed version" msgstr "Disinstallare tutti tranne la versione più recente installata" @@ -342,7 +342,7 @@ msgstr "Kernel %s Disponibile" msgid "Show" msgstr "Mostra" -#: src/Console/AppConsole.vala:288 src/Gtk/MainWindow.vala:299 +#: src/Console/AppConsole.vala:288 src/Gtk/MainWindow.vala:296 msgid "Install" msgstr "Installa" @@ -410,60 +410,60 @@ msgstr "Stato" msgid "Notes" msgstr "Note" -#: src/Gtk/MainWindow.vala:307 +#: src/Gtk/MainWindow.vala:304 msgid "Uninstall" msgstr "Disinstalla" -#: src/Gtk/MainWindow.vala:316 +#: src/Gtk/MainWindow.vala:313 msgid "Changelog, build status, etc" msgstr "" -#: src/Gtk/MainWindow.vala:326 +#: src/Gtk/MainWindow.vala:323 msgid "Uninstall Old" msgstr "Disinstalla i vecchi" -#: src/Gtk/MainWindow.vala:332 +#: src/Gtk/MainWindow.vala:329 msgid "Reload" msgstr "Ricarica" -#: src/Gtk/MainWindow.vala:333 +#: src/Gtk/MainWindow.vala:330 msgid "Delete and reload all cached kernel info" msgstr "" -#: src/Gtk/MainWindow.vala:338 src/Gtk/SettingsDialog.vala:49 +#: src/Gtk/MainWindow.vala:335 src/Gtk/SettingsDialog.vala:49 msgid "Settings" msgstr "Impostazioni" -#: src/Gtk/MainWindow.vala:343 +#: src/Gtk/MainWindow.vala:340 msgid "About" msgstr "Informazioni" -#: src/Gtk/MainWindow.vala:348 +#: src/Gtk/MainWindow.vala:345 msgid "Exit" msgstr "Chiudi" -#: src/Gtk/MainWindow.vala:414 +#: src/Gtk/MainWindow.vala:411 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Utilità di aggiornamento del kernel per distribuzioni basate su Ubuntu" -#: src/Gtk/MainWindow.vala:415 +#: src/Gtk/MainWindow.vala:412 msgid "Forked" msgstr "Forked" -#: src/Gtk/MainWindow.vala:415 +#: src/Gtk/MainWindow.vala:412 msgid "Original" msgstr "Originale" -#: src/Gtk/MainWindow.vala:444 +#: src/Gtk/MainWindow.vala:441 msgid "Updating kernels" msgstr "Aggiornamento dei kernel" -#: src/Gtk/MainWindow.vala:521 +#: src/Gtk/MainWindow.vala:518 msgid "available" msgstr "disponibile" -#: src/Gtk/MainWindow.vala:576 src/Gtk/MainWindow.vala:615 -#: src/Gtk/MainWindow.vala:647 +#: src/Gtk/MainWindow.vala:572 src/Gtk/MainWindow.vala:611 +#: src/Gtk/MainWindow.vala:643 msgid "DONE" msgstr "" diff --git a/po/ko.po b/po/ko.po index b15a9126..616e7879 100644 --- a/po/ko.po +++ b/po/ko.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-30 02:25-0400\n" +"POT-Creation-Date: 2023-05-30 10:06-0400\n" "PO-Revision-Date: 2022-09-28 11:48+0900\n" "Last-Translator: Kevin Kim \n" "Language-Team: Korean\n" @@ -13,184 +13,184 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Poedit 3.0.1\n" -#: src/Common/LinuxKernel.vala:104 +#: src/Common/LinuxKernel.vala:105 msgid "Distribution" msgstr "배포판" -#: src/Common/LinuxKernel.vala:119 +#: src/Common/LinuxKernel.vala:120 msgid "Architecture" msgstr "아키텍처" -#: src/Common/LinuxKernel.vala:134 +#: src/Common/LinuxKernel.vala:135 msgid "Running kernel" msgstr "현재 실행 중인 커널" -#: src/Common/LinuxKernel.vala:250 +#: src/Common/LinuxKernel.vala:238 msgid "loading cached" msgstr "캐시된 로드 중" -#: src/Common/LinuxKernel.vala:262 +#: src/Common/LinuxKernel.vala:250 msgid "queuing download" msgstr "대기열 다운로드" -#: src/Common/LinuxKernel.vala:283 +#: src/Common/LinuxKernel.vala:271 msgid "Fetching individual kernel indexes" msgstr "개별 커널 인덱스 페치" -#: src/Common/LinuxKernel.vala:299 +#: src/Common/LinuxKernel.vala:287 msgid "loading downloaded" msgstr "다운로드 로드 중" -#: src/Common/LinuxKernel.vala:334 +#: src/Common/LinuxKernel.vala:322 msgid "Updating from" msgstr "다음에서 업데이트" -#: src/Common/LinuxKernel.vala:342 +#: src/Common/LinuxKernel.vala:330 msgid "OK" msgstr "확인" -#: src/Common/LinuxKernel.vala:345 +#: src/Common/LinuxKernel.vala:333 msgid "FAILED" msgstr "실패" -#: src/Common/LinuxKernel.vala:410 +#: src/Common/LinuxKernel.vala:392 msgid "Found installed" msgstr "설치된 것을 찾았습니다" -#: src/Common/LinuxKernel.vala:411 +#: src/Common/LinuxKernel.vala:393 msgid "locked" msgstr "" -#: src/Common/LinuxKernel.vala:496 src/Common/LinuxKernel.vala:1024 -#: src/Common/LinuxKernel.vala:1114 +#: src/Common/LinuxKernel.vala:477 src/Common/LinuxKernel.vala:1009 +#: src/Common/LinuxKernel.vala:1098 msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:696 src/Gtk/MainWindow.vala:512 -#: src/Gtk/MainWindow.vala:525 +#: src/Common/LinuxKernel.vala:681 src/Gtk/MainWindow.vala:509 +#: src/Gtk/MainWindow.vala:522 msgid "Running" msgstr "구동 중" -#: src/Common/LinuxKernel.vala:697 +#: src/Common/LinuxKernel.vala:682 msgid "Installed" msgstr "설치 됨" -#: src/Common/LinuxKernel.vala:698 +#: src/Common/LinuxKernel.vala:683 msgid "Invalid" msgstr "사용할 수 없음" -#: src/Common/LinuxKernel.vala:783 +#: src/Common/LinuxKernel.vala:768 msgid "Packages Available" msgstr "설치 가능한 패키지" -#: src/Common/LinuxKernel.vala:789 +#: src/Common/LinuxKernel.vala:774 msgid "Packages Installed" msgstr "설치된 패키지" -#: src/Common/LinuxKernel.vala:814 src/lib/TeeJee.FileSystem.vala:118 +#: src/Common/LinuxKernel.vala:799 src/lib/TeeJee.FileSystem.vala:118 msgid "File not found" msgstr "파일을 찾을 수 없습니다" -#: src/Common/LinuxKernel.vala:908 +#: src/Common/LinuxKernel.vala:893 msgid "Available Kernels" msgstr "설치 가능한 커널" -#: src/Common/LinuxKernel.vala:943 src/Gtk/MainWindow.vala:119 +#: src/Common/LinuxKernel.vala:928 src/Gtk/MainWindow.vala:119 msgid "Kernel" msgstr "커널" -#: src/Common/LinuxKernel.vala:943 +#: src/Common/LinuxKernel.vala:928 #, fuzzy msgid "not found" msgstr "파일을 찾을 수 없습니다" -#: src/Common/LinuxKernel.vala:950 +#: src/Common/LinuxKernel.vala:935 #, fuzzy msgid "Download: no downloadable kernels specified" msgstr "지정한 명령어가 없습니다" -#: src/Common/LinuxKernel.vala:970 +#: src/Common/LinuxKernel.vala:955 msgid "enabled" msgstr "사용" -#: src/Common/LinuxKernel.vala:994 +#: src/Common/LinuxKernel.vala:979 msgid "Downloading" msgstr "다운로드" -#: src/Common/LinuxKernel.vala:1019 +#: src/Common/LinuxKernel.vala:1004 msgid "is already installed." msgstr "가 이미 설치되어 있습니다" -#: src/Common/LinuxKernel.vala:1029 +#: src/Common/LinuxKernel.vala:1014 msgid "download failed." msgstr "" -#: src/Common/LinuxKernel.vala:1037 +#: src/Common/LinuxKernel.vala:1022 #, fuzzy msgid "Install: no installable kernels secified" msgstr "지정한 명령어가 없습니다" -#: src/Common/LinuxKernel.vala:1049 +#: src/Common/LinuxKernel.vala:1034 msgid "Uninstalling selected kernels" msgstr "선택한 커널 제거" -#: src/Common/LinuxKernel.vala:1053 +#: src/Common/LinuxKernel.vala:1038 #, fuzzy msgid "Requested" msgstr "요청" -#: src/Common/LinuxKernel.vala:1056 +#: src/Common/LinuxKernel.vala:1041 #, fuzzy msgid "Not uninstalling the currently running kernel" msgstr "현재 실행 중인 커널을 제거하지 않음" -#: src/Common/LinuxKernel.vala:1061 +#: src/Common/LinuxKernel.vala:1046 msgid "is locked" msgstr "" -#: src/Common/LinuxKernel.vala:1069 +#: src/Common/LinuxKernel.vala:1054 msgid "found" msgstr "설립하다" -#: src/Common/LinuxKernel.vala:1073 +#: src/Common/LinuxKernel.vala:1058 msgid "Uninstall: no uninstallable packages found" msgstr "" -#: src/Common/LinuxKernel.vala:1110 +#: src/Common/LinuxKernel.vala:1094 #, fuzzy msgid "is the highest installed version." msgstr "설치된 가장 높은 버전을 제외한 모든 버전을 제거합니다" -#: src/Common/LinuxKernel.vala:1123 +#: src/Common/LinuxKernel.vala:1107 msgid "Could not find running kernel in list" msgstr "현재 실행 중인 커널을 찾을 수 없습니다" -#: src/Common/LinuxKernel.vala:1128 +#: src/Common/LinuxKernel.vala:1112 msgid "Could not find any kernels to uninstall" msgstr "삭제할 커널을 찾을 수 없습니다" -#: src/Common/LinuxKernel.vala:1136 +#: src/Common/LinuxKernel.vala:1120 msgid "The following kernels will be uninstalled" msgstr "풀이" -#: src/Common/LinuxKernel.vala:1140 +#: src/Common/LinuxKernel.vala:1124 msgid "Continue ?" msgstr "계속하시겠습니까?" -#: src/Common/LinuxKernel.vala:1162 src/Console/AppConsole.vala:234 +#: src/Common/LinuxKernel.vala:1146 src/Console/AppConsole.vala:234 msgid "Latest update" msgstr "최신 업데이트" -#: src/Common/LinuxKernel.vala:1173 src/Console/AppConsole.vala:241 +#: src/Common/LinuxKernel.vala:1157 src/Console/AppConsole.vala:241 msgid "Latest point update" msgstr "최신 포인트 업데이트" -#: src/Common/LinuxKernel.vala:1181 src/Console/AppConsole.vala:246 +#: src/Common/LinuxKernel.vala:1165 src/Console/AppConsole.vala:246 #: src/Console/AppConsole.vala:261 msgid "No updates found" msgstr "업데이트를 찾을 수 없습니다" -#: src/Common/LinuxKernel.vala:1190 +#: src/Common/LinuxKernel.vala:1174 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "커널 %s 버전을 설치하시겠습니까? (y/n): " @@ -261,7 +261,7 @@ msgstr "지정한 커널 삭제" msgid "Uninstall specified kernels" msgstr "지정한 커널 삭제" -#: src/Console/AppConsole.vala:55 src/Gtk/MainWindow.vala:327 +#: src/Console/AppConsole.vala:55 src/Gtk/MainWindow.vala:324 msgid "Uninstall all but the highest installed version" msgstr "설치된 가장 높은 버전을 제외한 모든 버전을 제거합니다" @@ -340,7 +340,7 @@ msgstr "커널 %s 사용 가능" msgid "Show" msgstr "보이기" -#: src/Console/AppConsole.vala:288 src/Gtk/MainWindow.vala:299 +#: src/Console/AppConsole.vala:288 src/Gtk/MainWindow.vala:296 msgid "Install" msgstr "설치" @@ -408,60 +408,60 @@ msgstr "상태" msgid "Notes" msgstr "노트" -#: src/Gtk/MainWindow.vala:307 +#: src/Gtk/MainWindow.vala:304 msgid "Uninstall" msgstr "삭제" -#: src/Gtk/MainWindow.vala:316 +#: src/Gtk/MainWindow.vala:313 msgid "Changelog, build status, etc" msgstr "" -#: src/Gtk/MainWindow.vala:326 +#: src/Gtk/MainWindow.vala:323 msgid "Uninstall Old" msgstr "오래된 커널 제거" -#: src/Gtk/MainWindow.vala:332 +#: src/Gtk/MainWindow.vala:329 msgid "Reload" msgstr "새로고침" -#: src/Gtk/MainWindow.vala:333 +#: src/Gtk/MainWindow.vala:330 msgid "Delete and reload all cached kernel info" msgstr "" -#: src/Gtk/MainWindow.vala:338 src/Gtk/SettingsDialog.vala:49 +#: src/Gtk/MainWindow.vala:335 src/Gtk/SettingsDialog.vala:49 msgid "Settings" msgstr "설정" -#: src/Gtk/MainWindow.vala:343 +#: src/Gtk/MainWindow.vala:340 msgid "About" msgstr "정보" -#: src/Gtk/MainWindow.vala:348 +#: src/Gtk/MainWindow.vala:345 msgid "Exit" msgstr "출구" -#: src/Gtk/MainWindow.vala:414 +#: src/Gtk/MainWindow.vala:411 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "우분투 기반 배포판의 커널 업그레이드 도구" -#: src/Gtk/MainWindow.vala:415 +#: src/Gtk/MainWindow.vala:412 msgid "Forked" msgstr "가랑이진" -#: src/Gtk/MainWindow.vala:415 +#: src/Gtk/MainWindow.vala:412 msgid "Original" msgstr "원문 언어" -#: src/Gtk/MainWindow.vala:444 +#: src/Gtk/MainWindow.vala:441 msgid "Updating kernels" msgstr "커널 업데이트" -#: src/Gtk/MainWindow.vala:521 +#: src/Gtk/MainWindow.vala:518 msgid "available" msgstr "사용가능" -#: src/Gtk/MainWindow.vala:576 src/Gtk/MainWindow.vala:615 -#: src/Gtk/MainWindow.vala:647 +#: src/Gtk/MainWindow.vala:572 src/Gtk/MainWindow.vala:611 +#: src/Gtk/MainWindow.vala:643 msgid "DONE" msgstr "" diff --git a/po/messages.pot b/po/messages.pot index a323c0ff..b803a083 100644 --- a/po/messages.pot +++ b/po/messages.pot @@ -6,9 +6,9 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: mainline 1.3.3\n" +"Project-Id-Version: mainline 1.3.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-30 02:25-0400\n" +"POT-Creation-Date: 2023-05-30 10:06-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,178 +17,178 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" -#: src/Common/LinuxKernel.vala:104 +#: src/Common/LinuxKernel.vala:105 msgid "Distribution" msgstr "" -#: src/Common/LinuxKernel.vala:119 +#: src/Common/LinuxKernel.vala:120 msgid "Architecture" msgstr "" -#: src/Common/LinuxKernel.vala:134 +#: src/Common/LinuxKernel.vala:135 msgid "Running kernel" msgstr "" -#: src/Common/LinuxKernel.vala:250 +#: src/Common/LinuxKernel.vala:238 msgid "loading cached" msgstr "" -#: src/Common/LinuxKernel.vala:262 +#: src/Common/LinuxKernel.vala:250 msgid "queuing download" msgstr "" -#: src/Common/LinuxKernel.vala:283 +#: src/Common/LinuxKernel.vala:271 msgid "Fetching individual kernel indexes" msgstr "" -#: src/Common/LinuxKernel.vala:299 +#: src/Common/LinuxKernel.vala:287 msgid "loading downloaded" msgstr "" -#: src/Common/LinuxKernel.vala:334 +#: src/Common/LinuxKernel.vala:322 msgid "Updating from" msgstr "" -#: src/Common/LinuxKernel.vala:342 +#: src/Common/LinuxKernel.vala:330 msgid "OK" msgstr "" -#: src/Common/LinuxKernel.vala:345 +#: src/Common/LinuxKernel.vala:333 msgid "FAILED" msgstr "" -#: src/Common/LinuxKernel.vala:410 +#: src/Common/LinuxKernel.vala:392 msgid "Found installed" msgstr "" -#: src/Common/LinuxKernel.vala:411 +#: src/Common/LinuxKernel.vala:393 msgid "locked" msgstr "" -#: src/Common/LinuxKernel.vala:496 src/Common/LinuxKernel.vala:1024 -#: src/Common/LinuxKernel.vala:1114 +#: src/Common/LinuxKernel.vala:477 src/Common/LinuxKernel.vala:1009 +#: src/Common/LinuxKernel.vala:1098 msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:696 src/Gtk/MainWindow.vala:512 -#: src/Gtk/MainWindow.vala:525 +#: src/Common/LinuxKernel.vala:681 src/Gtk/MainWindow.vala:509 +#: src/Gtk/MainWindow.vala:522 msgid "Running" msgstr "" -#: src/Common/LinuxKernel.vala:697 +#: src/Common/LinuxKernel.vala:682 msgid "Installed" msgstr "" -#: src/Common/LinuxKernel.vala:698 +#: src/Common/LinuxKernel.vala:683 msgid "Invalid" msgstr "" -#: src/Common/LinuxKernel.vala:783 +#: src/Common/LinuxKernel.vala:768 msgid "Packages Available" msgstr "" -#: src/Common/LinuxKernel.vala:789 +#: src/Common/LinuxKernel.vala:774 msgid "Packages Installed" msgstr "" -#: src/Common/LinuxKernel.vala:814 src/lib/TeeJee.FileSystem.vala:118 +#: src/Common/LinuxKernel.vala:799 src/lib/TeeJee.FileSystem.vala:118 msgid "File not found" msgstr "" -#: src/Common/LinuxKernel.vala:908 +#: src/Common/LinuxKernel.vala:893 msgid "Available Kernels" msgstr "" -#: src/Common/LinuxKernel.vala:943 src/Gtk/MainWindow.vala:119 +#: src/Common/LinuxKernel.vala:928 src/Gtk/MainWindow.vala:119 msgid "Kernel" msgstr "" -#: src/Common/LinuxKernel.vala:943 +#: src/Common/LinuxKernel.vala:928 msgid "not found" msgstr "" -#: src/Common/LinuxKernel.vala:950 +#: src/Common/LinuxKernel.vala:935 msgid "Download: no downloadable kernels specified" msgstr "" -#: src/Common/LinuxKernel.vala:970 +#: src/Common/LinuxKernel.vala:955 msgid "enabled" msgstr "" -#: src/Common/LinuxKernel.vala:994 +#: src/Common/LinuxKernel.vala:979 msgid "Downloading" msgstr "" -#: src/Common/LinuxKernel.vala:1019 +#: src/Common/LinuxKernel.vala:1004 msgid "is already installed." msgstr "" -#: src/Common/LinuxKernel.vala:1029 +#: src/Common/LinuxKernel.vala:1014 msgid "download failed." msgstr "" -#: src/Common/LinuxKernel.vala:1037 +#: src/Common/LinuxKernel.vala:1022 msgid "Install: no installable kernels secified" msgstr "" -#: src/Common/LinuxKernel.vala:1049 +#: src/Common/LinuxKernel.vala:1034 msgid "Uninstalling selected kernels" msgstr "" -#: src/Common/LinuxKernel.vala:1053 +#: src/Common/LinuxKernel.vala:1038 msgid "Requested" msgstr "" -#: src/Common/LinuxKernel.vala:1056 +#: src/Common/LinuxKernel.vala:1041 msgid "Not uninstalling the currently running kernel" msgstr "" -#: src/Common/LinuxKernel.vala:1061 +#: src/Common/LinuxKernel.vala:1046 msgid "is locked" msgstr "" -#: src/Common/LinuxKernel.vala:1069 +#: src/Common/LinuxKernel.vala:1054 msgid "found" msgstr "" -#: src/Common/LinuxKernel.vala:1073 +#: src/Common/LinuxKernel.vala:1058 msgid "Uninstall: no uninstallable packages found" msgstr "" -#: src/Common/LinuxKernel.vala:1110 +#: src/Common/LinuxKernel.vala:1094 msgid "is the highest installed version." msgstr "" -#: src/Common/LinuxKernel.vala:1123 +#: src/Common/LinuxKernel.vala:1107 msgid "Could not find running kernel in list" msgstr "" -#: src/Common/LinuxKernel.vala:1128 +#: src/Common/LinuxKernel.vala:1112 msgid "Could not find any kernels to uninstall" msgstr "" -#: src/Common/LinuxKernel.vala:1136 +#: src/Common/LinuxKernel.vala:1120 msgid "The following kernels will be uninstalled" msgstr "" -#: src/Common/LinuxKernel.vala:1140 +#: src/Common/LinuxKernel.vala:1124 msgid "Continue ?" msgstr "" -#: src/Common/LinuxKernel.vala:1162 src/Console/AppConsole.vala:234 +#: src/Common/LinuxKernel.vala:1146 src/Console/AppConsole.vala:234 msgid "Latest update" msgstr "" -#: src/Common/LinuxKernel.vala:1173 src/Console/AppConsole.vala:241 +#: src/Common/LinuxKernel.vala:1157 src/Console/AppConsole.vala:241 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:1181 src/Console/AppConsole.vala:246 +#: src/Common/LinuxKernel.vala:1165 src/Console/AppConsole.vala:246 #: src/Console/AppConsole.vala:261 msgid "No updates found" msgstr "" -#: src/Common/LinuxKernel.vala:1190 +#: src/Common/LinuxKernel.vala:1174 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "" @@ -255,7 +255,7 @@ msgstr "" msgid "Uninstall specified kernels" msgstr "" -#: src/Console/AppConsole.vala:55 src/Gtk/MainWindow.vala:327 +#: src/Console/AppConsole.vala:55 src/Gtk/MainWindow.vala:324 msgid "Uninstall all but the highest installed version" msgstr "" @@ -332,7 +332,7 @@ msgstr "" msgid "Show" msgstr "" -#: src/Console/AppConsole.vala:288 src/Gtk/MainWindow.vala:299 +#: src/Console/AppConsole.vala:288 src/Gtk/MainWindow.vala:296 msgid "Install" msgstr "" @@ -400,60 +400,60 @@ msgstr "" msgid "Notes" msgstr "" -#: src/Gtk/MainWindow.vala:307 +#: src/Gtk/MainWindow.vala:304 msgid "Uninstall" msgstr "" -#: src/Gtk/MainWindow.vala:316 +#: src/Gtk/MainWindow.vala:313 msgid "Changelog, build status, etc" msgstr "" -#: src/Gtk/MainWindow.vala:326 +#: src/Gtk/MainWindow.vala:323 msgid "Uninstall Old" msgstr "" -#: src/Gtk/MainWindow.vala:332 +#: src/Gtk/MainWindow.vala:329 msgid "Reload" msgstr "" -#: src/Gtk/MainWindow.vala:333 +#: src/Gtk/MainWindow.vala:330 msgid "Delete and reload all cached kernel info" msgstr "" -#: src/Gtk/MainWindow.vala:338 src/Gtk/SettingsDialog.vala:49 +#: src/Gtk/MainWindow.vala:335 src/Gtk/SettingsDialog.vala:49 msgid "Settings" msgstr "" -#: src/Gtk/MainWindow.vala:343 +#: src/Gtk/MainWindow.vala:340 msgid "About" msgstr "" -#: src/Gtk/MainWindow.vala:348 +#: src/Gtk/MainWindow.vala:345 msgid "Exit" msgstr "" -#: src/Gtk/MainWindow.vala:414 +#: src/Gtk/MainWindow.vala:411 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "" -#: src/Gtk/MainWindow.vala:415 +#: src/Gtk/MainWindow.vala:412 msgid "Forked" msgstr "" -#: src/Gtk/MainWindow.vala:415 +#: src/Gtk/MainWindow.vala:412 msgid "Original" msgstr "" -#: src/Gtk/MainWindow.vala:444 +#: src/Gtk/MainWindow.vala:441 msgid "Updating kernels" msgstr "" -#: src/Gtk/MainWindow.vala:521 +#: src/Gtk/MainWindow.vala:518 msgid "available" msgstr "" -#: src/Gtk/MainWindow.vala:576 src/Gtk/MainWindow.vala:615 -#: src/Gtk/MainWindow.vala:647 +#: src/Gtk/MainWindow.vala:572 src/Gtk/MainWindow.vala:611 +#: src/Gtk/MainWindow.vala:643 msgid "DONE" msgstr "" diff --git a/po/nl.po b/po/nl.po index dcc0942b..f1bac291 100644 --- a/po/nl.po +++ b/po/nl.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-30 02:25-0400\n" +"POT-Creation-Date: 2023-05-30 10:06-0400\n" "PO-Revision-Date: 2020-08-23 13:55+0200\n" "Last-Translator: Heimen Stoffels \n" "Language-Team: Dutch (Netherlands)\n" @@ -13,184 +13,184 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Poedit 3.2.2\n" -#: src/Common/LinuxKernel.vala:104 +#: src/Common/LinuxKernel.vala:105 msgid "Distribution" msgstr "Distributie" -#: src/Common/LinuxKernel.vala:119 +#: src/Common/LinuxKernel.vala:120 msgid "Architecture" msgstr "Architectuur" -#: src/Common/LinuxKernel.vala:134 +#: src/Common/LinuxKernel.vala:135 msgid "Running kernel" msgstr "Kernel uitvoeren" -#: src/Common/LinuxKernel.vala:250 +#: src/Common/LinuxKernel.vala:238 msgid "loading cached" msgstr "laden in cache" -#: src/Common/LinuxKernel.vala:262 +#: src/Common/LinuxKernel.vala:250 msgid "queuing download" msgstr "wachtrijen downloaden" -#: src/Common/LinuxKernel.vala:283 +#: src/Common/LinuxKernel.vala:271 msgid "Fetching individual kernel indexes" msgstr "Afzonderlijke kernelindexen ophalen" -#: src/Common/LinuxKernel.vala:299 +#: src/Common/LinuxKernel.vala:287 msgid "loading downloaded" msgstr "laden gedownload" -#: src/Common/LinuxKernel.vala:334 +#: src/Common/LinuxKernel.vala:322 msgid "Updating from" msgstr "Bijwerken van" -#: src/Common/LinuxKernel.vala:342 +#: src/Common/LinuxKernel.vala:330 msgid "OK" msgstr "Oké" -#: src/Common/LinuxKernel.vala:345 +#: src/Common/LinuxKernel.vala:333 msgid "FAILED" msgstr "MISLUKT" -#: src/Common/LinuxKernel.vala:410 +#: src/Common/LinuxKernel.vala:392 msgid "Found installed" msgstr "Geïnstalleerd gevonden" -#: src/Common/LinuxKernel.vala:411 +#: src/Common/LinuxKernel.vala:393 msgid "locked" msgstr "" -#: src/Common/LinuxKernel.vala:496 src/Common/LinuxKernel.vala:1024 -#: src/Common/LinuxKernel.vala:1114 +#: src/Common/LinuxKernel.vala:477 src/Common/LinuxKernel.vala:1009 +#: src/Common/LinuxKernel.vala:1098 msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:696 src/Gtk/MainWindow.vala:512 -#: src/Gtk/MainWindow.vala:525 +#: src/Common/LinuxKernel.vala:681 src/Gtk/MainWindow.vala:509 +#: src/Gtk/MainWindow.vala:522 msgid "Running" msgstr "In gebruik" -#: src/Common/LinuxKernel.vala:697 +#: src/Common/LinuxKernel.vala:682 msgid "Installed" msgstr "Geïnstalleerd" -#: src/Common/LinuxKernel.vala:698 +#: src/Common/LinuxKernel.vala:683 msgid "Invalid" msgstr "Ongeldig" -#: src/Common/LinuxKernel.vala:783 +#: src/Common/LinuxKernel.vala:768 msgid "Packages Available" msgstr "Beschikbare pakketten" -#: src/Common/LinuxKernel.vala:789 +#: src/Common/LinuxKernel.vala:774 msgid "Packages Installed" msgstr "Geïnstalleerde pakketten" -#: src/Common/LinuxKernel.vala:814 src/lib/TeeJee.FileSystem.vala:118 +#: src/Common/LinuxKernel.vala:799 src/lib/TeeJee.FileSystem.vala:118 msgid "File not found" msgstr "Het bestand is niet gevonden" -#: src/Common/LinuxKernel.vala:908 +#: src/Common/LinuxKernel.vala:893 msgid "Available Kernels" msgstr "Beschikbare kernels" -#: src/Common/LinuxKernel.vala:943 src/Gtk/MainWindow.vala:119 +#: src/Common/LinuxKernel.vala:928 src/Gtk/MainWindow.vala:119 msgid "Kernel" msgstr "Kernel" -#: src/Common/LinuxKernel.vala:943 +#: src/Common/LinuxKernel.vala:928 #, fuzzy msgid "not found" msgstr "Het bestand is niet gevonden" -#: src/Common/LinuxKernel.vala:950 +#: src/Common/LinuxKernel.vala:935 #, fuzzy msgid "Download: no downloadable kernels specified" msgstr "Geen opdracht opgegeven" -#: src/Common/LinuxKernel.vala:970 +#: src/Common/LinuxKernel.vala:955 msgid "enabled" msgstr "ingeschakeld" -#: src/Common/LinuxKernel.vala:994 +#: src/Common/LinuxKernel.vala:979 msgid "Downloading" msgstr "Downloaden" -#: src/Common/LinuxKernel.vala:1019 +#: src/Common/LinuxKernel.vala:1004 msgid "is already installed." msgstr "is al geïnstalleerd." -#: src/Common/LinuxKernel.vala:1029 +#: src/Common/LinuxKernel.vala:1014 msgid "download failed." msgstr "" -#: src/Common/LinuxKernel.vala:1037 +#: src/Common/LinuxKernel.vala:1022 #, fuzzy msgid "Install: no installable kernels secified" msgstr "Geen opdracht opgegeven" -#: src/Common/LinuxKernel.vala:1049 +#: src/Common/LinuxKernel.vala:1034 msgid "Uninstalling selected kernels" msgstr "Geselecteerde kernels verwijderen" -#: src/Common/LinuxKernel.vala:1053 +#: src/Common/LinuxKernel.vala:1038 #, fuzzy msgid "Requested" msgstr "verzocht" -#: src/Common/LinuxKernel.vala:1056 +#: src/Common/LinuxKernel.vala:1041 #, fuzzy msgid "Not uninstalling the currently running kernel" msgstr "de momenteel actieve kernel niet verwijderen" -#: src/Common/LinuxKernel.vala:1061 +#: src/Common/LinuxKernel.vala:1046 msgid "is locked" msgstr "" -#: src/Common/LinuxKernel.vala:1069 +#: src/Common/LinuxKernel.vala:1054 msgid "found" msgstr "gevonden" -#: src/Common/LinuxKernel.vala:1073 +#: src/Common/LinuxKernel.vala:1058 msgid "Uninstall: no uninstallable packages found" msgstr "" -#: src/Common/LinuxKernel.vala:1110 +#: src/Common/LinuxKernel.vala:1094 #, fuzzy msgid "is the highest installed version." msgstr "Verwijder alle behalve de hoogst geïnstalleerde versie" -#: src/Common/LinuxKernel.vala:1123 +#: src/Common/LinuxKernel.vala:1107 msgid "Could not find running kernel in list" msgstr "De in gebruik zijnde kernel staat niet op de lijst" -#: src/Common/LinuxKernel.vala:1128 +#: src/Common/LinuxKernel.vala:1112 msgid "Could not find any kernels to uninstall" msgstr "Er zijn geen te verwijderen kernels" -#: src/Common/LinuxKernel.vala:1136 +#: src/Common/LinuxKernel.vala:1120 msgid "The following kernels will be uninstalled" msgstr "De volgende kernels worden verwijderd" -#: src/Common/LinuxKernel.vala:1140 +#: src/Common/LinuxKernel.vala:1124 msgid "Continue ?" msgstr "Wilt u doorgaan?" -#: src/Common/LinuxKernel.vala:1162 src/Console/AppConsole.vala:234 +#: src/Common/LinuxKernel.vala:1146 src/Console/AppConsole.vala:234 msgid "Latest update" msgstr "Recentste update" -#: src/Common/LinuxKernel.vala:1173 src/Console/AppConsole.vala:241 +#: src/Common/LinuxKernel.vala:1157 src/Console/AppConsole.vala:241 msgid "Latest point update" msgstr "Recentste puntupdate" -#: src/Common/LinuxKernel.vala:1181 src/Console/AppConsole.vala:246 +#: src/Common/LinuxKernel.vala:1165 src/Console/AppConsole.vala:246 #: src/Console/AppConsole.vala:261 msgid "No updates found" msgstr "Geen updates gevonden" -#: src/Common/LinuxKernel.vala:1190 +#: src/Common/LinuxKernel.vala:1174 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Wilt u versie %s installeren? (j/n): " @@ -263,7 +263,7 @@ msgstr "Opgegeven kernel verwijderen" msgid "Uninstall specified kernels" msgstr "Opgegeven kernel verwijderen" -#: src/Console/AppConsole.vala:55 src/Gtk/MainWindow.vala:327 +#: src/Console/AppConsole.vala:55 src/Gtk/MainWindow.vala:324 msgid "Uninstall all but the highest installed version" msgstr "Verwijder alle behalve de hoogst geïnstalleerde versie" @@ -342,7 +342,7 @@ msgstr "Kernel %s is beschikbaar" msgid "Show" msgstr "Tonen" -#: src/Console/AppConsole.vala:288 src/Gtk/MainWindow.vala:299 +#: src/Console/AppConsole.vala:288 src/Gtk/MainWindow.vala:296 msgid "Install" msgstr "Installeren" @@ -410,60 +410,60 @@ msgstr "Status" msgid "Notes" msgstr "Notities" -#: src/Gtk/MainWindow.vala:307 +#: src/Gtk/MainWindow.vala:304 msgid "Uninstall" msgstr "Deïnstalleren" -#: src/Gtk/MainWindow.vala:316 +#: src/Gtk/MainWindow.vala:313 msgid "Changelog, build status, etc" msgstr "" -#: src/Gtk/MainWindow.vala:326 +#: src/Gtk/MainWindow.vala:323 msgid "Uninstall Old" msgstr "Verwijder Oude" -#: src/Gtk/MainWindow.vala:332 +#: src/Gtk/MainWindow.vala:329 msgid "Reload" msgstr "Herladen" -#: src/Gtk/MainWindow.vala:333 +#: src/Gtk/MainWindow.vala:330 msgid "Delete and reload all cached kernel info" msgstr "" -#: src/Gtk/MainWindow.vala:338 src/Gtk/SettingsDialog.vala:49 +#: src/Gtk/MainWindow.vala:335 src/Gtk/SettingsDialog.vala:49 msgid "Settings" msgstr "Instellingen" -#: src/Gtk/MainWindow.vala:343 +#: src/Gtk/MainWindow.vala:340 msgid "About" msgstr "Over" -#: src/Gtk/MainWindow.vala:348 +#: src/Gtk/MainWindow.vala:345 msgid "Exit" msgstr "Afsluiten" -#: src/Gtk/MainWindow.vala:414 +#: src/Gtk/MainWindow.vala:411 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Een kernelupgradehulpmiddel voor op Ubuntu gebaseerde distributies" -#: src/Gtk/MainWindow.vala:415 +#: src/Gtk/MainWindow.vala:412 msgid "Forked" msgstr "Geforkt" -#: src/Gtk/MainWindow.vala:415 +#: src/Gtk/MainWindow.vala:412 msgid "Original" msgstr "Origineel" -#: src/Gtk/MainWindow.vala:444 +#: src/Gtk/MainWindow.vala:441 msgid "Updating kernels" msgstr "Kernels bijwerken" -#: src/Gtk/MainWindow.vala:521 +#: src/Gtk/MainWindow.vala:518 msgid "available" msgstr "beschikbaar" -#: src/Gtk/MainWindow.vala:576 src/Gtk/MainWindow.vala:615 -#: src/Gtk/MainWindow.vala:647 +#: src/Gtk/MainWindow.vala:572 src/Gtk/MainWindow.vala:611 +#: src/Gtk/MainWindow.vala:643 msgid "DONE" msgstr "" diff --git a/po/pl.po b/po/pl.po index 724d7361..eb9b10b4 100644 --- a/po/pl.po +++ b/po/pl.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-30 02:25-0400\n" +"POT-Creation-Date: 2023-05-30 10:06-0400\n" "PO-Revision-Date: 2023-05-25 13:37+0200\n" "Last-Translator: Matthaiks\n" "Language-Team: Polish\n" @@ -12,184 +12,184 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Poedit 3.3.1\n" -#: src/Common/LinuxKernel.vala:104 +#: src/Common/LinuxKernel.vala:105 msgid "Distribution" msgstr "Dystrybucja" -#: src/Common/LinuxKernel.vala:119 +#: src/Common/LinuxKernel.vala:120 msgid "Architecture" msgstr "Architektura" -#: src/Common/LinuxKernel.vala:134 +#: src/Common/LinuxKernel.vala:135 msgid "Running kernel" msgstr "Uruchomione jądro" -#: src/Common/LinuxKernel.vala:250 +#: src/Common/LinuxKernel.vala:238 msgid "loading cached" msgstr "ładowanie z pamięci podręcznej" -#: src/Common/LinuxKernel.vala:262 +#: src/Common/LinuxKernel.vala:250 msgid "queuing download" msgstr "pobieranie w kolejce" -#: src/Common/LinuxKernel.vala:283 +#: src/Common/LinuxKernel.vala:271 msgid "Fetching individual kernel indexes" msgstr "Pobieranie indywidualnych indeksów jądra" -#: src/Common/LinuxKernel.vala:299 +#: src/Common/LinuxKernel.vala:287 msgid "loading downloaded" msgstr "ładowanie pobranych" -#: src/Common/LinuxKernel.vala:334 +#: src/Common/LinuxKernel.vala:322 msgid "Updating from" msgstr "Aktualizowanie z" -#: src/Common/LinuxKernel.vala:342 +#: src/Common/LinuxKernel.vala:330 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:345 +#: src/Common/LinuxKernel.vala:333 msgid "FAILED" msgstr "NIEPOWODZENIE" -#: src/Common/LinuxKernel.vala:410 +#: src/Common/LinuxKernel.vala:392 msgid "Found installed" msgstr "Znaleziono zainstalowane" -#: src/Common/LinuxKernel.vala:411 +#: src/Common/LinuxKernel.vala:393 msgid "locked" msgstr "zablokowane" -#: src/Common/LinuxKernel.vala:496 src/Common/LinuxKernel.vala:1024 -#: src/Common/LinuxKernel.vala:1114 +#: src/Common/LinuxKernel.vala:477 src/Common/LinuxKernel.vala:1009 +#: src/Common/LinuxKernel.vala:1098 msgid "is locked." msgstr "jest zablokowane." -#: src/Common/LinuxKernel.vala:696 src/Gtk/MainWindow.vala:512 -#: src/Gtk/MainWindow.vala:525 +#: src/Common/LinuxKernel.vala:681 src/Gtk/MainWindow.vala:509 +#: src/Gtk/MainWindow.vala:522 msgid "Running" msgstr "Uruchomione" -#: src/Common/LinuxKernel.vala:697 +#: src/Common/LinuxKernel.vala:682 msgid "Installed" msgstr "Zainstalowane" -#: src/Common/LinuxKernel.vala:698 +#: src/Common/LinuxKernel.vala:683 msgid "Invalid" msgstr "Nieprawidłowe" -#: src/Common/LinuxKernel.vala:783 +#: src/Common/LinuxKernel.vala:768 msgid "Packages Available" msgstr "Dostępne pakiety" -#: src/Common/LinuxKernel.vala:789 +#: src/Common/LinuxKernel.vala:774 msgid "Packages Installed" msgstr "Pakiety zainstalowane" -#: src/Common/LinuxKernel.vala:814 src/lib/TeeJee.FileSystem.vala:118 +#: src/Common/LinuxKernel.vala:799 src/lib/TeeJee.FileSystem.vala:118 msgid "File not found" msgstr "Nie odnaleziono pliku" -#: src/Common/LinuxKernel.vala:908 +#: src/Common/LinuxKernel.vala:893 msgid "Available Kernels" msgstr "Dostępne jądra" -#: src/Common/LinuxKernel.vala:943 src/Gtk/MainWindow.vala:119 +#: src/Common/LinuxKernel.vala:928 src/Gtk/MainWindow.vala:119 msgid "Kernel" msgstr "Jądro" -#: src/Common/LinuxKernel.vala:943 +#: src/Common/LinuxKernel.vala:928 #, fuzzy msgid "not found" msgstr "Nie odnaleziono pliku" -#: src/Common/LinuxKernel.vala:950 +#: src/Common/LinuxKernel.vala:935 #, fuzzy msgid "Download: no downloadable kernels specified" msgstr "Nie określono polecenia" -#: src/Common/LinuxKernel.vala:970 +#: src/Common/LinuxKernel.vala:955 msgid "enabled" msgstr "włączone" -#: src/Common/LinuxKernel.vala:994 +#: src/Common/LinuxKernel.vala:979 msgid "Downloading" msgstr "Pobieranie" -#: src/Common/LinuxKernel.vala:1019 +#: src/Common/LinuxKernel.vala:1004 msgid "is already installed." msgstr "jest już zainstalowane." -#: src/Common/LinuxKernel.vala:1029 +#: src/Common/LinuxKernel.vala:1014 msgid "download failed." msgstr "" -#: src/Common/LinuxKernel.vala:1037 +#: src/Common/LinuxKernel.vala:1022 #, fuzzy msgid "Install: no installable kernels secified" msgstr "Nie określono polecenia" -#: src/Common/LinuxKernel.vala:1049 +#: src/Common/LinuxKernel.vala:1034 msgid "Uninstalling selected kernels" msgstr "Odinstalowanie wybranych jąder" -#: src/Common/LinuxKernel.vala:1053 +#: src/Common/LinuxKernel.vala:1038 #, fuzzy msgid "Requested" msgstr "zażądane" -#: src/Common/LinuxKernel.vala:1056 +#: src/Common/LinuxKernel.vala:1041 #, fuzzy msgid "Not uninstalling the currently running kernel" msgstr "bez odinstalowywania aktualnie uruchomionego jądra" -#: src/Common/LinuxKernel.vala:1061 +#: src/Common/LinuxKernel.vala:1046 #, fuzzy msgid "is locked" msgstr "jest zablokowane." -#: src/Common/LinuxKernel.vala:1069 +#: src/Common/LinuxKernel.vala:1054 msgid "found" msgstr "znalezione" -#: src/Common/LinuxKernel.vala:1073 +#: src/Common/LinuxKernel.vala:1058 msgid "Uninstall: no uninstallable packages found" msgstr "" -#: src/Common/LinuxKernel.vala:1110 +#: src/Common/LinuxKernel.vala:1094 msgid "is the highest installed version." msgstr "to najwyższa zainstalowana wersja." -#: src/Common/LinuxKernel.vala:1123 +#: src/Common/LinuxKernel.vala:1107 msgid "Could not find running kernel in list" msgstr "Nie można znaleźć uruchomionego jądra na liście" -#: src/Common/LinuxKernel.vala:1128 +#: src/Common/LinuxKernel.vala:1112 msgid "Could not find any kernels to uninstall" msgstr "Nie można znaleźć żadnych jąder do odinstalowania" -#: src/Common/LinuxKernel.vala:1136 +#: src/Common/LinuxKernel.vala:1120 msgid "The following kernels will be uninstalled" msgstr "Następujące jądra zostaną odinstalowane" -#: src/Common/LinuxKernel.vala:1140 +#: src/Common/LinuxKernel.vala:1124 msgid "Continue ?" msgstr "Kontynuować?" -#: src/Common/LinuxKernel.vala:1162 src/Console/AppConsole.vala:234 +#: src/Common/LinuxKernel.vala:1146 src/Console/AppConsole.vala:234 msgid "Latest update" msgstr "Najnowsza aktualizacja" -#: src/Common/LinuxKernel.vala:1173 src/Console/AppConsole.vala:241 +#: src/Common/LinuxKernel.vala:1157 src/Console/AppConsole.vala:241 msgid "Latest point update" msgstr "Najnowsza aktualizacja punktowa" -#: src/Common/LinuxKernel.vala:1181 src/Console/AppConsole.vala:246 +#: src/Common/LinuxKernel.vala:1165 src/Console/AppConsole.vala:246 #: src/Console/AppConsole.vala:261 msgid "No updates found" msgstr "Nie znaleziono aktualizacji" -#: src/Common/LinuxKernel.vala:1190 +#: src/Common/LinuxKernel.vala:1174 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Zainstalować wersję jądra %s? (t/n): " @@ -262,7 +262,7 @@ msgstr "Odinstaluj wybrane jądro" msgid "Uninstall specified kernels" msgstr "Odinstaluj wybrane jądro" -#: src/Console/AppConsole.vala:55 src/Gtk/MainWindow.vala:327 +#: src/Console/AppConsole.vala:55 src/Gtk/MainWindow.vala:324 msgid "Uninstall all but the highest installed version" msgstr "Odinstaluj wszystkie oprócz najwyższej zainstalowanej wersji" @@ -341,7 +341,7 @@ msgstr "Dostępne %s jądra" msgid "Show" msgstr "Pokaż" -#: src/Console/AppConsole.vala:288 src/Gtk/MainWindow.vala:299 +#: src/Console/AppConsole.vala:288 src/Gtk/MainWindow.vala:296 msgid "Install" msgstr "Zainstaluj" @@ -409,60 +409,60 @@ msgstr "Status" msgid "Notes" msgstr "Notatki" -#: src/Gtk/MainWindow.vala:307 +#: src/Gtk/MainWindow.vala:304 msgid "Uninstall" msgstr "Odinstaluj" -#: src/Gtk/MainWindow.vala:316 +#: src/Gtk/MainWindow.vala:313 msgid "Changelog, build status, etc" msgstr "Dziennik zmian, status kompilacji itd." -#: src/Gtk/MainWindow.vala:326 +#: src/Gtk/MainWindow.vala:323 msgid "Uninstall Old" msgstr "Odinstaluj stare" -#: src/Gtk/MainWindow.vala:332 +#: src/Gtk/MainWindow.vala:329 msgid "Reload" msgstr "Wczytaj ponownie" -#: src/Gtk/MainWindow.vala:333 +#: src/Gtk/MainWindow.vala:330 msgid "Delete and reload all cached kernel info" msgstr "" -#: src/Gtk/MainWindow.vala:338 src/Gtk/SettingsDialog.vala:49 +#: src/Gtk/MainWindow.vala:335 src/Gtk/SettingsDialog.vala:49 msgid "Settings" msgstr "Ustawienia" -#: src/Gtk/MainWindow.vala:343 +#: src/Gtk/MainWindow.vala:340 msgid "About" msgstr "O programie" -#: src/Gtk/MainWindow.vala:348 +#: src/Gtk/MainWindow.vala:345 msgid "Exit" msgstr "Wyjdź" -#: src/Gtk/MainWindow.vala:414 +#: src/Gtk/MainWindow.vala:411 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Narzędzie uaktualniania jądra dla dystrybucji z rodziny Ubuntu" -#: src/Gtk/MainWindow.vala:415 +#: src/Gtk/MainWindow.vala:412 msgid "Forked" msgstr "Sforkowane" -#: src/Gtk/MainWindow.vala:415 +#: src/Gtk/MainWindow.vala:412 msgid "Original" msgstr "Oryginalne" -#: src/Gtk/MainWindow.vala:444 +#: src/Gtk/MainWindow.vala:441 msgid "Updating kernels" msgstr "Aktualizowanie jąder" -#: src/Gtk/MainWindow.vala:521 +#: src/Gtk/MainWindow.vala:518 msgid "available" msgstr "dostępne" -#: src/Gtk/MainWindow.vala:576 src/Gtk/MainWindow.vala:615 -#: src/Gtk/MainWindow.vala:647 +#: src/Gtk/MainWindow.vala:572 src/Gtk/MainWindow.vala:611 +#: src/Gtk/MainWindow.vala:643 msgid "DONE" msgstr "" diff --git a/po/ru.po b/po/ru.po index d72470b6..78738925 100644 --- a/po/ru.po +++ b/po/ru.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-30 02:25-0400\n" +"POT-Creation-Date: 2023-05-30 10:06-0400\n" "PO-Revision-Date: 2023-04-17 20:16+0300\n" "Last-Translator: Danik2343 \n" "Language-Team: Russian\n" @@ -13,184 +13,184 @@ msgstr "" "X-Launchpad-Export-Date: 2016-12-13 11:48+0000\n" "X-Generator: Poedit 3.0.1\n" -#: src/Common/LinuxKernel.vala:104 +#: src/Common/LinuxKernel.vala:105 msgid "Distribution" msgstr "Дистрибутив" -#: src/Common/LinuxKernel.vala:119 +#: src/Common/LinuxKernel.vala:120 msgid "Architecture" msgstr "Архитектура" -#: src/Common/LinuxKernel.vala:134 +#: src/Common/LinuxKernel.vala:135 msgid "Running kernel" msgstr "Запущенное ядро" -#: src/Common/LinuxKernel.vala:250 +#: src/Common/LinuxKernel.vala:238 msgid "loading cached" msgstr "загрузка в кэше" -#: src/Common/LinuxKernel.vala:262 +#: src/Common/LinuxKernel.vala:250 msgid "queuing download" msgstr "загрузка очередей" -#: src/Common/LinuxKernel.vala:283 +#: src/Common/LinuxKernel.vala:271 msgid "Fetching individual kernel indexes" msgstr "Получение отдельных индексов ядра" -#: src/Common/LinuxKernel.vala:299 +#: src/Common/LinuxKernel.vala:287 msgid "loading downloaded" msgstr "загрузка загруженных" -#: src/Common/LinuxKernel.vala:334 +#: src/Common/LinuxKernel.vala:322 msgid "Updating from" msgstr "Обновление из" -#: src/Common/LinuxKernel.vala:342 +#: src/Common/LinuxKernel.vala:330 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:345 +#: src/Common/LinuxKernel.vala:333 msgid "FAILED" msgstr "НЕУДАВШИЙСЯ" -#: src/Common/LinuxKernel.vala:410 +#: src/Common/LinuxKernel.vala:392 msgid "Found installed" msgstr "Найдено установлененное" -#: src/Common/LinuxKernel.vala:411 +#: src/Common/LinuxKernel.vala:393 msgid "locked" msgstr "" -#: src/Common/LinuxKernel.vala:496 src/Common/LinuxKernel.vala:1024 -#: src/Common/LinuxKernel.vala:1114 +#: src/Common/LinuxKernel.vala:477 src/Common/LinuxKernel.vala:1009 +#: src/Common/LinuxKernel.vala:1098 msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:696 src/Gtk/MainWindow.vala:512 -#: src/Gtk/MainWindow.vala:525 +#: src/Common/LinuxKernel.vala:681 src/Gtk/MainWindow.vala:509 +#: src/Gtk/MainWindow.vala:522 msgid "Running" msgstr "Используется" -#: src/Common/LinuxKernel.vala:697 +#: src/Common/LinuxKernel.vala:682 msgid "Installed" msgstr "Установлено" -#: src/Common/LinuxKernel.vala:698 +#: src/Common/LinuxKernel.vala:683 msgid "Invalid" msgstr "Негодный" -#: src/Common/LinuxKernel.vala:783 +#: src/Common/LinuxKernel.vala:768 msgid "Packages Available" msgstr "Доступные пакеты" -#: src/Common/LinuxKernel.vala:789 +#: src/Common/LinuxKernel.vala:774 msgid "Packages Installed" msgstr "Установленные пакеты" -#: src/Common/LinuxKernel.vala:814 src/lib/TeeJee.FileSystem.vala:118 +#: src/Common/LinuxKernel.vala:799 src/lib/TeeJee.FileSystem.vala:118 msgid "File not found" msgstr "Файл не найден" -#: src/Common/LinuxKernel.vala:908 +#: src/Common/LinuxKernel.vala:893 msgid "Available Kernels" msgstr "Доступные ядра" -#: src/Common/LinuxKernel.vala:943 src/Gtk/MainWindow.vala:119 +#: src/Common/LinuxKernel.vala:928 src/Gtk/MainWindow.vala:119 msgid "Kernel" msgstr "Ядро" -#: src/Common/LinuxKernel.vala:943 +#: src/Common/LinuxKernel.vala:928 #, fuzzy msgid "not found" msgstr "Файл не найден" -#: src/Common/LinuxKernel.vala:950 +#: src/Common/LinuxKernel.vala:935 #, fuzzy msgid "Download: no downloadable kernels specified" msgstr "Команда не указана" -#: src/Common/LinuxKernel.vala:970 +#: src/Common/LinuxKernel.vala:955 msgid "enabled" msgstr "включено" -#: src/Common/LinuxKernel.vala:994 +#: src/Common/LinuxKernel.vala:979 msgid "Downloading" msgstr "Загрузки" -#: src/Common/LinuxKernel.vala:1019 +#: src/Common/LinuxKernel.vala:1004 msgid "is already installed." msgstr "уже установлен." -#: src/Common/LinuxKernel.vala:1029 +#: src/Common/LinuxKernel.vala:1014 msgid "download failed." msgstr "" -#: src/Common/LinuxKernel.vala:1037 +#: src/Common/LinuxKernel.vala:1022 #, fuzzy msgid "Install: no installable kernels secified" msgstr "Команда не указана" -#: src/Common/LinuxKernel.vala:1049 +#: src/Common/LinuxKernel.vala:1034 msgid "Uninstalling selected kernels" msgstr "Удаление выбранных ядер" -#: src/Common/LinuxKernel.vala:1053 +#: src/Common/LinuxKernel.vala:1038 #, fuzzy msgid "Requested" msgstr "запрошено" -#: src/Common/LinuxKernel.vala:1056 +#: src/Common/LinuxKernel.vala:1041 #, fuzzy msgid "Not uninstalling the currently running kernel" msgstr "не удаляет текущее работающее ядро" -#: src/Common/LinuxKernel.vala:1061 +#: src/Common/LinuxKernel.vala:1046 msgid "is locked" msgstr "" -#: src/Common/LinuxKernel.vala:1069 +#: src/Common/LinuxKernel.vala:1054 msgid "found" msgstr "найдено" -#: src/Common/LinuxKernel.vala:1073 +#: src/Common/LinuxKernel.vala:1058 msgid "Uninstall: no uninstallable packages found" msgstr "" -#: src/Common/LinuxKernel.vala:1110 +#: src/Common/LinuxKernel.vala:1094 #, fuzzy msgid "is the highest installed version." msgstr "Удаление всех установленных версий, кроме самой высокой" -#: src/Common/LinuxKernel.vala:1123 +#: src/Common/LinuxKernel.vala:1107 msgid "Could not find running kernel in list" msgstr "Could not find running kernel in list" -#: src/Common/LinuxKernel.vala:1128 +#: src/Common/LinuxKernel.vala:1112 msgid "Could not find any kernels to uninstall" msgstr "Не удалось найти ядра для деинсталляции" -#: src/Common/LinuxKernel.vala:1136 +#: src/Common/LinuxKernel.vala:1120 msgid "The following kernels will be uninstalled" msgstr "Следующие ядра будут удалены" -#: src/Common/LinuxKernel.vala:1140 +#: src/Common/LinuxKernel.vala:1124 msgid "Continue ?" msgstr "Продолжить ?" -#: src/Common/LinuxKernel.vala:1162 src/Console/AppConsole.vala:234 +#: src/Common/LinuxKernel.vala:1146 src/Console/AppConsole.vala:234 msgid "Latest update" msgstr "Последнее обновление" -#: src/Common/LinuxKernel.vala:1173 src/Console/AppConsole.vala:241 +#: src/Common/LinuxKernel.vala:1157 src/Console/AppConsole.vala:241 msgid "Latest point update" msgstr "Последнее обновление пунктов" -#: src/Common/LinuxKernel.vala:1181 src/Console/AppConsole.vala:246 +#: src/Common/LinuxKernel.vala:1165 src/Console/AppConsole.vala:246 #: src/Console/AppConsole.vala:261 msgid "No updates found" msgstr "Обновлений не найдено" -#: src/Common/LinuxKernel.vala:1190 +#: src/Common/LinuxKernel.vala:1174 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Установить версию ядра %s ? (y/n): " @@ -262,7 +262,7 @@ msgstr "Установить указанное ядро" msgid "Uninstall specified kernels" msgstr "Установить указанное ядро" -#: src/Console/AppConsole.vala:55 src/Gtk/MainWindow.vala:327 +#: src/Console/AppConsole.vala:55 src/Gtk/MainWindow.vala:324 msgid "Uninstall all but the highest installed version" msgstr "Удаление всех установленных версий, кроме самой высокой" @@ -341,7 +341,7 @@ msgstr "Доступно ядро %s" msgid "Show" msgstr "Показать" -#: src/Console/AppConsole.vala:288 src/Gtk/MainWindow.vala:299 +#: src/Console/AppConsole.vala:288 src/Gtk/MainWindow.vala:296 msgid "Install" msgstr "Установить" @@ -409,60 +409,60 @@ msgstr "Состояние" msgid "Notes" msgstr "Примечания" -#: src/Gtk/MainWindow.vala:307 +#: src/Gtk/MainWindow.vala:304 msgid "Uninstall" msgstr "Удалить" -#: src/Gtk/MainWindow.vala:316 +#: src/Gtk/MainWindow.vala:313 msgid "Changelog, build status, etc" msgstr "Список изменений, статус сборки и т.д" -#: src/Gtk/MainWindow.vala:326 +#: src/Gtk/MainWindow.vala:323 msgid "Uninstall Old" msgstr "Удалить старые" -#: src/Gtk/MainWindow.vala:332 +#: src/Gtk/MainWindow.vala:329 msgid "Reload" msgstr "Перезагрузить" -#: src/Gtk/MainWindow.vala:333 +#: src/Gtk/MainWindow.vala:330 msgid "Delete and reload all cached kernel info" msgstr "" -#: src/Gtk/MainWindow.vala:338 src/Gtk/SettingsDialog.vala:49 +#: src/Gtk/MainWindow.vala:335 src/Gtk/SettingsDialog.vala:49 msgid "Settings" msgstr "Настройки" -#: src/Gtk/MainWindow.vala:343 +#: src/Gtk/MainWindow.vala:340 msgid "About" msgstr "О программе" -#: src/Gtk/MainWindow.vala:348 +#: src/Gtk/MainWindow.vala:345 msgid "Exit" msgstr "Выход" -#: src/Gtk/MainWindow.vala:414 +#: src/Gtk/MainWindow.vala:411 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Программа обновления ядра для дистрибутивов на базе Ubuntu" -#: src/Gtk/MainWindow.vala:415 +#: src/Gtk/MainWindow.vala:412 msgid "Forked" msgstr "Форк" -#: src/Gtk/MainWindow.vala:415 +#: src/Gtk/MainWindow.vala:412 msgid "Original" msgstr "Оригинал" -#: src/Gtk/MainWindow.vala:444 +#: src/Gtk/MainWindow.vala:441 msgid "Updating kernels" msgstr "Обновление ядер" -#: src/Gtk/MainWindow.vala:521 +#: src/Gtk/MainWindow.vala:518 msgid "available" msgstr "доступно" -#: src/Gtk/MainWindow.vala:576 src/Gtk/MainWindow.vala:615 -#: src/Gtk/MainWindow.vala:647 +#: src/Gtk/MainWindow.vala:572 src/Gtk/MainWindow.vala:611 +#: src/Gtk/MainWindow.vala:643 msgid "DONE" msgstr "" diff --git a/po/sv.po b/po/sv.po index 9165b847..d1b801e7 100644 --- a/po/sv.po +++ b/po/sv.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-30 02:25-0400\n" +"POT-Creation-Date: 2023-05-30 10:06-0400\n" "PO-Revision-Date: 2018-01-13 16:56+0100\n" "Last-Translator: Åke Engelbrektson \n" "Language-Team:Swedish\n" @@ -13,184 +13,184 @@ msgstr "" "X-Generator: Poedit 1.8.7.1\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: src/Common/LinuxKernel.vala:104 +#: src/Common/LinuxKernel.vala:105 msgid "Distribution" msgstr "Distribution" -#: src/Common/LinuxKernel.vala:119 +#: src/Common/LinuxKernel.vala:120 msgid "Architecture" msgstr "Arkitektur" -#: src/Common/LinuxKernel.vala:134 +#: src/Common/LinuxKernel.vala:135 msgid "Running kernel" msgstr "Löpande kernel" -#: src/Common/LinuxKernel.vala:250 +#: src/Common/LinuxKernel.vala:238 msgid "loading cached" msgstr "laddar cachelagrat" -#: src/Common/LinuxKernel.vala:262 +#: src/Common/LinuxKernel.vala:250 msgid "queuing download" msgstr "köbildning nedladdning" -#: src/Common/LinuxKernel.vala:283 +#: src/Common/LinuxKernel.vala:271 msgid "Fetching individual kernel indexes" msgstr "Hämta enskilda kernelindex" -#: src/Common/LinuxKernel.vala:299 +#: src/Common/LinuxKernel.vala:287 msgid "loading downloaded" msgstr "laddar nedladdad" -#: src/Common/LinuxKernel.vala:334 +#: src/Common/LinuxKernel.vala:322 msgid "Updating from" msgstr "Uppdatering från" -#: src/Common/LinuxKernel.vala:342 +#: src/Common/LinuxKernel.vala:330 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:345 +#: src/Common/LinuxKernel.vala:333 msgid "FAILED" msgstr "MISSLYCKADES" -#: src/Common/LinuxKernel.vala:410 +#: src/Common/LinuxKernel.vala:392 msgid "Found installed" msgstr "Hittade installerat" -#: src/Common/LinuxKernel.vala:411 +#: src/Common/LinuxKernel.vala:393 msgid "locked" msgstr "" -#: src/Common/LinuxKernel.vala:496 src/Common/LinuxKernel.vala:1024 -#: src/Common/LinuxKernel.vala:1114 +#: src/Common/LinuxKernel.vala:477 src/Common/LinuxKernel.vala:1009 +#: src/Common/LinuxKernel.vala:1098 msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:696 src/Gtk/MainWindow.vala:512 -#: src/Gtk/MainWindow.vala:525 +#: src/Common/LinuxKernel.vala:681 src/Gtk/MainWindow.vala:509 +#: src/Gtk/MainWindow.vala:522 msgid "Running" msgstr "Körs" -#: src/Common/LinuxKernel.vala:697 +#: src/Common/LinuxKernel.vala:682 msgid "Installed" msgstr "Installerad" -#: src/Common/LinuxKernel.vala:698 +#: src/Common/LinuxKernel.vala:683 msgid "Invalid" msgstr "Ogiltig" -#: src/Common/LinuxKernel.vala:783 +#: src/Common/LinuxKernel.vala:768 msgid "Packages Available" msgstr "Tillgängliga paket" -#: src/Common/LinuxKernel.vala:789 +#: src/Common/LinuxKernel.vala:774 msgid "Packages Installed" msgstr "Installerade paket" -#: src/Common/LinuxKernel.vala:814 src/lib/TeeJee.FileSystem.vala:118 +#: src/Common/LinuxKernel.vala:799 src/lib/TeeJee.FileSystem.vala:118 msgid "File not found" msgstr "Filen kan inte hittas" -#: src/Common/LinuxKernel.vala:908 +#: src/Common/LinuxKernel.vala:893 msgid "Available Kernels" msgstr "Tillgängliga kärnor" -#: src/Common/LinuxKernel.vala:943 src/Gtk/MainWindow.vala:119 +#: src/Common/LinuxKernel.vala:928 src/Gtk/MainWindow.vala:119 msgid "Kernel" msgstr "Kärna" -#: src/Common/LinuxKernel.vala:943 +#: src/Common/LinuxKernel.vala:928 #, fuzzy msgid "not found" msgstr "Filen kan inte hittas" -#: src/Common/LinuxKernel.vala:950 +#: src/Common/LinuxKernel.vala:935 #, fuzzy msgid "Download: no downloadable kernels specified" msgstr "Kommandot har inte angetts" -#: src/Common/LinuxKernel.vala:970 +#: src/Common/LinuxKernel.vala:955 msgid "enabled" msgstr "aktiverat" -#: src/Common/LinuxKernel.vala:994 +#: src/Common/LinuxKernel.vala:979 msgid "Downloading" msgstr "Ladda ner" -#: src/Common/LinuxKernel.vala:1019 +#: src/Common/LinuxKernel.vala:1004 msgid "is already installed." msgstr "är redan installerat." -#: src/Common/LinuxKernel.vala:1029 +#: src/Common/LinuxKernel.vala:1014 msgid "download failed." msgstr "" -#: src/Common/LinuxKernel.vala:1037 +#: src/Common/LinuxKernel.vala:1022 #, fuzzy msgid "Install: no installable kernels secified" msgstr "Kommandot har inte angetts" -#: src/Common/LinuxKernel.vala:1049 +#: src/Common/LinuxKernel.vala:1034 msgid "Uninstalling selected kernels" msgstr "Avinstallera valda kärnor" -#: src/Common/LinuxKernel.vala:1053 +#: src/Common/LinuxKernel.vala:1038 #, fuzzy msgid "Requested" msgstr "begärd" -#: src/Common/LinuxKernel.vala:1056 +#: src/Common/LinuxKernel.vala:1041 #, fuzzy msgid "Not uninstalling the currently running kernel" msgstr "Avinstallera inte den kärna som körs, för närvarande" -#: src/Common/LinuxKernel.vala:1061 +#: src/Common/LinuxKernel.vala:1046 msgid "is locked" msgstr "" -#: src/Common/LinuxKernel.vala:1069 +#: src/Common/LinuxKernel.vala:1054 msgid "found" msgstr "grunda" -#: src/Common/LinuxKernel.vala:1073 +#: src/Common/LinuxKernel.vala:1058 msgid "Uninstall: no uninstallable packages found" msgstr "" -#: src/Common/LinuxKernel.vala:1110 +#: src/Common/LinuxKernel.vala:1094 #, fuzzy msgid "is the highest installed version." msgstr "Avinstallera alla utom den högsta installerade versionen" -#: src/Common/LinuxKernel.vala:1123 +#: src/Common/LinuxKernel.vala:1107 msgid "Could not find running kernel in list" msgstr "Det gick inte att hitta kernel som körs i listan" -#: src/Common/LinuxKernel.vala:1128 +#: src/Common/LinuxKernel.vala:1112 msgid "Could not find any kernels to uninstall" msgstr "Det gick inte att hitta några kärnor att avinstallera" -#: src/Common/LinuxKernel.vala:1136 +#: src/Common/LinuxKernel.vala:1120 msgid "The following kernels will be uninstalled" msgstr "Följande kärnor kommer att avinstalleras" -#: src/Common/LinuxKernel.vala:1140 +#: src/Common/LinuxKernel.vala:1124 msgid "Continue ?" msgstr "Fortsätta?" -#: src/Common/LinuxKernel.vala:1162 src/Console/AppConsole.vala:234 +#: src/Common/LinuxKernel.vala:1146 src/Console/AppConsole.vala:234 msgid "Latest update" msgstr "Senaste uppdatering" -#: src/Common/LinuxKernel.vala:1173 src/Console/AppConsole.vala:241 +#: src/Common/LinuxKernel.vala:1157 src/Console/AppConsole.vala:241 msgid "Latest point update" msgstr "Senaste punktuppdatering" -#: src/Common/LinuxKernel.vala:1181 src/Console/AppConsole.vala:246 +#: src/Common/LinuxKernel.vala:1165 src/Console/AppConsole.vala:246 #: src/Console/AppConsole.vala:261 msgid "No updates found" msgstr "Inga uppdateringar hittades" -#: src/Common/LinuxKernel.vala:1190 +#: src/Common/LinuxKernel.vala:1174 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Installera kärnversion %s ? (j/n):" @@ -261,7 +261,7 @@ msgstr "Avinstallera angiven kärna" msgid "Uninstall specified kernels" msgstr "Avinstallera angiven kärna" -#: src/Console/AppConsole.vala:55 src/Gtk/MainWindow.vala:327 +#: src/Console/AppConsole.vala:55 src/Gtk/MainWindow.vala:324 msgid "Uninstall all but the highest installed version" msgstr "Avinstallera alla utom den högsta installerade versionen" @@ -340,7 +340,7 @@ msgstr "Kernel %s tillgängliga" msgid "Show" msgstr "Visa" -#: src/Console/AppConsole.vala:288 src/Gtk/MainWindow.vala:299 +#: src/Console/AppConsole.vala:288 src/Gtk/MainWindow.vala:296 msgid "Install" msgstr "Installera" @@ -408,60 +408,60 @@ msgstr "Status" msgid "Notes" msgstr "Anteckningar" -#: src/Gtk/MainWindow.vala:307 +#: src/Gtk/MainWindow.vala:304 msgid "Uninstall" msgstr "Avinstallera" -#: src/Gtk/MainWindow.vala:316 +#: src/Gtk/MainWindow.vala:313 msgid "Changelog, build status, etc" msgstr "" -#: src/Gtk/MainWindow.vala:326 +#: src/Gtk/MainWindow.vala:323 msgid "Uninstall Old" msgstr "Avinstallera Gamla" -#: src/Gtk/MainWindow.vala:332 +#: src/Gtk/MainWindow.vala:329 msgid "Reload" msgstr "Reload" -#: src/Gtk/MainWindow.vala:333 +#: src/Gtk/MainWindow.vala:330 msgid "Delete and reload all cached kernel info" msgstr "" -#: src/Gtk/MainWindow.vala:338 src/Gtk/SettingsDialog.vala:49 +#: src/Gtk/MainWindow.vala:335 src/Gtk/SettingsDialog.vala:49 msgid "Settings" msgstr "Inställningar" -#: src/Gtk/MainWindow.vala:343 +#: src/Gtk/MainWindow.vala:340 msgid "About" msgstr "Om" -#: src/Gtk/MainWindow.vala:348 +#: src/Gtk/MainWindow.vala:345 msgid "Exit" msgstr "Utgång" -#: src/Gtk/MainWindow.vala:414 +#: src/Gtk/MainWindow.vala:411 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Kärnuppgraderingsverktyg för Ubuntu-baserade distributioner" -#: src/Gtk/MainWindow.vala:415 +#: src/Gtk/MainWindow.vala:412 msgid "Forked" msgstr "Kluven" -#: src/Gtk/MainWindow.vala:415 +#: src/Gtk/MainWindow.vala:412 msgid "Original" msgstr "Original" -#: src/Gtk/MainWindow.vala:444 +#: src/Gtk/MainWindow.vala:441 msgid "Updating kernels" msgstr "Uppdatera kärnor" -#: src/Gtk/MainWindow.vala:521 +#: src/Gtk/MainWindow.vala:518 msgid "available" msgstr "tillgänglig" -#: src/Gtk/MainWindow.vala:576 src/Gtk/MainWindow.vala:615 -#: src/Gtk/MainWindow.vala:647 +#: src/Gtk/MainWindow.vala:572 src/Gtk/MainWindow.vala:611 +#: src/Gtk/MainWindow.vala:643 msgid "DONE" msgstr "" diff --git a/po/tr.po b/po/tr.po index b9a1671a..80e2beac 100644 --- a/po/tr.po +++ b/po/tr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-30 02:25-0400\n" +"POT-Creation-Date: 2023-05-30 10:06-0400\n" "PO-Revision-Date: 2022-08-06 16:48+0300\n" "Last-Translator: Sabri Ünal \n" "Language-Team: Turkish\n" @@ -13,185 +13,185 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Poedit 3.1.1\n" -#: src/Common/LinuxKernel.vala:104 +#: src/Common/LinuxKernel.vala:105 msgid "Distribution" msgstr "Dağıtım" -#: src/Common/LinuxKernel.vala:119 +#: src/Common/LinuxKernel.vala:120 msgid "Architecture" msgstr "Sistem mimarisi" -#: src/Common/LinuxKernel.vala:134 +#: src/Common/LinuxKernel.vala:135 msgid "Running kernel" msgstr "Çalışan çekirdek" -#: src/Common/LinuxKernel.vala:250 +#: src/Common/LinuxKernel.vala:238 msgid "loading cached" msgstr "önbelleğe alınmış yükleme" -#: src/Common/LinuxKernel.vala:262 +#: src/Common/LinuxKernel.vala:250 msgid "queuing download" msgstr "kuyruğa alma indirme" -#: src/Common/LinuxKernel.vala:283 +#: src/Common/LinuxKernel.vala:271 msgid "Fetching individual kernel indexes" msgstr "Tek tek çekirdek dizinlerini alma" -#: src/Common/LinuxKernel.vala:299 +#: src/Common/LinuxKernel.vala:287 msgid "loading downloaded" msgstr "indirilen yükleniyor" -#: src/Common/LinuxKernel.vala:334 +#: src/Common/LinuxKernel.vala:322 msgid "Updating from" msgstr "Şuradan güncelleniyor" -#: src/Common/LinuxKernel.vala:342 +#: src/Common/LinuxKernel.vala:330 msgid "OK" msgstr "Tamam" -#: src/Common/LinuxKernel.vala:345 +#: src/Common/LinuxKernel.vala:333 msgid "FAILED" msgstr "BAŞARISIZ" -#: src/Common/LinuxKernel.vala:410 +#: src/Common/LinuxKernel.vala:392 msgid "Found installed" msgstr "Yüklü bulundu" -#: src/Common/LinuxKernel.vala:411 +#: src/Common/LinuxKernel.vala:393 msgid "locked" msgstr "" -#: src/Common/LinuxKernel.vala:496 src/Common/LinuxKernel.vala:1024 -#: src/Common/LinuxKernel.vala:1114 +#: src/Common/LinuxKernel.vala:477 src/Common/LinuxKernel.vala:1009 +#: src/Common/LinuxKernel.vala:1098 msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:696 src/Gtk/MainWindow.vala:512 -#: src/Gtk/MainWindow.vala:525 +#: src/Common/LinuxKernel.vala:681 src/Gtk/MainWindow.vala:509 +#: src/Gtk/MainWindow.vala:522 msgid "Running" msgstr "Çalışıyor" -#: src/Common/LinuxKernel.vala:697 +#: src/Common/LinuxKernel.vala:682 msgid "Installed" msgstr "Kurulu" -#: src/Common/LinuxKernel.vala:698 +#: src/Common/LinuxKernel.vala:683 msgid "Invalid" msgstr "Geçersiz" -#: src/Common/LinuxKernel.vala:783 +#: src/Common/LinuxKernel.vala:768 msgid "Packages Available" msgstr "Mevcut Paketler" -#: src/Common/LinuxKernel.vala:789 +#: src/Common/LinuxKernel.vala:774 msgid "Packages Installed" msgstr "Kurulu Paketler" -#: src/Common/LinuxKernel.vala:814 src/lib/TeeJee.FileSystem.vala:118 +#: src/Common/LinuxKernel.vala:799 src/lib/TeeJee.FileSystem.vala:118 msgid "File not found" msgstr "Dosya bulunamadı" -#: src/Common/LinuxKernel.vala:908 +#: src/Common/LinuxKernel.vala:893 msgid "Available Kernels" msgstr "Mevcut Çekirdekler" -#: src/Common/LinuxKernel.vala:943 src/Gtk/MainWindow.vala:119 +#: src/Common/LinuxKernel.vala:928 src/Gtk/MainWindow.vala:119 msgid "Kernel" msgstr "Çekirdek" -#: src/Common/LinuxKernel.vala:943 +#: src/Common/LinuxKernel.vala:928 #, fuzzy msgid "not found" msgstr "Dosya bulunamadı" -#: src/Common/LinuxKernel.vala:950 +#: src/Common/LinuxKernel.vala:935 #, fuzzy msgid "Download: no downloadable kernels specified" msgstr "Komut belirtilmedi" -#: src/Common/LinuxKernel.vala:970 +#: src/Common/LinuxKernel.vala:955 msgid "enabled" msgstr "etkin" -#: src/Common/LinuxKernel.vala:994 +#: src/Common/LinuxKernel.vala:979 msgid "Downloading" msgstr "Indiriyor" -#: src/Common/LinuxKernel.vala:1019 +#: src/Common/LinuxKernel.vala:1004 msgid "is already installed." msgstr "zaten yüklü." -#: src/Common/LinuxKernel.vala:1029 +#: src/Common/LinuxKernel.vala:1014 msgid "download failed." msgstr "" -#: src/Common/LinuxKernel.vala:1037 +#: src/Common/LinuxKernel.vala:1022 #, fuzzy msgid "Install: no installable kernels secified" msgstr "Komut belirtilmedi" -#: src/Common/LinuxKernel.vala:1049 +#: src/Common/LinuxKernel.vala:1034 msgid "Uninstalling selected kernels" msgstr "Seçili çekirdekleri kaldırma" -#: src/Common/LinuxKernel.vala:1053 +#: src/Common/LinuxKernel.vala:1038 #, fuzzy msgid "Requested" msgstr "istenen" -#: src/Common/LinuxKernel.vala:1056 +#: src/Common/LinuxKernel.vala:1041 #, fuzzy msgid "Not uninstalling the currently running kernel" msgstr "çalışmakta olan çekirdeğin kaldırılmaması" -#: src/Common/LinuxKernel.vala:1061 +#: src/Common/LinuxKernel.vala:1046 msgid "is locked" msgstr "" -#: src/Common/LinuxKernel.vala:1069 +#: src/Common/LinuxKernel.vala:1054 msgid "found" msgstr "kurmak" -#: src/Common/LinuxKernel.vala:1073 +#: src/Common/LinuxKernel.vala:1058 msgid "Uninstall: no uninstallable packages found" msgstr "" -#: src/Common/LinuxKernel.vala:1110 +#: src/Common/LinuxKernel.vala:1094 #, fuzzy msgid "is the highest installed version." msgstr "En yüksek yüklü sürüm dışındaki tüm sürümleri kaldırın" -#: src/Common/LinuxKernel.vala:1123 +#: src/Common/LinuxKernel.vala:1107 msgid "Could not find running kernel in list" msgstr "Listede çalışan çekirdek bulunamadı" -#: src/Common/LinuxKernel.vala:1128 +#: src/Common/LinuxKernel.vala:1112 msgid "Could not find any kernels to uninstall" msgstr "Kaldırılacak çekirdek bulunamadı" -#: src/Common/LinuxKernel.vala:1136 +#: src/Common/LinuxKernel.vala:1120 msgid "The following kernels will be uninstalled" msgstr "Aşağıdaki çekirdekler kaldırılacaktır" -#: src/Common/LinuxKernel.vala:1140 +#: src/Common/LinuxKernel.vala:1124 msgid "Continue ?" msgstr "Devam edilsin mi?" -#: src/Common/LinuxKernel.vala:1162 src/Console/AppConsole.vala:234 +#: src/Common/LinuxKernel.vala:1146 src/Console/AppConsole.vala:234 msgid "Latest update" msgstr "Son güncelleme" # Point burada point release anlamında kullanılıyor. Örneğin 5.10.x sayısının en sonundaki x rakamı point release/nokta sürüm oluyor. -#: src/Common/LinuxKernel.vala:1173 src/Console/AppConsole.vala:241 +#: src/Common/LinuxKernel.vala:1157 src/Console/AppConsole.vala:241 msgid "Latest point update" msgstr "Son nokta güncellemesi" -#: src/Common/LinuxKernel.vala:1181 src/Console/AppConsole.vala:246 +#: src/Common/LinuxKernel.vala:1165 src/Console/AppConsole.vala:246 #: src/Console/AppConsole.vala:261 msgid "No updates found" msgstr "Güncelleme bulunamadı" -#: src/Common/LinuxKernel.vala:1190 +#: src/Common/LinuxKernel.vala:1174 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Linux Çekirdek Sürümü %s Kurulsun mu? (e/h): " @@ -263,7 +263,7 @@ msgstr "Belirtilen çekirdeğini kaldır" msgid "Uninstall specified kernels" msgstr "Belirtilen çekirdeğini kaldır" -#: src/Console/AppConsole.vala:55 src/Gtk/MainWindow.vala:327 +#: src/Console/AppConsole.vala:55 src/Gtk/MainWindow.vala:324 msgid "Uninstall all but the highest installed version" msgstr "En yüksek yüklü sürüm dışındaki tüm sürümleri kaldırın" @@ -342,7 +342,7 @@ msgstr "Çekirdek %s Kullanılabilir" msgid "Show" msgstr "Göster" -#: src/Console/AppConsole.vala:288 src/Gtk/MainWindow.vala:299 +#: src/Console/AppConsole.vala:288 src/Gtk/MainWindow.vala:296 msgid "Install" msgstr "Kur" @@ -410,60 +410,60 @@ msgstr "Durum" msgid "Notes" msgstr "Notlar" -#: src/Gtk/MainWindow.vala:307 +#: src/Gtk/MainWindow.vala:304 msgid "Uninstall" msgstr "Kaldır" -#: src/Gtk/MainWindow.vala:316 +#: src/Gtk/MainWindow.vala:313 msgid "Changelog, build status, etc" msgstr "" -#: src/Gtk/MainWindow.vala:326 +#: src/Gtk/MainWindow.vala:323 msgid "Uninstall Old" msgstr "Eskileri Kaldır" -#: src/Gtk/MainWindow.vala:332 +#: src/Gtk/MainWindow.vala:329 msgid "Reload" msgstr "Arjantin" -#: src/Gtk/MainWindow.vala:333 +#: src/Gtk/MainWindow.vala:330 msgid "Delete and reload all cached kernel info" msgstr "" -#: src/Gtk/MainWindow.vala:338 src/Gtk/SettingsDialog.vala:49 +#: src/Gtk/MainWindow.vala:335 src/Gtk/SettingsDialog.vala:49 msgid "Settings" msgstr "Ayarlar" -#: src/Gtk/MainWindow.vala:343 +#: src/Gtk/MainWindow.vala:340 msgid "About" msgstr "Hakkında" -#: src/Gtk/MainWindow.vala:348 +#: src/Gtk/MainWindow.vala:345 msgid "Exit" msgstr "Çıkış" -#: src/Gtk/MainWindow.vala:414 +#: src/Gtk/MainWindow.vala:411 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Ubuntu tabanlı dağıtımlar için çekirdek güncelleme aracı" -#: src/Gtk/MainWindow.vala:415 +#: src/Gtk/MainWindow.vala:412 msgid "Forked" msgstr "Çatallandı" -#: src/Gtk/MainWindow.vala:415 +#: src/Gtk/MainWindow.vala:412 msgid "Original" msgstr "Özgün" -#: src/Gtk/MainWindow.vala:444 +#: src/Gtk/MainWindow.vala:441 msgid "Updating kernels" msgstr "Çekirdekleri güncelleme" -#: src/Gtk/MainWindow.vala:521 +#: src/Gtk/MainWindow.vala:518 msgid "available" msgstr "mevcut" -#: src/Gtk/MainWindow.vala:576 src/Gtk/MainWindow.vala:615 -#: src/Gtk/MainWindow.vala:647 +#: src/Gtk/MainWindow.vala:572 src/Gtk/MainWindow.vala:611 +#: src/Gtk/MainWindow.vala:643 msgid "DONE" msgstr "" diff --git a/po/uk.po b/po/uk.po index 0342a120..f9de8ce4 100644 --- a/po/uk.po +++ b/po/uk.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-30 02:25-0400\n" +"POT-Creation-Date: 2023-05-30 10:06-0400\n" "PO-Revision-Date: 2019-07-25 11:00+0300\n" "Last-Translator: Serhii Golovko \n" "Language-Team: Ukranian\n" @@ -13,185 +13,185 @@ msgstr "" "X-Launchpad-Export-Date: 2016-12-13 11:48+0000\n" "X-Generator: Poedit 2.2.1\n" -#: src/Common/LinuxKernel.vala:104 +#: src/Common/LinuxKernel.vala:105 msgid "Distribution" msgstr "Дистрибутив" -#: src/Common/LinuxKernel.vala:119 +#: src/Common/LinuxKernel.vala:120 msgid "Architecture" msgstr "Системна архитектура" -#: src/Common/LinuxKernel.vala:134 +#: src/Common/LinuxKernel.vala:135 msgid "Running kernel" msgstr "Запуск ядра" -#: src/Common/LinuxKernel.vala:250 +#: src/Common/LinuxKernel.vala:238 msgid "loading cached" msgstr "Завантаження кешованого" -#: src/Common/LinuxKernel.vala:262 +#: src/Common/LinuxKernel.vala:250 msgid "queuing download" msgstr "Черга завантаження" -#: src/Common/LinuxKernel.vala:283 +#: src/Common/LinuxKernel.vala:271 msgid "Fetching individual kernel indexes" msgstr "Вибірка окремих індексів ядра" -#: src/Common/LinuxKernel.vala:299 +#: src/Common/LinuxKernel.vala:287 msgid "loading downloaded" msgstr "Завантаження завантаженого" -#: src/Common/LinuxKernel.vala:334 +#: src/Common/LinuxKernel.vala:322 msgid "Updating from" msgstr "Оновлення з" -#: src/Common/LinuxKernel.vala:342 +#: src/Common/LinuxKernel.vala:330 msgid "OK" msgstr "Добре" -#: src/Common/LinuxKernel.vala:345 +#: src/Common/LinuxKernel.vala:333 msgid "FAILED" msgstr "НЕ ВДАЛОСЯ" -#: src/Common/LinuxKernel.vala:410 +#: src/Common/LinuxKernel.vala:392 msgid "Found installed" msgstr "Знайдено встановленим" -#: src/Common/LinuxKernel.vala:411 +#: src/Common/LinuxKernel.vala:393 msgid "locked" msgstr "заблокований" -#: src/Common/LinuxKernel.vala:496 src/Common/LinuxKernel.vala:1024 -#: src/Common/LinuxKernel.vala:1114 +#: src/Common/LinuxKernel.vala:477 src/Common/LinuxKernel.vala:1009 +#: src/Common/LinuxKernel.vala:1098 msgid "is locked." msgstr "заблоковано." -#: src/Common/LinuxKernel.vala:696 src/Gtk/MainWindow.vala:512 -#: src/Gtk/MainWindow.vala:525 +#: src/Common/LinuxKernel.vala:681 src/Gtk/MainWindow.vala:509 +#: src/Gtk/MainWindow.vala:522 msgid "Running" msgstr "Використовується" -#: src/Common/LinuxKernel.vala:697 +#: src/Common/LinuxKernel.vala:682 msgid "Installed" msgstr "Встановлено" -#: src/Common/LinuxKernel.vala:698 +#: src/Common/LinuxKernel.vala:683 msgid "Invalid" msgstr "Інвалід" -#: src/Common/LinuxKernel.vala:783 +#: src/Common/LinuxKernel.vala:768 msgid "Packages Available" msgstr "Доступні пакети" -#: src/Common/LinuxKernel.vala:789 +#: src/Common/LinuxKernel.vala:774 msgid "Packages Installed" msgstr "Встановлені пакети" -#: src/Common/LinuxKernel.vala:814 src/lib/TeeJee.FileSystem.vala:118 +#: src/Common/LinuxKernel.vala:799 src/lib/TeeJee.FileSystem.vala:118 msgid "File not found" msgstr "Файл не знайдено" -#: src/Common/LinuxKernel.vala:908 +#: src/Common/LinuxKernel.vala:893 msgid "Available Kernels" msgstr "Доступні ядра" -#: src/Common/LinuxKernel.vala:943 src/Gtk/MainWindow.vala:119 +#: src/Common/LinuxKernel.vala:928 src/Gtk/MainWindow.vala:119 msgid "Kernel" msgstr "Ядро" -#: src/Common/LinuxKernel.vala:943 +#: src/Common/LinuxKernel.vala:928 #, fuzzy msgid "not found" msgstr "Файл не знайдено" -#: src/Common/LinuxKernel.vala:950 +#: src/Common/LinuxKernel.vala:935 #, fuzzy msgid "Download: no downloadable kernels specified" msgstr "Команда не вказана" -#: src/Common/LinuxKernel.vala:970 +#: src/Common/LinuxKernel.vala:955 msgid "enabled" msgstr "увімкнено" -#: src/Common/LinuxKernel.vala:994 +#: src/Common/LinuxKernel.vala:979 msgid "Downloading" msgstr "Завантаження" -#: src/Common/LinuxKernel.vala:1019 +#: src/Common/LinuxKernel.vala:1004 msgid "is already installed." msgstr "вже встановлено." -#: src/Common/LinuxKernel.vala:1029 +#: src/Common/LinuxKernel.vala:1014 msgid "download failed." msgstr "" -#: src/Common/LinuxKernel.vala:1037 +#: src/Common/LinuxKernel.vala:1022 #, fuzzy msgid "Install: no installable kernels secified" msgstr "Команда не вказана" -#: src/Common/LinuxKernel.vala:1049 +#: src/Common/LinuxKernel.vala:1034 msgid "Uninstalling selected kernels" msgstr "Видаліть конкретні ядра" -#: src/Common/LinuxKernel.vala:1053 +#: src/Common/LinuxKernel.vala:1038 #, fuzzy msgid "Requested" msgstr "запитуваний" -#: src/Common/LinuxKernel.vala:1056 +#: src/Common/LinuxKernel.vala:1041 #, fuzzy msgid "Not uninstalling the currently running kernel" msgstr "не видалятиме поточне запущене ядро" -#: src/Common/LinuxKernel.vala:1061 +#: src/Common/LinuxKernel.vala:1046 #, fuzzy msgid "is locked" msgstr "заблоковано." -#: src/Common/LinuxKernel.vala:1069 +#: src/Common/LinuxKernel.vala:1054 msgid "found" msgstr "знайдено" -#: src/Common/LinuxKernel.vala:1073 +#: src/Common/LinuxKernel.vala:1058 msgid "Uninstall: no uninstallable packages found" msgstr "" -#: src/Common/LinuxKernel.vala:1110 +#: src/Common/LinuxKernel.vala:1094 #, fuzzy msgid "is the highest installed version." msgstr "Видаліть усі, крім найвищої встановленої версії" -#: src/Common/LinuxKernel.vala:1123 +#: src/Common/LinuxKernel.vala:1107 msgid "Could not find running kernel in list" msgstr "Не вдалося знайти запущене ядро у списку!" -#: src/Common/LinuxKernel.vala:1128 +#: src/Common/LinuxKernel.vala:1112 msgid "Could not find any kernels to uninstall" msgstr "Не вдалося знайти жодне ядро для вилучення" -#: src/Common/LinuxKernel.vala:1136 +#: src/Common/LinuxKernel.vala:1120 msgid "The following kernels will be uninstalled" msgstr "Наступні ядра будуть видалені" -#: src/Common/LinuxKernel.vala:1140 +#: src/Common/LinuxKernel.vala:1124 msgid "Continue ?" msgstr "Продовжувати ?" -#: src/Common/LinuxKernel.vala:1162 src/Console/AppConsole.vala:234 +#: src/Common/LinuxKernel.vala:1146 src/Console/AppConsole.vala:234 msgid "Latest update" msgstr "Останнє оновлення" -#: src/Common/LinuxKernel.vala:1173 src/Console/AppConsole.vala:241 +#: src/Common/LinuxKernel.vala:1157 src/Console/AppConsole.vala:241 msgid "Latest point update" msgstr "Остання точка оновлення" -#: src/Common/LinuxKernel.vala:1181 src/Console/AppConsole.vala:246 +#: src/Common/LinuxKernel.vala:1165 src/Console/AppConsole.vala:246 #: src/Console/AppConsole.vala:261 msgid "No updates found" msgstr "Оновлень не знайдено" -#: src/Common/LinuxKernel.vala:1190 +#: src/Common/LinuxKernel.vala:1174 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Встановити Ядро Версії %s ? (так/ні): " @@ -263,7 +263,7 @@ msgstr "Видаліть конкретні ядра" msgid "Uninstall specified kernels" msgstr "Видаліть конкретні ядра" -#: src/Console/AppConsole.vala:55 src/Gtk/MainWindow.vala:327 +#: src/Console/AppConsole.vala:55 src/Gtk/MainWindow.vala:324 msgid "Uninstall all but the highest installed version" msgstr "Видаліть усі, крім найвищої встановленої версії" @@ -342,7 +342,7 @@ msgstr "Ядро %s Доступне" msgid "Show" msgstr "Показати" -#: src/Console/AppConsole.vala:288 src/Gtk/MainWindow.vala:299 +#: src/Console/AppConsole.vala:288 src/Gtk/MainWindow.vala:296 msgid "Install" msgstr "Встановити" @@ -410,60 +410,60 @@ msgstr "Стан" msgid "Notes" msgstr "Нотатки" -#: src/Gtk/MainWindow.vala:307 +#: src/Gtk/MainWindow.vala:304 msgid "Uninstall" msgstr "Видалити" -#: src/Gtk/MainWindow.vala:316 +#: src/Gtk/MainWindow.vala:313 msgid "Changelog, build status, etc" msgstr "Журнал змін, статус збірки тощо" -#: src/Gtk/MainWindow.vala:326 +#: src/Gtk/MainWindow.vala:323 msgid "Uninstall Old" msgstr "Видалити старе" -#: src/Gtk/MainWindow.vala:332 +#: src/Gtk/MainWindow.vala:329 msgid "Reload" msgstr "Перезавантажити" -#: src/Gtk/MainWindow.vala:333 +#: src/Gtk/MainWindow.vala:330 msgid "Delete and reload all cached kernel info" msgstr "" -#: src/Gtk/MainWindow.vala:338 src/Gtk/SettingsDialog.vala:49 +#: src/Gtk/MainWindow.vala:335 src/Gtk/SettingsDialog.vala:49 msgid "Settings" msgstr "Налаштування" -#: src/Gtk/MainWindow.vala:343 +#: src/Gtk/MainWindow.vala:340 msgid "About" msgstr "Про программу" -#: src/Gtk/MainWindow.vala:348 +#: src/Gtk/MainWindow.vala:345 msgid "Exit" msgstr "Вихід" -#: src/Gtk/MainWindow.vala:414 +#: src/Gtk/MainWindow.vala:411 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Програма оновлення ядра для дистрибутивів на базі Ubuntu" -#: src/Gtk/MainWindow.vala:415 +#: src/Gtk/MainWindow.vala:412 msgid "Forked" msgstr "Двоєний" -#: src/Gtk/MainWindow.vala:415 +#: src/Gtk/MainWindow.vala:412 msgid "Original" msgstr "Оригінал" -#: src/Gtk/MainWindow.vala:444 +#: src/Gtk/MainWindow.vala:441 msgid "Updating kernels" msgstr "Оновлення ядер" -#: src/Gtk/MainWindow.vala:521 +#: src/Gtk/MainWindow.vala:518 msgid "available" msgstr "доступний" -#: src/Gtk/MainWindow.vala:576 src/Gtk/MainWindow.vala:615 -#: src/Gtk/MainWindow.vala:647 +#: src/Gtk/MainWindow.vala:572 src/Gtk/MainWindow.vala:611 +#: src/Gtk/MainWindow.vala:643 msgid "DONE" msgstr "" diff --git a/src/Common/LinuxKernel.vala b/src/Common/LinuxKernel.vala index 90030d2b..6777e07b 100644 --- a/src/Common/LinuxKernel.vala +++ b/src/Common/LinuxKernel.vala @@ -17,6 +17,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { public int version_point = -1; public int version_rc = -1; public string version_extra = ""; + public string version_sort = ""; public Gee.HashMap deb_url_list = new Gee.HashMap(); // assosciated .deb files K=filename,V=url public Gee.HashMap deb_checksum_list = new Gee.HashMap(); // assosciated .deb files K=filename,V=checksum @@ -71,11 +72,11 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { // class initialize public static void initialize() { - new LinuxKernel(""); // instance must be created before setting static members + new LinuxKernel(); // instance must be created before setting static members LINUX_DISTRO = check_distribution(); NATIVE_ARCH = check_package_architecture(); - RUNNING_KERNEL = check_running_kernel().replace("-generic",""); + RUNNING_KERNEL = check_running_kernel(); //.replace("-generic",""); MAIN_INDEX_HTML = CACHE_DIR+"/index.html"; initialize_regex(); @@ -84,10 +85,10 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { // - ./foo.deb vs .//foo.deb // - ./CHECKSUMS vs .//CHECKSUMS // - ./BUILT vs .//status - kernel_last_stable_old_ppa_dirs = new LinuxKernel.from_version("5.6.17"); - kernel_last_unstable_old_ppa_dirs = new LinuxKernel.from_version("5.7-rc7"); + kernel_last_stable_old_ppa_dirs = new LinuxKernel("5.6.17"); + kernel_last_unstable_old_ppa_dirs = new LinuxKernel("5.7-rc7"); - kernel_latest_installed = new LinuxKernel.from_version(RUNNING_KERNEL); + kernel_latest_installed = new LinuxKernel(RUNNING_KERNEL); kernel_oldest_installed = kernel_latest_installed; kernel_latest_available = kernel_latest_installed; } @@ -176,22 +177,9 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { } // constructor - public LinuxKernel(string s) { + public LinuxKernel(string s="") { vprint("LinuxKernel("+s+")",4); - - // extract version numbers from the name split_version_string(s); - - // build url - page_uri = PPA_URI + s; - } - - // this is for non-mainline/distro/local/placeholder k objects with no page on the mainline-ppa site - public LinuxKernel.from_version(string _version="") { - vprint("LinuxKernel.from_version("+_version+")",4); - kver = _version; - split_version_string(kver); - page_uri = ""; } // static @@ -364,12 +352,13 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { // fetch(1) 2 3 4 5 6 MatchInfo mi; + string v; foreach (string l in txt.split("\n")) { - //vprint(l); if (!rex.match(l, 0, out mi)) continue; - var k = new LinuxKernel(mi.fetch(1)); - //vprint("######## "+k.version_main+" major:"+k.version_major.to_string()); + v = mi.fetch(1); + var k = new LinuxKernel(v); if (k.version_major { public static void check_installed() { vprint("check_installed()",2); - var pkg_versions = new Gee.ArrayList(); string msg = ""; if (Package.dpkg_list.size<1) { vprint("dpkg_list empty!"); exit(1); } @@ -396,37 +384,23 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { foreach (var p in Package.dpkg_list) { if (!p.pname.has_prefix("linux-image-")) continue; - //vprint(_("Found installed")+" : "+p.version); - pkg_versions.add(p.version); // temp kernel object for current pkg - var pk = new LinuxKernel.from_version(p.version); - pk.kname = p.pname; - pk.kver = p.version; - pk.is_mainline = false; - pk.is_installed = true; // dpkg_list[] only contains installed packages - pk.set_pkg_list(); // find assosciated packages and fill pkern.pkg_list[] - - msg = _("Found installed")+" : "+p.version; + var pk = new LinuxKernel(p.version); + pk.set_pkg_list(); // find assosciated packages + + msg = _("Found installed")+": "+p.pname; if (pk.is_locked) msg += " (" + _("locked") +")"; vprint(msg); // search the mainline list for matching package name // fill k.pkg_list list of assosciated pkgs - //vprint("###############################################################"); - //vprint("## look for "+p.pname+" "+p.version+" in kernel_list"); bool found = false; foreach (var k in kernel_list) { if (k.is_invalid) continue; - if (k.version_major { } // installed package was not found in the mainline list - // so it's a distro kernel, add to kernel_list with is_mainline = false; + // so it's a distro kernel, add to kernel_list if (!found) { - //vprint("kernel_list.add("+pkern.kname+") (distro kernel)",3); // not always true, --uninstall-old thinks all are - //vprint("not found : kernel is not mainline"); - vprint("kernel_list.add("+pk.version_main+" "+pk.kname+" "+pk.kver+")",2); + pk.kname = p.pname; pk.is_mainline = false; + pk.is_installed = true; if (file_exists(pk.notes_file)) pk.notes = file_read(pk.notes_file); + vprint("kernel_list.add("+pk.version_main+" "+pk.kname+" "+pk.kver+")",2); kernel_list.add(pk); } } - //var kern_running = new LinuxKernel.from_version(RUNNING_KERNEL); kernel_active = null; + // finding the running kernel reliably is hard, because uname + // output does not relaibly match any of the other available + // strings: pkg name, pkg version, ppa site version string // https://github.com/bkw777/mainline/issues/91 + // uname 6.3.4-060304-generic + // version_main sometimes 6.3.4-060304.202305241735 + // version_main othertimes 6.3.4 + // kname linux-image-unsigned-6.3.4-060304-generic + // kver 6.3.4-060304.202305241735 + //t = k.kver[0:k.kver.last_index_of(".")]; // 6.3.4-060304 // kernel_list should contain both mainline and distro kernels now foreach (var k in kernel_list) { - if (k.kver.length < 1) continue; - if (k.kver[0 : k.kver.last_index_of(".")] != RUNNING_KERNEL) continue; + if (!k.kname.has_suffix(RUNNING_KERNEL)) continue; k.is_running = true; - k.is_installed = true; // redundant but whatever + k.is_installed = true; kernel_active = k; break; } @@ -464,7 +445,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { kernel_list.sort((a,b) => { return b.compare_to(a); }); // find the highest & lowest installed versions - kernel_latest_installed = new LinuxKernel.from_version("0"); + kernel_latest_installed = new LinuxKernel(); kernel_oldest_installed = kernel_latest_installed; foreach(var k in kernel_list) { //if (k.is_installed && k.is_mainline) { @@ -541,7 +522,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { kernel_oldest_installed = kernel_latest_installed; foreach (var p in Package.dpkg_list) { if (!p.pname.has_prefix("linux-image-")) continue; - var k = new LinuxKernel.from_version(p.version); + var k = new LinuxKernel(p.version); // This k.is_mainline test is only based on an unreliable semantic used in split_version_string(). // A real test would be to scan kernel_list for matching k.kver or k.name, // but we don't have kernel_list yet and we can't run mk_kernel_list to generate it, @@ -557,7 +538,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { if (kernel_oldest_installed.is_mainline && kernel_oldest_installed.version_major < threshold_major) threshold_major = kernel_oldest_installed.version_major; } - public void split_version_string(string s) { + public void split_version_string(string s="") { version_main = ""; version_major = 0; version_minor = 0; @@ -589,11 +570,15 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { * Actually this whole version string parser is pretty hokey. */ - string t = s; - if (t==null || t.length<1) t = "0"; + string t = s.strip(); if (t.has_prefix("v")) t = t[1: t.length - 1]; if (t.has_suffix("/")) t = t[0: t.length - 1]; + version_main = t; + t = t.split("~")[0]; // old ubuntu versions in dpkg, not seen lately + if (t==null || t=="") t = "0"; + kver = t; + //vprint("\""+t+"\""); // Unsafe. "rc" could be part of intel-arc or something some day. var mi = regex_match("""([0-9]+|rc)""",t); @@ -629,7 +614,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { } if (version_rc>=0) version_extra = "-rc%d".printf(version_rc); - version_main = "%d.%d.%d%s".printf(version_major,version_minor,version_point,version_extra); + version_sort = "%d.%d.%d%s".printf(version_major,version_minor,version_point,version_extra); try { if (!mi.next()) break; } catch (Error e) { break; } @@ -643,8 +628,8 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { // l>r return 1 public int compare_to(LinuxKernel t) { vprint("version_main compare_to("+t.version_main+")",4); - var a = version_main.split_set(".-_"); - var b = t.version_main.split_set(".-_"); + var a = version_sort.split_set(".-_"); + var b = t.version_sort.split_set(".-_"); int x, y, i = -1; while (++i { continue; } - foreach (string f in k.deb_url_list.keys) flist += " '"+k.cache_subdir+"/"+f+"'"; + foreach (string f in k.deb_url_list.keys) flist += " "+k.cache_subdir+"/"+f; } flist = flist.strip(); @@ -1091,8 +1076,6 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { var klist = new Gee.ArrayList(); - var kern_running = new LinuxKernel.from_version(RUNNING_KERNEL); - bool found_running_kernel = false; //vprint("latest_installed: "+kernel_latest_installed.version_main,4); @@ -1101,7 +1084,8 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { foreach(var k in kernel_list) { if (k.is_invalid) continue; if (!k.is_installed) continue; - if (k.version_main == kern_running.version_main) { + + if (k.is_running) { found_running_kernel = true; vprint(k.version_main+" "+"is running.",2); continue; diff --git a/src/Gtk/MainWindow.vala b/src/Gtk/MainWindow.vala index bd15a9f2..a694a953 100644 --- a/src/Gtk/MainWindow.vala +++ b/src/Gtk/MainWindow.vala @@ -259,9 +259,6 @@ public class MainWindow : Window { tm.set(iter, COL.ICON, p); tm.set(iter, COL.VERSION, k.version_main); - //tm.set(iter, COL.VERSION, k.kver); - //tm.set(iter, COL.VERSION, k.kname); - //tm.set(iter, COL.VERSION, k.kname.replace("linux-image-","")); tm.set(iter, COL.LOCKED, k.is_locked); @@ -318,7 +315,7 @@ public class MainWindow : Window { button.clicked.connect(() => { string uri = App.ppa_uri; - if (selected_kernels.size==1 && selected_kernels[0].is_mainline) uri += selected_kernels[0].kname; + if (selected_kernels.size==1 && selected_kernels[0].is_mainline) uri=selected_kernels[0].page_uri; uri_open(uri); }); @@ -545,7 +542,6 @@ public class MainWindow : Window { } vlist = vlist.strip(); if (vlist=="") { vprint("Install: no installable kernels specified"); return; } - vprint("vlist=\""+vlist+"\""); var term = new TerminalWindow.with_parent(this, false, true); string t_dir = create_tmp_dir(); From 9b7ae8aad9aa8669163bc00994dafd5b530f537d Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Wed, 31 May 2023 20:17:09 -0400 Subject: [PATCH 339/567] fix long standing random crash from progress window, hopefully --- .deb_build_number.mak | 4 +- BRANDING.mak | 2 +- debian/changelog | 14 +++ po/de.po | 192 ++++++++++++++----------------- po/el.po | 192 ++++++++++++++----------------- po/es.po | 192 ++++++++++++++----------------- po/fr.po | 192 ++++++++++++++----------------- po/hr.po | 192 ++++++++++++++----------------- po/it.po | 192 ++++++++++++++----------------- po/ko.po | 192 ++++++++++++++----------------- po/messages.pot | 190 ++++++++++++++----------------- po/nl.po | 192 ++++++++++++++----------------- po/pl.po | 192 ++++++++++++++----------------- po/ru.po | 192 ++++++++++++++----------------- po/sv.po | 192 ++++++++++++++----------------- po/tr.po | 192 ++++++++++++++----------------- po/uk.po | 192 ++++++++++++++----------------- src/Common/LinuxKernel.vala | 147 +++++++++++------------- src/Common/Main.vala | 32 ++++-- src/Console/AppConsole.vala | 221 ++++++++++++++++-------------------- src/Gtk/AppGtk.vala | 82 +++++-------- src/Gtk/MainWindow.vala | 97 ++++++++-------- src/Gtk/ProgressWindow.vala | 113 ++++-------------- src/Gtk/SettingsDialog.vala | 10 +- src/Gtk/TerminalWindow.vala | 2 + src/Gtk/l.gtk.vala | 20 +--- src/lib/l.misc.vala | 25 +++- 27 files changed, 1539 insertions(+), 1916 deletions(-) diff --git a/.deb_build_number.mak b/.deb_build_number.mak index 78275aa6..f892c085 100644 --- a/.deb_build_number.mak +++ b/.deb_build_number.mak @@ -1,3 +1,3 @@ # This file is generated by Makefile "make deb_build_number" -DEB_PKG_VERSION := 1.3.3 -DEB_BUILD_NUMBER := 0002 +DEB_PKG_VERSION := 1.3.5 +DEB_BUILD_NUMBER := 0000 diff --git a/BRANDING.mak b/BRANDING.mak index 4bcefde7..3c47621e 100644 --- a/BRANDING.mak +++ b/BRANDING.mak @@ -3,7 +3,7 @@ VERSION_MAJOR = 1 VERSION_MINOR = 3 -VERSION_MICRO = 4 +VERSION_MICRO = 5 BRANDING_SHORTNAME = mainline BRANDING_LONGNAME = Ubuntu Mainline Kernel Installer BRANDING_AUTHORNAME = Brian K. White diff --git a/debian/changelog b/debian/changelog index e5f84b6f..a3aa5cd9 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,17 @@ +mainline (1.3.5) UNRELEASED; urgency=medium + + * Fix a random crash caused by the progress window. + + -- Brian K. White Wed, 31 May 2023 20:03:53 -0400 + +mainline (1.3.4) unstable; urgency=medium + + * fix page_uri (urls behind PPA button) + * more work on how the version strings are stored and compared + * fix uninstall-old not finding running kernel + + -- Brian K. White Tue, 30 May 2023 10:11:54 -0400 + mainline (1.3.3) unstable; urgency=medium * fix threshold_major when show_previous=-1 diff --git a/po/de.po b/po/de.po index 306c90e1..550b08f2 100644 --- a/po/de.po +++ b/po/de.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-30 10:06-0400\n" +"POT-Creation-Date: 2023-05-31 19:56-0400\n" "PO-Revision-Date: 2023-02-20 18:40+0100\n" "Last-Translator: Marvin Meysel \n" "Language-Team: German\n" @@ -37,179 +37,178 @@ msgstr "download der warteschlange" msgid "Fetching individual kernel indexes" msgstr "Abrufen einzelner Kernel-Indizes" -#: src/Common/LinuxKernel.vala:287 +#: src/Common/LinuxKernel.vala:285 msgid "loading downloaded" msgstr "laden von heruntergeladenen Dateien" -#: src/Common/LinuxKernel.vala:322 +#: src/Common/LinuxKernel.vala:320 msgid "Updating from" msgstr "Aktualisieren von" -#: src/Common/LinuxKernel.vala:330 +#: src/Common/LinuxKernel.vala:328 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:333 +#: src/Common/LinuxKernel.vala:331 msgid "FAILED" msgstr "MISSLUNGEN" -#: src/Common/LinuxKernel.vala:392 +#: src/Common/LinuxKernel.vala:390 msgid "Found installed" msgstr "Installiert gefunden" -#: src/Common/LinuxKernel.vala:393 +#: src/Common/LinuxKernel.vala:391 msgid "locked" msgstr "" -#: src/Common/LinuxKernel.vala:477 src/Common/LinuxKernel.vala:1009 -#: src/Common/LinuxKernel.vala:1098 +#: src/Common/LinuxKernel.vala:473 src/Common/LinuxKernel.vala:994 +#: src/Common/LinuxKernel.vala:1083 msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:681 src/Gtk/MainWindow.vala:509 -#: src/Gtk/MainWindow.vala:522 +#: src/Common/LinuxKernel.vala:666 src/Gtk/MainWindow.vala:517 msgid "Running" msgstr "Läuft" -#: src/Common/LinuxKernel.vala:682 +#: src/Common/LinuxKernel.vala:667 msgid "Installed" msgstr "Installiert" -#: src/Common/LinuxKernel.vala:683 +#: src/Common/LinuxKernel.vala:668 msgid "Invalid" msgstr "Ungültig" -#: src/Common/LinuxKernel.vala:768 +#: src/Common/LinuxKernel.vala:753 msgid "Packages Available" msgstr "Verfügbare Pakete" -#: src/Common/LinuxKernel.vala:774 +#: src/Common/LinuxKernel.vala:759 msgid "Packages Installed" msgstr "Installierte Pakete" -#: src/Common/LinuxKernel.vala:799 src/lib/TeeJee.FileSystem.vala:118 +#: src/Common/LinuxKernel.vala:784 src/lib/TeeJee.FileSystem.vala:118 msgid "File not found" msgstr "Datei nicht gefunden " -#: src/Common/LinuxKernel.vala:893 +#: src/Common/LinuxKernel.vala:878 msgid "Available Kernels" msgstr "Verfügbare Kernel" -#: src/Common/LinuxKernel.vala:928 src/Gtk/MainWindow.vala:119 +#: src/Common/LinuxKernel.vala:913 src/Gtk/MainWindow.vala:119 msgid "Kernel" msgstr "Kernel" -#: src/Common/LinuxKernel.vala:928 +#: src/Common/LinuxKernel.vala:913 #, fuzzy msgid "not found" msgstr "Datei nicht gefunden " -#: src/Common/LinuxKernel.vala:935 +#: src/Common/LinuxKernel.vala:920 #, fuzzy msgid "Download: no downloadable kernels specified" msgstr "Befehl nicht angegeben" -#: src/Common/LinuxKernel.vala:955 +#: src/Common/LinuxKernel.vala:940 msgid "enabled" msgstr "ermöglichte" -#: src/Common/LinuxKernel.vala:979 +#: src/Common/LinuxKernel.vala:964 msgid "Downloading" msgstr "Laden" -#: src/Common/LinuxKernel.vala:1004 +#: src/Common/LinuxKernel.vala:989 msgid "is already installed." msgstr "ist bereits installiert." -#: src/Common/LinuxKernel.vala:1014 +#: src/Common/LinuxKernel.vala:999 msgid "download failed." msgstr "" -#: src/Common/LinuxKernel.vala:1022 +#: src/Common/LinuxKernel.vala:1007 #, fuzzy msgid "Install: no installable kernels secified" msgstr "Befehl nicht angegeben" -#: src/Common/LinuxKernel.vala:1034 +#: src/Common/LinuxKernel.vala:1019 msgid "Uninstalling selected kernels" msgstr "Deinstallation des angegebenen Kernels" -#: src/Common/LinuxKernel.vala:1038 +#: src/Common/LinuxKernel.vala:1023 #, fuzzy msgid "Requested" msgstr "angefordert" -#: src/Common/LinuxKernel.vala:1041 +#: src/Common/LinuxKernel.vala:1026 #, fuzzy msgid "Not uninstalling the currently running kernel" msgstr "Den aktuell laufenden Kernel wird nicht deinstalliert" -#: src/Common/LinuxKernel.vala:1046 +#: src/Common/LinuxKernel.vala:1031 msgid "is locked" msgstr "" -#: src/Common/LinuxKernel.vala:1054 +#: src/Common/LinuxKernel.vala:1039 msgid "found" msgstr "gründen" -#: src/Common/LinuxKernel.vala:1058 +#: src/Common/LinuxKernel.vala:1043 msgid "Uninstall: no uninstallable packages found" msgstr "" -#: src/Common/LinuxKernel.vala:1094 +#: src/Common/LinuxKernel.vala:1079 #, fuzzy msgid "is the highest installed version." msgstr "Deinstallieren Sie alle bis auf die höchste installierte Version" -#: src/Common/LinuxKernel.vala:1107 +#: src/Common/LinuxKernel.vala:1092 msgid "Could not find running kernel in list" msgstr "Konnte keinen laufenden Kernel in der Liste finden" -#: src/Common/LinuxKernel.vala:1112 +#: src/Common/LinuxKernel.vala:1097 msgid "Could not find any kernels to uninstall" msgstr "Es konnten keine Kernel zum Deinstallieren gefunden werden" -#: src/Common/LinuxKernel.vala:1120 +#: src/Common/LinuxKernel.vala:1105 msgid "The following kernels will be uninstalled" msgstr "Die folgenden Kernel werden deinstalliert" -#: src/Common/LinuxKernel.vala:1124 +#: src/Common/LinuxKernel.vala:1109 msgid "Continue ?" msgstr "Weiter ?" -#: src/Common/LinuxKernel.vala:1146 src/Console/AppConsole.vala:234 +#: src/Common/LinuxKernel.vala:1131 src/Console/AppConsole.vala:215 msgid "Latest update" msgstr "Neustes Update" -#: src/Common/LinuxKernel.vala:1157 src/Console/AppConsole.vala:241 +#: src/Common/LinuxKernel.vala:1142 src/Console/AppConsole.vala:222 msgid "Latest point update" msgstr "Letzte Punktaktualisierung" -#: src/Common/LinuxKernel.vala:1165 src/Console/AppConsole.vala:246 -#: src/Console/AppConsole.vala:261 +#: src/Common/LinuxKernel.vala:1150 src/Console/AppConsole.vala:227 +#: src/Console/AppConsole.vala:242 msgid "No updates found" msgstr "Keine Updates gefunden" -#: src/Common/LinuxKernel.vala:1174 +#: src/Common/LinuxKernel.vala:1159 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Kernel-Version %s installieren? (j/n):" -#: src/Common/Main.vala:334 +#: src/Common/Main.vala:346 msgid "Called from" msgstr "Angerufen von" -#: src/Common/Main.vala:334 +#: src/Common/Main.vala:346 msgid "at logon" msgstr "beim start" -#: src/Common/Main.vala:335 +#: src/Common/Main.vala:347 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" "Diese Datei wird überschrieben und erneut ausgeführt, wenn Einstellungen in" -#: src/Common/Main.vala:367 +#: src/Common/Main.vala:379 msgid "Notifications are disabled" msgstr "Benachrichtigungen sind deaktiviert" @@ -218,135 +217,120 @@ msgstr "Benachrichtigungen sind deaktiviert" msgid "File not found: %s" msgstr "Datei nicht gefunden: %s" -#: src/Console/AppConsole.vala:43 src/Gtk/AppGtk.vala:137 +#: src/Console/AppConsole.vala:40 src/Gtk/AppGtk.vala:74 msgid "Syntax" msgstr "Syntax" -#: src/Console/AppConsole.vala:45 +#: src/Console/AppConsole.vala:42 msgid "Commands" msgstr "Befehle" -#: src/Console/AppConsole.vala:47 +#: src/Console/AppConsole.vala:44 msgid "Check for kernel updates" msgstr "Nach Kernel-Updates suchen" -#: src/Console/AppConsole.vala:48 +#: src/Console/AppConsole.vala:45 msgid "Check for kernel updates and notify current user" msgstr "" "Prüfung auf Kernel-Updates und Benachrichtigung des aktuellen Benutzers" -#: src/Console/AppConsole.vala:49 +#: src/Console/AppConsole.vala:46 #, fuzzy msgid "List available mainline kernels" msgstr "Alle verfügbaren Mainline-Kernel auflisten" -#: src/Console/AppConsole.vala:50 +#: src/Console/AppConsole.vala:47 msgid "List installed kernels" msgstr "Installierte Kernel auflisten" -#: src/Console/AppConsole.vala:51 +#: src/Console/AppConsole.vala:48 msgid "Install latest mainline kernel" msgstr "Installieren Sie den neuesten Mainline-Kernel" -#: src/Console/AppConsole.vala:52 +#: src/Console/AppConsole.vala:49 #, fuzzy msgid "Install latest point update in the current major version" msgstr "Neueste Punktaktualisierung für die aktuelle Serie installieren" -#: src/Console/AppConsole.vala:53 +#: src/Console/AppConsole.vala:50 #, fuzzy msgid "Install specified kernels" msgstr "Deinstallation des angegebenen Kernels" -#: src/Console/AppConsole.vala:54 +#: src/Console/AppConsole.vala:51 #, fuzzy msgid "Uninstall specified kernels" msgstr "Deinstallation des angegebenen Kernels" -#: src/Console/AppConsole.vala:55 src/Gtk/MainWindow.vala:324 +#: src/Console/AppConsole.vala:52 src/Gtk/MainWindow.vala:324 msgid "Uninstall all but the highest installed version" msgstr "Deinstallieren Sie alle bis auf die höchste installierte Version" -#: src/Console/AppConsole.vala:56 +#: src/Console/AppConsole.vala:53 msgid "Download specified kernels" msgstr "Herunterladen bestimmter Kernel" -#: src/Console/AppConsole.vala:57 +#: src/Console/AppConsole.vala:54 msgid "Delete cached info about available kernels" msgstr "Löschen zwischengespeicherter Informationen über verfügbare Kernel" -#: src/Console/AppConsole.vala:59 src/Gtk/AppGtk.vala:139 +#: src/Console/AppConsole.vala:56 src/Gtk/AppGtk.vala:76 msgid "Options" msgstr "Optionen" -#: src/Console/AppConsole.vala:61 +#: src/Console/AppConsole.vala:58 msgid "Include unstable and RC releases" msgstr "Unstable- und RC-Versionen einschließen" -#: src/Console/AppConsole.vala:62 +#: src/Console/AppConsole.vala:59 msgid "Exclude unstable and RC releases" msgstr "Ausschluss von Unstable- und RC-Veröffentlichungen" -#: src/Console/AppConsole.vala:63 +#: src/Console/AppConsole.vala:60 msgid "Verbosity. Set to n if given, or increment." msgstr "" -#: src/Console/AppConsole.vala:64 +#: src/Console/AppConsole.vala:61 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "Alle Aufforderungen mit Ja beantworten (nicht interaktiver Modus)" -#: src/Console/AppConsole.vala:67 +#: src/Console/AppConsole.vala:64 #, fuzzy msgid "One or more version strings taken from the output of --list" msgstr "Eine Versionszeichenfolge aus der Ausgabe von --list" -#: src/Console/AppConsole.vala:68 +#: src/Console/AppConsole.vala:65 msgid "comma, pipe, or colon-seperated, or quoted space seperated" msgstr "" -#: src/Console/AppConsole.vala:69 +#: src/Console/AppConsole.vala:66 #, fuzzy msgid "Locked kernels and the currently running kernel are ignored" msgstr "Der aktuell laufende Kernel wird immer ignoriert" -#: src/Console/AppConsole.vala:160 src/Gtk/AppGtk.vala:123 +#: src/Console/AppConsole.vala:143 src/Console/AppConsole.vala:200 +#: src/Gtk/AppGtk.vala:108 msgid "Unknown option" msgstr "Unbekannte Option" -#: src/Console/AppConsole.vala:161 src/Console/AppConsole.vala:220 -msgid "Run" -msgstr "Ausführen" - -#: src/Console/AppConsole.vala:161 -msgid "to list all options" -msgstr "um alle Optionen aufzulisten" - -#: src/Console/AppConsole.vala:219 -msgid "Command not specified" -msgstr "Befehl nicht angegeben" - -#: src/Console/AppConsole.vala:220 -msgid "to list all commands" -msgstr "um alle Befehle aufzulisten" - -#: src/Console/AppConsole.vala:255 +#: src/Console/AppConsole.vala:236 msgid "Notifications disabled in settings" msgstr "Benachrichtigungen sind deaktiviert" -#: src/Console/AppConsole.vala:283 +#: src/Console/AppConsole.vala:264 #, c-format msgid "Kernel %s Available" msgstr "Kernel %s verfügbar" -#: src/Console/AppConsole.vala:287 src/Gtk/SettingsDialog.vala:166 +#: src/Console/AppConsole.vala:268 src/Gtk/SettingsDialog.vala:166 msgid "Show" msgstr "Zeigen" -#: src/Console/AppConsole.vala:288 src/Gtk/MainWindow.vala:296 +#: src/Console/AppConsole.vala:269 src/Gtk/MainWindow.vala:296 msgid "Install" msgstr "Installieren" -#: src/Console/AppConsole.vala:291 +#: src/Console/AppConsole.vala:272 msgid "Previously notified" msgstr "Zuvor gemeldet" @@ -386,15 +370,15 @@ msgstr "Dokumentierer" msgid "Third Party Inclusions" msgstr "Einschlüsse von Drittparteien" -#: src/Gtk/AppGtk.vala:137 +#: src/Gtk/AppGtk.vala:74 msgid "options" msgstr "optionen" -#: src/Gtk/AppGtk.vala:141 +#: src/Gtk/AppGtk.vala:78 msgid "Print debug information" msgstr "Zeige Debug Informationen" -#: src/Gtk/AppGtk.vala:142 +#: src/Gtk/AppGtk.vala:79 msgid "Show all options" msgstr "Alle Optionen anzeigen" @@ -442,35 +426,31 @@ msgstr "Über" msgid "Exit" msgstr "Ausgang" -#: src/Gtk/MainWindow.vala:411 +#: src/Gtk/MainWindow.vala:423 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Kernel-Upgrade-Dienstprogramm für Ubuntu-basierte Distributionen" -#: src/Gtk/MainWindow.vala:412 +#: src/Gtk/MainWindow.vala:424 msgid "Forked" msgstr "Gegabelte" -#: src/Gtk/MainWindow.vala:412 +#: src/Gtk/MainWindow.vala:424 msgid "Original" msgstr "Original" -#: src/Gtk/MainWindow.vala:441 +#: src/Gtk/MainWindow.vala:453 msgid "Updating kernels" msgstr "Aktualisieren von Kernels" -#: src/Gtk/MainWindow.vala:518 +#: src/Gtk/MainWindow.vala:521 msgid "available" msgstr "Verfügbar" -#: src/Gtk/MainWindow.vala:572 src/Gtk/MainWindow.vala:611 -#: src/Gtk/MainWindow.vala:643 +#: src/Gtk/MainWindow.vala:571 src/Gtk/MainWindow.vala:610 +#: src/Gtk/MainWindow.vala:644 msgid "DONE" msgstr "" -#: src/Gtk/ProgressWindow.vala:126 src/Gtk/TerminalWindow.vala:151 -msgid "Cancel" -msgstr "Abbrechen" - #: src/Gtk/SettingsDialog.vala:59 msgid "Notification" msgstr "Benachrichtigung" @@ -543,10 +523,10 @@ msgstr "Überprüfen von Prüfsummen mit den PRÜFSUMMEN-Dateien" msgid "Proxy" msgstr "Stellvertreter" -#: src/Gtk/l.gtk.vala:29 -msgid "Missing Icon" -msgstr "Fehlendes Symbol" +#: src/Gtk/TerminalWindow.vala:151 +msgid "Cancel" +msgstr "Abbrechen" -#: src/lib/l.misc.vala:69 +#: src/lib/l.misc.vala:84 msgid "Can not reach site" msgstr "Fehler beim lesen der Datei" diff --git a/po/el.po b/po/el.po index 35faea10..be12e21f 100644 --- a/po/el.po +++ b/po/el.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-30 10:06-0400\n" +"POT-Creation-Date: 2023-05-31 19:56-0400\n" "PO-Revision-Date: 2023-01-10 02:03-0600\n" "Last-Translator: Vasilis Kosmidis \n" "Language-Team: Greek\n" @@ -37,180 +37,179 @@ msgstr "Προσθήκη λήψης στην ουρά" msgid "Fetching individual kernel indexes" msgstr "Λήψη μεμονωμένων ευρετηρίων πυρήνα" -#: src/Common/LinuxKernel.vala:287 +#: src/Common/LinuxKernel.vala:285 msgid "loading downloaded" msgstr "Φόρτωση λήψης" -#: src/Common/LinuxKernel.vala:322 +#: src/Common/LinuxKernel.vala:320 msgid "Updating from" msgstr "Ενημέρωση από" -#: src/Common/LinuxKernel.vala:330 +#: src/Common/LinuxKernel.vala:328 msgid "OK" msgstr "ΟΚ" -#: src/Common/LinuxKernel.vala:333 +#: src/Common/LinuxKernel.vala:331 msgid "FAILED" msgstr "ΑΠΈΤΥΧΕ" -#: src/Common/LinuxKernel.vala:392 +#: src/Common/LinuxKernel.vala:390 msgid "Found installed" msgstr "Βρέθηκε εγκατεστημένο" -#: src/Common/LinuxKernel.vala:393 +#: src/Common/LinuxKernel.vala:391 msgid "locked" msgstr "" -#: src/Common/LinuxKernel.vala:477 src/Common/LinuxKernel.vala:1009 -#: src/Common/LinuxKernel.vala:1098 +#: src/Common/LinuxKernel.vala:473 src/Common/LinuxKernel.vala:994 +#: src/Common/LinuxKernel.vala:1083 msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:681 src/Gtk/MainWindow.vala:509 -#: src/Gtk/MainWindow.vala:522 +#: src/Common/LinuxKernel.vala:666 src/Gtk/MainWindow.vala:517 msgid "Running" msgstr "Ενεργός" -#: src/Common/LinuxKernel.vala:682 +#: src/Common/LinuxKernel.vala:667 msgid "Installed" msgstr "Εγκατεστημένος" -#: src/Common/LinuxKernel.vala:683 +#: src/Common/LinuxKernel.vala:668 msgid "Invalid" msgstr "Άκυρος" -#: src/Common/LinuxKernel.vala:768 +#: src/Common/LinuxKernel.vala:753 msgid "Packages Available" msgstr "Διαθέσιμα πακέτα" -#: src/Common/LinuxKernel.vala:774 +#: src/Common/LinuxKernel.vala:759 msgid "Packages Installed" msgstr "Εγκατεστημένα πακέτα" -#: src/Common/LinuxKernel.vala:799 src/lib/TeeJee.FileSystem.vala:118 +#: src/Common/LinuxKernel.vala:784 src/lib/TeeJee.FileSystem.vala:118 msgid "File not found" msgstr "Το αρχείο δε βρέθηκε" -#: src/Common/LinuxKernel.vala:893 +#: src/Common/LinuxKernel.vala:878 msgid "Available Kernels" msgstr "Διαθέσιμοι πυρήνες" -#: src/Common/LinuxKernel.vala:928 src/Gtk/MainWindow.vala:119 +#: src/Common/LinuxKernel.vala:913 src/Gtk/MainWindow.vala:119 msgid "Kernel" msgstr "Πυρήνας" -#: src/Common/LinuxKernel.vala:928 +#: src/Common/LinuxKernel.vala:913 #, fuzzy msgid "not found" msgstr "Το αρχείο δε βρέθηκε" -#: src/Common/LinuxKernel.vala:935 +#: src/Common/LinuxKernel.vala:920 #, fuzzy msgid "Download: no downloadable kernels specified" msgstr "Η εντολή δεν προσδιορίστηκε" -#: src/Common/LinuxKernel.vala:955 +#: src/Common/LinuxKernel.vala:940 msgid "enabled" msgstr "ενεργοποιημένη" -#: src/Common/LinuxKernel.vala:979 +#: src/Common/LinuxKernel.vala:964 msgid "Downloading" msgstr "Κατέβασμα" -#: src/Common/LinuxKernel.vala:1004 +#: src/Common/LinuxKernel.vala:989 msgid "is already installed." msgstr "είναι ήδη εγκατεστημένο." -#: src/Common/LinuxKernel.vala:1014 +#: src/Common/LinuxKernel.vala:999 msgid "download failed." msgstr "" -#: src/Common/LinuxKernel.vala:1022 +#: src/Common/LinuxKernel.vala:1007 #, fuzzy msgid "Install: no installable kernels secified" msgstr "Η εντολή δεν προσδιορίστηκε" -#: src/Common/LinuxKernel.vala:1034 +#: src/Common/LinuxKernel.vala:1019 msgid "Uninstalling selected kernels" msgstr "Απεγκατάσταση επιλεγμένων πυρήνων" -#: src/Common/LinuxKernel.vala:1038 +#: src/Common/LinuxKernel.vala:1023 #, fuzzy msgid "Requested" msgstr "ζητήθηκε" -#: src/Common/LinuxKernel.vala:1041 +#: src/Common/LinuxKernel.vala:1026 #, fuzzy msgid "Not uninstalling the currently running kernel" msgstr "δεν θα απεγκαταστήσει τον πυρήνα που εκτελείται αυτήν τη στιγμή" -#: src/Common/LinuxKernel.vala:1046 +#: src/Common/LinuxKernel.vala:1031 msgid "is locked" msgstr "" -#: src/Common/LinuxKernel.vala:1054 +#: src/Common/LinuxKernel.vala:1039 msgid "found" msgstr "ιδρύω" -#: src/Common/LinuxKernel.vala:1058 +#: src/Common/LinuxKernel.vala:1043 msgid "Uninstall: no uninstallable packages found" msgstr "" -#: src/Common/LinuxKernel.vala:1094 +#: src/Common/LinuxKernel.vala:1079 #, fuzzy msgid "is the highest installed version." msgstr "Απεγκαταστήστε όλες εκτός από την υψηλότερη εγκατεστημένη έκδοση" -#: src/Common/LinuxKernel.vala:1107 +#: src/Common/LinuxKernel.vala:1092 msgid "Could not find running kernel in list" msgstr "Δεν ήταν δυνατή η εύρεση του πυρήνα που εκτελείται αυτήν τη στιγμή" -#: src/Common/LinuxKernel.vala:1112 +#: src/Common/LinuxKernel.vala:1097 msgid "Could not find any kernels to uninstall" msgstr "Δεν βρέθηκε κανένας πυρήνας για απεγκατάσταση" -#: src/Common/LinuxKernel.vala:1120 +#: src/Common/LinuxKernel.vala:1105 msgid "The following kernels will be uninstalled" msgstr "Θα καταργηθεί η εγκατάσταση των ακόλουθων πυρήνων" -#: src/Common/LinuxKernel.vala:1124 +#: src/Common/LinuxKernel.vala:1109 msgid "Continue ?" msgstr "Συνέχεια;" -#: src/Common/LinuxKernel.vala:1146 src/Console/AppConsole.vala:234 +#: src/Common/LinuxKernel.vala:1131 src/Console/AppConsole.vala:215 msgid "Latest update" msgstr "Τελευταία αναβάθμιση" -#: src/Common/LinuxKernel.vala:1157 src/Console/AppConsole.vala:241 +#: src/Common/LinuxKernel.vala:1142 src/Console/AppConsole.vala:222 msgid "Latest point update" msgstr "Τελευταία ενημέρωση συντήρησης" -#: src/Common/LinuxKernel.vala:1165 src/Console/AppConsole.vala:246 -#: src/Console/AppConsole.vala:261 +#: src/Common/LinuxKernel.vala:1150 src/Console/AppConsole.vala:227 +#: src/Console/AppConsole.vala:242 msgid "No updates found" msgstr "Δεν βρέθηκαν ενημερώσεις" -#: src/Common/LinuxKernel.vala:1174 +#: src/Common/LinuxKernel.vala:1159 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Εγκατάσταση του πυρήνα έκδοσης %s ; (ν/ό):" -#: src/Common/Main.vala:334 +#: src/Common/Main.vala:346 msgid "Called from" msgstr "Κλήθηκε από" -#: src/Common/Main.vala:334 +#: src/Common/Main.vala:346 msgid "at logon" msgstr "κατά την εκκίνηση" -#: src/Common/Main.vala:335 +#: src/Common/Main.vala:347 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" "Αυτό το αρχείο αντικαθίσταται και εκτελείται ξανά κάθε φορά που " "αποθηκεύονται οι ρυθμίσεις στο" -#: src/Common/Main.vala:367 +#: src/Common/Main.vala:379 msgid "Notifications are disabled" msgstr "Οι ειδοποιήσεις είναι απενεργοποιημένες" @@ -219,135 +218,120 @@ msgstr "Οι ειδοποιήσεις είναι απενεργοποιημέν msgid "File not found: %s" msgstr "Το αρχείο δεν βρέθηκε: %s" -#: src/Console/AppConsole.vala:43 src/Gtk/AppGtk.vala:137 +#: src/Console/AppConsole.vala:40 src/Gtk/AppGtk.vala:74 msgid "Syntax" msgstr "Σύνταξη" -#: src/Console/AppConsole.vala:45 +#: src/Console/AppConsole.vala:42 msgid "Commands" msgstr "Εντολές" -#: src/Console/AppConsole.vala:47 +#: src/Console/AppConsole.vala:44 msgid "Check for kernel updates" msgstr "Έλεγχος για ενημερώσεις πυρήνα" -#: src/Console/AppConsole.vala:48 +#: src/Console/AppConsole.vala:45 msgid "Check for kernel updates and notify current user" msgstr "Έλεγχος για ενημερώσεις πυρήνα και ειδοποίηση τρέχοντα χρήστη" -#: src/Console/AppConsole.vala:49 +#: src/Console/AppConsole.vala:46 #, fuzzy msgid "List available mainline kernels" msgstr "Εμφάνιση όλων των διαθέσιμων πυρήνων mainline" -#: src/Console/AppConsole.vala:50 +#: src/Console/AppConsole.vala:47 msgid "List installed kernels" msgstr "Εμφάνιση εγκατεστημένων πυρήνων" -#: src/Console/AppConsole.vala:51 +#: src/Console/AppConsole.vala:48 msgid "Install latest mainline kernel" msgstr "Εγκατάσταση του πιο πρόσφατου πυρήνα mainline" -#: src/Console/AppConsole.vala:52 +#: src/Console/AppConsole.vala:49 #, fuzzy msgid "Install latest point update in the current major version" msgstr "Εγκαταστήστε την τελευταία ενημέρωση συντήρησης για την τρέχουσα σειρά" -#: src/Console/AppConsole.vala:53 +#: src/Console/AppConsole.vala:50 #, fuzzy msgid "Install specified kernels" msgstr "Απεγκατάσταση του καθορισμένου πυρήνα" -#: src/Console/AppConsole.vala:54 +#: src/Console/AppConsole.vala:51 #, fuzzy msgid "Uninstall specified kernels" msgstr "Απεγκατάσταση του καθορισμένου πυρήνα" -#: src/Console/AppConsole.vala:55 src/Gtk/MainWindow.vala:324 +#: src/Console/AppConsole.vala:52 src/Gtk/MainWindow.vala:324 msgid "Uninstall all but the highest installed version" msgstr "Απεγκαταστήστε όλες εκτός από την υψηλότερη εγκατεστημένη έκδοση" -#: src/Console/AppConsole.vala:56 +#: src/Console/AppConsole.vala:53 msgid "Download specified kernels" msgstr "Λήψη των καθορισμένων πυρήνων" -#: src/Console/AppConsole.vala:57 +#: src/Console/AppConsole.vala:54 msgid "Delete cached info about available kernels" msgstr "" "Διαγραφή προσωρινά αποθηκευμένων πληροφοριών σχετικά με διαθέσιμους πυρήνες" -#: src/Console/AppConsole.vala:59 src/Gtk/AppGtk.vala:139 +#: src/Console/AppConsole.vala:56 src/Gtk/AppGtk.vala:76 msgid "Options" msgstr "Επιλογές" -#: src/Console/AppConsole.vala:61 +#: src/Console/AppConsole.vala:58 msgid "Include unstable and RC releases" msgstr "Συμπεριλάβετε ασταθείς και RC εκδόσεις" -#: src/Console/AppConsole.vala:62 +#: src/Console/AppConsole.vala:59 msgid "Exclude unstable and RC releases" msgstr "Εξαίρεση ασταθών και RC εκδόσεων" -#: src/Console/AppConsole.vala:63 +#: src/Console/AppConsole.vala:60 msgid "Verbosity. Set to n if given, or increment." msgstr "" -#: src/Console/AppConsole.vala:64 +#: src/Console/AppConsole.vala:61 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "Υποθέστε Ναι για όλα τα μηνύματα (μη διαδραστική λειτουργία)" -#: src/Console/AppConsole.vala:67 +#: src/Console/AppConsole.vala:64 #, fuzzy msgid "One or more version strings taken from the output of --list" msgstr "Μια συμβολοσειρά έκδοσης που λαμβάνεται από την έξοδο του --list" -#: src/Console/AppConsole.vala:68 +#: src/Console/AppConsole.vala:65 msgid "comma, pipe, or colon-seperated, or quoted space seperated" msgstr "" -#: src/Console/AppConsole.vala:69 +#: src/Console/AppConsole.vala:66 #, fuzzy msgid "Locked kernels and the currently running kernel are ignored" msgstr "Αυτός ο πυρήνας είναι ήδη εγκατεστημένος." -#: src/Console/AppConsole.vala:160 src/Gtk/AppGtk.vala:123 +#: src/Console/AppConsole.vala:143 src/Console/AppConsole.vala:200 +#: src/Gtk/AppGtk.vala:108 msgid "Unknown option" msgstr "Άγνωστη επιλογή" -#: src/Console/AppConsole.vala:161 src/Console/AppConsole.vala:220 -msgid "Run" -msgstr "Τρέξτε" - -#: src/Console/AppConsole.vala:161 -msgid "to list all options" -msgstr "για να παραθέσετε όλες τις επιλογές" - -#: src/Console/AppConsole.vala:219 -msgid "Command not specified" -msgstr "Η εντολή δεν προσδιορίστηκε" - -#: src/Console/AppConsole.vala:220 -msgid "to list all commands" -msgstr "για να παραθέσετε όλες τις εντολές" - -#: src/Console/AppConsole.vala:255 +#: src/Console/AppConsole.vala:236 msgid "Notifications disabled in settings" msgstr "Οι ειδοποιήσεις είναι απενεργοποιημένες στις ρυθμίσεις" -#: src/Console/AppConsole.vala:283 +#: src/Console/AppConsole.vala:264 #, c-format msgid "Kernel %s Available" msgstr "Πυρήνας %s διαθέσιμος" -#: src/Console/AppConsole.vala:287 src/Gtk/SettingsDialog.vala:166 +#: src/Console/AppConsole.vala:268 src/Gtk/SettingsDialog.vala:166 msgid "Show" msgstr "Προβολή" -#: src/Console/AppConsole.vala:288 src/Gtk/MainWindow.vala:296 +#: src/Console/AppConsole.vala:269 src/Gtk/MainWindow.vala:296 msgid "Install" msgstr "Εγκατάσταση" -#: src/Console/AppConsole.vala:291 +#: src/Console/AppConsole.vala:272 msgid "Previously notified" msgstr "Έχει ήδη κοινοποιηθεί" @@ -387,15 +371,15 @@ msgstr "Τεκμηριωτές" msgid "Third Party Inclusions" msgstr "Συμπεριλήψεις τρίτων" -#: src/Gtk/AppGtk.vala:137 +#: src/Gtk/AppGtk.vala:74 msgid "options" msgstr "επιλογές" -#: src/Gtk/AppGtk.vala:141 +#: src/Gtk/AppGtk.vala:78 msgid "Print debug information" msgstr "Εκτύπωση πληροφοριών εντοπισμού σφαλμάτων" -#: src/Gtk/AppGtk.vala:142 +#: src/Gtk/AppGtk.vala:79 msgid "Show all options" msgstr "Εμφάνιση όλων των επιλογών" @@ -443,35 +427,31 @@ msgstr "Σχετικά" msgid "Exit" msgstr "Έξοδος" -#: src/Gtk/MainWindow.vala:411 +#: src/Gtk/MainWindow.vala:423 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Πρόγραμμα αναβάθμισης πυρήνα για διανομές που βασίζονται στο Ubuntu" -#: src/Gtk/MainWindow.vala:412 +#: src/Gtk/MainWindow.vala:424 msgid "Forked" msgstr "Forked" -#: src/Gtk/MainWindow.vala:412 +#: src/Gtk/MainWindow.vala:424 msgid "Original" msgstr "Πρωτότυπο" -#: src/Gtk/MainWindow.vala:441 +#: src/Gtk/MainWindow.vala:453 msgid "Updating kernels" msgstr "Ενημέρωση πυρήνων" -#: src/Gtk/MainWindow.vala:518 +#: src/Gtk/MainWindow.vala:521 msgid "available" msgstr "διαθέσιμος" -#: src/Gtk/MainWindow.vala:572 src/Gtk/MainWindow.vala:611 -#: src/Gtk/MainWindow.vala:643 +#: src/Gtk/MainWindow.vala:571 src/Gtk/MainWindow.vala:610 +#: src/Gtk/MainWindow.vala:644 msgid "DONE" msgstr "" -#: src/Gtk/ProgressWindow.vala:126 src/Gtk/TerminalWindow.vala:151 -msgid "Cancel" -msgstr "Άκυρο" - #: src/Gtk/SettingsDialog.vala:59 msgid "Notification" msgstr "Ειδοποίηση" @@ -544,10 +524,10 @@ msgstr "Επαλήθευση αθροισμάτων ελέγχου με τα α msgid "Proxy" msgstr "Διακομιστής" -#: src/Gtk/l.gtk.vala:29 -msgid "Missing Icon" -msgstr "Ελλείπον εικονίδιο" +#: src/Gtk/TerminalWindow.vala:151 +msgid "Cancel" +msgstr "Άκυρο" -#: src/lib/l.misc.vala:69 +#: src/lib/l.misc.vala:84 msgid "Can not reach site" msgstr "Αποτυχία ανάγνωσης του αρχείου" diff --git a/po/es.po b/po/es.po index 4579af5c..841b73ed 100644 --- a/po/es.po +++ b/po/es.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-30 10:06-0400\n" +"POT-Creation-Date: 2023-05-31 19:56-0400\n" "PO-Revision-Date: 2018-01-03 02:03-0600\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish\n" @@ -37,180 +37,179 @@ msgstr "descarga de colas" msgid "Fetching individual kernel indexes" msgstr "Obtención de índices de kernel individuales" -#: src/Common/LinuxKernel.vala:287 +#: src/Common/LinuxKernel.vala:285 msgid "loading downloaded" msgstr "cargando descargado" -#: src/Common/LinuxKernel.vala:322 +#: src/Common/LinuxKernel.vala:320 msgid "Updating from" msgstr "Actualización desde" -#: src/Common/LinuxKernel.vala:330 +#: src/Common/LinuxKernel.vala:328 msgid "OK" msgstr "Aceptar" -#: src/Common/LinuxKernel.vala:333 +#: src/Common/LinuxKernel.vala:331 msgid "FAILED" msgstr "FRACASADO" -#: src/Common/LinuxKernel.vala:392 +#: src/Common/LinuxKernel.vala:390 msgid "Found installed" msgstr "Encontrado instalado" -#: src/Common/LinuxKernel.vala:393 +#: src/Common/LinuxKernel.vala:391 msgid "locked" msgstr "" -#: src/Common/LinuxKernel.vala:477 src/Common/LinuxKernel.vala:1009 -#: src/Common/LinuxKernel.vala:1098 +#: src/Common/LinuxKernel.vala:473 src/Common/LinuxKernel.vala:994 +#: src/Common/LinuxKernel.vala:1083 msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:681 src/Gtk/MainWindow.vala:509 -#: src/Gtk/MainWindow.vala:522 +#: src/Common/LinuxKernel.vala:666 src/Gtk/MainWindow.vala:517 msgid "Running" msgstr "En ejecución" -#: src/Common/LinuxKernel.vala:682 +#: src/Common/LinuxKernel.vala:667 msgid "Installed" msgstr "Instalado" -#: src/Common/LinuxKernel.vala:683 +#: src/Common/LinuxKernel.vala:668 msgid "Invalid" msgstr "No válido" -#: src/Common/LinuxKernel.vala:768 +#: src/Common/LinuxKernel.vala:753 msgid "Packages Available" msgstr "Paquetes disponibles" -#: src/Common/LinuxKernel.vala:774 +#: src/Common/LinuxKernel.vala:759 msgid "Packages Installed" msgstr "Paquetes instalados" -#: src/Common/LinuxKernel.vala:799 src/lib/TeeJee.FileSystem.vala:118 +#: src/Common/LinuxKernel.vala:784 src/lib/TeeJee.FileSystem.vala:118 msgid "File not found" msgstr "No se encontró el archivo" -#: src/Common/LinuxKernel.vala:893 +#: src/Common/LinuxKernel.vala:878 msgid "Available Kernels" msgstr "Núcleos disponibles" -#: src/Common/LinuxKernel.vala:928 src/Gtk/MainWindow.vala:119 +#: src/Common/LinuxKernel.vala:913 src/Gtk/MainWindow.vala:119 msgid "Kernel" msgstr "Núcleo" -#: src/Common/LinuxKernel.vala:928 +#: src/Common/LinuxKernel.vala:913 #, fuzzy msgid "not found" msgstr "No se encontró el archivo" -#: src/Common/LinuxKernel.vala:935 +#: src/Common/LinuxKernel.vala:920 #, fuzzy msgid "Download: no downloadable kernels specified" msgstr "Coomand no especificado" -#: src/Common/LinuxKernel.vala:955 +#: src/Common/LinuxKernel.vala:940 msgid "enabled" msgstr "habilitado" -#: src/Common/LinuxKernel.vala:979 +#: src/Common/LinuxKernel.vala:964 msgid "Downloading" msgstr "Descargar" -#: src/Common/LinuxKernel.vala:1004 +#: src/Common/LinuxKernel.vala:989 msgid "is already installed." msgstr "ya está instalado." -#: src/Common/LinuxKernel.vala:1014 +#: src/Common/LinuxKernel.vala:999 msgid "download failed." msgstr "" -#: src/Common/LinuxKernel.vala:1022 +#: src/Common/LinuxKernel.vala:1007 #, fuzzy msgid "Install: no installable kernels secified" msgstr "Coomand no especificado" -#: src/Common/LinuxKernel.vala:1034 +#: src/Common/LinuxKernel.vala:1019 msgid "Uninstalling selected kernels" msgstr "Desinstalación de kernels seleccionados" -#: src/Common/LinuxKernel.vala:1038 +#: src/Common/LinuxKernel.vala:1023 #, fuzzy msgid "Requested" msgstr "solicitado" -#: src/Common/LinuxKernel.vala:1041 +#: src/Common/LinuxKernel.vala:1026 #, fuzzy msgid "Not uninstalling the currently running kernel" msgstr "No desinstalará el kernel que se está ejecutando actualmente" -#: src/Common/LinuxKernel.vala:1046 +#: src/Common/LinuxKernel.vala:1031 msgid "is locked" msgstr "" -#: src/Common/LinuxKernel.vala:1054 +#: src/Common/LinuxKernel.vala:1039 msgid "found" msgstr "fundar" -#: src/Common/LinuxKernel.vala:1058 +#: src/Common/LinuxKernel.vala:1043 msgid "Uninstall: no uninstallable packages found" msgstr "" -#: src/Common/LinuxKernel.vala:1094 +#: src/Common/LinuxKernel.vala:1079 #, fuzzy msgid "is the highest installed version." msgstr "Desinstale todas las versiones instaladas excepto la más alta" -#: src/Common/LinuxKernel.vala:1107 +#: src/Common/LinuxKernel.vala:1092 msgid "Could not find running kernel in list" msgstr "No se pudo encontrar el kernel en ejecución en la lista" -#: src/Common/LinuxKernel.vala:1112 +#: src/Common/LinuxKernel.vala:1097 msgid "Could not find any kernels to uninstall" msgstr "No se pudo encontrar ningún kernel para desinstalar" -#: src/Common/LinuxKernel.vala:1120 +#: src/Common/LinuxKernel.vala:1105 msgid "The following kernels will be uninstalled" msgstr "Se desinstalarán los siguientes kernels" -#: src/Common/LinuxKernel.vala:1124 +#: src/Common/LinuxKernel.vala:1109 msgid "Continue ?" msgstr "¿Continuar?" -#: src/Common/LinuxKernel.vala:1146 src/Console/AppConsole.vala:234 +#: src/Common/LinuxKernel.vala:1131 src/Console/AppConsole.vala:215 msgid "Latest update" msgstr "Última actualización" -#: src/Common/LinuxKernel.vala:1157 src/Console/AppConsole.vala:241 +#: src/Common/LinuxKernel.vala:1142 src/Console/AppConsole.vala:222 msgid "Latest point update" msgstr "Última actualización puntual" -#: src/Common/LinuxKernel.vala:1165 src/Console/AppConsole.vala:246 -#: src/Console/AppConsole.vala:261 +#: src/Common/LinuxKernel.vala:1150 src/Console/AppConsole.vala:227 +#: src/Console/AppConsole.vala:242 msgid "No updates found" msgstr "No se encontró ninguna actualización" -#: src/Common/LinuxKernel.vala:1174 +#: src/Common/LinuxKernel.vala:1159 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Instalar la versión del kernel %s? (s/n): " -#: src/Common/Main.vala:334 +#: src/Common/Main.vala:346 msgid "Called from" msgstr "Llamado desde" -#: src/Common/Main.vala:334 +#: src/Common/Main.vala:346 msgid "at logon" msgstr "al inicio" -#: src/Common/Main.vala:335 +#: src/Common/Main.vala:347 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" "Este archivo se sobrescribe y se ejecuta de nuevo cada vez que se guarda la " "configuración en" -#: src/Common/Main.vala:367 +#: src/Common/Main.vala:379 msgid "Notifications are disabled" msgstr "Las notificaciones están deshabilitadas" @@ -219,134 +218,119 @@ msgstr "Las notificaciones están deshabilitadas" msgid "File not found: %s" msgstr "Archivo no encontrado: %s" -#: src/Console/AppConsole.vala:43 src/Gtk/AppGtk.vala:137 +#: src/Console/AppConsole.vala:40 src/Gtk/AppGtk.vala:74 msgid "Syntax" msgstr "Sintaxis" -#: src/Console/AppConsole.vala:45 +#: src/Console/AppConsole.vala:42 msgid "Commands" msgstr "Comandos" -#: src/Console/AppConsole.vala:47 +#: src/Console/AppConsole.vala:44 msgid "Check for kernel updates" msgstr "Buscar actualizaciones del núcleo" -#: src/Console/AppConsole.vala:48 +#: src/Console/AppConsole.vala:45 msgid "Check for kernel updates and notify current user" msgstr "Compruebe las actualizaciones del kernel y notifique al usuario actual" -#: src/Console/AppConsole.vala:49 +#: src/Console/AppConsole.vala:46 #, fuzzy msgid "List available mainline kernels" msgstr "Mostrar todos los núcleos troncales disponibles" -#: src/Console/AppConsole.vala:50 +#: src/Console/AppConsole.vala:47 msgid "List installed kernels" msgstr "Mostrar kernels disponibles" -#: src/Console/AppConsole.vala:51 +#: src/Console/AppConsole.vala:48 msgid "Install latest mainline kernel" msgstr "Instalar kernel troncal especificado" -#: src/Console/AppConsole.vala:52 +#: src/Console/AppConsole.vala:49 #, fuzzy msgid "Install latest point update in the current major version" msgstr "Instalar la actualización de punto más reciente para la serie actual" -#: src/Console/AppConsole.vala:53 +#: src/Console/AppConsole.vala:50 #, fuzzy msgid "Install specified kernels" msgstr "Desinstalar el kernel especificado" -#: src/Console/AppConsole.vala:54 +#: src/Console/AppConsole.vala:51 #, fuzzy msgid "Uninstall specified kernels" msgstr "Desinstalar el kernel especificado" -#: src/Console/AppConsole.vala:55 src/Gtk/MainWindow.vala:324 +#: src/Console/AppConsole.vala:52 src/Gtk/MainWindow.vala:324 msgid "Uninstall all but the highest installed version" msgstr "Desinstale todas las versiones instaladas excepto la más alta" -#: src/Console/AppConsole.vala:56 +#: src/Console/AppConsole.vala:53 msgid "Download specified kernels" msgstr "Descargar kernels especificados" -#: src/Console/AppConsole.vala:57 +#: src/Console/AppConsole.vala:54 msgid "Delete cached info about available kernels" msgstr "Eliminar información almacenada en caché sobre los kernels disponibles" -#: src/Console/AppConsole.vala:59 src/Gtk/AppGtk.vala:139 +#: src/Console/AppConsole.vala:56 src/Gtk/AppGtk.vala:76 msgid "Options" msgstr "Opciones" -#: src/Console/AppConsole.vala:61 +#: src/Console/AppConsole.vala:58 msgid "Include unstable and RC releases" msgstr "Incluye versiones inestables y RC" -#: src/Console/AppConsole.vala:62 +#: src/Console/AppConsole.vala:59 msgid "Exclude unstable and RC releases" msgstr "Excluir versiones inestables y RC" -#: src/Console/AppConsole.vala:63 +#: src/Console/AppConsole.vala:60 msgid "Verbosity. Set to n if given, or increment." msgstr "" -#: src/Console/AppConsole.vala:64 +#: src/Console/AppConsole.vala:61 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "Asumir Sí para todas las solicitudes (modo no interactivo)" -#: src/Console/AppConsole.vala:67 +#: src/Console/AppConsole.vala:64 #, fuzzy msgid "One or more version strings taken from the output of --list" msgstr "Una cadena de versión tomada de la salida de --list" -#: src/Console/AppConsole.vala:68 +#: src/Console/AppConsole.vala:65 msgid "comma, pipe, or colon-seperated, or quoted space seperated" msgstr "" -#: src/Console/AppConsole.vala:69 +#: src/Console/AppConsole.vala:66 #, fuzzy msgid "Locked kernels and the currently running kernel are ignored" msgstr "El kernel que se está ejecutando actualmente siempre será ignorado" -#: src/Console/AppConsole.vala:160 src/Gtk/AppGtk.vala:123 +#: src/Console/AppConsole.vala:143 src/Console/AppConsole.vala:200 +#: src/Gtk/AppGtk.vala:108 msgid "Unknown option" msgstr "Opción desconocida" -#: src/Console/AppConsole.vala:161 src/Console/AppConsole.vala:220 -msgid "Run" -msgstr "En ejecución" - -#: src/Console/AppConsole.vala:161 -msgid "to list all options" -msgstr "para enumerar todas las opciones" - -#: src/Console/AppConsole.vala:219 -msgid "Command not specified" -msgstr "Coomand no especificado" - -#: src/Console/AppConsole.vala:220 -msgid "to list all commands" -msgstr "para enumerar todos los cmmands" - -#: src/Console/AppConsole.vala:255 +#: src/Console/AppConsole.vala:236 msgid "Notifications disabled in settings" msgstr "Notificaciones deshabilitadas en la configuración" -#: src/Console/AppConsole.vala:283 +#: src/Console/AppConsole.vala:264 #, c-format msgid "Kernel %s Available" msgstr "Kernel %s Disponible" -#: src/Console/AppConsole.vala:287 src/Gtk/SettingsDialog.vala:166 +#: src/Console/AppConsole.vala:268 src/Gtk/SettingsDialog.vala:166 msgid "Show" msgstr "Mostrar" -#: src/Console/AppConsole.vala:288 src/Gtk/MainWindow.vala:296 +#: src/Console/AppConsole.vala:269 src/Gtk/MainWindow.vala:296 msgid "Install" msgstr "Instalar" -#: src/Console/AppConsole.vala:291 +#: src/Console/AppConsole.vala:272 msgid "Previously notified" msgstr "Notificado previamente" @@ -386,15 +370,15 @@ msgstr "Documentadores" msgid "Third Party Inclusions" msgstr "Herramientas de Terceros" -#: src/Gtk/AppGtk.vala:137 +#: src/Gtk/AppGtk.vala:74 msgid "options" msgstr "opciones" -#: src/Gtk/AppGtk.vala:141 +#: src/Gtk/AppGtk.vala:78 msgid "Print debug information" msgstr "Mostrar información de depuración" -#: src/Gtk/AppGtk.vala:142 +#: src/Gtk/AppGtk.vala:79 msgid "Show all options" msgstr "Mostrar todas las opciones" @@ -442,36 +426,32 @@ msgstr "Acerca de" msgid "Exit" msgstr "Salida" -#: src/Gtk/MainWindow.vala:411 +#: src/Gtk/MainWindow.vala:423 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "" "Herramienta de renovación de núcleo para distribuciones basadas en Ubuntu" -#: src/Gtk/MainWindow.vala:412 +#: src/Gtk/MainWindow.vala:424 msgid "Forked" msgstr "Bifurcada" -#: src/Gtk/MainWindow.vala:412 +#: src/Gtk/MainWindow.vala:424 msgid "Original" msgstr "Original" -#: src/Gtk/MainWindow.vala:441 +#: src/Gtk/MainWindow.vala:453 msgid "Updating kernels" msgstr "Actualización de kernels" -#: src/Gtk/MainWindow.vala:518 +#: src/Gtk/MainWindow.vala:521 msgid "available" msgstr "disponibles" -#: src/Gtk/MainWindow.vala:572 src/Gtk/MainWindow.vala:611 -#: src/Gtk/MainWindow.vala:643 +#: src/Gtk/MainWindow.vala:571 src/Gtk/MainWindow.vala:610 +#: src/Gtk/MainWindow.vala:644 msgid "DONE" msgstr "" -#: src/Gtk/ProgressWindow.vala:126 src/Gtk/TerminalWindow.vala:151 -msgid "Cancel" -msgstr "Cancelar" - #: src/Gtk/SettingsDialog.vala:59 msgid "Notification" msgstr "Notificación" @@ -544,10 +524,10 @@ msgstr "Verificar sumas de comprobación con los archivos CHECKSUMS" msgid "Proxy" msgstr "Proxy" -#: src/Gtk/l.gtk.vala:29 -msgid "Missing Icon" -msgstr "Falta el icono" +#: src/Gtk/TerminalWindow.vala:151 +msgid "Cancel" +msgstr "Cancelar" -#: src/lib/l.misc.vala:69 +#: src/lib/l.misc.vala:84 msgid "Can not reach site" msgstr "No se puede llegar al sitio" diff --git a/po/fr.po b/po/fr.po index f9e89da9..992a898f 100644 --- a/po/fr.po +++ b/po/fr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-30 10:06-0400\n" +"POT-Creation-Date: 2023-05-31 19:56-0400\n" "PO-Revision-Date: 2018-08-05 15:50+0200\n" "Last-Translator: Yolateng0 \n" "Language-Team: French\n" @@ -37,180 +37,179 @@ msgstr "enqueuing télécharger" msgid "Fetching individual kernel indexes" msgstr "Récupération d'index de noyau individuels" -#: src/Common/LinuxKernel.vala:287 +#: src/Common/LinuxKernel.vala:285 msgid "loading downloaded" msgstr "chargement téléchargé" -#: src/Common/LinuxKernel.vala:322 +#: src/Common/LinuxKernel.vala:320 msgid "Updating from" msgstr "Mise à jour à partir de" -#: src/Common/LinuxKernel.vala:330 +#: src/Common/LinuxKernel.vala:328 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:333 +#: src/Common/LinuxKernel.vala:331 msgid "FAILED" msgstr "RATÉ" -#: src/Common/LinuxKernel.vala:392 +#: src/Common/LinuxKernel.vala:390 msgid "Found installed" msgstr "Trouvé installé" -#: src/Common/LinuxKernel.vala:393 +#: src/Common/LinuxKernel.vala:391 msgid "locked" msgstr "" -#: src/Common/LinuxKernel.vala:477 src/Common/LinuxKernel.vala:1009 -#: src/Common/LinuxKernel.vala:1098 +#: src/Common/LinuxKernel.vala:473 src/Common/LinuxKernel.vala:994 +#: src/Common/LinuxKernel.vala:1083 msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:681 src/Gtk/MainWindow.vala:509 -#: src/Gtk/MainWindow.vala:522 +#: src/Common/LinuxKernel.vala:666 src/Gtk/MainWindow.vala:517 msgid "Running" msgstr "Actuel" -#: src/Common/LinuxKernel.vala:682 +#: src/Common/LinuxKernel.vala:667 msgid "Installed" msgstr "Installé" -#: src/Common/LinuxKernel.vala:683 +#: src/Common/LinuxKernel.vala:668 msgid "Invalid" msgstr "No válido" -#: src/Common/LinuxKernel.vala:768 +#: src/Common/LinuxKernel.vala:753 msgid "Packages Available" msgstr "Paquets Disponibles" -#: src/Common/LinuxKernel.vala:774 +#: src/Common/LinuxKernel.vala:759 msgid "Packages Installed" msgstr "Paquets Installés" -#: src/Common/LinuxKernel.vala:799 src/lib/TeeJee.FileSystem.vala:118 +#: src/Common/LinuxKernel.vala:784 src/lib/TeeJee.FileSystem.vala:118 msgid "File not found" msgstr "Fichier non trouvé" -#: src/Common/LinuxKernel.vala:893 +#: src/Common/LinuxKernel.vala:878 msgid "Available Kernels" msgstr "Noyaux Disponibles" -#: src/Common/LinuxKernel.vala:928 src/Gtk/MainWindow.vala:119 +#: src/Common/LinuxKernel.vala:913 src/Gtk/MainWindow.vala:119 msgid "Kernel" msgstr "Noyau" -#: src/Common/LinuxKernel.vala:928 +#: src/Common/LinuxKernel.vala:913 #, fuzzy msgid "not found" msgstr "Fichier non trouvé" -#: src/Common/LinuxKernel.vala:935 +#: src/Common/LinuxKernel.vala:920 #, fuzzy msgid "Download: no downloadable kernels specified" msgstr "Pas de commande fournie" -#: src/Common/LinuxKernel.vala:955 +#: src/Common/LinuxKernel.vala:940 msgid "enabled" msgstr "activé" -#: src/Common/LinuxKernel.vala:979 +#: src/Common/LinuxKernel.vala:964 msgid "Downloading" msgstr "Téléchargement" -#: src/Common/LinuxKernel.vala:1004 +#: src/Common/LinuxKernel.vala:989 msgid "is already installed." msgstr "est déjà installé." -#: src/Common/LinuxKernel.vala:1014 +#: src/Common/LinuxKernel.vala:999 msgid "download failed." msgstr "" -#: src/Common/LinuxKernel.vala:1022 +#: src/Common/LinuxKernel.vala:1007 #, fuzzy msgid "Install: no installable kernels secified" msgstr "Pas de commande fournie" -#: src/Common/LinuxKernel.vala:1034 +#: src/Common/LinuxKernel.vala:1019 msgid "Uninstalling selected kernels" msgstr "Désinstallation des noyaux sélectionnés" -#: src/Common/LinuxKernel.vala:1038 +#: src/Common/LinuxKernel.vala:1023 #, fuzzy msgid "Requested" msgstr "Demandé" -#: src/Common/LinuxKernel.vala:1041 +#: src/Common/LinuxKernel.vala:1026 #, fuzzy msgid "Not uninstalling the currently running kernel" msgstr "Ne pas désinstaller le noyau en cours d'exécution" -#: src/Common/LinuxKernel.vala:1046 +#: src/Common/LinuxKernel.vala:1031 msgid "is locked" msgstr "" -#: src/Common/LinuxKernel.vala:1054 +#: src/Common/LinuxKernel.vala:1039 msgid "found" msgstr "fonder" -#: src/Common/LinuxKernel.vala:1058 +#: src/Common/LinuxKernel.vala:1043 msgid "Uninstall: no uninstallable packages found" msgstr "" -#: src/Common/LinuxKernel.vala:1094 +#: src/Common/LinuxKernel.vala:1079 #, fuzzy msgid "is the highest installed version." msgstr "Désinstallez toutes le version installées, sauf la plus élevée" -#: src/Common/LinuxKernel.vala:1107 +#: src/Common/LinuxKernel.vala:1092 msgid "Could not find running kernel in list" msgstr "Impossible de trouver le noyau en cours d'exécution dans la liste" -#: src/Common/LinuxKernel.vala:1112 +#: src/Common/LinuxKernel.vala:1097 msgid "Could not find any kernels to uninstall" msgstr "Impossible de trouver des noyaux à désinstaller" -#: src/Common/LinuxKernel.vala:1120 +#: src/Common/LinuxKernel.vala:1105 msgid "The following kernels will be uninstalled" msgstr "Les noyaux suivants seront désinstallés" -#: src/Common/LinuxKernel.vala:1124 +#: src/Common/LinuxKernel.vala:1109 msgid "Continue ?" msgstr "Reprendre ?" -#: src/Common/LinuxKernel.vala:1146 src/Console/AppConsole.vala:234 +#: src/Common/LinuxKernel.vala:1131 src/Console/AppConsole.vala:215 msgid "Latest update" msgstr "Dernière mise à jour" -#: src/Common/LinuxKernel.vala:1157 src/Console/AppConsole.vala:241 +#: src/Common/LinuxKernel.vala:1142 src/Console/AppConsole.vala:222 msgid "Latest point update" msgstr "Dernière mise à jour mineure" -#: src/Common/LinuxKernel.vala:1165 src/Console/AppConsole.vala:246 -#: src/Console/AppConsole.vala:261 +#: src/Common/LinuxKernel.vala:1150 src/Console/AppConsole.vala:227 +#: src/Console/AppConsole.vala:242 msgid "No updates found" msgstr "Aucune mise à jour disponible" -#: src/Common/LinuxKernel.vala:1174 +#: src/Common/LinuxKernel.vala:1159 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Installer le noyau en version %s ? (y/n): " -#: src/Common/Main.vala:334 +#: src/Common/Main.vala:346 msgid "Called from" msgstr "Appelé à partir de" -#: src/Common/Main.vala:334 +#: src/Common/Main.vala:346 msgid "at logon" msgstr "au démarrage" -#: src/Common/Main.vala:335 +#: src/Common/Main.vala:347 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" "Ce fichier est écrasé et exécuté à nouveau chaque fois que les paramètres " "sont enregistrés dans" -#: src/Common/Main.vala:367 +#: src/Common/Main.vala:379 msgid "Notifications are disabled" msgstr "Les notifications sont désactivées" @@ -219,134 +218,119 @@ msgstr "Les notifications sont désactivées" msgid "File not found: %s" msgstr "Fichier introuvable : %s" -#: src/Console/AppConsole.vala:43 src/Gtk/AppGtk.vala:137 +#: src/Console/AppConsole.vala:40 src/Gtk/AppGtk.vala:74 msgid "Syntax" msgstr "Syntaxe" -#: src/Console/AppConsole.vala:45 +#: src/Console/AppConsole.vala:42 msgid "Commands" msgstr "Commandes" -#: src/Console/AppConsole.vala:47 +#: src/Console/AppConsole.vala:44 msgid "Check for kernel updates" msgstr "Vérifier les mises à jour de noyau" -#: src/Console/AppConsole.vala:48 +#: src/Console/AppConsole.vala:45 msgid "Check for kernel updates and notify current user" msgstr "Vérifier les mises à jour de noyau et notifier l'utilisateur" -#: src/Console/AppConsole.vala:49 +#: src/Console/AppConsole.vala:46 #, fuzzy msgid "List available mainline kernels" msgstr "Lister tous les noyaux mainline disponibles" -#: src/Console/AppConsole.vala:50 +#: src/Console/AppConsole.vala:47 msgid "List installed kernels" msgstr "Lister les noyaux installés" -#: src/Console/AppConsole.vala:51 +#: src/Console/AppConsole.vala:48 msgid "Install latest mainline kernel" msgstr "Installer le dernier noyau mainline" -#: src/Console/AppConsole.vala:52 +#: src/Console/AppConsole.vala:49 #, fuzzy msgid "Install latest point update in the current major version" msgstr "Installer la dernière version mineure pour la série courante" -#: src/Console/AppConsole.vala:53 +#: src/Console/AppConsole.vala:50 #, fuzzy msgid "Install specified kernels" msgstr "Désinstaller le noyau spécifié" -#: src/Console/AppConsole.vala:54 +#: src/Console/AppConsole.vala:51 #, fuzzy msgid "Uninstall specified kernels" msgstr "Désinstaller le noyau spécifié" -#: src/Console/AppConsole.vala:55 src/Gtk/MainWindow.vala:324 +#: src/Console/AppConsole.vala:52 src/Gtk/MainWindow.vala:324 msgid "Uninstall all but the highest installed version" msgstr "Désinstallez toutes le version installées, sauf la plus élevée" -#: src/Console/AppConsole.vala:56 +#: src/Console/AppConsole.vala:53 msgid "Download specified kernels" msgstr "Télécharger les noyaux spécifiés" -#: src/Console/AppConsole.vala:57 +#: src/Console/AppConsole.vala:54 msgid "Delete cached info about available kernels" msgstr "Supprimer les informations mises en cache sur les noyaux disponibles" -#: src/Console/AppConsole.vala:59 src/Gtk/AppGtk.vala:139 +#: src/Console/AppConsole.vala:56 src/Gtk/AppGtk.vala:76 msgid "Options" msgstr "Options" -#: src/Console/AppConsole.vala:61 +#: src/Console/AppConsole.vala:58 msgid "Include unstable and RC releases" msgstr "Inclure les versions instables et RC" -#: src/Console/AppConsole.vala:62 +#: src/Console/AppConsole.vala:59 msgid "Exclude unstable and RC releases" msgstr "Exclure les versions instables et RC" -#: src/Console/AppConsole.vala:63 +#: src/Console/AppConsole.vala:60 msgid "Verbosity. Set to n if given, or increment." msgstr "" -#: src/Console/AppConsole.vala:64 +#: src/Console/AppConsole.vala:61 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "Supposons Oui pour toutes les invites (mode non interactif)" -#: src/Console/AppConsole.vala:67 +#: src/Console/AppConsole.vala:64 #, fuzzy msgid "One or more version strings taken from the output of --list" msgstr "Une version prise du resultat de --list" -#: src/Console/AppConsole.vala:68 +#: src/Console/AppConsole.vala:65 msgid "comma, pipe, or colon-seperated, or quoted space seperated" msgstr "" -#: src/Console/AppConsole.vala:69 +#: src/Console/AppConsole.vala:66 #, fuzzy msgid "Locked kernels and the currently running kernel are ignored" msgstr "Le noyau en cours d'exécution sera toujours ignoré" -#: src/Console/AppConsole.vala:160 src/Gtk/AppGtk.vala:123 +#: src/Console/AppConsole.vala:143 src/Console/AppConsole.vala:200 +#: src/Gtk/AppGtk.vala:108 msgid "Unknown option" msgstr "Option inconnue" -#: src/Console/AppConsole.vala:161 src/Console/AppConsole.vala:220 -msgid "Run" -msgstr "Executez" - -#: src/Console/AppConsole.vala:161 -msgid "to list all options" -msgstr "pour afficher toutes les options" - -#: src/Console/AppConsole.vala:219 -msgid "Command not specified" -msgstr "Pas de commande fournie" - -#: src/Console/AppConsole.vala:220 -msgid "to list all commands" -msgstr "pour afficher toutes les commandes" - -#: src/Console/AppConsole.vala:255 +#: src/Console/AppConsole.vala:236 msgid "Notifications disabled in settings" msgstr "Notifications désactivées dans les paramètres" -#: src/Console/AppConsole.vala:283 +#: src/Console/AppConsole.vala:264 #, c-format msgid "Kernel %s Available" msgstr "Paquet %s disponibles" -#: src/Console/AppConsole.vala:287 src/Gtk/SettingsDialog.vala:166 +#: src/Console/AppConsole.vala:268 src/Gtk/SettingsDialog.vala:166 msgid "Show" msgstr "Montrer" -#: src/Console/AppConsole.vala:288 src/Gtk/MainWindow.vala:296 +#: src/Console/AppConsole.vala:269 src/Gtk/MainWindow.vala:296 msgid "Install" msgstr "Installer" -#: src/Console/AppConsole.vala:291 +#: src/Console/AppConsole.vala:272 msgid "Previously notified" msgstr "Précédemment notifié" @@ -386,15 +370,15 @@ msgstr "Documentalistes" msgid "Third Party Inclusions" msgstr "Dépendances Tierces" -#: src/Gtk/AppGtk.vala:137 +#: src/Gtk/AppGtk.vala:74 msgid "options" msgstr "options" -#: src/Gtk/AppGtk.vala:141 +#: src/Gtk/AppGtk.vala:78 msgid "Print debug information" msgstr "Afficher les informations de débogage" -#: src/Gtk/AppGtk.vala:142 +#: src/Gtk/AppGtk.vala:79 msgid "Show all options" msgstr "Afficher toutes les options" @@ -442,37 +426,33 @@ msgstr "À propos" msgid "Exit" msgstr "Sortie" -#: src/Gtk/MainWindow.vala:411 +#: src/Gtk/MainWindow.vala:423 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "" "Utilitaire de mise à niveau des noyaux pour les distributions basées sur " "Ubuntu" -#: src/Gtk/MainWindow.vala:412 +#: src/Gtk/MainWindow.vala:424 msgid "Forked" msgstr "Forkée" -#: src/Gtk/MainWindow.vala:412 +#: src/Gtk/MainWindow.vala:424 msgid "Original" msgstr "Originale" -#: src/Gtk/MainWindow.vala:441 +#: src/Gtk/MainWindow.vala:453 msgid "Updating kernels" msgstr "Mise à jour des noyaux" -#: src/Gtk/MainWindow.vala:518 +#: src/Gtk/MainWindow.vala:521 msgid "available" msgstr "disponible" -#: src/Gtk/MainWindow.vala:572 src/Gtk/MainWindow.vala:611 -#: src/Gtk/MainWindow.vala:643 +#: src/Gtk/MainWindow.vala:571 src/Gtk/MainWindow.vala:610 +#: src/Gtk/MainWindow.vala:644 msgid "DONE" msgstr "" -#: src/Gtk/ProgressWindow.vala:126 src/Gtk/TerminalWindow.vala:151 -msgid "Cancel" -msgstr "Annuler" - #: src/Gtk/SettingsDialog.vala:59 msgid "Notification" msgstr "Notification" @@ -545,10 +525,10 @@ msgstr "Vérifier les sommes de contrôle avec les fichiers CHECKSUMS" msgid "Proxy" msgstr "Proxy" -#: src/Gtk/l.gtk.vala:29 -msgid "Missing Icon" -msgstr "Icône introuvable" +#: src/Gtk/TerminalWindow.vala:151 +msgid "Cancel" +msgstr "Annuler" -#: src/lib/l.misc.vala:69 +#: src/lib/l.misc.vala:84 msgid "Can not reach site" msgstr "No se puede llegar al sitio" diff --git a/po/hr.po b/po/hr.po index abc015fa..cbba4200 100644 --- a/po/hr.po +++ b/po/hr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-30 10:06-0400\n" +"POT-Creation-Date: 2023-05-31 19:56-0400\n" "PO-Revision-Date: 2022-09-22 12:13+0200\n" "Last-Translator: gogo \n" "Language-Team: Croatian\n" @@ -37,179 +37,178 @@ msgstr "preuzimanje u redu čekanja" msgid "Fetching individual kernel indexes" msgstr "Dohvaćanje pojedinačnih indeksa kernel" -#: src/Common/LinuxKernel.vala:287 +#: src/Common/LinuxKernel.vala:285 msgid "loading downloaded" msgstr "učitavanje preuzeto" -#: src/Common/LinuxKernel.vala:322 +#: src/Common/LinuxKernel.vala:320 msgid "Updating from" msgstr "Ažuriranje iz" -#: src/Common/LinuxKernel.vala:330 +#: src/Common/LinuxKernel.vala:328 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:333 +#: src/Common/LinuxKernel.vala:331 msgid "FAILED" msgstr "NIJE USPIO" -#: src/Common/LinuxKernel.vala:392 +#: src/Common/LinuxKernel.vala:390 msgid "Found installed" msgstr "Pronađeno instalirano" -#: src/Common/LinuxKernel.vala:393 +#: src/Common/LinuxKernel.vala:391 msgid "locked" msgstr "" -#: src/Common/LinuxKernel.vala:477 src/Common/LinuxKernel.vala:1009 -#: src/Common/LinuxKernel.vala:1098 +#: src/Common/LinuxKernel.vala:473 src/Common/LinuxKernel.vala:994 +#: src/Common/LinuxKernel.vala:1083 msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:681 src/Gtk/MainWindow.vala:509 -#: src/Gtk/MainWindow.vala:522 +#: src/Common/LinuxKernel.vala:666 src/Gtk/MainWindow.vala:517 msgid "Running" msgstr "Pokrenuto" -#: src/Common/LinuxKernel.vala:682 +#: src/Common/LinuxKernel.vala:667 msgid "Installed" msgstr "Instalirano" -#: src/Common/LinuxKernel.vala:683 +#: src/Common/LinuxKernel.vala:668 msgid "Invalid" msgstr "Érvénytelen" -#: src/Common/LinuxKernel.vala:768 +#: src/Common/LinuxKernel.vala:753 msgid "Packages Available" msgstr "Dostupni Paketi" -#: src/Common/LinuxKernel.vala:774 +#: src/Common/LinuxKernel.vala:759 msgid "Packages Installed" msgstr "Instalirani paketi" -#: src/Common/LinuxKernel.vala:799 src/lib/TeeJee.FileSystem.vala:118 +#: src/Common/LinuxKernel.vala:784 src/lib/TeeJee.FileSystem.vala:118 msgid "File not found" msgstr "Datoteka nije pronađena" -#: src/Common/LinuxKernel.vala:893 +#: src/Common/LinuxKernel.vala:878 msgid "Available Kernels" msgstr "Dostupni kerneli" -#: src/Common/LinuxKernel.vala:928 src/Gtk/MainWindow.vala:119 +#: src/Common/LinuxKernel.vala:913 src/Gtk/MainWindow.vala:119 msgid "Kernel" msgstr "Kernel" -#: src/Common/LinuxKernel.vala:928 +#: src/Common/LinuxKernel.vala:913 #, fuzzy msgid "not found" msgstr "Datoteka nije pronađena" -#: src/Common/LinuxKernel.vala:935 +#: src/Common/LinuxKernel.vala:920 #, fuzzy msgid "Download: no downloadable kernels specified" msgstr "Naredba nije navedena" -#: src/Common/LinuxKernel.vala:955 +#: src/Common/LinuxKernel.vala:940 msgid "enabled" msgstr "omogućen" -#: src/Common/LinuxKernel.vala:979 +#: src/Common/LinuxKernel.vala:964 msgid "Downloading" msgstr "Učitavanje" -#: src/Common/LinuxKernel.vala:1004 +#: src/Common/LinuxKernel.vala:989 msgid "is already installed." msgstr "je već instaliran." -#: src/Common/LinuxKernel.vala:1014 +#: src/Common/LinuxKernel.vala:999 msgid "download failed." msgstr "" -#: src/Common/LinuxKernel.vala:1022 +#: src/Common/LinuxKernel.vala:1007 #, fuzzy msgid "Install: no installable kernels secified" msgstr "Naredba nije navedena" -#: src/Common/LinuxKernel.vala:1034 +#: src/Common/LinuxKernel.vala:1019 msgid "Uninstalling selected kernels" msgstr "Deinstaliraj određene kernele" -#: src/Common/LinuxKernel.vala:1038 +#: src/Common/LinuxKernel.vala:1023 #, fuzzy msgid "Requested" msgstr "Zatražio" -#: src/Common/LinuxKernel.vala:1041 +#: src/Common/LinuxKernel.vala:1026 #, fuzzy msgid "Not uninstalling the currently running kernel" msgstr "ne deinstaliranje trenutno pokrenute kernel" -#: src/Common/LinuxKernel.vala:1046 +#: src/Common/LinuxKernel.vala:1031 msgid "is locked" msgstr "" -#: src/Common/LinuxKernel.vala:1054 +#: src/Common/LinuxKernel.vala:1039 msgid "found" msgstr "pronađen" -#: src/Common/LinuxKernel.vala:1058 +#: src/Common/LinuxKernel.vala:1043 msgid "Uninstall: no uninstallable packages found" msgstr "" -#: src/Common/LinuxKernel.vala:1094 +#: src/Common/LinuxKernel.vala:1079 #, fuzzy msgid "is the highest installed version." msgstr "Deinstaliraj sve osim najnovije instalirane verzije" -#: src/Common/LinuxKernel.vala:1107 +#: src/Common/LinuxKernel.vala:1092 msgid "Could not find running kernel in list" msgstr "Nije moguće pronaći pokrenutu kernel na popisu" -#: src/Common/LinuxKernel.vala:1112 +#: src/Common/LinuxKernel.vala:1097 msgid "Could not find any kernels to uninstall" msgstr "Nema pronađenih kernela za deinstaliranje" -#: src/Common/LinuxKernel.vala:1120 +#: src/Common/LinuxKernel.vala:1105 msgid "The following kernels will be uninstalled" msgstr "Deinstalirat će se sljedeće kerneli" -#: src/Common/LinuxKernel.vala:1124 +#: src/Common/LinuxKernel.vala:1109 msgid "Continue ?" msgstr "Nastavi?" -#: src/Common/LinuxKernel.vala:1146 src/Console/AppConsole.vala:234 +#: src/Common/LinuxKernel.vala:1131 src/Console/AppConsole.vala:215 msgid "Latest update" msgstr "Najnovija nadopuna" -#: src/Common/LinuxKernel.vala:1157 src/Console/AppConsole.vala:241 +#: src/Common/LinuxKernel.vala:1142 src/Console/AppConsole.vala:222 msgid "Latest point update" msgstr "Najnovija ciljana nadopuna" -#: src/Common/LinuxKernel.vala:1165 src/Console/AppConsole.vala:246 -#: src/Console/AppConsole.vala:261 +#: src/Common/LinuxKernel.vala:1150 src/Console/AppConsole.vala:227 +#: src/Console/AppConsole.vala:242 msgid "No updates found" msgstr "Nema pronađenih nadopuna" -#: src/Common/LinuxKernel.vala:1174 +#: src/Common/LinuxKernel.vala:1159 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Instaliraj kernel inačice %s ? (d/n): " -#: src/Common/Main.vala:334 +#: src/Common/Main.vala:346 msgid "Called from" msgstr "Pozvano od" -#: src/Common/Main.vala:334 +#: src/Common/Main.vala:346 msgid "at logon" msgstr "indításkor" -#: src/Common/Main.vala:335 +#: src/Common/Main.vala:347 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" "Ova se datoteka prepisuje i ponovno izvršava kad god se postavke spremaju u" -#: src/Common/Main.vala:367 +#: src/Common/Main.vala:379 msgid "Notifications are disabled" msgstr "Obavijesti su onemogućene" @@ -218,134 +217,119 @@ msgstr "Obavijesti su onemogućene" msgid "File not found: %s" msgstr "Datoteka nije pronađena: %s" -#: src/Console/AppConsole.vala:43 src/Gtk/AppGtk.vala:137 +#: src/Console/AppConsole.vala:40 src/Gtk/AppGtk.vala:74 msgid "Syntax" msgstr "Sintaksa" -#: src/Console/AppConsole.vala:45 +#: src/Console/AppConsole.vala:42 msgid "Commands" msgstr "Naredbe" -#: src/Console/AppConsole.vala:47 +#: src/Console/AppConsole.vala:44 msgid "Check for kernel updates" msgstr "Provjeri nadopune kernela" -#: src/Console/AppConsole.vala:48 +#: src/Console/AppConsole.vala:45 msgid "Check for kernel updates and notify current user" msgstr "Provjeri nadopune kernela i obavijesti trenutnog korisnika" -#: src/Console/AppConsole.vala:49 +#: src/Console/AppConsole.vala:46 #, fuzzy msgid "List available mainline kernels" msgstr "Prikaži sve mainline kernele" -#: src/Console/AppConsole.vala:50 +#: src/Console/AppConsole.vala:47 msgid "List installed kernels" msgstr "Prikaži instalirane kernele" -#: src/Console/AppConsole.vala:51 +#: src/Console/AppConsole.vala:48 msgid "Install latest mainline kernel" msgstr "Instaliraj najnoviji mainline kernel" -#: src/Console/AppConsole.vala:52 +#: src/Console/AppConsole.vala:49 #, fuzzy msgid "Install latest point update in the current major version" msgstr "Instaliraj najnoviju ciljanu nadopunu za trenutnu seriju" -#: src/Console/AppConsole.vala:53 +#: src/Console/AppConsole.vala:50 #, fuzzy msgid "Install specified kernels" msgstr "Deinstaliraj određene kernele" -#: src/Console/AppConsole.vala:54 +#: src/Console/AppConsole.vala:51 #, fuzzy msgid "Uninstall specified kernels" msgstr "Deinstaliraj određene kernele" -#: src/Console/AppConsole.vala:55 src/Gtk/MainWindow.vala:324 +#: src/Console/AppConsole.vala:52 src/Gtk/MainWindow.vala:324 msgid "Uninstall all but the highest installed version" msgstr "Deinstaliraj sve osim najnovije instalirane verzije" -#: src/Console/AppConsole.vala:56 +#: src/Console/AppConsole.vala:53 msgid "Download specified kernels" msgstr "Preuzmi određene kernele" -#: src/Console/AppConsole.vala:57 +#: src/Console/AppConsole.vala:54 msgid "Delete cached info about available kernels" msgstr "Brisanje predmemoriranih podataka o dostupnim jezgrama" -#: src/Console/AppConsole.vala:59 src/Gtk/AppGtk.vala:139 +#: src/Console/AppConsole.vala:56 src/Gtk/AppGtk.vala:76 msgid "Options" msgstr "Mogućnosti" -#: src/Console/AppConsole.vala:61 +#: src/Console/AppConsole.vala:58 msgid "Include unstable and RC releases" msgstr "Uključivati nestabilne i RC kernele" -#: src/Console/AppConsole.vala:62 +#: src/Console/AppConsole.vala:59 msgid "Exclude unstable and RC releases" msgstr "Isključivati nestabilne i RC izdanja" -#: src/Console/AppConsole.vala:63 +#: src/Console/AppConsole.vala:60 msgid "Verbosity. Set to n if given, or increment." msgstr "" -#: src/Console/AppConsole.vala:64 +#: src/Console/AppConsole.vala:61 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "Pretpostavi Da za sve upite (neinteraktivan način rada)" -#: src/Console/AppConsole.vala:67 +#: src/Console/AppConsole.vala:64 #, fuzzy msgid "One or more version strings taken from the output of --list" msgstr "Izraz inačice uzet iz zapisa --list" -#: src/Console/AppConsole.vala:68 +#: src/Console/AppConsole.vala:65 msgid "comma, pipe, or colon-seperated, or quoted space seperated" msgstr "" -#: src/Console/AppConsole.vala:69 +#: src/Console/AppConsole.vala:66 #, fuzzy msgid "Locked kernels and the currently running kernel are ignored" msgstr "Trenutno pokrenuta jezgra uvijek će se zanemariti" -#: src/Console/AppConsole.vala:160 src/Gtk/AppGtk.vala:123 +#: src/Console/AppConsole.vala:143 src/Console/AppConsole.vala:200 +#: src/Gtk/AppGtk.vala:108 msgid "Unknown option" msgstr "Nepoznata mogućnost" -#: src/Console/AppConsole.vala:161 src/Console/AppConsole.vala:220 -msgid "Run" -msgstr "Pokreni" - -#: src/Console/AppConsole.vala:161 -msgid "to list all options" -msgstr "za prikaz svih mogućnosti" - -#: src/Console/AppConsole.vala:219 -msgid "Command not specified" -msgstr "Naredba nije navedena" - -#: src/Console/AppConsole.vala:220 -msgid "to list all commands" -msgstr "za prikaz svih mogućnosti" - -#: src/Console/AppConsole.vala:255 +#: src/Console/AppConsole.vala:236 msgid "Notifications disabled in settings" msgstr "Obavijesti onemogućene u postavkama" -#: src/Console/AppConsole.vala:283 +#: src/Console/AppConsole.vala:264 #, c-format msgid "Kernel %s Available" msgstr "Kernel %s je dostupan" -#: src/Console/AppConsole.vala:287 src/Gtk/SettingsDialog.vala:166 +#: src/Console/AppConsole.vala:268 src/Gtk/SettingsDialog.vala:166 msgid "Show" msgstr "Prikaži" -#: src/Console/AppConsole.vala:288 src/Gtk/MainWindow.vala:296 +#: src/Console/AppConsole.vala:269 src/Gtk/MainWindow.vala:296 msgid "Install" msgstr "Instaliraj" -#: src/Console/AppConsole.vala:291 +#: src/Console/AppConsole.vala:272 msgid "Previously notified" msgstr "Prethodno prijavljeno" @@ -385,15 +369,15 @@ msgstr "Autori dokumentacije" msgid "Third Party Inclusions" msgstr "Uključene treće strane" -#: src/Gtk/AppGtk.vala:137 +#: src/Gtk/AppGtk.vala:74 msgid "options" msgstr "mogućnosti" -#: src/Gtk/AppGtk.vala:141 +#: src/Gtk/AppGtk.vala:78 msgid "Print debug information" msgstr "Ispiši informacije otklanjanja grešaka" -#: src/Gtk/AppGtk.vala:142 +#: src/Gtk/AppGtk.vala:79 msgid "Show all options" msgstr "Prikaži sve mogućnosti" @@ -441,35 +425,31 @@ msgstr "O programu" msgid "Exit" msgstr "Izlaz" -#: src/Gtk/MainWindow.vala:411 +#: src/Gtk/MainWindow.vala:423 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Alat za nadogradnju kernela Ubuntu temeljenih distribucija" -#: src/Gtk/MainWindow.vala:412 +#: src/Gtk/MainWindow.vala:424 msgid "Forked" msgstr "Forkano" -#: src/Gtk/MainWindow.vala:412 +#: src/Gtk/MainWindow.vala:424 msgid "Original" msgstr "Izvornik" -#: src/Gtk/MainWindow.vala:441 +#: src/Gtk/MainWindow.vala:453 msgid "Updating kernels" msgstr "Ažuriranje jezgri" -#: src/Gtk/MainWindow.vala:518 +#: src/Gtk/MainWindow.vala:521 msgid "available" msgstr "dostupno" -#: src/Gtk/MainWindow.vala:572 src/Gtk/MainWindow.vala:611 -#: src/Gtk/MainWindow.vala:643 +#: src/Gtk/MainWindow.vala:571 src/Gtk/MainWindow.vala:610 +#: src/Gtk/MainWindow.vala:644 msgid "DONE" msgstr "" -#: src/Gtk/ProgressWindow.vala:126 src/Gtk/TerminalWindow.vala:151 -msgid "Cancel" -msgstr "Odustani" - #: src/Gtk/SettingsDialog.vala:59 msgid "Notification" msgstr "Obavijesti" @@ -542,10 +522,10 @@ msgstr "Provjera kontrolnih zbrojeva pomoću CHECKSUMS datoteka" msgid "Proxy" msgstr "Proxy" -#: src/Gtk/l.gtk.vala:29 -msgid "Missing Icon" -msgstr "Ikone koje nedostaju" +#: src/Gtk/TerminalWindow.vala:151 +msgid "Cancel" +msgstr "Odustani" -#: src/lib/l.misc.vala:69 +#: src/lib/l.misc.vala:84 msgid "Can not reach site" msgstr "Nije moguće doći do web-mjesta" diff --git a/po/it.po b/po/it.po index b51d2a5f..a4875810 100644 --- a/po/it.po +++ b/po/it.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-30 10:06-0400\n" +"POT-Creation-Date: 2023-05-31 19:56-0400\n" "PO-Revision-Date: 2020-08-22 15:35+0100\n" "Last-Translator: Demetrio Mendozzi\n" "Language-Team: Italian\n" @@ -35,180 +35,179 @@ msgstr "download in coda" msgid "Fetching individual kernel indexes" msgstr "Recupero dei singoli indici del kernel" -#: src/Common/LinuxKernel.vala:287 +#: src/Common/LinuxKernel.vala:285 msgid "loading downloaded" msgstr "caricamento dei file scaricati" -#: src/Common/LinuxKernel.vala:322 +#: src/Common/LinuxKernel.vala:320 msgid "Updating from" msgstr "Aggiornamento da" -#: src/Common/LinuxKernel.vala:330 +#: src/Common/LinuxKernel.vala:328 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:333 +#: src/Common/LinuxKernel.vala:331 msgid "FAILED" msgstr "FALLITO" -#: src/Common/LinuxKernel.vala:392 +#: src/Common/LinuxKernel.vala:390 msgid "Found installed" msgstr "Trovato installato" -#: src/Common/LinuxKernel.vala:393 +#: src/Common/LinuxKernel.vala:391 msgid "locked" msgstr "" -#: src/Common/LinuxKernel.vala:477 src/Common/LinuxKernel.vala:1009 -#: src/Common/LinuxKernel.vala:1098 +#: src/Common/LinuxKernel.vala:473 src/Common/LinuxKernel.vala:994 +#: src/Common/LinuxKernel.vala:1083 msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:681 src/Gtk/MainWindow.vala:509 -#: src/Gtk/MainWindow.vala:522 +#: src/Common/LinuxKernel.vala:666 src/Gtk/MainWindow.vala:517 msgid "Running" msgstr "In esecuzione" -#: src/Common/LinuxKernel.vala:682 +#: src/Common/LinuxKernel.vala:667 msgid "Installed" msgstr "Installato" -#: src/Common/LinuxKernel.vala:683 +#: src/Common/LinuxKernel.vala:668 msgid "Invalid" msgstr "Non valido" -#: src/Common/LinuxKernel.vala:768 +#: src/Common/LinuxKernel.vala:753 msgid "Packages Available" msgstr "Pacchetti disponibili" -#: src/Common/LinuxKernel.vala:774 +#: src/Common/LinuxKernel.vala:759 msgid "Packages Installed" msgstr "Pacchetti installati" -#: src/Common/LinuxKernel.vala:799 src/lib/TeeJee.FileSystem.vala:118 +#: src/Common/LinuxKernel.vala:784 src/lib/TeeJee.FileSystem.vala:118 msgid "File not found" msgstr "File non trovato" -#: src/Common/LinuxKernel.vala:893 +#: src/Common/LinuxKernel.vala:878 msgid "Available Kernels" msgstr "Kernel disponibili" -#: src/Common/LinuxKernel.vala:928 src/Gtk/MainWindow.vala:119 +#: src/Common/LinuxKernel.vala:913 src/Gtk/MainWindow.vala:119 msgid "Kernel" msgstr "Kernel" -#: src/Common/LinuxKernel.vala:928 +#: src/Common/LinuxKernel.vala:913 #, fuzzy msgid "not found" msgstr "File non trovato" -#: src/Common/LinuxKernel.vala:935 +#: src/Common/LinuxKernel.vala:920 #, fuzzy msgid "Download: no downloadable kernels specified" msgstr "Comando non specificato" -#: src/Common/LinuxKernel.vala:955 +#: src/Common/LinuxKernel.vala:940 msgid "enabled" msgstr "abilitato" -#: src/Common/LinuxKernel.vala:979 +#: src/Common/LinuxKernel.vala:964 msgid "Downloading" msgstr "Scaricamento" -#: src/Common/LinuxKernel.vala:1004 +#: src/Common/LinuxKernel.vala:989 msgid "is already installed." msgstr "è già installato." -#: src/Common/LinuxKernel.vala:1014 +#: src/Common/LinuxKernel.vala:999 msgid "download failed." msgstr "" -#: src/Common/LinuxKernel.vala:1022 +#: src/Common/LinuxKernel.vala:1007 #, fuzzy msgid "Install: no installable kernels secified" msgstr "Comando non specificato" -#: src/Common/LinuxKernel.vala:1034 +#: src/Common/LinuxKernel.vala:1019 msgid "Uninstalling selected kernels" msgstr "Disinstalla i kernel specificati" -#: src/Common/LinuxKernel.vala:1038 +#: src/Common/LinuxKernel.vala:1023 #, fuzzy msgid "Requested" msgstr "richiesto" -#: src/Common/LinuxKernel.vala:1041 +#: src/Common/LinuxKernel.vala:1026 #, fuzzy msgid "Not uninstalling the currently running kernel" msgstr "non disinstallare il kernel attualmente in esecuzione" -#: src/Common/LinuxKernel.vala:1046 +#: src/Common/LinuxKernel.vala:1031 msgid "is locked" msgstr "" -#: src/Common/LinuxKernel.vala:1054 +#: src/Common/LinuxKernel.vala:1039 msgid "found" msgstr "trovato" -#: src/Common/LinuxKernel.vala:1058 +#: src/Common/LinuxKernel.vala:1043 msgid "Uninstall: no uninstallable packages found" msgstr "" -#: src/Common/LinuxKernel.vala:1094 +#: src/Common/LinuxKernel.vala:1079 #, fuzzy msgid "is the highest installed version." msgstr "Disinstallare tutti tranne la versione più recente installata" -#: src/Common/LinuxKernel.vala:1107 +#: src/Common/LinuxKernel.vala:1092 msgid "Could not find running kernel in list" msgstr "Impossibile trovare il kernel in esecuzione nell'elenco" -#: src/Common/LinuxKernel.vala:1112 +#: src/Common/LinuxKernel.vala:1097 msgid "Could not find any kernels to uninstall" msgstr "Impossibile trovare alcun kernel da rimuovere" -#: src/Common/LinuxKernel.vala:1120 +#: src/Common/LinuxKernel.vala:1105 msgid "The following kernels will be uninstalled" msgstr "I seguenti kernel saranno rimossi" -#: src/Common/LinuxKernel.vala:1124 +#: src/Common/LinuxKernel.vala:1109 msgid "Continue ?" msgstr "Continuare ?" -#: src/Common/LinuxKernel.vala:1146 src/Console/AppConsole.vala:234 +#: src/Common/LinuxKernel.vala:1131 src/Console/AppConsole.vala:215 msgid "Latest update" msgstr "Ultimo aggiornamento" -#: src/Common/LinuxKernel.vala:1157 src/Console/AppConsole.vala:241 +#: src/Common/LinuxKernel.vala:1142 src/Console/AppConsole.vala:222 msgid "Latest point update" msgstr "Ultimo aggiornamento del rilascio parziale" -#: src/Common/LinuxKernel.vala:1165 src/Console/AppConsole.vala:246 -#: src/Console/AppConsole.vala:261 +#: src/Common/LinuxKernel.vala:1150 src/Console/AppConsole.vala:227 +#: src/Console/AppConsole.vala:242 msgid "No updates found" msgstr "Nessun aggiornamento trovato" -#: src/Common/LinuxKernel.vala:1174 +#: src/Common/LinuxKernel.vala:1159 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Installare la versione del kernel %s ? (y/n): " -#: src/Common/Main.vala:334 +#: src/Common/Main.vala:346 msgid "Called from" msgstr "Chiamato da" -#: src/Common/Main.vala:334 +#: src/Common/Main.vala:346 msgid "at logon" msgstr "all'avvio" -#: src/Common/Main.vala:335 +#: src/Common/Main.vala:347 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" "Questo file viene sovrascritto ed eseguito nuovamente ogni volta che vengono " "salvate le impostazioni" -#: src/Common/Main.vala:367 +#: src/Common/Main.vala:379 msgid "Notifications are disabled" msgstr "Le notifiche sono disabilitate" @@ -217,136 +216,121 @@ msgstr "Le notifiche sono disabilitate" msgid "File not found: %s" msgstr "File non trovato: %s" -#: src/Console/AppConsole.vala:43 src/Gtk/AppGtk.vala:137 +#: src/Console/AppConsole.vala:40 src/Gtk/AppGtk.vala:74 msgid "Syntax" msgstr "Sintassi" -#: src/Console/AppConsole.vala:45 +#: src/Console/AppConsole.vala:42 msgid "Commands" msgstr "Comandi" -#: src/Console/AppConsole.vala:47 +#: src/Console/AppConsole.vala:44 msgid "Check for kernel updates" msgstr "Verifica aggiornamenti del kernel" -#: src/Console/AppConsole.vala:48 +#: src/Console/AppConsole.vala:45 msgid "Check for kernel updates and notify current user" msgstr "" "Verifica la disponibilità di aggiornamenti del kerneled avvisa l'utente " "corrente" -#: src/Console/AppConsole.vala:49 +#: src/Console/AppConsole.vala:46 #, fuzzy msgid "List available mainline kernels" msgstr "Elenca tutti i kernel mainline disponibili" -#: src/Console/AppConsole.vala:50 +#: src/Console/AppConsole.vala:47 msgid "List installed kernels" msgstr "Elenca i kernel installati" -#: src/Console/AppConsole.vala:51 +#: src/Console/AppConsole.vala:48 msgid "Install latest mainline kernel" msgstr "Installa l'ultimo kernel mainline" -#: src/Console/AppConsole.vala:52 +#: src/Console/AppConsole.vala:49 #, fuzzy msgid "Install latest point update in the current major version" msgstr "installa l'ultimo rilascio parziale per le serie attuali" -#: src/Console/AppConsole.vala:53 +#: src/Console/AppConsole.vala:50 #, fuzzy msgid "Install specified kernels" msgstr "Disinstalla i kernel specificati" -#: src/Console/AppConsole.vala:54 +#: src/Console/AppConsole.vala:51 #, fuzzy msgid "Uninstall specified kernels" msgstr "Disinstalla i kernel specificati" -#: src/Console/AppConsole.vala:55 src/Gtk/MainWindow.vala:324 +#: src/Console/AppConsole.vala:52 src/Gtk/MainWindow.vala:324 msgid "Uninstall all but the highest installed version" msgstr "Disinstallare tutti tranne la versione più recente installata" -#: src/Console/AppConsole.vala:56 +#: src/Console/AppConsole.vala:53 msgid "Download specified kernels" msgstr "Scarica i kernel specificati" -#: src/Console/AppConsole.vala:57 +#: src/Console/AppConsole.vala:54 msgid "Delete cached info about available kernels" msgstr "Elimina le informazioni sui kernel disponibili dalla cache " -#: src/Console/AppConsole.vala:59 src/Gtk/AppGtk.vala:139 +#: src/Console/AppConsole.vala:56 src/Gtk/AppGtk.vala:76 msgid "Options" msgstr "Opzioni" -#: src/Console/AppConsole.vala:61 +#: src/Console/AppConsole.vala:58 msgid "Include unstable and RC releases" msgstr "Includi versioni instabili e rilasci RC" -#: src/Console/AppConsole.vala:62 +#: src/Console/AppConsole.vala:59 msgid "Exclude unstable and RC releases" msgstr "Escludi versioni instabili e rilasci RC" -#: src/Console/AppConsole.vala:63 +#: src/Console/AppConsole.vala:60 msgid "Verbosity. Set to n if given, or increment." msgstr "" -#: src/Console/AppConsole.vala:64 +#: src/Console/AppConsole.vala:61 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "Imposta Sì per tutte le richieste (modalità non interattiva)" -#: src/Console/AppConsole.vala:67 +#: src/Console/AppConsole.vala:64 #, fuzzy msgid "One or more version strings taken from the output of --list" msgstr "Una stringa di versione presa dall'output di --list" -#: src/Console/AppConsole.vala:68 +#: src/Console/AppConsole.vala:65 msgid "comma, pipe, or colon-seperated, or quoted space seperated" msgstr "" -#: src/Console/AppConsole.vala:69 +#: src/Console/AppConsole.vala:66 #, fuzzy msgid "Locked kernels and the currently running kernel are ignored" msgstr "Il kernel attualmente in esecuzione sarà sempre ignorato" -#: src/Console/AppConsole.vala:160 src/Gtk/AppGtk.vala:123 +#: src/Console/AppConsole.vala:143 src/Console/AppConsole.vala:200 +#: src/Gtk/AppGtk.vala:108 msgid "Unknown option" msgstr "Opzione sconosciuta" -#: src/Console/AppConsole.vala:161 src/Console/AppConsole.vala:220 -msgid "Run" -msgstr "In corso" - -#: src/Console/AppConsole.vala:161 -msgid "to list all options" -msgstr "elencare tutte le opzioni" - -#: src/Console/AppConsole.vala:219 -msgid "Command not specified" -msgstr "Comando non specificato" - -#: src/Console/AppConsole.vala:220 -msgid "to list all commands" -msgstr "elencare tutti i comandi" - -#: src/Console/AppConsole.vala:255 +#: src/Console/AppConsole.vala:236 msgid "Notifications disabled in settings" msgstr "Le notifiche sono disabilitate" -#: src/Console/AppConsole.vala:283 +#: src/Console/AppConsole.vala:264 #, c-format msgid "Kernel %s Available" msgstr "Kernel %s Disponibile" -#: src/Console/AppConsole.vala:287 src/Gtk/SettingsDialog.vala:166 +#: src/Console/AppConsole.vala:268 src/Gtk/SettingsDialog.vala:166 msgid "Show" msgstr "Mostra" -#: src/Console/AppConsole.vala:288 src/Gtk/MainWindow.vala:296 +#: src/Console/AppConsole.vala:269 src/Gtk/MainWindow.vala:296 msgid "Install" msgstr "Installa" -#: src/Console/AppConsole.vala:291 +#: src/Console/AppConsole.vala:272 msgid "Previously notified" msgstr "Notificato in precedenza" @@ -386,15 +370,15 @@ msgstr "Documentatori" msgid "Third Party Inclusions" msgstr "Inclusioni di terze parti" -#: src/Gtk/AppGtk.vala:137 +#: src/Gtk/AppGtk.vala:74 msgid "options" msgstr "opzioni" -#: src/Gtk/AppGtk.vala:141 +#: src/Gtk/AppGtk.vala:78 msgid "Print debug information" msgstr "Stampa le informazioni di debug" -#: src/Gtk/AppGtk.vala:142 +#: src/Gtk/AppGtk.vala:79 msgid "Show all options" msgstr "Mostra tutte le opzioni" @@ -442,35 +426,31 @@ msgstr "Informazioni" msgid "Exit" msgstr "Chiudi" -#: src/Gtk/MainWindow.vala:411 +#: src/Gtk/MainWindow.vala:423 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Utilità di aggiornamento del kernel per distribuzioni basate su Ubuntu" -#: src/Gtk/MainWindow.vala:412 +#: src/Gtk/MainWindow.vala:424 msgid "Forked" msgstr "Forked" -#: src/Gtk/MainWindow.vala:412 +#: src/Gtk/MainWindow.vala:424 msgid "Original" msgstr "Originale" -#: src/Gtk/MainWindow.vala:441 +#: src/Gtk/MainWindow.vala:453 msgid "Updating kernels" msgstr "Aggiornamento dei kernel" -#: src/Gtk/MainWindow.vala:518 +#: src/Gtk/MainWindow.vala:521 msgid "available" msgstr "disponibile" -#: src/Gtk/MainWindow.vala:572 src/Gtk/MainWindow.vala:611 -#: src/Gtk/MainWindow.vala:643 +#: src/Gtk/MainWindow.vala:571 src/Gtk/MainWindow.vala:610 +#: src/Gtk/MainWindow.vala:644 msgid "DONE" msgstr "" -#: src/Gtk/ProgressWindow.vala:126 src/Gtk/TerminalWindow.vala:151 -msgid "Cancel" -msgstr "Cancella" - #: src/Gtk/SettingsDialog.vala:59 msgid "Notification" msgstr "Notifica" @@ -543,10 +523,10 @@ msgstr "Verifica dei checksum con i file CHECKSUMS" msgid "Proxy" msgstr "Proxy" -#: src/Gtk/l.gtk.vala:29 -msgid "Missing Icon" -msgstr "Icona mancante" +#: src/Gtk/TerminalWindow.vala:151 +msgid "Cancel" +msgstr "Cancella" -#: src/lib/l.misc.vala:69 +#: src/lib/l.misc.vala:84 msgid "Can not reach site" msgstr "Impossibile raggiungere il sito" diff --git a/po/ko.po b/po/ko.po index 616e7879..c29a1b33 100644 --- a/po/ko.po +++ b/po/ko.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-30 10:06-0400\n" +"POT-Creation-Date: 2023-05-31 19:56-0400\n" "PO-Revision-Date: 2022-09-28 11:48+0900\n" "Last-Translator: Kevin Kim \n" "Language-Team: Korean\n" @@ -37,178 +37,177 @@ msgstr "대기열 다운로드" msgid "Fetching individual kernel indexes" msgstr "개별 커널 인덱스 페치" -#: src/Common/LinuxKernel.vala:287 +#: src/Common/LinuxKernel.vala:285 msgid "loading downloaded" msgstr "다운로드 로드 중" -#: src/Common/LinuxKernel.vala:322 +#: src/Common/LinuxKernel.vala:320 msgid "Updating from" msgstr "다음에서 업데이트" -#: src/Common/LinuxKernel.vala:330 +#: src/Common/LinuxKernel.vala:328 msgid "OK" msgstr "확인" -#: src/Common/LinuxKernel.vala:333 +#: src/Common/LinuxKernel.vala:331 msgid "FAILED" msgstr "실패" -#: src/Common/LinuxKernel.vala:392 +#: src/Common/LinuxKernel.vala:390 msgid "Found installed" msgstr "설치된 것을 찾았습니다" -#: src/Common/LinuxKernel.vala:393 +#: src/Common/LinuxKernel.vala:391 msgid "locked" msgstr "" -#: src/Common/LinuxKernel.vala:477 src/Common/LinuxKernel.vala:1009 -#: src/Common/LinuxKernel.vala:1098 +#: src/Common/LinuxKernel.vala:473 src/Common/LinuxKernel.vala:994 +#: src/Common/LinuxKernel.vala:1083 msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:681 src/Gtk/MainWindow.vala:509 -#: src/Gtk/MainWindow.vala:522 +#: src/Common/LinuxKernel.vala:666 src/Gtk/MainWindow.vala:517 msgid "Running" msgstr "구동 중" -#: src/Common/LinuxKernel.vala:682 +#: src/Common/LinuxKernel.vala:667 msgid "Installed" msgstr "설치 됨" -#: src/Common/LinuxKernel.vala:683 +#: src/Common/LinuxKernel.vala:668 msgid "Invalid" msgstr "사용할 수 없음" -#: src/Common/LinuxKernel.vala:768 +#: src/Common/LinuxKernel.vala:753 msgid "Packages Available" msgstr "설치 가능한 패키지" -#: src/Common/LinuxKernel.vala:774 +#: src/Common/LinuxKernel.vala:759 msgid "Packages Installed" msgstr "설치된 패키지" -#: src/Common/LinuxKernel.vala:799 src/lib/TeeJee.FileSystem.vala:118 +#: src/Common/LinuxKernel.vala:784 src/lib/TeeJee.FileSystem.vala:118 msgid "File not found" msgstr "파일을 찾을 수 없습니다" -#: src/Common/LinuxKernel.vala:893 +#: src/Common/LinuxKernel.vala:878 msgid "Available Kernels" msgstr "설치 가능한 커널" -#: src/Common/LinuxKernel.vala:928 src/Gtk/MainWindow.vala:119 +#: src/Common/LinuxKernel.vala:913 src/Gtk/MainWindow.vala:119 msgid "Kernel" msgstr "커널" -#: src/Common/LinuxKernel.vala:928 +#: src/Common/LinuxKernel.vala:913 #, fuzzy msgid "not found" msgstr "파일을 찾을 수 없습니다" -#: src/Common/LinuxKernel.vala:935 +#: src/Common/LinuxKernel.vala:920 #, fuzzy msgid "Download: no downloadable kernels specified" msgstr "지정한 명령어가 없습니다" -#: src/Common/LinuxKernel.vala:955 +#: src/Common/LinuxKernel.vala:940 msgid "enabled" msgstr "사용" -#: src/Common/LinuxKernel.vala:979 +#: src/Common/LinuxKernel.vala:964 msgid "Downloading" msgstr "다운로드" -#: src/Common/LinuxKernel.vala:1004 +#: src/Common/LinuxKernel.vala:989 msgid "is already installed." msgstr "가 이미 설치되어 있습니다" -#: src/Common/LinuxKernel.vala:1014 +#: src/Common/LinuxKernel.vala:999 msgid "download failed." msgstr "" -#: src/Common/LinuxKernel.vala:1022 +#: src/Common/LinuxKernel.vala:1007 #, fuzzy msgid "Install: no installable kernels secified" msgstr "지정한 명령어가 없습니다" -#: src/Common/LinuxKernel.vala:1034 +#: src/Common/LinuxKernel.vala:1019 msgid "Uninstalling selected kernels" msgstr "선택한 커널 제거" -#: src/Common/LinuxKernel.vala:1038 +#: src/Common/LinuxKernel.vala:1023 #, fuzzy msgid "Requested" msgstr "요청" -#: src/Common/LinuxKernel.vala:1041 +#: src/Common/LinuxKernel.vala:1026 #, fuzzy msgid "Not uninstalling the currently running kernel" msgstr "현재 실행 중인 커널을 제거하지 않음" -#: src/Common/LinuxKernel.vala:1046 +#: src/Common/LinuxKernel.vala:1031 msgid "is locked" msgstr "" -#: src/Common/LinuxKernel.vala:1054 +#: src/Common/LinuxKernel.vala:1039 msgid "found" msgstr "설립하다" -#: src/Common/LinuxKernel.vala:1058 +#: src/Common/LinuxKernel.vala:1043 msgid "Uninstall: no uninstallable packages found" msgstr "" -#: src/Common/LinuxKernel.vala:1094 +#: src/Common/LinuxKernel.vala:1079 #, fuzzy msgid "is the highest installed version." msgstr "설치된 가장 높은 버전을 제외한 모든 버전을 제거합니다" -#: src/Common/LinuxKernel.vala:1107 +#: src/Common/LinuxKernel.vala:1092 msgid "Could not find running kernel in list" msgstr "현재 실행 중인 커널을 찾을 수 없습니다" -#: src/Common/LinuxKernel.vala:1112 +#: src/Common/LinuxKernel.vala:1097 msgid "Could not find any kernels to uninstall" msgstr "삭제할 커널을 찾을 수 없습니다" -#: src/Common/LinuxKernel.vala:1120 +#: src/Common/LinuxKernel.vala:1105 msgid "The following kernels will be uninstalled" msgstr "풀이" -#: src/Common/LinuxKernel.vala:1124 +#: src/Common/LinuxKernel.vala:1109 msgid "Continue ?" msgstr "계속하시겠습니까?" -#: src/Common/LinuxKernel.vala:1146 src/Console/AppConsole.vala:234 +#: src/Common/LinuxKernel.vala:1131 src/Console/AppConsole.vala:215 msgid "Latest update" msgstr "최신 업데이트" -#: src/Common/LinuxKernel.vala:1157 src/Console/AppConsole.vala:241 +#: src/Common/LinuxKernel.vala:1142 src/Console/AppConsole.vala:222 msgid "Latest point update" msgstr "최신 포인트 업데이트" -#: src/Common/LinuxKernel.vala:1165 src/Console/AppConsole.vala:246 -#: src/Console/AppConsole.vala:261 +#: src/Common/LinuxKernel.vala:1150 src/Console/AppConsole.vala:227 +#: src/Console/AppConsole.vala:242 msgid "No updates found" msgstr "업데이트를 찾을 수 없습니다" -#: src/Common/LinuxKernel.vala:1174 +#: src/Common/LinuxKernel.vala:1159 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "커널 %s 버전을 설치하시겠습니까? (y/n): " -#: src/Common/Main.vala:334 +#: src/Common/Main.vala:346 msgid "Called from" msgstr "에서 호출" -#: src/Common/Main.vala:334 +#: src/Common/Main.vala:346 msgid "at logon" msgstr "로그온 시" -#: src/Common/Main.vala:335 +#: src/Common/Main.vala:347 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "이 파일은 덮어쓰고 설정이 저장될 때마다 다시 실행됩니다." -#: src/Common/Main.vala:367 +#: src/Common/Main.vala:379 msgid "Notifications are disabled" msgstr "알림이 비활성화 되었습니다" @@ -217,134 +216,119 @@ msgstr "알림이 비활성화 되었습니다" msgid "File not found: %s" msgstr "파일을 찾을 수 없음: %s" -#: src/Console/AppConsole.vala:43 src/Gtk/AppGtk.vala:137 +#: src/Console/AppConsole.vala:40 src/Gtk/AppGtk.vala:74 msgid "Syntax" msgstr "문법" -#: src/Console/AppConsole.vala:45 +#: src/Console/AppConsole.vala:42 msgid "Commands" msgstr "명령어" -#: src/Console/AppConsole.vala:47 +#: src/Console/AppConsole.vala:44 msgid "Check for kernel updates" msgstr "커널 업데이트 확인" -#: src/Console/AppConsole.vala:48 +#: src/Console/AppConsole.vala:45 msgid "Check for kernel updates and notify current user" msgstr "커널 업데이트를 확인하고 현재 사용자에게 알림" -#: src/Console/AppConsole.vala:49 +#: src/Console/AppConsole.vala:46 #, fuzzy msgid "List available mainline kernels" msgstr "사용 가능한 모든 메인라인 커널 보기" -#: src/Console/AppConsole.vala:50 +#: src/Console/AppConsole.vala:47 msgid "List installed kernels" msgstr "설치된 커널 보기" -#: src/Console/AppConsole.vala:51 +#: src/Console/AppConsole.vala:48 msgid "Install latest mainline kernel" msgstr "최신 메인라인 커널 설치" -#: src/Console/AppConsole.vala:52 +#: src/Console/AppConsole.vala:49 #, fuzzy msgid "Install latest point update in the current major version" msgstr "현재 사용중인 배포판을 위한 최신 포인트 업데이트 설치" -#: src/Console/AppConsole.vala:53 +#: src/Console/AppConsole.vala:50 #, fuzzy msgid "Install specified kernels" msgstr "지정한 커널 삭제" -#: src/Console/AppConsole.vala:54 +#: src/Console/AppConsole.vala:51 #, fuzzy msgid "Uninstall specified kernels" msgstr "지정한 커널 삭제" -#: src/Console/AppConsole.vala:55 src/Gtk/MainWindow.vala:324 +#: src/Console/AppConsole.vala:52 src/Gtk/MainWindow.vala:324 msgid "Uninstall all but the highest installed version" msgstr "설치된 가장 높은 버전을 제외한 모든 버전을 제거합니다" -#: src/Console/AppConsole.vala:56 +#: src/Console/AppConsole.vala:53 msgid "Download specified kernels" msgstr "지정한 커널 다운로드" -#: src/Console/AppConsole.vala:57 +#: src/Console/AppConsole.vala:54 msgid "Delete cached info about available kernels" msgstr "사용 가능한 커널에 대한 캐시된 정보 삭제" -#: src/Console/AppConsole.vala:59 src/Gtk/AppGtk.vala:139 +#: src/Console/AppConsole.vala:56 src/Gtk/AppGtk.vala:76 msgid "Options" msgstr "옵션" -#: src/Console/AppConsole.vala:61 +#: src/Console/AppConsole.vala:58 msgid "Include unstable and RC releases" msgstr "unstable 및 RC 릴리스 포함" -#: src/Console/AppConsole.vala:62 +#: src/Console/AppConsole.vala:59 msgid "Exclude unstable and RC releases" msgstr "unstable 및 RC 릴리스 제외" -#: src/Console/AppConsole.vala:63 +#: src/Console/AppConsole.vala:60 msgid "Verbosity. Set to n if given, or increment." msgstr "" -#: src/Console/AppConsole.vala:64 +#: src/Console/AppConsole.vala:61 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "모든 물음에 자동으로 \"예\"라고 가정 (비 대화형 모드)" -#: src/Console/AppConsole.vala:67 +#: src/Console/AppConsole.vala:64 #, fuzzy msgid "One or more version strings taken from the output of --list" msgstr "--list 의 출력에서 가져온 버전 문자열" -#: src/Console/AppConsole.vala:68 +#: src/Console/AppConsole.vala:65 msgid "comma, pipe, or colon-seperated, or quoted space seperated" msgstr "" -#: src/Console/AppConsole.vala:69 +#: src/Console/AppConsole.vala:66 #, fuzzy msgid "Locked kernels and the currently running kernel are ignored" msgstr "현재 실행중인 커널은 항상 무시됩니다" -#: src/Console/AppConsole.vala:160 src/Gtk/AppGtk.vala:123 +#: src/Console/AppConsole.vala:143 src/Console/AppConsole.vala:200 +#: src/Gtk/AppGtk.vala:108 msgid "Unknown option" msgstr "알 수 없는 옵션" -#: src/Console/AppConsole.vala:161 src/Console/AppConsole.vala:220 -msgid "Run" -msgstr "실행" - -#: src/Console/AppConsole.vala:161 -msgid "to list all options" -msgstr "모든 옵션을 나열" - -#: src/Console/AppConsole.vala:219 -msgid "Command not specified" -msgstr "지정한 명령어가 없습니다" - -#: src/Console/AppConsole.vala:220 -msgid "to list all commands" -msgstr "모든 명령어 나열" - -#: src/Console/AppConsole.vala:255 +#: src/Console/AppConsole.vala:236 msgid "Notifications disabled in settings" msgstr "설정에서 비활성화된 알림" -#: src/Console/AppConsole.vala:283 +#: src/Console/AppConsole.vala:264 #, c-format msgid "Kernel %s Available" msgstr "커널 %s 사용 가능" -#: src/Console/AppConsole.vala:287 src/Gtk/SettingsDialog.vala:166 +#: src/Console/AppConsole.vala:268 src/Gtk/SettingsDialog.vala:166 msgid "Show" msgstr "보이기" -#: src/Console/AppConsole.vala:288 src/Gtk/MainWindow.vala:296 +#: src/Console/AppConsole.vala:269 src/Gtk/MainWindow.vala:296 msgid "Install" msgstr "설치" -#: src/Console/AppConsole.vala:291 +#: src/Console/AppConsole.vala:272 msgid "Previously notified" msgstr "이전에 통보됨" @@ -384,15 +368,15 @@ msgstr "문서작성" msgid "Third Party Inclusions" msgstr "서드파티 포함" -#: src/Gtk/AppGtk.vala:137 +#: src/Gtk/AppGtk.vala:74 msgid "options" msgstr "옵션" -#: src/Gtk/AppGtk.vala:141 +#: src/Gtk/AppGtk.vala:78 msgid "Print debug information" msgstr "디버그 정보 출력" -#: src/Gtk/AppGtk.vala:142 +#: src/Gtk/AppGtk.vala:79 msgid "Show all options" msgstr "모든 옵션 보기" @@ -440,35 +424,31 @@ msgstr "정보" msgid "Exit" msgstr "출구" -#: src/Gtk/MainWindow.vala:411 +#: src/Gtk/MainWindow.vala:423 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "우분투 기반 배포판의 커널 업그레이드 도구" -#: src/Gtk/MainWindow.vala:412 +#: src/Gtk/MainWindow.vala:424 msgid "Forked" msgstr "가랑이진" -#: src/Gtk/MainWindow.vala:412 +#: src/Gtk/MainWindow.vala:424 msgid "Original" msgstr "원문 언어" -#: src/Gtk/MainWindow.vala:441 +#: src/Gtk/MainWindow.vala:453 msgid "Updating kernels" msgstr "커널 업데이트" -#: src/Gtk/MainWindow.vala:518 +#: src/Gtk/MainWindow.vala:521 msgid "available" msgstr "사용가능" -#: src/Gtk/MainWindow.vala:572 src/Gtk/MainWindow.vala:611 -#: src/Gtk/MainWindow.vala:643 +#: src/Gtk/MainWindow.vala:571 src/Gtk/MainWindow.vala:610 +#: src/Gtk/MainWindow.vala:644 msgid "DONE" msgstr "" -#: src/Gtk/ProgressWindow.vala:126 src/Gtk/TerminalWindow.vala:151 -msgid "Cancel" -msgstr "취소" - #: src/Gtk/SettingsDialog.vala:59 msgid "Notification" msgstr "알림" @@ -541,10 +521,10 @@ msgstr "CHECKSUMS 파일로 체크섬 확인" msgid "Proxy" msgstr "대리" -#: src/Gtk/l.gtk.vala:29 -msgid "Missing Icon" -msgstr "아이콘을 찾을 수 없습니다" +#: src/Gtk/TerminalWindow.vala:151 +msgid "Cancel" +msgstr "취소" -#: src/lib/l.misc.vala:69 +#: src/lib/l.misc.vala:84 msgid "Can not reach site" msgstr "사이트에 도달 할 수 없습니다" diff --git a/po/messages.pot b/po/messages.pot index b803a083..602bac2a 100644 --- a/po/messages.pot +++ b/po/messages.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline 1.3.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-30 10:06-0400\n" +"POT-Creation-Date: 2023-05-31 20:00-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -41,172 +41,171 @@ msgstr "" msgid "Fetching individual kernel indexes" msgstr "" -#: src/Common/LinuxKernel.vala:287 +#: src/Common/LinuxKernel.vala:285 msgid "loading downloaded" msgstr "" -#: src/Common/LinuxKernel.vala:322 +#: src/Common/LinuxKernel.vala:320 msgid "Updating from" msgstr "" -#: src/Common/LinuxKernel.vala:330 +#: src/Common/LinuxKernel.vala:328 msgid "OK" msgstr "" -#: src/Common/LinuxKernel.vala:333 +#: src/Common/LinuxKernel.vala:331 msgid "FAILED" msgstr "" -#: src/Common/LinuxKernel.vala:392 +#: src/Common/LinuxKernel.vala:390 msgid "Found installed" msgstr "" -#: src/Common/LinuxKernel.vala:393 +#: src/Common/LinuxKernel.vala:391 msgid "locked" msgstr "" -#: src/Common/LinuxKernel.vala:477 src/Common/LinuxKernel.vala:1009 -#: src/Common/LinuxKernel.vala:1098 +#: src/Common/LinuxKernel.vala:473 src/Common/LinuxKernel.vala:994 +#: src/Common/LinuxKernel.vala:1083 msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:681 src/Gtk/MainWindow.vala:509 -#: src/Gtk/MainWindow.vala:522 +#: src/Common/LinuxKernel.vala:666 src/Gtk/MainWindow.vala:517 msgid "Running" msgstr "" -#: src/Common/LinuxKernel.vala:682 +#: src/Common/LinuxKernel.vala:667 msgid "Installed" msgstr "" -#: src/Common/LinuxKernel.vala:683 +#: src/Common/LinuxKernel.vala:668 msgid "Invalid" msgstr "" -#: src/Common/LinuxKernel.vala:768 +#: src/Common/LinuxKernel.vala:753 msgid "Packages Available" msgstr "" -#: src/Common/LinuxKernel.vala:774 +#: src/Common/LinuxKernel.vala:759 msgid "Packages Installed" msgstr "" -#: src/Common/LinuxKernel.vala:799 src/lib/TeeJee.FileSystem.vala:118 +#: src/Common/LinuxKernel.vala:784 src/lib/TeeJee.FileSystem.vala:118 msgid "File not found" msgstr "" -#: src/Common/LinuxKernel.vala:893 +#: src/Common/LinuxKernel.vala:878 msgid "Available Kernels" msgstr "" -#: src/Common/LinuxKernel.vala:928 src/Gtk/MainWindow.vala:119 +#: src/Common/LinuxKernel.vala:913 src/Gtk/MainWindow.vala:119 msgid "Kernel" msgstr "" -#: src/Common/LinuxKernel.vala:928 +#: src/Common/LinuxKernel.vala:913 msgid "not found" msgstr "" -#: src/Common/LinuxKernel.vala:935 +#: src/Common/LinuxKernel.vala:920 msgid "Download: no downloadable kernels specified" msgstr "" -#: src/Common/LinuxKernel.vala:955 +#: src/Common/LinuxKernel.vala:940 msgid "enabled" msgstr "" -#: src/Common/LinuxKernel.vala:979 +#: src/Common/LinuxKernel.vala:964 msgid "Downloading" msgstr "" -#: src/Common/LinuxKernel.vala:1004 +#: src/Common/LinuxKernel.vala:989 msgid "is already installed." msgstr "" -#: src/Common/LinuxKernel.vala:1014 +#: src/Common/LinuxKernel.vala:999 msgid "download failed." msgstr "" -#: src/Common/LinuxKernel.vala:1022 +#: src/Common/LinuxKernel.vala:1007 msgid "Install: no installable kernels secified" msgstr "" -#: src/Common/LinuxKernel.vala:1034 +#: src/Common/LinuxKernel.vala:1019 msgid "Uninstalling selected kernels" msgstr "" -#: src/Common/LinuxKernel.vala:1038 +#: src/Common/LinuxKernel.vala:1023 msgid "Requested" msgstr "" -#: src/Common/LinuxKernel.vala:1041 +#: src/Common/LinuxKernel.vala:1026 msgid "Not uninstalling the currently running kernel" msgstr "" -#: src/Common/LinuxKernel.vala:1046 +#: src/Common/LinuxKernel.vala:1031 msgid "is locked" msgstr "" -#: src/Common/LinuxKernel.vala:1054 +#: src/Common/LinuxKernel.vala:1039 msgid "found" msgstr "" -#: src/Common/LinuxKernel.vala:1058 +#: src/Common/LinuxKernel.vala:1043 msgid "Uninstall: no uninstallable packages found" msgstr "" -#: src/Common/LinuxKernel.vala:1094 +#: src/Common/LinuxKernel.vala:1079 msgid "is the highest installed version." msgstr "" -#: src/Common/LinuxKernel.vala:1107 +#: src/Common/LinuxKernel.vala:1092 msgid "Could not find running kernel in list" msgstr "" -#: src/Common/LinuxKernel.vala:1112 +#: src/Common/LinuxKernel.vala:1097 msgid "Could not find any kernels to uninstall" msgstr "" -#: src/Common/LinuxKernel.vala:1120 +#: src/Common/LinuxKernel.vala:1105 msgid "The following kernels will be uninstalled" msgstr "" -#: src/Common/LinuxKernel.vala:1124 +#: src/Common/LinuxKernel.vala:1109 msgid "Continue ?" msgstr "" -#: src/Common/LinuxKernel.vala:1146 src/Console/AppConsole.vala:234 +#: src/Common/LinuxKernel.vala:1131 src/Console/AppConsole.vala:215 msgid "Latest update" msgstr "" -#: src/Common/LinuxKernel.vala:1157 src/Console/AppConsole.vala:241 +#: src/Common/LinuxKernel.vala:1142 src/Console/AppConsole.vala:222 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:1165 src/Console/AppConsole.vala:246 -#: src/Console/AppConsole.vala:261 +#: src/Common/LinuxKernel.vala:1150 src/Console/AppConsole.vala:227 +#: src/Console/AppConsole.vala:242 msgid "No updates found" msgstr "" -#: src/Common/LinuxKernel.vala:1174 +#: src/Common/LinuxKernel.vala:1159 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "" -#: src/Common/Main.vala:334 +#: src/Common/Main.vala:346 msgid "Called from" msgstr "" -#: src/Common/Main.vala:334 +#: src/Common/Main.vala:346 msgid "at logon" msgstr "" -#: src/Common/Main.vala:335 +#: src/Common/Main.vala:347 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" -#: src/Common/Main.vala:367 +#: src/Common/Main.vala:379 msgid "Notifications are disabled" msgstr "" @@ -215,128 +214,113 @@ msgstr "" msgid "File not found: %s" msgstr "" -#: src/Console/AppConsole.vala:43 src/Gtk/AppGtk.vala:137 +#: src/Console/AppConsole.vala:40 src/Gtk/AppGtk.vala:74 msgid "Syntax" msgstr "" -#: src/Console/AppConsole.vala:45 +#: src/Console/AppConsole.vala:42 msgid "Commands" msgstr "" -#: src/Console/AppConsole.vala:47 +#: src/Console/AppConsole.vala:44 msgid "Check for kernel updates" msgstr "" -#: src/Console/AppConsole.vala:48 +#: src/Console/AppConsole.vala:45 msgid "Check for kernel updates and notify current user" msgstr "" -#: src/Console/AppConsole.vala:49 +#: src/Console/AppConsole.vala:46 msgid "List available mainline kernels" msgstr "" -#: src/Console/AppConsole.vala:50 +#: src/Console/AppConsole.vala:47 msgid "List installed kernels" msgstr "" -#: src/Console/AppConsole.vala:51 +#: src/Console/AppConsole.vala:48 msgid "Install latest mainline kernel" msgstr "" -#: src/Console/AppConsole.vala:52 +#: src/Console/AppConsole.vala:49 msgid "Install latest point update in the current major version" msgstr "" -#: src/Console/AppConsole.vala:53 +#: src/Console/AppConsole.vala:50 msgid "Install specified kernels" msgstr "" -#: src/Console/AppConsole.vala:54 +#: src/Console/AppConsole.vala:51 msgid "Uninstall specified kernels" msgstr "" -#: src/Console/AppConsole.vala:55 src/Gtk/MainWindow.vala:324 +#: src/Console/AppConsole.vala:52 src/Gtk/MainWindow.vala:324 msgid "Uninstall all but the highest installed version" msgstr "" -#: src/Console/AppConsole.vala:56 +#: src/Console/AppConsole.vala:53 msgid "Download specified kernels" msgstr "" -#: src/Console/AppConsole.vala:57 +#: src/Console/AppConsole.vala:54 msgid "Delete cached info about available kernels" msgstr "" -#: src/Console/AppConsole.vala:59 src/Gtk/AppGtk.vala:139 +#: src/Console/AppConsole.vala:56 src/Gtk/AppGtk.vala:76 msgid "Options" msgstr "" -#: src/Console/AppConsole.vala:61 +#: src/Console/AppConsole.vala:58 msgid "Include unstable and RC releases" msgstr "" -#: src/Console/AppConsole.vala:62 +#: src/Console/AppConsole.vala:59 msgid "Exclude unstable and RC releases" msgstr "" -#: src/Console/AppConsole.vala:63 +#: src/Console/AppConsole.vala:60 msgid "Verbosity. Set to n if given, or increment." msgstr "" -#: src/Console/AppConsole.vala:64 +#: src/Console/AppConsole.vala:61 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "" -#: src/Console/AppConsole.vala:67 +#: src/Console/AppConsole.vala:64 msgid "One or more version strings taken from the output of --list" msgstr "" -#: src/Console/AppConsole.vala:68 +#: src/Console/AppConsole.vala:65 msgid "comma, pipe, or colon-seperated, or quoted space seperated" msgstr "" -#: src/Console/AppConsole.vala:69 +#: src/Console/AppConsole.vala:66 msgid "Locked kernels and the currently running kernel are ignored" msgstr "" -#: src/Console/AppConsole.vala:160 src/Gtk/AppGtk.vala:123 +#: src/Console/AppConsole.vala:143 src/Console/AppConsole.vala:200 +#: src/Gtk/AppGtk.vala:108 msgid "Unknown option" msgstr "" -#: src/Console/AppConsole.vala:161 src/Console/AppConsole.vala:220 -msgid "Run" -msgstr "" - -#: src/Console/AppConsole.vala:161 -msgid "to list all options" -msgstr "" - -#: src/Console/AppConsole.vala:219 -msgid "Command not specified" -msgstr "" - -#: src/Console/AppConsole.vala:220 -msgid "to list all commands" -msgstr "" - -#: src/Console/AppConsole.vala:255 +#: src/Console/AppConsole.vala:236 msgid "Notifications disabled in settings" msgstr "" -#: src/Console/AppConsole.vala:283 +#: src/Console/AppConsole.vala:264 #, c-format msgid "Kernel %s Available" msgstr "" -#: src/Console/AppConsole.vala:287 src/Gtk/SettingsDialog.vala:166 +#: src/Console/AppConsole.vala:268 src/Gtk/SettingsDialog.vala:166 msgid "Show" msgstr "" -#: src/Console/AppConsole.vala:288 src/Gtk/MainWindow.vala:296 +#: src/Console/AppConsole.vala:269 src/Gtk/MainWindow.vala:296 msgid "Install" msgstr "" -#: src/Console/AppConsole.vala:291 +#: src/Console/AppConsole.vala:272 msgid "Previously notified" msgstr "" @@ -376,15 +360,15 @@ msgstr "" msgid "Third Party Inclusions" msgstr "" -#: src/Gtk/AppGtk.vala:137 +#: src/Gtk/AppGtk.vala:74 msgid "options" msgstr "" -#: src/Gtk/AppGtk.vala:141 +#: src/Gtk/AppGtk.vala:78 msgid "Print debug information" msgstr "" -#: src/Gtk/AppGtk.vala:142 +#: src/Gtk/AppGtk.vala:79 msgid "Show all options" msgstr "" @@ -432,35 +416,31 @@ msgstr "" msgid "Exit" msgstr "" -#: src/Gtk/MainWindow.vala:411 +#: src/Gtk/MainWindow.vala:423 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "" -#: src/Gtk/MainWindow.vala:412 +#: src/Gtk/MainWindow.vala:424 msgid "Forked" msgstr "" -#: src/Gtk/MainWindow.vala:412 +#: src/Gtk/MainWindow.vala:424 msgid "Original" msgstr "" -#: src/Gtk/MainWindow.vala:441 +#: src/Gtk/MainWindow.vala:453 msgid "Updating kernels" msgstr "" -#: src/Gtk/MainWindow.vala:518 +#: src/Gtk/MainWindow.vala:521 msgid "available" msgstr "" -#: src/Gtk/MainWindow.vala:572 src/Gtk/MainWindow.vala:611 -#: src/Gtk/MainWindow.vala:643 +#: src/Gtk/MainWindow.vala:571 src/Gtk/MainWindow.vala:610 +#: src/Gtk/MainWindow.vala:644 msgid "DONE" msgstr "" -#: src/Gtk/ProgressWindow.vala:126 src/Gtk/TerminalWindow.vala:151 -msgid "Cancel" -msgstr "" - #: src/Gtk/SettingsDialog.vala:59 msgid "Notification" msgstr "" @@ -533,10 +513,10 @@ msgstr "" msgid "Proxy" msgstr "" -#: src/Gtk/l.gtk.vala:29 -msgid "Missing Icon" +#: src/Gtk/TerminalWindow.vala:151 +msgid "Cancel" msgstr "" -#: src/lib/l.misc.vala:69 +#: src/lib/l.misc.vala:84 msgid "Can not reach site" msgstr "" diff --git a/po/nl.po b/po/nl.po index f1bac291..44300e04 100644 --- a/po/nl.po +++ b/po/nl.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-30 10:06-0400\n" +"POT-Creation-Date: 2023-05-31 19:56-0400\n" "PO-Revision-Date: 2020-08-23 13:55+0200\n" "Last-Translator: Heimen Stoffels \n" "Language-Team: Dutch (Netherlands)\n" @@ -37,180 +37,179 @@ msgstr "wachtrijen downloaden" msgid "Fetching individual kernel indexes" msgstr "Afzonderlijke kernelindexen ophalen" -#: src/Common/LinuxKernel.vala:287 +#: src/Common/LinuxKernel.vala:285 msgid "loading downloaded" msgstr "laden gedownload" -#: src/Common/LinuxKernel.vala:322 +#: src/Common/LinuxKernel.vala:320 msgid "Updating from" msgstr "Bijwerken van" -#: src/Common/LinuxKernel.vala:330 +#: src/Common/LinuxKernel.vala:328 msgid "OK" msgstr "Oké" -#: src/Common/LinuxKernel.vala:333 +#: src/Common/LinuxKernel.vala:331 msgid "FAILED" msgstr "MISLUKT" -#: src/Common/LinuxKernel.vala:392 +#: src/Common/LinuxKernel.vala:390 msgid "Found installed" msgstr "Geïnstalleerd gevonden" -#: src/Common/LinuxKernel.vala:393 +#: src/Common/LinuxKernel.vala:391 msgid "locked" msgstr "" -#: src/Common/LinuxKernel.vala:477 src/Common/LinuxKernel.vala:1009 -#: src/Common/LinuxKernel.vala:1098 +#: src/Common/LinuxKernel.vala:473 src/Common/LinuxKernel.vala:994 +#: src/Common/LinuxKernel.vala:1083 msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:681 src/Gtk/MainWindow.vala:509 -#: src/Gtk/MainWindow.vala:522 +#: src/Common/LinuxKernel.vala:666 src/Gtk/MainWindow.vala:517 msgid "Running" msgstr "In gebruik" -#: src/Common/LinuxKernel.vala:682 +#: src/Common/LinuxKernel.vala:667 msgid "Installed" msgstr "Geïnstalleerd" -#: src/Common/LinuxKernel.vala:683 +#: src/Common/LinuxKernel.vala:668 msgid "Invalid" msgstr "Ongeldig" -#: src/Common/LinuxKernel.vala:768 +#: src/Common/LinuxKernel.vala:753 msgid "Packages Available" msgstr "Beschikbare pakketten" -#: src/Common/LinuxKernel.vala:774 +#: src/Common/LinuxKernel.vala:759 msgid "Packages Installed" msgstr "Geïnstalleerde pakketten" -#: src/Common/LinuxKernel.vala:799 src/lib/TeeJee.FileSystem.vala:118 +#: src/Common/LinuxKernel.vala:784 src/lib/TeeJee.FileSystem.vala:118 msgid "File not found" msgstr "Het bestand is niet gevonden" -#: src/Common/LinuxKernel.vala:893 +#: src/Common/LinuxKernel.vala:878 msgid "Available Kernels" msgstr "Beschikbare kernels" -#: src/Common/LinuxKernel.vala:928 src/Gtk/MainWindow.vala:119 +#: src/Common/LinuxKernel.vala:913 src/Gtk/MainWindow.vala:119 msgid "Kernel" msgstr "Kernel" -#: src/Common/LinuxKernel.vala:928 +#: src/Common/LinuxKernel.vala:913 #, fuzzy msgid "not found" msgstr "Het bestand is niet gevonden" -#: src/Common/LinuxKernel.vala:935 +#: src/Common/LinuxKernel.vala:920 #, fuzzy msgid "Download: no downloadable kernels specified" msgstr "Geen opdracht opgegeven" -#: src/Common/LinuxKernel.vala:955 +#: src/Common/LinuxKernel.vala:940 msgid "enabled" msgstr "ingeschakeld" -#: src/Common/LinuxKernel.vala:979 +#: src/Common/LinuxKernel.vala:964 msgid "Downloading" msgstr "Downloaden" -#: src/Common/LinuxKernel.vala:1004 +#: src/Common/LinuxKernel.vala:989 msgid "is already installed." msgstr "is al geïnstalleerd." -#: src/Common/LinuxKernel.vala:1014 +#: src/Common/LinuxKernel.vala:999 msgid "download failed." msgstr "" -#: src/Common/LinuxKernel.vala:1022 +#: src/Common/LinuxKernel.vala:1007 #, fuzzy msgid "Install: no installable kernels secified" msgstr "Geen opdracht opgegeven" -#: src/Common/LinuxKernel.vala:1034 +#: src/Common/LinuxKernel.vala:1019 msgid "Uninstalling selected kernels" msgstr "Geselecteerde kernels verwijderen" -#: src/Common/LinuxKernel.vala:1038 +#: src/Common/LinuxKernel.vala:1023 #, fuzzy msgid "Requested" msgstr "verzocht" -#: src/Common/LinuxKernel.vala:1041 +#: src/Common/LinuxKernel.vala:1026 #, fuzzy msgid "Not uninstalling the currently running kernel" msgstr "de momenteel actieve kernel niet verwijderen" -#: src/Common/LinuxKernel.vala:1046 +#: src/Common/LinuxKernel.vala:1031 msgid "is locked" msgstr "" -#: src/Common/LinuxKernel.vala:1054 +#: src/Common/LinuxKernel.vala:1039 msgid "found" msgstr "gevonden" -#: src/Common/LinuxKernel.vala:1058 +#: src/Common/LinuxKernel.vala:1043 msgid "Uninstall: no uninstallable packages found" msgstr "" -#: src/Common/LinuxKernel.vala:1094 +#: src/Common/LinuxKernel.vala:1079 #, fuzzy msgid "is the highest installed version." msgstr "Verwijder alle behalve de hoogst geïnstalleerde versie" -#: src/Common/LinuxKernel.vala:1107 +#: src/Common/LinuxKernel.vala:1092 msgid "Could not find running kernel in list" msgstr "De in gebruik zijnde kernel staat niet op de lijst" -#: src/Common/LinuxKernel.vala:1112 +#: src/Common/LinuxKernel.vala:1097 msgid "Could not find any kernels to uninstall" msgstr "Er zijn geen te verwijderen kernels" -#: src/Common/LinuxKernel.vala:1120 +#: src/Common/LinuxKernel.vala:1105 msgid "The following kernels will be uninstalled" msgstr "De volgende kernels worden verwijderd" -#: src/Common/LinuxKernel.vala:1124 +#: src/Common/LinuxKernel.vala:1109 msgid "Continue ?" msgstr "Wilt u doorgaan?" -#: src/Common/LinuxKernel.vala:1146 src/Console/AppConsole.vala:234 +#: src/Common/LinuxKernel.vala:1131 src/Console/AppConsole.vala:215 msgid "Latest update" msgstr "Recentste update" -#: src/Common/LinuxKernel.vala:1157 src/Console/AppConsole.vala:241 +#: src/Common/LinuxKernel.vala:1142 src/Console/AppConsole.vala:222 msgid "Latest point update" msgstr "Recentste puntupdate" -#: src/Common/LinuxKernel.vala:1165 src/Console/AppConsole.vala:246 -#: src/Console/AppConsole.vala:261 +#: src/Common/LinuxKernel.vala:1150 src/Console/AppConsole.vala:227 +#: src/Console/AppConsole.vala:242 msgid "No updates found" msgstr "Geen updates gevonden" -#: src/Common/LinuxKernel.vala:1174 +#: src/Common/LinuxKernel.vala:1159 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Wilt u versie %s installeren? (j/n): " -#: src/Common/Main.vala:334 +#: src/Common/Main.vala:346 msgid "Called from" msgstr "Aangeroepen door" -#: src/Common/Main.vala:334 +#: src/Common/Main.vala:346 msgid "at logon" msgstr "bij het opstarten" -#: src/Common/Main.vala:335 +#: src/Common/Main.vala:347 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" "Dit bestand wordt overschreven en opnieuw uitgevoerd wanneer instellingen " "worden opgeslagen in" -#: src/Common/Main.vala:367 +#: src/Common/Main.vala:379 msgid "Notifications are disabled" msgstr "Meldingen zijn uitgeschakeld" @@ -219,134 +218,119 @@ msgstr "Meldingen zijn uitgeschakeld" msgid "File not found: %s" msgstr "Bestand niet gevonden: %s" -#: src/Console/AppConsole.vala:43 src/Gtk/AppGtk.vala:137 +#: src/Console/AppConsole.vala:40 src/Gtk/AppGtk.vala:74 msgid "Syntax" msgstr "Syntaxis" -#: src/Console/AppConsole.vala:45 +#: src/Console/AppConsole.vala:42 msgid "Commands" msgstr "Opdrachten" -#: src/Console/AppConsole.vala:47 +#: src/Console/AppConsole.vala:44 msgid "Check for kernel updates" msgstr "Controleren op kernelupdates" -#: src/Console/AppConsole.vala:48 +#: src/Console/AppConsole.vala:45 msgid "Check for kernel updates and notify current user" msgstr "Controleren op kernelupdates en gebruiker op de hoogte brengen" -#: src/Console/AppConsole.vala:49 +#: src/Console/AppConsole.vala:46 #, fuzzy msgid "List available mainline kernels" msgstr "Alle beschikbare mainline-kernels tonen" -#: src/Console/AppConsole.vala:50 +#: src/Console/AppConsole.vala:47 msgid "List installed kernels" msgstr "Alle geïnstalleerde kernels tonen" -#: src/Console/AppConsole.vala:51 +#: src/Console/AppConsole.vala:48 msgid "Install latest mainline kernel" msgstr "Recentste mainline-kernel installeren" -#: src/Console/AppConsole.vala:52 +#: src/Console/AppConsole.vala:49 #, fuzzy msgid "Install latest point update in the current major version" msgstr "Recentste puntupdate uit huidige editie installeren" -#: src/Console/AppConsole.vala:53 +#: src/Console/AppConsole.vala:50 #, fuzzy msgid "Install specified kernels" msgstr "Opgegeven kernel verwijderen" -#: src/Console/AppConsole.vala:54 +#: src/Console/AppConsole.vala:51 #, fuzzy msgid "Uninstall specified kernels" msgstr "Opgegeven kernel verwijderen" -#: src/Console/AppConsole.vala:55 src/Gtk/MainWindow.vala:324 +#: src/Console/AppConsole.vala:52 src/Gtk/MainWindow.vala:324 msgid "Uninstall all but the highest installed version" msgstr "Verwijder alle behalve de hoogst geïnstalleerde versie" -#: src/Console/AppConsole.vala:56 +#: src/Console/AppConsole.vala:53 msgid "Download specified kernels" msgstr "Opgegeven kernels downloaden" -#: src/Console/AppConsole.vala:57 +#: src/Console/AppConsole.vala:54 msgid "Delete cached info about available kernels" msgstr "Informatie over beschikbare kernels in de cache verwijderen" -#: src/Console/AppConsole.vala:59 src/Gtk/AppGtk.vala:139 +#: src/Console/AppConsole.vala:56 src/Gtk/AppGtk.vala:76 msgid "Options" msgstr "Opties" -#: src/Console/AppConsole.vala:61 +#: src/Console/AppConsole.vala:58 msgid "Include unstable and RC releases" msgstr "Inclusief onstabiele en RC-releases" -#: src/Console/AppConsole.vala:62 +#: src/Console/AppConsole.vala:59 msgid "Exclude unstable and RC releases" msgstr "Onstabiele en RC-releases uitsluiten" -#: src/Console/AppConsole.vala:63 +#: src/Console/AppConsole.vala:60 msgid "Verbosity. Set to n if given, or increment." msgstr "" -#: src/Console/AppConsole.vala:64 +#: src/Console/AppConsole.vala:61 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "Ja op alles (in de niet-interactieve modus)" -#: src/Console/AppConsole.vala:67 +#: src/Console/AppConsole.vala:64 #, fuzzy msgid "One or more version strings taken from the output of --list" msgstr "Een versietekenreeks uit de uitvoer van --list" -#: src/Console/AppConsole.vala:68 +#: src/Console/AppConsole.vala:65 msgid "comma, pipe, or colon-seperated, or quoted space seperated" msgstr "" -#: src/Console/AppConsole.vala:69 +#: src/Console/AppConsole.vala:66 #, fuzzy msgid "Locked kernels and the currently running kernel are ignored" msgstr "De momenteel actieve kernel wordt altijd genegeerd" -#: src/Console/AppConsole.vala:160 src/Gtk/AppGtk.vala:123 +#: src/Console/AppConsole.vala:143 src/Console/AppConsole.vala:200 +#: src/Gtk/AppGtk.vala:108 msgid "Unknown option" msgstr "Onbekende optie" -#: src/Console/AppConsole.vala:161 src/Console/AppConsole.vala:220 -msgid "Run" -msgstr "Uitvoeren" - -#: src/Console/AppConsole.vala:161 -msgid "to list all options" -msgstr "om alle opties te tonen" - -#: src/Console/AppConsole.vala:219 -msgid "Command not specified" -msgstr "Geen opdracht opgegeven" - -#: src/Console/AppConsole.vala:220 -msgid "to list all commands" -msgstr "om alle opdrachten te tonen" - -#: src/Console/AppConsole.vala:255 +#: src/Console/AppConsole.vala:236 msgid "Notifications disabled in settings" msgstr "Meldingen uitgeschakeld in instellingen" -#: src/Console/AppConsole.vala:283 +#: src/Console/AppConsole.vala:264 #, c-format msgid "Kernel %s Available" msgstr "Kernel %s is beschikbaar" -#: src/Console/AppConsole.vala:287 src/Gtk/SettingsDialog.vala:166 +#: src/Console/AppConsole.vala:268 src/Gtk/SettingsDialog.vala:166 msgid "Show" msgstr "Tonen" -#: src/Console/AppConsole.vala:288 src/Gtk/MainWindow.vala:296 +#: src/Console/AppConsole.vala:269 src/Gtk/MainWindow.vala:296 msgid "Install" msgstr "Installeren" -#: src/Console/AppConsole.vala:291 +#: src/Console/AppConsole.vala:272 msgid "Previously notified" msgstr "Eerder gemeld" @@ -386,15 +370,15 @@ msgstr "Documenteerders" msgid "Third Party Inclusions" msgstr "Externe code" -#: src/Gtk/AppGtk.vala:137 +#: src/Gtk/AppGtk.vala:74 msgid "options" msgstr "opties" -#: src/Gtk/AppGtk.vala:141 +#: src/Gtk/AppGtk.vala:78 msgid "Print debug information" msgstr "Foutopsporingsinformatie tonen" -#: src/Gtk/AppGtk.vala:142 +#: src/Gtk/AppGtk.vala:79 msgid "Show all options" msgstr "Alle opties tonen" @@ -442,35 +426,31 @@ msgstr "Over" msgid "Exit" msgstr "Afsluiten" -#: src/Gtk/MainWindow.vala:411 +#: src/Gtk/MainWindow.vala:423 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Een kernelupgradehulpmiddel voor op Ubuntu gebaseerde distributies" -#: src/Gtk/MainWindow.vala:412 +#: src/Gtk/MainWindow.vala:424 msgid "Forked" msgstr "Geforkt" -#: src/Gtk/MainWindow.vala:412 +#: src/Gtk/MainWindow.vala:424 msgid "Original" msgstr "Origineel" -#: src/Gtk/MainWindow.vala:441 +#: src/Gtk/MainWindow.vala:453 msgid "Updating kernels" msgstr "Kernels bijwerken" -#: src/Gtk/MainWindow.vala:518 +#: src/Gtk/MainWindow.vala:521 msgid "available" msgstr "beschikbaar" -#: src/Gtk/MainWindow.vala:572 src/Gtk/MainWindow.vala:611 -#: src/Gtk/MainWindow.vala:643 +#: src/Gtk/MainWindow.vala:571 src/Gtk/MainWindow.vala:610 +#: src/Gtk/MainWindow.vala:644 msgid "DONE" msgstr "" -#: src/Gtk/ProgressWindow.vala:126 src/Gtk/TerminalWindow.vala:151 -msgid "Cancel" -msgstr "Annuleren" - #: src/Gtk/SettingsDialog.vala:59 msgid "Notification" msgstr "Melding" @@ -543,10 +523,10 @@ msgstr "Controleer controlesommen met de CHECKSUMS-bestanden" msgid "Proxy" msgstr "Proxy" -#: src/Gtk/l.gtk.vala:29 -msgid "Missing Icon" -msgstr "Ontbrekend pictogram" +#: src/Gtk/TerminalWindow.vala:151 +msgid "Cancel" +msgstr "Annuleren" -#: src/lib/l.misc.vala:69 +#: src/lib/l.misc.vala:84 msgid "Can not reach site" msgstr "Kan de site niet bereiken" diff --git a/po/pl.po b/po/pl.po index eb9b10b4..bcf93cba 100644 --- a/po/pl.po +++ b/po/pl.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-30 10:06-0400\n" +"POT-Creation-Date: 2023-05-31 19:56-0400\n" "PO-Revision-Date: 2023-05-25 13:37+0200\n" "Last-Translator: Matthaiks\n" "Language-Team: Polish\n" @@ -36,180 +36,179 @@ msgstr "pobieranie w kolejce" msgid "Fetching individual kernel indexes" msgstr "Pobieranie indywidualnych indeksów jądra" -#: src/Common/LinuxKernel.vala:287 +#: src/Common/LinuxKernel.vala:285 msgid "loading downloaded" msgstr "ładowanie pobranych" -#: src/Common/LinuxKernel.vala:322 +#: src/Common/LinuxKernel.vala:320 msgid "Updating from" msgstr "Aktualizowanie z" -#: src/Common/LinuxKernel.vala:330 +#: src/Common/LinuxKernel.vala:328 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:333 +#: src/Common/LinuxKernel.vala:331 msgid "FAILED" msgstr "NIEPOWODZENIE" -#: src/Common/LinuxKernel.vala:392 +#: src/Common/LinuxKernel.vala:390 msgid "Found installed" msgstr "Znaleziono zainstalowane" -#: src/Common/LinuxKernel.vala:393 +#: src/Common/LinuxKernel.vala:391 msgid "locked" msgstr "zablokowane" -#: src/Common/LinuxKernel.vala:477 src/Common/LinuxKernel.vala:1009 -#: src/Common/LinuxKernel.vala:1098 +#: src/Common/LinuxKernel.vala:473 src/Common/LinuxKernel.vala:994 +#: src/Common/LinuxKernel.vala:1083 msgid "is locked." msgstr "jest zablokowane." -#: src/Common/LinuxKernel.vala:681 src/Gtk/MainWindow.vala:509 -#: src/Gtk/MainWindow.vala:522 +#: src/Common/LinuxKernel.vala:666 src/Gtk/MainWindow.vala:517 msgid "Running" msgstr "Uruchomione" -#: src/Common/LinuxKernel.vala:682 +#: src/Common/LinuxKernel.vala:667 msgid "Installed" msgstr "Zainstalowane" -#: src/Common/LinuxKernel.vala:683 +#: src/Common/LinuxKernel.vala:668 msgid "Invalid" msgstr "Nieprawidłowe" -#: src/Common/LinuxKernel.vala:768 +#: src/Common/LinuxKernel.vala:753 msgid "Packages Available" msgstr "Dostępne pakiety" -#: src/Common/LinuxKernel.vala:774 +#: src/Common/LinuxKernel.vala:759 msgid "Packages Installed" msgstr "Pakiety zainstalowane" -#: src/Common/LinuxKernel.vala:799 src/lib/TeeJee.FileSystem.vala:118 +#: src/Common/LinuxKernel.vala:784 src/lib/TeeJee.FileSystem.vala:118 msgid "File not found" msgstr "Nie odnaleziono pliku" -#: src/Common/LinuxKernel.vala:893 +#: src/Common/LinuxKernel.vala:878 msgid "Available Kernels" msgstr "Dostępne jądra" -#: src/Common/LinuxKernel.vala:928 src/Gtk/MainWindow.vala:119 +#: src/Common/LinuxKernel.vala:913 src/Gtk/MainWindow.vala:119 msgid "Kernel" msgstr "Jądro" -#: src/Common/LinuxKernel.vala:928 +#: src/Common/LinuxKernel.vala:913 #, fuzzy msgid "not found" msgstr "Nie odnaleziono pliku" -#: src/Common/LinuxKernel.vala:935 +#: src/Common/LinuxKernel.vala:920 #, fuzzy msgid "Download: no downloadable kernels specified" msgstr "Nie określono polecenia" -#: src/Common/LinuxKernel.vala:955 +#: src/Common/LinuxKernel.vala:940 msgid "enabled" msgstr "włączone" -#: src/Common/LinuxKernel.vala:979 +#: src/Common/LinuxKernel.vala:964 msgid "Downloading" msgstr "Pobieranie" -#: src/Common/LinuxKernel.vala:1004 +#: src/Common/LinuxKernel.vala:989 msgid "is already installed." msgstr "jest już zainstalowane." -#: src/Common/LinuxKernel.vala:1014 +#: src/Common/LinuxKernel.vala:999 msgid "download failed." msgstr "" -#: src/Common/LinuxKernel.vala:1022 +#: src/Common/LinuxKernel.vala:1007 #, fuzzy msgid "Install: no installable kernels secified" msgstr "Nie określono polecenia" -#: src/Common/LinuxKernel.vala:1034 +#: src/Common/LinuxKernel.vala:1019 msgid "Uninstalling selected kernels" msgstr "Odinstalowanie wybranych jąder" -#: src/Common/LinuxKernel.vala:1038 +#: src/Common/LinuxKernel.vala:1023 #, fuzzy msgid "Requested" msgstr "zażądane" -#: src/Common/LinuxKernel.vala:1041 +#: src/Common/LinuxKernel.vala:1026 #, fuzzy msgid "Not uninstalling the currently running kernel" msgstr "bez odinstalowywania aktualnie uruchomionego jądra" -#: src/Common/LinuxKernel.vala:1046 +#: src/Common/LinuxKernel.vala:1031 #, fuzzy msgid "is locked" msgstr "jest zablokowane." -#: src/Common/LinuxKernel.vala:1054 +#: src/Common/LinuxKernel.vala:1039 msgid "found" msgstr "znalezione" -#: src/Common/LinuxKernel.vala:1058 +#: src/Common/LinuxKernel.vala:1043 msgid "Uninstall: no uninstallable packages found" msgstr "" -#: src/Common/LinuxKernel.vala:1094 +#: src/Common/LinuxKernel.vala:1079 msgid "is the highest installed version." msgstr "to najwyższa zainstalowana wersja." -#: src/Common/LinuxKernel.vala:1107 +#: src/Common/LinuxKernel.vala:1092 msgid "Could not find running kernel in list" msgstr "Nie można znaleźć uruchomionego jądra na liście" -#: src/Common/LinuxKernel.vala:1112 +#: src/Common/LinuxKernel.vala:1097 msgid "Could not find any kernels to uninstall" msgstr "Nie można znaleźć żadnych jąder do odinstalowania" -#: src/Common/LinuxKernel.vala:1120 +#: src/Common/LinuxKernel.vala:1105 msgid "The following kernels will be uninstalled" msgstr "Następujące jądra zostaną odinstalowane" -#: src/Common/LinuxKernel.vala:1124 +#: src/Common/LinuxKernel.vala:1109 msgid "Continue ?" msgstr "Kontynuować?" -#: src/Common/LinuxKernel.vala:1146 src/Console/AppConsole.vala:234 +#: src/Common/LinuxKernel.vala:1131 src/Console/AppConsole.vala:215 msgid "Latest update" msgstr "Najnowsza aktualizacja" -#: src/Common/LinuxKernel.vala:1157 src/Console/AppConsole.vala:241 +#: src/Common/LinuxKernel.vala:1142 src/Console/AppConsole.vala:222 msgid "Latest point update" msgstr "Najnowsza aktualizacja punktowa" -#: src/Common/LinuxKernel.vala:1165 src/Console/AppConsole.vala:246 -#: src/Console/AppConsole.vala:261 +#: src/Common/LinuxKernel.vala:1150 src/Console/AppConsole.vala:227 +#: src/Console/AppConsole.vala:242 msgid "No updates found" msgstr "Nie znaleziono aktualizacji" -#: src/Common/LinuxKernel.vala:1174 +#: src/Common/LinuxKernel.vala:1159 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Zainstalować wersję jądra %s? (t/n): " -#: src/Common/Main.vala:334 +#: src/Common/Main.vala:346 msgid "Called from" msgstr "Wywołano z" -#: src/Common/Main.vala:334 +#: src/Common/Main.vala:346 msgid "at logon" msgstr "przy logowaniu" -#: src/Common/Main.vala:335 +#: src/Common/Main.vala:347 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" "Ten plik jest nadpisywany i wykonywany ponownie za każdym razem, gdy " "ustawienia są zapisywane w" -#: src/Common/Main.vala:367 +#: src/Common/Main.vala:379 msgid "Notifications are disabled" msgstr "Powiadomienia są wyłączone" @@ -218,134 +217,119 @@ msgstr "Powiadomienia są wyłączone" msgid "File not found: %s" msgstr "Nie znaleziono pliku: %s" -#: src/Console/AppConsole.vala:43 src/Gtk/AppGtk.vala:137 +#: src/Console/AppConsole.vala:40 src/Gtk/AppGtk.vala:74 msgid "Syntax" msgstr "Składnia" -#: src/Console/AppConsole.vala:45 +#: src/Console/AppConsole.vala:42 msgid "Commands" msgstr "Polecenia" -#: src/Console/AppConsole.vala:47 +#: src/Console/AppConsole.vala:44 msgid "Check for kernel updates" msgstr "Sprawdź nowe wersje jądra" -#: src/Console/AppConsole.vala:48 +#: src/Console/AppConsole.vala:45 msgid "Check for kernel updates and notify current user" msgstr "Sprawdź nowe wersje jądra i powiadom bieżącego użytkownika" -#: src/Console/AppConsole.vala:49 +#: src/Console/AppConsole.vala:46 #, fuzzy msgid "List available mainline kernels" msgstr "Pokaż wszystkie dostępne jądra" -#: src/Console/AppConsole.vala:50 +#: src/Console/AppConsole.vala:47 msgid "List installed kernels" msgstr "Wyświetl listę zainstalowanych jąder" -#: src/Console/AppConsole.vala:51 +#: src/Console/AppConsole.vala:48 msgid "Install latest mainline kernel" msgstr "Zainstaluj najnowsze jądro" -#: src/Console/AppConsole.vala:52 +#: src/Console/AppConsole.vala:49 #, fuzzy msgid "Install latest point update in the current major version" msgstr "Zainstaluj najnowszą aktualizację punktową dla bieżącej serii" -#: src/Console/AppConsole.vala:53 +#: src/Console/AppConsole.vala:50 #, fuzzy msgid "Install specified kernels" msgstr "Odinstaluj wybrane jądro" -#: src/Console/AppConsole.vala:54 +#: src/Console/AppConsole.vala:51 #, fuzzy msgid "Uninstall specified kernels" msgstr "Odinstaluj wybrane jądro" -#: src/Console/AppConsole.vala:55 src/Gtk/MainWindow.vala:324 +#: src/Console/AppConsole.vala:52 src/Gtk/MainWindow.vala:324 msgid "Uninstall all but the highest installed version" msgstr "Odinstaluj wszystkie oprócz najwyższej zainstalowanej wersji" -#: src/Console/AppConsole.vala:56 +#: src/Console/AppConsole.vala:53 msgid "Download specified kernels" msgstr "Pobierz wybrane jądra" -#: src/Console/AppConsole.vala:57 +#: src/Console/AppConsole.vala:54 msgid "Delete cached info about available kernels" msgstr "Usuń informacje z pamięci podręcznej o dostępnych jądrach" -#: src/Console/AppConsole.vala:59 src/Gtk/AppGtk.vala:139 +#: src/Console/AppConsole.vala:56 src/Gtk/AppGtk.vala:76 msgid "Options" msgstr "Opcje" -#: src/Console/AppConsole.vala:61 +#: src/Console/AppConsole.vala:58 msgid "Include unstable and RC releases" msgstr "Uwzględnij wydania niestabilne i RC" -#: src/Console/AppConsole.vala:62 +#: src/Console/AppConsole.vala:59 msgid "Exclude unstable and RC releases" msgstr "Wyklucz wersje niestabilne i RC" -#: src/Console/AppConsole.vala:63 +#: src/Console/AppConsole.vala:60 msgid "Verbosity. Set to n if given, or increment." msgstr "" -#: src/Console/AppConsole.vala:64 +#: src/Console/AppConsole.vala:61 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "Przyjmij Tak dla wszystkich monitów (tryb nieinteraktywny)" -#: src/Console/AppConsole.vala:67 +#: src/Console/AppConsole.vala:64 #, fuzzy msgid "One or more version strings taken from the output of --list" msgstr "Ciąg wersji pobrany z danych wyjściowych --list" -#: src/Console/AppConsole.vala:68 +#: src/Console/AppConsole.vala:65 msgid "comma, pipe, or colon-seperated, or quoted space seperated" msgstr "" -#: src/Console/AppConsole.vala:69 +#: src/Console/AppConsole.vala:66 #, fuzzy msgid "Locked kernels and the currently running kernel are ignored" msgstr "Aktualnie uruchomione jądro będzie zawsze ignorowane" -#: src/Console/AppConsole.vala:160 src/Gtk/AppGtk.vala:123 +#: src/Console/AppConsole.vala:143 src/Console/AppConsole.vala:200 +#: src/Gtk/AppGtk.vala:108 msgid "Unknown option" msgstr "Nieznana opcja" -#: src/Console/AppConsole.vala:161 src/Console/AppConsole.vala:220 -msgid "Run" -msgstr "Uruchom" - -#: src/Console/AppConsole.vala:161 -msgid "to list all options" -msgstr "do wyświetlenia wszystkich opcji" - -#: src/Console/AppConsole.vala:219 -msgid "Command not specified" -msgstr "Nie określono polecenia" - -#: src/Console/AppConsole.vala:220 -msgid "to list all commands" -msgstr "do wyświetlenia wszystkich poleceń" - -#: src/Console/AppConsole.vala:255 +#: src/Console/AppConsole.vala:236 msgid "Notifications disabled in settings" msgstr "Powiadomienia wyłączone w ustawieniach" -#: src/Console/AppConsole.vala:283 +#: src/Console/AppConsole.vala:264 #, c-format msgid "Kernel %s Available" msgstr "Dostępne %s jądra" -#: src/Console/AppConsole.vala:287 src/Gtk/SettingsDialog.vala:166 +#: src/Console/AppConsole.vala:268 src/Gtk/SettingsDialog.vala:166 msgid "Show" msgstr "Pokaż" -#: src/Console/AppConsole.vala:288 src/Gtk/MainWindow.vala:296 +#: src/Console/AppConsole.vala:269 src/Gtk/MainWindow.vala:296 msgid "Install" msgstr "Zainstaluj" -#: src/Console/AppConsole.vala:291 +#: src/Console/AppConsole.vala:272 msgid "Previously notified" msgstr "Wcześniej powiadomiono" @@ -385,15 +369,15 @@ msgstr "Dokumentujący" msgid "Third Party Inclusions" msgstr "Włączenia stron trzecich" -#: src/Gtk/AppGtk.vala:137 +#: src/Gtk/AppGtk.vala:74 msgid "options" msgstr "opcje" -#: src/Gtk/AppGtk.vala:141 +#: src/Gtk/AppGtk.vala:78 msgid "Print debug information" msgstr "Wypisz informacje debugujące" -#: src/Gtk/AppGtk.vala:142 +#: src/Gtk/AppGtk.vala:79 msgid "Show all options" msgstr "Pokaż wszystkie opcje" @@ -441,35 +425,31 @@ msgstr "O programie" msgid "Exit" msgstr "Wyjdź" -#: src/Gtk/MainWindow.vala:411 +#: src/Gtk/MainWindow.vala:423 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Narzędzie uaktualniania jądra dla dystrybucji z rodziny Ubuntu" -#: src/Gtk/MainWindow.vala:412 +#: src/Gtk/MainWindow.vala:424 msgid "Forked" msgstr "Sforkowane" -#: src/Gtk/MainWindow.vala:412 +#: src/Gtk/MainWindow.vala:424 msgid "Original" msgstr "Oryginalne" -#: src/Gtk/MainWindow.vala:441 +#: src/Gtk/MainWindow.vala:453 msgid "Updating kernels" msgstr "Aktualizowanie jąder" -#: src/Gtk/MainWindow.vala:518 +#: src/Gtk/MainWindow.vala:521 msgid "available" msgstr "dostępne" -#: src/Gtk/MainWindow.vala:572 src/Gtk/MainWindow.vala:611 -#: src/Gtk/MainWindow.vala:643 +#: src/Gtk/MainWindow.vala:571 src/Gtk/MainWindow.vala:610 +#: src/Gtk/MainWindow.vala:644 msgid "DONE" msgstr "" -#: src/Gtk/ProgressWindow.vala:126 src/Gtk/TerminalWindow.vala:151 -msgid "Cancel" -msgstr "Anuluj" - #: src/Gtk/SettingsDialog.vala:59 msgid "Notification" msgstr "Powiadomienia" @@ -542,10 +522,10 @@ msgstr "Weryfikowanie sum kontrolnych za pomocą plików CHECKSUMS" msgid "Proxy" msgstr "Serwer pośredniczący" -#: src/Gtk/l.gtk.vala:29 -msgid "Missing Icon" -msgstr "Brakująca ikona" +#: src/Gtk/TerminalWindow.vala:151 +msgid "Cancel" +msgstr "Anuluj" -#: src/lib/l.misc.vala:69 +#: src/lib/l.misc.vala:84 msgid "Can not reach site" msgstr "Nie można dotrzeć do witryny" diff --git a/po/ru.po b/po/ru.po index 78738925..0f297615 100644 --- a/po/ru.po +++ b/po/ru.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-30 10:06-0400\n" +"POT-Creation-Date: 2023-05-31 19:56-0400\n" "PO-Revision-Date: 2023-04-17 20:16+0300\n" "Last-Translator: Danik2343 \n" "Language-Team: Russian\n" @@ -37,179 +37,178 @@ msgstr "загрузка очередей" msgid "Fetching individual kernel indexes" msgstr "Получение отдельных индексов ядра" -#: src/Common/LinuxKernel.vala:287 +#: src/Common/LinuxKernel.vala:285 msgid "loading downloaded" msgstr "загрузка загруженных" -#: src/Common/LinuxKernel.vala:322 +#: src/Common/LinuxKernel.vala:320 msgid "Updating from" msgstr "Обновление из" -#: src/Common/LinuxKernel.vala:330 +#: src/Common/LinuxKernel.vala:328 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:333 +#: src/Common/LinuxKernel.vala:331 msgid "FAILED" msgstr "НЕУДАВШИЙСЯ" -#: src/Common/LinuxKernel.vala:392 +#: src/Common/LinuxKernel.vala:390 msgid "Found installed" msgstr "Найдено установлененное" -#: src/Common/LinuxKernel.vala:393 +#: src/Common/LinuxKernel.vala:391 msgid "locked" msgstr "" -#: src/Common/LinuxKernel.vala:477 src/Common/LinuxKernel.vala:1009 -#: src/Common/LinuxKernel.vala:1098 +#: src/Common/LinuxKernel.vala:473 src/Common/LinuxKernel.vala:994 +#: src/Common/LinuxKernel.vala:1083 msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:681 src/Gtk/MainWindow.vala:509 -#: src/Gtk/MainWindow.vala:522 +#: src/Common/LinuxKernel.vala:666 src/Gtk/MainWindow.vala:517 msgid "Running" msgstr "Используется" -#: src/Common/LinuxKernel.vala:682 +#: src/Common/LinuxKernel.vala:667 msgid "Installed" msgstr "Установлено" -#: src/Common/LinuxKernel.vala:683 +#: src/Common/LinuxKernel.vala:668 msgid "Invalid" msgstr "Негодный" -#: src/Common/LinuxKernel.vala:768 +#: src/Common/LinuxKernel.vala:753 msgid "Packages Available" msgstr "Доступные пакеты" -#: src/Common/LinuxKernel.vala:774 +#: src/Common/LinuxKernel.vala:759 msgid "Packages Installed" msgstr "Установленные пакеты" -#: src/Common/LinuxKernel.vala:799 src/lib/TeeJee.FileSystem.vala:118 +#: src/Common/LinuxKernel.vala:784 src/lib/TeeJee.FileSystem.vala:118 msgid "File not found" msgstr "Файл не найден" -#: src/Common/LinuxKernel.vala:893 +#: src/Common/LinuxKernel.vala:878 msgid "Available Kernels" msgstr "Доступные ядра" -#: src/Common/LinuxKernel.vala:928 src/Gtk/MainWindow.vala:119 +#: src/Common/LinuxKernel.vala:913 src/Gtk/MainWindow.vala:119 msgid "Kernel" msgstr "Ядро" -#: src/Common/LinuxKernel.vala:928 +#: src/Common/LinuxKernel.vala:913 #, fuzzy msgid "not found" msgstr "Файл не найден" -#: src/Common/LinuxKernel.vala:935 +#: src/Common/LinuxKernel.vala:920 #, fuzzy msgid "Download: no downloadable kernels specified" msgstr "Команда не указана" -#: src/Common/LinuxKernel.vala:955 +#: src/Common/LinuxKernel.vala:940 msgid "enabled" msgstr "включено" -#: src/Common/LinuxKernel.vala:979 +#: src/Common/LinuxKernel.vala:964 msgid "Downloading" msgstr "Загрузки" -#: src/Common/LinuxKernel.vala:1004 +#: src/Common/LinuxKernel.vala:989 msgid "is already installed." msgstr "уже установлен." -#: src/Common/LinuxKernel.vala:1014 +#: src/Common/LinuxKernel.vala:999 msgid "download failed." msgstr "" -#: src/Common/LinuxKernel.vala:1022 +#: src/Common/LinuxKernel.vala:1007 #, fuzzy msgid "Install: no installable kernels secified" msgstr "Команда не указана" -#: src/Common/LinuxKernel.vala:1034 +#: src/Common/LinuxKernel.vala:1019 msgid "Uninstalling selected kernels" msgstr "Удаление выбранных ядер" -#: src/Common/LinuxKernel.vala:1038 +#: src/Common/LinuxKernel.vala:1023 #, fuzzy msgid "Requested" msgstr "запрошено" -#: src/Common/LinuxKernel.vala:1041 +#: src/Common/LinuxKernel.vala:1026 #, fuzzy msgid "Not uninstalling the currently running kernel" msgstr "не удаляет текущее работающее ядро" -#: src/Common/LinuxKernel.vala:1046 +#: src/Common/LinuxKernel.vala:1031 msgid "is locked" msgstr "" -#: src/Common/LinuxKernel.vala:1054 +#: src/Common/LinuxKernel.vala:1039 msgid "found" msgstr "найдено" -#: src/Common/LinuxKernel.vala:1058 +#: src/Common/LinuxKernel.vala:1043 msgid "Uninstall: no uninstallable packages found" msgstr "" -#: src/Common/LinuxKernel.vala:1094 +#: src/Common/LinuxKernel.vala:1079 #, fuzzy msgid "is the highest installed version." msgstr "Удаление всех установленных версий, кроме самой высокой" -#: src/Common/LinuxKernel.vala:1107 +#: src/Common/LinuxKernel.vala:1092 msgid "Could not find running kernel in list" msgstr "Could not find running kernel in list" -#: src/Common/LinuxKernel.vala:1112 +#: src/Common/LinuxKernel.vala:1097 msgid "Could not find any kernels to uninstall" msgstr "Не удалось найти ядра для деинсталляции" -#: src/Common/LinuxKernel.vala:1120 +#: src/Common/LinuxKernel.vala:1105 msgid "The following kernels will be uninstalled" msgstr "Следующие ядра будут удалены" -#: src/Common/LinuxKernel.vala:1124 +#: src/Common/LinuxKernel.vala:1109 msgid "Continue ?" msgstr "Продолжить ?" -#: src/Common/LinuxKernel.vala:1146 src/Console/AppConsole.vala:234 +#: src/Common/LinuxKernel.vala:1131 src/Console/AppConsole.vala:215 msgid "Latest update" msgstr "Последнее обновление" -#: src/Common/LinuxKernel.vala:1157 src/Console/AppConsole.vala:241 +#: src/Common/LinuxKernel.vala:1142 src/Console/AppConsole.vala:222 msgid "Latest point update" msgstr "Последнее обновление пунктов" -#: src/Common/LinuxKernel.vala:1165 src/Console/AppConsole.vala:246 -#: src/Console/AppConsole.vala:261 +#: src/Common/LinuxKernel.vala:1150 src/Console/AppConsole.vala:227 +#: src/Console/AppConsole.vala:242 msgid "No updates found" msgstr "Обновлений не найдено" -#: src/Common/LinuxKernel.vala:1174 +#: src/Common/LinuxKernel.vala:1159 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Установить версию ядра %s ? (y/n): " -#: src/Common/Main.vala:334 +#: src/Common/Main.vala:346 msgid "Called from" msgstr "Вызван из" -#: src/Common/Main.vala:334 +#: src/Common/Main.vala:346 msgid "at logon" msgstr "при запуске" -#: src/Common/Main.vala:335 +#: src/Common/Main.vala:347 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" "Этот файл перезаписывается и выполняется снова при сохранении настроек в" -#: src/Common/Main.vala:367 +#: src/Common/Main.vala:379 msgid "Notifications are disabled" msgstr "Уведомления отключены" @@ -218,134 +217,119 @@ msgstr "Уведомления отключены" msgid "File not found: %s" msgstr "Файл не найден: %s" -#: src/Console/AppConsole.vala:43 src/Gtk/AppGtk.vala:137 +#: src/Console/AppConsole.vala:40 src/Gtk/AppGtk.vala:74 msgid "Syntax" msgstr "Синтаксис" -#: src/Console/AppConsole.vala:45 +#: src/Console/AppConsole.vala:42 msgid "Commands" msgstr "Комманды" -#: src/Console/AppConsole.vala:47 +#: src/Console/AppConsole.vala:44 msgid "Check for kernel updates" msgstr "Проверить обновления ядра" -#: src/Console/AppConsole.vala:48 +#: src/Console/AppConsole.vala:45 msgid "Check for kernel updates and notify current user" msgstr "Проверить обновления ядра и уведомить текущего пользователя" -#: src/Console/AppConsole.vala:49 +#: src/Console/AppConsole.vala:46 #, fuzzy msgid "List available mainline kernels" msgstr "Список всех доступных основных ядер" -#: src/Console/AppConsole.vala:50 +#: src/Console/AppConsole.vala:47 msgid "List installed kernels" msgstr "Список установленных ядер" -#: src/Console/AppConsole.vala:51 +#: src/Console/AppConsole.vala:48 msgid "Install latest mainline kernel" msgstr "Установите последнюю версию основного ядра" -#: src/Console/AppConsole.vala:52 +#: src/Console/AppConsole.vala:49 #, fuzzy msgid "Install latest point update in the current major version" msgstr "Установить последнее обновление точек для текущей серии" -#: src/Console/AppConsole.vala:53 +#: src/Console/AppConsole.vala:50 #, fuzzy msgid "Install specified kernels" msgstr "Установить указанное ядро" -#: src/Console/AppConsole.vala:54 +#: src/Console/AppConsole.vala:51 #, fuzzy msgid "Uninstall specified kernels" msgstr "Установить указанное ядро" -#: src/Console/AppConsole.vala:55 src/Gtk/MainWindow.vala:324 +#: src/Console/AppConsole.vala:52 src/Gtk/MainWindow.vala:324 msgid "Uninstall all but the highest installed version" msgstr "Удаление всех установленных версий, кроме самой высокой" -#: src/Console/AppConsole.vala:56 +#: src/Console/AppConsole.vala:53 msgid "Download specified kernels" msgstr "Скачать указанные ядра" -#: src/Console/AppConsole.vala:57 +#: src/Console/AppConsole.vala:54 msgid "Delete cached info about available kernels" msgstr "Удаление кэшированной информации о доступных ядрах" -#: src/Console/AppConsole.vala:59 src/Gtk/AppGtk.vala:139 +#: src/Console/AppConsole.vala:56 src/Gtk/AppGtk.vala:76 msgid "Options" msgstr "Параметры" -#: src/Console/AppConsole.vala:61 +#: src/Console/AppConsole.vala:58 msgid "Include unstable and RC releases" msgstr "Включать нестабильные и релиз-кандидат релизы" -#: src/Console/AppConsole.vala:62 +#: src/Console/AppConsole.vala:59 msgid "Exclude unstable and RC releases" msgstr "Исключить нестабильные и релиз-кандидат релизы" -#: src/Console/AppConsole.vala:63 +#: src/Console/AppConsole.vala:60 msgid "Verbosity. Set to n if given, or increment." msgstr "" -#: src/Console/AppConsole.vala:64 +#: src/Console/AppConsole.vala:61 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "Предполагать \"Да\" для всех запросов (неинтерактивный режим)" -#: src/Console/AppConsole.vala:67 +#: src/Console/AppConsole.vala:64 #, fuzzy msgid "One or more version strings taken from the output of --list" msgstr "Строка версии, взятая из вывода --list" -#: src/Console/AppConsole.vala:68 +#: src/Console/AppConsole.vala:65 msgid "comma, pipe, or colon-seperated, or quoted space seperated" msgstr "" -#: src/Console/AppConsole.vala:69 +#: src/Console/AppConsole.vala:66 #, fuzzy msgid "Locked kernels and the currently running kernel are ignored" msgstr "Текущее работающее ядро всегда будет игнорироваться" -#: src/Console/AppConsole.vala:160 src/Gtk/AppGtk.vala:123 +#: src/Console/AppConsole.vala:143 src/Console/AppConsole.vala:200 +#: src/Gtk/AppGtk.vala:108 msgid "Unknown option" msgstr "Неизвестный параметр" -#: src/Console/AppConsole.vala:161 src/Console/AppConsole.vala:220 -msgid "Run" -msgstr "Используется" - -#: src/Console/AppConsole.vala:161 -msgid "to list all options" -msgstr "чтобы перечислить все параметры" - -#: src/Console/AppConsole.vala:219 -msgid "Command not specified" -msgstr "Команда не указана" - -#: src/Console/AppConsole.vala:220 -msgid "to list all commands" -msgstr "чтобы перечислить все команды" - -#: src/Console/AppConsole.vala:255 +#: src/Console/AppConsole.vala:236 msgid "Notifications disabled in settings" msgstr "Уведомления отключены в настройках" -#: src/Console/AppConsole.vala:283 +#: src/Console/AppConsole.vala:264 #, c-format msgid "Kernel %s Available" msgstr "Доступно ядро %s" -#: src/Console/AppConsole.vala:287 src/Gtk/SettingsDialog.vala:166 +#: src/Console/AppConsole.vala:268 src/Gtk/SettingsDialog.vala:166 msgid "Show" msgstr "Показать" -#: src/Console/AppConsole.vala:288 src/Gtk/MainWindow.vala:296 +#: src/Console/AppConsole.vala:269 src/Gtk/MainWindow.vala:296 msgid "Install" msgstr "Установить" -#: src/Console/AppConsole.vala:291 +#: src/Console/AppConsole.vala:272 msgid "Previously notified" msgstr "Предварительно уведомлено" @@ -385,15 +369,15 @@ msgstr "Составители документации" msgid "Third Party Inclusions" msgstr "Включая сторонние инструменты" -#: src/Gtk/AppGtk.vala:137 +#: src/Gtk/AppGtk.vala:74 msgid "options" msgstr "параметры" -#: src/Gtk/AppGtk.vala:141 +#: src/Gtk/AppGtk.vala:78 msgid "Print debug information" msgstr "Распечатать отладочную информацию" -#: src/Gtk/AppGtk.vala:142 +#: src/Gtk/AppGtk.vala:79 msgid "Show all options" msgstr "Показать все параметры" @@ -441,35 +425,31 @@ msgstr "О программе" msgid "Exit" msgstr "Выход" -#: src/Gtk/MainWindow.vala:411 +#: src/Gtk/MainWindow.vala:423 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Программа обновления ядра для дистрибутивов на базе Ubuntu" -#: src/Gtk/MainWindow.vala:412 +#: src/Gtk/MainWindow.vala:424 msgid "Forked" msgstr "Форк" -#: src/Gtk/MainWindow.vala:412 +#: src/Gtk/MainWindow.vala:424 msgid "Original" msgstr "Оригинал" -#: src/Gtk/MainWindow.vala:441 +#: src/Gtk/MainWindow.vala:453 msgid "Updating kernels" msgstr "Обновление ядер" -#: src/Gtk/MainWindow.vala:518 +#: src/Gtk/MainWindow.vala:521 msgid "available" msgstr "доступно" -#: src/Gtk/MainWindow.vala:572 src/Gtk/MainWindow.vala:611 -#: src/Gtk/MainWindow.vala:643 +#: src/Gtk/MainWindow.vala:571 src/Gtk/MainWindow.vala:610 +#: src/Gtk/MainWindow.vala:644 msgid "DONE" msgstr "" -#: src/Gtk/ProgressWindow.vala:126 src/Gtk/TerminalWindow.vala:151 -msgid "Cancel" -msgstr "Отмена" - #: src/Gtk/SettingsDialog.vala:59 msgid "Notification" msgstr "Уведомления" @@ -542,10 +522,10 @@ msgstr "Проверка контрольных сумм с помощью фа msgid "Proxy" msgstr "Доверенность" -#: src/Gtk/l.gtk.vala:29 -msgid "Missing Icon" -msgstr "Значок отсутствует" +#: src/Gtk/TerminalWindow.vala:151 +msgid "Cancel" +msgstr "Отмена" -#: src/lib/l.misc.vala:69 +#: src/lib/l.misc.vala:84 msgid "Can not reach site" msgstr "Не удается связаться с сайтом" diff --git a/po/sv.po b/po/sv.po index d1b801e7..857c48fc 100644 --- a/po/sv.po +++ b/po/sv.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-30 10:06-0400\n" +"POT-Creation-Date: 2023-05-31 19:56-0400\n" "PO-Revision-Date: 2018-01-13 16:56+0100\n" "Last-Translator: Åke Engelbrektson \n" "Language-Team:Swedish\n" @@ -37,178 +37,177 @@ msgstr "köbildning nedladdning" msgid "Fetching individual kernel indexes" msgstr "Hämta enskilda kernelindex" -#: src/Common/LinuxKernel.vala:287 +#: src/Common/LinuxKernel.vala:285 msgid "loading downloaded" msgstr "laddar nedladdad" -#: src/Common/LinuxKernel.vala:322 +#: src/Common/LinuxKernel.vala:320 msgid "Updating from" msgstr "Uppdatering från" -#: src/Common/LinuxKernel.vala:330 +#: src/Common/LinuxKernel.vala:328 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:333 +#: src/Common/LinuxKernel.vala:331 msgid "FAILED" msgstr "MISSLYCKADES" -#: src/Common/LinuxKernel.vala:392 +#: src/Common/LinuxKernel.vala:390 msgid "Found installed" msgstr "Hittade installerat" -#: src/Common/LinuxKernel.vala:393 +#: src/Common/LinuxKernel.vala:391 msgid "locked" msgstr "" -#: src/Common/LinuxKernel.vala:477 src/Common/LinuxKernel.vala:1009 -#: src/Common/LinuxKernel.vala:1098 +#: src/Common/LinuxKernel.vala:473 src/Common/LinuxKernel.vala:994 +#: src/Common/LinuxKernel.vala:1083 msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:681 src/Gtk/MainWindow.vala:509 -#: src/Gtk/MainWindow.vala:522 +#: src/Common/LinuxKernel.vala:666 src/Gtk/MainWindow.vala:517 msgid "Running" msgstr "Körs" -#: src/Common/LinuxKernel.vala:682 +#: src/Common/LinuxKernel.vala:667 msgid "Installed" msgstr "Installerad" -#: src/Common/LinuxKernel.vala:683 +#: src/Common/LinuxKernel.vala:668 msgid "Invalid" msgstr "Ogiltig" -#: src/Common/LinuxKernel.vala:768 +#: src/Common/LinuxKernel.vala:753 msgid "Packages Available" msgstr "Tillgängliga paket" -#: src/Common/LinuxKernel.vala:774 +#: src/Common/LinuxKernel.vala:759 msgid "Packages Installed" msgstr "Installerade paket" -#: src/Common/LinuxKernel.vala:799 src/lib/TeeJee.FileSystem.vala:118 +#: src/Common/LinuxKernel.vala:784 src/lib/TeeJee.FileSystem.vala:118 msgid "File not found" msgstr "Filen kan inte hittas" -#: src/Common/LinuxKernel.vala:893 +#: src/Common/LinuxKernel.vala:878 msgid "Available Kernels" msgstr "Tillgängliga kärnor" -#: src/Common/LinuxKernel.vala:928 src/Gtk/MainWindow.vala:119 +#: src/Common/LinuxKernel.vala:913 src/Gtk/MainWindow.vala:119 msgid "Kernel" msgstr "Kärna" -#: src/Common/LinuxKernel.vala:928 +#: src/Common/LinuxKernel.vala:913 #, fuzzy msgid "not found" msgstr "Filen kan inte hittas" -#: src/Common/LinuxKernel.vala:935 +#: src/Common/LinuxKernel.vala:920 #, fuzzy msgid "Download: no downloadable kernels specified" msgstr "Kommandot har inte angetts" -#: src/Common/LinuxKernel.vala:955 +#: src/Common/LinuxKernel.vala:940 msgid "enabled" msgstr "aktiverat" -#: src/Common/LinuxKernel.vala:979 +#: src/Common/LinuxKernel.vala:964 msgid "Downloading" msgstr "Ladda ner" -#: src/Common/LinuxKernel.vala:1004 +#: src/Common/LinuxKernel.vala:989 msgid "is already installed." msgstr "är redan installerat." -#: src/Common/LinuxKernel.vala:1014 +#: src/Common/LinuxKernel.vala:999 msgid "download failed." msgstr "" -#: src/Common/LinuxKernel.vala:1022 +#: src/Common/LinuxKernel.vala:1007 #, fuzzy msgid "Install: no installable kernels secified" msgstr "Kommandot har inte angetts" -#: src/Common/LinuxKernel.vala:1034 +#: src/Common/LinuxKernel.vala:1019 msgid "Uninstalling selected kernels" msgstr "Avinstallera valda kärnor" -#: src/Common/LinuxKernel.vala:1038 +#: src/Common/LinuxKernel.vala:1023 #, fuzzy msgid "Requested" msgstr "begärd" -#: src/Common/LinuxKernel.vala:1041 +#: src/Common/LinuxKernel.vala:1026 #, fuzzy msgid "Not uninstalling the currently running kernel" msgstr "Avinstallera inte den kärna som körs, för närvarande" -#: src/Common/LinuxKernel.vala:1046 +#: src/Common/LinuxKernel.vala:1031 msgid "is locked" msgstr "" -#: src/Common/LinuxKernel.vala:1054 +#: src/Common/LinuxKernel.vala:1039 msgid "found" msgstr "grunda" -#: src/Common/LinuxKernel.vala:1058 +#: src/Common/LinuxKernel.vala:1043 msgid "Uninstall: no uninstallable packages found" msgstr "" -#: src/Common/LinuxKernel.vala:1094 +#: src/Common/LinuxKernel.vala:1079 #, fuzzy msgid "is the highest installed version." msgstr "Avinstallera alla utom den högsta installerade versionen" -#: src/Common/LinuxKernel.vala:1107 +#: src/Common/LinuxKernel.vala:1092 msgid "Could not find running kernel in list" msgstr "Det gick inte att hitta kernel som körs i listan" -#: src/Common/LinuxKernel.vala:1112 +#: src/Common/LinuxKernel.vala:1097 msgid "Could not find any kernels to uninstall" msgstr "Det gick inte att hitta några kärnor att avinstallera" -#: src/Common/LinuxKernel.vala:1120 +#: src/Common/LinuxKernel.vala:1105 msgid "The following kernels will be uninstalled" msgstr "Följande kärnor kommer att avinstalleras" -#: src/Common/LinuxKernel.vala:1124 +#: src/Common/LinuxKernel.vala:1109 msgid "Continue ?" msgstr "Fortsätta?" -#: src/Common/LinuxKernel.vala:1146 src/Console/AppConsole.vala:234 +#: src/Common/LinuxKernel.vala:1131 src/Console/AppConsole.vala:215 msgid "Latest update" msgstr "Senaste uppdatering" -#: src/Common/LinuxKernel.vala:1157 src/Console/AppConsole.vala:241 +#: src/Common/LinuxKernel.vala:1142 src/Console/AppConsole.vala:222 msgid "Latest point update" msgstr "Senaste punktuppdatering" -#: src/Common/LinuxKernel.vala:1165 src/Console/AppConsole.vala:246 -#: src/Console/AppConsole.vala:261 +#: src/Common/LinuxKernel.vala:1150 src/Console/AppConsole.vala:227 +#: src/Console/AppConsole.vala:242 msgid "No updates found" msgstr "Inga uppdateringar hittades" -#: src/Common/LinuxKernel.vala:1174 +#: src/Common/LinuxKernel.vala:1159 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Installera kärnversion %s ? (j/n):" -#: src/Common/Main.vala:334 +#: src/Common/Main.vala:346 msgid "Called from" msgstr "Ringde från" -#: src/Common/Main.vala:334 +#: src/Common/Main.vala:346 msgid "at logon" msgstr "vid start" -#: src/Common/Main.vala:335 +#: src/Common/Main.vala:347 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "Den här filen skrivs över och körs igen när inställningar sparas i" -#: src/Common/Main.vala:367 +#: src/Common/Main.vala:379 msgid "Notifications are disabled" msgstr "Meddelanden är inaktiverade" @@ -217,134 +216,119 @@ msgstr "Meddelanden är inaktiverade" msgid "File not found: %s" msgstr "Filen hittades inte: %s" -#: src/Console/AppConsole.vala:43 src/Gtk/AppGtk.vala:137 +#: src/Console/AppConsole.vala:40 src/Gtk/AppGtk.vala:74 msgid "Syntax" msgstr "Syntax" -#: src/Console/AppConsole.vala:45 +#: src/Console/AppConsole.vala:42 msgid "Commands" msgstr "Kommandon" -#: src/Console/AppConsole.vala:47 +#: src/Console/AppConsole.vala:44 msgid "Check for kernel updates" msgstr "Sök efter kärnuppdateringar" -#: src/Console/AppConsole.vala:48 +#: src/Console/AppConsole.vala:45 msgid "Check for kernel updates and notify current user" msgstr "Sök efter kärnuppdateringar och meddela aktuell användare" -#: src/Console/AppConsole.vala:49 +#: src/Console/AppConsole.vala:46 #, fuzzy msgid "List available mainline kernels" msgstr "Lista alla tillgängliga kärnor" -#: src/Console/AppConsole.vala:50 +#: src/Console/AppConsole.vala:47 msgid "List installed kernels" msgstr "Lista installerade kärnor" -#: src/Console/AppConsole.vala:51 +#: src/Console/AppConsole.vala:48 msgid "Install latest mainline kernel" msgstr "Installera senaste mainline-kärnan" -#: src/Console/AppConsole.vala:52 +#: src/Console/AppConsole.vala:49 #, fuzzy msgid "Install latest point update in the current major version" msgstr "Installera senaste punktuppdateringen för aktuella serier" -#: src/Console/AppConsole.vala:53 +#: src/Console/AppConsole.vala:50 #, fuzzy msgid "Install specified kernels" msgstr "Avinstallera angiven kärna" -#: src/Console/AppConsole.vala:54 +#: src/Console/AppConsole.vala:51 #, fuzzy msgid "Uninstall specified kernels" msgstr "Avinstallera angiven kärna" -#: src/Console/AppConsole.vala:55 src/Gtk/MainWindow.vala:324 +#: src/Console/AppConsole.vala:52 src/Gtk/MainWindow.vala:324 msgid "Uninstall all but the highest installed version" msgstr "Avinstallera alla utom den högsta installerade versionen" -#: src/Console/AppConsole.vala:56 +#: src/Console/AppConsole.vala:53 msgid "Download specified kernels" msgstr "Ladda ner angivna kärnor" -#: src/Console/AppConsole.vala:57 +#: src/Console/AppConsole.vala:54 msgid "Delete cached info about available kernels" msgstr "Ta bort cachelagrad information om tillgängliga kärnor" -#: src/Console/AppConsole.vala:59 src/Gtk/AppGtk.vala:139 +#: src/Console/AppConsole.vala:56 src/Gtk/AppGtk.vala:76 msgid "Options" msgstr "Alternativ" -#: src/Console/AppConsole.vala:61 +#: src/Console/AppConsole.vala:58 msgid "Include unstable and RC releases" msgstr "Inkludera instabila utgåvor och RC-utgåvor" -#: src/Console/AppConsole.vala:62 +#: src/Console/AppConsole.vala:59 msgid "Exclude unstable and RC releases" msgstr "Exkludera instabila utgåvor och RC-utgåvor" -#: src/Console/AppConsole.vala:63 +#: src/Console/AppConsole.vala:60 msgid "Verbosity. Set to n if given, or increment." msgstr "" -#: src/Console/AppConsole.vala:64 +#: src/Console/AppConsole.vala:61 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "Antag Ja för alla prompter (icke-interaktivt läge)" -#: src/Console/AppConsole.vala:67 +#: src/Console/AppConsole.vala:64 #, fuzzy msgid "One or more version strings taken from the output of --list" msgstr "En versionssträng som hämtas från utdata från --list" -#: src/Console/AppConsole.vala:68 +#: src/Console/AppConsole.vala:65 msgid "comma, pipe, or colon-seperated, or quoted space seperated" msgstr "" -#: src/Console/AppConsole.vala:69 +#: src/Console/AppConsole.vala:66 #, fuzzy msgid "Locked kernels and the currently running kernel are ignored" msgstr "Den kärna som för närvarande körs ignoreras alltid" -#: src/Console/AppConsole.vala:160 src/Gtk/AppGtk.vala:123 +#: src/Console/AppConsole.vala:143 src/Console/AppConsole.vala:200 +#: src/Gtk/AppGtk.vala:108 msgid "Unknown option" msgstr "Okänt alternativ" -#: src/Console/AppConsole.vala:161 src/Console/AppConsole.vala:220 -msgid "Run" -msgstr "Kör" - -#: src/Console/AppConsole.vala:161 -msgid "to list all options" -msgstr "för att lista alla alternativ" - -#: src/Console/AppConsole.vala:219 -msgid "Command not specified" -msgstr "Kommandot har inte angetts" - -#: src/Console/AppConsole.vala:220 -msgid "to list all commands" -msgstr "för att lista alla kommandon" - -#: src/Console/AppConsole.vala:255 +#: src/Console/AppConsole.vala:236 msgid "Notifications disabled in settings" msgstr "Meddelanden inaktiverade i inställningarna" -#: src/Console/AppConsole.vala:283 +#: src/Console/AppConsole.vala:264 #, c-format msgid "Kernel %s Available" msgstr "Kernel %s tillgängliga" -#: src/Console/AppConsole.vala:287 src/Gtk/SettingsDialog.vala:166 +#: src/Console/AppConsole.vala:268 src/Gtk/SettingsDialog.vala:166 msgid "Show" msgstr "Visa" -#: src/Console/AppConsole.vala:288 src/Gtk/MainWindow.vala:296 +#: src/Console/AppConsole.vala:269 src/Gtk/MainWindow.vala:296 msgid "Install" msgstr "Installera" -#: src/Console/AppConsole.vala:291 +#: src/Console/AppConsole.vala:272 msgid "Previously notified" msgstr "Tidigare anmält" @@ -384,15 +368,15 @@ msgstr "Dokumentalister" msgid "Third Party Inclusions" msgstr "Tredjepartsverktyg" -#: src/Gtk/AppGtk.vala:137 +#: src/Gtk/AppGtk.vala:74 msgid "options" msgstr "alternativ" -#: src/Gtk/AppGtk.vala:141 +#: src/Gtk/AppGtk.vala:78 msgid "Print debug information" msgstr "Skriv ut felsökningsinformation" -#: src/Gtk/AppGtk.vala:142 +#: src/Gtk/AppGtk.vala:79 msgid "Show all options" msgstr "Visa alla alternativ" @@ -440,35 +424,31 @@ msgstr "Om" msgid "Exit" msgstr "Utgång" -#: src/Gtk/MainWindow.vala:411 +#: src/Gtk/MainWindow.vala:423 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Kärnuppgraderingsverktyg för Ubuntu-baserade distributioner" -#: src/Gtk/MainWindow.vala:412 +#: src/Gtk/MainWindow.vala:424 msgid "Forked" msgstr "Kluven" -#: src/Gtk/MainWindow.vala:412 +#: src/Gtk/MainWindow.vala:424 msgid "Original" msgstr "Original" -#: src/Gtk/MainWindow.vala:441 +#: src/Gtk/MainWindow.vala:453 msgid "Updating kernels" msgstr "Uppdatera kärnor" -#: src/Gtk/MainWindow.vala:518 +#: src/Gtk/MainWindow.vala:521 msgid "available" msgstr "tillgänglig" -#: src/Gtk/MainWindow.vala:572 src/Gtk/MainWindow.vala:611 -#: src/Gtk/MainWindow.vala:643 +#: src/Gtk/MainWindow.vala:571 src/Gtk/MainWindow.vala:610 +#: src/Gtk/MainWindow.vala:644 msgid "DONE" msgstr "" -#: src/Gtk/ProgressWindow.vala:126 src/Gtk/TerminalWindow.vala:151 -msgid "Cancel" -msgstr "Avbryt" - #: src/Gtk/SettingsDialog.vala:59 msgid "Notification" msgstr "Avisering" @@ -541,10 +521,10 @@ msgstr "Verifiera kontrollsummor med CHECKSUMS-filerna" msgid "Proxy" msgstr "Proxyserver" -#: src/Gtk/l.gtk.vala:29 -msgid "Missing Icon" -msgstr "Saknad ikon" +#: src/Gtk/TerminalWindow.vala:151 +msgid "Cancel" +msgstr "Avbryt" -#: src/lib/l.misc.vala:69 +#: src/lib/l.misc.vala:84 msgid "Can not reach site" msgstr "Kan inte nå webbplatsen" diff --git a/po/tr.po b/po/tr.po index 80e2beac..de149756 100644 --- a/po/tr.po +++ b/po/tr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-30 10:06-0400\n" +"POT-Creation-Date: 2023-05-31 19:56-0400\n" "PO-Revision-Date: 2022-08-06 16:48+0300\n" "Last-Translator: Sabri Ünal \n" "Language-Team: Turkish\n" @@ -37,180 +37,179 @@ msgstr "kuyruğa alma indirme" msgid "Fetching individual kernel indexes" msgstr "Tek tek çekirdek dizinlerini alma" -#: src/Common/LinuxKernel.vala:287 +#: src/Common/LinuxKernel.vala:285 msgid "loading downloaded" msgstr "indirilen yükleniyor" -#: src/Common/LinuxKernel.vala:322 +#: src/Common/LinuxKernel.vala:320 msgid "Updating from" msgstr "Şuradan güncelleniyor" -#: src/Common/LinuxKernel.vala:330 +#: src/Common/LinuxKernel.vala:328 msgid "OK" msgstr "Tamam" -#: src/Common/LinuxKernel.vala:333 +#: src/Common/LinuxKernel.vala:331 msgid "FAILED" msgstr "BAŞARISIZ" -#: src/Common/LinuxKernel.vala:392 +#: src/Common/LinuxKernel.vala:390 msgid "Found installed" msgstr "Yüklü bulundu" -#: src/Common/LinuxKernel.vala:393 +#: src/Common/LinuxKernel.vala:391 msgid "locked" msgstr "" -#: src/Common/LinuxKernel.vala:477 src/Common/LinuxKernel.vala:1009 -#: src/Common/LinuxKernel.vala:1098 +#: src/Common/LinuxKernel.vala:473 src/Common/LinuxKernel.vala:994 +#: src/Common/LinuxKernel.vala:1083 msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:681 src/Gtk/MainWindow.vala:509 -#: src/Gtk/MainWindow.vala:522 +#: src/Common/LinuxKernel.vala:666 src/Gtk/MainWindow.vala:517 msgid "Running" msgstr "Çalışıyor" -#: src/Common/LinuxKernel.vala:682 +#: src/Common/LinuxKernel.vala:667 msgid "Installed" msgstr "Kurulu" -#: src/Common/LinuxKernel.vala:683 +#: src/Common/LinuxKernel.vala:668 msgid "Invalid" msgstr "Geçersiz" -#: src/Common/LinuxKernel.vala:768 +#: src/Common/LinuxKernel.vala:753 msgid "Packages Available" msgstr "Mevcut Paketler" -#: src/Common/LinuxKernel.vala:774 +#: src/Common/LinuxKernel.vala:759 msgid "Packages Installed" msgstr "Kurulu Paketler" -#: src/Common/LinuxKernel.vala:799 src/lib/TeeJee.FileSystem.vala:118 +#: src/Common/LinuxKernel.vala:784 src/lib/TeeJee.FileSystem.vala:118 msgid "File not found" msgstr "Dosya bulunamadı" -#: src/Common/LinuxKernel.vala:893 +#: src/Common/LinuxKernel.vala:878 msgid "Available Kernels" msgstr "Mevcut Çekirdekler" -#: src/Common/LinuxKernel.vala:928 src/Gtk/MainWindow.vala:119 +#: src/Common/LinuxKernel.vala:913 src/Gtk/MainWindow.vala:119 msgid "Kernel" msgstr "Çekirdek" -#: src/Common/LinuxKernel.vala:928 +#: src/Common/LinuxKernel.vala:913 #, fuzzy msgid "not found" msgstr "Dosya bulunamadı" -#: src/Common/LinuxKernel.vala:935 +#: src/Common/LinuxKernel.vala:920 #, fuzzy msgid "Download: no downloadable kernels specified" msgstr "Komut belirtilmedi" -#: src/Common/LinuxKernel.vala:955 +#: src/Common/LinuxKernel.vala:940 msgid "enabled" msgstr "etkin" -#: src/Common/LinuxKernel.vala:979 +#: src/Common/LinuxKernel.vala:964 msgid "Downloading" msgstr "Indiriyor" -#: src/Common/LinuxKernel.vala:1004 +#: src/Common/LinuxKernel.vala:989 msgid "is already installed." msgstr "zaten yüklü." -#: src/Common/LinuxKernel.vala:1014 +#: src/Common/LinuxKernel.vala:999 msgid "download failed." msgstr "" -#: src/Common/LinuxKernel.vala:1022 +#: src/Common/LinuxKernel.vala:1007 #, fuzzy msgid "Install: no installable kernels secified" msgstr "Komut belirtilmedi" -#: src/Common/LinuxKernel.vala:1034 +#: src/Common/LinuxKernel.vala:1019 msgid "Uninstalling selected kernels" msgstr "Seçili çekirdekleri kaldırma" -#: src/Common/LinuxKernel.vala:1038 +#: src/Common/LinuxKernel.vala:1023 #, fuzzy msgid "Requested" msgstr "istenen" -#: src/Common/LinuxKernel.vala:1041 +#: src/Common/LinuxKernel.vala:1026 #, fuzzy msgid "Not uninstalling the currently running kernel" msgstr "çalışmakta olan çekirdeğin kaldırılmaması" -#: src/Common/LinuxKernel.vala:1046 +#: src/Common/LinuxKernel.vala:1031 msgid "is locked" msgstr "" -#: src/Common/LinuxKernel.vala:1054 +#: src/Common/LinuxKernel.vala:1039 msgid "found" msgstr "kurmak" -#: src/Common/LinuxKernel.vala:1058 +#: src/Common/LinuxKernel.vala:1043 msgid "Uninstall: no uninstallable packages found" msgstr "" -#: src/Common/LinuxKernel.vala:1094 +#: src/Common/LinuxKernel.vala:1079 #, fuzzy msgid "is the highest installed version." msgstr "En yüksek yüklü sürüm dışındaki tüm sürümleri kaldırın" -#: src/Common/LinuxKernel.vala:1107 +#: src/Common/LinuxKernel.vala:1092 msgid "Could not find running kernel in list" msgstr "Listede çalışan çekirdek bulunamadı" -#: src/Common/LinuxKernel.vala:1112 +#: src/Common/LinuxKernel.vala:1097 msgid "Could not find any kernels to uninstall" msgstr "Kaldırılacak çekirdek bulunamadı" -#: src/Common/LinuxKernel.vala:1120 +#: src/Common/LinuxKernel.vala:1105 msgid "The following kernels will be uninstalled" msgstr "Aşağıdaki çekirdekler kaldırılacaktır" -#: src/Common/LinuxKernel.vala:1124 +#: src/Common/LinuxKernel.vala:1109 msgid "Continue ?" msgstr "Devam edilsin mi?" -#: src/Common/LinuxKernel.vala:1146 src/Console/AppConsole.vala:234 +#: src/Common/LinuxKernel.vala:1131 src/Console/AppConsole.vala:215 msgid "Latest update" msgstr "Son güncelleme" # Point burada point release anlamında kullanılıyor. Örneğin 5.10.x sayısının en sonundaki x rakamı point release/nokta sürüm oluyor. -#: src/Common/LinuxKernel.vala:1157 src/Console/AppConsole.vala:241 +#: src/Common/LinuxKernel.vala:1142 src/Console/AppConsole.vala:222 msgid "Latest point update" msgstr "Son nokta güncellemesi" -#: src/Common/LinuxKernel.vala:1165 src/Console/AppConsole.vala:246 -#: src/Console/AppConsole.vala:261 +#: src/Common/LinuxKernel.vala:1150 src/Console/AppConsole.vala:227 +#: src/Console/AppConsole.vala:242 msgid "No updates found" msgstr "Güncelleme bulunamadı" -#: src/Common/LinuxKernel.vala:1174 +#: src/Common/LinuxKernel.vala:1159 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Linux Çekirdek Sürümü %s Kurulsun mu? (e/h): " -#: src/Common/Main.vala:334 +#: src/Common/Main.vala:346 msgid "Called from" msgstr "Çağrı konumu" -#: src/Common/Main.vala:334 +#: src/Common/Main.vala:346 msgid "at logon" msgstr "başlangıçta" -#: src/Common/Main.vala:335 +#: src/Common/Main.vala:347 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" "Bu dosyanın üzerine yazılır ve ayarlar her kaydedildiğinde yeniden yürütülür" -#: src/Common/Main.vala:367 +#: src/Common/Main.vala:379 msgid "Notifications are disabled" msgstr "Bildirimler devre dışı bırakılmış" @@ -219,134 +218,119 @@ msgstr "Bildirimler devre dışı bırakılmış" msgid "File not found: %s" msgstr "Dosya bulunamadı: %s" -#: src/Console/AppConsole.vala:43 src/Gtk/AppGtk.vala:137 +#: src/Console/AppConsole.vala:40 src/Gtk/AppGtk.vala:74 msgid "Syntax" msgstr "Sözdizimi" -#: src/Console/AppConsole.vala:45 +#: src/Console/AppConsole.vala:42 msgid "Commands" msgstr "Komutlar" -#: src/Console/AppConsole.vala:47 +#: src/Console/AppConsole.vala:44 msgid "Check for kernel updates" msgstr "Çekirdek güncellemelerini kontrol et" -#: src/Console/AppConsole.vala:48 +#: src/Console/AppConsole.vala:45 msgid "Check for kernel updates and notify current user" msgstr "Çekirdek güncellemelerini kontrol et ve mevcut kullanıcıyı uyar" -#: src/Console/AppConsole.vala:49 +#: src/Console/AppConsole.vala:46 #, fuzzy msgid "List available mainline kernels" msgstr "Tüm mainline çekirdeklerini listele" -#: src/Console/AppConsole.vala:50 +#: src/Console/AppConsole.vala:47 msgid "List installed kernels" msgstr "Kurulu çekirdekleri listele" -#: src/Console/AppConsole.vala:51 +#: src/Console/AppConsole.vala:48 msgid "Install latest mainline kernel" msgstr "En son mainline çekirdeğini kur" -#: src/Console/AppConsole.vala:52 +#: src/Console/AppConsole.vala:49 #, fuzzy msgid "Install latest point update in the current major version" msgstr "Mevcut çekirdek serisi için en son nokta güncellemesini kur" -#: src/Console/AppConsole.vala:53 +#: src/Console/AppConsole.vala:50 #, fuzzy msgid "Install specified kernels" msgstr "Belirtilen çekirdeğini kaldır" -#: src/Console/AppConsole.vala:54 +#: src/Console/AppConsole.vala:51 #, fuzzy msgid "Uninstall specified kernels" msgstr "Belirtilen çekirdeğini kaldır" -#: src/Console/AppConsole.vala:55 src/Gtk/MainWindow.vala:324 +#: src/Console/AppConsole.vala:52 src/Gtk/MainWindow.vala:324 msgid "Uninstall all but the highest installed version" msgstr "En yüksek yüklü sürüm dışındaki tüm sürümleri kaldırın" -#: src/Console/AppConsole.vala:56 +#: src/Console/AppConsole.vala:53 msgid "Download specified kernels" msgstr "Belirtilen çekirdekleri indir" -#: src/Console/AppConsole.vala:57 +#: src/Console/AppConsole.vala:54 msgid "Delete cached info about available kernels" msgstr "Kullanılabilir çekirdekler hakkında önbelleğe alınmış bilgileri silme" -#: src/Console/AppConsole.vala:59 src/Gtk/AppGtk.vala:139 +#: src/Console/AppConsole.vala:56 src/Gtk/AppGtk.vala:76 msgid "Options" msgstr "Seçenekler" -#: src/Console/AppConsole.vala:61 +#: src/Console/AppConsole.vala:58 msgid "Include unstable and RC releases" msgstr "Kararsız ve RC sürümleri dahil et" -#: src/Console/AppConsole.vala:62 +#: src/Console/AppConsole.vala:59 msgid "Exclude unstable and RC releases" msgstr "Kararsız ve RC sürümlerini hariç tutma" -#: src/Console/AppConsole.vala:63 +#: src/Console/AppConsole.vala:60 msgid "Verbosity. Set to n if given, or increment." msgstr "" -#: src/Console/AppConsole.vala:64 +#: src/Console/AppConsole.vala:61 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "Tüm istemler için Evet'i kabul edin (etkileşimsiz kip)" -#: src/Console/AppConsole.vala:67 +#: src/Console/AppConsole.vala:64 #, fuzzy msgid "One or more version strings taken from the output of --list" msgstr "--list çıktısından alınan sürüm dizgesi" -#: src/Console/AppConsole.vala:68 +#: src/Console/AppConsole.vala:65 msgid "comma, pipe, or colon-seperated, or quoted space seperated" msgstr "" -#: src/Console/AppConsole.vala:69 +#: src/Console/AppConsole.vala:66 #, fuzzy msgid "Locked kernels and the currently running kernel are ignored" msgstr "Şu anda çalışan çekirdek her zaman yoksayılır" -#: src/Console/AppConsole.vala:160 src/Gtk/AppGtk.vala:123 +#: src/Console/AppConsole.vala:143 src/Console/AppConsole.vala:200 +#: src/Gtk/AppGtk.vala:108 msgid "Unknown option" msgstr "Bilinmeyen seçenek" -#: src/Console/AppConsole.vala:161 src/Console/AppConsole.vala:220 -msgid "Run" -msgstr "Çalıştır" - -#: src/Console/AppConsole.vala:161 -msgid "to list all options" -msgstr "tüm seçenekleri listele" - -#: src/Console/AppConsole.vala:219 -msgid "Command not specified" -msgstr "Komut belirtilmedi" - -#: src/Console/AppConsole.vala:220 -msgid "to list all commands" -msgstr "tüm komutları listele" - -#: src/Console/AppConsole.vala:255 +#: src/Console/AppConsole.vala:236 msgid "Notifications disabled in settings" msgstr "Ayarlarda devre dışı bırakılan bildirimler" -#: src/Console/AppConsole.vala:283 +#: src/Console/AppConsole.vala:264 #, c-format msgid "Kernel %s Available" msgstr "Çekirdek %s Kullanılabilir" -#: src/Console/AppConsole.vala:287 src/Gtk/SettingsDialog.vala:166 +#: src/Console/AppConsole.vala:268 src/Gtk/SettingsDialog.vala:166 msgid "Show" msgstr "Göster" -#: src/Console/AppConsole.vala:288 src/Gtk/MainWindow.vala:296 +#: src/Console/AppConsole.vala:269 src/Gtk/MainWindow.vala:296 msgid "Install" msgstr "Kur" -#: src/Console/AppConsole.vala:291 +#: src/Console/AppConsole.vala:272 msgid "Previously notified" msgstr "Daha önce bildirilmiş" @@ -386,15 +370,15 @@ msgstr "Belgelendirenler" msgid "Third Party Inclusions" msgstr "Üçüncü Taraf Eklemeler" -#: src/Gtk/AppGtk.vala:137 +#: src/Gtk/AppGtk.vala:74 msgid "options" msgstr "seçenekler" -#: src/Gtk/AppGtk.vala:141 +#: src/Gtk/AppGtk.vala:78 msgid "Print debug information" msgstr "Hata ayıklama bilgisini yazdır" -#: src/Gtk/AppGtk.vala:142 +#: src/Gtk/AppGtk.vala:79 msgid "Show all options" msgstr "Tüm seçenekleri göster" @@ -442,35 +426,31 @@ msgstr "Hakkında" msgid "Exit" msgstr "Çıkış" -#: src/Gtk/MainWindow.vala:411 +#: src/Gtk/MainWindow.vala:423 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Ubuntu tabanlı dağıtımlar için çekirdek güncelleme aracı" -#: src/Gtk/MainWindow.vala:412 +#: src/Gtk/MainWindow.vala:424 msgid "Forked" msgstr "Çatallandı" -#: src/Gtk/MainWindow.vala:412 +#: src/Gtk/MainWindow.vala:424 msgid "Original" msgstr "Özgün" -#: src/Gtk/MainWindow.vala:441 +#: src/Gtk/MainWindow.vala:453 msgid "Updating kernels" msgstr "Çekirdekleri güncelleme" -#: src/Gtk/MainWindow.vala:518 +#: src/Gtk/MainWindow.vala:521 msgid "available" msgstr "mevcut" -#: src/Gtk/MainWindow.vala:572 src/Gtk/MainWindow.vala:611 -#: src/Gtk/MainWindow.vala:643 +#: src/Gtk/MainWindow.vala:571 src/Gtk/MainWindow.vala:610 +#: src/Gtk/MainWindow.vala:644 msgid "DONE" msgstr "" -#: src/Gtk/ProgressWindow.vala:126 src/Gtk/TerminalWindow.vala:151 -msgid "Cancel" -msgstr "İptal Et" - #: src/Gtk/SettingsDialog.vala:59 msgid "Notification" msgstr "Bildirim" @@ -543,10 +523,10 @@ msgstr "Sağlama toplamlarını CHECKSUMS dosyalarıyla doğrulama" msgid "Proxy" msgstr "Proxy" -#: src/Gtk/l.gtk.vala:29 -msgid "Missing Icon" -msgstr "Eksik Simge" +#: src/Gtk/TerminalWindow.vala:151 +msgid "Cancel" +msgstr "İptal Et" -#: src/lib/l.misc.vala:69 +#: src/lib/l.misc.vala:84 msgid "Can not reach site" msgstr "Siteye ulaşılamıyor" diff --git a/po/uk.po b/po/uk.po index f9de8ce4..5f8efc08 100644 --- a/po/uk.po +++ b/po/uk.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-30 10:06-0400\n" +"POT-Creation-Date: 2023-05-31 19:56-0400\n" "PO-Revision-Date: 2019-07-25 11:00+0300\n" "Last-Translator: Serhii Golovko \n" "Language-Team: Ukranian\n" @@ -37,180 +37,179 @@ msgstr "Черга завантаження" msgid "Fetching individual kernel indexes" msgstr "Вибірка окремих індексів ядра" -#: src/Common/LinuxKernel.vala:287 +#: src/Common/LinuxKernel.vala:285 msgid "loading downloaded" msgstr "Завантаження завантаженого" -#: src/Common/LinuxKernel.vala:322 +#: src/Common/LinuxKernel.vala:320 msgid "Updating from" msgstr "Оновлення з" -#: src/Common/LinuxKernel.vala:330 +#: src/Common/LinuxKernel.vala:328 msgid "OK" msgstr "Добре" -#: src/Common/LinuxKernel.vala:333 +#: src/Common/LinuxKernel.vala:331 msgid "FAILED" msgstr "НЕ ВДАЛОСЯ" -#: src/Common/LinuxKernel.vala:392 +#: src/Common/LinuxKernel.vala:390 msgid "Found installed" msgstr "Знайдено встановленим" -#: src/Common/LinuxKernel.vala:393 +#: src/Common/LinuxKernel.vala:391 msgid "locked" msgstr "заблокований" -#: src/Common/LinuxKernel.vala:477 src/Common/LinuxKernel.vala:1009 -#: src/Common/LinuxKernel.vala:1098 +#: src/Common/LinuxKernel.vala:473 src/Common/LinuxKernel.vala:994 +#: src/Common/LinuxKernel.vala:1083 msgid "is locked." msgstr "заблоковано." -#: src/Common/LinuxKernel.vala:681 src/Gtk/MainWindow.vala:509 -#: src/Gtk/MainWindow.vala:522 +#: src/Common/LinuxKernel.vala:666 src/Gtk/MainWindow.vala:517 msgid "Running" msgstr "Використовується" -#: src/Common/LinuxKernel.vala:682 +#: src/Common/LinuxKernel.vala:667 msgid "Installed" msgstr "Встановлено" -#: src/Common/LinuxKernel.vala:683 +#: src/Common/LinuxKernel.vala:668 msgid "Invalid" msgstr "Інвалід" -#: src/Common/LinuxKernel.vala:768 +#: src/Common/LinuxKernel.vala:753 msgid "Packages Available" msgstr "Доступні пакети" -#: src/Common/LinuxKernel.vala:774 +#: src/Common/LinuxKernel.vala:759 msgid "Packages Installed" msgstr "Встановлені пакети" -#: src/Common/LinuxKernel.vala:799 src/lib/TeeJee.FileSystem.vala:118 +#: src/Common/LinuxKernel.vala:784 src/lib/TeeJee.FileSystem.vala:118 msgid "File not found" msgstr "Файл не знайдено" -#: src/Common/LinuxKernel.vala:893 +#: src/Common/LinuxKernel.vala:878 msgid "Available Kernels" msgstr "Доступні ядра" -#: src/Common/LinuxKernel.vala:928 src/Gtk/MainWindow.vala:119 +#: src/Common/LinuxKernel.vala:913 src/Gtk/MainWindow.vala:119 msgid "Kernel" msgstr "Ядро" -#: src/Common/LinuxKernel.vala:928 +#: src/Common/LinuxKernel.vala:913 #, fuzzy msgid "not found" msgstr "Файл не знайдено" -#: src/Common/LinuxKernel.vala:935 +#: src/Common/LinuxKernel.vala:920 #, fuzzy msgid "Download: no downloadable kernels specified" msgstr "Команда не вказана" -#: src/Common/LinuxKernel.vala:955 +#: src/Common/LinuxKernel.vala:940 msgid "enabled" msgstr "увімкнено" -#: src/Common/LinuxKernel.vala:979 +#: src/Common/LinuxKernel.vala:964 msgid "Downloading" msgstr "Завантаження" -#: src/Common/LinuxKernel.vala:1004 +#: src/Common/LinuxKernel.vala:989 msgid "is already installed." msgstr "вже встановлено." -#: src/Common/LinuxKernel.vala:1014 +#: src/Common/LinuxKernel.vala:999 msgid "download failed." msgstr "" -#: src/Common/LinuxKernel.vala:1022 +#: src/Common/LinuxKernel.vala:1007 #, fuzzy msgid "Install: no installable kernels secified" msgstr "Команда не вказана" -#: src/Common/LinuxKernel.vala:1034 +#: src/Common/LinuxKernel.vala:1019 msgid "Uninstalling selected kernels" msgstr "Видаліть конкретні ядра" -#: src/Common/LinuxKernel.vala:1038 +#: src/Common/LinuxKernel.vala:1023 #, fuzzy msgid "Requested" msgstr "запитуваний" -#: src/Common/LinuxKernel.vala:1041 +#: src/Common/LinuxKernel.vala:1026 #, fuzzy msgid "Not uninstalling the currently running kernel" msgstr "не видалятиме поточне запущене ядро" -#: src/Common/LinuxKernel.vala:1046 +#: src/Common/LinuxKernel.vala:1031 #, fuzzy msgid "is locked" msgstr "заблоковано." -#: src/Common/LinuxKernel.vala:1054 +#: src/Common/LinuxKernel.vala:1039 msgid "found" msgstr "знайдено" -#: src/Common/LinuxKernel.vala:1058 +#: src/Common/LinuxKernel.vala:1043 msgid "Uninstall: no uninstallable packages found" msgstr "" -#: src/Common/LinuxKernel.vala:1094 +#: src/Common/LinuxKernel.vala:1079 #, fuzzy msgid "is the highest installed version." msgstr "Видаліть усі, крім найвищої встановленої версії" -#: src/Common/LinuxKernel.vala:1107 +#: src/Common/LinuxKernel.vala:1092 msgid "Could not find running kernel in list" msgstr "Не вдалося знайти запущене ядро у списку!" -#: src/Common/LinuxKernel.vala:1112 +#: src/Common/LinuxKernel.vala:1097 msgid "Could not find any kernels to uninstall" msgstr "Не вдалося знайти жодне ядро для вилучення" -#: src/Common/LinuxKernel.vala:1120 +#: src/Common/LinuxKernel.vala:1105 msgid "The following kernels will be uninstalled" msgstr "Наступні ядра будуть видалені" -#: src/Common/LinuxKernel.vala:1124 +#: src/Common/LinuxKernel.vala:1109 msgid "Continue ?" msgstr "Продовжувати ?" -#: src/Common/LinuxKernel.vala:1146 src/Console/AppConsole.vala:234 +#: src/Common/LinuxKernel.vala:1131 src/Console/AppConsole.vala:215 msgid "Latest update" msgstr "Останнє оновлення" -#: src/Common/LinuxKernel.vala:1157 src/Console/AppConsole.vala:241 +#: src/Common/LinuxKernel.vala:1142 src/Console/AppConsole.vala:222 msgid "Latest point update" msgstr "Остання точка оновлення" -#: src/Common/LinuxKernel.vala:1165 src/Console/AppConsole.vala:246 -#: src/Console/AppConsole.vala:261 +#: src/Common/LinuxKernel.vala:1150 src/Console/AppConsole.vala:227 +#: src/Console/AppConsole.vala:242 msgid "No updates found" msgstr "Оновлень не знайдено" -#: src/Common/LinuxKernel.vala:1174 +#: src/Common/LinuxKernel.vala:1159 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Встановити Ядро Версії %s ? (так/ні): " -#: src/Common/Main.vala:334 +#: src/Common/Main.vala:346 msgid "Called from" msgstr "Викликано з" -#: src/Common/Main.vala:334 +#: src/Common/Main.vala:346 msgid "at logon" msgstr "при запуску" -#: src/Common/Main.vala:335 +#: src/Common/Main.vala:347 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" "Цей файл перезаписується та виконується знову під час збереження налаштувань" -#: src/Common/Main.vala:367 +#: src/Common/Main.vala:379 msgid "Notifications are disabled" msgstr "Повідомлення вимкнено" @@ -219,134 +218,119 @@ msgstr "Повідомлення вимкнено" msgid "File not found: %s" msgstr "Файл не знайдено: %s" -#: src/Console/AppConsole.vala:43 src/Gtk/AppGtk.vala:137 +#: src/Console/AppConsole.vala:40 src/Gtk/AppGtk.vala:74 msgid "Syntax" msgstr "Синтаксис" -#: src/Console/AppConsole.vala:45 +#: src/Console/AppConsole.vala:42 msgid "Commands" msgstr "Команди" -#: src/Console/AppConsole.vala:47 +#: src/Console/AppConsole.vala:44 msgid "Check for kernel updates" msgstr "Перевірити оновлення ядра" -#: src/Console/AppConsole.vala:48 +#: src/Console/AppConsole.vala:45 msgid "Check for kernel updates and notify current user" msgstr "Перевірте наявність оновлень ядра та повідомте поточного користувача" -#: src/Console/AppConsole.vala:49 +#: src/Console/AppConsole.vala:46 #, fuzzy msgid "List available mainline kernels" msgstr "Список усіх доступних основних ядер" -#: src/Console/AppConsole.vala:50 +#: src/Console/AppConsole.vala:47 msgid "List installed kernels" msgstr "Список встановлених ядер" -#: src/Console/AppConsole.vala:51 +#: src/Console/AppConsole.vala:48 msgid "Install latest mainline kernel" msgstr "Встановіть останнє основне ядро" -#: src/Console/AppConsole.vala:52 +#: src/Console/AppConsole.vala:49 #, fuzzy msgid "Install latest point update in the current major version" msgstr "Встановіть останню точку оновлення для поточної серії" -#: src/Console/AppConsole.vala:53 +#: src/Console/AppConsole.vala:50 #, fuzzy msgid "Install specified kernels" msgstr "Видаліть конкретні ядра" -#: src/Console/AppConsole.vala:54 +#: src/Console/AppConsole.vala:51 #, fuzzy msgid "Uninstall specified kernels" msgstr "Видаліть конкретні ядра" -#: src/Console/AppConsole.vala:55 src/Gtk/MainWindow.vala:324 +#: src/Console/AppConsole.vala:52 src/Gtk/MainWindow.vala:324 msgid "Uninstall all but the highest installed version" msgstr "Видаліть усі, крім найвищої встановленої версії" -#: src/Console/AppConsole.vala:56 +#: src/Console/AppConsole.vala:53 msgid "Download specified kernels" msgstr "Завантажте конкретні ядра" -#: src/Console/AppConsole.vala:57 +#: src/Console/AppConsole.vala:54 msgid "Delete cached info about available kernels" msgstr "Видалити кешовану інформацію про доступні ядра" -#: src/Console/AppConsole.vala:59 src/Gtk/AppGtk.vala:139 +#: src/Console/AppConsole.vala:56 src/Gtk/AppGtk.vala:76 msgid "Options" msgstr "Параметри" -#: src/Console/AppConsole.vala:61 +#: src/Console/AppConsole.vala:58 msgid "Include unstable and RC releases" msgstr "Включення нестабільних і RC-релізів" -#: src/Console/AppConsole.vala:62 +#: src/Console/AppConsole.vala:59 msgid "Exclude unstable and RC releases" msgstr "Виключення нестабільних і RC-релізів" -#: src/Console/AppConsole.vala:63 +#: src/Console/AppConsole.vala:60 msgid "Verbosity. Set to n if given, or increment." msgstr "" -#: src/Console/AppConsole.vala:64 +#: src/Console/AppConsole.vala:61 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "Так для всіх підказок (неінтерактивний режим)" -#: src/Console/AppConsole.vala:67 +#: src/Console/AppConsole.vala:64 #, fuzzy msgid "One or more version strings taken from the output of --list" msgstr "Рядок версій, взятий з виводу --list" -#: src/Console/AppConsole.vala:68 +#: src/Console/AppConsole.vala:65 msgid "comma, pipe, or colon-seperated, or quoted space seperated" msgstr "" -#: src/Console/AppConsole.vala:69 +#: src/Console/AppConsole.vala:66 #, fuzzy msgid "Locked kernels and the currently running kernel are ignored" msgstr "Поточне ядро, що працює, завжди буде ігноруватися" -#: src/Console/AppConsole.vala:160 src/Gtk/AppGtk.vala:123 +#: src/Console/AppConsole.vala:143 src/Console/AppConsole.vala:200 +#: src/Gtk/AppGtk.vala:108 msgid "Unknown option" msgstr "Невідомий параметр" -#: src/Console/AppConsole.vala:161 src/Console/AppConsole.vala:220 -msgid "Run" -msgstr "Запуск" - -#: src/Console/AppConsole.vala:161 -msgid "to list all options" -msgstr "Показати усі параметри" - -#: src/Console/AppConsole.vala:219 -msgid "Command not specified" -msgstr "Команда не вказана" - -#: src/Console/AppConsole.vala:220 -msgid "to list all commands" -msgstr "щоб відобразити всі команди" - -#: src/Console/AppConsole.vala:255 +#: src/Console/AppConsole.vala:236 msgid "Notifications disabled in settings" msgstr "Сповіщення, вимкнені в налаштуваннях" -#: src/Console/AppConsole.vala:283 +#: src/Console/AppConsole.vala:264 #, c-format msgid "Kernel %s Available" msgstr "Ядро %s Доступне" -#: src/Console/AppConsole.vala:287 src/Gtk/SettingsDialog.vala:166 +#: src/Console/AppConsole.vala:268 src/Gtk/SettingsDialog.vala:166 msgid "Show" msgstr "Показати" -#: src/Console/AppConsole.vala:288 src/Gtk/MainWindow.vala:296 +#: src/Console/AppConsole.vala:269 src/Gtk/MainWindow.vala:296 msgid "Install" msgstr "Встановити" -#: src/Console/AppConsole.vala:291 +#: src/Console/AppConsole.vala:272 msgid "Previously notified" msgstr "Попередньо повідомлено" @@ -386,15 +370,15 @@ msgstr "Документатори" msgid "Third Party Inclusions" msgstr "Включення третіх осіб" -#: src/Gtk/AppGtk.vala:137 +#: src/Gtk/AppGtk.vala:74 msgid "options" msgstr "параметри" -#: src/Gtk/AppGtk.vala:141 +#: src/Gtk/AppGtk.vala:78 msgid "Print debug information" msgstr "Роздрукувати зневадження" -#: src/Gtk/AppGtk.vala:142 +#: src/Gtk/AppGtk.vala:79 msgid "Show all options" msgstr "Показати усі параметри" @@ -442,35 +426,31 @@ msgstr "Про программу" msgid "Exit" msgstr "Вихід" -#: src/Gtk/MainWindow.vala:411 +#: src/Gtk/MainWindow.vala:423 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Програма оновлення ядра для дистрибутивів на базі Ubuntu" -#: src/Gtk/MainWindow.vala:412 +#: src/Gtk/MainWindow.vala:424 msgid "Forked" msgstr "Двоєний" -#: src/Gtk/MainWindow.vala:412 +#: src/Gtk/MainWindow.vala:424 msgid "Original" msgstr "Оригінал" -#: src/Gtk/MainWindow.vala:441 +#: src/Gtk/MainWindow.vala:453 msgid "Updating kernels" msgstr "Оновлення ядер" -#: src/Gtk/MainWindow.vala:518 +#: src/Gtk/MainWindow.vala:521 msgid "available" msgstr "доступний" -#: src/Gtk/MainWindow.vala:572 src/Gtk/MainWindow.vala:611 -#: src/Gtk/MainWindow.vala:643 +#: src/Gtk/MainWindow.vala:571 src/Gtk/MainWindow.vala:610 +#: src/Gtk/MainWindow.vala:644 msgid "DONE" msgstr "" -#: src/Gtk/ProgressWindow.vala:126 src/Gtk/TerminalWindow.vala:151 -msgid "Cancel" -msgstr "Відміна" - #: src/Gtk/SettingsDialog.vala:59 msgid "Notification" msgstr "Повідомлення" @@ -543,10 +523,10 @@ msgstr "Перевірка Контрольні суми за допомогою msgid "Proxy" msgstr "Проксі" -#: src/Gtk/l.gtk.vala:29 -msgid "Missing Icon" -msgstr "Нема значка" +#: src/Gtk/TerminalWindow.vala:151 +msgid "Cancel" +msgstr "Відміна" -#: src/lib/l.misc.vala:69 +#: src/lib/l.misc.vala:84 msgid "Can not reach site" msgstr "Не вдається дістатися до сайту" diff --git a/src/Common/LinuxKernel.vala b/src/Common/LinuxKernel.vala index 6777e07b..16d01a08 100644 --- a/src/Common/LinuxKernel.vala +++ b/src/Common/LinuxKernel.vala @@ -45,6 +45,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { public static string CACHE_DIR; public static string DATA_DIR; public static string MAIN_INDEX_HTML; + public static int THRESHOLD_MAJOR = -1; public static LinuxKernel kernel_active; public static LinuxKernel kernel_update_major; @@ -64,11 +65,6 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { public static Regex rex_modules = null; // global progress ------------ - public static string status_line = ""; - public static int progress_total = 0; - public static int progress_count = 0; - public static bool cancelled = false; - public static int threshold_major = -1; // class initialize public static void initialize() { @@ -76,10 +72,17 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { LINUX_DISTRO = check_distribution(); NATIVE_ARCH = check_package_architecture(); - RUNNING_KERNEL = check_running_kernel(); //.replace("-generic",""); + RUNNING_KERNEL = check_running_kernel(); MAIN_INDEX_HTML = CACHE_DIR+"/index.html"; initialize_regex(); + kernel_active = new LinuxKernel(RUNNING_KERNEL); + kernel_latest_installed = kernel_active; + kernel_oldest_installed = kernel_active; + kernel_latest_available = kernel_active; + kernel_update_major = kernel_active; + kernel_update_minor = kernel_active; + // Special kernel versions where the mainline-ppa site changed their directory structure. // affects: // - ./foo.deb vs .//foo.deb @@ -88,9 +91,6 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { kernel_last_stable_old_ppa_dirs = new LinuxKernel("5.6.17"); kernel_last_unstable_old_ppa_dirs = new LinuxKernel("5.7-rc7"); - kernel_latest_installed = new LinuxKernel(RUNNING_KERNEL); - kernel_oldest_installed = kernel_latest_installed; - kernel_latest_available = kernel_latest_installed; } // dep: lsb_release @@ -184,16 +184,16 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { // static - public delegate void Notifier(GLib.Timer timer, ref long count, bool last = false); + public delegate void Notifier(GLib.Timer timer, ref int count, bool last = false); public static void mk_kernel_list(bool wait = true, owned Notifier? notifier = null) { - vprint("LinuxKernel.mk_kernel_list()",2); + vprint("mk_kernel_list()",2); check_if_initialized(); kernel_list.clear(); try { - cancelled = false; + App.cancelled = false; var worker = new Thread.try(null, () => query_thread((owned) notifier) ); if (wait) worker.join(); } catch (Error e) { @@ -203,14 +203,14 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { private static bool query_thread(owned Notifier? notifier) { vprint("query_thread()",2); - App.progress_total = 1; + App.progress_total = 0; App.progress_count = 0; var timer = timer_start(); - long count = 0; - status_line = ""; - progress_total = 0; - progress_count = 0; + int count = 0; + //status_line = ""; + //progress_total = 0; + //progress_count = 0; // find the oldest major version to include update_threshold_major(true); @@ -228,7 +228,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { // add files to download list, and add kernels to kernel list foreach (var k in kernel_list) { - if (cancelled) break; + if (App.cancelled) break; // skip some kernels for various reasons @@ -242,7 +242,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { if (k.is_invalid) continue; if (!k.is_installed) { - if (k.version_major < threshold_major) continue; + if (k.version_major < THRESHOLD_MAJOR) continue; if (App.hide_unstable && k.version_rc>=0) continue; } @@ -259,7 +259,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { // process the download list if (downloads.size>0 && App.ppa_up) { - progress_total = downloads.size; + App.progress_total = downloads.size; var mgr = new DownloadTask(); // add download list to queue @@ -272,14 +272,12 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { // while downloading while (mgr.is_running()) { - progress_count = mgr.prg_count; // also used by the progress window in MainWindow.vala + App.progress_count = mgr.prg_count; // also used by the progress window in MainWindow.vala //pbar(mgr.prg_count,progress_total,"files"); - pbar(progress_count,progress_total); + pbar(App.progress_count,App.progress_total); sleep(250); if (notifier != null) notifier(timer, ref count); } - - // done downloading pbar(0,0); // load the index.html files we just added to cache @@ -338,8 +336,8 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { // read the main index.html listing all kernels private static void load_index() { vprint("load_index()",2); - if (threshold_major<0) update_threshold_major(true); - if (threshold_major<0) { vprint("load_index(): threshold_major not initialized"); exit(1); } + if (THRESHOLD_MAJOR<0) update_threshold_major(true); + if (THRESHOLD_MAJOR<0) { vprint("load_index(): THRESHOLD_MAJOR not initialized"); exit(1); } if (!file_exists(MAIN_INDEX_HTML)) return; string txt = file_read(MAIN_INDEX_HTML); @@ -357,7 +355,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { if (!rex.match(l, 0, out mi)) continue; v = mi.fetch(1); var k = new LinuxKernel(v); - if (k.version_major { bool found = false; foreach (var k in kernel_list) { if (k.is_invalid) continue; - if (k.version_major { } } - kernel_active = null; - // finding the running kernel reliably is hard, because uname // output does not relaibly match any of the other available // strings: pkg name, pkg version, ppa site version string @@ -476,7 +472,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { if (k.is_installed) continue; if (k.is_locked) { vprint(k.version_main+" "+_("is locked."),2); continue; } if (k.version_rc>=0 && App.hide_unstable) continue; - if (k.version_major < threshold_major) break; + if (k.version_major < THRESHOLD_MAJOR) break; if (k.compare_to(kernel_latest_installed)<1) break; // kernel_list is sorted so first match is highest match @@ -507,35 +503,43 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { } - // helpers - - // this is needed before mk_kernel_list, used within mk_kernel_list - // so we cannot consult kernel_list or run mk_kernel_list + // There is a circular dependency here. + // (1) Ideally we want to know THRESHOLD_MAJOR before running mk_kernel_list(), + // so mk_kernel_list() can use it to set bounds on the size of it's job, + // instead of processing all kernels since the beginning of time, every time. + // (2) Ideally we want is_mainline while finding THRESHOLD_MAJOR, to ignore non-mainline kernels + // so that an installed distro kernel doesn't pull THRESHOLD_MAJOR down a whole generation. + // (3) The only way to find out is_mainline for real is to scan kernel_list[], + // and see if a given installed package matches one of those. + // (4) But we don't have kernel_list[] yet, and we can't get it yet, because GOTO (1) + // + // So for this early task, we rely on a weak is_mainline that was made + // from an unsafe assumption in split_version_string(), when mk_dpkg_list() + // generates some kernel objects from the installed package info from dpkg. + // + // TODO maybe... get a full kernel_list from a preliminary pass with load_index() + // before runing mk_dpkg_list(). have mk_dpkg_list() use that + // to fill in a real actual is_mainline for each item in dpkg_list[] + // use that here and along the way delete the unwanted items from kernel_list[] + // then mk_kernel_list() can just process that kernel_list[] + // public static void update_threshold_major(bool up=false) { vprint("update_threshold_major()",2); if (up || Package.dpkg_list.size<1) Package.mk_dpkg_list(); - if (App.previous_majors<0 || App.previous_majors>=kernel_latest_available.version_major) { threshold_major=0; return; } + if (App.previous_majors<0 || App.previous_majors>=kernel_latest_available.version_major) { THRESHOLD_MAJOR = 0; return; } // start from the latest available and work down, ignore distro kernels kernel_oldest_installed = kernel_latest_installed; foreach (var p in Package.dpkg_list) { if (!p.pname.has_prefix("linux-image-")) continue; var k = new LinuxKernel(p.version); - // This k.is_mainline test is only based on an unreliable semantic used in split_version_string(). - // A real test would be to scan kernel_list for matching k.kver or k.name, - // but we don't have kernel_list yet and we can't run mk_kernel_list to generate it, - // because we are run from within mk_kernel_list itself to set bounds on kernel_list. - // It's not critical. All this does is try to avoid having an installed distro kernel - // cause kernel_list to include a whole previous generation. - // If the assumption in split_version_string() is ever wrong, - // all it means is threshold_major would not ignore non-mainline kernels. if (k.version_major < kernel_oldest_installed.version_major && k.is_mainline) kernel_oldest_installed = k; } - threshold_major = kernel_latest_available.version_major - App.previous_majors; - if (kernel_oldest_installed.is_mainline && kernel_oldest_installed.version_major < threshold_major) threshold_major = kernel_oldest_installed.version_major; + THRESHOLD_MAJOR = kernel_latest_available.version_major - App.previous_majors; + if (kernel_oldest_installed.is_mainline && kernel_oldest_installed.version_major < THRESHOLD_MAJOR) THRESHOLD_MAJOR = kernel_oldest_installed.version_major; } public void split_version_string(string s="") { @@ -547,29 +551,6 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { version_extra = ""; is_mainline = true; // FIXME bad assumption - /* - * The is_mainline test below is an unsafe assumption. - * But we need *something*, and it is working for now. - * - * The definitive way to determine is_mainline, is to scan the main - * index.html and see if the current kernel is in there. - * - * But mk_kernel_list() uses is_mainline itself as part of - * determining threshold_major. - * - * Possible fix, go back to letting mk_kernel_list() build - * a full list including everything in the main index.html, - * tag those all as mainline, make sure kernel_list - * has a unique id index that can be used to find a record without - * walking the entire list with a foreach loop. - * - * Then when getting a new unknown kernel from a version number - * or from dpkg, we can answer if it's mainline by looking if - * the same id exists in the list. - * - * Actually this whole version string parser is pretty hokey. - */ - string t = s.strip(); if (t.has_prefix("v")) t = t[1: t.length - 1]; if (t.has_suffix("/")) t = t[0: t.length - 1]; @@ -627,7 +608,11 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { // l==r return 0 // l>r return 1 public int compare_to(LinuxKernel t) { - vprint("version_main compare_to("+t.version_main+")",4); + vprint(version_main+" compare_to() "+t.version_main,4); + // TODO version_sort is a transitional hack to keep doing the old way of parsing version_main + // since version_main has a different format now. + // The better way will be to just examine the individual variables we already have for free, + // version_major, version_minor, etc... var a = version_sort.split_set(".-_"); var b = t.version_sort.split_set(".-_"); int x, y, i = -1; @@ -900,7 +885,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { // hide hidden, but don't hide any installed if (!k.is_installed) { if (App.hide_unstable && k.version_rc>=0) continue; - if (k.version_major < threshold_major) continue; + if (k.version_major < THRESHOLD_MAJOR) continue; } string lck = " "; @@ -930,11 +915,11 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { return klist; } - public static bool download_klist(Gee.ArrayList klist) { + public static int download_klist(Gee.ArrayList klist) { vprint("download_klist()",2); if (klist.size<1) vprint(_("Download: no downloadable kernels specified")); - bool r = true; - foreach (var k in klist) if (!k.download_packages()) r = false; + int r = 0; + foreach (var k in klist) if (!k.download_packages()) r++; return r; } @@ -993,9 +978,9 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { } // dep: dpkg - public static bool install_klist(Gee.ArrayList klist) { + public static int install_klist(Gee.ArrayList klist) { - if (!try_ppa()) return false; + if (!try_ppa()) return 1; string flist = ""; foreach (var k in klist) { @@ -1019,18 +1004,18 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { } flist = flist.strip(); - if (flist=="") { vprint(_("Install: no installable kernels secified")); return false; } + if (flist=="") { vprint(_("Install: no installable kernels secified")); return 1; } // full paths instead of env -C // https://github.com/bkw777/mainline/issues/128 string cmd = "pkexec env DISPLAY=${DISPLAY} XAUTHORITY=${XAUTHORITY} dpkg --install " + flist; - bool r = (Posix.system(cmd)==0); + int r = Posix.system(cmd); foreach (var f in flist.split(" ")) file_delete(f); return r; } // dep: dpkg - public static bool uninstall_klist(Gee.ArrayList klist) { + public static int uninstall_klist(Gee.ArrayList klist) { vprint(_("Uninstalling selected kernels")+":"); string pnames = ""; @@ -1055,11 +1040,11 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { } } pnames = pnames.strip(); - if (pnames=="") { vprint(_("Uninstall: no uninstallable packages found"),1,stderr); return false; } + if (pnames=="") { vprint(_("Uninstall: no uninstallable packages found"),1,stderr); return 1; } string cmd = "pkexec env DISPLAY=${DISPLAY} XAUTHORITY=${XAUTHORITY} dpkg --purge " + pnames; vprint(cmd,2); - return (Posix.system(cmd)==0); + return Posix.system(cmd); } public static void kunin_old(bool confirm) { diff --git a/src/Common/Main.vala b/src/Common/Main.vala index 847161dd..8a80717a 100644 --- a/src/Common/Main.vala +++ b/src/Common/Main.vala @@ -22,7 +22,6 @@ */ using GLib; -using Gee; using Json; using TeeJee.FileSystem; @@ -167,6 +166,19 @@ public class Main : GLib.Object { } } + public bool set_verbose(string? s) { + vprint(s.to_string()); + string a = (s==null) ? "" : s.strip(); + int v = VERBOSE; + bool r=true; + if (a=="" || a.has_prefix("-")) { r=false; v++; } + else v = int.parse(a); + VERBOSE = v; + l.misc.VERBOSE = v; + Environment.set_variable("VERBOSE",v.to_string(),true); + return r; + } + public void init_paths() { CONFIG_DIR = Environment.get_user_config_dir() + "/" + BRANDING_SHORTNAME; @@ -307,22 +319,22 @@ public class Main : GLib.Object { vprint("update_startup_script()",2); // construct the commandline argument for "sleep" - int count = notify_interval_value; - string suffix = "h"; + int n = notify_interval_value; + string u = "h"; switch (notify_interval_unit) { case 0: // hour - suffix = "h"; + u = "h"; break; case 1: // day - suffix = "d"; + u = "d"; break; case 2: // week - suffix = "d"; - count = notify_interval_value * 7; + u = "d"; + n = notify_interval_value * 7; break; case 3: // second - suffix = ""; - count = notify_interval_value; + u = ""; + n = notify_interval_value; break; } @@ -358,7 +370,7 @@ public class Main : GLib.Object { if (notify_minor || notify_major) { s += "while [[ -f $F ]] ;do\n" + "\t"+BRANDING_SHORTNAME+" --notify 2>&- >&-\n" - + "\tsleep %d%s &\n".printf(count,suffix) + + "\tsleep %d%s &\n".printf(n,u) + "\tc=$!\n" + "\techo $c >>${F}_\n" + "\twait $c\n" // respond to signals during sleep diff --git a/src/Console/AppConsole.vala b/src/Console/AppConsole.vala index 8a8ea398..2214eaf3 100644 --- a/src/Console/AppConsole.vala +++ b/src/Console/AppConsole.vala @@ -20,8 +20,6 @@ */ using TeeJee.FileSystem; -using TeeJee.ProcessHelper; -using TeeJee.Misc; using l.misc; public Main App; @@ -32,13 +30,12 @@ public class AppConsole : GLib.Object { set_locale(); App = new Main(args, false); var console = new AppConsole(); - bool is_success = console.parse_arguments(args); - return (is_success) ? 0 : 1; + return console.parse_arguments(args); } - private static string help_message() { + public int parse_arguments(string[] args) { - string msg = "\n" + BRANDING_SHORTNAME + " " + BRANDING_VERSION + " - " + BRANDING_LONGNAME + "\n" + string help = "\n" + BRANDING_SHORTNAME + " " + BRANDING_VERSION + " - " + BRANDING_LONGNAME + "\n" + "\n" + _("Syntax") + ": " + BRANDING_SHORTNAME + " [options]\n" + "\n" @@ -68,10 +65,6 @@ public class AppConsole : GLib.Object { + " " +_("comma, pipe, or colon-seperated, or quoted space seperated") + "\n" + "(2) " +_("Locked kernels and the currently running kernel are ignored") + "\n" ; - return msg; - } - - public bool parse_arguments(string[] args) { string txt = BRANDING_SHORTNAME + " "; for (int i = 1; i < args.length; i++) txt += "'%s' ".printf(args[i]); @@ -79,8 +72,8 @@ public class AppConsole : GLib.Object { // check argument count ----------------- if (args.length == 1) { - vprint(help_message(),0); - return false; + vprint(help,0); + return 1; } string cmd = ""; @@ -89,139 +82,127 @@ public class AppConsole : GLib.Object { // parse options first -------------- - for (int i = 1; i < args.length; i++) - { + for (int i = 1; i < args.length; i++) { a = args[i].down(); switch (a) { - case "-v": - case "--debug": - case "--verbose": - int v = App.VERBOSE; - a = args[i+1]; - if (a==null || a.has_prefix("-")) v++; - else if (++i < args.length) v = int.parse(args[i]); - App.VERBOSE = v; - l.misc.VERBOSE = v; - Environment.set_variable("VERBOSE",v.to_string(),true); - //vprint("verbose="+App.VERBOSE.to_string()); - break; + case "-v": + case "--debug": + case "--verbose": + if (App.set_verbose(args[i+1])) i++; + break; + + case "-y": + case "--yes": + App.confirm = false; + break; + + // used by gui front-end + case "--index-is-fresh": + App.index_is_fresh = true; + break; + + case "--show-unstable": // back compat + case "--include-unstable": + App.hide_unstable = false; + break; + case "--hide-unstable": // back compat + case "--exclude-unstable": + App.hide_unstable = true; + break; + + case "--list": + case "--list-installed": + case "--check": + case "--notify": + case "--install-latest": + case "--install-point": + case "--purge-old-kernels": // back compat + case "--uninstall-old": + case "--clean-cache": // back compat + case "--delete-cache": + cmd = a; + break; + + case "--download": + case "--remove": + case "--uninstall": + case "--install": + cmd = (a=="--remove") ? "--uninstall" : a ; + if (++i < args.length) vlist = args[i]; + break; + + case "": + case "-?": + case "-h": + case "--help": + vprint(help,0); + return 0; + + default: + vprint(_("Unknown option") + ": \"%s\"".printf(args[i]),1,stderr); + vprint(help,0); + return 1; + } + } - case "-y": - case "--yes": - App.confirm = false; - break; + // run command -------------------------------------- - // used by gui front-end - case "--index-is-fresh": - App.index_is_fresh = true; + switch (cmd) { + case "--list": + LinuxKernel.mk_kernel_list(true); + LinuxKernel.print_list(); break; - case "--show-unstable": // back compat - case "--include-unstable": - App.hide_unstable = false; - break; - case "--hide-unstable": // back compat - case "--exclude-unstable": - App.hide_unstable = true; + case "--list-installed": + Package.mk_dpkg_list(); + LinuxKernel.check_installed(); break; - case "--list": - case "--list-installed": case "--check": + print_updates(); + break; + case "--notify": + // silence VERBOSE only if it's exactly 1 + if (App.VERBOSE==1) App.set_verbose("0"); + notify_user(); + break; + case "--install-latest": + LinuxKernel.kinst_latest(false, App.confirm); + break; + case "--install-point": + LinuxKernel.kinst_latest(true, App.confirm); + break; + case "--purge-old-kernels": // back compat case "--uninstall-old": - case "--clean-cache": // back compat + LinuxKernel.kunin_old(App.confirm); + break; + + case "--clean-cache": // back compat case "--delete-cache": - cmd = a; + LinuxKernel.delete_cache(); break; case "--download": - case "--remove": + return LinuxKernel.download_klist(LinuxKernel.vlist_to_klist(vlist,true)); + case "--uninstall": - case "--install": - if (a=="--remove") a = "--uninstall"; - cmd = a; - if (++i < args.length) vlist = args[i]; - break; + return LinuxKernel.uninstall_klist(LinuxKernel.vlist_to_klist(vlist,true)); - case "": - case "--help": - case "-h": - case "-?": - vprint(help_message(),0); - return true; + case "--install": + return LinuxKernel.install_klist(LinuxKernel.vlist_to_klist(vlist,true)); default: - // unknown option - vprint(_("Unknown option") + ": %s".printf(args[i]),1,stderr); - vprint(_("Run")+" '"+args[0]+" --help' "+_("to list all options"),1,stderr); - return false; - } - } - - // run command -------------------------------------- - - switch (cmd) { - case "--list": - LinuxKernel.mk_kernel_list(true); - LinuxKernel.print_list(); - break; - - case "--list-installed": - Package.mk_dpkg_list(); - LinuxKernel.check_installed(); - break; - - case "--check": - print_updates(); - break; - - case "--notify": - // silence VERBOSE only if it's exactly 1 - if (App.VERBOSE==1) App.VERBOSE=0; - l.misc.VERBOSE = App.VERBOSE; - notify_user(); - break; - - case "--install-latest": - LinuxKernel.kinst_latest(false, App.confirm); - break; - - case "--install-point": - LinuxKernel.kinst_latest(true, App.confirm); - break; - - case "--purge-old-kernels": // back compat - case "--uninstall-old": - LinuxKernel.kunin_old(App.confirm); - break; - - case "--clean-cache": // back compat - case "--delete-cache": - LinuxKernel.delete_cache(); - break; - - case "--download": - return LinuxKernel.download_klist(LinuxKernel.vlist_to_klist(vlist,true)); - - case "--uninstall": - return LinuxKernel.uninstall_klist(LinuxKernel.vlist_to_klist(vlist,true)); - - case "--install": - return LinuxKernel.install_klist(LinuxKernel.vlist_to_klist(vlist,true)); - - default: - // unknown command - vprint(_("Command not specified"),1,stderr); - vprint(_("Run")+" '"+args[0]+" --help' "+_("to list all commands"),1,stderr); - break; + vprint(_("Unknown option") + ": \""+cmd+"\"",1,stderr); + vprint(help,0); + return 1; } - return true; + return 0; } private void print_updates() { diff --git a/src/Gtk/AppGtk.vala b/src/Gtk/AppGtk.vala index fe9bd0ac..32d8a68f 100644 --- a/src/Gtk/AppGtk.vala +++ b/src/Gtk/AppGtk.vala @@ -20,15 +20,9 @@ */ using GLib; -using Gtk; -using Gee; -using Json; using X; -using TeeJee.FileSystem; using TeeJee.ProcessHelper; -using l.gtk; -using TeeJee.Misc; using l.misc; public Main App; @@ -43,8 +37,11 @@ public class AppGtk : GLib.Object { parse_arguments(args); // create main window -------------------------------------- - var window = new MainWindow (); - window.configure_event.connect ((event) => { + var appwin = new MainWindow(); + + appwin.destroy.connect (Gtk.main_quit); + + appwin.configure_event.connect ((event) => { App.window_width = event.width; App.window_height = event.height; App.window_x = event.x; @@ -52,36 +49,18 @@ public class AppGtk : GLib.Object { return false; }); - window.destroy.connect(() => { - vprint("MainWindow destroyed",4); - Gtk.main_quit(); - }); - - window.delete_event.connect((event) => { - vprint("MainWindow closed",4); - Gtk.main_quit(); - return true; - }); - - window.show_all(); - - // start event loop ------------------------------------- + appwin.show_all(); Gtk.main(); // save the window size if it changed if ( - App.window_width != App._window_width - || App.window_height != App._window_height - || App.window_x != App._window_x - || App.window_y != App._window_y - || App.term_width != App._term_width - || App.term_height != App._term_height - //|| App.term_x != App._term_x - //|| App.term_y != App._term_y + App.window_width + App.window_height + App.window_x + App.window_y + App.term_width + App.term_height + != + App._window_width + App._window_height + App._window_x + App._window_y + App._term_width + App._term_height ) App.save_app_config(); - // start the notification background process if any notifcations are enabled + // start/replace the notification background process if any notifcations are enabled if (App.notify_major || App.notify_minor) exec_async("bash "+App.STARTUP_SCRIPT_FILE+" 2>&- >&- <&-"); return 0; @@ -89,6 +68,18 @@ public class AppGtk : GLib.Object { public static bool parse_arguments(string[] args) { + string help = "" + + "\n" + BRANDING_SHORTNAME + " " + BRANDING_VERSION + " - " + BRANDING_LONGNAME + "\n" + + "\n" + + _("Syntax") + ": " + BRANDING_SHORTNAME + "-gtk ["+_("options")+"]\n" + + "\n" + + _("Options") + ":\n" + + "\n" + + " --debug " + _("Print debug information") + "\n" + + " --help " + _("Show all options") + "\n" + + "\n" + ; + // parse options for (int i = 1; i < args.length; i++) { @@ -97,13 +88,7 @@ public class AppGtk : GLib.Object { case "-v": case "--debug": case "--verbose": - int v = App.VERBOSE; - if (args[i+1]==null || args[i+1].has_prefix("-")) v++; - else if (++i < args.length) v = int.parse(args[i]); - App.VERBOSE = v; - l.misc.VERBOSE = v; - Environment.set_variable("VERBOSE",v.to_string(),true); - //vprint("verbose="+App.VERBOSE.to_string()); + if (App.set_verbose(args[i+1])) i++; break; // this is the notification action @@ -112,16 +97,16 @@ public class AppGtk : GLib.Object { if (++i < args.length) App.requested_versions = args[i].down(); break; - case "--help": - case "--h": + case "-?": case "-h": - vprint(help_message(),0); + case "--help": + vprint(help,0); exit(0); break; default: vprint(_("Unknown option") + ": %s".printf(args[i]),1,stderr); - vprint(help_message(),0); + vprint(help,0); exit(1); break; @@ -130,17 +115,4 @@ public class AppGtk : GLib.Object { return true; } - - public static string help_message() { - string msg = "\n" + BRANDING_SHORTNAME + " " + BRANDING_VERSION + " - " + BRANDING_LONGNAME + "\n"; - msg += "\n"; - msg += _("Syntax") + ": " + BRANDING_SHORTNAME + "-gtk ["+_("options")+"]\n"; - msg += "\n"; - msg += _("Options") + ":\n"; - msg += "\n"; - msg += " --debug " + _("Print debug information") + "\n"; - msg += " --help " + _("Show all options") + "\n"; - msg += "\n"; - return msg; - } } diff --git a/src/Gtk/MainWindow.vala b/src/Gtk/MainWindow.vala index a694a953..48fbc3fc 100644 --- a/src/Gtk/MainWindow.vala +++ b/src/Gtk/MainWindow.vala @@ -244,7 +244,7 @@ public class MainWindow : Window { if (!k.is_installed) { // don't hide anything that's installed if (k.is_invalid) continue; // hide invalid if (k.version_rc>=0 && App.hide_unstable) continue; // hide unstable if settings say to - if (k.version_major < LinuxKernel.threshold_major) continue; // hide versions older than settings threshold + if (k.version_major < LinuxKernel.THRESHOLD_MAJOR) continue; // hide versions older than settings threshold } tm.append(out iter); // add row @@ -349,17 +349,29 @@ public class MainWindow : Window { } private void do_settings () { - int _previous_majors = App.previous_majors; - bool _hide_unstable = App.hide_unstable; + int old_previous_majors = App.previous_majors; + bool old_hide_unstable = App.hide_unstable; - var dlg = new SettingsDialog.with_parent(this); - dlg.run(); - dlg.destroy(); + var dlg = new SettingsDialog.with_parent(this); + dlg.run(); + dlg.destroy(); - if ( - (_previous_majors != App.previous_majors) || - (_hide_unstable != App.hide_unstable) - ) update_cache(); + // allows leftover cache to stay, but faster for the user + if (App.previous_majors != old_previous_majors || + App.hide_unstable != old_hide_unstable) update_cache(); + +/* + // keeps the cache trimmed, but slow for the user + // instead, TODO: write a trim_cache() that can run during mk_kernel_list() or update_threshold_major() + // all that will do is scan the cache dirs and delete anything that isn't in the current kernel_list + int p = 0, r = 0; + if (App.previous_majors >= 0 && App.previous_majors < old_previous_majors) p--; // selection set shrank + if (App.previous_majors < 0 || App.previous_majors > old_previous_majors) p++; // selection set grew + if (App.hide_unstable==true && old_hide_unstable==false) r--; // selection set shrank + if (App.hide_unstable==false && old_hide_unstable==true) r++; // selection set grew + if (p<0 || r<0) reload_cache(); // if either one shrank, delete & reload + else if (p>0 || r>0) update_cache(); // if neither one shrank but either one grew, update but no need to delete +*/ } private void do_exit () { @@ -438,8 +450,8 @@ public class MainWindow : Window { // Update the cache as optimally as possible. private void update_cache() { vprint("update_cache()",2); - string message = _("Updating kernels"); - vprint(message); + string msg = _("Updating kernels"); + vprint(msg); if (!try_ppa()) return; @@ -448,32 +460,30 @@ public class MainWindow : Window { return; } - var progress_window = new ProgressWindow.with_parent(this, message, true); + var progress_window = new ProgressWindow.with_parent(this, msg); progress_window.show_all(); LinuxKernel.mk_kernel_list(false, (timer, ref count, last) => { - update_progress_window(progress_window, message, timer, ref count, last); + update_progress_window(progress_window, msg, timer, ref count, last); }); } - private void update_progress_window(ProgressWindow progress_window, string message, GLib.Timer timer, ref long count, bool last = false) { + private void update_progress_window(ProgressWindow progress_window, string message, GLib.Timer timer, ref int count, bool last = false) { if (last) { - progress_window.destroy(); - Gdk.threads_add_idle_full(0, () => { + Gdk.threads_add_idle_full(Priority.DEFAULT_IDLE, () => { tv_refresh(); return false; }); timer_elapsed(timer, true); + progress_window.destroy(); } - App.status_line = LinuxKernel.status_line; - App.progress_total = LinuxKernel.progress_total; - App.progress_count = LinuxKernel.progress_count; + //App.progress_total = LinuxKernel.progress_total; + //App.progress_count = LinuxKernel.progress_count; Gdk.threads_add_idle_full(0, () => { if (App.progress_total > 0) + //progress_window.update_message(App.status_line); progress_window.update_message("%s %s/%s".printf(message, App.progress_count.to_string(), App.progress_total.to_string())); - - progress_window.update_status_line(); return false; }); @@ -503,23 +513,12 @@ public class MainWindow : Window { } private void set_infobar() { - - if (LinuxKernel.kernel_active != null) { - - lbl_info.label = _("Running")+" %s".printf(LinuxKernel.kernel_active.version_main); - - if (LinuxKernel.kernel_active.is_mainline) { - lbl_info.label += " (mainline)"; - } else { - lbl_info.label += " (ubuntu)"; - } - - if (LinuxKernel.kernel_latest_available.compare_to(LinuxKernel.kernel_latest_installed) > 0) { - lbl_info.label += " ~ %s ".printf(LinuxKernel.kernel_latest_available.version_main)+_("available"); - } - } - else{ - lbl_info.label = _("Running")+" %s".printf(LinuxKernel.RUNNING_KERNEL); + //vprint("set_infobar()",9); + lbl_info.label = _("Running")+" %s".printf(LinuxKernel.kernel_active.version_main); + if (LinuxKernel.kernel_active.is_mainline) lbl_info.label += " (mainline)"; + else lbl_info.label += " (ubuntu)"; + if (LinuxKernel.kernel_latest_available.compare_to(LinuxKernel.kernel_latest_installed) > 0) { + lbl_info.label += " ~ %s ".printf(LinuxKernel.kernel_latest_available.version_main)+_("available"); } } @@ -558,11 +557,11 @@ public class MainWindow : Window { term.script_complete.connect(()=>{ term.allow_window_close(); - dir_delete(t_dir); }); term.destroy.connect(()=>{ this.present(); + dir_delete(t_dir); update_cache(); }); @@ -586,28 +585,28 @@ public class MainWindow : Window { term.configure_event.connect ((event) => { App.term_width = event.width; App.term_height = event.height; +// App.term_x = event.x; +// App.term_y = event.y; return false; }); - term.script_complete.connect(()=>{ term.allow_window_close(); - dir_delete(t_dir); }); term.destroy.connect(() => { this.present(); + dir_delete(t_dir); update_cache(); }); - string cmd_klist = ""; - foreach(var k in klist) { - cmd_klist += k.version_main+" "; - } + string vlist = ""; + foreach(var k in klist) vlist += " "+k.version_main; + vlist = vlist.strip(); string sh = "VERBOSE="+App.VERBOSE.to_string()+" "+BRANDING_SHORTNAME; if (App.index_is_fresh) sh += " --index-is-fresh"; - sh += " --uninstall \"" + cmd_klist + "\"\n" + sh += " --uninstall \""+vlist+"\"\n" + "echo '"+_("DONE")+"'\n" ; @@ -623,17 +622,19 @@ public class MainWindow : Window { term.configure_event.connect ((event) => { App.term_width = event.width; App.term_height = event.height; +// App.term_x = event.x; +// App.term_y = event.y; return false; }); term.script_complete.connect(()=>{ term.allow_window_close(); - dir_delete(t_dir); }); term.destroy.connect(()=>{ this.present(); + dir_delete(t_dir); update_cache(); }); diff --git a/src/Gtk/ProgressWindow.vala b/src/Gtk/ProgressWindow.vala index 4f43eb35..41e60a04 100644 --- a/src/Gtk/ProgressWindow.vala +++ b/src/Gtk/ProgressWindow.vala @@ -23,137 +23,66 @@ using Gtk; -using Gee; -using TeeJee.FileSystem; -using TeeJee.ProcessHelper; using l.gtk; -using TeeJee.Misc; using l.misc; -public class ProgressWindow : Gtk.Window { +public class ProgressWindow : Window { - private Gtk.Box vbox_main; - private Gtk.Spinner spinner; - private Gtk.Label lbl_msg; - private Gtk.Label lbl_status; - private Gtk.Button btn_cancel; + private Box vbox_main; + private Spinner spinner; + private Label lbl_msg; - private int def_width = 400; - private int def_height = 50; + private string body_message = ""; - private string status_message; - private bool allow_cancel = false; - private bool allow_close = false; + public ProgressWindow.with_parent(Window parent, string message) { - // init - - public ProgressWindow.with_parent(Window parent, string message, bool allow_cancel = false) { - - set_transient_for(parent); set_modal(true); set_decorated(false); + set_transient_for(parent); set_type_hint(Gdk.WindowTypeHint.DIALOG); - //window_position = WindowPosition.CENTER; - window_position = WindowPosition.CENTER_ON_PARENT; - //window_position = WindowPosition.NONE; - - set_default_size(def_width, def_height); + //window_position = WindowPosition.CENTER_ON_PARENT; icon = get_app_icon(16); - App.status_line = ""; App.progress_count = 0; App.progress_total = 0; - this.status_message = message; - this.allow_cancel = allow_cancel; - - App.cancelled = false; - - this.delete_event.connect(close_window); + body_message = message.strip(); init_window(); } - private bool close_window() { - if (allow_close) return false; - else return true; - } - public void init_window () { title = ""; icon = get_app_icon(16); resizable = false; - set_deletable(false); + deletable = false; + //set_deletable(false); - //vbox_main - vbox_main = new Gtk.Box(Orientation.VERTICAL, 6); + vbox_main = new Box(Orientation.VERTICAL, 6); vbox_main.margin = 12; - add (vbox_main); + add(vbox_main); - var hbox_status = new Gtk.Box(Orientation.HORIZONTAL, 6); - vbox_main.add (hbox_status); + var hbox_status = new Box(Orientation.HORIZONTAL, 6); + vbox_main.add(hbox_status); - spinner = new Gtk.Spinner(); + spinner = new Spinner(); spinner.active = true; hbox_status.add(spinner); - //lbl_msg - lbl_msg = new Gtk.Label (status_message); - lbl_msg.halign = Align.START; - lbl_msg.ellipsize = Pango.EllipsizeMode.END; - lbl_msg.max_width_chars = 40; - hbox_status.add (lbl_msg); + lbl_msg = new Label(body_message); + hbox_status.add(lbl_msg); - var hbox = new Gtk.Box(Orientation.HORIZONTAL, 6); + var hbox = new Box(Orientation.HORIZONTAL, 6); vbox_main.add(hbox); - //lbl_status - lbl_status = new Gtk.Label (""); - lbl_status.halign = Align.START; - lbl_status.ellipsize = Pango.EllipsizeMode.END; - lbl_status.max_width_chars = 40; - vbox_main.add (lbl_status); - - //box - var box = new Gtk.Box(Orientation.HORIZONTAL, 6); - box.set_homogeneous(true); - vbox_main.add (box); - - //btn - var button = new Gtk.Button.with_label (_("Cancel")); - button.margin_top = 6; - box.pack_start (button, false, false, 0); - btn_cancel = button; - - button.clicked.connect(()=>{ - App.cancelled = true; - btn_cancel.sensitive = false; - }); - show_all(); - - btn_cancel.visible = allow_cancel; - //btn_cancel.sensitive = allow_cancel; - } - - // common - - public void update_message(string msg) { - if (msg.length > 0) lbl_msg.label = msg; } - public void update_status_line(bool clear = false) { - - if (clear) { - lbl_status.label = ""; - } else { - lbl_status.label = App.status_line; - } - - //title = "Threads: %d".printf(DownloadManager.download_count); + public void update_message(string s) { + if (s.length > 0) lbl_msg.label = s; } } diff --git a/src/Gtk/SettingsDialog.vala b/src/Gtk/SettingsDialog.vala index e24eb3c9..9d1b016f 100644 --- a/src/Gtk/SettingsDialog.vala +++ b/src/Gtk/SettingsDialog.vala @@ -22,12 +22,9 @@ */ using Gtk; -using Gee; using TeeJee.FileSystem; -using TeeJee.ProcessHelper; using l.gtk; -using TeeJee.Misc; using l.misc; public class SettingsDialog : Gtk.Dialog { @@ -263,6 +260,13 @@ public class SettingsDialog : Gtk.Dialog { button.clicked.connect(()=>{ this.close(); }); this.destroy.connect(btn_ok_click); show_all(); + + // DEBUG rapid toggle stress test + //if (VERBOSE==999) { + // App.hide_unstable = !App.hide_unstable; + // this.close(); + //} + } private void btn_ok_click() { diff --git a/src/Gtk/TerminalWindow.vala b/src/Gtk/TerminalWindow.vala index 172c9a24..de3adcca 100644 --- a/src/Gtk/TerminalWindow.vala +++ b/src/Gtk/TerminalWindow.vala @@ -227,8 +227,10 @@ public class TerminalWindow : Gtk.Window { public void allow_cancel(bool allow = true) { if (allow) { btn_cancel.visible = true; + btn_cancel.sensitive = true; vbox_main.margin = 3; } else { + btn_cancel.visible = false; btn_cancel.sensitive = false; vbox_main.margin = 3; } diff --git a/src/Gtk/l.gtk.vala b/src/Gtk/l.gtk.vala index 14602ba8..aed81481 100644 --- a/src/Gtk/l.gtk.vala +++ b/src/Gtk/l.gtk.vala @@ -1,35 +1,23 @@ -using TeeJee.FileSystem; -using TeeJee.ProcessHelper; -using TeeJee.Misc; using l.misc; namespace l.gtk { - using Gtk; - public Gdk.Pixbuf? get_app_icon(int icon_size) { - var img_icon = get_shared_icon(BRANDING_SHORTNAME ,icon_size); - if (img_icon != null) return img_icon.pixbuf; - else return null; + return get_shared_icon(BRANDING_SHORTNAME ,icon_size).pixbuf; } public Gtk.Image? get_shared_icon(string icon_name, int icon_size) { - Gdk.Pixbuf pix_icon = null; - Gtk.Image img_icon = null; try { Gtk.IconTheme icon_theme = Gtk.IconTheme.get_default(); - pix_icon = icon_theme.load_icon_for_scale (icon_name, Gtk.IconSize.MENU, icon_size, Gtk.IconLookupFlags.FORCE_SIZE); + pix_icon = icon_theme.load_icon_for_scale(icon_name, Gtk.IconSize.MENU, icon_size, Gtk.IconLookupFlags.FORCE_SIZE); } catch (Error e) { - //vprint(e.message,1,stderr); + vprint(e.message,1,stderr); } - if (pix_icon == null) vprint(_("Missing Icon") + ": '%s'".printf(icon_name),1,stderr); - else img_icon = new Gtk.Image.from_pixbuf(pix_icon); - - return img_icon; + return new Gtk.Image.from_pixbuf(pix_icon); } } diff --git a/src/lib/l.misc.vala b/src/lib/l.misc.vala index e1382724..127845e4 100644 --- a/src/lib/l.misc.vala +++ b/src/lib/l.misc.vala @@ -25,18 +25,33 @@ namespace l.misc { private static void pbar(int64 part=0,int64 whole=100,string units="") { if (VERBOSE<1) return; - if (whole==0) { vprint("\r%79s\r".printf(""),1,stdout,false); return; } - + int l = 79; // bar length + if (whole<1) { vprint("\r%*.s\r".printf(l,""),1,stdout,false); return; } int64 c = 0, plen = 0, wlen = 40; string b = "", u = units; - if (whole>0) { c=(part*100/whole); plen=(part*wlen/whole); } else { c=100; plen=wlen; } - for (int i=0;i0) u = " "+part.to_string()+"/"+whole.to_string()+" "+u; - vprint("\r%79s\r%s %d%% %s ".printf("",b,(int)c,u),1,stdout,false); + vprint("\r%*.s\r%s %d%% %s ".printf(l,"",b,(int)c,u),1,stdout,false); + } + +/* // write to both stdout and to App.status_line + private static void pbar(int64 part=0,int64 whole=100,string units="") { + if (whole<1) { + App.status_line="\r%79s\r".printf(""); + } else { + int64 c = 0, plen = 0, wlen = 40; + string b = "", u = units; + if (whole>0) { c=(part*100/whole); plen=(part*wlen/whole); } + else { c=100; plen=wlen; } + for (int i=0;i0) u = " "+part.to_string()+"/"+whole.to_string()+" "+u; + App.status_line="\r%79s\r%s %d%% %s ".printf("",b,(int)c,u); + } + vprint(App.status_line,1,stdout,false); } +*/ public bool try_ppa() { vprint("try_ppa()",4); From 2ae306f7746e4b48a62c47f3dd1167456ed827eb Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Wed, 31 May 2023 21:00:11 -0400 Subject: [PATCH 340/567] debug output for system()/exec() commands --- po/de.po | 95 +++++++++++++++++++------------------ po/el.po | 95 +++++++++++++++++++------------------ po/es.po | 95 +++++++++++++++++++------------------ po/fr.po | 95 +++++++++++++++++++------------------ po/hr.po | 95 +++++++++++++++++++------------------ po/it.po | 95 +++++++++++++++++++------------------ po/ko.po | 95 +++++++++++++++++++------------------ po/messages.pot | 94 ++++++++++++++++++------------------ po/nl.po | 95 +++++++++++++++++++------------------ po/pl.po | 95 +++++++++++++++++++------------------ po/ru.po | 95 +++++++++++++++++++------------------ po/sv.po | 95 +++++++++++++++++++------------------ po/tr.po | 95 +++++++++++++++++++------------------ po/uk.po | 95 +++++++++++++++++++------------------ src/Common/LinuxKernel.vala | 9 ++-- src/lib/l.misc.vala | 2 + 16 files changed, 707 insertions(+), 633 deletions(-) diff --git a/po/de.po b/po/de.po index 550b08f2..7aa868b7 100644 --- a/po/de.po +++ b/po/de.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-31 19:56-0400\n" +"POT-Creation-Date: 2023-05-31 20:53-0400\n" "PO-Revision-Date: 2023-02-20 18:40+0100\n" "Last-Translator: Marvin Meysel \n" "Language-Team: German\n" @@ -61,8 +61,8 @@ msgstr "Installiert gefunden" msgid "locked" msgstr "" -#: src/Common/LinuxKernel.vala:473 src/Common/LinuxKernel.vala:994 -#: src/Common/LinuxKernel.vala:1083 +#: src/Common/LinuxKernel.vala:473 src/Common/LinuxKernel.vala:996 +#: src/Common/LinuxKernel.vala:1086 msgid "is locked." msgstr "" @@ -116,80 +116,85 @@ msgstr "ermöglichte" msgid "Downloading" msgstr "Laden" -#: src/Common/LinuxKernel.vala:989 +#: src/Common/LinuxKernel.vala:982 +#, fuzzy +msgid "Installing selected kernels" +msgstr "Deinstallation des angegebenen Kernels" + +#: src/Common/LinuxKernel.vala:988 src/Common/LinuxKernel.vala:1026 +#, fuzzy +msgid "Requested" +msgstr "angefordert" + +#: src/Common/LinuxKernel.vala:991 msgid "is already installed." msgstr "ist bereits installiert." -#: src/Common/LinuxKernel.vala:999 +#: src/Common/LinuxKernel.vala:1001 msgid "download failed." msgstr "" -#: src/Common/LinuxKernel.vala:1007 +#: src/Common/LinuxKernel.vala:1009 #, fuzzy msgid "Install: no installable kernels secified" msgstr "Befehl nicht angegeben" -#: src/Common/LinuxKernel.vala:1019 +#: src/Common/LinuxKernel.vala:1022 msgid "Uninstalling selected kernels" msgstr "Deinstallation des angegebenen Kernels" -#: src/Common/LinuxKernel.vala:1023 -#, fuzzy -msgid "Requested" -msgstr "angefordert" - -#: src/Common/LinuxKernel.vala:1026 +#: src/Common/LinuxKernel.vala:1029 #, fuzzy msgid "Not uninstalling the currently running kernel" msgstr "Den aktuell laufenden Kernel wird nicht deinstalliert" -#: src/Common/LinuxKernel.vala:1031 +#: src/Common/LinuxKernel.vala:1034 msgid "is locked" msgstr "" -#: src/Common/LinuxKernel.vala:1039 +#: src/Common/LinuxKernel.vala:1042 msgid "found" msgstr "gründen" -#: src/Common/LinuxKernel.vala:1043 +#: src/Common/LinuxKernel.vala:1046 msgid "Uninstall: no uninstallable packages found" msgstr "" -#: src/Common/LinuxKernel.vala:1079 +#: src/Common/LinuxKernel.vala:1082 #, fuzzy msgid "is the highest installed version." msgstr "Deinstallieren Sie alle bis auf die höchste installierte Version" -#: src/Common/LinuxKernel.vala:1092 +#: src/Common/LinuxKernel.vala:1095 msgid "Could not find running kernel in list" msgstr "Konnte keinen laufenden Kernel in der Liste finden" -#: src/Common/LinuxKernel.vala:1097 +#: src/Common/LinuxKernel.vala:1100 msgid "Could not find any kernels to uninstall" msgstr "Es konnten keine Kernel zum Deinstallieren gefunden werden" -#: src/Common/LinuxKernel.vala:1105 +#: src/Common/LinuxKernel.vala:1108 msgid "The following kernels will be uninstalled" msgstr "Die folgenden Kernel werden deinstalliert" -#: src/Common/LinuxKernel.vala:1109 +#: src/Common/LinuxKernel.vala:1112 msgid "Continue ?" msgstr "Weiter ?" -#: src/Common/LinuxKernel.vala:1131 src/Console/AppConsole.vala:215 +#: src/Common/LinuxKernel.vala:1134 src/Console/AppConsole.vala:215 msgid "Latest update" msgstr "Neustes Update" -#: src/Common/LinuxKernel.vala:1142 src/Console/AppConsole.vala:222 +#: src/Common/LinuxKernel.vala:1145 src/Console/AppConsole.vala:222 msgid "Latest point update" msgstr "Letzte Punktaktualisierung" -#: src/Common/LinuxKernel.vala:1150 src/Console/AppConsole.vala:227 +#: src/Common/LinuxKernel.vala:1153 src/Console/AppConsole.vala:227 #: src/Console/AppConsole.vala:242 msgid "No updates found" msgstr "Keine Updates gefunden" -#: src/Common/LinuxKernel.vala:1159 +#: src/Common/LinuxKernel.vala:1162 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Kernel-Version %s installieren? (j/n):" @@ -322,7 +327,7 @@ msgstr "Benachrichtigungen sind deaktiviert" msgid "Kernel %s Available" msgstr "Kernel %s verfügbar" -#: src/Console/AppConsole.vala:268 src/Gtk/SettingsDialog.vala:166 +#: src/Console/AppConsole.vala:268 src/Gtk/SettingsDialog.vala:163 msgid "Show" msgstr "Zeigen" @@ -414,7 +419,7 @@ msgstr "Nachladen" msgid "Delete and reload all cached kernel info" msgstr "" -#: src/Gtk/MainWindow.vala:335 src/Gtk/SettingsDialog.vala:49 +#: src/Gtk/MainWindow.vala:335 src/Gtk/SettingsDialog.vala:46 msgid "Settings" msgstr "Einstellungen" @@ -451,75 +456,75 @@ msgstr "Verfügbar" msgid "DONE" msgstr "" -#: src/Gtk/SettingsDialog.vala:59 +#: src/Gtk/SettingsDialog.vala:56 msgid "Notification" msgstr "Benachrichtigung" -#: src/Gtk/SettingsDialog.vala:66 +#: src/Gtk/SettingsDialog.vala:63 msgid "Notify if a major release is available" msgstr "Benachrichtigen, wenn eine größere Version verfügbar ist" -#: src/Gtk/SettingsDialog.vala:75 +#: src/Gtk/SettingsDialog.vala:72 msgid "Notify if a point release is available" msgstr "Benachrichtigen, wenn eine Punktfreigabe verfügbar ist" -#: src/Gtk/SettingsDialog.vala:86 +#: src/Gtk/SettingsDialog.vala:83 msgid "Seconds interval enabled for debugging" msgstr "Sekundenintervall für das Debuggen aktiviert" -#: src/Gtk/SettingsDialog.vala:109 +#: src/Gtk/SettingsDialog.vala:106 msgid "Check every" msgstr "Prüfen Sie jede" -#: src/Gtk/SettingsDialog.vala:134 +#: src/Gtk/SettingsDialog.vala:131 msgid "Hours" msgstr "Stunden" -#: src/Gtk/SettingsDialog.vala:136 +#: src/Gtk/SettingsDialog.vala:133 msgid "Days" msgstr "Tage" -#: src/Gtk/SettingsDialog.vala:138 +#: src/Gtk/SettingsDialog.vala:135 msgid "Weeks" msgstr "Wochen" -#: src/Gtk/SettingsDialog.vala:141 +#: src/Gtk/SettingsDialog.vala:138 msgid "Seconds" msgstr "Sekunden" -#: src/Gtk/SettingsDialog.vala:147 +#: src/Gtk/SettingsDialog.vala:144 msgid "Filters" msgstr "Filter" -#: src/Gtk/SettingsDialog.vala:155 +#: src/Gtk/SettingsDialog.vala:152 msgid "Hide unstable and RC releases" msgstr "Unstable- und RC-Versionen ausblenden" -#: src/Gtk/SettingsDialog.vala:177 +#: src/Gtk/SettingsDialog.vala:174 msgid "previous major versions ( -1 = all )" msgstr "vorherige Hauptversionen ( -1 = alle )" -#: src/Gtk/SettingsDialog.vala:181 +#: src/Gtk/SettingsDialog.vala:178 msgid "Network" msgstr "Netz" -#: src/Gtk/SettingsDialog.vala:192 +#: src/Gtk/SettingsDialog.vala:189 msgid "Internet connection timeout in" msgstr "Zeitüberschreitung der Internetverbindung in" -#: src/Gtk/SettingsDialog.vala:204 +#: src/Gtk/SettingsDialog.vala:201 msgid "seconds" msgstr "Sekunden" -#: src/Gtk/SettingsDialog.vala:211 +#: src/Gtk/SettingsDialog.vala:208 msgid "Max concurrent downloads" msgstr "Maximale Anzahl gleichzeitiger Downloads" -#: src/Gtk/SettingsDialog.vala:225 +#: src/Gtk/SettingsDialog.vala:222 msgid "Verify Checksums with the CHECKSUMS files" msgstr "Überprüfen von Prüfsummen mit den PRÜFSUMMEN-Dateien" -#: src/Gtk/SettingsDialog.vala:233 +#: src/Gtk/SettingsDialog.vala:230 msgid "Proxy" msgstr "Stellvertreter" diff --git a/po/el.po b/po/el.po index be12e21f..5105c80e 100644 --- a/po/el.po +++ b/po/el.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-31 19:56-0400\n" +"POT-Creation-Date: 2023-05-31 20:53-0400\n" "PO-Revision-Date: 2023-01-10 02:03-0600\n" "Last-Translator: Vasilis Kosmidis \n" "Language-Team: Greek\n" @@ -61,8 +61,8 @@ msgstr "Βρέθηκε εγκατεστημένο" msgid "locked" msgstr "" -#: src/Common/LinuxKernel.vala:473 src/Common/LinuxKernel.vala:994 -#: src/Common/LinuxKernel.vala:1083 +#: src/Common/LinuxKernel.vala:473 src/Common/LinuxKernel.vala:996 +#: src/Common/LinuxKernel.vala:1086 msgid "is locked." msgstr "" @@ -116,80 +116,85 @@ msgstr "ενεργοποιημένη" msgid "Downloading" msgstr "Κατέβασμα" -#: src/Common/LinuxKernel.vala:989 +#: src/Common/LinuxKernel.vala:982 +#, fuzzy +msgid "Installing selected kernels" +msgstr "Απεγκατάσταση επιλεγμένων πυρήνων" + +#: src/Common/LinuxKernel.vala:988 src/Common/LinuxKernel.vala:1026 +#, fuzzy +msgid "Requested" +msgstr "ζητήθηκε" + +#: src/Common/LinuxKernel.vala:991 msgid "is already installed." msgstr "είναι ήδη εγκατεστημένο." -#: src/Common/LinuxKernel.vala:999 +#: src/Common/LinuxKernel.vala:1001 msgid "download failed." msgstr "" -#: src/Common/LinuxKernel.vala:1007 +#: src/Common/LinuxKernel.vala:1009 #, fuzzy msgid "Install: no installable kernels secified" msgstr "Η εντολή δεν προσδιορίστηκε" -#: src/Common/LinuxKernel.vala:1019 +#: src/Common/LinuxKernel.vala:1022 msgid "Uninstalling selected kernels" msgstr "Απεγκατάσταση επιλεγμένων πυρήνων" -#: src/Common/LinuxKernel.vala:1023 -#, fuzzy -msgid "Requested" -msgstr "ζητήθηκε" - -#: src/Common/LinuxKernel.vala:1026 +#: src/Common/LinuxKernel.vala:1029 #, fuzzy msgid "Not uninstalling the currently running kernel" msgstr "δεν θα απεγκαταστήσει τον πυρήνα που εκτελείται αυτήν τη στιγμή" -#: src/Common/LinuxKernel.vala:1031 +#: src/Common/LinuxKernel.vala:1034 msgid "is locked" msgstr "" -#: src/Common/LinuxKernel.vala:1039 +#: src/Common/LinuxKernel.vala:1042 msgid "found" msgstr "ιδρύω" -#: src/Common/LinuxKernel.vala:1043 +#: src/Common/LinuxKernel.vala:1046 msgid "Uninstall: no uninstallable packages found" msgstr "" -#: src/Common/LinuxKernel.vala:1079 +#: src/Common/LinuxKernel.vala:1082 #, fuzzy msgid "is the highest installed version." msgstr "Απεγκαταστήστε όλες εκτός από την υψηλότερη εγκατεστημένη έκδοση" -#: src/Common/LinuxKernel.vala:1092 +#: src/Common/LinuxKernel.vala:1095 msgid "Could not find running kernel in list" msgstr "Δεν ήταν δυνατή η εύρεση του πυρήνα που εκτελείται αυτήν τη στιγμή" -#: src/Common/LinuxKernel.vala:1097 +#: src/Common/LinuxKernel.vala:1100 msgid "Could not find any kernels to uninstall" msgstr "Δεν βρέθηκε κανένας πυρήνας για απεγκατάσταση" -#: src/Common/LinuxKernel.vala:1105 +#: src/Common/LinuxKernel.vala:1108 msgid "The following kernels will be uninstalled" msgstr "Θα καταργηθεί η εγκατάσταση των ακόλουθων πυρήνων" -#: src/Common/LinuxKernel.vala:1109 +#: src/Common/LinuxKernel.vala:1112 msgid "Continue ?" msgstr "Συνέχεια;" -#: src/Common/LinuxKernel.vala:1131 src/Console/AppConsole.vala:215 +#: src/Common/LinuxKernel.vala:1134 src/Console/AppConsole.vala:215 msgid "Latest update" msgstr "Τελευταία αναβάθμιση" -#: src/Common/LinuxKernel.vala:1142 src/Console/AppConsole.vala:222 +#: src/Common/LinuxKernel.vala:1145 src/Console/AppConsole.vala:222 msgid "Latest point update" msgstr "Τελευταία ενημέρωση συντήρησης" -#: src/Common/LinuxKernel.vala:1150 src/Console/AppConsole.vala:227 +#: src/Common/LinuxKernel.vala:1153 src/Console/AppConsole.vala:227 #: src/Console/AppConsole.vala:242 msgid "No updates found" msgstr "Δεν βρέθηκαν ενημερώσεις" -#: src/Common/LinuxKernel.vala:1159 +#: src/Common/LinuxKernel.vala:1162 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Εγκατάσταση του πυρήνα έκδοσης %s ; (ν/ό):" @@ -323,7 +328,7 @@ msgstr "Οι ειδοποιήσεις είναι απενεργοποιημέν msgid "Kernel %s Available" msgstr "Πυρήνας %s διαθέσιμος" -#: src/Console/AppConsole.vala:268 src/Gtk/SettingsDialog.vala:166 +#: src/Console/AppConsole.vala:268 src/Gtk/SettingsDialog.vala:163 msgid "Show" msgstr "Προβολή" @@ -415,7 +420,7 @@ msgstr "Δροσίζω" msgid "Delete and reload all cached kernel info" msgstr "" -#: src/Gtk/MainWindow.vala:335 src/Gtk/SettingsDialog.vala:49 +#: src/Gtk/MainWindow.vala:335 src/Gtk/SettingsDialog.vala:46 msgid "Settings" msgstr "Ρυθμίσεις" @@ -452,75 +457,75 @@ msgstr "διαθέσιμος" msgid "DONE" msgstr "" -#: src/Gtk/SettingsDialog.vala:59 +#: src/Gtk/SettingsDialog.vala:56 msgid "Notification" msgstr "Ειδοποίηση" -#: src/Gtk/SettingsDialog.vala:66 +#: src/Gtk/SettingsDialog.vala:63 msgid "Notify if a major release is available" msgstr "Ειδοποίηση αν είναι διαθέσιμη κύρια έκδοση" -#: src/Gtk/SettingsDialog.vala:75 +#: src/Gtk/SettingsDialog.vala:72 msgid "Notify if a point release is available" msgstr "Ειδοποίηση αν είναι διαθέσιμη έκδοση συντήρησης" -#: src/Gtk/SettingsDialog.vala:86 +#: src/Gtk/SettingsDialog.vala:83 msgid "Seconds interval enabled for debugging" msgstr "διάστημα δευτερολέπτων είναι ενεργοποιημένο για εντοπισμό σφαλμάτων" -#: src/Gtk/SettingsDialog.vala:109 +#: src/Gtk/SettingsDialog.vala:106 msgid "Check every" msgstr "Έλεγχος κάθε" -#: src/Gtk/SettingsDialog.vala:134 +#: src/Gtk/SettingsDialog.vala:131 msgid "Hours" msgstr "Ώρες" -#: src/Gtk/SettingsDialog.vala:136 +#: src/Gtk/SettingsDialog.vala:133 msgid "Days" msgstr "Ημέρες" -#: src/Gtk/SettingsDialog.vala:138 +#: src/Gtk/SettingsDialog.vala:135 msgid "Weeks" msgstr "Εβδομάδες" -#: src/Gtk/SettingsDialog.vala:141 +#: src/Gtk/SettingsDialog.vala:138 msgid "Seconds" msgstr "Δευτερόλεπτα" -#: src/Gtk/SettingsDialog.vala:147 +#: src/Gtk/SettingsDialog.vala:144 msgid "Filters" msgstr "Φίλτρα" -#: src/Gtk/SettingsDialog.vala:155 +#: src/Gtk/SettingsDialog.vala:152 msgid "Hide unstable and RC releases" msgstr "Απόκρυψη ασταθών και RC εκδόσεων" -#: src/Gtk/SettingsDialog.vala:177 +#: src/Gtk/SettingsDialog.vala:174 msgid "previous major versions ( -1 = all )" msgstr "προηγούμενες κύριες εκδόσεις ( -1 = όλες )" -#: src/Gtk/SettingsDialog.vala:181 +#: src/Gtk/SettingsDialog.vala:178 msgid "Network" msgstr "Δίκτυο" -#: src/Gtk/SettingsDialog.vala:192 +#: src/Gtk/SettingsDialog.vala:189 msgid "Internet connection timeout in" msgstr "Λήξη χρονικού ορίου σύνδεσης στο διαδίκτυο " -#: src/Gtk/SettingsDialog.vala:204 +#: src/Gtk/SettingsDialog.vala:201 msgid "seconds" msgstr "δευτερόλεπτα" -#: src/Gtk/SettingsDialog.vala:211 +#: src/Gtk/SettingsDialog.vala:208 msgid "Max concurrent downloads" msgstr "Μέγιστες ταυτόχρονες λήψεις" -#: src/Gtk/SettingsDialog.vala:225 +#: src/Gtk/SettingsDialog.vala:222 msgid "Verify Checksums with the CHECKSUMS files" msgstr "Επαλήθευση αθροισμάτων ελέγχου με τα αρχεία CHECKSUMS" -#: src/Gtk/SettingsDialog.vala:233 +#: src/Gtk/SettingsDialog.vala:230 msgid "Proxy" msgstr "Διακομιστής" diff --git a/po/es.po b/po/es.po index 841b73ed..15bfef9c 100644 --- a/po/es.po +++ b/po/es.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-31 19:56-0400\n" +"POT-Creation-Date: 2023-05-31 20:53-0400\n" "PO-Revision-Date: 2018-01-03 02:03-0600\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish\n" @@ -61,8 +61,8 @@ msgstr "Encontrado instalado" msgid "locked" msgstr "" -#: src/Common/LinuxKernel.vala:473 src/Common/LinuxKernel.vala:994 -#: src/Common/LinuxKernel.vala:1083 +#: src/Common/LinuxKernel.vala:473 src/Common/LinuxKernel.vala:996 +#: src/Common/LinuxKernel.vala:1086 msgid "is locked." msgstr "" @@ -116,80 +116,85 @@ msgstr "habilitado" msgid "Downloading" msgstr "Descargar" -#: src/Common/LinuxKernel.vala:989 +#: src/Common/LinuxKernel.vala:982 +#, fuzzy +msgid "Installing selected kernels" +msgstr "Desinstalación de kernels seleccionados" + +#: src/Common/LinuxKernel.vala:988 src/Common/LinuxKernel.vala:1026 +#, fuzzy +msgid "Requested" +msgstr "solicitado" + +#: src/Common/LinuxKernel.vala:991 msgid "is already installed." msgstr "ya está instalado." -#: src/Common/LinuxKernel.vala:999 +#: src/Common/LinuxKernel.vala:1001 msgid "download failed." msgstr "" -#: src/Common/LinuxKernel.vala:1007 +#: src/Common/LinuxKernel.vala:1009 #, fuzzy msgid "Install: no installable kernels secified" msgstr "Coomand no especificado" -#: src/Common/LinuxKernel.vala:1019 +#: src/Common/LinuxKernel.vala:1022 msgid "Uninstalling selected kernels" msgstr "Desinstalación de kernels seleccionados" -#: src/Common/LinuxKernel.vala:1023 -#, fuzzy -msgid "Requested" -msgstr "solicitado" - -#: src/Common/LinuxKernel.vala:1026 +#: src/Common/LinuxKernel.vala:1029 #, fuzzy msgid "Not uninstalling the currently running kernel" msgstr "No desinstalará el kernel que se está ejecutando actualmente" -#: src/Common/LinuxKernel.vala:1031 +#: src/Common/LinuxKernel.vala:1034 msgid "is locked" msgstr "" -#: src/Common/LinuxKernel.vala:1039 +#: src/Common/LinuxKernel.vala:1042 msgid "found" msgstr "fundar" -#: src/Common/LinuxKernel.vala:1043 +#: src/Common/LinuxKernel.vala:1046 msgid "Uninstall: no uninstallable packages found" msgstr "" -#: src/Common/LinuxKernel.vala:1079 +#: src/Common/LinuxKernel.vala:1082 #, fuzzy msgid "is the highest installed version." msgstr "Desinstale todas las versiones instaladas excepto la más alta" -#: src/Common/LinuxKernel.vala:1092 +#: src/Common/LinuxKernel.vala:1095 msgid "Could not find running kernel in list" msgstr "No se pudo encontrar el kernel en ejecución en la lista" -#: src/Common/LinuxKernel.vala:1097 +#: src/Common/LinuxKernel.vala:1100 msgid "Could not find any kernels to uninstall" msgstr "No se pudo encontrar ningún kernel para desinstalar" -#: src/Common/LinuxKernel.vala:1105 +#: src/Common/LinuxKernel.vala:1108 msgid "The following kernels will be uninstalled" msgstr "Se desinstalarán los siguientes kernels" -#: src/Common/LinuxKernel.vala:1109 +#: src/Common/LinuxKernel.vala:1112 msgid "Continue ?" msgstr "¿Continuar?" -#: src/Common/LinuxKernel.vala:1131 src/Console/AppConsole.vala:215 +#: src/Common/LinuxKernel.vala:1134 src/Console/AppConsole.vala:215 msgid "Latest update" msgstr "Última actualización" -#: src/Common/LinuxKernel.vala:1142 src/Console/AppConsole.vala:222 +#: src/Common/LinuxKernel.vala:1145 src/Console/AppConsole.vala:222 msgid "Latest point update" msgstr "Última actualización puntual" -#: src/Common/LinuxKernel.vala:1150 src/Console/AppConsole.vala:227 +#: src/Common/LinuxKernel.vala:1153 src/Console/AppConsole.vala:227 #: src/Console/AppConsole.vala:242 msgid "No updates found" msgstr "No se encontró ninguna actualización" -#: src/Common/LinuxKernel.vala:1159 +#: src/Common/LinuxKernel.vala:1162 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Instalar la versión del kernel %s? (s/n): " @@ -322,7 +327,7 @@ msgstr "Notificaciones deshabilitadas en la configuración" msgid "Kernel %s Available" msgstr "Kernel %s Disponible" -#: src/Console/AppConsole.vala:268 src/Gtk/SettingsDialog.vala:166 +#: src/Console/AppConsole.vala:268 src/Gtk/SettingsDialog.vala:163 msgid "Show" msgstr "Mostrar" @@ -414,7 +419,7 @@ msgstr "Recargar" msgid "Delete and reload all cached kernel info" msgstr "" -#: src/Gtk/MainWindow.vala:335 src/Gtk/SettingsDialog.vala:49 +#: src/Gtk/MainWindow.vala:335 src/Gtk/SettingsDialog.vala:46 msgid "Settings" msgstr "Configuración" @@ -452,75 +457,75 @@ msgstr "disponibles" msgid "DONE" msgstr "" -#: src/Gtk/SettingsDialog.vala:59 +#: src/Gtk/SettingsDialog.vala:56 msgid "Notification" msgstr "Notificación" -#: src/Gtk/SettingsDialog.vala:66 +#: src/Gtk/SettingsDialog.vala:63 msgid "Notify if a major release is available" msgstr "Notificar si hay una versión importante disponible" -#: src/Gtk/SettingsDialog.vala:75 +#: src/Gtk/SettingsDialog.vala:72 msgid "Notify if a point release is available" msgstr "Notificar si hay una versión puntual disponible" -#: src/Gtk/SettingsDialog.vala:86 +#: src/Gtk/SettingsDialog.vala:83 msgid "Seconds interval enabled for debugging" msgstr "Intervalo de segundos habilitado para la depuración" -#: src/Gtk/SettingsDialog.vala:109 +#: src/Gtk/SettingsDialog.vala:106 msgid "Check every" msgstr "Comprobar cada" -#: src/Gtk/SettingsDialog.vala:134 +#: src/Gtk/SettingsDialog.vala:131 msgid "Hours" msgstr "Horas" -#: src/Gtk/SettingsDialog.vala:136 +#: src/Gtk/SettingsDialog.vala:133 msgid "Days" msgstr "Días" -#: src/Gtk/SettingsDialog.vala:138 +#: src/Gtk/SettingsDialog.vala:135 msgid "Weeks" msgstr "Semanas" -#: src/Gtk/SettingsDialog.vala:141 +#: src/Gtk/SettingsDialog.vala:138 msgid "Seconds" msgstr "Sobras" -#: src/Gtk/SettingsDialog.vala:147 +#: src/Gtk/SettingsDialog.vala:144 msgid "Filters" msgstr "Filtros" -#: src/Gtk/SettingsDialog.vala:155 +#: src/Gtk/SettingsDialog.vala:152 msgid "Hide unstable and RC releases" msgstr "Ocultar versiones inestables y RC" -#: src/Gtk/SettingsDialog.vala:177 +#: src/Gtk/SettingsDialog.vala:174 msgid "previous major versions ( -1 = all )" msgstr "Versiones principales anteriores ( -1 = todas )" -#: src/Gtk/SettingsDialog.vala:181 +#: src/Gtk/SettingsDialog.vala:178 msgid "Network" msgstr "Red" -#: src/Gtk/SettingsDialog.vala:192 +#: src/Gtk/SettingsDialog.vala:189 msgid "Internet connection timeout in" msgstr "Tiempo de espera de conexión a Internet en" -#: src/Gtk/SettingsDialog.vala:204 +#: src/Gtk/SettingsDialog.vala:201 msgid "seconds" msgstr "sobras" -#: src/Gtk/SettingsDialog.vala:211 +#: src/Gtk/SettingsDialog.vala:208 msgid "Max concurrent downloads" msgstr "Descargas máximas de la competencia" -#: src/Gtk/SettingsDialog.vala:225 +#: src/Gtk/SettingsDialog.vala:222 msgid "Verify Checksums with the CHECKSUMS files" msgstr "Verificar sumas de comprobación con los archivos CHECKSUMS" -#: src/Gtk/SettingsDialog.vala:233 +#: src/Gtk/SettingsDialog.vala:230 msgid "Proxy" msgstr "Proxy" diff --git a/po/fr.po b/po/fr.po index 992a898f..5f4b3ec4 100644 --- a/po/fr.po +++ b/po/fr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-31 19:56-0400\n" +"POT-Creation-Date: 2023-05-31 20:53-0400\n" "PO-Revision-Date: 2018-08-05 15:50+0200\n" "Last-Translator: Yolateng0 \n" "Language-Team: French\n" @@ -61,8 +61,8 @@ msgstr "Trouvé installé" msgid "locked" msgstr "" -#: src/Common/LinuxKernel.vala:473 src/Common/LinuxKernel.vala:994 -#: src/Common/LinuxKernel.vala:1083 +#: src/Common/LinuxKernel.vala:473 src/Common/LinuxKernel.vala:996 +#: src/Common/LinuxKernel.vala:1086 msgid "is locked." msgstr "" @@ -116,80 +116,85 @@ msgstr "activé" msgid "Downloading" msgstr "Téléchargement" -#: src/Common/LinuxKernel.vala:989 +#: src/Common/LinuxKernel.vala:982 +#, fuzzy +msgid "Installing selected kernels" +msgstr "Désinstallation des noyaux sélectionnés" + +#: src/Common/LinuxKernel.vala:988 src/Common/LinuxKernel.vala:1026 +#, fuzzy +msgid "Requested" +msgstr "Demandé" + +#: src/Common/LinuxKernel.vala:991 msgid "is already installed." msgstr "est déjà installé." -#: src/Common/LinuxKernel.vala:999 +#: src/Common/LinuxKernel.vala:1001 msgid "download failed." msgstr "" -#: src/Common/LinuxKernel.vala:1007 +#: src/Common/LinuxKernel.vala:1009 #, fuzzy msgid "Install: no installable kernels secified" msgstr "Pas de commande fournie" -#: src/Common/LinuxKernel.vala:1019 +#: src/Common/LinuxKernel.vala:1022 msgid "Uninstalling selected kernels" msgstr "Désinstallation des noyaux sélectionnés" -#: src/Common/LinuxKernel.vala:1023 -#, fuzzy -msgid "Requested" -msgstr "Demandé" - -#: src/Common/LinuxKernel.vala:1026 +#: src/Common/LinuxKernel.vala:1029 #, fuzzy msgid "Not uninstalling the currently running kernel" msgstr "Ne pas désinstaller le noyau en cours d'exécution" -#: src/Common/LinuxKernel.vala:1031 +#: src/Common/LinuxKernel.vala:1034 msgid "is locked" msgstr "" -#: src/Common/LinuxKernel.vala:1039 +#: src/Common/LinuxKernel.vala:1042 msgid "found" msgstr "fonder" -#: src/Common/LinuxKernel.vala:1043 +#: src/Common/LinuxKernel.vala:1046 msgid "Uninstall: no uninstallable packages found" msgstr "" -#: src/Common/LinuxKernel.vala:1079 +#: src/Common/LinuxKernel.vala:1082 #, fuzzy msgid "is the highest installed version." msgstr "Désinstallez toutes le version installées, sauf la plus élevée" -#: src/Common/LinuxKernel.vala:1092 +#: src/Common/LinuxKernel.vala:1095 msgid "Could not find running kernel in list" msgstr "Impossible de trouver le noyau en cours d'exécution dans la liste" -#: src/Common/LinuxKernel.vala:1097 +#: src/Common/LinuxKernel.vala:1100 msgid "Could not find any kernels to uninstall" msgstr "Impossible de trouver des noyaux à désinstaller" -#: src/Common/LinuxKernel.vala:1105 +#: src/Common/LinuxKernel.vala:1108 msgid "The following kernels will be uninstalled" msgstr "Les noyaux suivants seront désinstallés" -#: src/Common/LinuxKernel.vala:1109 +#: src/Common/LinuxKernel.vala:1112 msgid "Continue ?" msgstr "Reprendre ?" -#: src/Common/LinuxKernel.vala:1131 src/Console/AppConsole.vala:215 +#: src/Common/LinuxKernel.vala:1134 src/Console/AppConsole.vala:215 msgid "Latest update" msgstr "Dernière mise à jour" -#: src/Common/LinuxKernel.vala:1142 src/Console/AppConsole.vala:222 +#: src/Common/LinuxKernel.vala:1145 src/Console/AppConsole.vala:222 msgid "Latest point update" msgstr "Dernière mise à jour mineure" -#: src/Common/LinuxKernel.vala:1150 src/Console/AppConsole.vala:227 +#: src/Common/LinuxKernel.vala:1153 src/Console/AppConsole.vala:227 #: src/Console/AppConsole.vala:242 msgid "No updates found" msgstr "Aucune mise à jour disponible" -#: src/Common/LinuxKernel.vala:1159 +#: src/Common/LinuxKernel.vala:1162 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Installer le noyau en version %s ? (y/n): " @@ -322,7 +327,7 @@ msgstr "Notifications désactivées dans les paramètres" msgid "Kernel %s Available" msgstr "Paquet %s disponibles" -#: src/Console/AppConsole.vala:268 src/Gtk/SettingsDialog.vala:166 +#: src/Console/AppConsole.vala:268 src/Gtk/SettingsDialog.vala:163 msgid "Show" msgstr "Montrer" @@ -414,7 +419,7 @@ msgstr "Recharger" msgid "Delete and reload all cached kernel info" msgstr "" -#: src/Gtk/MainWindow.vala:335 src/Gtk/SettingsDialog.vala:49 +#: src/Gtk/MainWindow.vala:335 src/Gtk/SettingsDialog.vala:46 msgid "Settings" msgstr "Paramètres" @@ -453,75 +458,75 @@ msgstr "disponible" msgid "DONE" msgstr "" -#: src/Gtk/SettingsDialog.vala:59 +#: src/Gtk/SettingsDialog.vala:56 msgid "Notification" msgstr "Notification" -#: src/Gtk/SettingsDialog.vala:66 +#: src/Gtk/SettingsDialog.vala:63 msgid "Notify if a major release is available" msgstr "Notifier si une version stable majeure est disponible" -#: src/Gtk/SettingsDialog.vala:75 +#: src/Gtk/SettingsDialog.vala:72 msgid "Notify if a point release is available" msgstr "Notifier si une version stable mineure est disponible" -#: src/Gtk/SettingsDialog.vala:86 +#: src/Gtk/SettingsDialog.vala:83 msgid "Seconds interval enabled for debugging" msgstr "Intervalle de secondes activé pour le débogage" -#: src/Gtk/SettingsDialog.vala:109 +#: src/Gtk/SettingsDialog.vala:106 msgid "Check every" msgstr "Vérifier toutes les" -#: src/Gtk/SettingsDialog.vala:134 +#: src/Gtk/SettingsDialog.vala:131 msgid "Hours" msgstr "Heures" -#: src/Gtk/SettingsDialog.vala:136 +#: src/Gtk/SettingsDialog.vala:133 msgid "Days" msgstr "Jours" -#: src/Gtk/SettingsDialog.vala:138 +#: src/Gtk/SettingsDialog.vala:135 msgid "Weeks" msgstr "Semaines" -#: src/Gtk/SettingsDialog.vala:141 +#: src/Gtk/SettingsDialog.vala:138 msgid "Seconds" msgstr "Secondes" -#: src/Gtk/SettingsDialog.vala:147 +#: src/Gtk/SettingsDialog.vala:144 msgid "Filters" msgstr "Filtres" -#: src/Gtk/SettingsDialog.vala:155 +#: src/Gtk/SettingsDialog.vala:152 msgid "Hide unstable and RC releases" msgstr "Cacher les versions instables et RC" -#: src/Gtk/SettingsDialog.vala:177 +#: src/Gtk/SettingsDialog.vala:174 msgid "previous major versions ( -1 = all )" msgstr "versions majeures précédentes ( -1 = toutes )" -#: src/Gtk/SettingsDialog.vala:181 +#: src/Gtk/SettingsDialog.vala:178 msgid "Network" msgstr "Réseau" -#: src/Gtk/SettingsDialog.vala:192 +#: src/Gtk/SettingsDialog.vala:189 msgid "Internet connection timeout in" msgstr "Délai d'expiration de la connexion Internet dans" -#: src/Gtk/SettingsDialog.vala:204 +#: src/Gtk/SettingsDialog.vala:201 msgid "seconds" msgstr "secondes" -#: src/Gtk/SettingsDialog.vala:211 +#: src/Gtk/SettingsDialog.vala:208 msgid "Max concurrent downloads" msgstr "Nombre maximum de téléchargements parallèles" -#: src/Gtk/SettingsDialog.vala:225 +#: src/Gtk/SettingsDialog.vala:222 msgid "Verify Checksums with the CHECKSUMS files" msgstr "Vérifier les sommes de contrôle avec les fichiers CHECKSUMS" -#: src/Gtk/SettingsDialog.vala:233 +#: src/Gtk/SettingsDialog.vala:230 msgid "Proxy" msgstr "Proxy" diff --git a/po/hr.po b/po/hr.po index cbba4200..9b904e49 100644 --- a/po/hr.po +++ b/po/hr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-31 19:56-0400\n" +"POT-Creation-Date: 2023-05-31 20:53-0400\n" "PO-Revision-Date: 2022-09-22 12:13+0200\n" "Last-Translator: gogo \n" "Language-Team: Croatian\n" @@ -61,8 +61,8 @@ msgstr "Pronađeno instalirano" msgid "locked" msgstr "" -#: src/Common/LinuxKernel.vala:473 src/Common/LinuxKernel.vala:994 -#: src/Common/LinuxKernel.vala:1083 +#: src/Common/LinuxKernel.vala:473 src/Common/LinuxKernel.vala:996 +#: src/Common/LinuxKernel.vala:1086 msgid "is locked." msgstr "" @@ -116,80 +116,85 @@ msgstr "omogućen" msgid "Downloading" msgstr "Učitavanje" -#: src/Common/LinuxKernel.vala:989 +#: src/Common/LinuxKernel.vala:982 +#, fuzzy +msgid "Installing selected kernels" +msgstr "Deinstaliraj određene kernele" + +#: src/Common/LinuxKernel.vala:988 src/Common/LinuxKernel.vala:1026 +#, fuzzy +msgid "Requested" +msgstr "Zatražio" + +#: src/Common/LinuxKernel.vala:991 msgid "is already installed." msgstr "je već instaliran." -#: src/Common/LinuxKernel.vala:999 +#: src/Common/LinuxKernel.vala:1001 msgid "download failed." msgstr "" -#: src/Common/LinuxKernel.vala:1007 +#: src/Common/LinuxKernel.vala:1009 #, fuzzy msgid "Install: no installable kernels secified" msgstr "Naredba nije navedena" -#: src/Common/LinuxKernel.vala:1019 +#: src/Common/LinuxKernel.vala:1022 msgid "Uninstalling selected kernels" msgstr "Deinstaliraj određene kernele" -#: src/Common/LinuxKernel.vala:1023 -#, fuzzy -msgid "Requested" -msgstr "Zatražio" - -#: src/Common/LinuxKernel.vala:1026 +#: src/Common/LinuxKernel.vala:1029 #, fuzzy msgid "Not uninstalling the currently running kernel" msgstr "ne deinstaliranje trenutno pokrenute kernel" -#: src/Common/LinuxKernel.vala:1031 +#: src/Common/LinuxKernel.vala:1034 msgid "is locked" msgstr "" -#: src/Common/LinuxKernel.vala:1039 +#: src/Common/LinuxKernel.vala:1042 msgid "found" msgstr "pronađen" -#: src/Common/LinuxKernel.vala:1043 +#: src/Common/LinuxKernel.vala:1046 msgid "Uninstall: no uninstallable packages found" msgstr "" -#: src/Common/LinuxKernel.vala:1079 +#: src/Common/LinuxKernel.vala:1082 #, fuzzy msgid "is the highest installed version." msgstr "Deinstaliraj sve osim najnovije instalirane verzije" -#: src/Common/LinuxKernel.vala:1092 +#: src/Common/LinuxKernel.vala:1095 msgid "Could not find running kernel in list" msgstr "Nije moguće pronaći pokrenutu kernel na popisu" -#: src/Common/LinuxKernel.vala:1097 +#: src/Common/LinuxKernel.vala:1100 msgid "Could not find any kernels to uninstall" msgstr "Nema pronađenih kernela za deinstaliranje" -#: src/Common/LinuxKernel.vala:1105 +#: src/Common/LinuxKernel.vala:1108 msgid "The following kernels will be uninstalled" msgstr "Deinstalirat će se sljedeće kerneli" -#: src/Common/LinuxKernel.vala:1109 +#: src/Common/LinuxKernel.vala:1112 msgid "Continue ?" msgstr "Nastavi?" -#: src/Common/LinuxKernel.vala:1131 src/Console/AppConsole.vala:215 +#: src/Common/LinuxKernel.vala:1134 src/Console/AppConsole.vala:215 msgid "Latest update" msgstr "Najnovija nadopuna" -#: src/Common/LinuxKernel.vala:1142 src/Console/AppConsole.vala:222 +#: src/Common/LinuxKernel.vala:1145 src/Console/AppConsole.vala:222 msgid "Latest point update" msgstr "Najnovija ciljana nadopuna" -#: src/Common/LinuxKernel.vala:1150 src/Console/AppConsole.vala:227 +#: src/Common/LinuxKernel.vala:1153 src/Console/AppConsole.vala:227 #: src/Console/AppConsole.vala:242 msgid "No updates found" msgstr "Nema pronađenih nadopuna" -#: src/Common/LinuxKernel.vala:1159 +#: src/Common/LinuxKernel.vala:1162 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Instaliraj kernel inačice %s ? (d/n): " @@ -321,7 +326,7 @@ msgstr "Obavijesti onemogućene u postavkama" msgid "Kernel %s Available" msgstr "Kernel %s je dostupan" -#: src/Console/AppConsole.vala:268 src/Gtk/SettingsDialog.vala:166 +#: src/Console/AppConsole.vala:268 src/Gtk/SettingsDialog.vala:163 msgid "Show" msgstr "Prikaži" @@ -413,7 +418,7 @@ msgstr "Ponovno učitati" msgid "Delete and reload all cached kernel info" msgstr "" -#: src/Gtk/MainWindow.vala:335 src/Gtk/SettingsDialog.vala:49 +#: src/Gtk/MainWindow.vala:335 src/Gtk/SettingsDialog.vala:46 msgid "Settings" msgstr "Postavke" @@ -450,75 +455,75 @@ msgstr "dostupno" msgid "DONE" msgstr "" -#: src/Gtk/SettingsDialog.vala:59 +#: src/Gtk/SettingsDialog.vala:56 msgid "Notification" msgstr "Obavijesti" -#: src/Gtk/SettingsDialog.vala:66 +#: src/Gtk/SettingsDialog.vala:63 msgid "Notify if a major release is available" msgstr "Obavijesti kada je glavno izdanje dostupno" -#: src/Gtk/SettingsDialog.vala:75 +#: src/Gtk/SettingsDialog.vala:72 msgid "Notify if a point release is available" msgstr "Obavijesti kada je pojedino izdanje dostupno" -#: src/Gtk/SettingsDialog.vala:86 +#: src/Gtk/SettingsDialog.vala:83 msgid "Seconds interval enabled for debugging" msgstr "Interval sekundi omogućen za ispravljanje pogrešaka" -#: src/Gtk/SettingsDialog.vala:109 +#: src/Gtk/SettingsDialog.vala:106 msgid "Check every" msgstr "Provjeri svaka" -#: src/Gtk/SettingsDialog.vala:134 +#: src/Gtk/SettingsDialog.vala:131 msgid "Hours" msgstr "Sati" -#: src/Gtk/SettingsDialog.vala:136 +#: src/Gtk/SettingsDialog.vala:133 msgid "Days" msgstr "Dani" -#: src/Gtk/SettingsDialog.vala:138 +#: src/Gtk/SettingsDialog.vala:135 msgid "Weeks" msgstr "Tjedna" -#: src/Gtk/SettingsDialog.vala:141 +#: src/Gtk/SettingsDialog.vala:138 msgid "Seconds" msgstr "Sekunde" -#: src/Gtk/SettingsDialog.vala:147 +#: src/Gtk/SettingsDialog.vala:144 msgid "Filters" msgstr "Filteri" -#: src/Gtk/SettingsDialog.vala:155 +#: src/Gtk/SettingsDialog.vala:152 msgid "Hide unstable and RC releases" msgstr "Sakrij nestabilna i RC izdanja" -#: src/Gtk/SettingsDialog.vala:177 +#: src/Gtk/SettingsDialog.vala:174 msgid "previous major versions ( -1 = all )" msgstr "prethodne glavne verzije ( -1 = sve )" -#: src/Gtk/SettingsDialog.vala:181 +#: src/Gtk/SettingsDialog.vala:178 msgid "Network" msgstr "Mreža" -#: src/Gtk/SettingsDialog.vala:192 +#: src/Gtk/SettingsDialog.vala:189 msgid "Internet connection timeout in" msgstr "Prekoračenje vremena internetske veze u" -#: src/Gtk/SettingsDialog.vala:204 +#: src/Gtk/SettingsDialog.vala:201 msgid "seconds" msgstr "sekunde" -#: src/Gtk/SettingsDialog.vala:211 +#: src/Gtk/SettingsDialog.vala:208 msgid "Max concurrent downloads" msgstr "Najviše istodobnih preuzimanja" -#: src/Gtk/SettingsDialog.vala:225 +#: src/Gtk/SettingsDialog.vala:222 msgid "Verify Checksums with the CHECKSUMS files" msgstr "Provjera kontrolnih zbrojeva pomoću CHECKSUMS datoteka" -#: src/Gtk/SettingsDialog.vala:233 +#: src/Gtk/SettingsDialog.vala:230 msgid "Proxy" msgstr "Proxy" diff --git a/po/it.po b/po/it.po index a4875810..58781eea 100644 --- a/po/it.po +++ b/po/it.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-31 19:56-0400\n" +"POT-Creation-Date: 2023-05-31 20:53-0400\n" "PO-Revision-Date: 2020-08-22 15:35+0100\n" "Last-Translator: Demetrio Mendozzi\n" "Language-Team: Italian\n" @@ -59,8 +59,8 @@ msgstr "Trovato installato" msgid "locked" msgstr "" -#: src/Common/LinuxKernel.vala:473 src/Common/LinuxKernel.vala:994 -#: src/Common/LinuxKernel.vala:1083 +#: src/Common/LinuxKernel.vala:473 src/Common/LinuxKernel.vala:996 +#: src/Common/LinuxKernel.vala:1086 msgid "is locked." msgstr "" @@ -114,80 +114,85 @@ msgstr "abilitato" msgid "Downloading" msgstr "Scaricamento" -#: src/Common/LinuxKernel.vala:989 +#: src/Common/LinuxKernel.vala:982 +#, fuzzy +msgid "Installing selected kernels" +msgstr "Disinstalla i kernel specificati" + +#: src/Common/LinuxKernel.vala:988 src/Common/LinuxKernel.vala:1026 +#, fuzzy +msgid "Requested" +msgstr "richiesto" + +#: src/Common/LinuxKernel.vala:991 msgid "is already installed." msgstr "è già installato." -#: src/Common/LinuxKernel.vala:999 +#: src/Common/LinuxKernel.vala:1001 msgid "download failed." msgstr "" -#: src/Common/LinuxKernel.vala:1007 +#: src/Common/LinuxKernel.vala:1009 #, fuzzy msgid "Install: no installable kernels secified" msgstr "Comando non specificato" -#: src/Common/LinuxKernel.vala:1019 +#: src/Common/LinuxKernel.vala:1022 msgid "Uninstalling selected kernels" msgstr "Disinstalla i kernel specificati" -#: src/Common/LinuxKernel.vala:1023 -#, fuzzy -msgid "Requested" -msgstr "richiesto" - -#: src/Common/LinuxKernel.vala:1026 +#: src/Common/LinuxKernel.vala:1029 #, fuzzy msgid "Not uninstalling the currently running kernel" msgstr "non disinstallare il kernel attualmente in esecuzione" -#: src/Common/LinuxKernel.vala:1031 +#: src/Common/LinuxKernel.vala:1034 msgid "is locked" msgstr "" -#: src/Common/LinuxKernel.vala:1039 +#: src/Common/LinuxKernel.vala:1042 msgid "found" msgstr "trovato" -#: src/Common/LinuxKernel.vala:1043 +#: src/Common/LinuxKernel.vala:1046 msgid "Uninstall: no uninstallable packages found" msgstr "" -#: src/Common/LinuxKernel.vala:1079 +#: src/Common/LinuxKernel.vala:1082 #, fuzzy msgid "is the highest installed version." msgstr "Disinstallare tutti tranne la versione più recente installata" -#: src/Common/LinuxKernel.vala:1092 +#: src/Common/LinuxKernel.vala:1095 msgid "Could not find running kernel in list" msgstr "Impossibile trovare il kernel in esecuzione nell'elenco" -#: src/Common/LinuxKernel.vala:1097 +#: src/Common/LinuxKernel.vala:1100 msgid "Could not find any kernels to uninstall" msgstr "Impossibile trovare alcun kernel da rimuovere" -#: src/Common/LinuxKernel.vala:1105 +#: src/Common/LinuxKernel.vala:1108 msgid "The following kernels will be uninstalled" msgstr "I seguenti kernel saranno rimossi" -#: src/Common/LinuxKernel.vala:1109 +#: src/Common/LinuxKernel.vala:1112 msgid "Continue ?" msgstr "Continuare ?" -#: src/Common/LinuxKernel.vala:1131 src/Console/AppConsole.vala:215 +#: src/Common/LinuxKernel.vala:1134 src/Console/AppConsole.vala:215 msgid "Latest update" msgstr "Ultimo aggiornamento" -#: src/Common/LinuxKernel.vala:1142 src/Console/AppConsole.vala:222 +#: src/Common/LinuxKernel.vala:1145 src/Console/AppConsole.vala:222 msgid "Latest point update" msgstr "Ultimo aggiornamento del rilascio parziale" -#: src/Common/LinuxKernel.vala:1150 src/Console/AppConsole.vala:227 +#: src/Common/LinuxKernel.vala:1153 src/Console/AppConsole.vala:227 #: src/Console/AppConsole.vala:242 msgid "No updates found" msgstr "Nessun aggiornamento trovato" -#: src/Common/LinuxKernel.vala:1159 +#: src/Common/LinuxKernel.vala:1162 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Installare la versione del kernel %s ? (y/n): " @@ -322,7 +327,7 @@ msgstr "Le notifiche sono disabilitate" msgid "Kernel %s Available" msgstr "Kernel %s Disponibile" -#: src/Console/AppConsole.vala:268 src/Gtk/SettingsDialog.vala:166 +#: src/Console/AppConsole.vala:268 src/Gtk/SettingsDialog.vala:163 msgid "Show" msgstr "Mostra" @@ -414,7 +419,7 @@ msgstr "Ricarica" msgid "Delete and reload all cached kernel info" msgstr "" -#: src/Gtk/MainWindow.vala:335 src/Gtk/SettingsDialog.vala:49 +#: src/Gtk/MainWindow.vala:335 src/Gtk/SettingsDialog.vala:46 msgid "Settings" msgstr "Impostazioni" @@ -451,75 +456,75 @@ msgstr "disponibile" msgid "DONE" msgstr "" -#: src/Gtk/SettingsDialog.vala:59 +#: src/Gtk/SettingsDialog.vala:56 msgid "Notification" msgstr "Notifica" -#: src/Gtk/SettingsDialog.vala:66 +#: src/Gtk/SettingsDialog.vala:63 msgid "Notify if a major release is available" msgstr "Avvisa se è disponibile una versione principale" -#: src/Gtk/SettingsDialog.vala:75 +#: src/Gtk/SettingsDialog.vala:72 msgid "Notify if a point release is available" msgstr "Avvisa se è disponibile un rilascio parziale" -#: src/Gtk/SettingsDialog.vala:86 +#: src/Gtk/SettingsDialog.vala:83 msgid "Seconds interval enabled for debugging" msgstr "Intervallo in secondi abilitato per il debug" -#: src/Gtk/SettingsDialog.vala:109 +#: src/Gtk/SettingsDialog.vala:106 msgid "Check every" msgstr "Controlla ogni" -#: src/Gtk/SettingsDialog.vala:134 +#: src/Gtk/SettingsDialog.vala:131 msgid "Hours" msgstr "Ore" -#: src/Gtk/SettingsDialog.vala:136 +#: src/Gtk/SettingsDialog.vala:133 msgid "Days" msgstr "Giorni" -#: src/Gtk/SettingsDialog.vala:138 +#: src/Gtk/SettingsDialog.vala:135 msgid "Weeks" msgstr "Settimane" -#: src/Gtk/SettingsDialog.vala:141 +#: src/Gtk/SettingsDialog.vala:138 msgid "Seconds" msgstr "Secondi" -#: src/Gtk/SettingsDialog.vala:147 +#: src/Gtk/SettingsDialog.vala:144 msgid "Filters" msgstr "Filtri" -#: src/Gtk/SettingsDialog.vala:155 +#: src/Gtk/SettingsDialog.vala:152 msgid "Hide unstable and RC releases" msgstr "Nascondi versioni instabili e rilasci RC" -#: src/Gtk/SettingsDialog.vala:177 +#: src/Gtk/SettingsDialog.vala:174 msgid "previous major versions ( -1 = all )" msgstr "versioni principali precedenti ( -1 = tutte )" -#: src/Gtk/SettingsDialog.vala:181 +#: src/Gtk/SettingsDialog.vala:178 msgid "Network" msgstr "Rete" -#: src/Gtk/SettingsDialog.vala:192 +#: src/Gtk/SettingsDialog.vala:189 msgid "Internet connection timeout in" msgstr "Timeout connessione Internet in" -#: src/Gtk/SettingsDialog.vala:204 +#: src/Gtk/SettingsDialog.vala:201 msgid "seconds" msgstr "secondi" -#: src/Gtk/SettingsDialog.vala:211 +#: src/Gtk/SettingsDialog.vala:208 msgid "Max concurrent downloads" msgstr "Numero massimo di download simultanei" -#: src/Gtk/SettingsDialog.vala:225 +#: src/Gtk/SettingsDialog.vala:222 msgid "Verify Checksums with the CHECKSUMS files" msgstr "Verifica dei checksum con i file CHECKSUMS" -#: src/Gtk/SettingsDialog.vala:233 +#: src/Gtk/SettingsDialog.vala:230 msgid "Proxy" msgstr "Proxy" diff --git a/po/ko.po b/po/ko.po index c29a1b33..7bcae9d9 100644 --- a/po/ko.po +++ b/po/ko.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-31 19:56-0400\n" +"POT-Creation-Date: 2023-05-31 20:53-0400\n" "PO-Revision-Date: 2022-09-28 11:48+0900\n" "Last-Translator: Kevin Kim \n" "Language-Team: Korean\n" @@ -61,8 +61,8 @@ msgstr "설치된 것을 찾았습니다" msgid "locked" msgstr "" -#: src/Common/LinuxKernel.vala:473 src/Common/LinuxKernel.vala:994 -#: src/Common/LinuxKernel.vala:1083 +#: src/Common/LinuxKernel.vala:473 src/Common/LinuxKernel.vala:996 +#: src/Common/LinuxKernel.vala:1086 msgid "is locked." msgstr "" @@ -116,80 +116,85 @@ msgstr "사용" msgid "Downloading" msgstr "다운로드" -#: src/Common/LinuxKernel.vala:989 +#: src/Common/LinuxKernel.vala:982 +#, fuzzy +msgid "Installing selected kernels" +msgstr "선택한 커널 제거" + +#: src/Common/LinuxKernel.vala:988 src/Common/LinuxKernel.vala:1026 +#, fuzzy +msgid "Requested" +msgstr "요청" + +#: src/Common/LinuxKernel.vala:991 msgid "is already installed." msgstr "가 이미 설치되어 있습니다" -#: src/Common/LinuxKernel.vala:999 +#: src/Common/LinuxKernel.vala:1001 msgid "download failed." msgstr "" -#: src/Common/LinuxKernel.vala:1007 +#: src/Common/LinuxKernel.vala:1009 #, fuzzy msgid "Install: no installable kernels secified" msgstr "지정한 명령어가 없습니다" -#: src/Common/LinuxKernel.vala:1019 +#: src/Common/LinuxKernel.vala:1022 msgid "Uninstalling selected kernels" msgstr "선택한 커널 제거" -#: src/Common/LinuxKernel.vala:1023 -#, fuzzy -msgid "Requested" -msgstr "요청" - -#: src/Common/LinuxKernel.vala:1026 +#: src/Common/LinuxKernel.vala:1029 #, fuzzy msgid "Not uninstalling the currently running kernel" msgstr "현재 실행 중인 커널을 제거하지 않음" -#: src/Common/LinuxKernel.vala:1031 +#: src/Common/LinuxKernel.vala:1034 msgid "is locked" msgstr "" -#: src/Common/LinuxKernel.vala:1039 +#: src/Common/LinuxKernel.vala:1042 msgid "found" msgstr "설립하다" -#: src/Common/LinuxKernel.vala:1043 +#: src/Common/LinuxKernel.vala:1046 msgid "Uninstall: no uninstallable packages found" msgstr "" -#: src/Common/LinuxKernel.vala:1079 +#: src/Common/LinuxKernel.vala:1082 #, fuzzy msgid "is the highest installed version." msgstr "설치된 가장 높은 버전을 제외한 모든 버전을 제거합니다" -#: src/Common/LinuxKernel.vala:1092 +#: src/Common/LinuxKernel.vala:1095 msgid "Could not find running kernel in list" msgstr "현재 실행 중인 커널을 찾을 수 없습니다" -#: src/Common/LinuxKernel.vala:1097 +#: src/Common/LinuxKernel.vala:1100 msgid "Could not find any kernels to uninstall" msgstr "삭제할 커널을 찾을 수 없습니다" -#: src/Common/LinuxKernel.vala:1105 +#: src/Common/LinuxKernel.vala:1108 msgid "The following kernels will be uninstalled" msgstr "풀이" -#: src/Common/LinuxKernel.vala:1109 +#: src/Common/LinuxKernel.vala:1112 msgid "Continue ?" msgstr "계속하시겠습니까?" -#: src/Common/LinuxKernel.vala:1131 src/Console/AppConsole.vala:215 +#: src/Common/LinuxKernel.vala:1134 src/Console/AppConsole.vala:215 msgid "Latest update" msgstr "최신 업데이트" -#: src/Common/LinuxKernel.vala:1142 src/Console/AppConsole.vala:222 +#: src/Common/LinuxKernel.vala:1145 src/Console/AppConsole.vala:222 msgid "Latest point update" msgstr "최신 포인트 업데이트" -#: src/Common/LinuxKernel.vala:1150 src/Console/AppConsole.vala:227 +#: src/Common/LinuxKernel.vala:1153 src/Console/AppConsole.vala:227 #: src/Console/AppConsole.vala:242 msgid "No updates found" msgstr "업데이트를 찾을 수 없습니다" -#: src/Common/LinuxKernel.vala:1159 +#: src/Common/LinuxKernel.vala:1162 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "커널 %s 버전을 설치하시겠습니까? (y/n): " @@ -320,7 +325,7 @@ msgstr "설정에서 비활성화된 알림" msgid "Kernel %s Available" msgstr "커널 %s 사용 가능" -#: src/Console/AppConsole.vala:268 src/Gtk/SettingsDialog.vala:166 +#: src/Console/AppConsole.vala:268 src/Gtk/SettingsDialog.vala:163 msgid "Show" msgstr "보이기" @@ -412,7 +417,7 @@ msgstr "새로고침" msgid "Delete and reload all cached kernel info" msgstr "" -#: src/Gtk/MainWindow.vala:335 src/Gtk/SettingsDialog.vala:49 +#: src/Gtk/MainWindow.vala:335 src/Gtk/SettingsDialog.vala:46 msgid "Settings" msgstr "설정" @@ -449,75 +454,75 @@ msgstr "사용가능" msgid "DONE" msgstr "" -#: src/Gtk/SettingsDialog.vala:59 +#: src/Gtk/SettingsDialog.vala:56 msgid "Notification" msgstr "알림" -#: src/Gtk/SettingsDialog.vala:66 +#: src/Gtk/SettingsDialog.vala:63 msgid "Notify if a major release is available" msgstr "메이저 릴리즈가 있으면 알림" -#: src/Gtk/SettingsDialog.vala:75 +#: src/Gtk/SettingsDialog.vala:72 msgid "Notify if a point release is available" msgstr "포인트 릴리즈가 있으면 알림" -#: src/Gtk/SettingsDialog.vala:86 +#: src/Gtk/SettingsDialog.vala:83 msgid "Seconds interval enabled for debugging" msgstr "디버깅에 사용할 수 있는 초 간격" -#: src/Gtk/SettingsDialog.vala:109 +#: src/Gtk/SettingsDialog.vala:106 msgid "Check every" msgstr "확인 주기" -#: src/Gtk/SettingsDialog.vala:134 +#: src/Gtk/SettingsDialog.vala:131 msgid "Hours" msgstr "시간" -#: src/Gtk/SettingsDialog.vala:136 +#: src/Gtk/SettingsDialog.vala:133 msgid "Days" msgstr "일" -#: src/Gtk/SettingsDialog.vala:138 +#: src/Gtk/SettingsDialog.vala:135 msgid "Weeks" msgstr "주" -#: src/Gtk/SettingsDialog.vala:141 +#: src/Gtk/SettingsDialog.vala:138 msgid "Seconds" msgstr "초" -#: src/Gtk/SettingsDialog.vala:147 +#: src/Gtk/SettingsDialog.vala:144 msgid "Filters" msgstr "필터" -#: src/Gtk/SettingsDialog.vala:155 +#: src/Gtk/SettingsDialog.vala:152 msgid "Hide unstable and RC releases" msgstr "목록에서 unstable, RC 버전 포함" -#: src/Gtk/SettingsDialog.vala:177 +#: src/Gtk/SettingsDialog.vala:174 msgid "previous major versions ( -1 = all )" msgstr "이전 주 버전 ( -1 = 모두 )" -#: src/Gtk/SettingsDialog.vala:181 +#: src/Gtk/SettingsDialog.vala:178 msgid "Network" msgstr "네트워크" -#: src/Gtk/SettingsDialog.vala:192 +#: src/Gtk/SettingsDialog.vala:189 msgid "Internet connection timeout in" msgstr "인터넷 연결 시간 초과" -#: src/Gtk/SettingsDialog.vala:204 +#: src/Gtk/SettingsDialog.vala:201 msgid "seconds" msgstr "초" -#: src/Gtk/SettingsDialog.vala:211 +#: src/Gtk/SettingsDialog.vala:208 msgid "Max concurrent downloads" msgstr "동시 다운로드 최대 수" -#: src/Gtk/SettingsDialog.vala:225 +#: src/Gtk/SettingsDialog.vala:222 msgid "Verify Checksums with the CHECKSUMS files" msgstr "CHECKSUMS 파일로 체크섬 확인" -#: src/Gtk/SettingsDialog.vala:233 +#: src/Gtk/SettingsDialog.vala:230 msgid "Proxy" msgstr "대리" diff --git a/po/messages.pot b/po/messages.pot index 602bac2a..d071340d 100644 --- a/po/messages.pot +++ b/po/messages.pot @@ -6,9 +6,9 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: mainline 1.3.4\n" +"Project-Id-Version: mainline 1.3.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-31 20:00-0400\n" +"POT-Creation-Date: 2023-05-31 20:53-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -65,8 +65,8 @@ msgstr "" msgid "locked" msgstr "" -#: src/Common/LinuxKernel.vala:473 src/Common/LinuxKernel.vala:994 -#: src/Common/LinuxKernel.vala:1083 +#: src/Common/LinuxKernel.vala:473 src/Common/LinuxKernel.vala:996 +#: src/Common/LinuxKernel.vala:1086 msgid "is locked." msgstr "" @@ -118,76 +118,80 @@ msgstr "" msgid "Downloading" msgstr "" -#: src/Common/LinuxKernel.vala:989 +#: src/Common/LinuxKernel.vala:982 +msgid "Installing selected kernels" +msgstr "" + +#: src/Common/LinuxKernel.vala:988 src/Common/LinuxKernel.vala:1026 +msgid "Requested" +msgstr "" + +#: src/Common/LinuxKernel.vala:991 msgid "is already installed." msgstr "" -#: src/Common/LinuxKernel.vala:999 +#: src/Common/LinuxKernel.vala:1001 msgid "download failed." msgstr "" -#: src/Common/LinuxKernel.vala:1007 +#: src/Common/LinuxKernel.vala:1009 msgid "Install: no installable kernels secified" msgstr "" -#: src/Common/LinuxKernel.vala:1019 +#: src/Common/LinuxKernel.vala:1022 msgid "Uninstalling selected kernels" msgstr "" -#: src/Common/LinuxKernel.vala:1023 -msgid "Requested" -msgstr "" - -#: src/Common/LinuxKernel.vala:1026 +#: src/Common/LinuxKernel.vala:1029 msgid "Not uninstalling the currently running kernel" msgstr "" -#: src/Common/LinuxKernel.vala:1031 +#: src/Common/LinuxKernel.vala:1034 msgid "is locked" msgstr "" -#: src/Common/LinuxKernel.vala:1039 +#: src/Common/LinuxKernel.vala:1042 msgid "found" msgstr "" -#: src/Common/LinuxKernel.vala:1043 +#: src/Common/LinuxKernel.vala:1046 msgid "Uninstall: no uninstallable packages found" msgstr "" -#: src/Common/LinuxKernel.vala:1079 +#: src/Common/LinuxKernel.vala:1082 msgid "is the highest installed version." msgstr "" -#: src/Common/LinuxKernel.vala:1092 +#: src/Common/LinuxKernel.vala:1095 msgid "Could not find running kernel in list" msgstr "" -#: src/Common/LinuxKernel.vala:1097 +#: src/Common/LinuxKernel.vala:1100 msgid "Could not find any kernels to uninstall" msgstr "" -#: src/Common/LinuxKernel.vala:1105 +#: src/Common/LinuxKernel.vala:1108 msgid "The following kernels will be uninstalled" msgstr "" -#: src/Common/LinuxKernel.vala:1109 +#: src/Common/LinuxKernel.vala:1112 msgid "Continue ?" msgstr "" -#: src/Common/LinuxKernel.vala:1131 src/Console/AppConsole.vala:215 +#: src/Common/LinuxKernel.vala:1134 src/Console/AppConsole.vala:215 msgid "Latest update" msgstr "" -#: src/Common/LinuxKernel.vala:1142 src/Console/AppConsole.vala:222 +#: src/Common/LinuxKernel.vala:1145 src/Console/AppConsole.vala:222 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:1150 src/Console/AppConsole.vala:227 +#: src/Common/LinuxKernel.vala:1153 src/Console/AppConsole.vala:227 #: src/Console/AppConsole.vala:242 msgid "No updates found" msgstr "" -#: src/Common/LinuxKernel.vala:1159 +#: src/Common/LinuxKernel.vala:1162 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "" @@ -312,7 +316,7 @@ msgstr "" msgid "Kernel %s Available" msgstr "" -#: src/Console/AppConsole.vala:268 src/Gtk/SettingsDialog.vala:166 +#: src/Console/AppConsole.vala:268 src/Gtk/SettingsDialog.vala:163 msgid "Show" msgstr "" @@ -404,7 +408,7 @@ msgstr "" msgid "Delete and reload all cached kernel info" msgstr "" -#: src/Gtk/MainWindow.vala:335 src/Gtk/SettingsDialog.vala:49 +#: src/Gtk/MainWindow.vala:335 src/Gtk/SettingsDialog.vala:46 msgid "Settings" msgstr "" @@ -441,75 +445,75 @@ msgstr "" msgid "DONE" msgstr "" -#: src/Gtk/SettingsDialog.vala:59 +#: src/Gtk/SettingsDialog.vala:56 msgid "Notification" msgstr "" -#: src/Gtk/SettingsDialog.vala:66 +#: src/Gtk/SettingsDialog.vala:63 msgid "Notify if a major release is available" msgstr "" -#: src/Gtk/SettingsDialog.vala:75 +#: src/Gtk/SettingsDialog.vala:72 msgid "Notify if a point release is available" msgstr "" -#: src/Gtk/SettingsDialog.vala:86 +#: src/Gtk/SettingsDialog.vala:83 msgid "Seconds interval enabled for debugging" msgstr "" -#: src/Gtk/SettingsDialog.vala:109 +#: src/Gtk/SettingsDialog.vala:106 msgid "Check every" msgstr "" -#: src/Gtk/SettingsDialog.vala:134 +#: src/Gtk/SettingsDialog.vala:131 msgid "Hours" msgstr "" -#: src/Gtk/SettingsDialog.vala:136 +#: src/Gtk/SettingsDialog.vala:133 msgid "Days" msgstr "" -#: src/Gtk/SettingsDialog.vala:138 +#: src/Gtk/SettingsDialog.vala:135 msgid "Weeks" msgstr "" -#: src/Gtk/SettingsDialog.vala:141 +#: src/Gtk/SettingsDialog.vala:138 msgid "Seconds" msgstr "" -#: src/Gtk/SettingsDialog.vala:147 +#: src/Gtk/SettingsDialog.vala:144 msgid "Filters" msgstr "" -#: src/Gtk/SettingsDialog.vala:155 +#: src/Gtk/SettingsDialog.vala:152 msgid "Hide unstable and RC releases" msgstr "" -#: src/Gtk/SettingsDialog.vala:177 +#: src/Gtk/SettingsDialog.vala:174 msgid "previous major versions ( -1 = all )" msgstr "" -#: src/Gtk/SettingsDialog.vala:181 +#: src/Gtk/SettingsDialog.vala:178 msgid "Network" msgstr "" -#: src/Gtk/SettingsDialog.vala:192 +#: src/Gtk/SettingsDialog.vala:189 msgid "Internet connection timeout in" msgstr "" -#: src/Gtk/SettingsDialog.vala:204 +#: src/Gtk/SettingsDialog.vala:201 msgid "seconds" msgstr "" -#: src/Gtk/SettingsDialog.vala:211 +#: src/Gtk/SettingsDialog.vala:208 msgid "Max concurrent downloads" msgstr "" -#: src/Gtk/SettingsDialog.vala:225 +#: src/Gtk/SettingsDialog.vala:222 msgid "Verify Checksums with the CHECKSUMS files" msgstr "" -#: src/Gtk/SettingsDialog.vala:233 +#: src/Gtk/SettingsDialog.vala:230 msgid "Proxy" msgstr "" diff --git a/po/nl.po b/po/nl.po index 44300e04..330a3cc6 100644 --- a/po/nl.po +++ b/po/nl.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-31 19:56-0400\n" +"POT-Creation-Date: 2023-05-31 20:53-0400\n" "PO-Revision-Date: 2020-08-23 13:55+0200\n" "Last-Translator: Heimen Stoffels \n" "Language-Team: Dutch (Netherlands)\n" @@ -61,8 +61,8 @@ msgstr "Geïnstalleerd gevonden" msgid "locked" msgstr "" -#: src/Common/LinuxKernel.vala:473 src/Common/LinuxKernel.vala:994 -#: src/Common/LinuxKernel.vala:1083 +#: src/Common/LinuxKernel.vala:473 src/Common/LinuxKernel.vala:996 +#: src/Common/LinuxKernel.vala:1086 msgid "is locked." msgstr "" @@ -116,80 +116,85 @@ msgstr "ingeschakeld" msgid "Downloading" msgstr "Downloaden" -#: src/Common/LinuxKernel.vala:989 +#: src/Common/LinuxKernel.vala:982 +#, fuzzy +msgid "Installing selected kernels" +msgstr "Geselecteerde kernels verwijderen" + +#: src/Common/LinuxKernel.vala:988 src/Common/LinuxKernel.vala:1026 +#, fuzzy +msgid "Requested" +msgstr "verzocht" + +#: src/Common/LinuxKernel.vala:991 msgid "is already installed." msgstr "is al geïnstalleerd." -#: src/Common/LinuxKernel.vala:999 +#: src/Common/LinuxKernel.vala:1001 msgid "download failed." msgstr "" -#: src/Common/LinuxKernel.vala:1007 +#: src/Common/LinuxKernel.vala:1009 #, fuzzy msgid "Install: no installable kernels secified" msgstr "Geen opdracht opgegeven" -#: src/Common/LinuxKernel.vala:1019 +#: src/Common/LinuxKernel.vala:1022 msgid "Uninstalling selected kernels" msgstr "Geselecteerde kernels verwijderen" -#: src/Common/LinuxKernel.vala:1023 -#, fuzzy -msgid "Requested" -msgstr "verzocht" - -#: src/Common/LinuxKernel.vala:1026 +#: src/Common/LinuxKernel.vala:1029 #, fuzzy msgid "Not uninstalling the currently running kernel" msgstr "de momenteel actieve kernel niet verwijderen" -#: src/Common/LinuxKernel.vala:1031 +#: src/Common/LinuxKernel.vala:1034 msgid "is locked" msgstr "" -#: src/Common/LinuxKernel.vala:1039 +#: src/Common/LinuxKernel.vala:1042 msgid "found" msgstr "gevonden" -#: src/Common/LinuxKernel.vala:1043 +#: src/Common/LinuxKernel.vala:1046 msgid "Uninstall: no uninstallable packages found" msgstr "" -#: src/Common/LinuxKernel.vala:1079 +#: src/Common/LinuxKernel.vala:1082 #, fuzzy msgid "is the highest installed version." msgstr "Verwijder alle behalve de hoogst geïnstalleerde versie" -#: src/Common/LinuxKernel.vala:1092 +#: src/Common/LinuxKernel.vala:1095 msgid "Could not find running kernel in list" msgstr "De in gebruik zijnde kernel staat niet op de lijst" -#: src/Common/LinuxKernel.vala:1097 +#: src/Common/LinuxKernel.vala:1100 msgid "Could not find any kernels to uninstall" msgstr "Er zijn geen te verwijderen kernels" -#: src/Common/LinuxKernel.vala:1105 +#: src/Common/LinuxKernel.vala:1108 msgid "The following kernels will be uninstalled" msgstr "De volgende kernels worden verwijderd" -#: src/Common/LinuxKernel.vala:1109 +#: src/Common/LinuxKernel.vala:1112 msgid "Continue ?" msgstr "Wilt u doorgaan?" -#: src/Common/LinuxKernel.vala:1131 src/Console/AppConsole.vala:215 +#: src/Common/LinuxKernel.vala:1134 src/Console/AppConsole.vala:215 msgid "Latest update" msgstr "Recentste update" -#: src/Common/LinuxKernel.vala:1142 src/Console/AppConsole.vala:222 +#: src/Common/LinuxKernel.vala:1145 src/Console/AppConsole.vala:222 msgid "Latest point update" msgstr "Recentste puntupdate" -#: src/Common/LinuxKernel.vala:1150 src/Console/AppConsole.vala:227 +#: src/Common/LinuxKernel.vala:1153 src/Console/AppConsole.vala:227 #: src/Console/AppConsole.vala:242 msgid "No updates found" msgstr "Geen updates gevonden" -#: src/Common/LinuxKernel.vala:1159 +#: src/Common/LinuxKernel.vala:1162 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Wilt u versie %s installeren? (j/n): " @@ -322,7 +327,7 @@ msgstr "Meldingen uitgeschakeld in instellingen" msgid "Kernel %s Available" msgstr "Kernel %s is beschikbaar" -#: src/Console/AppConsole.vala:268 src/Gtk/SettingsDialog.vala:166 +#: src/Console/AppConsole.vala:268 src/Gtk/SettingsDialog.vala:163 msgid "Show" msgstr "Tonen" @@ -414,7 +419,7 @@ msgstr "Herladen" msgid "Delete and reload all cached kernel info" msgstr "" -#: src/Gtk/MainWindow.vala:335 src/Gtk/SettingsDialog.vala:49 +#: src/Gtk/MainWindow.vala:335 src/Gtk/SettingsDialog.vala:46 msgid "Settings" msgstr "Instellingen" @@ -451,75 +456,75 @@ msgstr "beschikbaar" msgid "DONE" msgstr "" -#: src/Gtk/SettingsDialog.vala:59 +#: src/Gtk/SettingsDialog.vala:56 msgid "Notification" msgstr "Melding" -#: src/Gtk/SettingsDialog.vala:66 +#: src/Gtk/SettingsDialog.vala:63 msgid "Notify if a major release is available" msgstr "Melding tonen als er een grote update beschikbaar is" -#: src/Gtk/SettingsDialog.vala:75 +#: src/Gtk/SettingsDialog.vala:72 msgid "Notify if a point release is available" msgstr "Melding tonen als er een puntupdate beschikbaar is" -#: src/Gtk/SettingsDialog.vala:86 +#: src/Gtk/SettingsDialog.vala:83 msgid "Seconds interval enabled for debugging" msgstr "Secondeninterval ingeschakeld voor foutopsporing" -#: src/Gtk/SettingsDialog.vala:109 +#: src/Gtk/SettingsDialog.vala:106 msgid "Check every" msgstr "Controleren, elke" -#: src/Gtk/SettingsDialog.vala:134 +#: src/Gtk/SettingsDialog.vala:131 msgid "Hours" msgstr "uur" -#: src/Gtk/SettingsDialog.vala:136 +#: src/Gtk/SettingsDialog.vala:133 msgid "Days" msgstr "dagen" -#: src/Gtk/SettingsDialog.vala:138 +#: src/Gtk/SettingsDialog.vala:135 msgid "Weeks" msgstr "weken" -#: src/Gtk/SettingsDialog.vala:141 +#: src/Gtk/SettingsDialog.vala:138 msgid "Seconds" msgstr "seconden" -#: src/Gtk/SettingsDialog.vala:147 +#: src/Gtk/SettingsDialog.vala:144 msgid "Filters" msgstr "Filters" -#: src/Gtk/SettingsDialog.vala:155 +#: src/Gtk/SettingsDialog.vala:152 msgid "Hide unstable and RC releases" msgstr "Instabiele en rc-uitgaven verbergen" -#: src/Gtk/SettingsDialog.vala:177 +#: src/Gtk/SettingsDialog.vala:174 msgid "previous major versions ( -1 = all )" msgstr "vorige hoofdversies ( -1 = alle )" -#: src/Gtk/SettingsDialog.vala:181 +#: src/Gtk/SettingsDialog.vala:178 msgid "Network" msgstr "Netwerk" -#: src/Gtk/SettingsDialog.vala:192 +#: src/Gtk/SettingsDialog.vala:189 msgid "Internet connection timeout in" msgstr "Verbindingstime-out na" -#: src/Gtk/SettingsDialog.vala:204 +#: src/Gtk/SettingsDialog.vala:201 msgid "seconds" msgstr "seconden" -#: src/Gtk/SettingsDialog.vala:211 +#: src/Gtk/SettingsDialog.vala:208 msgid "Max concurrent downloads" msgstr "Max. aantal gelijktijdige downloads" -#: src/Gtk/SettingsDialog.vala:225 +#: src/Gtk/SettingsDialog.vala:222 msgid "Verify Checksums with the CHECKSUMS files" msgstr "Controleer controlesommen met de CHECKSUMS-bestanden" -#: src/Gtk/SettingsDialog.vala:233 +#: src/Gtk/SettingsDialog.vala:230 msgid "Proxy" msgstr "Proxy" diff --git a/po/pl.po b/po/pl.po index bcf93cba..4c0d1c63 100644 --- a/po/pl.po +++ b/po/pl.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-31 19:56-0400\n" +"POT-Creation-Date: 2023-05-31 20:53-0400\n" "PO-Revision-Date: 2023-05-25 13:37+0200\n" "Last-Translator: Matthaiks\n" "Language-Team: Polish\n" @@ -60,8 +60,8 @@ msgstr "Znaleziono zainstalowane" msgid "locked" msgstr "zablokowane" -#: src/Common/LinuxKernel.vala:473 src/Common/LinuxKernel.vala:994 -#: src/Common/LinuxKernel.vala:1083 +#: src/Common/LinuxKernel.vala:473 src/Common/LinuxKernel.vala:996 +#: src/Common/LinuxKernel.vala:1086 msgid "is locked." msgstr "jest zablokowane." @@ -115,80 +115,85 @@ msgstr "włączone" msgid "Downloading" msgstr "Pobieranie" -#: src/Common/LinuxKernel.vala:989 +#: src/Common/LinuxKernel.vala:982 +#, fuzzy +msgid "Installing selected kernels" +msgstr "Odinstalowanie wybranych jąder" + +#: src/Common/LinuxKernel.vala:988 src/Common/LinuxKernel.vala:1026 +#, fuzzy +msgid "Requested" +msgstr "zażądane" + +#: src/Common/LinuxKernel.vala:991 msgid "is already installed." msgstr "jest już zainstalowane." -#: src/Common/LinuxKernel.vala:999 +#: src/Common/LinuxKernel.vala:1001 msgid "download failed." msgstr "" -#: src/Common/LinuxKernel.vala:1007 +#: src/Common/LinuxKernel.vala:1009 #, fuzzy msgid "Install: no installable kernels secified" msgstr "Nie określono polecenia" -#: src/Common/LinuxKernel.vala:1019 +#: src/Common/LinuxKernel.vala:1022 msgid "Uninstalling selected kernels" msgstr "Odinstalowanie wybranych jąder" -#: src/Common/LinuxKernel.vala:1023 -#, fuzzy -msgid "Requested" -msgstr "zażądane" - -#: src/Common/LinuxKernel.vala:1026 +#: src/Common/LinuxKernel.vala:1029 #, fuzzy msgid "Not uninstalling the currently running kernel" msgstr "bez odinstalowywania aktualnie uruchomionego jądra" -#: src/Common/LinuxKernel.vala:1031 +#: src/Common/LinuxKernel.vala:1034 #, fuzzy msgid "is locked" msgstr "jest zablokowane." -#: src/Common/LinuxKernel.vala:1039 +#: src/Common/LinuxKernel.vala:1042 msgid "found" msgstr "znalezione" -#: src/Common/LinuxKernel.vala:1043 +#: src/Common/LinuxKernel.vala:1046 msgid "Uninstall: no uninstallable packages found" msgstr "" -#: src/Common/LinuxKernel.vala:1079 +#: src/Common/LinuxKernel.vala:1082 msgid "is the highest installed version." msgstr "to najwyższa zainstalowana wersja." -#: src/Common/LinuxKernel.vala:1092 +#: src/Common/LinuxKernel.vala:1095 msgid "Could not find running kernel in list" msgstr "Nie można znaleźć uruchomionego jądra na liście" -#: src/Common/LinuxKernel.vala:1097 +#: src/Common/LinuxKernel.vala:1100 msgid "Could not find any kernels to uninstall" msgstr "Nie można znaleźć żadnych jąder do odinstalowania" -#: src/Common/LinuxKernel.vala:1105 +#: src/Common/LinuxKernel.vala:1108 msgid "The following kernels will be uninstalled" msgstr "Następujące jądra zostaną odinstalowane" -#: src/Common/LinuxKernel.vala:1109 +#: src/Common/LinuxKernel.vala:1112 msgid "Continue ?" msgstr "Kontynuować?" -#: src/Common/LinuxKernel.vala:1131 src/Console/AppConsole.vala:215 +#: src/Common/LinuxKernel.vala:1134 src/Console/AppConsole.vala:215 msgid "Latest update" msgstr "Najnowsza aktualizacja" -#: src/Common/LinuxKernel.vala:1142 src/Console/AppConsole.vala:222 +#: src/Common/LinuxKernel.vala:1145 src/Console/AppConsole.vala:222 msgid "Latest point update" msgstr "Najnowsza aktualizacja punktowa" -#: src/Common/LinuxKernel.vala:1150 src/Console/AppConsole.vala:227 +#: src/Common/LinuxKernel.vala:1153 src/Console/AppConsole.vala:227 #: src/Console/AppConsole.vala:242 msgid "No updates found" msgstr "Nie znaleziono aktualizacji" -#: src/Common/LinuxKernel.vala:1159 +#: src/Common/LinuxKernel.vala:1162 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Zainstalować wersję jądra %s? (t/n): " @@ -321,7 +326,7 @@ msgstr "Powiadomienia wyłączone w ustawieniach" msgid "Kernel %s Available" msgstr "Dostępne %s jądra" -#: src/Console/AppConsole.vala:268 src/Gtk/SettingsDialog.vala:166 +#: src/Console/AppConsole.vala:268 src/Gtk/SettingsDialog.vala:163 msgid "Show" msgstr "Pokaż" @@ -413,7 +418,7 @@ msgstr "Wczytaj ponownie" msgid "Delete and reload all cached kernel info" msgstr "" -#: src/Gtk/MainWindow.vala:335 src/Gtk/SettingsDialog.vala:49 +#: src/Gtk/MainWindow.vala:335 src/Gtk/SettingsDialog.vala:46 msgid "Settings" msgstr "Ustawienia" @@ -450,75 +455,75 @@ msgstr "dostępne" msgid "DONE" msgstr "" -#: src/Gtk/SettingsDialog.vala:59 +#: src/Gtk/SettingsDialog.vala:56 msgid "Notification" msgstr "Powiadomienia" -#: src/Gtk/SettingsDialog.vala:66 +#: src/Gtk/SettingsDialog.vala:63 msgid "Notify if a major release is available" msgstr "Powiadom, jeśli pojawi się główna wersja" -#: src/Gtk/SettingsDialog.vala:75 +#: src/Gtk/SettingsDialog.vala:72 msgid "Notify if a point release is available" msgstr "Powiadom, jeśli pojawi się wersja punktowa" -#: src/Gtk/SettingsDialog.vala:86 +#: src/Gtk/SettingsDialog.vala:83 msgid "Seconds interval enabled for debugging" msgstr "Interwał w sekundach włączony do debugowania" -#: src/Gtk/SettingsDialog.vala:109 +#: src/Gtk/SettingsDialog.vala:106 msgid "Check every" msgstr "Sprawdzaj co" -#: src/Gtk/SettingsDialog.vala:134 +#: src/Gtk/SettingsDialog.vala:131 msgid "Hours" msgstr "godziny" -#: src/Gtk/SettingsDialog.vala:136 +#: src/Gtk/SettingsDialog.vala:133 msgid "Days" msgstr "dni" -#: src/Gtk/SettingsDialog.vala:138 +#: src/Gtk/SettingsDialog.vala:135 msgid "Weeks" msgstr "tygodnie" -#: src/Gtk/SettingsDialog.vala:141 +#: src/Gtk/SettingsDialog.vala:138 msgid "Seconds" msgstr "sekundy" -#: src/Gtk/SettingsDialog.vala:147 +#: src/Gtk/SettingsDialog.vala:144 msgid "Filters" msgstr "Filtry" -#: src/Gtk/SettingsDialog.vala:155 +#: src/Gtk/SettingsDialog.vala:152 msgid "Hide unstable and RC releases" msgstr "Ukryj wydania niestabilne i RC" -#: src/Gtk/SettingsDialog.vala:177 +#: src/Gtk/SettingsDialog.vala:174 msgid "previous major versions ( -1 = all )" msgstr "poprzednie główne wersje ( -1 = wszystkie )" -#: src/Gtk/SettingsDialog.vala:181 +#: src/Gtk/SettingsDialog.vala:178 msgid "Network" msgstr "Sieć" -#: src/Gtk/SettingsDialog.vala:192 +#: src/Gtk/SettingsDialog.vala:189 msgid "Internet connection timeout in" msgstr "Limit czasu połączenia internetowego po" -#: src/Gtk/SettingsDialog.vala:204 +#: src/Gtk/SettingsDialog.vala:201 msgid "seconds" msgstr "sekundy" -#: src/Gtk/SettingsDialog.vala:211 +#: src/Gtk/SettingsDialog.vala:208 msgid "Max concurrent downloads" msgstr "Maksymalna liczba jednoczesnych pobrań" -#: src/Gtk/SettingsDialog.vala:225 +#: src/Gtk/SettingsDialog.vala:222 msgid "Verify Checksums with the CHECKSUMS files" msgstr "Weryfikowanie sum kontrolnych za pomocą plików CHECKSUMS" -#: src/Gtk/SettingsDialog.vala:233 +#: src/Gtk/SettingsDialog.vala:230 msgid "Proxy" msgstr "Serwer pośredniczący" diff --git a/po/ru.po b/po/ru.po index 0f297615..608bf1ec 100644 --- a/po/ru.po +++ b/po/ru.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-31 19:56-0400\n" +"POT-Creation-Date: 2023-05-31 20:53-0400\n" "PO-Revision-Date: 2023-04-17 20:16+0300\n" "Last-Translator: Danik2343 \n" "Language-Team: Russian\n" @@ -61,8 +61,8 @@ msgstr "Найдено установлененное" msgid "locked" msgstr "" -#: src/Common/LinuxKernel.vala:473 src/Common/LinuxKernel.vala:994 -#: src/Common/LinuxKernel.vala:1083 +#: src/Common/LinuxKernel.vala:473 src/Common/LinuxKernel.vala:996 +#: src/Common/LinuxKernel.vala:1086 msgid "is locked." msgstr "" @@ -116,80 +116,85 @@ msgstr "включено" msgid "Downloading" msgstr "Загрузки" -#: src/Common/LinuxKernel.vala:989 +#: src/Common/LinuxKernel.vala:982 +#, fuzzy +msgid "Installing selected kernels" +msgstr "Удаление выбранных ядер" + +#: src/Common/LinuxKernel.vala:988 src/Common/LinuxKernel.vala:1026 +#, fuzzy +msgid "Requested" +msgstr "запрошено" + +#: src/Common/LinuxKernel.vala:991 msgid "is already installed." msgstr "уже установлен." -#: src/Common/LinuxKernel.vala:999 +#: src/Common/LinuxKernel.vala:1001 msgid "download failed." msgstr "" -#: src/Common/LinuxKernel.vala:1007 +#: src/Common/LinuxKernel.vala:1009 #, fuzzy msgid "Install: no installable kernels secified" msgstr "Команда не указана" -#: src/Common/LinuxKernel.vala:1019 +#: src/Common/LinuxKernel.vala:1022 msgid "Uninstalling selected kernels" msgstr "Удаление выбранных ядер" -#: src/Common/LinuxKernel.vala:1023 -#, fuzzy -msgid "Requested" -msgstr "запрошено" - -#: src/Common/LinuxKernel.vala:1026 +#: src/Common/LinuxKernel.vala:1029 #, fuzzy msgid "Not uninstalling the currently running kernel" msgstr "не удаляет текущее работающее ядро" -#: src/Common/LinuxKernel.vala:1031 +#: src/Common/LinuxKernel.vala:1034 msgid "is locked" msgstr "" -#: src/Common/LinuxKernel.vala:1039 +#: src/Common/LinuxKernel.vala:1042 msgid "found" msgstr "найдено" -#: src/Common/LinuxKernel.vala:1043 +#: src/Common/LinuxKernel.vala:1046 msgid "Uninstall: no uninstallable packages found" msgstr "" -#: src/Common/LinuxKernel.vala:1079 +#: src/Common/LinuxKernel.vala:1082 #, fuzzy msgid "is the highest installed version." msgstr "Удаление всех установленных версий, кроме самой высокой" -#: src/Common/LinuxKernel.vala:1092 +#: src/Common/LinuxKernel.vala:1095 msgid "Could not find running kernel in list" msgstr "Could not find running kernel in list" -#: src/Common/LinuxKernel.vala:1097 +#: src/Common/LinuxKernel.vala:1100 msgid "Could not find any kernels to uninstall" msgstr "Не удалось найти ядра для деинсталляции" -#: src/Common/LinuxKernel.vala:1105 +#: src/Common/LinuxKernel.vala:1108 msgid "The following kernels will be uninstalled" msgstr "Следующие ядра будут удалены" -#: src/Common/LinuxKernel.vala:1109 +#: src/Common/LinuxKernel.vala:1112 msgid "Continue ?" msgstr "Продолжить ?" -#: src/Common/LinuxKernel.vala:1131 src/Console/AppConsole.vala:215 +#: src/Common/LinuxKernel.vala:1134 src/Console/AppConsole.vala:215 msgid "Latest update" msgstr "Последнее обновление" -#: src/Common/LinuxKernel.vala:1142 src/Console/AppConsole.vala:222 +#: src/Common/LinuxKernel.vala:1145 src/Console/AppConsole.vala:222 msgid "Latest point update" msgstr "Последнее обновление пунктов" -#: src/Common/LinuxKernel.vala:1150 src/Console/AppConsole.vala:227 +#: src/Common/LinuxKernel.vala:1153 src/Console/AppConsole.vala:227 #: src/Console/AppConsole.vala:242 msgid "No updates found" msgstr "Обновлений не найдено" -#: src/Common/LinuxKernel.vala:1159 +#: src/Common/LinuxKernel.vala:1162 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Установить версию ядра %s ? (y/n): " @@ -321,7 +326,7 @@ msgstr "Уведомления отключены в настройках" msgid "Kernel %s Available" msgstr "Доступно ядро %s" -#: src/Console/AppConsole.vala:268 src/Gtk/SettingsDialog.vala:166 +#: src/Console/AppConsole.vala:268 src/Gtk/SettingsDialog.vala:163 msgid "Show" msgstr "Показать" @@ -413,7 +418,7 @@ msgstr "Перезагрузить" msgid "Delete and reload all cached kernel info" msgstr "" -#: src/Gtk/MainWindow.vala:335 src/Gtk/SettingsDialog.vala:49 +#: src/Gtk/MainWindow.vala:335 src/Gtk/SettingsDialog.vala:46 msgid "Settings" msgstr "Настройки" @@ -450,75 +455,75 @@ msgstr "доступно" msgid "DONE" msgstr "" -#: src/Gtk/SettingsDialog.vala:59 +#: src/Gtk/SettingsDialog.vala:56 msgid "Notification" msgstr "Уведомления" -#: src/Gtk/SettingsDialog.vala:66 +#: src/Gtk/SettingsDialog.vala:63 msgid "Notify if a major release is available" msgstr "Уведомлять, если доступно крупное обновление" -#: src/Gtk/SettingsDialog.vala:75 +#: src/Gtk/SettingsDialog.vala:72 msgid "Notify if a point release is available" msgstr "Уведомлять, если доступно небольшое обновление" -#: src/Gtk/SettingsDialog.vala:86 +#: src/Gtk/SettingsDialog.vala:83 msgid "Seconds interval enabled for debugging" msgstr "Интервал секунд включен для отладки" -#: src/Gtk/SettingsDialog.vala:109 +#: src/Gtk/SettingsDialog.vala:106 msgid "Check every" msgstr "Проверять каждые" -#: src/Gtk/SettingsDialog.vala:134 +#: src/Gtk/SettingsDialog.vala:131 msgid "Hours" msgstr "Часов" -#: src/Gtk/SettingsDialog.vala:136 +#: src/Gtk/SettingsDialog.vala:133 msgid "Days" msgstr "Дней" -#: src/Gtk/SettingsDialog.vala:138 +#: src/Gtk/SettingsDialog.vala:135 msgid "Weeks" msgstr "Недель" -#: src/Gtk/SettingsDialog.vala:141 +#: src/Gtk/SettingsDialog.vala:138 msgid "Seconds" msgstr "Секунд" -#: src/Gtk/SettingsDialog.vala:147 +#: src/Gtk/SettingsDialog.vala:144 msgid "Filters" msgstr "Фильтры" -#: src/Gtk/SettingsDialog.vala:155 +#: src/Gtk/SettingsDialog.vala:152 msgid "Hide unstable and RC releases" msgstr "Скрыть нестабильные и релиз-кандидат версии" -#: src/Gtk/SettingsDialog.vala:177 +#: src/Gtk/SettingsDialog.vala:174 msgid "previous major versions ( -1 = all )" msgstr "предыдущие основные версии ( -1 = все )" -#: src/Gtk/SettingsDialog.vala:181 +#: src/Gtk/SettingsDialog.vala:178 msgid "Network" msgstr "Сеть" -#: src/Gtk/SettingsDialog.vala:192 +#: src/Gtk/SettingsDialog.vala:189 msgid "Internet connection timeout in" msgstr "Таймаут подключения к Интернету в" -#: src/Gtk/SettingsDialog.vala:204 +#: src/Gtk/SettingsDialog.vala:201 msgid "seconds" msgstr "секунд" -#: src/Gtk/SettingsDialog.vala:211 +#: src/Gtk/SettingsDialog.vala:208 msgid "Max concurrent downloads" msgstr "Максимальное количество одновременных загрузок" -#: src/Gtk/SettingsDialog.vala:225 +#: src/Gtk/SettingsDialog.vala:222 msgid "Verify Checksums with the CHECKSUMS files" msgstr "Проверка контрольных сумм с помощью файлов CHECKSUMS" -#: src/Gtk/SettingsDialog.vala:233 +#: src/Gtk/SettingsDialog.vala:230 msgid "Proxy" msgstr "Доверенность" diff --git a/po/sv.po b/po/sv.po index 857c48fc..9880da7e 100644 --- a/po/sv.po +++ b/po/sv.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-31 19:56-0400\n" +"POT-Creation-Date: 2023-05-31 20:53-0400\n" "PO-Revision-Date: 2018-01-13 16:56+0100\n" "Last-Translator: Åke Engelbrektson \n" "Language-Team:Swedish\n" @@ -61,8 +61,8 @@ msgstr "Hittade installerat" msgid "locked" msgstr "" -#: src/Common/LinuxKernel.vala:473 src/Common/LinuxKernel.vala:994 -#: src/Common/LinuxKernel.vala:1083 +#: src/Common/LinuxKernel.vala:473 src/Common/LinuxKernel.vala:996 +#: src/Common/LinuxKernel.vala:1086 msgid "is locked." msgstr "" @@ -116,80 +116,85 @@ msgstr "aktiverat" msgid "Downloading" msgstr "Ladda ner" -#: src/Common/LinuxKernel.vala:989 +#: src/Common/LinuxKernel.vala:982 +#, fuzzy +msgid "Installing selected kernels" +msgstr "Avinstallera valda kärnor" + +#: src/Common/LinuxKernel.vala:988 src/Common/LinuxKernel.vala:1026 +#, fuzzy +msgid "Requested" +msgstr "begärd" + +#: src/Common/LinuxKernel.vala:991 msgid "is already installed." msgstr "är redan installerat." -#: src/Common/LinuxKernel.vala:999 +#: src/Common/LinuxKernel.vala:1001 msgid "download failed." msgstr "" -#: src/Common/LinuxKernel.vala:1007 +#: src/Common/LinuxKernel.vala:1009 #, fuzzy msgid "Install: no installable kernels secified" msgstr "Kommandot har inte angetts" -#: src/Common/LinuxKernel.vala:1019 +#: src/Common/LinuxKernel.vala:1022 msgid "Uninstalling selected kernels" msgstr "Avinstallera valda kärnor" -#: src/Common/LinuxKernel.vala:1023 -#, fuzzy -msgid "Requested" -msgstr "begärd" - -#: src/Common/LinuxKernel.vala:1026 +#: src/Common/LinuxKernel.vala:1029 #, fuzzy msgid "Not uninstalling the currently running kernel" msgstr "Avinstallera inte den kärna som körs, för närvarande" -#: src/Common/LinuxKernel.vala:1031 +#: src/Common/LinuxKernel.vala:1034 msgid "is locked" msgstr "" -#: src/Common/LinuxKernel.vala:1039 +#: src/Common/LinuxKernel.vala:1042 msgid "found" msgstr "grunda" -#: src/Common/LinuxKernel.vala:1043 +#: src/Common/LinuxKernel.vala:1046 msgid "Uninstall: no uninstallable packages found" msgstr "" -#: src/Common/LinuxKernel.vala:1079 +#: src/Common/LinuxKernel.vala:1082 #, fuzzy msgid "is the highest installed version." msgstr "Avinstallera alla utom den högsta installerade versionen" -#: src/Common/LinuxKernel.vala:1092 +#: src/Common/LinuxKernel.vala:1095 msgid "Could not find running kernel in list" msgstr "Det gick inte att hitta kernel som körs i listan" -#: src/Common/LinuxKernel.vala:1097 +#: src/Common/LinuxKernel.vala:1100 msgid "Could not find any kernels to uninstall" msgstr "Det gick inte att hitta några kärnor att avinstallera" -#: src/Common/LinuxKernel.vala:1105 +#: src/Common/LinuxKernel.vala:1108 msgid "The following kernels will be uninstalled" msgstr "Följande kärnor kommer att avinstalleras" -#: src/Common/LinuxKernel.vala:1109 +#: src/Common/LinuxKernel.vala:1112 msgid "Continue ?" msgstr "Fortsätta?" -#: src/Common/LinuxKernel.vala:1131 src/Console/AppConsole.vala:215 +#: src/Common/LinuxKernel.vala:1134 src/Console/AppConsole.vala:215 msgid "Latest update" msgstr "Senaste uppdatering" -#: src/Common/LinuxKernel.vala:1142 src/Console/AppConsole.vala:222 +#: src/Common/LinuxKernel.vala:1145 src/Console/AppConsole.vala:222 msgid "Latest point update" msgstr "Senaste punktuppdatering" -#: src/Common/LinuxKernel.vala:1150 src/Console/AppConsole.vala:227 +#: src/Common/LinuxKernel.vala:1153 src/Console/AppConsole.vala:227 #: src/Console/AppConsole.vala:242 msgid "No updates found" msgstr "Inga uppdateringar hittades" -#: src/Common/LinuxKernel.vala:1159 +#: src/Common/LinuxKernel.vala:1162 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Installera kärnversion %s ? (j/n):" @@ -320,7 +325,7 @@ msgstr "Meddelanden inaktiverade i inställningarna" msgid "Kernel %s Available" msgstr "Kernel %s tillgängliga" -#: src/Console/AppConsole.vala:268 src/Gtk/SettingsDialog.vala:166 +#: src/Console/AppConsole.vala:268 src/Gtk/SettingsDialog.vala:163 msgid "Show" msgstr "Visa" @@ -412,7 +417,7 @@ msgstr "Reload" msgid "Delete and reload all cached kernel info" msgstr "" -#: src/Gtk/MainWindow.vala:335 src/Gtk/SettingsDialog.vala:49 +#: src/Gtk/MainWindow.vala:335 src/Gtk/SettingsDialog.vala:46 msgid "Settings" msgstr "Inställningar" @@ -449,75 +454,75 @@ msgstr "tillgänglig" msgid "DONE" msgstr "" -#: src/Gtk/SettingsDialog.vala:59 +#: src/Gtk/SettingsDialog.vala:56 msgid "Notification" msgstr "Avisering" -#: src/Gtk/SettingsDialog.vala:66 +#: src/Gtk/SettingsDialog.vala:63 msgid "Notify if a major release is available" msgstr "Meddela om en större version är tillgänglig" -#: src/Gtk/SettingsDialog.vala:75 +#: src/Gtk/SettingsDialog.vala:72 msgid "Notify if a point release is available" msgstr "Meddela om en punktrelease är tillgänglig" -#: src/Gtk/SettingsDialog.vala:86 +#: src/Gtk/SettingsDialog.vala:83 msgid "Seconds interval enabled for debugging" msgstr "Sekundintervall aktiverat för felsökning" -#: src/Gtk/SettingsDialog.vala:109 +#: src/Gtk/SettingsDialog.vala:106 msgid "Check every" msgstr "Kontrollera varje" -#: src/Gtk/SettingsDialog.vala:134 +#: src/Gtk/SettingsDialog.vala:131 msgid "Hours" msgstr "timmar" -#: src/Gtk/SettingsDialog.vala:136 +#: src/Gtk/SettingsDialog.vala:133 msgid "Days" msgstr "dagar" -#: src/Gtk/SettingsDialog.vala:138 +#: src/Gtk/SettingsDialog.vala:135 msgid "Weeks" msgstr "veckor" -#: src/Gtk/SettingsDialog.vala:141 +#: src/Gtk/SettingsDialog.vala:138 msgid "Seconds" msgstr "sekunder" -#: src/Gtk/SettingsDialog.vala:147 +#: src/Gtk/SettingsDialog.vala:144 msgid "Filters" msgstr "Filter" -#: src/Gtk/SettingsDialog.vala:155 +#: src/Gtk/SettingsDialog.vala:152 msgid "Hide unstable and RC releases" msgstr "Dölj instabila- och RC-publiceringar" -#: src/Gtk/SettingsDialog.vala:177 +#: src/Gtk/SettingsDialog.vala:174 msgid "previous major versions ( -1 = all )" msgstr "tidigare huvudversioner ( -1 = alla )" -#: src/Gtk/SettingsDialog.vala:181 +#: src/Gtk/SettingsDialog.vala:178 msgid "Network" msgstr "Nätverk" -#: src/Gtk/SettingsDialog.vala:192 +#: src/Gtk/SettingsDialog.vala:189 msgid "Internet connection timeout in" msgstr "Internetuppkopplingen är inte aktiv" -#: src/Gtk/SettingsDialog.vala:204 +#: src/Gtk/SettingsDialog.vala:201 msgid "seconds" msgstr "sekunder" -#: src/Gtk/SettingsDialog.vala:211 +#: src/Gtk/SettingsDialog.vala:208 msgid "Max concurrent downloads" msgstr "Max antal nedladdningar av konkurrenter" -#: src/Gtk/SettingsDialog.vala:225 +#: src/Gtk/SettingsDialog.vala:222 msgid "Verify Checksums with the CHECKSUMS files" msgstr "Verifiera kontrollsummor med CHECKSUMS-filerna" -#: src/Gtk/SettingsDialog.vala:233 +#: src/Gtk/SettingsDialog.vala:230 msgid "Proxy" msgstr "Proxyserver" diff --git a/po/tr.po b/po/tr.po index de149756..0641b918 100644 --- a/po/tr.po +++ b/po/tr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-31 19:56-0400\n" +"POT-Creation-Date: 2023-05-31 20:53-0400\n" "PO-Revision-Date: 2022-08-06 16:48+0300\n" "Last-Translator: Sabri Ünal \n" "Language-Team: Turkish\n" @@ -61,8 +61,8 @@ msgstr "Yüklü bulundu" msgid "locked" msgstr "" -#: src/Common/LinuxKernel.vala:473 src/Common/LinuxKernel.vala:994 -#: src/Common/LinuxKernel.vala:1083 +#: src/Common/LinuxKernel.vala:473 src/Common/LinuxKernel.vala:996 +#: src/Common/LinuxKernel.vala:1086 msgid "is locked." msgstr "" @@ -116,81 +116,86 @@ msgstr "etkin" msgid "Downloading" msgstr "Indiriyor" -#: src/Common/LinuxKernel.vala:989 +#: src/Common/LinuxKernel.vala:982 +#, fuzzy +msgid "Installing selected kernels" +msgstr "Seçili çekirdekleri kaldırma" + +#: src/Common/LinuxKernel.vala:988 src/Common/LinuxKernel.vala:1026 +#, fuzzy +msgid "Requested" +msgstr "istenen" + +#: src/Common/LinuxKernel.vala:991 msgid "is already installed." msgstr "zaten yüklü." -#: src/Common/LinuxKernel.vala:999 +#: src/Common/LinuxKernel.vala:1001 msgid "download failed." msgstr "" -#: src/Common/LinuxKernel.vala:1007 +#: src/Common/LinuxKernel.vala:1009 #, fuzzy msgid "Install: no installable kernels secified" msgstr "Komut belirtilmedi" -#: src/Common/LinuxKernel.vala:1019 +#: src/Common/LinuxKernel.vala:1022 msgid "Uninstalling selected kernels" msgstr "Seçili çekirdekleri kaldırma" -#: src/Common/LinuxKernel.vala:1023 -#, fuzzy -msgid "Requested" -msgstr "istenen" - -#: src/Common/LinuxKernel.vala:1026 +#: src/Common/LinuxKernel.vala:1029 #, fuzzy msgid "Not uninstalling the currently running kernel" msgstr "çalışmakta olan çekirdeğin kaldırılmaması" -#: src/Common/LinuxKernel.vala:1031 +#: src/Common/LinuxKernel.vala:1034 msgid "is locked" msgstr "" -#: src/Common/LinuxKernel.vala:1039 +#: src/Common/LinuxKernel.vala:1042 msgid "found" msgstr "kurmak" -#: src/Common/LinuxKernel.vala:1043 +#: src/Common/LinuxKernel.vala:1046 msgid "Uninstall: no uninstallable packages found" msgstr "" -#: src/Common/LinuxKernel.vala:1079 +#: src/Common/LinuxKernel.vala:1082 #, fuzzy msgid "is the highest installed version." msgstr "En yüksek yüklü sürüm dışındaki tüm sürümleri kaldırın" -#: src/Common/LinuxKernel.vala:1092 +#: src/Common/LinuxKernel.vala:1095 msgid "Could not find running kernel in list" msgstr "Listede çalışan çekirdek bulunamadı" -#: src/Common/LinuxKernel.vala:1097 +#: src/Common/LinuxKernel.vala:1100 msgid "Could not find any kernels to uninstall" msgstr "Kaldırılacak çekirdek bulunamadı" -#: src/Common/LinuxKernel.vala:1105 +#: src/Common/LinuxKernel.vala:1108 msgid "The following kernels will be uninstalled" msgstr "Aşağıdaki çekirdekler kaldırılacaktır" -#: src/Common/LinuxKernel.vala:1109 +#: src/Common/LinuxKernel.vala:1112 msgid "Continue ?" msgstr "Devam edilsin mi?" -#: src/Common/LinuxKernel.vala:1131 src/Console/AppConsole.vala:215 +#: src/Common/LinuxKernel.vala:1134 src/Console/AppConsole.vala:215 msgid "Latest update" msgstr "Son güncelleme" # Point burada point release anlamında kullanılıyor. Örneğin 5.10.x sayısının en sonundaki x rakamı point release/nokta sürüm oluyor. -#: src/Common/LinuxKernel.vala:1142 src/Console/AppConsole.vala:222 +#: src/Common/LinuxKernel.vala:1145 src/Console/AppConsole.vala:222 msgid "Latest point update" msgstr "Son nokta güncellemesi" -#: src/Common/LinuxKernel.vala:1150 src/Console/AppConsole.vala:227 +#: src/Common/LinuxKernel.vala:1153 src/Console/AppConsole.vala:227 #: src/Console/AppConsole.vala:242 msgid "No updates found" msgstr "Güncelleme bulunamadı" -#: src/Common/LinuxKernel.vala:1159 +#: src/Common/LinuxKernel.vala:1162 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Linux Çekirdek Sürümü %s Kurulsun mu? (e/h): " @@ -322,7 +327,7 @@ msgstr "Ayarlarda devre dışı bırakılan bildirimler" msgid "Kernel %s Available" msgstr "Çekirdek %s Kullanılabilir" -#: src/Console/AppConsole.vala:268 src/Gtk/SettingsDialog.vala:166 +#: src/Console/AppConsole.vala:268 src/Gtk/SettingsDialog.vala:163 msgid "Show" msgstr "Göster" @@ -414,7 +419,7 @@ msgstr "Arjantin" msgid "Delete and reload all cached kernel info" msgstr "" -#: src/Gtk/MainWindow.vala:335 src/Gtk/SettingsDialog.vala:49 +#: src/Gtk/MainWindow.vala:335 src/Gtk/SettingsDialog.vala:46 msgid "Settings" msgstr "Ayarlar" @@ -451,75 +456,75 @@ msgstr "mevcut" msgid "DONE" msgstr "" -#: src/Gtk/SettingsDialog.vala:59 +#: src/Gtk/SettingsDialog.vala:56 msgid "Notification" msgstr "Bildirim" -#: src/Gtk/SettingsDialog.vala:66 +#: src/Gtk/SettingsDialog.vala:63 msgid "Notify if a major release is available" msgstr "Ana sürüm mevcutsa bildir" -#: src/Gtk/SettingsDialog.vala:75 +#: src/Gtk/SettingsDialog.vala:72 msgid "Notify if a point release is available" msgstr "Nokta sürüm mevcutsa bildir" -#: src/Gtk/SettingsDialog.vala:86 +#: src/Gtk/SettingsDialog.vala:83 msgid "Seconds interval enabled for debugging" msgstr "Hata ayıklama için etkinleştirilen saniye aralığı" -#: src/Gtk/SettingsDialog.vala:109 +#: src/Gtk/SettingsDialog.vala:106 msgid "Check every" msgstr "Kontrol aralığı" -#: src/Gtk/SettingsDialog.vala:134 +#: src/Gtk/SettingsDialog.vala:131 msgid "Hours" msgstr "saat" -#: src/Gtk/SettingsDialog.vala:136 +#: src/Gtk/SettingsDialog.vala:133 msgid "Days" msgstr "gün" -#: src/Gtk/SettingsDialog.vala:138 +#: src/Gtk/SettingsDialog.vala:135 msgid "Weeks" msgstr "hafta" -#: src/Gtk/SettingsDialog.vala:141 +#: src/Gtk/SettingsDialog.vala:138 msgid "Seconds" msgstr "saniye" -#: src/Gtk/SettingsDialog.vala:147 +#: src/Gtk/SettingsDialog.vala:144 msgid "Filters" msgstr "Filtre" -#: src/Gtk/SettingsDialog.vala:155 +#: src/Gtk/SettingsDialog.vala:152 msgid "Hide unstable and RC releases" msgstr "Kararsız ve RC sürümleri gizle" -#: src/Gtk/SettingsDialog.vala:177 +#: src/Gtk/SettingsDialog.vala:174 msgid "previous major versions ( -1 = all )" msgstr "önceki ana sürümler ( -1 = tümü )" -#: src/Gtk/SettingsDialog.vala:181 +#: src/Gtk/SettingsDialog.vala:178 msgid "Network" msgstr "Ağ" -#: src/Gtk/SettingsDialog.vala:192 +#: src/Gtk/SettingsDialog.vala:189 msgid "Internet connection timeout in" msgstr "İnternet bağlantısı zaman aşımı " -#: src/Gtk/SettingsDialog.vala:204 +#: src/Gtk/SettingsDialog.vala:201 msgid "seconds" msgstr "saniye" -#: src/Gtk/SettingsDialog.vala:211 +#: src/Gtk/SettingsDialog.vala:208 msgid "Max concurrent downloads" msgstr "Azami eşzamanlı indirme" -#: src/Gtk/SettingsDialog.vala:225 +#: src/Gtk/SettingsDialog.vala:222 msgid "Verify Checksums with the CHECKSUMS files" msgstr "Sağlama toplamlarını CHECKSUMS dosyalarıyla doğrulama" -#: src/Gtk/SettingsDialog.vala:233 +#: src/Gtk/SettingsDialog.vala:230 msgid "Proxy" msgstr "Proxy" diff --git a/po/uk.po b/po/uk.po index 5f8efc08..44b0b50f 100644 --- a/po/uk.po +++ b/po/uk.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-31 19:56-0400\n" +"POT-Creation-Date: 2023-05-31 20:53-0400\n" "PO-Revision-Date: 2019-07-25 11:00+0300\n" "Last-Translator: Serhii Golovko \n" "Language-Team: Ukranian\n" @@ -61,8 +61,8 @@ msgstr "Знайдено встановленим" msgid "locked" msgstr "заблокований" -#: src/Common/LinuxKernel.vala:473 src/Common/LinuxKernel.vala:994 -#: src/Common/LinuxKernel.vala:1083 +#: src/Common/LinuxKernel.vala:473 src/Common/LinuxKernel.vala:996 +#: src/Common/LinuxKernel.vala:1086 msgid "is locked." msgstr "заблоковано." @@ -116,81 +116,86 @@ msgstr "увімкнено" msgid "Downloading" msgstr "Завантаження" -#: src/Common/LinuxKernel.vala:989 +#: src/Common/LinuxKernel.vala:982 +#, fuzzy +msgid "Installing selected kernels" +msgstr "Видаліть конкретні ядра" + +#: src/Common/LinuxKernel.vala:988 src/Common/LinuxKernel.vala:1026 +#, fuzzy +msgid "Requested" +msgstr "запитуваний" + +#: src/Common/LinuxKernel.vala:991 msgid "is already installed." msgstr "вже встановлено." -#: src/Common/LinuxKernel.vala:999 +#: src/Common/LinuxKernel.vala:1001 msgid "download failed." msgstr "" -#: src/Common/LinuxKernel.vala:1007 +#: src/Common/LinuxKernel.vala:1009 #, fuzzy msgid "Install: no installable kernels secified" msgstr "Команда не вказана" -#: src/Common/LinuxKernel.vala:1019 +#: src/Common/LinuxKernel.vala:1022 msgid "Uninstalling selected kernels" msgstr "Видаліть конкретні ядра" -#: src/Common/LinuxKernel.vala:1023 -#, fuzzy -msgid "Requested" -msgstr "запитуваний" - -#: src/Common/LinuxKernel.vala:1026 +#: src/Common/LinuxKernel.vala:1029 #, fuzzy msgid "Not uninstalling the currently running kernel" msgstr "не видалятиме поточне запущене ядро" -#: src/Common/LinuxKernel.vala:1031 +#: src/Common/LinuxKernel.vala:1034 #, fuzzy msgid "is locked" msgstr "заблоковано." -#: src/Common/LinuxKernel.vala:1039 +#: src/Common/LinuxKernel.vala:1042 msgid "found" msgstr "знайдено" -#: src/Common/LinuxKernel.vala:1043 +#: src/Common/LinuxKernel.vala:1046 msgid "Uninstall: no uninstallable packages found" msgstr "" -#: src/Common/LinuxKernel.vala:1079 +#: src/Common/LinuxKernel.vala:1082 #, fuzzy msgid "is the highest installed version." msgstr "Видаліть усі, крім найвищої встановленої версії" -#: src/Common/LinuxKernel.vala:1092 +#: src/Common/LinuxKernel.vala:1095 msgid "Could not find running kernel in list" msgstr "Не вдалося знайти запущене ядро у списку!" -#: src/Common/LinuxKernel.vala:1097 +#: src/Common/LinuxKernel.vala:1100 msgid "Could not find any kernels to uninstall" msgstr "Не вдалося знайти жодне ядро для вилучення" -#: src/Common/LinuxKernel.vala:1105 +#: src/Common/LinuxKernel.vala:1108 msgid "The following kernels will be uninstalled" msgstr "Наступні ядра будуть видалені" -#: src/Common/LinuxKernel.vala:1109 +#: src/Common/LinuxKernel.vala:1112 msgid "Continue ?" msgstr "Продовжувати ?" -#: src/Common/LinuxKernel.vala:1131 src/Console/AppConsole.vala:215 +#: src/Common/LinuxKernel.vala:1134 src/Console/AppConsole.vala:215 msgid "Latest update" msgstr "Останнє оновлення" -#: src/Common/LinuxKernel.vala:1142 src/Console/AppConsole.vala:222 +#: src/Common/LinuxKernel.vala:1145 src/Console/AppConsole.vala:222 msgid "Latest point update" msgstr "Остання точка оновлення" -#: src/Common/LinuxKernel.vala:1150 src/Console/AppConsole.vala:227 +#: src/Common/LinuxKernel.vala:1153 src/Console/AppConsole.vala:227 #: src/Console/AppConsole.vala:242 msgid "No updates found" msgstr "Оновлень не знайдено" -#: src/Common/LinuxKernel.vala:1159 +#: src/Common/LinuxKernel.vala:1162 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Встановити Ядро Версії %s ? (так/ні): " @@ -322,7 +327,7 @@ msgstr "Сповіщення, вимкнені в налаштуваннях" msgid "Kernel %s Available" msgstr "Ядро %s Доступне" -#: src/Console/AppConsole.vala:268 src/Gtk/SettingsDialog.vala:166 +#: src/Console/AppConsole.vala:268 src/Gtk/SettingsDialog.vala:163 msgid "Show" msgstr "Показати" @@ -414,7 +419,7 @@ msgstr "Перезавантажити" msgid "Delete and reload all cached kernel info" msgstr "" -#: src/Gtk/MainWindow.vala:335 src/Gtk/SettingsDialog.vala:49 +#: src/Gtk/MainWindow.vala:335 src/Gtk/SettingsDialog.vala:46 msgid "Settings" msgstr "Налаштування" @@ -451,75 +456,75 @@ msgstr "доступний" msgid "DONE" msgstr "" -#: src/Gtk/SettingsDialog.vala:59 +#: src/Gtk/SettingsDialog.vala:56 msgid "Notification" msgstr "Повідомлення" -#: src/Gtk/SettingsDialog.vala:66 +#: src/Gtk/SettingsDialog.vala:63 msgid "Notify if a major release is available" msgstr "Повідомити, чи доступний великий випуск" -#: src/Gtk/SettingsDialog.vala:75 +#: src/Gtk/SettingsDialog.vala:72 msgid "Notify if a point release is available" msgstr "Повідомити, чи доступний невеликий випуск" -#: src/Gtk/SettingsDialog.vala:86 +#: src/Gtk/SettingsDialog.vala:83 msgid "Seconds interval enabled for debugging" msgstr "Увімкнено інтервал секунд для налагодження" -#: src/Gtk/SettingsDialog.vala:109 +#: src/Gtk/SettingsDialog.vala:106 msgid "Check every" msgstr "Перевіряти кожні" -#: src/Gtk/SettingsDialog.vala:134 +#: src/Gtk/SettingsDialog.vala:131 msgid "Hours" msgstr "годин" -#: src/Gtk/SettingsDialog.vala:136 +#: src/Gtk/SettingsDialog.vala:133 msgid "Days" msgstr "днів" -#: src/Gtk/SettingsDialog.vala:138 +#: src/Gtk/SettingsDialog.vala:135 msgid "Weeks" msgstr "тижнів" -#: src/Gtk/SettingsDialog.vala:141 +#: src/Gtk/SettingsDialog.vala:138 msgid "Seconds" msgstr "секунд" -#: src/Gtk/SettingsDialog.vala:147 +#: src/Gtk/SettingsDialog.vala:144 msgid "Filters" msgstr "Фільтри" -#: src/Gtk/SettingsDialog.vala:155 +#: src/Gtk/SettingsDialog.vala:152 msgid "Hide unstable and RC releases" msgstr "Приховати нестабільні та RC випуски" -#: src/Gtk/SettingsDialog.vala:177 +#: src/Gtk/SettingsDialog.vala:174 msgid "previous major versions ( -1 = all )" msgstr "попередніх основних версій ( -1 = усі )" -#: src/Gtk/SettingsDialog.vala:181 +#: src/Gtk/SettingsDialog.vala:178 msgid "Network" msgstr "Мережа" -#: src/Gtk/SettingsDialog.vala:192 +#: src/Gtk/SettingsDialog.vala:189 msgid "Internet connection timeout in" msgstr "Час очікування підключення до Інтернету в " -#: src/Gtk/SettingsDialog.vala:204 +#: src/Gtk/SettingsDialog.vala:201 msgid "seconds" msgstr "секунди" -#: src/Gtk/SettingsDialog.vala:211 +#: src/Gtk/SettingsDialog.vala:208 msgid "Max concurrent downloads" msgstr "Максимальна кількість завантажень" -#: src/Gtk/SettingsDialog.vala:225 +#: src/Gtk/SettingsDialog.vala:222 msgid "Verify Checksums with the CHECKSUMS files" msgstr "Перевірка Контрольні суми за допомогою файлів CHECKSUMS" -#: src/Gtk/SettingsDialog.vala:233 +#: src/Gtk/SettingsDialog.vala:230 msgid "Proxy" msgstr "Проксі" diff --git a/src/Common/LinuxKernel.vala b/src/Common/LinuxKernel.vala index 16d01a08..5a7f296a 100644 --- a/src/Common/LinuxKernel.vala +++ b/src/Common/LinuxKernel.vala @@ -979,24 +979,26 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { // dep: dpkg public static int install_klist(Gee.ArrayList klist) { + vprint(_("Installing selected kernels")+":"); if (!try_ppa()) return 1; string flist = ""; foreach (var k in klist) { + vprint(_("Requested")+" "+k.version_main); if (k.is_installed) { - vprint(k.version_main+" "+_("is already installed."),1,stderr); + vprint(k.version_main+"! "+_("is already installed."),1,stderr); continue; } if (k.is_locked) { - vprint(k.version_main+" "+_("is locked."),1,stderr); + vprint(k.version_main+"! "+_("is locked."),1,stderr); continue; } if (!k.download_packages()) { - vprint(k.version_main+" "+_("download failed."),1,stderr); + vprint(k.version_main+"! "+_("download failed."),1,stderr); continue; } @@ -1009,6 +1011,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { // full paths instead of env -C // https://github.com/bkw777/mainline/issues/128 string cmd = "pkexec env DISPLAY=${DISPLAY} XAUTHORITY=${XAUTHORITY} dpkg --install " + flist; + vprint(cmd,2); int r = Posix.system(cmd); foreach (var f in flist.split(" ")) file_delete(f); return r; diff --git a/src/lib/l.misc.vala b/src/lib/l.misc.vala index 127845e4..a069e6e8 100644 --- a/src/lib/l.misc.vala +++ b/src/lib/l.misc.vala @@ -89,6 +89,7 @@ namespace l.misc { // execute command synchronously public int exec_sync(string cmd, out string? std_out = null, out string? std_err = null) { + vprint("exec_sync("+cmd+")",2); try { int status; Process.spawn_command_line_sync(cmd, out std_out, out std_err, out status); @@ -101,6 +102,7 @@ namespace l.misc { // 20200510 bkw - execute command without waiting public void exec_async(string cmd) { + vprint("exec_async("+cmd+")",2); try { Process.spawn_command_line_async (cmd); } catch (SpawnError e) { vprint(e.message,1,stderr); } } From 14150d8b23c282e58d3ff9abba7d2da52e93664b Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Wed, 31 May 2023 21:01:58 -0400 Subject: [PATCH 341/567] debug output for system() commands --- BRANDING.mak | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BRANDING.mak b/BRANDING.mak index 3c47621e..f1f7d784 100644 --- a/BRANDING.mak +++ b/BRANDING.mak @@ -3,7 +3,7 @@ VERSION_MAJOR = 1 VERSION_MINOR = 3 -VERSION_MICRO = 5 +VERSION_MICRO = 6 BRANDING_SHORTNAME = mainline BRANDING_LONGNAME = Ubuntu Mainline Kernel Installer BRANDING_AUTHORNAME = Brian K. White From 9bade1812bd611454b7765297632086db753d48d Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Wed, 31 May 2023 21:07:11 -0400 Subject: [PATCH 342/567] debug output --- .deb_build_number.mak | 2 +- debian/changelog | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.deb_build_number.mak b/.deb_build_number.mak index f892c085..97e4b66a 100644 --- a/.deb_build_number.mak +++ b/.deb_build_number.mak @@ -1,3 +1,3 @@ # This file is generated by Makefile "make deb_build_number" DEB_PKG_VERSION := 1.3.5 -DEB_BUILD_NUMBER := 0000 +DEB_BUILD_NUMBER := 0003 diff --git a/debian/changelog b/debian/changelog index a3aa5cd9..ca74d54d 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,4 +1,4 @@ -mainline (1.3.5) UNRELEASED; urgency=medium +mainline (1.3.5) unstable; urgency=medium * Fix a random crash caused by the progress window. From d6fde5787f5c76aaa155b67c14774a2f33258210 Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Wed, 31 May 2023 21:09:25 -0400 Subject: [PATCH 343/567] 1.3.6 --- .deb_build_number.mak | 4 ++-- debian/changelog | 6 ++++++ 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/.deb_build_number.mak b/.deb_build_number.mak index 97e4b66a..60ba62d6 100644 --- a/.deb_build_number.mak +++ b/.deb_build_number.mak @@ -1,3 +1,3 @@ # This file is generated by Makefile "make deb_build_number" -DEB_PKG_VERSION := 1.3.5 -DEB_BUILD_NUMBER := 0003 +DEB_PKG_VERSION := 1.3.6 +DEB_BUILD_NUMBER := 0000 diff --git a/debian/changelog b/debian/changelog index ca74d54d..34ae1f09 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +mainline (1.3.6) UNRELEASED; urgency=medium + + * debug output for system() commands + + -- Brian K. White Wed, 31 May 2023 21:07:47 -0400 + mainline (1.3.5) unstable; urgency=medium * Fix a random crash caused by the progress window. From 6abc1ba6b460954d25d0b58538533226799cf9c4 Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Thu, 1 Jun 2023 01:50:46 -0400 Subject: [PATCH 344/567] replace dir_delete() & file_delete() with delete_r() --- po/de.po | 12 +++---- po/el.po | 12 +++---- po/es.po | 12 +++---- po/fr.po | 12 +++---- po/hr.po | 12 +++---- po/it.po | 12 +++---- po/ko.po | 12 +++---- po/messages.pot | 14 ++++---- po/nl.po | 12 +++---- po/pl.po | 12 +++---- po/ru.po | 12 +++---- po/sv.po | 12 +++---- po/tr.po | 12 +++---- po/uk.po | 12 +++---- src/Common/LinuxKernel.vala | 6 ++-- src/Common/Main.vala | 5 ++- src/Common/Package.vala | 2 +- src/Gtk/MainWindow.vala | 10 +++--- src/lib/AsyncTask.vala | 2 +- src/lib/TeeJee.FileSystem.vala | 65 ++++++---------------------------- src/lib/l.misc.vala | 18 ++++++++++ 21 files changed, 126 insertions(+), 152 deletions(-) diff --git a/po/de.po b/po/de.po index 7aa868b7..a46561a8 100644 --- a/po/de.po +++ b/po/de.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-31 20:53-0400\n" +"POT-Creation-Date: 2023-06-01 01:49-0400\n" "PO-Revision-Date: 2023-02-20 18:40+0100\n" "Last-Translator: Marvin Meysel \n" "Language-Team: German\n" @@ -86,7 +86,7 @@ msgstr "Verfügbare Pakete" msgid "Packages Installed" msgstr "Installierte Pakete" -#: src/Common/LinuxKernel.vala:784 src/lib/TeeJee.FileSystem.vala:118 +#: src/Common/LinuxKernel.vala:784 src/lib/TeeJee.FileSystem.vala:103 msgid "File not found" msgstr "Datei nicht gefunden " @@ -199,21 +199,21 @@ msgstr "Keine Updates gefunden" msgid "Install Kernel Version %s ? (y/n): " msgstr "Kernel-Version %s installieren? (j/n):" -#: src/Common/Main.vala:346 +#: src/Common/Main.vala:345 msgid "Called from" msgstr "Angerufen von" -#: src/Common/Main.vala:346 +#: src/Common/Main.vala:345 msgid "at logon" msgstr "beim start" -#: src/Common/Main.vala:347 +#: src/Common/Main.vala:346 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" "Diese Datei wird überschrieben und erneut ausgeführt, wenn Einstellungen in" -#: src/Common/Main.vala:379 +#: src/Common/Main.vala:378 msgid "Notifications are disabled" msgstr "Benachrichtigungen sind deaktiviert" diff --git a/po/el.po b/po/el.po index 5105c80e..d2ad79cf 100644 --- a/po/el.po +++ b/po/el.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-31 20:53-0400\n" +"POT-Creation-Date: 2023-06-01 01:49-0400\n" "PO-Revision-Date: 2023-01-10 02:03-0600\n" "Last-Translator: Vasilis Kosmidis \n" "Language-Team: Greek\n" @@ -86,7 +86,7 @@ msgstr "Διαθέσιμα πακέτα" msgid "Packages Installed" msgstr "Εγκατεστημένα πακέτα" -#: src/Common/LinuxKernel.vala:784 src/lib/TeeJee.FileSystem.vala:118 +#: src/Common/LinuxKernel.vala:784 src/lib/TeeJee.FileSystem.vala:103 msgid "File not found" msgstr "Το αρχείο δε βρέθηκε" @@ -199,22 +199,22 @@ msgstr "Δεν βρέθηκαν ενημερώσεις" msgid "Install Kernel Version %s ? (y/n): " msgstr "Εγκατάσταση του πυρήνα έκδοσης %s ; (ν/ό):" -#: src/Common/Main.vala:346 +#: src/Common/Main.vala:345 msgid "Called from" msgstr "Κλήθηκε από" -#: src/Common/Main.vala:346 +#: src/Common/Main.vala:345 msgid "at logon" msgstr "κατά την εκκίνηση" -#: src/Common/Main.vala:347 +#: src/Common/Main.vala:346 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" "Αυτό το αρχείο αντικαθίσταται και εκτελείται ξανά κάθε φορά που " "αποθηκεύονται οι ρυθμίσεις στο" -#: src/Common/Main.vala:379 +#: src/Common/Main.vala:378 msgid "Notifications are disabled" msgstr "Οι ειδοποιήσεις είναι απενεργοποιημένες" diff --git a/po/es.po b/po/es.po index 15bfef9c..ca79d4f5 100644 --- a/po/es.po +++ b/po/es.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-31 20:53-0400\n" +"POT-Creation-Date: 2023-06-01 01:49-0400\n" "PO-Revision-Date: 2018-01-03 02:03-0600\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish\n" @@ -86,7 +86,7 @@ msgstr "Paquetes disponibles" msgid "Packages Installed" msgstr "Paquetes instalados" -#: src/Common/LinuxKernel.vala:784 src/lib/TeeJee.FileSystem.vala:118 +#: src/Common/LinuxKernel.vala:784 src/lib/TeeJee.FileSystem.vala:103 msgid "File not found" msgstr "No se encontró el archivo" @@ -199,22 +199,22 @@ msgstr "No se encontró ninguna actualización" msgid "Install Kernel Version %s ? (y/n): " msgstr "Instalar la versión del kernel %s? (s/n): " -#: src/Common/Main.vala:346 +#: src/Common/Main.vala:345 msgid "Called from" msgstr "Llamado desde" -#: src/Common/Main.vala:346 +#: src/Common/Main.vala:345 msgid "at logon" msgstr "al inicio" -#: src/Common/Main.vala:347 +#: src/Common/Main.vala:346 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" "Este archivo se sobrescribe y se ejecuta de nuevo cada vez que se guarda la " "configuración en" -#: src/Common/Main.vala:379 +#: src/Common/Main.vala:378 msgid "Notifications are disabled" msgstr "Las notificaciones están deshabilitadas" diff --git a/po/fr.po b/po/fr.po index 5f4b3ec4..eef0bd5f 100644 --- a/po/fr.po +++ b/po/fr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-31 20:53-0400\n" +"POT-Creation-Date: 2023-06-01 01:49-0400\n" "PO-Revision-Date: 2018-08-05 15:50+0200\n" "Last-Translator: Yolateng0 \n" "Language-Team: French\n" @@ -86,7 +86,7 @@ msgstr "Paquets Disponibles" msgid "Packages Installed" msgstr "Paquets Installés" -#: src/Common/LinuxKernel.vala:784 src/lib/TeeJee.FileSystem.vala:118 +#: src/Common/LinuxKernel.vala:784 src/lib/TeeJee.FileSystem.vala:103 msgid "File not found" msgstr "Fichier non trouvé" @@ -199,22 +199,22 @@ msgstr "Aucune mise à jour disponible" msgid "Install Kernel Version %s ? (y/n): " msgstr "Installer le noyau en version %s ? (y/n): " -#: src/Common/Main.vala:346 +#: src/Common/Main.vala:345 msgid "Called from" msgstr "Appelé à partir de" -#: src/Common/Main.vala:346 +#: src/Common/Main.vala:345 msgid "at logon" msgstr "au démarrage" -#: src/Common/Main.vala:347 +#: src/Common/Main.vala:346 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" "Ce fichier est écrasé et exécuté à nouveau chaque fois que les paramètres " "sont enregistrés dans" -#: src/Common/Main.vala:379 +#: src/Common/Main.vala:378 msgid "Notifications are disabled" msgstr "Les notifications sont désactivées" diff --git a/po/hr.po b/po/hr.po index 9b904e49..5419b78e 100644 --- a/po/hr.po +++ b/po/hr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-31 20:53-0400\n" +"POT-Creation-Date: 2023-06-01 01:49-0400\n" "PO-Revision-Date: 2022-09-22 12:13+0200\n" "Last-Translator: gogo \n" "Language-Team: Croatian\n" @@ -86,7 +86,7 @@ msgstr "Dostupni Paketi" msgid "Packages Installed" msgstr "Instalirani paketi" -#: src/Common/LinuxKernel.vala:784 src/lib/TeeJee.FileSystem.vala:118 +#: src/Common/LinuxKernel.vala:784 src/lib/TeeJee.FileSystem.vala:103 msgid "File not found" msgstr "Datoteka nije pronađena" @@ -199,21 +199,21 @@ msgstr "Nema pronađenih nadopuna" msgid "Install Kernel Version %s ? (y/n): " msgstr "Instaliraj kernel inačice %s ? (d/n): " -#: src/Common/Main.vala:346 +#: src/Common/Main.vala:345 msgid "Called from" msgstr "Pozvano od" -#: src/Common/Main.vala:346 +#: src/Common/Main.vala:345 msgid "at logon" msgstr "indításkor" -#: src/Common/Main.vala:347 +#: src/Common/Main.vala:346 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" "Ova se datoteka prepisuje i ponovno izvršava kad god se postavke spremaju u" -#: src/Common/Main.vala:379 +#: src/Common/Main.vala:378 msgid "Notifications are disabled" msgstr "Obavijesti su onemogućene" diff --git a/po/it.po b/po/it.po index 58781eea..31ae6952 100644 --- a/po/it.po +++ b/po/it.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-31 20:53-0400\n" +"POT-Creation-Date: 2023-06-01 01:49-0400\n" "PO-Revision-Date: 2020-08-22 15:35+0100\n" "Last-Translator: Demetrio Mendozzi\n" "Language-Team: Italian\n" @@ -84,7 +84,7 @@ msgstr "Pacchetti disponibili" msgid "Packages Installed" msgstr "Pacchetti installati" -#: src/Common/LinuxKernel.vala:784 src/lib/TeeJee.FileSystem.vala:118 +#: src/Common/LinuxKernel.vala:784 src/lib/TeeJee.FileSystem.vala:103 msgid "File not found" msgstr "File non trovato" @@ -197,22 +197,22 @@ msgstr "Nessun aggiornamento trovato" msgid "Install Kernel Version %s ? (y/n): " msgstr "Installare la versione del kernel %s ? (y/n): " -#: src/Common/Main.vala:346 +#: src/Common/Main.vala:345 msgid "Called from" msgstr "Chiamato da" -#: src/Common/Main.vala:346 +#: src/Common/Main.vala:345 msgid "at logon" msgstr "all'avvio" -#: src/Common/Main.vala:347 +#: src/Common/Main.vala:346 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" "Questo file viene sovrascritto ed eseguito nuovamente ogni volta che vengono " "salvate le impostazioni" -#: src/Common/Main.vala:379 +#: src/Common/Main.vala:378 msgid "Notifications are disabled" msgstr "Le notifiche sono disabilitate" diff --git a/po/ko.po b/po/ko.po index 7bcae9d9..d1c0b2df 100644 --- a/po/ko.po +++ b/po/ko.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-31 20:53-0400\n" +"POT-Creation-Date: 2023-06-01 01:49-0400\n" "PO-Revision-Date: 2022-09-28 11:48+0900\n" "Last-Translator: Kevin Kim \n" "Language-Team: Korean\n" @@ -86,7 +86,7 @@ msgstr "설치 가능한 패키지" msgid "Packages Installed" msgstr "설치된 패키지" -#: src/Common/LinuxKernel.vala:784 src/lib/TeeJee.FileSystem.vala:118 +#: src/Common/LinuxKernel.vala:784 src/lib/TeeJee.FileSystem.vala:103 msgid "File not found" msgstr "파일을 찾을 수 없습니다" @@ -199,20 +199,20 @@ msgstr "업데이트를 찾을 수 없습니다" msgid "Install Kernel Version %s ? (y/n): " msgstr "커널 %s 버전을 설치하시겠습니까? (y/n): " -#: src/Common/Main.vala:346 +#: src/Common/Main.vala:345 msgid "Called from" msgstr "에서 호출" -#: src/Common/Main.vala:346 +#: src/Common/Main.vala:345 msgid "at logon" msgstr "로그온 시" -#: src/Common/Main.vala:347 +#: src/Common/Main.vala:346 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "이 파일은 덮어쓰고 설정이 저장될 때마다 다시 실행됩니다." -#: src/Common/Main.vala:379 +#: src/Common/Main.vala:378 msgid "Notifications are disabled" msgstr "알림이 비활성화 되었습니다" diff --git a/po/messages.pot b/po/messages.pot index d071340d..163c3800 100644 --- a/po/messages.pot +++ b/po/messages.pot @@ -6,9 +6,9 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: mainline 1.3.5\n" +"Project-Id-Version: mainline 1.3.6\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-31 20:53-0400\n" +"POT-Creation-Date: 2023-06-01 01:49-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -90,7 +90,7 @@ msgstr "" msgid "Packages Installed" msgstr "" -#: src/Common/LinuxKernel.vala:784 src/lib/TeeJee.FileSystem.vala:118 +#: src/Common/LinuxKernel.vala:784 src/lib/TeeJee.FileSystem.vala:103 msgid "File not found" msgstr "" @@ -196,20 +196,20 @@ msgstr "" msgid "Install Kernel Version %s ? (y/n): " msgstr "" -#: src/Common/Main.vala:346 +#: src/Common/Main.vala:345 msgid "Called from" msgstr "" -#: src/Common/Main.vala:346 +#: src/Common/Main.vala:345 msgid "at logon" msgstr "" -#: src/Common/Main.vala:347 +#: src/Common/Main.vala:346 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" -#: src/Common/Main.vala:379 +#: src/Common/Main.vala:378 msgid "Notifications are disabled" msgstr "" diff --git a/po/nl.po b/po/nl.po index 330a3cc6..ed95208a 100644 --- a/po/nl.po +++ b/po/nl.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-31 20:53-0400\n" +"POT-Creation-Date: 2023-06-01 01:49-0400\n" "PO-Revision-Date: 2020-08-23 13:55+0200\n" "Last-Translator: Heimen Stoffels \n" "Language-Team: Dutch (Netherlands)\n" @@ -86,7 +86,7 @@ msgstr "Beschikbare pakketten" msgid "Packages Installed" msgstr "Geïnstalleerde pakketten" -#: src/Common/LinuxKernel.vala:784 src/lib/TeeJee.FileSystem.vala:118 +#: src/Common/LinuxKernel.vala:784 src/lib/TeeJee.FileSystem.vala:103 msgid "File not found" msgstr "Het bestand is niet gevonden" @@ -199,22 +199,22 @@ msgstr "Geen updates gevonden" msgid "Install Kernel Version %s ? (y/n): " msgstr "Wilt u versie %s installeren? (j/n): " -#: src/Common/Main.vala:346 +#: src/Common/Main.vala:345 msgid "Called from" msgstr "Aangeroepen door" -#: src/Common/Main.vala:346 +#: src/Common/Main.vala:345 msgid "at logon" msgstr "bij het opstarten" -#: src/Common/Main.vala:347 +#: src/Common/Main.vala:346 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" "Dit bestand wordt overschreven en opnieuw uitgevoerd wanneer instellingen " "worden opgeslagen in" -#: src/Common/Main.vala:379 +#: src/Common/Main.vala:378 msgid "Notifications are disabled" msgstr "Meldingen zijn uitgeschakeld" diff --git a/po/pl.po b/po/pl.po index 4c0d1c63..23cfdab7 100644 --- a/po/pl.po +++ b/po/pl.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-31 20:53-0400\n" +"POT-Creation-Date: 2023-06-01 01:49-0400\n" "PO-Revision-Date: 2023-05-25 13:37+0200\n" "Last-Translator: Matthaiks\n" "Language-Team: Polish\n" @@ -85,7 +85,7 @@ msgstr "Dostępne pakiety" msgid "Packages Installed" msgstr "Pakiety zainstalowane" -#: src/Common/LinuxKernel.vala:784 src/lib/TeeJee.FileSystem.vala:118 +#: src/Common/LinuxKernel.vala:784 src/lib/TeeJee.FileSystem.vala:103 msgid "File not found" msgstr "Nie odnaleziono pliku" @@ -198,22 +198,22 @@ msgstr "Nie znaleziono aktualizacji" msgid "Install Kernel Version %s ? (y/n): " msgstr "Zainstalować wersję jądra %s? (t/n): " -#: src/Common/Main.vala:346 +#: src/Common/Main.vala:345 msgid "Called from" msgstr "Wywołano z" -#: src/Common/Main.vala:346 +#: src/Common/Main.vala:345 msgid "at logon" msgstr "przy logowaniu" -#: src/Common/Main.vala:347 +#: src/Common/Main.vala:346 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" "Ten plik jest nadpisywany i wykonywany ponownie za każdym razem, gdy " "ustawienia są zapisywane w" -#: src/Common/Main.vala:379 +#: src/Common/Main.vala:378 msgid "Notifications are disabled" msgstr "Powiadomienia są wyłączone" diff --git a/po/ru.po b/po/ru.po index 608bf1ec..fa299ff0 100644 --- a/po/ru.po +++ b/po/ru.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-31 20:53-0400\n" +"POT-Creation-Date: 2023-06-01 01:49-0400\n" "PO-Revision-Date: 2023-04-17 20:16+0300\n" "Last-Translator: Danik2343 \n" "Language-Team: Russian\n" @@ -86,7 +86,7 @@ msgstr "Доступные пакеты" msgid "Packages Installed" msgstr "Установленные пакеты" -#: src/Common/LinuxKernel.vala:784 src/lib/TeeJee.FileSystem.vala:118 +#: src/Common/LinuxKernel.vala:784 src/lib/TeeJee.FileSystem.vala:103 msgid "File not found" msgstr "Файл не найден" @@ -199,21 +199,21 @@ msgstr "Обновлений не найдено" msgid "Install Kernel Version %s ? (y/n): " msgstr "Установить версию ядра %s ? (y/n): " -#: src/Common/Main.vala:346 +#: src/Common/Main.vala:345 msgid "Called from" msgstr "Вызван из" -#: src/Common/Main.vala:346 +#: src/Common/Main.vala:345 msgid "at logon" msgstr "при запуске" -#: src/Common/Main.vala:347 +#: src/Common/Main.vala:346 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" "Этот файл перезаписывается и выполняется снова при сохранении настроек в" -#: src/Common/Main.vala:379 +#: src/Common/Main.vala:378 msgid "Notifications are disabled" msgstr "Уведомления отключены" diff --git a/po/sv.po b/po/sv.po index 9880da7e..eb8cb6a4 100644 --- a/po/sv.po +++ b/po/sv.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-31 20:53-0400\n" +"POT-Creation-Date: 2023-06-01 01:49-0400\n" "PO-Revision-Date: 2018-01-13 16:56+0100\n" "Last-Translator: Åke Engelbrektson \n" "Language-Team:Swedish\n" @@ -86,7 +86,7 @@ msgstr "Tillgängliga paket" msgid "Packages Installed" msgstr "Installerade paket" -#: src/Common/LinuxKernel.vala:784 src/lib/TeeJee.FileSystem.vala:118 +#: src/Common/LinuxKernel.vala:784 src/lib/TeeJee.FileSystem.vala:103 msgid "File not found" msgstr "Filen kan inte hittas" @@ -199,20 +199,20 @@ msgstr "Inga uppdateringar hittades" msgid "Install Kernel Version %s ? (y/n): " msgstr "Installera kärnversion %s ? (j/n):" -#: src/Common/Main.vala:346 +#: src/Common/Main.vala:345 msgid "Called from" msgstr "Ringde från" -#: src/Common/Main.vala:346 +#: src/Common/Main.vala:345 msgid "at logon" msgstr "vid start" -#: src/Common/Main.vala:347 +#: src/Common/Main.vala:346 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "Den här filen skrivs över och körs igen när inställningar sparas i" -#: src/Common/Main.vala:379 +#: src/Common/Main.vala:378 msgid "Notifications are disabled" msgstr "Meddelanden är inaktiverade" diff --git a/po/tr.po b/po/tr.po index 0641b918..658eed85 100644 --- a/po/tr.po +++ b/po/tr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-31 20:53-0400\n" +"POT-Creation-Date: 2023-06-01 01:49-0400\n" "PO-Revision-Date: 2022-08-06 16:48+0300\n" "Last-Translator: Sabri Ünal \n" "Language-Team: Turkish\n" @@ -86,7 +86,7 @@ msgstr "Mevcut Paketler" msgid "Packages Installed" msgstr "Kurulu Paketler" -#: src/Common/LinuxKernel.vala:784 src/lib/TeeJee.FileSystem.vala:118 +#: src/Common/LinuxKernel.vala:784 src/lib/TeeJee.FileSystem.vala:103 msgid "File not found" msgstr "Dosya bulunamadı" @@ -200,21 +200,21 @@ msgstr "Güncelleme bulunamadı" msgid "Install Kernel Version %s ? (y/n): " msgstr "Linux Çekirdek Sürümü %s Kurulsun mu? (e/h): " -#: src/Common/Main.vala:346 +#: src/Common/Main.vala:345 msgid "Called from" msgstr "Çağrı konumu" -#: src/Common/Main.vala:346 +#: src/Common/Main.vala:345 msgid "at logon" msgstr "başlangıçta" -#: src/Common/Main.vala:347 +#: src/Common/Main.vala:346 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" "Bu dosyanın üzerine yazılır ve ayarlar her kaydedildiğinde yeniden yürütülür" -#: src/Common/Main.vala:379 +#: src/Common/Main.vala:378 msgid "Notifications are disabled" msgstr "Bildirimler devre dışı bırakılmış" diff --git a/po/uk.po b/po/uk.po index 44b0b50f..c13a4e2d 100644 --- a/po/uk.po +++ b/po/uk.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-31 20:53-0400\n" +"POT-Creation-Date: 2023-06-01 01:49-0400\n" "PO-Revision-Date: 2019-07-25 11:00+0300\n" "Last-Translator: Serhii Golovko \n" "Language-Team: Ukranian\n" @@ -86,7 +86,7 @@ msgstr "Доступні пакети" msgid "Packages Installed" msgstr "Встановлені пакети" -#: src/Common/LinuxKernel.vala:784 src/lib/TeeJee.FileSystem.vala:118 +#: src/Common/LinuxKernel.vala:784 src/lib/TeeJee.FileSystem.vala:103 msgid "File not found" msgstr "Файл не знайдено" @@ -200,21 +200,21 @@ msgstr "Оновлень не знайдено" msgid "Install Kernel Version %s ? (y/n): " msgstr "Встановити Ядро Версії %s ? (так/ні): " -#: src/Common/Main.vala:346 +#: src/Common/Main.vala:345 msgid "Called from" msgstr "Викликано з" -#: src/Common/Main.vala:346 +#: src/Common/Main.vala:345 msgid "at logon" msgstr "при запуску" -#: src/Common/Main.vala:347 +#: src/Common/Main.vala:346 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" "Цей файл перезаписується та виконується знову під час збереження налаштувань" -#: src/Common/Main.vala:379 +#: src/Common/Main.vala:378 msgid "Notifications are disabled" msgstr "Повідомлення вимкнено" diff --git a/src/Common/LinuxKernel.vala b/src/Common/LinuxKernel.vala index 5a7f296a..8c3e9a91 100644 --- a/src/Common/LinuxKernel.vala +++ b/src/Common/LinuxKernel.vala @@ -173,7 +173,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { public static void delete_cache() { vprint("delete_cache()",2); kernel_list.clear(); - dir_delete(CACHE_DIR); + delete_r(CACHE_DIR); } // constructor @@ -809,7 +809,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { // delete the cached index and status, return false if (ppa_datetime>d_max) { vprint(version_main+": ppa:"+ppa_datetime.to_string()+" > cache:"+d_max.to_string()+" : needs update"); - dir_delete(cache_subdir); + delete_r(cache_subdir); return false; } @@ -1013,7 +1013,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { string cmd = "pkexec env DISPLAY=${DISPLAY} XAUTHORITY=${XAUTHORITY} dpkg --install " + flist; vprint(cmd,2); int r = Posix.system(cmd); - foreach (var f in flist.split(" ")) file_delete(f); + foreach (var f in flist.split(" ")) delete_r(f); return r; } diff --git a/src/Common/Main.vala b/src/Common/Main.vala index 8a80717a..b2972fdc 100644 --- a/src/Common/Main.vala +++ b/src/Common/Main.vala @@ -167,7 +167,6 @@ public class Main : GLib.Object { } public bool set_verbose(string? s) { - vprint(s.to_string()); string a = (s==null) ? "" : s.strip(); int v = VERBOSE; bool r=true; @@ -338,7 +337,7 @@ public class Main : GLib.Object { break; } - file_delete(STARTUP_SCRIPT_FILE); + delete_r(STARTUP_SCRIPT_FILE); // TODO, ID file should not assume single DISPLAY // ID and SEEN should probably be in /var/run ? @@ -408,7 +407,7 @@ public class Main : GLib.Object { ; file_write(STARTUP_DESKTOP_FILE,s); } else { - file_delete(STARTUP_DESKTOP_FILE); + delete_r(STARTUP_DESKTOP_FILE); } } diff --git a/src/Common/Package.vala b/src/Common/Package.vala index cb5d7fa3..dbb45831 100644 --- a/src/Common/Package.vala +++ b/src/Common/Package.vala @@ -61,6 +61,6 @@ public class Package : GLib.Object { catch (Error e) { vprint(e.message,1,stderr); } - dir_delete(t_dir); + delete_r(t_dir); } } diff --git a/src/Gtk/MainWindow.vala b/src/Gtk/MainWindow.vala index 48fbc3fc..0bbc75e9 100644 --- a/src/Gtk/MainWindow.vala +++ b/src/Gtk/MainWindow.vala @@ -150,7 +150,7 @@ public class MainWindow : Window { tm.get_iter_from_string(out iter, path); LinuxKernel k; tm.get(iter, COL.KERN, out k, -1); - if (toggle.active) file_delete(k.locked_file); + if (toggle.active) delete_r(k.locked_file); else file_write(k.locked_file, ""); tm.set(iter, COL.LOCKED, k.is_locked); }); @@ -188,7 +188,7 @@ public class MainWindow : Window { var t_new = data.strip(); if (t_old != t_new) { k.notes = t_new; - if (t_new=="") file_delete(k.notes_file); + if (t_new=="") delete_r(k.notes_file); else file_write(k.notes_file, t_new); tm.set(i, COL.NOTES, t_new, -1); } @@ -561,7 +561,7 @@ public class MainWindow : Window { term.destroy.connect(()=>{ this.present(); - dir_delete(t_dir); + delete_r(t_dir); update_cache(); }); @@ -596,7 +596,7 @@ public class MainWindow : Window { term.destroy.connect(() => { this.present(); - dir_delete(t_dir); + delete_r(t_dir); update_cache(); }); @@ -634,7 +634,7 @@ public class MainWindow : Window { term.destroy.connect(()=>{ this.present(); - dir_delete(t_dir); + delete_r(t_dir); update_cache(); }); diff --git a/src/lib/AsyncTask.vala b/src/lib/AsyncTask.vala index 2339c3cc..c52d7b0f 100644 --- a/src/lib/AsyncTask.vala +++ b/src/lib/AsyncTask.vala @@ -267,7 +267,7 @@ public abstract class AsyncTask : GLib.Object { finish_task(); - dir_delete(working_dir); + delete_r(working_dir); if ((status != AppStatus.CANCELLED) && (status != AppStatus.PASSWORD_REQUIRED)) status = AppStatus.FINISHED; diff --git a/src/lib/TeeJee.FileSystem.vala b/src/lib/TeeJee.FileSystem.vala index 91153947..8691787b 100644 --- a/src/lib/TeeJee.FileSystem.vala +++ b/src/lib/TeeJee.FileSystem.vala @@ -44,28 +44,13 @@ namespace TeeJee.FileSystem { && !FileUtils.test(file_path, GLib.FileTest.IS_DIR)); } - public bool file_delete(string file_path) { - vprint("file_delete("+file_path+")",3); - - if(!file_exists(file_path)) return true; - - try { - var file = File.new_for_path (file_path); - if (file.query_exists()) file.delete(); - return true; - } catch (Error e) { - vprint(e.message,1,stderr); - return false; - } - } - public string? file_read (string file_path) { vprint("file_read("+file_path+")",3); string txt = ""; size_t size; - try { GLib.FileUtils.get_contents (file_path, out txt, out size); } + try { GLib.FileUtils.get_contents(file_path, out txt, out size); } catch (Error e) { vprint(e.message,1,stderr); } return txt; @@ -79,11 +64,11 @@ namespace TeeJee.FileSystem { string d = file_parent(f); dir_create(d); - var file = File.new_for_path (f); - if (file.query_exists ()) file.delete (); + var file = File.new_for_path(f); + if (file.query_exists()) file.delete (); - var file_stream = file.create (FileCreateFlags.REPLACE_DESTINATION); - var data_stream = new DataOutputStream (file_stream); + var file_stream = file.create(FileCreateFlags.REPLACE_DESTINATION); + var data_stream = new DataOutputStream(file_stream); data_stream.put_string (contents); data_stream.close(); @@ -99,9 +84,9 @@ namespace TeeJee.FileSystem { vprint("file_copy('"+src_file+"','"+dest_file+"')",3); try { - var file_src = File.new_for_path (src_file); + var file_src = File.new_for_path(src_file); if (file_src.query_exists()) { - var file_dest = File.new_for_path (dest_file); + var file_dest = File.new_for_path(dest_file); file_src.copy(file_dest,FileCopyFlags.OVERWRITE,null,null); return true; } @@ -121,10 +106,9 @@ namespace TeeJee.FileSystem { dir_create(file_parent(dest_file)); - if (file_exists(dest_file)) file_delete(dest_file); - - var file_src = File.new_for_path (src_file); - var file_dest = File.new_for_path (dest_file); + var file_src = File.new_for_path(src_file); + var file_dest = File.new_for_path(dest_file); + if (file_exists(dest_file)) file_dest.delete(); file_src.move(file_dest,FileCopyFlags.OVERWRITE,null,null); } @@ -133,7 +117,7 @@ namespace TeeJee.FileSystem { public int64 file_get_size(string file_path) { try { - File file = File.parse_name (file_path); + File file = File.parse_name(file_path); if (FileUtils.test(file_path, GLib.FileTest.EXISTS)) { if (FileUtils.test(file_path, GLib.FileTest.IS_REGULAR) && !FileUtils.test(file_path, GLib.FileTest.IS_SYMLINK)) { @@ -148,10 +132,6 @@ namespace TeeJee.FileSystem { return -1; } - public bool dir_exists (string dir_path) { - return ( FileUtils.test(dir_path, GLib.FileTest.EXISTS) && FileUtils.test(dir_path, GLib.FileTest.IS_DIR)); - } - public bool dir_create (string d) { vprint("dir_create("+d+")",3); try { @@ -164,27 +144,4 @@ namespace TeeJee.FileSystem { } } - // TODO no longer TG's so move out of TeeJee - public bool dir_delete (string dir_path) { - vprint("dir_delete("+dir_path+")",3); - if (!dir_exists(dir_path)) return true; - File d = File.new_for_path(dir_path); - try { _dir_delete(d); } - catch (Error e) { print ("Error: %s\n", e.message); } - return !dir_exists(dir_path); - } - - private void _dir_delete (File p) throws Error { - vprint("_dir_delete("+p.get_path()+")",4); - FileEnumerator en = p.enumerate_children ("standard::*",FileQueryInfoFlags.NOFOLLOW_SYMLINKS,null); - FileInfo i = null; - while (((i = en.next_file (null)) != null)) { - vprint(i.get_name(),5); - File n = p.resolve_relative_path (i.get_name()); - if (i.get_file_type() == FileType.DIRECTORY) _dir_delete(n); - else n.delete(); - } - p.delete(); - } - } diff --git a/src/lib/l.misc.vala b/src/lib/l.misc.vala index a069e6e8..cb526028 100644 --- a/src/lib/l.misc.vala +++ b/src/lib/l.misc.vala @@ -125,4 +125,22 @@ namespace l.misc { public void sleep(int milliseconds) { Thread.usleep ((ulong) milliseconds * 1000); } + + public bool delete_r(string dir_path) { + vprint("delete_r("+dir_path+")",3); + File p = File.new_for_path(dir_path); + if (!p.query_exists()) return true; + if (p.query_file_type(FileQueryInfoFlags.NOFOLLOW_SYMLINKS) == FileType.DIRECTORY) try { + FileEnumerator en = p.enumerate_children ("standard::*",FileQueryInfoFlags.NOFOLLOW_SYMLINKS,null); + FileInfo i; File n; string s; + while (((i = en.next_file(null)) != null)) { + n = p.resolve_relative_path(i.get_name()); + s = n.get_path(); + if (i.get_file_type() == FileType.DIRECTORY) delete_r(s); + else n.delete(); + } + } catch (Error e) { print ("Error: %s\n", e.message); } + try { p.delete(); } catch (Error e) { print ("Error: %s\n", e.message); } + return !p.query_exists(); + } } From 96ffb62705f7e4ce3f9110d57e03cce82eadfdeb Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Thu, 1 Jun 2023 02:51:54 -0400 Subject: [PATCH 345/567] keep cache automatically timmed --- po/de.po | 72 ++++++++++++++++++------------------- po/el.po | 72 ++++++++++++++++++------------------- po/es.po | 72 ++++++++++++++++++------------------- po/fr.po | 72 ++++++++++++++++++------------------- po/hr.po | 72 ++++++++++++++++++------------------- po/it.po | 72 ++++++++++++++++++------------------- po/ko.po | 72 ++++++++++++++++++------------------- po/messages.pot | 72 ++++++++++++++++++------------------- po/nl.po | 72 ++++++++++++++++++------------------- po/pl.po | 72 ++++++++++++++++++------------------- po/ru.po | 72 ++++++++++++++++++------------------- po/sv.po | 72 ++++++++++++++++++------------------- po/tr.po | 72 ++++++++++++++++++------------------- po/uk.po | 72 ++++++++++++++++++------------------- src/Common/LinuxKernel.vala | 15 ++++---- src/Gtk/MainWindow.vala | 14 -------- 16 files changed, 513 insertions(+), 524 deletions(-) diff --git a/po/de.po b/po/de.po index a46561a8..1d06be5d 100644 --- a/po/de.po +++ b/po/de.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-01 01:49-0400\n" +"POT-Creation-Date: 2023-06-01 02:19-0400\n" "PO-Revision-Date: 2023-02-20 18:40+0100\n" "Last-Translator: Marvin Meysel \n" "Language-Team: German\n" @@ -53,148 +53,148 @@ msgstr "OK" msgid "FAILED" msgstr "MISSLUNGEN" -#: src/Common/LinuxKernel.vala:390 +#: src/Common/LinuxKernel.vala:393 msgid "Found installed" msgstr "Installiert gefunden" -#: src/Common/LinuxKernel.vala:391 +#: src/Common/LinuxKernel.vala:394 msgid "locked" msgstr "" -#: src/Common/LinuxKernel.vala:473 src/Common/LinuxKernel.vala:996 -#: src/Common/LinuxKernel.vala:1086 +#: src/Common/LinuxKernel.vala:476 src/Common/LinuxKernel.vala:999 +#: src/Common/LinuxKernel.vala:1089 msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:666 src/Gtk/MainWindow.vala:517 +#: src/Common/LinuxKernel.vala:669 src/Gtk/MainWindow.vala:517 msgid "Running" msgstr "Läuft" -#: src/Common/LinuxKernel.vala:667 +#: src/Common/LinuxKernel.vala:670 msgid "Installed" msgstr "Installiert" -#: src/Common/LinuxKernel.vala:668 +#: src/Common/LinuxKernel.vala:671 msgid "Invalid" msgstr "Ungültig" -#: src/Common/LinuxKernel.vala:753 +#: src/Common/LinuxKernel.vala:756 msgid "Packages Available" msgstr "Verfügbare Pakete" -#: src/Common/LinuxKernel.vala:759 +#: src/Common/LinuxKernel.vala:762 msgid "Packages Installed" msgstr "Installierte Pakete" -#: src/Common/LinuxKernel.vala:784 src/lib/TeeJee.FileSystem.vala:103 +#: src/Common/LinuxKernel.vala:787 src/lib/TeeJee.FileSystem.vala:103 msgid "File not found" msgstr "Datei nicht gefunden " -#: src/Common/LinuxKernel.vala:878 +#: src/Common/LinuxKernel.vala:881 msgid "Available Kernels" msgstr "Verfügbare Kernel" -#: src/Common/LinuxKernel.vala:913 src/Gtk/MainWindow.vala:119 +#: src/Common/LinuxKernel.vala:916 src/Gtk/MainWindow.vala:119 msgid "Kernel" msgstr "Kernel" -#: src/Common/LinuxKernel.vala:913 +#: src/Common/LinuxKernel.vala:916 #, fuzzy msgid "not found" msgstr "Datei nicht gefunden " -#: src/Common/LinuxKernel.vala:920 +#: src/Common/LinuxKernel.vala:923 #, fuzzy msgid "Download: no downloadable kernels specified" msgstr "Befehl nicht angegeben" -#: src/Common/LinuxKernel.vala:940 +#: src/Common/LinuxKernel.vala:943 msgid "enabled" msgstr "ermöglichte" -#: src/Common/LinuxKernel.vala:964 +#: src/Common/LinuxKernel.vala:967 msgid "Downloading" msgstr "Laden" -#: src/Common/LinuxKernel.vala:982 +#: src/Common/LinuxKernel.vala:985 #, fuzzy msgid "Installing selected kernels" msgstr "Deinstallation des angegebenen Kernels" -#: src/Common/LinuxKernel.vala:988 src/Common/LinuxKernel.vala:1026 +#: src/Common/LinuxKernel.vala:991 src/Common/LinuxKernel.vala:1029 #, fuzzy msgid "Requested" msgstr "angefordert" -#: src/Common/LinuxKernel.vala:991 +#: src/Common/LinuxKernel.vala:994 msgid "is already installed." msgstr "ist bereits installiert." -#: src/Common/LinuxKernel.vala:1001 +#: src/Common/LinuxKernel.vala:1004 msgid "download failed." msgstr "" -#: src/Common/LinuxKernel.vala:1009 +#: src/Common/LinuxKernel.vala:1012 #, fuzzy msgid "Install: no installable kernels secified" msgstr "Befehl nicht angegeben" -#: src/Common/LinuxKernel.vala:1022 +#: src/Common/LinuxKernel.vala:1025 msgid "Uninstalling selected kernels" msgstr "Deinstallation des angegebenen Kernels" -#: src/Common/LinuxKernel.vala:1029 +#: src/Common/LinuxKernel.vala:1032 #, fuzzy msgid "Not uninstalling the currently running kernel" msgstr "Den aktuell laufenden Kernel wird nicht deinstalliert" -#: src/Common/LinuxKernel.vala:1034 +#: src/Common/LinuxKernel.vala:1037 msgid "is locked" msgstr "" -#: src/Common/LinuxKernel.vala:1042 +#: src/Common/LinuxKernel.vala:1045 msgid "found" msgstr "gründen" -#: src/Common/LinuxKernel.vala:1046 +#: src/Common/LinuxKernel.vala:1049 msgid "Uninstall: no uninstallable packages found" msgstr "" -#: src/Common/LinuxKernel.vala:1082 +#: src/Common/LinuxKernel.vala:1085 #, fuzzy msgid "is the highest installed version." msgstr "Deinstallieren Sie alle bis auf die höchste installierte Version" -#: src/Common/LinuxKernel.vala:1095 +#: src/Common/LinuxKernel.vala:1098 msgid "Could not find running kernel in list" msgstr "Konnte keinen laufenden Kernel in der Liste finden" -#: src/Common/LinuxKernel.vala:1100 +#: src/Common/LinuxKernel.vala:1103 msgid "Could not find any kernels to uninstall" msgstr "Es konnten keine Kernel zum Deinstallieren gefunden werden" -#: src/Common/LinuxKernel.vala:1108 +#: src/Common/LinuxKernel.vala:1111 msgid "The following kernels will be uninstalled" msgstr "Die folgenden Kernel werden deinstalliert" -#: src/Common/LinuxKernel.vala:1112 +#: src/Common/LinuxKernel.vala:1115 msgid "Continue ?" msgstr "Weiter ?" -#: src/Common/LinuxKernel.vala:1134 src/Console/AppConsole.vala:215 +#: src/Common/LinuxKernel.vala:1137 src/Console/AppConsole.vala:215 msgid "Latest update" msgstr "Neustes Update" -#: src/Common/LinuxKernel.vala:1145 src/Console/AppConsole.vala:222 +#: src/Common/LinuxKernel.vala:1148 src/Console/AppConsole.vala:222 msgid "Latest point update" msgstr "Letzte Punktaktualisierung" -#: src/Common/LinuxKernel.vala:1153 src/Console/AppConsole.vala:227 +#: src/Common/LinuxKernel.vala:1156 src/Console/AppConsole.vala:227 #: src/Console/AppConsole.vala:242 msgid "No updates found" msgstr "Keine Updates gefunden" -#: src/Common/LinuxKernel.vala:1162 +#: src/Common/LinuxKernel.vala:1165 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Kernel-Version %s installieren? (j/n):" diff --git a/po/el.po b/po/el.po index d2ad79cf..5453966e 100644 --- a/po/el.po +++ b/po/el.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-01 01:49-0400\n" +"POT-Creation-Date: 2023-06-01 02:19-0400\n" "PO-Revision-Date: 2023-01-10 02:03-0600\n" "Last-Translator: Vasilis Kosmidis \n" "Language-Team: Greek\n" @@ -53,148 +53,148 @@ msgstr "ΟΚ" msgid "FAILED" msgstr "ΑΠΈΤΥΧΕ" -#: src/Common/LinuxKernel.vala:390 +#: src/Common/LinuxKernel.vala:393 msgid "Found installed" msgstr "Βρέθηκε εγκατεστημένο" -#: src/Common/LinuxKernel.vala:391 +#: src/Common/LinuxKernel.vala:394 msgid "locked" msgstr "" -#: src/Common/LinuxKernel.vala:473 src/Common/LinuxKernel.vala:996 -#: src/Common/LinuxKernel.vala:1086 +#: src/Common/LinuxKernel.vala:476 src/Common/LinuxKernel.vala:999 +#: src/Common/LinuxKernel.vala:1089 msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:666 src/Gtk/MainWindow.vala:517 +#: src/Common/LinuxKernel.vala:669 src/Gtk/MainWindow.vala:517 msgid "Running" msgstr "Ενεργός" -#: src/Common/LinuxKernel.vala:667 +#: src/Common/LinuxKernel.vala:670 msgid "Installed" msgstr "Εγκατεστημένος" -#: src/Common/LinuxKernel.vala:668 +#: src/Common/LinuxKernel.vala:671 msgid "Invalid" msgstr "Άκυρος" -#: src/Common/LinuxKernel.vala:753 +#: src/Common/LinuxKernel.vala:756 msgid "Packages Available" msgstr "Διαθέσιμα πακέτα" -#: src/Common/LinuxKernel.vala:759 +#: src/Common/LinuxKernel.vala:762 msgid "Packages Installed" msgstr "Εγκατεστημένα πακέτα" -#: src/Common/LinuxKernel.vala:784 src/lib/TeeJee.FileSystem.vala:103 +#: src/Common/LinuxKernel.vala:787 src/lib/TeeJee.FileSystem.vala:103 msgid "File not found" msgstr "Το αρχείο δε βρέθηκε" -#: src/Common/LinuxKernel.vala:878 +#: src/Common/LinuxKernel.vala:881 msgid "Available Kernels" msgstr "Διαθέσιμοι πυρήνες" -#: src/Common/LinuxKernel.vala:913 src/Gtk/MainWindow.vala:119 +#: src/Common/LinuxKernel.vala:916 src/Gtk/MainWindow.vala:119 msgid "Kernel" msgstr "Πυρήνας" -#: src/Common/LinuxKernel.vala:913 +#: src/Common/LinuxKernel.vala:916 #, fuzzy msgid "not found" msgstr "Το αρχείο δε βρέθηκε" -#: src/Common/LinuxKernel.vala:920 +#: src/Common/LinuxKernel.vala:923 #, fuzzy msgid "Download: no downloadable kernels specified" msgstr "Η εντολή δεν προσδιορίστηκε" -#: src/Common/LinuxKernel.vala:940 +#: src/Common/LinuxKernel.vala:943 msgid "enabled" msgstr "ενεργοποιημένη" -#: src/Common/LinuxKernel.vala:964 +#: src/Common/LinuxKernel.vala:967 msgid "Downloading" msgstr "Κατέβασμα" -#: src/Common/LinuxKernel.vala:982 +#: src/Common/LinuxKernel.vala:985 #, fuzzy msgid "Installing selected kernels" msgstr "Απεγκατάσταση επιλεγμένων πυρήνων" -#: src/Common/LinuxKernel.vala:988 src/Common/LinuxKernel.vala:1026 +#: src/Common/LinuxKernel.vala:991 src/Common/LinuxKernel.vala:1029 #, fuzzy msgid "Requested" msgstr "ζητήθηκε" -#: src/Common/LinuxKernel.vala:991 +#: src/Common/LinuxKernel.vala:994 msgid "is already installed." msgstr "είναι ήδη εγκατεστημένο." -#: src/Common/LinuxKernel.vala:1001 +#: src/Common/LinuxKernel.vala:1004 msgid "download failed." msgstr "" -#: src/Common/LinuxKernel.vala:1009 +#: src/Common/LinuxKernel.vala:1012 #, fuzzy msgid "Install: no installable kernels secified" msgstr "Η εντολή δεν προσδιορίστηκε" -#: src/Common/LinuxKernel.vala:1022 +#: src/Common/LinuxKernel.vala:1025 msgid "Uninstalling selected kernels" msgstr "Απεγκατάσταση επιλεγμένων πυρήνων" -#: src/Common/LinuxKernel.vala:1029 +#: src/Common/LinuxKernel.vala:1032 #, fuzzy msgid "Not uninstalling the currently running kernel" msgstr "δεν θα απεγκαταστήσει τον πυρήνα που εκτελείται αυτήν τη στιγμή" -#: src/Common/LinuxKernel.vala:1034 +#: src/Common/LinuxKernel.vala:1037 msgid "is locked" msgstr "" -#: src/Common/LinuxKernel.vala:1042 +#: src/Common/LinuxKernel.vala:1045 msgid "found" msgstr "ιδρύω" -#: src/Common/LinuxKernel.vala:1046 +#: src/Common/LinuxKernel.vala:1049 msgid "Uninstall: no uninstallable packages found" msgstr "" -#: src/Common/LinuxKernel.vala:1082 +#: src/Common/LinuxKernel.vala:1085 #, fuzzy msgid "is the highest installed version." msgstr "Απεγκαταστήστε όλες εκτός από την υψηλότερη εγκατεστημένη έκδοση" -#: src/Common/LinuxKernel.vala:1095 +#: src/Common/LinuxKernel.vala:1098 msgid "Could not find running kernel in list" msgstr "Δεν ήταν δυνατή η εύρεση του πυρήνα που εκτελείται αυτήν τη στιγμή" -#: src/Common/LinuxKernel.vala:1100 +#: src/Common/LinuxKernel.vala:1103 msgid "Could not find any kernels to uninstall" msgstr "Δεν βρέθηκε κανένας πυρήνας για απεγκατάσταση" -#: src/Common/LinuxKernel.vala:1108 +#: src/Common/LinuxKernel.vala:1111 msgid "The following kernels will be uninstalled" msgstr "Θα καταργηθεί η εγκατάσταση των ακόλουθων πυρήνων" -#: src/Common/LinuxKernel.vala:1112 +#: src/Common/LinuxKernel.vala:1115 msgid "Continue ?" msgstr "Συνέχεια;" -#: src/Common/LinuxKernel.vala:1134 src/Console/AppConsole.vala:215 +#: src/Common/LinuxKernel.vala:1137 src/Console/AppConsole.vala:215 msgid "Latest update" msgstr "Τελευταία αναβάθμιση" -#: src/Common/LinuxKernel.vala:1145 src/Console/AppConsole.vala:222 +#: src/Common/LinuxKernel.vala:1148 src/Console/AppConsole.vala:222 msgid "Latest point update" msgstr "Τελευταία ενημέρωση συντήρησης" -#: src/Common/LinuxKernel.vala:1153 src/Console/AppConsole.vala:227 +#: src/Common/LinuxKernel.vala:1156 src/Console/AppConsole.vala:227 #: src/Console/AppConsole.vala:242 msgid "No updates found" msgstr "Δεν βρέθηκαν ενημερώσεις" -#: src/Common/LinuxKernel.vala:1162 +#: src/Common/LinuxKernel.vala:1165 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Εγκατάσταση του πυρήνα έκδοσης %s ; (ν/ό):" diff --git a/po/es.po b/po/es.po index ca79d4f5..bf86264e 100644 --- a/po/es.po +++ b/po/es.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-01 01:49-0400\n" +"POT-Creation-Date: 2023-06-01 02:19-0400\n" "PO-Revision-Date: 2018-01-03 02:03-0600\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish\n" @@ -53,148 +53,148 @@ msgstr "Aceptar" msgid "FAILED" msgstr "FRACASADO" -#: src/Common/LinuxKernel.vala:390 +#: src/Common/LinuxKernel.vala:393 msgid "Found installed" msgstr "Encontrado instalado" -#: src/Common/LinuxKernel.vala:391 +#: src/Common/LinuxKernel.vala:394 msgid "locked" msgstr "" -#: src/Common/LinuxKernel.vala:473 src/Common/LinuxKernel.vala:996 -#: src/Common/LinuxKernel.vala:1086 +#: src/Common/LinuxKernel.vala:476 src/Common/LinuxKernel.vala:999 +#: src/Common/LinuxKernel.vala:1089 msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:666 src/Gtk/MainWindow.vala:517 +#: src/Common/LinuxKernel.vala:669 src/Gtk/MainWindow.vala:517 msgid "Running" msgstr "En ejecución" -#: src/Common/LinuxKernel.vala:667 +#: src/Common/LinuxKernel.vala:670 msgid "Installed" msgstr "Instalado" -#: src/Common/LinuxKernel.vala:668 +#: src/Common/LinuxKernel.vala:671 msgid "Invalid" msgstr "No válido" -#: src/Common/LinuxKernel.vala:753 +#: src/Common/LinuxKernel.vala:756 msgid "Packages Available" msgstr "Paquetes disponibles" -#: src/Common/LinuxKernel.vala:759 +#: src/Common/LinuxKernel.vala:762 msgid "Packages Installed" msgstr "Paquetes instalados" -#: src/Common/LinuxKernel.vala:784 src/lib/TeeJee.FileSystem.vala:103 +#: src/Common/LinuxKernel.vala:787 src/lib/TeeJee.FileSystem.vala:103 msgid "File not found" msgstr "No se encontró el archivo" -#: src/Common/LinuxKernel.vala:878 +#: src/Common/LinuxKernel.vala:881 msgid "Available Kernels" msgstr "Núcleos disponibles" -#: src/Common/LinuxKernel.vala:913 src/Gtk/MainWindow.vala:119 +#: src/Common/LinuxKernel.vala:916 src/Gtk/MainWindow.vala:119 msgid "Kernel" msgstr "Núcleo" -#: src/Common/LinuxKernel.vala:913 +#: src/Common/LinuxKernel.vala:916 #, fuzzy msgid "not found" msgstr "No se encontró el archivo" -#: src/Common/LinuxKernel.vala:920 +#: src/Common/LinuxKernel.vala:923 #, fuzzy msgid "Download: no downloadable kernels specified" msgstr "Coomand no especificado" -#: src/Common/LinuxKernel.vala:940 +#: src/Common/LinuxKernel.vala:943 msgid "enabled" msgstr "habilitado" -#: src/Common/LinuxKernel.vala:964 +#: src/Common/LinuxKernel.vala:967 msgid "Downloading" msgstr "Descargar" -#: src/Common/LinuxKernel.vala:982 +#: src/Common/LinuxKernel.vala:985 #, fuzzy msgid "Installing selected kernels" msgstr "Desinstalación de kernels seleccionados" -#: src/Common/LinuxKernel.vala:988 src/Common/LinuxKernel.vala:1026 +#: src/Common/LinuxKernel.vala:991 src/Common/LinuxKernel.vala:1029 #, fuzzy msgid "Requested" msgstr "solicitado" -#: src/Common/LinuxKernel.vala:991 +#: src/Common/LinuxKernel.vala:994 msgid "is already installed." msgstr "ya está instalado." -#: src/Common/LinuxKernel.vala:1001 +#: src/Common/LinuxKernel.vala:1004 msgid "download failed." msgstr "" -#: src/Common/LinuxKernel.vala:1009 +#: src/Common/LinuxKernel.vala:1012 #, fuzzy msgid "Install: no installable kernels secified" msgstr "Coomand no especificado" -#: src/Common/LinuxKernel.vala:1022 +#: src/Common/LinuxKernel.vala:1025 msgid "Uninstalling selected kernels" msgstr "Desinstalación de kernels seleccionados" -#: src/Common/LinuxKernel.vala:1029 +#: src/Common/LinuxKernel.vala:1032 #, fuzzy msgid "Not uninstalling the currently running kernel" msgstr "No desinstalará el kernel que se está ejecutando actualmente" -#: src/Common/LinuxKernel.vala:1034 +#: src/Common/LinuxKernel.vala:1037 msgid "is locked" msgstr "" -#: src/Common/LinuxKernel.vala:1042 +#: src/Common/LinuxKernel.vala:1045 msgid "found" msgstr "fundar" -#: src/Common/LinuxKernel.vala:1046 +#: src/Common/LinuxKernel.vala:1049 msgid "Uninstall: no uninstallable packages found" msgstr "" -#: src/Common/LinuxKernel.vala:1082 +#: src/Common/LinuxKernel.vala:1085 #, fuzzy msgid "is the highest installed version." msgstr "Desinstale todas las versiones instaladas excepto la más alta" -#: src/Common/LinuxKernel.vala:1095 +#: src/Common/LinuxKernel.vala:1098 msgid "Could not find running kernel in list" msgstr "No se pudo encontrar el kernel en ejecución en la lista" -#: src/Common/LinuxKernel.vala:1100 +#: src/Common/LinuxKernel.vala:1103 msgid "Could not find any kernels to uninstall" msgstr "No se pudo encontrar ningún kernel para desinstalar" -#: src/Common/LinuxKernel.vala:1108 +#: src/Common/LinuxKernel.vala:1111 msgid "The following kernels will be uninstalled" msgstr "Se desinstalarán los siguientes kernels" -#: src/Common/LinuxKernel.vala:1112 +#: src/Common/LinuxKernel.vala:1115 msgid "Continue ?" msgstr "¿Continuar?" -#: src/Common/LinuxKernel.vala:1134 src/Console/AppConsole.vala:215 +#: src/Common/LinuxKernel.vala:1137 src/Console/AppConsole.vala:215 msgid "Latest update" msgstr "Última actualización" -#: src/Common/LinuxKernel.vala:1145 src/Console/AppConsole.vala:222 +#: src/Common/LinuxKernel.vala:1148 src/Console/AppConsole.vala:222 msgid "Latest point update" msgstr "Última actualización puntual" -#: src/Common/LinuxKernel.vala:1153 src/Console/AppConsole.vala:227 +#: src/Common/LinuxKernel.vala:1156 src/Console/AppConsole.vala:227 #: src/Console/AppConsole.vala:242 msgid "No updates found" msgstr "No se encontró ninguna actualización" -#: src/Common/LinuxKernel.vala:1162 +#: src/Common/LinuxKernel.vala:1165 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Instalar la versión del kernel %s? (s/n): " diff --git a/po/fr.po b/po/fr.po index eef0bd5f..053b801f 100644 --- a/po/fr.po +++ b/po/fr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-01 01:49-0400\n" +"POT-Creation-Date: 2023-06-01 02:19-0400\n" "PO-Revision-Date: 2018-08-05 15:50+0200\n" "Last-Translator: Yolateng0 \n" "Language-Team: French\n" @@ -53,148 +53,148 @@ msgstr "OK" msgid "FAILED" msgstr "RATÉ" -#: src/Common/LinuxKernel.vala:390 +#: src/Common/LinuxKernel.vala:393 msgid "Found installed" msgstr "Trouvé installé" -#: src/Common/LinuxKernel.vala:391 +#: src/Common/LinuxKernel.vala:394 msgid "locked" msgstr "" -#: src/Common/LinuxKernel.vala:473 src/Common/LinuxKernel.vala:996 -#: src/Common/LinuxKernel.vala:1086 +#: src/Common/LinuxKernel.vala:476 src/Common/LinuxKernel.vala:999 +#: src/Common/LinuxKernel.vala:1089 msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:666 src/Gtk/MainWindow.vala:517 +#: src/Common/LinuxKernel.vala:669 src/Gtk/MainWindow.vala:517 msgid "Running" msgstr "Actuel" -#: src/Common/LinuxKernel.vala:667 +#: src/Common/LinuxKernel.vala:670 msgid "Installed" msgstr "Installé" -#: src/Common/LinuxKernel.vala:668 +#: src/Common/LinuxKernel.vala:671 msgid "Invalid" msgstr "No válido" -#: src/Common/LinuxKernel.vala:753 +#: src/Common/LinuxKernel.vala:756 msgid "Packages Available" msgstr "Paquets Disponibles" -#: src/Common/LinuxKernel.vala:759 +#: src/Common/LinuxKernel.vala:762 msgid "Packages Installed" msgstr "Paquets Installés" -#: src/Common/LinuxKernel.vala:784 src/lib/TeeJee.FileSystem.vala:103 +#: src/Common/LinuxKernel.vala:787 src/lib/TeeJee.FileSystem.vala:103 msgid "File not found" msgstr "Fichier non trouvé" -#: src/Common/LinuxKernel.vala:878 +#: src/Common/LinuxKernel.vala:881 msgid "Available Kernels" msgstr "Noyaux Disponibles" -#: src/Common/LinuxKernel.vala:913 src/Gtk/MainWindow.vala:119 +#: src/Common/LinuxKernel.vala:916 src/Gtk/MainWindow.vala:119 msgid "Kernel" msgstr "Noyau" -#: src/Common/LinuxKernel.vala:913 +#: src/Common/LinuxKernel.vala:916 #, fuzzy msgid "not found" msgstr "Fichier non trouvé" -#: src/Common/LinuxKernel.vala:920 +#: src/Common/LinuxKernel.vala:923 #, fuzzy msgid "Download: no downloadable kernels specified" msgstr "Pas de commande fournie" -#: src/Common/LinuxKernel.vala:940 +#: src/Common/LinuxKernel.vala:943 msgid "enabled" msgstr "activé" -#: src/Common/LinuxKernel.vala:964 +#: src/Common/LinuxKernel.vala:967 msgid "Downloading" msgstr "Téléchargement" -#: src/Common/LinuxKernel.vala:982 +#: src/Common/LinuxKernel.vala:985 #, fuzzy msgid "Installing selected kernels" msgstr "Désinstallation des noyaux sélectionnés" -#: src/Common/LinuxKernel.vala:988 src/Common/LinuxKernel.vala:1026 +#: src/Common/LinuxKernel.vala:991 src/Common/LinuxKernel.vala:1029 #, fuzzy msgid "Requested" msgstr "Demandé" -#: src/Common/LinuxKernel.vala:991 +#: src/Common/LinuxKernel.vala:994 msgid "is already installed." msgstr "est déjà installé." -#: src/Common/LinuxKernel.vala:1001 +#: src/Common/LinuxKernel.vala:1004 msgid "download failed." msgstr "" -#: src/Common/LinuxKernel.vala:1009 +#: src/Common/LinuxKernel.vala:1012 #, fuzzy msgid "Install: no installable kernels secified" msgstr "Pas de commande fournie" -#: src/Common/LinuxKernel.vala:1022 +#: src/Common/LinuxKernel.vala:1025 msgid "Uninstalling selected kernels" msgstr "Désinstallation des noyaux sélectionnés" -#: src/Common/LinuxKernel.vala:1029 +#: src/Common/LinuxKernel.vala:1032 #, fuzzy msgid "Not uninstalling the currently running kernel" msgstr "Ne pas désinstaller le noyau en cours d'exécution" -#: src/Common/LinuxKernel.vala:1034 +#: src/Common/LinuxKernel.vala:1037 msgid "is locked" msgstr "" -#: src/Common/LinuxKernel.vala:1042 +#: src/Common/LinuxKernel.vala:1045 msgid "found" msgstr "fonder" -#: src/Common/LinuxKernel.vala:1046 +#: src/Common/LinuxKernel.vala:1049 msgid "Uninstall: no uninstallable packages found" msgstr "" -#: src/Common/LinuxKernel.vala:1082 +#: src/Common/LinuxKernel.vala:1085 #, fuzzy msgid "is the highest installed version." msgstr "Désinstallez toutes le version installées, sauf la plus élevée" -#: src/Common/LinuxKernel.vala:1095 +#: src/Common/LinuxKernel.vala:1098 msgid "Could not find running kernel in list" msgstr "Impossible de trouver le noyau en cours d'exécution dans la liste" -#: src/Common/LinuxKernel.vala:1100 +#: src/Common/LinuxKernel.vala:1103 msgid "Could not find any kernels to uninstall" msgstr "Impossible de trouver des noyaux à désinstaller" -#: src/Common/LinuxKernel.vala:1108 +#: src/Common/LinuxKernel.vala:1111 msgid "The following kernels will be uninstalled" msgstr "Les noyaux suivants seront désinstallés" -#: src/Common/LinuxKernel.vala:1112 +#: src/Common/LinuxKernel.vala:1115 msgid "Continue ?" msgstr "Reprendre ?" -#: src/Common/LinuxKernel.vala:1134 src/Console/AppConsole.vala:215 +#: src/Common/LinuxKernel.vala:1137 src/Console/AppConsole.vala:215 msgid "Latest update" msgstr "Dernière mise à jour" -#: src/Common/LinuxKernel.vala:1145 src/Console/AppConsole.vala:222 +#: src/Common/LinuxKernel.vala:1148 src/Console/AppConsole.vala:222 msgid "Latest point update" msgstr "Dernière mise à jour mineure" -#: src/Common/LinuxKernel.vala:1153 src/Console/AppConsole.vala:227 +#: src/Common/LinuxKernel.vala:1156 src/Console/AppConsole.vala:227 #: src/Console/AppConsole.vala:242 msgid "No updates found" msgstr "Aucune mise à jour disponible" -#: src/Common/LinuxKernel.vala:1162 +#: src/Common/LinuxKernel.vala:1165 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Installer le noyau en version %s ? (y/n): " diff --git a/po/hr.po b/po/hr.po index 5419b78e..6b020aa3 100644 --- a/po/hr.po +++ b/po/hr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-01 01:49-0400\n" +"POT-Creation-Date: 2023-06-01 02:19-0400\n" "PO-Revision-Date: 2022-09-22 12:13+0200\n" "Last-Translator: gogo \n" "Language-Team: Croatian\n" @@ -53,148 +53,148 @@ msgstr "OK" msgid "FAILED" msgstr "NIJE USPIO" -#: src/Common/LinuxKernel.vala:390 +#: src/Common/LinuxKernel.vala:393 msgid "Found installed" msgstr "Pronađeno instalirano" -#: src/Common/LinuxKernel.vala:391 +#: src/Common/LinuxKernel.vala:394 msgid "locked" msgstr "" -#: src/Common/LinuxKernel.vala:473 src/Common/LinuxKernel.vala:996 -#: src/Common/LinuxKernel.vala:1086 +#: src/Common/LinuxKernel.vala:476 src/Common/LinuxKernel.vala:999 +#: src/Common/LinuxKernel.vala:1089 msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:666 src/Gtk/MainWindow.vala:517 +#: src/Common/LinuxKernel.vala:669 src/Gtk/MainWindow.vala:517 msgid "Running" msgstr "Pokrenuto" -#: src/Common/LinuxKernel.vala:667 +#: src/Common/LinuxKernel.vala:670 msgid "Installed" msgstr "Instalirano" -#: src/Common/LinuxKernel.vala:668 +#: src/Common/LinuxKernel.vala:671 msgid "Invalid" msgstr "Érvénytelen" -#: src/Common/LinuxKernel.vala:753 +#: src/Common/LinuxKernel.vala:756 msgid "Packages Available" msgstr "Dostupni Paketi" -#: src/Common/LinuxKernel.vala:759 +#: src/Common/LinuxKernel.vala:762 msgid "Packages Installed" msgstr "Instalirani paketi" -#: src/Common/LinuxKernel.vala:784 src/lib/TeeJee.FileSystem.vala:103 +#: src/Common/LinuxKernel.vala:787 src/lib/TeeJee.FileSystem.vala:103 msgid "File not found" msgstr "Datoteka nije pronađena" -#: src/Common/LinuxKernel.vala:878 +#: src/Common/LinuxKernel.vala:881 msgid "Available Kernels" msgstr "Dostupni kerneli" -#: src/Common/LinuxKernel.vala:913 src/Gtk/MainWindow.vala:119 +#: src/Common/LinuxKernel.vala:916 src/Gtk/MainWindow.vala:119 msgid "Kernel" msgstr "Kernel" -#: src/Common/LinuxKernel.vala:913 +#: src/Common/LinuxKernel.vala:916 #, fuzzy msgid "not found" msgstr "Datoteka nije pronađena" -#: src/Common/LinuxKernel.vala:920 +#: src/Common/LinuxKernel.vala:923 #, fuzzy msgid "Download: no downloadable kernels specified" msgstr "Naredba nije navedena" -#: src/Common/LinuxKernel.vala:940 +#: src/Common/LinuxKernel.vala:943 msgid "enabled" msgstr "omogućen" -#: src/Common/LinuxKernel.vala:964 +#: src/Common/LinuxKernel.vala:967 msgid "Downloading" msgstr "Učitavanje" -#: src/Common/LinuxKernel.vala:982 +#: src/Common/LinuxKernel.vala:985 #, fuzzy msgid "Installing selected kernels" msgstr "Deinstaliraj određene kernele" -#: src/Common/LinuxKernel.vala:988 src/Common/LinuxKernel.vala:1026 +#: src/Common/LinuxKernel.vala:991 src/Common/LinuxKernel.vala:1029 #, fuzzy msgid "Requested" msgstr "Zatražio" -#: src/Common/LinuxKernel.vala:991 +#: src/Common/LinuxKernel.vala:994 msgid "is already installed." msgstr "je već instaliran." -#: src/Common/LinuxKernel.vala:1001 +#: src/Common/LinuxKernel.vala:1004 msgid "download failed." msgstr "" -#: src/Common/LinuxKernel.vala:1009 +#: src/Common/LinuxKernel.vala:1012 #, fuzzy msgid "Install: no installable kernels secified" msgstr "Naredba nije navedena" -#: src/Common/LinuxKernel.vala:1022 +#: src/Common/LinuxKernel.vala:1025 msgid "Uninstalling selected kernels" msgstr "Deinstaliraj određene kernele" -#: src/Common/LinuxKernel.vala:1029 +#: src/Common/LinuxKernel.vala:1032 #, fuzzy msgid "Not uninstalling the currently running kernel" msgstr "ne deinstaliranje trenutno pokrenute kernel" -#: src/Common/LinuxKernel.vala:1034 +#: src/Common/LinuxKernel.vala:1037 msgid "is locked" msgstr "" -#: src/Common/LinuxKernel.vala:1042 +#: src/Common/LinuxKernel.vala:1045 msgid "found" msgstr "pronađen" -#: src/Common/LinuxKernel.vala:1046 +#: src/Common/LinuxKernel.vala:1049 msgid "Uninstall: no uninstallable packages found" msgstr "" -#: src/Common/LinuxKernel.vala:1082 +#: src/Common/LinuxKernel.vala:1085 #, fuzzy msgid "is the highest installed version." msgstr "Deinstaliraj sve osim najnovije instalirane verzije" -#: src/Common/LinuxKernel.vala:1095 +#: src/Common/LinuxKernel.vala:1098 msgid "Could not find running kernel in list" msgstr "Nije moguće pronaći pokrenutu kernel na popisu" -#: src/Common/LinuxKernel.vala:1100 +#: src/Common/LinuxKernel.vala:1103 msgid "Could not find any kernels to uninstall" msgstr "Nema pronađenih kernela za deinstaliranje" -#: src/Common/LinuxKernel.vala:1108 +#: src/Common/LinuxKernel.vala:1111 msgid "The following kernels will be uninstalled" msgstr "Deinstalirat će se sljedeće kerneli" -#: src/Common/LinuxKernel.vala:1112 +#: src/Common/LinuxKernel.vala:1115 msgid "Continue ?" msgstr "Nastavi?" -#: src/Common/LinuxKernel.vala:1134 src/Console/AppConsole.vala:215 +#: src/Common/LinuxKernel.vala:1137 src/Console/AppConsole.vala:215 msgid "Latest update" msgstr "Najnovija nadopuna" -#: src/Common/LinuxKernel.vala:1145 src/Console/AppConsole.vala:222 +#: src/Common/LinuxKernel.vala:1148 src/Console/AppConsole.vala:222 msgid "Latest point update" msgstr "Najnovija ciljana nadopuna" -#: src/Common/LinuxKernel.vala:1153 src/Console/AppConsole.vala:227 +#: src/Common/LinuxKernel.vala:1156 src/Console/AppConsole.vala:227 #: src/Console/AppConsole.vala:242 msgid "No updates found" msgstr "Nema pronađenih nadopuna" -#: src/Common/LinuxKernel.vala:1162 +#: src/Common/LinuxKernel.vala:1165 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Instaliraj kernel inačice %s ? (d/n): " diff --git a/po/it.po b/po/it.po index 31ae6952..12ff7f57 100644 --- a/po/it.po +++ b/po/it.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-01 01:49-0400\n" +"POT-Creation-Date: 2023-06-01 02:19-0400\n" "PO-Revision-Date: 2020-08-22 15:35+0100\n" "Last-Translator: Demetrio Mendozzi\n" "Language-Team: Italian\n" @@ -51,148 +51,148 @@ msgstr "OK" msgid "FAILED" msgstr "FALLITO" -#: src/Common/LinuxKernel.vala:390 +#: src/Common/LinuxKernel.vala:393 msgid "Found installed" msgstr "Trovato installato" -#: src/Common/LinuxKernel.vala:391 +#: src/Common/LinuxKernel.vala:394 msgid "locked" msgstr "" -#: src/Common/LinuxKernel.vala:473 src/Common/LinuxKernel.vala:996 -#: src/Common/LinuxKernel.vala:1086 +#: src/Common/LinuxKernel.vala:476 src/Common/LinuxKernel.vala:999 +#: src/Common/LinuxKernel.vala:1089 msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:666 src/Gtk/MainWindow.vala:517 +#: src/Common/LinuxKernel.vala:669 src/Gtk/MainWindow.vala:517 msgid "Running" msgstr "In esecuzione" -#: src/Common/LinuxKernel.vala:667 +#: src/Common/LinuxKernel.vala:670 msgid "Installed" msgstr "Installato" -#: src/Common/LinuxKernel.vala:668 +#: src/Common/LinuxKernel.vala:671 msgid "Invalid" msgstr "Non valido" -#: src/Common/LinuxKernel.vala:753 +#: src/Common/LinuxKernel.vala:756 msgid "Packages Available" msgstr "Pacchetti disponibili" -#: src/Common/LinuxKernel.vala:759 +#: src/Common/LinuxKernel.vala:762 msgid "Packages Installed" msgstr "Pacchetti installati" -#: src/Common/LinuxKernel.vala:784 src/lib/TeeJee.FileSystem.vala:103 +#: src/Common/LinuxKernel.vala:787 src/lib/TeeJee.FileSystem.vala:103 msgid "File not found" msgstr "File non trovato" -#: src/Common/LinuxKernel.vala:878 +#: src/Common/LinuxKernel.vala:881 msgid "Available Kernels" msgstr "Kernel disponibili" -#: src/Common/LinuxKernel.vala:913 src/Gtk/MainWindow.vala:119 +#: src/Common/LinuxKernel.vala:916 src/Gtk/MainWindow.vala:119 msgid "Kernel" msgstr "Kernel" -#: src/Common/LinuxKernel.vala:913 +#: src/Common/LinuxKernel.vala:916 #, fuzzy msgid "not found" msgstr "File non trovato" -#: src/Common/LinuxKernel.vala:920 +#: src/Common/LinuxKernel.vala:923 #, fuzzy msgid "Download: no downloadable kernels specified" msgstr "Comando non specificato" -#: src/Common/LinuxKernel.vala:940 +#: src/Common/LinuxKernel.vala:943 msgid "enabled" msgstr "abilitato" -#: src/Common/LinuxKernel.vala:964 +#: src/Common/LinuxKernel.vala:967 msgid "Downloading" msgstr "Scaricamento" -#: src/Common/LinuxKernel.vala:982 +#: src/Common/LinuxKernel.vala:985 #, fuzzy msgid "Installing selected kernels" msgstr "Disinstalla i kernel specificati" -#: src/Common/LinuxKernel.vala:988 src/Common/LinuxKernel.vala:1026 +#: src/Common/LinuxKernel.vala:991 src/Common/LinuxKernel.vala:1029 #, fuzzy msgid "Requested" msgstr "richiesto" -#: src/Common/LinuxKernel.vala:991 +#: src/Common/LinuxKernel.vala:994 msgid "is already installed." msgstr "è già installato." -#: src/Common/LinuxKernel.vala:1001 +#: src/Common/LinuxKernel.vala:1004 msgid "download failed." msgstr "" -#: src/Common/LinuxKernel.vala:1009 +#: src/Common/LinuxKernel.vala:1012 #, fuzzy msgid "Install: no installable kernels secified" msgstr "Comando non specificato" -#: src/Common/LinuxKernel.vala:1022 +#: src/Common/LinuxKernel.vala:1025 msgid "Uninstalling selected kernels" msgstr "Disinstalla i kernel specificati" -#: src/Common/LinuxKernel.vala:1029 +#: src/Common/LinuxKernel.vala:1032 #, fuzzy msgid "Not uninstalling the currently running kernel" msgstr "non disinstallare il kernel attualmente in esecuzione" -#: src/Common/LinuxKernel.vala:1034 +#: src/Common/LinuxKernel.vala:1037 msgid "is locked" msgstr "" -#: src/Common/LinuxKernel.vala:1042 +#: src/Common/LinuxKernel.vala:1045 msgid "found" msgstr "trovato" -#: src/Common/LinuxKernel.vala:1046 +#: src/Common/LinuxKernel.vala:1049 msgid "Uninstall: no uninstallable packages found" msgstr "" -#: src/Common/LinuxKernel.vala:1082 +#: src/Common/LinuxKernel.vala:1085 #, fuzzy msgid "is the highest installed version." msgstr "Disinstallare tutti tranne la versione più recente installata" -#: src/Common/LinuxKernel.vala:1095 +#: src/Common/LinuxKernel.vala:1098 msgid "Could not find running kernel in list" msgstr "Impossibile trovare il kernel in esecuzione nell'elenco" -#: src/Common/LinuxKernel.vala:1100 +#: src/Common/LinuxKernel.vala:1103 msgid "Could not find any kernels to uninstall" msgstr "Impossibile trovare alcun kernel da rimuovere" -#: src/Common/LinuxKernel.vala:1108 +#: src/Common/LinuxKernel.vala:1111 msgid "The following kernels will be uninstalled" msgstr "I seguenti kernel saranno rimossi" -#: src/Common/LinuxKernel.vala:1112 +#: src/Common/LinuxKernel.vala:1115 msgid "Continue ?" msgstr "Continuare ?" -#: src/Common/LinuxKernel.vala:1134 src/Console/AppConsole.vala:215 +#: src/Common/LinuxKernel.vala:1137 src/Console/AppConsole.vala:215 msgid "Latest update" msgstr "Ultimo aggiornamento" -#: src/Common/LinuxKernel.vala:1145 src/Console/AppConsole.vala:222 +#: src/Common/LinuxKernel.vala:1148 src/Console/AppConsole.vala:222 msgid "Latest point update" msgstr "Ultimo aggiornamento del rilascio parziale" -#: src/Common/LinuxKernel.vala:1153 src/Console/AppConsole.vala:227 +#: src/Common/LinuxKernel.vala:1156 src/Console/AppConsole.vala:227 #: src/Console/AppConsole.vala:242 msgid "No updates found" msgstr "Nessun aggiornamento trovato" -#: src/Common/LinuxKernel.vala:1162 +#: src/Common/LinuxKernel.vala:1165 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Installare la versione del kernel %s ? (y/n): " diff --git a/po/ko.po b/po/ko.po index d1c0b2df..69a34eac 100644 --- a/po/ko.po +++ b/po/ko.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-01 01:49-0400\n" +"POT-Creation-Date: 2023-06-01 02:19-0400\n" "PO-Revision-Date: 2022-09-28 11:48+0900\n" "Last-Translator: Kevin Kim \n" "Language-Team: Korean\n" @@ -53,148 +53,148 @@ msgstr "확인" msgid "FAILED" msgstr "실패" -#: src/Common/LinuxKernel.vala:390 +#: src/Common/LinuxKernel.vala:393 msgid "Found installed" msgstr "설치된 것을 찾았습니다" -#: src/Common/LinuxKernel.vala:391 +#: src/Common/LinuxKernel.vala:394 msgid "locked" msgstr "" -#: src/Common/LinuxKernel.vala:473 src/Common/LinuxKernel.vala:996 -#: src/Common/LinuxKernel.vala:1086 +#: src/Common/LinuxKernel.vala:476 src/Common/LinuxKernel.vala:999 +#: src/Common/LinuxKernel.vala:1089 msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:666 src/Gtk/MainWindow.vala:517 +#: src/Common/LinuxKernel.vala:669 src/Gtk/MainWindow.vala:517 msgid "Running" msgstr "구동 중" -#: src/Common/LinuxKernel.vala:667 +#: src/Common/LinuxKernel.vala:670 msgid "Installed" msgstr "설치 됨" -#: src/Common/LinuxKernel.vala:668 +#: src/Common/LinuxKernel.vala:671 msgid "Invalid" msgstr "사용할 수 없음" -#: src/Common/LinuxKernel.vala:753 +#: src/Common/LinuxKernel.vala:756 msgid "Packages Available" msgstr "설치 가능한 패키지" -#: src/Common/LinuxKernel.vala:759 +#: src/Common/LinuxKernel.vala:762 msgid "Packages Installed" msgstr "설치된 패키지" -#: src/Common/LinuxKernel.vala:784 src/lib/TeeJee.FileSystem.vala:103 +#: src/Common/LinuxKernel.vala:787 src/lib/TeeJee.FileSystem.vala:103 msgid "File not found" msgstr "파일을 찾을 수 없습니다" -#: src/Common/LinuxKernel.vala:878 +#: src/Common/LinuxKernel.vala:881 msgid "Available Kernels" msgstr "설치 가능한 커널" -#: src/Common/LinuxKernel.vala:913 src/Gtk/MainWindow.vala:119 +#: src/Common/LinuxKernel.vala:916 src/Gtk/MainWindow.vala:119 msgid "Kernel" msgstr "커널" -#: src/Common/LinuxKernel.vala:913 +#: src/Common/LinuxKernel.vala:916 #, fuzzy msgid "not found" msgstr "파일을 찾을 수 없습니다" -#: src/Common/LinuxKernel.vala:920 +#: src/Common/LinuxKernel.vala:923 #, fuzzy msgid "Download: no downloadable kernels specified" msgstr "지정한 명령어가 없습니다" -#: src/Common/LinuxKernel.vala:940 +#: src/Common/LinuxKernel.vala:943 msgid "enabled" msgstr "사용" -#: src/Common/LinuxKernel.vala:964 +#: src/Common/LinuxKernel.vala:967 msgid "Downloading" msgstr "다운로드" -#: src/Common/LinuxKernel.vala:982 +#: src/Common/LinuxKernel.vala:985 #, fuzzy msgid "Installing selected kernels" msgstr "선택한 커널 제거" -#: src/Common/LinuxKernel.vala:988 src/Common/LinuxKernel.vala:1026 +#: src/Common/LinuxKernel.vala:991 src/Common/LinuxKernel.vala:1029 #, fuzzy msgid "Requested" msgstr "요청" -#: src/Common/LinuxKernel.vala:991 +#: src/Common/LinuxKernel.vala:994 msgid "is already installed." msgstr "가 이미 설치되어 있습니다" -#: src/Common/LinuxKernel.vala:1001 +#: src/Common/LinuxKernel.vala:1004 msgid "download failed." msgstr "" -#: src/Common/LinuxKernel.vala:1009 +#: src/Common/LinuxKernel.vala:1012 #, fuzzy msgid "Install: no installable kernels secified" msgstr "지정한 명령어가 없습니다" -#: src/Common/LinuxKernel.vala:1022 +#: src/Common/LinuxKernel.vala:1025 msgid "Uninstalling selected kernels" msgstr "선택한 커널 제거" -#: src/Common/LinuxKernel.vala:1029 +#: src/Common/LinuxKernel.vala:1032 #, fuzzy msgid "Not uninstalling the currently running kernel" msgstr "현재 실행 중인 커널을 제거하지 않음" -#: src/Common/LinuxKernel.vala:1034 +#: src/Common/LinuxKernel.vala:1037 msgid "is locked" msgstr "" -#: src/Common/LinuxKernel.vala:1042 +#: src/Common/LinuxKernel.vala:1045 msgid "found" msgstr "설립하다" -#: src/Common/LinuxKernel.vala:1046 +#: src/Common/LinuxKernel.vala:1049 msgid "Uninstall: no uninstallable packages found" msgstr "" -#: src/Common/LinuxKernel.vala:1082 +#: src/Common/LinuxKernel.vala:1085 #, fuzzy msgid "is the highest installed version." msgstr "설치된 가장 높은 버전을 제외한 모든 버전을 제거합니다" -#: src/Common/LinuxKernel.vala:1095 +#: src/Common/LinuxKernel.vala:1098 msgid "Could not find running kernel in list" msgstr "현재 실행 중인 커널을 찾을 수 없습니다" -#: src/Common/LinuxKernel.vala:1100 +#: src/Common/LinuxKernel.vala:1103 msgid "Could not find any kernels to uninstall" msgstr "삭제할 커널을 찾을 수 없습니다" -#: src/Common/LinuxKernel.vala:1108 +#: src/Common/LinuxKernel.vala:1111 msgid "The following kernels will be uninstalled" msgstr "풀이" -#: src/Common/LinuxKernel.vala:1112 +#: src/Common/LinuxKernel.vala:1115 msgid "Continue ?" msgstr "계속하시겠습니까?" -#: src/Common/LinuxKernel.vala:1134 src/Console/AppConsole.vala:215 +#: src/Common/LinuxKernel.vala:1137 src/Console/AppConsole.vala:215 msgid "Latest update" msgstr "최신 업데이트" -#: src/Common/LinuxKernel.vala:1145 src/Console/AppConsole.vala:222 +#: src/Common/LinuxKernel.vala:1148 src/Console/AppConsole.vala:222 msgid "Latest point update" msgstr "최신 포인트 업데이트" -#: src/Common/LinuxKernel.vala:1153 src/Console/AppConsole.vala:227 +#: src/Common/LinuxKernel.vala:1156 src/Console/AppConsole.vala:227 #: src/Console/AppConsole.vala:242 msgid "No updates found" msgstr "업데이트를 찾을 수 없습니다" -#: src/Common/LinuxKernel.vala:1162 +#: src/Common/LinuxKernel.vala:1165 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "커널 %s 버전을 설치하시겠습니까? (y/n): " diff --git a/po/messages.pot b/po/messages.pot index 163c3800..7388cd36 100644 --- a/po/messages.pot +++ b/po/messages.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline 1.3.6\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-01 01:49-0400\n" +"POT-Creation-Date: 2023-06-01 02:19-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -57,141 +57,141 @@ msgstr "" msgid "FAILED" msgstr "" -#: src/Common/LinuxKernel.vala:390 +#: src/Common/LinuxKernel.vala:393 msgid "Found installed" msgstr "" -#: src/Common/LinuxKernel.vala:391 +#: src/Common/LinuxKernel.vala:394 msgid "locked" msgstr "" -#: src/Common/LinuxKernel.vala:473 src/Common/LinuxKernel.vala:996 -#: src/Common/LinuxKernel.vala:1086 +#: src/Common/LinuxKernel.vala:476 src/Common/LinuxKernel.vala:999 +#: src/Common/LinuxKernel.vala:1089 msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:666 src/Gtk/MainWindow.vala:517 +#: src/Common/LinuxKernel.vala:669 src/Gtk/MainWindow.vala:517 msgid "Running" msgstr "" -#: src/Common/LinuxKernel.vala:667 +#: src/Common/LinuxKernel.vala:670 msgid "Installed" msgstr "" -#: src/Common/LinuxKernel.vala:668 +#: src/Common/LinuxKernel.vala:671 msgid "Invalid" msgstr "" -#: src/Common/LinuxKernel.vala:753 +#: src/Common/LinuxKernel.vala:756 msgid "Packages Available" msgstr "" -#: src/Common/LinuxKernel.vala:759 +#: src/Common/LinuxKernel.vala:762 msgid "Packages Installed" msgstr "" -#: src/Common/LinuxKernel.vala:784 src/lib/TeeJee.FileSystem.vala:103 +#: src/Common/LinuxKernel.vala:787 src/lib/TeeJee.FileSystem.vala:103 msgid "File not found" msgstr "" -#: src/Common/LinuxKernel.vala:878 +#: src/Common/LinuxKernel.vala:881 msgid "Available Kernels" msgstr "" -#: src/Common/LinuxKernel.vala:913 src/Gtk/MainWindow.vala:119 +#: src/Common/LinuxKernel.vala:916 src/Gtk/MainWindow.vala:119 msgid "Kernel" msgstr "" -#: src/Common/LinuxKernel.vala:913 +#: src/Common/LinuxKernel.vala:916 msgid "not found" msgstr "" -#: src/Common/LinuxKernel.vala:920 +#: src/Common/LinuxKernel.vala:923 msgid "Download: no downloadable kernels specified" msgstr "" -#: src/Common/LinuxKernel.vala:940 +#: src/Common/LinuxKernel.vala:943 msgid "enabled" msgstr "" -#: src/Common/LinuxKernel.vala:964 +#: src/Common/LinuxKernel.vala:967 msgid "Downloading" msgstr "" -#: src/Common/LinuxKernel.vala:982 +#: src/Common/LinuxKernel.vala:985 msgid "Installing selected kernels" msgstr "" -#: src/Common/LinuxKernel.vala:988 src/Common/LinuxKernel.vala:1026 +#: src/Common/LinuxKernel.vala:991 src/Common/LinuxKernel.vala:1029 msgid "Requested" msgstr "" -#: src/Common/LinuxKernel.vala:991 +#: src/Common/LinuxKernel.vala:994 msgid "is already installed." msgstr "" -#: src/Common/LinuxKernel.vala:1001 +#: src/Common/LinuxKernel.vala:1004 msgid "download failed." msgstr "" -#: src/Common/LinuxKernel.vala:1009 +#: src/Common/LinuxKernel.vala:1012 msgid "Install: no installable kernels secified" msgstr "" -#: src/Common/LinuxKernel.vala:1022 +#: src/Common/LinuxKernel.vala:1025 msgid "Uninstalling selected kernels" msgstr "" -#: src/Common/LinuxKernel.vala:1029 +#: src/Common/LinuxKernel.vala:1032 msgid "Not uninstalling the currently running kernel" msgstr "" -#: src/Common/LinuxKernel.vala:1034 +#: src/Common/LinuxKernel.vala:1037 msgid "is locked" msgstr "" -#: src/Common/LinuxKernel.vala:1042 +#: src/Common/LinuxKernel.vala:1045 msgid "found" msgstr "" -#: src/Common/LinuxKernel.vala:1046 +#: src/Common/LinuxKernel.vala:1049 msgid "Uninstall: no uninstallable packages found" msgstr "" -#: src/Common/LinuxKernel.vala:1082 +#: src/Common/LinuxKernel.vala:1085 msgid "is the highest installed version." msgstr "" -#: src/Common/LinuxKernel.vala:1095 +#: src/Common/LinuxKernel.vala:1098 msgid "Could not find running kernel in list" msgstr "" -#: src/Common/LinuxKernel.vala:1100 +#: src/Common/LinuxKernel.vala:1103 msgid "Could not find any kernels to uninstall" msgstr "" -#: src/Common/LinuxKernel.vala:1108 +#: src/Common/LinuxKernel.vala:1111 msgid "The following kernels will be uninstalled" msgstr "" -#: src/Common/LinuxKernel.vala:1112 +#: src/Common/LinuxKernel.vala:1115 msgid "Continue ?" msgstr "" -#: src/Common/LinuxKernel.vala:1134 src/Console/AppConsole.vala:215 +#: src/Common/LinuxKernel.vala:1137 src/Console/AppConsole.vala:215 msgid "Latest update" msgstr "" -#: src/Common/LinuxKernel.vala:1145 src/Console/AppConsole.vala:222 +#: src/Common/LinuxKernel.vala:1148 src/Console/AppConsole.vala:222 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:1153 src/Console/AppConsole.vala:227 +#: src/Common/LinuxKernel.vala:1156 src/Console/AppConsole.vala:227 #: src/Console/AppConsole.vala:242 msgid "No updates found" msgstr "" -#: src/Common/LinuxKernel.vala:1162 +#: src/Common/LinuxKernel.vala:1165 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "" diff --git a/po/nl.po b/po/nl.po index ed95208a..ae1414ed 100644 --- a/po/nl.po +++ b/po/nl.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-01 01:49-0400\n" +"POT-Creation-Date: 2023-06-01 02:19-0400\n" "PO-Revision-Date: 2020-08-23 13:55+0200\n" "Last-Translator: Heimen Stoffels \n" "Language-Team: Dutch (Netherlands)\n" @@ -53,148 +53,148 @@ msgstr "Oké" msgid "FAILED" msgstr "MISLUKT" -#: src/Common/LinuxKernel.vala:390 +#: src/Common/LinuxKernel.vala:393 msgid "Found installed" msgstr "Geïnstalleerd gevonden" -#: src/Common/LinuxKernel.vala:391 +#: src/Common/LinuxKernel.vala:394 msgid "locked" msgstr "" -#: src/Common/LinuxKernel.vala:473 src/Common/LinuxKernel.vala:996 -#: src/Common/LinuxKernel.vala:1086 +#: src/Common/LinuxKernel.vala:476 src/Common/LinuxKernel.vala:999 +#: src/Common/LinuxKernel.vala:1089 msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:666 src/Gtk/MainWindow.vala:517 +#: src/Common/LinuxKernel.vala:669 src/Gtk/MainWindow.vala:517 msgid "Running" msgstr "In gebruik" -#: src/Common/LinuxKernel.vala:667 +#: src/Common/LinuxKernel.vala:670 msgid "Installed" msgstr "Geïnstalleerd" -#: src/Common/LinuxKernel.vala:668 +#: src/Common/LinuxKernel.vala:671 msgid "Invalid" msgstr "Ongeldig" -#: src/Common/LinuxKernel.vala:753 +#: src/Common/LinuxKernel.vala:756 msgid "Packages Available" msgstr "Beschikbare pakketten" -#: src/Common/LinuxKernel.vala:759 +#: src/Common/LinuxKernel.vala:762 msgid "Packages Installed" msgstr "Geïnstalleerde pakketten" -#: src/Common/LinuxKernel.vala:784 src/lib/TeeJee.FileSystem.vala:103 +#: src/Common/LinuxKernel.vala:787 src/lib/TeeJee.FileSystem.vala:103 msgid "File not found" msgstr "Het bestand is niet gevonden" -#: src/Common/LinuxKernel.vala:878 +#: src/Common/LinuxKernel.vala:881 msgid "Available Kernels" msgstr "Beschikbare kernels" -#: src/Common/LinuxKernel.vala:913 src/Gtk/MainWindow.vala:119 +#: src/Common/LinuxKernel.vala:916 src/Gtk/MainWindow.vala:119 msgid "Kernel" msgstr "Kernel" -#: src/Common/LinuxKernel.vala:913 +#: src/Common/LinuxKernel.vala:916 #, fuzzy msgid "not found" msgstr "Het bestand is niet gevonden" -#: src/Common/LinuxKernel.vala:920 +#: src/Common/LinuxKernel.vala:923 #, fuzzy msgid "Download: no downloadable kernels specified" msgstr "Geen opdracht opgegeven" -#: src/Common/LinuxKernel.vala:940 +#: src/Common/LinuxKernel.vala:943 msgid "enabled" msgstr "ingeschakeld" -#: src/Common/LinuxKernel.vala:964 +#: src/Common/LinuxKernel.vala:967 msgid "Downloading" msgstr "Downloaden" -#: src/Common/LinuxKernel.vala:982 +#: src/Common/LinuxKernel.vala:985 #, fuzzy msgid "Installing selected kernels" msgstr "Geselecteerde kernels verwijderen" -#: src/Common/LinuxKernel.vala:988 src/Common/LinuxKernel.vala:1026 +#: src/Common/LinuxKernel.vala:991 src/Common/LinuxKernel.vala:1029 #, fuzzy msgid "Requested" msgstr "verzocht" -#: src/Common/LinuxKernel.vala:991 +#: src/Common/LinuxKernel.vala:994 msgid "is already installed." msgstr "is al geïnstalleerd." -#: src/Common/LinuxKernel.vala:1001 +#: src/Common/LinuxKernel.vala:1004 msgid "download failed." msgstr "" -#: src/Common/LinuxKernel.vala:1009 +#: src/Common/LinuxKernel.vala:1012 #, fuzzy msgid "Install: no installable kernels secified" msgstr "Geen opdracht opgegeven" -#: src/Common/LinuxKernel.vala:1022 +#: src/Common/LinuxKernel.vala:1025 msgid "Uninstalling selected kernels" msgstr "Geselecteerde kernels verwijderen" -#: src/Common/LinuxKernel.vala:1029 +#: src/Common/LinuxKernel.vala:1032 #, fuzzy msgid "Not uninstalling the currently running kernel" msgstr "de momenteel actieve kernel niet verwijderen" -#: src/Common/LinuxKernel.vala:1034 +#: src/Common/LinuxKernel.vala:1037 msgid "is locked" msgstr "" -#: src/Common/LinuxKernel.vala:1042 +#: src/Common/LinuxKernel.vala:1045 msgid "found" msgstr "gevonden" -#: src/Common/LinuxKernel.vala:1046 +#: src/Common/LinuxKernel.vala:1049 msgid "Uninstall: no uninstallable packages found" msgstr "" -#: src/Common/LinuxKernel.vala:1082 +#: src/Common/LinuxKernel.vala:1085 #, fuzzy msgid "is the highest installed version." msgstr "Verwijder alle behalve de hoogst geïnstalleerde versie" -#: src/Common/LinuxKernel.vala:1095 +#: src/Common/LinuxKernel.vala:1098 msgid "Could not find running kernel in list" msgstr "De in gebruik zijnde kernel staat niet op de lijst" -#: src/Common/LinuxKernel.vala:1100 +#: src/Common/LinuxKernel.vala:1103 msgid "Could not find any kernels to uninstall" msgstr "Er zijn geen te verwijderen kernels" -#: src/Common/LinuxKernel.vala:1108 +#: src/Common/LinuxKernel.vala:1111 msgid "The following kernels will be uninstalled" msgstr "De volgende kernels worden verwijderd" -#: src/Common/LinuxKernel.vala:1112 +#: src/Common/LinuxKernel.vala:1115 msgid "Continue ?" msgstr "Wilt u doorgaan?" -#: src/Common/LinuxKernel.vala:1134 src/Console/AppConsole.vala:215 +#: src/Common/LinuxKernel.vala:1137 src/Console/AppConsole.vala:215 msgid "Latest update" msgstr "Recentste update" -#: src/Common/LinuxKernel.vala:1145 src/Console/AppConsole.vala:222 +#: src/Common/LinuxKernel.vala:1148 src/Console/AppConsole.vala:222 msgid "Latest point update" msgstr "Recentste puntupdate" -#: src/Common/LinuxKernel.vala:1153 src/Console/AppConsole.vala:227 +#: src/Common/LinuxKernel.vala:1156 src/Console/AppConsole.vala:227 #: src/Console/AppConsole.vala:242 msgid "No updates found" msgstr "Geen updates gevonden" -#: src/Common/LinuxKernel.vala:1162 +#: src/Common/LinuxKernel.vala:1165 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Wilt u versie %s installeren? (j/n): " diff --git a/po/pl.po b/po/pl.po index 23cfdab7..8cf5f887 100644 --- a/po/pl.po +++ b/po/pl.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-01 01:49-0400\n" +"POT-Creation-Date: 2023-06-01 02:19-0400\n" "PO-Revision-Date: 2023-05-25 13:37+0200\n" "Last-Translator: Matthaiks\n" "Language-Team: Polish\n" @@ -52,148 +52,148 @@ msgstr "OK" msgid "FAILED" msgstr "NIEPOWODZENIE" -#: src/Common/LinuxKernel.vala:390 +#: src/Common/LinuxKernel.vala:393 msgid "Found installed" msgstr "Znaleziono zainstalowane" -#: src/Common/LinuxKernel.vala:391 +#: src/Common/LinuxKernel.vala:394 msgid "locked" msgstr "zablokowane" -#: src/Common/LinuxKernel.vala:473 src/Common/LinuxKernel.vala:996 -#: src/Common/LinuxKernel.vala:1086 +#: src/Common/LinuxKernel.vala:476 src/Common/LinuxKernel.vala:999 +#: src/Common/LinuxKernel.vala:1089 msgid "is locked." msgstr "jest zablokowane." -#: src/Common/LinuxKernel.vala:666 src/Gtk/MainWindow.vala:517 +#: src/Common/LinuxKernel.vala:669 src/Gtk/MainWindow.vala:517 msgid "Running" msgstr "Uruchomione" -#: src/Common/LinuxKernel.vala:667 +#: src/Common/LinuxKernel.vala:670 msgid "Installed" msgstr "Zainstalowane" -#: src/Common/LinuxKernel.vala:668 +#: src/Common/LinuxKernel.vala:671 msgid "Invalid" msgstr "Nieprawidłowe" -#: src/Common/LinuxKernel.vala:753 +#: src/Common/LinuxKernel.vala:756 msgid "Packages Available" msgstr "Dostępne pakiety" -#: src/Common/LinuxKernel.vala:759 +#: src/Common/LinuxKernel.vala:762 msgid "Packages Installed" msgstr "Pakiety zainstalowane" -#: src/Common/LinuxKernel.vala:784 src/lib/TeeJee.FileSystem.vala:103 +#: src/Common/LinuxKernel.vala:787 src/lib/TeeJee.FileSystem.vala:103 msgid "File not found" msgstr "Nie odnaleziono pliku" -#: src/Common/LinuxKernel.vala:878 +#: src/Common/LinuxKernel.vala:881 msgid "Available Kernels" msgstr "Dostępne jądra" -#: src/Common/LinuxKernel.vala:913 src/Gtk/MainWindow.vala:119 +#: src/Common/LinuxKernel.vala:916 src/Gtk/MainWindow.vala:119 msgid "Kernel" msgstr "Jądro" -#: src/Common/LinuxKernel.vala:913 +#: src/Common/LinuxKernel.vala:916 #, fuzzy msgid "not found" msgstr "Nie odnaleziono pliku" -#: src/Common/LinuxKernel.vala:920 +#: src/Common/LinuxKernel.vala:923 #, fuzzy msgid "Download: no downloadable kernels specified" msgstr "Nie określono polecenia" -#: src/Common/LinuxKernel.vala:940 +#: src/Common/LinuxKernel.vala:943 msgid "enabled" msgstr "włączone" -#: src/Common/LinuxKernel.vala:964 +#: src/Common/LinuxKernel.vala:967 msgid "Downloading" msgstr "Pobieranie" -#: src/Common/LinuxKernel.vala:982 +#: src/Common/LinuxKernel.vala:985 #, fuzzy msgid "Installing selected kernels" msgstr "Odinstalowanie wybranych jąder" -#: src/Common/LinuxKernel.vala:988 src/Common/LinuxKernel.vala:1026 +#: src/Common/LinuxKernel.vala:991 src/Common/LinuxKernel.vala:1029 #, fuzzy msgid "Requested" msgstr "zażądane" -#: src/Common/LinuxKernel.vala:991 +#: src/Common/LinuxKernel.vala:994 msgid "is already installed." msgstr "jest już zainstalowane." -#: src/Common/LinuxKernel.vala:1001 +#: src/Common/LinuxKernel.vala:1004 msgid "download failed." msgstr "" -#: src/Common/LinuxKernel.vala:1009 +#: src/Common/LinuxKernel.vala:1012 #, fuzzy msgid "Install: no installable kernels secified" msgstr "Nie określono polecenia" -#: src/Common/LinuxKernel.vala:1022 +#: src/Common/LinuxKernel.vala:1025 msgid "Uninstalling selected kernels" msgstr "Odinstalowanie wybranych jąder" -#: src/Common/LinuxKernel.vala:1029 +#: src/Common/LinuxKernel.vala:1032 #, fuzzy msgid "Not uninstalling the currently running kernel" msgstr "bez odinstalowywania aktualnie uruchomionego jądra" -#: src/Common/LinuxKernel.vala:1034 +#: src/Common/LinuxKernel.vala:1037 #, fuzzy msgid "is locked" msgstr "jest zablokowane." -#: src/Common/LinuxKernel.vala:1042 +#: src/Common/LinuxKernel.vala:1045 msgid "found" msgstr "znalezione" -#: src/Common/LinuxKernel.vala:1046 +#: src/Common/LinuxKernel.vala:1049 msgid "Uninstall: no uninstallable packages found" msgstr "" -#: src/Common/LinuxKernel.vala:1082 +#: src/Common/LinuxKernel.vala:1085 msgid "is the highest installed version." msgstr "to najwyższa zainstalowana wersja." -#: src/Common/LinuxKernel.vala:1095 +#: src/Common/LinuxKernel.vala:1098 msgid "Could not find running kernel in list" msgstr "Nie można znaleźć uruchomionego jądra na liście" -#: src/Common/LinuxKernel.vala:1100 +#: src/Common/LinuxKernel.vala:1103 msgid "Could not find any kernels to uninstall" msgstr "Nie można znaleźć żadnych jąder do odinstalowania" -#: src/Common/LinuxKernel.vala:1108 +#: src/Common/LinuxKernel.vala:1111 msgid "The following kernels will be uninstalled" msgstr "Następujące jądra zostaną odinstalowane" -#: src/Common/LinuxKernel.vala:1112 +#: src/Common/LinuxKernel.vala:1115 msgid "Continue ?" msgstr "Kontynuować?" -#: src/Common/LinuxKernel.vala:1134 src/Console/AppConsole.vala:215 +#: src/Common/LinuxKernel.vala:1137 src/Console/AppConsole.vala:215 msgid "Latest update" msgstr "Najnowsza aktualizacja" -#: src/Common/LinuxKernel.vala:1145 src/Console/AppConsole.vala:222 +#: src/Common/LinuxKernel.vala:1148 src/Console/AppConsole.vala:222 msgid "Latest point update" msgstr "Najnowsza aktualizacja punktowa" -#: src/Common/LinuxKernel.vala:1153 src/Console/AppConsole.vala:227 +#: src/Common/LinuxKernel.vala:1156 src/Console/AppConsole.vala:227 #: src/Console/AppConsole.vala:242 msgid "No updates found" msgstr "Nie znaleziono aktualizacji" -#: src/Common/LinuxKernel.vala:1162 +#: src/Common/LinuxKernel.vala:1165 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Zainstalować wersję jądra %s? (t/n): " diff --git a/po/ru.po b/po/ru.po index fa299ff0..b098877f 100644 --- a/po/ru.po +++ b/po/ru.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-01 01:49-0400\n" +"POT-Creation-Date: 2023-06-01 02:19-0400\n" "PO-Revision-Date: 2023-04-17 20:16+0300\n" "Last-Translator: Danik2343 \n" "Language-Team: Russian\n" @@ -53,148 +53,148 @@ msgstr "OK" msgid "FAILED" msgstr "НЕУДАВШИЙСЯ" -#: src/Common/LinuxKernel.vala:390 +#: src/Common/LinuxKernel.vala:393 msgid "Found installed" msgstr "Найдено установлененное" -#: src/Common/LinuxKernel.vala:391 +#: src/Common/LinuxKernel.vala:394 msgid "locked" msgstr "" -#: src/Common/LinuxKernel.vala:473 src/Common/LinuxKernel.vala:996 -#: src/Common/LinuxKernel.vala:1086 +#: src/Common/LinuxKernel.vala:476 src/Common/LinuxKernel.vala:999 +#: src/Common/LinuxKernel.vala:1089 msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:666 src/Gtk/MainWindow.vala:517 +#: src/Common/LinuxKernel.vala:669 src/Gtk/MainWindow.vala:517 msgid "Running" msgstr "Используется" -#: src/Common/LinuxKernel.vala:667 +#: src/Common/LinuxKernel.vala:670 msgid "Installed" msgstr "Установлено" -#: src/Common/LinuxKernel.vala:668 +#: src/Common/LinuxKernel.vala:671 msgid "Invalid" msgstr "Негодный" -#: src/Common/LinuxKernel.vala:753 +#: src/Common/LinuxKernel.vala:756 msgid "Packages Available" msgstr "Доступные пакеты" -#: src/Common/LinuxKernel.vala:759 +#: src/Common/LinuxKernel.vala:762 msgid "Packages Installed" msgstr "Установленные пакеты" -#: src/Common/LinuxKernel.vala:784 src/lib/TeeJee.FileSystem.vala:103 +#: src/Common/LinuxKernel.vala:787 src/lib/TeeJee.FileSystem.vala:103 msgid "File not found" msgstr "Файл не найден" -#: src/Common/LinuxKernel.vala:878 +#: src/Common/LinuxKernel.vala:881 msgid "Available Kernels" msgstr "Доступные ядра" -#: src/Common/LinuxKernel.vala:913 src/Gtk/MainWindow.vala:119 +#: src/Common/LinuxKernel.vala:916 src/Gtk/MainWindow.vala:119 msgid "Kernel" msgstr "Ядро" -#: src/Common/LinuxKernel.vala:913 +#: src/Common/LinuxKernel.vala:916 #, fuzzy msgid "not found" msgstr "Файл не найден" -#: src/Common/LinuxKernel.vala:920 +#: src/Common/LinuxKernel.vala:923 #, fuzzy msgid "Download: no downloadable kernels specified" msgstr "Команда не указана" -#: src/Common/LinuxKernel.vala:940 +#: src/Common/LinuxKernel.vala:943 msgid "enabled" msgstr "включено" -#: src/Common/LinuxKernel.vala:964 +#: src/Common/LinuxKernel.vala:967 msgid "Downloading" msgstr "Загрузки" -#: src/Common/LinuxKernel.vala:982 +#: src/Common/LinuxKernel.vala:985 #, fuzzy msgid "Installing selected kernels" msgstr "Удаление выбранных ядер" -#: src/Common/LinuxKernel.vala:988 src/Common/LinuxKernel.vala:1026 +#: src/Common/LinuxKernel.vala:991 src/Common/LinuxKernel.vala:1029 #, fuzzy msgid "Requested" msgstr "запрошено" -#: src/Common/LinuxKernel.vala:991 +#: src/Common/LinuxKernel.vala:994 msgid "is already installed." msgstr "уже установлен." -#: src/Common/LinuxKernel.vala:1001 +#: src/Common/LinuxKernel.vala:1004 msgid "download failed." msgstr "" -#: src/Common/LinuxKernel.vala:1009 +#: src/Common/LinuxKernel.vala:1012 #, fuzzy msgid "Install: no installable kernels secified" msgstr "Команда не указана" -#: src/Common/LinuxKernel.vala:1022 +#: src/Common/LinuxKernel.vala:1025 msgid "Uninstalling selected kernels" msgstr "Удаление выбранных ядер" -#: src/Common/LinuxKernel.vala:1029 +#: src/Common/LinuxKernel.vala:1032 #, fuzzy msgid "Not uninstalling the currently running kernel" msgstr "не удаляет текущее работающее ядро" -#: src/Common/LinuxKernel.vala:1034 +#: src/Common/LinuxKernel.vala:1037 msgid "is locked" msgstr "" -#: src/Common/LinuxKernel.vala:1042 +#: src/Common/LinuxKernel.vala:1045 msgid "found" msgstr "найдено" -#: src/Common/LinuxKernel.vala:1046 +#: src/Common/LinuxKernel.vala:1049 msgid "Uninstall: no uninstallable packages found" msgstr "" -#: src/Common/LinuxKernel.vala:1082 +#: src/Common/LinuxKernel.vala:1085 #, fuzzy msgid "is the highest installed version." msgstr "Удаление всех установленных версий, кроме самой высокой" -#: src/Common/LinuxKernel.vala:1095 +#: src/Common/LinuxKernel.vala:1098 msgid "Could not find running kernel in list" msgstr "Could not find running kernel in list" -#: src/Common/LinuxKernel.vala:1100 +#: src/Common/LinuxKernel.vala:1103 msgid "Could not find any kernels to uninstall" msgstr "Не удалось найти ядра для деинсталляции" -#: src/Common/LinuxKernel.vala:1108 +#: src/Common/LinuxKernel.vala:1111 msgid "The following kernels will be uninstalled" msgstr "Следующие ядра будут удалены" -#: src/Common/LinuxKernel.vala:1112 +#: src/Common/LinuxKernel.vala:1115 msgid "Continue ?" msgstr "Продолжить ?" -#: src/Common/LinuxKernel.vala:1134 src/Console/AppConsole.vala:215 +#: src/Common/LinuxKernel.vala:1137 src/Console/AppConsole.vala:215 msgid "Latest update" msgstr "Последнее обновление" -#: src/Common/LinuxKernel.vala:1145 src/Console/AppConsole.vala:222 +#: src/Common/LinuxKernel.vala:1148 src/Console/AppConsole.vala:222 msgid "Latest point update" msgstr "Последнее обновление пунктов" -#: src/Common/LinuxKernel.vala:1153 src/Console/AppConsole.vala:227 +#: src/Common/LinuxKernel.vala:1156 src/Console/AppConsole.vala:227 #: src/Console/AppConsole.vala:242 msgid "No updates found" msgstr "Обновлений не найдено" -#: src/Common/LinuxKernel.vala:1162 +#: src/Common/LinuxKernel.vala:1165 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Установить версию ядра %s ? (y/n): " diff --git a/po/sv.po b/po/sv.po index eb8cb6a4..0bb89377 100644 --- a/po/sv.po +++ b/po/sv.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-01 01:49-0400\n" +"POT-Creation-Date: 2023-06-01 02:19-0400\n" "PO-Revision-Date: 2018-01-13 16:56+0100\n" "Last-Translator: Åke Engelbrektson \n" "Language-Team:Swedish\n" @@ -53,148 +53,148 @@ msgstr "OK" msgid "FAILED" msgstr "MISSLYCKADES" -#: src/Common/LinuxKernel.vala:390 +#: src/Common/LinuxKernel.vala:393 msgid "Found installed" msgstr "Hittade installerat" -#: src/Common/LinuxKernel.vala:391 +#: src/Common/LinuxKernel.vala:394 msgid "locked" msgstr "" -#: src/Common/LinuxKernel.vala:473 src/Common/LinuxKernel.vala:996 -#: src/Common/LinuxKernel.vala:1086 +#: src/Common/LinuxKernel.vala:476 src/Common/LinuxKernel.vala:999 +#: src/Common/LinuxKernel.vala:1089 msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:666 src/Gtk/MainWindow.vala:517 +#: src/Common/LinuxKernel.vala:669 src/Gtk/MainWindow.vala:517 msgid "Running" msgstr "Körs" -#: src/Common/LinuxKernel.vala:667 +#: src/Common/LinuxKernel.vala:670 msgid "Installed" msgstr "Installerad" -#: src/Common/LinuxKernel.vala:668 +#: src/Common/LinuxKernel.vala:671 msgid "Invalid" msgstr "Ogiltig" -#: src/Common/LinuxKernel.vala:753 +#: src/Common/LinuxKernel.vala:756 msgid "Packages Available" msgstr "Tillgängliga paket" -#: src/Common/LinuxKernel.vala:759 +#: src/Common/LinuxKernel.vala:762 msgid "Packages Installed" msgstr "Installerade paket" -#: src/Common/LinuxKernel.vala:784 src/lib/TeeJee.FileSystem.vala:103 +#: src/Common/LinuxKernel.vala:787 src/lib/TeeJee.FileSystem.vala:103 msgid "File not found" msgstr "Filen kan inte hittas" -#: src/Common/LinuxKernel.vala:878 +#: src/Common/LinuxKernel.vala:881 msgid "Available Kernels" msgstr "Tillgängliga kärnor" -#: src/Common/LinuxKernel.vala:913 src/Gtk/MainWindow.vala:119 +#: src/Common/LinuxKernel.vala:916 src/Gtk/MainWindow.vala:119 msgid "Kernel" msgstr "Kärna" -#: src/Common/LinuxKernel.vala:913 +#: src/Common/LinuxKernel.vala:916 #, fuzzy msgid "not found" msgstr "Filen kan inte hittas" -#: src/Common/LinuxKernel.vala:920 +#: src/Common/LinuxKernel.vala:923 #, fuzzy msgid "Download: no downloadable kernels specified" msgstr "Kommandot har inte angetts" -#: src/Common/LinuxKernel.vala:940 +#: src/Common/LinuxKernel.vala:943 msgid "enabled" msgstr "aktiverat" -#: src/Common/LinuxKernel.vala:964 +#: src/Common/LinuxKernel.vala:967 msgid "Downloading" msgstr "Ladda ner" -#: src/Common/LinuxKernel.vala:982 +#: src/Common/LinuxKernel.vala:985 #, fuzzy msgid "Installing selected kernels" msgstr "Avinstallera valda kärnor" -#: src/Common/LinuxKernel.vala:988 src/Common/LinuxKernel.vala:1026 +#: src/Common/LinuxKernel.vala:991 src/Common/LinuxKernel.vala:1029 #, fuzzy msgid "Requested" msgstr "begärd" -#: src/Common/LinuxKernel.vala:991 +#: src/Common/LinuxKernel.vala:994 msgid "is already installed." msgstr "är redan installerat." -#: src/Common/LinuxKernel.vala:1001 +#: src/Common/LinuxKernel.vala:1004 msgid "download failed." msgstr "" -#: src/Common/LinuxKernel.vala:1009 +#: src/Common/LinuxKernel.vala:1012 #, fuzzy msgid "Install: no installable kernels secified" msgstr "Kommandot har inte angetts" -#: src/Common/LinuxKernel.vala:1022 +#: src/Common/LinuxKernel.vala:1025 msgid "Uninstalling selected kernels" msgstr "Avinstallera valda kärnor" -#: src/Common/LinuxKernel.vala:1029 +#: src/Common/LinuxKernel.vala:1032 #, fuzzy msgid "Not uninstalling the currently running kernel" msgstr "Avinstallera inte den kärna som körs, för närvarande" -#: src/Common/LinuxKernel.vala:1034 +#: src/Common/LinuxKernel.vala:1037 msgid "is locked" msgstr "" -#: src/Common/LinuxKernel.vala:1042 +#: src/Common/LinuxKernel.vala:1045 msgid "found" msgstr "grunda" -#: src/Common/LinuxKernel.vala:1046 +#: src/Common/LinuxKernel.vala:1049 msgid "Uninstall: no uninstallable packages found" msgstr "" -#: src/Common/LinuxKernel.vala:1082 +#: src/Common/LinuxKernel.vala:1085 #, fuzzy msgid "is the highest installed version." msgstr "Avinstallera alla utom den högsta installerade versionen" -#: src/Common/LinuxKernel.vala:1095 +#: src/Common/LinuxKernel.vala:1098 msgid "Could not find running kernel in list" msgstr "Det gick inte att hitta kernel som körs i listan" -#: src/Common/LinuxKernel.vala:1100 +#: src/Common/LinuxKernel.vala:1103 msgid "Could not find any kernels to uninstall" msgstr "Det gick inte att hitta några kärnor att avinstallera" -#: src/Common/LinuxKernel.vala:1108 +#: src/Common/LinuxKernel.vala:1111 msgid "The following kernels will be uninstalled" msgstr "Följande kärnor kommer att avinstalleras" -#: src/Common/LinuxKernel.vala:1112 +#: src/Common/LinuxKernel.vala:1115 msgid "Continue ?" msgstr "Fortsätta?" -#: src/Common/LinuxKernel.vala:1134 src/Console/AppConsole.vala:215 +#: src/Common/LinuxKernel.vala:1137 src/Console/AppConsole.vala:215 msgid "Latest update" msgstr "Senaste uppdatering" -#: src/Common/LinuxKernel.vala:1145 src/Console/AppConsole.vala:222 +#: src/Common/LinuxKernel.vala:1148 src/Console/AppConsole.vala:222 msgid "Latest point update" msgstr "Senaste punktuppdatering" -#: src/Common/LinuxKernel.vala:1153 src/Console/AppConsole.vala:227 +#: src/Common/LinuxKernel.vala:1156 src/Console/AppConsole.vala:227 #: src/Console/AppConsole.vala:242 msgid "No updates found" msgstr "Inga uppdateringar hittades" -#: src/Common/LinuxKernel.vala:1162 +#: src/Common/LinuxKernel.vala:1165 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Installera kärnversion %s ? (j/n):" diff --git a/po/tr.po b/po/tr.po index 658eed85..cec399f0 100644 --- a/po/tr.po +++ b/po/tr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-01 01:49-0400\n" +"POT-Creation-Date: 2023-06-01 02:19-0400\n" "PO-Revision-Date: 2022-08-06 16:48+0300\n" "Last-Translator: Sabri Ünal \n" "Language-Team: Turkish\n" @@ -53,149 +53,149 @@ msgstr "Tamam" msgid "FAILED" msgstr "BAŞARISIZ" -#: src/Common/LinuxKernel.vala:390 +#: src/Common/LinuxKernel.vala:393 msgid "Found installed" msgstr "Yüklü bulundu" -#: src/Common/LinuxKernel.vala:391 +#: src/Common/LinuxKernel.vala:394 msgid "locked" msgstr "" -#: src/Common/LinuxKernel.vala:473 src/Common/LinuxKernel.vala:996 -#: src/Common/LinuxKernel.vala:1086 +#: src/Common/LinuxKernel.vala:476 src/Common/LinuxKernel.vala:999 +#: src/Common/LinuxKernel.vala:1089 msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:666 src/Gtk/MainWindow.vala:517 +#: src/Common/LinuxKernel.vala:669 src/Gtk/MainWindow.vala:517 msgid "Running" msgstr "Çalışıyor" -#: src/Common/LinuxKernel.vala:667 +#: src/Common/LinuxKernel.vala:670 msgid "Installed" msgstr "Kurulu" -#: src/Common/LinuxKernel.vala:668 +#: src/Common/LinuxKernel.vala:671 msgid "Invalid" msgstr "Geçersiz" -#: src/Common/LinuxKernel.vala:753 +#: src/Common/LinuxKernel.vala:756 msgid "Packages Available" msgstr "Mevcut Paketler" -#: src/Common/LinuxKernel.vala:759 +#: src/Common/LinuxKernel.vala:762 msgid "Packages Installed" msgstr "Kurulu Paketler" -#: src/Common/LinuxKernel.vala:784 src/lib/TeeJee.FileSystem.vala:103 +#: src/Common/LinuxKernel.vala:787 src/lib/TeeJee.FileSystem.vala:103 msgid "File not found" msgstr "Dosya bulunamadı" -#: src/Common/LinuxKernel.vala:878 +#: src/Common/LinuxKernel.vala:881 msgid "Available Kernels" msgstr "Mevcut Çekirdekler" -#: src/Common/LinuxKernel.vala:913 src/Gtk/MainWindow.vala:119 +#: src/Common/LinuxKernel.vala:916 src/Gtk/MainWindow.vala:119 msgid "Kernel" msgstr "Çekirdek" -#: src/Common/LinuxKernel.vala:913 +#: src/Common/LinuxKernel.vala:916 #, fuzzy msgid "not found" msgstr "Dosya bulunamadı" -#: src/Common/LinuxKernel.vala:920 +#: src/Common/LinuxKernel.vala:923 #, fuzzy msgid "Download: no downloadable kernels specified" msgstr "Komut belirtilmedi" -#: src/Common/LinuxKernel.vala:940 +#: src/Common/LinuxKernel.vala:943 msgid "enabled" msgstr "etkin" -#: src/Common/LinuxKernel.vala:964 +#: src/Common/LinuxKernel.vala:967 msgid "Downloading" msgstr "Indiriyor" -#: src/Common/LinuxKernel.vala:982 +#: src/Common/LinuxKernel.vala:985 #, fuzzy msgid "Installing selected kernels" msgstr "Seçili çekirdekleri kaldırma" -#: src/Common/LinuxKernel.vala:988 src/Common/LinuxKernel.vala:1026 +#: src/Common/LinuxKernel.vala:991 src/Common/LinuxKernel.vala:1029 #, fuzzy msgid "Requested" msgstr "istenen" -#: src/Common/LinuxKernel.vala:991 +#: src/Common/LinuxKernel.vala:994 msgid "is already installed." msgstr "zaten yüklü." -#: src/Common/LinuxKernel.vala:1001 +#: src/Common/LinuxKernel.vala:1004 msgid "download failed." msgstr "" -#: src/Common/LinuxKernel.vala:1009 +#: src/Common/LinuxKernel.vala:1012 #, fuzzy msgid "Install: no installable kernels secified" msgstr "Komut belirtilmedi" -#: src/Common/LinuxKernel.vala:1022 +#: src/Common/LinuxKernel.vala:1025 msgid "Uninstalling selected kernels" msgstr "Seçili çekirdekleri kaldırma" -#: src/Common/LinuxKernel.vala:1029 +#: src/Common/LinuxKernel.vala:1032 #, fuzzy msgid "Not uninstalling the currently running kernel" msgstr "çalışmakta olan çekirdeğin kaldırılmaması" -#: src/Common/LinuxKernel.vala:1034 +#: src/Common/LinuxKernel.vala:1037 msgid "is locked" msgstr "" -#: src/Common/LinuxKernel.vala:1042 +#: src/Common/LinuxKernel.vala:1045 msgid "found" msgstr "kurmak" -#: src/Common/LinuxKernel.vala:1046 +#: src/Common/LinuxKernel.vala:1049 msgid "Uninstall: no uninstallable packages found" msgstr "" -#: src/Common/LinuxKernel.vala:1082 +#: src/Common/LinuxKernel.vala:1085 #, fuzzy msgid "is the highest installed version." msgstr "En yüksek yüklü sürüm dışındaki tüm sürümleri kaldırın" -#: src/Common/LinuxKernel.vala:1095 +#: src/Common/LinuxKernel.vala:1098 msgid "Could not find running kernel in list" msgstr "Listede çalışan çekirdek bulunamadı" -#: src/Common/LinuxKernel.vala:1100 +#: src/Common/LinuxKernel.vala:1103 msgid "Could not find any kernels to uninstall" msgstr "Kaldırılacak çekirdek bulunamadı" -#: src/Common/LinuxKernel.vala:1108 +#: src/Common/LinuxKernel.vala:1111 msgid "The following kernels will be uninstalled" msgstr "Aşağıdaki çekirdekler kaldırılacaktır" -#: src/Common/LinuxKernel.vala:1112 +#: src/Common/LinuxKernel.vala:1115 msgid "Continue ?" msgstr "Devam edilsin mi?" -#: src/Common/LinuxKernel.vala:1134 src/Console/AppConsole.vala:215 +#: src/Common/LinuxKernel.vala:1137 src/Console/AppConsole.vala:215 msgid "Latest update" msgstr "Son güncelleme" # Point burada point release anlamında kullanılıyor. Örneğin 5.10.x sayısının en sonundaki x rakamı point release/nokta sürüm oluyor. -#: src/Common/LinuxKernel.vala:1145 src/Console/AppConsole.vala:222 +#: src/Common/LinuxKernel.vala:1148 src/Console/AppConsole.vala:222 msgid "Latest point update" msgstr "Son nokta güncellemesi" -#: src/Common/LinuxKernel.vala:1153 src/Console/AppConsole.vala:227 +#: src/Common/LinuxKernel.vala:1156 src/Console/AppConsole.vala:227 #: src/Console/AppConsole.vala:242 msgid "No updates found" msgstr "Güncelleme bulunamadı" -#: src/Common/LinuxKernel.vala:1162 +#: src/Common/LinuxKernel.vala:1165 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Linux Çekirdek Sürümü %s Kurulsun mu? (e/h): " diff --git a/po/uk.po b/po/uk.po index c13a4e2d..26297238 100644 --- a/po/uk.po +++ b/po/uk.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-01 01:49-0400\n" +"POT-Creation-Date: 2023-06-01 02:19-0400\n" "PO-Revision-Date: 2019-07-25 11:00+0300\n" "Last-Translator: Serhii Golovko \n" "Language-Team: Ukranian\n" @@ -53,149 +53,149 @@ msgstr "Добре" msgid "FAILED" msgstr "НЕ ВДАЛОСЯ" -#: src/Common/LinuxKernel.vala:390 +#: src/Common/LinuxKernel.vala:393 msgid "Found installed" msgstr "Знайдено встановленим" -#: src/Common/LinuxKernel.vala:391 +#: src/Common/LinuxKernel.vala:394 msgid "locked" msgstr "заблокований" -#: src/Common/LinuxKernel.vala:473 src/Common/LinuxKernel.vala:996 -#: src/Common/LinuxKernel.vala:1086 +#: src/Common/LinuxKernel.vala:476 src/Common/LinuxKernel.vala:999 +#: src/Common/LinuxKernel.vala:1089 msgid "is locked." msgstr "заблоковано." -#: src/Common/LinuxKernel.vala:666 src/Gtk/MainWindow.vala:517 +#: src/Common/LinuxKernel.vala:669 src/Gtk/MainWindow.vala:517 msgid "Running" msgstr "Використовується" -#: src/Common/LinuxKernel.vala:667 +#: src/Common/LinuxKernel.vala:670 msgid "Installed" msgstr "Встановлено" -#: src/Common/LinuxKernel.vala:668 +#: src/Common/LinuxKernel.vala:671 msgid "Invalid" msgstr "Інвалід" -#: src/Common/LinuxKernel.vala:753 +#: src/Common/LinuxKernel.vala:756 msgid "Packages Available" msgstr "Доступні пакети" -#: src/Common/LinuxKernel.vala:759 +#: src/Common/LinuxKernel.vala:762 msgid "Packages Installed" msgstr "Встановлені пакети" -#: src/Common/LinuxKernel.vala:784 src/lib/TeeJee.FileSystem.vala:103 +#: src/Common/LinuxKernel.vala:787 src/lib/TeeJee.FileSystem.vala:103 msgid "File not found" msgstr "Файл не знайдено" -#: src/Common/LinuxKernel.vala:878 +#: src/Common/LinuxKernel.vala:881 msgid "Available Kernels" msgstr "Доступні ядра" -#: src/Common/LinuxKernel.vala:913 src/Gtk/MainWindow.vala:119 +#: src/Common/LinuxKernel.vala:916 src/Gtk/MainWindow.vala:119 msgid "Kernel" msgstr "Ядро" -#: src/Common/LinuxKernel.vala:913 +#: src/Common/LinuxKernel.vala:916 #, fuzzy msgid "not found" msgstr "Файл не знайдено" -#: src/Common/LinuxKernel.vala:920 +#: src/Common/LinuxKernel.vala:923 #, fuzzy msgid "Download: no downloadable kernels specified" msgstr "Команда не вказана" -#: src/Common/LinuxKernel.vala:940 +#: src/Common/LinuxKernel.vala:943 msgid "enabled" msgstr "увімкнено" -#: src/Common/LinuxKernel.vala:964 +#: src/Common/LinuxKernel.vala:967 msgid "Downloading" msgstr "Завантаження" -#: src/Common/LinuxKernel.vala:982 +#: src/Common/LinuxKernel.vala:985 #, fuzzy msgid "Installing selected kernels" msgstr "Видаліть конкретні ядра" -#: src/Common/LinuxKernel.vala:988 src/Common/LinuxKernel.vala:1026 +#: src/Common/LinuxKernel.vala:991 src/Common/LinuxKernel.vala:1029 #, fuzzy msgid "Requested" msgstr "запитуваний" -#: src/Common/LinuxKernel.vala:991 +#: src/Common/LinuxKernel.vala:994 msgid "is already installed." msgstr "вже встановлено." -#: src/Common/LinuxKernel.vala:1001 +#: src/Common/LinuxKernel.vala:1004 msgid "download failed." msgstr "" -#: src/Common/LinuxKernel.vala:1009 +#: src/Common/LinuxKernel.vala:1012 #, fuzzy msgid "Install: no installable kernels secified" msgstr "Команда не вказана" -#: src/Common/LinuxKernel.vala:1022 +#: src/Common/LinuxKernel.vala:1025 msgid "Uninstalling selected kernels" msgstr "Видаліть конкретні ядра" -#: src/Common/LinuxKernel.vala:1029 +#: src/Common/LinuxKernel.vala:1032 #, fuzzy msgid "Not uninstalling the currently running kernel" msgstr "не видалятиме поточне запущене ядро" -#: src/Common/LinuxKernel.vala:1034 +#: src/Common/LinuxKernel.vala:1037 #, fuzzy msgid "is locked" msgstr "заблоковано." -#: src/Common/LinuxKernel.vala:1042 +#: src/Common/LinuxKernel.vala:1045 msgid "found" msgstr "знайдено" -#: src/Common/LinuxKernel.vala:1046 +#: src/Common/LinuxKernel.vala:1049 msgid "Uninstall: no uninstallable packages found" msgstr "" -#: src/Common/LinuxKernel.vala:1082 +#: src/Common/LinuxKernel.vala:1085 #, fuzzy msgid "is the highest installed version." msgstr "Видаліть усі, крім найвищої встановленої версії" -#: src/Common/LinuxKernel.vala:1095 +#: src/Common/LinuxKernel.vala:1098 msgid "Could not find running kernel in list" msgstr "Не вдалося знайти запущене ядро у списку!" -#: src/Common/LinuxKernel.vala:1100 +#: src/Common/LinuxKernel.vala:1103 msgid "Could not find any kernels to uninstall" msgstr "Не вдалося знайти жодне ядро для вилучення" -#: src/Common/LinuxKernel.vala:1108 +#: src/Common/LinuxKernel.vala:1111 msgid "The following kernels will be uninstalled" msgstr "Наступні ядра будуть видалені" -#: src/Common/LinuxKernel.vala:1112 +#: src/Common/LinuxKernel.vala:1115 msgid "Continue ?" msgstr "Продовжувати ?" -#: src/Common/LinuxKernel.vala:1134 src/Console/AppConsole.vala:215 +#: src/Common/LinuxKernel.vala:1137 src/Console/AppConsole.vala:215 msgid "Latest update" msgstr "Останнє оновлення" -#: src/Common/LinuxKernel.vala:1145 src/Console/AppConsole.vala:222 +#: src/Common/LinuxKernel.vala:1148 src/Console/AppConsole.vala:222 msgid "Latest point update" msgstr "Остання точка оновлення" -#: src/Common/LinuxKernel.vala:1153 src/Console/AppConsole.vala:227 +#: src/Common/LinuxKernel.vala:1156 src/Console/AppConsole.vala:227 #: src/Console/AppConsole.vala:242 msgid "No updates found" msgstr "Оновлень не знайдено" -#: src/Common/LinuxKernel.vala:1162 +#: src/Common/LinuxKernel.vala:1165 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Встановити Ядро Версії %s ? (так/ні): " diff --git a/src/Common/LinuxKernel.vala b/src/Common/LinuxKernel.vala index 8c3e9a91..b7e49e18 100644 --- a/src/Common/LinuxKernel.vala +++ b/src/Common/LinuxKernel.vala @@ -213,7 +213,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { //progress_count = 0; // find the oldest major version to include - update_threshold_major(true); + find_thresholds(true); // ===== download the main index.html listing all kernels ===== download_index(); @@ -336,7 +336,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { // read the main index.html listing all kernels private static void load_index() { vprint("load_index()",2); - if (THRESHOLD_MAJOR<0) update_threshold_major(true); + if (THRESHOLD_MAJOR<0) find_thresholds(true); if (THRESHOLD_MAJOR<0) { vprint("load_index(): THRESHOLD_MAJOR not initialized"); exit(1); } if (!file_exists(MAIN_INDEX_HTML)) return; @@ -355,7 +355,10 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { if (!rex.match(l, 0, out mi)) continue; v = mi.fetch(1); var k = new LinuxKernel(v); - if (k.version_major=0 && App.hide_unstable)) { delete_r(k.cache_subdir); continue; } + k.page_uri = PPA_URI + v; k.is_mainline = true; k.ppa_datetime = int64.parse(mi.fetch(2)+mi.fetch(3)+mi.fetch(4)+mi.fetch(5)+mi.fetch(6)); @@ -523,8 +526,8 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { // use that here and along the way delete the unwanted items from kernel_list[] // then mk_kernel_list() can just process that kernel_list[] // - public static void update_threshold_major(bool up=false) { - vprint("update_threshold_major()",2); + public static void find_thresholds(bool up=false) { + vprint("find_thresholds()",2); if (up || Package.dpkg_list.size<1) Package.mk_dpkg_list(); @@ -1053,7 +1056,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { public static void kunin_old(bool confirm) { vprint("kunin_old()",2); - update_threshold_major(true); + find_thresholds(true); download_index(); load_index(); check_installed(); diff --git a/src/Gtk/MainWindow.vala b/src/Gtk/MainWindow.vala index 0bbc75e9..0079c548 100644 --- a/src/Gtk/MainWindow.vala +++ b/src/Gtk/MainWindow.vala @@ -356,22 +356,8 @@ public class MainWindow : Window { dlg.run(); dlg.destroy(); - // allows leftover cache to stay, but faster for the user if (App.previous_majors != old_previous_majors || App.hide_unstable != old_hide_unstable) update_cache(); - -/* - // keeps the cache trimmed, but slow for the user - // instead, TODO: write a trim_cache() that can run during mk_kernel_list() or update_threshold_major() - // all that will do is scan the cache dirs and delete anything that isn't in the current kernel_list - int p = 0, r = 0; - if (App.previous_majors >= 0 && App.previous_majors < old_previous_majors) p--; // selection set shrank - if (App.previous_majors < 0 || App.previous_majors > old_previous_majors) p++; // selection set grew - if (App.hide_unstable==true && old_hide_unstable==false) r--; // selection set shrank - if (App.hide_unstable==false && old_hide_unstable==true) r++; // selection set grew - if (p<0 || r<0) reload_cache(); // if either one shrank, delete & reload - else if (p>0 || r>0) update_cache(); // if neither one shrank but either one grew, update but no need to delete -*/ } private void do_exit () { From 27e3b73002e284ed68cedcd2bef429c17840f910 Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Thu, 1 Jun 2023 03:14:33 -0400 Subject: [PATCH 346/567] nothing cleanups --- po/de.po | 20 ++++++++++---------- po/el.po | 20 ++++++++++---------- po/es.po | 20 ++++++++++---------- po/fr.po | 20 ++++++++++---------- po/hr.po | 20 ++++++++++---------- po/it.po | 20 ++++++++++---------- po/ko.po | 20 ++++++++++---------- po/messages.pot | 20 ++++++++++---------- po/nl.po | 20 ++++++++++---------- po/pl.po | 20 ++++++++++---------- po/ru.po | 20 ++++++++++---------- po/sv.po | 20 ++++++++++---------- po/tr.po | 20 ++++++++++---------- po/uk.po | 20 ++++++++++---------- src/Common/OSDNotify.vala | 2 -- src/Common/Package.vala | 1 - src/lib/TeeJee.FileSystem.vala | 16 ++++++++-------- src/lib/TeeJee.Misc.vala | 10 +++++----- 18 files changed, 153 insertions(+), 156 deletions(-) diff --git a/po/de.po b/po/de.po index 1d06be5d..aa462841 100644 --- a/po/de.po +++ b/po/de.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-01 02:19-0400\n" +"POT-Creation-Date: 2023-06-01 03:06-0400\n" "PO-Revision-Date: 2023-02-20 18:40+0100\n" "Last-Translator: Marvin Meysel \n" "Language-Team: German\n" @@ -66,7 +66,7 @@ msgstr "" msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:669 src/Gtk/MainWindow.vala:517 +#: src/Common/LinuxKernel.vala:669 src/Gtk/MainWindow.vala:503 msgid "Running" msgstr "Läuft" @@ -217,7 +217,7 @@ msgstr "" msgid "Notifications are disabled" msgstr "Benachrichtigungen sind deaktiviert" -#: src/Common/Package.vala:58 +#: src/Common/Package.vala:57 #, c-format msgid "File not found: %s" msgstr "Datei nicht gefunden: %s" @@ -431,28 +431,28 @@ msgstr "Über" msgid "Exit" msgstr "Ausgang" -#: src/Gtk/MainWindow.vala:423 +#: src/Gtk/MainWindow.vala:409 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Kernel-Upgrade-Dienstprogramm für Ubuntu-basierte Distributionen" -#: src/Gtk/MainWindow.vala:424 +#: src/Gtk/MainWindow.vala:410 msgid "Forked" msgstr "Gegabelte" -#: src/Gtk/MainWindow.vala:424 +#: src/Gtk/MainWindow.vala:410 msgid "Original" msgstr "Original" -#: src/Gtk/MainWindow.vala:453 +#: src/Gtk/MainWindow.vala:439 msgid "Updating kernels" msgstr "Aktualisieren von Kernels" -#: src/Gtk/MainWindow.vala:521 +#: src/Gtk/MainWindow.vala:507 msgid "available" msgstr "Verfügbar" -#: src/Gtk/MainWindow.vala:571 src/Gtk/MainWindow.vala:610 -#: src/Gtk/MainWindow.vala:644 +#: src/Gtk/MainWindow.vala:557 src/Gtk/MainWindow.vala:596 +#: src/Gtk/MainWindow.vala:630 msgid "DONE" msgstr "" diff --git a/po/el.po b/po/el.po index 5453966e..7dba6990 100644 --- a/po/el.po +++ b/po/el.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-01 02:19-0400\n" +"POT-Creation-Date: 2023-06-01 03:06-0400\n" "PO-Revision-Date: 2023-01-10 02:03-0600\n" "Last-Translator: Vasilis Kosmidis \n" "Language-Team: Greek\n" @@ -66,7 +66,7 @@ msgstr "" msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:669 src/Gtk/MainWindow.vala:517 +#: src/Common/LinuxKernel.vala:669 src/Gtk/MainWindow.vala:503 msgid "Running" msgstr "Ενεργός" @@ -218,7 +218,7 @@ msgstr "" msgid "Notifications are disabled" msgstr "Οι ειδοποιήσεις είναι απενεργοποιημένες" -#: src/Common/Package.vala:58 +#: src/Common/Package.vala:57 #, c-format msgid "File not found: %s" msgstr "Το αρχείο δεν βρέθηκε: %s" @@ -432,28 +432,28 @@ msgstr "Σχετικά" msgid "Exit" msgstr "Έξοδος" -#: src/Gtk/MainWindow.vala:423 +#: src/Gtk/MainWindow.vala:409 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Πρόγραμμα αναβάθμισης πυρήνα για διανομές που βασίζονται στο Ubuntu" -#: src/Gtk/MainWindow.vala:424 +#: src/Gtk/MainWindow.vala:410 msgid "Forked" msgstr "Forked" -#: src/Gtk/MainWindow.vala:424 +#: src/Gtk/MainWindow.vala:410 msgid "Original" msgstr "Πρωτότυπο" -#: src/Gtk/MainWindow.vala:453 +#: src/Gtk/MainWindow.vala:439 msgid "Updating kernels" msgstr "Ενημέρωση πυρήνων" -#: src/Gtk/MainWindow.vala:521 +#: src/Gtk/MainWindow.vala:507 msgid "available" msgstr "διαθέσιμος" -#: src/Gtk/MainWindow.vala:571 src/Gtk/MainWindow.vala:610 -#: src/Gtk/MainWindow.vala:644 +#: src/Gtk/MainWindow.vala:557 src/Gtk/MainWindow.vala:596 +#: src/Gtk/MainWindow.vala:630 msgid "DONE" msgstr "" diff --git a/po/es.po b/po/es.po index bf86264e..6eb8c0f0 100644 --- a/po/es.po +++ b/po/es.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-01 02:19-0400\n" +"POT-Creation-Date: 2023-06-01 03:06-0400\n" "PO-Revision-Date: 2018-01-03 02:03-0600\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish\n" @@ -66,7 +66,7 @@ msgstr "" msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:669 src/Gtk/MainWindow.vala:517 +#: src/Common/LinuxKernel.vala:669 src/Gtk/MainWindow.vala:503 msgid "Running" msgstr "En ejecución" @@ -218,7 +218,7 @@ msgstr "" msgid "Notifications are disabled" msgstr "Las notificaciones están deshabilitadas" -#: src/Common/Package.vala:58 +#: src/Common/Package.vala:57 #, c-format msgid "File not found: %s" msgstr "Archivo no encontrado: %s" @@ -431,29 +431,29 @@ msgstr "Acerca de" msgid "Exit" msgstr "Salida" -#: src/Gtk/MainWindow.vala:423 +#: src/Gtk/MainWindow.vala:409 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "" "Herramienta de renovación de núcleo para distribuciones basadas en Ubuntu" -#: src/Gtk/MainWindow.vala:424 +#: src/Gtk/MainWindow.vala:410 msgid "Forked" msgstr "Bifurcada" -#: src/Gtk/MainWindow.vala:424 +#: src/Gtk/MainWindow.vala:410 msgid "Original" msgstr "Original" -#: src/Gtk/MainWindow.vala:453 +#: src/Gtk/MainWindow.vala:439 msgid "Updating kernels" msgstr "Actualización de kernels" -#: src/Gtk/MainWindow.vala:521 +#: src/Gtk/MainWindow.vala:507 msgid "available" msgstr "disponibles" -#: src/Gtk/MainWindow.vala:571 src/Gtk/MainWindow.vala:610 -#: src/Gtk/MainWindow.vala:644 +#: src/Gtk/MainWindow.vala:557 src/Gtk/MainWindow.vala:596 +#: src/Gtk/MainWindow.vala:630 msgid "DONE" msgstr "" diff --git a/po/fr.po b/po/fr.po index 053b801f..956b4cb1 100644 --- a/po/fr.po +++ b/po/fr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-01 02:19-0400\n" +"POT-Creation-Date: 2023-06-01 03:06-0400\n" "PO-Revision-Date: 2018-08-05 15:50+0200\n" "Last-Translator: Yolateng0 \n" "Language-Team: French\n" @@ -66,7 +66,7 @@ msgstr "" msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:669 src/Gtk/MainWindow.vala:517 +#: src/Common/LinuxKernel.vala:669 src/Gtk/MainWindow.vala:503 msgid "Running" msgstr "Actuel" @@ -218,7 +218,7 @@ msgstr "" msgid "Notifications are disabled" msgstr "Les notifications sont désactivées" -#: src/Common/Package.vala:58 +#: src/Common/Package.vala:57 #, c-format msgid "File not found: %s" msgstr "Fichier introuvable : %s" @@ -431,30 +431,30 @@ msgstr "À propos" msgid "Exit" msgstr "Sortie" -#: src/Gtk/MainWindow.vala:423 +#: src/Gtk/MainWindow.vala:409 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "" "Utilitaire de mise à niveau des noyaux pour les distributions basées sur " "Ubuntu" -#: src/Gtk/MainWindow.vala:424 +#: src/Gtk/MainWindow.vala:410 msgid "Forked" msgstr "Forkée" -#: src/Gtk/MainWindow.vala:424 +#: src/Gtk/MainWindow.vala:410 msgid "Original" msgstr "Originale" -#: src/Gtk/MainWindow.vala:453 +#: src/Gtk/MainWindow.vala:439 msgid "Updating kernels" msgstr "Mise à jour des noyaux" -#: src/Gtk/MainWindow.vala:521 +#: src/Gtk/MainWindow.vala:507 msgid "available" msgstr "disponible" -#: src/Gtk/MainWindow.vala:571 src/Gtk/MainWindow.vala:610 -#: src/Gtk/MainWindow.vala:644 +#: src/Gtk/MainWindow.vala:557 src/Gtk/MainWindow.vala:596 +#: src/Gtk/MainWindow.vala:630 msgid "DONE" msgstr "" diff --git a/po/hr.po b/po/hr.po index 6b020aa3..026bb290 100644 --- a/po/hr.po +++ b/po/hr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-01 02:19-0400\n" +"POT-Creation-Date: 2023-06-01 03:06-0400\n" "PO-Revision-Date: 2022-09-22 12:13+0200\n" "Last-Translator: gogo \n" "Language-Team: Croatian\n" @@ -66,7 +66,7 @@ msgstr "" msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:669 src/Gtk/MainWindow.vala:517 +#: src/Common/LinuxKernel.vala:669 src/Gtk/MainWindow.vala:503 msgid "Running" msgstr "Pokrenuto" @@ -217,7 +217,7 @@ msgstr "" msgid "Notifications are disabled" msgstr "Obavijesti su onemogućene" -#: src/Common/Package.vala:58 +#: src/Common/Package.vala:57 #, c-format msgid "File not found: %s" msgstr "Datoteka nije pronađena: %s" @@ -430,28 +430,28 @@ msgstr "O programu" msgid "Exit" msgstr "Izlaz" -#: src/Gtk/MainWindow.vala:423 +#: src/Gtk/MainWindow.vala:409 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Alat za nadogradnju kernela Ubuntu temeljenih distribucija" -#: src/Gtk/MainWindow.vala:424 +#: src/Gtk/MainWindow.vala:410 msgid "Forked" msgstr "Forkano" -#: src/Gtk/MainWindow.vala:424 +#: src/Gtk/MainWindow.vala:410 msgid "Original" msgstr "Izvornik" -#: src/Gtk/MainWindow.vala:453 +#: src/Gtk/MainWindow.vala:439 msgid "Updating kernels" msgstr "Ažuriranje jezgri" -#: src/Gtk/MainWindow.vala:521 +#: src/Gtk/MainWindow.vala:507 msgid "available" msgstr "dostupno" -#: src/Gtk/MainWindow.vala:571 src/Gtk/MainWindow.vala:610 -#: src/Gtk/MainWindow.vala:644 +#: src/Gtk/MainWindow.vala:557 src/Gtk/MainWindow.vala:596 +#: src/Gtk/MainWindow.vala:630 msgid "DONE" msgstr "" diff --git a/po/it.po b/po/it.po index 12ff7f57..d5e37c3e 100644 --- a/po/it.po +++ b/po/it.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-01 02:19-0400\n" +"POT-Creation-Date: 2023-06-01 03:06-0400\n" "PO-Revision-Date: 2020-08-22 15:35+0100\n" "Last-Translator: Demetrio Mendozzi\n" "Language-Team: Italian\n" @@ -64,7 +64,7 @@ msgstr "" msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:669 src/Gtk/MainWindow.vala:517 +#: src/Common/LinuxKernel.vala:669 src/Gtk/MainWindow.vala:503 msgid "Running" msgstr "In esecuzione" @@ -216,7 +216,7 @@ msgstr "" msgid "Notifications are disabled" msgstr "Le notifiche sono disabilitate" -#: src/Common/Package.vala:58 +#: src/Common/Package.vala:57 #, c-format msgid "File not found: %s" msgstr "File non trovato: %s" @@ -431,28 +431,28 @@ msgstr "Informazioni" msgid "Exit" msgstr "Chiudi" -#: src/Gtk/MainWindow.vala:423 +#: src/Gtk/MainWindow.vala:409 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Utilità di aggiornamento del kernel per distribuzioni basate su Ubuntu" -#: src/Gtk/MainWindow.vala:424 +#: src/Gtk/MainWindow.vala:410 msgid "Forked" msgstr "Forked" -#: src/Gtk/MainWindow.vala:424 +#: src/Gtk/MainWindow.vala:410 msgid "Original" msgstr "Originale" -#: src/Gtk/MainWindow.vala:453 +#: src/Gtk/MainWindow.vala:439 msgid "Updating kernels" msgstr "Aggiornamento dei kernel" -#: src/Gtk/MainWindow.vala:521 +#: src/Gtk/MainWindow.vala:507 msgid "available" msgstr "disponibile" -#: src/Gtk/MainWindow.vala:571 src/Gtk/MainWindow.vala:610 -#: src/Gtk/MainWindow.vala:644 +#: src/Gtk/MainWindow.vala:557 src/Gtk/MainWindow.vala:596 +#: src/Gtk/MainWindow.vala:630 msgid "DONE" msgstr "" diff --git a/po/ko.po b/po/ko.po index 69a34eac..fdcef45f 100644 --- a/po/ko.po +++ b/po/ko.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-01 02:19-0400\n" +"POT-Creation-Date: 2023-06-01 03:06-0400\n" "PO-Revision-Date: 2022-09-28 11:48+0900\n" "Last-Translator: Kevin Kim \n" "Language-Team: Korean\n" @@ -66,7 +66,7 @@ msgstr "" msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:669 src/Gtk/MainWindow.vala:517 +#: src/Common/LinuxKernel.vala:669 src/Gtk/MainWindow.vala:503 msgid "Running" msgstr "구동 중" @@ -216,7 +216,7 @@ msgstr "이 파일은 덮어쓰고 설정이 저장될 때마다 다시 실행 msgid "Notifications are disabled" msgstr "알림이 비활성화 되었습니다" -#: src/Common/Package.vala:58 +#: src/Common/Package.vala:57 #, c-format msgid "File not found: %s" msgstr "파일을 찾을 수 없음: %s" @@ -429,28 +429,28 @@ msgstr "정보" msgid "Exit" msgstr "출구" -#: src/Gtk/MainWindow.vala:423 +#: src/Gtk/MainWindow.vala:409 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "우분투 기반 배포판의 커널 업그레이드 도구" -#: src/Gtk/MainWindow.vala:424 +#: src/Gtk/MainWindow.vala:410 msgid "Forked" msgstr "가랑이진" -#: src/Gtk/MainWindow.vala:424 +#: src/Gtk/MainWindow.vala:410 msgid "Original" msgstr "원문 언어" -#: src/Gtk/MainWindow.vala:453 +#: src/Gtk/MainWindow.vala:439 msgid "Updating kernels" msgstr "커널 업데이트" -#: src/Gtk/MainWindow.vala:521 +#: src/Gtk/MainWindow.vala:507 msgid "available" msgstr "사용가능" -#: src/Gtk/MainWindow.vala:571 src/Gtk/MainWindow.vala:610 -#: src/Gtk/MainWindow.vala:644 +#: src/Gtk/MainWindow.vala:557 src/Gtk/MainWindow.vala:596 +#: src/Gtk/MainWindow.vala:630 msgid "DONE" msgstr "" diff --git a/po/messages.pot b/po/messages.pot index 7388cd36..88b8c287 100644 --- a/po/messages.pot +++ b/po/messages.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline 1.3.6\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-01 02:19-0400\n" +"POT-Creation-Date: 2023-06-01 03:13-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -70,7 +70,7 @@ msgstr "" msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:669 src/Gtk/MainWindow.vala:517 +#: src/Common/LinuxKernel.vala:669 src/Gtk/MainWindow.vala:503 msgid "Running" msgstr "" @@ -213,7 +213,7 @@ msgstr "" msgid "Notifications are disabled" msgstr "" -#: src/Common/Package.vala:58 +#: src/Common/Package.vala:57 #, c-format msgid "File not found: %s" msgstr "" @@ -420,28 +420,28 @@ msgstr "" msgid "Exit" msgstr "" -#: src/Gtk/MainWindow.vala:423 +#: src/Gtk/MainWindow.vala:409 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "" -#: src/Gtk/MainWindow.vala:424 +#: src/Gtk/MainWindow.vala:410 msgid "Forked" msgstr "" -#: src/Gtk/MainWindow.vala:424 +#: src/Gtk/MainWindow.vala:410 msgid "Original" msgstr "" -#: src/Gtk/MainWindow.vala:453 +#: src/Gtk/MainWindow.vala:439 msgid "Updating kernels" msgstr "" -#: src/Gtk/MainWindow.vala:521 +#: src/Gtk/MainWindow.vala:507 msgid "available" msgstr "" -#: src/Gtk/MainWindow.vala:571 src/Gtk/MainWindow.vala:610 -#: src/Gtk/MainWindow.vala:644 +#: src/Gtk/MainWindow.vala:557 src/Gtk/MainWindow.vala:596 +#: src/Gtk/MainWindow.vala:630 msgid "DONE" msgstr "" diff --git a/po/nl.po b/po/nl.po index ae1414ed..c9c951ce 100644 --- a/po/nl.po +++ b/po/nl.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-01 02:19-0400\n" +"POT-Creation-Date: 2023-06-01 03:06-0400\n" "PO-Revision-Date: 2020-08-23 13:55+0200\n" "Last-Translator: Heimen Stoffels \n" "Language-Team: Dutch (Netherlands)\n" @@ -66,7 +66,7 @@ msgstr "" msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:669 src/Gtk/MainWindow.vala:517 +#: src/Common/LinuxKernel.vala:669 src/Gtk/MainWindow.vala:503 msgid "Running" msgstr "In gebruik" @@ -218,7 +218,7 @@ msgstr "" msgid "Notifications are disabled" msgstr "Meldingen zijn uitgeschakeld" -#: src/Common/Package.vala:58 +#: src/Common/Package.vala:57 #, c-format msgid "File not found: %s" msgstr "Bestand niet gevonden: %s" @@ -431,28 +431,28 @@ msgstr "Over" msgid "Exit" msgstr "Afsluiten" -#: src/Gtk/MainWindow.vala:423 +#: src/Gtk/MainWindow.vala:409 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Een kernelupgradehulpmiddel voor op Ubuntu gebaseerde distributies" -#: src/Gtk/MainWindow.vala:424 +#: src/Gtk/MainWindow.vala:410 msgid "Forked" msgstr "Geforkt" -#: src/Gtk/MainWindow.vala:424 +#: src/Gtk/MainWindow.vala:410 msgid "Original" msgstr "Origineel" -#: src/Gtk/MainWindow.vala:453 +#: src/Gtk/MainWindow.vala:439 msgid "Updating kernels" msgstr "Kernels bijwerken" -#: src/Gtk/MainWindow.vala:521 +#: src/Gtk/MainWindow.vala:507 msgid "available" msgstr "beschikbaar" -#: src/Gtk/MainWindow.vala:571 src/Gtk/MainWindow.vala:610 -#: src/Gtk/MainWindow.vala:644 +#: src/Gtk/MainWindow.vala:557 src/Gtk/MainWindow.vala:596 +#: src/Gtk/MainWindow.vala:630 msgid "DONE" msgstr "" diff --git a/po/pl.po b/po/pl.po index 8cf5f887..aab63307 100644 --- a/po/pl.po +++ b/po/pl.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-01 02:19-0400\n" +"POT-Creation-Date: 2023-06-01 03:06-0400\n" "PO-Revision-Date: 2023-05-25 13:37+0200\n" "Last-Translator: Matthaiks\n" "Language-Team: Polish\n" @@ -65,7 +65,7 @@ msgstr "zablokowane" msgid "is locked." msgstr "jest zablokowane." -#: src/Common/LinuxKernel.vala:669 src/Gtk/MainWindow.vala:517 +#: src/Common/LinuxKernel.vala:669 src/Gtk/MainWindow.vala:503 msgid "Running" msgstr "Uruchomione" @@ -217,7 +217,7 @@ msgstr "" msgid "Notifications are disabled" msgstr "Powiadomienia są wyłączone" -#: src/Common/Package.vala:58 +#: src/Common/Package.vala:57 #, c-format msgid "File not found: %s" msgstr "Nie znaleziono pliku: %s" @@ -430,28 +430,28 @@ msgstr "O programie" msgid "Exit" msgstr "Wyjdź" -#: src/Gtk/MainWindow.vala:423 +#: src/Gtk/MainWindow.vala:409 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Narzędzie uaktualniania jądra dla dystrybucji z rodziny Ubuntu" -#: src/Gtk/MainWindow.vala:424 +#: src/Gtk/MainWindow.vala:410 msgid "Forked" msgstr "Sforkowane" -#: src/Gtk/MainWindow.vala:424 +#: src/Gtk/MainWindow.vala:410 msgid "Original" msgstr "Oryginalne" -#: src/Gtk/MainWindow.vala:453 +#: src/Gtk/MainWindow.vala:439 msgid "Updating kernels" msgstr "Aktualizowanie jąder" -#: src/Gtk/MainWindow.vala:521 +#: src/Gtk/MainWindow.vala:507 msgid "available" msgstr "dostępne" -#: src/Gtk/MainWindow.vala:571 src/Gtk/MainWindow.vala:610 -#: src/Gtk/MainWindow.vala:644 +#: src/Gtk/MainWindow.vala:557 src/Gtk/MainWindow.vala:596 +#: src/Gtk/MainWindow.vala:630 msgid "DONE" msgstr "" diff --git a/po/ru.po b/po/ru.po index b098877f..b5d9521d 100644 --- a/po/ru.po +++ b/po/ru.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-01 02:19-0400\n" +"POT-Creation-Date: 2023-06-01 03:06-0400\n" "PO-Revision-Date: 2023-04-17 20:16+0300\n" "Last-Translator: Danik2343 \n" "Language-Team: Russian\n" @@ -66,7 +66,7 @@ msgstr "" msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:669 src/Gtk/MainWindow.vala:517 +#: src/Common/LinuxKernel.vala:669 src/Gtk/MainWindow.vala:503 msgid "Running" msgstr "Используется" @@ -217,7 +217,7 @@ msgstr "" msgid "Notifications are disabled" msgstr "Уведомления отключены" -#: src/Common/Package.vala:58 +#: src/Common/Package.vala:57 #, c-format msgid "File not found: %s" msgstr "Файл не найден: %s" @@ -430,28 +430,28 @@ msgstr "О программе" msgid "Exit" msgstr "Выход" -#: src/Gtk/MainWindow.vala:423 +#: src/Gtk/MainWindow.vala:409 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Программа обновления ядра для дистрибутивов на базе Ubuntu" -#: src/Gtk/MainWindow.vala:424 +#: src/Gtk/MainWindow.vala:410 msgid "Forked" msgstr "Форк" -#: src/Gtk/MainWindow.vala:424 +#: src/Gtk/MainWindow.vala:410 msgid "Original" msgstr "Оригинал" -#: src/Gtk/MainWindow.vala:453 +#: src/Gtk/MainWindow.vala:439 msgid "Updating kernels" msgstr "Обновление ядер" -#: src/Gtk/MainWindow.vala:521 +#: src/Gtk/MainWindow.vala:507 msgid "available" msgstr "доступно" -#: src/Gtk/MainWindow.vala:571 src/Gtk/MainWindow.vala:610 -#: src/Gtk/MainWindow.vala:644 +#: src/Gtk/MainWindow.vala:557 src/Gtk/MainWindow.vala:596 +#: src/Gtk/MainWindow.vala:630 msgid "DONE" msgstr "" diff --git a/po/sv.po b/po/sv.po index 0bb89377..3b94cf71 100644 --- a/po/sv.po +++ b/po/sv.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-01 02:19-0400\n" +"POT-Creation-Date: 2023-06-01 03:06-0400\n" "PO-Revision-Date: 2018-01-13 16:56+0100\n" "Last-Translator: Åke Engelbrektson \n" "Language-Team:Swedish\n" @@ -66,7 +66,7 @@ msgstr "" msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:669 src/Gtk/MainWindow.vala:517 +#: src/Common/LinuxKernel.vala:669 src/Gtk/MainWindow.vala:503 msgid "Running" msgstr "Körs" @@ -216,7 +216,7 @@ msgstr "Den här filen skrivs över och körs igen när inställningar sparas i" msgid "Notifications are disabled" msgstr "Meddelanden är inaktiverade" -#: src/Common/Package.vala:58 +#: src/Common/Package.vala:57 #, c-format msgid "File not found: %s" msgstr "Filen hittades inte: %s" @@ -429,28 +429,28 @@ msgstr "Om" msgid "Exit" msgstr "Utgång" -#: src/Gtk/MainWindow.vala:423 +#: src/Gtk/MainWindow.vala:409 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Kärnuppgraderingsverktyg för Ubuntu-baserade distributioner" -#: src/Gtk/MainWindow.vala:424 +#: src/Gtk/MainWindow.vala:410 msgid "Forked" msgstr "Kluven" -#: src/Gtk/MainWindow.vala:424 +#: src/Gtk/MainWindow.vala:410 msgid "Original" msgstr "Original" -#: src/Gtk/MainWindow.vala:453 +#: src/Gtk/MainWindow.vala:439 msgid "Updating kernels" msgstr "Uppdatera kärnor" -#: src/Gtk/MainWindow.vala:521 +#: src/Gtk/MainWindow.vala:507 msgid "available" msgstr "tillgänglig" -#: src/Gtk/MainWindow.vala:571 src/Gtk/MainWindow.vala:610 -#: src/Gtk/MainWindow.vala:644 +#: src/Gtk/MainWindow.vala:557 src/Gtk/MainWindow.vala:596 +#: src/Gtk/MainWindow.vala:630 msgid "DONE" msgstr "" diff --git a/po/tr.po b/po/tr.po index cec399f0..8f614e0a 100644 --- a/po/tr.po +++ b/po/tr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-01 02:19-0400\n" +"POT-Creation-Date: 2023-06-01 03:06-0400\n" "PO-Revision-Date: 2022-08-06 16:48+0300\n" "Last-Translator: Sabri Ünal \n" "Language-Team: Turkish\n" @@ -66,7 +66,7 @@ msgstr "" msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:669 src/Gtk/MainWindow.vala:517 +#: src/Common/LinuxKernel.vala:669 src/Gtk/MainWindow.vala:503 msgid "Running" msgstr "Çalışıyor" @@ -218,7 +218,7 @@ msgstr "" msgid "Notifications are disabled" msgstr "Bildirimler devre dışı bırakılmış" -#: src/Common/Package.vala:58 +#: src/Common/Package.vala:57 #, c-format msgid "File not found: %s" msgstr "Dosya bulunamadı: %s" @@ -431,28 +431,28 @@ msgstr "Hakkında" msgid "Exit" msgstr "Çıkış" -#: src/Gtk/MainWindow.vala:423 +#: src/Gtk/MainWindow.vala:409 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Ubuntu tabanlı dağıtımlar için çekirdek güncelleme aracı" -#: src/Gtk/MainWindow.vala:424 +#: src/Gtk/MainWindow.vala:410 msgid "Forked" msgstr "Çatallandı" -#: src/Gtk/MainWindow.vala:424 +#: src/Gtk/MainWindow.vala:410 msgid "Original" msgstr "Özgün" -#: src/Gtk/MainWindow.vala:453 +#: src/Gtk/MainWindow.vala:439 msgid "Updating kernels" msgstr "Çekirdekleri güncelleme" -#: src/Gtk/MainWindow.vala:521 +#: src/Gtk/MainWindow.vala:507 msgid "available" msgstr "mevcut" -#: src/Gtk/MainWindow.vala:571 src/Gtk/MainWindow.vala:610 -#: src/Gtk/MainWindow.vala:644 +#: src/Gtk/MainWindow.vala:557 src/Gtk/MainWindow.vala:596 +#: src/Gtk/MainWindow.vala:630 msgid "DONE" msgstr "" diff --git a/po/uk.po b/po/uk.po index 26297238..540454dd 100644 --- a/po/uk.po +++ b/po/uk.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-01 02:19-0400\n" +"POT-Creation-Date: 2023-06-01 03:06-0400\n" "PO-Revision-Date: 2019-07-25 11:00+0300\n" "Last-Translator: Serhii Golovko \n" "Language-Team: Ukranian\n" @@ -66,7 +66,7 @@ msgstr "заблокований" msgid "is locked." msgstr "заблоковано." -#: src/Common/LinuxKernel.vala:669 src/Gtk/MainWindow.vala:517 +#: src/Common/LinuxKernel.vala:669 src/Gtk/MainWindow.vala:503 msgid "Running" msgstr "Використовується" @@ -218,7 +218,7 @@ msgstr "" msgid "Notifications are disabled" msgstr "Повідомлення вимкнено" -#: src/Common/Package.vala:58 +#: src/Common/Package.vala:57 #, c-format msgid "File not found: %s" msgstr "Файл не знайдено: %s" @@ -431,28 +431,28 @@ msgstr "Про программу" msgid "Exit" msgstr "Вихід" -#: src/Gtk/MainWindow.vala:423 +#: src/Gtk/MainWindow.vala:409 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Програма оновлення ядра для дистрибутивів на базі Ubuntu" -#: src/Gtk/MainWindow.vala:424 +#: src/Gtk/MainWindow.vala:410 msgid "Forked" msgstr "Двоєний" -#: src/Gtk/MainWindow.vala:424 +#: src/Gtk/MainWindow.vala:410 msgid "Original" msgstr "Оригінал" -#: src/Gtk/MainWindow.vala:453 +#: src/Gtk/MainWindow.vala:439 msgid "Updating kernels" msgstr "Оновлення ядер" -#: src/Gtk/MainWindow.vala:521 +#: src/Gtk/MainWindow.vala:507 msgid "available" msgstr "доступний" -#: src/Gtk/MainWindow.vala:571 src/Gtk/MainWindow.vala:610 -#: src/Gtk/MainWindow.vala:644 +#: src/Gtk/MainWindow.vala:557 src/Gtk/MainWindow.vala:596 +#: src/Gtk/MainWindow.vala:630 msgid "DONE" msgstr "" diff --git a/src/Common/OSDNotify.vala b/src/Common/OSDNotify.vala index 5b8c7aaf..d0306701 100644 --- a/src/Common/OSDNotify.vala +++ b/src/Common/OSDNotify.vala @@ -22,8 +22,6 @@ * */ -using TeeJee.FileSystem; -using TeeJee.ProcessHelper; using l.misc; public class OSDNotify : GLib.Object { diff --git a/src/Common/Package.vala b/src/Common/Package.vala index dbb45831..3596bec4 100644 --- a/src/Common/Package.vala +++ b/src/Common/Package.vala @@ -1,7 +1,6 @@ using TeeJee.FileSystem; using TeeJee.ProcessHelper; -using TeeJee.Misc; using l.misc; public class Package : GLib.Object { diff --git a/src/lib/TeeJee.FileSystem.vala b/src/lib/TeeJee.FileSystem.vala index 8691787b..7d613cd6 100644 --- a/src/lib/TeeJee.FileSystem.vala +++ b/src/lib/TeeJee.FileSystem.vala @@ -44,7 +44,7 @@ namespace TeeJee.FileSystem { && !FileUtils.test(file_path, GLib.FileTest.IS_DIR)); } - public string? file_read (string file_path) { + public string? file_read(string file_path) { vprint("file_read("+file_path+")",3); string txt = ""; @@ -56,7 +56,7 @@ namespace TeeJee.FileSystem { return txt; } - public bool file_write (string f, string contents) { + public bool file_write(string f, string contents) { vprint("file_write("+f+")",3); try { @@ -69,7 +69,7 @@ namespace TeeJee.FileSystem { var file_stream = file.create(FileCreateFlags.REPLACE_DESTINATION); var data_stream = new DataOutputStream(file_stream); - data_stream.put_string (contents); + data_stream.put_string(contents); data_stream.close(); return true; @@ -80,7 +80,7 @@ namespace TeeJee.FileSystem { } } - public bool file_copy (string src_file, string dest_file) { + public bool file_copy(string src_file, string dest_file) { vprint("file_copy('"+src_file+"','"+dest_file+"')",3); try { @@ -96,7 +96,7 @@ namespace TeeJee.FileSystem { return false; } - public void file_move (string src_file, string dest_file) { + public void file_move(string src_file, string dest_file) { vprint("file_move('"+src_file+"','"+dest_file+"')",3); try { if (!file_exists(src_file)) { @@ -112,7 +112,7 @@ namespace TeeJee.FileSystem { file_src.move(file_dest,FileCopyFlags.OVERWRITE,null,null); } - catch(Error e) { vprint(e.message,1,stderr); } + catch (Error e) { vprint(e.message,1,stderr); } } public int64 file_get_size(string file_path) { @@ -125,14 +125,14 @@ namespace TeeJee.FileSystem { } } } - catch(Error e) { + catch (Error e) { vprint(e.message,1,stderr); } return -1; } - public bool dir_create (string d) { + public bool dir_create(string d) { vprint("dir_create("+d+")",3); try { var dir = File.parse_name(d); diff --git a/src/lib/TeeJee.Misc.vala b/src/lib/TeeJee.Misc.vala index 8d219740..b0c60687 100644 --- a/src/lib/TeeJee.Misc.vala +++ b/src/lib/TeeJee.Misc.vala @@ -40,11 +40,11 @@ namespace TeeJee.Misc { } txt = txt - .replace("&" , "&") - .replace("\"", """) - .replace("<" , "<") - .replace(">" , ">") - ; + .replace("&" , "&") + .replace("\"", """) + .replace("<" , "<") + .replace(">" , ">") + ; return txt; } From de3e3452f711220390cb8ef15894568cf9b7aae2 Mon Sep 17 00:00:00 2001 From: cappelikan Date: Fri, 2 Jun 2023 16:33:06 +0300 Subject: [PATCH 347/567] Update uk.po --- po/uk.po | 58 +++++++++++++++++++++----------------------------------- 1 file changed, 22 insertions(+), 36 deletions(-) diff --git a/po/uk.po b/po/uk.po index 540454dd..28b4dd0c 100644 --- a/po/uk.po +++ b/po/uk.po @@ -99,14 +99,12 @@ msgid "Kernel" msgstr "Ядро" #: src/Common/LinuxKernel.vala:916 -#, fuzzy msgid "not found" -msgstr "Файл не знайдено" +msgstr "не знайдено" #: src/Common/LinuxKernel.vala:923 -#, fuzzy msgid "Download: no downloadable kernels specified" -msgstr "Команда не вказана" +msgstr "Завантажити: ядра для завантаження не вказано" #: src/Common/LinuxKernel.vala:943 msgid "enabled" @@ -117,14 +115,12 @@ msgid "Downloading" msgstr "Завантаження" #: src/Common/LinuxKernel.vala:985 -#, fuzzy msgid "Installing selected kernels" -msgstr "Видаліть конкретні ядра" +msgstr "Встановлення обраних ядер" #: src/Common/LinuxKernel.vala:991 src/Common/LinuxKernel.vala:1029 -#, fuzzy msgid "Requested" -msgstr "запитуваний" +msgstr "Запитуваний" #: src/Common/LinuxKernel.vala:994 msgid "is already installed." @@ -132,26 +128,23 @@ msgstr "вже встановлено." #: src/Common/LinuxKernel.vala:1004 msgid "download failed." -msgstr "" +msgstr "не вдалося завантажити." #: src/Common/LinuxKernel.vala:1012 -#, fuzzy msgid "Install: no installable kernels secified" -msgstr "Команда не вказана" +msgstr "Встановлення: ядра, які можна встановити, не визначені" #: src/Common/LinuxKernel.vala:1025 msgid "Uninstalling selected kernels" msgstr "Видаліть конкретні ядра" #: src/Common/LinuxKernel.vala:1032 -#, fuzzy msgid "Not uninstalling the currently running kernel" -msgstr "не видалятиме поточне запущене ядро" +msgstr "Не видалення поточного запущеного ядра" #: src/Common/LinuxKernel.vala:1037 -#, fuzzy msgid "is locked" -msgstr "заблоковано." +msgstr "заблоковано" #: src/Common/LinuxKernel.vala:1045 msgid "found" @@ -159,12 +152,11 @@ msgstr "знайдено" #: src/Common/LinuxKernel.vala:1049 msgid "Uninstall: no uninstallable packages found" -msgstr "" +msgstr "Видалити: пакетів, які можна видалити, не знайдено" #: src/Common/LinuxKernel.vala:1085 -#, fuzzy msgid "is the highest installed version." -msgstr "Видаліть усі, крім найвищої встановленої версії" +msgstr "є найвищою встановленою версією." #: src/Common/LinuxKernel.vala:1098 msgid "Could not find running kernel in list" @@ -240,9 +232,8 @@ msgid "Check for kernel updates and notify current user" msgstr "Перевірте наявність оновлень ядра та повідомте поточного користувача" #: src/Console/AppConsole.vala:46 -#, fuzzy msgid "List available mainline kernels" -msgstr "Список усіх доступних основних ядер" +msgstr "Список доступних основних ядер" #: src/Console/AppConsole.vala:47 msgid "List installed kernels" @@ -252,20 +243,17 @@ msgstr "Список встановлених ядер" msgid "Install latest mainline kernel" msgstr "Встановіть останнє основне ядро" -#: src/Console/AppConsole.vala:49 -#, fuzzy +#: src/Console/AppConsole.vala:49- msgid "Install latest point update in the current major version" -msgstr "Встановіть останню точку оновлення для поточної серії" +msgstr "Установіть останнє оновлення точки в поточній основній версії" #: src/Console/AppConsole.vala:50 -#, fuzzy msgid "Install specified kernels" -msgstr "Видаліть конкретні ядра" +msgstr "Встановити вказані ядра" #: src/Console/AppConsole.vala:51 -#, fuzzy msgid "Uninstall specified kernels" -msgstr "Видаліть конкретні ядра" +msgstr "Видалити вказані ядра" #: src/Console/AppConsole.vala:52 src/Gtk/MainWindow.vala:324 msgid "Uninstall all but the highest installed version" @@ -293,25 +281,23 @@ msgstr "Виключення нестабільних і RC-релізів" #: src/Console/AppConsole.vala:60 msgid "Verbosity. Set to n if given, or increment." -msgstr "" +msgstr "Багатослівність. Встановіть значення n, якщо задано, або приріст." #: src/Console/AppConsole.vala:61 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "Так для всіх підказок (неінтерактивний режим)" #: src/Console/AppConsole.vala:64 -#, fuzzy msgid "One or more version strings taken from the output of --list" -msgstr "Рядок версій, взятий з виводу --list" +msgstr "Один або кілька рядків версій, взятих із результату --list" #: src/Console/AppConsole.vala:65 msgid "comma, pipe, or colon-seperated, or quoted space seperated" -msgstr "" +msgstr "розділені комою, вертикальною рискою, двокрапкою або лапками" #: src/Console/AppConsole.vala:66 -#, fuzzy msgid "Locked kernels and the currently running kernel are ignored" -msgstr "Поточне ядро, що працює, завжди буде ігноруватися" +msgstr "Заблоковані ядра та поточне запущене ядро ігноруються" #: src/Console/AppConsole.vala:143 src/Console/AppConsole.vala:200 #: src/Gtk/AppGtk.vala:108 @@ -389,7 +375,7 @@ msgstr "Показати усі параметри" #: src/Gtk/MainWindow.vala:143 msgid "Lock" -msgstr "" +msgstr "Блок" #: src/Gtk/MainWindow.vala:160 msgid "Status" @@ -417,7 +403,7 @@ msgstr "Перезавантажити" #: src/Gtk/MainWindow.vala:330 msgid "Delete and reload all cached kernel info" -msgstr "" +msgstr "Видаліть і перезавантажте всю кешовану інформацію про ядро" #: src/Gtk/MainWindow.vala:335 src/Gtk/SettingsDialog.vala:46 msgid "Settings" @@ -454,7 +440,7 @@ msgstr "доступний" #: src/Gtk/MainWindow.vala:557 src/Gtk/MainWindow.vala:596 #: src/Gtk/MainWindow.vala:630 msgid "DONE" -msgstr "" +msgstr "ГОТОВО" #: src/Gtk/SettingsDialog.vala:56 msgid "Notification" From 038b2496df06971ab67e2389d6eea921b4866608 Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Sat, 3 Jun 2023 06:33:04 -0400 Subject: [PATCH 348/567] ditch the F... progress window --- .deb_build_number.mak | 2 +- BRANDING.mak | 2 +- debian/changelog | 10 +- po/de.po | 246 ++++++++++++++++---------------- po/el.po | 246 ++++++++++++++++---------------- po/es.po | 246 ++++++++++++++++---------------- po/fr.po | 246 ++++++++++++++++---------------- po/hr.po | 246 ++++++++++++++++---------------- po/it.po | 246 ++++++++++++++++---------------- po/ko.po | 246 ++++++++++++++++---------------- po/messages.pot | 248 ++++++++++++++++---------------- po/nl.po | 246 ++++++++++++++++---------------- po/pl.po | 246 ++++++++++++++++---------------- po/ru.po | 246 ++++++++++++++++---------------- po/sv.po | 246 ++++++++++++++++---------------- po/tr.po | 246 ++++++++++++++++---------------- po/uk.po | 246 ++++++++++++++++---------------- src/Common/LinuxKernel.vala | 52 +++---- src/Common/Main.vala | 84 +++++------ src/Common/Package.vala | 7 +- src/Console/AppConsole.vala | 16 ++- src/Gtk/AppGtk.vala | 11 +- src/Gtk/MainWindow.vala | 252 ++++++++++++++++----------------- src/Gtk/ProgressWindow.vala | 88 ------------ src/Gtk/SettingsDialog.vala | 82 +++++------ src/Gtk/TerminalWindow.vala | 26 ++-- src/lib/TeeJee.FileSystem.vala | 16 +-- src/lib/l.misc.vala | 8 +- 28 files changed, 2026 insertions(+), 2076 deletions(-) delete mode 100644 src/Gtk/ProgressWindow.vala diff --git a/.deb_build_number.mak b/.deb_build_number.mak index 60ba62d6..1fd6a46c 100644 --- a/.deb_build_number.mak +++ b/.deb_build_number.mak @@ -1,3 +1,3 @@ # This file is generated by Makefile "make deb_build_number" -DEB_PKG_VERSION := 1.3.6 +DEB_PKG_VERSION := 1.3.7 DEB_BUILD_NUMBER := 0000 diff --git a/BRANDING.mak b/BRANDING.mak index f1f7d784..cc90b4a7 100644 --- a/BRANDING.mak +++ b/BRANDING.mak @@ -3,7 +3,7 @@ VERSION_MAJOR = 1 VERSION_MINOR = 3 -VERSION_MICRO = 6 +VERSION_MICRO = 7 BRANDING_SHORTNAME = mainline BRANDING_LONGNAME = Ubuntu Mainline Kernel Installer BRANDING_AUTHORNAME = Brian K. White diff --git a/debian/changelog b/debian/changelog index 34ae1f09..ff87ca95 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,4 +1,12 @@ -mainline (1.3.6) UNRELEASED; urgency=medium +mainline (1.3.7) unstable; urgency=medium + + * ditch the progress window, show progress in the status line + * surface/focus terminal when install/uninstall script ends (repair what it used to do long ago) + * save & restore the terminal window position (only the size was working) + + -- Brian K. White Sat, 03 Jun 2023 06:27:35 -0400 + +mainline (1.3.6) unstable; urgency=medium * debug output for system() commands diff --git a/po/de.po b/po/de.po index aa462841..284d43e9 100644 --- a/po/de.po +++ b/po/de.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-01 03:06-0400\n" +"POT-Creation-Date: 2023-06-03 06:21-0400\n" "PO-Revision-Date: 2023-02-20 18:40+0100\n" "Last-Translator: Marvin Meysel \n" "Language-Team: German\n" @@ -13,329 +13,329 @@ msgstr "" "X-Launchpad-Export-Date: 2017-04-13 11:48+0000\n" "X-Generator: Poedit 3.1.1\n" -#: src/Common/LinuxKernel.vala:105 +#: src/Common/LinuxKernel.vala:100 msgid "Distribution" msgstr "Distribution" -#: src/Common/LinuxKernel.vala:120 +#: src/Common/LinuxKernel.vala:115 msgid "Architecture" msgstr "Architektur" -#: src/Common/LinuxKernel.vala:135 +#: src/Common/LinuxKernel.vala:130 msgid "Running kernel" msgstr "Laufender kernel" -#: src/Common/LinuxKernel.vala:238 +#: src/Common/LinuxKernel.vala:230 msgid "loading cached" msgstr "laden gecached" -#: src/Common/LinuxKernel.vala:250 +#: src/Common/LinuxKernel.vala:242 msgid "queuing download" msgstr "download der warteschlange" -#: src/Common/LinuxKernel.vala:271 +#: src/Common/LinuxKernel.vala:263 msgid "Fetching individual kernel indexes" msgstr "Abrufen einzelner Kernel-Indizes" -#: src/Common/LinuxKernel.vala:285 +#: src/Common/LinuxKernel.vala:277 msgid "loading downloaded" msgstr "laden von heruntergeladenen Dateien" -#: src/Common/LinuxKernel.vala:320 +#: src/Common/LinuxKernel.vala:318 msgid "Updating from" msgstr "Aktualisieren von" -#: src/Common/LinuxKernel.vala:328 +#: src/Common/LinuxKernel.vala:326 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:331 +#: src/Common/LinuxKernel.vala:329 msgid "FAILED" msgstr "MISSLUNGEN" -#: src/Common/LinuxKernel.vala:393 +#: src/Common/LinuxKernel.vala:392 msgid "Found installed" msgstr "Installiert gefunden" -#: src/Common/LinuxKernel.vala:394 +#: src/Common/LinuxKernel.vala:393 msgid "locked" msgstr "" -#: src/Common/LinuxKernel.vala:476 src/Common/LinuxKernel.vala:999 -#: src/Common/LinuxKernel.vala:1089 +#: src/Common/LinuxKernel.vala:475 src/Common/LinuxKernel.vala:1003 +#: src/Common/LinuxKernel.vala:1093 msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:669 src/Gtk/MainWindow.vala:503 +#: src/Common/LinuxKernel.vala:668 src/Gtk/MainWindow.vala:514 msgid "Running" msgstr "Läuft" -#: src/Common/LinuxKernel.vala:670 +#: src/Common/LinuxKernel.vala:669 msgid "Installed" msgstr "Installiert" -#: src/Common/LinuxKernel.vala:671 +#: src/Common/LinuxKernel.vala:670 msgid "Invalid" msgstr "Ungültig" -#: src/Common/LinuxKernel.vala:756 +#: src/Common/LinuxKernel.vala:760 msgid "Packages Available" msgstr "Verfügbare Pakete" -#: src/Common/LinuxKernel.vala:762 +#: src/Common/LinuxKernel.vala:766 msgid "Packages Installed" msgstr "Installierte Pakete" -#: src/Common/LinuxKernel.vala:787 src/lib/TeeJee.FileSystem.vala:103 +#: src/Common/LinuxKernel.vala:791 src/lib/TeeJee.FileSystem.vala:99 msgid "File not found" msgstr "Datei nicht gefunden " -#: src/Common/LinuxKernel.vala:881 +#: src/Common/LinuxKernel.vala:885 msgid "Available Kernels" msgstr "Verfügbare Kernel" -#: src/Common/LinuxKernel.vala:916 src/Gtk/MainWindow.vala:119 +#: src/Common/LinuxKernel.vala:920 src/Gtk/MainWindow.vala:128 msgid "Kernel" msgstr "Kernel" -#: src/Common/LinuxKernel.vala:916 +#: src/Common/LinuxKernel.vala:920 #, fuzzy msgid "not found" msgstr "Datei nicht gefunden " -#: src/Common/LinuxKernel.vala:923 +#: src/Common/LinuxKernel.vala:927 #, fuzzy msgid "Download: no downloadable kernels specified" msgstr "Befehl nicht angegeben" -#: src/Common/LinuxKernel.vala:943 +#: src/Common/LinuxKernel.vala:947 msgid "enabled" msgstr "ermöglichte" -#: src/Common/LinuxKernel.vala:967 +#: src/Common/LinuxKernel.vala:971 msgid "Downloading" msgstr "Laden" -#: src/Common/LinuxKernel.vala:985 +#: src/Common/LinuxKernel.vala:989 #, fuzzy msgid "Installing selected kernels" msgstr "Deinstallation des angegebenen Kernels" -#: src/Common/LinuxKernel.vala:991 src/Common/LinuxKernel.vala:1029 +#: src/Common/LinuxKernel.vala:995 src/Common/LinuxKernel.vala:1033 #, fuzzy msgid "Requested" msgstr "angefordert" -#: src/Common/LinuxKernel.vala:994 +#: src/Common/LinuxKernel.vala:998 msgid "is already installed." msgstr "ist bereits installiert." -#: src/Common/LinuxKernel.vala:1004 +#: src/Common/LinuxKernel.vala:1008 msgid "download failed." msgstr "" -#: src/Common/LinuxKernel.vala:1012 +#: src/Common/LinuxKernel.vala:1016 #, fuzzy msgid "Install: no installable kernels secified" msgstr "Befehl nicht angegeben" -#: src/Common/LinuxKernel.vala:1025 +#: src/Common/LinuxKernel.vala:1029 msgid "Uninstalling selected kernels" msgstr "Deinstallation des angegebenen Kernels" -#: src/Common/LinuxKernel.vala:1032 +#: src/Common/LinuxKernel.vala:1036 #, fuzzy msgid "Not uninstalling the currently running kernel" msgstr "Den aktuell laufenden Kernel wird nicht deinstalliert" -#: src/Common/LinuxKernel.vala:1037 +#: src/Common/LinuxKernel.vala:1041 msgid "is locked" msgstr "" -#: src/Common/LinuxKernel.vala:1045 +#: src/Common/LinuxKernel.vala:1049 msgid "found" msgstr "gründen" -#: src/Common/LinuxKernel.vala:1049 +#: src/Common/LinuxKernel.vala:1053 msgid "Uninstall: no uninstallable packages found" msgstr "" -#: src/Common/LinuxKernel.vala:1085 +#: src/Common/LinuxKernel.vala:1089 #, fuzzy msgid "is the highest installed version." msgstr "Deinstallieren Sie alle bis auf die höchste installierte Version" -#: src/Common/LinuxKernel.vala:1098 +#: src/Common/LinuxKernel.vala:1102 msgid "Could not find running kernel in list" msgstr "Konnte keinen laufenden Kernel in der Liste finden" -#: src/Common/LinuxKernel.vala:1103 +#: src/Common/LinuxKernel.vala:1107 msgid "Could not find any kernels to uninstall" msgstr "Es konnten keine Kernel zum Deinstallieren gefunden werden" -#: src/Common/LinuxKernel.vala:1111 +#: src/Common/LinuxKernel.vala:1115 msgid "The following kernels will be uninstalled" msgstr "Die folgenden Kernel werden deinstalliert" -#: src/Common/LinuxKernel.vala:1115 +#: src/Common/LinuxKernel.vala:1119 msgid "Continue ?" msgstr "Weiter ?" -#: src/Common/LinuxKernel.vala:1137 src/Console/AppConsole.vala:215 +#: src/Common/LinuxKernel.vala:1141 src/Console/AppConsole.vala:211 msgid "Latest update" msgstr "Neustes Update" -#: src/Common/LinuxKernel.vala:1148 src/Console/AppConsole.vala:222 +#: src/Common/LinuxKernel.vala:1152 src/Console/AppConsole.vala:218 msgid "Latest point update" msgstr "Letzte Punktaktualisierung" -#: src/Common/LinuxKernel.vala:1156 src/Console/AppConsole.vala:227 -#: src/Console/AppConsole.vala:242 +#: src/Common/LinuxKernel.vala:1160 src/Console/AppConsole.vala:223 +#: src/Console/AppConsole.vala:243 msgid "No updates found" msgstr "Keine Updates gefunden" -#: src/Common/LinuxKernel.vala:1165 +#: src/Common/LinuxKernel.vala:1169 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Kernel-Version %s installieren? (j/n):" -#: src/Common/Main.vala:345 +#: src/Common/Main.vala:340 msgid "Called from" msgstr "Angerufen von" -#: src/Common/Main.vala:345 +#: src/Common/Main.vala:340 msgid "at logon" msgstr "beim start" -#: src/Common/Main.vala:346 +#: src/Common/Main.vala:341 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" "Diese Datei wird überschrieben und erneut ausgeführt, wenn Einstellungen in" -#: src/Common/Main.vala:378 +#: src/Common/Main.vala:373 msgid "Notifications are disabled" msgstr "Benachrichtigungen sind deaktiviert" -#: src/Common/Package.vala:57 +#: src/Common/Package.vala:58 #, c-format msgid "File not found: %s" msgstr "Datei nicht gefunden: %s" -#: src/Console/AppConsole.vala:40 src/Gtk/AppGtk.vala:74 +#: src/Console/AppConsole.vala:39 src/Gtk/AppGtk.vala:77 msgid "Syntax" msgstr "Syntax" -#: src/Console/AppConsole.vala:42 +#: src/Console/AppConsole.vala:41 msgid "Commands" msgstr "Befehle" -#: src/Console/AppConsole.vala:44 +#: src/Console/AppConsole.vala:43 msgid "Check for kernel updates" msgstr "Nach Kernel-Updates suchen" -#: src/Console/AppConsole.vala:45 +#: src/Console/AppConsole.vala:44 msgid "Check for kernel updates and notify current user" msgstr "" "Prüfung auf Kernel-Updates und Benachrichtigung des aktuellen Benutzers" -#: src/Console/AppConsole.vala:46 +#: src/Console/AppConsole.vala:45 #, fuzzy msgid "List available mainline kernels" msgstr "Alle verfügbaren Mainline-Kernel auflisten" -#: src/Console/AppConsole.vala:47 +#: src/Console/AppConsole.vala:46 msgid "List installed kernels" msgstr "Installierte Kernel auflisten" -#: src/Console/AppConsole.vala:48 +#: src/Console/AppConsole.vala:47 msgid "Install latest mainline kernel" msgstr "Installieren Sie den neuesten Mainline-Kernel" -#: src/Console/AppConsole.vala:49 +#: src/Console/AppConsole.vala:48 #, fuzzy msgid "Install latest point update in the current major version" msgstr "Neueste Punktaktualisierung für die aktuelle Serie installieren" -#: src/Console/AppConsole.vala:50 +#: src/Console/AppConsole.vala:49 #, fuzzy msgid "Install specified kernels" msgstr "Deinstallation des angegebenen Kernels" -#: src/Console/AppConsole.vala:51 +#: src/Console/AppConsole.vala:50 #, fuzzy msgid "Uninstall specified kernels" msgstr "Deinstallation des angegebenen Kernels" -#: src/Console/AppConsole.vala:52 src/Gtk/MainWindow.vala:324 +#: src/Console/AppConsole.vala:51 src/Gtk/MainWindow.vala:326 msgid "Uninstall all but the highest installed version" msgstr "Deinstallieren Sie alle bis auf die höchste installierte Version" -#: src/Console/AppConsole.vala:53 +#: src/Console/AppConsole.vala:52 msgid "Download specified kernels" msgstr "Herunterladen bestimmter Kernel" -#: src/Console/AppConsole.vala:54 +#: src/Console/AppConsole.vala:53 msgid "Delete cached info about available kernels" msgstr "Löschen zwischengespeicherter Informationen über verfügbare Kernel" -#: src/Console/AppConsole.vala:56 src/Gtk/AppGtk.vala:76 +#: src/Console/AppConsole.vala:55 src/Gtk/AppGtk.vala:79 msgid "Options" msgstr "Optionen" -#: src/Console/AppConsole.vala:58 +#: src/Console/AppConsole.vala:57 msgid "Include unstable and RC releases" msgstr "Unstable- und RC-Versionen einschließen" -#: src/Console/AppConsole.vala:59 +#: src/Console/AppConsole.vala:58 msgid "Exclude unstable and RC releases" msgstr "Ausschluss von Unstable- und RC-Veröffentlichungen" -#: src/Console/AppConsole.vala:60 +#: src/Console/AppConsole.vala:59 msgid "Verbosity. Set to n if given, or increment." msgstr "" -#: src/Console/AppConsole.vala:61 +#: src/Console/AppConsole.vala:60 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "Alle Aufforderungen mit Ja beantworten (nicht interaktiver Modus)" -#: src/Console/AppConsole.vala:64 +#: src/Console/AppConsole.vala:63 #, fuzzy msgid "One or more version strings taken from the output of --list" msgstr "Eine Versionszeichenfolge aus der Ausgabe von --list" -#: src/Console/AppConsole.vala:65 +#: src/Console/AppConsole.vala:64 msgid "comma, pipe, or colon-seperated, or quoted space seperated" msgstr "" -#: src/Console/AppConsole.vala:66 +#: src/Console/AppConsole.vala:65 #, fuzzy msgid "Locked kernels and the currently running kernel are ignored" msgstr "Der aktuell laufende Kernel wird immer ignoriert" -#: src/Console/AppConsole.vala:143 src/Console/AppConsole.vala:200 -#: src/Gtk/AppGtk.vala:108 +#: src/Console/AppConsole.vala:142 src/Console/AppConsole.vala:196 +#: src/Gtk/AppGtk.vala:111 msgid "Unknown option" msgstr "Unbekannte Option" -#: src/Console/AppConsole.vala:236 +#: src/Console/AppConsole.vala:232 msgid "Notifications disabled in settings" msgstr "Benachrichtigungen sind deaktiviert" -#: src/Console/AppConsole.vala:264 +#: src/Console/AppConsole.vala:265 #, c-format msgid "Kernel %s Available" msgstr "Kernel %s verfügbar" -#: src/Console/AppConsole.vala:268 src/Gtk/SettingsDialog.vala:163 +#: src/Console/AppConsole.vala:269 src/Gtk/SettingsDialog.vala:154 msgid "Show" msgstr "Zeigen" -#: src/Console/AppConsole.vala:269 src/Gtk/MainWindow.vala:296 +#: src/Console/AppConsole.vala:270 src/Gtk/MainWindow.vala:305 msgid "Install" msgstr "Installieren" -#: src/Console/AppConsole.vala:272 +#: src/Console/AppConsole.vala:273 msgid "Previously notified" msgstr "Zuvor gemeldet" @@ -347,7 +347,7 @@ msgstr "Credits" msgid "Back" msgstr "Zurück" -#: src/Gtk/AboutWindow.vala:185 src/Gtk/TerminalWindow.vala:161 +#: src/Gtk/AboutWindow.vala:185 src/Gtk/TerminalWindow.vala:169 msgid "Close" msgstr "Schließen" @@ -375,160 +375,164 @@ msgstr "Dokumentierer" msgid "Third Party Inclusions" msgstr "Einschlüsse von Drittparteien" -#: src/Gtk/AppGtk.vala:74 +#: src/Gtk/AppGtk.vala:77 msgid "options" msgstr "optionen" -#: src/Gtk/AppGtk.vala:78 +#: src/Gtk/AppGtk.vala:81 msgid "Print debug information" msgstr "Zeige Debug Informationen" -#: src/Gtk/AppGtk.vala:79 +#: src/Gtk/AppGtk.vala:82 msgid "Show all options" msgstr "Alle Optionen anzeigen" -#: src/Gtk/MainWindow.vala:143 +#: src/Gtk/MainWindow.vala:152 msgid "Lock" msgstr "" -#: src/Gtk/MainWindow.vala:160 +#: src/Gtk/MainWindow.vala:169 msgid "Status" msgstr "Status" -#: src/Gtk/MainWindow.vala:172 +#: src/Gtk/MainWindow.vala:181 msgid "Notes" msgstr "Notizen" -#: src/Gtk/MainWindow.vala:304 +#: src/Gtk/MainWindow.vala:310 msgid "Uninstall" msgstr "Deinstallieren" -#: src/Gtk/MainWindow.vala:313 +#: src/Gtk/MainWindow.vala:316 msgid "Changelog, build status, etc" msgstr "" -#: src/Gtk/MainWindow.vala:323 +#: src/Gtk/MainWindow.vala:325 msgid "Uninstall Old" msgstr "Alte deinstallieren" -#: src/Gtk/MainWindow.vala:329 +#: src/Gtk/MainWindow.vala:331 msgid "Reload" msgstr "Nachladen" -#: src/Gtk/MainWindow.vala:330 +#: src/Gtk/MainWindow.vala:332 msgid "Delete and reload all cached kernel info" msgstr "" -#: src/Gtk/MainWindow.vala:335 src/Gtk/SettingsDialog.vala:46 +#: src/Gtk/MainWindow.vala:337 src/Gtk/SettingsDialog.vala:43 msgid "Settings" msgstr "Einstellungen" -#: src/Gtk/MainWindow.vala:340 +#: src/Gtk/MainWindow.vala:342 msgid "About" msgstr "Über" -#: src/Gtk/MainWindow.vala:345 +#: src/Gtk/MainWindow.vala:347 msgid "Exit" msgstr "Ausgang" -#: src/Gtk/MainWindow.vala:409 +#: src/Gtk/MainWindow.vala:428 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Kernel-Upgrade-Dienstprogramm für Ubuntu-basierte Distributionen" -#: src/Gtk/MainWindow.vala:410 +#: src/Gtk/MainWindow.vala:429 msgid "Forked" msgstr "Gegabelte" -#: src/Gtk/MainWindow.vala:410 +#: src/Gtk/MainWindow.vala:429 msgid "Original" msgstr "Original" -#: src/Gtk/MainWindow.vala:439 +#: src/Gtk/MainWindow.vala:458 msgid "Updating kernels" msgstr "Aktualisieren von Kernels" -#: src/Gtk/MainWindow.vala:507 +#: src/Gtk/MainWindow.vala:518 msgid "available" msgstr "Verfügbar" -#: src/Gtk/MainWindow.vala:557 src/Gtk/MainWindow.vala:596 -#: src/Gtk/MainWindow.vala:630 +#: src/Gtk/MainWindow.vala:560 src/Gtk/MainWindow.vala:591 +#: src/Gtk/MainWindow.vala:616 msgid "DONE" msgstr "" -#: src/Gtk/SettingsDialog.vala:56 +#: src/Gtk/SettingsDialog.vala:53 msgid "Notification" msgstr "Benachrichtigung" -#: src/Gtk/SettingsDialog.vala:63 +#: src/Gtk/SettingsDialog.vala:60 msgid "Notify if a major release is available" msgstr "Benachrichtigen, wenn eine größere Version verfügbar ist" -#: src/Gtk/SettingsDialog.vala:72 +#: src/Gtk/SettingsDialog.vala:68 msgid "Notify if a point release is available" msgstr "Benachrichtigen, wenn eine Punktfreigabe verfügbar ist" -#: src/Gtk/SettingsDialog.vala:83 +#: src/Gtk/SettingsDialog.vala:76 msgid "Seconds interval enabled for debugging" msgstr "Sekundenintervall für das Debuggen aktiviert" -#: src/Gtk/SettingsDialog.vala:106 +#: src/Gtk/SettingsDialog.vala:99 msgid "Check every" msgstr "Prüfen Sie jede" -#: src/Gtk/SettingsDialog.vala:131 +#: src/Gtk/SettingsDialog.vala:122 msgid "Hours" msgstr "Stunden" -#: src/Gtk/SettingsDialog.vala:133 +#: src/Gtk/SettingsDialog.vala:124 msgid "Days" msgstr "Tage" -#: src/Gtk/SettingsDialog.vala:135 +#: src/Gtk/SettingsDialog.vala:126 msgid "Weeks" msgstr "Wochen" -#: src/Gtk/SettingsDialog.vala:138 +#: src/Gtk/SettingsDialog.vala:129 msgid "Seconds" msgstr "Sekunden" -#: src/Gtk/SettingsDialog.vala:144 +#: src/Gtk/SettingsDialog.vala:135 msgid "Filters" msgstr "Filter" -#: src/Gtk/SettingsDialog.vala:152 +#: src/Gtk/SettingsDialog.vala:143 msgid "Hide unstable and RC releases" msgstr "Unstable- und RC-Versionen ausblenden" -#: src/Gtk/SettingsDialog.vala:174 +#: src/Gtk/SettingsDialog.vala:165 msgid "previous major versions ( -1 = all )" msgstr "vorherige Hauptversionen ( -1 = alle )" -#: src/Gtk/SettingsDialog.vala:178 +#: src/Gtk/SettingsDialog.vala:169 msgid "Network" msgstr "Netz" -#: src/Gtk/SettingsDialog.vala:189 +#: src/Gtk/SettingsDialog.vala:180 msgid "Internet connection timeout in" msgstr "Zeitüberschreitung der Internetverbindung in" -#: src/Gtk/SettingsDialog.vala:201 +#: src/Gtk/SettingsDialog.vala:192 msgid "seconds" msgstr "Sekunden" -#: src/Gtk/SettingsDialog.vala:208 +#: src/Gtk/SettingsDialog.vala:199 msgid "Max concurrent downloads" msgstr "Maximale Anzahl gleichzeitiger Downloads" -#: src/Gtk/SettingsDialog.vala:222 +#: src/Gtk/SettingsDialog.vala:212 msgid "Verify Checksums with the CHECKSUMS files" msgstr "Überprüfen von Prüfsummen mit den PRÜFSUMMEN-Dateien" -#: src/Gtk/SettingsDialog.vala:230 +#: src/Gtk/SettingsDialog.vala:220 msgid "Proxy" msgstr "Stellvertreter" -#: src/Gtk/TerminalWindow.vala:151 +#: src/Gtk/SettingsDialog.vala:249 +msgid "Done" +msgstr "" + +#: src/Gtk/TerminalWindow.vala:159 msgid "Cancel" msgstr "Abbrechen" diff --git a/po/el.po b/po/el.po index 7dba6990..20732940 100644 --- a/po/el.po +++ b/po/el.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-01 03:06-0400\n" +"POT-Creation-Date: 2023-06-03 06:21-0400\n" "PO-Revision-Date: 2023-01-10 02:03-0600\n" "Last-Translator: Vasilis Kosmidis \n" "Language-Team: Greek\n" @@ -13,330 +13,330 @@ msgstr "" "X-Launchpad-Export-Date: 2017-04-13 11:48+0000\n" "X-Generator: Poedit 2.0.5\n" -#: src/Common/LinuxKernel.vala:105 +#: src/Common/LinuxKernel.vala:100 msgid "Distribution" msgstr "Διανομή" -#: src/Common/LinuxKernel.vala:120 +#: src/Common/LinuxKernel.vala:115 msgid "Architecture" msgstr "Αρχιτεκτονική" -#: src/Common/LinuxKernel.vala:135 +#: src/Common/LinuxKernel.vala:130 msgid "Running kernel" msgstr "Εκτέλεση πυρήνα" -#: src/Common/LinuxKernel.vala:238 +#: src/Common/LinuxKernel.vala:230 msgid "loading cached" msgstr "φόρτωση προσωρινά αποθηκευμένου" -#: src/Common/LinuxKernel.vala:250 +#: src/Common/LinuxKernel.vala:242 msgid "queuing download" msgstr "Προσθήκη λήψης στην ουρά" -#: src/Common/LinuxKernel.vala:271 +#: src/Common/LinuxKernel.vala:263 msgid "Fetching individual kernel indexes" msgstr "Λήψη μεμονωμένων ευρετηρίων πυρήνα" -#: src/Common/LinuxKernel.vala:285 +#: src/Common/LinuxKernel.vala:277 msgid "loading downloaded" msgstr "Φόρτωση λήψης" -#: src/Common/LinuxKernel.vala:320 +#: src/Common/LinuxKernel.vala:318 msgid "Updating from" msgstr "Ενημέρωση από" -#: src/Common/LinuxKernel.vala:328 +#: src/Common/LinuxKernel.vala:326 msgid "OK" msgstr "ΟΚ" -#: src/Common/LinuxKernel.vala:331 +#: src/Common/LinuxKernel.vala:329 msgid "FAILED" msgstr "ΑΠΈΤΥΧΕ" -#: src/Common/LinuxKernel.vala:393 +#: src/Common/LinuxKernel.vala:392 msgid "Found installed" msgstr "Βρέθηκε εγκατεστημένο" -#: src/Common/LinuxKernel.vala:394 +#: src/Common/LinuxKernel.vala:393 msgid "locked" msgstr "" -#: src/Common/LinuxKernel.vala:476 src/Common/LinuxKernel.vala:999 -#: src/Common/LinuxKernel.vala:1089 +#: src/Common/LinuxKernel.vala:475 src/Common/LinuxKernel.vala:1003 +#: src/Common/LinuxKernel.vala:1093 msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:669 src/Gtk/MainWindow.vala:503 +#: src/Common/LinuxKernel.vala:668 src/Gtk/MainWindow.vala:514 msgid "Running" msgstr "Ενεργός" -#: src/Common/LinuxKernel.vala:670 +#: src/Common/LinuxKernel.vala:669 msgid "Installed" msgstr "Εγκατεστημένος" -#: src/Common/LinuxKernel.vala:671 +#: src/Common/LinuxKernel.vala:670 msgid "Invalid" msgstr "Άκυρος" -#: src/Common/LinuxKernel.vala:756 +#: src/Common/LinuxKernel.vala:760 msgid "Packages Available" msgstr "Διαθέσιμα πακέτα" -#: src/Common/LinuxKernel.vala:762 +#: src/Common/LinuxKernel.vala:766 msgid "Packages Installed" msgstr "Εγκατεστημένα πακέτα" -#: src/Common/LinuxKernel.vala:787 src/lib/TeeJee.FileSystem.vala:103 +#: src/Common/LinuxKernel.vala:791 src/lib/TeeJee.FileSystem.vala:99 msgid "File not found" msgstr "Το αρχείο δε βρέθηκε" -#: src/Common/LinuxKernel.vala:881 +#: src/Common/LinuxKernel.vala:885 msgid "Available Kernels" msgstr "Διαθέσιμοι πυρήνες" -#: src/Common/LinuxKernel.vala:916 src/Gtk/MainWindow.vala:119 +#: src/Common/LinuxKernel.vala:920 src/Gtk/MainWindow.vala:128 msgid "Kernel" msgstr "Πυρήνας" -#: src/Common/LinuxKernel.vala:916 +#: src/Common/LinuxKernel.vala:920 #, fuzzy msgid "not found" msgstr "Το αρχείο δε βρέθηκε" -#: src/Common/LinuxKernel.vala:923 +#: src/Common/LinuxKernel.vala:927 #, fuzzy msgid "Download: no downloadable kernels specified" msgstr "Η εντολή δεν προσδιορίστηκε" -#: src/Common/LinuxKernel.vala:943 +#: src/Common/LinuxKernel.vala:947 msgid "enabled" msgstr "ενεργοποιημένη" -#: src/Common/LinuxKernel.vala:967 +#: src/Common/LinuxKernel.vala:971 msgid "Downloading" msgstr "Κατέβασμα" -#: src/Common/LinuxKernel.vala:985 +#: src/Common/LinuxKernel.vala:989 #, fuzzy msgid "Installing selected kernels" msgstr "Απεγκατάσταση επιλεγμένων πυρήνων" -#: src/Common/LinuxKernel.vala:991 src/Common/LinuxKernel.vala:1029 +#: src/Common/LinuxKernel.vala:995 src/Common/LinuxKernel.vala:1033 #, fuzzy msgid "Requested" msgstr "ζητήθηκε" -#: src/Common/LinuxKernel.vala:994 +#: src/Common/LinuxKernel.vala:998 msgid "is already installed." msgstr "είναι ήδη εγκατεστημένο." -#: src/Common/LinuxKernel.vala:1004 +#: src/Common/LinuxKernel.vala:1008 msgid "download failed." msgstr "" -#: src/Common/LinuxKernel.vala:1012 +#: src/Common/LinuxKernel.vala:1016 #, fuzzy msgid "Install: no installable kernels secified" msgstr "Η εντολή δεν προσδιορίστηκε" -#: src/Common/LinuxKernel.vala:1025 +#: src/Common/LinuxKernel.vala:1029 msgid "Uninstalling selected kernels" msgstr "Απεγκατάσταση επιλεγμένων πυρήνων" -#: src/Common/LinuxKernel.vala:1032 +#: src/Common/LinuxKernel.vala:1036 #, fuzzy msgid "Not uninstalling the currently running kernel" msgstr "δεν θα απεγκαταστήσει τον πυρήνα που εκτελείται αυτήν τη στιγμή" -#: src/Common/LinuxKernel.vala:1037 +#: src/Common/LinuxKernel.vala:1041 msgid "is locked" msgstr "" -#: src/Common/LinuxKernel.vala:1045 +#: src/Common/LinuxKernel.vala:1049 msgid "found" msgstr "ιδρύω" -#: src/Common/LinuxKernel.vala:1049 +#: src/Common/LinuxKernel.vala:1053 msgid "Uninstall: no uninstallable packages found" msgstr "" -#: src/Common/LinuxKernel.vala:1085 +#: src/Common/LinuxKernel.vala:1089 #, fuzzy msgid "is the highest installed version." msgstr "Απεγκαταστήστε όλες εκτός από την υψηλότερη εγκατεστημένη έκδοση" -#: src/Common/LinuxKernel.vala:1098 +#: src/Common/LinuxKernel.vala:1102 msgid "Could not find running kernel in list" msgstr "Δεν ήταν δυνατή η εύρεση του πυρήνα που εκτελείται αυτήν τη στιγμή" -#: src/Common/LinuxKernel.vala:1103 +#: src/Common/LinuxKernel.vala:1107 msgid "Could not find any kernels to uninstall" msgstr "Δεν βρέθηκε κανένας πυρήνας για απεγκατάσταση" -#: src/Common/LinuxKernel.vala:1111 +#: src/Common/LinuxKernel.vala:1115 msgid "The following kernels will be uninstalled" msgstr "Θα καταργηθεί η εγκατάσταση των ακόλουθων πυρήνων" -#: src/Common/LinuxKernel.vala:1115 +#: src/Common/LinuxKernel.vala:1119 msgid "Continue ?" msgstr "Συνέχεια;" -#: src/Common/LinuxKernel.vala:1137 src/Console/AppConsole.vala:215 +#: src/Common/LinuxKernel.vala:1141 src/Console/AppConsole.vala:211 msgid "Latest update" msgstr "Τελευταία αναβάθμιση" -#: src/Common/LinuxKernel.vala:1148 src/Console/AppConsole.vala:222 +#: src/Common/LinuxKernel.vala:1152 src/Console/AppConsole.vala:218 msgid "Latest point update" msgstr "Τελευταία ενημέρωση συντήρησης" -#: src/Common/LinuxKernel.vala:1156 src/Console/AppConsole.vala:227 -#: src/Console/AppConsole.vala:242 +#: src/Common/LinuxKernel.vala:1160 src/Console/AppConsole.vala:223 +#: src/Console/AppConsole.vala:243 msgid "No updates found" msgstr "Δεν βρέθηκαν ενημερώσεις" -#: src/Common/LinuxKernel.vala:1165 +#: src/Common/LinuxKernel.vala:1169 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Εγκατάσταση του πυρήνα έκδοσης %s ; (ν/ό):" -#: src/Common/Main.vala:345 +#: src/Common/Main.vala:340 msgid "Called from" msgstr "Κλήθηκε από" -#: src/Common/Main.vala:345 +#: src/Common/Main.vala:340 msgid "at logon" msgstr "κατά την εκκίνηση" -#: src/Common/Main.vala:346 +#: src/Common/Main.vala:341 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" "Αυτό το αρχείο αντικαθίσταται και εκτελείται ξανά κάθε φορά που " "αποθηκεύονται οι ρυθμίσεις στο" -#: src/Common/Main.vala:378 +#: src/Common/Main.vala:373 msgid "Notifications are disabled" msgstr "Οι ειδοποιήσεις είναι απενεργοποιημένες" -#: src/Common/Package.vala:57 +#: src/Common/Package.vala:58 #, c-format msgid "File not found: %s" msgstr "Το αρχείο δεν βρέθηκε: %s" -#: src/Console/AppConsole.vala:40 src/Gtk/AppGtk.vala:74 +#: src/Console/AppConsole.vala:39 src/Gtk/AppGtk.vala:77 msgid "Syntax" msgstr "Σύνταξη" -#: src/Console/AppConsole.vala:42 +#: src/Console/AppConsole.vala:41 msgid "Commands" msgstr "Εντολές" -#: src/Console/AppConsole.vala:44 +#: src/Console/AppConsole.vala:43 msgid "Check for kernel updates" msgstr "Έλεγχος για ενημερώσεις πυρήνα" -#: src/Console/AppConsole.vala:45 +#: src/Console/AppConsole.vala:44 msgid "Check for kernel updates and notify current user" msgstr "Έλεγχος για ενημερώσεις πυρήνα και ειδοποίηση τρέχοντα χρήστη" -#: src/Console/AppConsole.vala:46 +#: src/Console/AppConsole.vala:45 #, fuzzy msgid "List available mainline kernels" msgstr "Εμφάνιση όλων των διαθέσιμων πυρήνων mainline" -#: src/Console/AppConsole.vala:47 +#: src/Console/AppConsole.vala:46 msgid "List installed kernels" msgstr "Εμφάνιση εγκατεστημένων πυρήνων" -#: src/Console/AppConsole.vala:48 +#: src/Console/AppConsole.vala:47 msgid "Install latest mainline kernel" msgstr "Εγκατάσταση του πιο πρόσφατου πυρήνα mainline" -#: src/Console/AppConsole.vala:49 +#: src/Console/AppConsole.vala:48 #, fuzzy msgid "Install latest point update in the current major version" msgstr "Εγκαταστήστε την τελευταία ενημέρωση συντήρησης για την τρέχουσα σειρά" -#: src/Console/AppConsole.vala:50 +#: src/Console/AppConsole.vala:49 #, fuzzy msgid "Install specified kernels" msgstr "Απεγκατάσταση του καθορισμένου πυρήνα" -#: src/Console/AppConsole.vala:51 +#: src/Console/AppConsole.vala:50 #, fuzzy msgid "Uninstall specified kernels" msgstr "Απεγκατάσταση του καθορισμένου πυρήνα" -#: src/Console/AppConsole.vala:52 src/Gtk/MainWindow.vala:324 +#: src/Console/AppConsole.vala:51 src/Gtk/MainWindow.vala:326 msgid "Uninstall all but the highest installed version" msgstr "Απεγκαταστήστε όλες εκτός από την υψηλότερη εγκατεστημένη έκδοση" -#: src/Console/AppConsole.vala:53 +#: src/Console/AppConsole.vala:52 msgid "Download specified kernels" msgstr "Λήψη των καθορισμένων πυρήνων" -#: src/Console/AppConsole.vala:54 +#: src/Console/AppConsole.vala:53 msgid "Delete cached info about available kernels" msgstr "" "Διαγραφή προσωρινά αποθηκευμένων πληροφοριών σχετικά με διαθέσιμους πυρήνες" -#: src/Console/AppConsole.vala:56 src/Gtk/AppGtk.vala:76 +#: src/Console/AppConsole.vala:55 src/Gtk/AppGtk.vala:79 msgid "Options" msgstr "Επιλογές" -#: src/Console/AppConsole.vala:58 +#: src/Console/AppConsole.vala:57 msgid "Include unstable and RC releases" msgstr "Συμπεριλάβετε ασταθείς και RC εκδόσεις" -#: src/Console/AppConsole.vala:59 +#: src/Console/AppConsole.vala:58 msgid "Exclude unstable and RC releases" msgstr "Εξαίρεση ασταθών και RC εκδόσεων" -#: src/Console/AppConsole.vala:60 +#: src/Console/AppConsole.vala:59 msgid "Verbosity. Set to n if given, or increment." msgstr "" -#: src/Console/AppConsole.vala:61 +#: src/Console/AppConsole.vala:60 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "Υποθέστε Ναι για όλα τα μηνύματα (μη διαδραστική λειτουργία)" -#: src/Console/AppConsole.vala:64 +#: src/Console/AppConsole.vala:63 #, fuzzy msgid "One or more version strings taken from the output of --list" msgstr "Μια συμβολοσειρά έκδοσης που λαμβάνεται από την έξοδο του --list" -#: src/Console/AppConsole.vala:65 +#: src/Console/AppConsole.vala:64 msgid "comma, pipe, or colon-seperated, or quoted space seperated" msgstr "" -#: src/Console/AppConsole.vala:66 +#: src/Console/AppConsole.vala:65 #, fuzzy msgid "Locked kernels and the currently running kernel are ignored" msgstr "Αυτός ο πυρήνας είναι ήδη εγκατεστημένος." -#: src/Console/AppConsole.vala:143 src/Console/AppConsole.vala:200 -#: src/Gtk/AppGtk.vala:108 +#: src/Console/AppConsole.vala:142 src/Console/AppConsole.vala:196 +#: src/Gtk/AppGtk.vala:111 msgid "Unknown option" msgstr "Άγνωστη επιλογή" -#: src/Console/AppConsole.vala:236 +#: src/Console/AppConsole.vala:232 msgid "Notifications disabled in settings" msgstr "Οι ειδοποιήσεις είναι απενεργοποιημένες στις ρυθμίσεις" -#: src/Console/AppConsole.vala:264 +#: src/Console/AppConsole.vala:265 #, c-format msgid "Kernel %s Available" msgstr "Πυρήνας %s διαθέσιμος" -#: src/Console/AppConsole.vala:268 src/Gtk/SettingsDialog.vala:163 +#: src/Console/AppConsole.vala:269 src/Gtk/SettingsDialog.vala:154 msgid "Show" msgstr "Προβολή" -#: src/Console/AppConsole.vala:269 src/Gtk/MainWindow.vala:296 +#: src/Console/AppConsole.vala:270 src/Gtk/MainWindow.vala:305 msgid "Install" msgstr "Εγκατάσταση" -#: src/Console/AppConsole.vala:272 +#: src/Console/AppConsole.vala:273 msgid "Previously notified" msgstr "Έχει ήδη κοινοποιηθεί" @@ -348,7 +348,7 @@ msgstr "Μνεία" msgid "Back" msgstr "Πίσω" -#: src/Gtk/AboutWindow.vala:185 src/Gtk/TerminalWindow.vala:161 +#: src/Gtk/AboutWindow.vala:185 src/Gtk/TerminalWindow.vala:169 msgid "Close" msgstr "Κλείσιμο" @@ -376,160 +376,164 @@ msgstr "Τεκμηριωτές" msgid "Third Party Inclusions" msgstr "Συμπεριλήψεις τρίτων" -#: src/Gtk/AppGtk.vala:74 +#: src/Gtk/AppGtk.vala:77 msgid "options" msgstr "επιλογές" -#: src/Gtk/AppGtk.vala:78 +#: src/Gtk/AppGtk.vala:81 msgid "Print debug information" msgstr "Εκτύπωση πληροφοριών εντοπισμού σφαλμάτων" -#: src/Gtk/AppGtk.vala:79 +#: src/Gtk/AppGtk.vala:82 msgid "Show all options" msgstr "Εμφάνιση όλων των επιλογών" -#: src/Gtk/MainWindow.vala:143 +#: src/Gtk/MainWindow.vala:152 msgid "Lock" msgstr "" -#: src/Gtk/MainWindow.vala:160 +#: src/Gtk/MainWindow.vala:169 msgid "Status" msgstr "Κατάσταση" -#: src/Gtk/MainWindow.vala:172 +#: src/Gtk/MainWindow.vala:181 msgid "Notes" msgstr "Σημειώσεις" -#: src/Gtk/MainWindow.vala:304 +#: src/Gtk/MainWindow.vala:310 msgid "Uninstall" msgstr "Απεγκατάσταση" -#: src/Gtk/MainWindow.vala:313 +#: src/Gtk/MainWindow.vala:316 msgid "Changelog, build status, etc" msgstr "" -#: src/Gtk/MainWindow.vala:323 +#: src/Gtk/MainWindow.vala:325 msgid "Uninstall Old" msgstr "Απεγκατάσταση παλαιών" -#: src/Gtk/MainWindow.vala:329 +#: src/Gtk/MainWindow.vala:331 msgid "Reload" msgstr "Δροσίζω" -#: src/Gtk/MainWindow.vala:330 +#: src/Gtk/MainWindow.vala:332 msgid "Delete and reload all cached kernel info" msgstr "" -#: src/Gtk/MainWindow.vala:335 src/Gtk/SettingsDialog.vala:46 +#: src/Gtk/MainWindow.vala:337 src/Gtk/SettingsDialog.vala:43 msgid "Settings" msgstr "Ρυθμίσεις" -#: src/Gtk/MainWindow.vala:340 +#: src/Gtk/MainWindow.vala:342 msgid "About" msgstr "Σχετικά" -#: src/Gtk/MainWindow.vala:345 +#: src/Gtk/MainWindow.vala:347 msgid "Exit" msgstr "Έξοδος" -#: src/Gtk/MainWindow.vala:409 +#: src/Gtk/MainWindow.vala:428 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Πρόγραμμα αναβάθμισης πυρήνα για διανομές που βασίζονται στο Ubuntu" -#: src/Gtk/MainWindow.vala:410 +#: src/Gtk/MainWindow.vala:429 msgid "Forked" msgstr "Forked" -#: src/Gtk/MainWindow.vala:410 +#: src/Gtk/MainWindow.vala:429 msgid "Original" msgstr "Πρωτότυπο" -#: src/Gtk/MainWindow.vala:439 +#: src/Gtk/MainWindow.vala:458 msgid "Updating kernels" msgstr "Ενημέρωση πυρήνων" -#: src/Gtk/MainWindow.vala:507 +#: src/Gtk/MainWindow.vala:518 msgid "available" msgstr "διαθέσιμος" -#: src/Gtk/MainWindow.vala:557 src/Gtk/MainWindow.vala:596 -#: src/Gtk/MainWindow.vala:630 +#: src/Gtk/MainWindow.vala:560 src/Gtk/MainWindow.vala:591 +#: src/Gtk/MainWindow.vala:616 msgid "DONE" msgstr "" -#: src/Gtk/SettingsDialog.vala:56 +#: src/Gtk/SettingsDialog.vala:53 msgid "Notification" msgstr "Ειδοποίηση" -#: src/Gtk/SettingsDialog.vala:63 +#: src/Gtk/SettingsDialog.vala:60 msgid "Notify if a major release is available" msgstr "Ειδοποίηση αν είναι διαθέσιμη κύρια έκδοση" -#: src/Gtk/SettingsDialog.vala:72 +#: src/Gtk/SettingsDialog.vala:68 msgid "Notify if a point release is available" msgstr "Ειδοποίηση αν είναι διαθέσιμη έκδοση συντήρησης" -#: src/Gtk/SettingsDialog.vala:83 +#: src/Gtk/SettingsDialog.vala:76 msgid "Seconds interval enabled for debugging" msgstr "διάστημα δευτερολέπτων είναι ενεργοποιημένο για εντοπισμό σφαλμάτων" -#: src/Gtk/SettingsDialog.vala:106 +#: src/Gtk/SettingsDialog.vala:99 msgid "Check every" msgstr "Έλεγχος κάθε" -#: src/Gtk/SettingsDialog.vala:131 +#: src/Gtk/SettingsDialog.vala:122 msgid "Hours" msgstr "Ώρες" -#: src/Gtk/SettingsDialog.vala:133 +#: src/Gtk/SettingsDialog.vala:124 msgid "Days" msgstr "Ημέρες" -#: src/Gtk/SettingsDialog.vala:135 +#: src/Gtk/SettingsDialog.vala:126 msgid "Weeks" msgstr "Εβδομάδες" -#: src/Gtk/SettingsDialog.vala:138 +#: src/Gtk/SettingsDialog.vala:129 msgid "Seconds" msgstr "Δευτερόλεπτα" -#: src/Gtk/SettingsDialog.vala:144 +#: src/Gtk/SettingsDialog.vala:135 msgid "Filters" msgstr "Φίλτρα" -#: src/Gtk/SettingsDialog.vala:152 +#: src/Gtk/SettingsDialog.vala:143 msgid "Hide unstable and RC releases" msgstr "Απόκρυψη ασταθών και RC εκδόσεων" -#: src/Gtk/SettingsDialog.vala:174 +#: src/Gtk/SettingsDialog.vala:165 msgid "previous major versions ( -1 = all )" msgstr "προηγούμενες κύριες εκδόσεις ( -1 = όλες )" -#: src/Gtk/SettingsDialog.vala:178 +#: src/Gtk/SettingsDialog.vala:169 msgid "Network" msgstr "Δίκτυο" -#: src/Gtk/SettingsDialog.vala:189 +#: src/Gtk/SettingsDialog.vala:180 msgid "Internet connection timeout in" msgstr "Λήξη χρονικού ορίου σύνδεσης στο διαδίκτυο " -#: src/Gtk/SettingsDialog.vala:201 +#: src/Gtk/SettingsDialog.vala:192 msgid "seconds" msgstr "δευτερόλεπτα" -#: src/Gtk/SettingsDialog.vala:208 +#: src/Gtk/SettingsDialog.vala:199 msgid "Max concurrent downloads" msgstr "Μέγιστες ταυτόχρονες λήψεις" -#: src/Gtk/SettingsDialog.vala:222 +#: src/Gtk/SettingsDialog.vala:212 msgid "Verify Checksums with the CHECKSUMS files" msgstr "Επαλήθευση αθροισμάτων ελέγχου με τα αρχεία CHECKSUMS" -#: src/Gtk/SettingsDialog.vala:230 +#: src/Gtk/SettingsDialog.vala:220 msgid "Proxy" msgstr "Διακομιστής" -#: src/Gtk/TerminalWindow.vala:151 +#: src/Gtk/SettingsDialog.vala:249 +msgid "Done" +msgstr "" + +#: src/Gtk/TerminalWindow.vala:159 msgid "Cancel" msgstr "Άκυρο" diff --git a/po/es.po b/po/es.po index 6eb8c0f0..bcade4d3 100644 --- a/po/es.po +++ b/po/es.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-01 03:06-0400\n" +"POT-Creation-Date: 2023-06-03 06:21-0400\n" "PO-Revision-Date: 2018-01-03 02:03-0600\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish\n" @@ -13,329 +13,329 @@ msgstr "" "X-Launchpad-Export-Date: 2017-04-13 11:48+0000\n" "X-Generator: Poedit 2.0.5\n" -#: src/Common/LinuxKernel.vala:105 +#: src/Common/LinuxKernel.vala:100 msgid "Distribution" msgstr "Distribución" -#: src/Common/LinuxKernel.vala:120 +#: src/Common/LinuxKernel.vala:115 msgid "Architecture" msgstr "Arquitectura del sistema" -#: src/Common/LinuxKernel.vala:135 +#: src/Common/LinuxKernel.vala:130 msgid "Running kernel" msgstr "Kernel en ejecución" -#: src/Common/LinuxKernel.vala:238 +#: src/Common/LinuxKernel.vala:230 msgid "loading cached" msgstr "carga en caché" -#: src/Common/LinuxKernel.vala:250 +#: src/Common/LinuxKernel.vala:242 msgid "queuing download" msgstr "descarga de colas" -#: src/Common/LinuxKernel.vala:271 +#: src/Common/LinuxKernel.vala:263 msgid "Fetching individual kernel indexes" msgstr "Obtención de índices de kernel individuales" -#: src/Common/LinuxKernel.vala:285 +#: src/Common/LinuxKernel.vala:277 msgid "loading downloaded" msgstr "cargando descargado" -#: src/Common/LinuxKernel.vala:320 +#: src/Common/LinuxKernel.vala:318 msgid "Updating from" msgstr "Actualización desde" -#: src/Common/LinuxKernel.vala:328 +#: src/Common/LinuxKernel.vala:326 msgid "OK" msgstr "Aceptar" -#: src/Common/LinuxKernel.vala:331 +#: src/Common/LinuxKernel.vala:329 msgid "FAILED" msgstr "FRACASADO" -#: src/Common/LinuxKernel.vala:393 +#: src/Common/LinuxKernel.vala:392 msgid "Found installed" msgstr "Encontrado instalado" -#: src/Common/LinuxKernel.vala:394 +#: src/Common/LinuxKernel.vala:393 msgid "locked" msgstr "" -#: src/Common/LinuxKernel.vala:476 src/Common/LinuxKernel.vala:999 -#: src/Common/LinuxKernel.vala:1089 +#: src/Common/LinuxKernel.vala:475 src/Common/LinuxKernel.vala:1003 +#: src/Common/LinuxKernel.vala:1093 msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:669 src/Gtk/MainWindow.vala:503 +#: src/Common/LinuxKernel.vala:668 src/Gtk/MainWindow.vala:514 msgid "Running" msgstr "En ejecución" -#: src/Common/LinuxKernel.vala:670 +#: src/Common/LinuxKernel.vala:669 msgid "Installed" msgstr "Instalado" -#: src/Common/LinuxKernel.vala:671 +#: src/Common/LinuxKernel.vala:670 msgid "Invalid" msgstr "No válido" -#: src/Common/LinuxKernel.vala:756 +#: src/Common/LinuxKernel.vala:760 msgid "Packages Available" msgstr "Paquetes disponibles" -#: src/Common/LinuxKernel.vala:762 +#: src/Common/LinuxKernel.vala:766 msgid "Packages Installed" msgstr "Paquetes instalados" -#: src/Common/LinuxKernel.vala:787 src/lib/TeeJee.FileSystem.vala:103 +#: src/Common/LinuxKernel.vala:791 src/lib/TeeJee.FileSystem.vala:99 msgid "File not found" msgstr "No se encontró el archivo" -#: src/Common/LinuxKernel.vala:881 +#: src/Common/LinuxKernel.vala:885 msgid "Available Kernels" msgstr "Núcleos disponibles" -#: src/Common/LinuxKernel.vala:916 src/Gtk/MainWindow.vala:119 +#: src/Common/LinuxKernel.vala:920 src/Gtk/MainWindow.vala:128 msgid "Kernel" msgstr "Núcleo" -#: src/Common/LinuxKernel.vala:916 +#: src/Common/LinuxKernel.vala:920 #, fuzzy msgid "not found" msgstr "No se encontró el archivo" -#: src/Common/LinuxKernel.vala:923 +#: src/Common/LinuxKernel.vala:927 #, fuzzy msgid "Download: no downloadable kernels specified" msgstr "Coomand no especificado" -#: src/Common/LinuxKernel.vala:943 +#: src/Common/LinuxKernel.vala:947 msgid "enabled" msgstr "habilitado" -#: src/Common/LinuxKernel.vala:967 +#: src/Common/LinuxKernel.vala:971 msgid "Downloading" msgstr "Descargar" -#: src/Common/LinuxKernel.vala:985 +#: src/Common/LinuxKernel.vala:989 #, fuzzy msgid "Installing selected kernels" msgstr "Desinstalación de kernels seleccionados" -#: src/Common/LinuxKernel.vala:991 src/Common/LinuxKernel.vala:1029 +#: src/Common/LinuxKernel.vala:995 src/Common/LinuxKernel.vala:1033 #, fuzzy msgid "Requested" msgstr "solicitado" -#: src/Common/LinuxKernel.vala:994 +#: src/Common/LinuxKernel.vala:998 msgid "is already installed." msgstr "ya está instalado." -#: src/Common/LinuxKernel.vala:1004 +#: src/Common/LinuxKernel.vala:1008 msgid "download failed." msgstr "" -#: src/Common/LinuxKernel.vala:1012 +#: src/Common/LinuxKernel.vala:1016 #, fuzzy msgid "Install: no installable kernels secified" msgstr "Coomand no especificado" -#: src/Common/LinuxKernel.vala:1025 +#: src/Common/LinuxKernel.vala:1029 msgid "Uninstalling selected kernels" msgstr "Desinstalación de kernels seleccionados" -#: src/Common/LinuxKernel.vala:1032 +#: src/Common/LinuxKernel.vala:1036 #, fuzzy msgid "Not uninstalling the currently running kernel" msgstr "No desinstalará el kernel que se está ejecutando actualmente" -#: src/Common/LinuxKernel.vala:1037 +#: src/Common/LinuxKernel.vala:1041 msgid "is locked" msgstr "" -#: src/Common/LinuxKernel.vala:1045 +#: src/Common/LinuxKernel.vala:1049 msgid "found" msgstr "fundar" -#: src/Common/LinuxKernel.vala:1049 +#: src/Common/LinuxKernel.vala:1053 msgid "Uninstall: no uninstallable packages found" msgstr "" -#: src/Common/LinuxKernel.vala:1085 +#: src/Common/LinuxKernel.vala:1089 #, fuzzy msgid "is the highest installed version." msgstr "Desinstale todas las versiones instaladas excepto la más alta" -#: src/Common/LinuxKernel.vala:1098 +#: src/Common/LinuxKernel.vala:1102 msgid "Could not find running kernel in list" msgstr "No se pudo encontrar el kernel en ejecución en la lista" -#: src/Common/LinuxKernel.vala:1103 +#: src/Common/LinuxKernel.vala:1107 msgid "Could not find any kernels to uninstall" msgstr "No se pudo encontrar ningún kernel para desinstalar" -#: src/Common/LinuxKernel.vala:1111 +#: src/Common/LinuxKernel.vala:1115 msgid "The following kernels will be uninstalled" msgstr "Se desinstalarán los siguientes kernels" -#: src/Common/LinuxKernel.vala:1115 +#: src/Common/LinuxKernel.vala:1119 msgid "Continue ?" msgstr "¿Continuar?" -#: src/Common/LinuxKernel.vala:1137 src/Console/AppConsole.vala:215 +#: src/Common/LinuxKernel.vala:1141 src/Console/AppConsole.vala:211 msgid "Latest update" msgstr "Última actualización" -#: src/Common/LinuxKernel.vala:1148 src/Console/AppConsole.vala:222 +#: src/Common/LinuxKernel.vala:1152 src/Console/AppConsole.vala:218 msgid "Latest point update" msgstr "Última actualización puntual" -#: src/Common/LinuxKernel.vala:1156 src/Console/AppConsole.vala:227 -#: src/Console/AppConsole.vala:242 +#: src/Common/LinuxKernel.vala:1160 src/Console/AppConsole.vala:223 +#: src/Console/AppConsole.vala:243 msgid "No updates found" msgstr "No se encontró ninguna actualización" -#: src/Common/LinuxKernel.vala:1165 +#: src/Common/LinuxKernel.vala:1169 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Instalar la versión del kernel %s? (s/n): " -#: src/Common/Main.vala:345 +#: src/Common/Main.vala:340 msgid "Called from" msgstr "Llamado desde" -#: src/Common/Main.vala:345 +#: src/Common/Main.vala:340 msgid "at logon" msgstr "al inicio" -#: src/Common/Main.vala:346 +#: src/Common/Main.vala:341 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" "Este archivo se sobrescribe y se ejecuta de nuevo cada vez que se guarda la " "configuración en" -#: src/Common/Main.vala:378 +#: src/Common/Main.vala:373 msgid "Notifications are disabled" msgstr "Las notificaciones están deshabilitadas" -#: src/Common/Package.vala:57 +#: src/Common/Package.vala:58 #, c-format msgid "File not found: %s" msgstr "Archivo no encontrado: %s" -#: src/Console/AppConsole.vala:40 src/Gtk/AppGtk.vala:74 +#: src/Console/AppConsole.vala:39 src/Gtk/AppGtk.vala:77 msgid "Syntax" msgstr "Sintaxis" -#: src/Console/AppConsole.vala:42 +#: src/Console/AppConsole.vala:41 msgid "Commands" msgstr "Comandos" -#: src/Console/AppConsole.vala:44 +#: src/Console/AppConsole.vala:43 msgid "Check for kernel updates" msgstr "Buscar actualizaciones del núcleo" -#: src/Console/AppConsole.vala:45 +#: src/Console/AppConsole.vala:44 msgid "Check for kernel updates and notify current user" msgstr "Compruebe las actualizaciones del kernel y notifique al usuario actual" -#: src/Console/AppConsole.vala:46 +#: src/Console/AppConsole.vala:45 #, fuzzy msgid "List available mainline kernels" msgstr "Mostrar todos los núcleos troncales disponibles" -#: src/Console/AppConsole.vala:47 +#: src/Console/AppConsole.vala:46 msgid "List installed kernels" msgstr "Mostrar kernels disponibles" -#: src/Console/AppConsole.vala:48 +#: src/Console/AppConsole.vala:47 msgid "Install latest mainline kernel" msgstr "Instalar kernel troncal especificado" -#: src/Console/AppConsole.vala:49 +#: src/Console/AppConsole.vala:48 #, fuzzy msgid "Install latest point update in the current major version" msgstr "Instalar la actualización de punto más reciente para la serie actual" -#: src/Console/AppConsole.vala:50 +#: src/Console/AppConsole.vala:49 #, fuzzy msgid "Install specified kernels" msgstr "Desinstalar el kernel especificado" -#: src/Console/AppConsole.vala:51 +#: src/Console/AppConsole.vala:50 #, fuzzy msgid "Uninstall specified kernels" msgstr "Desinstalar el kernel especificado" -#: src/Console/AppConsole.vala:52 src/Gtk/MainWindow.vala:324 +#: src/Console/AppConsole.vala:51 src/Gtk/MainWindow.vala:326 msgid "Uninstall all but the highest installed version" msgstr "Desinstale todas las versiones instaladas excepto la más alta" -#: src/Console/AppConsole.vala:53 +#: src/Console/AppConsole.vala:52 msgid "Download specified kernels" msgstr "Descargar kernels especificados" -#: src/Console/AppConsole.vala:54 +#: src/Console/AppConsole.vala:53 msgid "Delete cached info about available kernels" msgstr "Eliminar información almacenada en caché sobre los kernels disponibles" -#: src/Console/AppConsole.vala:56 src/Gtk/AppGtk.vala:76 +#: src/Console/AppConsole.vala:55 src/Gtk/AppGtk.vala:79 msgid "Options" msgstr "Opciones" -#: src/Console/AppConsole.vala:58 +#: src/Console/AppConsole.vala:57 msgid "Include unstable and RC releases" msgstr "Incluye versiones inestables y RC" -#: src/Console/AppConsole.vala:59 +#: src/Console/AppConsole.vala:58 msgid "Exclude unstable and RC releases" msgstr "Excluir versiones inestables y RC" -#: src/Console/AppConsole.vala:60 +#: src/Console/AppConsole.vala:59 msgid "Verbosity. Set to n if given, or increment." msgstr "" -#: src/Console/AppConsole.vala:61 +#: src/Console/AppConsole.vala:60 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "Asumir Sí para todas las solicitudes (modo no interactivo)" -#: src/Console/AppConsole.vala:64 +#: src/Console/AppConsole.vala:63 #, fuzzy msgid "One or more version strings taken from the output of --list" msgstr "Una cadena de versión tomada de la salida de --list" -#: src/Console/AppConsole.vala:65 +#: src/Console/AppConsole.vala:64 msgid "comma, pipe, or colon-seperated, or quoted space seperated" msgstr "" -#: src/Console/AppConsole.vala:66 +#: src/Console/AppConsole.vala:65 #, fuzzy msgid "Locked kernels and the currently running kernel are ignored" msgstr "El kernel que se está ejecutando actualmente siempre será ignorado" -#: src/Console/AppConsole.vala:143 src/Console/AppConsole.vala:200 -#: src/Gtk/AppGtk.vala:108 +#: src/Console/AppConsole.vala:142 src/Console/AppConsole.vala:196 +#: src/Gtk/AppGtk.vala:111 msgid "Unknown option" msgstr "Opción desconocida" -#: src/Console/AppConsole.vala:236 +#: src/Console/AppConsole.vala:232 msgid "Notifications disabled in settings" msgstr "Notificaciones deshabilitadas en la configuración" -#: src/Console/AppConsole.vala:264 +#: src/Console/AppConsole.vala:265 #, c-format msgid "Kernel %s Available" msgstr "Kernel %s Disponible" -#: src/Console/AppConsole.vala:268 src/Gtk/SettingsDialog.vala:163 +#: src/Console/AppConsole.vala:269 src/Gtk/SettingsDialog.vala:154 msgid "Show" msgstr "Mostrar" -#: src/Console/AppConsole.vala:269 src/Gtk/MainWindow.vala:296 +#: src/Console/AppConsole.vala:270 src/Gtk/MainWindow.vala:305 msgid "Install" msgstr "Instalar" -#: src/Console/AppConsole.vala:272 +#: src/Console/AppConsole.vala:273 msgid "Previously notified" msgstr "Notificado previamente" @@ -347,7 +347,7 @@ msgstr "Créditos" msgid "Back" msgstr "Atrás" -#: src/Gtk/AboutWindow.vala:185 src/Gtk/TerminalWindow.vala:161 +#: src/Gtk/AboutWindow.vala:185 src/Gtk/TerminalWindow.vala:169 msgid "Close" msgstr "Cerrar" @@ -375,161 +375,165 @@ msgstr "Documentadores" msgid "Third Party Inclusions" msgstr "Herramientas de Terceros" -#: src/Gtk/AppGtk.vala:74 +#: src/Gtk/AppGtk.vala:77 msgid "options" msgstr "opciones" -#: src/Gtk/AppGtk.vala:78 +#: src/Gtk/AppGtk.vala:81 msgid "Print debug information" msgstr "Mostrar información de depuración" -#: src/Gtk/AppGtk.vala:79 +#: src/Gtk/AppGtk.vala:82 msgid "Show all options" msgstr "Mostrar todas las opciones" -#: src/Gtk/MainWindow.vala:143 +#: src/Gtk/MainWindow.vala:152 msgid "Lock" msgstr "" -#: src/Gtk/MainWindow.vala:160 +#: src/Gtk/MainWindow.vala:169 msgid "Status" msgstr "Estado" -#: src/Gtk/MainWindow.vala:172 +#: src/Gtk/MainWindow.vala:181 msgid "Notes" msgstr "Notas" -#: src/Gtk/MainWindow.vala:304 +#: src/Gtk/MainWindow.vala:310 msgid "Uninstall" msgstr "Desinstalar" -#: src/Gtk/MainWindow.vala:313 +#: src/Gtk/MainWindow.vala:316 msgid "Changelog, build status, etc" msgstr "" -#: src/Gtk/MainWindow.vala:323 +#: src/Gtk/MainWindow.vala:325 msgid "Uninstall Old" msgstr "Desinstalar Antiguo" -#: src/Gtk/MainWindow.vala:329 +#: src/Gtk/MainWindow.vala:331 msgid "Reload" msgstr "Recargar" -#: src/Gtk/MainWindow.vala:330 +#: src/Gtk/MainWindow.vala:332 msgid "Delete and reload all cached kernel info" msgstr "" -#: src/Gtk/MainWindow.vala:335 src/Gtk/SettingsDialog.vala:46 +#: src/Gtk/MainWindow.vala:337 src/Gtk/SettingsDialog.vala:43 msgid "Settings" msgstr "Configuración" -#: src/Gtk/MainWindow.vala:340 +#: src/Gtk/MainWindow.vala:342 msgid "About" msgstr "Acerca de" -#: src/Gtk/MainWindow.vala:345 +#: src/Gtk/MainWindow.vala:347 msgid "Exit" msgstr "Salida" -#: src/Gtk/MainWindow.vala:409 +#: src/Gtk/MainWindow.vala:428 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "" "Herramienta de renovación de núcleo para distribuciones basadas en Ubuntu" -#: src/Gtk/MainWindow.vala:410 +#: src/Gtk/MainWindow.vala:429 msgid "Forked" msgstr "Bifurcada" -#: src/Gtk/MainWindow.vala:410 +#: src/Gtk/MainWindow.vala:429 msgid "Original" msgstr "Original" -#: src/Gtk/MainWindow.vala:439 +#: src/Gtk/MainWindow.vala:458 msgid "Updating kernels" msgstr "Actualización de kernels" -#: src/Gtk/MainWindow.vala:507 +#: src/Gtk/MainWindow.vala:518 msgid "available" msgstr "disponibles" -#: src/Gtk/MainWindow.vala:557 src/Gtk/MainWindow.vala:596 -#: src/Gtk/MainWindow.vala:630 +#: src/Gtk/MainWindow.vala:560 src/Gtk/MainWindow.vala:591 +#: src/Gtk/MainWindow.vala:616 msgid "DONE" msgstr "" -#: src/Gtk/SettingsDialog.vala:56 +#: src/Gtk/SettingsDialog.vala:53 msgid "Notification" msgstr "Notificación" -#: src/Gtk/SettingsDialog.vala:63 +#: src/Gtk/SettingsDialog.vala:60 msgid "Notify if a major release is available" msgstr "Notificar si hay una versión importante disponible" -#: src/Gtk/SettingsDialog.vala:72 +#: src/Gtk/SettingsDialog.vala:68 msgid "Notify if a point release is available" msgstr "Notificar si hay una versión puntual disponible" -#: src/Gtk/SettingsDialog.vala:83 +#: src/Gtk/SettingsDialog.vala:76 msgid "Seconds interval enabled for debugging" msgstr "Intervalo de segundos habilitado para la depuración" -#: src/Gtk/SettingsDialog.vala:106 +#: src/Gtk/SettingsDialog.vala:99 msgid "Check every" msgstr "Comprobar cada" -#: src/Gtk/SettingsDialog.vala:131 +#: src/Gtk/SettingsDialog.vala:122 msgid "Hours" msgstr "Horas" -#: src/Gtk/SettingsDialog.vala:133 +#: src/Gtk/SettingsDialog.vala:124 msgid "Days" msgstr "Días" -#: src/Gtk/SettingsDialog.vala:135 +#: src/Gtk/SettingsDialog.vala:126 msgid "Weeks" msgstr "Semanas" -#: src/Gtk/SettingsDialog.vala:138 +#: src/Gtk/SettingsDialog.vala:129 msgid "Seconds" msgstr "Sobras" -#: src/Gtk/SettingsDialog.vala:144 +#: src/Gtk/SettingsDialog.vala:135 msgid "Filters" msgstr "Filtros" -#: src/Gtk/SettingsDialog.vala:152 +#: src/Gtk/SettingsDialog.vala:143 msgid "Hide unstable and RC releases" msgstr "Ocultar versiones inestables y RC" -#: src/Gtk/SettingsDialog.vala:174 +#: src/Gtk/SettingsDialog.vala:165 msgid "previous major versions ( -1 = all )" msgstr "Versiones principales anteriores ( -1 = todas )" -#: src/Gtk/SettingsDialog.vala:178 +#: src/Gtk/SettingsDialog.vala:169 msgid "Network" msgstr "Red" -#: src/Gtk/SettingsDialog.vala:189 +#: src/Gtk/SettingsDialog.vala:180 msgid "Internet connection timeout in" msgstr "Tiempo de espera de conexión a Internet en" -#: src/Gtk/SettingsDialog.vala:201 +#: src/Gtk/SettingsDialog.vala:192 msgid "seconds" msgstr "sobras" -#: src/Gtk/SettingsDialog.vala:208 +#: src/Gtk/SettingsDialog.vala:199 msgid "Max concurrent downloads" msgstr "Descargas máximas de la competencia" -#: src/Gtk/SettingsDialog.vala:222 +#: src/Gtk/SettingsDialog.vala:212 msgid "Verify Checksums with the CHECKSUMS files" msgstr "Verificar sumas de comprobación con los archivos CHECKSUMS" -#: src/Gtk/SettingsDialog.vala:230 +#: src/Gtk/SettingsDialog.vala:220 msgid "Proxy" msgstr "Proxy" -#: src/Gtk/TerminalWindow.vala:151 +#: src/Gtk/SettingsDialog.vala:249 +msgid "Done" +msgstr "" + +#: src/Gtk/TerminalWindow.vala:159 msgid "Cancel" msgstr "Cancelar" diff --git a/po/fr.po b/po/fr.po index 956b4cb1..df4f8402 100644 --- a/po/fr.po +++ b/po/fr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-01 03:06-0400\n" +"POT-Creation-Date: 2023-06-03 06:21-0400\n" "PO-Revision-Date: 2018-08-05 15:50+0200\n" "Last-Translator: Yolateng0 \n" "Language-Team: French\n" @@ -13,329 +13,329 @@ msgstr "" "X-Launchpad-Export-Date: 2017-04-13 11:48+0000\n" "X-Generator: Poedit 2.0.6\n" -#: src/Common/LinuxKernel.vala:105 +#: src/Common/LinuxKernel.vala:100 msgid "Distribution" msgstr "Distribution" -#: src/Common/LinuxKernel.vala:120 +#: src/Common/LinuxKernel.vala:115 msgid "Architecture" msgstr "Architecture" -#: src/Common/LinuxKernel.vala:135 +#: src/Common/LinuxKernel.vala:130 msgid "Running kernel" msgstr "Noyau en cours d'exécution" -#: src/Common/LinuxKernel.vala:238 +#: src/Common/LinuxKernel.vala:230 msgid "loading cached" msgstr "chargement mis en cache" -#: src/Common/LinuxKernel.vala:250 +#: src/Common/LinuxKernel.vala:242 msgid "queuing download" msgstr "enqueuing télécharger" -#: src/Common/LinuxKernel.vala:271 +#: src/Common/LinuxKernel.vala:263 msgid "Fetching individual kernel indexes" msgstr "Récupération d'index de noyau individuels" -#: src/Common/LinuxKernel.vala:285 +#: src/Common/LinuxKernel.vala:277 msgid "loading downloaded" msgstr "chargement téléchargé" -#: src/Common/LinuxKernel.vala:320 +#: src/Common/LinuxKernel.vala:318 msgid "Updating from" msgstr "Mise à jour à partir de" -#: src/Common/LinuxKernel.vala:328 +#: src/Common/LinuxKernel.vala:326 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:331 +#: src/Common/LinuxKernel.vala:329 msgid "FAILED" msgstr "RATÉ" -#: src/Common/LinuxKernel.vala:393 +#: src/Common/LinuxKernel.vala:392 msgid "Found installed" msgstr "Trouvé installé" -#: src/Common/LinuxKernel.vala:394 +#: src/Common/LinuxKernel.vala:393 msgid "locked" msgstr "" -#: src/Common/LinuxKernel.vala:476 src/Common/LinuxKernel.vala:999 -#: src/Common/LinuxKernel.vala:1089 +#: src/Common/LinuxKernel.vala:475 src/Common/LinuxKernel.vala:1003 +#: src/Common/LinuxKernel.vala:1093 msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:669 src/Gtk/MainWindow.vala:503 +#: src/Common/LinuxKernel.vala:668 src/Gtk/MainWindow.vala:514 msgid "Running" msgstr "Actuel" -#: src/Common/LinuxKernel.vala:670 +#: src/Common/LinuxKernel.vala:669 msgid "Installed" msgstr "Installé" -#: src/Common/LinuxKernel.vala:671 +#: src/Common/LinuxKernel.vala:670 msgid "Invalid" msgstr "No válido" -#: src/Common/LinuxKernel.vala:756 +#: src/Common/LinuxKernel.vala:760 msgid "Packages Available" msgstr "Paquets Disponibles" -#: src/Common/LinuxKernel.vala:762 +#: src/Common/LinuxKernel.vala:766 msgid "Packages Installed" msgstr "Paquets Installés" -#: src/Common/LinuxKernel.vala:787 src/lib/TeeJee.FileSystem.vala:103 +#: src/Common/LinuxKernel.vala:791 src/lib/TeeJee.FileSystem.vala:99 msgid "File not found" msgstr "Fichier non trouvé" -#: src/Common/LinuxKernel.vala:881 +#: src/Common/LinuxKernel.vala:885 msgid "Available Kernels" msgstr "Noyaux Disponibles" -#: src/Common/LinuxKernel.vala:916 src/Gtk/MainWindow.vala:119 +#: src/Common/LinuxKernel.vala:920 src/Gtk/MainWindow.vala:128 msgid "Kernel" msgstr "Noyau" -#: src/Common/LinuxKernel.vala:916 +#: src/Common/LinuxKernel.vala:920 #, fuzzy msgid "not found" msgstr "Fichier non trouvé" -#: src/Common/LinuxKernel.vala:923 +#: src/Common/LinuxKernel.vala:927 #, fuzzy msgid "Download: no downloadable kernels specified" msgstr "Pas de commande fournie" -#: src/Common/LinuxKernel.vala:943 +#: src/Common/LinuxKernel.vala:947 msgid "enabled" msgstr "activé" -#: src/Common/LinuxKernel.vala:967 +#: src/Common/LinuxKernel.vala:971 msgid "Downloading" msgstr "Téléchargement" -#: src/Common/LinuxKernel.vala:985 +#: src/Common/LinuxKernel.vala:989 #, fuzzy msgid "Installing selected kernels" msgstr "Désinstallation des noyaux sélectionnés" -#: src/Common/LinuxKernel.vala:991 src/Common/LinuxKernel.vala:1029 +#: src/Common/LinuxKernel.vala:995 src/Common/LinuxKernel.vala:1033 #, fuzzy msgid "Requested" msgstr "Demandé" -#: src/Common/LinuxKernel.vala:994 +#: src/Common/LinuxKernel.vala:998 msgid "is already installed." msgstr "est déjà installé." -#: src/Common/LinuxKernel.vala:1004 +#: src/Common/LinuxKernel.vala:1008 msgid "download failed." msgstr "" -#: src/Common/LinuxKernel.vala:1012 +#: src/Common/LinuxKernel.vala:1016 #, fuzzy msgid "Install: no installable kernels secified" msgstr "Pas de commande fournie" -#: src/Common/LinuxKernel.vala:1025 +#: src/Common/LinuxKernel.vala:1029 msgid "Uninstalling selected kernels" msgstr "Désinstallation des noyaux sélectionnés" -#: src/Common/LinuxKernel.vala:1032 +#: src/Common/LinuxKernel.vala:1036 #, fuzzy msgid "Not uninstalling the currently running kernel" msgstr "Ne pas désinstaller le noyau en cours d'exécution" -#: src/Common/LinuxKernel.vala:1037 +#: src/Common/LinuxKernel.vala:1041 msgid "is locked" msgstr "" -#: src/Common/LinuxKernel.vala:1045 +#: src/Common/LinuxKernel.vala:1049 msgid "found" msgstr "fonder" -#: src/Common/LinuxKernel.vala:1049 +#: src/Common/LinuxKernel.vala:1053 msgid "Uninstall: no uninstallable packages found" msgstr "" -#: src/Common/LinuxKernel.vala:1085 +#: src/Common/LinuxKernel.vala:1089 #, fuzzy msgid "is the highest installed version." msgstr "Désinstallez toutes le version installées, sauf la plus élevée" -#: src/Common/LinuxKernel.vala:1098 +#: src/Common/LinuxKernel.vala:1102 msgid "Could not find running kernel in list" msgstr "Impossible de trouver le noyau en cours d'exécution dans la liste" -#: src/Common/LinuxKernel.vala:1103 +#: src/Common/LinuxKernel.vala:1107 msgid "Could not find any kernels to uninstall" msgstr "Impossible de trouver des noyaux à désinstaller" -#: src/Common/LinuxKernel.vala:1111 +#: src/Common/LinuxKernel.vala:1115 msgid "The following kernels will be uninstalled" msgstr "Les noyaux suivants seront désinstallés" -#: src/Common/LinuxKernel.vala:1115 +#: src/Common/LinuxKernel.vala:1119 msgid "Continue ?" msgstr "Reprendre ?" -#: src/Common/LinuxKernel.vala:1137 src/Console/AppConsole.vala:215 +#: src/Common/LinuxKernel.vala:1141 src/Console/AppConsole.vala:211 msgid "Latest update" msgstr "Dernière mise à jour" -#: src/Common/LinuxKernel.vala:1148 src/Console/AppConsole.vala:222 +#: src/Common/LinuxKernel.vala:1152 src/Console/AppConsole.vala:218 msgid "Latest point update" msgstr "Dernière mise à jour mineure" -#: src/Common/LinuxKernel.vala:1156 src/Console/AppConsole.vala:227 -#: src/Console/AppConsole.vala:242 +#: src/Common/LinuxKernel.vala:1160 src/Console/AppConsole.vala:223 +#: src/Console/AppConsole.vala:243 msgid "No updates found" msgstr "Aucune mise à jour disponible" -#: src/Common/LinuxKernel.vala:1165 +#: src/Common/LinuxKernel.vala:1169 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Installer le noyau en version %s ? (y/n): " -#: src/Common/Main.vala:345 +#: src/Common/Main.vala:340 msgid "Called from" msgstr "Appelé à partir de" -#: src/Common/Main.vala:345 +#: src/Common/Main.vala:340 msgid "at logon" msgstr "au démarrage" -#: src/Common/Main.vala:346 +#: src/Common/Main.vala:341 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" "Ce fichier est écrasé et exécuté à nouveau chaque fois que les paramètres " "sont enregistrés dans" -#: src/Common/Main.vala:378 +#: src/Common/Main.vala:373 msgid "Notifications are disabled" msgstr "Les notifications sont désactivées" -#: src/Common/Package.vala:57 +#: src/Common/Package.vala:58 #, c-format msgid "File not found: %s" msgstr "Fichier introuvable : %s" -#: src/Console/AppConsole.vala:40 src/Gtk/AppGtk.vala:74 +#: src/Console/AppConsole.vala:39 src/Gtk/AppGtk.vala:77 msgid "Syntax" msgstr "Syntaxe" -#: src/Console/AppConsole.vala:42 +#: src/Console/AppConsole.vala:41 msgid "Commands" msgstr "Commandes" -#: src/Console/AppConsole.vala:44 +#: src/Console/AppConsole.vala:43 msgid "Check for kernel updates" msgstr "Vérifier les mises à jour de noyau" -#: src/Console/AppConsole.vala:45 +#: src/Console/AppConsole.vala:44 msgid "Check for kernel updates and notify current user" msgstr "Vérifier les mises à jour de noyau et notifier l'utilisateur" -#: src/Console/AppConsole.vala:46 +#: src/Console/AppConsole.vala:45 #, fuzzy msgid "List available mainline kernels" msgstr "Lister tous les noyaux mainline disponibles" -#: src/Console/AppConsole.vala:47 +#: src/Console/AppConsole.vala:46 msgid "List installed kernels" msgstr "Lister les noyaux installés" -#: src/Console/AppConsole.vala:48 +#: src/Console/AppConsole.vala:47 msgid "Install latest mainline kernel" msgstr "Installer le dernier noyau mainline" -#: src/Console/AppConsole.vala:49 +#: src/Console/AppConsole.vala:48 #, fuzzy msgid "Install latest point update in the current major version" msgstr "Installer la dernière version mineure pour la série courante" -#: src/Console/AppConsole.vala:50 +#: src/Console/AppConsole.vala:49 #, fuzzy msgid "Install specified kernels" msgstr "Désinstaller le noyau spécifié" -#: src/Console/AppConsole.vala:51 +#: src/Console/AppConsole.vala:50 #, fuzzy msgid "Uninstall specified kernels" msgstr "Désinstaller le noyau spécifié" -#: src/Console/AppConsole.vala:52 src/Gtk/MainWindow.vala:324 +#: src/Console/AppConsole.vala:51 src/Gtk/MainWindow.vala:326 msgid "Uninstall all but the highest installed version" msgstr "Désinstallez toutes le version installées, sauf la plus élevée" -#: src/Console/AppConsole.vala:53 +#: src/Console/AppConsole.vala:52 msgid "Download specified kernels" msgstr "Télécharger les noyaux spécifiés" -#: src/Console/AppConsole.vala:54 +#: src/Console/AppConsole.vala:53 msgid "Delete cached info about available kernels" msgstr "Supprimer les informations mises en cache sur les noyaux disponibles" -#: src/Console/AppConsole.vala:56 src/Gtk/AppGtk.vala:76 +#: src/Console/AppConsole.vala:55 src/Gtk/AppGtk.vala:79 msgid "Options" msgstr "Options" -#: src/Console/AppConsole.vala:58 +#: src/Console/AppConsole.vala:57 msgid "Include unstable and RC releases" msgstr "Inclure les versions instables et RC" -#: src/Console/AppConsole.vala:59 +#: src/Console/AppConsole.vala:58 msgid "Exclude unstable and RC releases" msgstr "Exclure les versions instables et RC" -#: src/Console/AppConsole.vala:60 +#: src/Console/AppConsole.vala:59 msgid "Verbosity. Set to n if given, or increment." msgstr "" -#: src/Console/AppConsole.vala:61 +#: src/Console/AppConsole.vala:60 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "Supposons Oui pour toutes les invites (mode non interactif)" -#: src/Console/AppConsole.vala:64 +#: src/Console/AppConsole.vala:63 #, fuzzy msgid "One or more version strings taken from the output of --list" msgstr "Une version prise du resultat de --list" -#: src/Console/AppConsole.vala:65 +#: src/Console/AppConsole.vala:64 msgid "comma, pipe, or colon-seperated, or quoted space seperated" msgstr "" -#: src/Console/AppConsole.vala:66 +#: src/Console/AppConsole.vala:65 #, fuzzy msgid "Locked kernels and the currently running kernel are ignored" msgstr "Le noyau en cours d'exécution sera toujours ignoré" -#: src/Console/AppConsole.vala:143 src/Console/AppConsole.vala:200 -#: src/Gtk/AppGtk.vala:108 +#: src/Console/AppConsole.vala:142 src/Console/AppConsole.vala:196 +#: src/Gtk/AppGtk.vala:111 msgid "Unknown option" msgstr "Option inconnue" -#: src/Console/AppConsole.vala:236 +#: src/Console/AppConsole.vala:232 msgid "Notifications disabled in settings" msgstr "Notifications désactivées dans les paramètres" -#: src/Console/AppConsole.vala:264 +#: src/Console/AppConsole.vala:265 #, c-format msgid "Kernel %s Available" msgstr "Paquet %s disponibles" -#: src/Console/AppConsole.vala:268 src/Gtk/SettingsDialog.vala:163 +#: src/Console/AppConsole.vala:269 src/Gtk/SettingsDialog.vala:154 msgid "Show" msgstr "Montrer" -#: src/Console/AppConsole.vala:269 src/Gtk/MainWindow.vala:296 +#: src/Console/AppConsole.vala:270 src/Gtk/MainWindow.vala:305 msgid "Install" msgstr "Installer" -#: src/Console/AppConsole.vala:272 +#: src/Console/AppConsole.vala:273 msgid "Previously notified" msgstr "Précédemment notifié" @@ -347,7 +347,7 @@ msgstr "Crédits" msgid "Back" msgstr "Retour" -#: src/Gtk/AboutWindow.vala:185 src/Gtk/TerminalWindow.vala:161 +#: src/Gtk/AboutWindow.vala:185 src/Gtk/TerminalWindow.vala:169 msgid "Close" msgstr "Fermer" @@ -375,162 +375,166 @@ msgstr "Documentalistes" msgid "Third Party Inclusions" msgstr "Dépendances Tierces" -#: src/Gtk/AppGtk.vala:74 +#: src/Gtk/AppGtk.vala:77 msgid "options" msgstr "options" -#: src/Gtk/AppGtk.vala:78 +#: src/Gtk/AppGtk.vala:81 msgid "Print debug information" msgstr "Afficher les informations de débogage" -#: src/Gtk/AppGtk.vala:79 +#: src/Gtk/AppGtk.vala:82 msgid "Show all options" msgstr "Afficher toutes les options" -#: src/Gtk/MainWindow.vala:143 +#: src/Gtk/MainWindow.vala:152 msgid "Lock" msgstr "" -#: src/Gtk/MainWindow.vala:160 +#: src/Gtk/MainWindow.vala:169 msgid "Status" msgstr "Statut" -#: src/Gtk/MainWindow.vala:172 +#: src/Gtk/MainWindow.vala:181 msgid "Notes" msgstr "Notes" -#: src/Gtk/MainWindow.vala:304 +#: src/Gtk/MainWindow.vala:310 msgid "Uninstall" msgstr "Désinstaller" -#: src/Gtk/MainWindow.vala:313 +#: src/Gtk/MainWindow.vala:316 msgid "Changelog, build status, etc" msgstr "" -#: src/Gtk/MainWindow.vala:323 +#: src/Gtk/MainWindow.vala:325 msgid "Uninstall Old" msgstr "Désinstaller Ancien" -#: src/Gtk/MainWindow.vala:329 +#: src/Gtk/MainWindow.vala:331 msgid "Reload" msgstr "Recharger" -#: src/Gtk/MainWindow.vala:330 +#: src/Gtk/MainWindow.vala:332 msgid "Delete and reload all cached kernel info" msgstr "" -#: src/Gtk/MainWindow.vala:335 src/Gtk/SettingsDialog.vala:46 +#: src/Gtk/MainWindow.vala:337 src/Gtk/SettingsDialog.vala:43 msgid "Settings" msgstr "Paramètres" -#: src/Gtk/MainWindow.vala:340 +#: src/Gtk/MainWindow.vala:342 msgid "About" msgstr "À propos" -#: src/Gtk/MainWindow.vala:345 +#: src/Gtk/MainWindow.vala:347 msgid "Exit" msgstr "Sortie" -#: src/Gtk/MainWindow.vala:409 +#: src/Gtk/MainWindow.vala:428 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "" "Utilitaire de mise à niveau des noyaux pour les distributions basées sur " "Ubuntu" -#: src/Gtk/MainWindow.vala:410 +#: src/Gtk/MainWindow.vala:429 msgid "Forked" msgstr "Forkée" -#: src/Gtk/MainWindow.vala:410 +#: src/Gtk/MainWindow.vala:429 msgid "Original" msgstr "Originale" -#: src/Gtk/MainWindow.vala:439 +#: src/Gtk/MainWindow.vala:458 msgid "Updating kernels" msgstr "Mise à jour des noyaux" -#: src/Gtk/MainWindow.vala:507 +#: src/Gtk/MainWindow.vala:518 msgid "available" msgstr "disponible" -#: src/Gtk/MainWindow.vala:557 src/Gtk/MainWindow.vala:596 -#: src/Gtk/MainWindow.vala:630 +#: src/Gtk/MainWindow.vala:560 src/Gtk/MainWindow.vala:591 +#: src/Gtk/MainWindow.vala:616 msgid "DONE" msgstr "" -#: src/Gtk/SettingsDialog.vala:56 +#: src/Gtk/SettingsDialog.vala:53 msgid "Notification" msgstr "Notification" -#: src/Gtk/SettingsDialog.vala:63 +#: src/Gtk/SettingsDialog.vala:60 msgid "Notify if a major release is available" msgstr "Notifier si une version stable majeure est disponible" -#: src/Gtk/SettingsDialog.vala:72 +#: src/Gtk/SettingsDialog.vala:68 msgid "Notify if a point release is available" msgstr "Notifier si une version stable mineure est disponible" -#: src/Gtk/SettingsDialog.vala:83 +#: src/Gtk/SettingsDialog.vala:76 msgid "Seconds interval enabled for debugging" msgstr "Intervalle de secondes activé pour le débogage" -#: src/Gtk/SettingsDialog.vala:106 +#: src/Gtk/SettingsDialog.vala:99 msgid "Check every" msgstr "Vérifier toutes les" -#: src/Gtk/SettingsDialog.vala:131 +#: src/Gtk/SettingsDialog.vala:122 msgid "Hours" msgstr "Heures" -#: src/Gtk/SettingsDialog.vala:133 +#: src/Gtk/SettingsDialog.vala:124 msgid "Days" msgstr "Jours" -#: src/Gtk/SettingsDialog.vala:135 +#: src/Gtk/SettingsDialog.vala:126 msgid "Weeks" msgstr "Semaines" -#: src/Gtk/SettingsDialog.vala:138 +#: src/Gtk/SettingsDialog.vala:129 msgid "Seconds" msgstr "Secondes" -#: src/Gtk/SettingsDialog.vala:144 +#: src/Gtk/SettingsDialog.vala:135 msgid "Filters" msgstr "Filtres" -#: src/Gtk/SettingsDialog.vala:152 +#: src/Gtk/SettingsDialog.vala:143 msgid "Hide unstable and RC releases" msgstr "Cacher les versions instables et RC" -#: src/Gtk/SettingsDialog.vala:174 +#: src/Gtk/SettingsDialog.vala:165 msgid "previous major versions ( -1 = all )" msgstr "versions majeures précédentes ( -1 = toutes )" -#: src/Gtk/SettingsDialog.vala:178 +#: src/Gtk/SettingsDialog.vala:169 msgid "Network" msgstr "Réseau" -#: src/Gtk/SettingsDialog.vala:189 +#: src/Gtk/SettingsDialog.vala:180 msgid "Internet connection timeout in" msgstr "Délai d'expiration de la connexion Internet dans" -#: src/Gtk/SettingsDialog.vala:201 +#: src/Gtk/SettingsDialog.vala:192 msgid "seconds" msgstr "secondes" -#: src/Gtk/SettingsDialog.vala:208 +#: src/Gtk/SettingsDialog.vala:199 msgid "Max concurrent downloads" msgstr "Nombre maximum de téléchargements parallèles" -#: src/Gtk/SettingsDialog.vala:222 +#: src/Gtk/SettingsDialog.vala:212 msgid "Verify Checksums with the CHECKSUMS files" msgstr "Vérifier les sommes de contrôle avec les fichiers CHECKSUMS" -#: src/Gtk/SettingsDialog.vala:230 +#: src/Gtk/SettingsDialog.vala:220 msgid "Proxy" msgstr "Proxy" -#: src/Gtk/TerminalWindow.vala:151 +#: src/Gtk/SettingsDialog.vala:249 +msgid "Done" +msgstr "" + +#: src/Gtk/TerminalWindow.vala:159 msgid "Cancel" msgstr "Annuler" diff --git a/po/hr.po b/po/hr.po index 026bb290..0c1714fa 100644 --- a/po/hr.po +++ b/po/hr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-01 03:06-0400\n" +"POT-Creation-Date: 2023-06-03 06:21-0400\n" "PO-Revision-Date: 2022-09-22 12:13+0200\n" "Last-Translator: gogo \n" "Language-Team: Croatian\n" @@ -13,328 +13,328 @@ msgstr "" "X-Launchpad-Export-Date: 2017-12-23 23:36+0000\n" "X-Generator: Poedit 3.0.1\n" -#: src/Common/LinuxKernel.vala:105 +#: src/Common/LinuxKernel.vala:100 msgid "Distribution" msgstr "Distribucija" -#: src/Common/LinuxKernel.vala:120 +#: src/Common/LinuxKernel.vala:115 msgid "Architecture" msgstr "Arhitektura" -#: src/Common/LinuxKernel.vala:135 +#: src/Common/LinuxKernel.vala:130 msgid "Running kernel" msgstr "Trčanje kernel" -#: src/Common/LinuxKernel.vala:238 +#: src/Common/LinuxKernel.vala:230 msgid "loading cached" msgstr "učitavanje predmemoriranog" -#: src/Common/LinuxKernel.vala:250 +#: src/Common/LinuxKernel.vala:242 msgid "queuing download" msgstr "preuzimanje u redu čekanja" -#: src/Common/LinuxKernel.vala:271 +#: src/Common/LinuxKernel.vala:263 msgid "Fetching individual kernel indexes" msgstr "Dohvaćanje pojedinačnih indeksa kernel" -#: src/Common/LinuxKernel.vala:285 +#: src/Common/LinuxKernel.vala:277 msgid "loading downloaded" msgstr "učitavanje preuzeto" -#: src/Common/LinuxKernel.vala:320 +#: src/Common/LinuxKernel.vala:318 msgid "Updating from" msgstr "Ažuriranje iz" -#: src/Common/LinuxKernel.vala:328 +#: src/Common/LinuxKernel.vala:326 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:331 +#: src/Common/LinuxKernel.vala:329 msgid "FAILED" msgstr "NIJE USPIO" -#: src/Common/LinuxKernel.vala:393 +#: src/Common/LinuxKernel.vala:392 msgid "Found installed" msgstr "Pronađeno instalirano" -#: src/Common/LinuxKernel.vala:394 +#: src/Common/LinuxKernel.vala:393 msgid "locked" msgstr "" -#: src/Common/LinuxKernel.vala:476 src/Common/LinuxKernel.vala:999 -#: src/Common/LinuxKernel.vala:1089 +#: src/Common/LinuxKernel.vala:475 src/Common/LinuxKernel.vala:1003 +#: src/Common/LinuxKernel.vala:1093 msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:669 src/Gtk/MainWindow.vala:503 +#: src/Common/LinuxKernel.vala:668 src/Gtk/MainWindow.vala:514 msgid "Running" msgstr "Pokrenuto" -#: src/Common/LinuxKernel.vala:670 +#: src/Common/LinuxKernel.vala:669 msgid "Installed" msgstr "Instalirano" -#: src/Common/LinuxKernel.vala:671 +#: src/Common/LinuxKernel.vala:670 msgid "Invalid" msgstr "Érvénytelen" -#: src/Common/LinuxKernel.vala:756 +#: src/Common/LinuxKernel.vala:760 msgid "Packages Available" msgstr "Dostupni Paketi" -#: src/Common/LinuxKernel.vala:762 +#: src/Common/LinuxKernel.vala:766 msgid "Packages Installed" msgstr "Instalirani paketi" -#: src/Common/LinuxKernel.vala:787 src/lib/TeeJee.FileSystem.vala:103 +#: src/Common/LinuxKernel.vala:791 src/lib/TeeJee.FileSystem.vala:99 msgid "File not found" msgstr "Datoteka nije pronađena" -#: src/Common/LinuxKernel.vala:881 +#: src/Common/LinuxKernel.vala:885 msgid "Available Kernels" msgstr "Dostupni kerneli" -#: src/Common/LinuxKernel.vala:916 src/Gtk/MainWindow.vala:119 +#: src/Common/LinuxKernel.vala:920 src/Gtk/MainWindow.vala:128 msgid "Kernel" msgstr "Kernel" -#: src/Common/LinuxKernel.vala:916 +#: src/Common/LinuxKernel.vala:920 #, fuzzy msgid "not found" msgstr "Datoteka nije pronađena" -#: src/Common/LinuxKernel.vala:923 +#: src/Common/LinuxKernel.vala:927 #, fuzzy msgid "Download: no downloadable kernels specified" msgstr "Naredba nije navedena" -#: src/Common/LinuxKernel.vala:943 +#: src/Common/LinuxKernel.vala:947 msgid "enabled" msgstr "omogućen" -#: src/Common/LinuxKernel.vala:967 +#: src/Common/LinuxKernel.vala:971 msgid "Downloading" msgstr "Učitavanje" -#: src/Common/LinuxKernel.vala:985 +#: src/Common/LinuxKernel.vala:989 #, fuzzy msgid "Installing selected kernels" msgstr "Deinstaliraj određene kernele" -#: src/Common/LinuxKernel.vala:991 src/Common/LinuxKernel.vala:1029 +#: src/Common/LinuxKernel.vala:995 src/Common/LinuxKernel.vala:1033 #, fuzzy msgid "Requested" msgstr "Zatražio" -#: src/Common/LinuxKernel.vala:994 +#: src/Common/LinuxKernel.vala:998 msgid "is already installed." msgstr "je već instaliran." -#: src/Common/LinuxKernel.vala:1004 +#: src/Common/LinuxKernel.vala:1008 msgid "download failed." msgstr "" -#: src/Common/LinuxKernel.vala:1012 +#: src/Common/LinuxKernel.vala:1016 #, fuzzy msgid "Install: no installable kernels secified" msgstr "Naredba nije navedena" -#: src/Common/LinuxKernel.vala:1025 +#: src/Common/LinuxKernel.vala:1029 msgid "Uninstalling selected kernels" msgstr "Deinstaliraj određene kernele" -#: src/Common/LinuxKernel.vala:1032 +#: src/Common/LinuxKernel.vala:1036 #, fuzzy msgid "Not uninstalling the currently running kernel" msgstr "ne deinstaliranje trenutno pokrenute kernel" -#: src/Common/LinuxKernel.vala:1037 +#: src/Common/LinuxKernel.vala:1041 msgid "is locked" msgstr "" -#: src/Common/LinuxKernel.vala:1045 +#: src/Common/LinuxKernel.vala:1049 msgid "found" msgstr "pronađen" -#: src/Common/LinuxKernel.vala:1049 +#: src/Common/LinuxKernel.vala:1053 msgid "Uninstall: no uninstallable packages found" msgstr "" -#: src/Common/LinuxKernel.vala:1085 +#: src/Common/LinuxKernel.vala:1089 #, fuzzy msgid "is the highest installed version." msgstr "Deinstaliraj sve osim najnovije instalirane verzije" -#: src/Common/LinuxKernel.vala:1098 +#: src/Common/LinuxKernel.vala:1102 msgid "Could not find running kernel in list" msgstr "Nije moguće pronaći pokrenutu kernel na popisu" -#: src/Common/LinuxKernel.vala:1103 +#: src/Common/LinuxKernel.vala:1107 msgid "Could not find any kernels to uninstall" msgstr "Nema pronađenih kernela za deinstaliranje" -#: src/Common/LinuxKernel.vala:1111 +#: src/Common/LinuxKernel.vala:1115 msgid "The following kernels will be uninstalled" msgstr "Deinstalirat će se sljedeće kerneli" -#: src/Common/LinuxKernel.vala:1115 +#: src/Common/LinuxKernel.vala:1119 msgid "Continue ?" msgstr "Nastavi?" -#: src/Common/LinuxKernel.vala:1137 src/Console/AppConsole.vala:215 +#: src/Common/LinuxKernel.vala:1141 src/Console/AppConsole.vala:211 msgid "Latest update" msgstr "Najnovija nadopuna" -#: src/Common/LinuxKernel.vala:1148 src/Console/AppConsole.vala:222 +#: src/Common/LinuxKernel.vala:1152 src/Console/AppConsole.vala:218 msgid "Latest point update" msgstr "Najnovija ciljana nadopuna" -#: src/Common/LinuxKernel.vala:1156 src/Console/AppConsole.vala:227 -#: src/Console/AppConsole.vala:242 +#: src/Common/LinuxKernel.vala:1160 src/Console/AppConsole.vala:223 +#: src/Console/AppConsole.vala:243 msgid "No updates found" msgstr "Nema pronađenih nadopuna" -#: src/Common/LinuxKernel.vala:1165 +#: src/Common/LinuxKernel.vala:1169 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Instaliraj kernel inačice %s ? (d/n): " -#: src/Common/Main.vala:345 +#: src/Common/Main.vala:340 msgid "Called from" msgstr "Pozvano od" -#: src/Common/Main.vala:345 +#: src/Common/Main.vala:340 msgid "at logon" msgstr "indításkor" -#: src/Common/Main.vala:346 +#: src/Common/Main.vala:341 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" "Ova se datoteka prepisuje i ponovno izvršava kad god se postavke spremaju u" -#: src/Common/Main.vala:378 +#: src/Common/Main.vala:373 msgid "Notifications are disabled" msgstr "Obavijesti su onemogućene" -#: src/Common/Package.vala:57 +#: src/Common/Package.vala:58 #, c-format msgid "File not found: %s" msgstr "Datoteka nije pronađena: %s" -#: src/Console/AppConsole.vala:40 src/Gtk/AppGtk.vala:74 +#: src/Console/AppConsole.vala:39 src/Gtk/AppGtk.vala:77 msgid "Syntax" msgstr "Sintaksa" -#: src/Console/AppConsole.vala:42 +#: src/Console/AppConsole.vala:41 msgid "Commands" msgstr "Naredbe" -#: src/Console/AppConsole.vala:44 +#: src/Console/AppConsole.vala:43 msgid "Check for kernel updates" msgstr "Provjeri nadopune kernela" -#: src/Console/AppConsole.vala:45 +#: src/Console/AppConsole.vala:44 msgid "Check for kernel updates and notify current user" msgstr "Provjeri nadopune kernela i obavijesti trenutnog korisnika" -#: src/Console/AppConsole.vala:46 +#: src/Console/AppConsole.vala:45 #, fuzzy msgid "List available mainline kernels" msgstr "Prikaži sve mainline kernele" -#: src/Console/AppConsole.vala:47 +#: src/Console/AppConsole.vala:46 msgid "List installed kernels" msgstr "Prikaži instalirane kernele" -#: src/Console/AppConsole.vala:48 +#: src/Console/AppConsole.vala:47 msgid "Install latest mainline kernel" msgstr "Instaliraj najnoviji mainline kernel" -#: src/Console/AppConsole.vala:49 +#: src/Console/AppConsole.vala:48 #, fuzzy msgid "Install latest point update in the current major version" msgstr "Instaliraj najnoviju ciljanu nadopunu za trenutnu seriju" -#: src/Console/AppConsole.vala:50 +#: src/Console/AppConsole.vala:49 #, fuzzy msgid "Install specified kernels" msgstr "Deinstaliraj određene kernele" -#: src/Console/AppConsole.vala:51 +#: src/Console/AppConsole.vala:50 #, fuzzy msgid "Uninstall specified kernels" msgstr "Deinstaliraj određene kernele" -#: src/Console/AppConsole.vala:52 src/Gtk/MainWindow.vala:324 +#: src/Console/AppConsole.vala:51 src/Gtk/MainWindow.vala:326 msgid "Uninstall all but the highest installed version" msgstr "Deinstaliraj sve osim najnovije instalirane verzije" -#: src/Console/AppConsole.vala:53 +#: src/Console/AppConsole.vala:52 msgid "Download specified kernels" msgstr "Preuzmi određene kernele" -#: src/Console/AppConsole.vala:54 +#: src/Console/AppConsole.vala:53 msgid "Delete cached info about available kernels" msgstr "Brisanje predmemoriranih podataka o dostupnim jezgrama" -#: src/Console/AppConsole.vala:56 src/Gtk/AppGtk.vala:76 +#: src/Console/AppConsole.vala:55 src/Gtk/AppGtk.vala:79 msgid "Options" msgstr "Mogućnosti" -#: src/Console/AppConsole.vala:58 +#: src/Console/AppConsole.vala:57 msgid "Include unstable and RC releases" msgstr "Uključivati nestabilne i RC kernele" -#: src/Console/AppConsole.vala:59 +#: src/Console/AppConsole.vala:58 msgid "Exclude unstable and RC releases" msgstr "Isključivati nestabilne i RC izdanja" -#: src/Console/AppConsole.vala:60 +#: src/Console/AppConsole.vala:59 msgid "Verbosity. Set to n if given, or increment." msgstr "" -#: src/Console/AppConsole.vala:61 +#: src/Console/AppConsole.vala:60 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "Pretpostavi Da za sve upite (neinteraktivan način rada)" -#: src/Console/AppConsole.vala:64 +#: src/Console/AppConsole.vala:63 #, fuzzy msgid "One or more version strings taken from the output of --list" msgstr "Izraz inačice uzet iz zapisa --list" -#: src/Console/AppConsole.vala:65 +#: src/Console/AppConsole.vala:64 msgid "comma, pipe, or colon-seperated, or quoted space seperated" msgstr "" -#: src/Console/AppConsole.vala:66 +#: src/Console/AppConsole.vala:65 #, fuzzy msgid "Locked kernels and the currently running kernel are ignored" msgstr "Trenutno pokrenuta jezgra uvijek će se zanemariti" -#: src/Console/AppConsole.vala:143 src/Console/AppConsole.vala:200 -#: src/Gtk/AppGtk.vala:108 +#: src/Console/AppConsole.vala:142 src/Console/AppConsole.vala:196 +#: src/Gtk/AppGtk.vala:111 msgid "Unknown option" msgstr "Nepoznata mogućnost" -#: src/Console/AppConsole.vala:236 +#: src/Console/AppConsole.vala:232 msgid "Notifications disabled in settings" msgstr "Obavijesti onemogućene u postavkama" -#: src/Console/AppConsole.vala:264 +#: src/Console/AppConsole.vala:265 #, c-format msgid "Kernel %s Available" msgstr "Kernel %s je dostupan" -#: src/Console/AppConsole.vala:268 src/Gtk/SettingsDialog.vala:163 +#: src/Console/AppConsole.vala:269 src/Gtk/SettingsDialog.vala:154 msgid "Show" msgstr "Prikaži" -#: src/Console/AppConsole.vala:269 src/Gtk/MainWindow.vala:296 +#: src/Console/AppConsole.vala:270 src/Gtk/MainWindow.vala:305 msgid "Install" msgstr "Instaliraj" -#: src/Console/AppConsole.vala:272 +#: src/Console/AppConsole.vala:273 msgid "Previously notified" msgstr "Prethodno prijavljeno" @@ -346,7 +346,7 @@ msgstr "Zasluge" msgid "Back" msgstr "Natrag" -#: src/Gtk/AboutWindow.vala:185 src/Gtk/TerminalWindow.vala:161 +#: src/Gtk/AboutWindow.vala:185 src/Gtk/TerminalWindow.vala:169 msgid "Close" msgstr "Zatvori" @@ -374,160 +374,164 @@ msgstr "Autori dokumentacije" msgid "Third Party Inclusions" msgstr "Uključene treće strane" -#: src/Gtk/AppGtk.vala:74 +#: src/Gtk/AppGtk.vala:77 msgid "options" msgstr "mogućnosti" -#: src/Gtk/AppGtk.vala:78 +#: src/Gtk/AppGtk.vala:81 msgid "Print debug information" msgstr "Ispiši informacije otklanjanja grešaka" -#: src/Gtk/AppGtk.vala:79 +#: src/Gtk/AppGtk.vala:82 msgid "Show all options" msgstr "Prikaži sve mogućnosti" -#: src/Gtk/MainWindow.vala:143 +#: src/Gtk/MainWindow.vala:152 msgid "Lock" msgstr "" -#: src/Gtk/MainWindow.vala:160 +#: src/Gtk/MainWindow.vala:169 msgid "Status" msgstr "Stanje" -#: src/Gtk/MainWindow.vala:172 +#: src/Gtk/MainWindow.vala:181 msgid "Notes" msgstr "Bilješke" -#: src/Gtk/MainWindow.vala:304 +#: src/Gtk/MainWindow.vala:310 msgid "Uninstall" msgstr "Deinstaliraj" -#: src/Gtk/MainWindow.vala:313 +#: src/Gtk/MainWindow.vala:316 msgid "Changelog, build status, etc" msgstr "" -#: src/Gtk/MainWindow.vala:323 +#: src/Gtk/MainWindow.vala:325 msgid "Uninstall Old" msgstr "Deinstaliraj staro" -#: src/Gtk/MainWindow.vala:329 +#: src/Gtk/MainWindow.vala:331 msgid "Reload" msgstr "Ponovno učitati" -#: src/Gtk/MainWindow.vala:330 +#: src/Gtk/MainWindow.vala:332 msgid "Delete and reload all cached kernel info" msgstr "" -#: src/Gtk/MainWindow.vala:335 src/Gtk/SettingsDialog.vala:46 +#: src/Gtk/MainWindow.vala:337 src/Gtk/SettingsDialog.vala:43 msgid "Settings" msgstr "Postavke" -#: src/Gtk/MainWindow.vala:340 +#: src/Gtk/MainWindow.vala:342 msgid "About" msgstr "O programu" -#: src/Gtk/MainWindow.vala:345 +#: src/Gtk/MainWindow.vala:347 msgid "Exit" msgstr "Izlaz" -#: src/Gtk/MainWindow.vala:409 +#: src/Gtk/MainWindow.vala:428 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Alat za nadogradnju kernela Ubuntu temeljenih distribucija" -#: src/Gtk/MainWindow.vala:410 +#: src/Gtk/MainWindow.vala:429 msgid "Forked" msgstr "Forkano" -#: src/Gtk/MainWindow.vala:410 +#: src/Gtk/MainWindow.vala:429 msgid "Original" msgstr "Izvornik" -#: src/Gtk/MainWindow.vala:439 +#: src/Gtk/MainWindow.vala:458 msgid "Updating kernels" msgstr "Ažuriranje jezgri" -#: src/Gtk/MainWindow.vala:507 +#: src/Gtk/MainWindow.vala:518 msgid "available" msgstr "dostupno" -#: src/Gtk/MainWindow.vala:557 src/Gtk/MainWindow.vala:596 -#: src/Gtk/MainWindow.vala:630 +#: src/Gtk/MainWindow.vala:560 src/Gtk/MainWindow.vala:591 +#: src/Gtk/MainWindow.vala:616 msgid "DONE" msgstr "" -#: src/Gtk/SettingsDialog.vala:56 +#: src/Gtk/SettingsDialog.vala:53 msgid "Notification" msgstr "Obavijesti" -#: src/Gtk/SettingsDialog.vala:63 +#: src/Gtk/SettingsDialog.vala:60 msgid "Notify if a major release is available" msgstr "Obavijesti kada je glavno izdanje dostupno" -#: src/Gtk/SettingsDialog.vala:72 +#: src/Gtk/SettingsDialog.vala:68 msgid "Notify if a point release is available" msgstr "Obavijesti kada je pojedino izdanje dostupno" -#: src/Gtk/SettingsDialog.vala:83 +#: src/Gtk/SettingsDialog.vala:76 msgid "Seconds interval enabled for debugging" msgstr "Interval sekundi omogućen za ispravljanje pogrešaka" -#: src/Gtk/SettingsDialog.vala:106 +#: src/Gtk/SettingsDialog.vala:99 msgid "Check every" msgstr "Provjeri svaka" -#: src/Gtk/SettingsDialog.vala:131 +#: src/Gtk/SettingsDialog.vala:122 msgid "Hours" msgstr "Sati" -#: src/Gtk/SettingsDialog.vala:133 +#: src/Gtk/SettingsDialog.vala:124 msgid "Days" msgstr "Dani" -#: src/Gtk/SettingsDialog.vala:135 +#: src/Gtk/SettingsDialog.vala:126 msgid "Weeks" msgstr "Tjedna" -#: src/Gtk/SettingsDialog.vala:138 +#: src/Gtk/SettingsDialog.vala:129 msgid "Seconds" msgstr "Sekunde" -#: src/Gtk/SettingsDialog.vala:144 +#: src/Gtk/SettingsDialog.vala:135 msgid "Filters" msgstr "Filteri" -#: src/Gtk/SettingsDialog.vala:152 +#: src/Gtk/SettingsDialog.vala:143 msgid "Hide unstable and RC releases" msgstr "Sakrij nestabilna i RC izdanja" -#: src/Gtk/SettingsDialog.vala:174 +#: src/Gtk/SettingsDialog.vala:165 msgid "previous major versions ( -1 = all )" msgstr "prethodne glavne verzije ( -1 = sve )" -#: src/Gtk/SettingsDialog.vala:178 +#: src/Gtk/SettingsDialog.vala:169 msgid "Network" msgstr "Mreža" -#: src/Gtk/SettingsDialog.vala:189 +#: src/Gtk/SettingsDialog.vala:180 msgid "Internet connection timeout in" msgstr "Prekoračenje vremena internetske veze u" -#: src/Gtk/SettingsDialog.vala:201 +#: src/Gtk/SettingsDialog.vala:192 msgid "seconds" msgstr "sekunde" -#: src/Gtk/SettingsDialog.vala:208 +#: src/Gtk/SettingsDialog.vala:199 msgid "Max concurrent downloads" msgstr "Najviše istodobnih preuzimanja" -#: src/Gtk/SettingsDialog.vala:222 +#: src/Gtk/SettingsDialog.vala:212 msgid "Verify Checksums with the CHECKSUMS files" msgstr "Provjera kontrolnih zbrojeva pomoću CHECKSUMS datoteka" -#: src/Gtk/SettingsDialog.vala:230 +#: src/Gtk/SettingsDialog.vala:220 msgid "Proxy" msgstr "Proxy" -#: src/Gtk/TerminalWindow.vala:151 +#: src/Gtk/SettingsDialog.vala:249 +msgid "Done" +msgstr "" + +#: src/Gtk/TerminalWindow.vala:159 msgid "Cancel" msgstr "Odustani" diff --git a/po/it.po b/po/it.po index d5e37c3e..89a4a7c2 100644 --- a/po/it.po +++ b/po/it.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-01 03:06-0400\n" +"POT-Creation-Date: 2023-06-03 06:21-0400\n" "PO-Revision-Date: 2020-08-22 15:35+0100\n" "Last-Translator: Demetrio Mendozzi\n" "Language-Team: Italian\n" @@ -11,331 +11,331 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: src/Common/LinuxKernel.vala:105 +#: src/Common/LinuxKernel.vala:100 msgid "Distribution" msgstr "Distribuzione" -#: src/Common/LinuxKernel.vala:120 +#: src/Common/LinuxKernel.vala:115 msgid "Architecture" msgstr "Architettura" -#: src/Common/LinuxKernel.vala:135 +#: src/Common/LinuxKernel.vala:130 msgid "Running kernel" msgstr "Kernel in esecuzione" -#: src/Common/LinuxKernel.vala:238 +#: src/Common/LinuxKernel.vala:230 msgid "loading cached" msgstr "Caricamento file della cache" -#: src/Common/LinuxKernel.vala:250 +#: src/Common/LinuxKernel.vala:242 msgid "queuing download" msgstr "download in coda" -#: src/Common/LinuxKernel.vala:271 +#: src/Common/LinuxKernel.vala:263 msgid "Fetching individual kernel indexes" msgstr "Recupero dei singoli indici del kernel" -#: src/Common/LinuxKernel.vala:285 +#: src/Common/LinuxKernel.vala:277 msgid "loading downloaded" msgstr "caricamento dei file scaricati" -#: src/Common/LinuxKernel.vala:320 +#: src/Common/LinuxKernel.vala:318 msgid "Updating from" msgstr "Aggiornamento da" -#: src/Common/LinuxKernel.vala:328 +#: src/Common/LinuxKernel.vala:326 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:331 +#: src/Common/LinuxKernel.vala:329 msgid "FAILED" msgstr "FALLITO" -#: src/Common/LinuxKernel.vala:393 +#: src/Common/LinuxKernel.vala:392 msgid "Found installed" msgstr "Trovato installato" -#: src/Common/LinuxKernel.vala:394 +#: src/Common/LinuxKernel.vala:393 msgid "locked" msgstr "" -#: src/Common/LinuxKernel.vala:476 src/Common/LinuxKernel.vala:999 -#: src/Common/LinuxKernel.vala:1089 +#: src/Common/LinuxKernel.vala:475 src/Common/LinuxKernel.vala:1003 +#: src/Common/LinuxKernel.vala:1093 msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:669 src/Gtk/MainWindow.vala:503 +#: src/Common/LinuxKernel.vala:668 src/Gtk/MainWindow.vala:514 msgid "Running" msgstr "In esecuzione" -#: src/Common/LinuxKernel.vala:670 +#: src/Common/LinuxKernel.vala:669 msgid "Installed" msgstr "Installato" -#: src/Common/LinuxKernel.vala:671 +#: src/Common/LinuxKernel.vala:670 msgid "Invalid" msgstr "Non valido" -#: src/Common/LinuxKernel.vala:756 +#: src/Common/LinuxKernel.vala:760 msgid "Packages Available" msgstr "Pacchetti disponibili" -#: src/Common/LinuxKernel.vala:762 +#: src/Common/LinuxKernel.vala:766 msgid "Packages Installed" msgstr "Pacchetti installati" -#: src/Common/LinuxKernel.vala:787 src/lib/TeeJee.FileSystem.vala:103 +#: src/Common/LinuxKernel.vala:791 src/lib/TeeJee.FileSystem.vala:99 msgid "File not found" msgstr "File non trovato" -#: src/Common/LinuxKernel.vala:881 +#: src/Common/LinuxKernel.vala:885 msgid "Available Kernels" msgstr "Kernel disponibili" -#: src/Common/LinuxKernel.vala:916 src/Gtk/MainWindow.vala:119 +#: src/Common/LinuxKernel.vala:920 src/Gtk/MainWindow.vala:128 msgid "Kernel" msgstr "Kernel" -#: src/Common/LinuxKernel.vala:916 +#: src/Common/LinuxKernel.vala:920 #, fuzzy msgid "not found" msgstr "File non trovato" -#: src/Common/LinuxKernel.vala:923 +#: src/Common/LinuxKernel.vala:927 #, fuzzy msgid "Download: no downloadable kernels specified" msgstr "Comando non specificato" -#: src/Common/LinuxKernel.vala:943 +#: src/Common/LinuxKernel.vala:947 msgid "enabled" msgstr "abilitato" -#: src/Common/LinuxKernel.vala:967 +#: src/Common/LinuxKernel.vala:971 msgid "Downloading" msgstr "Scaricamento" -#: src/Common/LinuxKernel.vala:985 +#: src/Common/LinuxKernel.vala:989 #, fuzzy msgid "Installing selected kernels" msgstr "Disinstalla i kernel specificati" -#: src/Common/LinuxKernel.vala:991 src/Common/LinuxKernel.vala:1029 +#: src/Common/LinuxKernel.vala:995 src/Common/LinuxKernel.vala:1033 #, fuzzy msgid "Requested" msgstr "richiesto" -#: src/Common/LinuxKernel.vala:994 +#: src/Common/LinuxKernel.vala:998 msgid "is already installed." msgstr "è già installato." -#: src/Common/LinuxKernel.vala:1004 +#: src/Common/LinuxKernel.vala:1008 msgid "download failed." msgstr "" -#: src/Common/LinuxKernel.vala:1012 +#: src/Common/LinuxKernel.vala:1016 #, fuzzy msgid "Install: no installable kernels secified" msgstr "Comando non specificato" -#: src/Common/LinuxKernel.vala:1025 +#: src/Common/LinuxKernel.vala:1029 msgid "Uninstalling selected kernels" msgstr "Disinstalla i kernel specificati" -#: src/Common/LinuxKernel.vala:1032 +#: src/Common/LinuxKernel.vala:1036 #, fuzzy msgid "Not uninstalling the currently running kernel" msgstr "non disinstallare il kernel attualmente in esecuzione" -#: src/Common/LinuxKernel.vala:1037 +#: src/Common/LinuxKernel.vala:1041 msgid "is locked" msgstr "" -#: src/Common/LinuxKernel.vala:1045 +#: src/Common/LinuxKernel.vala:1049 msgid "found" msgstr "trovato" -#: src/Common/LinuxKernel.vala:1049 +#: src/Common/LinuxKernel.vala:1053 msgid "Uninstall: no uninstallable packages found" msgstr "" -#: src/Common/LinuxKernel.vala:1085 +#: src/Common/LinuxKernel.vala:1089 #, fuzzy msgid "is the highest installed version." msgstr "Disinstallare tutti tranne la versione più recente installata" -#: src/Common/LinuxKernel.vala:1098 +#: src/Common/LinuxKernel.vala:1102 msgid "Could not find running kernel in list" msgstr "Impossibile trovare il kernel in esecuzione nell'elenco" -#: src/Common/LinuxKernel.vala:1103 +#: src/Common/LinuxKernel.vala:1107 msgid "Could not find any kernels to uninstall" msgstr "Impossibile trovare alcun kernel da rimuovere" -#: src/Common/LinuxKernel.vala:1111 +#: src/Common/LinuxKernel.vala:1115 msgid "The following kernels will be uninstalled" msgstr "I seguenti kernel saranno rimossi" -#: src/Common/LinuxKernel.vala:1115 +#: src/Common/LinuxKernel.vala:1119 msgid "Continue ?" msgstr "Continuare ?" -#: src/Common/LinuxKernel.vala:1137 src/Console/AppConsole.vala:215 +#: src/Common/LinuxKernel.vala:1141 src/Console/AppConsole.vala:211 msgid "Latest update" msgstr "Ultimo aggiornamento" -#: src/Common/LinuxKernel.vala:1148 src/Console/AppConsole.vala:222 +#: src/Common/LinuxKernel.vala:1152 src/Console/AppConsole.vala:218 msgid "Latest point update" msgstr "Ultimo aggiornamento del rilascio parziale" -#: src/Common/LinuxKernel.vala:1156 src/Console/AppConsole.vala:227 -#: src/Console/AppConsole.vala:242 +#: src/Common/LinuxKernel.vala:1160 src/Console/AppConsole.vala:223 +#: src/Console/AppConsole.vala:243 msgid "No updates found" msgstr "Nessun aggiornamento trovato" -#: src/Common/LinuxKernel.vala:1165 +#: src/Common/LinuxKernel.vala:1169 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Installare la versione del kernel %s ? (y/n): " -#: src/Common/Main.vala:345 +#: src/Common/Main.vala:340 msgid "Called from" msgstr "Chiamato da" -#: src/Common/Main.vala:345 +#: src/Common/Main.vala:340 msgid "at logon" msgstr "all'avvio" -#: src/Common/Main.vala:346 +#: src/Common/Main.vala:341 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" "Questo file viene sovrascritto ed eseguito nuovamente ogni volta che vengono " "salvate le impostazioni" -#: src/Common/Main.vala:378 +#: src/Common/Main.vala:373 msgid "Notifications are disabled" msgstr "Le notifiche sono disabilitate" -#: src/Common/Package.vala:57 +#: src/Common/Package.vala:58 #, c-format msgid "File not found: %s" msgstr "File non trovato: %s" -#: src/Console/AppConsole.vala:40 src/Gtk/AppGtk.vala:74 +#: src/Console/AppConsole.vala:39 src/Gtk/AppGtk.vala:77 msgid "Syntax" msgstr "Sintassi" -#: src/Console/AppConsole.vala:42 +#: src/Console/AppConsole.vala:41 msgid "Commands" msgstr "Comandi" -#: src/Console/AppConsole.vala:44 +#: src/Console/AppConsole.vala:43 msgid "Check for kernel updates" msgstr "Verifica aggiornamenti del kernel" -#: src/Console/AppConsole.vala:45 +#: src/Console/AppConsole.vala:44 msgid "Check for kernel updates and notify current user" msgstr "" "Verifica la disponibilità di aggiornamenti del kerneled avvisa l'utente " "corrente" -#: src/Console/AppConsole.vala:46 +#: src/Console/AppConsole.vala:45 #, fuzzy msgid "List available mainline kernels" msgstr "Elenca tutti i kernel mainline disponibili" -#: src/Console/AppConsole.vala:47 +#: src/Console/AppConsole.vala:46 msgid "List installed kernels" msgstr "Elenca i kernel installati" -#: src/Console/AppConsole.vala:48 +#: src/Console/AppConsole.vala:47 msgid "Install latest mainline kernel" msgstr "Installa l'ultimo kernel mainline" -#: src/Console/AppConsole.vala:49 +#: src/Console/AppConsole.vala:48 #, fuzzy msgid "Install latest point update in the current major version" msgstr "installa l'ultimo rilascio parziale per le serie attuali" -#: src/Console/AppConsole.vala:50 +#: src/Console/AppConsole.vala:49 #, fuzzy msgid "Install specified kernels" msgstr "Disinstalla i kernel specificati" -#: src/Console/AppConsole.vala:51 +#: src/Console/AppConsole.vala:50 #, fuzzy msgid "Uninstall specified kernels" msgstr "Disinstalla i kernel specificati" -#: src/Console/AppConsole.vala:52 src/Gtk/MainWindow.vala:324 +#: src/Console/AppConsole.vala:51 src/Gtk/MainWindow.vala:326 msgid "Uninstall all but the highest installed version" msgstr "Disinstallare tutti tranne la versione più recente installata" -#: src/Console/AppConsole.vala:53 +#: src/Console/AppConsole.vala:52 msgid "Download specified kernels" msgstr "Scarica i kernel specificati" -#: src/Console/AppConsole.vala:54 +#: src/Console/AppConsole.vala:53 msgid "Delete cached info about available kernels" msgstr "Elimina le informazioni sui kernel disponibili dalla cache " -#: src/Console/AppConsole.vala:56 src/Gtk/AppGtk.vala:76 +#: src/Console/AppConsole.vala:55 src/Gtk/AppGtk.vala:79 msgid "Options" msgstr "Opzioni" -#: src/Console/AppConsole.vala:58 +#: src/Console/AppConsole.vala:57 msgid "Include unstable and RC releases" msgstr "Includi versioni instabili e rilasci RC" -#: src/Console/AppConsole.vala:59 +#: src/Console/AppConsole.vala:58 msgid "Exclude unstable and RC releases" msgstr "Escludi versioni instabili e rilasci RC" -#: src/Console/AppConsole.vala:60 +#: src/Console/AppConsole.vala:59 msgid "Verbosity. Set to n if given, or increment." msgstr "" -#: src/Console/AppConsole.vala:61 +#: src/Console/AppConsole.vala:60 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "Imposta Sì per tutte le richieste (modalità non interattiva)" -#: src/Console/AppConsole.vala:64 +#: src/Console/AppConsole.vala:63 #, fuzzy msgid "One or more version strings taken from the output of --list" msgstr "Una stringa di versione presa dall'output di --list" -#: src/Console/AppConsole.vala:65 +#: src/Console/AppConsole.vala:64 msgid "comma, pipe, or colon-seperated, or quoted space seperated" msgstr "" -#: src/Console/AppConsole.vala:66 +#: src/Console/AppConsole.vala:65 #, fuzzy msgid "Locked kernels and the currently running kernel are ignored" msgstr "Il kernel attualmente in esecuzione sarà sempre ignorato" -#: src/Console/AppConsole.vala:143 src/Console/AppConsole.vala:200 -#: src/Gtk/AppGtk.vala:108 +#: src/Console/AppConsole.vala:142 src/Console/AppConsole.vala:196 +#: src/Gtk/AppGtk.vala:111 msgid "Unknown option" msgstr "Opzione sconosciuta" -#: src/Console/AppConsole.vala:236 +#: src/Console/AppConsole.vala:232 msgid "Notifications disabled in settings" msgstr "Le notifiche sono disabilitate" -#: src/Console/AppConsole.vala:264 +#: src/Console/AppConsole.vala:265 #, c-format msgid "Kernel %s Available" msgstr "Kernel %s Disponibile" -#: src/Console/AppConsole.vala:268 src/Gtk/SettingsDialog.vala:163 +#: src/Console/AppConsole.vala:269 src/Gtk/SettingsDialog.vala:154 msgid "Show" msgstr "Mostra" -#: src/Console/AppConsole.vala:269 src/Gtk/MainWindow.vala:296 +#: src/Console/AppConsole.vala:270 src/Gtk/MainWindow.vala:305 msgid "Install" msgstr "Installa" -#: src/Console/AppConsole.vala:272 +#: src/Console/AppConsole.vala:273 msgid "Previously notified" msgstr "Notificato in precedenza" @@ -347,7 +347,7 @@ msgstr "Crediti" msgid "Back" msgstr "Indietro" -#: src/Gtk/AboutWindow.vala:185 src/Gtk/TerminalWindow.vala:161 +#: src/Gtk/AboutWindow.vala:185 src/Gtk/TerminalWindow.vala:169 msgid "Close" msgstr "Chiudi" @@ -375,160 +375,164 @@ msgstr "Documentatori" msgid "Third Party Inclusions" msgstr "Inclusioni di terze parti" -#: src/Gtk/AppGtk.vala:74 +#: src/Gtk/AppGtk.vala:77 msgid "options" msgstr "opzioni" -#: src/Gtk/AppGtk.vala:78 +#: src/Gtk/AppGtk.vala:81 msgid "Print debug information" msgstr "Stampa le informazioni di debug" -#: src/Gtk/AppGtk.vala:79 +#: src/Gtk/AppGtk.vala:82 msgid "Show all options" msgstr "Mostra tutte le opzioni" -#: src/Gtk/MainWindow.vala:143 +#: src/Gtk/MainWindow.vala:152 msgid "Lock" msgstr "" -#: src/Gtk/MainWindow.vala:160 +#: src/Gtk/MainWindow.vala:169 msgid "Status" msgstr "Stato" -#: src/Gtk/MainWindow.vala:172 +#: src/Gtk/MainWindow.vala:181 msgid "Notes" msgstr "Note" -#: src/Gtk/MainWindow.vala:304 +#: src/Gtk/MainWindow.vala:310 msgid "Uninstall" msgstr "Disinstalla" -#: src/Gtk/MainWindow.vala:313 +#: src/Gtk/MainWindow.vala:316 msgid "Changelog, build status, etc" msgstr "" -#: src/Gtk/MainWindow.vala:323 +#: src/Gtk/MainWindow.vala:325 msgid "Uninstall Old" msgstr "Disinstalla i vecchi" -#: src/Gtk/MainWindow.vala:329 +#: src/Gtk/MainWindow.vala:331 msgid "Reload" msgstr "Ricarica" -#: src/Gtk/MainWindow.vala:330 +#: src/Gtk/MainWindow.vala:332 msgid "Delete and reload all cached kernel info" msgstr "" -#: src/Gtk/MainWindow.vala:335 src/Gtk/SettingsDialog.vala:46 +#: src/Gtk/MainWindow.vala:337 src/Gtk/SettingsDialog.vala:43 msgid "Settings" msgstr "Impostazioni" -#: src/Gtk/MainWindow.vala:340 +#: src/Gtk/MainWindow.vala:342 msgid "About" msgstr "Informazioni" -#: src/Gtk/MainWindow.vala:345 +#: src/Gtk/MainWindow.vala:347 msgid "Exit" msgstr "Chiudi" -#: src/Gtk/MainWindow.vala:409 +#: src/Gtk/MainWindow.vala:428 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Utilità di aggiornamento del kernel per distribuzioni basate su Ubuntu" -#: src/Gtk/MainWindow.vala:410 +#: src/Gtk/MainWindow.vala:429 msgid "Forked" msgstr "Forked" -#: src/Gtk/MainWindow.vala:410 +#: src/Gtk/MainWindow.vala:429 msgid "Original" msgstr "Originale" -#: src/Gtk/MainWindow.vala:439 +#: src/Gtk/MainWindow.vala:458 msgid "Updating kernels" msgstr "Aggiornamento dei kernel" -#: src/Gtk/MainWindow.vala:507 +#: src/Gtk/MainWindow.vala:518 msgid "available" msgstr "disponibile" -#: src/Gtk/MainWindow.vala:557 src/Gtk/MainWindow.vala:596 -#: src/Gtk/MainWindow.vala:630 +#: src/Gtk/MainWindow.vala:560 src/Gtk/MainWindow.vala:591 +#: src/Gtk/MainWindow.vala:616 msgid "DONE" msgstr "" -#: src/Gtk/SettingsDialog.vala:56 +#: src/Gtk/SettingsDialog.vala:53 msgid "Notification" msgstr "Notifica" -#: src/Gtk/SettingsDialog.vala:63 +#: src/Gtk/SettingsDialog.vala:60 msgid "Notify if a major release is available" msgstr "Avvisa se è disponibile una versione principale" -#: src/Gtk/SettingsDialog.vala:72 +#: src/Gtk/SettingsDialog.vala:68 msgid "Notify if a point release is available" msgstr "Avvisa se è disponibile un rilascio parziale" -#: src/Gtk/SettingsDialog.vala:83 +#: src/Gtk/SettingsDialog.vala:76 msgid "Seconds interval enabled for debugging" msgstr "Intervallo in secondi abilitato per il debug" -#: src/Gtk/SettingsDialog.vala:106 +#: src/Gtk/SettingsDialog.vala:99 msgid "Check every" msgstr "Controlla ogni" -#: src/Gtk/SettingsDialog.vala:131 +#: src/Gtk/SettingsDialog.vala:122 msgid "Hours" msgstr "Ore" -#: src/Gtk/SettingsDialog.vala:133 +#: src/Gtk/SettingsDialog.vala:124 msgid "Days" msgstr "Giorni" -#: src/Gtk/SettingsDialog.vala:135 +#: src/Gtk/SettingsDialog.vala:126 msgid "Weeks" msgstr "Settimane" -#: src/Gtk/SettingsDialog.vala:138 +#: src/Gtk/SettingsDialog.vala:129 msgid "Seconds" msgstr "Secondi" -#: src/Gtk/SettingsDialog.vala:144 +#: src/Gtk/SettingsDialog.vala:135 msgid "Filters" msgstr "Filtri" -#: src/Gtk/SettingsDialog.vala:152 +#: src/Gtk/SettingsDialog.vala:143 msgid "Hide unstable and RC releases" msgstr "Nascondi versioni instabili e rilasci RC" -#: src/Gtk/SettingsDialog.vala:174 +#: src/Gtk/SettingsDialog.vala:165 msgid "previous major versions ( -1 = all )" msgstr "versioni principali precedenti ( -1 = tutte )" -#: src/Gtk/SettingsDialog.vala:178 +#: src/Gtk/SettingsDialog.vala:169 msgid "Network" msgstr "Rete" -#: src/Gtk/SettingsDialog.vala:189 +#: src/Gtk/SettingsDialog.vala:180 msgid "Internet connection timeout in" msgstr "Timeout connessione Internet in" -#: src/Gtk/SettingsDialog.vala:201 +#: src/Gtk/SettingsDialog.vala:192 msgid "seconds" msgstr "secondi" -#: src/Gtk/SettingsDialog.vala:208 +#: src/Gtk/SettingsDialog.vala:199 msgid "Max concurrent downloads" msgstr "Numero massimo di download simultanei" -#: src/Gtk/SettingsDialog.vala:222 +#: src/Gtk/SettingsDialog.vala:212 msgid "Verify Checksums with the CHECKSUMS files" msgstr "Verifica dei checksum con i file CHECKSUMS" -#: src/Gtk/SettingsDialog.vala:230 +#: src/Gtk/SettingsDialog.vala:220 msgid "Proxy" msgstr "Proxy" -#: src/Gtk/TerminalWindow.vala:151 +#: src/Gtk/SettingsDialog.vala:249 +msgid "Done" +msgstr "" + +#: src/Gtk/TerminalWindow.vala:159 msgid "Cancel" msgstr "Cancella" diff --git a/po/ko.po b/po/ko.po index fdcef45f..bda8dd79 100644 --- a/po/ko.po +++ b/po/ko.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-01 03:06-0400\n" +"POT-Creation-Date: 2023-06-03 06:21-0400\n" "PO-Revision-Date: 2022-09-28 11:48+0900\n" "Last-Translator: Kevin Kim \n" "Language-Team: Korean\n" @@ -13,327 +13,327 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Poedit 3.0.1\n" -#: src/Common/LinuxKernel.vala:105 +#: src/Common/LinuxKernel.vala:100 msgid "Distribution" msgstr "배포판" -#: src/Common/LinuxKernel.vala:120 +#: src/Common/LinuxKernel.vala:115 msgid "Architecture" msgstr "아키텍처" -#: src/Common/LinuxKernel.vala:135 +#: src/Common/LinuxKernel.vala:130 msgid "Running kernel" msgstr "현재 실행 중인 커널" -#: src/Common/LinuxKernel.vala:238 +#: src/Common/LinuxKernel.vala:230 msgid "loading cached" msgstr "캐시된 로드 중" -#: src/Common/LinuxKernel.vala:250 +#: src/Common/LinuxKernel.vala:242 msgid "queuing download" msgstr "대기열 다운로드" -#: src/Common/LinuxKernel.vala:271 +#: src/Common/LinuxKernel.vala:263 msgid "Fetching individual kernel indexes" msgstr "개별 커널 인덱스 페치" -#: src/Common/LinuxKernel.vala:285 +#: src/Common/LinuxKernel.vala:277 msgid "loading downloaded" msgstr "다운로드 로드 중" -#: src/Common/LinuxKernel.vala:320 +#: src/Common/LinuxKernel.vala:318 msgid "Updating from" msgstr "다음에서 업데이트" -#: src/Common/LinuxKernel.vala:328 +#: src/Common/LinuxKernel.vala:326 msgid "OK" msgstr "확인" -#: src/Common/LinuxKernel.vala:331 +#: src/Common/LinuxKernel.vala:329 msgid "FAILED" msgstr "실패" -#: src/Common/LinuxKernel.vala:393 +#: src/Common/LinuxKernel.vala:392 msgid "Found installed" msgstr "설치된 것을 찾았습니다" -#: src/Common/LinuxKernel.vala:394 +#: src/Common/LinuxKernel.vala:393 msgid "locked" msgstr "" -#: src/Common/LinuxKernel.vala:476 src/Common/LinuxKernel.vala:999 -#: src/Common/LinuxKernel.vala:1089 +#: src/Common/LinuxKernel.vala:475 src/Common/LinuxKernel.vala:1003 +#: src/Common/LinuxKernel.vala:1093 msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:669 src/Gtk/MainWindow.vala:503 +#: src/Common/LinuxKernel.vala:668 src/Gtk/MainWindow.vala:514 msgid "Running" msgstr "구동 중" -#: src/Common/LinuxKernel.vala:670 +#: src/Common/LinuxKernel.vala:669 msgid "Installed" msgstr "설치 됨" -#: src/Common/LinuxKernel.vala:671 +#: src/Common/LinuxKernel.vala:670 msgid "Invalid" msgstr "사용할 수 없음" -#: src/Common/LinuxKernel.vala:756 +#: src/Common/LinuxKernel.vala:760 msgid "Packages Available" msgstr "설치 가능한 패키지" -#: src/Common/LinuxKernel.vala:762 +#: src/Common/LinuxKernel.vala:766 msgid "Packages Installed" msgstr "설치된 패키지" -#: src/Common/LinuxKernel.vala:787 src/lib/TeeJee.FileSystem.vala:103 +#: src/Common/LinuxKernel.vala:791 src/lib/TeeJee.FileSystem.vala:99 msgid "File not found" msgstr "파일을 찾을 수 없습니다" -#: src/Common/LinuxKernel.vala:881 +#: src/Common/LinuxKernel.vala:885 msgid "Available Kernels" msgstr "설치 가능한 커널" -#: src/Common/LinuxKernel.vala:916 src/Gtk/MainWindow.vala:119 +#: src/Common/LinuxKernel.vala:920 src/Gtk/MainWindow.vala:128 msgid "Kernel" msgstr "커널" -#: src/Common/LinuxKernel.vala:916 +#: src/Common/LinuxKernel.vala:920 #, fuzzy msgid "not found" msgstr "파일을 찾을 수 없습니다" -#: src/Common/LinuxKernel.vala:923 +#: src/Common/LinuxKernel.vala:927 #, fuzzy msgid "Download: no downloadable kernels specified" msgstr "지정한 명령어가 없습니다" -#: src/Common/LinuxKernel.vala:943 +#: src/Common/LinuxKernel.vala:947 msgid "enabled" msgstr "사용" -#: src/Common/LinuxKernel.vala:967 +#: src/Common/LinuxKernel.vala:971 msgid "Downloading" msgstr "다운로드" -#: src/Common/LinuxKernel.vala:985 +#: src/Common/LinuxKernel.vala:989 #, fuzzy msgid "Installing selected kernels" msgstr "선택한 커널 제거" -#: src/Common/LinuxKernel.vala:991 src/Common/LinuxKernel.vala:1029 +#: src/Common/LinuxKernel.vala:995 src/Common/LinuxKernel.vala:1033 #, fuzzy msgid "Requested" msgstr "요청" -#: src/Common/LinuxKernel.vala:994 +#: src/Common/LinuxKernel.vala:998 msgid "is already installed." msgstr "가 이미 설치되어 있습니다" -#: src/Common/LinuxKernel.vala:1004 +#: src/Common/LinuxKernel.vala:1008 msgid "download failed." msgstr "" -#: src/Common/LinuxKernel.vala:1012 +#: src/Common/LinuxKernel.vala:1016 #, fuzzy msgid "Install: no installable kernels secified" msgstr "지정한 명령어가 없습니다" -#: src/Common/LinuxKernel.vala:1025 +#: src/Common/LinuxKernel.vala:1029 msgid "Uninstalling selected kernels" msgstr "선택한 커널 제거" -#: src/Common/LinuxKernel.vala:1032 +#: src/Common/LinuxKernel.vala:1036 #, fuzzy msgid "Not uninstalling the currently running kernel" msgstr "현재 실행 중인 커널을 제거하지 않음" -#: src/Common/LinuxKernel.vala:1037 +#: src/Common/LinuxKernel.vala:1041 msgid "is locked" msgstr "" -#: src/Common/LinuxKernel.vala:1045 +#: src/Common/LinuxKernel.vala:1049 msgid "found" msgstr "설립하다" -#: src/Common/LinuxKernel.vala:1049 +#: src/Common/LinuxKernel.vala:1053 msgid "Uninstall: no uninstallable packages found" msgstr "" -#: src/Common/LinuxKernel.vala:1085 +#: src/Common/LinuxKernel.vala:1089 #, fuzzy msgid "is the highest installed version." msgstr "설치된 가장 높은 버전을 제외한 모든 버전을 제거합니다" -#: src/Common/LinuxKernel.vala:1098 +#: src/Common/LinuxKernel.vala:1102 msgid "Could not find running kernel in list" msgstr "현재 실행 중인 커널을 찾을 수 없습니다" -#: src/Common/LinuxKernel.vala:1103 +#: src/Common/LinuxKernel.vala:1107 msgid "Could not find any kernels to uninstall" msgstr "삭제할 커널을 찾을 수 없습니다" -#: src/Common/LinuxKernel.vala:1111 +#: src/Common/LinuxKernel.vala:1115 msgid "The following kernels will be uninstalled" msgstr "풀이" -#: src/Common/LinuxKernel.vala:1115 +#: src/Common/LinuxKernel.vala:1119 msgid "Continue ?" msgstr "계속하시겠습니까?" -#: src/Common/LinuxKernel.vala:1137 src/Console/AppConsole.vala:215 +#: src/Common/LinuxKernel.vala:1141 src/Console/AppConsole.vala:211 msgid "Latest update" msgstr "최신 업데이트" -#: src/Common/LinuxKernel.vala:1148 src/Console/AppConsole.vala:222 +#: src/Common/LinuxKernel.vala:1152 src/Console/AppConsole.vala:218 msgid "Latest point update" msgstr "최신 포인트 업데이트" -#: src/Common/LinuxKernel.vala:1156 src/Console/AppConsole.vala:227 -#: src/Console/AppConsole.vala:242 +#: src/Common/LinuxKernel.vala:1160 src/Console/AppConsole.vala:223 +#: src/Console/AppConsole.vala:243 msgid "No updates found" msgstr "업데이트를 찾을 수 없습니다" -#: src/Common/LinuxKernel.vala:1165 +#: src/Common/LinuxKernel.vala:1169 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "커널 %s 버전을 설치하시겠습니까? (y/n): " -#: src/Common/Main.vala:345 +#: src/Common/Main.vala:340 msgid "Called from" msgstr "에서 호출" -#: src/Common/Main.vala:345 +#: src/Common/Main.vala:340 msgid "at logon" msgstr "로그온 시" -#: src/Common/Main.vala:346 +#: src/Common/Main.vala:341 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "이 파일은 덮어쓰고 설정이 저장될 때마다 다시 실행됩니다." -#: src/Common/Main.vala:378 +#: src/Common/Main.vala:373 msgid "Notifications are disabled" msgstr "알림이 비활성화 되었습니다" -#: src/Common/Package.vala:57 +#: src/Common/Package.vala:58 #, c-format msgid "File not found: %s" msgstr "파일을 찾을 수 없음: %s" -#: src/Console/AppConsole.vala:40 src/Gtk/AppGtk.vala:74 +#: src/Console/AppConsole.vala:39 src/Gtk/AppGtk.vala:77 msgid "Syntax" msgstr "문법" -#: src/Console/AppConsole.vala:42 +#: src/Console/AppConsole.vala:41 msgid "Commands" msgstr "명령어" -#: src/Console/AppConsole.vala:44 +#: src/Console/AppConsole.vala:43 msgid "Check for kernel updates" msgstr "커널 업데이트 확인" -#: src/Console/AppConsole.vala:45 +#: src/Console/AppConsole.vala:44 msgid "Check for kernel updates and notify current user" msgstr "커널 업데이트를 확인하고 현재 사용자에게 알림" -#: src/Console/AppConsole.vala:46 +#: src/Console/AppConsole.vala:45 #, fuzzy msgid "List available mainline kernels" msgstr "사용 가능한 모든 메인라인 커널 보기" -#: src/Console/AppConsole.vala:47 +#: src/Console/AppConsole.vala:46 msgid "List installed kernels" msgstr "설치된 커널 보기" -#: src/Console/AppConsole.vala:48 +#: src/Console/AppConsole.vala:47 msgid "Install latest mainline kernel" msgstr "최신 메인라인 커널 설치" -#: src/Console/AppConsole.vala:49 +#: src/Console/AppConsole.vala:48 #, fuzzy msgid "Install latest point update in the current major version" msgstr "현재 사용중인 배포판을 위한 최신 포인트 업데이트 설치" -#: src/Console/AppConsole.vala:50 +#: src/Console/AppConsole.vala:49 #, fuzzy msgid "Install specified kernels" msgstr "지정한 커널 삭제" -#: src/Console/AppConsole.vala:51 +#: src/Console/AppConsole.vala:50 #, fuzzy msgid "Uninstall specified kernels" msgstr "지정한 커널 삭제" -#: src/Console/AppConsole.vala:52 src/Gtk/MainWindow.vala:324 +#: src/Console/AppConsole.vala:51 src/Gtk/MainWindow.vala:326 msgid "Uninstall all but the highest installed version" msgstr "설치된 가장 높은 버전을 제외한 모든 버전을 제거합니다" -#: src/Console/AppConsole.vala:53 +#: src/Console/AppConsole.vala:52 msgid "Download specified kernels" msgstr "지정한 커널 다운로드" -#: src/Console/AppConsole.vala:54 +#: src/Console/AppConsole.vala:53 msgid "Delete cached info about available kernels" msgstr "사용 가능한 커널에 대한 캐시된 정보 삭제" -#: src/Console/AppConsole.vala:56 src/Gtk/AppGtk.vala:76 +#: src/Console/AppConsole.vala:55 src/Gtk/AppGtk.vala:79 msgid "Options" msgstr "옵션" -#: src/Console/AppConsole.vala:58 +#: src/Console/AppConsole.vala:57 msgid "Include unstable and RC releases" msgstr "unstable 및 RC 릴리스 포함" -#: src/Console/AppConsole.vala:59 +#: src/Console/AppConsole.vala:58 msgid "Exclude unstable and RC releases" msgstr "unstable 및 RC 릴리스 제외" -#: src/Console/AppConsole.vala:60 +#: src/Console/AppConsole.vala:59 msgid "Verbosity. Set to n if given, or increment." msgstr "" -#: src/Console/AppConsole.vala:61 +#: src/Console/AppConsole.vala:60 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "모든 물음에 자동으로 \"예\"라고 가정 (비 대화형 모드)" -#: src/Console/AppConsole.vala:64 +#: src/Console/AppConsole.vala:63 #, fuzzy msgid "One or more version strings taken from the output of --list" msgstr "--list 의 출력에서 가져온 버전 문자열" -#: src/Console/AppConsole.vala:65 +#: src/Console/AppConsole.vala:64 msgid "comma, pipe, or colon-seperated, or quoted space seperated" msgstr "" -#: src/Console/AppConsole.vala:66 +#: src/Console/AppConsole.vala:65 #, fuzzy msgid "Locked kernels and the currently running kernel are ignored" msgstr "현재 실행중인 커널은 항상 무시됩니다" -#: src/Console/AppConsole.vala:143 src/Console/AppConsole.vala:200 -#: src/Gtk/AppGtk.vala:108 +#: src/Console/AppConsole.vala:142 src/Console/AppConsole.vala:196 +#: src/Gtk/AppGtk.vala:111 msgid "Unknown option" msgstr "알 수 없는 옵션" -#: src/Console/AppConsole.vala:236 +#: src/Console/AppConsole.vala:232 msgid "Notifications disabled in settings" msgstr "설정에서 비활성화된 알림" -#: src/Console/AppConsole.vala:264 +#: src/Console/AppConsole.vala:265 #, c-format msgid "Kernel %s Available" msgstr "커널 %s 사용 가능" -#: src/Console/AppConsole.vala:268 src/Gtk/SettingsDialog.vala:163 +#: src/Console/AppConsole.vala:269 src/Gtk/SettingsDialog.vala:154 msgid "Show" msgstr "보이기" -#: src/Console/AppConsole.vala:269 src/Gtk/MainWindow.vala:296 +#: src/Console/AppConsole.vala:270 src/Gtk/MainWindow.vala:305 msgid "Install" msgstr "설치" -#: src/Console/AppConsole.vala:272 +#: src/Console/AppConsole.vala:273 msgid "Previously notified" msgstr "이전에 통보됨" @@ -345,7 +345,7 @@ msgstr "제작자" msgid "Back" msgstr "뒤로" -#: src/Gtk/AboutWindow.vala:185 src/Gtk/TerminalWindow.vala:161 +#: src/Gtk/AboutWindow.vala:185 src/Gtk/TerminalWindow.vala:169 msgid "Close" msgstr "닫기" @@ -373,160 +373,164 @@ msgstr "문서작성" msgid "Third Party Inclusions" msgstr "서드파티 포함" -#: src/Gtk/AppGtk.vala:74 +#: src/Gtk/AppGtk.vala:77 msgid "options" msgstr "옵션" -#: src/Gtk/AppGtk.vala:78 +#: src/Gtk/AppGtk.vala:81 msgid "Print debug information" msgstr "디버그 정보 출력" -#: src/Gtk/AppGtk.vala:79 +#: src/Gtk/AppGtk.vala:82 msgid "Show all options" msgstr "모든 옵션 보기" -#: src/Gtk/MainWindow.vala:143 +#: src/Gtk/MainWindow.vala:152 msgid "Lock" msgstr "" -#: src/Gtk/MainWindow.vala:160 +#: src/Gtk/MainWindow.vala:169 msgid "Status" msgstr "상태" -#: src/Gtk/MainWindow.vala:172 +#: src/Gtk/MainWindow.vala:181 msgid "Notes" msgstr "노트" -#: src/Gtk/MainWindow.vala:304 +#: src/Gtk/MainWindow.vala:310 msgid "Uninstall" msgstr "삭제" -#: src/Gtk/MainWindow.vala:313 +#: src/Gtk/MainWindow.vala:316 msgid "Changelog, build status, etc" msgstr "" -#: src/Gtk/MainWindow.vala:323 +#: src/Gtk/MainWindow.vala:325 msgid "Uninstall Old" msgstr "오래된 커널 제거" -#: src/Gtk/MainWindow.vala:329 +#: src/Gtk/MainWindow.vala:331 msgid "Reload" msgstr "새로고침" -#: src/Gtk/MainWindow.vala:330 +#: src/Gtk/MainWindow.vala:332 msgid "Delete and reload all cached kernel info" msgstr "" -#: src/Gtk/MainWindow.vala:335 src/Gtk/SettingsDialog.vala:46 +#: src/Gtk/MainWindow.vala:337 src/Gtk/SettingsDialog.vala:43 msgid "Settings" msgstr "설정" -#: src/Gtk/MainWindow.vala:340 +#: src/Gtk/MainWindow.vala:342 msgid "About" msgstr "정보" -#: src/Gtk/MainWindow.vala:345 +#: src/Gtk/MainWindow.vala:347 msgid "Exit" msgstr "출구" -#: src/Gtk/MainWindow.vala:409 +#: src/Gtk/MainWindow.vala:428 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "우분투 기반 배포판의 커널 업그레이드 도구" -#: src/Gtk/MainWindow.vala:410 +#: src/Gtk/MainWindow.vala:429 msgid "Forked" msgstr "가랑이진" -#: src/Gtk/MainWindow.vala:410 +#: src/Gtk/MainWindow.vala:429 msgid "Original" msgstr "원문 언어" -#: src/Gtk/MainWindow.vala:439 +#: src/Gtk/MainWindow.vala:458 msgid "Updating kernels" msgstr "커널 업데이트" -#: src/Gtk/MainWindow.vala:507 +#: src/Gtk/MainWindow.vala:518 msgid "available" msgstr "사용가능" -#: src/Gtk/MainWindow.vala:557 src/Gtk/MainWindow.vala:596 -#: src/Gtk/MainWindow.vala:630 +#: src/Gtk/MainWindow.vala:560 src/Gtk/MainWindow.vala:591 +#: src/Gtk/MainWindow.vala:616 msgid "DONE" msgstr "" -#: src/Gtk/SettingsDialog.vala:56 +#: src/Gtk/SettingsDialog.vala:53 msgid "Notification" msgstr "알림" -#: src/Gtk/SettingsDialog.vala:63 +#: src/Gtk/SettingsDialog.vala:60 msgid "Notify if a major release is available" msgstr "메이저 릴리즈가 있으면 알림" -#: src/Gtk/SettingsDialog.vala:72 +#: src/Gtk/SettingsDialog.vala:68 msgid "Notify if a point release is available" msgstr "포인트 릴리즈가 있으면 알림" -#: src/Gtk/SettingsDialog.vala:83 +#: src/Gtk/SettingsDialog.vala:76 msgid "Seconds interval enabled for debugging" msgstr "디버깅에 사용할 수 있는 초 간격" -#: src/Gtk/SettingsDialog.vala:106 +#: src/Gtk/SettingsDialog.vala:99 msgid "Check every" msgstr "확인 주기" -#: src/Gtk/SettingsDialog.vala:131 +#: src/Gtk/SettingsDialog.vala:122 msgid "Hours" msgstr "시간" -#: src/Gtk/SettingsDialog.vala:133 +#: src/Gtk/SettingsDialog.vala:124 msgid "Days" msgstr "일" -#: src/Gtk/SettingsDialog.vala:135 +#: src/Gtk/SettingsDialog.vala:126 msgid "Weeks" msgstr "주" -#: src/Gtk/SettingsDialog.vala:138 +#: src/Gtk/SettingsDialog.vala:129 msgid "Seconds" msgstr "초" -#: src/Gtk/SettingsDialog.vala:144 +#: src/Gtk/SettingsDialog.vala:135 msgid "Filters" msgstr "필터" -#: src/Gtk/SettingsDialog.vala:152 +#: src/Gtk/SettingsDialog.vala:143 msgid "Hide unstable and RC releases" msgstr "목록에서 unstable, RC 버전 포함" -#: src/Gtk/SettingsDialog.vala:174 +#: src/Gtk/SettingsDialog.vala:165 msgid "previous major versions ( -1 = all )" msgstr "이전 주 버전 ( -1 = 모두 )" -#: src/Gtk/SettingsDialog.vala:178 +#: src/Gtk/SettingsDialog.vala:169 msgid "Network" msgstr "네트워크" -#: src/Gtk/SettingsDialog.vala:189 +#: src/Gtk/SettingsDialog.vala:180 msgid "Internet connection timeout in" msgstr "인터넷 연결 시간 초과" -#: src/Gtk/SettingsDialog.vala:201 +#: src/Gtk/SettingsDialog.vala:192 msgid "seconds" msgstr "초" -#: src/Gtk/SettingsDialog.vala:208 +#: src/Gtk/SettingsDialog.vala:199 msgid "Max concurrent downloads" msgstr "동시 다운로드 최대 수" -#: src/Gtk/SettingsDialog.vala:222 +#: src/Gtk/SettingsDialog.vala:212 msgid "Verify Checksums with the CHECKSUMS files" msgstr "CHECKSUMS 파일로 체크섬 확인" -#: src/Gtk/SettingsDialog.vala:230 +#: src/Gtk/SettingsDialog.vala:220 msgid "Proxy" msgstr "대리" -#: src/Gtk/TerminalWindow.vala:151 +#: src/Gtk/SettingsDialog.vala:249 +msgid "Done" +msgstr "" + +#: src/Gtk/TerminalWindow.vala:159 msgid "Cancel" msgstr "취소" diff --git a/po/messages.pot b/po/messages.pot index 88b8c287..eb14edc8 100644 --- a/po/messages.pot +++ b/po/messages.pot @@ -6,9 +6,9 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: mainline 1.3.6\n" +"Project-Id-Version: mainline 1.3.7\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-01 03:13-0400\n" +"POT-Creation-Date: 2023-06-03 06:21-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,314 +17,314 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" -#: src/Common/LinuxKernel.vala:105 +#: src/Common/LinuxKernel.vala:100 msgid "Distribution" msgstr "" -#: src/Common/LinuxKernel.vala:120 +#: src/Common/LinuxKernel.vala:115 msgid "Architecture" msgstr "" -#: src/Common/LinuxKernel.vala:135 +#: src/Common/LinuxKernel.vala:130 msgid "Running kernel" msgstr "" -#: src/Common/LinuxKernel.vala:238 +#: src/Common/LinuxKernel.vala:230 msgid "loading cached" msgstr "" -#: src/Common/LinuxKernel.vala:250 +#: src/Common/LinuxKernel.vala:242 msgid "queuing download" msgstr "" -#: src/Common/LinuxKernel.vala:271 +#: src/Common/LinuxKernel.vala:263 msgid "Fetching individual kernel indexes" msgstr "" -#: src/Common/LinuxKernel.vala:285 +#: src/Common/LinuxKernel.vala:277 msgid "loading downloaded" msgstr "" -#: src/Common/LinuxKernel.vala:320 +#: src/Common/LinuxKernel.vala:318 msgid "Updating from" msgstr "" -#: src/Common/LinuxKernel.vala:328 +#: src/Common/LinuxKernel.vala:326 msgid "OK" msgstr "" -#: src/Common/LinuxKernel.vala:331 +#: src/Common/LinuxKernel.vala:329 msgid "FAILED" msgstr "" -#: src/Common/LinuxKernel.vala:393 +#: src/Common/LinuxKernel.vala:392 msgid "Found installed" msgstr "" -#: src/Common/LinuxKernel.vala:394 +#: src/Common/LinuxKernel.vala:393 msgid "locked" msgstr "" -#: src/Common/LinuxKernel.vala:476 src/Common/LinuxKernel.vala:999 -#: src/Common/LinuxKernel.vala:1089 +#: src/Common/LinuxKernel.vala:475 src/Common/LinuxKernel.vala:1003 +#: src/Common/LinuxKernel.vala:1093 msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:669 src/Gtk/MainWindow.vala:503 +#: src/Common/LinuxKernel.vala:668 src/Gtk/MainWindow.vala:514 msgid "Running" msgstr "" -#: src/Common/LinuxKernel.vala:670 +#: src/Common/LinuxKernel.vala:669 msgid "Installed" msgstr "" -#: src/Common/LinuxKernel.vala:671 +#: src/Common/LinuxKernel.vala:670 msgid "Invalid" msgstr "" -#: src/Common/LinuxKernel.vala:756 +#: src/Common/LinuxKernel.vala:760 msgid "Packages Available" msgstr "" -#: src/Common/LinuxKernel.vala:762 +#: src/Common/LinuxKernel.vala:766 msgid "Packages Installed" msgstr "" -#: src/Common/LinuxKernel.vala:787 src/lib/TeeJee.FileSystem.vala:103 +#: src/Common/LinuxKernel.vala:791 src/lib/TeeJee.FileSystem.vala:99 msgid "File not found" msgstr "" -#: src/Common/LinuxKernel.vala:881 +#: src/Common/LinuxKernel.vala:885 msgid "Available Kernels" msgstr "" -#: src/Common/LinuxKernel.vala:916 src/Gtk/MainWindow.vala:119 +#: src/Common/LinuxKernel.vala:920 src/Gtk/MainWindow.vala:128 msgid "Kernel" msgstr "" -#: src/Common/LinuxKernel.vala:916 +#: src/Common/LinuxKernel.vala:920 msgid "not found" msgstr "" -#: src/Common/LinuxKernel.vala:923 +#: src/Common/LinuxKernel.vala:927 msgid "Download: no downloadable kernels specified" msgstr "" -#: src/Common/LinuxKernel.vala:943 +#: src/Common/LinuxKernel.vala:947 msgid "enabled" msgstr "" -#: src/Common/LinuxKernel.vala:967 +#: src/Common/LinuxKernel.vala:971 msgid "Downloading" msgstr "" -#: src/Common/LinuxKernel.vala:985 +#: src/Common/LinuxKernel.vala:989 msgid "Installing selected kernels" msgstr "" -#: src/Common/LinuxKernel.vala:991 src/Common/LinuxKernel.vala:1029 +#: src/Common/LinuxKernel.vala:995 src/Common/LinuxKernel.vala:1033 msgid "Requested" msgstr "" -#: src/Common/LinuxKernel.vala:994 +#: src/Common/LinuxKernel.vala:998 msgid "is already installed." msgstr "" -#: src/Common/LinuxKernel.vala:1004 +#: src/Common/LinuxKernel.vala:1008 msgid "download failed." msgstr "" -#: src/Common/LinuxKernel.vala:1012 +#: src/Common/LinuxKernel.vala:1016 msgid "Install: no installable kernels secified" msgstr "" -#: src/Common/LinuxKernel.vala:1025 +#: src/Common/LinuxKernel.vala:1029 msgid "Uninstalling selected kernels" msgstr "" -#: src/Common/LinuxKernel.vala:1032 +#: src/Common/LinuxKernel.vala:1036 msgid "Not uninstalling the currently running kernel" msgstr "" -#: src/Common/LinuxKernel.vala:1037 +#: src/Common/LinuxKernel.vala:1041 msgid "is locked" msgstr "" -#: src/Common/LinuxKernel.vala:1045 +#: src/Common/LinuxKernel.vala:1049 msgid "found" msgstr "" -#: src/Common/LinuxKernel.vala:1049 +#: src/Common/LinuxKernel.vala:1053 msgid "Uninstall: no uninstallable packages found" msgstr "" -#: src/Common/LinuxKernel.vala:1085 +#: src/Common/LinuxKernel.vala:1089 msgid "is the highest installed version." msgstr "" -#: src/Common/LinuxKernel.vala:1098 +#: src/Common/LinuxKernel.vala:1102 msgid "Could not find running kernel in list" msgstr "" -#: src/Common/LinuxKernel.vala:1103 +#: src/Common/LinuxKernel.vala:1107 msgid "Could not find any kernels to uninstall" msgstr "" -#: src/Common/LinuxKernel.vala:1111 +#: src/Common/LinuxKernel.vala:1115 msgid "The following kernels will be uninstalled" msgstr "" -#: src/Common/LinuxKernel.vala:1115 +#: src/Common/LinuxKernel.vala:1119 msgid "Continue ?" msgstr "" -#: src/Common/LinuxKernel.vala:1137 src/Console/AppConsole.vala:215 +#: src/Common/LinuxKernel.vala:1141 src/Console/AppConsole.vala:211 msgid "Latest update" msgstr "" -#: src/Common/LinuxKernel.vala:1148 src/Console/AppConsole.vala:222 +#: src/Common/LinuxKernel.vala:1152 src/Console/AppConsole.vala:218 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:1156 src/Console/AppConsole.vala:227 -#: src/Console/AppConsole.vala:242 +#: src/Common/LinuxKernel.vala:1160 src/Console/AppConsole.vala:223 +#: src/Console/AppConsole.vala:243 msgid "No updates found" msgstr "" -#: src/Common/LinuxKernel.vala:1165 +#: src/Common/LinuxKernel.vala:1169 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "" -#: src/Common/Main.vala:345 +#: src/Common/Main.vala:340 msgid "Called from" msgstr "" -#: src/Common/Main.vala:345 +#: src/Common/Main.vala:340 msgid "at logon" msgstr "" -#: src/Common/Main.vala:346 +#: src/Common/Main.vala:341 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" -#: src/Common/Main.vala:378 +#: src/Common/Main.vala:373 msgid "Notifications are disabled" msgstr "" -#: src/Common/Package.vala:57 +#: src/Common/Package.vala:58 #, c-format msgid "File not found: %s" msgstr "" -#: src/Console/AppConsole.vala:40 src/Gtk/AppGtk.vala:74 +#: src/Console/AppConsole.vala:39 src/Gtk/AppGtk.vala:77 msgid "Syntax" msgstr "" -#: src/Console/AppConsole.vala:42 +#: src/Console/AppConsole.vala:41 msgid "Commands" msgstr "" -#: src/Console/AppConsole.vala:44 +#: src/Console/AppConsole.vala:43 msgid "Check for kernel updates" msgstr "" -#: src/Console/AppConsole.vala:45 +#: src/Console/AppConsole.vala:44 msgid "Check for kernel updates and notify current user" msgstr "" -#: src/Console/AppConsole.vala:46 +#: src/Console/AppConsole.vala:45 msgid "List available mainline kernels" msgstr "" -#: src/Console/AppConsole.vala:47 +#: src/Console/AppConsole.vala:46 msgid "List installed kernels" msgstr "" -#: src/Console/AppConsole.vala:48 +#: src/Console/AppConsole.vala:47 msgid "Install latest mainline kernel" msgstr "" -#: src/Console/AppConsole.vala:49 +#: src/Console/AppConsole.vala:48 msgid "Install latest point update in the current major version" msgstr "" -#: src/Console/AppConsole.vala:50 +#: src/Console/AppConsole.vala:49 msgid "Install specified kernels" msgstr "" -#: src/Console/AppConsole.vala:51 +#: src/Console/AppConsole.vala:50 msgid "Uninstall specified kernels" msgstr "" -#: src/Console/AppConsole.vala:52 src/Gtk/MainWindow.vala:324 +#: src/Console/AppConsole.vala:51 src/Gtk/MainWindow.vala:326 msgid "Uninstall all but the highest installed version" msgstr "" -#: src/Console/AppConsole.vala:53 +#: src/Console/AppConsole.vala:52 msgid "Download specified kernels" msgstr "" -#: src/Console/AppConsole.vala:54 +#: src/Console/AppConsole.vala:53 msgid "Delete cached info about available kernels" msgstr "" -#: src/Console/AppConsole.vala:56 src/Gtk/AppGtk.vala:76 +#: src/Console/AppConsole.vala:55 src/Gtk/AppGtk.vala:79 msgid "Options" msgstr "" -#: src/Console/AppConsole.vala:58 +#: src/Console/AppConsole.vala:57 msgid "Include unstable and RC releases" msgstr "" -#: src/Console/AppConsole.vala:59 +#: src/Console/AppConsole.vala:58 msgid "Exclude unstable and RC releases" msgstr "" -#: src/Console/AppConsole.vala:60 +#: src/Console/AppConsole.vala:59 msgid "Verbosity. Set to n if given, or increment." msgstr "" -#: src/Console/AppConsole.vala:61 +#: src/Console/AppConsole.vala:60 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "" -#: src/Console/AppConsole.vala:64 +#: src/Console/AppConsole.vala:63 msgid "One or more version strings taken from the output of --list" msgstr "" -#: src/Console/AppConsole.vala:65 +#: src/Console/AppConsole.vala:64 msgid "comma, pipe, or colon-seperated, or quoted space seperated" msgstr "" -#: src/Console/AppConsole.vala:66 +#: src/Console/AppConsole.vala:65 msgid "Locked kernels and the currently running kernel are ignored" msgstr "" -#: src/Console/AppConsole.vala:143 src/Console/AppConsole.vala:200 -#: src/Gtk/AppGtk.vala:108 +#: src/Console/AppConsole.vala:142 src/Console/AppConsole.vala:196 +#: src/Gtk/AppGtk.vala:111 msgid "Unknown option" msgstr "" -#: src/Console/AppConsole.vala:236 +#: src/Console/AppConsole.vala:232 msgid "Notifications disabled in settings" msgstr "" -#: src/Console/AppConsole.vala:264 +#: src/Console/AppConsole.vala:265 #, c-format msgid "Kernel %s Available" msgstr "" -#: src/Console/AppConsole.vala:268 src/Gtk/SettingsDialog.vala:163 +#: src/Console/AppConsole.vala:269 src/Gtk/SettingsDialog.vala:154 msgid "Show" msgstr "" -#: src/Console/AppConsole.vala:269 src/Gtk/MainWindow.vala:296 +#: src/Console/AppConsole.vala:270 src/Gtk/MainWindow.vala:305 msgid "Install" msgstr "" -#: src/Console/AppConsole.vala:272 +#: src/Console/AppConsole.vala:273 msgid "Previously notified" msgstr "" @@ -336,7 +336,7 @@ msgstr "" msgid "Back" msgstr "" -#: src/Gtk/AboutWindow.vala:185 src/Gtk/TerminalWindow.vala:161 +#: src/Gtk/AboutWindow.vala:185 src/Gtk/TerminalWindow.vala:169 msgid "Close" msgstr "" @@ -364,160 +364,164 @@ msgstr "" msgid "Third Party Inclusions" msgstr "" -#: src/Gtk/AppGtk.vala:74 +#: src/Gtk/AppGtk.vala:77 msgid "options" msgstr "" -#: src/Gtk/AppGtk.vala:78 +#: src/Gtk/AppGtk.vala:81 msgid "Print debug information" msgstr "" -#: src/Gtk/AppGtk.vala:79 +#: src/Gtk/AppGtk.vala:82 msgid "Show all options" msgstr "" -#: src/Gtk/MainWindow.vala:143 +#: src/Gtk/MainWindow.vala:152 msgid "Lock" msgstr "" -#: src/Gtk/MainWindow.vala:160 +#: src/Gtk/MainWindow.vala:169 msgid "Status" msgstr "" -#: src/Gtk/MainWindow.vala:172 +#: src/Gtk/MainWindow.vala:181 msgid "Notes" msgstr "" -#: src/Gtk/MainWindow.vala:304 +#: src/Gtk/MainWindow.vala:310 msgid "Uninstall" msgstr "" -#: src/Gtk/MainWindow.vala:313 +#: src/Gtk/MainWindow.vala:316 msgid "Changelog, build status, etc" msgstr "" -#: src/Gtk/MainWindow.vala:323 +#: src/Gtk/MainWindow.vala:325 msgid "Uninstall Old" msgstr "" -#: src/Gtk/MainWindow.vala:329 +#: src/Gtk/MainWindow.vala:331 msgid "Reload" msgstr "" -#: src/Gtk/MainWindow.vala:330 +#: src/Gtk/MainWindow.vala:332 msgid "Delete and reload all cached kernel info" msgstr "" -#: src/Gtk/MainWindow.vala:335 src/Gtk/SettingsDialog.vala:46 +#: src/Gtk/MainWindow.vala:337 src/Gtk/SettingsDialog.vala:43 msgid "Settings" msgstr "" -#: src/Gtk/MainWindow.vala:340 +#: src/Gtk/MainWindow.vala:342 msgid "About" msgstr "" -#: src/Gtk/MainWindow.vala:345 +#: src/Gtk/MainWindow.vala:347 msgid "Exit" msgstr "" -#: src/Gtk/MainWindow.vala:409 +#: src/Gtk/MainWindow.vala:428 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "" -#: src/Gtk/MainWindow.vala:410 +#: src/Gtk/MainWindow.vala:429 msgid "Forked" msgstr "" -#: src/Gtk/MainWindow.vala:410 +#: src/Gtk/MainWindow.vala:429 msgid "Original" msgstr "" -#: src/Gtk/MainWindow.vala:439 +#: src/Gtk/MainWindow.vala:458 msgid "Updating kernels" msgstr "" -#: src/Gtk/MainWindow.vala:507 +#: src/Gtk/MainWindow.vala:518 msgid "available" msgstr "" -#: src/Gtk/MainWindow.vala:557 src/Gtk/MainWindow.vala:596 -#: src/Gtk/MainWindow.vala:630 +#: src/Gtk/MainWindow.vala:560 src/Gtk/MainWindow.vala:591 +#: src/Gtk/MainWindow.vala:616 msgid "DONE" msgstr "" -#: src/Gtk/SettingsDialog.vala:56 +#: src/Gtk/SettingsDialog.vala:53 msgid "Notification" msgstr "" -#: src/Gtk/SettingsDialog.vala:63 +#: src/Gtk/SettingsDialog.vala:60 msgid "Notify if a major release is available" msgstr "" -#: src/Gtk/SettingsDialog.vala:72 +#: src/Gtk/SettingsDialog.vala:68 msgid "Notify if a point release is available" msgstr "" -#: src/Gtk/SettingsDialog.vala:83 +#: src/Gtk/SettingsDialog.vala:76 msgid "Seconds interval enabled for debugging" msgstr "" -#: src/Gtk/SettingsDialog.vala:106 +#: src/Gtk/SettingsDialog.vala:99 msgid "Check every" msgstr "" -#: src/Gtk/SettingsDialog.vala:131 +#: src/Gtk/SettingsDialog.vala:122 msgid "Hours" msgstr "" -#: src/Gtk/SettingsDialog.vala:133 +#: src/Gtk/SettingsDialog.vala:124 msgid "Days" msgstr "" -#: src/Gtk/SettingsDialog.vala:135 +#: src/Gtk/SettingsDialog.vala:126 msgid "Weeks" msgstr "" -#: src/Gtk/SettingsDialog.vala:138 +#: src/Gtk/SettingsDialog.vala:129 msgid "Seconds" msgstr "" -#: src/Gtk/SettingsDialog.vala:144 +#: src/Gtk/SettingsDialog.vala:135 msgid "Filters" msgstr "" -#: src/Gtk/SettingsDialog.vala:152 +#: src/Gtk/SettingsDialog.vala:143 msgid "Hide unstable and RC releases" msgstr "" -#: src/Gtk/SettingsDialog.vala:174 +#: src/Gtk/SettingsDialog.vala:165 msgid "previous major versions ( -1 = all )" msgstr "" -#: src/Gtk/SettingsDialog.vala:178 +#: src/Gtk/SettingsDialog.vala:169 msgid "Network" msgstr "" -#: src/Gtk/SettingsDialog.vala:189 +#: src/Gtk/SettingsDialog.vala:180 msgid "Internet connection timeout in" msgstr "" -#: src/Gtk/SettingsDialog.vala:201 +#: src/Gtk/SettingsDialog.vala:192 msgid "seconds" msgstr "" -#: src/Gtk/SettingsDialog.vala:208 +#: src/Gtk/SettingsDialog.vala:199 msgid "Max concurrent downloads" msgstr "" -#: src/Gtk/SettingsDialog.vala:222 +#: src/Gtk/SettingsDialog.vala:212 msgid "Verify Checksums with the CHECKSUMS files" msgstr "" -#: src/Gtk/SettingsDialog.vala:230 +#: src/Gtk/SettingsDialog.vala:220 msgid "Proxy" msgstr "" -#: src/Gtk/TerminalWindow.vala:151 +#: src/Gtk/SettingsDialog.vala:249 +msgid "Done" +msgstr "" + +#: src/Gtk/TerminalWindow.vala:159 msgid "Cancel" msgstr "" diff --git a/po/nl.po b/po/nl.po index c9c951ce..6907a502 100644 --- a/po/nl.po +++ b/po/nl.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-01 03:06-0400\n" +"POT-Creation-Date: 2023-06-03 06:21-0400\n" "PO-Revision-Date: 2020-08-23 13:55+0200\n" "Last-Translator: Heimen Stoffels \n" "Language-Team: Dutch (Netherlands)\n" @@ -13,329 +13,329 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Poedit 3.2.2\n" -#: src/Common/LinuxKernel.vala:105 +#: src/Common/LinuxKernel.vala:100 msgid "Distribution" msgstr "Distributie" -#: src/Common/LinuxKernel.vala:120 +#: src/Common/LinuxKernel.vala:115 msgid "Architecture" msgstr "Architectuur" -#: src/Common/LinuxKernel.vala:135 +#: src/Common/LinuxKernel.vala:130 msgid "Running kernel" msgstr "Kernel uitvoeren" -#: src/Common/LinuxKernel.vala:238 +#: src/Common/LinuxKernel.vala:230 msgid "loading cached" msgstr "laden in cache" -#: src/Common/LinuxKernel.vala:250 +#: src/Common/LinuxKernel.vala:242 msgid "queuing download" msgstr "wachtrijen downloaden" -#: src/Common/LinuxKernel.vala:271 +#: src/Common/LinuxKernel.vala:263 msgid "Fetching individual kernel indexes" msgstr "Afzonderlijke kernelindexen ophalen" -#: src/Common/LinuxKernel.vala:285 +#: src/Common/LinuxKernel.vala:277 msgid "loading downloaded" msgstr "laden gedownload" -#: src/Common/LinuxKernel.vala:320 +#: src/Common/LinuxKernel.vala:318 msgid "Updating from" msgstr "Bijwerken van" -#: src/Common/LinuxKernel.vala:328 +#: src/Common/LinuxKernel.vala:326 msgid "OK" msgstr "Oké" -#: src/Common/LinuxKernel.vala:331 +#: src/Common/LinuxKernel.vala:329 msgid "FAILED" msgstr "MISLUKT" -#: src/Common/LinuxKernel.vala:393 +#: src/Common/LinuxKernel.vala:392 msgid "Found installed" msgstr "Geïnstalleerd gevonden" -#: src/Common/LinuxKernel.vala:394 +#: src/Common/LinuxKernel.vala:393 msgid "locked" msgstr "" -#: src/Common/LinuxKernel.vala:476 src/Common/LinuxKernel.vala:999 -#: src/Common/LinuxKernel.vala:1089 +#: src/Common/LinuxKernel.vala:475 src/Common/LinuxKernel.vala:1003 +#: src/Common/LinuxKernel.vala:1093 msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:669 src/Gtk/MainWindow.vala:503 +#: src/Common/LinuxKernel.vala:668 src/Gtk/MainWindow.vala:514 msgid "Running" msgstr "In gebruik" -#: src/Common/LinuxKernel.vala:670 +#: src/Common/LinuxKernel.vala:669 msgid "Installed" msgstr "Geïnstalleerd" -#: src/Common/LinuxKernel.vala:671 +#: src/Common/LinuxKernel.vala:670 msgid "Invalid" msgstr "Ongeldig" -#: src/Common/LinuxKernel.vala:756 +#: src/Common/LinuxKernel.vala:760 msgid "Packages Available" msgstr "Beschikbare pakketten" -#: src/Common/LinuxKernel.vala:762 +#: src/Common/LinuxKernel.vala:766 msgid "Packages Installed" msgstr "Geïnstalleerde pakketten" -#: src/Common/LinuxKernel.vala:787 src/lib/TeeJee.FileSystem.vala:103 +#: src/Common/LinuxKernel.vala:791 src/lib/TeeJee.FileSystem.vala:99 msgid "File not found" msgstr "Het bestand is niet gevonden" -#: src/Common/LinuxKernel.vala:881 +#: src/Common/LinuxKernel.vala:885 msgid "Available Kernels" msgstr "Beschikbare kernels" -#: src/Common/LinuxKernel.vala:916 src/Gtk/MainWindow.vala:119 +#: src/Common/LinuxKernel.vala:920 src/Gtk/MainWindow.vala:128 msgid "Kernel" msgstr "Kernel" -#: src/Common/LinuxKernel.vala:916 +#: src/Common/LinuxKernel.vala:920 #, fuzzy msgid "not found" msgstr "Het bestand is niet gevonden" -#: src/Common/LinuxKernel.vala:923 +#: src/Common/LinuxKernel.vala:927 #, fuzzy msgid "Download: no downloadable kernels specified" msgstr "Geen opdracht opgegeven" -#: src/Common/LinuxKernel.vala:943 +#: src/Common/LinuxKernel.vala:947 msgid "enabled" msgstr "ingeschakeld" -#: src/Common/LinuxKernel.vala:967 +#: src/Common/LinuxKernel.vala:971 msgid "Downloading" msgstr "Downloaden" -#: src/Common/LinuxKernel.vala:985 +#: src/Common/LinuxKernel.vala:989 #, fuzzy msgid "Installing selected kernels" msgstr "Geselecteerde kernels verwijderen" -#: src/Common/LinuxKernel.vala:991 src/Common/LinuxKernel.vala:1029 +#: src/Common/LinuxKernel.vala:995 src/Common/LinuxKernel.vala:1033 #, fuzzy msgid "Requested" msgstr "verzocht" -#: src/Common/LinuxKernel.vala:994 +#: src/Common/LinuxKernel.vala:998 msgid "is already installed." msgstr "is al geïnstalleerd." -#: src/Common/LinuxKernel.vala:1004 +#: src/Common/LinuxKernel.vala:1008 msgid "download failed." msgstr "" -#: src/Common/LinuxKernel.vala:1012 +#: src/Common/LinuxKernel.vala:1016 #, fuzzy msgid "Install: no installable kernels secified" msgstr "Geen opdracht opgegeven" -#: src/Common/LinuxKernel.vala:1025 +#: src/Common/LinuxKernel.vala:1029 msgid "Uninstalling selected kernels" msgstr "Geselecteerde kernels verwijderen" -#: src/Common/LinuxKernel.vala:1032 +#: src/Common/LinuxKernel.vala:1036 #, fuzzy msgid "Not uninstalling the currently running kernel" msgstr "de momenteel actieve kernel niet verwijderen" -#: src/Common/LinuxKernel.vala:1037 +#: src/Common/LinuxKernel.vala:1041 msgid "is locked" msgstr "" -#: src/Common/LinuxKernel.vala:1045 +#: src/Common/LinuxKernel.vala:1049 msgid "found" msgstr "gevonden" -#: src/Common/LinuxKernel.vala:1049 +#: src/Common/LinuxKernel.vala:1053 msgid "Uninstall: no uninstallable packages found" msgstr "" -#: src/Common/LinuxKernel.vala:1085 +#: src/Common/LinuxKernel.vala:1089 #, fuzzy msgid "is the highest installed version." msgstr "Verwijder alle behalve de hoogst geïnstalleerde versie" -#: src/Common/LinuxKernel.vala:1098 +#: src/Common/LinuxKernel.vala:1102 msgid "Could not find running kernel in list" msgstr "De in gebruik zijnde kernel staat niet op de lijst" -#: src/Common/LinuxKernel.vala:1103 +#: src/Common/LinuxKernel.vala:1107 msgid "Could not find any kernels to uninstall" msgstr "Er zijn geen te verwijderen kernels" -#: src/Common/LinuxKernel.vala:1111 +#: src/Common/LinuxKernel.vala:1115 msgid "The following kernels will be uninstalled" msgstr "De volgende kernels worden verwijderd" -#: src/Common/LinuxKernel.vala:1115 +#: src/Common/LinuxKernel.vala:1119 msgid "Continue ?" msgstr "Wilt u doorgaan?" -#: src/Common/LinuxKernel.vala:1137 src/Console/AppConsole.vala:215 +#: src/Common/LinuxKernel.vala:1141 src/Console/AppConsole.vala:211 msgid "Latest update" msgstr "Recentste update" -#: src/Common/LinuxKernel.vala:1148 src/Console/AppConsole.vala:222 +#: src/Common/LinuxKernel.vala:1152 src/Console/AppConsole.vala:218 msgid "Latest point update" msgstr "Recentste puntupdate" -#: src/Common/LinuxKernel.vala:1156 src/Console/AppConsole.vala:227 -#: src/Console/AppConsole.vala:242 +#: src/Common/LinuxKernel.vala:1160 src/Console/AppConsole.vala:223 +#: src/Console/AppConsole.vala:243 msgid "No updates found" msgstr "Geen updates gevonden" -#: src/Common/LinuxKernel.vala:1165 +#: src/Common/LinuxKernel.vala:1169 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Wilt u versie %s installeren? (j/n): " -#: src/Common/Main.vala:345 +#: src/Common/Main.vala:340 msgid "Called from" msgstr "Aangeroepen door" -#: src/Common/Main.vala:345 +#: src/Common/Main.vala:340 msgid "at logon" msgstr "bij het opstarten" -#: src/Common/Main.vala:346 +#: src/Common/Main.vala:341 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" "Dit bestand wordt overschreven en opnieuw uitgevoerd wanneer instellingen " "worden opgeslagen in" -#: src/Common/Main.vala:378 +#: src/Common/Main.vala:373 msgid "Notifications are disabled" msgstr "Meldingen zijn uitgeschakeld" -#: src/Common/Package.vala:57 +#: src/Common/Package.vala:58 #, c-format msgid "File not found: %s" msgstr "Bestand niet gevonden: %s" -#: src/Console/AppConsole.vala:40 src/Gtk/AppGtk.vala:74 +#: src/Console/AppConsole.vala:39 src/Gtk/AppGtk.vala:77 msgid "Syntax" msgstr "Syntaxis" -#: src/Console/AppConsole.vala:42 +#: src/Console/AppConsole.vala:41 msgid "Commands" msgstr "Opdrachten" -#: src/Console/AppConsole.vala:44 +#: src/Console/AppConsole.vala:43 msgid "Check for kernel updates" msgstr "Controleren op kernelupdates" -#: src/Console/AppConsole.vala:45 +#: src/Console/AppConsole.vala:44 msgid "Check for kernel updates and notify current user" msgstr "Controleren op kernelupdates en gebruiker op de hoogte brengen" -#: src/Console/AppConsole.vala:46 +#: src/Console/AppConsole.vala:45 #, fuzzy msgid "List available mainline kernels" msgstr "Alle beschikbare mainline-kernels tonen" -#: src/Console/AppConsole.vala:47 +#: src/Console/AppConsole.vala:46 msgid "List installed kernels" msgstr "Alle geïnstalleerde kernels tonen" -#: src/Console/AppConsole.vala:48 +#: src/Console/AppConsole.vala:47 msgid "Install latest mainline kernel" msgstr "Recentste mainline-kernel installeren" -#: src/Console/AppConsole.vala:49 +#: src/Console/AppConsole.vala:48 #, fuzzy msgid "Install latest point update in the current major version" msgstr "Recentste puntupdate uit huidige editie installeren" -#: src/Console/AppConsole.vala:50 +#: src/Console/AppConsole.vala:49 #, fuzzy msgid "Install specified kernels" msgstr "Opgegeven kernel verwijderen" -#: src/Console/AppConsole.vala:51 +#: src/Console/AppConsole.vala:50 #, fuzzy msgid "Uninstall specified kernels" msgstr "Opgegeven kernel verwijderen" -#: src/Console/AppConsole.vala:52 src/Gtk/MainWindow.vala:324 +#: src/Console/AppConsole.vala:51 src/Gtk/MainWindow.vala:326 msgid "Uninstall all but the highest installed version" msgstr "Verwijder alle behalve de hoogst geïnstalleerde versie" -#: src/Console/AppConsole.vala:53 +#: src/Console/AppConsole.vala:52 msgid "Download specified kernels" msgstr "Opgegeven kernels downloaden" -#: src/Console/AppConsole.vala:54 +#: src/Console/AppConsole.vala:53 msgid "Delete cached info about available kernels" msgstr "Informatie over beschikbare kernels in de cache verwijderen" -#: src/Console/AppConsole.vala:56 src/Gtk/AppGtk.vala:76 +#: src/Console/AppConsole.vala:55 src/Gtk/AppGtk.vala:79 msgid "Options" msgstr "Opties" -#: src/Console/AppConsole.vala:58 +#: src/Console/AppConsole.vala:57 msgid "Include unstable and RC releases" msgstr "Inclusief onstabiele en RC-releases" -#: src/Console/AppConsole.vala:59 +#: src/Console/AppConsole.vala:58 msgid "Exclude unstable and RC releases" msgstr "Onstabiele en RC-releases uitsluiten" -#: src/Console/AppConsole.vala:60 +#: src/Console/AppConsole.vala:59 msgid "Verbosity. Set to n if given, or increment." msgstr "" -#: src/Console/AppConsole.vala:61 +#: src/Console/AppConsole.vala:60 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "Ja op alles (in de niet-interactieve modus)" -#: src/Console/AppConsole.vala:64 +#: src/Console/AppConsole.vala:63 #, fuzzy msgid "One or more version strings taken from the output of --list" msgstr "Een versietekenreeks uit de uitvoer van --list" -#: src/Console/AppConsole.vala:65 +#: src/Console/AppConsole.vala:64 msgid "comma, pipe, or colon-seperated, or quoted space seperated" msgstr "" -#: src/Console/AppConsole.vala:66 +#: src/Console/AppConsole.vala:65 #, fuzzy msgid "Locked kernels and the currently running kernel are ignored" msgstr "De momenteel actieve kernel wordt altijd genegeerd" -#: src/Console/AppConsole.vala:143 src/Console/AppConsole.vala:200 -#: src/Gtk/AppGtk.vala:108 +#: src/Console/AppConsole.vala:142 src/Console/AppConsole.vala:196 +#: src/Gtk/AppGtk.vala:111 msgid "Unknown option" msgstr "Onbekende optie" -#: src/Console/AppConsole.vala:236 +#: src/Console/AppConsole.vala:232 msgid "Notifications disabled in settings" msgstr "Meldingen uitgeschakeld in instellingen" -#: src/Console/AppConsole.vala:264 +#: src/Console/AppConsole.vala:265 #, c-format msgid "Kernel %s Available" msgstr "Kernel %s is beschikbaar" -#: src/Console/AppConsole.vala:268 src/Gtk/SettingsDialog.vala:163 +#: src/Console/AppConsole.vala:269 src/Gtk/SettingsDialog.vala:154 msgid "Show" msgstr "Tonen" -#: src/Console/AppConsole.vala:269 src/Gtk/MainWindow.vala:296 +#: src/Console/AppConsole.vala:270 src/Gtk/MainWindow.vala:305 msgid "Install" msgstr "Installeren" -#: src/Console/AppConsole.vala:272 +#: src/Console/AppConsole.vala:273 msgid "Previously notified" msgstr "Eerder gemeld" @@ -347,7 +347,7 @@ msgstr "Met dank aan" msgid "Back" msgstr "Terug" -#: src/Gtk/AboutWindow.vala:185 src/Gtk/TerminalWindow.vala:161 +#: src/Gtk/AboutWindow.vala:185 src/Gtk/TerminalWindow.vala:169 msgid "Close" msgstr "Sluiten" @@ -375,160 +375,164 @@ msgstr "Documenteerders" msgid "Third Party Inclusions" msgstr "Externe code" -#: src/Gtk/AppGtk.vala:74 +#: src/Gtk/AppGtk.vala:77 msgid "options" msgstr "opties" -#: src/Gtk/AppGtk.vala:78 +#: src/Gtk/AppGtk.vala:81 msgid "Print debug information" msgstr "Foutopsporingsinformatie tonen" -#: src/Gtk/AppGtk.vala:79 +#: src/Gtk/AppGtk.vala:82 msgid "Show all options" msgstr "Alle opties tonen" -#: src/Gtk/MainWindow.vala:143 +#: src/Gtk/MainWindow.vala:152 msgid "Lock" msgstr "" -#: src/Gtk/MainWindow.vala:160 +#: src/Gtk/MainWindow.vala:169 msgid "Status" msgstr "Status" -#: src/Gtk/MainWindow.vala:172 +#: src/Gtk/MainWindow.vala:181 msgid "Notes" msgstr "Notities" -#: src/Gtk/MainWindow.vala:304 +#: src/Gtk/MainWindow.vala:310 msgid "Uninstall" msgstr "Deïnstalleren" -#: src/Gtk/MainWindow.vala:313 +#: src/Gtk/MainWindow.vala:316 msgid "Changelog, build status, etc" msgstr "" -#: src/Gtk/MainWindow.vala:323 +#: src/Gtk/MainWindow.vala:325 msgid "Uninstall Old" msgstr "Verwijder Oude" -#: src/Gtk/MainWindow.vala:329 +#: src/Gtk/MainWindow.vala:331 msgid "Reload" msgstr "Herladen" -#: src/Gtk/MainWindow.vala:330 +#: src/Gtk/MainWindow.vala:332 msgid "Delete and reload all cached kernel info" msgstr "" -#: src/Gtk/MainWindow.vala:335 src/Gtk/SettingsDialog.vala:46 +#: src/Gtk/MainWindow.vala:337 src/Gtk/SettingsDialog.vala:43 msgid "Settings" msgstr "Instellingen" -#: src/Gtk/MainWindow.vala:340 +#: src/Gtk/MainWindow.vala:342 msgid "About" msgstr "Over" -#: src/Gtk/MainWindow.vala:345 +#: src/Gtk/MainWindow.vala:347 msgid "Exit" msgstr "Afsluiten" -#: src/Gtk/MainWindow.vala:409 +#: src/Gtk/MainWindow.vala:428 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Een kernelupgradehulpmiddel voor op Ubuntu gebaseerde distributies" -#: src/Gtk/MainWindow.vala:410 +#: src/Gtk/MainWindow.vala:429 msgid "Forked" msgstr "Geforkt" -#: src/Gtk/MainWindow.vala:410 +#: src/Gtk/MainWindow.vala:429 msgid "Original" msgstr "Origineel" -#: src/Gtk/MainWindow.vala:439 +#: src/Gtk/MainWindow.vala:458 msgid "Updating kernels" msgstr "Kernels bijwerken" -#: src/Gtk/MainWindow.vala:507 +#: src/Gtk/MainWindow.vala:518 msgid "available" msgstr "beschikbaar" -#: src/Gtk/MainWindow.vala:557 src/Gtk/MainWindow.vala:596 -#: src/Gtk/MainWindow.vala:630 +#: src/Gtk/MainWindow.vala:560 src/Gtk/MainWindow.vala:591 +#: src/Gtk/MainWindow.vala:616 msgid "DONE" msgstr "" -#: src/Gtk/SettingsDialog.vala:56 +#: src/Gtk/SettingsDialog.vala:53 msgid "Notification" msgstr "Melding" -#: src/Gtk/SettingsDialog.vala:63 +#: src/Gtk/SettingsDialog.vala:60 msgid "Notify if a major release is available" msgstr "Melding tonen als er een grote update beschikbaar is" -#: src/Gtk/SettingsDialog.vala:72 +#: src/Gtk/SettingsDialog.vala:68 msgid "Notify if a point release is available" msgstr "Melding tonen als er een puntupdate beschikbaar is" -#: src/Gtk/SettingsDialog.vala:83 +#: src/Gtk/SettingsDialog.vala:76 msgid "Seconds interval enabled for debugging" msgstr "Secondeninterval ingeschakeld voor foutopsporing" -#: src/Gtk/SettingsDialog.vala:106 +#: src/Gtk/SettingsDialog.vala:99 msgid "Check every" msgstr "Controleren, elke" -#: src/Gtk/SettingsDialog.vala:131 +#: src/Gtk/SettingsDialog.vala:122 msgid "Hours" msgstr "uur" -#: src/Gtk/SettingsDialog.vala:133 +#: src/Gtk/SettingsDialog.vala:124 msgid "Days" msgstr "dagen" -#: src/Gtk/SettingsDialog.vala:135 +#: src/Gtk/SettingsDialog.vala:126 msgid "Weeks" msgstr "weken" -#: src/Gtk/SettingsDialog.vala:138 +#: src/Gtk/SettingsDialog.vala:129 msgid "Seconds" msgstr "seconden" -#: src/Gtk/SettingsDialog.vala:144 +#: src/Gtk/SettingsDialog.vala:135 msgid "Filters" msgstr "Filters" -#: src/Gtk/SettingsDialog.vala:152 +#: src/Gtk/SettingsDialog.vala:143 msgid "Hide unstable and RC releases" msgstr "Instabiele en rc-uitgaven verbergen" -#: src/Gtk/SettingsDialog.vala:174 +#: src/Gtk/SettingsDialog.vala:165 msgid "previous major versions ( -1 = all )" msgstr "vorige hoofdversies ( -1 = alle )" -#: src/Gtk/SettingsDialog.vala:178 +#: src/Gtk/SettingsDialog.vala:169 msgid "Network" msgstr "Netwerk" -#: src/Gtk/SettingsDialog.vala:189 +#: src/Gtk/SettingsDialog.vala:180 msgid "Internet connection timeout in" msgstr "Verbindingstime-out na" -#: src/Gtk/SettingsDialog.vala:201 +#: src/Gtk/SettingsDialog.vala:192 msgid "seconds" msgstr "seconden" -#: src/Gtk/SettingsDialog.vala:208 +#: src/Gtk/SettingsDialog.vala:199 msgid "Max concurrent downloads" msgstr "Max. aantal gelijktijdige downloads" -#: src/Gtk/SettingsDialog.vala:222 +#: src/Gtk/SettingsDialog.vala:212 msgid "Verify Checksums with the CHECKSUMS files" msgstr "Controleer controlesommen met de CHECKSUMS-bestanden" -#: src/Gtk/SettingsDialog.vala:230 +#: src/Gtk/SettingsDialog.vala:220 msgid "Proxy" msgstr "Proxy" -#: src/Gtk/TerminalWindow.vala:151 +#: src/Gtk/SettingsDialog.vala:249 +msgid "Done" +msgstr "" + +#: src/Gtk/TerminalWindow.vala:159 msgid "Cancel" msgstr "Annuleren" diff --git a/po/pl.po b/po/pl.po index aab63307..50adbd9a 100644 --- a/po/pl.po +++ b/po/pl.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-01 03:06-0400\n" +"POT-Creation-Date: 2023-06-03 06:21-0400\n" "PO-Revision-Date: 2023-05-25 13:37+0200\n" "Last-Translator: Matthaiks\n" "Language-Team: Polish\n" @@ -12,329 +12,329 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Poedit 3.3.1\n" -#: src/Common/LinuxKernel.vala:105 +#: src/Common/LinuxKernel.vala:100 msgid "Distribution" msgstr "Dystrybucja" -#: src/Common/LinuxKernel.vala:120 +#: src/Common/LinuxKernel.vala:115 msgid "Architecture" msgstr "Architektura" -#: src/Common/LinuxKernel.vala:135 +#: src/Common/LinuxKernel.vala:130 msgid "Running kernel" msgstr "Uruchomione jądro" -#: src/Common/LinuxKernel.vala:238 +#: src/Common/LinuxKernel.vala:230 msgid "loading cached" msgstr "ładowanie z pamięci podręcznej" -#: src/Common/LinuxKernel.vala:250 +#: src/Common/LinuxKernel.vala:242 msgid "queuing download" msgstr "pobieranie w kolejce" -#: src/Common/LinuxKernel.vala:271 +#: src/Common/LinuxKernel.vala:263 msgid "Fetching individual kernel indexes" msgstr "Pobieranie indywidualnych indeksów jądra" -#: src/Common/LinuxKernel.vala:285 +#: src/Common/LinuxKernel.vala:277 msgid "loading downloaded" msgstr "ładowanie pobranych" -#: src/Common/LinuxKernel.vala:320 +#: src/Common/LinuxKernel.vala:318 msgid "Updating from" msgstr "Aktualizowanie z" -#: src/Common/LinuxKernel.vala:328 +#: src/Common/LinuxKernel.vala:326 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:331 +#: src/Common/LinuxKernel.vala:329 msgid "FAILED" msgstr "NIEPOWODZENIE" -#: src/Common/LinuxKernel.vala:393 +#: src/Common/LinuxKernel.vala:392 msgid "Found installed" msgstr "Znaleziono zainstalowane" -#: src/Common/LinuxKernel.vala:394 +#: src/Common/LinuxKernel.vala:393 msgid "locked" msgstr "zablokowane" -#: src/Common/LinuxKernel.vala:476 src/Common/LinuxKernel.vala:999 -#: src/Common/LinuxKernel.vala:1089 +#: src/Common/LinuxKernel.vala:475 src/Common/LinuxKernel.vala:1003 +#: src/Common/LinuxKernel.vala:1093 msgid "is locked." msgstr "jest zablokowane." -#: src/Common/LinuxKernel.vala:669 src/Gtk/MainWindow.vala:503 +#: src/Common/LinuxKernel.vala:668 src/Gtk/MainWindow.vala:514 msgid "Running" msgstr "Uruchomione" -#: src/Common/LinuxKernel.vala:670 +#: src/Common/LinuxKernel.vala:669 msgid "Installed" msgstr "Zainstalowane" -#: src/Common/LinuxKernel.vala:671 +#: src/Common/LinuxKernel.vala:670 msgid "Invalid" msgstr "Nieprawidłowe" -#: src/Common/LinuxKernel.vala:756 +#: src/Common/LinuxKernel.vala:760 msgid "Packages Available" msgstr "Dostępne pakiety" -#: src/Common/LinuxKernel.vala:762 +#: src/Common/LinuxKernel.vala:766 msgid "Packages Installed" msgstr "Pakiety zainstalowane" -#: src/Common/LinuxKernel.vala:787 src/lib/TeeJee.FileSystem.vala:103 +#: src/Common/LinuxKernel.vala:791 src/lib/TeeJee.FileSystem.vala:99 msgid "File not found" msgstr "Nie odnaleziono pliku" -#: src/Common/LinuxKernel.vala:881 +#: src/Common/LinuxKernel.vala:885 msgid "Available Kernels" msgstr "Dostępne jądra" -#: src/Common/LinuxKernel.vala:916 src/Gtk/MainWindow.vala:119 +#: src/Common/LinuxKernel.vala:920 src/Gtk/MainWindow.vala:128 msgid "Kernel" msgstr "Jądro" -#: src/Common/LinuxKernel.vala:916 +#: src/Common/LinuxKernel.vala:920 #, fuzzy msgid "not found" msgstr "Nie odnaleziono pliku" -#: src/Common/LinuxKernel.vala:923 +#: src/Common/LinuxKernel.vala:927 #, fuzzy msgid "Download: no downloadable kernels specified" msgstr "Nie określono polecenia" -#: src/Common/LinuxKernel.vala:943 +#: src/Common/LinuxKernel.vala:947 msgid "enabled" msgstr "włączone" -#: src/Common/LinuxKernel.vala:967 +#: src/Common/LinuxKernel.vala:971 msgid "Downloading" msgstr "Pobieranie" -#: src/Common/LinuxKernel.vala:985 +#: src/Common/LinuxKernel.vala:989 #, fuzzy msgid "Installing selected kernels" msgstr "Odinstalowanie wybranych jąder" -#: src/Common/LinuxKernel.vala:991 src/Common/LinuxKernel.vala:1029 +#: src/Common/LinuxKernel.vala:995 src/Common/LinuxKernel.vala:1033 #, fuzzy msgid "Requested" msgstr "zażądane" -#: src/Common/LinuxKernel.vala:994 +#: src/Common/LinuxKernel.vala:998 msgid "is already installed." msgstr "jest już zainstalowane." -#: src/Common/LinuxKernel.vala:1004 +#: src/Common/LinuxKernel.vala:1008 msgid "download failed." msgstr "" -#: src/Common/LinuxKernel.vala:1012 +#: src/Common/LinuxKernel.vala:1016 #, fuzzy msgid "Install: no installable kernels secified" msgstr "Nie określono polecenia" -#: src/Common/LinuxKernel.vala:1025 +#: src/Common/LinuxKernel.vala:1029 msgid "Uninstalling selected kernels" msgstr "Odinstalowanie wybranych jąder" -#: src/Common/LinuxKernel.vala:1032 +#: src/Common/LinuxKernel.vala:1036 #, fuzzy msgid "Not uninstalling the currently running kernel" msgstr "bez odinstalowywania aktualnie uruchomionego jądra" -#: src/Common/LinuxKernel.vala:1037 +#: src/Common/LinuxKernel.vala:1041 #, fuzzy msgid "is locked" msgstr "jest zablokowane." -#: src/Common/LinuxKernel.vala:1045 +#: src/Common/LinuxKernel.vala:1049 msgid "found" msgstr "znalezione" -#: src/Common/LinuxKernel.vala:1049 +#: src/Common/LinuxKernel.vala:1053 msgid "Uninstall: no uninstallable packages found" msgstr "" -#: src/Common/LinuxKernel.vala:1085 +#: src/Common/LinuxKernel.vala:1089 msgid "is the highest installed version." msgstr "to najwyższa zainstalowana wersja." -#: src/Common/LinuxKernel.vala:1098 +#: src/Common/LinuxKernel.vala:1102 msgid "Could not find running kernel in list" msgstr "Nie można znaleźć uruchomionego jądra na liście" -#: src/Common/LinuxKernel.vala:1103 +#: src/Common/LinuxKernel.vala:1107 msgid "Could not find any kernels to uninstall" msgstr "Nie można znaleźć żadnych jąder do odinstalowania" -#: src/Common/LinuxKernel.vala:1111 +#: src/Common/LinuxKernel.vala:1115 msgid "The following kernels will be uninstalled" msgstr "Następujące jądra zostaną odinstalowane" -#: src/Common/LinuxKernel.vala:1115 +#: src/Common/LinuxKernel.vala:1119 msgid "Continue ?" msgstr "Kontynuować?" -#: src/Common/LinuxKernel.vala:1137 src/Console/AppConsole.vala:215 +#: src/Common/LinuxKernel.vala:1141 src/Console/AppConsole.vala:211 msgid "Latest update" msgstr "Najnowsza aktualizacja" -#: src/Common/LinuxKernel.vala:1148 src/Console/AppConsole.vala:222 +#: src/Common/LinuxKernel.vala:1152 src/Console/AppConsole.vala:218 msgid "Latest point update" msgstr "Najnowsza aktualizacja punktowa" -#: src/Common/LinuxKernel.vala:1156 src/Console/AppConsole.vala:227 -#: src/Console/AppConsole.vala:242 +#: src/Common/LinuxKernel.vala:1160 src/Console/AppConsole.vala:223 +#: src/Console/AppConsole.vala:243 msgid "No updates found" msgstr "Nie znaleziono aktualizacji" -#: src/Common/LinuxKernel.vala:1165 +#: src/Common/LinuxKernel.vala:1169 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Zainstalować wersję jądra %s? (t/n): " -#: src/Common/Main.vala:345 +#: src/Common/Main.vala:340 msgid "Called from" msgstr "Wywołano z" -#: src/Common/Main.vala:345 +#: src/Common/Main.vala:340 msgid "at logon" msgstr "przy logowaniu" -#: src/Common/Main.vala:346 +#: src/Common/Main.vala:341 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" "Ten plik jest nadpisywany i wykonywany ponownie za każdym razem, gdy " "ustawienia są zapisywane w" -#: src/Common/Main.vala:378 +#: src/Common/Main.vala:373 msgid "Notifications are disabled" msgstr "Powiadomienia są wyłączone" -#: src/Common/Package.vala:57 +#: src/Common/Package.vala:58 #, c-format msgid "File not found: %s" msgstr "Nie znaleziono pliku: %s" -#: src/Console/AppConsole.vala:40 src/Gtk/AppGtk.vala:74 +#: src/Console/AppConsole.vala:39 src/Gtk/AppGtk.vala:77 msgid "Syntax" msgstr "Składnia" -#: src/Console/AppConsole.vala:42 +#: src/Console/AppConsole.vala:41 msgid "Commands" msgstr "Polecenia" -#: src/Console/AppConsole.vala:44 +#: src/Console/AppConsole.vala:43 msgid "Check for kernel updates" msgstr "Sprawdź nowe wersje jądra" -#: src/Console/AppConsole.vala:45 +#: src/Console/AppConsole.vala:44 msgid "Check for kernel updates and notify current user" msgstr "Sprawdź nowe wersje jądra i powiadom bieżącego użytkownika" -#: src/Console/AppConsole.vala:46 +#: src/Console/AppConsole.vala:45 #, fuzzy msgid "List available mainline kernels" msgstr "Pokaż wszystkie dostępne jądra" -#: src/Console/AppConsole.vala:47 +#: src/Console/AppConsole.vala:46 msgid "List installed kernels" msgstr "Wyświetl listę zainstalowanych jąder" -#: src/Console/AppConsole.vala:48 +#: src/Console/AppConsole.vala:47 msgid "Install latest mainline kernel" msgstr "Zainstaluj najnowsze jądro" -#: src/Console/AppConsole.vala:49 +#: src/Console/AppConsole.vala:48 #, fuzzy msgid "Install latest point update in the current major version" msgstr "Zainstaluj najnowszą aktualizację punktową dla bieżącej serii" -#: src/Console/AppConsole.vala:50 +#: src/Console/AppConsole.vala:49 #, fuzzy msgid "Install specified kernels" msgstr "Odinstaluj wybrane jądro" -#: src/Console/AppConsole.vala:51 +#: src/Console/AppConsole.vala:50 #, fuzzy msgid "Uninstall specified kernels" msgstr "Odinstaluj wybrane jądro" -#: src/Console/AppConsole.vala:52 src/Gtk/MainWindow.vala:324 +#: src/Console/AppConsole.vala:51 src/Gtk/MainWindow.vala:326 msgid "Uninstall all but the highest installed version" msgstr "Odinstaluj wszystkie oprócz najwyższej zainstalowanej wersji" -#: src/Console/AppConsole.vala:53 +#: src/Console/AppConsole.vala:52 msgid "Download specified kernels" msgstr "Pobierz wybrane jądra" -#: src/Console/AppConsole.vala:54 +#: src/Console/AppConsole.vala:53 msgid "Delete cached info about available kernels" msgstr "Usuń informacje z pamięci podręcznej o dostępnych jądrach" -#: src/Console/AppConsole.vala:56 src/Gtk/AppGtk.vala:76 +#: src/Console/AppConsole.vala:55 src/Gtk/AppGtk.vala:79 msgid "Options" msgstr "Opcje" -#: src/Console/AppConsole.vala:58 +#: src/Console/AppConsole.vala:57 msgid "Include unstable and RC releases" msgstr "Uwzględnij wydania niestabilne i RC" -#: src/Console/AppConsole.vala:59 +#: src/Console/AppConsole.vala:58 msgid "Exclude unstable and RC releases" msgstr "Wyklucz wersje niestabilne i RC" -#: src/Console/AppConsole.vala:60 +#: src/Console/AppConsole.vala:59 msgid "Verbosity. Set to n if given, or increment." msgstr "" -#: src/Console/AppConsole.vala:61 +#: src/Console/AppConsole.vala:60 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "Przyjmij Tak dla wszystkich monitów (tryb nieinteraktywny)" -#: src/Console/AppConsole.vala:64 +#: src/Console/AppConsole.vala:63 #, fuzzy msgid "One or more version strings taken from the output of --list" msgstr "Ciąg wersji pobrany z danych wyjściowych --list" -#: src/Console/AppConsole.vala:65 +#: src/Console/AppConsole.vala:64 msgid "comma, pipe, or colon-seperated, or quoted space seperated" msgstr "" -#: src/Console/AppConsole.vala:66 +#: src/Console/AppConsole.vala:65 #, fuzzy msgid "Locked kernels and the currently running kernel are ignored" msgstr "Aktualnie uruchomione jądro będzie zawsze ignorowane" -#: src/Console/AppConsole.vala:143 src/Console/AppConsole.vala:200 -#: src/Gtk/AppGtk.vala:108 +#: src/Console/AppConsole.vala:142 src/Console/AppConsole.vala:196 +#: src/Gtk/AppGtk.vala:111 msgid "Unknown option" msgstr "Nieznana opcja" -#: src/Console/AppConsole.vala:236 +#: src/Console/AppConsole.vala:232 msgid "Notifications disabled in settings" msgstr "Powiadomienia wyłączone w ustawieniach" -#: src/Console/AppConsole.vala:264 +#: src/Console/AppConsole.vala:265 #, c-format msgid "Kernel %s Available" msgstr "Dostępne %s jądra" -#: src/Console/AppConsole.vala:268 src/Gtk/SettingsDialog.vala:163 +#: src/Console/AppConsole.vala:269 src/Gtk/SettingsDialog.vala:154 msgid "Show" msgstr "Pokaż" -#: src/Console/AppConsole.vala:269 src/Gtk/MainWindow.vala:296 +#: src/Console/AppConsole.vala:270 src/Gtk/MainWindow.vala:305 msgid "Install" msgstr "Zainstaluj" -#: src/Console/AppConsole.vala:272 +#: src/Console/AppConsole.vala:273 msgid "Previously notified" msgstr "Wcześniej powiadomiono" @@ -346,7 +346,7 @@ msgstr "Zasługi" msgid "Back" msgstr "Wstecz" -#: src/Gtk/AboutWindow.vala:185 src/Gtk/TerminalWindow.vala:161 +#: src/Gtk/AboutWindow.vala:185 src/Gtk/TerminalWindow.vala:169 msgid "Close" msgstr "Zamknij" @@ -374,160 +374,164 @@ msgstr "Dokumentujący" msgid "Third Party Inclusions" msgstr "Włączenia stron trzecich" -#: src/Gtk/AppGtk.vala:74 +#: src/Gtk/AppGtk.vala:77 msgid "options" msgstr "opcje" -#: src/Gtk/AppGtk.vala:78 +#: src/Gtk/AppGtk.vala:81 msgid "Print debug information" msgstr "Wypisz informacje debugujące" -#: src/Gtk/AppGtk.vala:79 +#: src/Gtk/AppGtk.vala:82 msgid "Show all options" msgstr "Pokaż wszystkie opcje" -#: src/Gtk/MainWindow.vala:143 +#: src/Gtk/MainWindow.vala:152 msgid "Lock" msgstr "" -#: src/Gtk/MainWindow.vala:160 +#: src/Gtk/MainWindow.vala:169 msgid "Status" msgstr "Status" -#: src/Gtk/MainWindow.vala:172 +#: src/Gtk/MainWindow.vala:181 msgid "Notes" msgstr "Notatki" -#: src/Gtk/MainWindow.vala:304 +#: src/Gtk/MainWindow.vala:310 msgid "Uninstall" msgstr "Odinstaluj" -#: src/Gtk/MainWindow.vala:313 +#: src/Gtk/MainWindow.vala:316 msgid "Changelog, build status, etc" msgstr "Dziennik zmian, status kompilacji itd." -#: src/Gtk/MainWindow.vala:323 +#: src/Gtk/MainWindow.vala:325 msgid "Uninstall Old" msgstr "Odinstaluj stare" -#: src/Gtk/MainWindow.vala:329 +#: src/Gtk/MainWindow.vala:331 msgid "Reload" msgstr "Wczytaj ponownie" -#: src/Gtk/MainWindow.vala:330 +#: src/Gtk/MainWindow.vala:332 msgid "Delete and reload all cached kernel info" msgstr "" -#: src/Gtk/MainWindow.vala:335 src/Gtk/SettingsDialog.vala:46 +#: src/Gtk/MainWindow.vala:337 src/Gtk/SettingsDialog.vala:43 msgid "Settings" msgstr "Ustawienia" -#: src/Gtk/MainWindow.vala:340 +#: src/Gtk/MainWindow.vala:342 msgid "About" msgstr "O programie" -#: src/Gtk/MainWindow.vala:345 +#: src/Gtk/MainWindow.vala:347 msgid "Exit" msgstr "Wyjdź" -#: src/Gtk/MainWindow.vala:409 +#: src/Gtk/MainWindow.vala:428 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Narzędzie uaktualniania jądra dla dystrybucji z rodziny Ubuntu" -#: src/Gtk/MainWindow.vala:410 +#: src/Gtk/MainWindow.vala:429 msgid "Forked" msgstr "Sforkowane" -#: src/Gtk/MainWindow.vala:410 +#: src/Gtk/MainWindow.vala:429 msgid "Original" msgstr "Oryginalne" -#: src/Gtk/MainWindow.vala:439 +#: src/Gtk/MainWindow.vala:458 msgid "Updating kernels" msgstr "Aktualizowanie jąder" -#: src/Gtk/MainWindow.vala:507 +#: src/Gtk/MainWindow.vala:518 msgid "available" msgstr "dostępne" -#: src/Gtk/MainWindow.vala:557 src/Gtk/MainWindow.vala:596 -#: src/Gtk/MainWindow.vala:630 +#: src/Gtk/MainWindow.vala:560 src/Gtk/MainWindow.vala:591 +#: src/Gtk/MainWindow.vala:616 msgid "DONE" msgstr "" -#: src/Gtk/SettingsDialog.vala:56 +#: src/Gtk/SettingsDialog.vala:53 msgid "Notification" msgstr "Powiadomienia" -#: src/Gtk/SettingsDialog.vala:63 +#: src/Gtk/SettingsDialog.vala:60 msgid "Notify if a major release is available" msgstr "Powiadom, jeśli pojawi się główna wersja" -#: src/Gtk/SettingsDialog.vala:72 +#: src/Gtk/SettingsDialog.vala:68 msgid "Notify if a point release is available" msgstr "Powiadom, jeśli pojawi się wersja punktowa" -#: src/Gtk/SettingsDialog.vala:83 +#: src/Gtk/SettingsDialog.vala:76 msgid "Seconds interval enabled for debugging" msgstr "Interwał w sekundach włączony do debugowania" -#: src/Gtk/SettingsDialog.vala:106 +#: src/Gtk/SettingsDialog.vala:99 msgid "Check every" msgstr "Sprawdzaj co" -#: src/Gtk/SettingsDialog.vala:131 +#: src/Gtk/SettingsDialog.vala:122 msgid "Hours" msgstr "godziny" -#: src/Gtk/SettingsDialog.vala:133 +#: src/Gtk/SettingsDialog.vala:124 msgid "Days" msgstr "dni" -#: src/Gtk/SettingsDialog.vala:135 +#: src/Gtk/SettingsDialog.vala:126 msgid "Weeks" msgstr "tygodnie" -#: src/Gtk/SettingsDialog.vala:138 +#: src/Gtk/SettingsDialog.vala:129 msgid "Seconds" msgstr "sekundy" -#: src/Gtk/SettingsDialog.vala:144 +#: src/Gtk/SettingsDialog.vala:135 msgid "Filters" msgstr "Filtry" -#: src/Gtk/SettingsDialog.vala:152 +#: src/Gtk/SettingsDialog.vala:143 msgid "Hide unstable and RC releases" msgstr "Ukryj wydania niestabilne i RC" -#: src/Gtk/SettingsDialog.vala:174 +#: src/Gtk/SettingsDialog.vala:165 msgid "previous major versions ( -1 = all )" msgstr "poprzednie główne wersje ( -1 = wszystkie )" -#: src/Gtk/SettingsDialog.vala:178 +#: src/Gtk/SettingsDialog.vala:169 msgid "Network" msgstr "Sieć" -#: src/Gtk/SettingsDialog.vala:189 +#: src/Gtk/SettingsDialog.vala:180 msgid "Internet connection timeout in" msgstr "Limit czasu połączenia internetowego po" -#: src/Gtk/SettingsDialog.vala:201 +#: src/Gtk/SettingsDialog.vala:192 msgid "seconds" msgstr "sekundy" -#: src/Gtk/SettingsDialog.vala:208 +#: src/Gtk/SettingsDialog.vala:199 msgid "Max concurrent downloads" msgstr "Maksymalna liczba jednoczesnych pobrań" -#: src/Gtk/SettingsDialog.vala:222 +#: src/Gtk/SettingsDialog.vala:212 msgid "Verify Checksums with the CHECKSUMS files" msgstr "Weryfikowanie sum kontrolnych za pomocą plików CHECKSUMS" -#: src/Gtk/SettingsDialog.vala:230 +#: src/Gtk/SettingsDialog.vala:220 msgid "Proxy" msgstr "Serwer pośredniczący" -#: src/Gtk/TerminalWindow.vala:151 +#: src/Gtk/SettingsDialog.vala:249 +msgid "Done" +msgstr "" + +#: src/Gtk/TerminalWindow.vala:159 msgid "Cancel" msgstr "Anuluj" diff --git a/po/ru.po b/po/ru.po index b5d9521d..0043e388 100644 --- a/po/ru.po +++ b/po/ru.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-01 03:06-0400\n" +"POT-Creation-Date: 2023-06-03 06:21-0400\n" "PO-Revision-Date: 2023-04-17 20:16+0300\n" "Last-Translator: Danik2343 \n" "Language-Team: Russian\n" @@ -13,328 +13,328 @@ msgstr "" "X-Launchpad-Export-Date: 2016-12-13 11:48+0000\n" "X-Generator: Poedit 3.0.1\n" -#: src/Common/LinuxKernel.vala:105 +#: src/Common/LinuxKernel.vala:100 msgid "Distribution" msgstr "Дистрибутив" -#: src/Common/LinuxKernel.vala:120 +#: src/Common/LinuxKernel.vala:115 msgid "Architecture" msgstr "Архитектура" -#: src/Common/LinuxKernel.vala:135 +#: src/Common/LinuxKernel.vala:130 msgid "Running kernel" msgstr "Запущенное ядро" -#: src/Common/LinuxKernel.vala:238 +#: src/Common/LinuxKernel.vala:230 msgid "loading cached" msgstr "загрузка в кэше" -#: src/Common/LinuxKernel.vala:250 +#: src/Common/LinuxKernel.vala:242 msgid "queuing download" msgstr "загрузка очередей" -#: src/Common/LinuxKernel.vala:271 +#: src/Common/LinuxKernel.vala:263 msgid "Fetching individual kernel indexes" msgstr "Получение отдельных индексов ядра" -#: src/Common/LinuxKernel.vala:285 +#: src/Common/LinuxKernel.vala:277 msgid "loading downloaded" msgstr "загрузка загруженных" -#: src/Common/LinuxKernel.vala:320 +#: src/Common/LinuxKernel.vala:318 msgid "Updating from" msgstr "Обновление из" -#: src/Common/LinuxKernel.vala:328 +#: src/Common/LinuxKernel.vala:326 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:331 +#: src/Common/LinuxKernel.vala:329 msgid "FAILED" msgstr "НЕУДАВШИЙСЯ" -#: src/Common/LinuxKernel.vala:393 +#: src/Common/LinuxKernel.vala:392 msgid "Found installed" msgstr "Найдено установлененное" -#: src/Common/LinuxKernel.vala:394 +#: src/Common/LinuxKernel.vala:393 msgid "locked" msgstr "" -#: src/Common/LinuxKernel.vala:476 src/Common/LinuxKernel.vala:999 -#: src/Common/LinuxKernel.vala:1089 +#: src/Common/LinuxKernel.vala:475 src/Common/LinuxKernel.vala:1003 +#: src/Common/LinuxKernel.vala:1093 msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:669 src/Gtk/MainWindow.vala:503 +#: src/Common/LinuxKernel.vala:668 src/Gtk/MainWindow.vala:514 msgid "Running" msgstr "Используется" -#: src/Common/LinuxKernel.vala:670 +#: src/Common/LinuxKernel.vala:669 msgid "Installed" msgstr "Установлено" -#: src/Common/LinuxKernel.vala:671 +#: src/Common/LinuxKernel.vala:670 msgid "Invalid" msgstr "Негодный" -#: src/Common/LinuxKernel.vala:756 +#: src/Common/LinuxKernel.vala:760 msgid "Packages Available" msgstr "Доступные пакеты" -#: src/Common/LinuxKernel.vala:762 +#: src/Common/LinuxKernel.vala:766 msgid "Packages Installed" msgstr "Установленные пакеты" -#: src/Common/LinuxKernel.vala:787 src/lib/TeeJee.FileSystem.vala:103 +#: src/Common/LinuxKernel.vala:791 src/lib/TeeJee.FileSystem.vala:99 msgid "File not found" msgstr "Файл не найден" -#: src/Common/LinuxKernel.vala:881 +#: src/Common/LinuxKernel.vala:885 msgid "Available Kernels" msgstr "Доступные ядра" -#: src/Common/LinuxKernel.vala:916 src/Gtk/MainWindow.vala:119 +#: src/Common/LinuxKernel.vala:920 src/Gtk/MainWindow.vala:128 msgid "Kernel" msgstr "Ядро" -#: src/Common/LinuxKernel.vala:916 +#: src/Common/LinuxKernel.vala:920 #, fuzzy msgid "not found" msgstr "Файл не найден" -#: src/Common/LinuxKernel.vala:923 +#: src/Common/LinuxKernel.vala:927 #, fuzzy msgid "Download: no downloadable kernels specified" msgstr "Команда не указана" -#: src/Common/LinuxKernel.vala:943 +#: src/Common/LinuxKernel.vala:947 msgid "enabled" msgstr "включено" -#: src/Common/LinuxKernel.vala:967 +#: src/Common/LinuxKernel.vala:971 msgid "Downloading" msgstr "Загрузки" -#: src/Common/LinuxKernel.vala:985 +#: src/Common/LinuxKernel.vala:989 #, fuzzy msgid "Installing selected kernels" msgstr "Удаление выбранных ядер" -#: src/Common/LinuxKernel.vala:991 src/Common/LinuxKernel.vala:1029 +#: src/Common/LinuxKernel.vala:995 src/Common/LinuxKernel.vala:1033 #, fuzzy msgid "Requested" msgstr "запрошено" -#: src/Common/LinuxKernel.vala:994 +#: src/Common/LinuxKernel.vala:998 msgid "is already installed." msgstr "уже установлен." -#: src/Common/LinuxKernel.vala:1004 +#: src/Common/LinuxKernel.vala:1008 msgid "download failed." msgstr "" -#: src/Common/LinuxKernel.vala:1012 +#: src/Common/LinuxKernel.vala:1016 #, fuzzy msgid "Install: no installable kernels secified" msgstr "Команда не указана" -#: src/Common/LinuxKernel.vala:1025 +#: src/Common/LinuxKernel.vala:1029 msgid "Uninstalling selected kernels" msgstr "Удаление выбранных ядер" -#: src/Common/LinuxKernel.vala:1032 +#: src/Common/LinuxKernel.vala:1036 #, fuzzy msgid "Not uninstalling the currently running kernel" msgstr "не удаляет текущее работающее ядро" -#: src/Common/LinuxKernel.vala:1037 +#: src/Common/LinuxKernel.vala:1041 msgid "is locked" msgstr "" -#: src/Common/LinuxKernel.vala:1045 +#: src/Common/LinuxKernel.vala:1049 msgid "found" msgstr "найдено" -#: src/Common/LinuxKernel.vala:1049 +#: src/Common/LinuxKernel.vala:1053 msgid "Uninstall: no uninstallable packages found" msgstr "" -#: src/Common/LinuxKernel.vala:1085 +#: src/Common/LinuxKernel.vala:1089 #, fuzzy msgid "is the highest installed version." msgstr "Удаление всех установленных версий, кроме самой высокой" -#: src/Common/LinuxKernel.vala:1098 +#: src/Common/LinuxKernel.vala:1102 msgid "Could not find running kernel in list" msgstr "Could not find running kernel in list" -#: src/Common/LinuxKernel.vala:1103 +#: src/Common/LinuxKernel.vala:1107 msgid "Could not find any kernels to uninstall" msgstr "Не удалось найти ядра для деинсталляции" -#: src/Common/LinuxKernel.vala:1111 +#: src/Common/LinuxKernel.vala:1115 msgid "The following kernels will be uninstalled" msgstr "Следующие ядра будут удалены" -#: src/Common/LinuxKernel.vala:1115 +#: src/Common/LinuxKernel.vala:1119 msgid "Continue ?" msgstr "Продолжить ?" -#: src/Common/LinuxKernel.vala:1137 src/Console/AppConsole.vala:215 +#: src/Common/LinuxKernel.vala:1141 src/Console/AppConsole.vala:211 msgid "Latest update" msgstr "Последнее обновление" -#: src/Common/LinuxKernel.vala:1148 src/Console/AppConsole.vala:222 +#: src/Common/LinuxKernel.vala:1152 src/Console/AppConsole.vala:218 msgid "Latest point update" msgstr "Последнее обновление пунктов" -#: src/Common/LinuxKernel.vala:1156 src/Console/AppConsole.vala:227 -#: src/Console/AppConsole.vala:242 +#: src/Common/LinuxKernel.vala:1160 src/Console/AppConsole.vala:223 +#: src/Console/AppConsole.vala:243 msgid "No updates found" msgstr "Обновлений не найдено" -#: src/Common/LinuxKernel.vala:1165 +#: src/Common/LinuxKernel.vala:1169 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Установить версию ядра %s ? (y/n): " -#: src/Common/Main.vala:345 +#: src/Common/Main.vala:340 msgid "Called from" msgstr "Вызван из" -#: src/Common/Main.vala:345 +#: src/Common/Main.vala:340 msgid "at logon" msgstr "при запуске" -#: src/Common/Main.vala:346 +#: src/Common/Main.vala:341 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" "Этот файл перезаписывается и выполняется снова при сохранении настроек в" -#: src/Common/Main.vala:378 +#: src/Common/Main.vala:373 msgid "Notifications are disabled" msgstr "Уведомления отключены" -#: src/Common/Package.vala:57 +#: src/Common/Package.vala:58 #, c-format msgid "File not found: %s" msgstr "Файл не найден: %s" -#: src/Console/AppConsole.vala:40 src/Gtk/AppGtk.vala:74 +#: src/Console/AppConsole.vala:39 src/Gtk/AppGtk.vala:77 msgid "Syntax" msgstr "Синтаксис" -#: src/Console/AppConsole.vala:42 +#: src/Console/AppConsole.vala:41 msgid "Commands" msgstr "Комманды" -#: src/Console/AppConsole.vala:44 +#: src/Console/AppConsole.vala:43 msgid "Check for kernel updates" msgstr "Проверить обновления ядра" -#: src/Console/AppConsole.vala:45 +#: src/Console/AppConsole.vala:44 msgid "Check for kernel updates and notify current user" msgstr "Проверить обновления ядра и уведомить текущего пользователя" -#: src/Console/AppConsole.vala:46 +#: src/Console/AppConsole.vala:45 #, fuzzy msgid "List available mainline kernels" msgstr "Список всех доступных основных ядер" -#: src/Console/AppConsole.vala:47 +#: src/Console/AppConsole.vala:46 msgid "List installed kernels" msgstr "Список установленных ядер" -#: src/Console/AppConsole.vala:48 +#: src/Console/AppConsole.vala:47 msgid "Install latest mainline kernel" msgstr "Установите последнюю версию основного ядра" -#: src/Console/AppConsole.vala:49 +#: src/Console/AppConsole.vala:48 #, fuzzy msgid "Install latest point update in the current major version" msgstr "Установить последнее обновление точек для текущей серии" -#: src/Console/AppConsole.vala:50 +#: src/Console/AppConsole.vala:49 #, fuzzy msgid "Install specified kernels" msgstr "Установить указанное ядро" -#: src/Console/AppConsole.vala:51 +#: src/Console/AppConsole.vala:50 #, fuzzy msgid "Uninstall specified kernels" msgstr "Установить указанное ядро" -#: src/Console/AppConsole.vala:52 src/Gtk/MainWindow.vala:324 +#: src/Console/AppConsole.vala:51 src/Gtk/MainWindow.vala:326 msgid "Uninstall all but the highest installed version" msgstr "Удаление всех установленных версий, кроме самой высокой" -#: src/Console/AppConsole.vala:53 +#: src/Console/AppConsole.vala:52 msgid "Download specified kernels" msgstr "Скачать указанные ядра" -#: src/Console/AppConsole.vala:54 +#: src/Console/AppConsole.vala:53 msgid "Delete cached info about available kernels" msgstr "Удаление кэшированной информации о доступных ядрах" -#: src/Console/AppConsole.vala:56 src/Gtk/AppGtk.vala:76 +#: src/Console/AppConsole.vala:55 src/Gtk/AppGtk.vala:79 msgid "Options" msgstr "Параметры" -#: src/Console/AppConsole.vala:58 +#: src/Console/AppConsole.vala:57 msgid "Include unstable and RC releases" msgstr "Включать нестабильные и релиз-кандидат релизы" -#: src/Console/AppConsole.vala:59 +#: src/Console/AppConsole.vala:58 msgid "Exclude unstable and RC releases" msgstr "Исключить нестабильные и релиз-кандидат релизы" -#: src/Console/AppConsole.vala:60 +#: src/Console/AppConsole.vala:59 msgid "Verbosity. Set to n if given, or increment." msgstr "" -#: src/Console/AppConsole.vala:61 +#: src/Console/AppConsole.vala:60 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "Предполагать \"Да\" для всех запросов (неинтерактивный режим)" -#: src/Console/AppConsole.vala:64 +#: src/Console/AppConsole.vala:63 #, fuzzy msgid "One or more version strings taken from the output of --list" msgstr "Строка версии, взятая из вывода --list" -#: src/Console/AppConsole.vala:65 +#: src/Console/AppConsole.vala:64 msgid "comma, pipe, or colon-seperated, or quoted space seperated" msgstr "" -#: src/Console/AppConsole.vala:66 +#: src/Console/AppConsole.vala:65 #, fuzzy msgid "Locked kernels and the currently running kernel are ignored" msgstr "Текущее работающее ядро всегда будет игнорироваться" -#: src/Console/AppConsole.vala:143 src/Console/AppConsole.vala:200 -#: src/Gtk/AppGtk.vala:108 +#: src/Console/AppConsole.vala:142 src/Console/AppConsole.vala:196 +#: src/Gtk/AppGtk.vala:111 msgid "Unknown option" msgstr "Неизвестный параметр" -#: src/Console/AppConsole.vala:236 +#: src/Console/AppConsole.vala:232 msgid "Notifications disabled in settings" msgstr "Уведомления отключены в настройках" -#: src/Console/AppConsole.vala:264 +#: src/Console/AppConsole.vala:265 #, c-format msgid "Kernel %s Available" msgstr "Доступно ядро %s" -#: src/Console/AppConsole.vala:268 src/Gtk/SettingsDialog.vala:163 +#: src/Console/AppConsole.vala:269 src/Gtk/SettingsDialog.vala:154 msgid "Show" msgstr "Показать" -#: src/Console/AppConsole.vala:269 src/Gtk/MainWindow.vala:296 +#: src/Console/AppConsole.vala:270 src/Gtk/MainWindow.vala:305 msgid "Install" msgstr "Установить" -#: src/Console/AppConsole.vala:272 +#: src/Console/AppConsole.vala:273 msgid "Previously notified" msgstr "Предварительно уведомлено" @@ -346,7 +346,7 @@ msgstr "Создатели" msgid "Back" msgstr "Назад" -#: src/Gtk/AboutWindow.vala:185 src/Gtk/TerminalWindow.vala:161 +#: src/Gtk/AboutWindow.vala:185 src/Gtk/TerminalWindow.vala:169 msgid "Close" msgstr "Закрыть" @@ -374,160 +374,164 @@ msgstr "Составители документации" msgid "Third Party Inclusions" msgstr "Включая сторонние инструменты" -#: src/Gtk/AppGtk.vala:74 +#: src/Gtk/AppGtk.vala:77 msgid "options" msgstr "параметры" -#: src/Gtk/AppGtk.vala:78 +#: src/Gtk/AppGtk.vala:81 msgid "Print debug information" msgstr "Распечатать отладочную информацию" -#: src/Gtk/AppGtk.vala:79 +#: src/Gtk/AppGtk.vala:82 msgid "Show all options" msgstr "Показать все параметры" -#: src/Gtk/MainWindow.vala:143 +#: src/Gtk/MainWindow.vala:152 msgid "Lock" msgstr "" -#: src/Gtk/MainWindow.vala:160 +#: src/Gtk/MainWindow.vala:169 msgid "Status" msgstr "Состояние" -#: src/Gtk/MainWindow.vala:172 +#: src/Gtk/MainWindow.vala:181 msgid "Notes" msgstr "Примечания" -#: src/Gtk/MainWindow.vala:304 +#: src/Gtk/MainWindow.vala:310 msgid "Uninstall" msgstr "Удалить" -#: src/Gtk/MainWindow.vala:313 +#: src/Gtk/MainWindow.vala:316 msgid "Changelog, build status, etc" msgstr "Список изменений, статус сборки и т.д" -#: src/Gtk/MainWindow.vala:323 +#: src/Gtk/MainWindow.vala:325 msgid "Uninstall Old" msgstr "Удалить старые" -#: src/Gtk/MainWindow.vala:329 +#: src/Gtk/MainWindow.vala:331 msgid "Reload" msgstr "Перезагрузить" -#: src/Gtk/MainWindow.vala:330 +#: src/Gtk/MainWindow.vala:332 msgid "Delete and reload all cached kernel info" msgstr "" -#: src/Gtk/MainWindow.vala:335 src/Gtk/SettingsDialog.vala:46 +#: src/Gtk/MainWindow.vala:337 src/Gtk/SettingsDialog.vala:43 msgid "Settings" msgstr "Настройки" -#: src/Gtk/MainWindow.vala:340 +#: src/Gtk/MainWindow.vala:342 msgid "About" msgstr "О программе" -#: src/Gtk/MainWindow.vala:345 +#: src/Gtk/MainWindow.vala:347 msgid "Exit" msgstr "Выход" -#: src/Gtk/MainWindow.vala:409 +#: src/Gtk/MainWindow.vala:428 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Программа обновления ядра для дистрибутивов на базе Ubuntu" -#: src/Gtk/MainWindow.vala:410 +#: src/Gtk/MainWindow.vala:429 msgid "Forked" msgstr "Форк" -#: src/Gtk/MainWindow.vala:410 +#: src/Gtk/MainWindow.vala:429 msgid "Original" msgstr "Оригинал" -#: src/Gtk/MainWindow.vala:439 +#: src/Gtk/MainWindow.vala:458 msgid "Updating kernels" msgstr "Обновление ядер" -#: src/Gtk/MainWindow.vala:507 +#: src/Gtk/MainWindow.vala:518 msgid "available" msgstr "доступно" -#: src/Gtk/MainWindow.vala:557 src/Gtk/MainWindow.vala:596 -#: src/Gtk/MainWindow.vala:630 +#: src/Gtk/MainWindow.vala:560 src/Gtk/MainWindow.vala:591 +#: src/Gtk/MainWindow.vala:616 msgid "DONE" msgstr "" -#: src/Gtk/SettingsDialog.vala:56 +#: src/Gtk/SettingsDialog.vala:53 msgid "Notification" msgstr "Уведомления" -#: src/Gtk/SettingsDialog.vala:63 +#: src/Gtk/SettingsDialog.vala:60 msgid "Notify if a major release is available" msgstr "Уведомлять, если доступно крупное обновление" -#: src/Gtk/SettingsDialog.vala:72 +#: src/Gtk/SettingsDialog.vala:68 msgid "Notify if a point release is available" msgstr "Уведомлять, если доступно небольшое обновление" -#: src/Gtk/SettingsDialog.vala:83 +#: src/Gtk/SettingsDialog.vala:76 msgid "Seconds interval enabled for debugging" msgstr "Интервал секунд включен для отладки" -#: src/Gtk/SettingsDialog.vala:106 +#: src/Gtk/SettingsDialog.vala:99 msgid "Check every" msgstr "Проверять каждые" -#: src/Gtk/SettingsDialog.vala:131 +#: src/Gtk/SettingsDialog.vala:122 msgid "Hours" msgstr "Часов" -#: src/Gtk/SettingsDialog.vala:133 +#: src/Gtk/SettingsDialog.vala:124 msgid "Days" msgstr "Дней" -#: src/Gtk/SettingsDialog.vala:135 +#: src/Gtk/SettingsDialog.vala:126 msgid "Weeks" msgstr "Недель" -#: src/Gtk/SettingsDialog.vala:138 +#: src/Gtk/SettingsDialog.vala:129 msgid "Seconds" msgstr "Секунд" -#: src/Gtk/SettingsDialog.vala:144 +#: src/Gtk/SettingsDialog.vala:135 msgid "Filters" msgstr "Фильтры" -#: src/Gtk/SettingsDialog.vala:152 +#: src/Gtk/SettingsDialog.vala:143 msgid "Hide unstable and RC releases" msgstr "Скрыть нестабильные и релиз-кандидат версии" -#: src/Gtk/SettingsDialog.vala:174 +#: src/Gtk/SettingsDialog.vala:165 msgid "previous major versions ( -1 = all )" msgstr "предыдущие основные версии ( -1 = все )" -#: src/Gtk/SettingsDialog.vala:178 +#: src/Gtk/SettingsDialog.vala:169 msgid "Network" msgstr "Сеть" -#: src/Gtk/SettingsDialog.vala:189 +#: src/Gtk/SettingsDialog.vala:180 msgid "Internet connection timeout in" msgstr "Таймаут подключения к Интернету в" -#: src/Gtk/SettingsDialog.vala:201 +#: src/Gtk/SettingsDialog.vala:192 msgid "seconds" msgstr "секунд" -#: src/Gtk/SettingsDialog.vala:208 +#: src/Gtk/SettingsDialog.vala:199 msgid "Max concurrent downloads" msgstr "Максимальное количество одновременных загрузок" -#: src/Gtk/SettingsDialog.vala:222 +#: src/Gtk/SettingsDialog.vala:212 msgid "Verify Checksums with the CHECKSUMS files" msgstr "Проверка контрольных сумм с помощью файлов CHECKSUMS" -#: src/Gtk/SettingsDialog.vala:230 +#: src/Gtk/SettingsDialog.vala:220 msgid "Proxy" msgstr "Доверенность" -#: src/Gtk/TerminalWindow.vala:151 +#: src/Gtk/SettingsDialog.vala:249 +msgid "Done" +msgstr "" + +#: src/Gtk/TerminalWindow.vala:159 msgid "Cancel" msgstr "Отмена" diff --git a/po/sv.po b/po/sv.po index 3b94cf71..5aaae3e2 100644 --- a/po/sv.po +++ b/po/sv.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-01 03:06-0400\n" +"POT-Creation-Date: 2023-06-03 06:21-0400\n" "PO-Revision-Date: 2018-01-13 16:56+0100\n" "Last-Translator: Åke Engelbrektson \n" "Language-Team:Swedish\n" @@ -13,327 +13,327 @@ msgstr "" "X-Generator: Poedit 1.8.7.1\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: src/Common/LinuxKernel.vala:105 +#: src/Common/LinuxKernel.vala:100 msgid "Distribution" msgstr "Distribution" -#: src/Common/LinuxKernel.vala:120 +#: src/Common/LinuxKernel.vala:115 msgid "Architecture" msgstr "Arkitektur" -#: src/Common/LinuxKernel.vala:135 +#: src/Common/LinuxKernel.vala:130 msgid "Running kernel" msgstr "Löpande kernel" -#: src/Common/LinuxKernel.vala:238 +#: src/Common/LinuxKernel.vala:230 msgid "loading cached" msgstr "laddar cachelagrat" -#: src/Common/LinuxKernel.vala:250 +#: src/Common/LinuxKernel.vala:242 msgid "queuing download" msgstr "köbildning nedladdning" -#: src/Common/LinuxKernel.vala:271 +#: src/Common/LinuxKernel.vala:263 msgid "Fetching individual kernel indexes" msgstr "Hämta enskilda kernelindex" -#: src/Common/LinuxKernel.vala:285 +#: src/Common/LinuxKernel.vala:277 msgid "loading downloaded" msgstr "laddar nedladdad" -#: src/Common/LinuxKernel.vala:320 +#: src/Common/LinuxKernel.vala:318 msgid "Updating from" msgstr "Uppdatering från" -#: src/Common/LinuxKernel.vala:328 +#: src/Common/LinuxKernel.vala:326 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:331 +#: src/Common/LinuxKernel.vala:329 msgid "FAILED" msgstr "MISSLYCKADES" -#: src/Common/LinuxKernel.vala:393 +#: src/Common/LinuxKernel.vala:392 msgid "Found installed" msgstr "Hittade installerat" -#: src/Common/LinuxKernel.vala:394 +#: src/Common/LinuxKernel.vala:393 msgid "locked" msgstr "" -#: src/Common/LinuxKernel.vala:476 src/Common/LinuxKernel.vala:999 -#: src/Common/LinuxKernel.vala:1089 +#: src/Common/LinuxKernel.vala:475 src/Common/LinuxKernel.vala:1003 +#: src/Common/LinuxKernel.vala:1093 msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:669 src/Gtk/MainWindow.vala:503 +#: src/Common/LinuxKernel.vala:668 src/Gtk/MainWindow.vala:514 msgid "Running" msgstr "Körs" -#: src/Common/LinuxKernel.vala:670 +#: src/Common/LinuxKernel.vala:669 msgid "Installed" msgstr "Installerad" -#: src/Common/LinuxKernel.vala:671 +#: src/Common/LinuxKernel.vala:670 msgid "Invalid" msgstr "Ogiltig" -#: src/Common/LinuxKernel.vala:756 +#: src/Common/LinuxKernel.vala:760 msgid "Packages Available" msgstr "Tillgängliga paket" -#: src/Common/LinuxKernel.vala:762 +#: src/Common/LinuxKernel.vala:766 msgid "Packages Installed" msgstr "Installerade paket" -#: src/Common/LinuxKernel.vala:787 src/lib/TeeJee.FileSystem.vala:103 +#: src/Common/LinuxKernel.vala:791 src/lib/TeeJee.FileSystem.vala:99 msgid "File not found" msgstr "Filen kan inte hittas" -#: src/Common/LinuxKernel.vala:881 +#: src/Common/LinuxKernel.vala:885 msgid "Available Kernels" msgstr "Tillgängliga kärnor" -#: src/Common/LinuxKernel.vala:916 src/Gtk/MainWindow.vala:119 +#: src/Common/LinuxKernel.vala:920 src/Gtk/MainWindow.vala:128 msgid "Kernel" msgstr "Kärna" -#: src/Common/LinuxKernel.vala:916 +#: src/Common/LinuxKernel.vala:920 #, fuzzy msgid "not found" msgstr "Filen kan inte hittas" -#: src/Common/LinuxKernel.vala:923 +#: src/Common/LinuxKernel.vala:927 #, fuzzy msgid "Download: no downloadable kernels specified" msgstr "Kommandot har inte angetts" -#: src/Common/LinuxKernel.vala:943 +#: src/Common/LinuxKernel.vala:947 msgid "enabled" msgstr "aktiverat" -#: src/Common/LinuxKernel.vala:967 +#: src/Common/LinuxKernel.vala:971 msgid "Downloading" msgstr "Ladda ner" -#: src/Common/LinuxKernel.vala:985 +#: src/Common/LinuxKernel.vala:989 #, fuzzy msgid "Installing selected kernels" msgstr "Avinstallera valda kärnor" -#: src/Common/LinuxKernel.vala:991 src/Common/LinuxKernel.vala:1029 +#: src/Common/LinuxKernel.vala:995 src/Common/LinuxKernel.vala:1033 #, fuzzy msgid "Requested" msgstr "begärd" -#: src/Common/LinuxKernel.vala:994 +#: src/Common/LinuxKernel.vala:998 msgid "is already installed." msgstr "är redan installerat." -#: src/Common/LinuxKernel.vala:1004 +#: src/Common/LinuxKernel.vala:1008 msgid "download failed." msgstr "" -#: src/Common/LinuxKernel.vala:1012 +#: src/Common/LinuxKernel.vala:1016 #, fuzzy msgid "Install: no installable kernels secified" msgstr "Kommandot har inte angetts" -#: src/Common/LinuxKernel.vala:1025 +#: src/Common/LinuxKernel.vala:1029 msgid "Uninstalling selected kernels" msgstr "Avinstallera valda kärnor" -#: src/Common/LinuxKernel.vala:1032 +#: src/Common/LinuxKernel.vala:1036 #, fuzzy msgid "Not uninstalling the currently running kernel" msgstr "Avinstallera inte den kärna som körs, för närvarande" -#: src/Common/LinuxKernel.vala:1037 +#: src/Common/LinuxKernel.vala:1041 msgid "is locked" msgstr "" -#: src/Common/LinuxKernel.vala:1045 +#: src/Common/LinuxKernel.vala:1049 msgid "found" msgstr "grunda" -#: src/Common/LinuxKernel.vala:1049 +#: src/Common/LinuxKernel.vala:1053 msgid "Uninstall: no uninstallable packages found" msgstr "" -#: src/Common/LinuxKernel.vala:1085 +#: src/Common/LinuxKernel.vala:1089 #, fuzzy msgid "is the highest installed version." msgstr "Avinstallera alla utom den högsta installerade versionen" -#: src/Common/LinuxKernel.vala:1098 +#: src/Common/LinuxKernel.vala:1102 msgid "Could not find running kernel in list" msgstr "Det gick inte att hitta kernel som körs i listan" -#: src/Common/LinuxKernel.vala:1103 +#: src/Common/LinuxKernel.vala:1107 msgid "Could not find any kernels to uninstall" msgstr "Det gick inte att hitta några kärnor att avinstallera" -#: src/Common/LinuxKernel.vala:1111 +#: src/Common/LinuxKernel.vala:1115 msgid "The following kernels will be uninstalled" msgstr "Följande kärnor kommer att avinstalleras" -#: src/Common/LinuxKernel.vala:1115 +#: src/Common/LinuxKernel.vala:1119 msgid "Continue ?" msgstr "Fortsätta?" -#: src/Common/LinuxKernel.vala:1137 src/Console/AppConsole.vala:215 +#: src/Common/LinuxKernel.vala:1141 src/Console/AppConsole.vala:211 msgid "Latest update" msgstr "Senaste uppdatering" -#: src/Common/LinuxKernel.vala:1148 src/Console/AppConsole.vala:222 +#: src/Common/LinuxKernel.vala:1152 src/Console/AppConsole.vala:218 msgid "Latest point update" msgstr "Senaste punktuppdatering" -#: src/Common/LinuxKernel.vala:1156 src/Console/AppConsole.vala:227 -#: src/Console/AppConsole.vala:242 +#: src/Common/LinuxKernel.vala:1160 src/Console/AppConsole.vala:223 +#: src/Console/AppConsole.vala:243 msgid "No updates found" msgstr "Inga uppdateringar hittades" -#: src/Common/LinuxKernel.vala:1165 +#: src/Common/LinuxKernel.vala:1169 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Installera kärnversion %s ? (j/n):" -#: src/Common/Main.vala:345 +#: src/Common/Main.vala:340 msgid "Called from" msgstr "Ringde från" -#: src/Common/Main.vala:345 +#: src/Common/Main.vala:340 msgid "at logon" msgstr "vid start" -#: src/Common/Main.vala:346 +#: src/Common/Main.vala:341 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "Den här filen skrivs över och körs igen när inställningar sparas i" -#: src/Common/Main.vala:378 +#: src/Common/Main.vala:373 msgid "Notifications are disabled" msgstr "Meddelanden är inaktiverade" -#: src/Common/Package.vala:57 +#: src/Common/Package.vala:58 #, c-format msgid "File not found: %s" msgstr "Filen hittades inte: %s" -#: src/Console/AppConsole.vala:40 src/Gtk/AppGtk.vala:74 +#: src/Console/AppConsole.vala:39 src/Gtk/AppGtk.vala:77 msgid "Syntax" msgstr "Syntax" -#: src/Console/AppConsole.vala:42 +#: src/Console/AppConsole.vala:41 msgid "Commands" msgstr "Kommandon" -#: src/Console/AppConsole.vala:44 +#: src/Console/AppConsole.vala:43 msgid "Check for kernel updates" msgstr "Sök efter kärnuppdateringar" -#: src/Console/AppConsole.vala:45 +#: src/Console/AppConsole.vala:44 msgid "Check for kernel updates and notify current user" msgstr "Sök efter kärnuppdateringar och meddela aktuell användare" -#: src/Console/AppConsole.vala:46 +#: src/Console/AppConsole.vala:45 #, fuzzy msgid "List available mainline kernels" msgstr "Lista alla tillgängliga kärnor" -#: src/Console/AppConsole.vala:47 +#: src/Console/AppConsole.vala:46 msgid "List installed kernels" msgstr "Lista installerade kärnor" -#: src/Console/AppConsole.vala:48 +#: src/Console/AppConsole.vala:47 msgid "Install latest mainline kernel" msgstr "Installera senaste mainline-kärnan" -#: src/Console/AppConsole.vala:49 +#: src/Console/AppConsole.vala:48 #, fuzzy msgid "Install latest point update in the current major version" msgstr "Installera senaste punktuppdateringen för aktuella serier" -#: src/Console/AppConsole.vala:50 +#: src/Console/AppConsole.vala:49 #, fuzzy msgid "Install specified kernels" msgstr "Avinstallera angiven kärna" -#: src/Console/AppConsole.vala:51 +#: src/Console/AppConsole.vala:50 #, fuzzy msgid "Uninstall specified kernels" msgstr "Avinstallera angiven kärna" -#: src/Console/AppConsole.vala:52 src/Gtk/MainWindow.vala:324 +#: src/Console/AppConsole.vala:51 src/Gtk/MainWindow.vala:326 msgid "Uninstall all but the highest installed version" msgstr "Avinstallera alla utom den högsta installerade versionen" -#: src/Console/AppConsole.vala:53 +#: src/Console/AppConsole.vala:52 msgid "Download specified kernels" msgstr "Ladda ner angivna kärnor" -#: src/Console/AppConsole.vala:54 +#: src/Console/AppConsole.vala:53 msgid "Delete cached info about available kernels" msgstr "Ta bort cachelagrad information om tillgängliga kärnor" -#: src/Console/AppConsole.vala:56 src/Gtk/AppGtk.vala:76 +#: src/Console/AppConsole.vala:55 src/Gtk/AppGtk.vala:79 msgid "Options" msgstr "Alternativ" -#: src/Console/AppConsole.vala:58 +#: src/Console/AppConsole.vala:57 msgid "Include unstable and RC releases" msgstr "Inkludera instabila utgåvor och RC-utgåvor" -#: src/Console/AppConsole.vala:59 +#: src/Console/AppConsole.vala:58 msgid "Exclude unstable and RC releases" msgstr "Exkludera instabila utgåvor och RC-utgåvor" -#: src/Console/AppConsole.vala:60 +#: src/Console/AppConsole.vala:59 msgid "Verbosity. Set to n if given, or increment." msgstr "" -#: src/Console/AppConsole.vala:61 +#: src/Console/AppConsole.vala:60 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "Antag Ja för alla prompter (icke-interaktivt läge)" -#: src/Console/AppConsole.vala:64 +#: src/Console/AppConsole.vala:63 #, fuzzy msgid "One or more version strings taken from the output of --list" msgstr "En versionssträng som hämtas från utdata från --list" -#: src/Console/AppConsole.vala:65 +#: src/Console/AppConsole.vala:64 msgid "comma, pipe, or colon-seperated, or quoted space seperated" msgstr "" -#: src/Console/AppConsole.vala:66 +#: src/Console/AppConsole.vala:65 #, fuzzy msgid "Locked kernels and the currently running kernel are ignored" msgstr "Den kärna som för närvarande körs ignoreras alltid" -#: src/Console/AppConsole.vala:143 src/Console/AppConsole.vala:200 -#: src/Gtk/AppGtk.vala:108 +#: src/Console/AppConsole.vala:142 src/Console/AppConsole.vala:196 +#: src/Gtk/AppGtk.vala:111 msgid "Unknown option" msgstr "Okänt alternativ" -#: src/Console/AppConsole.vala:236 +#: src/Console/AppConsole.vala:232 msgid "Notifications disabled in settings" msgstr "Meddelanden inaktiverade i inställningarna" -#: src/Console/AppConsole.vala:264 +#: src/Console/AppConsole.vala:265 #, c-format msgid "Kernel %s Available" msgstr "Kernel %s tillgängliga" -#: src/Console/AppConsole.vala:268 src/Gtk/SettingsDialog.vala:163 +#: src/Console/AppConsole.vala:269 src/Gtk/SettingsDialog.vala:154 msgid "Show" msgstr "Visa" -#: src/Console/AppConsole.vala:269 src/Gtk/MainWindow.vala:296 +#: src/Console/AppConsole.vala:270 src/Gtk/MainWindow.vala:305 msgid "Install" msgstr "Installera" -#: src/Console/AppConsole.vala:272 +#: src/Console/AppConsole.vala:273 msgid "Previously notified" msgstr "Tidigare anmält" @@ -345,7 +345,7 @@ msgstr "Tack" msgid "Back" msgstr "Tillbaka" -#: src/Gtk/AboutWindow.vala:185 src/Gtk/TerminalWindow.vala:161 +#: src/Gtk/AboutWindow.vala:185 src/Gtk/TerminalWindow.vala:169 msgid "Close" msgstr "Stäng" @@ -373,160 +373,164 @@ msgstr "Dokumentalister" msgid "Third Party Inclusions" msgstr "Tredjepartsverktyg" -#: src/Gtk/AppGtk.vala:74 +#: src/Gtk/AppGtk.vala:77 msgid "options" msgstr "alternativ" -#: src/Gtk/AppGtk.vala:78 +#: src/Gtk/AppGtk.vala:81 msgid "Print debug information" msgstr "Skriv ut felsökningsinformation" -#: src/Gtk/AppGtk.vala:79 +#: src/Gtk/AppGtk.vala:82 msgid "Show all options" msgstr "Visa alla alternativ" -#: src/Gtk/MainWindow.vala:143 +#: src/Gtk/MainWindow.vala:152 msgid "Lock" msgstr "" -#: src/Gtk/MainWindow.vala:160 +#: src/Gtk/MainWindow.vala:169 msgid "Status" msgstr "Status" -#: src/Gtk/MainWindow.vala:172 +#: src/Gtk/MainWindow.vala:181 msgid "Notes" msgstr "Anteckningar" -#: src/Gtk/MainWindow.vala:304 +#: src/Gtk/MainWindow.vala:310 msgid "Uninstall" msgstr "Avinstallera" -#: src/Gtk/MainWindow.vala:313 +#: src/Gtk/MainWindow.vala:316 msgid "Changelog, build status, etc" msgstr "" -#: src/Gtk/MainWindow.vala:323 +#: src/Gtk/MainWindow.vala:325 msgid "Uninstall Old" msgstr "Avinstallera Gamla" -#: src/Gtk/MainWindow.vala:329 +#: src/Gtk/MainWindow.vala:331 msgid "Reload" msgstr "Reload" -#: src/Gtk/MainWindow.vala:330 +#: src/Gtk/MainWindow.vala:332 msgid "Delete and reload all cached kernel info" msgstr "" -#: src/Gtk/MainWindow.vala:335 src/Gtk/SettingsDialog.vala:46 +#: src/Gtk/MainWindow.vala:337 src/Gtk/SettingsDialog.vala:43 msgid "Settings" msgstr "Inställningar" -#: src/Gtk/MainWindow.vala:340 +#: src/Gtk/MainWindow.vala:342 msgid "About" msgstr "Om" -#: src/Gtk/MainWindow.vala:345 +#: src/Gtk/MainWindow.vala:347 msgid "Exit" msgstr "Utgång" -#: src/Gtk/MainWindow.vala:409 +#: src/Gtk/MainWindow.vala:428 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Kärnuppgraderingsverktyg för Ubuntu-baserade distributioner" -#: src/Gtk/MainWindow.vala:410 +#: src/Gtk/MainWindow.vala:429 msgid "Forked" msgstr "Kluven" -#: src/Gtk/MainWindow.vala:410 +#: src/Gtk/MainWindow.vala:429 msgid "Original" msgstr "Original" -#: src/Gtk/MainWindow.vala:439 +#: src/Gtk/MainWindow.vala:458 msgid "Updating kernels" msgstr "Uppdatera kärnor" -#: src/Gtk/MainWindow.vala:507 +#: src/Gtk/MainWindow.vala:518 msgid "available" msgstr "tillgänglig" -#: src/Gtk/MainWindow.vala:557 src/Gtk/MainWindow.vala:596 -#: src/Gtk/MainWindow.vala:630 +#: src/Gtk/MainWindow.vala:560 src/Gtk/MainWindow.vala:591 +#: src/Gtk/MainWindow.vala:616 msgid "DONE" msgstr "" -#: src/Gtk/SettingsDialog.vala:56 +#: src/Gtk/SettingsDialog.vala:53 msgid "Notification" msgstr "Avisering" -#: src/Gtk/SettingsDialog.vala:63 +#: src/Gtk/SettingsDialog.vala:60 msgid "Notify if a major release is available" msgstr "Meddela om en större version är tillgänglig" -#: src/Gtk/SettingsDialog.vala:72 +#: src/Gtk/SettingsDialog.vala:68 msgid "Notify if a point release is available" msgstr "Meddela om en punktrelease är tillgänglig" -#: src/Gtk/SettingsDialog.vala:83 +#: src/Gtk/SettingsDialog.vala:76 msgid "Seconds interval enabled for debugging" msgstr "Sekundintervall aktiverat för felsökning" -#: src/Gtk/SettingsDialog.vala:106 +#: src/Gtk/SettingsDialog.vala:99 msgid "Check every" msgstr "Kontrollera varje" -#: src/Gtk/SettingsDialog.vala:131 +#: src/Gtk/SettingsDialog.vala:122 msgid "Hours" msgstr "timmar" -#: src/Gtk/SettingsDialog.vala:133 +#: src/Gtk/SettingsDialog.vala:124 msgid "Days" msgstr "dagar" -#: src/Gtk/SettingsDialog.vala:135 +#: src/Gtk/SettingsDialog.vala:126 msgid "Weeks" msgstr "veckor" -#: src/Gtk/SettingsDialog.vala:138 +#: src/Gtk/SettingsDialog.vala:129 msgid "Seconds" msgstr "sekunder" -#: src/Gtk/SettingsDialog.vala:144 +#: src/Gtk/SettingsDialog.vala:135 msgid "Filters" msgstr "Filter" -#: src/Gtk/SettingsDialog.vala:152 +#: src/Gtk/SettingsDialog.vala:143 msgid "Hide unstable and RC releases" msgstr "Dölj instabila- och RC-publiceringar" -#: src/Gtk/SettingsDialog.vala:174 +#: src/Gtk/SettingsDialog.vala:165 msgid "previous major versions ( -1 = all )" msgstr "tidigare huvudversioner ( -1 = alla )" -#: src/Gtk/SettingsDialog.vala:178 +#: src/Gtk/SettingsDialog.vala:169 msgid "Network" msgstr "Nätverk" -#: src/Gtk/SettingsDialog.vala:189 +#: src/Gtk/SettingsDialog.vala:180 msgid "Internet connection timeout in" msgstr "Internetuppkopplingen är inte aktiv" -#: src/Gtk/SettingsDialog.vala:201 +#: src/Gtk/SettingsDialog.vala:192 msgid "seconds" msgstr "sekunder" -#: src/Gtk/SettingsDialog.vala:208 +#: src/Gtk/SettingsDialog.vala:199 msgid "Max concurrent downloads" msgstr "Max antal nedladdningar av konkurrenter" -#: src/Gtk/SettingsDialog.vala:222 +#: src/Gtk/SettingsDialog.vala:212 msgid "Verify Checksums with the CHECKSUMS files" msgstr "Verifiera kontrollsummor med CHECKSUMS-filerna" -#: src/Gtk/SettingsDialog.vala:230 +#: src/Gtk/SettingsDialog.vala:220 msgid "Proxy" msgstr "Proxyserver" -#: src/Gtk/TerminalWindow.vala:151 +#: src/Gtk/SettingsDialog.vala:249 +msgid "Done" +msgstr "" + +#: src/Gtk/TerminalWindow.vala:159 msgid "Cancel" msgstr "Avbryt" diff --git a/po/tr.po b/po/tr.po index 8f614e0a..a93e7830 100644 --- a/po/tr.po +++ b/po/tr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-01 03:06-0400\n" +"POT-Creation-Date: 2023-06-03 06:21-0400\n" "PO-Revision-Date: 2022-08-06 16:48+0300\n" "Last-Translator: Sabri Ünal \n" "Language-Team: Turkish\n" @@ -13,329 +13,329 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Poedit 3.1.1\n" -#: src/Common/LinuxKernel.vala:105 +#: src/Common/LinuxKernel.vala:100 msgid "Distribution" msgstr "Dağıtım" -#: src/Common/LinuxKernel.vala:120 +#: src/Common/LinuxKernel.vala:115 msgid "Architecture" msgstr "Sistem mimarisi" -#: src/Common/LinuxKernel.vala:135 +#: src/Common/LinuxKernel.vala:130 msgid "Running kernel" msgstr "Çalışan çekirdek" -#: src/Common/LinuxKernel.vala:238 +#: src/Common/LinuxKernel.vala:230 msgid "loading cached" msgstr "önbelleğe alınmış yükleme" -#: src/Common/LinuxKernel.vala:250 +#: src/Common/LinuxKernel.vala:242 msgid "queuing download" msgstr "kuyruğa alma indirme" -#: src/Common/LinuxKernel.vala:271 +#: src/Common/LinuxKernel.vala:263 msgid "Fetching individual kernel indexes" msgstr "Tek tek çekirdek dizinlerini alma" -#: src/Common/LinuxKernel.vala:285 +#: src/Common/LinuxKernel.vala:277 msgid "loading downloaded" msgstr "indirilen yükleniyor" -#: src/Common/LinuxKernel.vala:320 +#: src/Common/LinuxKernel.vala:318 msgid "Updating from" msgstr "Şuradan güncelleniyor" -#: src/Common/LinuxKernel.vala:328 +#: src/Common/LinuxKernel.vala:326 msgid "OK" msgstr "Tamam" -#: src/Common/LinuxKernel.vala:331 +#: src/Common/LinuxKernel.vala:329 msgid "FAILED" msgstr "BAŞARISIZ" -#: src/Common/LinuxKernel.vala:393 +#: src/Common/LinuxKernel.vala:392 msgid "Found installed" msgstr "Yüklü bulundu" -#: src/Common/LinuxKernel.vala:394 +#: src/Common/LinuxKernel.vala:393 msgid "locked" msgstr "" -#: src/Common/LinuxKernel.vala:476 src/Common/LinuxKernel.vala:999 -#: src/Common/LinuxKernel.vala:1089 +#: src/Common/LinuxKernel.vala:475 src/Common/LinuxKernel.vala:1003 +#: src/Common/LinuxKernel.vala:1093 msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:669 src/Gtk/MainWindow.vala:503 +#: src/Common/LinuxKernel.vala:668 src/Gtk/MainWindow.vala:514 msgid "Running" msgstr "Çalışıyor" -#: src/Common/LinuxKernel.vala:670 +#: src/Common/LinuxKernel.vala:669 msgid "Installed" msgstr "Kurulu" -#: src/Common/LinuxKernel.vala:671 +#: src/Common/LinuxKernel.vala:670 msgid "Invalid" msgstr "Geçersiz" -#: src/Common/LinuxKernel.vala:756 +#: src/Common/LinuxKernel.vala:760 msgid "Packages Available" msgstr "Mevcut Paketler" -#: src/Common/LinuxKernel.vala:762 +#: src/Common/LinuxKernel.vala:766 msgid "Packages Installed" msgstr "Kurulu Paketler" -#: src/Common/LinuxKernel.vala:787 src/lib/TeeJee.FileSystem.vala:103 +#: src/Common/LinuxKernel.vala:791 src/lib/TeeJee.FileSystem.vala:99 msgid "File not found" msgstr "Dosya bulunamadı" -#: src/Common/LinuxKernel.vala:881 +#: src/Common/LinuxKernel.vala:885 msgid "Available Kernels" msgstr "Mevcut Çekirdekler" -#: src/Common/LinuxKernel.vala:916 src/Gtk/MainWindow.vala:119 +#: src/Common/LinuxKernel.vala:920 src/Gtk/MainWindow.vala:128 msgid "Kernel" msgstr "Çekirdek" -#: src/Common/LinuxKernel.vala:916 +#: src/Common/LinuxKernel.vala:920 #, fuzzy msgid "not found" msgstr "Dosya bulunamadı" -#: src/Common/LinuxKernel.vala:923 +#: src/Common/LinuxKernel.vala:927 #, fuzzy msgid "Download: no downloadable kernels specified" msgstr "Komut belirtilmedi" -#: src/Common/LinuxKernel.vala:943 +#: src/Common/LinuxKernel.vala:947 msgid "enabled" msgstr "etkin" -#: src/Common/LinuxKernel.vala:967 +#: src/Common/LinuxKernel.vala:971 msgid "Downloading" msgstr "Indiriyor" -#: src/Common/LinuxKernel.vala:985 +#: src/Common/LinuxKernel.vala:989 #, fuzzy msgid "Installing selected kernels" msgstr "Seçili çekirdekleri kaldırma" -#: src/Common/LinuxKernel.vala:991 src/Common/LinuxKernel.vala:1029 +#: src/Common/LinuxKernel.vala:995 src/Common/LinuxKernel.vala:1033 #, fuzzy msgid "Requested" msgstr "istenen" -#: src/Common/LinuxKernel.vala:994 +#: src/Common/LinuxKernel.vala:998 msgid "is already installed." msgstr "zaten yüklü." -#: src/Common/LinuxKernel.vala:1004 +#: src/Common/LinuxKernel.vala:1008 msgid "download failed." msgstr "" -#: src/Common/LinuxKernel.vala:1012 +#: src/Common/LinuxKernel.vala:1016 #, fuzzy msgid "Install: no installable kernels secified" msgstr "Komut belirtilmedi" -#: src/Common/LinuxKernel.vala:1025 +#: src/Common/LinuxKernel.vala:1029 msgid "Uninstalling selected kernels" msgstr "Seçili çekirdekleri kaldırma" -#: src/Common/LinuxKernel.vala:1032 +#: src/Common/LinuxKernel.vala:1036 #, fuzzy msgid "Not uninstalling the currently running kernel" msgstr "çalışmakta olan çekirdeğin kaldırılmaması" -#: src/Common/LinuxKernel.vala:1037 +#: src/Common/LinuxKernel.vala:1041 msgid "is locked" msgstr "" -#: src/Common/LinuxKernel.vala:1045 +#: src/Common/LinuxKernel.vala:1049 msgid "found" msgstr "kurmak" -#: src/Common/LinuxKernel.vala:1049 +#: src/Common/LinuxKernel.vala:1053 msgid "Uninstall: no uninstallable packages found" msgstr "" -#: src/Common/LinuxKernel.vala:1085 +#: src/Common/LinuxKernel.vala:1089 #, fuzzy msgid "is the highest installed version." msgstr "En yüksek yüklü sürüm dışındaki tüm sürümleri kaldırın" -#: src/Common/LinuxKernel.vala:1098 +#: src/Common/LinuxKernel.vala:1102 msgid "Could not find running kernel in list" msgstr "Listede çalışan çekirdek bulunamadı" -#: src/Common/LinuxKernel.vala:1103 +#: src/Common/LinuxKernel.vala:1107 msgid "Could not find any kernels to uninstall" msgstr "Kaldırılacak çekirdek bulunamadı" -#: src/Common/LinuxKernel.vala:1111 +#: src/Common/LinuxKernel.vala:1115 msgid "The following kernels will be uninstalled" msgstr "Aşağıdaki çekirdekler kaldırılacaktır" -#: src/Common/LinuxKernel.vala:1115 +#: src/Common/LinuxKernel.vala:1119 msgid "Continue ?" msgstr "Devam edilsin mi?" -#: src/Common/LinuxKernel.vala:1137 src/Console/AppConsole.vala:215 +#: src/Common/LinuxKernel.vala:1141 src/Console/AppConsole.vala:211 msgid "Latest update" msgstr "Son güncelleme" # Point burada point release anlamında kullanılıyor. Örneğin 5.10.x sayısının en sonundaki x rakamı point release/nokta sürüm oluyor. -#: src/Common/LinuxKernel.vala:1148 src/Console/AppConsole.vala:222 +#: src/Common/LinuxKernel.vala:1152 src/Console/AppConsole.vala:218 msgid "Latest point update" msgstr "Son nokta güncellemesi" -#: src/Common/LinuxKernel.vala:1156 src/Console/AppConsole.vala:227 -#: src/Console/AppConsole.vala:242 +#: src/Common/LinuxKernel.vala:1160 src/Console/AppConsole.vala:223 +#: src/Console/AppConsole.vala:243 msgid "No updates found" msgstr "Güncelleme bulunamadı" -#: src/Common/LinuxKernel.vala:1165 +#: src/Common/LinuxKernel.vala:1169 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Linux Çekirdek Sürümü %s Kurulsun mu? (e/h): " -#: src/Common/Main.vala:345 +#: src/Common/Main.vala:340 msgid "Called from" msgstr "Çağrı konumu" -#: src/Common/Main.vala:345 +#: src/Common/Main.vala:340 msgid "at logon" msgstr "başlangıçta" -#: src/Common/Main.vala:346 +#: src/Common/Main.vala:341 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" "Bu dosyanın üzerine yazılır ve ayarlar her kaydedildiğinde yeniden yürütülür" -#: src/Common/Main.vala:378 +#: src/Common/Main.vala:373 msgid "Notifications are disabled" msgstr "Bildirimler devre dışı bırakılmış" -#: src/Common/Package.vala:57 +#: src/Common/Package.vala:58 #, c-format msgid "File not found: %s" msgstr "Dosya bulunamadı: %s" -#: src/Console/AppConsole.vala:40 src/Gtk/AppGtk.vala:74 +#: src/Console/AppConsole.vala:39 src/Gtk/AppGtk.vala:77 msgid "Syntax" msgstr "Sözdizimi" -#: src/Console/AppConsole.vala:42 +#: src/Console/AppConsole.vala:41 msgid "Commands" msgstr "Komutlar" -#: src/Console/AppConsole.vala:44 +#: src/Console/AppConsole.vala:43 msgid "Check for kernel updates" msgstr "Çekirdek güncellemelerini kontrol et" -#: src/Console/AppConsole.vala:45 +#: src/Console/AppConsole.vala:44 msgid "Check for kernel updates and notify current user" msgstr "Çekirdek güncellemelerini kontrol et ve mevcut kullanıcıyı uyar" -#: src/Console/AppConsole.vala:46 +#: src/Console/AppConsole.vala:45 #, fuzzy msgid "List available mainline kernels" msgstr "Tüm mainline çekirdeklerini listele" -#: src/Console/AppConsole.vala:47 +#: src/Console/AppConsole.vala:46 msgid "List installed kernels" msgstr "Kurulu çekirdekleri listele" -#: src/Console/AppConsole.vala:48 +#: src/Console/AppConsole.vala:47 msgid "Install latest mainline kernel" msgstr "En son mainline çekirdeğini kur" -#: src/Console/AppConsole.vala:49 +#: src/Console/AppConsole.vala:48 #, fuzzy msgid "Install latest point update in the current major version" msgstr "Mevcut çekirdek serisi için en son nokta güncellemesini kur" -#: src/Console/AppConsole.vala:50 +#: src/Console/AppConsole.vala:49 #, fuzzy msgid "Install specified kernels" msgstr "Belirtilen çekirdeğini kaldır" -#: src/Console/AppConsole.vala:51 +#: src/Console/AppConsole.vala:50 #, fuzzy msgid "Uninstall specified kernels" msgstr "Belirtilen çekirdeğini kaldır" -#: src/Console/AppConsole.vala:52 src/Gtk/MainWindow.vala:324 +#: src/Console/AppConsole.vala:51 src/Gtk/MainWindow.vala:326 msgid "Uninstall all but the highest installed version" msgstr "En yüksek yüklü sürüm dışındaki tüm sürümleri kaldırın" -#: src/Console/AppConsole.vala:53 +#: src/Console/AppConsole.vala:52 msgid "Download specified kernels" msgstr "Belirtilen çekirdekleri indir" -#: src/Console/AppConsole.vala:54 +#: src/Console/AppConsole.vala:53 msgid "Delete cached info about available kernels" msgstr "Kullanılabilir çekirdekler hakkında önbelleğe alınmış bilgileri silme" -#: src/Console/AppConsole.vala:56 src/Gtk/AppGtk.vala:76 +#: src/Console/AppConsole.vala:55 src/Gtk/AppGtk.vala:79 msgid "Options" msgstr "Seçenekler" -#: src/Console/AppConsole.vala:58 +#: src/Console/AppConsole.vala:57 msgid "Include unstable and RC releases" msgstr "Kararsız ve RC sürümleri dahil et" -#: src/Console/AppConsole.vala:59 +#: src/Console/AppConsole.vala:58 msgid "Exclude unstable and RC releases" msgstr "Kararsız ve RC sürümlerini hariç tutma" -#: src/Console/AppConsole.vala:60 +#: src/Console/AppConsole.vala:59 msgid "Verbosity. Set to n if given, or increment." msgstr "" -#: src/Console/AppConsole.vala:61 +#: src/Console/AppConsole.vala:60 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "Tüm istemler için Evet'i kabul edin (etkileşimsiz kip)" -#: src/Console/AppConsole.vala:64 +#: src/Console/AppConsole.vala:63 #, fuzzy msgid "One or more version strings taken from the output of --list" msgstr "--list çıktısından alınan sürüm dizgesi" -#: src/Console/AppConsole.vala:65 +#: src/Console/AppConsole.vala:64 msgid "comma, pipe, or colon-seperated, or quoted space seperated" msgstr "" -#: src/Console/AppConsole.vala:66 +#: src/Console/AppConsole.vala:65 #, fuzzy msgid "Locked kernels and the currently running kernel are ignored" msgstr "Şu anda çalışan çekirdek her zaman yoksayılır" -#: src/Console/AppConsole.vala:143 src/Console/AppConsole.vala:200 -#: src/Gtk/AppGtk.vala:108 +#: src/Console/AppConsole.vala:142 src/Console/AppConsole.vala:196 +#: src/Gtk/AppGtk.vala:111 msgid "Unknown option" msgstr "Bilinmeyen seçenek" -#: src/Console/AppConsole.vala:236 +#: src/Console/AppConsole.vala:232 msgid "Notifications disabled in settings" msgstr "Ayarlarda devre dışı bırakılan bildirimler" -#: src/Console/AppConsole.vala:264 +#: src/Console/AppConsole.vala:265 #, c-format msgid "Kernel %s Available" msgstr "Çekirdek %s Kullanılabilir" -#: src/Console/AppConsole.vala:268 src/Gtk/SettingsDialog.vala:163 +#: src/Console/AppConsole.vala:269 src/Gtk/SettingsDialog.vala:154 msgid "Show" msgstr "Göster" -#: src/Console/AppConsole.vala:269 src/Gtk/MainWindow.vala:296 +#: src/Console/AppConsole.vala:270 src/Gtk/MainWindow.vala:305 msgid "Install" msgstr "Kur" -#: src/Console/AppConsole.vala:272 +#: src/Console/AppConsole.vala:273 msgid "Previously notified" msgstr "Daha önce bildirilmiş" @@ -347,7 +347,7 @@ msgstr "Hazırlayanlar" msgid "Back" msgstr "Geri" -#: src/Gtk/AboutWindow.vala:185 src/Gtk/TerminalWindow.vala:161 +#: src/Gtk/AboutWindow.vala:185 src/Gtk/TerminalWindow.vala:169 msgid "Close" msgstr "Kapat" @@ -375,160 +375,164 @@ msgstr "Belgelendirenler" msgid "Third Party Inclusions" msgstr "Üçüncü Taraf Eklemeler" -#: src/Gtk/AppGtk.vala:74 +#: src/Gtk/AppGtk.vala:77 msgid "options" msgstr "seçenekler" -#: src/Gtk/AppGtk.vala:78 +#: src/Gtk/AppGtk.vala:81 msgid "Print debug information" msgstr "Hata ayıklama bilgisini yazdır" -#: src/Gtk/AppGtk.vala:79 +#: src/Gtk/AppGtk.vala:82 msgid "Show all options" msgstr "Tüm seçenekleri göster" -#: src/Gtk/MainWindow.vala:143 +#: src/Gtk/MainWindow.vala:152 msgid "Lock" msgstr "" -#: src/Gtk/MainWindow.vala:160 +#: src/Gtk/MainWindow.vala:169 msgid "Status" msgstr "Durum" -#: src/Gtk/MainWindow.vala:172 +#: src/Gtk/MainWindow.vala:181 msgid "Notes" msgstr "Notlar" -#: src/Gtk/MainWindow.vala:304 +#: src/Gtk/MainWindow.vala:310 msgid "Uninstall" msgstr "Kaldır" -#: src/Gtk/MainWindow.vala:313 +#: src/Gtk/MainWindow.vala:316 msgid "Changelog, build status, etc" msgstr "" -#: src/Gtk/MainWindow.vala:323 +#: src/Gtk/MainWindow.vala:325 msgid "Uninstall Old" msgstr "Eskileri Kaldır" -#: src/Gtk/MainWindow.vala:329 +#: src/Gtk/MainWindow.vala:331 msgid "Reload" msgstr "Arjantin" -#: src/Gtk/MainWindow.vala:330 +#: src/Gtk/MainWindow.vala:332 msgid "Delete and reload all cached kernel info" msgstr "" -#: src/Gtk/MainWindow.vala:335 src/Gtk/SettingsDialog.vala:46 +#: src/Gtk/MainWindow.vala:337 src/Gtk/SettingsDialog.vala:43 msgid "Settings" msgstr "Ayarlar" -#: src/Gtk/MainWindow.vala:340 +#: src/Gtk/MainWindow.vala:342 msgid "About" msgstr "Hakkında" -#: src/Gtk/MainWindow.vala:345 +#: src/Gtk/MainWindow.vala:347 msgid "Exit" msgstr "Çıkış" -#: src/Gtk/MainWindow.vala:409 +#: src/Gtk/MainWindow.vala:428 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Ubuntu tabanlı dağıtımlar için çekirdek güncelleme aracı" -#: src/Gtk/MainWindow.vala:410 +#: src/Gtk/MainWindow.vala:429 msgid "Forked" msgstr "Çatallandı" -#: src/Gtk/MainWindow.vala:410 +#: src/Gtk/MainWindow.vala:429 msgid "Original" msgstr "Özgün" -#: src/Gtk/MainWindow.vala:439 +#: src/Gtk/MainWindow.vala:458 msgid "Updating kernels" msgstr "Çekirdekleri güncelleme" -#: src/Gtk/MainWindow.vala:507 +#: src/Gtk/MainWindow.vala:518 msgid "available" msgstr "mevcut" -#: src/Gtk/MainWindow.vala:557 src/Gtk/MainWindow.vala:596 -#: src/Gtk/MainWindow.vala:630 +#: src/Gtk/MainWindow.vala:560 src/Gtk/MainWindow.vala:591 +#: src/Gtk/MainWindow.vala:616 msgid "DONE" msgstr "" -#: src/Gtk/SettingsDialog.vala:56 +#: src/Gtk/SettingsDialog.vala:53 msgid "Notification" msgstr "Bildirim" -#: src/Gtk/SettingsDialog.vala:63 +#: src/Gtk/SettingsDialog.vala:60 msgid "Notify if a major release is available" msgstr "Ana sürüm mevcutsa bildir" -#: src/Gtk/SettingsDialog.vala:72 +#: src/Gtk/SettingsDialog.vala:68 msgid "Notify if a point release is available" msgstr "Nokta sürüm mevcutsa bildir" -#: src/Gtk/SettingsDialog.vala:83 +#: src/Gtk/SettingsDialog.vala:76 msgid "Seconds interval enabled for debugging" msgstr "Hata ayıklama için etkinleştirilen saniye aralığı" -#: src/Gtk/SettingsDialog.vala:106 +#: src/Gtk/SettingsDialog.vala:99 msgid "Check every" msgstr "Kontrol aralığı" -#: src/Gtk/SettingsDialog.vala:131 +#: src/Gtk/SettingsDialog.vala:122 msgid "Hours" msgstr "saat" -#: src/Gtk/SettingsDialog.vala:133 +#: src/Gtk/SettingsDialog.vala:124 msgid "Days" msgstr "gün" -#: src/Gtk/SettingsDialog.vala:135 +#: src/Gtk/SettingsDialog.vala:126 msgid "Weeks" msgstr "hafta" -#: src/Gtk/SettingsDialog.vala:138 +#: src/Gtk/SettingsDialog.vala:129 msgid "Seconds" msgstr "saniye" -#: src/Gtk/SettingsDialog.vala:144 +#: src/Gtk/SettingsDialog.vala:135 msgid "Filters" msgstr "Filtre" -#: src/Gtk/SettingsDialog.vala:152 +#: src/Gtk/SettingsDialog.vala:143 msgid "Hide unstable and RC releases" msgstr "Kararsız ve RC sürümleri gizle" -#: src/Gtk/SettingsDialog.vala:174 +#: src/Gtk/SettingsDialog.vala:165 msgid "previous major versions ( -1 = all )" msgstr "önceki ana sürümler ( -1 = tümü )" -#: src/Gtk/SettingsDialog.vala:178 +#: src/Gtk/SettingsDialog.vala:169 msgid "Network" msgstr "Ağ" -#: src/Gtk/SettingsDialog.vala:189 +#: src/Gtk/SettingsDialog.vala:180 msgid "Internet connection timeout in" msgstr "İnternet bağlantısı zaman aşımı " -#: src/Gtk/SettingsDialog.vala:201 +#: src/Gtk/SettingsDialog.vala:192 msgid "seconds" msgstr "saniye" -#: src/Gtk/SettingsDialog.vala:208 +#: src/Gtk/SettingsDialog.vala:199 msgid "Max concurrent downloads" msgstr "Azami eşzamanlı indirme" -#: src/Gtk/SettingsDialog.vala:222 +#: src/Gtk/SettingsDialog.vala:212 msgid "Verify Checksums with the CHECKSUMS files" msgstr "Sağlama toplamlarını CHECKSUMS dosyalarıyla doğrulama" -#: src/Gtk/SettingsDialog.vala:230 +#: src/Gtk/SettingsDialog.vala:220 msgid "Proxy" msgstr "Proxy" -#: src/Gtk/TerminalWindow.vala:151 +#: src/Gtk/SettingsDialog.vala:249 +msgid "Done" +msgstr "" + +#: src/Gtk/TerminalWindow.vala:159 msgid "Cancel" msgstr "İptal Et" diff --git a/po/uk.po b/po/uk.po index 540454dd..ae8a8315 100644 --- a/po/uk.po +++ b/po/uk.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-01 03:06-0400\n" +"POT-Creation-Date: 2023-06-03 06:21-0400\n" "PO-Revision-Date: 2019-07-25 11:00+0300\n" "Last-Translator: Serhii Golovko \n" "Language-Team: Ukranian\n" @@ -13,329 +13,329 @@ msgstr "" "X-Launchpad-Export-Date: 2016-12-13 11:48+0000\n" "X-Generator: Poedit 2.2.1\n" -#: src/Common/LinuxKernel.vala:105 +#: src/Common/LinuxKernel.vala:100 msgid "Distribution" msgstr "Дистрибутив" -#: src/Common/LinuxKernel.vala:120 +#: src/Common/LinuxKernel.vala:115 msgid "Architecture" msgstr "Системна архитектура" -#: src/Common/LinuxKernel.vala:135 +#: src/Common/LinuxKernel.vala:130 msgid "Running kernel" msgstr "Запуск ядра" -#: src/Common/LinuxKernel.vala:238 +#: src/Common/LinuxKernel.vala:230 msgid "loading cached" msgstr "Завантаження кешованого" -#: src/Common/LinuxKernel.vala:250 +#: src/Common/LinuxKernel.vala:242 msgid "queuing download" msgstr "Черга завантаження" -#: src/Common/LinuxKernel.vala:271 +#: src/Common/LinuxKernel.vala:263 msgid "Fetching individual kernel indexes" msgstr "Вибірка окремих індексів ядра" -#: src/Common/LinuxKernel.vala:285 +#: src/Common/LinuxKernel.vala:277 msgid "loading downloaded" msgstr "Завантаження завантаженого" -#: src/Common/LinuxKernel.vala:320 +#: src/Common/LinuxKernel.vala:318 msgid "Updating from" msgstr "Оновлення з" -#: src/Common/LinuxKernel.vala:328 +#: src/Common/LinuxKernel.vala:326 msgid "OK" msgstr "Добре" -#: src/Common/LinuxKernel.vala:331 +#: src/Common/LinuxKernel.vala:329 msgid "FAILED" msgstr "НЕ ВДАЛОСЯ" -#: src/Common/LinuxKernel.vala:393 +#: src/Common/LinuxKernel.vala:392 msgid "Found installed" msgstr "Знайдено встановленим" -#: src/Common/LinuxKernel.vala:394 +#: src/Common/LinuxKernel.vala:393 msgid "locked" msgstr "заблокований" -#: src/Common/LinuxKernel.vala:476 src/Common/LinuxKernel.vala:999 -#: src/Common/LinuxKernel.vala:1089 +#: src/Common/LinuxKernel.vala:475 src/Common/LinuxKernel.vala:1003 +#: src/Common/LinuxKernel.vala:1093 msgid "is locked." msgstr "заблоковано." -#: src/Common/LinuxKernel.vala:669 src/Gtk/MainWindow.vala:503 +#: src/Common/LinuxKernel.vala:668 src/Gtk/MainWindow.vala:514 msgid "Running" msgstr "Використовується" -#: src/Common/LinuxKernel.vala:670 +#: src/Common/LinuxKernel.vala:669 msgid "Installed" msgstr "Встановлено" -#: src/Common/LinuxKernel.vala:671 +#: src/Common/LinuxKernel.vala:670 msgid "Invalid" msgstr "Інвалід" -#: src/Common/LinuxKernel.vala:756 +#: src/Common/LinuxKernel.vala:760 msgid "Packages Available" msgstr "Доступні пакети" -#: src/Common/LinuxKernel.vala:762 +#: src/Common/LinuxKernel.vala:766 msgid "Packages Installed" msgstr "Встановлені пакети" -#: src/Common/LinuxKernel.vala:787 src/lib/TeeJee.FileSystem.vala:103 +#: src/Common/LinuxKernel.vala:791 src/lib/TeeJee.FileSystem.vala:99 msgid "File not found" msgstr "Файл не знайдено" -#: src/Common/LinuxKernel.vala:881 +#: src/Common/LinuxKernel.vala:885 msgid "Available Kernels" msgstr "Доступні ядра" -#: src/Common/LinuxKernel.vala:916 src/Gtk/MainWindow.vala:119 +#: src/Common/LinuxKernel.vala:920 src/Gtk/MainWindow.vala:128 msgid "Kernel" msgstr "Ядро" -#: src/Common/LinuxKernel.vala:916 +#: src/Common/LinuxKernel.vala:920 #, fuzzy msgid "not found" msgstr "Файл не знайдено" -#: src/Common/LinuxKernel.vala:923 +#: src/Common/LinuxKernel.vala:927 #, fuzzy msgid "Download: no downloadable kernels specified" msgstr "Команда не вказана" -#: src/Common/LinuxKernel.vala:943 +#: src/Common/LinuxKernel.vala:947 msgid "enabled" msgstr "увімкнено" -#: src/Common/LinuxKernel.vala:967 +#: src/Common/LinuxKernel.vala:971 msgid "Downloading" msgstr "Завантаження" -#: src/Common/LinuxKernel.vala:985 +#: src/Common/LinuxKernel.vala:989 #, fuzzy msgid "Installing selected kernels" msgstr "Видаліть конкретні ядра" -#: src/Common/LinuxKernel.vala:991 src/Common/LinuxKernel.vala:1029 +#: src/Common/LinuxKernel.vala:995 src/Common/LinuxKernel.vala:1033 #, fuzzy msgid "Requested" msgstr "запитуваний" -#: src/Common/LinuxKernel.vala:994 +#: src/Common/LinuxKernel.vala:998 msgid "is already installed." msgstr "вже встановлено." -#: src/Common/LinuxKernel.vala:1004 +#: src/Common/LinuxKernel.vala:1008 msgid "download failed." msgstr "" -#: src/Common/LinuxKernel.vala:1012 +#: src/Common/LinuxKernel.vala:1016 #, fuzzy msgid "Install: no installable kernels secified" msgstr "Команда не вказана" -#: src/Common/LinuxKernel.vala:1025 +#: src/Common/LinuxKernel.vala:1029 msgid "Uninstalling selected kernels" msgstr "Видаліть конкретні ядра" -#: src/Common/LinuxKernel.vala:1032 +#: src/Common/LinuxKernel.vala:1036 #, fuzzy msgid "Not uninstalling the currently running kernel" msgstr "не видалятиме поточне запущене ядро" -#: src/Common/LinuxKernel.vala:1037 +#: src/Common/LinuxKernel.vala:1041 #, fuzzy msgid "is locked" msgstr "заблоковано." -#: src/Common/LinuxKernel.vala:1045 +#: src/Common/LinuxKernel.vala:1049 msgid "found" msgstr "знайдено" -#: src/Common/LinuxKernel.vala:1049 +#: src/Common/LinuxKernel.vala:1053 msgid "Uninstall: no uninstallable packages found" msgstr "" -#: src/Common/LinuxKernel.vala:1085 +#: src/Common/LinuxKernel.vala:1089 #, fuzzy msgid "is the highest installed version." msgstr "Видаліть усі, крім найвищої встановленої версії" -#: src/Common/LinuxKernel.vala:1098 +#: src/Common/LinuxKernel.vala:1102 msgid "Could not find running kernel in list" msgstr "Не вдалося знайти запущене ядро у списку!" -#: src/Common/LinuxKernel.vala:1103 +#: src/Common/LinuxKernel.vala:1107 msgid "Could not find any kernels to uninstall" msgstr "Не вдалося знайти жодне ядро для вилучення" -#: src/Common/LinuxKernel.vala:1111 +#: src/Common/LinuxKernel.vala:1115 msgid "The following kernels will be uninstalled" msgstr "Наступні ядра будуть видалені" -#: src/Common/LinuxKernel.vala:1115 +#: src/Common/LinuxKernel.vala:1119 msgid "Continue ?" msgstr "Продовжувати ?" -#: src/Common/LinuxKernel.vala:1137 src/Console/AppConsole.vala:215 +#: src/Common/LinuxKernel.vala:1141 src/Console/AppConsole.vala:211 msgid "Latest update" msgstr "Останнє оновлення" -#: src/Common/LinuxKernel.vala:1148 src/Console/AppConsole.vala:222 +#: src/Common/LinuxKernel.vala:1152 src/Console/AppConsole.vala:218 msgid "Latest point update" msgstr "Остання точка оновлення" -#: src/Common/LinuxKernel.vala:1156 src/Console/AppConsole.vala:227 -#: src/Console/AppConsole.vala:242 +#: src/Common/LinuxKernel.vala:1160 src/Console/AppConsole.vala:223 +#: src/Console/AppConsole.vala:243 msgid "No updates found" msgstr "Оновлень не знайдено" -#: src/Common/LinuxKernel.vala:1165 +#: src/Common/LinuxKernel.vala:1169 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Встановити Ядро Версії %s ? (так/ні): " -#: src/Common/Main.vala:345 +#: src/Common/Main.vala:340 msgid "Called from" msgstr "Викликано з" -#: src/Common/Main.vala:345 +#: src/Common/Main.vala:340 msgid "at logon" msgstr "при запуску" -#: src/Common/Main.vala:346 +#: src/Common/Main.vala:341 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" "Цей файл перезаписується та виконується знову під час збереження налаштувань" -#: src/Common/Main.vala:378 +#: src/Common/Main.vala:373 msgid "Notifications are disabled" msgstr "Повідомлення вимкнено" -#: src/Common/Package.vala:57 +#: src/Common/Package.vala:58 #, c-format msgid "File not found: %s" msgstr "Файл не знайдено: %s" -#: src/Console/AppConsole.vala:40 src/Gtk/AppGtk.vala:74 +#: src/Console/AppConsole.vala:39 src/Gtk/AppGtk.vala:77 msgid "Syntax" msgstr "Синтаксис" -#: src/Console/AppConsole.vala:42 +#: src/Console/AppConsole.vala:41 msgid "Commands" msgstr "Команди" -#: src/Console/AppConsole.vala:44 +#: src/Console/AppConsole.vala:43 msgid "Check for kernel updates" msgstr "Перевірити оновлення ядра" -#: src/Console/AppConsole.vala:45 +#: src/Console/AppConsole.vala:44 msgid "Check for kernel updates and notify current user" msgstr "Перевірте наявність оновлень ядра та повідомте поточного користувача" -#: src/Console/AppConsole.vala:46 +#: src/Console/AppConsole.vala:45 #, fuzzy msgid "List available mainline kernels" msgstr "Список усіх доступних основних ядер" -#: src/Console/AppConsole.vala:47 +#: src/Console/AppConsole.vala:46 msgid "List installed kernels" msgstr "Список встановлених ядер" -#: src/Console/AppConsole.vala:48 +#: src/Console/AppConsole.vala:47 msgid "Install latest mainline kernel" msgstr "Встановіть останнє основне ядро" -#: src/Console/AppConsole.vala:49 +#: src/Console/AppConsole.vala:48 #, fuzzy msgid "Install latest point update in the current major version" msgstr "Встановіть останню точку оновлення для поточної серії" -#: src/Console/AppConsole.vala:50 +#: src/Console/AppConsole.vala:49 #, fuzzy msgid "Install specified kernels" msgstr "Видаліть конкретні ядра" -#: src/Console/AppConsole.vala:51 +#: src/Console/AppConsole.vala:50 #, fuzzy msgid "Uninstall specified kernels" msgstr "Видаліть конкретні ядра" -#: src/Console/AppConsole.vala:52 src/Gtk/MainWindow.vala:324 +#: src/Console/AppConsole.vala:51 src/Gtk/MainWindow.vala:326 msgid "Uninstall all but the highest installed version" msgstr "Видаліть усі, крім найвищої встановленої версії" -#: src/Console/AppConsole.vala:53 +#: src/Console/AppConsole.vala:52 msgid "Download specified kernels" msgstr "Завантажте конкретні ядра" -#: src/Console/AppConsole.vala:54 +#: src/Console/AppConsole.vala:53 msgid "Delete cached info about available kernels" msgstr "Видалити кешовану інформацію про доступні ядра" -#: src/Console/AppConsole.vala:56 src/Gtk/AppGtk.vala:76 +#: src/Console/AppConsole.vala:55 src/Gtk/AppGtk.vala:79 msgid "Options" msgstr "Параметри" -#: src/Console/AppConsole.vala:58 +#: src/Console/AppConsole.vala:57 msgid "Include unstable and RC releases" msgstr "Включення нестабільних і RC-релізів" -#: src/Console/AppConsole.vala:59 +#: src/Console/AppConsole.vala:58 msgid "Exclude unstable and RC releases" msgstr "Виключення нестабільних і RC-релізів" -#: src/Console/AppConsole.vala:60 +#: src/Console/AppConsole.vala:59 msgid "Verbosity. Set to n if given, or increment." msgstr "" -#: src/Console/AppConsole.vala:61 +#: src/Console/AppConsole.vala:60 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "Так для всіх підказок (неінтерактивний режим)" -#: src/Console/AppConsole.vala:64 +#: src/Console/AppConsole.vala:63 #, fuzzy msgid "One or more version strings taken from the output of --list" msgstr "Рядок версій, взятий з виводу --list" -#: src/Console/AppConsole.vala:65 +#: src/Console/AppConsole.vala:64 msgid "comma, pipe, or colon-seperated, or quoted space seperated" msgstr "" -#: src/Console/AppConsole.vala:66 +#: src/Console/AppConsole.vala:65 #, fuzzy msgid "Locked kernels and the currently running kernel are ignored" msgstr "Поточне ядро, що працює, завжди буде ігноруватися" -#: src/Console/AppConsole.vala:143 src/Console/AppConsole.vala:200 -#: src/Gtk/AppGtk.vala:108 +#: src/Console/AppConsole.vala:142 src/Console/AppConsole.vala:196 +#: src/Gtk/AppGtk.vala:111 msgid "Unknown option" msgstr "Невідомий параметр" -#: src/Console/AppConsole.vala:236 +#: src/Console/AppConsole.vala:232 msgid "Notifications disabled in settings" msgstr "Сповіщення, вимкнені в налаштуваннях" -#: src/Console/AppConsole.vala:264 +#: src/Console/AppConsole.vala:265 #, c-format msgid "Kernel %s Available" msgstr "Ядро %s Доступне" -#: src/Console/AppConsole.vala:268 src/Gtk/SettingsDialog.vala:163 +#: src/Console/AppConsole.vala:269 src/Gtk/SettingsDialog.vala:154 msgid "Show" msgstr "Показати" -#: src/Console/AppConsole.vala:269 src/Gtk/MainWindow.vala:296 +#: src/Console/AppConsole.vala:270 src/Gtk/MainWindow.vala:305 msgid "Install" msgstr "Встановити" -#: src/Console/AppConsole.vala:272 +#: src/Console/AppConsole.vala:273 msgid "Previously notified" msgstr "Попередньо повідомлено" @@ -347,7 +347,7 @@ msgstr "Творці" msgid "Back" msgstr "Назад" -#: src/Gtk/AboutWindow.vala:185 src/Gtk/TerminalWindow.vala:161 +#: src/Gtk/AboutWindow.vala:185 src/Gtk/TerminalWindow.vala:169 msgid "Close" msgstr "Закрити" @@ -375,160 +375,164 @@ msgstr "Документатори" msgid "Third Party Inclusions" msgstr "Включення третіх осіб" -#: src/Gtk/AppGtk.vala:74 +#: src/Gtk/AppGtk.vala:77 msgid "options" msgstr "параметри" -#: src/Gtk/AppGtk.vala:78 +#: src/Gtk/AppGtk.vala:81 msgid "Print debug information" msgstr "Роздрукувати зневадження" -#: src/Gtk/AppGtk.vala:79 +#: src/Gtk/AppGtk.vala:82 msgid "Show all options" msgstr "Показати усі параметри" -#: src/Gtk/MainWindow.vala:143 +#: src/Gtk/MainWindow.vala:152 msgid "Lock" msgstr "" -#: src/Gtk/MainWindow.vala:160 +#: src/Gtk/MainWindow.vala:169 msgid "Status" msgstr "Стан" -#: src/Gtk/MainWindow.vala:172 +#: src/Gtk/MainWindow.vala:181 msgid "Notes" msgstr "Нотатки" -#: src/Gtk/MainWindow.vala:304 +#: src/Gtk/MainWindow.vala:310 msgid "Uninstall" msgstr "Видалити" -#: src/Gtk/MainWindow.vala:313 +#: src/Gtk/MainWindow.vala:316 msgid "Changelog, build status, etc" msgstr "Журнал змін, статус збірки тощо" -#: src/Gtk/MainWindow.vala:323 +#: src/Gtk/MainWindow.vala:325 msgid "Uninstall Old" msgstr "Видалити старе" -#: src/Gtk/MainWindow.vala:329 +#: src/Gtk/MainWindow.vala:331 msgid "Reload" msgstr "Перезавантажити" -#: src/Gtk/MainWindow.vala:330 +#: src/Gtk/MainWindow.vala:332 msgid "Delete and reload all cached kernel info" msgstr "" -#: src/Gtk/MainWindow.vala:335 src/Gtk/SettingsDialog.vala:46 +#: src/Gtk/MainWindow.vala:337 src/Gtk/SettingsDialog.vala:43 msgid "Settings" msgstr "Налаштування" -#: src/Gtk/MainWindow.vala:340 +#: src/Gtk/MainWindow.vala:342 msgid "About" msgstr "Про программу" -#: src/Gtk/MainWindow.vala:345 +#: src/Gtk/MainWindow.vala:347 msgid "Exit" msgstr "Вихід" -#: src/Gtk/MainWindow.vala:409 +#: src/Gtk/MainWindow.vala:428 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Програма оновлення ядра для дистрибутивів на базі Ubuntu" -#: src/Gtk/MainWindow.vala:410 +#: src/Gtk/MainWindow.vala:429 msgid "Forked" msgstr "Двоєний" -#: src/Gtk/MainWindow.vala:410 +#: src/Gtk/MainWindow.vala:429 msgid "Original" msgstr "Оригінал" -#: src/Gtk/MainWindow.vala:439 +#: src/Gtk/MainWindow.vala:458 msgid "Updating kernels" msgstr "Оновлення ядер" -#: src/Gtk/MainWindow.vala:507 +#: src/Gtk/MainWindow.vala:518 msgid "available" msgstr "доступний" -#: src/Gtk/MainWindow.vala:557 src/Gtk/MainWindow.vala:596 -#: src/Gtk/MainWindow.vala:630 +#: src/Gtk/MainWindow.vala:560 src/Gtk/MainWindow.vala:591 +#: src/Gtk/MainWindow.vala:616 msgid "DONE" msgstr "" -#: src/Gtk/SettingsDialog.vala:56 +#: src/Gtk/SettingsDialog.vala:53 msgid "Notification" msgstr "Повідомлення" -#: src/Gtk/SettingsDialog.vala:63 +#: src/Gtk/SettingsDialog.vala:60 msgid "Notify if a major release is available" msgstr "Повідомити, чи доступний великий випуск" -#: src/Gtk/SettingsDialog.vala:72 +#: src/Gtk/SettingsDialog.vala:68 msgid "Notify if a point release is available" msgstr "Повідомити, чи доступний невеликий випуск" -#: src/Gtk/SettingsDialog.vala:83 +#: src/Gtk/SettingsDialog.vala:76 msgid "Seconds interval enabled for debugging" msgstr "Увімкнено інтервал секунд для налагодження" -#: src/Gtk/SettingsDialog.vala:106 +#: src/Gtk/SettingsDialog.vala:99 msgid "Check every" msgstr "Перевіряти кожні" -#: src/Gtk/SettingsDialog.vala:131 +#: src/Gtk/SettingsDialog.vala:122 msgid "Hours" msgstr "годин" -#: src/Gtk/SettingsDialog.vala:133 +#: src/Gtk/SettingsDialog.vala:124 msgid "Days" msgstr "днів" -#: src/Gtk/SettingsDialog.vala:135 +#: src/Gtk/SettingsDialog.vala:126 msgid "Weeks" msgstr "тижнів" -#: src/Gtk/SettingsDialog.vala:138 +#: src/Gtk/SettingsDialog.vala:129 msgid "Seconds" msgstr "секунд" -#: src/Gtk/SettingsDialog.vala:144 +#: src/Gtk/SettingsDialog.vala:135 msgid "Filters" msgstr "Фільтри" -#: src/Gtk/SettingsDialog.vala:152 +#: src/Gtk/SettingsDialog.vala:143 msgid "Hide unstable and RC releases" msgstr "Приховати нестабільні та RC випуски" -#: src/Gtk/SettingsDialog.vala:174 +#: src/Gtk/SettingsDialog.vala:165 msgid "previous major versions ( -1 = all )" msgstr "попередніх основних версій ( -1 = усі )" -#: src/Gtk/SettingsDialog.vala:178 +#: src/Gtk/SettingsDialog.vala:169 msgid "Network" msgstr "Мережа" -#: src/Gtk/SettingsDialog.vala:189 +#: src/Gtk/SettingsDialog.vala:180 msgid "Internet connection timeout in" msgstr "Час очікування підключення до Інтернету в " -#: src/Gtk/SettingsDialog.vala:201 +#: src/Gtk/SettingsDialog.vala:192 msgid "seconds" msgstr "секунди" -#: src/Gtk/SettingsDialog.vala:208 +#: src/Gtk/SettingsDialog.vala:199 msgid "Max concurrent downloads" msgstr "Максимальна кількість завантажень" -#: src/Gtk/SettingsDialog.vala:222 +#: src/Gtk/SettingsDialog.vala:212 msgid "Verify Checksums with the CHECKSUMS files" msgstr "Перевірка Контрольні суми за допомогою файлів CHECKSUMS" -#: src/Gtk/SettingsDialog.vala:230 +#: src/Gtk/SettingsDialog.vala:220 msgid "Proxy" msgstr "Проксі" -#: src/Gtk/TerminalWindow.vala:151 +#: src/Gtk/SettingsDialog.vala:249 +msgid "Done" +msgstr "" + +#: src/Gtk/TerminalWindow.vala:159 msgid "Cancel" msgstr "Відміна" diff --git a/src/Common/LinuxKernel.vala b/src/Common/LinuxKernel.vala index b7e49e18..172f292c 100644 --- a/src/Common/LinuxKernel.vala +++ b/src/Common/LinuxKernel.vala @@ -41,10 +41,6 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { public static string NATIVE_ARCH; public static string LINUX_DISTRO; public static string RUNNING_KERNEL; - public static string PPA_URI; - public static string CACHE_DIR; - public static string DATA_DIR; - public static string MAIN_INDEX_HTML; public static int THRESHOLD_MAJOR = -1; public static LinuxKernel kernel_active; @@ -73,7 +69,6 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { LINUX_DISTRO = check_distribution(); NATIVE_ARCH = check_package_architecture(); RUNNING_KERNEL = check_running_kernel(); - MAIN_INDEX_HTML = CACHE_DIR+"/index.html"; initialize_regex(); kernel_active = new LinuxKernel(RUNNING_KERNEL); @@ -173,7 +168,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { public static void delete_cache() { vprint("delete_cache()",2); kernel_list.clear(); - delete_r(CACHE_DIR); + delete_r(App.CACHE_DIR); } // constructor @@ -208,9 +203,6 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { var timer = timer_start(); int count = 0; - //status_line = ""; - //progress_total = 0; - //progress_count = 0; // find the oldest major version to include find_thresholds(true); @@ -272,9 +264,9 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { // while downloading while (mgr.is_running()) { - App.progress_count = mgr.prg_count; // also used by the progress window in MainWindow.vala - //pbar(mgr.prg_count,progress_total,"files"); - pbar(App.progress_count,App.progress_total); + App.progress_count = mgr.prg_count; // also used by the progress indicator in MainWindow.vala + pbar(App.progress_count,App.progress_total,"(files)"); + //pbar(App.progress_count,App.progress_total); sleep(250); if (notifier != null) notifier(timer, ref count); } @@ -292,6 +284,11 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { check_installed(); check_updates(); + // This is here because it had to be delayed from whenever settings + // changed until now, so that the notify script instance of ourself + // doesn't do mk_kernel_list() at the same time while we still are. + App.run_notify_script(); + timer_elapsed(timer, true); if (notifier != null) notifier(timer, ref count, true); @@ -303,27 +300,28 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { vprint("download_index()",2); check_if_initialized(); - if (!file_exists(MAIN_INDEX_HTML)) App.index_is_fresh=false; + string cif = main_index_file(); + if (!file_exists(cif)) App.index_is_fresh=false; if (App.index_is_fresh) return true; if (!try_ppa()) return false; - dir_create(CACHE_DIR); + dir_create(App.CACHE_DIR); // preserve the old index in case the dl fails string tbn = random_string(); - string tfn = CACHE_DIR+"/"+tbn; - vprint("+ DownloadItem("+PPA_URI+","+CACHE_DIR+","+tbn+")",4); - var item = new DownloadItem(PPA_URI, CACHE_DIR, tbn); + string tfn = App.CACHE_DIR+"/"+tbn; + vprint("+ DownloadItem("+App.ppa_uri+","+App.CACHE_DIR+","+tbn+")",4); + var item = new DownloadItem(App.ppa_uri, App.CACHE_DIR, tbn); var mgr = new DownloadTask(); mgr.add_to_queue(item); - vprint(_("Updating from")+": '"+PPA_URI+"'"); + vprint(_("Updating from")+": '"+App.ppa_uri+"'"); mgr.execute(); while (mgr.is_running()) sleep(500); if (file_exists(tfn)) { - file_move(tfn,MAIN_INDEX_HTML); + file_move(tfn,cif); App.index_is_fresh=true; vprint(_("OK")); return true; @@ -339,8 +337,9 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { if (THRESHOLD_MAJOR<0) find_thresholds(true); if (THRESHOLD_MAJOR<0) { vprint("load_index(): THRESHOLD_MAJOR not initialized"); exit(1); } - if (!file_exists(MAIN_INDEX_HTML)) return; - string txt = file_read(MAIN_INDEX_HTML); + string cif = main_index_file(); + if (!file_exists(cif)) return; + string txt = file_read(cif); kernel_list.clear(); try { @@ -359,7 +358,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { if (k.version_major=0 && App.hide_unstable)) { delete_r(k.cache_subdir); continue; } - k.page_uri = PPA_URI + v; + k.page_uri = App.ppa_uri + v; k.is_mainline = true; k.ppa_datetime = int64.parse(mi.fetch(2)+mi.fetch(3)+mi.fetch(4)+mi.fetch(5)+mi.fetch(6)); vprint("kernel_list.add("+k.version_main+") "+k.ppa_datetime.to_string(),2); @@ -686,15 +685,20 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { } } + + public static string main_index_file () { + return App.CACHE_DIR+"/index.html"; + } + public string cache_subdir { owned get { - return CACHE_DIR+"/"+version_main; + return App.CACHE_DIR+"/"+version_main; } } public string data_subdir { owned get { - return DATA_DIR+"/"+version_main; + return App.DATA_DIR+"/"+version_main; } } diff --git a/src/Common/Main.vala b/src/Common/Main.vala index b2972fdc..0f7029c4 100644 --- a/src/Common/Main.vala +++ b/src/Common/Main.vala @@ -69,8 +69,8 @@ const int DEFAULT_WINDOW_X = -1 ; const int DEFAULT_WINDOW_Y = -1 ; const int DEFAULT_TERM_WIDTH = 1100 ; const int DEFAULT_TERM_HEIGHT = 600 ; -//const int DEFAULT_TERM_X = -1 ; -//const int DEFAULT_TERM_Y = -1 ; +const int DEFAULT_TERM_X = -1 ; +const int DEFAULT_TERM_Y = -1 ; extern void exit(int exit_code); @@ -98,14 +98,14 @@ public class Main : GLib.Object { public bool cancelled = false; // state flags ---------- - - public int VERBOSE = 1; + public static int VERBOSE = 1; public bool GUI_MODE = false; public string command = "list"; public string requested_versions = ""; public bool ppa_tried = false; public bool ppa_up = true; public bool index_is_fresh = false; + public bool RUN_NOTIFY_SCRIPT = false; public string ppa_uri = DEFAULT_PPA_URI; public string all_proxy = DEFAULT_ALL_PROXY; @@ -119,6 +119,7 @@ public class Main : GLib.Object { public int notify_interval_value = DEFAULT_NOTIFY_INTERVAL_VALUE; public bool verify_checksums = DEFAULT_VERIFY_CHECKSUMS; + // save & restore window size & position public int window_width = DEFAULT_WINDOW_WIDTH; public int window_height = DEFAULT_WINDOW_HEIGHT; public int _window_width = DEFAULT_WINDOW_WIDTH; @@ -127,18 +128,14 @@ public class Main : GLib.Object { public int window_y = DEFAULT_WINDOW_Y; public int _window_x = DEFAULT_WINDOW_X; public int _window_y = DEFAULT_WINDOW_Y; - - // *sizing* the terminal window is working public int term_width = DEFAULT_TERM_WIDTH; public int term_height = DEFAULT_TERM_HEIGHT; public int _term_width = DEFAULT_TERM_WIDTH; public int _term_height = DEFAULT_TERM_HEIGHT; -/* // *positioning* the terminal window is not working public int term_x = DEFAULT_TERM_X; public int term_y = DEFAULT_TERM_Y; public int _term_x = DEFAULT_TERM_X; public int _term_y = DEFAULT_TERM_Y; -*/ public bool confirm = true; @@ -147,6 +144,7 @@ public class Main : GLib.Object { public Main(string[] arg0, bool _gui_mode) { GUI_MODE = _gui_mode; get_env(); + set_locale(); vprint(BRANDING_SHORTNAME+" "+BRANDING_VERSION); init_paths(); load_app_config(); @@ -157,44 +155,42 @@ public class Main : GLib.Object { // helpers ------------ public void get_env() { - if (Environment.get_variable("VERBOSE")!=null) { - string s = Environment.get_variable("VERBOSE").down(); - if (s=="false") s = "0"; - if (s=="true") s = "1"; - VERBOSE = int.parse(s); - l.misc.VERBOSE = VERBOSE; - } + var s = Environment.get_variable("VERBOSE"); + if (s != null) set_verbose(s.down().strip()); // don't do VERBOSE++ } public bool set_verbose(string? s) { string a = (s==null) ? "" : s.strip(); + switch (a) { + case "n": + case "no": + case "off": + case "false": a = "0"; break; + case "y": + case "yes": + case "on": + case "true": a = "1"; break; + } int v = VERBOSE; - bool r=true; - if (a=="" || a.has_prefix("-")) { r=false; v++; } + bool r = true; + if (a=="" || a.has_prefix("-")) { r = false; v++; } else v = int.parse(a); VERBOSE = v; - l.misc.VERBOSE = v; Environment.set_variable("VERBOSE",v.to_string(),true); return r; } public void init_paths() { - CONFIG_DIR = Environment.get_user_config_dir() + "/" + BRANDING_SHORTNAME; DATA_DIR = Environment.get_user_data_dir() + "/" + BRANDING_SHORTNAME; CACHE_DIR = Environment.get_user_cache_dir() + "/" + BRANDING_SHORTNAME; TMP_PREFIX = Environment.get_tmp_dir() + "/." + BRANDING_SHORTNAME; - APP_CONFIG_FILE = CONFIG_DIR + "/config.json"; STARTUP_SCRIPT_FILE = CONFIG_DIR + "/" + BRANDING_SHORTNAME + "-notify.sh"; STARTUP_DESKTOP_FILE = CONFIG_DIR + "/autostart/" + BRANDING_SHORTNAME + "-notify.desktop"; NOTIFICATION_ID_FILE = CONFIG_DIR + "/notification_id"; MAJOR_SEEN_FILE = CONFIG_DIR + "/notification_seen.major"; MINOR_SEEN_FILE = CONFIG_DIR + "/notification_seen.minor"; - - LinuxKernel.CACHE_DIR = CACHE_DIR; - LinuxKernel.DATA_DIR = DATA_DIR; - } public void save_app_config() { @@ -218,8 +214,8 @@ public class Main : GLib.Object { config.set_int_member( "window_y", window_y ); config.set_int_member( "term_width", term_width ); config.set_int_member( "term_height", term_height ); -// config.set_int_member( "term_x", term_x ); -// config.set_int_member( "term_y", term_y ); + config.set_int_member( "term_x", term_x ); + config.set_int_member( "term_y", term_y ); var json = new Json.Generator(); json.pretty = true; @@ -279,8 +275,8 @@ public class Main : GLib.Object { window_y = (int)config.get_int_member_with_default( "window_y", DEFAULT_WINDOW_Y ); term_width = (int)config.get_int_member_with_default( "term_width", DEFAULT_TERM_WIDTH ); term_height = (int)config.get_int_member_with_default( "term_height", DEFAULT_TERM_HEIGHT ); - //term_x = (int)config.get_int_member_with_default( "term_x", DEFAULT_TERM_X ); - //term_y = (int)config.get_int_member_with_default( "term_y", DEFAULT_TERM_Y ); + term_x = (int)config.get_int_member_with_default( "term_x", DEFAULT_TERM_X ); + term_y = (int)config.get_int_member_with_default( "term_y", DEFAULT_TERM_Y ); #else vprint("glib-json < 1.6",3); ppa_uri = json_get_string( config, "ppa_uri", DEFAULT_PPA_URI ); @@ -300,13 +296,14 @@ public class Main : GLib.Object { window_y = json_get_int( config, "window_y", DEFAULT_WINDOW_Y ); term_width = json_get_int( config, "term_width", DEFAULT_TERM_WIDTH ); term_height = json_get_int( config, "term_height", DEFAULT_TERM_HEIGHT ); + term_x = json_get_int( config, "term_x", DEFAULT_TERM_X ); + term_y = json_get_int( config, "term_y", DEFAULT_TERM_Y ); #endif // fixups bool resave = false; if (ppa_uri.length==0) { ppa_uri = DEFAULT_PPA_URI; resave = true; } if (!ppa_uri.has_suffix("/")) { ppa_uri += "/"; resave = true; } - LinuxKernel.PPA_URI = ppa_uri; if (connect_timeout_seconds>600) connect_timeout_seconds = 600; // aria2c max allowed if (resave) save_app_config(); @@ -337,8 +334,6 @@ public class Main : GLib.Object { break; } - delete_r(STARTUP_SCRIPT_FILE); - // TODO, ID file should not assume single DISPLAY // ID and SEEN should probably be in /var/run ? string s = "#!/bin/bash\n" @@ -368,7 +363,7 @@ public class Main : GLib.Object { + "# run whatever the new state should be\n"; if (notify_minor || notify_major) { s += "while [[ -f $F ]] ;do\n" - + "\t"+BRANDING_SHORTNAME+" --notify 2>&- >&-\n" + + "\tVERBOSE=0 "+BRANDING_SHORTNAME+" --notify 2>&- >&- || exit\n" + "\tsleep %d%s &\n".printf(n,u) + "\tc=$!\n" + "\techo $c >>${F}_\n" @@ -379,23 +374,8 @@ public class Main : GLib.Object { + "exit 0\n"; } - if (GUI_MODE) { - // save_app_config() gets run right at app startup if the config file - // doesn't exist yet, so sometimes update_startup_script() might run - // early in app start-up when we haven't done the cache update yet. - // If we blindly launch the background notification process immediately - // any time settings are updated, the --notify process and ourselves - // will both try to update the same cache files at the same time and - // step all over each other. - // This is not really a fully correct answer, but mostly good enough: - // * If all notifications are now OFF, then run the new startup script - // immediately so that it clears out the existing notification loop - // that might be running. - // * Otherwise don't do anything right now, and run the new startup - // script at app exit instead. - file_write(STARTUP_SCRIPT_FILE,s); - if (!notify_major && !notify_minor) exec_async("bash "+STARTUP_SCRIPT_FILE+" 2>&- >&- <&-"); - } + file_write(STARTUP_SCRIPT_FILE,s); + RUN_NOTIFY_SCRIPT = true; } private void update_startup_desktop_file() { @@ -411,4 +391,10 @@ public class Main : GLib.Object { } } + public void run_notify_script() { + if (!RUN_NOTIFY_SCRIPT) return; + RUN_NOTIFY_SCRIPT = false; + exec_async("bash "+STARTUP_SCRIPT_FILE+" 2>&- >&- <&-"); + } + } diff --git a/src/Common/Package.vala b/src/Common/Package.vala index 3596bec4..de42abdb 100644 --- a/src/Common/Package.vala +++ b/src/Common/Package.vala @@ -11,11 +11,12 @@ public class Package : GLib.Object { public static Gee.ArrayList dpkg_list = new Gee.ArrayList(); public static void initialize() { - new Package(""); + new Package(); } - public Package(string _name) { - pname = _name; + public Package(string s="") { + vprint("Package("+s+")",4); + pname = s; } public static void mk_dpkg_list() { diff --git a/src/Console/AppConsole.vala b/src/Console/AppConsole.vala index 2214eaf3..6aae317d 100644 --- a/src/Console/AppConsole.vala +++ b/src/Console/AppConsole.vala @@ -27,7 +27,6 @@ public Main App; public class AppConsole : GLib.Object { public static int main (string[] args) { - set_locale(); App = new Main(args, false); var console = new AppConsole(); return console.parse_arguments(args); @@ -164,10 +163,7 @@ public class AppConsole : GLib.Object { break; case "--notify": - // silence VERBOSE only if it's exactly 1 - if (App.VERBOSE==1) App.set_verbose("0"); - notify_user(); - break; + return notify_user(); case "--install-latest": LinuxKernel.kinst_latest(false, App.confirm); @@ -229,12 +225,17 @@ public class AppConsole : GLib.Object { } - private void notify_user() { + private int notify_user() { vprint("notify_user()",2); if (!App.notify_major && !App.notify_minor) { vprint(_("Notifications disabled in settings"),2); - return; + return 1; + } + + if (Environment.get_variable("DISPLAY")==null) { + vprint("No $DISPLAY",2); + return 1; } LinuxKernel.mk_kernel_list(true); @@ -273,6 +274,7 @@ public class AppConsole : GLib.Object { } vprint(title,2); + return 0; } } diff --git a/src/Gtk/AppGtk.vala b/src/Gtk/AppGtk.vala index 32d8a68f..f4325cef 100644 --- a/src/Gtk/AppGtk.vala +++ b/src/Gtk/AppGtk.vala @@ -30,7 +30,6 @@ public Main App; public class AppGtk : GLib.Object { public static int main (string[] args) { - set_locale(); X.init_threads(); Gtk.init(ref args); App = new Main(args, true); @@ -58,10 +57,14 @@ public class AppGtk : GLib.Object { App.window_width + App.window_height + App.window_x + App.window_y + App.term_width + App.term_height != App._window_width + App._window_height + App._window_x + App._window_y + App._term_width + App._term_height - ) App.save_app_config(); + ) { + var x = App.RUN_NOTIFY_SCRIPT; + App.save_app_config(); + App.RUN_NOTIFY_SCRIPT = x; + } - // start/replace the notification background process if any notifcations are enabled - if (App.notify_major || App.notify_minor) exec_async("bash "+App.STARTUP_SCRIPT_FILE+" 2>&- >&- <&-"); + // just in case it was missed earlier + App.run_notify_script(); return 0; } diff --git a/src/Gtk/MainWindow.vala b/src/Gtk/MainWindow.vala index 0079c548..55380b63 100644 --- a/src/Gtk/MainWindow.vala +++ b/src/Gtk/MainWindow.vala @@ -36,13 +36,20 @@ public class MainWindow : Window { private Button btn_install; private Button btn_uninstall; + private Button btn_uninstall_old; + private Button btn_reload; private Label lbl_info; + private bool updating; + private Gee.ArrayList selected_kernels; private Gtk.ListStore tm; private TreeView tv; - private Gee.ArrayList selected_kernels; - enum COL { + private Gdk.Pixbuf pix_ubuntu; + private Gdk.Pixbuf pix_mainline; + private Gdk.Pixbuf pix_mainline_rc; + + enum TM { INDEX, KERN, ICON, @@ -50,14 +57,13 @@ public class MainWindow : Window { LOCKED, STATUS, NOTES, - TOOLTIP + TOOLTIP, + N_COLS } public MainWindow() { title = BRANDING_LONGNAME; - //window_position = WindowPosition.CENTER; - window_position = WindowPosition.NONE; icon = get_app_icon(16); // vbox_main @@ -69,11 +75,15 @@ public class MainWindow : Window { add(vbox_main); selected_kernels = new Gee.ArrayList(); - - // 0 index 1 kernel 2 kernel-icon 3 version 4 locked 5 status 6 notes 7 tooltip - tm = new Gtk.ListStore(8, typeof(int), typeof(LinuxKernel), typeof(Gdk.Pixbuf), typeof(string), typeof(bool), typeof(string), typeof(string), typeof(string)); + tm = new Gtk.ListStore(TM.N_COLS, typeof(int), typeof(LinuxKernel), typeof(Gdk.Pixbuf), typeof(string), typeof(bool), typeof(string), typeof(string), typeof(string)); tv = new TreeView.with_model(tm); + try { + pix_ubuntu = new Gdk.Pixbuf.from_file (INSTALL_PREFIX + "/share/pixmaps/" + BRANDING_SHORTNAME + "/ubuntu-logo.png"); + pix_mainline = new Gdk.Pixbuf.from_file (INSTALL_PREFIX + "/share/pixmaps/" + BRANDING_SHORTNAME + "/tux.png"); + pix_mainline_rc = new Gdk.Pixbuf.from_file (INSTALL_PREFIX + "/share/pixmaps/" + BRANDING_SHORTNAME + "/tux-red.png"); + } catch (Error e) { vprint(e.message,1,stderr); } + init_ui(); if (App.command == "install") do_install(LinuxKernel.vlist_to_klist(App.requested_versions)); update_cache(); @@ -94,7 +104,6 @@ public class MainWindow : Window { // hbox hbox_list = new Box(Orientation.HORIZONTAL, 6); - // hbox.margin = 6; vbox_main.add(hbox_list); // add treeview @@ -118,7 +127,7 @@ public class MainWindow : Window { var col = new TreeViewColumn(); col.title = _("Kernel"); col.resizable = true; - col.set_sort_column_id(COL.INDEX); + col.set_sort_column_id(TM.INDEX); col.min_width = 180; tv.append_column(col); @@ -126,12 +135,12 @@ public class MainWindow : Window { k_version_icon.xpad = 4; k_version_icon.ypad = 6; col.pack_start(k_version_icon, false); - col.add_attribute(k_version_icon, "pixbuf", COL.ICON); + col.add_attribute(k_version_icon, "pixbuf", TM.ICON); var k_version_text = new CellRendererText(); k_version_text.ellipsize = Pango.EllipsizeMode.END; col.pack_start(k_version_text, true); - col.add_attribute(k_version_text, "text", COL.VERSION); + col.add_attribute(k_version_text, "text", TM.VERSION); // locked var k_lock_toggle = new CellRendererToggle(); @@ -139,63 +148,63 @@ public class MainWindow : Window { col.pack_end(k_lock_toggle, false); #else // sortable col = new TreeViewColumn(); - col.set_sort_column_id(COL.LOCKED); + col.set_sort_column_id(TM.LOCKED); col.title = _("Lock"); col.pack_start(k_lock_toggle, false); tv.append_column (col); #endif - col.add_attribute(k_lock_toggle,"active", COL.LOCKED); + col.add_attribute(k_lock_toggle,"active", TM.LOCKED); k_lock_toggle.toggled.connect((toggle,path) => { TreeIter iter; tm.get_iter_from_string(out iter, path); LinuxKernel k; - tm.get(iter, COL.KERN, out k, -1); + tm.get(iter, TM.KERN, out k, -1); if (toggle.active) delete_r(k.locked_file); else file_write(k.locked_file, ""); - tm.set(iter, COL.LOCKED, k.is_locked); + tm.set(iter, TM.LOCKED, k.is_locked); }); // status col = new TreeViewColumn(); col.title = _("Status"); - col.set_sort_column_id(COL.STATUS); + col.set_sort_column_id(TM.STATUS); col.resizable = true; col.min_width = 100; tv.append_column(col); var k_status_text = new CellRendererText(); k_status_text.ellipsize = Pango.EllipsizeMode.END; col.pack_start(k_status_text, true); - col.add_attribute(k_status_text, "text", COL.STATUS); // text from column 4 + col.add_attribute(k_status_text, "text", TM.STATUS); // text from column 4 // notes col = new TreeViewColumn(); col.title = _("Notes"); - col.set_sort_column_id(COL.NOTES); + col.set_sort_column_id(TM.NOTES); col.resizable = true; col.min_width = 100; tv.append_column(col); var k_notes_text = new CellRendererText(); k_notes_text.ellipsize = Pango.EllipsizeMode.END; col.pack_start (k_notes_text, true); - col.add_attribute(k_notes_text, "text", COL.NOTES); // text from column 5 + col.add_attribute(k_notes_text, "text", TM.NOTES); // text from column 5 k_notes_text.editable = true; k_notes_text.edited.connect((path, data) => { TreeIter i; LinuxKernel k; tm.get_iter_from_string(out i, path); - tm.get(i, COL.KERN, out k, -1); + tm.get(i, TM.KERN, out k, -1); var t_old = k.notes.strip(); var t_new = data.strip(); if (t_old != t_new) { k.notes = t_new; if (t_new=="") delete_r(k.notes_file); else file_write(k.notes_file, t_new); - tm.set(i, COL.NOTES, t_new, -1); + tm.set(i, TM.NOTES, t_new, -1); } }); // tooltip - tv.set_tooltip_column(COL.TOOLTIP); + tv.set_tooltip_column(TM.TOOLTIP); } @@ -223,18 +232,6 @@ public class MainWindow : Window { private void tv_refresh() { vprint("tv_refresh()",2); - Gdk.Pixbuf pix_ubuntu = null; - Gdk.Pixbuf pix_mainline = null; - Gdk.Pixbuf pix_mainline_rc = null; - try { - pix_ubuntu = new Gdk.Pixbuf.from_file (INSTALL_PREFIX + "/share/pixmaps/" + BRANDING_SHORTNAME + "/ubuntu-logo.png"); - pix_mainline = new Gdk.Pixbuf.from_file (INSTALL_PREFIX + "/share/pixmaps/" + BRANDING_SHORTNAME + "/tux.png"); - pix_mainline_rc = new Gdk.Pixbuf.from_file (INSTALL_PREFIX + "/share/pixmaps/" + BRANDING_SHORTNAME + "/tux-red.png"); - } - catch (Error e) { - vprint(e.message,1,stderr); - } - int i = -1; Gdk.Pixbuf p; TreeIter iter; @@ -249,35 +246,45 @@ public class MainWindow : Window { tm.append(out iter); // add row - tm.set(iter, COL.INDEX, ++i); // saves the special version number sorting built by compare_to() + tm.set(iter, TM.INDEX, ++i); // saves the special version number sorting built by compare_to() - tm.set(iter, COL.KERN, k); + tm.set(iter, TM.KERN, k); p = pix_mainline; if (k.version_rc>=0) p = pix_mainline_rc; if (!k.is_mainline) p = pix_ubuntu; - tm.set(iter, COL.ICON, p); + tm.set(iter, TM.ICON, p); - tm.set(iter, COL.VERSION, k.version_main); + tm.set(iter, TM.VERSION, k.version_main); - tm.set(iter, COL.LOCKED, k.is_locked); + tm.set(iter, TM.LOCKED, k.is_locked); - tm.set(iter, COL.STATUS, k.status); + tm.set(iter, TM.STATUS, k.status); - tm.set(iter, COL.NOTES, k.notes); + tm.set(iter, TM.NOTES, k.notes); - tm.set(iter, COL.TOOLTIP, k.tooltip_text()); + tm.set(iter, TM.TOOLTIP, k.tooltip_text()); } selected_kernels.clear(); - set_button_state(); + updating = false; set_infobar(); + set_button_state(); } private void set_button_state() { btn_install.sensitive = false; btn_uninstall.sensitive = false; + if (updating) { + btn_uninstall_old.sensitive = false; + btn_reload.sensitive = false; + return; + } + + btn_uninstall_old.sensitive = true; + btn_reload.sensitive = true; + if (selected_kernels.size > 0) { foreach (var k in selected_kernels) { if (k.is_locked || k.is_running) continue; @@ -289,30 +296,25 @@ public class MainWindow : Window { private void init_actions() { + Button button; + var hbox = new Box(Orientation.VERTICAL, 6); hbox_list.add (hbox); // install - var button = new Button.with_label (_("Install")); - hbox.pack_start (button, true, true, 0); - btn_install = button; - button.clicked.connect(() => { - do_install(selected_kernels); - }); + btn_install = new Button.with_label (_("Install")); + hbox.pack_start (btn_install, true, true, 0); + btn_install.clicked.connect(() => { do_install(selected_kernels); }); // uninstall - button = new Button.with_label (_("Uninstall")); - hbox.pack_start (button, true, true, 0); - btn_uninstall = button; - button.clicked.connect(() => { - do_uninstall(selected_kernels); - }); + btn_uninstall = new Button.with_label (_("Uninstall")); + hbox.pack_start (btn_uninstall, true, true, 0); + btn_uninstall.clicked.connect(() => { do_uninstall(selected_kernels); }); // ppa button = new Button.with_label ("PPA"); button.set_tooltip_text(_("Changelog, build status, etc")); hbox.pack_start (button, true, true, 0); - button.clicked.connect(() => { string uri = App.ppa_uri; if (selected_kernels.size==1 && selected_kernels[0].is_mainline) uri=selected_kernels[0].page_uri; @@ -320,16 +322,16 @@ public class MainWindow : Window { }); // uninstall-old - button = new Button.with_label (_("Uninstall Old")); - button.set_tooltip_text(_("Uninstall all but the highest installed version")); - hbox.pack_start (button, true, true, 0); - button.clicked.connect(uninstall_old); + btn_uninstall_old = new Button.with_label (_("Uninstall Old")); + btn_uninstall_old.set_tooltip_text(_("Uninstall all but the highest installed version")); + hbox.pack_start (btn_uninstall_old, true, true, 0); + btn_uninstall_old.clicked.connect(uninstall_old); // reload - button = new Button.with_label (_("Reload")); - button.set_tooltip_text(_("Delete and reload all cached kernel info")); - hbox.pack_start (button, true, true, 0); - button.clicked.connect(reload_cache); + btn_reload = new Button.with_label (_("Reload")); + btn_reload.set_tooltip_text(_("Delete and reload all cached kernel info")); + hbox.pack_start (btn_reload, true, true, 0); + btn_reload.clicked.connect(reload_cache); // settings button = new Button.with_label (_("Settings")); @@ -344,24 +346,41 @@ public class MainWindow : Window { // exit button = new Button.with_label (_("Exit")); hbox.pack_start (button, true, true, 0); - button.clicked.connect(do_exit); + button.clicked.connect(Gtk.main_quit); } private void do_settings () { - int old_previous_majors = App.previous_majors; - bool old_hide_unstable = App.hide_unstable; + var old_previous_majors = App.previous_majors; + var old_hide_unstable = App.hide_unstable; + var old_notify_interval_unit = App.notify_interval_unit; + var old_notify_interval_value = App.notify_interval_value; + var old_notify_major = App.notify_major; + var old_notify_minor = App.notify_minor; var dlg = new SettingsDialog.with_parent(this); dlg.run(); dlg.destroy(); - if (App.previous_majors != old_previous_majors || - App.hide_unstable != old_hide_unstable) update_cache(); - } + App.save_app_config(); + + // if no notifications settings changed, don't (re)run the script + if (App.notify_interval_unit == old_notify_interval_unit && + App.notify_interval_value == old_notify_interval_value && + App.notify_major == old_notify_major && + App.notify_minor == old_notify_minor) App.RUN_NOTIFY_SCRIPT = false; + + // if the selection set didn't change, + // then don't trigger cache update + // do run the notify script now + // if the selection set changed + // don't run the notify script now + // update the cache + // the notify script will run if needed at the end of cache update + if (App.previous_majors == old_previous_majors && + App.hide_unstable == old_hide_unstable) App.run_notify_script(); + else update_cache(); - private void do_exit () { - main_quit(); } private void do_about () { @@ -441,39 +460,28 @@ public class MainWindow : Window { if (!try_ppa()) return; - if (!App.GUI_MODE) { - LinuxKernel.mk_kernel_list(true); - return; - } - - var progress_window = new ProgressWindow.with_parent(this, msg); - progress_window.show_all(); + updating = true; + set_button_state(); + set_infobar(msg); LinuxKernel.mk_kernel_list(false, (timer, ref count, last) => { - update_progress_window(progress_window, msg, timer, ref count, last); + update_status_line(msg, timer, ref count, last); }); } - private void update_progress_window(ProgressWindow progress_window, string message, GLib.Timer timer, ref int count, bool last = false) { + private void update_status_line(string message, GLib.Timer timer, ref int count, bool last = false) { + count++; if (last) { Gdk.threads_add_idle_full(Priority.DEFAULT_IDLE, () => { tv_refresh(); return false; }); timer_elapsed(timer, true); - progress_window.destroy(); } - //App.progress_total = LinuxKernel.progress_total; - //App.progress_count = LinuxKernel.progress_count; - - Gdk.threads_add_idle_full(0, () => { - if (App.progress_total > 0) - //progress_window.update_message(App.status_line); - progress_window.update_message("%s %s/%s".printf(message, App.progress_count.to_string(), App.progress_total.to_string())); + Gdk.threads_add_idle_full(Priority.DEFAULT_IDLE, () => { + if (updating) set_infobar("%s %d/%d".printf(message, App.progress_count, App.progress_total)); return false; }); - - count++; } private void init_infobar() { @@ -495,22 +503,26 @@ public class MainWindow : Window { lbl_info = new Label(""); lbl_info.margin = 6; lbl_info.set_use_markup(true); + lbl_info.set_single_line_mode(true); + lbl_info.selectable = false; hbox.add(lbl_info); } - private void set_infobar() { - //vprint("set_infobar()",9); - lbl_info.label = _("Running")+" %s".printf(LinuxKernel.kernel_active.version_main); - if (LinuxKernel.kernel_active.is_mainline) lbl_info.label += " (mainline)"; - else lbl_info.label += " (ubuntu)"; - if (LinuxKernel.kernel_latest_available.compare_to(LinuxKernel.kernel_latest_installed) > 0) { - lbl_info.label += " ~ %s ".printf(LinuxKernel.kernel_latest_available.version_main)+_("available"); - } + private void set_infobar(string s="") { + if (s!="") { lbl_info.set_label(s); return; } + + string l = _("Running")+" %s".printf(LinuxKernel.kernel_active.version_main); + if (LinuxKernel.kernel_active.is_mainline) l += " (mainline)"; + else l += " (ubuntu)"; + if (LinuxKernel.kernel_latest_available.compare_to(LinuxKernel.kernel_latest_installed) > 0) + l += " ~ %s ".printf(LinuxKernel.kernel_latest_available.version_main)+_("available"); + + lbl_info.set_label(l); } public void do_install(Gee.ArrayList klist) { string vlist=""; - if (App.VERBOSE>2) { + if (Main.VERBOSE>2) { foreach (var k in klist) vlist += k.version_main+" "; vprint("do_install("+vlist.strip()+")"); } @@ -532,26 +544,17 @@ public class MainWindow : Window { string t_dir = create_tmp_dir(); string t_file = get_temp_file_path(t_dir)+".sh"; - term.configure_event.connect ((event) => { - //vprint("term resize: %dx%d@%dx%d".printf(event.width,event.height,event.x,event.y),2); - App.term_width = event.width; - App.term_height = event.height; -// App.term_x = event.x; -// App.term_y = event.y; - return false; - }); - term.script_complete.connect(()=>{ + term.present(); term.allow_window_close(); }); term.destroy.connect(()=>{ - this.present(); delete_r(t_dir); update_cache(); }); - string sh = "VERBOSE="+App.VERBOSE.to_string()+" "+BRANDING_SHORTNAME; + string sh = "VERBOSE="+Main.VERBOSE.to_string()+" "+BRANDING_SHORTNAME; if (App.index_is_fresh) sh += " --index-is-fresh"; sh += " --install \""+vlist+"\"\n" + "echo '"+_("DONE")+"'\n" @@ -568,20 +571,12 @@ public class MainWindow : Window { string t_dir = create_tmp_dir(); string t_file = get_temp_file_path(t_dir)+".sh"; - term.configure_event.connect ((event) => { - App.term_width = event.width; - App.term_height = event.height; -// App.term_x = event.x; -// App.term_y = event.y; - return false; - }); - term.script_complete.connect(()=>{ + term.present(); term.allow_window_close(); }); term.destroy.connect(() => { - this.present(); delete_r(t_dir); update_cache(); }); @@ -590,7 +585,7 @@ public class MainWindow : Window { foreach(var k in klist) vlist += " "+k.version_main; vlist = vlist.strip(); - string sh = "VERBOSE="+App.VERBOSE.to_string()+" "+BRANDING_SHORTNAME; + string sh = "VERBOSE="+Main.VERBOSE.to_string()+" "+BRANDING_SHORTNAME; if (App.index_is_fresh) sh += " --index-is-fresh"; sh += " --uninstall \""+vlist+"\"\n" + "echo '"+_("DONE")+"'\n" @@ -605,26 +600,17 @@ public class MainWindow : Window { string t_dir = create_tmp_dir(); string t_file = get_temp_file_path(t_dir)+".sh"; - term.configure_event.connect ((event) => { - App.term_width = event.width; - App.term_height = event.height; -// App.term_x = event.x; -// App.term_y = event.y; - return false; - }); - - term.script_complete.connect(()=>{ + term.present(); term.allow_window_close(); }); term.destroy.connect(()=>{ - this.present(); delete_r(t_dir); update_cache(); }); - string sh = "VERBOSE="+App.VERBOSE.to_string()+" "+BRANDING_SHORTNAME+" --uninstall-old"; + string sh = "VERBOSE="+Main.VERBOSE.to_string()+" "+BRANDING_SHORTNAME+" --uninstall-old"; if (App.index_is_fresh) sh += " --index-is-fresh"; sh += "\n" + "echo '"+_("DONE")+"'\n" diff --git a/src/Gtk/ProgressWindow.vala b/src/Gtk/ProgressWindow.vala deleted file mode 100644 index 41e60a04..00000000 --- a/src/Gtk/ProgressWindow.vala +++ /dev/null @@ -1,88 +0,0 @@ -/* - * ProgressWindow.vala - * - * Copyright 2015 Tony George - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, - * MA 02110-1301, USA. - * - * - */ - - -using Gtk; - -using l.gtk; -using l.misc; - -public class ProgressWindow : Window { - - private Box vbox_main; - private Spinner spinner; - private Label lbl_msg; - - private string body_message = ""; - - public ProgressWindow.with_parent(Window parent, string message) { - - set_modal(true); - set_decorated(false); - set_transient_for(parent); - set_type_hint(Gdk.WindowTypeHint.DIALOG); - //window_position = WindowPosition.CENTER_ON_PARENT; - - icon = get_app_icon(16); - - App.progress_count = 0; - App.progress_total = 0; - - body_message = message.strip(); - - init_window(); - } - - public void init_window () { - - title = ""; - icon = get_app_icon(16); - resizable = false; - deletable = false; - //set_deletable(false); - - vbox_main = new Box(Orientation.VERTICAL, 6); - vbox_main.margin = 12; - add(vbox_main); - - var hbox_status = new Box(Orientation.HORIZONTAL, 6); - vbox_main.add(hbox_status); - - spinner = new Spinner(); - spinner.active = true; - hbox_status.add(spinner); - - lbl_msg = new Label(body_message); - hbox_status.add(lbl_msg); - - var hbox = new Box(Orientation.HORIZONTAL, 6); - vbox_main.add(hbox); - - show_all(); - } - - public void update_message(string s) { - if (s.length > 0) lbl_msg.label = s; - } - -} diff --git a/src/Gtk/SettingsDialog.vala b/src/Gtk/SettingsDialog.vala index 9d1b016f..f59446c6 100644 --- a/src/Gtk/SettingsDialog.vala +++ b/src/Gtk/SettingsDialog.vala @@ -21,9 +21,6 @@ * */ -using Gtk; - -using TeeJee.FileSystem; using l.gtk; using l.misc; @@ -34,13 +31,13 @@ public class SettingsDialog : Gtk.Dialog { private Gtk.CheckButton chk_hide_unstable; private Gtk.CheckButton chk_verify_checksums; - public SettingsDialog.with_parent(Window parent) { + public SettingsDialog.with_parent(Gtk.Window parent) { set_transient_for(parent); set_modal(true); - window_position = WindowPosition.CENTER_ON_PARENT; + window_position = Gtk.WindowPosition.CENTER_ON_PARENT; deletable = false; resizable = false; - + icon = get_app_icon(16); title = _("Settings"); @@ -53,7 +50,7 @@ public class SettingsDialog : Gtk.Dialog { vbox_main.set_size_request(400,500); // notification - var label = new Label("" + _("Notification") + ""); + var label = new Gtk.Label("" + _("Notification") + ""); label.set_use_markup(true); label.xalign = (float) 0.0; label.margin_bottom = 6; @@ -65,7 +62,6 @@ public class SettingsDialog : Gtk.Dialog { chk.margin_start = 6; vbox_main.add(chk); chk_notify_major = chk; - chk.toggled.connect(()=>{ App.notify_major = chk_notify_major.active; }); // chk_notify_minor @@ -74,13 +70,10 @@ public class SettingsDialog : Gtk.Dialog { chk.margin_start = 6; vbox_main.add(chk); chk_notify_minor = chk; + chk.toggled.connect(()=>{ App.notify_minor = chk_notify_minor.active; }); - chk.toggled.connect(()=>{ - App.notify_minor = chk_notify_minor.active; - }); - - if (App.VERBOSE>1) { - label = new Label("( VERBOSE > 1 : "+_("Seconds interval enabled for debugging")+" )"); + if (Main.VERBOSE>1) { + label = new Gtk.Label("( VERBOSE > 1 : "+_("Seconds interval enabled for debugging")+" )"); label.xalign = (float) 0.0; label.margin_bottom = 6; vbox_main.add (label); @@ -90,7 +83,7 @@ public class SettingsDialog : Gtk.Dialog { // replace invalid debug-only values with valid values int max_intervals = 52; - if (App.VERBOSE>1) { + if (Main.VERBOSE>1) { // debug allows seconds, allow up to 1 hour of seconds max_intervals = 3600; } else { @@ -100,10 +93,10 @@ public class SettingsDialog : Gtk.Dialog { } } - var hbox = new Gtk.Box(Orientation.HORIZONTAL, 6); + var hbox = new Gtk.Box(Gtk.Orientation.HORIZONTAL, 6); vbox_main.add (hbox); - label = new Label(_("Check every")); + label = new Gtk.Label(_("Check every")); label.xalign = (float) 0.0; label.margin_start = 6; hbox.add (label); @@ -113,8 +106,7 @@ public class SettingsDialog : Gtk.Dialog { spin.xalign = (float) 0.5; hbox.add(spin); var spin_notify = spin; - - spin.changed.connect(()=>{ App.notify_interval_value = (int) spin_notify.get_value(); }); + spin.changed.connect(()=>{ App.notify_interval_value = (int)spin_notify.get_value(); }); // notify interval unit var combo = new Gtk.ComboBox(); @@ -122,10 +114,9 @@ public class SettingsDialog : Gtk.Dialog { combo.pack_start(cell_text, false); combo.set_attributes(cell_text, "text", 0); hbox.add(combo); - combo.changed.connect(()=>{ App.notify_interval_unit = combo.active; }); - TreeIter iter; + Gtk.TreeIter iter; var model = new Gtk.ListStore (1, typeof (string)); model.append (out iter); model.set (iter,0,_("Hours")); @@ -133,7 +124,7 @@ public class SettingsDialog : Gtk.Dialog { model.set (iter,0,_("Days")); model.append (out iter); model.set (iter,0,_("Weeks")); - if (App.VERBOSE>1) { + if (Main.VERBOSE>1) { model.append (out iter); model.set (iter,0,_("Seconds")); } @@ -141,7 +132,7 @@ public class SettingsDialog : Gtk.Dialog { combo.set_active(App.notify_interval_unit); // filters - label = new Label("" + _("Filters") + ""); + label = new Gtk.Label("" + _("Filters") + ""); label.set_use_markup(true); label.xalign = (float) 0.0; label.margin_top = 12; @@ -149,7 +140,7 @@ public class SettingsDialog : Gtk.Dialog { vbox_main.add (label); // chk_hide_unstable - chk = new CheckButton.with_label(_("Hide unstable and RC releases")); + chk = new Gtk.CheckButton.with_label(_("Hide unstable and RC releases")); chk.active = App.hide_unstable; chk.margin_start = 6; vbox_main.add(chk); @@ -157,10 +148,10 @@ public class SettingsDialog : Gtk.Dialog { chk.toggled.connect(()=>{ App.hide_unstable = chk_hide_unstable.active; }); // kernel version threshold - hbox = new Gtk.Box(Orientation.HORIZONTAL, 6); + hbox = new Gtk.Box(Gtk.Orientation.HORIZONTAL, 6); vbox_main.add (hbox); - label = new Label(_("Show")); + label = new Gtk.Label(_("Show")); label.xalign = (float) 0.0; label.margin_start = 6; hbox.add (label); @@ -169,13 +160,13 @@ public class SettingsDialog : Gtk.Dialog { var spm_spin = new Gtk.SpinButton (spm_adj, 1, 0); spm_spin.xalign = (float) 0.5; hbox.add(spm_spin); - spm_spin.changed.connect(()=>{ App.previous_majors = (int) spm_spin.get_value(); }); + spm_spin.changed.connect(()=>{ App.previous_majors = (int)spm_spin.get_value(); }); - label = new Label(_("previous major versions ( -1 = all )")); + label = new Gtk.Label(_("previous major versions ( -1 = all )")); hbox.add(label); // network - label = new Label("" + _("Network") + ""); + label = new Gtk.Label("" + _("Network") + ""); label.set_use_markup(true); label.xalign = (float) 0.0; label.margin_top = 12; @@ -183,10 +174,10 @@ public class SettingsDialog : Gtk.Dialog { vbox_main.add (label); // connect timeout - hbox = new Gtk.Box(Orientation.HORIZONTAL, 6); + hbox = new Gtk.Box(Gtk.Orientation.HORIZONTAL, 6); vbox_main.add (hbox); - label = new Label(_("Internet connection timeout in")); + label = new Gtk.Label(_("Internet connection timeout in")); label.xalign = (float) 0.0; label.margin_start = 6; hbox.add (label); @@ -196,16 +187,16 @@ public class SettingsDialog : Gtk.Dialog { spin.xalign = (float) 0.5; hbox.add(spin); var spin_timeout = spin; - spin.changed.connect(()=>{ App.connect_timeout_seconds = (int) spin_timeout.get_value(); }); + spin.changed.connect(()=>{ App.connect_timeout_seconds = (int)spin_timeout.get_value(); }); - label = new Label(_("seconds")); + label = new Gtk.Label(_("seconds")); hbox.add(label); // concurrent downloads - hbox = new Gtk.Box(Orientation.HORIZONTAL, 6); + hbox = new Gtk.Box(Gtk.Orientation.HORIZONTAL, 6); vbox_main.add (hbox); - label = new Label(_("Max concurrent downloads")); + label = new Gtk.Label(_("Max concurrent downloads")); label.xalign = (float) 0.0; label.margin_start = 6; hbox.add (label); @@ -215,11 +206,10 @@ public class SettingsDialog : Gtk.Dialog { spin.xalign = (float) 0.5; hbox.add(spin); var spin_concurrent = spin; - - spin.changed.connect(()=>{ App.concurrent_downloads = (int) spin_concurrent.get_value(); }); + spin.changed.connect(()=>{ App.concurrent_downloads = (int)spin_concurrent.get_value(); }); // verify_checksums - chk = new CheckButton.with_label(_("Verify Checksums with the CHECKSUMS files")); + chk = new Gtk.CheckButton.with_label(_("Verify Checksums with the CHECKSUMS files")); chk.active = App.verify_checksums; chk.margin_start = 6; vbox_main.add(chk); @@ -227,17 +217,17 @@ public class SettingsDialog : Gtk.Dialog { chk.toggled.connect(()=>{ App.verify_checksums = chk_verify_checksums.active; }); // proxy - label = new Label(_("Proxy")); + label = new Gtk.Label(_("Proxy")); label.xalign = (float) 0.0; label.margin_start = 6; vbox_main.add (label); - var proxy = new Entry (); + var proxy = new Gtk.Entry (); proxy.set_placeholder_text("[http://][USER:PASSWORD@]HOST[:PORT]"); proxy.set_text(App.all_proxy); - proxy.activate.connect(()=>{ App.all_proxy = proxy.get_text(); }); proxy.margin_start = 6; vbox_main.add(proxy); + proxy.activate.connect(()=>{ App.all_proxy = proxy.get_text(); }); // too easily screwed up and "blank to return to default" isn't working /* @@ -255,10 +245,11 @@ public class SettingsDialog : Gtk.Dialog { vbox_main.add(ppa); */ - // ok - var button = (Button) add_button ("gtk-ok", Gtk.ResponseType.ACCEPT); + // ok button + var button = (Gtk.Button)add_button(_("Done"), Gtk.ResponseType.ACCEPT); button.clicked.connect(()=>{ this.close(); }); - this.destroy.connect(btn_ok_click); + + // run show_all(); // DEBUG rapid toggle stress test @@ -269,7 +260,4 @@ public class SettingsDialog : Gtk.Dialog { } - private void btn_ok_click() { - App.save_app_config(); - } } diff --git a/src/Gtk/TerminalWindow.vala b/src/Gtk/TerminalWindow.vala index de3adcca..1a33b64b 100644 --- a/src/Gtk/TerminalWindow.vala +++ b/src/Gtk/TerminalWindow.vala @@ -53,24 +53,30 @@ public class TerminalWindow : Gtk.Window { if (parent != null) { set_transient_for(parent); parent_win = parent; + window_position = WindowPosition.CENTER_ON_PARENT; } + configure_event.connect ((event) => { + //vprint("term resize: %dx%d@%dx%d".printf(event.width,event.height,event.x,event.y),2); + App.term_width = event.width; + App.term_height = event.height; + App.term_x = event.x; + App.term_y = event.y; + return false; + }); + + delete_event.connect(cancel_window_close); + set_modal(true); - //window_position = WindowPosition.CENTER; - window_position = WindowPosition.CENTER_ON_PARENT; - //window_position = WindowPosition.NONE; - if (fullscreen) this.fullscreen(); - this.delete_event.connect(cancel_window_close); + if (fullscreen) this.fullscreen(); init_window(); show_all(); - this.resize(App.term_width,App.term_height); -// if (App.term_x >=0 && App.term_y >= 0) this.move(App.window_x,App.window_y); -// App._window_x = App.window_x; -// App._window_y = App.window_y; + resize(App.term_width,App.term_height); + if (App.term_x>=0 && App.term_y>=0) move(App.term_x,App.term_y); btn_cancel.visible = false; btn_close.visible = false; @@ -96,6 +102,8 @@ public class TerminalWindow : Gtk.Window { //vbox_main.set_size_request(def_width,def_height); App._term_width = App.term_width; App._term_height = App.term_height; + App._term_x = App.term_x; + App._term_y = App.term_y; add (vbox_main); diff --git a/src/lib/TeeJee.FileSystem.vala b/src/lib/TeeJee.FileSystem.vala index 7d613cd6..7fdaf3a8 100644 --- a/src/lib/TeeJee.FileSystem.vala +++ b/src/lib/TeeJee.FileSystem.vala @@ -60,21 +60,17 @@ namespace TeeJee.FileSystem { vprint("file_write("+f+")",3); try { - - string d = file_parent(f); - dir_create(d); - + dir_create(file_parent(f)); var file = File.new_for_path(f); - if (file.query_exists()) file.delete (); - - var file_stream = file.create(FileCreateFlags.REPLACE_DESTINATION); + //delete_r(f); + //var file_stream = file.create(); + var file_stream = file.replace(null, false, FileCreateFlags.REPLACE_DESTINATION); + //var file_stream = file.replace(null, false, FileCreateFlags.NONE); var data_stream = new DataOutputStream(file_stream); data_stream.put_string(contents); data_stream.close(); - return true; - } - catch (Error e) { + } catch (Error e) { vprint(e.message,1,stderr); return false; } diff --git a/src/lib/l.misc.vala b/src/lib/l.misc.vala index cb526028..5a9ce1b0 100644 --- a/src/lib/l.misc.vala +++ b/src/lib/l.misc.vala @@ -1,6 +1,6 @@ namespace l.misc { - public int VERBOSE = 1; + //public int VERBOSE = 1; private static void set_locale() { Intl.setlocale(LocaleCategory.MESSAGES,BRANDING_SHORTNAME); @@ -10,9 +10,9 @@ namespace l.misc { } public void vprint(string s,int v=1,FileStream f=stdout,bool n=true) { - if (v>VERBOSE) return; + if (v>Main.VERBOSE) return; string o = s; - if (VERBOSE>3) o = "%d: ".printf(Posix.getpid()) + o; + if (Main.VERBOSE>3) o = "%d: ".printf(Posix.getpid()) + o; if (n) o += "\n"; f.printf(o); f.flush(); @@ -24,7 +24,7 @@ namespace l.misc { } private static void pbar(int64 part=0,int64 whole=100,string units="") { - if (VERBOSE<1) return; + if (Main.VERBOSE<1) return; int l = 79; // bar length if (whole<1) { vprint("\r%*.s\r".printf(l,""),1,stdout,false); return; } int64 c = 0, plen = 0, wlen = 40; From 9885f0710f05c37bf067512172b0b6eae3021d2e Mon Sep 17 00:00:00 2001 From: Matthaiks <3577122+Matthaiks@users.noreply.github.com> Date: Sat, 3 Jun 2023 14:25:01 +0200 Subject: [PATCH 349/567] Update Polish translation --- po/pl.po | 55 ++++++++++++++++++++++--------------------------------- 1 file changed, 22 insertions(+), 33 deletions(-) diff --git a/po/pl.po b/po/pl.po index 50adbd9a..04f17328 100644 --- a/po/pl.po +++ b/po/pl.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-06-03 06:21-0400\n" -"PO-Revision-Date: 2023-05-25 13:37+0200\n" +"PO-Revision-Date: 2023-06-03 14:24+0200\n" "Last-Translator: Matthaiks\n" "Language-Team: Polish\n" "Language: pl\n" @@ -98,14 +98,12 @@ msgid "Kernel" msgstr "Jądro" #: src/Common/LinuxKernel.vala:920 -#, fuzzy msgid "not found" -msgstr "Nie odnaleziono pliku" +msgstr "nie odnaleziono" #: src/Common/LinuxKernel.vala:927 -#, fuzzy msgid "Download: no downloadable kernels specified" -msgstr "Nie określono polecenia" +msgstr "Pobieranie: nie określono jąder do pobrania" #: src/Common/LinuxKernel.vala:947 msgid "enabled" @@ -116,14 +114,12 @@ msgid "Downloading" msgstr "Pobieranie" #: src/Common/LinuxKernel.vala:989 -#, fuzzy msgid "Installing selected kernels" -msgstr "Odinstalowanie wybranych jąder" +msgstr "Instalowanie wybranych jąder" #: src/Common/LinuxKernel.vala:995 src/Common/LinuxKernel.vala:1033 -#, fuzzy msgid "Requested" -msgstr "zażądane" +msgstr "Zażądane" #: src/Common/LinuxKernel.vala:998 msgid "is already installed." @@ -131,26 +127,23 @@ msgstr "jest już zainstalowane." #: src/Common/LinuxKernel.vala:1008 msgid "download failed." -msgstr "" +msgstr "pobieranie nie powiodło się." #: src/Common/LinuxKernel.vala:1016 -#, fuzzy msgid "Install: no installable kernels secified" -msgstr "Nie określono polecenia" +msgstr "Instalowanie: nie określono jąder do zainstalowania" #: src/Common/LinuxKernel.vala:1029 msgid "Uninstalling selected kernels" msgstr "Odinstalowanie wybranych jąder" #: src/Common/LinuxKernel.vala:1036 -#, fuzzy msgid "Not uninstalling the currently running kernel" -msgstr "bez odinstalowywania aktualnie uruchomionego jądra" +msgstr "Bez odinstalowywania aktualnie uruchomionego jądra" #: src/Common/LinuxKernel.vala:1041 -#, fuzzy msgid "is locked" -msgstr "jest zablokowane." +msgstr "jest zablokowane" #: src/Common/LinuxKernel.vala:1049 msgid "found" @@ -158,7 +151,7 @@ msgstr "znalezione" #: src/Common/LinuxKernel.vala:1053 msgid "Uninstall: no uninstallable packages found" -msgstr "" +msgstr "Odinstalowanie: nie znaleziono pakietów, które można odinstalować" #: src/Common/LinuxKernel.vala:1089 msgid "is the highest installed version." @@ -239,9 +232,8 @@ msgid "Check for kernel updates and notify current user" msgstr "Sprawdź nowe wersje jądra i powiadom bieżącego użytkownika" #: src/Console/AppConsole.vala:45 -#, fuzzy msgid "List available mainline kernels" -msgstr "Pokaż wszystkie dostępne jądra" +msgstr "Wyświetl listę dostępnych głównych jąder" #: src/Console/AppConsole.vala:46 msgid "List installed kernels" @@ -252,19 +244,16 @@ msgid "Install latest mainline kernel" msgstr "Zainstaluj najnowsze jądro" #: src/Console/AppConsole.vala:48 -#, fuzzy msgid "Install latest point update in the current major version" -msgstr "Zainstaluj najnowszą aktualizację punktową dla bieżącej serii" +msgstr "Zainstaluj najnowszą aktualizację punktową bieżącej wersji głównej" #: src/Console/AppConsole.vala:49 -#, fuzzy msgid "Install specified kernels" -msgstr "Odinstaluj wybrane jądro" +msgstr "Zainstaluj wybrane jądra" #: src/Console/AppConsole.vala:50 -#, fuzzy msgid "Uninstall specified kernels" -msgstr "Odinstaluj wybrane jądro" +msgstr "Odinstaluj wybrane jądra" #: src/Console/AppConsole.vala:51 src/Gtk/MainWindow.vala:326 msgid "Uninstall all but the highest installed version" @@ -292,25 +281,24 @@ msgstr "Wyklucz wersje niestabilne i RC" #: src/Console/AppConsole.vala:59 msgid "Verbosity. Set to n if given, or increment." -msgstr "" +msgstr "Opisowość. Ustaw na n, jeśli podano, lub zwiększ." #: src/Console/AppConsole.vala:60 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "Przyjmij Tak dla wszystkich monitów (tryb nieinteraktywny)" #: src/Console/AppConsole.vala:63 -#, fuzzy msgid "One or more version strings taken from the output of --list" -msgstr "Ciąg wersji pobrany z danych wyjściowych --list" +msgstr "Jeden lub więcej ciągów wersji pobranych z danych wyjściowych --list" #: src/Console/AppConsole.vala:64 msgid "comma, pipe, or colon-seperated, or quoted space seperated" msgstr "" +"oddzielone przecinkiem, kreską pionową, dwukropkiem lub spacją w cudzysłowie" #: src/Console/AppConsole.vala:65 -#, fuzzy msgid "Locked kernels and the currently running kernel are ignored" -msgstr "Aktualnie uruchomione jądro będzie zawsze ignorowane" +msgstr "Zablokowane jądra i aktualnie uruchomione jądro są ignorowane" #: src/Console/AppConsole.vala:142 src/Console/AppConsole.vala:196 #: src/Gtk/AppGtk.vala:111 @@ -388,7 +376,7 @@ msgstr "Pokaż wszystkie opcje" #: src/Gtk/MainWindow.vala:152 msgid "Lock" -msgstr "" +msgstr "Zablokuj" #: src/Gtk/MainWindow.vala:169 msgid "Status" @@ -417,6 +405,7 @@ msgstr "Wczytaj ponownie" #: src/Gtk/MainWindow.vala:332 msgid "Delete and reload all cached kernel info" msgstr "" +"Usuń i ponownie załaduj wszystkie informacje o jądrze z pamięci podręcznej" #: src/Gtk/MainWindow.vala:337 src/Gtk/SettingsDialog.vala:43 msgid "Settings" @@ -453,7 +442,7 @@ msgstr "dostępne" #: src/Gtk/MainWindow.vala:560 src/Gtk/MainWindow.vala:591 #: src/Gtk/MainWindow.vala:616 msgid "DONE" -msgstr "" +msgstr "GOTOWE" #: src/Gtk/SettingsDialog.vala:53 msgid "Notification" @@ -529,7 +518,7 @@ msgstr "Serwer pośredniczący" #: src/Gtk/SettingsDialog.vala:249 msgid "Done" -msgstr "" +msgstr "Gotowe" #: src/Gtk/TerminalWindow.vala:159 msgid "Cancel" From 6a27d372b1bb36caf1b716ca71b1778836da17ce Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Sat, 3 Jun 2023 09:05:19 -0400 Subject: [PATCH 350/567] config settings for pkexec command and ppa url --- .deb_build_number.mak | 2 +- BRANDING.mak | 2 +- debian/changelog | 7 ++++++ po/de.po | 40 ++++++++++++++++------------- po/el.po | 42 ++++++++++++++++++------------- po/es.po | 42 ++++++++++++++++++------------- po/fr.po | 42 ++++++++++++++++++------------- po/hr.po | 42 ++++++++++++++++++------------- po/it.po | 40 ++++++++++++++++------------- po/ko.po | 42 ++++++++++++++++++------------- po/messages.pot | 40 ++++++++++++++++------------- po/nl.po | 42 ++++++++++++++++++------------- po/pl.po | 42 ++++++++++++++++++------------- po/ru.po | 42 ++++++++++++++++++------------- po/sv.po | 42 ++++++++++++++++++------------- po/tr.po | 42 ++++++++++++++++++------------- po/uk.po | 42 ++++++++++++++++++------------- settings.md | 10 ++++++++ src/Common/LinuxKernel.vala | 6 ++--- src/Common/Main.vala | 6 +++++ src/Console/AppConsole.vala | 5 +--- src/Gtk/SettingsDialog.vala | 50 +++++++++++++++++++++++++++---------- 22 files changed, 398 insertions(+), 272 deletions(-) diff --git a/.deb_build_number.mak b/.deb_build_number.mak index 1fd6a46c..e46fcba7 100644 --- a/.deb_build_number.mak +++ b/.deb_build_number.mak @@ -1,3 +1,3 @@ # This file is generated by Makefile "make deb_build_number" -DEB_PKG_VERSION := 1.3.7 +DEB_PKG_VERSION := 1.3.8 DEB_BUILD_NUMBER := 0000 diff --git a/BRANDING.mak b/BRANDING.mak index cc90b4a7..52398c8b 100644 --- a/BRANDING.mak +++ b/BRANDING.mak @@ -3,7 +3,7 @@ VERSION_MAJOR = 1 VERSION_MINOR = 3 -VERSION_MICRO = 7 +VERSION_MICRO = 8 BRANDING_SHORTNAME = mainline BRANDING_LONGNAME = Ubuntu Mainline Kernel Installer BRANDING_AUTHORNAME = Brian K. White diff --git a/debian/changelog b/debian/changelog index ff87ca95..a9fba183 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +mainline (1.3.8) UNRELEASED; urgency=medium + + * Configurable auth command, so you can use sudo or gksudo etc instead of pkexec. + * Configurable mainline-ppa url. + + -- Brian K. White Sat, 03 Jun 2023 09:01:23 -0400 + mainline (1.3.7) unstable; urgency=medium * ditch the progress window, show progress in the status line diff --git a/po/de.po b/po/de.po index 284d43e9..19513da5 100644 --- a/po/de.po +++ b/po/de.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-03 06:21-0400\n" +"POT-Creation-Date: 2023-06-03 08:40-0400\n" "PO-Revision-Date: 2023-02-20 18:40+0100\n" "Last-Translator: Marvin Meysel \n" "Language-Team: German\n" @@ -181,16 +181,16 @@ msgstr "Die folgenden Kernel werden deinstalliert" msgid "Continue ?" msgstr "Weiter ?" -#: src/Common/LinuxKernel.vala:1141 src/Console/AppConsole.vala:211 +#: src/Common/LinuxKernel.vala:1141 src/Console/AppConsole.vala:208 msgid "Latest update" msgstr "Neustes Update" -#: src/Common/LinuxKernel.vala:1152 src/Console/AppConsole.vala:218 +#: src/Common/LinuxKernel.vala:1152 src/Console/AppConsole.vala:215 msgid "Latest point update" msgstr "Letzte Punktaktualisierung" -#: src/Common/LinuxKernel.vala:1160 src/Console/AppConsole.vala:223 -#: src/Console/AppConsole.vala:243 +#: src/Common/LinuxKernel.vala:1160 src/Console/AppConsole.vala:220 +#: src/Console/AppConsole.vala:240 msgid "No updates found" msgstr "Keine Updates gefunden" @@ -199,21 +199,21 @@ msgstr "Keine Updates gefunden" msgid "Install Kernel Version %s ? (y/n): " msgstr "Kernel-Version %s installieren? (j/n):" -#: src/Common/Main.vala:340 +#: src/Common/Main.vala:346 msgid "Called from" msgstr "Angerufen von" -#: src/Common/Main.vala:340 +#: src/Common/Main.vala:346 msgid "at logon" msgstr "beim start" -#: src/Common/Main.vala:341 +#: src/Common/Main.vala:347 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" "Diese Datei wird überschrieben und erneut ausgeführt, wenn Einstellungen in" -#: src/Common/Main.vala:373 +#: src/Common/Main.vala:379 msgid "Notifications are disabled" msgstr "Benachrichtigungen sind deaktiviert" @@ -313,29 +313,30 @@ msgstr "" msgid "Locked kernels and the currently running kernel are ignored" msgstr "Der aktuell laufende Kernel wird immer ignoriert" -#: src/Console/AppConsole.vala:142 src/Console/AppConsole.vala:196 +#: src/Console/AppConsole.vala:139 src/Console/AppConsole.vala:193 #: src/Gtk/AppGtk.vala:111 msgid "Unknown option" msgstr "Unbekannte Option" -#: src/Console/AppConsole.vala:232 -msgid "Notifications disabled in settings" +#: src/Console/AppConsole.vala:229 +#, fuzzy +msgid "Notifications disabled" msgstr "Benachrichtigungen sind deaktiviert" -#: src/Console/AppConsole.vala:265 +#: src/Console/AppConsole.vala:262 #, c-format msgid "Kernel %s Available" msgstr "Kernel %s verfügbar" -#: src/Console/AppConsole.vala:269 src/Gtk/SettingsDialog.vala:154 +#: src/Console/AppConsole.vala:266 src/Gtk/SettingsDialog.vala:154 msgid "Show" msgstr "Zeigen" -#: src/Console/AppConsole.vala:270 src/Gtk/MainWindow.vala:305 +#: src/Console/AppConsole.vala:267 src/Gtk/MainWindow.vala:305 msgid "Install" msgstr "Installieren" -#: src/Console/AppConsole.vala:273 +#: src/Console/AppConsole.vala:270 msgid "Previously notified" msgstr "Zuvor gemeldet" @@ -528,7 +529,12 @@ msgstr "Überprüfen von Prüfsummen mit den PRÜFSUMMEN-Dateien" msgid "Proxy" msgstr "Stellvertreter" -#: src/Gtk/SettingsDialog.vala:249 +#: src/Gtk/SettingsDialog.vala:252 +#, fuzzy +msgid "Auth Command" +msgstr "Befehle" + +#: src/Gtk/SettingsDialog.vala:273 msgid "Done" msgstr "" diff --git a/po/el.po b/po/el.po index 20732940..14f7812f 100644 --- a/po/el.po +++ b/po/el.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-03 06:21-0400\n" +"POT-Creation-Date: 2023-06-03 08:40-0400\n" "PO-Revision-Date: 2023-01-10 02:03-0600\n" "Last-Translator: Vasilis Kosmidis \n" "Language-Team: Greek\n" @@ -181,16 +181,16 @@ msgstr "Θα καταργηθεί η εγκατάσταση των ακόλου msgid "Continue ?" msgstr "Συνέχεια;" -#: src/Common/LinuxKernel.vala:1141 src/Console/AppConsole.vala:211 +#: src/Common/LinuxKernel.vala:1141 src/Console/AppConsole.vala:208 msgid "Latest update" msgstr "Τελευταία αναβάθμιση" -#: src/Common/LinuxKernel.vala:1152 src/Console/AppConsole.vala:218 +#: src/Common/LinuxKernel.vala:1152 src/Console/AppConsole.vala:215 msgid "Latest point update" msgstr "Τελευταία ενημέρωση συντήρησης" -#: src/Common/LinuxKernel.vala:1160 src/Console/AppConsole.vala:223 -#: src/Console/AppConsole.vala:243 +#: src/Common/LinuxKernel.vala:1160 src/Console/AppConsole.vala:220 +#: src/Console/AppConsole.vala:240 msgid "No updates found" msgstr "Δεν βρέθηκαν ενημερώσεις" @@ -199,22 +199,22 @@ msgstr "Δεν βρέθηκαν ενημερώσεις" msgid "Install Kernel Version %s ? (y/n): " msgstr "Εγκατάσταση του πυρήνα έκδοσης %s ; (ν/ό):" -#: src/Common/Main.vala:340 +#: src/Common/Main.vala:346 msgid "Called from" msgstr "Κλήθηκε από" -#: src/Common/Main.vala:340 +#: src/Common/Main.vala:346 msgid "at logon" msgstr "κατά την εκκίνηση" -#: src/Common/Main.vala:341 +#: src/Common/Main.vala:347 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" "Αυτό το αρχείο αντικαθίσταται και εκτελείται ξανά κάθε φορά που " "αποθηκεύονται οι ρυθμίσεις στο" -#: src/Common/Main.vala:373 +#: src/Common/Main.vala:379 msgid "Notifications are disabled" msgstr "Οι ειδοποιήσεις είναι απενεργοποιημένες" @@ -314,29 +314,30 @@ msgstr "" msgid "Locked kernels and the currently running kernel are ignored" msgstr "Αυτός ο πυρήνας είναι ήδη εγκατεστημένος." -#: src/Console/AppConsole.vala:142 src/Console/AppConsole.vala:196 +#: src/Console/AppConsole.vala:139 src/Console/AppConsole.vala:193 #: src/Gtk/AppGtk.vala:111 msgid "Unknown option" msgstr "Άγνωστη επιλογή" -#: src/Console/AppConsole.vala:232 -msgid "Notifications disabled in settings" -msgstr "Οι ειδοποιήσεις είναι απενεργοποιημένες στις ρυθμίσεις" +#: src/Console/AppConsole.vala:229 +#, fuzzy +msgid "Notifications disabled" +msgstr "Οι ειδοποιήσεις είναι απενεργοποιημένες" -#: src/Console/AppConsole.vala:265 +#: src/Console/AppConsole.vala:262 #, c-format msgid "Kernel %s Available" msgstr "Πυρήνας %s διαθέσιμος" -#: src/Console/AppConsole.vala:269 src/Gtk/SettingsDialog.vala:154 +#: src/Console/AppConsole.vala:266 src/Gtk/SettingsDialog.vala:154 msgid "Show" msgstr "Προβολή" -#: src/Console/AppConsole.vala:270 src/Gtk/MainWindow.vala:305 +#: src/Console/AppConsole.vala:267 src/Gtk/MainWindow.vala:305 msgid "Install" msgstr "Εγκατάσταση" -#: src/Console/AppConsole.vala:273 +#: src/Console/AppConsole.vala:270 msgid "Previously notified" msgstr "Έχει ήδη κοινοποιηθεί" @@ -529,7 +530,12 @@ msgstr "Επαλήθευση αθροισμάτων ελέγχου με τα α msgid "Proxy" msgstr "Διακομιστής" -#: src/Gtk/SettingsDialog.vala:249 +#: src/Gtk/SettingsDialog.vala:252 +#, fuzzy +msgid "Auth Command" +msgstr "Εντολές" + +#: src/Gtk/SettingsDialog.vala:273 msgid "Done" msgstr "" diff --git a/po/es.po b/po/es.po index bcade4d3..f07a4d39 100644 --- a/po/es.po +++ b/po/es.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-03 06:21-0400\n" +"POT-Creation-Date: 2023-06-03 08:40-0400\n" "PO-Revision-Date: 2018-01-03 02:03-0600\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish\n" @@ -181,16 +181,16 @@ msgstr "Se desinstalarán los siguientes kernels" msgid "Continue ?" msgstr "¿Continuar?" -#: src/Common/LinuxKernel.vala:1141 src/Console/AppConsole.vala:211 +#: src/Common/LinuxKernel.vala:1141 src/Console/AppConsole.vala:208 msgid "Latest update" msgstr "Última actualización" -#: src/Common/LinuxKernel.vala:1152 src/Console/AppConsole.vala:218 +#: src/Common/LinuxKernel.vala:1152 src/Console/AppConsole.vala:215 msgid "Latest point update" msgstr "Última actualización puntual" -#: src/Common/LinuxKernel.vala:1160 src/Console/AppConsole.vala:223 -#: src/Console/AppConsole.vala:243 +#: src/Common/LinuxKernel.vala:1160 src/Console/AppConsole.vala:220 +#: src/Console/AppConsole.vala:240 msgid "No updates found" msgstr "No se encontró ninguna actualización" @@ -199,22 +199,22 @@ msgstr "No se encontró ninguna actualización" msgid "Install Kernel Version %s ? (y/n): " msgstr "Instalar la versión del kernel %s? (s/n): " -#: src/Common/Main.vala:340 +#: src/Common/Main.vala:346 msgid "Called from" msgstr "Llamado desde" -#: src/Common/Main.vala:340 +#: src/Common/Main.vala:346 msgid "at logon" msgstr "al inicio" -#: src/Common/Main.vala:341 +#: src/Common/Main.vala:347 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" "Este archivo se sobrescribe y se ejecuta de nuevo cada vez que se guarda la " "configuración en" -#: src/Common/Main.vala:373 +#: src/Common/Main.vala:379 msgid "Notifications are disabled" msgstr "Las notificaciones están deshabilitadas" @@ -313,29 +313,30 @@ msgstr "" msgid "Locked kernels and the currently running kernel are ignored" msgstr "El kernel que se está ejecutando actualmente siempre será ignorado" -#: src/Console/AppConsole.vala:142 src/Console/AppConsole.vala:196 +#: src/Console/AppConsole.vala:139 src/Console/AppConsole.vala:193 #: src/Gtk/AppGtk.vala:111 msgid "Unknown option" msgstr "Opción desconocida" -#: src/Console/AppConsole.vala:232 -msgid "Notifications disabled in settings" -msgstr "Notificaciones deshabilitadas en la configuración" +#: src/Console/AppConsole.vala:229 +#, fuzzy +msgid "Notifications disabled" +msgstr "Las notificaciones están deshabilitadas" -#: src/Console/AppConsole.vala:265 +#: src/Console/AppConsole.vala:262 #, c-format msgid "Kernel %s Available" msgstr "Kernel %s Disponible" -#: src/Console/AppConsole.vala:269 src/Gtk/SettingsDialog.vala:154 +#: src/Console/AppConsole.vala:266 src/Gtk/SettingsDialog.vala:154 msgid "Show" msgstr "Mostrar" -#: src/Console/AppConsole.vala:270 src/Gtk/MainWindow.vala:305 +#: src/Console/AppConsole.vala:267 src/Gtk/MainWindow.vala:305 msgid "Install" msgstr "Instalar" -#: src/Console/AppConsole.vala:273 +#: src/Console/AppConsole.vala:270 msgid "Previously notified" msgstr "Notificado previamente" @@ -529,7 +530,12 @@ msgstr "Verificar sumas de comprobación con los archivos CHECKSUMS" msgid "Proxy" msgstr "Proxy" -#: src/Gtk/SettingsDialog.vala:249 +#: src/Gtk/SettingsDialog.vala:252 +#, fuzzy +msgid "Auth Command" +msgstr "Comandos" + +#: src/Gtk/SettingsDialog.vala:273 msgid "Done" msgstr "" diff --git a/po/fr.po b/po/fr.po index df4f8402..f715f312 100644 --- a/po/fr.po +++ b/po/fr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-03 06:21-0400\n" +"POT-Creation-Date: 2023-06-03 08:40-0400\n" "PO-Revision-Date: 2018-08-05 15:50+0200\n" "Last-Translator: Yolateng0 \n" "Language-Team: French\n" @@ -181,16 +181,16 @@ msgstr "Les noyaux suivants seront désinstallés" msgid "Continue ?" msgstr "Reprendre ?" -#: src/Common/LinuxKernel.vala:1141 src/Console/AppConsole.vala:211 +#: src/Common/LinuxKernel.vala:1141 src/Console/AppConsole.vala:208 msgid "Latest update" msgstr "Dernière mise à jour" -#: src/Common/LinuxKernel.vala:1152 src/Console/AppConsole.vala:218 +#: src/Common/LinuxKernel.vala:1152 src/Console/AppConsole.vala:215 msgid "Latest point update" msgstr "Dernière mise à jour mineure" -#: src/Common/LinuxKernel.vala:1160 src/Console/AppConsole.vala:223 -#: src/Console/AppConsole.vala:243 +#: src/Common/LinuxKernel.vala:1160 src/Console/AppConsole.vala:220 +#: src/Console/AppConsole.vala:240 msgid "No updates found" msgstr "Aucune mise à jour disponible" @@ -199,22 +199,22 @@ msgstr "Aucune mise à jour disponible" msgid "Install Kernel Version %s ? (y/n): " msgstr "Installer le noyau en version %s ? (y/n): " -#: src/Common/Main.vala:340 +#: src/Common/Main.vala:346 msgid "Called from" msgstr "Appelé à partir de" -#: src/Common/Main.vala:340 +#: src/Common/Main.vala:346 msgid "at logon" msgstr "au démarrage" -#: src/Common/Main.vala:341 +#: src/Common/Main.vala:347 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" "Ce fichier est écrasé et exécuté à nouveau chaque fois que les paramètres " "sont enregistrés dans" -#: src/Common/Main.vala:373 +#: src/Common/Main.vala:379 msgid "Notifications are disabled" msgstr "Les notifications sont désactivées" @@ -313,29 +313,30 @@ msgstr "" msgid "Locked kernels and the currently running kernel are ignored" msgstr "Le noyau en cours d'exécution sera toujours ignoré" -#: src/Console/AppConsole.vala:142 src/Console/AppConsole.vala:196 +#: src/Console/AppConsole.vala:139 src/Console/AppConsole.vala:193 #: src/Gtk/AppGtk.vala:111 msgid "Unknown option" msgstr "Option inconnue" -#: src/Console/AppConsole.vala:232 -msgid "Notifications disabled in settings" -msgstr "Notifications désactivées dans les paramètres" +#: src/Console/AppConsole.vala:229 +#, fuzzy +msgid "Notifications disabled" +msgstr "Les notifications sont désactivées" -#: src/Console/AppConsole.vala:265 +#: src/Console/AppConsole.vala:262 #, c-format msgid "Kernel %s Available" msgstr "Paquet %s disponibles" -#: src/Console/AppConsole.vala:269 src/Gtk/SettingsDialog.vala:154 +#: src/Console/AppConsole.vala:266 src/Gtk/SettingsDialog.vala:154 msgid "Show" msgstr "Montrer" -#: src/Console/AppConsole.vala:270 src/Gtk/MainWindow.vala:305 +#: src/Console/AppConsole.vala:267 src/Gtk/MainWindow.vala:305 msgid "Install" msgstr "Installer" -#: src/Console/AppConsole.vala:273 +#: src/Console/AppConsole.vala:270 msgid "Previously notified" msgstr "Précédemment notifié" @@ -530,7 +531,12 @@ msgstr "Vérifier les sommes de contrôle avec les fichiers CHECKSUMS" msgid "Proxy" msgstr "Proxy" -#: src/Gtk/SettingsDialog.vala:249 +#: src/Gtk/SettingsDialog.vala:252 +#, fuzzy +msgid "Auth Command" +msgstr "Commandes" + +#: src/Gtk/SettingsDialog.vala:273 msgid "Done" msgstr "" diff --git a/po/hr.po b/po/hr.po index 0c1714fa..7df5bbc2 100644 --- a/po/hr.po +++ b/po/hr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-03 06:21-0400\n" +"POT-Creation-Date: 2023-06-03 08:40-0400\n" "PO-Revision-Date: 2022-09-22 12:13+0200\n" "Last-Translator: gogo \n" "Language-Team: Croatian\n" @@ -181,16 +181,16 @@ msgstr "Deinstalirat će se sljedeće kerneli" msgid "Continue ?" msgstr "Nastavi?" -#: src/Common/LinuxKernel.vala:1141 src/Console/AppConsole.vala:211 +#: src/Common/LinuxKernel.vala:1141 src/Console/AppConsole.vala:208 msgid "Latest update" msgstr "Najnovija nadopuna" -#: src/Common/LinuxKernel.vala:1152 src/Console/AppConsole.vala:218 +#: src/Common/LinuxKernel.vala:1152 src/Console/AppConsole.vala:215 msgid "Latest point update" msgstr "Najnovija ciljana nadopuna" -#: src/Common/LinuxKernel.vala:1160 src/Console/AppConsole.vala:223 -#: src/Console/AppConsole.vala:243 +#: src/Common/LinuxKernel.vala:1160 src/Console/AppConsole.vala:220 +#: src/Console/AppConsole.vala:240 msgid "No updates found" msgstr "Nema pronađenih nadopuna" @@ -199,21 +199,21 @@ msgstr "Nema pronađenih nadopuna" msgid "Install Kernel Version %s ? (y/n): " msgstr "Instaliraj kernel inačice %s ? (d/n): " -#: src/Common/Main.vala:340 +#: src/Common/Main.vala:346 msgid "Called from" msgstr "Pozvano od" -#: src/Common/Main.vala:340 +#: src/Common/Main.vala:346 msgid "at logon" msgstr "indításkor" -#: src/Common/Main.vala:341 +#: src/Common/Main.vala:347 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" "Ova se datoteka prepisuje i ponovno izvršava kad god se postavke spremaju u" -#: src/Common/Main.vala:373 +#: src/Common/Main.vala:379 msgid "Notifications are disabled" msgstr "Obavijesti su onemogućene" @@ -312,29 +312,30 @@ msgstr "" msgid "Locked kernels and the currently running kernel are ignored" msgstr "Trenutno pokrenuta jezgra uvijek će se zanemariti" -#: src/Console/AppConsole.vala:142 src/Console/AppConsole.vala:196 +#: src/Console/AppConsole.vala:139 src/Console/AppConsole.vala:193 #: src/Gtk/AppGtk.vala:111 msgid "Unknown option" msgstr "Nepoznata mogućnost" -#: src/Console/AppConsole.vala:232 -msgid "Notifications disabled in settings" -msgstr "Obavijesti onemogućene u postavkama" +#: src/Console/AppConsole.vala:229 +#, fuzzy +msgid "Notifications disabled" +msgstr "Obavijesti su onemogućene" -#: src/Console/AppConsole.vala:265 +#: src/Console/AppConsole.vala:262 #, c-format msgid "Kernel %s Available" msgstr "Kernel %s je dostupan" -#: src/Console/AppConsole.vala:269 src/Gtk/SettingsDialog.vala:154 +#: src/Console/AppConsole.vala:266 src/Gtk/SettingsDialog.vala:154 msgid "Show" msgstr "Prikaži" -#: src/Console/AppConsole.vala:270 src/Gtk/MainWindow.vala:305 +#: src/Console/AppConsole.vala:267 src/Gtk/MainWindow.vala:305 msgid "Install" msgstr "Instaliraj" -#: src/Console/AppConsole.vala:273 +#: src/Console/AppConsole.vala:270 msgid "Previously notified" msgstr "Prethodno prijavljeno" @@ -527,7 +528,12 @@ msgstr "Provjera kontrolnih zbrojeva pomoću CHECKSUMS datoteka" msgid "Proxy" msgstr "Proxy" -#: src/Gtk/SettingsDialog.vala:249 +#: src/Gtk/SettingsDialog.vala:252 +#, fuzzy +msgid "Auth Command" +msgstr "Naredbe" + +#: src/Gtk/SettingsDialog.vala:273 msgid "Done" msgstr "" diff --git a/po/it.po b/po/it.po index 89a4a7c2..78618ef1 100644 --- a/po/it.po +++ b/po/it.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-03 06:21-0400\n" +"POT-Creation-Date: 2023-06-03 08:40-0400\n" "PO-Revision-Date: 2020-08-22 15:35+0100\n" "Last-Translator: Demetrio Mendozzi\n" "Language-Team: Italian\n" @@ -179,16 +179,16 @@ msgstr "I seguenti kernel saranno rimossi" msgid "Continue ?" msgstr "Continuare ?" -#: src/Common/LinuxKernel.vala:1141 src/Console/AppConsole.vala:211 +#: src/Common/LinuxKernel.vala:1141 src/Console/AppConsole.vala:208 msgid "Latest update" msgstr "Ultimo aggiornamento" -#: src/Common/LinuxKernel.vala:1152 src/Console/AppConsole.vala:218 +#: src/Common/LinuxKernel.vala:1152 src/Console/AppConsole.vala:215 msgid "Latest point update" msgstr "Ultimo aggiornamento del rilascio parziale" -#: src/Common/LinuxKernel.vala:1160 src/Console/AppConsole.vala:223 -#: src/Console/AppConsole.vala:243 +#: src/Common/LinuxKernel.vala:1160 src/Console/AppConsole.vala:220 +#: src/Console/AppConsole.vala:240 msgid "No updates found" msgstr "Nessun aggiornamento trovato" @@ -197,22 +197,22 @@ msgstr "Nessun aggiornamento trovato" msgid "Install Kernel Version %s ? (y/n): " msgstr "Installare la versione del kernel %s ? (y/n): " -#: src/Common/Main.vala:340 +#: src/Common/Main.vala:346 msgid "Called from" msgstr "Chiamato da" -#: src/Common/Main.vala:340 +#: src/Common/Main.vala:346 msgid "at logon" msgstr "all'avvio" -#: src/Common/Main.vala:341 +#: src/Common/Main.vala:347 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" "Questo file viene sovrascritto ed eseguito nuovamente ogni volta che vengono " "salvate le impostazioni" -#: src/Common/Main.vala:373 +#: src/Common/Main.vala:379 msgid "Notifications are disabled" msgstr "Le notifiche sono disabilitate" @@ -313,29 +313,30 @@ msgstr "" msgid "Locked kernels and the currently running kernel are ignored" msgstr "Il kernel attualmente in esecuzione sarà sempre ignorato" -#: src/Console/AppConsole.vala:142 src/Console/AppConsole.vala:196 +#: src/Console/AppConsole.vala:139 src/Console/AppConsole.vala:193 #: src/Gtk/AppGtk.vala:111 msgid "Unknown option" msgstr "Opzione sconosciuta" -#: src/Console/AppConsole.vala:232 -msgid "Notifications disabled in settings" +#: src/Console/AppConsole.vala:229 +#, fuzzy +msgid "Notifications disabled" msgstr "Le notifiche sono disabilitate" -#: src/Console/AppConsole.vala:265 +#: src/Console/AppConsole.vala:262 #, c-format msgid "Kernel %s Available" msgstr "Kernel %s Disponibile" -#: src/Console/AppConsole.vala:269 src/Gtk/SettingsDialog.vala:154 +#: src/Console/AppConsole.vala:266 src/Gtk/SettingsDialog.vala:154 msgid "Show" msgstr "Mostra" -#: src/Console/AppConsole.vala:270 src/Gtk/MainWindow.vala:305 +#: src/Console/AppConsole.vala:267 src/Gtk/MainWindow.vala:305 msgid "Install" msgstr "Installa" -#: src/Console/AppConsole.vala:273 +#: src/Console/AppConsole.vala:270 msgid "Previously notified" msgstr "Notificato in precedenza" @@ -528,7 +529,12 @@ msgstr "Verifica dei checksum con i file CHECKSUMS" msgid "Proxy" msgstr "Proxy" -#: src/Gtk/SettingsDialog.vala:249 +#: src/Gtk/SettingsDialog.vala:252 +#, fuzzy +msgid "Auth Command" +msgstr "Comandi" + +#: src/Gtk/SettingsDialog.vala:273 msgid "Done" msgstr "" diff --git a/po/ko.po b/po/ko.po index bda8dd79..921fc3b5 100644 --- a/po/ko.po +++ b/po/ko.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-03 06:21-0400\n" +"POT-Creation-Date: 2023-06-03 08:40-0400\n" "PO-Revision-Date: 2022-09-28 11:48+0900\n" "Last-Translator: Kevin Kim \n" "Language-Team: Korean\n" @@ -181,16 +181,16 @@ msgstr "풀이" msgid "Continue ?" msgstr "계속하시겠습니까?" -#: src/Common/LinuxKernel.vala:1141 src/Console/AppConsole.vala:211 +#: src/Common/LinuxKernel.vala:1141 src/Console/AppConsole.vala:208 msgid "Latest update" msgstr "최신 업데이트" -#: src/Common/LinuxKernel.vala:1152 src/Console/AppConsole.vala:218 +#: src/Common/LinuxKernel.vala:1152 src/Console/AppConsole.vala:215 msgid "Latest point update" msgstr "최신 포인트 업데이트" -#: src/Common/LinuxKernel.vala:1160 src/Console/AppConsole.vala:223 -#: src/Console/AppConsole.vala:243 +#: src/Common/LinuxKernel.vala:1160 src/Console/AppConsole.vala:220 +#: src/Console/AppConsole.vala:240 msgid "No updates found" msgstr "업데이트를 찾을 수 없습니다" @@ -199,20 +199,20 @@ msgstr "업데이트를 찾을 수 없습니다" msgid "Install Kernel Version %s ? (y/n): " msgstr "커널 %s 버전을 설치하시겠습니까? (y/n): " -#: src/Common/Main.vala:340 +#: src/Common/Main.vala:346 msgid "Called from" msgstr "에서 호출" -#: src/Common/Main.vala:340 +#: src/Common/Main.vala:346 msgid "at logon" msgstr "로그온 시" -#: src/Common/Main.vala:341 +#: src/Common/Main.vala:347 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "이 파일은 덮어쓰고 설정이 저장될 때마다 다시 실행됩니다." -#: src/Common/Main.vala:373 +#: src/Common/Main.vala:379 msgid "Notifications are disabled" msgstr "알림이 비활성화 되었습니다" @@ -311,29 +311,30 @@ msgstr "" msgid "Locked kernels and the currently running kernel are ignored" msgstr "현재 실행중인 커널은 항상 무시됩니다" -#: src/Console/AppConsole.vala:142 src/Console/AppConsole.vala:196 +#: src/Console/AppConsole.vala:139 src/Console/AppConsole.vala:193 #: src/Gtk/AppGtk.vala:111 msgid "Unknown option" msgstr "알 수 없는 옵션" -#: src/Console/AppConsole.vala:232 -msgid "Notifications disabled in settings" -msgstr "설정에서 비활성화된 알림" +#: src/Console/AppConsole.vala:229 +#, fuzzy +msgid "Notifications disabled" +msgstr "알림이 비활성화 되었습니다" -#: src/Console/AppConsole.vala:265 +#: src/Console/AppConsole.vala:262 #, c-format msgid "Kernel %s Available" msgstr "커널 %s 사용 가능" -#: src/Console/AppConsole.vala:269 src/Gtk/SettingsDialog.vala:154 +#: src/Console/AppConsole.vala:266 src/Gtk/SettingsDialog.vala:154 msgid "Show" msgstr "보이기" -#: src/Console/AppConsole.vala:270 src/Gtk/MainWindow.vala:305 +#: src/Console/AppConsole.vala:267 src/Gtk/MainWindow.vala:305 msgid "Install" msgstr "설치" -#: src/Console/AppConsole.vala:273 +#: src/Console/AppConsole.vala:270 msgid "Previously notified" msgstr "이전에 통보됨" @@ -526,7 +527,12 @@ msgstr "CHECKSUMS 파일로 체크섬 확인" msgid "Proxy" msgstr "대리" -#: src/Gtk/SettingsDialog.vala:249 +#: src/Gtk/SettingsDialog.vala:252 +#, fuzzy +msgid "Auth Command" +msgstr "명령어" + +#: src/Gtk/SettingsDialog.vala:273 msgid "Done" msgstr "" diff --git a/po/messages.pot b/po/messages.pot index eb14edc8..d081946b 100644 --- a/po/messages.pot +++ b/po/messages.pot @@ -6,9 +6,9 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: mainline 1.3.7\n" +"Project-Id-Version: mainline 1.3.8\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-03 06:21-0400\n" +"POT-Creation-Date: 2023-06-03 08:59-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -178,16 +178,16 @@ msgstr "" msgid "Continue ?" msgstr "" -#: src/Common/LinuxKernel.vala:1141 src/Console/AppConsole.vala:211 +#: src/Common/LinuxKernel.vala:1141 src/Console/AppConsole.vala:208 msgid "Latest update" msgstr "" -#: src/Common/LinuxKernel.vala:1152 src/Console/AppConsole.vala:218 +#: src/Common/LinuxKernel.vala:1152 src/Console/AppConsole.vala:215 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:1160 src/Console/AppConsole.vala:223 -#: src/Console/AppConsole.vala:243 +#: src/Common/LinuxKernel.vala:1160 src/Console/AppConsole.vala:220 +#: src/Console/AppConsole.vala:240 msgid "No updates found" msgstr "" @@ -196,20 +196,20 @@ msgstr "" msgid "Install Kernel Version %s ? (y/n): " msgstr "" -#: src/Common/Main.vala:340 +#: src/Common/Main.vala:346 msgid "Called from" msgstr "" -#: src/Common/Main.vala:340 +#: src/Common/Main.vala:346 msgid "at logon" msgstr "" -#: src/Common/Main.vala:341 +#: src/Common/Main.vala:347 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" -#: src/Common/Main.vala:373 +#: src/Common/Main.vala:379 msgid "Notifications are disabled" msgstr "" @@ -302,29 +302,29 @@ msgstr "" msgid "Locked kernels and the currently running kernel are ignored" msgstr "" -#: src/Console/AppConsole.vala:142 src/Console/AppConsole.vala:196 +#: src/Console/AppConsole.vala:139 src/Console/AppConsole.vala:193 #: src/Gtk/AppGtk.vala:111 msgid "Unknown option" msgstr "" -#: src/Console/AppConsole.vala:232 -msgid "Notifications disabled in settings" +#: src/Console/AppConsole.vala:229 +msgid "Notifications disabled" msgstr "" -#: src/Console/AppConsole.vala:265 +#: src/Console/AppConsole.vala:262 #, c-format msgid "Kernel %s Available" msgstr "" -#: src/Console/AppConsole.vala:269 src/Gtk/SettingsDialog.vala:154 +#: src/Console/AppConsole.vala:266 src/Gtk/SettingsDialog.vala:154 msgid "Show" msgstr "" -#: src/Console/AppConsole.vala:270 src/Gtk/MainWindow.vala:305 +#: src/Console/AppConsole.vala:267 src/Gtk/MainWindow.vala:305 msgid "Install" msgstr "" -#: src/Console/AppConsole.vala:273 +#: src/Console/AppConsole.vala:270 msgid "Previously notified" msgstr "" @@ -517,7 +517,11 @@ msgstr "" msgid "Proxy" msgstr "" -#: src/Gtk/SettingsDialog.vala:249 +#: src/Gtk/SettingsDialog.vala:252 +msgid "Auth Command" +msgstr "" + +#: src/Gtk/SettingsDialog.vala:273 msgid "Done" msgstr "" diff --git a/po/nl.po b/po/nl.po index 6907a502..046eadf1 100644 --- a/po/nl.po +++ b/po/nl.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-03 06:21-0400\n" +"POT-Creation-Date: 2023-06-03 08:40-0400\n" "PO-Revision-Date: 2020-08-23 13:55+0200\n" "Last-Translator: Heimen Stoffels \n" "Language-Team: Dutch (Netherlands)\n" @@ -181,16 +181,16 @@ msgstr "De volgende kernels worden verwijderd" msgid "Continue ?" msgstr "Wilt u doorgaan?" -#: src/Common/LinuxKernel.vala:1141 src/Console/AppConsole.vala:211 +#: src/Common/LinuxKernel.vala:1141 src/Console/AppConsole.vala:208 msgid "Latest update" msgstr "Recentste update" -#: src/Common/LinuxKernel.vala:1152 src/Console/AppConsole.vala:218 +#: src/Common/LinuxKernel.vala:1152 src/Console/AppConsole.vala:215 msgid "Latest point update" msgstr "Recentste puntupdate" -#: src/Common/LinuxKernel.vala:1160 src/Console/AppConsole.vala:223 -#: src/Console/AppConsole.vala:243 +#: src/Common/LinuxKernel.vala:1160 src/Console/AppConsole.vala:220 +#: src/Console/AppConsole.vala:240 msgid "No updates found" msgstr "Geen updates gevonden" @@ -199,22 +199,22 @@ msgstr "Geen updates gevonden" msgid "Install Kernel Version %s ? (y/n): " msgstr "Wilt u versie %s installeren? (j/n): " -#: src/Common/Main.vala:340 +#: src/Common/Main.vala:346 msgid "Called from" msgstr "Aangeroepen door" -#: src/Common/Main.vala:340 +#: src/Common/Main.vala:346 msgid "at logon" msgstr "bij het opstarten" -#: src/Common/Main.vala:341 +#: src/Common/Main.vala:347 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" "Dit bestand wordt overschreven en opnieuw uitgevoerd wanneer instellingen " "worden opgeslagen in" -#: src/Common/Main.vala:373 +#: src/Common/Main.vala:379 msgid "Notifications are disabled" msgstr "Meldingen zijn uitgeschakeld" @@ -313,29 +313,30 @@ msgstr "" msgid "Locked kernels and the currently running kernel are ignored" msgstr "De momenteel actieve kernel wordt altijd genegeerd" -#: src/Console/AppConsole.vala:142 src/Console/AppConsole.vala:196 +#: src/Console/AppConsole.vala:139 src/Console/AppConsole.vala:193 #: src/Gtk/AppGtk.vala:111 msgid "Unknown option" msgstr "Onbekende optie" -#: src/Console/AppConsole.vala:232 -msgid "Notifications disabled in settings" -msgstr "Meldingen uitgeschakeld in instellingen" +#: src/Console/AppConsole.vala:229 +#, fuzzy +msgid "Notifications disabled" +msgstr "Meldingen zijn uitgeschakeld" -#: src/Console/AppConsole.vala:265 +#: src/Console/AppConsole.vala:262 #, c-format msgid "Kernel %s Available" msgstr "Kernel %s is beschikbaar" -#: src/Console/AppConsole.vala:269 src/Gtk/SettingsDialog.vala:154 +#: src/Console/AppConsole.vala:266 src/Gtk/SettingsDialog.vala:154 msgid "Show" msgstr "Tonen" -#: src/Console/AppConsole.vala:270 src/Gtk/MainWindow.vala:305 +#: src/Console/AppConsole.vala:267 src/Gtk/MainWindow.vala:305 msgid "Install" msgstr "Installeren" -#: src/Console/AppConsole.vala:273 +#: src/Console/AppConsole.vala:270 msgid "Previously notified" msgstr "Eerder gemeld" @@ -528,7 +529,12 @@ msgstr "Controleer controlesommen met de CHECKSUMS-bestanden" msgid "Proxy" msgstr "Proxy" -#: src/Gtk/SettingsDialog.vala:249 +#: src/Gtk/SettingsDialog.vala:252 +#, fuzzy +msgid "Auth Command" +msgstr "Opdrachten" + +#: src/Gtk/SettingsDialog.vala:273 msgid "Done" msgstr "" diff --git a/po/pl.po b/po/pl.po index 50adbd9a..a73468e0 100644 --- a/po/pl.po +++ b/po/pl.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-03 06:21-0400\n" +"POT-Creation-Date: 2023-06-03 08:40-0400\n" "PO-Revision-Date: 2023-05-25 13:37+0200\n" "Last-Translator: Matthaiks\n" "Language-Team: Polish\n" @@ -180,16 +180,16 @@ msgstr "Następujące jądra zostaną odinstalowane" msgid "Continue ?" msgstr "Kontynuować?" -#: src/Common/LinuxKernel.vala:1141 src/Console/AppConsole.vala:211 +#: src/Common/LinuxKernel.vala:1141 src/Console/AppConsole.vala:208 msgid "Latest update" msgstr "Najnowsza aktualizacja" -#: src/Common/LinuxKernel.vala:1152 src/Console/AppConsole.vala:218 +#: src/Common/LinuxKernel.vala:1152 src/Console/AppConsole.vala:215 msgid "Latest point update" msgstr "Najnowsza aktualizacja punktowa" -#: src/Common/LinuxKernel.vala:1160 src/Console/AppConsole.vala:223 -#: src/Console/AppConsole.vala:243 +#: src/Common/LinuxKernel.vala:1160 src/Console/AppConsole.vala:220 +#: src/Console/AppConsole.vala:240 msgid "No updates found" msgstr "Nie znaleziono aktualizacji" @@ -198,22 +198,22 @@ msgstr "Nie znaleziono aktualizacji" msgid "Install Kernel Version %s ? (y/n): " msgstr "Zainstalować wersję jądra %s? (t/n): " -#: src/Common/Main.vala:340 +#: src/Common/Main.vala:346 msgid "Called from" msgstr "Wywołano z" -#: src/Common/Main.vala:340 +#: src/Common/Main.vala:346 msgid "at logon" msgstr "przy logowaniu" -#: src/Common/Main.vala:341 +#: src/Common/Main.vala:347 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" "Ten plik jest nadpisywany i wykonywany ponownie za każdym razem, gdy " "ustawienia są zapisywane w" -#: src/Common/Main.vala:373 +#: src/Common/Main.vala:379 msgid "Notifications are disabled" msgstr "Powiadomienia są wyłączone" @@ -312,29 +312,30 @@ msgstr "" msgid "Locked kernels and the currently running kernel are ignored" msgstr "Aktualnie uruchomione jądro będzie zawsze ignorowane" -#: src/Console/AppConsole.vala:142 src/Console/AppConsole.vala:196 +#: src/Console/AppConsole.vala:139 src/Console/AppConsole.vala:193 #: src/Gtk/AppGtk.vala:111 msgid "Unknown option" msgstr "Nieznana opcja" -#: src/Console/AppConsole.vala:232 -msgid "Notifications disabled in settings" -msgstr "Powiadomienia wyłączone w ustawieniach" +#: src/Console/AppConsole.vala:229 +#, fuzzy +msgid "Notifications disabled" +msgstr "Powiadomienia są wyłączone" -#: src/Console/AppConsole.vala:265 +#: src/Console/AppConsole.vala:262 #, c-format msgid "Kernel %s Available" msgstr "Dostępne %s jądra" -#: src/Console/AppConsole.vala:269 src/Gtk/SettingsDialog.vala:154 +#: src/Console/AppConsole.vala:266 src/Gtk/SettingsDialog.vala:154 msgid "Show" msgstr "Pokaż" -#: src/Console/AppConsole.vala:270 src/Gtk/MainWindow.vala:305 +#: src/Console/AppConsole.vala:267 src/Gtk/MainWindow.vala:305 msgid "Install" msgstr "Zainstaluj" -#: src/Console/AppConsole.vala:273 +#: src/Console/AppConsole.vala:270 msgid "Previously notified" msgstr "Wcześniej powiadomiono" @@ -527,7 +528,12 @@ msgstr "Weryfikowanie sum kontrolnych za pomocą plików CHECKSUMS" msgid "Proxy" msgstr "Serwer pośredniczący" -#: src/Gtk/SettingsDialog.vala:249 +#: src/Gtk/SettingsDialog.vala:252 +#, fuzzy +msgid "Auth Command" +msgstr "Polecenia" + +#: src/Gtk/SettingsDialog.vala:273 msgid "Done" msgstr "" diff --git a/po/ru.po b/po/ru.po index 0043e388..070851b2 100644 --- a/po/ru.po +++ b/po/ru.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-03 06:21-0400\n" +"POT-Creation-Date: 2023-06-03 08:40-0400\n" "PO-Revision-Date: 2023-04-17 20:16+0300\n" "Last-Translator: Danik2343 \n" "Language-Team: Russian\n" @@ -181,16 +181,16 @@ msgstr "Следующие ядра будут удалены" msgid "Continue ?" msgstr "Продолжить ?" -#: src/Common/LinuxKernel.vala:1141 src/Console/AppConsole.vala:211 +#: src/Common/LinuxKernel.vala:1141 src/Console/AppConsole.vala:208 msgid "Latest update" msgstr "Последнее обновление" -#: src/Common/LinuxKernel.vala:1152 src/Console/AppConsole.vala:218 +#: src/Common/LinuxKernel.vala:1152 src/Console/AppConsole.vala:215 msgid "Latest point update" msgstr "Последнее обновление пунктов" -#: src/Common/LinuxKernel.vala:1160 src/Console/AppConsole.vala:223 -#: src/Console/AppConsole.vala:243 +#: src/Common/LinuxKernel.vala:1160 src/Console/AppConsole.vala:220 +#: src/Console/AppConsole.vala:240 msgid "No updates found" msgstr "Обновлений не найдено" @@ -199,21 +199,21 @@ msgstr "Обновлений не найдено" msgid "Install Kernel Version %s ? (y/n): " msgstr "Установить версию ядра %s ? (y/n): " -#: src/Common/Main.vala:340 +#: src/Common/Main.vala:346 msgid "Called from" msgstr "Вызван из" -#: src/Common/Main.vala:340 +#: src/Common/Main.vala:346 msgid "at logon" msgstr "при запуске" -#: src/Common/Main.vala:341 +#: src/Common/Main.vala:347 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" "Этот файл перезаписывается и выполняется снова при сохранении настроек в" -#: src/Common/Main.vala:373 +#: src/Common/Main.vala:379 msgid "Notifications are disabled" msgstr "Уведомления отключены" @@ -312,29 +312,30 @@ msgstr "" msgid "Locked kernels and the currently running kernel are ignored" msgstr "Текущее работающее ядро всегда будет игнорироваться" -#: src/Console/AppConsole.vala:142 src/Console/AppConsole.vala:196 +#: src/Console/AppConsole.vala:139 src/Console/AppConsole.vala:193 #: src/Gtk/AppGtk.vala:111 msgid "Unknown option" msgstr "Неизвестный параметр" -#: src/Console/AppConsole.vala:232 -msgid "Notifications disabled in settings" -msgstr "Уведомления отключены в настройках" +#: src/Console/AppConsole.vala:229 +#, fuzzy +msgid "Notifications disabled" +msgstr "Уведомления отключены" -#: src/Console/AppConsole.vala:265 +#: src/Console/AppConsole.vala:262 #, c-format msgid "Kernel %s Available" msgstr "Доступно ядро %s" -#: src/Console/AppConsole.vala:269 src/Gtk/SettingsDialog.vala:154 +#: src/Console/AppConsole.vala:266 src/Gtk/SettingsDialog.vala:154 msgid "Show" msgstr "Показать" -#: src/Console/AppConsole.vala:270 src/Gtk/MainWindow.vala:305 +#: src/Console/AppConsole.vala:267 src/Gtk/MainWindow.vala:305 msgid "Install" msgstr "Установить" -#: src/Console/AppConsole.vala:273 +#: src/Console/AppConsole.vala:270 msgid "Previously notified" msgstr "Предварительно уведомлено" @@ -527,7 +528,12 @@ msgstr "Проверка контрольных сумм с помощью фа msgid "Proxy" msgstr "Доверенность" -#: src/Gtk/SettingsDialog.vala:249 +#: src/Gtk/SettingsDialog.vala:252 +#, fuzzy +msgid "Auth Command" +msgstr "Комманды" + +#: src/Gtk/SettingsDialog.vala:273 msgid "Done" msgstr "" diff --git a/po/sv.po b/po/sv.po index 5aaae3e2..2b61b79f 100644 --- a/po/sv.po +++ b/po/sv.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-03 06:21-0400\n" +"POT-Creation-Date: 2023-06-03 08:40-0400\n" "PO-Revision-Date: 2018-01-13 16:56+0100\n" "Last-Translator: Åke Engelbrektson \n" "Language-Team:Swedish\n" @@ -181,16 +181,16 @@ msgstr "Följande kärnor kommer att avinstalleras" msgid "Continue ?" msgstr "Fortsätta?" -#: src/Common/LinuxKernel.vala:1141 src/Console/AppConsole.vala:211 +#: src/Common/LinuxKernel.vala:1141 src/Console/AppConsole.vala:208 msgid "Latest update" msgstr "Senaste uppdatering" -#: src/Common/LinuxKernel.vala:1152 src/Console/AppConsole.vala:218 +#: src/Common/LinuxKernel.vala:1152 src/Console/AppConsole.vala:215 msgid "Latest point update" msgstr "Senaste punktuppdatering" -#: src/Common/LinuxKernel.vala:1160 src/Console/AppConsole.vala:223 -#: src/Console/AppConsole.vala:243 +#: src/Common/LinuxKernel.vala:1160 src/Console/AppConsole.vala:220 +#: src/Console/AppConsole.vala:240 msgid "No updates found" msgstr "Inga uppdateringar hittades" @@ -199,20 +199,20 @@ msgstr "Inga uppdateringar hittades" msgid "Install Kernel Version %s ? (y/n): " msgstr "Installera kärnversion %s ? (j/n):" -#: src/Common/Main.vala:340 +#: src/Common/Main.vala:346 msgid "Called from" msgstr "Ringde från" -#: src/Common/Main.vala:340 +#: src/Common/Main.vala:346 msgid "at logon" msgstr "vid start" -#: src/Common/Main.vala:341 +#: src/Common/Main.vala:347 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "Den här filen skrivs över och körs igen när inställningar sparas i" -#: src/Common/Main.vala:373 +#: src/Common/Main.vala:379 msgid "Notifications are disabled" msgstr "Meddelanden är inaktiverade" @@ -311,29 +311,30 @@ msgstr "" msgid "Locked kernels and the currently running kernel are ignored" msgstr "Den kärna som för närvarande körs ignoreras alltid" -#: src/Console/AppConsole.vala:142 src/Console/AppConsole.vala:196 +#: src/Console/AppConsole.vala:139 src/Console/AppConsole.vala:193 #: src/Gtk/AppGtk.vala:111 msgid "Unknown option" msgstr "Okänt alternativ" -#: src/Console/AppConsole.vala:232 -msgid "Notifications disabled in settings" -msgstr "Meddelanden inaktiverade i inställningarna" +#: src/Console/AppConsole.vala:229 +#, fuzzy +msgid "Notifications disabled" +msgstr "Meddelanden är inaktiverade" -#: src/Console/AppConsole.vala:265 +#: src/Console/AppConsole.vala:262 #, c-format msgid "Kernel %s Available" msgstr "Kernel %s tillgängliga" -#: src/Console/AppConsole.vala:269 src/Gtk/SettingsDialog.vala:154 +#: src/Console/AppConsole.vala:266 src/Gtk/SettingsDialog.vala:154 msgid "Show" msgstr "Visa" -#: src/Console/AppConsole.vala:270 src/Gtk/MainWindow.vala:305 +#: src/Console/AppConsole.vala:267 src/Gtk/MainWindow.vala:305 msgid "Install" msgstr "Installera" -#: src/Console/AppConsole.vala:273 +#: src/Console/AppConsole.vala:270 msgid "Previously notified" msgstr "Tidigare anmält" @@ -526,7 +527,12 @@ msgstr "Verifiera kontrollsummor med CHECKSUMS-filerna" msgid "Proxy" msgstr "Proxyserver" -#: src/Gtk/SettingsDialog.vala:249 +#: src/Gtk/SettingsDialog.vala:252 +#, fuzzy +msgid "Auth Command" +msgstr "Kommandon" + +#: src/Gtk/SettingsDialog.vala:273 msgid "Done" msgstr "" diff --git a/po/tr.po b/po/tr.po index a93e7830..0c00cd8a 100644 --- a/po/tr.po +++ b/po/tr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-03 06:21-0400\n" +"POT-Creation-Date: 2023-06-03 08:40-0400\n" "PO-Revision-Date: 2022-08-06 16:48+0300\n" "Last-Translator: Sabri Ünal \n" "Language-Team: Turkish\n" @@ -181,17 +181,17 @@ msgstr "Aşağıdaki çekirdekler kaldırılacaktır" msgid "Continue ?" msgstr "Devam edilsin mi?" -#: src/Common/LinuxKernel.vala:1141 src/Console/AppConsole.vala:211 +#: src/Common/LinuxKernel.vala:1141 src/Console/AppConsole.vala:208 msgid "Latest update" msgstr "Son güncelleme" # Point burada point release anlamında kullanılıyor. Örneğin 5.10.x sayısının en sonundaki x rakamı point release/nokta sürüm oluyor. -#: src/Common/LinuxKernel.vala:1152 src/Console/AppConsole.vala:218 +#: src/Common/LinuxKernel.vala:1152 src/Console/AppConsole.vala:215 msgid "Latest point update" msgstr "Son nokta güncellemesi" -#: src/Common/LinuxKernel.vala:1160 src/Console/AppConsole.vala:223 -#: src/Console/AppConsole.vala:243 +#: src/Common/LinuxKernel.vala:1160 src/Console/AppConsole.vala:220 +#: src/Console/AppConsole.vala:240 msgid "No updates found" msgstr "Güncelleme bulunamadı" @@ -200,21 +200,21 @@ msgstr "Güncelleme bulunamadı" msgid "Install Kernel Version %s ? (y/n): " msgstr "Linux Çekirdek Sürümü %s Kurulsun mu? (e/h): " -#: src/Common/Main.vala:340 +#: src/Common/Main.vala:346 msgid "Called from" msgstr "Çağrı konumu" -#: src/Common/Main.vala:340 +#: src/Common/Main.vala:346 msgid "at logon" msgstr "başlangıçta" -#: src/Common/Main.vala:341 +#: src/Common/Main.vala:347 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" "Bu dosyanın üzerine yazılır ve ayarlar her kaydedildiğinde yeniden yürütülür" -#: src/Common/Main.vala:373 +#: src/Common/Main.vala:379 msgid "Notifications are disabled" msgstr "Bildirimler devre dışı bırakılmış" @@ -313,29 +313,30 @@ msgstr "" msgid "Locked kernels and the currently running kernel are ignored" msgstr "Şu anda çalışan çekirdek her zaman yoksayılır" -#: src/Console/AppConsole.vala:142 src/Console/AppConsole.vala:196 +#: src/Console/AppConsole.vala:139 src/Console/AppConsole.vala:193 #: src/Gtk/AppGtk.vala:111 msgid "Unknown option" msgstr "Bilinmeyen seçenek" -#: src/Console/AppConsole.vala:232 -msgid "Notifications disabled in settings" -msgstr "Ayarlarda devre dışı bırakılan bildirimler" +#: src/Console/AppConsole.vala:229 +#, fuzzy +msgid "Notifications disabled" +msgstr "Bildirimler devre dışı bırakılmış" -#: src/Console/AppConsole.vala:265 +#: src/Console/AppConsole.vala:262 #, c-format msgid "Kernel %s Available" msgstr "Çekirdek %s Kullanılabilir" -#: src/Console/AppConsole.vala:269 src/Gtk/SettingsDialog.vala:154 +#: src/Console/AppConsole.vala:266 src/Gtk/SettingsDialog.vala:154 msgid "Show" msgstr "Göster" -#: src/Console/AppConsole.vala:270 src/Gtk/MainWindow.vala:305 +#: src/Console/AppConsole.vala:267 src/Gtk/MainWindow.vala:305 msgid "Install" msgstr "Kur" -#: src/Console/AppConsole.vala:273 +#: src/Console/AppConsole.vala:270 msgid "Previously notified" msgstr "Daha önce bildirilmiş" @@ -528,7 +529,12 @@ msgstr "Sağlama toplamlarını CHECKSUMS dosyalarıyla doğrulama" msgid "Proxy" msgstr "Proxy" -#: src/Gtk/SettingsDialog.vala:249 +#: src/Gtk/SettingsDialog.vala:252 +#, fuzzy +msgid "Auth Command" +msgstr "Komutlar" + +#: src/Gtk/SettingsDialog.vala:273 msgid "Done" msgstr "" diff --git a/po/uk.po b/po/uk.po index ae8a8315..c97526ea 100644 --- a/po/uk.po +++ b/po/uk.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-03 06:21-0400\n" +"POT-Creation-Date: 2023-06-03 08:40-0400\n" "PO-Revision-Date: 2019-07-25 11:00+0300\n" "Last-Translator: Serhii Golovko \n" "Language-Team: Ukranian\n" @@ -182,16 +182,16 @@ msgstr "Наступні ядра будуть видалені" msgid "Continue ?" msgstr "Продовжувати ?" -#: src/Common/LinuxKernel.vala:1141 src/Console/AppConsole.vala:211 +#: src/Common/LinuxKernel.vala:1141 src/Console/AppConsole.vala:208 msgid "Latest update" msgstr "Останнє оновлення" -#: src/Common/LinuxKernel.vala:1152 src/Console/AppConsole.vala:218 +#: src/Common/LinuxKernel.vala:1152 src/Console/AppConsole.vala:215 msgid "Latest point update" msgstr "Остання точка оновлення" -#: src/Common/LinuxKernel.vala:1160 src/Console/AppConsole.vala:223 -#: src/Console/AppConsole.vala:243 +#: src/Common/LinuxKernel.vala:1160 src/Console/AppConsole.vala:220 +#: src/Console/AppConsole.vala:240 msgid "No updates found" msgstr "Оновлень не знайдено" @@ -200,21 +200,21 @@ msgstr "Оновлень не знайдено" msgid "Install Kernel Version %s ? (y/n): " msgstr "Встановити Ядро Версії %s ? (так/ні): " -#: src/Common/Main.vala:340 +#: src/Common/Main.vala:346 msgid "Called from" msgstr "Викликано з" -#: src/Common/Main.vala:340 +#: src/Common/Main.vala:346 msgid "at logon" msgstr "при запуску" -#: src/Common/Main.vala:341 +#: src/Common/Main.vala:347 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" "Цей файл перезаписується та виконується знову під час збереження налаштувань" -#: src/Common/Main.vala:373 +#: src/Common/Main.vala:379 msgid "Notifications are disabled" msgstr "Повідомлення вимкнено" @@ -313,29 +313,30 @@ msgstr "" msgid "Locked kernels and the currently running kernel are ignored" msgstr "Поточне ядро, що працює, завжди буде ігноруватися" -#: src/Console/AppConsole.vala:142 src/Console/AppConsole.vala:196 +#: src/Console/AppConsole.vala:139 src/Console/AppConsole.vala:193 #: src/Gtk/AppGtk.vala:111 msgid "Unknown option" msgstr "Невідомий параметр" -#: src/Console/AppConsole.vala:232 -msgid "Notifications disabled in settings" -msgstr "Сповіщення, вимкнені в налаштуваннях" +#: src/Console/AppConsole.vala:229 +#, fuzzy +msgid "Notifications disabled" +msgstr "Повідомлення вимкнено" -#: src/Console/AppConsole.vala:265 +#: src/Console/AppConsole.vala:262 #, c-format msgid "Kernel %s Available" msgstr "Ядро %s Доступне" -#: src/Console/AppConsole.vala:269 src/Gtk/SettingsDialog.vala:154 +#: src/Console/AppConsole.vala:266 src/Gtk/SettingsDialog.vala:154 msgid "Show" msgstr "Показати" -#: src/Console/AppConsole.vala:270 src/Gtk/MainWindow.vala:305 +#: src/Console/AppConsole.vala:267 src/Gtk/MainWindow.vala:305 msgid "Install" msgstr "Встановити" -#: src/Console/AppConsole.vala:273 +#: src/Console/AppConsole.vala:270 msgid "Previously notified" msgstr "Попередньо повідомлено" @@ -528,7 +529,12 @@ msgstr "Перевірка Контрольні суми за допомогою msgid "Proxy" msgstr "Проксі" -#: src/Gtk/SettingsDialog.vala:249 +#: src/Gtk/SettingsDialog.vala:252 +#, fuzzy +msgid "Auth Command" +msgstr "Команди" + +#: src/Gtk/SettingsDialog.vala:273 msgid "Done" msgstr "" diff --git a/settings.md b/settings.md index ef0bc2e5..f6e8d938 100644 --- a/settings.md +++ b/settings.md @@ -36,3 +36,13 @@ When downloading .deb packages, first download the CHECKSUMS file and extract th **Proxy \[ \]** proxy support via aria2c's [all-proxy](https://aria2.github.io/manual/en/html/aria2c.html#cmdoption-all-proxy) setting + +**mainline-ppa url +\[ \]** + +## Auth Command +\[pkexec env DISPLAY=${DISPLAY} XAUTHORITY=${XAUTHORITY} \]** +This is the "sudo" equivalent used internally to run `dpkg` as root. +pkexec can be difficult though, so if you need to, you can specify "sudo" or "gksudo" etc, or anything you want. +This probably most useful when ssh-ing in to a headless box where there is no desktop session or gdbus daemon runnning. +You can restore the built-in default by just blanking out the entire field and hitting Enter. diff --git a/src/Common/LinuxKernel.vala b/src/Common/LinuxKernel.vala index 172f292c..8b81bc76 100644 --- a/src/Common/LinuxKernel.vala +++ b/src/Common/LinuxKernel.vala @@ -558,7 +558,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { if (t.has_suffix("/")) t = t[0: t.length - 1]; version_main = t; - t = t.split("~")[0]; // old ubuntu versions in dpkg, not seen lately + t = t.split("~")[0]; if (t==null || t=="") t = "0"; kver = t; //vprint("\""+t+"\""); @@ -1017,7 +1017,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { // full paths instead of env -C // https://github.com/bkw777/mainline/issues/128 - string cmd = "pkexec env DISPLAY=${DISPLAY} XAUTHORITY=${XAUTHORITY} dpkg --install " + flist; + string cmd = App.auth_cmd+" dpkg --install " + flist; vprint(cmd,2); int r = Posix.system(cmd); foreach (var f in flist.split(" ")) delete_r(f); @@ -1052,7 +1052,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { pnames = pnames.strip(); if (pnames=="") { vprint(_("Uninstall: no uninstallable packages found"),1,stderr); return 1; } - string cmd = "pkexec env DISPLAY=${DISPLAY} XAUTHORITY=${XAUTHORITY} dpkg --purge " + pnames; + string cmd = App.auth_cmd+" dpkg --purge " + pnames; vprint(cmd,2); return Posix.system(cmd); } diff --git a/src/Common/Main.vala b/src/Common/Main.vala index 0f7029c4..6e7df49e 100644 --- a/src/Common/Main.vala +++ b/src/Common/Main.vala @@ -62,6 +62,8 @@ const int DEFAULT_NOTIFY_INTERVAL_VALUE = 4 ; // FIXME const int DEFAULT_NOTIFY_INTERVAL_UNIT = 0 ; // use enum // other const bool DEFAULT_VERIFY_CHECKSUMS = false ; +const string DEFAULT_AUTH_CMD = "pkexec env DISPLAY=${DISPLAY} XAUTHORITY=${XAUTHORITY}"; + // windows const int DEFAULT_WINDOW_WIDTH = 800 ; const int DEFAULT_WINDOW_HEIGHT = 600 ; @@ -118,6 +120,7 @@ public class Main : GLib.Object { public int notify_interval_unit = DEFAULT_NOTIFY_INTERVAL_UNIT; public int notify_interval_value = DEFAULT_NOTIFY_INTERVAL_VALUE; public bool verify_checksums = DEFAULT_VERIFY_CHECKSUMS; + public string auth_cmd = DEFAULT_AUTH_CMD; // save & restore window size & position public int window_width = DEFAULT_WINDOW_WIDTH; @@ -208,6 +211,7 @@ public class Main : GLib.Object { config.set_int_member( "notify_interval_unit", notify_interval_unit ); config.set_int_member( "notify_interval_value", notify_interval_value ); config.set_boolean_member( "verify_checksums", verify_checksums ); + config.set_string_member( "auth_cmd", auth_cmd ); config.set_int_member( "window_width", window_width ); config.set_int_member( "window_height", window_height ); config.set_int_member( "window_x", window_x ); @@ -269,6 +273,7 @@ public class Main : GLib.Object { notify_interval_unit = (int)config.get_int_member_with_default( "notify_interval_unit", DEFAULT_NOTIFY_INTERVAL_UNIT ); notify_interval_value = (int)config.get_int_member_with_default( "notify_interval_value", DEFAULT_NOTIFY_INTERVAL_VALUE ); verify_checksums = config.get_boolean_member_with_default( "verify_checksums", DEFAULT_VERIFY_CHECKSUMS ); + auth_cmd = config.get_string_member_with_default( "auth_cmd", DEFAULT_AUTH_CMD ); window_width = (int)config.get_int_member_with_default( "window_width", DEFAULT_WINDOW_WIDTH ); window_height = (int)config.get_int_member_with_default( "window_height", DEFAULT_WINDOW_HEIGHT ); window_x = (int)config.get_int_member_with_default( "window_x", DEFAULT_WINDOW_X ); @@ -290,6 +295,7 @@ public class Main : GLib.Object { notify_interval_unit = json_get_int( config, "notify_interval_unit", DEFAULT_NOTIFY_INTERVAL_UNIT ); notify_interval_value = json_get_int( config, "notify_interval_value", DEFAULT_NOTIFY_INTERVAL_VALUE ); verify_checksums = json_get_bool( config, "verify_checksums", DEFAULT_VERIFY_CHECKSUMS ); + auth_cmd = json_get_string( config, "auth_cmd", DEFAULT_AUTH_CMD ); window_width = json_get_int( config, "window_width", DEFAULT_WINDOW_WIDTH ); window_height = json_get_int( config, "window_height", DEFAULT_WINDOW_HEIGHT ); window_x = json_get_int( config, "window_x", DEFAULT_WINDOW_X ); diff --git a/src/Console/AppConsole.vala b/src/Console/AppConsole.vala index 6aae317d..fa896928 100644 --- a/src/Console/AppConsole.vala +++ b/src/Console/AppConsole.vala @@ -65,9 +65,6 @@ public class AppConsole : GLib.Object { + "(2) " +_("Locked kernels and the currently running kernel are ignored") + "\n" ; - string txt = BRANDING_SHORTNAME + " "; - for (int i = 1; i < args.length; i++) txt += "'%s' ".printf(args[i]); - // check argument count ----------------- if (args.length == 1) { @@ -229,7 +226,7 @@ public class AppConsole : GLib.Object { vprint("notify_user()",2); if (!App.notify_major && !App.notify_minor) { - vprint(_("Notifications disabled in settings"),2); + vprint(_("Notifications disabled"),2); return 1; } diff --git a/src/Gtk/SettingsDialog.vala b/src/Gtk/SettingsDialog.vala index f59446c6..e198a710 100644 --- a/src/Gtk/SettingsDialog.vala +++ b/src/Gtk/SettingsDialog.vala @@ -35,19 +35,19 @@ public class SettingsDialog : Gtk.Dialog { set_transient_for(parent); set_modal(true); window_position = Gtk.WindowPosition.CENTER_ON_PARENT; - deletable = false; - resizable = false; + //deletable = true; + //resizable = true; icon = get_app_icon(16); - title = _("Settings"); + title = BRANDING_LONGNAME + " " + _("Settings"); // get content area var vbox_main = get_content_area(); vbox_main.spacing = 6; vbox_main.margin = 12; //vbox_main.margin_bottom = 12; - vbox_main.set_size_request(400,500); + vbox_main.set_size_request(700,500); // notification var label = new Gtk.Label("" + _("Notification") + ""); @@ -229,25 +229,49 @@ public class SettingsDialog : Gtk.Dialog { vbox_main.add(proxy); proxy.activate.connect(()=>{ App.all_proxy = proxy.get_text(); }); -// too easily screwed up and "blank to return to default" isn't working -/* // ppa url - label = new Label("" + "PPA" + ""); + label = new Gtk.Label("mainline-ppa url"); label.set_use_markup(true); label.xalign = (float) 0.0; - label.margin_bottom = 6; + label.margin_start = 6; vbox_main.add (label); - var ppa = new Entry (); - ppa.set_placeholder_text(DEFAULT_PPA_URI); + var ppa = new Gtk.Entry (); ppa.set_text(App.ppa_uri); - ppa.activate.connect(()=>{ App.ppa_uri = ppa.get_text(); }); + ppa.margin_start = 6; vbox_main.add(ppa); -*/ + ppa.activate.connect(()=>{ + App.ppa_uri = ppa.get_text().strip(); + if (App.ppa_uri=="") { + App.ppa_uri = DEFAULT_PPA_URI; + ppa.set_text(App.ppa_uri); + } + }); + + // auth command + label = new Gtk.Label(""+_("Auth Command")+""); + label.set_use_markup(true); + label.xalign = (float) 0.0; + label.margin_start = 6; + label.margin_top = 12; + label.margin_bottom = 6; + vbox_main.add (label); + + var authcmd = new Gtk.Entry (); + authcmd.set_text(App.auth_cmd); + authcmd.margin_start = 6; + vbox_main.add(authcmd); + authcmd.activate.connect(()=>{ + App.auth_cmd = authcmd.get_text().strip(); + if (App.auth_cmd=="") { + App.auth_cmd = DEFAULT_AUTH_CMD; + authcmd.set_text(App.auth_cmd); + } + }); // ok button var button = (Gtk.Button)add_button(_("Done"), Gtk.ResponseType.ACCEPT); - button.clicked.connect(()=>{ this.close(); }); + button.clicked.connect(()=>{ close(); }); // run show_all(); From 8bf1b79ed175865e368a6df347c828d880928b9d Mon Sep 17 00:00:00 2001 From: "Brian K. White" <54458165+bkw777@users.noreply.github.com> Date: Sat, 3 Jun 2023 09:26:12 -0400 Subject: [PATCH 351/567] Update settings.md --- settings.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/settings.md b/settings.md index f6e8d938..91252a5b 100644 --- a/settings.md +++ b/settings.md @@ -41,7 +41,7 @@ proxy support via aria2c's [all-proxy](https://aria2.github.io/manual/en/html/ar \[ \]** ## Auth Command -\[pkexec env DISPLAY=${DISPLAY} XAUTHORITY=${XAUTHORITY} \]** +**\[pkexec env DISPLAY=${DISPLAY} XAUTHORITY=${XAUTHORITY} \]** This is the "sudo" equivalent used internally to run `dpkg` as root. pkexec can be difficult though, so if you need to, you can specify "sudo" or "gksudo" etc, or anything you want. This probably most useful when ssh-ing in to a headless box where there is no desktop session or gdbus daemon runnning. From af83dd2f33a0c3328731abad02979507e93e394b Mon Sep 17 00:00:00 2001 From: "Brian K. White" <54458165+bkw777@users.noreply.github.com> Date: Sat, 3 Jun 2023 09:33:26 -0400 Subject: [PATCH 352/567] Update settings.md --- settings.md | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/settings.md b/settings.md index 91252a5b..5022cf79 100644 --- a/settings.md +++ b/settings.md @@ -33,16 +33,19 @@ Generally, you want this setting to just be 0. **\[ \] Verify Checksums** When downloading .deb packages, first download the CHECKSUMS file and extract the sha-256 hashes from it, and use them to verify the .deb file downloads. -**Proxy -\[ \]** +**Proxy +\[                \]** proxy support via aria2c's [all-proxy](https://aria2.github.io/manual/en/html/aria2c.html#cmdoption-all-proxy) setting -**mainline-ppa url -\[ \]** +**mainline-ppa url +\[https://kernel.ubuntu.com/~kernel-ppa/mainline/ \]** ## Auth Command **\[pkexec env DISPLAY=${DISPLAY} XAUTHORITY=${XAUTHORITY} \]** This is the "sudo" equivalent used internally to run `dpkg` as root. + pkexec can be difficult though, so if you need to, you can specify "sudo" or "gksudo" etc, or anything you want. + This probably most useful when ssh-ing in to a headless box where there is no desktop session or gdbus daemon runnning. -You can restore the built-in default by just blanking out the entire field and hitting Enter. + +You can restore the built-in default at any time by just blanking out the field and hitting Enter. From b5f8c2d910761bfc85a661221a50fbd23796e58c Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Sun, 4 Jun 2023 11:39:09 -0400 Subject: [PATCH 353/567] changelog --- debian/changelog | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/debian/changelog b/debian/changelog index a9fba183..9b3c5321 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,4 +1,4 @@ -mainline (1.3.8) UNRELEASED; urgency=medium +mainline (1.3.8) unstable; urgency=medium * Configurable auth command, so you can use sudo or gksudo etc instead of pkexec. * Configurable mainline-ppa url. From 9d19f92dfeff95743df43f5246d5e8a3c56653df Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Sun, 4 Jun 2023 11:41:40 -0400 Subject: [PATCH 354/567] auth command list --- .deb_build_number.mak | 2 +- BRANDING.mak | 2 +- po/de.po | 148 ++++++++++++++++---------------- po/el.po | 148 ++++++++++++++++---------------- po/es.po | 148 ++++++++++++++++---------------- po/fr.po | 148 ++++++++++++++++---------------- po/hr.po | 148 ++++++++++++++++---------------- po/it.po | 148 ++++++++++++++++---------------- po/ko.po | 148 ++++++++++++++++---------------- po/messages.pot | 148 ++++++++++++++++---------------- po/nl.po | 148 ++++++++++++++++---------------- po/pl.po | 148 ++++++++++++++++---------------- po/ru.po | 148 ++++++++++++++++---------------- po/sv.po | 148 ++++++++++++++++---------------- po/tr.po | 148 ++++++++++++++++---------------- po/uk.po | 162 ++++++++++++++++++------------------ src/Common/LinuxKernel.vala | 15 ++-- src/Common/Main.vala | 16 +++- src/Gtk/AppGtk.vala | 16 ++-- src/Gtk/MainWindow.vala | 14 +++- src/Gtk/SettingsDialog.vala | 33 +++++--- src/Gtk/TerminalWindow.vala | 76 +++++++---------- src/lib/l.misc.vala | 18 ++++ 23 files changed, 1152 insertions(+), 1126 deletions(-) diff --git a/.deb_build_number.mak b/.deb_build_number.mak index e46fcba7..4575ad28 100644 --- a/.deb_build_number.mak +++ b/.deb_build_number.mak @@ -1,3 +1,3 @@ # This file is generated by Makefile "make deb_build_number" DEB_PKG_VERSION := 1.3.8 -DEB_BUILD_NUMBER := 0000 +DEB_BUILD_NUMBER := 0003 diff --git a/BRANDING.mak b/BRANDING.mak index 52398c8b..38086caf 100644 --- a/BRANDING.mak +++ b/BRANDING.mak @@ -3,7 +3,7 @@ VERSION_MAJOR = 1 VERSION_MINOR = 3 -VERSION_MICRO = 8 +VERSION_MICRO = 9 BRANDING_SHORTNAME = mainline BRANDING_LONGNAME = Ubuntu Mainline Kernel Installer BRANDING_AUTHORNAME = Brian K. White diff --git a/po/de.po b/po/de.po index 19513da5..b937ccba 100644 --- a/po/de.po +++ b/po/de.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-03 08:40-0400\n" +"POT-Creation-Date: 2023-06-04 08:48-0400\n" "PO-Revision-Date: 2023-02-20 18:40+0100\n" "Last-Translator: Marvin Meysel \n" "Language-Team: German\n" @@ -62,11 +62,11 @@ msgid "locked" msgstr "" #: src/Common/LinuxKernel.vala:475 src/Common/LinuxKernel.vala:1003 -#: src/Common/LinuxKernel.vala:1093 +#: src/Common/LinuxKernel.vala:1094 msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:668 src/Gtk/MainWindow.vala:514 +#: src/Common/LinuxKernel.vala:668 src/Gtk/MainWindow.vala:522 msgid "Running" msgstr "Läuft" @@ -94,7 +94,7 @@ msgstr "Datei nicht gefunden " msgid "Available Kernels" msgstr "Verfügbare Kernel" -#: src/Common/LinuxKernel.vala:920 src/Gtk/MainWindow.vala:128 +#: src/Common/LinuxKernel.vala:920 src/Gtk/MainWindow.vala:136 msgid "Kernel" msgstr "Kernel" @@ -121,7 +121,7 @@ msgstr "Laden" msgid "Installing selected kernels" msgstr "Deinstallation des angegebenen Kernels" -#: src/Common/LinuxKernel.vala:995 src/Common/LinuxKernel.vala:1033 +#: src/Common/LinuxKernel.vala:995 src/Common/LinuxKernel.vala:1034 #, fuzzy msgid "Requested" msgstr "angefordert" @@ -134,86 +134,86 @@ msgstr "ist bereits installiert." msgid "download failed." msgstr "" -#: src/Common/LinuxKernel.vala:1016 +#: src/Common/LinuxKernel.vala:1015 #, fuzzy msgid "Install: no installable kernels secified" msgstr "Befehl nicht angegeben" -#: src/Common/LinuxKernel.vala:1029 +#: src/Common/LinuxKernel.vala:1030 msgid "Uninstalling selected kernels" msgstr "Deinstallation des angegebenen Kernels" -#: src/Common/LinuxKernel.vala:1036 +#: src/Common/LinuxKernel.vala:1037 #, fuzzy msgid "Not uninstalling the currently running kernel" msgstr "Den aktuell laufenden Kernel wird nicht deinstalliert" -#: src/Common/LinuxKernel.vala:1041 +#: src/Common/LinuxKernel.vala:1042 msgid "is locked" msgstr "" -#: src/Common/LinuxKernel.vala:1049 +#: src/Common/LinuxKernel.vala:1050 msgid "found" msgstr "gründen" -#: src/Common/LinuxKernel.vala:1053 +#: src/Common/LinuxKernel.vala:1054 msgid "Uninstall: no uninstallable packages found" msgstr "" -#: src/Common/LinuxKernel.vala:1089 +#: src/Common/LinuxKernel.vala:1090 #, fuzzy msgid "is the highest installed version." msgstr "Deinstallieren Sie alle bis auf die höchste installierte Version" -#: src/Common/LinuxKernel.vala:1102 +#: src/Common/LinuxKernel.vala:1103 msgid "Could not find running kernel in list" msgstr "Konnte keinen laufenden Kernel in der Liste finden" -#: src/Common/LinuxKernel.vala:1107 +#: src/Common/LinuxKernel.vala:1108 msgid "Could not find any kernels to uninstall" msgstr "Es konnten keine Kernel zum Deinstallieren gefunden werden" -#: src/Common/LinuxKernel.vala:1115 +#: src/Common/LinuxKernel.vala:1116 msgid "The following kernels will be uninstalled" msgstr "Die folgenden Kernel werden deinstalliert" -#: src/Common/LinuxKernel.vala:1119 +#: src/Common/LinuxKernel.vala:1120 msgid "Continue ?" msgstr "Weiter ?" -#: src/Common/LinuxKernel.vala:1141 src/Console/AppConsole.vala:208 +#: src/Common/LinuxKernel.vala:1142 src/Console/AppConsole.vala:208 msgid "Latest update" msgstr "Neustes Update" -#: src/Common/LinuxKernel.vala:1152 src/Console/AppConsole.vala:215 +#: src/Common/LinuxKernel.vala:1153 src/Console/AppConsole.vala:215 msgid "Latest point update" msgstr "Letzte Punktaktualisierung" -#: src/Common/LinuxKernel.vala:1160 src/Console/AppConsole.vala:220 +#: src/Common/LinuxKernel.vala:1161 src/Console/AppConsole.vala:220 #: src/Console/AppConsole.vala:240 msgid "No updates found" msgstr "Keine Updates gefunden" -#: src/Common/LinuxKernel.vala:1169 +#: src/Common/LinuxKernel.vala:1170 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Kernel-Version %s installieren? (j/n):" -#: src/Common/Main.vala:346 +#: src/Common/Main.vala:354 msgid "Called from" msgstr "Angerufen von" -#: src/Common/Main.vala:346 +#: src/Common/Main.vala:354 msgid "at logon" msgstr "beim start" -#: src/Common/Main.vala:347 +#: src/Common/Main.vala:355 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" "Diese Datei wird überschrieben und erneut ausgeführt, wenn Einstellungen in" -#: src/Common/Main.vala:379 +#: src/Common/Main.vala:387 msgid "Notifications are disabled" msgstr "Benachrichtigungen sind deaktiviert" @@ -222,7 +222,7 @@ msgstr "Benachrichtigungen sind deaktiviert" msgid "File not found: %s" msgstr "Datei nicht gefunden: %s" -#: src/Console/AppConsole.vala:39 src/Gtk/AppGtk.vala:77 +#: src/Console/AppConsole.vala:39 src/Gtk/AppGtk.vala:75 msgid "Syntax" msgstr "Syntax" @@ -267,7 +267,7 @@ msgstr "Deinstallation des angegebenen Kernels" msgid "Uninstall specified kernels" msgstr "Deinstallation des angegebenen Kernels" -#: src/Console/AppConsole.vala:51 src/Gtk/MainWindow.vala:326 +#: src/Console/AppConsole.vala:51 src/Gtk/MainWindow.vala:334 msgid "Uninstall all but the highest installed version" msgstr "Deinstallieren Sie alle bis auf die höchste installierte Version" @@ -279,7 +279,7 @@ msgstr "Herunterladen bestimmter Kernel" msgid "Delete cached info about available kernels" msgstr "Löschen zwischengespeicherter Informationen über verfügbare Kernel" -#: src/Console/AppConsole.vala:55 src/Gtk/AppGtk.vala:79 +#: src/Console/AppConsole.vala:55 src/Gtk/AppGtk.vala:77 msgid "Options" msgstr "Optionen" @@ -314,7 +314,7 @@ msgid "Locked kernels and the currently running kernel are ignored" msgstr "Der aktuell laufende Kernel wird immer ignoriert" #: src/Console/AppConsole.vala:139 src/Console/AppConsole.vala:193 -#: src/Gtk/AppGtk.vala:111 +#: src/Gtk/AppGtk.vala:109 msgid "Unknown option" msgstr "Unbekannte Option" @@ -328,11 +328,11 @@ msgstr "Benachrichtigungen sind deaktiviert" msgid "Kernel %s Available" msgstr "Kernel %s verfügbar" -#: src/Console/AppConsole.vala:266 src/Gtk/SettingsDialog.vala:154 +#: src/Console/AppConsole.vala:266 src/Gtk/SettingsDialog.vala:151 msgid "Show" msgstr "Zeigen" -#: src/Console/AppConsole.vala:267 src/Gtk/MainWindow.vala:305 +#: src/Console/AppConsole.vala:267 src/Gtk/MainWindow.vala:313 msgid "Install" msgstr "Installieren" @@ -348,7 +348,7 @@ msgstr "Credits" msgid "Back" msgstr "Zurück" -#: src/Gtk/AboutWindow.vala:185 src/Gtk/TerminalWindow.vala:169 +#: src/Gtk/AboutWindow.vala:185 src/Gtk/TerminalWindow.vala:152 msgid "Close" msgstr "Schließen" @@ -376,172 +376,172 @@ msgstr "Dokumentierer" msgid "Third Party Inclusions" msgstr "Einschlüsse von Drittparteien" -#: src/Gtk/AppGtk.vala:77 +#: src/Gtk/AppGtk.vala:75 msgid "options" msgstr "optionen" -#: src/Gtk/AppGtk.vala:81 +#: src/Gtk/AppGtk.vala:79 msgid "Print debug information" msgstr "Zeige Debug Informationen" -#: src/Gtk/AppGtk.vala:82 +#: src/Gtk/AppGtk.vala:80 msgid "Show all options" msgstr "Alle Optionen anzeigen" -#: src/Gtk/MainWindow.vala:152 +#: src/Gtk/MainWindow.vala:160 msgid "Lock" msgstr "" -#: src/Gtk/MainWindow.vala:169 +#: src/Gtk/MainWindow.vala:177 msgid "Status" msgstr "Status" -#: src/Gtk/MainWindow.vala:181 +#: src/Gtk/MainWindow.vala:189 msgid "Notes" msgstr "Notizen" -#: src/Gtk/MainWindow.vala:310 +#: src/Gtk/MainWindow.vala:318 msgid "Uninstall" msgstr "Deinstallieren" -#: src/Gtk/MainWindow.vala:316 +#: src/Gtk/MainWindow.vala:324 msgid "Changelog, build status, etc" msgstr "" -#: src/Gtk/MainWindow.vala:325 +#: src/Gtk/MainWindow.vala:333 msgid "Uninstall Old" msgstr "Alte deinstallieren" -#: src/Gtk/MainWindow.vala:331 +#: src/Gtk/MainWindow.vala:339 msgid "Reload" msgstr "Nachladen" -#: src/Gtk/MainWindow.vala:332 +#: src/Gtk/MainWindow.vala:340 msgid "Delete and reload all cached kernel info" msgstr "" -#: src/Gtk/MainWindow.vala:337 src/Gtk/SettingsDialog.vala:43 +#: src/Gtk/MainWindow.vala:345 src/Gtk/SettingsDialog.vala:41 msgid "Settings" msgstr "Einstellungen" -#: src/Gtk/MainWindow.vala:342 +#: src/Gtk/MainWindow.vala:350 msgid "About" msgstr "Über" -#: src/Gtk/MainWindow.vala:347 +#: src/Gtk/MainWindow.vala:355 msgid "Exit" msgstr "Ausgang" -#: src/Gtk/MainWindow.vala:428 +#: src/Gtk/MainWindow.vala:436 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Kernel-Upgrade-Dienstprogramm für Ubuntu-basierte Distributionen" -#: src/Gtk/MainWindow.vala:429 +#: src/Gtk/MainWindow.vala:437 msgid "Forked" msgstr "Gegabelte" -#: src/Gtk/MainWindow.vala:429 +#: src/Gtk/MainWindow.vala:437 msgid "Original" msgstr "Original" -#: src/Gtk/MainWindow.vala:458 +#: src/Gtk/MainWindow.vala:466 msgid "Updating kernels" msgstr "Aktualisieren von Kernels" -#: src/Gtk/MainWindow.vala:518 +#: src/Gtk/MainWindow.vala:526 msgid "available" msgstr "Verfügbar" -#: src/Gtk/MainWindow.vala:560 src/Gtk/MainWindow.vala:591 -#: src/Gtk/MainWindow.vala:616 +#: src/Gtk/MainWindow.vala:568 src/Gtk/MainWindow.vala:599 +#: src/Gtk/MainWindow.vala:624 msgid "DONE" msgstr "" -#: src/Gtk/SettingsDialog.vala:53 +#: src/Gtk/SettingsDialog.vala:50 msgid "Notification" msgstr "Benachrichtigung" -#: src/Gtk/SettingsDialog.vala:60 +#: src/Gtk/SettingsDialog.vala:57 msgid "Notify if a major release is available" msgstr "Benachrichtigen, wenn eine größere Version verfügbar ist" -#: src/Gtk/SettingsDialog.vala:68 +#: src/Gtk/SettingsDialog.vala:65 msgid "Notify if a point release is available" msgstr "Benachrichtigen, wenn eine Punktfreigabe verfügbar ist" -#: src/Gtk/SettingsDialog.vala:76 +#: src/Gtk/SettingsDialog.vala:73 msgid "Seconds interval enabled for debugging" msgstr "Sekundenintervall für das Debuggen aktiviert" -#: src/Gtk/SettingsDialog.vala:99 +#: src/Gtk/SettingsDialog.vala:96 msgid "Check every" msgstr "Prüfen Sie jede" -#: src/Gtk/SettingsDialog.vala:122 +#: src/Gtk/SettingsDialog.vala:119 msgid "Hours" msgstr "Stunden" -#: src/Gtk/SettingsDialog.vala:124 +#: src/Gtk/SettingsDialog.vala:121 msgid "Days" msgstr "Tage" -#: src/Gtk/SettingsDialog.vala:126 +#: src/Gtk/SettingsDialog.vala:123 msgid "Weeks" msgstr "Wochen" -#: src/Gtk/SettingsDialog.vala:129 +#: src/Gtk/SettingsDialog.vala:126 msgid "Seconds" msgstr "Sekunden" -#: src/Gtk/SettingsDialog.vala:135 +#: src/Gtk/SettingsDialog.vala:132 msgid "Filters" msgstr "Filter" -#: src/Gtk/SettingsDialog.vala:143 +#: src/Gtk/SettingsDialog.vala:140 msgid "Hide unstable and RC releases" msgstr "Unstable- und RC-Versionen ausblenden" -#: src/Gtk/SettingsDialog.vala:165 +#: src/Gtk/SettingsDialog.vala:162 msgid "previous major versions ( -1 = all )" msgstr "vorherige Hauptversionen ( -1 = alle )" -#: src/Gtk/SettingsDialog.vala:169 +#: src/Gtk/SettingsDialog.vala:166 msgid "Network" msgstr "Netz" -#: src/Gtk/SettingsDialog.vala:180 +#: src/Gtk/SettingsDialog.vala:177 msgid "Internet connection timeout in" msgstr "Zeitüberschreitung der Internetverbindung in" -#: src/Gtk/SettingsDialog.vala:192 +#: src/Gtk/SettingsDialog.vala:189 msgid "seconds" msgstr "Sekunden" -#: src/Gtk/SettingsDialog.vala:199 +#: src/Gtk/SettingsDialog.vala:196 msgid "Max concurrent downloads" msgstr "Maximale Anzahl gleichzeitiger Downloads" -#: src/Gtk/SettingsDialog.vala:212 +#: src/Gtk/SettingsDialog.vala:209 msgid "Verify Checksums with the CHECKSUMS files" msgstr "Überprüfen von Prüfsummen mit den PRÜFSUMMEN-Dateien" -#: src/Gtk/SettingsDialog.vala:220 +#: src/Gtk/SettingsDialog.vala:217 msgid "Proxy" msgstr "Stellvertreter" -#: src/Gtk/SettingsDialog.vala:252 +#: src/Gtk/SettingsDialog.vala:250 #, fuzzy msgid "Auth Command" msgstr "Befehle" -#: src/Gtk/SettingsDialog.vala:273 +#: src/Gtk/SettingsDialog.vala:280 msgid "Done" msgstr "" -#: src/Gtk/TerminalWindow.vala:159 +#: src/Gtk/TerminalWindow.vala:142 msgid "Cancel" msgstr "Abbrechen" -#: src/lib/l.misc.vala:84 +#: src/lib/l.misc.vala:102 msgid "Can not reach site" msgstr "Fehler beim lesen der Datei" diff --git a/po/el.po b/po/el.po index 14f7812f..481abd13 100644 --- a/po/el.po +++ b/po/el.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-03 08:40-0400\n" +"POT-Creation-Date: 2023-06-04 08:48-0400\n" "PO-Revision-Date: 2023-01-10 02:03-0600\n" "Last-Translator: Vasilis Kosmidis \n" "Language-Team: Greek\n" @@ -62,11 +62,11 @@ msgid "locked" msgstr "" #: src/Common/LinuxKernel.vala:475 src/Common/LinuxKernel.vala:1003 -#: src/Common/LinuxKernel.vala:1093 +#: src/Common/LinuxKernel.vala:1094 msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:668 src/Gtk/MainWindow.vala:514 +#: src/Common/LinuxKernel.vala:668 src/Gtk/MainWindow.vala:522 msgid "Running" msgstr "Ενεργός" @@ -94,7 +94,7 @@ msgstr "Το αρχείο δε βρέθηκε" msgid "Available Kernels" msgstr "Διαθέσιμοι πυρήνες" -#: src/Common/LinuxKernel.vala:920 src/Gtk/MainWindow.vala:128 +#: src/Common/LinuxKernel.vala:920 src/Gtk/MainWindow.vala:136 msgid "Kernel" msgstr "Πυρήνας" @@ -121,7 +121,7 @@ msgstr "Κατέβασμα" msgid "Installing selected kernels" msgstr "Απεγκατάσταση επιλεγμένων πυρήνων" -#: src/Common/LinuxKernel.vala:995 src/Common/LinuxKernel.vala:1033 +#: src/Common/LinuxKernel.vala:995 src/Common/LinuxKernel.vala:1034 #, fuzzy msgid "Requested" msgstr "ζητήθηκε" @@ -134,87 +134,87 @@ msgstr "είναι ήδη εγκατεστημένο." msgid "download failed." msgstr "" -#: src/Common/LinuxKernel.vala:1016 +#: src/Common/LinuxKernel.vala:1015 #, fuzzy msgid "Install: no installable kernels secified" msgstr "Η εντολή δεν προσδιορίστηκε" -#: src/Common/LinuxKernel.vala:1029 +#: src/Common/LinuxKernel.vala:1030 msgid "Uninstalling selected kernels" msgstr "Απεγκατάσταση επιλεγμένων πυρήνων" -#: src/Common/LinuxKernel.vala:1036 +#: src/Common/LinuxKernel.vala:1037 #, fuzzy msgid "Not uninstalling the currently running kernel" msgstr "δεν θα απεγκαταστήσει τον πυρήνα που εκτελείται αυτήν τη στιγμή" -#: src/Common/LinuxKernel.vala:1041 +#: src/Common/LinuxKernel.vala:1042 msgid "is locked" msgstr "" -#: src/Common/LinuxKernel.vala:1049 +#: src/Common/LinuxKernel.vala:1050 msgid "found" msgstr "ιδρύω" -#: src/Common/LinuxKernel.vala:1053 +#: src/Common/LinuxKernel.vala:1054 msgid "Uninstall: no uninstallable packages found" msgstr "" -#: src/Common/LinuxKernel.vala:1089 +#: src/Common/LinuxKernel.vala:1090 #, fuzzy msgid "is the highest installed version." msgstr "Απεγκαταστήστε όλες εκτός από την υψηλότερη εγκατεστημένη έκδοση" -#: src/Common/LinuxKernel.vala:1102 +#: src/Common/LinuxKernel.vala:1103 msgid "Could not find running kernel in list" msgstr "Δεν ήταν δυνατή η εύρεση του πυρήνα που εκτελείται αυτήν τη στιγμή" -#: src/Common/LinuxKernel.vala:1107 +#: src/Common/LinuxKernel.vala:1108 msgid "Could not find any kernels to uninstall" msgstr "Δεν βρέθηκε κανένας πυρήνας για απεγκατάσταση" -#: src/Common/LinuxKernel.vala:1115 +#: src/Common/LinuxKernel.vala:1116 msgid "The following kernels will be uninstalled" msgstr "Θα καταργηθεί η εγκατάσταση των ακόλουθων πυρήνων" -#: src/Common/LinuxKernel.vala:1119 +#: src/Common/LinuxKernel.vala:1120 msgid "Continue ?" msgstr "Συνέχεια;" -#: src/Common/LinuxKernel.vala:1141 src/Console/AppConsole.vala:208 +#: src/Common/LinuxKernel.vala:1142 src/Console/AppConsole.vala:208 msgid "Latest update" msgstr "Τελευταία αναβάθμιση" -#: src/Common/LinuxKernel.vala:1152 src/Console/AppConsole.vala:215 +#: src/Common/LinuxKernel.vala:1153 src/Console/AppConsole.vala:215 msgid "Latest point update" msgstr "Τελευταία ενημέρωση συντήρησης" -#: src/Common/LinuxKernel.vala:1160 src/Console/AppConsole.vala:220 +#: src/Common/LinuxKernel.vala:1161 src/Console/AppConsole.vala:220 #: src/Console/AppConsole.vala:240 msgid "No updates found" msgstr "Δεν βρέθηκαν ενημερώσεις" -#: src/Common/LinuxKernel.vala:1169 +#: src/Common/LinuxKernel.vala:1170 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Εγκατάσταση του πυρήνα έκδοσης %s ; (ν/ό):" -#: src/Common/Main.vala:346 +#: src/Common/Main.vala:354 msgid "Called from" msgstr "Κλήθηκε από" -#: src/Common/Main.vala:346 +#: src/Common/Main.vala:354 msgid "at logon" msgstr "κατά την εκκίνηση" -#: src/Common/Main.vala:347 +#: src/Common/Main.vala:355 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" "Αυτό το αρχείο αντικαθίσταται και εκτελείται ξανά κάθε φορά που " "αποθηκεύονται οι ρυθμίσεις στο" -#: src/Common/Main.vala:379 +#: src/Common/Main.vala:387 msgid "Notifications are disabled" msgstr "Οι ειδοποιήσεις είναι απενεργοποιημένες" @@ -223,7 +223,7 @@ msgstr "Οι ειδοποιήσεις είναι απενεργοποιημέν msgid "File not found: %s" msgstr "Το αρχείο δεν βρέθηκε: %s" -#: src/Console/AppConsole.vala:39 src/Gtk/AppGtk.vala:77 +#: src/Console/AppConsole.vala:39 src/Gtk/AppGtk.vala:75 msgid "Syntax" msgstr "Σύνταξη" @@ -267,7 +267,7 @@ msgstr "Απεγκατάσταση του καθορισμένου πυρήνα" msgid "Uninstall specified kernels" msgstr "Απεγκατάσταση του καθορισμένου πυρήνα" -#: src/Console/AppConsole.vala:51 src/Gtk/MainWindow.vala:326 +#: src/Console/AppConsole.vala:51 src/Gtk/MainWindow.vala:334 msgid "Uninstall all but the highest installed version" msgstr "Απεγκαταστήστε όλες εκτός από την υψηλότερη εγκατεστημένη έκδοση" @@ -280,7 +280,7 @@ msgid "Delete cached info about available kernels" msgstr "" "Διαγραφή προσωρινά αποθηκευμένων πληροφοριών σχετικά με διαθέσιμους πυρήνες" -#: src/Console/AppConsole.vala:55 src/Gtk/AppGtk.vala:79 +#: src/Console/AppConsole.vala:55 src/Gtk/AppGtk.vala:77 msgid "Options" msgstr "Επιλογές" @@ -315,7 +315,7 @@ msgid "Locked kernels and the currently running kernel are ignored" msgstr "Αυτός ο πυρήνας είναι ήδη εγκατεστημένος." #: src/Console/AppConsole.vala:139 src/Console/AppConsole.vala:193 -#: src/Gtk/AppGtk.vala:111 +#: src/Gtk/AppGtk.vala:109 msgid "Unknown option" msgstr "Άγνωστη επιλογή" @@ -329,11 +329,11 @@ msgstr "Οι ειδοποιήσεις είναι απενεργοποιημέν msgid "Kernel %s Available" msgstr "Πυρήνας %s διαθέσιμος" -#: src/Console/AppConsole.vala:266 src/Gtk/SettingsDialog.vala:154 +#: src/Console/AppConsole.vala:266 src/Gtk/SettingsDialog.vala:151 msgid "Show" msgstr "Προβολή" -#: src/Console/AppConsole.vala:267 src/Gtk/MainWindow.vala:305 +#: src/Console/AppConsole.vala:267 src/Gtk/MainWindow.vala:313 msgid "Install" msgstr "Εγκατάσταση" @@ -349,7 +349,7 @@ msgstr "Μνεία" msgid "Back" msgstr "Πίσω" -#: src/Gtk/AboutWindow.vala:185 src/Gtk/TerminalWindow.vala:169 +#: src/Gtk/AboutWindow.vala:185 src/Gtk/TerminalWindow.vala:152 msgid "Close" msgstr "Κλείσιμο" @@ -377,172 +377,172 @@ msgstr "Τεκμηριωτές" msgid "Third Party Inclusions" msgstr "Συμπεριλήψεις τρίτων" -#: src/Gtk/AppGtk.vala:77 +#: src/Gtk/AppGtk.vala:75 msgid "options" msgstr "επιλογές" -#: src/Gtk/AppGtk.vala:81 +#: src/Gtk/AppGtk.vala:79 msgid "Print debug information" msgstr "Εκτύπωση πληροφοριών εντοπισμού σφαλμάτων" -#: src/Gtk/AppGtk.vala:82 +#: src/Gtk/AppGtk.vala:80 msgid "Show all options" msgstr "Εμφάνιση όλων των επιλογών" -#: src/Gtk/MainWindow.vala:152 +#: src/Gtk/MainWindow.vala:160 msgid "Lock" msgstr "" -#: src/Gtk/MainWindow.vala:169 +#: src/Gtk/MainWindow.vala:177 msgid "Status" msgstr "Κατάσταση" -#: src/Gtk/MainWindow.vala:181 +#: src/Gtk/MainWindow.vala:189 msgid "Notes" msgstr "Σημειώσεις" -#: src/Gtk/MainWindow.vala:310 +#: src/Gtk/MainWindow.vala:318 msgid "Uninstall" msgstr "Απεγκατάσταση" -#: src/Gtk/MainWindow.vala:316 +#: src/Gtk/MainWindow.vala:324 msgid "Changelog, build status, etc" msgstr "" -#: src/Gtk/MainWindow.vala:325 +#: src/Gtk/MainWindow.vala:333 msgid "Uninstall Old" msgstr "Απεγκατάσταση παλαιών" -#: src/Gtk/MainWindow.vala:331 +#: src/Gtk/MainWindow.vala:339 msgid "Reload" msgstr "Δροσίζω" -#: src/Gtk/MainWindow.vala:332 +#: src/Gtk/MainWindow.vala:340 msgid "Delete and reload all cached kernel info" msgstr "" -#: src/Gtk/MainWindow.vala:337 src/Gtk/SettingsDialog.vala:43 +#: src/Gtk/MainWindow.vala:345 src/Gtk/SettingsDialog.vala:41 msgid "Settings" msgstr "Ρυθμίσεις" -#: src/Gtk/MainWindow.vala:342 +#: src/Gtk/MainWindow.vala:350 msgid "About" msgstr "Σχετικά" -#: src/Gtk/MainWindow.vala:347 +#: src/Gtk/MainWindow.vala:355 msgid "Exit" msgstr "Έξοδος" -#: src/Gtk/MainWindow.vala:428 +#: src/Gtk/MainWindow.vala:436 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Πρόγραμμα αναβάθμισης πυρήνα για διανομές που βασίζονται στο Ubuntu" -#: src/Gtk/MainWindow.vala:429 +#: src/Gtk/MainWindow.vala:437 msgid "Forked" msgstr "Forked" -#: src/Gtk/MainWindow.vala:429 +#: src/Gtk/MainWindow.vala:437 msgid "Original" msgstr "Πρωτότυπο" -#: src/Gtk/MainWindow.vala:458 +#: src/Gtk/MainWindow.vala:466 msgid "Updating kernels" msgstr "Ενημέρωση πυρήνων" -#: src/Gtk/MainWindow.vala:518 +#: src/Gtk/MainWindow.vala:526 msgid "available" msgstr "διαθέσιμος" -#: src/Gtk/MainWindow.vala:560 src/Gtk/MainWindow.vala:591 -#: src/Gtk/MainWindow.vala:616 +#: src/Gtk/MainWindow.vala:568 src/Gtk/MainWindow.vala:599 +#: src/Gtk/MainWindow.vala:624 msgid "DONE" msgstr "" -#: src/Gtk/SettingsDialog.vala:53 +#: src/Gtk/SettingsDialog.vala:50 msgid "Notification" msgstr "Ειδοποίηση" -#: src/Gtk/SettingsDialog.vala:60 +#: src/Gtk/SettingsDialog.vala:57 msgid "Notify if a major release is available" msgstr "Ειδοποίηση αν είναι διαθέσιμη κύρια έκδοση" -#: src/Gtk/SettingsDialog.vala:68 +#: src/Gtk/SettingsDialog.vala:65 msgid "Notify if a point release is available" msgstr "Ειδοποίηση αν είναι διαθέσιμη έκδοση συντήρησης" -#: src/Gtk/SettingsDialog.vala:76 +#: src/Gtk/SettingsDialog.vala:73 msgid "Seconds interval enabled for debugging" msgstr "διάστημα δευτερολέπτων είναι ενεργοποιημένο για εντοπισμό σφαλμάτων" -#: src/Gtk/SettingsDialog.vala:99 +#: src/Gtk/SettingsDialog.vala:96 msgid "Check every" msgstr "Έλεγχος κάθε" -#: src/Gtk/SettingsDialog.vala:122 +#: src/Gtk/SettingsDialog.vala:119 msgid "Hours" msgstr "Ώρες" -#: src/Gtk/SettingsDialog.vala:124 +#: src/Gtk/SettingsDialog.vala:121 msgid "Days" msgstr "Ημέρες" -#: src/Gtk/SettingsDialog.vala:126 +#: src/Gtk/SettingsDialog.vala:123 msgid "Weeks" msgstr "Εβδομάδες" -#: src/Gtk/SettingsDialog.vala:129 +#: src/Gtk/SettingsDialog.vala:126 msgid "Seconds" msgstr "Δευτερόλεπτα" -#: src/Gtk/SettingsDialog.vala:135 +#: src/Gtk/SettingsDialog.vala:132 msgid "Filters" msgstr "Φίλτρα" -#: src/Gtk/SettingsDialog.vala:143 +#: src/Gtk/SettingsDialog.vala:140 msgid "Hide unstable and RC releases" msgstr "Απόκρυψη ασταθών και RC εκδόσεων" -#: src/Gtk/SettingsDialog.vala:165 +#: src/Gtk/SettingsDialog.vala:162 msgid "previous major versions ( -1 = all )" msgstr "προηγούμενες κύριες εκδόσεις ( -1 = όλες )" -#: src/Gtk/SettingsDialog.vala:169 +#: src/Gtk/SettingsDialog.vala:166 msgid "Network" msgstr "Δίκτυο" -#: src/Gtk/SettingsDialog.vala:180 +#: src/Gtk/SettingsDialog.vala:177 msgid "Internet connection timeout in" msgstr "Λήξη χρονικού ορίου σύνδεσης στο διαδίκτυο " -#: src/Gtk/SettingsDialog.vala:192 +#: src/Gtk/SettingsDialog.vala:189 msgid "seconds" msgstr "δευτερόλεπτα" -#: src/Gtk/SettingsDialog.vala:199 +#: src/Gtk/SettingsDialog.vala:196 msgid "Max concurrent downloads" msgstr "Μέγιστες ταυτόχρονες λήψεις" -#: src/Gtk/SettingsDialog.vala:212 +#: src/Gtk/SettingsDialog.vala:209 msgid "Verify Checksums with the CHECKSUMS files" msgstr "Επαλήθευση αθροισμάτων ελέγχου με τα αρχεία CHECKSUMS" -#: src/Gtk/SettingsDialog.vala:220 +#: src/Gtk/SettingsDialog.vala:217 msgid "Proxy" msgstr "Διακομιστής" -#: src/Gtk/SettingsDialog.vala:252 +#: src/Gtk/SettingsDialog.vala:250 #, fuzzy msgid "Auth Command" msgstr "Εντολές" -#: src/Gtk/SettingsDialog.vala:273 +#: src/Gtk/SettingsDialog.vala:280 msgid "Done" msgstr "" -#: src/Gtk/TerminalWindow.vala:159 +#: src/Gtk/TerminalWindow.vala:142 msgid "Cancel" msgstr "Άκυρο" -#: src/lib/l.misc.vala:84 +#: src/lib/l.misc.vala:102 msgid "Can not reach site" msgstr "Αποτυχία ανάγνωσης του αρχείου" diff --git a/po/es.po b/po/es.po index f07a4d39..3a95bc9a 100644 --- a/po/es.po +++ b/po/es.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-03 08:40-0400\n" +"POT-Creation-Date: 2023-06-04 08:48-0400\n" "PO-Revision-Date: 2018-01-03 02:03-0600\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish\n" @@ -62,11 +62,11 @@ msgid "locked" msgstr "" #: src/Common/LinuxKernel.vala:475 src/Common/LinuxKernel.vala:1003 -#: src/Common/LinuxKernel.vala:1093 +#: src/Common/LinuxKernel.vala:1094 msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:668 src/Gtk/MainWindow.vala:514 +#: src/Common/LinuxKernel.vala:668 src/Gtk/MainWindow.vala:522 msgid "Running" msgstr "En ejecución" @@ -94,7 +94,7 @@ msgstr "No se encontró el archivo" msgid "Available Kernels" msgstr "Núcleos disponibles" -#: src/Common/LinuxKernel.vala:920 src/Gtk/MainWindow.vala:128 +#: src/Common/LinuxKernel.vala:920 src/Gtk/MainWindow.vala:136 msgid "Kernel" msgstr "Núcleo" @@ -121,7 +121,7 @@ msgstr "Descargar" msgid "Installing selected kernels" msgstr "Desinstalación de kernels seleccionados" -#: src/Common/LinuxKernel.vala:995 src/Common/LinuxKernel.vala:1033 +#: src/Common/LinuxKernel.vala:995 src/Common/LinuxKernel.vala:1034 #, fuzzy msgid "Requested" msgstr "solicitado" @@ -134,87 +134,87 @@ msgstr "ya está instalado." msgid "download failed." msgstr "" -#: src/Common/LinuxKernel.vala:1016 +#: src/Common/LinuxKernel.vala:1015 #, fuzzy msgid "Install: no installable kernels secified" msgstr "Coomand no especificado" -#: src/Common/LinuxKernel.vala:1029 +#: src/Common/LinuxKernel.vala:1030 msgid "Uninstalling selected kernels" msgstr "Desinstalación de kernels seleccionados" -#: src/Common/LinuxKernel.vala:1036 +#: src/Common/LinuxKernel.vala:1037 #, fuzzy msgid "Not uninstalling the currently running kernel" msgstr "No desinstalará el kernel que se está ejecutando actualmente" -#: src/Common/LinuxKernel.vala:1041 +#: src/Common/LinuxKernel.vala:1042 msgid "is locked" msgstr "" -#: src/Common/LinuxKernel.vala:1049 +#: src/Common/LinuxKernel.vala:1050 msgid "found" msgstr "fundar" -#: src/Common/LinuxKernel.vala:1053 +#: src/Common/LinuxKernel.vala:1054 msgid "Uninstall: no uninstallable packages found" msgstr "" -#: src/Common/LinuxKernel.vala:1089 +#: src/Common/LinuxKernel.vala:1090 #, fuzzy msgid "is the highest installed version." msgstr "Desinstale todas las versiones instaladas excepto la más alta" -#: src/Common/LinuxKernel.vala:1102 +#: src/Common/LinuxKernel.vala:1103 msgid "Could not find running kernel in list" msgstr "No se pudo encontrar el kernel en ejecución en la lista" -#: src/Common/LinuxKernel.vala:1107 +#: src/Common/LinuxKernel.vala:1108 msgid "Could not find any kernels to uninstall" msgstr "No se pudo encontrar ningún kernel para desinstalar" -#: src/Common/LinuxKernel.vala:1115 +#: src/Common/LinuxKernel.vala:1116 msgid "The following kernels will be uninstalled" msgstr "Se desinstalarán los siguientes kernels" -#: src/Common/LinuxKernel.vala:1119 +#: src/Common/LinuxKernel.vala:1120 msgid "Continue ?" msgstr "¿Continuar?" -#: src/Common/LinuxKernel.vala:1141 src/Console/AppConsole.vala:208 +#: src/Common/LinuxKernel.vala:1142 src/Console/AppConsole.vala:208 msgid "Latest update" msgstr "Última actualización" -#: src/Common/LinuxKernel.vala:1152 src/Console/AppConsole.vala:215 +#: src/Common/LinuxKernel.vala:1153 src/Console/AppConsole.vala:215 msgid "Latest point update" msgstr "Última actualización puntual" -#: src/Common/LinuxKernel.vala:1160 src/Console/AppConsole.vala:220 +#: src/Common/LinuxKernel.vala:1161 src/Console/AppConsole.vala:220 #: src/Console/AppConsole.vala:240 msgid "No updates found" msgstr "No se encontró ninguna actualización" -#: src/Common/LinuxKernel.vala:1169 +#: src/Common/LinuxKernel.vala:1170 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Instalar la versión del kernel %s? (s/n): " -#: src/Common/Main.vala:346 +#: src/Common/Main.vala:354 msgid "Called from" msgstr "Llamado desde" -#: src/Common/Main.vala:346 +#: src/Common/Main.vala:354 msgid "at logon" msgstr "al inicio" -#: src/Common/Main.vala:347 +#: src/Common/Main.vala:355 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" "Este archivo se sobrescribe y se ejecuta de nuevo cada vez que se guarda la " "configuración en" -#: src/Common/Main.vala:379 +#: src/Common/Main.vala:387 msgid "Notifications are disabled" msgstr "Las notificaciones están deshabilitadas" @@ -223,7 +223,7 @@ msgstr "Las notificaciones están deshabilitadas" msgid "File not found: %s" msgstr "Archivo no encontrado: %s" -#: src/Console/AppConsole.vala:39 src/Gtk/AppGtk.vala:77 +#: src/Console/AppConsole.vala:39 src/Gtk/AppGtk.vala:75 msgid "Syntax" msgstr "Sintaxis" @@ -267,7 +267,7 @@ msgstr "Desinstalar el kernel especificado" msgid "Uninstall specified kernels" msgstr "Desinstalar el kernel especificado" -#: src/Console/AppConsole.vala:51 src/Gtk/MainWindow.vala:326 +#: src/Console/AppConsole.vala:51 src/Gtk/MainWindow.vala:334 msgid "Uninstall all but the highest installed version" msgstr "Desinstale todas las versiones instaladas excepto la más alta" @@ -279,7 +279,7 @@ msgstr "Descargar kernels especificados" msgid "Delete cached info about available kernels" msgstr "Eliminar información almacenada en caché sobre los kernels disponibles" -#: src/Console/AppConsole.vala:55 src/Gtk/AppGtk.vala:79 +#: src/Console/AppConsole.vala:55 src/Gtk/AppGtk.vala:77 msgid "Options" msgstr "Opciones" @@ -314,7 +314,7 @@ msgid "Locked kernels and the currently running kernel are ignored" msgstr "El kernel que se está ejecutando actualmente siempre será ignorado" #: src/Console/AppConsole.vala:139 src/Console/AppConsole.vala:193 -#: src/Gtk/AppGtk.vala:111 +#: src/Gtk/AppGtk.vala:109 msgid "Unknown option" msgstr "Opción desconocida" @@ -328,11 +328,11 @@ msgstr "Las notificaciones están deshabilitadas" msgid "Kernel %s Available" msgstr "Kernel %s Disponible" -#: src/Console/AppConsole.vala:266 src/Gtk/SettingsDialog.vala:154 +#: src/Console/AppConsole.vala:266 src/Gtk/SettingsDialog.vala:151 msgid "Show" msgstr "Mostrar" -#: src/Console/AppConsole.vala:267 src/Gtk/MainWindow.vala:305 +#: src/Console/AppConsole.vala:267 src/Gtk/MainWindow.vala:313 msgid "Install" msgstr "Instalar" @@ -348,7 +348,7 @@ msgstr "Créditos" msgid "Back" msgstr "Atrás" -#: src/Gtk/AboutWindow.vala:185 src/Gtk/TerminalWindow.vala:169 +#: src/Gtk/AboutWindow.vala:185 src/Gtk/TerminalWindow.vala:152 msgid "Close" msgstr "Cerrar" @@ -376,173 +376,173 @@ msgstr "Documentadores" msgid "Third Party Inclusions" msgstr "Herramientas de Terceros" -#: src/Gtk/AppGtk.vala:77 +#: src/Gtk/AppGtk.vala:75 msgid "options" msgstr "opciones" -#: src/Gtk/AppGtk.vala:81 +#: src/Gtk/AppGtk.vala:79 msgid "Print debug information" msgstr "Mostrar información de depuración" -#: src/Gtk/AppGtk.vala:82 +#: src/Gtk/AppGtk.vala:80 msgid "Show all options" msgstr "Mostrar todas las opciones" -#: src/Gtk/MainWindow.vala:152 +#: src/Gtk/MainWindow.vala:160 msgid "Lock" msgstr "" -#: src/Gtk/MainWindow.vala:169 +#: src/Gtk/MainWindow.vala:177 msgid "Status" msgstr "Estado" -#: src/Gtk/MainWindow.vala:181 +#: src/Gtk/MainWindow.vala:189 msgid "Notes" msgstr "Notas" -#: src/Gtk/MainWindow.vala:310 +#: src/Gtk/MainWindow.vala:318 msgid "Uninstall" msgstr "Desinstalar" -#: src/Gtk/MainWindow.vala:316 +#: src/Gtk/MainWindow.vala:324 msgid "Changelog, build status, etc" msgstr "" -#: src/Gtk/MainWindow.vala:325 +#: src/Gtk/MainWindow.vala:333 msgid "Uninstall Old" msgstr "Desinstalar Antiguo" -#: src/Gtk/MainWindow.vala:331 +#: src/Gtk/MainWindow.vala:339 msgid "Reload" msgstr "Recargar" -#: src/Gtk/MainWindow.vala:332 +#: src/Gtk/MainWindow.vala:340 msgid "Delete and reload all cached kernel info" msgstr "" -#: src/Gtk/MainWindow.vala:337 src/Gtk/SettingsDialog.vala:43 +#: src/Gtk/MainWindow.vala:345 src/Gtk/SettingsDialog.vala:41 msgid "Settings" msgstr "Configuración" -#: src/Gtk/MainWindow.vala:342 +#: src/Gtk/MainWindow.vala:350 msgid "About" msgstr "Acerca de" -#: src/Gtk/MainWindow.vala:347 +#: src/Gtk/MainWindow.vala:355 msgid "Exit" msgstr "Salida" -#: src/Gtk/MainWindow.vala:428 +#: src/Gtk/MainWindow.vala:436 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "" "Herramienta de renovación de núcleo para distribuciones basadas en Ubuntu" -#: src/Gtk/MainWindow.vala:429 +#: src/Gtk/MainWindow.vala:437 msgid "Forked" msgstr "Bifurcada" -#: src/Gtk/MainWindow.vala:429 +#: src/Gtk/MainWindow.vala:437 msgid "Original" msgstr "Original" -#: src/Gtk/MainWindow.vala:458 +#: src/Gtk/MainWindow.vala:466 msgid "Updating kernels" msgstr "Actualización de kernels" -#: src/Gtk/MainWindow.vala:518 +#: src/Gtk/MainWindow.vala:526 msgid "available" msgstr "disponibles" -#: src/Gtk/MainWindow.vala:560 src/Gtk/MainWindow.vala:591 -#: src/Gtk/MainWindow.vala:616 +#: src/Gtk/MainWindow.vala:568 src/Gtk/MainWindow.vala:599 +#: src/Gtk/MainWindow.vala:624 msgid "DONE" msgstr "" -#: src/Gtk/SettingsDialog.vala:53 +#: src/Gtk/SettingsDialog.vala:50 msgid "Notification" msgstr "Notificación" -#: src/Gtk/SettingsDialog.vala:60 +#: src/Gtk/SettingsDialog.vala:57 msgid "Notify if a major release is available" msgstr "Notificar si hay una versión importante disponible" -#: src/Gtk/SettingsDialog.vala:68 +#: src/Gtk/SettingsDialog.vala:65 msgid "Notify if a point release is available" msgstr "Notificar si hay una versión puntual disponible" -#: src/Gtk/SettingsDialog.vala:76 +#: src/Gtk/SettingsDialog.vala:73 msgid "Seconds interval enabled for debugging" msgstr "Intervalo de segundos habilitado para la depuración" -#: src/Gtk/SettingsDialog.vala:99 +#: src/Gtk/SettingsDialog.vala:96 msgid "Check every" msgstr "Comprobar cada" -#: src/Gtk/SettingsDialog.vala:122 +#: src/Gtk/SettingsDialog.vala:119 msgid "Hours" msgstr "Horas" -#: src/Gtk/SettingsDialog.vala:124 +#: src/Gtk/SettingsDialog.vala:121 msgid "Days" msgstr "Días" -#: src/Gtk/SettingsDialog.vala:126 +#: src/Gtk/SettingsDialog.vala:123 msgid "Weeks" msgstr "Semanas" -#: src/Gtk/SettingsDialog.vala:129 +#: src/Gtk/SettingsDialog.vala:126 msgid "Seconds" msgstr "Sobras" -#: src/Gtk/SettingsDialog.vala:135 +#: src/Gtk/SettingsDialog.vala:132 msgid "Filters" msgstr "Filtros" -#: src/Gtk/SettingsDialog.vala:143 +#: src/Gtk/SettingsDialog.vala:140 msgid "Hide unstable and RC releases" msgstr "Ocultar versiones inestables y RC" -#: src/Gtk/SettingsDialog.vala:165 +#: src/Gtk/SettingsDialog.vala:162 msgid "previous major versions ( -1 = all )" msgstr "Versiones principales anteriores ( -1 = todas )" -#: src/Gtk/SettingsDialog.vala:169 +#: src/Gtk/SettingsDialog.vala:166 msgid "Network" msgstr "Red" -#: src/Gtk/SettingsDialog.vala:180 +#: src/Gtk/SettingsDialog.vala:177 msgid "Internet connection timeout in" msgstr "Tiempo de espera de conexión a Internet en" -#: src/Gtk/SettingsDialog.vala:192 +#: src/Gtk/SettingsDialog.vala:189 msgid "seconds" msgstr "sobras" -#: src/Gtk/SettingsDialog.vala:199 +#: src/Gtk/SettingsDialog.vala:196 msgid "Max concurrent downloads" msgstr "Descargas máximas de la competencia" -#: src/Gtk/SettingsDialog.vala:212 +#: src/Gtk/SettingsDialog.vala:209 msgid "Verify Checksums with the CHECKSUMS files" msgstr "Verificar sumas de comprobación con los archivos CHECKSUMS" -#: src/Gtk/SettingsDialog.vala:220 +#: src/Gtk/SettingsDialog.vala:217 msgid "Proxy" msgstr "Proxy" -#: src/Gtk/SettingsDialog.vala:252 +#: src/Gtk/SettingsDialog.vala:250 #, fuzzy msgid "Auth Command" msgstr "Comandos" -#: src/Gtk/SettingsDialog.vala:273 +#: src/Gtk/SettingsDialog.vala:280 msgid "Done" msgstr "" -#: src/Gtk/TerminalWindow.vala:159 +#: src/Gtk/TerminalWindow.vala:142 msgid "Cancel" msgstr "Cancelar" -#: src/lib/l.misc.vala:84 +#: src/lib/l.misc.vala:102 msgid "Can not reach site" msgstr "No se puede llegar al sitio" diff --git a/po/fr.po b/po/fr.po index f715f312..33b78ba7 100644 --- a/po/fr.po +++ b/po/fr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-03 08:40-0400\n" +"POT-Creation-Date: 2023-06-04 08:48-0400\n" "PO-Revision-Date: 2018-08-05 15:50+0200\n" "Last-Translator: Yolateng0 \n" "Language-Team: French\n" @@ -62,11 +62,11 @@ msgid "locked" msgstr "" #: src/Common/LinuxKernel.vala:475 src/Common/LinuxKernel.vala:1003 -#: src/Common/LinuxKernel.vala:1093 +#: src/Common/LinuxKernel.vala:1094 msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:668 src/Gtk/MainWindow.vala:514 +#: src/Common/LinuxKernel.vala:668 src/Gtk/MainWindow.vala:522 msgid "Running" msgstr "Actuel" @@ -94,7 +94,7 @@ msgstr "Fichier non trouvé" msgid "Available Kernels" msgstr "Noyaux Disponibles" -#: src/Common/LinuxKernel.vala:920 src/Gtk/MainWindow.vala:128 +#: src/Common/LinuxKernel.vala:920 src/Gtk/MainWindow.vala:136 msgid "Kernel" msgstr "Noyau" @@ -121,7 +121,7 @@ msgstr "Téléchargement" msgid "Installing selected kernels" msgstr "Désinstallation des noyaux sélectionnés" -#: src/Common/LinuxKernel.vala:995 src/Common/LinuxKernel.vala:1033 +#: src/Common/LinuxKernel.vala:995 src/Common/LinuxKernel.vala:1034 #, fuzzy msgid "Requested" msgstr "Demandé" @@ -134,87 +134,87 @@ msgstr "est déjà installé." msgid "download failed." msgstr "" -#: src/Common/LinuxKernel.vala:1016 +#: src/Common/LinuxKernel.vala:1015 #, fuzzy msgid "Install: no installable kernels secified" msgstr "Pas de commande fournie" -#: src/Common/LinuxKernel.vala:1029 +#: src/Common/LinuxKernel.vala:1030 msgid "Uninstalling selected kernels" msgstr "Désinstallation des noyaux sélectionnés" -#: src/Common/LinuxKernel.vala:1036 +#: src/Common/LinuxKernel.vala:1037 #, fuzzy msgid "Not uninstalling the currently running kernel" msgstr "Ne pas désinstaller le noyau en cours d'exécution" -#: src/Common/LinuxKernel.vala:1041 +#: src/Common/LinuxKernel.vala:1042 msgid "is locked" msgstr "" -#: src/Common/LinuxKernel.vala:1049 +#: src/Common/LinuxKernel.vala:1050 msgid "found" msgstr "fonder" -#: src/Common/LinuxKernel.vala:1053 +#: src/Common/LinuxKernel.vala:1054 msgid "Uninstall: no uninstallable packages found" msgstr "" -#: src/Common/LinuxKernel.vala:1089 +#: src/Common/LinuxKernel.vala:1090 #, fuzzy msgid "is the highest installed version." msgstr "Désinstallez toutes le version installées, sauf la plus élevée" -#: src/Common/LinuxKernel.vala:1102 +#: src/Common/LinuxKernel.vala:1103 msgid "Could not find running kernel in list" msgstr "Impossible de trouver le noyau en cours d'exécution dans la liste" -#: src/Common/LinuxKernel.vala:1107 +#: src/Common/LinuxKernel.vala:1108 msgid "Could not find any kernels to uninstall" msgstr "Impossible de trouver des noyaux à désinstaller" -#: src/Common/LinuxKernel.vala:1115 +#: src/Common/LinuxKernel.vala:1116 msgid "The following kernels will be uninstalled" msgstr "Les noyaux suivants seront désinstallés" -#: src/Common/LinuxKernel.vala:1119 +#: src/Common/LinuxKernel.vala:1120 msgid "Continue ?" msgstr "Reprendre ?" -#: src/Common/LinuxKernel.vala:1141 src/Console/AppConsole.vala:208 +#: src/Common/LinuxKernel.vala:1142 src/Console/AppConsole.vala:208 msgid "Latest update" msgstr "Dernière mise à jour" -#: src/Common/LinuxKernel.vala:1152 src/Console/AppConsole.vala:215 +#: src/Common/LinuxKernel.vala:1153 src/Console/AppConsole.vala:215 msgid "Latest point update" msgstr "Dernière mise à jour mineure" -#: src/Common/LinuxKernel.vala:1160 src/Console/AppConsole.vala:220 +#: src/Common/LinuxKernel.vala:1161 src/Console/AppConsole.vala:220 #: src/Console/AppConsole.vala:240 msgid "No updates found" msgstr "Aucune mise à jour disponible" -#: src/Common/LinuxKernel.vala:1169 +#: src/Common/LinuxKernel.vala:1170 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Installer le noyau en version %s ? (y/n): " -#: src/Common/Main.vala:346 +#: src/Common/Main.vala:354 msgid "Called from" msgstr "Appelé à partir de" -#: src/Common/Main.vala:346 +#: src/Common/Main.vala:354 msgid "at logon" msgstr "au démarrage" -#: src/Common/Main.vala:347 +#: src/Common/Main.vala:355 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" "Ce fichier est écrasé et exécuté à nouveau chaque fois que les paramètres " "sont enregistrés dans" -#: src/Common/Main.vala:379 +#: src/Common/Main.vala:387 msgid "Notifications are disabled" msgstr "Les notifications sont désactivées" @@ -223,7 +223,7 @@ msgstr "Les notifications sont désactivées" msgid "File not found: %s" msgstr "Fichier introuvable : %s" -#: src/Console/AppConsole.vala:39 src/Gtk/AppGtk.vala:77 +#: src/Console/AppConsole.vala:39 src/Gtk/AppGtk.vala:75 msgid "Syntax" msgstr "Syntaxe" @@ -267,7 +267,7 @@ msgstr "Désinstaller le noyau spécifié" msgid "Uninstall specified kernels" msgstr "Désinstaller le noyau spécifié" -#: src/Console/AppConsole.vala:51 src/Gtk/MainWindow.vala:326 +#: src/Console/AppConsole.vala:51 src/Gtk/MainWindow.vala:334 msgid "Uninstall all but the highest installed version" msgstr "Désinstallez toutes le version installées, sauf la plus élevée" @@ -279,7 +279,7 @@ msgstr "Télécharger les noyaux spécifiés" msgid "Delete cached info about available kernels" msgstr "Supprimer les informations mises en cache sur les noyaux disponibles" -#: src/Console/AppConsole.vala:55 src/Gtk/AppGtk.vala:79 +#: src/Console/AppConsole.vala:55 src/Gtk/AppGtk.vala:77 msgid "Options" msgstr "Options" @@ -314,7 +314,7 @@ msgid "Locked kernels and the currently running kernel are ignored" msgstr "Le noyau en cours d'exécution sera toujours ignoré" #: src/Console/AppConsole.vala:139 src/Console/AppConsole.vala:193 -#: src/Gtk/AppGtk.vala:111 +#: src/Gtk/AppGtk.vala:109 msgid "Unknown option" msgstr "Option inconnue" @@ -328,11 +328,11 @@ msgstr "Les notifications sont désactivées" msgid "Kernel %s Available" msgstr "Paquet %s disponibles" -#: src/Console/AppConsole.vala:266 src/Gtk/SettingsDialog.vala:154 +#: src/Console/AppConsole.vala:266 src/Gtk/SettingsDialog.vala:151 msgid "Show" msgstr "Montrer" -#: src/Console/AppConsole.vala:267 src/Gtk/MainWindow.vala:305 +#: src/Console/AppConsole.vala:267 src/Gtk/MainWindow.vala:313 msgid "Install" msgstr "Installer" @@ -348,7 +348,7 @@ msgstr "Crédits" msgid "Back" msgstr "Retour" -#: src/Gtk/AboutWindow.vala:185 src/Gtk/TerminalWindow.vala:169 +#: src/Gtk/AboutWindow.vala:185 src/Gtk/TerminalWindow.vala:152 msgid "Close" msgstr "Fermer" @@ -376,174 +376,174 @@ msgstr "Documentalistes" msgid "Third Party Inclusions" msgstr "Dépendances Tierces" -#: src/Gtk/AppGtk.vala:77 +#: src/Gtk/AppGtk.vala:75 msgid "options" msgstr "options" -#: src/Gtk/AppGtk.vala:81 +#: src/Gtk/AppGtk.vala:79 msgid "Print debug information" msgstr "Afficher les informations de débogage" -#: src/Gtk/AppGtk.vala:82 +#: src/Gtk/AppGtk.vala:80 msgid "Show all options" msgstr "Afficher toutes les options" -#: src/Gtk/MainWindow.vala:152 +#: src/Gtk/MainWindow.vala:160 msgid "Lock" msgstr "" -#: src/Gtk/MainWindow.vala:169 +#: src/Gtk/MainWindow.vala:177 msgid "Status" msgstr "Statut" -#: src/Gtk/MainWindow.vala:181 +#: src/Gtk/MainWindow.vala:189 msgid "Notes" msgstr "Notes" -#: src/Gtk/MainWindow.vala:310 +#: src/Gtk/MainWindow.vala:318 msgid "Uninstall" msgstr "Désinstaller" -#: src/Gtk/MainWindow.vala:316 +#: src/Gtk/MainWindow.vala:324 msgid "Changelog, build status, etc" msgstr "" -#: src/Gtk/MainWindow.vala:325 +#: src/Gtk/MainWindow.vala:333 msgid "Uninstall Old" msgstr "Désinstaller Ancien" -#: src/Gtk/MainWindow.vala:331 +#: src/Gtk/MainWindow.vala:339 msgid "Reload" msgstr "Recharger" -#: src/Gtk/MainWindow.vala:332 +#: src/Gtk/MainWindow.vala:340 msgid "Delete and reload all cached kernel info" msgstr "" -#: src/Gtk/MainWindow.vala:337 src/Gtk/SettingsDialog.vala:43 +#: src/Gtk/MainWindow.vala:345 src/Gtk/SettingsDialog.vala:41 msgid "Settings" msgstr "Paramètres" -#: src/Gtk/MainWindow.vala:342 +#: src/Gtk/MainWindow.vala:350 msgid "About" msgstr "À propos" -#: src/Gtk/MainWindow.vala:347 +#: src/Gtk/MainWindow.vala:355 msgid "Exit" msgstr "Sortie" -#: src/Gtk/MainWindow.vala:428 +#: src/Gtk/MainWindow.vala:436 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "" "Utilitaire de mise à niveau des noyaux pour les distributions basées sur " "Ubuntu" -#: src/Gtk/MainWindow.vala:429 +#: src/Gtk/MainWindow.vala:437 msgid "Forked" msgstr "Forkée" -#: src/Gtk/MainWindow.vala:429 +#: src/Gtk/MainWindow.vala:437 msgid "Original" msgstr "Originale" -#: src/Gtk/MainWindow.vala:458 +#: src/Gtk/MainWindow.vala:466 msgid "Updating kernels" msgstr "Mise à jour des noyaux" -#: src/Gtk/MainWindow.vala:518 +#: src/Gtk/MainWindow.vala:526 msgid "available" msgstr "disponible" -#: src/Gtk/MainWindow.vala:560 src/Gtk/MainWindow.vala:591 -#: src/Gtk/MainWindow.vala:616 +#: src/Gtk/MainWindow.vala:568 src/Gtk/MainWindow.vala:599 +#: src/Gtk/MainWindow.vala:624 msgid "DONE" msgstr "" -#: src/Gtk/SettingsDialog.vala:53 +#: src/Gtk/SettingsDialog.vala:50 msgid "Notification" msgstr "Notification" -#: src/Gtk/SettingsDialog.vala:60 +#: src/Gtk/SettingsDialog.vala:57 msgid "Notify if a major release is available" msgstr "Notifier si une version stable majeure est disponible" -#: src/Gtk/SettingsDialog.vala:68 +#: src/Gtk/SettingsDialog.vala:65 msgid "Notify if a point release is available" msgstr "Notifier si une version stable mineure est disponible" -#: src/Gtk/SettingsDialog.vala:76 +#: src/Gtk/SettingsDialog.vala:73 msgid "Seconds interval enabled for debugging" msgstr "Intervalle de secondes activé pour le débogage" -#: src/Gtk/SettingsDialog.vala:99 +#: src/Gtk/SettingsDialog.vala:96 msgid "Check every" msgstr "Vérifier toutes les" -#: src/Gtk/SettingsDialog.vala:122 +#: src/Gtk/SettingsDialog.vala:119 msgid "Hours" msgstr "Heures" -#: src/Gtk/SettingsDialog.vala:124 +#: src/Gtk/SettingsDialog.vala:121 msgid "Days" msgstr "Jours" -#: src/Gtk/SettingsDialog.vala:126 +#: src/Gtk/SettingsDialog.vala:123 msgid "Weeks" msgstr "Semaines" -#: src/Gtk/SettingsDialog.vala:129 +#: src/Gtk/SettingsDialog.vala:126 msgid "Seconds" msgstr "Secondes" -#: src/Gtk/SettingsDialog.vala:135 +#: src/Gtk/SettingsDialog.vala:132 msgid "Filters" msgstr "Filtres" -#: src/Gtk/SettingsDialog.vala:143 +#: src/Gtk/SettingsDialog.vala:140 msgid "Hide unstable and RC releases" msgstr "Cacher les versions instables et RC" -#: src/Gtk/SettingsDialog.vala:165 +#: src/Gtk/SettingsDialog.vala:162 msgid "previous major versions ( -1 = all )" msgstr "versions majeures précédentes ( -1 = toutes )" -#: src/Gtk/SettingsDialog.vala:169 +#: src/Gtk/SettingsDialog.vala:166 msgid "Network" msgstr "Réseau" -#: src/Gtk/SettingsDialog.vala:180 +#: src/Gtk/SettingsDialog.vala:177 msgid "Internet connection timeout in" msgstr "Délai d'expiration de la connexion Internet dans" -#: src/Gtk/SettingsDialog.vala:192 +#: src/Gtk/SettingsDialog.vala:189 msgid "seconds" msgstr "secondes" -#: src/Gtk/SettingsDialog.vala:199 +#: src/Gtk/SettingsDialog.vala:196 msgid "Max concurrent downloads" msgstr "Nombre maximum de téléchargements parallèles" -#: src/Gtk/SettingsDialog.vala:212 +#: src/Gtk/SettingsDialog.vala:209 msgid "Verify Checksums with the CHECKSUMS files" msgstr "Vérifier les sommes de contrôle avec les fichiers CHECKSUMS" -#: src/Gtk/SettingsDialog.vala:220 +#: src/Gtk/SettingsDialog.vala:217 msgid "Proxy" msgstr "Proxy" -#: src/Gtk/SettingsDialog.vala:252 +#: src/Gtk/SettingsDialog.vala:250 #, fuzzy msgid "Auth Command" msgstr "Commandes" -#: src/Gtk/SettingsDialog.vala:273 +#: src/Gtk/SettingsDialog.vala:280 msgid "Done" msgstr "" -#: src/Gtk/TerminalWindow.vala:159 +#: src/Gtk/TerminalWindow.vala:142 msgid "Cancel" msgstr "Annuler" -#: src/lib/l.misc.vala:84 +#: src/lib/l.misc.vala:102 msgid "Can not reach site" msgstr "No se puede llegar al sitio" diff --git a/po/hr.po b/po/hr.po index 7df5bbc2..aa0a1bfe 100644 --- a/po/hr.po +++ b/po/hr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-03 08:40-0400\n" +"POT-Creation-Date: 2023-06-04 08:48-0400\n" "PO-Revision-Date: 2022-09-22 12:13+0200\n" "Last-Translator: gogo \n" "Language-Team: Croatian\n" @@ -62,11 +62,11 @@ msgid "locked" msgstr "" #: src/Common/LinuxKernel.vala:475 src/Common/LinuxKernel.vala:1003 -#: src/Common/LinuxKernel.vala:1093 +#: src/Common/LinuxKernel.vala:1094 msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:668 src/Gtk/MainWindow.vala:514 +#: src/Common/LinuxKernel.vala:668 src/Gtk/MainWindow.vala:522 msgid "Running" msgstr "Pokrenuto" @@ -94,7 +94,7 @@ msgstr "Datoteka nije pronađena" msgid "Available Kernels" msgstr "Dostupni kerneli" -#: src/Common/LinuxKernel.vala:920 src/Gtk/MainWindow.vala:128 +#: src/Common/LinuxKernel.vala:920 src/Gtk/MainWindow.vala:136 msgid "Kernel" msgstr "Kernel" @@ -121,7 +121,7 @@ msgstr "Učitavanje" msgid "Installing selected kernels" msgstr "Deinstaliraj određene kernele" -#: src/Common/LinuxKernel.vala:995 src/Common/LinuxKernel.vala:1033 +#: src/Common/LinuxKernel.vala:995 src/Common/LinuxKernel.vala:1034 #, fuzzy msgid "Requested" msgstr "Zatražio" @@ -134,86 +134,86 @@ msgstr "je već instaliran." msgid "download failed." msgstr "" -#: src/Common/LinuxKernel.vala:1016 +#: src/Common/LinuxKernel.vala:1015 #, fuzzy msgid "Install: no installable kernels secified" msgstr "Naredba nije navedena" -#: src/Common/LinuxKernel.vala:1029 +#: src/Common/LinuxKernel.vala:1030 msgid "Uninstalling selected kernels" msgstr "Deinstaliraj određene kernele" -#: src/Common/LinuxKernel.vala:1036 +#: src/Common/LinuxKernel.vala:1037 #, fuzzy msgid "Not uninstalling the currently running kernel" msgstr "ne deinstaliranje trenutno pokrenute kernel" -#: src/Common/LinuxKernel.vala:1041 +#: src/Common/LinuxKernel.vala:1042 msgid "is locked" msgstr "" -#: src/Common/LinuxKernel.vala:1049 +#: src/Common/LinuxKernel.vala:1050 msgid "found" msgstr "pronađen" -#: src/Common/LinuxKernel.vala:1053 +#: src/Common/LinuxKernel.vala:1054 msgid "Uninstall: no uninstallable packages found" msgstr "" -#: src/Common/LinuxKernel.vala:1089 +#: src/Common/LinuxKernel.vala:1090 #, fuzzy msgid "is the highest installed version." msgstr "Deinstaliraj sve osim najnovije instalirane verzije" -#: src/Common/LinuxKernel.vala:1102 +#: src/Common/LinuxKernel.vala:1103 msgid "Could not find running kernel in list" msgstr "Nije moguće pronaći pokrenutu kernel na popisu" -#: src/Common/LinuxKernel.vala:1107 +#: src/Common/LinuxKernel.vala:1108 msgid "Could not find any kernels to uninstall" msgstr "Nema pronađenih kernela za deinstaliranje" -#: src/Common/LinuxKernel.vala:1115 +#: src/Common/LinuxKernel.vala:1116 msgid "The following kernels will be uninstalled" msgstr "Deinstalirat će se sljedeće kerneli" -#: src/Common/LinuxKernel.vala:1119 +#: src/Common/LinuxKernel.vala:1120 msgid "Continue ?" msgstr "Nastavi?" -#: src/Common/LinuxKernel.vala:1141 src/Console/AppConsole.vala:208 +#: src/Common/LinuxKernel.vala:1142 src/Console/AppConsole.vala:208 msgid "Latest update" msgstr "Najnovija nadopuna" -#: src/Common/LinuxKernel.vala:1152 src/Console/AppConsole.vala:215 +#: src/Common/LinuxKernel.vala:1153 src/Console/AppConsole.vala:215 msgid "Latest point update" msgstr "Najnovija ciljana nadopuna" -#: src/Common/LinuxKernel.vala:1160 src/Console/AppConsole.vala:220 +#: src/Common/LinuxKernel.vala:1161 src/Console/AppConsole.vala:220 #: src/Console/AppConsole.vala:240 msgid "No updates found" msgstr "Nema pronađenih nadopuna" -#: src/Common/LinuxKernel.vala:1169 +#: src/Common/LinuxKernel.vala:1170 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Instaliraj kernel inačice %s ? (d/n): " -#: src/Common/Main.vala:346 +#: src/Common/Main.vala:354 msgid "Called from" msgstr "Pozvano od" -#: src/Common/Main.vala:346 +#: src/Common/Main.vala:354 msgid "at logon" msgstr "indításkor" -#: src/Common/Main.vala:347 +#: src/Common/Main.vala:355 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" "Ova se datoteka prepisuje i ponovno izvršava kad god se postavke spremaju u" -#: src/Common/Main.vala:379 +#: src/Common/Main.vala:387 msgid "Notifications are disabled" msgstr "Obavijesti su onemogućene" @@ -222,7 +222,7 @@ msgstr "Obavijesti su onemogućene" msgid "File not found: %s" msgstr "Datoteka nije pronađena: %s" -#: src/Console/AppConsole.vala:39 src/Gtk/AppGtk.vala:77 +#: src/Console/AppConsole.vala:39 src/Gtk/AppGtk.vala:75 msgid "Syntax" msgstr "Sintaksa" @@ -266,7 +266,7 @@ msgstr "Deinstaliraj određene kernele" msgid "Uninstall specified kernels" msgstr "Deinstaliraj određene kernele" -#: src/Console/AppConsole.vala:51 src/Gtk/MainWindow.vala:326 +#: src/Console/AppConsole.vala:51 src/Gtk/MainWindow.vala:334 msgid "Uninstall all but the highest installed version" msgstr "Deinstaliraj sve osim najnovije instalirane verzije" @@ -278,7 +278,7 @@ msgstr "Preuzmi određene kernele" msgid "Delete cached info about available kernels" msgstr "Brisanje predmemoriranih podataka o dostupnim jezgrama" -#: src/Console/AppConsole.vala:55 src/Gtk/AppGtk.vala:79 +#: src/Console/AppConsole.vala:55 src/Gtk/AppGtk.vala:77 msgid "Options" msgstr "Mogućnosti" @@ -313,7 +313,7 @@ msgid "Locked kernels and the currently running kernel are ignored" msgstr "Trenutno pokrenuta jezgra uvijek će se zanemariti" #: src/Console/AppConsole.vala:139 src/Console/AppConsole.vala:193 -#: src/Gtk/AppGtk.vala:111 +#: src/Gtk/AppGtk.vala:109 msgid "Unknown option" msgstr "Nepoznata mogućnost" @@ -327,11 +327,11 @@ msgstr "Obavijesti su onemogućene" msgid "Kernel %s Available" msgstr "Kernel %s je dostupan" -#: src/Console/AppConsole.vala:266 src/Gtk/SettingsDialog.vala:154 +#: src/Console/AppConsole.vala:266 src/Gtk/SettingsDialog.vala:151 msgid "Show" msgstr "Prikaži" -#: src/Console/AppConsole.vala:267 src/Gtk/MainWindow.vala:305 +#: src/Console/AppConsole.vala:267 src/Gtk/MainWindow.vala:313 msgid "Install" msgstr "Instaliraj" @@ -347,7 +347,7 @@ msgstr "Zasluge" msgid "Back" msgstr "Natrag" -#: src/Gtk/AboutWindow.vala:185 src/Gtk/TerminalWindow.vala:169 +#: src/Gtk/AboutWindow.vala:185 src/Gtk/TerminalWindow.vala:152 msgid "Close" msgstr "Zatvori" @@ -375,172 +375,172 @@ msgstr "Autori dokumentacije" msgid "Third Party Inclusions" msgstr "Uključene treće strane" -#: src/Gtk/AppGtk.vala:77 +#: src/Gtk/AppGtk.vala:75 msgid "options" msgstr "mogućnosti" -#: src/Gtk/AppGtk.vala:81 +#: src/Gtk/AppGtk.vala:79 msgid "Print debug information" msgstr "Ispiši informacije otklanjanja grešaka" -#: src/Gtk/AppGtk.vala:82 +#: src/Gtk/AppGtk.vala:80 msgid "Show all options" msgstr "Prikaži sve mogućnosti" -#: src/Gtk/MainWindow.vala:152 +#: src/Gtk/MainWindow.vala:160 msgid "Lock" msgstr "" -#: src/Gtk/MainWindow.vala:169 +#: src/Gtk/MainWindow.vala:177 msgid "Status" msgstr "Stanje" -#: src/Gtk/MainWindow.vala:181 +#: src/Gtk/MainWindow.vala:189 msgid "Notes" msgstr "Bilješke" -#: src/Gtk/MainWindow.vala:310 +#: src/Gtk/MainWindow.vala:318 msgid "Uninstall" msgstr "Deinstaliraj" -#: src/Gtk/MainWindow.vala:316 +#: src/Gtk/MainWindow.vala:324 msgid "Changelog, build status, etc" msgstr "" -#: src/Gtk/MainWindow.vala:325 +#: src/Gtk/MainWindow.vala:333 msgid "Uninstall Old" msgstr "Deinstaliraj staro" -#: src/Gtk/MainWindow.vala:331 +#: src/Gtk/MainWindow.vala:339 msgid "Reload" msgstr "Ponovno učitati" -#: src/Gtk/MainWindow.vala:332 +#: src/Gtk/MainWindow.vala:340 msgid "Delete and reload all cached kernel info" msgstr "" -#: src/Gtk/MainWindow.vala:337 src/Gtk/SettingsDialog.vala:43 +#: src/Gtk/MainWindow.vala:345 src/Gtk/SettingsDialog.vala:41 msgid "Settings" msgstr "Postavke" -#: src/Gtk/MainWindow.vala:342 +#: src/Gtk/MainWindow.vala:350 msgid "About" msgstr "O programu" -#: src/Gtk/MainWindow.vala:347 +#: src/Gtk/MainWindow.vala:355 msgid "Exit" msgstr "Izlaz" -#: src/Gtk/MainWindow.vala:428 +#: src/Gtk/MainWindow.vala:436 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Alat za nadogradnju kernela Ubuntu temeljenih distribucija" -#: src/Gtk/MainWindow.vala:429 +#: src/Gtk/MainWindow.vala:437 msgid "Forked" msgstr "Forkano" -#: src/Gtk/MainWindow.vala:429 +#: src/Gtk/MainWindow.vala:437 msgid "Original" msgstr "Izvornik" -#: src/Gtk/MainWindow.vala:458 +#: src/Gtk/MainWindow.vala:466 msgid "Updating kernels" msgstr "Ažuriranje jezgri" -#: src/Gtk/MainWindow.vala:518 +#: src/Gtk/MainWindow.vala:526 msgid "available" msgstr "dostupno" -#: src/Gtk/MainWindow.vala:560 src/Gtk/MainWindow.vala:591 -#: src/Gtk/MainWindow.vala:616 +#: src/Gtk/MainWindow.vala:568 src/Gtk/MainWindow.vala:599 +#: src/Gtk/MainWindow.vala:624 msgid "DONE" msgstr "" -#: src/Gtk/SettingsDialog.vala:53 +#: src/Gtk/SettingsDialog.vala:50 msgid "Notification" msgstr "Obavijesti" -#: src/Gtk/SettingsDialog.vala:60 +#: src/Gtk/SettingsDialog.vala:57 msgid "Notify if a major release is available" msgstr "Obavijesti kada je glavno izdanje dostupno" -#: src/Gtk/SettingsDialog.vala:68 +#: src/Gtk/SettingsDialog.vala:65 msgid "Notify if a point release is available" msgstr "Obavijesti kada je pojedino izdanje dostupno" -#: src/Gtk/SettingsDialog.vala:76 +#: src/Gtk/SettingsDialog.vala:73 msgid "Seconds interval enabled for debugging" msgstr "Interval sekundi omogućen za ispravljanje pogrešaka" -#: src/Gtk/SettingsDialog.vala:99 +#: src/Gtk/SettingsDialog.vala:96 msgid "Check every" msgstr "Provjeri svaka" -#: src/Gtk/SettingsDialog.vala:122 +#: src/Gtk/SettingsDialog.vala:119 msgid "Hours" msgstr "Sati" -#: src/Gtk/SettingsDialog.vala:124 +#: src/Gtk/SettingsDialog.vala:121 msgid "Days" msgstr "Dani" -#: src/Gtk/SettingsDialog.vala:126 +#: src/Gtk/SettingsDialog.vala:123 msgid "Weeks" msgstr "Tjedna" -#: src/Gtk/SettingsDialog.vala:129 +#: src/Gtk/SettingsDialog.vala:126 msgid "Seconds" msgstr "Sekunde" -#: src/Gtk/SettingsDialog.vala:135 +#: src/Gtk/SettingsDialog.vala:132 msgid "Filters" msgstr "Filteri" -#: src/Gtk/SettingsDialog.vala:143 +#: src/Gtk/SettingsDialog.vala:140 msgid "Hide unstable and RC releases" msgstr "Sakrij nestabilna i RC izdanja" -#: src/Gtk/SettingsDialog.vala:165 +#: src/Gtk/SettingsDialog.vala:162 msgid "previous major versions ( -1 = all )" msgstr "prethodne glavne verzije ( -1 = sve )" -#: src/Gtk/SettingsDialog.vala:169 +#: src/Gtk/SettingsDialog.vala:166 msgid "Network" msgstr "Mreža" -#: src/Gtk/SettingsDialog.vala:180 +#: src/Gtk/SettingsDialog.vala:177 msgid "Internet connection timeout in" msgstr "Prekoračenje vremena internetske veze u" -#: src/Gtk/SettingsDialog.vala:192 +#: src/Gtk/SettingsDialog.vala:189 msgid "seconds" msgstr "sekunde" -#: src/Gtk/SettingsDialog.vala:199 +#: src/Gtk/SettingsDialog.vala:196 msgid "Max concurrent downloads" msgstr "Najviše istodobnih preuzimanja" -#: src/Gtk/SettingsDialog.vala:212 +#: src/Gtk/SettingsDialog.vala:209 msgid "Verify Checksums with the CHECKSUMS files" msgstr "Provjera kontrolnih zbrojeva pomoću CHECKSUMS datoteka" -#: src/Gtk/SettingsDialog.vala:220 +#: src/Gtk/SettingsDialog.vala:217 msgid "Proxy" msgstr "Proxy" -#: src/Gtk/SettingsDialog.vala:252 +#: src/Gtk/SettingsDialog.vala:250 #, fuzzy msgid "Auth Command" msgstr "Naredbe" -#: src/Gtk/SettingsDialog.vala:273 +#: src/Gtk/SettingsDialog.vala:280 msgid "Done" msgstr "" -#: src/Gtk/TerminalWindow.vala:159 +#: src/Gtk/TerminalWindow.vala:142 msgid "Cancel" msgstr "Odustani" -#: src/lib/l.misc.vala:84 +#: src/lib/l.misc.vala:102 msgid "Can not reach site" msgstr "Nije moguće doći do web-mjesta" diff --git a/po/it.po b/po/it.po index 78618ef1..aeff8a3a 100644 --- a/po/it.po +++ b/po/it.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-03 08:40-0400\n" +"POT-Creation-Date: 2023-06-04 08:48-0400\n" "PO-Revision-Date: 2020-08-22 15:35+0100\n" "Last-Translator: Demetrio Mendozzi\n" "Language-Team: Italian\n" @@ -60,11 +60,11 @@ msgid "locked" msgstr "" #: src/Common/LinuxKernel.vala:475 src/Common/LinuxKernel.vala:1003 -#: src/Common/LinuxKernel.vala:1093 +#: src/Common/LinuxKernel.vala:1094 msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:668 src/Gtk/MainWindow.vala:514 +#: src/Common/LinuxKernel.vala:668 src/Gtk/MainWindow.vala:522 msgid "Running" msgstr "In esecuzione" @@ -92,7 +92,7 @@ msgstr "File non trovato" msgid "Available Kernels" msgstr "Kernel disponibili" -#: src/Common/LinuxKernel.vala:920 src/Gtk/MainWindow.vala:128 +#: src/Common/LinuxKernel.vala:920 src/Gtk/MainWindow.vala:136 msgid "Kernel" msgstr "Kernel" @@ -119,7 +119,7 @@ msgstr "Scaricamento" msgid "Installing selected kernels" msgstr "Disinstalla i kernel specificati" -#: src/Common/LinuxKernel.vala:995 src/Common/LinuxKernel.vala:1033 +#: src/Common/LinuxKernel.vala:995 src/Common/LinuxKernel.vala:1034 #, fuzzy msgid "Requested" msgstr "richiesto" @@ -132,87 +132,87 @@ msgstr "è già installato." msgid "download failed." msgstr "" -#: src/Common/LinuxKernel.vala:1016 +#: src/Common/LinuxKernel.vala:1015 #, fuzzy msgid "Install: no installable kernels secified" msgstr "Comando non specificato" -#: src/Common/LinuxKernel.vala:1029 +#: src/Common/LinuxKernel.vala:1030 msgid "Uninstalling selected kernels" msgstr "Disinstalla i kernel specificati" -#: src/Common/LinuxKernel.vala:1036 +#: src/Common/LinuxKernel.vala:1037 #, fuzzy msgid "Not uninstalling the currently running kernel" msgstr "non disinstallare il kernel attualmente in esecuzione" -#: src/Common/LinuxKernel.vala:1041 +#: src/Common/LinuxKernel.vala:1042 msgid "is locked" msgstr "" -#: src/Common/LinuxKernel.vala:1049 +#: src/Common/LinuxKernel.vala:1050 msgid "found" msgstr "trovato" -#: src/Common/LinuxKernel.vala:1053 +#: src/Common/LinuxKernel.vala:1054 msgid "Uninstall: no uninstallable packages found" msgstr "" -#: src/Common/LinuxKernel.vala:1089 +#: src/Common/LinuxKernel.vala:1090 #, fuzzy msgid "is the highest installed version." msgstr "Disinstallare tutti tranne la versione più recente installata" -#: src/Common/LinuxKernel.vala:1102 +#: src/Common/LinuxKernel.vala:1103 msgid "Could not find running kernel in list" msgstr "Impossibile trovare il kernel in esecuzione nell'elenco" -#: src/Common/LinuxKernel.vala:1107 +#: src/Common/LinuxKernel.vala:1108 msgid "Could not find any kernels to uninstall" msgstr "Impossibile trovare alcun kernel da rimuovere" -#: src/Common/LinuxKernel.vala:1115 +#: src/Common/LinuxKernel.vala:1116 msgid "The following kernels will be uninstalled" msgstr "I seguenti kernel saranno rimossi" -#: src/Common/LinuxKernel.vala:1119 +#: src/Common/LinuxKernel.vala:1120 msgid "Continue ?" msgstr "Continuare ?" -#: src/Common/LinuxKernel.vala:1141 src/Console/AppConsole.vala:208 +#: src/Common/LinuxKernel.vala:1142 src/Console/AppConsole.vala:208 msgid "Latest update" msgstr "Ultimo aggiornamento" -#: src/Common/LinuxKernel.vala:1152 src/Console/AppConsole.vala:215 +#: src/Common/LinuxKernel.vala:1153 src/Console/AppConsole.vala:215 msgid "Latest point update" msgstr "Ultimo aggiornamento del rilascio parziale" -#: src/Common/LinuxKernel.vala:1160 src/Console/AppConsole.vala:220 +#: src/Common/LinuxKernel.vala:1161 src/Console/AppConsole.vala:220 #: src/Console/AppConsole.vala:240 msgid "No updates found" msgstr "Nessun aggiornamento trovato" -#: src/Common/LinuxKernel.vala:1169 +#: src/Common/LinuxKernel.vala:1170 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Installare la versione del kernel %s ? (y/n): " -#: src/Common/Main.vala:346 +#: src/Common/Main.vala:354 msgid "Called from" msgstr "Chiamato da" -#: src/Common/Main.vala:346 +#: src/Common/Main.vala:354 msgid "at logon" msgstr "all'avvio" -#: src/Common/Main.vala:347 +#: src/Common/Main.vala:355 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" "Questo file viene sovrascritto ed eseguito nuovamente ogni volta che vengono " "salvate le impostazioni" -#: src/Common/Main.vala:379 +#: src/Common/Main.vala:387 msgid "Notifications are disabled" msgstr "Le notifiche sono disabilitate" @@ -221,7 +221,7 @@ msgstr "Le notifiche sono disabilitate" msgid "File not found: %s" msgstr "File non trovato: %s" -#: src/Console/AppConsole.vala:39 src/Gtk/AppGtk.vala:77 +#: src/Console/AppConsole.vala:39 src/Gtk/AppGtk.vala:75 msgid "Syntax" msgstr "Sintassi" @@ -267,7 +267,7 @@ msgstr "Disinstalla i kernel specificati" msgid "Uninstall specified kernels" msgstr "Disinstalla i kernel specificati" -#: src/Console/AppConsole.vala:51 src/Gtk/MainWindow.vala:326 +#: src/Console/AppConsole.vala:51 src/Gtk/MainWindow.vala:334 msgid "Uninstall all but the highest installed version" msgstr "Disinstallare tutti tranne la versione più recente installata" @@ -279,7 +279,7 @@ msgstr "Scarica i kernel specificati" msgid "Delete cached info about available kernels" msgstr "Elimina le informazioni sui kernel disponibili dalla cache " -#: src/Console/AppConsole.vala:55 src/Gtk/AppGtk.vala:79 +#: src/Console/AppConsole.vala:55 src/Gtk/AppGtk.vala:77 msgid "Options" msgstr "Opzioni" @@ -314,7 +314,7 @@ msgid "Locked kernels and the currently running kernel are ignored" msgstr "Il kernel attualmente in esecuzione sarà sempre ignorato" #: src/Console/AppConsole.vala:139 src/Console/AppConsole.vala:193 -#: src/Gtk/AppGtk.vala:111 +#: src/Gtk/AppGtk.vala:109 msgid "Unknown option" msgstr "Opzione sconosciuta" @@ -328,11 +328,11 @@ msgstr "Le notifiche sono disabilitate" msgid "Kernel %s Available" msgstr "Kernel %s Disponibile" -#: src/Console/AppConsole.vala:266 src/Gtk/SettingsDialog.vala:154 +#: src/Console/AppConsole.vala:266 src/Gtk/SettingsDialog.vala:151 msgid "Show" msgstr "Mostra" -#: src/Console/AppConsole.vala:267 src/Gtk/MainWindow.vala:305 +#: src/Console/AppConsole.vala:267 src/Gtk/MainWindow.vala:313 msgid "Install" msgstr "Installa" @@ -348,7 +348,7 @@ msgstr "Crediti" msgid "Back" msgstr "Indietro" -#: src/Gtk/AboutWindow.vala:185 src/Gtk/TerminalWindow.vala:169 +#: src/Gtk/AboutWindow.vala:185 src/Gtk/TerminalWindow.vala:152 msgid "Close" msgstr "Chiudi" @@ -376,172 +376,172 @@ msgstr "Documentatori" msgid "Third Party Inclusions" msgstr "Inclusioni di terze parti" -#: src/Gtk/AppGtk.vala:77 +#: src/Gtk/AppGtk.vala:75 msgid "options" msgstr "opzioni" -#: src/Gtk/AppGtk.vala:81 +#: src/Gtk/AppGtk.vala:79 msgid "Print debug information" msgstr "Stampa le informazioni di debug" -#: src/Gtk/AppGtk.vala:82 +#: src/Gtk/AppGtk.vala:80 msgid "Show all options" msgstr "Mostra tutte le opzioni" -#: src/Gtk/MainWindow.vala:152 +#: src/Gtk/MainWindow.vala:160 msgid "Lock" msgstr "" -#: src/Gtk/MainWindow.vala:169 +#: src/Gtk/MainWindow.vala:177 msgid "Status" msgstr "Stato" -#: src/Gtk/MainWindow.vala:181 +#: src/Gtk/MainWindow.vala:189 msgid "Notes" msgstr "Note" -#: src/Gtk/MainWindow.vala:310 +#: src/Gtk/MainWindow.vala:318 msgid "Uninstall" msgstr "Disinstalla" -#: src/Gtk/MainWindow.vala:316 +#: src/Gtk/MainWindow.vala:324 msgid "Changelog, build status, etc" msgstr "" -#: src/Gtk/MainWindow.vala:325 +#: src/Gtk/MainWindow.vala:333 msgid "Uninstall Old" msgstr "Disinstalla i vecchi" -#: src/Gtk/MainWindow.vala:331 +#: src/Gtk/MainWindow.vala:339 msgid "Reload" msgstr "Ricarica" -#: src/Gtk/MainWindow.vala:332 +#: src/Gtk/MainWindow.vala:340 msgid "Delete and reload all cached kernel info" msgstr "" -#: src/Gtk/MainWindow.vala:337 src/Gtk/SettingsDialog.vala:43 +#: src/Gtk/MainWindow.vala:345 src/Gtk/SettingsDialog.vala:41 msgid "Settings" msgstr "Impostazioni" -#: src/Gtk/MainWindow.vala:342 +#: src/Gtk/MainWindow.vala:350 msgid "About" msgstr "Informazioni" -#: src/Gtk/MainWindow.vala:347 +#: src/Gtk/MainWindow.vala:355 msgid "Exit" msgstr "Chiudi" -#: src/Gtk/MainWindow.vala:428 +#: src/Gtk/MainWindow.vala:436 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Utilità di aggiornamento del kernel per distribuzioni basate su Ubuntu" -#: src/Gtk/MainWindow.vala:429 +#: src/Gtk/MainWindow.vala:437 msgid "Forked" msgstr "Forked" -#: src/Gtk/MainWindow.vala:429 +#: src/Gtk/MainWindow.vala:437 msgid "Original" msgstr "Originale" -#: src/Gtk/MainWindow.vala:458 +#: src/Gtk/MainWindow.vala:466 msgid "Updating kernels" msgstr "Aggiornamento dei kernel" -#: src/Gtk/MainWindow.vala:518 +#: src/Gtk/MainWindow.vala:526 msgid "available" msgstr "disponibile" -#: src/Gtk/MainWindow.vala:560 src/Gtk/MainWindow.vala:591 -#: src/Gtk/MainWindow.vala:616 +#: src/Gtk/MainWindow.vala:568 src/Gtk/MainWindow.vala:599 +#: src/Gtk/MainWindow.vala:624 msgid "DONE" msgstr "" -#: src/Gtk/SettingsDialog.vala:53 +#: src/Gtk/SettingsDialog.vala:50 msgid "Notification" msgstr "Notifica" -#: src/Gtk/SettingsDialog.vala:60 +#: src/Gtk/SettingsDialog.vala:57 msgid "Notify if a major release is available" msgstr "Avvisa se è disponibile una versione principale" -#: src/Gtk/SettingsDialog.vala:68 +#: src/Gtk/SettingsDialog.vala:65 msgid "Notify if a point release is available" msgstr "Avvisa se è disponibile un rilascio parziale" -#: src/Gtk/SettingsDialog.vala:76 +#: src/Gtk/SettingsDialog.vala:73 msgid "Seconds interval enabled for debugging" msgstr "Intervallo in secondi abilitato per il debug" -#: src/Gtk/SettingsDialog.vala:99 +#: src/Gtk/SettingsDialog.vala:96 msgid "Check every" msgstr "Controlla ogni" -#: src/Gtk/SettingsDialog.vala:122 +#: src/Gtk/SettingsDialog.vala:119 msgid "Hours" msgstr "Ore" -#: src/Gtk/SettingsDialog.vala:124 +#: src/Gtk/SettingsDialog.vala:121 msgid "Days" msgstr "Giorni" -#: src/Gtk/SettingsDialog.vala:126 +#: src/Gtk/SettingsDialog.vala:123 msgid "Weeks" msgstr "Settimane" -#: src/Gtk/SettingsDialog.vala:129 +#: src/Gtk/SettingsDialog.vala:126 msgid "Seconds" msgstr "Secondi" -#: src/Gtk/SettingsDialog.vala:135 +#: src/Gtk/SettingsDialog.vala:132 msgid "Filters" msgstr "Filtri" -#: src/Gtk/SettingsDialog.vala:143 +#: src/Gtk/SettingsDialog.vala:140 msgid "Hide unstable and RC releases" msgstr "Nascondi versioni instabili e rilasci RC" -#: src/Gtk/SettingsDialog.vala:165 +#: src/Gtk/SettingsDialog.vala:162 msgid "previous major versions ( -1 = all )" msgstr "versioni principali precedenti ( -1 = tutte )" -#: src/Gtk/SettingsDialog.vala:169 +#: src/Gtk/SettingsDialog.vala:166 msgid "Network" msgstr "Rete" -#: src/Gtk/SettingsDialog.vala:180 +#: src/Gtk/SettingsDialog.vala:177 msgid "Internet connection timeout in" msgstr "Timeout connessione Internet in" -#: src/Gtk/SettingsDialog.vala:192 +#: src/Gtk/SettingsDialog.vala:189 msgid "seconds" msgstr "secondi" -#: src/Gtk/SettingsDialog.vala:199 +#: src/Gtk/SettingsDialog.vala:196 msgid "Max concurrent downloads" msgstr "Numero massimo di download simultanei" -#: src/Gtk/SettingsDialog.vala:212 +#: src/Gtk/SettingsDialog.vala:209 msgid "Verify Checksums with the CHECKSUMS files" msgstr "Verifica dei checksum con i file CHECKSUMS" -#: src/Gtk/SettingsDialog.vala:220 +#: src/Gtk/SettingsDialog.vala:217 msgid "Proxy" msgstr "Proxy" -#: src/Gtk/SettingsDialog.vala:252 +#: src/Gtk/SettingsDialog.vala:250 #, fuzzy msgid "Auth Command" msgstr "Comandi" -#: src/Gtk/SettingsDialog.vala:273 +#: src/Gtk/SettingsDialog.vala:280 msgid "Done" msgstr "" -#: src/Gtk/TerminalWindow.vala:159 +#: src/Gtk/TerminalWindow.vala:142 msgid "Cancel" msgstr "Cancella" -#: src/lib/l.misc.vala:84 +#: src/lib/l.misc.vala:102 msgid "Can not reach site" msgstr "Impossibile raggiungere il sito" diff --git a/po/ko.po b/po/ko.po index 921fc3b5..901ef49f 100644 --- a/po/ko.po +++ b/po/ko.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-03 08:40-0400\n" +"POT-Creation-Date: 2023-06-04 08:48-0400\n" "PO-Revision-Date: 2022-09-28 11:48+0900\n" "Last-Translator: Kevin Kim \n" "Language-Team: Korean\n" @@ -62,11 +62,11 @@ msgid "locked" msgstr "" #: src/Common/LinuxKernel.vala:475 src/Common/LinuxKernel.vala:1003 -#: src/Common/LinuxKernel.vala:1093 +#: src/Common/LinuxKernel.vala:1094 msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:668 src/Gtk/MainWindow.vala:514 +#: src/Common/LinuxKernel.vala:668 src/Gtk/MainWindow.vala:522 msgid "Running" msgstr "구동 중" @@ -94,7 +94,7 @@ msgstr "파일을 찾을 수 없습니다" msgid "Available Kernels" msgstr "설치 가능한 커널" -#: src/Common/LinuxKernel.vala:920 src/Gtk/MainWindow.vala:128 +#: src/Common/LinuxKernel.vala:920 src/Gtk/MainWindow.vala:136 msgid "Kernel" msgstr "커널" @@ -121,7 +121,7 @@ msgstr "다운로드" msgid "Installing selected kernels" msgstr "선택한 커널 제거" -#: src/Common/LinuxKernel.vala:995 src/Common/LinuxKernel.vala:1033 +#: src/Common/LinuxKernel.vala:995 src/Common/LinuxKernel.vala:1034 #, fuzzy msgid "Requested" msgstr "요청" @@ -134,85 +134,85 @@ msgstr "가 이미 설치되어 있습니다" msgid "download failed." msgstr "" -#: src/Common/LinuxKernel.vala:1016 +#: src/Common/LinuxKernel.vala:1015 #, fuzzy msgid "Install: no installable kernels secified" msgstr "지정한 명령어가 없습니다" -#: src/Common/LinuxKernel.vala:1029 +#: src/Common/LinuxKernel.vala:1030 msgid "Uninstalling selected kernels" msgstr "선택한 커널 제거" -#: src/Common/LinuxKernel.vala:1036 +#: src/Common/LinuxKernel.vala:1037 #, fuzzy msgid "Not uninstalling the currently running kernel" msgstr "현재 실행 중인 커널을 제거하지 않음" -#: src/Common/LinuxKernel.vala:1041 +#: src/Common/LinuxKernel.vala:1042 msgid "is locked" msgstr "" -#: src/Common/LinuxKernel.vala:1049 +#: src/Common/LinuxKernel.vala:1050 msgid "found" msgstr "설립하다" -#: src/Common/LinuxKernel.vala:1053 +#: src/Common/LinuxKernel.vala:1054 msgid "Uninstall: no uninstallable packages found" msgstr "" -#: src/Common/LinuxKernel.vala:1089 +#: src/Common/LinuxKernel.vala:1090 #, fuzzy msgid "is the highest installed version." msgstr "설치된 가장 높은 버전을 제외한 모든 버전을 제거합니다" -#: src/Common/LinuxKernel.vala:1102 +#: src/Common/LinuxKernel.vala:1103 msgid "Could not find running kernel in list" msgstr "현재 실행 중인 커널을 찾을 수 없습니다" -#: src/Common/LinuxKernel.vala:1107 +#: src/Common/LinuxKernel.vala:1108 msgid "Could not find any kernels to uninstall" msgstr "삭제할 커널을 찾을 수 없습니다" -#: src/Common/LinuxKernel.vala:1115 +#: src/Common/LinuxKernel.vala:1116 msgid "The following kernels will be uninstalled" msgstr "풀이" -#: src/Common/LinuxKernel.vala:1119 +#: src/Common/LinuxKernel.vala:1120 msgid "Continue ?" msgstr "계속하시겠습니까?" -#: src/Common/LinuxKernel.vala:1141 src/Console/AppConsole.vala:208 +#: src/Common/LinuxKernel.vala:1142 src/Console/AppConsole.vala:208 msgid "Latest update" msgstr "최신 업데이트" -#: src/Common/LinuxKernel.vala:1152 src/Console/AppConsole.vala:215 +#: src/Common/LinuxKernel.vala:1153 src/Console/AppConsole.vala:215 msgid "Latest point update" msgstr "최신 포인트 업데이트" -#: src/Common/LinuxKernel.vala:1160 src/Console/AppConsole.vala:220 +#: src/Common/LinuxKernel.vala:1161 src/Console/AppConsole.vala:220 #: src/Console/AppConsole.vala:240 msgid "No updates found" msgstr "업데이트를 찾을 수 없습니다" -#: src/Common/LinuxKernel.vala:1169 +#: src/Common/LinuxKernel.vala:1170 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "커널 %s 버전을 설치하시겠습니까? (y/n): " -#: src/Common/Main.vala:346 +#: src/Common/Main.vala:354 msgid "Called from" msgstr "에서 호출" -#: src/Common/Main.vala:346 +#: src/Common/Main.vala:354 msgid "at logon" msgstr "로그온 시" -#: src/Common/Main.vala:347 +#: src/Common/Main.vala:355 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "이 파일은 덮어쓰고 설정이 저장될 때마다 다시 실행됩니다." -#: src/Common/Main.vala:379 +#: src/Common/Main.vala:387 msgid "Notifications are disabled" msgstr "알림이 비활성화 되었습니다" @@ -221,7 +221,7 @@ msgstr "알림이 비활성화 되었습니다" msgid "File not found: %s" msgstr "파일을 찾을 수 없음: %s" -#: src/Console/AppConsole.vala:39 src/Gtk/AppGtk.vala:77 +#: src/Console/AppConsole.vala:39 src/Gtk/AppGtk.vala:75 msgid "Syntax" msgstr "문법" @@ -265,7 +265,7 @@ msgstr "지정한 커널 삭제" msgid "Uninstall specified kernels" msgstr "지정한 커널 삭제" -#: src/Console/AppConsole.vala:51 src/Gtk/MainWindow.vala:326 +#: src/Console/AppConsole.vala:51 src/Gtk/MainWindow.vala:334 msgid "Uninstall all but the highest installed version" msgstr "설치된 가장 높은 버전을 제외한 모든 버전을 제거합니다" @@ -277,7 +277,7 @@ msgstr "지정한 커널 다운로드" msgid "Delete cached info about available kernels" msgstr "사용 가능한 커널에 대한 캐시된 정보 삭제" -#: src/Console/AppConsole.vala:55 src/Gtk/AppGtk.vala:79 +#: src/Console/AppConsole.vala:55 src/Gtk/AppGtk.vala:77 msgid "Options" msgstr "옵션" @@ -312,7 +312,7 @@ msgid "Locked kernels and the currently running kernel are ignored" msgstr "현재 실행중인 커널은 항상 무시됩니다" #: src/Console/AppConsole.vala:139 src/Console/AppConsole.vala:193 -#: src/Gtk/AppGtk.vala:111 +#: src/Gtk/AppGtk.vala:109 msgid "Unknown option" msgstr "알 수 없는 옵션" @@ -326,11 +326,11 @@ msgstr "알림이 비활성화 되었습니다" msgid "Kernel %s Available" msgstr "커널 %s 사용 가능" -#: src/Console/AppConsole.vala:266 src/Gtk/SettingsDialog.vala:154 +#: src/Console/AppConsole.vala:266 src/Gtk/SettingsDialog.vala:151 msgid "Show" msgstr "보이기" -#: src/Console/AppConsole.vala:267 src/Gtk/MainWindow.vala:305 +#: src/Console/AppConsole.vala:267 src/Gtk/MainWindow.vala:313 msgid "Install" msgstr "설치" @@ -346,7 +346,7 @@ msgstr "제작자" msgid "Back" msgstr "뒤로" -#: src/Gtk/AboutWindow.vala:185 src/Gtk/TerminalWindow.vala:169 +#: src/Gtk/AboutWindow.vala:185 src/Gtk/TerminalWindow.vala:152 msgid "Close" msgstr "닫기" @@ -374,172 +374,172 @@ msgstr "문서작성" msgid "Third Party Inclusions" msgstr "서드파티 포함" -#: src/Gtk/AppGtk.vala:77 +#: src/Gtk/AppGtk.vala:75 msgid "options" msgstr "옵션" -#: src/Gtk/AppGtk.vala:81 +#: src/Gtk/AppGtk.vala:79 msgid "Print debug information" msgstr "디버그 정보 출력" -#: src/Gtk/AppGtk.vala:82 +#: src/Gtk/AppGtk.vala:80 msgid "Show all options" msgstr "모든 옵션 보기" -#: src/Gtk/MainWindow.vala:152 +#: src/Gtk/MainWindow.vala:160 msgid "Lock" msgstr "" -#: src/Gtk/MainWindow.vala:169 +#: src/Gtk/MainWindow.vala:177 msgid "Status" msgstr "상태" -#: src/Gtk/MainWindow.vala:181 +#: src/Gtk/MainWindow.vala:189 msgid "Notes" msgstr "노트" -#: src/Gtk/MainWindow.vala:310 +#: src/Gtk/MainWindow.vala:318 msgid "Uninstall" msgstr "삭제" -#: src/Gtk/MainWindow.vala:316 +#: src/Gtk/MainWindow.vala:324 msgid "Changelog, build status, etc" msgstr "" -#: src/Gtk/MainWindow.vala:325 +#: src/Gtk/MainWindow.vala:333 msgid "Uninstall Old" msgstr "오래된 커널 제거" -#: src/Gtk/MainWindow.vala:331 +#: src/Gtk/MainWindow.vala:339 msgid "Reload" msgstr "새로고침" -#: src/Gtk/MainWindow.vala:332 +#: src/Gtk/MainWindow.vala:340 msgid "Delete and reload all cached kernel info" msgstr "" -#: src/Gtk/MainWindow.vala:337 src/Gtk/SettingsDialog.vala:43 +#: src/Gtk/MainWindow.vala:345 src/Gtk/SettingsDialog.vala:41 msgid "Settings" msgstr "설정" -#: src/Gtk/MainWindow.vala:342 +#: src/Gtk/MainWindow.vala:350 msgid "About" msgstr "정보" -#: src/Gtk/MainWindow.vala:347 +#: src/Gtk/MainWindow.vala:355 msgid "Exit" msgstr "출구" -#: src/Gtk/MainWindow.vala:428 +#: src/Gtk/MainWindow.vala:436 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "우분투 기반 배포판의 커널 업그레이드 도구" -#: src/Gtk/MainWindow.vala:429 +#: src/Gtk/MainWindow.vala:437 msgid "Forked" msgstr "가랑이진" -#: src/Gtk/MainWindow.vala:429 +#: src/Gtk/MainWindow.vala:437 msgid "Original" msgstr "원문 언어" -#: src/Gtk/MainWindow.vala:458 +#: src/Gtk/MainWindow.vala:466 msgid "Updating kernels" msgstr "커널 업데이트" -#: src/Gtk/MainWindow.vala:518 +#: src/Gtk/MainWindow.vala:526 msgid "available" msgstr "사용가능" -#: src/Gtk/MainWindow.vala:560 src/Gtk/MainWindow.vala:591 -#: src/Gtk/MainWindow.vala:616 +#: src/Gtk/MainWindow.vala:568 src/Gtk/MainWindow.vala:599 +#: src/Gtk/MainWindow.vala:624 msgid "DONE" msgstr "" -#: src/Gtk/SettingsDialog.vala:53 +#: src/Gtk/SettingsDialog.vala:50 msgid "Notification" msgstr "알림" -#: src/Gtk/SettingsDialog.vala:60 +#: src/Gtk/SettingsDialog.vala:57 msgid "Notify if a major release is available" msgstr "메이저 릴리즈가 있으면 알림" -#: src/Gtk/SettingsDialog.vala:68 +#: src/Gtk/SettingsDialog.vala:65 msgid "Notify if a point release is available" msgstr "포인트 릴리즈가 있으면 알림" -#: src/Gtk/SettingsDialog.vala:76 +#: src/Gtk/SettingsDialog.vala:73 msgid "Seconds interval enabled for debugging" msgstr "디버깅에 사용할 수 있는 초 간격" -#: src/Gtk/SettingsDialog.vala:99 +#: src/Gtk/SettingsDialog.vala:96 msgid "Check every" msgstr "확인 주기" -#: src/Gtk/SettingsDialog.vala:122 +#: src/Gtk/SettingsDialog.vala:119 msgid "Hours" msgstr "시간" -#: src/Gtk/SettingsDialog.vala:124 +#: src/Gtk/SettingsDialog.vala:121 msgid "Days" msgstr "일" -#: src/Gtk/SettingsDialog.vala:126 +#: src/Gtk/SettingsDialog.vala:123 msgid "Weeks" msgstr "주" -#: src/Gtk/SettingsDialog.vala:129 +#: src/Gtk/SettingsDialog.vala:126 msgid "Seconds" msgstr "초" -#: src/Gtk/SettingsDialog.vala:135 +#: src/Gtk/SettingsDialog.vala:132 msgid "Filters" msgstr "필터" -#: src/Gtk/SettingsDialog.vala:143 +#: src/Gtk/SettingsDialog.vala:140 msgid "Hide unstable and RC releases" msgstr "목록에서 unstable, RC 버전 포함" -#: src/Gtk/SettingsDialog.vala:165 +#: src/Gtk/SettingsDialog.vala:162 msgid "previous major versions ( -1 = all )" msgstr "이전 주 버전 ( -1 = 모두 )" -#: src/Gtk/SettingsDialog.vala:169 +#: src/Gtk/SettingsDialog.vala:166 msgid "Network" msgstr "네트워크" -#: src/Gtk/SettingsDialog.vala:180 +#: src/Gtk/SettingsDialog.vala:177 msgid "Internet connection timeout in" msgstr "인터넷 연결 시간 초과" -#: src/Gtk/SettingsDialog.vala:192 +#: src/Gtk/SettingsDialog.vala:189 msgid "seconds" msgstr "초" -#: src/Gtk/SettingsDialog.vala:199 +#: src/Gtk/SettingsDialog.vala:196 msgid "Max concurrent downloads" msgstr "동시 다운로드 최대 수" -#: src/Gtk/SettingsDialog.vala:212 +#: src/Gtk/SettingsDialog.vala:209 msgid "Verify Checksums with the CHECKSUMS files" msgstr "CHECKSUMS 파일로 체크섬 확인" -#: src/Gtk/SettingsDialog.vala:220 +#: src/Gtk/SettingsDialog.vala:217 msgid "Proxy" msgstr "대리" -#: src/Gtk/SettingsDialog.vala:252 +#: src/Gtk/SettingsDialog.vala:250 #, fuzzy msgid "Auth Command" msgstr "명령어" -#: src/Gtk/SettingsDialog.vala:273 +#: src/Gtk/SettingsDialog.vala:280 msgid "Done" msgstr "" -#: src/Gtk/TerminalWindow.vala:159 +#: src/Gtk/TerminalWindow.vala:142 msgid "Cancel" msgstr "취소" -#: src/lib/l.misc.vala:84 +#: src/lib/l.misc.vala:102 msgid "Can not reach site" msgstr "사이트에 도달 할 수 없습니다" diff --git a/po/messages.pot b/po/messages.pot index d081946b..a46c5d36 100644 --- a/po/messages.pot +++ b/po/messages.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline 1.3.8\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-03 08:59-0400\n" +"POT-Creation-Date: 2023-06-04 11:26-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -66,11 +66,11 @@ msgid "locked" msgstr "" #: src/Common/LinuxKernel.vala:475 src/Common/LinuxKernel.vala:1003 -#: src/Common/LinuxKernel.vala:1093 +#: src/Common/LinuxKernel.vala:1094 msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:668 src/Gtk/MainWindow.vala:514 +#: src/Common/LinuxKernel.vala:668 src/Gtk/MainWindow.vala:522 msgid "Running" msgstr "" @@ -98,7 +98,7 @@ msgstr "" msgid "Available Kernels" msgstr "" -#: src/Common/LinuxKernel.vala:920 src/Gtk/MainWindow.vala:128 +#: src/Common/LinuxKernel.vala:920 src/Gtk/MainWindow.vala:136 msgid "Kernel" msgstr "" @@ -122,7 +122,7 @@ msgstr "" msgid "Installing selected kernels" msgstr "" -#: src/Common/LinuxKernel.vala:995 src/Common/LinuxKernel.vala:1033 +#: src/Common/LinuxKernel.vala:995 src/Common/LinuxKernel.vala:1034 msgid "Requested" msgstr "" @@ -134,82 +134,82 @@ msgstr "" msgid "download failed." msgstr "" -#: src/Common/LinuxKernel.vala:1016 +#: src/Common/LinuxKernel.vala:1015 msgid "Install: no installable kernels secified" msgstr "" -#: src/Common/LinuxKernel.vala:1029 +#: src/Common/LinuxKernel.vala:1030 msgid "Uninstalling selected kernels" msgstr "" -#: src/Common/LinuxKernel.vala:1036 +#: src/Common/LinuxKernel.vala:1037 msgid "Not uninstalling the currently running kernel" msgstr "" -#: src/Common/LinuxKernel.vala:1041 +#: src/Common/LinuxKernel.vala:1042 msgid "is locked" msgstr "" -#: src/Common/LinuxKernel.vala:1049 +#: src/Common/LinuxKernel.vala:1050 msgid "found" msgstr "" -#: src/Common/LinuxKernel.vala:1053 +#: src/Common/LinuxKernel.vala:1054 msgid "Uninstall: no uninstallable packages found" msgstr "" -#: src/Common/LinuxKernel.vala:1089 +#: src/Common/LinuxKernel.vala:1090 msgid "is the highest installed version." msgstr "" -#: src/Common/LinuxKernel.vala:1102 +#: src/Common/LinuxKernel.vala:1103 msgid "Could not find running kernel in list" msgstr "" -#: src/Common/LinuxKernel.vala:1107 +#: src/Common/LinuxKernel.vala:1108 msgid "Could not find any kernels to uninstall" msgstr "" -#: src/Common/LinuxKernel.vala:1115 +#: src/Common/LinuxKernel.vala:1116 msgid "The following kernels will be uninstalled" msgstr "" -#: src/Common/LinuxKernel.vala:1119 +#: src/Common/LinuxKernel.vala:1120 msgid "Continue ?" msgstr "" -#: src/Common/LinuxKernel.vala:1141 src/Console/AppConsole.vala:208 +#: src/Common/LinuxKernel.vala:1142 src/Console/AppConsole.vala:208 msgid "Latest update" msgstr "" -#: src/Common/LinuxKernel.vala:1152 src/Console/AppConsole.vala:215 +#: src/Common/LinuxKernel.vala:1153 src/Console/AppConsole.vala:215 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:1160 src/Console/AppConsole.vala:220 +#: src/Common/LinuxKernel.vala:1161 src/Console/AppConsole.vala:220 #: src/Console/AppConsole.vala:240 msgid "No updates found" msgstr "" -#: src/Common/LinuxKernel.vala:1169 +#: src/Common/LinuxKernel.vala:1170 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "" -#: src/Common/Main.vala:346 +#: src/Common/Main.vala:354 msgid "Called from" msgstr "" -#: src/Common/Main.vala:346 +#: src/Common/Main.vala:354 msgid "at logon" msgstr "" -#: src/Common/Main.vala:347 +#: src/Common/Main.vala:355 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" -#: src/Common/Main.vala:379 +#: src/Common/Main.vala:387 msgid "Notifications are disabled" msgstr "" @@ -218,7 +218,7 @@ msgstr "" msgid "File not found: %s" msgstr "" -#: src/Console/AppConsole.vala:39 src/Gtk/AppGtk.vala:77 +#: src/Console/AppConsole.vala:39 src/Gtk/AppGtk.vala:75 msgid "Syntax" msgstr "" @@ -258,7 +258,7 @@ msgstr "" msgid "Uninstall specified kernels" msgstr "" -#: src/Console/AppConsole.vala:51 src/Gtk/MainWindow.vala:326 +#: src/Console/AppConsole.vala:51 src/Gtk/MainWindow.vala:334 msgid "Uninstall all but the highest installed version" msgstr "" @@ -270,7 +270,7 @@ msgstr "" msgid "Delete cached info about available kernels" msgstr "" -#: src/Console/AppConsole.vala:55 src/Gtk/AppGtk.vala:79 +#: src/Console/AppConsole.vala:55 src/Gtk/AppGtk.vala:77 msgid "Options" msgstr "" @@ -303,7 +303,7 @@ msgid "Locked kernels and the currently running kernel are ignored" msgstr "" #: src/Console/AppConsole.vala:139 src/Console/AppConsole.vala:193 -#: src/Gtk/AppGtk.vala:111 +#: src/Gtk/AppGtk.vala:109 msgid "Unknown option" msgstr "" @@ -316,11 +316,11 @@ msgstr "" msgid "Kernel %s Available" msgstr "" -#: src/Console/AppConsole.vala:266 src/Gtk/SettingsDialog.vala:154 +#: src/Console/AppConsole.vala:266 src/Gtk/SettingsDialog.vala:151 msgid "Show" msgstr "" -#: src/Console/AppConsole.vala:267 src/Gtk/MainWindow.vala:305 +#: src/Console/AppConsole.vala:267 src/Gtk/MainWindow.vala:313 msgid "Install" msgstr "" @@ -336,7 +336,7 @@ msgstr "" msgid "Back" msgstr "" -#: src/Gtk/AboutWindow.vala:185 src/Gtk/TerminalWindow.vala:169 +#: src/Gtk/AboutWindow.vala:185 src/Gtk/TerminalWindow.vala:152 msgid "Close" msgstr "" @@ -364,171 +364,171 @@ msgstr "" msgid "Third Party Inclusions" msgstr "" -#: src/Gtk/AppGtk.vala:77 +#: src/Gtk/AppGtk.vala:75 msgid "options" msgstr "" -#: src/Gtk/AppGtk.vala:81 +#: src/Gtk/AppGtk.vala:79 msgid "Print debug information" msgstr "" -#: src/Gtk/AppGtk.vala:82 +#: src/Gtk/AppGtk.vala:80 msgid "Show all options" msgstr "" -#: src/Gtk/MainWindow.vala:152 +#: src/Gtk/MainWindow.vala:160 msgid "Lock" msgstr "" -#: src/Gtk/MainWindow.vala:169 +#: src/Gtk/MainWindow.vala:177 msgid "Status" msgstr "" -#: src/Gtk/MainWindow.vala:181 +#: src/Gtk/MainWindow.vala:189 msgid "Notes" msgstr "" -#: src/Gtk/MainWindow.vala:310 +#: src/Gtk/MainWindow.vala:318 msgid "Uninstall" msgstr "" -#: src/Gtk/MainWindow.vala:316 +#: src/Gtk/MainWindow.vala:324 msgid "Changelog, build status, etc" msgstr "" -#: src/Gtk/MainWindow.vala:325 +#: src/Gtk/MainWindow.vala:333 msgid "Uninstall Old" msgstr "" -#: src/Gtk/MainWindow.vala:331 +#: src/Gtk/MainWindow.vala:339 msgid "Reload" msgstr "" -#: src/Gtk/MainWindow.vala:332 +#: src/Gtk/MainWindow.vala:340 msgid "Delete and reload all cached kernel info" msgstr "" -#: src/Gtk/MainWindow.vala:337 src/Gtk/SettingsDialog.vala:43 +#: src/Gtk/MainWindow.vala:345 src/Gtk/SettingsDialog.vala:41 msgid "Settings" msgstr "" -#: src/Gtk/MainWindow.vala:342 +#: src/Gtk/MainWindow.vala:350 msgid "About" msgstr "" -#: src/Gtk/MainWindow.vala:347 +#: src/Gtk/MainWindow.vala:355 msgid "Exit" msgstr "" -#: src/Gtk/MainWindow.vala:428 +#: src/Gtk/MainWindow.vala:436 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "" -#: src/Gtk/MainWindow.vala:429 +#: src/Gtk/MainWindow.vala:437 msgid "Forked" msgstr "" -#: src/Gtk/MainWindow.vala:429 +#: src/Gtk/MainWindow.vala:437 msgid "Original" msgstr "" -#: src/Gtk/MainWindow.vala:458 +#: src/Gtk/MainWindow.vala:466 msgid "Updating kernels" msgstr "" -#: src/Gtk/MainWindow.vala:518 +#: src/Gtk/MainWindow.vala:526 msgid "available" msgstr "" -#: src/Gtk/MainWindow.vala:560 src/Gtk/MainWindow.vala:591 -#: src/Gtk/MainWindow.vala:616 +#: src/Gtk/MainWindow.vala:568 src/Gtk/MainWindow.vala:599 +#: src/Gtk/MainWindow.vala:624 msgid "DONE" msgstr "" -#: src/Gtk/SettingsDialog.vala:53 +#: src/Gtk/SettingsDialog.vala:50 msgid "Notification" msgstr "" -#: src/Gtk/SettingsDialog.vala:60 +#: src/Gtk/SettingsDialog.vala:57 msgid "Notify if a major release is available" msgstr "" -#: src/Gtk/SettingsDialog.vala:68 +#: src/Gtk/SettingsDialog.vala:65 msgid "Notify if a point release is available" msgstr "" -#: src/Gtk/SettingsDialog.vala:76 +#: src/Gtk/SettingsDialog.vala:73 msgid "Seconds interval enabled for debugging" msgstr "" -#: src/Gtk/SettingsDialog.vala:99 +#: src/Gtk/SettingsDialog.vala:96 msgid "Check every" msgstr "" -#: src/Gtk/SettingsDialog.vala:122 +#: src/Gtk/SettingsDialog.vala:119 msgid "Hours" msgstr "" -#: src/Gtk/SettingsDialog.vala:124 +#: src/Gtk/SettingsDialog.vala:121 msgid "Days" msgstr "" -#: src/Gtk/SettingsDialog.vala:126 +#: src/Gtk/SettingsDialog.vala:123 msgid "Weeks" msgstr "" -#: src/Gtk/SettingsDialog.vala:129 +#: src/Gtk/SettingsDialog.vala:126 msgid "Seconds" msgstr "" -#: src/Gtk/SettingsDialog.vala:135 +#: src/Gtk/SettingsDialog.vala:132 msgid "Filters" msgstr "" -#: src/Gtk/SettingsDialog.vala:143 +#: src/Gtk/SettingsDialog.vala:140 msgid "Hide unstable and RC releases" msgstr "" -#: src/Gtk/SettingsDialog.vala:165 +#: src/Gtk/SettingsDialog.vala:162 msgid "previous major versions ( -1 = all )" msgstr "" -#: src/Gtk/SettingsDialog.vala:169 +#: src/Gtk/SettingsDialog.vala:166 msgid "Network" msgstr "" -#: src/Gtk/SettingsDialog.vala:180 +#: src/Gtk/SettingsDialog.vala:177 msgid "Internet connection timeout in" msgstr "" -#: src/Gtk/SettingsDialog.vala:192 +#: src/Gtk/SettingsDialog.vala:189 msgid "seconds" msgstr "" -#: src/Gtk/SettingsDialog.vala:199 +#: src/Gtk/SettingsDialog.vala:196 msgid "Max concurrent downloads" msgstr "" -#: src/Gtk/SettingsDialog.vala:212 +#: src/Gtk/SettingsDialog.vala:209 msgid "Verify Checksums with the CHECKSUMS files" msgstr "" -#: src/Gtk/SettingsDialog.vala:220 +#: src/Gtk/SettingsDialog.vala:217 msgid "Proxy" msgstr "" -#: src/Gtk/SettingsDialog.vala:252 +#: src/Gtk/SettingsDialog.vala:250 msgid "Auth Command" msgstr "" -#: src/Gtk/SettingsDialog.vala:273 +#: src/Gtk/SettingsDialog.vala:280 msgid "Done" msgstr "" -#: src/Gtk/TerminalWindow.vala:159 +#: src/Gtk/TerminalWindow.vala:142 msgid "Cancel" msgstr "" -#: src/lib/l.misc.vala:84 +#: src/lib/l.misc.vala:102 msgid "Can not reach site" msgstr "" diff --git a/po/nl.po b/po/nl.po index 046eadf1..1177aebf 100644 --- a/po/nl.po +++ b/po/nl.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-03 08:40-0400\n" +"POT-Creation-Date: 2023-06-04 08:48-0400\n" "PO-Revision-Date: 2020-08-23 13:55+0200\n" "Last-Translator: Heimen Stoffels \n" "Language-Team: Dutch (Netherlands)\n" @@ -62,11 +62,11 @@ msgid "locked" msgstr "" #: src/Common/LinuxKernel.vala:475 src/Common/LinuxKernel.vala:1003 -#: src/Common/LinuxKernel.vala:1093 +#: src/Common/LinuxKernel.vala:1094 msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:668 src/Gtk/MainWindow.vala:514 +#: src/Common/LinuxKernel.vala:668 src/Gtk/MainWindow.vala:522 msgid "Running" msgstr "In gebruik" @@ -94,7 +94,7 @@ msgstr "Het bestand is niet gevonden" msgid "Available Kernels" msgstr "Beschikbare kernels" -#: src/Common/LinuxKernel.vala:920 src/Gtk/MainWindow.vala:128 +#: src/Common/LinuxKernel.vala:920 src/Gtk/MainWindow.vala:136 msgid "Kernel" msgstr "Kernel" @@ -121,7 +121,7 @@ msgstr "Downloaden" msgid "Installing selected kernels" msgstr "Geselecteerde kernels verwijderen" -#: src/Common/LinuxKernel.vala:995 src/Common/LinuxKernel.vala:1033 +#: src/Common/LinuxKernel.vala:995 src/Common/LinuxKernel.vala:1034 #, fuzzy msgid "Requested" msgstr "verzocht" @@ -134,87 +134,87 @@ msgstr "is al geïnstalleerd." msgid "download failed." msgstr "" -#: src/Common/LinuxKernel.vala:1016 +#: src/Common/LinuxKernel.vala:1015 #, fuzzy msgid "Install: no installable kernels secified" msgstr "Geen opdracht opgegeven" -#: src/Common/LinuxKernel.vala:1029 +#: src/Common/LinuxKernel.vala:1030 msgid "Uninstalling selected kernels" msgstr "Geselecteerde kernels verwijderen" -#: src/Common/LinuxKernel.vala:1036 +#: src/Common/LinuxKernel.vala:1037 #, fuzzy msgid "Not uninstalling the currently running kernel" msgstr "de momenteel actieve kernel niet verwijderen" -#: src/Common/LinuxKernel.vala:1041 +#: src/Common/LinuxKernel.vala:1042 msgid "is locked" msgstr "" -#: src/Common/LinuxKernel.vala:1049 +#: src/Common/LinuxKernel.vala:1050 msgid "found" msgstr "gevonden" -#: src/Common/LinuxKernel.vala:1053 +#: src/Common/LinuxKernel.vala:1054 msgid "Uninstall: no uninstallable packages found" msgstr "" -#: src/Common/LinuxKernel.vala:1089 +#: src/Common/LinuxKernel.vala:1090 #, fuzzy msgid "is the highest installed version." msgstr "Verwijder alle behalve de hoogst geïnstalleerde versie" -#: src/Common/LinuxKernel.vala:1102 +#: src/Common/LinuxKernel.vala:1103 msgid "Could not find running kernel in list" msgstr "De in gebruik zijnde kernel staat niet op de lijst" -#: src/Common/LinuxKernel.vala:1107 +#: src/Common/LinuxKernel.vala:1108 msgid "Could not find any kernels to uninstall" msgstr "Er zijn geen te verwijderen kernels" -#: src/Common/LinuxKernel.vala:1115 +#: src/Common/LinuxKernel.vala:1116 msgid "The following kernels will be uninstalled" msgstr "De volgende kernels worden verwijderd" -#: src/Common/LinuxKernel.vala:1119 +#: src/Common/LinuxKernel.vala:1120 msgid "Continue ?" msgstr "Wilt u doorgaan?" -#: src/Common/LinuxKernel.vala:1141 src/Console/AppConsole.vala:208 +#: src/Common/LinuxKernel.vala:1142 src/Console/AppConsole.vala:208 msgid "Latest update" msgstr "Recentste update" -#: src/Common/LinuxKernel.vala:1152 src/Console/AppConsole.vala:215 +#: src/Common/LinuxKernel.vala:1153 src/Console/AppConsole.vala:215 msgid "Latest point update" msgstr "Recentste puntupdate" -#: src/Common/LinuxKernel.vala:1160 src/Console/AppConsole.vala:220 +#: src/Common/LinuxKernel.vala:1161 src/Console/AppConsole.vala:220 #: src/Console/AppConsole.vala:240 msgid "No updates found" msgstr "Geen updates gevonden" -#: src/Common/LinuxKernel.vala:1169 +#: src/Common/LinuxKernel.vala:1170 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Wilt u versie %s installeren? (j/n): " -#: src/Common/Main.vala:346 +#: src/Common/Main.vala:354 msgid "Called from" msgstr "Aangeroepen door" -#: src/Common/Main.vala:346 +#: src/Common/Main.vala:354 msgid "at logon" msgstr "bij het opstarten" -#: src/Common/Main.vala:347 +#: src/Common/Main.vala:355 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" "Dit bestand wordt overschreven en opnieuw uitgevoerd wanneer instellingen " "worden opgeslagen in" -#: src/Common/Main.vala:379 +#: src/Common/Main.vala:387 msgid "Notifications are disabled" msgstr "Meldingen zijn uitgeschakeld" @@ -223,7 +223,7 @@ msgstr "Meldingen zijn uitgeschakeld" msgid "File not found: %s" msgstr "Bestand niet gevonden: %s" -#: src/Console/AppConsole.vala:39 src/Gtk/AppGtk.vala:77 +#: src/Console/AppConsole.vala:39 src/Gtk/AppGtk.vala:75 msgid "Syntax" msgstr "Syntaxis" @@ -267,7 +267,7 @@ msgstr "Opgegeven kernel verwijderen" msgid "Uninstall specified kernels" msgstr "Opgegeven kernel verwijderen" -#: src/Console/AppConsole.vala:51 src/Gtk/MainWindow.vala:326 +#: src/Console/AppConsole.vala:51 src/Gtk/MainWindow.vala:334 msgid "Uninstall all but the highest installed version" msgstr "Verwijder alle behalve de hoogst geïnstalleerde versie" @@ -279,7 +279,7 @@ msgstr "Opgegeven kernels downloaden" msgid "Delete cached info about available kernels" msgstr "Informatie over beschikbare kernels in de cache verwijderen" -#: src/Console/AppConsole.vala:55 src/Gtk/AppGtk.vala:79 +#: src/Console/AppConsole.vala:55 src/Gtk/AppGtk.vala:77 msgid "Options" msgstr "Opties" @@ -314,7 +314,7 @@ msgid "Locked kernels and the currently running kernel are ignored" msgstr "De momenteel actieve kernel wordt altijd genegeerd" #: src/Console/AppConsole.vala:139 src/Console/AppConsole.vala:193 -#: src/Gtk/AppGtk.vala:111 +#: src/Gtk/AppGtk.vala:109 msgid "Unknown option" msgstr "Onbekende optie" @@ -328,11 +328,11 @@ msgstr "Meldingen zijn uitgeschakeld" msgid "Kernel %s Available" msgstr "Kernel %s is beschikbaar" -#: src/Console/AppConsole.vala:266 src/Gtk/SettingsDialog.vala:154 +#: src/Console/AppConsole.vala:266 src/Gtk/SettingsDialog.vala:151 msgid "Show" msgstr "Tonen" -#: src/Console/AppConsole.vala:267 src/Gtk/MainWindow.vala:305 +#: src/Console/AppConsole.vala:267 src/Gtk/MainWindow.vala:313 msgid "Install" msgstr "Installeren" @@ -348,7 +348,7 @@ msgstr "Met dank aan" msgid "Back" msgstr "Terug" -#: src/Gtk/AboutWindow.vala:185 src/Gtk/TerminalWindow.vala:169 +#: src/Gtk/AboutWindow.vala:185 src/Gtk/TerminalWindow.vala:152 msgid "Close" msgstr "Sluiten" @@ -376,172 +376,172 @@ msgstr "Documenteerders" msgid "Third Party Inclusions" msgstr "Externe code" -#: src/Gtk/AppGtk.vala:77 +#: src/Gtk/AppGtk.vala:75 msgid "options" msgstr "opties" -#: src/Gtk/AppGtk.vala:81 +#: src/Gtk/AppGtk.vala:79 msgid "Print debug information" msgstr "Foutopsporingsinformatie tonen" -#: src/Gtk/AppGtk.vala:82 +#: src/Gtk/AppGtk.vala:80 msgid "Show all options" msgstr "Alle opties tonen" -#: src/Gtk/MainWindow.vala:152 +#: src/Gtk/MainWindow.vala:160 msgid "Lock" msgstr "" -#: src/Gtk/MainWindow.vala:169 +#: src/Gtk/MainWindow.vala:177 msgid "Status" msgstr "Status" -#: src/Gtk/MainWindow.vala:181 +#: src/Gtk/MainWindow.vala:189 msgid "Notes" msgstr "Notities" -#: src/Gtk/MainWindow.vala:310 +#: src/Gtk/MainWindow.vala:318 msgid "Uninstall" msgstr "Deïnstalleren" -#: src/Gtk/MainWindow.vala:316 +#: src/Gtk/MainWindow.vala:324 msgid "Changelog, build status, etc" msgstr "" -#: src/Gtk/MainWindow.vala:325 +#: src/Gtk/MainWindow.vala:333 msgid "Uninstall Old" msgstr "Verwijder Oude" -#: src/Gtk/MainWindow.vala:331 +#: src/Gtk/MainWindow.vala:339 msgid "Reload" msgstr "Herladen" -#: src/Gtk/MainWindow.vala:332 +#: src/Gtk/MainWindow.vala:340 msgid "Delete and reload all cached kernel info" msgstr "" -#: src/Gtk/MainWindow.vala:337 src/Gtk/SettingsDialog.vala:43 +#: src/Gtk/MainWindow.vala:345 src/Gtk/SettingsDialog.vala:41 msgid "Settings" msgstr "Instellingen" -#: src/Gtk/MainWindow.vala:342 +#: src/Gtk/MainWindow.vala:350 msgid "About" msgstr "Over" -#: src/Gtk/MainWindow.vala:347 +#: src/Gtk/MainWindow.vala:355 msgid "Exit" msgstr "Afsluiten" -#: src/Gtk/MainWindow.vala:428 +#: src/Gtk/MainWindow.vala:436 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Een kernelupgradehulpmiddel voor op Ubuntu gebaseerde distributies" -#: src/Gtk/MainWindow.vala:429 +#: src/Gtk/MainWindow.vala:437 msgid "Forked" msgstr "Geforkt" -#: src/Gtk/MainWindow.vala:429 +#: src/Gtk/MainWindow.vala:437 msgid "Original" msgstr "Origineel" -#: src/Gtk/MainWindow.vala:458 +#: src/Gtk/MainWindow.vala:466 msgid "Updating kernels" msgstr "Kernels bijwerken" -#: src/Gtk/MainWindow.vala:518 +#: src/Gtk/MainWindow.vala:526 msgid "available" msgstr "beschikbaar" -#: src/Gtk/MainWindow.vala:560 src/Gtk/MainWindow.vala:591 -#: src/Gtk/MainWindow.vala:616 +#: src/Gtk/MainWindow.vala:568 src/Gtk/MainWindow.vala:599 +#: src/Gtk/MainWindow.vala:624 msgid "DONE" msgstr "" -#: src/Gtk/SettingsDialog.vala:53 +#: src/Gtk/SettingsDialog.vala:50 msgid "Notification" msgstr "Melding" -#: src/Gtk/SettingsDialog.vala:60 +#: src/Gtk/SettingsDialog.vala:57 msgid "Notify if a major release is available" msgstr "Melding tonen als er een grote update beschikbaar is" -#: src/Gtk/SettingsDialog.vala:68 +#: src/Gtk/SettingsDialog.vala:65 msgid "Notify if a point release is available" msgstr "Melding tonen als er een puntupdate beschikbaar is" -#: src/Gtk/SettingsDialog.vala:76 +#: src/Gtk/SettingsDialog.vala:73 msgid "Seconds interval enabled for debugging" msgstr "Secondeninterval ingeschakeld voor foutopsporing" -#: src/Gtk/SettingsDialog.vala:99 +#: src/Gtk/SettingsDialog.vala:96 msgid "Check every" msgstr "Controleren, elke" -#: src/Gtk/SettingsDialog.vala:122 +#: src/Gtk/SettingsDialog.vala:119 msgid "Hours" msgstr "uur" -#: src/Gtk/SettingsDialog.vala:124 +#: src/Gtk/SettingsDialog.vala:121 msgid "Days" msgstr "dagen" -#: src/Gtk/SettingsDialog.vala:126 +#: src/Gtk/SettingsDialog.vala:123 msgid "Weeks" msgstr "weken" -#: src/Gtk/SettingsDialog.vala:129 +#: src/Gtk/SettingsDialog.vala:126 msgid "Seconds" msgstr "seconden" -#: src/Gtk/SettingsDialog.vala:135 +#: src/Gtk/SettingsDialog.vala:132 msgid "Filters" msgstr "Filters" -#: src/Gtk/SettingsDialog.vala:143 +#: src/Gtk/SettingsDialog.vala:140 msgid "Hide unstable and RC releases" msgstr "Instabiele en rc-uitgaven verbergen" -#: src/Gtk/SettingsDialog.vala:165 +#: src/Gtk/SettingsDialog.vala:162 msgid "previous major versions ( -1 = all )" msgstr "vorige hoofdversies ( -1 = alle )" -#: src/Gtk/SettingsDialog.vala:169 +#: src/Gtk/SettingsDialog.vala:166 msgid "Network" msgstr "Netwerk" -#: src/Gtk/SettingsDialog.vala:180 +#: src/Gtk/SettingsDialog.vala:177 msgid "Internet connection timeout in" msgstr "Verbindingstime-out na" -#: src/Gtk/SettingsDialog.vala:192 +#: src/Gtk/SettingsDialog.vala:189 msgid "seconds" msgstr "seconden" -#: src/Gtk/SettingsDialog.vala:199 +#: src/Gtk/SettingsDialog.vala:196 msgid "Max concurrent downloads" msgstr "Max. aantal gelijktijdige downloads" -#: src/Gtk/SettingsDialog.vala:212 +#: src/Gtk/SettingsDialog.vala:209 msgid "Verify Checksums with the CHECKSUMS files" msgstr "Controleer controlesommen met de CHECKSUMS-bestanden" -#: src/Gtk/SettingsDialog.vala:220 +#: src/Gtk/SettingsDialog.vala:217 msgid "Proxy" msgstr "Proxy" -#: src/Gtk/SettingsDialog.vala:252 +#: src/Gtk/SettingsDialog.vala:250 #, fuzzy msgid "Auth Command" msgstr "Opdrachten" -#: src/Gtk/SettingsDialog.vala:273 +#: src/Gtk/SettingsDialog.vala:280 msgid "Done" msgstr "" -#: src/Gtk/TerminalWindow.vala:159 +#: src/Gtk/TerminalWindow.vala:142 msgid "Cancel" msgstr "Annuleren" -#: src/lib/l.misc.vala:84 +#: src/lib/l.misc.vala:102 msgid "Can not reach site" msgstr "Kan de site niet bereiken" diff --git a/po/pl.po b/po/pl.po index 91585155..c9e4648f 100644 --- a/po/pl.po +++ b/po/pl.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-03 06:21-0400\n" +"POT-Creation-Date: 2023-06-04 08:48-0400\n" "PO-Revision-Date: 2023-06-03 14:24+0200\n" "Last-Translator: Matthaiks\n" "Language-Team: Polish\n" @@ -61,11 +61,11 @@ msgid "locked" msgstr "zablokowane" #: src/Common/LinuxKernel.vala:475 src/Common/LinuxKernel.vala:1003 -#: src/Common/LinuxKernel.vala:1093 +#: src/Common/LinuxKernel.vala:1094 msgid "is locked." msgstr "jest zablokowane." -#: src/Common/LinuxKernel.vala:668 src/Gtk/MainWindow.vala:514 +#: src/Common/LinuxKernel.vala:668 src/Gtk/MainWindow.vala:522 msgid "Running" msgstr "Uruchomione" @@ -93,7 +93,7 @@ msgstr "Nie odnaleziono pliku" msgid "Available Kernels" msgstr "Dostępne jądra" -#: src/Common/LinuxKernel.vala:920 src/Gtk/MainWindow.vala:128 +#: src/Common/LinuxKernel.vala:920 src/Gtk/MainWindow.vala:136 msgid "Kernel" msgstr "Jądro" @@ -117,7 +117,7 @@ msgstr "Pobieranie" msgid "Installing selected kernels" msgstr "Instalowanie wybranych jąder" -#: src/Common/LinuxKernel.vala:995 src/Common/LinuxKernel.vala:1033 +#: src/Common/LinuxKernel.vala:995 src/Common/LinuxKernel.vala:1034 msgid "Requested" msgstr "Zażądane" @@ -129,84 +129,84 @@ msgstr "jest już zainstalowane." msgid "download failed." msgstr "pobieranie nie powiodło się." -#: src/Common/LinuxKernel.vala:1016 +#: src/Common/LinuxKernel.vala:1015 msgid "Install: no installable kernels secified" msgstr "Instalowanie: nie określono jąder do zainstalowania" -#: src/Common/LinuxKernel.vala:1029 +#: src/Common/LinuxKernel.vala:1030 msgid "Uninstalling selected kernels" msgstr "Odinstalowanie wybranych jąder" -#: src/Common/LinuxKernel.vala:1036 +#: src/Common/LinuxKernel.vala:1037 msgid "Not uninstalling the currently running kernel" msgstr "Bez odinstalowywania aktualnie uruchomionego jądra" -#: src/Common/LinuxKernel.vala:1041 +#: src/Common/LinuxKernel.vala:1042 msgid "is locked" msgstr "jest zablokowane" -#: src/Common/LinuxKernel.vala:1049 +#: src/Common/LinuxKernel.vala:1050 msgid "found" msgstr "znalezione" -#: src/Common/LinuxKernel.vala:1053 +#: src/Common/LinuxKernel.vala:1054 msgid "Uninstall: no uninstallable packages found" msgstr "Odinstalowanie: nie znaleziono pakietów, które można odinstalować" -#: src/Common/LinuxKernel.vala:1089 +#: src/Common/LinuxKernel.vala:1090 msgid "is the highest installed version." msgstr "to najwyższa zainstalowana wersja." -#: src/Common/LinuxKernel.vala:1102 +#: src/Common/LinuxKernel.vala:1103 msgid "Could not find running kernel in list" msgstr "Nie można znaleźć uruchomionego jądra na liście" -#: src/Common/LinuxKernel.vala:1107 +#: src/Common/LinuxKernel.vala:1108 msgid "Could not find any kernels to uninstall" msgstr "Nie można znaleźć żadnych jąder do odinstalowania" -#: src/Common/LinuxKernel.vala:1115 +#: src/Common/LinuxKernel.vala:1116 msgid "The following kernels will be uninstalled" msgstr "Następujące jądra zostaną odinstalowane" -#: src/Common/LinuxKernel.vala:1119 +#: src/Common/LinuxKernel.vala:1120 msgid "Continue ?" msgstr "Kontynuować?" -#: src/Common/LinuxKernel.vala:1141 src/Console/AppConsole.vala:208 +#: src/Common/LinuxKernel.vala:1142 src/Console/AppConsole.vala:208 msgid "Latest update" msgstr "Najnowsza aktualizacja" -#: src/Common/LinuxKernel.vala:1152 src/Console/AppConsole.vala:215 +#: src/Common/LinuxKernel.vala:1153 src/Console/AppConsole.vala:215 msgid "Latest point update" msgstr "Najnowsza aktualizacja punktowa" -#: src/Common/LinuxKernel.vala:1160 src/Console/AppConsole.vala:220 +#: src/Common/LinuxKernel.vala:1161 src/Console/AppConsole.vala:220 #: src/Console/AppConsole.vala:240 msgid "No updates found" msgstr "Nie znaleziono aktualizacji" -#: src/Common/LinuxKernel.vala:1169 +#: src/Common/LinuxKernel.vala:1170 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Zainstalować wersję jądra %s? (t/n): " -#: src/Common/Main.vala:346 +#: src/Common/Main.vala:354 msgid "Called from" msgstr "Wywołano z" -#: src/Common/Main.vala:346 +#: src/Common/Main.vala:354 msgid "at logon" msgstr "przy logowaniu" -#: src/Common/Main.vala:347 +#: src/Common/Main.vala:355 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" "Ten plik jest nadpisywany i wykonywany ponownie za każdym razem, gdy " "ustawienia są zapisywane w" -#: src/Common/Main.vala:379 +#: src/Common/Main.vala:387 msgid "Notifications are disabled" msgstr "Powiadomienia są wyłączone" @@ -215,7 +215,7 @@ msgstr "Powiadomienia są wyłączone" msgid "File not found: %s" msgstr "Nie znaleziono pliku: %s" -#: src/Console/AppConsole.vala:39 src/Gtk/AppGtk.vala:77 +#: src/Console/AppConsole.vala:39 src/Gtk/AppGtk.vala:75 msgid "Syntax" msgstr "Składnia" @@ -255,7 +255,7 @@ msgstr "Zainstaluj wybrane jądra" msgid "Uninstall specified kernels" msgstr "Odinstaluj wybrane jądra" -#: src/Console/AppConsole.vala:51 src/Gtk/MainWindow.vala:326 +#: src/Console/AppConsole.vala:51 src/Gtk/MainWindow.vala:334 msgid "Uninstall all but the highest installed version" msgstr "Odinstaluj wszystkie oprócz najwyższej zainstalowanej wersji" @@ -267,7 +267,7 @@ msgstr "Pobierz wybrane jądra" msgid "Delete cached info about available kernels" msgstr "Usuń informacje z pamięci podręcznej o dostępnych jądrach" -#: src/Console/AppConsole.vala:55 src/Gtk/AppGtk.vala:79 +#: src/Console/AppConsole.vala:55 src/Gtk/AppGtk.vala:77 msgid "Options" msgstr "Opcje" @@ -301,7 +301,7 @@ msgid "Locked kernels and the currently running kernel are ignored" msgstr "Zablokowane jądra i aktualnie uruchomione jądro są ignorowane" #: src/Console/AppConsole.vala:139 src/Console/AppConsole.vala:193 -#: src/Gtk/AppGtk.vala:111 +#: src/Gtk/AppGtk.vala:109 msgid "Unknown option" msgstr "Nieznana opcja" @@ -315,11 +315,11 @@ msgstr "Powiadomienia są wyłączone" msgid "Kernel %s Available" msgstr "Dostępne %s jądra" -#: src/Console/AppConsole.vala:266 src/Gtk/SettingsDialog.vala:154 +#: src/Console/AppConsole.vala:266 src/Gtk/SettingsDialog.vala:151 msgid "Show" msgstr "Pokaż" -#: src/Console/AppConsole.vala:267 src/Gtk/MainWindow.vala:305 +#: src/Console/AppConsole.vala:267 src/Gtk/MainWindow.vala:313 msgid "Install" msgstr "Zainstaluj" @@ -335,7 +335,7 @@ msgstr "Zasługi" msgid "Back" msgstr "Wstecz" -#: src/Gtk/AboutWindow.vala:185 src/Gtk/TerminalWindow.vala:169 +#: src/Gtk/AboutWindow.vala:185 src/Gtk/TerminalWindow.vala:152 msgid "Close" msgstr "Zamknij" @@ -363,173 +363,173 @@ msgstr "Dokumentujący" msgid "Third Party Inclusions" msgstr "Włączenia stron trzecich" -#: src/Gtk/AppGtk.vala:77 +#: src/Gtk/AppGtk.vala:75 msgid "options" msgstr "opcje" -#: src/Gtk/AppGtk.vala:81 +#: src/Gtk/AppGtk.vala:79 msgid "Print debug information" msgstr "Wypisz informacje debugujące" -#: src/Gtk/AppGtk.vala:82 +#: src/Gtk/AppGtk.vala:80 msgid "Show all options" msgstr "Pokaż wszystkie opcje" -#: src/Gtk/MainWindow.vala:152 +#: src/Gtk/MainWindow.vala:160 msgid "Lock" msgstr "Zablokuj" -#: src/Gtk/MainWindow.vala:169 +#: src/Gtk/MainWindow.vala:177 msgid "Status" msgstr "Status" -#: src/Gtk/MainWindow.vala:181 +#: src/Gtk/MainWindow.vala:189 msgid "Notes" msgstr "Notatki" -#: src/Gtk/MainWindow.vala:310 +#: src/Gtk/MainWindow.vala:318 msgid "Uninstall" msgstr "Odinstaluj" -#: src/Gtk/MainWindow.vala:316 +#: src/Gtk/MainWindow.vala:324 msgid "Changelog, build status, etc" msgstr "Dziennik zmian, status kompilacji itd." -#: src/Gtk/MainWindow.vala:325 +#: src/Gtk/MainWindow.vala:333 msgid "Uninstall Old" msgstr "Odinstaluj stare" -#: src/Gtk/MainWindow.vala:331 +#: src/Gtk/MainWindow.vala:339 msgid "Reload" msgstr "Wczytaj ponownie" -#: src/Gtk/MainWindow.vala:332 +#: src/Gtk/MainWindow.vala:340 msgid "Delete and reload all cached kernel info" msgstr "" "Usuń i ponownie załaduj wszystkie informacje o jądrze z pamięci podręcznej" -#: src/Gtk/MainWindow.vala:337 src/Gtk/SettingsDialog.vala:43 +#: src/Gtk/MainWindow.vala:345 src/Gtk/SettingsDialog.vala:41 msgid "Settings" msgstr "Ustawienia" -#: src/Gtk/MainWindow.vala:342 +#: src/Gtk/MainWindow.vala:350 msgid "About" msgstr "O programie" -#: src/Gtk/MainWindow.vala:347 +#: src/Gtk/MainWindow.vala:355 msgid "Exit" msgstr "Wyjdź" -#: src/Gtk/MainWindow.vala:428 +#: src/Gtk/MainWindow.vala:436 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Narzędzie uaktualniania jądra dla dystrybucji z rodziny Ubuntu" -#: src/Gtk/MainWindow.vala:429 +#: src/Gtk/MainWindow.vala:437 msgid "Forked" msgstr "Sforkowane" -#: src/Gtk/MainWindow.vala:429 +#: src/Gtk/MainWindow.vala:437 msgid "Original" msgstr "Oryginalne" -#: src/Gtk/MainWindow.vala:458 +#: src/Gtk/MainWindow.vala:466 msgid "Updating kernels" msgstr "Aktualizowanie jąder" -#: src/Gtk/MainWindow.vala:518 +#: src/Gtk/MainWindow.vala:526 msgid "available" msgstr "dostępne" -#: src/Gtk/MainWindow.vala:560 src/Gtk/MainWindow.vala:591 -#: src/Gtk/MainWindow.vala:616 +#: src/Gtk/MainWindow.vala:568 src/Gtk/MainWindow.vala:599 +#: src/Gtk/MainWindow.vala:624 msgid "DONE" msgstr "GOTOWE" -#: src/Gtk/SettingsDialog.vala:53 +#: src/Gtk/SettingsDialog.vala:50 msgid "Notification" msgstr "Powiadomienia" -#: src/Gtk/SettingsDialog.vala:60 +#: src/Gtk/SettingsDialog.vala:57 msgid "Notify if a major release is available" msgstr "Powiadom, jeśli pojawi się główna wersja" -#: src/Gtk/SettingsDialog.vala:68 +#: src/Gtk/SettingsDialog.vala:65 msgid "Notify if a point release is available" msgstr "Powiadom, jeśli pojawi się wersja punktowa" -#: src/Gtk/SettingsDialog.vala:76 +#: src/Gtk/SettingsDialog.vala:73 msgid "Seconds interval enabled for debugging" msgstr "Interwał w sekundach włączony do debugowania" -#: src/Gtk/SettingsDialog.vala:99 +#: src/Gtk/SettingsDialog.vala:96 msgid "Check every" msgstr "Sprawdzaj co" -#: src/Gtk/SettingsDialog.vala:122 +#: src/Gtk/SettingsDialog.vala:119 msgid "Hours" msgstr "godziny" -#: src/Gtk/SettingsDialog.vala:124 +#: src/Gtk/SettingsDialog.vala:121 msgid "Days" msgstr "dni" -#: src/Gtk/SettingsDialog.vala:126 +#: src/Gtk/SettingsDialog.vala:123 msgid "Weeks" msgstr "tygodnie" -#: src/Gtk/SettingsDialog.vala:129 +#: src/Gtk/SettingsDialog.vala:126 msgid "Seconds" msgstr "sekundy" -#: src/Gtk/SettingsDialog.vala:135 +#: src/Gtk/SettingsDialog.vala:132 msgid "Filters" msgstr "Filtry" -#: src/Gtk/SettingsDialog.vala:143 +#: src/Gtk/SettingsDialog.vala:140 msgid "Hide unstable and RC releases" msgstr "Ukryj wydania niestabilne i RC" -#: src/Gtk/SettingsDialog.vala:165 +#: src/Gtk/SettingsDialog.vala:162 msgid "previous major versions ( -1 = all )" msgstr "poprzednie główne wersje ( -1 = wszystkie )" -#: src/Gtk/SettingsDialog.vala:169 +#: src/Gtk/SettingsDialog.vala:166 msgid "Network" msgstr "Sieć" -#: src/Gtk/SettingsDialog.vala:180 +#: src/Gtk/SettingsDialog.vala:177 msgid "Internet connection timeout in" msgstr "Limit czasu połączenia internetowego po" -#: src/Gtk/SettingsDialog.vala:192 +#: src/Gtk/SettingsDialog.vala:189 msgid "seconds" msgstr "sekundy" -#: src/Gtk/SettingsDialog.vala:199 +#: src/Gtk/SettingsDialog.vala:196 msgid "Max concurrent downloads" msgstr "Maksymalna liczba jednoczesnych pobrań" -#: src/Gtk/SettingsDialog.vala:212 +#: src/Gtk/SettingsDialog.vala:209 msgid "Verify Checksums with the CHECKSUMS files" msgstr "Weryfikowanie sum kontrolnych za pomocą plików CHECKSUMS" -#: src/Gtk/SettingsDialog.vala:220 +#: src/Gtk/SettingsDialog.vala:217 msgid "Proxy" msgstr "Serwer pośredniczący" -#: src/Gtk/SettingsDialog.vala:252 +#: src/Gtk/SettingsDialog.vala:250 #, fuzzy msgid "Auth Command" msgstr "Polecenia" -#: src/Gtk/SettingsDialog.vala:273 +#: src/Gtk/SettingsDialog.vala:280 msgid "Done" msgstr "Gotowe" -#: src/Gtk/TerminalWindow.vala:159 +#: src/Gtk/TerminalWindow.vala:142 msgid "Cancel" msgstr "Anuluj" -#: src/lib/l.misc.vala:84 +#: src/lib/l.misc.vala:102 msgid "Can not reach site" msgstr "Nie można dotrzeć do witryny" diff --git a/po/ru.po b/po/ru.po index 070851b2..edeaaaef 100644 --- a/po/ru.po +++ b/po/ru.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-03 08:40-0400\n" +"POT-Creation-Date: 2023-06-04 08:48-0400\n" "PO-Revision-Date: 2023-04-17 20:16+0300\n" "Last-Translator: Danik2343 \n" "Language-Team: Russian\n" @@ -62,11 +62,11 @@ msgid "locked" msgstr "" #: src/Common/LinuxKernel.vala:475 src/Common/LinuxKernel.vala:1003 -#: src/Common/LinuxKernel.vala:1093 +#: src/Common/LinuxKernel.vala:1094 msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:668 src/Gtk/MainWindow.vala:514 +#: src/Common/LinuxKernel.vala:668 src/Gtk/MainWindow.vala:522 msgid "Running" msgstr "Используется" @@ -94,7 +94,7 @@ msgstr "Файл не найден" msgid "Available Kernels" msgstr "Доступные ядра" -#: src/Common/LinuxKernel.vala:920 src/Gtk/MainWindow.vala:128 +#: src/Common/LinuxKernel.vala:920 src/Gtk/MainWindow.vala:136 msgid "Kernel" msgstr "Ядро" @@ -121,7 +121,7 @@ msgstr "Загрузки" msgid "Installing selected kernels" msgstr "Удаление выбранных ядер" -#: src/Common/LinuxKernel.vala:995 src/Common/LinuxKernel.vala:1033 +#: src/Common/LinuxKernel.vala:995 src/Common/LinuxKernel.vala:1034 #, fuzzy msgid "Requested" msgstr "запрошено" @@ -134,86 +134,86 @@ msgstr "уже установлен." msgid "download failed." msgstr "" -#: src/Common/LinuxKernel.vala:1016 +#: src/Common/LinuxKernel.vala:1015 #, fuzzy msgid "Install: no installable kernels secified" msgstr "Команда не указана" -#: src/Common/LinuxKernel.vala:1029 +#: src/Common/LinuxKernel.vala:1030 msgid "Uninstalling selected kernels" msgstr "Удаление выбранных ядер" -#: src/Common/LinuxKernel.vala:1036 +#: src/Common/LinuxKernel.vala:1037 #, fuzzy msgid "Not uninstalling the currently running kernel" msgstr "не удаляет текущее работающее ядро" -#: src/Common/LinuxKernel.vala:1041 +#: src/Common/LinuxKernel.vala:1042 msgid "is locked" msgstr "" -#: src/Common/LinuxKernel.vala:1049 +#: src/Common/LinuxKernel.vala:1050 msgid "found" msgstr "найдено" -#: src/Common/LinuxKernel.vala:1053 +#: src/Common/LinuxKernel.vala:1054 msgid "Uninstall: no uninstallable packages found" msgstr "" -#: src/Common/LinuxKernel.vala:1089 +#: src/Common/LinuxKernel.vala:1090 #, fuzzy msgid "is the highest installed version." msgstr "Удаление всех установленных версий, кроме самой высокой" -#: src/Common/LinuxKernel.vala:1102 +#: src/Common/LinuxKernel.vala:1103 msgid "Could not find running kernel in list" msgstr "Could not find running kernel in list" -#: src/Common/LinuxKernel.vala:1107 +#: src/Common/LinuxKernel.vala:1108 msgid "Could not find any kernels to uninstall" msgstr "Не удалось найти ядра для деинсталляции" -#: src/Common/LinuxKernel.vala:1115 +#: src/Common/LinuxKernel.vala:1116 msgid "The following kernels will be uninstalled" msgstr "Следующие ядра будут удалены" -#: src/Common/LinuxKernel.vala:1119 +#: src/Common/LinuxKernel.vala:1120 msgid "Continue ?" msgstr "Продолжить ?" -#: src/Common/LinuxKernel.vala:1141 src/Console/AppConsole.vala:208 +#: src/Common/LinuxKernel.vala:1142 src/Console/AppConsole.vala:208 msgid "Latest update" msgstr "Последнее обновление" -#: src/Common/LinuxKernel.vala:1152 src/Console/AppConsole.vala:215 +#: src/Common/LinuxKernel.vala:1153 src/Console/AppConsole.vala:215 msgid "Latest point update" msgstr "Последнее обновление пунктов" -#: src/Common/LinuxKernel.vala:1160 src/Console/AppConsole.vala:220 +#: src/Common/LinuxKernel.vala:1161 src/Console/AppConsole.vala:220 #: src/Console/AppConsole.vala:240 msgid "No updates found" msgstr "Обновлений не найдено" -#: src/Common/LinuxKernel.vala:1169 +#: src/Common/LinuxKernel.vala:1170 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Установить версию ядра %s ? (y/n): " -#: src/Common/Main.vala:346 +#: src/Common/Main.vala:354 msgid "Called from" msgstr "Вызван из" -#: src/Common/Main.vala:346 +#: src/Common/Main.vala:354 msgid "at logon" msgstr "при запуске" -#: src/Common/Main.vala:347 +#: src/Common/Main.vala:355 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" "Этот файл перезаписывается и выполняется снова при сохранении настроек в" -#: src/Common/Main.vala:379 +#: src/Common/Main.vala:387 msgid "Notifications are disabled" msgstr "Уведомления отключены" @@ -222,7 +222,7 @@ msgstr "Уведомления отключены" msgid "File not found: %s" msgstr "Файл не найден: %s" -#: src/Console/AppConsole.vala:39 src/Gtk/AppGtk.vala:77 +#: src/Console/AppConsole.vala:39 src/Gtk/AppGtk.vala:75 msgid "Syntax" msgstr "Синтаксис" @@ -266,7 +266,7 @@ msgstr "Установить указанное ядро" msgid "Uninstall specified kernels" msgstr "Установить указанное ядро" -#: src/Console/AppConsole.vala:51 src/Gtk/MainWindow.vala:326 +#: src/Console/AppConsole.vala:51 src/Gtk/MainWindow.vala:334 msgid "Uninstall all but the highest installed version" msgstr "Удаление всех установленных версий, кроме самой высокой" @@ -278,7 +278,7 @@ msgstr "Скачать указанные ядра" msgid "Delete cached info about available kernels" msgstr "Удаление кэшированной информации о доступных ядрах" -#: src/Console/AppConsole.vala:55 src/Gtk/AppGtk.vala:79 +#: src/Console/AppConsole.vala:55 src/Gtk/AppGtk.vala:77 msgid "Options" msgstr "Параметры" @@ -313,7 +313,7 @@ msgid "Locked kernels and the currently running kernel are ignored" msgstr "Текущее работающее ядро всегда будет игнорироваться" #: src/Console/AppConsole.vala:139 src/Console/AppConsole.vala:193 -#: src/Gtk/AppGtk.vala:111 +#: src/Gtk/AppGtk.vala:109 msgid "Unknown option" msgstr "Неизвестный параметр" @@ -327,11 +327,11 @@ msgstr "Уведомления отключены" msgid "Kernel %s Available" msgstr "Доступно ядро %s" -#: src/Console/AppConsole.vala:266 src/Gtk/SettingsDialog.vala:154 +#: src/Console/AppConsole.vala:266 src/Gtk/SettingsDialog.vala:151 msgid "Show" msgstr "Показать" -#: src/Console/AppConsole.vala:267 src/Gtk/MainWindow.vala:305 +#: src/Console/AppConsole.vala:267 src/Gtk/MainWindow.vala:313 msgid "Install" msgstr "Установить" @@ -347,7 +347,7 @@ msgstr "Создатели" msgid "Back" msgstr "Назад" -#: src/Gtk/AboutWindow.vala:185 src/Gtk/TerminalWindow.vala:169 +#: src/Gtk/AboutWindow.vala:185 src/Gtk/TerminalWindow.vala:152 msgid "Close" msgstr "Закрыть" @@ -375,172 +375,172 @@ msgstr "Составители документации" msgid "Third Party Inclusions" msgstr "Включая сторонние инструменты" -#: src/Gtk/AppGtk.vala:77 +#: src/Gtk/AppGtk.vala:75 msgid "options" msgstr "параметры" -#: src/Gtk/AppGtk.vala:81 +#: src/Gtk/AppGtk.vala:79 msgid "Print debug information" msgstr "Распечатать отладочную информацию" -#: src/Gtk/AppGtk.vala:82 +#: src/Gtk/AppGtk.vala:80 msgid "Show all options" msgstr "Показать все параметры" -#: src/Gtk/MainWindow.vala:152 +#: src/Gtk/MainWindow.vala:160 msgid "Lock" msgstr "" -#: src/Gtk/MainWindow.vala:169 +#: src/Gtk/MainWindow.vala:177 msgid "Status" msgstr "Состояние" -#: src/Gtk/MainWindow.vala:181 +#: src/Gtk/MainWindow.vala:189 msgid "Notes" msgstr "Примечания" -#: src/Gtk/MainWindow.vala:310 +#: src/Gtk/MainWindow.vala:318 msgid "Uninstall" msgstr "Удалить" -#: src/Gtk/MainWindow.vala:316 +#: src/Gtk/MainWindow.vala:324 msgid "Changelog, build status, etc" msgstr "Список изменений, статус сборки и т.д" -#: src/Gtk/MainWindow.vala:325 +#: src/Gtk/MainWindow.vala:333 msgid "Uninstall Old" msgstr "Удалить старые" -#: src/Gtk/MainWindow.vala:331 +#: src/Gtk/MainWindow.vala:339 msgid "Reload" msgstr "Перезагрузить" -#: src/Gtk/MainWindow.vala:332 +#: src/Gtk/MainWindow.vala:340 msgid "Delete and reload all cached kernel info" msgstr "" -#: src/Gtk/MainWindow.vala:337 src/Gtk/SettingsDialog.vala:43 +#: src/Gtk/MainWindow.vala:345 src/Gtk/SettingsDialog.vala:41 msgid "Settings" msgstr "Настройки" -#: src/Gtk/MainWindow.vala:342 +#: src/Gtk/MainWindow.vala:350 msgid "About" msgstr "О программе" -#: src/Gtk/MainWindow.vala:347 +#: src/Gtk/MainWindow.vala:355 msgid "Exit" msgstr "Выход" -#: src/Gtk/MainWindow.vala:428 +#: src/Gtk/MainWindow.vala:436 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Программа обновления ядра для дистрибутивов на базе Ubuntu" -#: src/Gtk/MainWindow.vala:429 +#: src/Gtk/MainWindow.vala:437 msgid "Forked" msgstr "Форк" -#: src/Gtk/MainWindow.vala:429 +#: src/Gtk/MainWindow.vala:437 msgid "Original" msgstr "Оригинал" -#: src/Gtk/MainWindow.vala:458 +#: src/Gtk/MainWindow.vala:466 msgid "Updating kernels" msgstr "Обновление ядер" -#: src/Gtk/MainWindow.vala:518 +#: src/Gtk/MainWindow.vala:526 msgid "available" msgstr "доступно" -#: src/Gtk/MainWindow.vala:560 src/Gtk/MainWindow.vala:591 -#: src/Gtk/MainWindow.vala:616 +#: src/Gtk/MainWindow.vala:568 src/Gtk/MainWindow.vala:599 +#: src/Gtk/MainWindow.vala:624 msgid "DONE" msgstr "" -#: src/Gtk/SettingsDialog.vala:53 +#: src/Gtk/SettingsDialog.vala:50 msgid "Notification" msgstr "Уведомления" -#: src/Gtk/SettingsDialog.vala:60 +#: src/Gtk/SettingsDialog.vala:57 msgid "Notify if a major release is available" msgstr "Уведомлять, если доступно крупное обновление" -#: src/Gtk/SettingsDialog.vala:68 +#: src/Gtk/SettingsDialog.vala:65 msgid "Notify if a point release is available" msgstr "Уведомлять, если доступно небольшое обновление" -#: src/Gtk/SettingsDialog.vala:76 +#: src/Gtk/SettingsDialog.vala:73 msgid "Seconds interval enabled for debugging" msgstr "Интервал секунд включен для отладки" -#: src/Gtk/SettingsDialog.vala:99 +#: src/Gtk/SettingsDialog.vala:96 msgid "Check every" msgstr "Проверять каждые" -#: src/Gtk/SettingsDialog.vala:122 +#: src/Gtk/SettingsDialog.vala:119 msgid "Hours" msgstr "Часов" -#: src/Gtk/SettingsDialog.vala:124 +#: src/Gtk/SettingsDialog.vala:121 msgid "Days" msgstr "Дней" -#: src/Gtk/SettingsDialog.vala:126 +#: src/Gtk/SettingsDialog.vala:123 msgid "Weeks" msgstr "Недель" -#: src/Gtk/SettingsDialog.vala:129 +#: src/Gtk/SettingsDialog.vala:126 msgid "Seconds" msgstr "Секунд" -#: src/Gtk/SettingsDialog.vala:135 +#: src/Gtk/SettingsDialog.vala:132 msgid "Filters" msgstr "Фильтры" -#: src/Gtk/SettingsDialog.vala:143 +#: src/Gtk/SettingsDialog.vala:140 msgid "Hide unstable and RC releases" msgstr "Скрыть нестабильные и релиз-кандидат версии" -#: src/Gtk/SettingsDialog.vala:165 +#: src/Gtk/SettingsDialog.vala:162 msgid "previous major versions ( -1 = all )" msgstr "предыдущие основные версии ( -1 = все )" -#: src/Gtk/SettingsDialog.vala:169 +#: src/Gtk/SettingsDialog.vala:166 msgid "Network" msgstr "Сеть" -#: src/Gtk/SettingsDialog.vala:180 +#: src/Gtk/SettingsDialog.vala:177 msgid "Internet connection timeout in" msgstr "Таймаут подключения к Интернету в" -#: src/Gtk/SettingsDialog.vala:192 +#: src/Gtk/SettingsDialog.vala:189 msgid "seconds" msgstr "секунд" -#: src/Gtk/SettingsDialog.vala:199 +#: src/Gtk/SettingsDialog.vala:196 msgid "Max concurrent downloads" msgstr "Максимальное количество одновременных загрузок" -#: src/Gtk/SettingsDialog.vala:212 +#: src/Gtk/SettingsDialog.vala:209 msgid "Verify Checksums with the CHECKSUMS files" msgstr "Проверка контрольных сумм с помощью файлов CHECKSUMS" -#: src/Gtk/SettingsDialog.vala:220 +#: src/Gtk/SettingsDialog.vala:217 msgid "Proxy" msgstr "Доверенность" -#: src/Gtk/SettingsDialog.vala:252 +#: src/Gtk/SettingsDialog.vala:250 #, fuzzy msgid "Auth Command" msgstr "Комманды" -#: src/Gtk/SettingsDialog.vala:273 +#: src/Gtk/SettingsDialog.vala:280 msgid "Done" msgstr "" -#: src/Gtk/TerminalWindow.vala:159 +#: src/Gtk/TerminalWindow.vala:142 msgid "Cancel" msgstr "Отмена" -#: src/lib/l.misc.vala:84 +#: src/lib/l.misc.vala:102 msgid "Can not reach site" msgstr "Не удается связаться с сайтом" diff --git a/po/sv.po b/po/sv.po index 2b61b79f..f5b604bb 100644 --- a/po/sv.po +++ b/po/sv.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-03 08:40-0400\n" +"POT-Creation-Date: 2023-06-04 08:48-0400\n" "PO-Revision-Date: 2018-01-13 16:56+0100\n" "Last-Translator: Åke Engelbrektson \n" "Language-Team:Swedish\n" @@ -62,11 +62,11 @@ msgid "locked" msgstr "" #: src/Common/LinuxKernel.vala:475 src/Common/LinuxKernel.vala:1003 -#: src/Common/LinuxKernel.vala:1093 +#: src/Common/LinuxKernel.vala:1094 msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:668 src/Gtk/MainWindow.vala:514 +#: src/Common/LinuxKernel.vala:668 src/Gtk/MainWindow.vala:522 msgid "Running" msgstr "Körs" @@ -94,7 +94,7 @@ msgstr "Filen kan inte hittas" msgid "Available Kernels" msgstr "Tillgängliga kärnor" -#: src/Common/LinuxKernel.vala:920 src/Gtk/MainWindow.vala:128 +#: src/Common/LinuxKernel.vala:920 src/Gtk/MainWindow.vala:136 msgid "Kernel" msgstr "Kärna" @@ -121,7 +121,7 @@ msgstr "Ladda ner" msgid "Installing selected kernels" msgstr "Avinstallera valda kärnor" -#: src/Common/LinuxKernel.vala:995 src/Common/LinuxKernel.vala:1033 +#: src/Common/LinuxKernel.vala:995 src/Common/LinuxKernel.vala:1034 #, fuzzy msgid "Requested" msgstr "begärd" @@ -134,85 +134,85 @@ msgstr "är redan installerat." msgid "download failed." msgstr "" -#: src/Common/LinuxKernel.vala:1016 +#: src/Common/LinuxKernel.vala:1015 #, fuzzy msgid "Install: no installable kernels secified" msgstr "Kommandot har inte angetts" -#: src/Common/LinuxKernel.vala:1029 +#: src/Common/LinuxKernel.vala:1030 msgid "Uninstalling selected kernels" msgstr "Avinstallera valda kärnor" -#: src/Common/LinuxKernel.vala:1036 +#: src/Common/LinuxKernel.vala:1037 #, fuzzy msgid "Not uninstalling the currently running kernel" msgstr "Avinstallera inte den kärna som körs, för närvarande" -#: src/Common/LinuxKernel.vala:1041 +#: src/Common/LinuxKernel.vala:1042 msgid "is locked" msgstr "" -#: src/Common/LinuxKernel.vala:1049 +#: src/Common/LinuxKernel.vala:1050 msgid "found" msgstr "grunda" -#: src/Common/LinuxKernel.vala:1053 +#: src/Common/LinuxKernel.vala:1054 msgid "Uninstall: no uninstallable packages found" msgstr "" -#: src/Common/LinuxKernel.vala:1089 +#: src/Common/LinuxKernel.vala:1090 #, fuzzy msgid "is the highest installed version." msgstr "Avinstallera alla utom den högsta installerade versionen" -#: src/Common/LinuxKernel.vala:1102 +#: src/Common/LinuxKernel.vala:1103 msgid "Could not find running kernel in list" msgstr "Det gick inte att hitta kernel som körs i listan" -#: src/Common/LinuxKernel.vala:1107 +#: src/Common/LinuxKernel.vala:1108 msgid "Could not find any kernels to uninstall" msgstr "Det gick inte att hitta några kärnor att avinstallera" -#: src/Common/LinuxKernel.vala:1115 +#: src/Common/LinuxKernel.vala:1116 msgid "The following kernels will be uninstalled" msgstr "Följande kärnor kommer att avinstalleras" -#: src/Common/LinuxKernel.vala:1119 +#: src/Common/LinuxKernel.vala:1120 msgid "Continue ?" msgstr "Fortsätta?" -#: src/Common/LinuxKernel.vala:1141 src/Console/AppConsole.vala:208 +#: src/Common/LinuxKernel.vala:1142 src/Console/AppConsole.vala:208 msgid "Latest update" msgstr "Senaste uppdatering" -#: src/Common/LinuxKernel.vala:1152 src/Console/AppConsole.vala:215 +#: src/Common/LinuxKernel.vala:1153 src/Console/AppConsole.vala:215 msgid "Latest point update" msgstr "Senaste punktuppdatering" -#: src/Common/LinuxKernel.vala:1160 src/Console/AppConsole.vala:220 +#: src/Common/LinuxKernel.vala:1161 src/Console/AppConsole.vala:220 #: src/Console/AppConsole.vala:240 msgid "No updates found" msgstr "Inga uppdateringar hittades" -#: src/Common/LinuxKernel.vala:1169 +#: src/Common/LinuxKernel.vala:1170 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Installera kärnversion %s ? (j/n):" -#: src/Common/Main.vala:346 +#: src/Common/Main.vala:354 msgid "Called from" msgstr "Ringde från" -#: src/Common/Main.vala:346 +#: src/Common/Main.vala:354 msgid "at logon" msgstr "vid start" -#: src/Common/Main.vala:347 +#: src/Common/Main.vala:355 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "Den här filen skrivs över och körs igen när inställningar sparas i" -#: src/Common/Main.vala:379 +#: src/Common/Main.vala:387 msgid "Notifications are disabled" msgstr "Meddelanden är inaktiverade" @@ -221,7 +221,7 @@ msgstr "Meddelanden är inaktiverade" msgid "File not found: %s" msgstr "Filen hittades inte: %s" -#: src/Console/AppConsole.vala:39 src/Gtk/AppGtk.vala:77 +#: src/Console/AppConsole.vala:39 src/Gtk/AppGtk.vala:75 msgid "Syntax" msgstr "Syntax" @@ -265,7 +265,7 @@ msgstr "Avinstallera angiven kärna" msgid "Uninstall specified kernels" msgstr "Avinstallera angiven kärna" -#: src/Console/AppConsole.vala:51 src/Gtk/MainWindow.vala:326 +#: src/Console/AppConsole.vala:51 src/Gtk/MainWindow.vala:334 msgid "Uninstall all but the highest installed version" msgstr "Avinstallera alla utom den högsta installerade versionen" @@ -277,7 +277,7 @@ msgstr "Ladda ner angivna kärnor" msgid "Delete cached info about available kernels" msgstr "Ta bort cachelagrad information om tillgängliga kärnor" -#: src/Console/AppConsole.vala:55 src/Gtk/AppGtk.vala:79 +#: src/Console/AppConsole.vala:55 src/Gtk/AppGtk.vala:77 msgid "Options" msgstr "Alternativ" @@ -312,7 +312,7 @@ msgid "Locked kernels and the currently running kernel are ignored" msgstr "Den kärna som för närvarande körs ignoreras alltid" #: src/Console/AppConsole.vala:139 src/Console/AppConsole.vala:193 -#: src/Gtk/AppGtk.vala:111 +#: src/Gtk/AppGtk.vala:109 msgid "Unknown option" msgstr "Okänt alternativ" @@ -326,11 +326,11 @@ msgstr "Meddelanden är inaktiverade" msgid "Kernel %s Available" msgstr "Kernel %s tillgängliga" -#: src/Console/AppConsole.vala:266 src/Gtk/SettingsDialog.vala:154 +#: src/Console/AppConsole.vala:266 src/Gtk/SettingsDialog.vala:151 msgid "Show" msgstr "Visa" -#: src/Console/AppConsole.vala:267 src/Gtk/MainWindow.vala:305 +#: src/Console/AppConsole.vala:267 src/Gtk/MainWindow.vala:313 msgid "Install" msgstr "Installera" @@ -346,7 +346,7 @@ msgstr "Tack" msgid "Back" msgstr "Tillbaka" -#: src/Gtk/AboutWindow.vala:185 src/Gtk/TerminalWindow.vala:169 +#: src/Gtk/AboutWindow.vala:185 src/Gtk/TerminalWindow.vala:152 msgid "Close" msgstr "Stäng" @@ -374,172 +374,172 @@ msgstr "Dokumentalister" msgid "Third Party Inclusions" msgstr "Tredjepartsverktyg" -#: src/Gtk/AppGtk.vala:77 +#: src/Gtk/AppGtk.vala:75 msgid "options" msgstr "alternativ" -#: src/Gtk/AppGtk.vala:81 +#: src/Gtk/AppGtk.vala:79 msgid "Print debug information" msgstr "Skriv ut felsökningsinformation" -#: src/Gtk/AppGtk.vala:82 +#: src/Gtk/AppGtk.vala:80 msgid "Show all options" msgstr "Visa alla alternativ" -#: src/Gtk/MainWindow.vala:152 +#: src/Gtk/MainWindow.vala:160 msgid "Lock" msgstr "" -#: src/Gtk/MainWindow.vala:169 +#: src/Gtk/MainWindow.vala:177 msgid "Status" msgstr "Status" -#: src/Gtk/MainWindow.vala:181 +#: src/Gtk/MainWindow.vala:189 msgid "Notes" msgstr "Anteckningar" -#: src/Gtk/MainWindow.vala:310 +#: src/Gtk/MainWindow.vala:318 msgid "Uninstall" msgstr "Avinstallera" -#: src/Gtk/MainWindow.vala:316 +#: src/Gtk/MainWindow.vala:324 msgid "Changelog, build status, etc" msgstr "" -#: src/Gtk/MainWindow.vala:325 +#: src/Gtk/MainWindow.vala:333 msgid "Uninstall Old" msgstr "Avinstallera Gamla" -#: src/Gtk/MainWindow.vala:331 +#: src/Gtk/MainWindow.vala:339 msgid "Reload" msgstr "Reload" -#: src/Gtk/MainWindow.vala:332 +#: src/Gtk/MainWindow.vala:340 msgid "Delete and reload all cached kernel info" msgstr "" -#: src/Gtk/MainWindow.vala:337 src/Gtk/SettingsDialog.vala:43 +#: src/Gtk/MainWindow.vala:345 src/Gtk/SettingsDialog.vala:41 msgid "Settings" msgstr "Inställningar" -#: src/Gtk/MainWindow.vala:342 +#: src/Gtk/MainWindow.vala:350 msgid "About" msgstr "Om" -#: src/Gtk/MainWindow.vala:347 +#: src/Gtk/MainWindow.vala:355 msgid "Exit" msgstr "Utgång" -#: src/Gtk/MainWindow.vala:428 +#: src/Gtk/MainWindow.vala:436 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Kärnuppgraderingsverktyg för Ubuntu-baserade distributioner" -#: src/Gtk/MainWindow.vala:429 +#: src/Gtk/MainWindow.vala:437 msgid "Forked" msgstr "Kluven" -#: src/Gtk/MainWindow.vala:429 +#: src/Gtk/MainWindow.vala:437 msgid "Original" msgstr "Original" -#: src/Gtk/MainWindow.vala:458 +#: src/Gtk/MainWindow.vala:466 msgid "Updating kernels" msgstr "Uppdatera kärnor" -#: src/Gtk/MainWindow.vala:518 +#: src/Gtk/MainWindow.vala:526 msgid "available" msgstr "tillgänglig" -#: src/Gtk/MainWindow.vala:560 src/Gtk/MainWindow.vala:591 -#: src/Gtk/MainWindow.vala:616 +#: src/Gtk/MainWindow.vala:568 src/Gtk/MainWindow.vala:599 +#: src/Gtk/MainWindow.vala:624 msgid "DONE" msgstr "" -#: src/Gtk/SettingsDialog.vala:53 +#: src/Gtk/SettingsDialog.vala:50 msgid "Notification" msgstr "Avisering" -#: src/Gtk/SettingsDialog.vala:60 +#: src/Gtk/SettingsDialog.vala:57 msgid "Notify if a major release is available" msgstr "Meddela om en större version är tillgänglig" -#: src/Gtk/SettingsDialog.vala:68 +#: src/Gtk/SettingsDialog.vala:65 msgid "Notify if a point release is available" msgstr "Meddela om en punktrelease är tillgänglig" -#: src/Gtk/SettingsDialog.vala:76 +#: src/Gtk/SettingsDialog.vala:73 msgid "Seconds interval enabled for debugging" msgstr "Sekundintervall aktiverat för felsökning" -#: src/Gtk/SettingsDialog.vala:99 +#: src/Gtk/SettingsDialog.vala:96 msgid "Check every" msgstr "Kontrollera varje" -#: src/Gtk/SettingsDialog.vala:122 +#: src/Gtk/SettingsDialog.vala:119 msgid "Hours" msgstr "timmar" -#: src/Gtk/SettingsDialog.vala:124 +#: src/Gtk/SettingsDialog.vala:121 msgid "Days" msgstr "dagar" -#: src/Gtk/SettingsDialog.vala:126 +#: src/Gtk/SettingsDialog.vala:123 msgid "Weeks" msgstr "veckor" -#: src/Gtk/SettingsDialog.vala:129 +#: src/Gtk/SettingsDialog.vala:126 msgid "Seconds" msgstr "sekunder" -#: src/Gtk/SettingsDialog.vala:135 +#: src/Gtk/SettingsDialog.vala:132 msgid "Filters" msgstr "Filter" -#: src/Gtk/SettingsDialog.vala:143 +#: src/Gtk/SettingsDialog.vala:140 msgid "Hide unstable and RC releases" msgstr "Dölj instabila- och RC-publiceringar" -#: src/Gtk/SettingsDialog.vala:165 +#: src/Gtk/SettingsDialog.vala:162 msgid "previous major versions ( -1 = all )" msgstr "tidigare huvudversioner ( -1 = alla )" -#: src/Gtk/SettingsDialog.vala:169 +#: src/Gtk/SettingsDialog.vala:166 msgid "Network" msgstr "Nätverk" -#: src/Gtk/SettingsDialog.vala:180 +#: src/Gtk/SettingsDialog.vala:177 msgid "Internet connection timeout in" msgstr "Internetuppkopplingen är inte aktiv" -#: src/Gtk/SettingsDialog.vala:192 +#: src/Gtk/SettingsDialog.vala:189 msgid "seconds" msgstr "sekunder" -#: src/Gtk/SettingsDialog.vala:199 +#: src/Gtk/SettingsDialog.vala:196 msgid "Max concurrent downloads" msgstr "Max antal nedladdningar av konkurrenter" -#: src/Gtk/SettingsDialog.vala:212 +#: src/Gtk/SettingsDialog.vala:209 msgid "Verify Checksums with the CHECKSUMS files" msgstr "Verifiera kontrollsummor med CHECKSUMS-filerna" -#: src/Gtk/SettingsDialog.vala:220 +#: src/Gtk/SettingsDialog.vala:217 msgid "Proxy" msgstr "Proxyserver" -#: src/Gtk/SettingsDialog.vala:252 +#: src/Gtk/SettingsDialog.vala:250 #, fuzzy msgid "Auth Command" msgstr "Kommandon" -#: src/Gtk/SettingsDialog.vala:273 +#: src/Gtk/SettingsDialog.vala:280 msgid "Done" msgstr "" -#: src/Gtk/TerminalWindow.vala:159 +#: src/Gtk/TerminalWindow.vala:142 msgid "Cancel" msgstr "Avbryt" -#: src/lib/l.misc.vala:84 +#: src/lib/l.misc.vala:102 msgid "Can not reach site" msgstr "Kan inte nå webbplatsen" diff --git a/po/tr.po b/po/tr.po index 0c00cd8a..76bdabd5 100644 --- a/po/tr.po +++ b/po/tr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-03 08:40-0400\n" +"POT-Creation-Date: 2023-06-04 08:48-0400\n" "PO-Revision-Date: 2022-08-06 16:48+0300\n" "Last-Translator: Sabri Ünal \n" "Language-Team: Turkish\n" @@ -62,11 +62,11 @@ msgid "locked" msgstr "" #: src/Common/LinuxKernel.vala:475 src/Common/LinuxKernel.vala:1003 -#: src/Common/LinuxKernel.vala:1093 +#: src/Common/LinuxKernel.vala:1094 msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:668 src/Gtk/MainWindow.vala:514 +#: src/Common/LinuxKernel.vala:668 src/Gtk/MainWindow.vala:522 msgid "Running" msgstr "Çalışıyor" @@ -94,7 +94,7 @@ msgstr "Dosya bulunamadı" msgid "Available Kernels" msgstr "Mevcut Çekirdekler" -#: src/Common/LinuxKernel.vala:920 src/Gtk/MainWindow.vala:128 +#: src/Common/LinuxKernel.vala:920 src/Gtk/MainWindow.vala:136 msgid "Kernel" msgstr "Çekirdek" @@ -121,7 +121,7 @@ msgstr "Indiriyor" msgid "Installing selected kernels" msgstr "Seçili çekirdekleri kaldırma" -#: src/Common/LinuxKernel.vala:995 src/Common/LinuxKernel.vala:1033 +#: src/Common/LinuxKernel.vala:995 src/Common/LinuxKernel.vala:1034 #, fuzzy msgid "Requested" msgstr "istenen" @@ -134,87 +134,87 @@ msgstr "zaten yüklü." msgid "download failed." msgstr "" -#: src/Common/LinuxKernel.vala:1016 +#: src/Common/LinuxKernel.vala:1015 #, fuzzy msgid "Install: no installable kernels secified" msgstr "Komut belirtilmedi" -#: src/Common/LinuxKernel.vala:1029 +#: src/Common/LinuxKernel.vala:1030 msgid "Uninstalling selected kernels" msgstr "Seçili çekirdekleri kaldırma" -#: src/Common/LinuxKernel.vala:1036 +#: src/Common/LinuxKernel.vala:1037 #, fuzzy msgid "Not uninstalling the currently running kernel" msgstr "çalışmakta olan çekirdeğin kaldırılmaması" -#: src/Common/LinuxKernel.vala:1041 +#: src/Common/LinuxKernel.vala:1042 msgid "is locked" msgstr "" -#: src/Common/LinuxKernel.vala:1049 +#: src/Common/LinuxKernel.vala:1050 msgid "found" msgstr "kurmak" -#: src/Common/LinuxKernel.vala:1053 +#: src/Common/LinuxKernel.vala:1054 msgid "Uninstall: no uninstallable packages found" msgstr "" -#: src/Common/LinuxKernel.vala:1089 +#: src/Common/LinuxKernel.vala:1090 #, fuzzy msgid "is the highest installed version." msgstr "En yüksek yüklü sürüm dışındaki tüm sürümleri kaldırın" -#: src/Common/LinuxKernel.vala:1102 +#: src/Common/LinuxKernel.vala:1103 msgid "Could not find running kernel in list" msgstr "Listede çalışan çekirdek bulunamadı" -#: src/Common/LinuxKernel.vala:1107 +#: src/Common/LinuxKernel.vala:1108 msgid "Could not find any kernels to uninstall" msgstr "Kaldırılacak çekirdek bulunamadı" -#: src/Common/LinuxKernel.vala:1115 +#: src/Common/LinuxKernel.vala:1116 msgid "The following kernels will be uninstalled" msgstr "Aşağıdaki çekirdekler kaldırılacaktır" -#: src/Common/LinuxKernel.vala:1119 +#: src/Common/LinuxKernel.vala:1120 msgid "Continue ?" msgstr "Devam edilsin mi?" -#: src/Common/LinuxKernel.vala:1141 src/Console/AppConsole.vala:208 +#: src/Common/LinuxKernel.vala:1142 src/Console/AppConsole.vala:208 msgid "Latest update" msgstr "Son güncelleme" # Point burada point release anlamında kullanılıyor. Örneğin 5.10.x sayısının en sonundaki x rakamı point release/nokta sürüm oluyor. -#: src/Common/LinuxKernel.vala:1152 src/Console/AppConsole.vala:215 +#: src/Common/LinuxKernel.vala:1153 src/Console/AppConsole.vala:215 msgid "Latest point update" msgstr "Son nokta güncellemesi" -#: src/Common/LinuxKernel.vala:1160 src/Console/AppConsole.vala:220 +#: src/Common/LinuxKernel.vala:1161 src/Console/AppConsole.vala:220 #: src/Console/AppConsole.vala:240 msgid "No updates found" msgstr "Güncelleme bulunamadı" -#: src/Common/LinuxKernel.vala:1169 +#: src/Common/LinuxKernel.vala:1170 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Linux Çekirdek Sürümü %s Kurulsun mu? (e/h): " -#: src/Common/Main.vala:346 +#: src/Common/Main.vala:354 msgid "Called from" msgstr "Çağrı konumu" -#: src/Common/Main.vala:346 +#: src/Common/Main.vala:354 msgid "at logon" msgstr "başlangıçta" -#: src/Common/Main.vala:347 +#: src/Common/Main.vala:355 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" "Bu dosyanın üzerine yazılır ve ayarlar her kaydedildiğinde yeniden yürütülür" -#: src/Common/Main.vala:379 +#: src/Common/Main.vala:387 msgid "Notifications are disabled" msgstr "Bildirimler devre dışı bırakılmış" @@ -223,7 +223,7 @@ msgstr "Bildirimler devre dışı bırakılmış" msgid "File not found: %s" msgstr "Dosya bulunamadı: %s" -#: src/Console/AppConsole.vala:39 src/Gtk/AppGtk.vala:77 +#: src/Console/AppConsole.vala:39 src/Gtk/AppGtk.vala:75 msgid "Syntax" msgstr "Sözdizimi" @@ -267,7 +267,7 @@ msgstr "Belirtilen çekirdeğini kaldır" msgid "Uninstall specified kernels" msgstr "Belirtilen çekirdeğini kaldır" -#: src/Console/AppConsole.vala:51 src/Gtk/MainWindow.vala:326 +#: src/Console/AppConsole.vala:51 src/Gtk/MainWindow.vala:334 msgid "Uninstall all but the highest installed version" msgstr "En yüksek yüklü sürüm dışındaki tüm sürümleri kaldırın" @@ -279,7 +279,7 @@ msgstr "Belirtilen çekirdekleri indir" msgid "Delete cached info about available kernels" msgstr "Kullanılabilir çekirdekler hakkında önbelleğe alınmış bilgileri silme" -#: src/Console/AppConsole.vala:55 src/Gtk/AppGtk.vala:79 +#: src/Console/AppConsole.vala:55 src/Gtk/AppGtk.vala:77 msgid "Options" msgstr "Seçenekler" @@ -314,7 +314,7 @@ msgid "Locked kernels and the currently running kernel are ignored" msgstr "Şu anda çalışan çekirdek her zaman yoksayılır" #: src/Console/AppConsole.vala:139 src/Console/AppConsole.vala:193 -#: src/Gtk/AppGtk.vala:111 +#: src/Gtk/AppGtk.vala:109 msgid "Unknown option" msgstr "Bilinmeyen seçenek" @@ -328,11 +328,11 @@ msgstr "Bildirimler devre dışı bırakılmış" msgid "Kernel %s Available" msgstr "Çekirdek %s Kullanılabilir" -#: src/Console/AppConsole.vala:266 src/Gtk/SettingsDialog.vala:154 +#: src/Console/AppConsole.vala:266 src/Gtk/SettingsDialog.vala:151 msgid "Show" msgstr "Göster" -#: src/Console/AppConsole.vala:267 src/Gtk/MainWindow.vala:305 +#: src/Console/AppConsole.vala:267 src/Gtk/MainWindow.vala:313 msgid "Install" msgstr "Kur" @@ -348,7 +348,7 @@ msgstr "Hazırlayanlar" msgid "Back" msgstr "Geri" -#: src/Gtk/AboutWindow.vala:185 src/Gtk/TerminalWindow.vala:169 +#: src/Gtk/AboutWindow.vala:185 src/Gtk/TerminalWindow.vala:152 msgid "Close" msgstr "Kapat" @@ -376,172 +376,172 @@ msgstr "Belgelendirenler" msgid "Third Party Inclusions" msgstr "Üçüncü Taraf Eklemeler" -#: src/Gtk/AppGtk.vala:77 +#: src/Gtk/AppGtk.vala:75 msgid "options" msgstr "seçenekler" -#: src/Gtk/AppGtk.vala:81 +#: src/Gtk/AppGtk.vala:79 msgid "Print debug information" msgstr "Hata ayıklama bilgisini yazdır" -#: src/Gtk/AppGtk.vala:82 +#: src/Gtk/AppGtk.vala:80 msgid "Show all options" msgstr "Tüm seçenekleri göster" -#: src/Gtk/MainWindow.vala:152 +#: src/Gtk/MainWindow.vala:160 msgid "Lock" msgstr "" -#: src/Gtk/MainWindow.vala:169 +#: src/Gtk/MainWindow.vala:177 msgid "Status" msgstr "Durum" -#: src/Gtk/MainWindow.vala:181 +#: src/Gtk/MainWindow.vala:189 msgid "Notes" msgstr "Notlar" -#: src/Gtk/MainWindow.vala:310 +#: src/Gtk/MainWindow.vala:318 msgid "Uninstall" msgstr "Kaldır" -#: src/Gtk/MainWindow.vala:316 +#: src/Gtk/MainWindow.vala:324 msgid "Changelog, build status, etc" msgstr "" -#: src/Gtk/MainWindow.vala:325 +#: src/Gtk/MainWindow.vala:333 msgid "Uninstall Old" msgstr "Eskileri Kaldır" -#: src/Gtk/MainWindow.vala:331 +#: src/Gtk/MainWindow.vala:339 msgid "Reload" msgstr "Arjantin" -#: src/Gtk/MainWindow.vala:332 +#: src/Gtk/MainWindow.vala:340 msgid "Delete and reload all cached kernel info" msgstr "" -#: src/Gtk/MainWindow.vala:337 src/Gtk/SettingsDialog.vala:43 +#: src/Gtk/MainWindow.vala:345 src/Gtk/SettingsDialog.vala:41 msgid "Settings" msgstr "Ayarlar" -#: src/Gtk/MainWindow.vala:342 +#: src/Gtk/MainWindow.vala:350 msgid "About" msgstr "Hakkında" -#: src/Gtk/MainWindow.vala:347 +#: src/Gtk/MainWindow.vala:355 msgid "Exit" msgstr "Çıkış" -#: src/Gtk/MainWindow.vala:428 +#: src/Gtk/MainWindow.vala:436 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Ubuntu tabanlı dağıtımlar için çekirdek güncelleme aracı" -#: src/Gtk/MainWindow.vala:429 +#: src/Gtk/MainWindow.vala:437 msgid "Forked" msgstr "Çatallandı" -#: src/Gtk/MainWindow.vala:429 +#: src/Gtk/MainWindow.vala:437 msgid "Original" msgstr "Özgün" -#: src/Gtk/MainWindow.vala:458 +#: src/Gtk/MainWindow.vala:466 msgid "Updating kernels" msgstr "Çekirdekleri güncelleme" -#: src/Gtk/MainWindow.vala:518 +#: src/Gtk/MainWindow.vala:526 msgid "available" msgstr "mevcut" -#: src/Gtk/MainWindow.vala:560 src/Gtk/MainWindow.vala:591 -#: src/Gtk/MainWindow.vala:616 +#: src/Gtk/MainWindow.vala:568 src/Gtk/MainWindow.vala:599 +#: src/Gtk/MainWindow.vala:624 msgid "DONE" msgstr "" -#: src/Gtk/SettingsDialog.vala:53 +#: src/Gtk/SettingsDialog.vala:50 msgid "Notification" msgstr "Bildirim" -#: src/Gtk/SettingsDialog.vala:60 +#: src/Gtk/SettingsDialog.vala:57 msgid "Notify if a major release is available" msgstr "Ana sürüm mevcutsa bildir" -#: src/Gtk/SettingsDialog.vala:68 +#: src/Gtk/SettingsDialog.vala:65 msgid "Notify if a point release is available" msgstr "Nokta sürüm mevcutsa bildir" -#: src/Gtk/SettingsDialog.vala:76 +#: src/Gtk/SettingsDialog.vala:73 msgid "Seconds interval enabled for debugging" msgstr "Hata ayıklama için etkinleştirilen saniye aralığı" -#: src/Gtk/SettingsDialog.vala:99 +#: src/Gtk/SettingsDialog.vala:96 msgid "Check every" msgstr "Kontrol aralığı" -#: src/Gtk/SettingsDialog.vala:122 +#: src/Gtk/SettingsDialog.vala:119 msgid "Hours" msgstr "saat" -#: src/Gtk/SettingsDialog.vala:124 +#: src/Gtk/SettingsDialog.vala:121 msgid "Days" msgstr "gün" -#: src/Gtk/SettingsDialog.vala:126 +#: src/Gtk/SettingsDialog.vala:123 msgid "Weeks" msgstr "hafta" -#: src/Gtk/SettingsDialog.vala:129 +#: src/Gtk/SettingsDialog.vala:126 msgid "Seconds" msgstr "saniye" -#: src/Gtk/SettingsDialog.vala:135 +#: src/Gtk/SettingsDialog.vala:132 msgid "Filters" msgstr "Filtre" -#: src/Gtk/SettingsDialog.vala:143 +#: src/Gtk/SettingsDialog.vala:140 msgid "Hide unstable and RC releases" msgstr "Kararsız ve RC sürümleri gizle" -#: src/Gtk/SettingsDialog.vala:165 +#: src/Gtk/SettingsDialog.vala:162 msgid "previous major versions ( -1 = all )" msgstr "önceki ana sürümler ( -1 = tümü )" -#: src/Gtk/SettingsDialog.vala:169 +#: src/Gtk/SettingsDialog.vala:166 msgid "Network" msgstr "Ağ" -#: src/Gtk/SettingsDialog.vala:180 +#: src/Gtk/SettingsDialog.vala:177 msgid "Internet connection timeout in" msgstr "İnternet bağlantısı zaman aşımı " -#: src/Gtk/SettingsDialog.vala:192 +#: src/Gtk/SettingsDialog.vala:189 msgid "seconds" msgstr "saniye" -#: src/Gtk/SettingsDialog.vala:199 +#: src/Gtk/SettingsDialog.vala:196 msgid "Max concurrent downloads" msgstr "Azami eşzamanlı indirme" -#: src/Gtk/SettingsDialog.vala:212 +#: src/Gtk/SettingsDialog.vala:209 msgid "Verify Checksums with the CHECKSUMS files" msgstr "Sağlama toplamlarını CHECKSUMS dosyalarıyla doğrulama" -#: src/Gtk/SettingsDialog.vala:220 +#: src/Gtk/SettingsDialog.vala:217 msgid "Proxy" msgstr "Proxy" -#: src/Gtk/SettingsDialog.vala:252 +#: src/Gtk/SettingsDialog.vala:250 #, fuzzy msgid "Auth Command" msgstr "Komutlar" -#: src/Gtk/SettingsDialog.vala:273 +#: src/Gtk/SettingsDialog.vala:280 msgid "Done" msgstr "" -#: src/Gtk/TerminalWindow.vala:159 +#: src/Gtk/TerminalWindow.vala:142 msgid "Cancel" msgstr "İptal Et" -#: src/lib/l.misc.vala:84 +#: src/lib/l.misc.vala:102 msgid "Can not reach site" msgstr "Siteye ulaşılamıyor" diff --git a/po/uk.po b/po/uk.po index 585f4ad0..74dfa4de 100644 --- a/po/uk.po +++ b/po/uk.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-03 08:40-0400\n" +"POT-Creation-Date: 2023-06-04 08:48-0400\n" "PO-Revision-Date: 2019-07-25 11:00+0300\n" "Last-Translator: Serhii Golovko \n" "Language-Team: Ukranian\n" @@ -62,11 +62,11 @@ msgid "locked" msgstr "заблокований" #: src/Common/LinuxKernel.vala:475 src/Common/LinuxKernel.vala:1003 -#: src/Common/LinuxKernel.vala:1093 +#: src/Common/LinuxKernel.vala:1094 msgid "is locked." msgstr "заблоковано." -#: src/Common/LinuxKernel.vala:668 src/Gtk/MainWindow.vala:514 +#: src/Common/LinuxKernel.vala:668 src/Gtk/MainWindow.vala:522 msgid "Running" msgstr "Використовується" @@ -94,15 +94,15 @@ msgstr "Файл не знайдено" msgid "Available Kernels" msgstr "Доступні ядра" -#: src/Common/LinuxKernel.vala:920 src/Gtk/MainWindow.vala:128 +#: src/Common/LinuxKernel.vala:920 src/Gtk/MainWindow.vala:136 msgid "Kernel" msgstr "Ядро" -#: src/Common/LinuxKernel.vala:916 +#: src/Common/LinuxKernel.vala:920 msgid "not found" msgstr "не знайдено" -#: src/Common/LinuxKernel.vala:923 +#: src/Common/LinuxKernel.vala:927 msgid "Download: no downloadable kernels specified" msgstr "Завантажити: ядра для завантаження не вказано" @@ -114,11 +114,11 @@ msgstr "увімкнено" msgid "Downloading" msgstr "Завантаження" -#: src/Common/LinuxKernel.vala:985 +#: src/Common/LinuxKernel.vala:989 msgid "Installing selected kernels" msgstr "Встановлення обраних ядер" -#: src/Common/LinuxKernel.vala:991 src/Common/LinuxKernel.vala:1029 +#: src/Common/LinuxKernel.vala:995 src/Common/LinuxKernel.vala:1034 msgid "Requested" msgstr "Запитуваний" @@ -130,83 +130,83 @@ msgstr "вже встановлено." msgid "download failed." msgstr "не вдалося завантажити." -#: src/Common/LinuxKernel.vala:1012 +#: src/Common/LinuxKernel.vala:1015 msgid "Install: no installable kernels secified" msgstr "Встановлення: ядра, які можна встановити, не визначені" -#: src/Common/LinuxKernel.vala:1029 +#: src/Common/LinuxKernel.vala:1030 msgid "Uninstalling selected kernels" msgstr "Видаліть конкретні ядра" -#: src/Common/LinuxKernel.vala:1032 +#: src/Common/LinuxKernel.vala:1037 msgid "Not uninstalling the currently running kernel" msgstr "Не видалення поточного запущеного ядра" -#: src/Common/LinuxKernel.vala:1037 +#: src/Common/LinuxKernel.vala:1042 msgid "is locked" msgstr "заблоковано" -#: src/Common/LinuxKernel.vala:1049 +#: src/Common/LinuxKernel.vala:1050 msgid "found" msgstr "знайдено" -#: src/Common/LinuxKernel.vala:1053 +#: src/Common/LinuxKernel.vala:1054 msgid "Uninstall: no uninstallable packages found" msgstr "Видалити: пакетів, які можна видалити, не знайдено" -#: src/Common/LinuxKernel.vala:1085 +#: src/Common/LinuxKernel.vala:1090 msgid "is the highest installed version." msgstr "є найвищою встановленою версією." -#: src/Common/LinuxKernel.vala:1102 +#: src/Common/LinuxKernel.vala:1103 msgid "Could not find running kernel in list" msgstr "Не вдалося знайти запущене ядро у списку!" -#: src/Common/LinuxKernel.vala:1107 +#: src/Common/LinuxKernel.vala:1108 msgid "Could not find any kernels to uninstall" msgstr "Не вдалося знайти жодне ядро для вилучення" -#: src/Common/LinuxKernel.vala:1115 +#: src/Common/LinuxKernel.vala:1116 msgid "The following kernels will be uninstalled" msgstr "Наступні ядра будуть видалені" -#: src/Common/LinuxKernel.vala:1119 +#: src/Common/LinuxKernel.vala:1120 msgid "Continue ?" msgstr "Продовжувати ?" -#: src/Common/LinuxKernel.vala:1141 src/Console/AppConsole.vala:208 +#: src/Common/LinuxKernel.vala:1142 src/Console/AppConsole.vala:208 msgid "Latest update" msgstr "Останнє оновлення" -#: src/Common/LinuxKernel.vala:1152 src/Console/AppConsole.vala:215 +#: src/Common/LinuxKernel.vala:1153 src/Console/AppConsole.vala:215 msgid "Latest point update" msgstr "Остання точка оновлення" -#: src/Common/LinuxKernel.vala:1160 src/Console/AppConsole.vala:220 +#: src/Common/LinuxKernel.vala:1161 src/Console/AppConsole.vala:220 #: src/Console/AppConsole.vala:240 msgid "No updates found" msgstr "Оновлень не знайдено" -#: src/Common/LinuxKernel.vala:1169 +#: src/Common/LinuxKernel.vala:1170 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Встановити Ядро Версії %s ? (так/ні): " -#: src/Common/Main.vala:346 +#: src/Common/Main.vala:354 msgid "Called from" msgstr "Викликано з" -#: src/Common/Main.vala:346 +#: src/Common/Main.vala:354 msgid "at logon" msgstr "при запуску" -#: src/Common/Main.vala:347 +#: src/Common/Main.vala:355 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" "Цей файл перезаписується та виконується знову під час збереження налаштувань" -#: src/Common/Main.vala:379 +#: src/Common/Main.vala:387 msgid "Notifications are disabled" msgstr "Повідомлення вимкнено" @@ -215,7 +215,7 @@ msgstr "Повідомлення вимкнено" msgid "File not found: %s" msgstr "Файл не знайдено: %s" -#: src/Console/AppConsole.vala:39 src/Gtk/AppGtk.vala:77 +#: src/Console/AppConsole.vala:39 src/Gtk/AppGtk.vala:75 msgid "Syntax" msgstr "Синтаксис" @@ -231,7 +231,7 @@ msgstr "Перевірити оновлення ядра" msgid "Check for kernel updates and notify current user" msgstr "Перевірте наявність оновлень ядра та повідомте поточного користувача" -#: src/Console/AppConsole.vala:46 +#: src/Console/AppConsole.vala:45 msgid "List available mainline kernels" msgstr "Список доступних основних ядер" @@ -243,19 +243,19 @@ msgstr "Список встановлених ядер" msgid "Install latest mainline kernel" msgstr "Встановіть останнє основне ядро" -#: src/Console/AppConsole.vala:49- +#: src/Console/AppConsole.vala:48 msgid "Install latest point update in the current major version" msgstr "Установіть останнє оновлення точки в поточній основній версії" -#: src/Console/AppConsole.vala:50 +#: src/Console/AppConsole.vala:49 msgid "Install specified kernels" msgstr "Встановити вказані ядра" -#: src/Console/AppConsole.vala:51 +#: src/Console/AppConsole.vala:50 msgid "Uninstall specified kernels" msgstr "Видалити вказані ядра" -#: src/Console/AppConsole.vala:51 src/Gtk/MainWindow.vala:326 +#: src/Console/AppConsole.vala:51 src/Gtk/MainWindow.vala:334 msgid "Uninstall all but the highest installed version" msgstr "Видаліть усі, крім найвищої встановленої версії" @@ -267,7 +267,7 @@ msgstr "Завантажте конкретні ядра" msgid "Delete cached info about available kernels" msgstr "Видалити кешовану інформацію про доступні ядра" -#: src/Console/AppConsole.vala:55 src/Gtk/AppGtk.vala:79 +#: src/Console/AppConsole.vala:55 src/Gtk/AppGtk.vala:77 msgid "Options" msgstr "Параметри" @@ -300,7 +300,7 @@ msgid "Locked kernels and the currently running kernel are ignored" msgstr "Заблоковані ядра та поточне запущене ядро ігноруються" #: src/Console/AppConsole.vala:139 src/Console/AppConsole.vala:193 -#: src/Gtk/AppGtk.vala:111 +#: src/Gtk/AppGtk.vala:109 msgid "Unknown option" msgstr "Невідомий параметр" @@ -314,11 +314,11 @@ msgstr "Повідомлення вимкнено" msgid "Kernel %s Available" msgstr "Ядро %s Доступне" -#: src/Console/AppConsole.vala:266 src/Gtk/SettingsDialog.vala:154 +#: src/Console/AppConsole.vala:266 src/Gtk/SettingsDialog.vala:151 msgid "Show" msgstr "Показати" -#: src/Console/AppConsole.vala:267 src/Gtk/MainWindow.vala:305 +#: src/Console/AppConsole.vala:267 src/Gtk/MainWindow.vala:313 msgid "Install" msgstr "Встановити" @@ -334,7 +334,7 @@ msgstr "Творці" msgid "Back" msgstr "Назад" -#: src/Gtk/AboutWindow.vala:185 src/Gtk/TerminalWindow.vala:169 +#: src/Gtk/AboutWindow.vala:185 src/Gtk/TerminalWindow.vala:152 msgid "Close" msgstr "Закрити" @@ -362,172 +362,172 @@ msgstr "Документатори" msgid "Third Party Inclusions" msgstr "Включення третіх осіб" -#: src/Gtk/AppGtk.vala:77 +#: src/Gtk/AppGtk.vala:75 msgid "options" msgstr "параметри" -#: src/Gtk/AppGtk.vala:81 +#: src/Gtk/AppGtk.vala:79 msgid "Print debug information" msgstr "Роздрукувати зневадження" -#: src/Gtk/AppGtk.vala:82 +#: src/Gtk/AppGtk.vala:80 msgid "Show all options" msgstr "Показати усі параметри" -#: src/Gtk/MainWindow.vala:152 +#: src/Gtk/MainWindow.vala:160 msgid "Lock" msgstr "Блок" -#: src/Gtk/MainWindow.vala:169 +#: src/Gtk/MainWindow.vala:177 msgid "Status" msgstr "Стан" -#: src/Gtk/MainWindow.vala:181 +#: src/Gtk/MainWindow.vala:189 msgid "Notes" msgstr "Нотатки" -#: src/Gtk/MainWindow.vala:310 +#: src/Gtk/MainWindow.vala:318 msgid "Uninstall" msgstr "Видалити" -#: src/Gtk/MainWindow.vala:316 +#: src/Gtk/MainWindow.vala:324 msgid "Changelog, build status, etc" msgstr "Журнал змін, статус збірки тощо" -#: src/Gtk/MainWindow.vala:325 +#: src/Gtk/MainWindow.vala:333 msgid "Uninstall Old" msgstr "Видалити старе" -#: src/Gtk/MainWindow.vala:331 +#: src/Gtk/MainWindow.vala:339 msgid "Reload" msgstr "Перезавантажити" -#: src/Gtk/MainWindow.vala:332 +#: src/Gtk/MainWindow.vala:340 msgid "Delete and reload all cached kernel info" msgstr "Видаліть і перезавантажте всю кешовану інформацію про ядро" -#: src/Gtk/MainWindow.vala:337 src/Gtk/SettingsDialog.vala:43 +#: src/Gtk/MainWindow.vala:345 src/Gtk/SettingsDialog.vala:41 msgid "Settings" msgstr "Налаштування" -#: src/Gtk/MainWindow.vala:342 +#: src/Gtk/MainWindow.vala:350 msgid "About" msgstr "Про программу" -#: src/Gtk/MainWindow.vala:347 +#: src/Gtk/MainWindow.vala:355 msgid "Exit" msgstr "Вихід" -#: src/Gtk/MainWindow.vala:428 +#: src/Gtk/MainWindow.vala:436 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Програма оновлення ядра для дистрибутивів на базі Ubuntu" -#: src/Gtk/MainWindow.vala:429 +#: src/Gtk/MainWindow.vala:437 msgid "Forked" msgstr "Двоєний" -#: src/Gtk/MainWindow.vala:429 +#: src/Gtk/MainWindow.vala:437 msgid "Original" msgstr "Оригінал" -#: src/Gtk/MainWindow.vala:458 +#: src/Gtk/MainWindow.vala:466 msgid "Updating kernels" msgstr "Оновлення ядер" -#: src/Gtk/MainWindow.vala:518 +#: src/Gtk/MainWindow.vala:526 msgid "available" msgstr "доступний" -#: src/Gtk/MainWindow.vala:560 src/Gtk/MainWindow.vala:591 -#: src/Gtk/MainWindow.vala:616 +#: src/Gtk/MainWindow.vala:568 src/Gtk/MainWindow.vala:599 +#: src/Gtk/MainWindow.vala:624 msgid "DONE" msgstr "ГОТОВО" -#: src/Gtk/SettingsDialog.vala:53 +#: src/Gtk/SettingsDialog.vala:50 msgid "Notification" msgstr "Повідомлення" -#: src/Gtk/SettingsDialog.vala:60 +#: src/Gtk/SettingsDialog.vala:57 msgid "Notify if a major release is available" msgstr "Повідомити, чи доступний великий випуск" -#: src/Gtk/SettingsDialog.vala:68 +#: src/Gtk/SettingsDialog.vala:65 msgid "Notify if a point release is available" msgstr "Повідомити, чи доступний невеликий випуск" -#: src/Gtk/SettingsDialog.vala:76 +#: src/Gtk/SettingsDialog.vala:73 msgid "Seconds interval enabled for debugging" msgstr "Увімкнено інтервал секунд для налагодження" -#: src/Gtk/SettingsDialog.vala:99 +#: src/Gtk/SettingsDialog.vala:96 msgid "Check every" msgstr "Перевіряти кожні" -#: src/Gtk/SettingsDialog.vala:122 +#: src/Gtk/SettingsDialog.vala:119 msgid "Hours" msgstr "годин" -#: src/Gtk/SettingsDialog.vala:124 +#: src/Gtk/SettingsDialog.vala:121 msgid "Days" msgstr "днів" -#: src/Gtk/SettingsDialog.vala:126 +#: src/Gtk/SettingsDialog.vala:123 msgid "Weeks" msgstr "тижнів" -#: src/Gtk/SettingsDialog.vala:129 +#: src/Gtk/SettingsDialog.vala:126 msgid "Seconds" msgstr "секунд" -#: src/Gtk/SettingsDialog.vala:135 +#: src/Gtk/SettingsDialog.vala:132 msgid "Filters" msgstr "Фільтри" -#: src/Gtk/SettingsDialog.vala:143 +#: src/Gtk/SettingsDialog.vala:140 msgid "Hide unstable and RC releases" msgstr "Приховати нестабільні та RC випуски" -#: src/Gtk/SettingsDialog.vala:165 +#: src/Gtk/SettingsDialog.vala:162 msgid "previous major versions ( -1 = all )" msgstr "попередніх основних версій ( -1 = усі )" -#: src/Gtk/SettingsDialog.vala:169 +#: src/Gtk/SettingsDialog.vala:166 msgid "Network" msgstr "Мережа" -#: src/Gtk/SettingsDialog.vala:180 +#: src/Gtk/SettingsDialog.vala:177 msgid "Internet connection timeout in" msgstr "Час очікування підключення до Інтернету в " -#: src/Gtk/SettingsDialog.vala:192 +#: src/Gtk/SettingsDialog.vala:189 msgid "seconds" msgstr "секунди" -#: src/Gtk/SettingsDialog.vala:199 +#: src/Gtk/SettingsDialog.vala:196 msgid "Max concurrent downloads" msgstr "Максимальна кількість завантажень" -#: src/Gtk/SettingsDialog.vala:212 +#: src/Gtk/SettingsDialog.vala:209 msgid "Verify Checksums with the CHECKSUMS files" msgstr "Перевірка Контрольні суми за допомогою файлів CHECKSUMS" -#: src/Gtk/SettingsDialog.vala:220 +#: src/Gtk/SettingsDialog.vala:217 msgid "Proxy" msgstr "Проксі" -#: src/Gtk/SettingsDialog.vala:252 +#: src/Gtk/SettingsDialog.vala:250 #, fuzzy msgid "Auth Command" msgstr "Команди" -#: src/Gtk/SettingsDialog.vala:273 +#: src/Gtk/SettingsDialog.vala:280 msgid "Done" msgstr "" -#: src/Gtk/TerminalWindow.vala:159 +#: src/Gtk/TerminalWindow.vala:142 msgid "Cancel" msgstr "Відміна" -#: src/lib/l.misc.vala:84 +#: src/lib/l.misc.vala:102 msgid "Can not reach site" msgstr "Не вдається дістатися до сайту" diff --git a/src/Common/LinuxKernel.vala b/src/Common/LinuxKernel.vala index 8b81bc76..0c13534d 100644 --- a/src/Common/LinuxKernel.vala +++ b/src/Common/LinuxKernel.vala @@ -990,7 +990,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { if (!try_ppa()) return 1; - string flist = ""; + string[] flist = {}; foreach (var k in klist) { vprint(_("Requested")+" "+k.version_main); @@ -1009,18 +1009,19 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { continue; } - foreach (string f in k.deb_url_list.keys) flist += " "+k.cache_subdir+"/"+f; + foreach (string f in k.deb_url_list.keys) flist += k.cache_subdir+"/"+f; } - flist = flist.strip(); - if (flist=="") { vprint(_("Install: no installable kernels secified")); return 1; } + if (flist.length==0) { vprint(_("Install: no installable kernels secified")); return 1; } // full paths instead of env -C // https://github.com/bkw777/mainline/issues/128 - string cmd = App.auth_cmd+" dpkg --install " + flist; + string cmd = ""; + foreach (string f in flist) { cmd += " '"+f+"'"; } + cmd = sanitize_auth_cmd(App.auth_cmd).printf("dpkg --install "+cmd); vprint(cmd,2); int r = Posix.system(cmd); - foreach (var f in flist.split(" ")) delete_r(f); + foreach (string f in flist) delete_r(f); return r; } @@ -1052,7 +1053,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { pnames = pnames.strip(); if (pnames=="") { vprint(_("Uninstall: no uninstallable packages found"),1,stderr); return 1; } - string cmd = App.auth_cmd+" dpkg --purge " + pnames; + string cmd = sanitize_auth_cmd(App.auth_cmd).printf("dpkg --purge "+pnames); vprint(cmd,2); return Posix.system(cmd); } diff --git a/src/Common/Main.vala b/src/Common/Main.vala index 6e7df49e..983b6d70 100644 --- a/src/Common/Main.vala +++ b/src/Common/Main.vala @@ -62,7 +62,15 @@ const int DEFAULT_NOTIFY_INTERVAL_VALUE = 4 ; // FIXME const int DEFAULT_NOTIFY_INTERVAL_UNIT = 0 ; // use enum // other const bool DEFAULT_VERIFY_CHECKSUMS = false ; -const string DEFAULT_AUTH_CMD = "pkexec env DISPLAY=${DISPLAY} XAUTHORITY=${XAUTHORITY}"; +const string[] DEFAULT_AUTH_CMDS = { + "pkexec env DISPLAY=${DISPLAY} XAUTHORITY=${XAUTHORITY} %s", + "sudo %s", + "su -c \"%s\"", + "doas %s", + "gksudo %s", + "gksu --su-mode %s", + "pbrun %s" + }; // windows const int DEFAULT_WINDOW_WIDTH = 800 ; @@ -120,7 +128,7 @@ public class Main : GLib.Object { public int notify_interval_unit = DEFAULT_NOTIFY_INTERVAL_UNIT; public int notify_interval_value = DEFAULT_NOTIFY_INTERVAL_VALUE; public bool verify_checksums = DEFAULT_VERIFY_CHECKSUMS; - public string auth_cmd = DEFAULT_AUTH_CMD; + public string auth_cmd = DEFAULT_AUTH_CMDS[0]; // save & restore window size & position public int window_width = DEFAULT_WINDOW_WIDTH; @@ -273,7 +281,7 @@ public class Main : GLib.Object { notify_interval_unit = (int)config.get_int_member_with_default( "notify_interval_unit", DEFAULT_NOTIFY_INTERVAL_UNIT ); notify_interval_value = (int)config.get_int_member_with_default( "notify_interval_value", DEFAULT_NOTIFY_INTERVAL_VALUE ); verify_checksums = config.get_boolean_member_with_default( "verify_checksums", DEFAULT_VERIFY_CHECKSUMS ); - auth_cmd = config.get_string_member_with_default( "auth_cmd", DEFAULT_AUTH_CMD ); + auth_cmd = config.get_string_member_with_default( "auth_cmd", DEFAULT_AUTH_CMDS[0] ); window_width = (int)config.get_int_member_with_default( "window_width", DEFAULT_WINDOW_WIDTH ); window_height = (int)config.get_int_member_with_default( "window_height", DEFAULT_WINDOW_HEIGHT ); window_x = (int)config.get_int_member_with_default( "window_x", DEFAULT_WINDOW_X ); @@ -295,7 +303,7 @@ public class Main : GLib.Object { notify_interval_unit = json_get_int( config, "notify_interval_unit", DEFAULT_NOTIFY_INTERVAL_UNIT ); notify_interval_value = json_get_int( config, "notify_interval_value", DEFAULT_NOTIFY_INTERVAL_VALUE ); verify_checksums = json_get_bool( config, "verify_checksums", DEFAULT_VERIFY_CHECKSUMS ); - auth_cmd = json_get_string( config, "auth_cmd", DEFAULT_AUTH_CMD ); + auth_cmd = json_get_string( config, "auth_cmd", DEFAULT_AUTH_CMDS[0] ); window_width = json_get_int( config, "window_width", DEFAULT_WINDOW_WIDTH ); window_height = json_get_int( config, "window_height", DEFAULT_WINDOW_HEIGHT ); window_x = json_get_int( config, "window_x", DEFAULT_WINDOW_X ); diff --git a/src/Gtk/AppGtk.vala b/src/Gtk/AppGtk.vala index f4325cef..79426eaa 100644 --- a/src/Gtk/AppGtk.vala +++ b/src/Gtk/AppGtk.vala @@ -30,23 +30,21 @@ public Main App; public class AppGtk : GLib.Object { public static int main (string[] args) { + X.init_threads(); Gtk.init(ref args); App = new Main(args, true); parse_arguments(args); + App._window_width = App.window_width; + App._window_height = App.window_height; + App._window_x = App.window_x; + App._window_y = App.window_y; + // create main window -------------------------------------- var appwin = new MainWindow(); - appwin.destroy.connect (Gtk.main_quit); - - appwin.configure_event.connect ((event) => { - App.window_width = event.width; - App.window_height = event.height; - App.window_x = event.x; - App.window_y = event.y; - return false; - }); + appwin.destroy.connect(Gtk.main_quit); appwin.show_all(); diff --git a/src/Gtk/MainWindow.vala b/src/Gtk/MainWindow.vala index 55380b63..8ea5d5bc 100644 --- a/src/Gtk/MainWindow.vala +++ b/src/Gtk/MainWindow.vala @@ -62,6 +62,16 @@ public class MainWindow : Window { } public MainWindow() { + set_default_size(App.window_width,App.window_height); + if (App.window_x>=0 && App.window_y>=0) move(App.window_x,App.window_y); + + configure_event.connect ((event) => { + App.window_width = event.width; + App.window_height = event.height; + App.window_x = event.x; + App.window_y = event.y; + return false; + }); title = BRANDING_LONGNAME; icon = get_app_icon(16); @@ -69,9 +79,7 @@ public class MainWindow : Window { // vbox_main vbox_main = new Box(Orientation.VERTICAL, 6); vbox_main.margin = 6; - vbox_main.set_size_request(App._window_width,App._window_height); - App._window_width = App.window_width; - App._window_height = App.window_height; + add(vbox_main); selected_kernels = new Gee.ArrayList(); diff --git a/src/Gtk/SettingsDialog.vala b/src/Gtk/SettingsDialog.vala index e198a710..6ee92a31 100644 --- a/src/Gtk/SettingsDialog.vala +++ b/src/Gtk/SettingsDialog.vala @@ -35,8 +35,6 @@ public class SettingsDialog : Gtk.Dialog { set_transient_for(parent); set_modal(true); window_position = Gtk.WindowPosition.CENTER_ON_PARENT; - //deletable = true; - //resizable = true; icon = get_app_icon(16); @@ -46,7 +44,6 @@ public class SettingsDialog : Gtk.Dialog { var vbox_main = get_content_area(); vbox_main.spacing = 6; vbox_main.margin = 12; - //vbox_main.margin_bottom = 12; vbox_main.set_size_request(700,500); // notification @@ -249,6 +246,7 @@ public class SettingsDialog : Gtk.Dialog { }); // auth command + label = new Gtk.Label(""+_("Auth Command")+""); label.set_use_markup(true); label.xalign = (float) 0.0; @@ -257,16 +255,25 @@ public class SettingsDialog : Gtk.Dialog { label.margin_bottom = 6; vbox_main.add (label); - var authcmd = new Gtk.Entry (); - authcmd.set_text(App.auth_cmd); - authcmd.margin_start = 6; - vbox_main.add(authcmd); - authcmd.activate.connect(()=>{ - App.auth_cmd = authcmd.get_text().strip(); - if (App.auth_cmd=="") { - App.auth_cmd = DEFAULT_AUTH_CMD; - authcmd.set_text(App.auth_cmd); - } + var acbt = new Gtk.ComboBoxText.with_entry(); + acbt.margin_start = 6; + acbt.active = -1; + for (int i=0;i { + //int i = acbt.active; + string s = acbt.get_active_text().strip(); + if (s != App.auth_cmd) App.auth_cmd = s; + //vprint("Auth Command: %d: %s".printf(i,s),3); }); // ok button diff --git a/src/Gtk/TerminalWindow.vala b/src/Gtk/TerminalWindow.vala index 1a33b64b..d9db11bb 100644 --- a/src/Gtk/TerminalWindow.vala +++ b/src/Gtk/TerminalWindow.vala @@ -19,13 +19,8 @@ * MA 02110-1301, USA. */ -using Gtk; -using Gee; - -using TeeJee.FileSystem; using TeeJee.ProcessHelper; using l.gtk; -using TeeJee.Misc; using l.misc; public class TerminalWindow : Gtk.Window { @@ -36,9 +31,6 @@ public class TerminalWindow : Gtk.Window { private Gtk.Button btn_close; private Gtk.ScrolledWindow scroll_win; - //private int def_width = 1100; - //private int def_height = 600; - private Pid child_pid; private Gtk.Window parent_win = null; @@ -53,17 +45,11 @@ public class TerminalWindow : Gtk.Window { if (parent != null) { set_transient_for(parent); parent_win = parent; - window_position = WindowPosition.CENTER_ON_PARENT; + window_position = Gtk.WindowPosition.CENTER_ON_PARENT; } - configure_event.connect ((event) => { - //vprint("term resize: %dx%d@%dx%d".printf(event.width,event.height,event.x,event.y),2); - App.term_width = event.width; - App.term_height = event.height; - App.term_x = event.x; - App.term_y = event.y; - return false; - }); + set_default_size(App.term_width,App.term_height); + if (App.term_x>=0 && App.term_y>=0) move(App.term_x,App.term_y); delete_event.connect(cancel_window_close); @@ -75,9 +61,6 @@ public class TerminalWindow : Gtk.Window { show_all(); - resize(App.term_width,App.term_height); - if (App.term_x>=0 && App.term_y>=0) move(App.term_x,App.term_y); - btn_cancel.visible = false; btn_close.visible = false; @@ -91,6 +74,11 @@ public class TerminalWindow : Gtk.Window { public void init_window () { + App._term_width = App.term_width; + App._term_height = App.term_height; + App._term_x = App.term_x; + App._term_y = App.term_y; + title = BRANDING_LONGNAME; icon = get_app_icon(16); resizable = true; @@ -98,46 +86,41 @@ public class TerminalWindow : Gtk.Window { // vbox_main --------------- - vbox_main = new Gtk.Box(Orientation.VERTICAL, 0); - //vbox_main.set_size_request(def_width,def_height); - App._term_width = App.term_width; - App._term_height = App.term_height; - App._term_x = App.term_x; - App._term_y = App.term_y; + vbox_main = new Gtk.Box(Gtk.Orientation.VERTICAL, 0); add (vbox_main); // terminal ---------------------- term = new Vte.Terminal(); + term.expand = true; // sw_ppa scroll_win = new Gtk.ScrolledWindow(null, null); - scroll_win.set_shadow_type (ShadowType.ETCHED_IN); + scroll_win.set_shadow_type (Gtk.ShadowType.ETCHED_IN); scroll_win.add (term); scroll_win.expand = true; - scroll_win.hscrollbar_policy = PolicyType.AUTOMATIC; - scroll_win.vscrollbar_policy = PolicyType.AUTOMATIC; + scroll_win.hscrollbar_policy = Gtk.PolicyType.AUTOMATIC; + scroll_win.vscrollbar_policy = Gtk.PolicyType.AUTOMATIC; vbox_main.add(scroll_win); term.input_enabled = true; term.backspace_binding = Vte.EraseBinding.AUTO; term.cursor_blink_mode = Vte.CursorBlinkMode.SYSTEM; term.cursor_shape = Vte.CursorShape.UNDERLINE; - + term.scroll_on_keystroke = true; term.scroll_on_output = true; term.scrollback_lines = 100000; // colors ----------------------------- - - var color = Gdk.RGBA(); - color.parse("#FFFFFF"); - term.set_color_foreground(color); - - color.parse("#404040"); - term.set_color_background(color); + // why override the users desktop preference? + //var color = Gdk.RGBA(); + //color.parse("#FFFFFF"); + //term.set_color_foreground(color); + //color.parse("#404040"); + //term.set_color_background(color); // grab focus ---------------- @@ -145,7 +128,7 @@ public class TerminalWindow : Gtk.Window { // add cancel button -------------- - var hbox = new Gtk.Box(Orientation.HORIZONTAL, 6); + var hbox = new Gtk.Box(Gtk.Orientation.HORIZONTAL, 6); hbox.homogeneous = true; vbox_main.add (hbox); @@ -155,7 +138,7 @@ public class TerminalWindow : Gtk.Window { label = new Gtk.Label(""); hbox.pack_start (label, true, true, 0); - //btn_cancel + // btn_cancel var button = new Gtk.Button.with_label (_("Cancel")); hbox.pack_start (button, true, true, 0); btn_cancel = button; @@ -165,13 +148,15 @@ public class TerminalWindow : Gtk.Window { terminate_child(); }); - //btn_close + // btn_close button = new Gtk.Button.with_label (_("Close")); hbox.pack_start (button, true, true, 0); btn_close = button; btn_close.clicked.connect(()=>{ - this.destroy(); + get_size(out App.term_width, out App.term_height); + get_position(out App.term_x, out App.term_y); + destroy(); }); label = new Gtk.Label(""); @@ -179,6 +164,7 @@ public class TerminalWindow : Gtk.Window { label = new Gtk.Label(""); hbox.pack_start (label, true, true, 0); + } public void terminate_child() { @@ -224,11 +210,11 @@ public class TerminalWindow : Gtk.Window { public void allow_window_close(bool allow = true) { if (allow) { - this.delete_event.disconnect(cancel_window_close); - this.deletable = true; + delete_event.disconnect(cancel_window_close); + deletable = true; } else { - this.delete_event.connect(cancel_window_close); - this.deletable = false; + delete_event.connect(cancel_window_close); + deletable = false; } } diff --git a/src/lib/l.misc.vala b/src/lib/l.misc.vala index 5a9ce1b0..36dd0abb 100644 --- a/src/lib/l.misc.vala +++ b/src/lib/l.misc.vala @@ -23,6 +23,24 @@ namespace l.misc { catch (Error e) { warning("Unable to launch %s",s); } } + // doesn't really sanitize much, just disables extra printf + // formatting codes, more for crashing than security + // Find the first "%s" that isn't "%%s" if any. + // replace all other % with %% + public string sanitize_auth_cmd(string s) { + int p = 0; + while (p>=0 && p=0) a = a.replace("%","%%"); + string b = ""; if (p<0 || p>s.length-2) a += " "; + else { b = s.substring(p+2); if (b.index_of("%")>=0) b = b.replace("%","%%"); } + return a + "%s" + b; + } + private static void pbar(int64 part=0,int64 whole=100,string units="") { if (Main.VERBOSE<1) return; int l = 79; // bar length From ba6e23ccb248e961db274e2079b9338b424f3dd5 Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Sun, 4 Jun 2023 11:44:39 -0400 Subject: [PATCH 355/567] 1.3.9 --- .deb_build_number.mak | 4 ++-- debian/changelog | 6 ++++++ 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/.deb_build_number.mak b/.deb_build_number.mak index 4575ad28..9330b49a 100644 --- a/.deb_build_number.mak +++ b/.deb_build_number.mak @@ -1,3 +1,3 @@ # This file is generated by Makefile "make deb_build_number" -DEB_PKG_VERSION := 1.3.8 -DEB_BUILD_NUMBER := 0003 +DEB_PKG_VERSION := 1.3.9 +DEB_BUILD_NUMBER := 0000 diff --git a/debian/changelog b/debian/changelog index 9b3c5321..aafb1e2d 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +mainline (1.3.9) unstable; urgency=medium + + * More auth commands + + -- Brian K. White Sun, 04 Jun 2023 11:42:01 -0400 + mainline (1.3.8) unstable; urgency=medium * Configurable auth command, so you can use sudo or gksudo etc instead of pkexec. From a7daf45eab8b301f722ca9de51d1eba65ee817d4 Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Sun, 4 Jun 2023 18:58:37 -0400 Subject: [PATCH 356/567] simpler auth cmds --- po/de.po | 6 +++--- po/el.po | 6 +++--- po/es.po | 6 +++--- po/fr.po | 6 +++--- po/hr.po | 6 +++--- po/it.po | 6 +++--- po/ko.po | 6 +++--- po/messages.pot | 8 ++++---- po/nl.po | 6 +++--- po/pl.po | 6 +++--- po/ru.po | 6 +++--- po/sv.po | 6 +++--- po/tr.po | 6 +++--- po/uk.po | 6 +++--- src/Common/Main.vala | 12 ++++++------ src/Gtk/MainWindow.vala | 18 +++++++++--------- src/Gtk/SettingsDialog.vala | 2 -- src/lib/l.misc.vala | 23 ++++++++++++++--------- 18 files changed, 72 insertions(+), 69 deletions(-) diff --git a/po/de.po b/po/de.po index b937ccba..5092ff26 100644 --- a/po/de.po +++ b/po/de.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-04 08:48-0400\n" +"POT-Creation-Date: 2023-06-04 18:30-0400\n" "PO-Revision-Date: 2023-02-20 18:40+0100\n" "Last-Translator: Marvin Meysel \n" "Language-Team: German\n" @@ -534,7 +534,7 @@ msgstr "Stellvertreter" msgid "Auth Command" msgstr "Befehle" -#: src/Gtk/SettingsDialog.vala:280 +#: src/Gtk/SettingsDialog.vala:278 msgid "Done" msgstr "" @@ -542,6 +542,6 @@ msgstr "" msgid "Cancel" msgstr "Abbrechen" -#: src/lib/l.misc.vala:102 +#: src/lib/l.misc.vala:107 msgid "Can not reach site" msgstr "Fehler beim lesen der Datei" diff --git a/po/el.po b/po/el.po index 481abd13..22af8d2e 100644 --- a/po/el.po +++ b/po/el.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-04 08:48-0400\n" +"POT-Creation-Date: 2023-06-04 18:30-0400\n" "PO-Revision-Date: 2023-01-10 02:03-0600\n" "Last-Translator: Vasilis Kosmidis \n" "Language-Team: Greek\n" @@ -535,7 +535,7 @@ msgstr "Διακομιστής" msgid "Auth Command" msgstr "Εντολές" -#: src/Gtk/SettingsDialog.vala:280 +#: src/Gtk/SettingsDialog.vala:278 msgid "Done" msgstr "" @@ -543,6 +543,6 @@ msgstr "" msgid "Cancel" msgstr "Άκυρο" -#: src/lib/l.misc.vala:102 +#: src/lib/l.misc.vala:107 msgid "Can not reach site" msgstr "Αποτυχία ανάγνωσης του αρχείου" diff --git a/po/es.po b/po/es.po index 3a95bc9a..0c3de195 100644 --- a/po/es.po +++ b/po/es.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-04 08:48-0400\n" +"POT-Creation-Date: 2023-06-04 18:30-0400\n" "PO-Revision-Date: 2018-01-03 02:03-0600\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish\n" @@ -535,7 +535,7 @@ msgstr "Proxy" msgid "Auth Command" msgstr "Comandos" -#: src/Gtk/SettingsDialog.vala:280 +#: src/Gtk/SettingsDialog.vala:278 msgid "Done" msgstr "" @@ -543,6 +543,6 @@ msgstr "" msgid "Cancel" msgstr "Cancelar" -#: src/lib/l.misc.vala:102 +#: src/lib/l.misc.vala:107 msgid "Can not reach site" msgstr "No se puede llegar al sitio" diff --git a/po/fr.po b/po/fr.po index 33b78ba7..27ab2661 100644 --- a/po/fr.po +++ b/po/fr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-04 08:48-0400\n" +"POT-Creation-Date: 2023-06-04 18:30-0400\n" "PO-Revision-Date: 2018-08-05 15:50+0200\n" "Last-Translator: Yolateng0 \n" "Language-Team: French\n" @@ -536,7 +536,7 @@ msgstr "Proxy" msgid "Auth Command" msgstr "Commandes" -#: src/Gtk/SettingsDialog.vala:280 +#: src/Gtk/SettingsDialog.vala:278 msgid "Done" msgstr "" @@ -544,6 +544,6 @@ msgstr "" msgid "Cancel" msgstr "Annuler" -#: src/lib/l.misc.vala:102 +#: src/lib/l.misc.vala:107 msgid "Can not reach site" msgstr "No se puede llegar al sitio" diff --git a/po/hr.po b/po/hr.po index aa0a1bfe..4411db85 100644 --- a/po/hr.po +++ b/po/hr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-04 08:48-0400\n" +"POT-Creation-Date: 2023-06-04 18:30-0400\n" "PO-Revision-Date: 2022-09-22 12:13+0200\n" "Last-Translator: gogo \n" "Language-Team: Croatian\n" @@ -533,7 +533,7 @@ msgstr "Proxy" msgid "Auth Command" msgstr "Naredbe" -#: src/Gtk/SettingsDialog.vala:280 +#: src/Gtk/SettingsDialog.vala:278 msgid "Done" msgstr "" @@ -541,6 +541,6 @@ msgstr "" msgid "Cancel" msgstr "Odustani" -#: src/lib/l.misc.vala:102 +#: src/lib/l.misc.vala:107 msgid "Can not reach site" msgstr "Nije moguće doći do web-mjesta" diff --git a/po/it.po b/po/it.po index aeff8a3a..b943215d 100644 --- a/po/it.po +++ b/po/it.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-04 08:48-0400\n" +"POT-Creation-Date: 2023-06-04 18:30-0400\n" "PO-Revision-Date: 2020-08-22 15:35+0100\n" "Last-Translator: Demetrio Mendozzi\n" "Language-Team: Italian\n" @@ -534,7 +534,7 @@ msgstr "Proxy" msgid "Auth Command" msgstr "Comandi" -#: src/Gtk/SettingsDialog.vala:280 +#: src/Gtk/SettingsDialog.vala:278 msgid "Done" msgstr "" @@ -542,6 +542,6 @@ msgstr "" msgid "Cancel" msgstr "Cancella" -#: src/lib/l.misc.vala:102 +#: src/lib/l.misc.vala:107 msgid "Can not reach site" msgstr "Impossibile raggiungere il sito" diff --git a/po/ko.po b/po/ko.po index 901ef49f..a4966aa3 100644 --- a/po/ko.po +++ b/po/ko.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-04 08:48-0400\n" +"POT-Creation-Date: 2023-06-04 18:30-0400\n" "PO-Revision-Date: 2022-09-28 11:48+0900\n" "Last-Translator: Kevin Kim \n" "Language-Team: Korean\n" @@ -532,7 +532,7 @@ msgstr "대리" msgid "Auth Command" msgstr "명령어" -#: src/Gtk/SettingsDialog.vala:280 +#: src/Gtk/SettingsDialog.vala:278 msgid "Done" msgstr "" @@ -540,6 +540,6 @@ msgstr "" msgid "Cancel" msgstr "취소" -#: src/lib/l.misc.vala:102 +#: src/lib/l.misc.vala:107 msgid "Can not reach site" msgstr "사이트에 도달 할 수 없습니다" diff --git a/po/messages.pot b/po/messages.pot index a46c5d36..8e3c4590 100644 --- a/po/messages.pot +++ b/po/messages.pot @@ -6,9 +6,9 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: mainline 1.3.8\n" +"Project-Id-Version: mainline 1.3.9\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-04 11:26-0400\n" +"POT-Creation-Date: 2023-06-04 18:36-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -521,7 +521,7 @@ msgstr "" msgid "Auth Command" msgstr "" -#: src/Gtk/SettingsDialog.vala:280 +#: src/Gtk/SettingsDialog.vala:278 msgid "Done" msgstr "" @@ -529,6 +529,6 @@ msgstr "" msgid "Cancel" msgstr "" -#: src/lib/l.misc.vala:102 +#: src/lib/l.misc.vala:107 msgid "Can not reach site" msgstr "" diff --git a/po/nl.po b/po/nl.po index 1177aebf..ce0af43e 100644 --- a/po/nl.po +++ b/po/nl.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-04 08:48-0400\n" +"POT-Creation-Date: 2023-06-04 18:30-0400\n" "PO-Revision-Date: 2020-08-23 13:55+0200\n" "Last-Translator: Heimen Stoffels \n" "Language-Team: Dutch (Netherlands)\n" @@ -534,7 +534,7 @@ msgstr "Proxy" msgid "Auth Command" msgstr "Opdrachten" -#: src/Gtk/SettingsDialog.vala:280 +#: src/Gtk/SettingsDialog.vala:278 msgid "Done" msgstr "" @@ -542,6 +542,6 @@ msgstr "" msgid "Cancel" msgstr "Annuleren" -#: src/lib/l.misc.vala:102 +#: src/lib/l.misc.vala:107 msgid "Can not reach site" msgstr "Kan de site niet bereiken" diff --git a/po/pl.po b/po/pl.po index c9e4648f..8a60e1a3 100644 --- a/po/pl.po +++ b/po/pl.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-04 08:48-0400\n" +"POT-Creation-Date: 2023-06-04 18:30-0400\n" "PO-Revision-Date: 2023-06-03 14:24+0200\n" "Last-Translator: Matthaiks\n" "Language-Team: Polish\n" @@ -522,7 +522,7 @@ msgstr "Serwer pośredniczący" msgid "Auth Command" msgstr "Polecenia" -#: src/Gtk/SettingsDialog.vala:280 +#: src/Gtk/SettingsDialog.vala:278 msgid "Done" msgstr "Gotowe" @@ -530,6 +530,6 @@ msgstr "Gotowe" msgid "Cancel" msgstr "Anuluj" -#: src/lib/l.misc.vala:102 +#: src/lib/l.misc.vala:107 msgid "Can not reach site" msgstr "Nie można dotrzeć do witryny" diff --git a/po/ru.po b/po/ru.po index edeaaaef..9ebef8f6 100644 --- a/po/ru.po +++ b/po/ru.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-04 08:48-0400\n" +"POT-Creation-Date: 2023-06-04 18:30-0400\n" "PO-Revision-Date: 2023-04-17 20:16+0300\n" "Last-Translator: Danik2343 \n" "Language-Team: Russian\n" @@ -533,7 +533,7 @@ msgstr "Доверенность" msgid "Auth Command" msgstr "Комманды" -#: src/Gtk/SettingsDialog.vala:280 +#: src/Gtk/SettingsDialog.vala:278 msgid "Done" msgstr "" @@ -541,6 +541,6 @@ msgstr "" msgid "Cancel" msgstr "Отмена" -#: src/lib/l.misc.vala:102 +#: src/lib/l.misc.vala:107 msgid "Can not reach site" msgstr "Не удается связаться с сайтом" diff --git a/po/sv.po b/po/sv.po index f5b604bb..312eb60a 100644 --- a/po/sv.po +++ b/po/sv.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-04 08:48-0400\n" +"POT-Creation-Date: 2023-06-04 18:30-0400\n" "PO-Revision-Date: 2018-01-13 16:56+0100\n" "Last-Translator: Åke Engelbrektson \n" "Language-Team:Swedish\n" @@ -532,7 +532,7 @@ msgstr "Proxyserver" msgid "Auth Command" msgstr "Kommandon" -#: src/Gtk/SettingsDialog.vala:280 +#: src/Gtk/SettingsDialog.vala:278 msgid "Done" msgstr "" @@ -540,6 +540,6 @@ msgstr "" msgid "Cancel" msgstr "Avbryt" -#: src/lib/l.misc.vala:102 +#: src/lib/l.misc.vala:107 msgid "Can not reach site" msgstr "Kan inte nå webbplatsen" diff --git a/po/tr.po b/po/tr.po index 76bdabd5..2dfdacea 100644 --- a/po/tr.po +++ b/po/tr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-04 08:48-0400\n" +"POT-Creation-Date: 2023-06-04 18:30-0400\n" "PO-Revision-Date: 2022-08-06 16:48+0300\n" "Last-Translator: Sabri Ünal \n" "Language-Team: Turkish\n" @@ -534,7 +534,7 @@ msgstr "Proxy" msgid "Auth Command" msgstr "Komutlar" -#: src/Gtk/SettingsDialog.vala:280 +#: src/Gtk/SettingsDialog.vala:278 msgid "Done" msgstr "" @@ -542,6 +542,6 @@ msgstr "" msgid "Cancel" msgstr "İptal Et" -#: src/lib/l.misc.vala:102 +#: src/lib/l.misc.vala:107 msgid "Can not reach site" msgstr "Siteye ulaşılamıyor" diff --git a/po/uk.po b/po/uk.po index 74dfa4de..0d3ef6a8 100644 --- a/po/uk.po +++ b/po/uk.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-04 08:48-0400\n" +"POT-Creation-Date: 2023-06-04 18:30-0400\n" "PO-Revision-Date: 2019-07-25 11:00+0300\n" "Last-Translator: Serhii Golovko \n" "Language-Team: Ukranian\n" @@ -520,7 +520,7 @@ msgstr "Проксі" msgid "Auth Command" msgstr "Команди" -#: src/Gtk/SettingsDialog.vala:280 +#: src/Gtk/SettingsDialog.vala:278 msgid "Done" msgstr "" @@ -528,6 +528,6 @@ msgstr "" msgid "Cancel" msgstr "Відміна" -#: src/lib/l.misc.vala:102 +#: src/lib/l.misc.vala:107 msgid "Can not reach site" msgstr "Не вдається дістатися до сайту" diff --git a/src/Common/Main.vala b/src/Common/Main.vala index 983b6d70..ae3d28f5 100644 --- a/src/Common/Main.vala +++ b/src/Common/Main.vala @@ -63,13 +63,13 @@ const int DEFAULT_NOTIFY_INTERVAL_UNIT = 0 ; // use enum // other const bool DEFAULT_VERIFY_CHECKSUMS = false ; const string[] DEFAULT_AUTH_CMDS = { - "pkexec env DISPLAY=${DISPLAY} XAUTHORITY=${XAUTHORITY} %s", - "sudo %s", + "pkexec env DISPLAY=${DISPLAY} XAUTHORITY=${XAUTHORITY}", + "sudo", "su -c \"%s\"", - "doas %s", - "gksudo %s", - "gksu --su-mode %s", - "pbrun %s" + "doas", + "gksudo", + "gksu --su-mode", + "pbrun" }; // windows diff --git a/src/Gtk/MainWindow.vala b/src/Gtk/MainWindow.vala index 8ea5d5bc..56636ed7 100644 --- a/src/Gtk/MainWindow.vala +++ b/src/Gtk/MainWindow.vala @@ -359,8 +359,10 @@ public class MainWindow : Window { } private void do_settings () { + // settings that change the selection set -> trigger cache update var old_previous_majors = App.previous_majors; var old_hide_unstable = App.hide_unstable; + // settings that change the notification behavior -> trigger notify script update var old_notify_interval_unit = App.notify_interval_unit; var old_notify_interval_value = App.notify_interval_value; var old_notify_major = App.notify_major; @@ -372,23 +374,21 @@ public class MainWindow : Window { App.save_app_config(); - // if no notifications settings changed, don't (re)run the script + // By default the notify script will be flagged to (re)run itself + // simply because settings were saved at all. It is not run immediately, + // only flagged to be run at the end of cache update. + + // If no notifications settings changed, un-flag the notify script update. if (App.notify_interval_unit == old_notify_interval_unit && App.notify_interval_value == old_notify_interval_value && App.notify_major == old_notify_major && App.notify_minor == old_notify_minor) App.RUN_NOTIFY_SCRIPT = false; - // if the selection set didn't change, - // then don't trigger cache update - // do run the notify script now - // if the selection set changed - // don't run the notify script now - // update the cache - // the notify script will run if needed at the end of cache update + // If the selection set didn't change, then don't update cache. + // If we don't update cache, then we have to do the notify script now. if (App.previous_majors == old_previous_majors && App.hide_unstable == old_hide_unstable) App.run_notify_script(); else update_cache(); - } private void do_about () { diff --git a/src/Gtk/SettingsDialog.vala b/src/Gtk/SettingsDialog.vala index 6ee92a31..51834a78 100644 --- a/src/Gtk/SettingsDialog.vala +++ b/src/Gtk/SettingsDialog.vala @@ -270,10 +270,8 @@ public class SettingsDialog : Gtk.Dialog { } vbox_main.add(acbt); acbt.changed.connect (() => { - //int i = acbt.active; string s = acbt.get_active_text().strip(); if (s != App.auth_cmd) App.auth_cmd = s; - //vprint("Auth Command: %d: %s".printf(i,s),3); }); // ok button diff --git a/src/lib/l.misc.vala b/src/lib/l.misc.vala index 36dd0abb..3dab3d74 100644 --- a/src/lib/l.misc.vala +++ b/src/lib/l.misc.vala @@ -1,6 +1,6 @@ -namespace l.misc { +// misc lib - //public int VERBOSE = 1; +namespace l.misc { private static void set_locale() { Intl.setlocale(LocaleCategory.MESSAGES,BRANDING_SHORTNAME); @@ -23,20 +23,25 @@ namespace l.misc { catch (Error e) { warning("Unable to launch %s",s); } } - // doesn't really sanitize much, just disables extra printf - // formatting codes, more for crashing than security - // Find the first "%s" that isn't "%%s" if any. - // replace all other % with %% - public string sanitize_auth_cmd(string s) { + // Doesn't really sanitize much, just escapes any %* except + // a single "%s" to reduce the chance of ugly crash from printf. + // + // This is still user-supplied data fed to printf and then to a shell. + // + // Find the first "%s", ignore "%%", replace all other "%" with "%%". + // + // TODO: Working, but maybe there is a less confusing more state-machine way? + public string sanitize_auth_cmd(string cmd) { + string s = cmd.strip(); int p = 0; while (p>=0 && p=0) a = a.replace("%","%%"); - string b = ""; if (p<0 || p>s.length-2) a += " "; + string b = ""; if (p<0 || p>s.length-2) a = a.strip()+" "; else { b = s.substring(p+2); if (b.index_of("%")>=0) b = b.replace("%","%%"); } return a + "%s" + b; } From d44a87559291754b5fea2987b69440daf0ac33ec Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Mon, 5 Jun 2023 00:49:11 -0400 Subject: [PATCH 357/567] clear up a compiler warning --- po/de.po | 74 +++++++++++++++++----------------- po/el.po | 74 +++++++++++++++++----------------- po/es.po | 74 +++++++++++++++++----------------- po/fr.po | 74 +++++++++++++++++----------------- po/hr.po | 74 +++++++++++++++++----------------- po/it.po | 74 +++++++++++++++++----------------- po/ko.po | 74 +++++++++++++++++----------------- po/messages.pot | 72 ++++++++++++++++----------------- po/nl.po | 74 +++++++++++++++++----------------- po/pl.po | 74 +++++++++++++++++----------------- po/ru.po | 74 +++++++++++++++++----------------- po/sv.po | 74 +++++++++++++++++----------------- po/tr.po | 74 +++++++++++++++++----------------- po/uk.po | 74 +++++++++++++++++----------------- src/Gtk/AboutWindow.vala | 69 +++++++++++++------------------ src/Gtk/MainWindow.vala | 1 - src/Gtk/TerminalWindow.vala | 3 +- src/lib/TeeJee.FileSystem.vala | 38 ++++------------- 18 files changed, 555 insertions(+), 590 deletions(-) diff --git a/po/de.po b/po/de.po index 5092ff26..7a1dd68d 100644 --- a/po/de.po +++ b/po/de.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-04 18:30-0400\n" +"POT-Creation-Date: 2023-06-05 00:44-0400\n" "PO-Revision-Date: 2023-02-20 18:40+0100\n" "Last-Translator: Marvin Meysel \n" "Language-Team: German\n" @@ -66,7 +66,7 @@ msgstr "" msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:668 src/Gtk/MainWindow.vala:522 +#: src/Common/LinuxKernel.vala:668 src/Gtk/MainWindow.vala:521 msgid "Running" msgstr "Läuft" @@ -86,7 +86,7 @@ msgstr "Verfügbare Pakete" msgid "Packages Installed" msgstr "Installierte Pakete" -#: src/Common/LinuxKernel.vala:791 src/lib/TeeJee.FileSystem.vala:99 +#: src/Common/LinuxKernel.vala:791 src/lib/TeeJee.FileSystem.vala:94 msgid "File not found" msgstr "Datei nicht gefunden " @@ -94,7 +94,7 @@ msgstr "Datei nicht gefunden " msgid "Available Kernels" msgstr "Verfügbare Kernel" -#: src/Common/LinuxKernel.vala:920 src/Gtk/MainWindow.vala:136 +#: src/Common/LinuxKernel.vala:920 src/Gtk/MainWindow.vala:135 msgid "Kernel" msgstr "Kernel" @@ -267,7 +267,7 @@ msgstr "Deinstallation des angegebenen Kernels" msgid "Uninstall specified kernels" msgstr "Deinstallation des angegebenen Kernels" -#: src/Console/AppConsole.vala:51 src/Gtk/MainWindow.vala:334 +#: src/Console/AppConsole.vala:51 src/Gtk/MainWindow.vala:333 msgid "Uninstall all but the highest installed version" msgstr "Deinstallieren Sie alle bis auf die höchste installierte Version" @@ -332,7 +332,7 @@ msgstr "Kernel %s verfügbar" msgid "Show" msgstr "Zeigen" -#: src/Console/AppConsole.vala:267 src/Gtk/MainWindow.vala:313 +#: src/Console/AppConsole.vala:267 src/Gtk/MainWindow.vala:312 msgid "Install" msgstr "Installieren" @@ -340,39 +340,39 @@ msgstr "Installieren" msgid "Previously notified" msgstr "Zuvor gemeldet" -#: src/Gtk/AboutWindow.vala:162 src/Gtk/AboutWindow.vala:179 +#: src/Gtk/AboutWindow.vala:32 src/Gtk/AboutWindow.vala:170 msgid "Credits" msgstr "Credits" -#: src/Gtk/AboutWindow.vala:175 -msgid "Back" -msgstr "Zurück" - -#: src/Gtk/AboutWindow.vala:185 src/Gtk/TerminalWindow.vala:152 +#: src/Gtk/AboutWindow.vala:33 src/Gtk/TerminalWindow.vala:151 msgid "Close" msgstr "Schließen" -#: src/Gtk/AboutWindow.vala:204 +#: src/Gtk/AboutWindow.vala:166 +msgid "Back" +msgstr "Zurück" + +#: src/Gtk/AboutWindow.vala:193 msgid "Authors" msgstr "Autoren" -#: src/Gtk/AboutWindow.vala:212 +#: src/Gtk/AboutWindow.vala:201 msgid "Contributions" msgstr "Beiträge" -#: src/Gtk/AboutWindow.vala:220 +#: src/Gtk/AboutWindow.vala:209 msgid "Artists" msgstr "Künstler" -#: src/Gtk/AboutWindow.vala:228 +#: src/Gtk/AboutWindow.vala:217 msgid "Translators" msgstr "Übersetzer" -#: src/Gtk/AboutWindow.vala:236 +#: src/Gtk/AboutWindow.vala:225 msgid "Documenters" msgstr "Dokumentierer" -#: src/Gtk/AboutWindow.vala:244 +#: src/Gtk/AboutWindow.vala:233 msgid "Third Party Inclusions" msgstr "Einschlüsse von Drittparteien" @@ -388,72 +388,72 @@ msgstr "Zeige Debug Informationen" msgid "Show all options" msgstr "Alle Optionen anzeigen" -#: src/Gtk/MainWindow.vala:160 +#: src/Gtk/MainWindow.vala:159 msgid "Lock" msgstr "" -#: src/Gtk/MainWindow.vala:177 +#: src/Gtk/MainWindow.vala:176 msgid "Status" msgstr "Status" -#: src/Gtk/MainWindow.vala:189 +#: src/Gtk/MainWindow.vala:188 msgid "Notes" msgstr "Notizen" -#: src/Gtk/MainWindow.vala:318 +#: src/Gtk/MainWindow.vala:317 msgid "Uninstall" msgstr "Deinstallieren" -#: src/Gtk/MainWindow.vala:324 +#: src/Gtk/MainWindow.vala:323 msgid "Changelog, build status, etc" msgstr "" -#: src/Gtk/MainWindow.vala:333 +#: src/Gtk/MainWindow.vala:332 msgid "Uninstall Old" msgstr "Alte deinstallieren" -#: src/Gtk/MainWindow.vala:339 +#: src/Gtk/MainWindow.vala:338 msgid "Reload" msgstr "Nachladen" -#: src/Gtk/MainWindow.vala:340 +#: src/Gtk/MainWindow.vala:339 msgid "Delete and reload all cached kernel info" msgstr "" -#: src/Gtk/MainWindow.vala:345 src/Gtk/SettingsDialog.vala:41 +#: src/Gtk/MainWindow.vala:344 src/Gtk/SettingsDialog.vala:41 msgid "Settings" msgstr "Einstellungen" -#: src/Gtk/MainWindow.vala:350 +#: src/Gtk/MainWindow.vala:349 msgid "About" msgstr "Über" -#: src/Gtk/MainWindow.vala:355 +#: src/Gtk/MainWindow.vala:354 msgid "Exit" msgstr "Ausgang" -#: src/Gtk/MainWindow.vala:436 +#: src/Gtk/MainWindow.vala:435 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Kernel-Upgrade-Dienstprogramm für Ubuntu-basierte Distributionen" -#: src/Gtk/MainWindow.vala:437 +#: src/Gtk/MainWindow.vala:436 msgid "Forked" msgstr "Gegabelte" -#: src/Gtk/MainWindow.vala:437 +#: src/Gtk/MainWindow.vala:436 msgid "Original" msgstr "Original" -#: src/Gtk/MainWindow.vala:466 +#: src/Gtk/MainWindow.vala:465 msgid "Updating kernels" msgstr "Aktualisieren von Kernels" -#: src/Gtk/MainWindow.vala:526 +#: src/Gtk/MainWindow.vala:525 msgid "available" msgstr "Verfügbar" -#: src/Gtk/MainWindow.vala:568 src/Gtk/MainWindow.vala:599 -#: src/Gtk/MainWindow.vala:624 +#: src/Gtk/MainWindow.vala:567 src/Gtk/MainWindow.vala:598 +#: src/Gtk/MainWindow.vala:623 msgid "DONE" msgstr "" @@ -538,7 +538,7 @@ msgstr "Befehle" msgid "Done" msgstr "" -#: src/Gtk/TerminalWindow.vala:142 +#: src/Gtk/TerminalWindow.vala:141 msgid "Cancel" msgstr "Abbrechen" diff --git a/po/el.po b/po/el.po index 22af8d2e..e6448947 100644 --- a/po/el.po +++ b/po/el.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-04 18:30-0400\n" +"POT-Creation-Date: 2023-06-05 00:44-0400\n" "PO-Revision-Date: 2023-01-10 02:03-0600\n" "Last-Translator: Vasilis Kosmidis \n" "Language-Team: Greek\n" @@ -66,7 +66,7 @@ msgstr "" msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:668 src/Gtk/MainWindow.vala:522 +#: src/Common/LinuxKernel.vala:668 src/Gtk/MainWindow.vala:521 msgid "Running" msgstr "Ενεργός" @@ -86,7 +86,7 @@ msgstr "Διαθέσιμα πακέτα" msgid "Packages Installed" msgstr "Εγκατεστημένα πακέτα" -#: src/Common/LinuxKernel.vala:791 src/lib/TeeJee.FileSystem.vala:99 +#: src/Common/LinuxKernel.vala:791 src/lib/TeeJee.FileSystem.vala:94 msgid "File not found" msgstr "Το αρχείο δε βρέθηκε" @@ -94,7 +94,7 @@ msgstr "Το αρχείο δε βρέθηκε" msgid "Available Kernels" msgstr "Διαθέσιμοι πυρήνες" -#: src/Common/LinuxKernel.vala:920 src/Gtk/MainWindow.vala:136 +#: src/Common/LinuxKernel.vala:920 src/Gtk/MainWindow.vala:135 msgid "Kernel" msgstr "Πυρήνας" @@ -267,7 +267,7 @@ msgstr "Απεγκατάσταση του καθορισμένου πυρήνα" msgid "Uninstall specified kernels" msgstr "Απεγκατάσταση του καθορισμένου πυρήνα" -#: src/Console/AppConsole.vala:51 src/Gtk/MainWindow.vala:334 +#: src/Console/AppConsole.vala:51 src/Gtk/MainWindow.vala:333 msgid "Uninstall all but the highest installed version" msgstr "Απεγκαταστήστε όλες εκτός από την υψηλότερη εγκατεστημένη έκδοση" @@ -333,7 +333,7 @@ msgstr "Πυρήνας %s διαθέσιμος" msgid "Show" msgstr "Προβολή" -#: src/Console/AppConsole.vala:267 src/Gtk/MainWindow.vala:313 +#: src/Console/AppConsole.vala:267 src/Gtk/MainWindow.vala:312 msgid "Install" msgstr "Εγκατάσταση" @@ -341,39 +341,39 @@ msgstr "Εγκατάσταση" msgid "Previously notified" msgstr "Έχει ήδη κοινοποιηθεί" -#: src/Gtk/AboutWindow.vala:162 src/Gtk/AboutWindow.vala:179 +#: src/Gtk/AboutWindow.vala:32 src/Gtk/AboutWindow.vala:170 msgid "Credits" msgstr "Μνεία" -#: src/Gtk/AboutWindow.vala:175 -msgid "Back" -msgstr "Πίσω" - -#: src/Gtk/AboutWindow.vala:185 src/Gtk/TerminalWindow.vala:152 +#: src/Gtk/AboutWindow.vala:33 src/Gtk/TerminalWindow.vala:151 msgid "Close" msgstr "Κλείσιμο" -#: src/Gtk/AboutWindow.vala:204 +#: src/Gtk/AboutWindow.vala:166 +msgid "Back" +msgstr "Πίσω" + +#: src/Gtk/AboutWindow.vala:193 msgid "Authors" msgstr "Συγγραφείς" -#: src/Gtk/AboutWindow.vala:212 +#: src/Gtk/AboutWindow.vala:201 msgid "Contributions" msgstr "Συνεισφορές" -#: src/Gtk/AboutWindow.vala:220 +#: src/Gtk/AboutWindow.vala:209 msgid "Artists" msgstr "Καλλιτέχνες" -#: src/Gtk/AboutWindow.vala:228 +#: src/Gtk/AboutWindow.vala:217 msgid "Translators" msgstr "Μεταφραστές" -#: src/Gtk/AboutWindow.vala:236 +#: src/Gtk/AboutWindow.vala:225 msgid "Documenters" msgstr "Τεκμηριωτές" -#: src/Gtk/AboutWindow.vala:244 +#: src/Gtk/AboutWindow.vala:233 msgid "Third Party Inclusions" msgstr "Συμπεριλήψεις τρίτων" @@ -389,72 +389,72 @@ msgstr "Εκτύπωση πληροφοριών εντοπισμού σφαλμ msgid "Show all options" msgstr "Εμφάνιση όλων των επιλογών" -#: src/Gtk/MainWindow.vala:160 +#: src/Gtk/MainWindow.vala:159 msgid "Lock" msgstr "" -#: src/Gtk/MainWindow.vala:177 +#: src/Gtk/MainWindow.vala:176 msgid "Status" msgstr "Κατάσταση" -#: src/Gtk/MainWindow.vala:189 +#: src/Gtk/MainWindow.vala:188 msgid "Notes" msgstr "Σημειώσεις" -#: src/Gtk/MainWindow.vala:318 +#: src/Gtk/MainWindow.vala:317 msgid "Uninstall" msgstr "Απεγκατάσταση" -#: src/Gtk/MainWindow.vala:324 +#: src/Gtk/MainWindow.vala:323 msgid "Changelog, build status, etc" msgstr "" -#: src/Gtk/MainWindow.vala:333 +#: src/Gtk/MainWindow.vala:332 msgid "Uninstall Old" msgstr "Απεγκατάσταση παλαιών" -#: src/Gtk/MainWindow.vala:339 +#: src/Gtk/MainWindow.vala:338 msgid "Reload" msgstr "Δροσίζω" -#: src/Gtk/MainWindow.vala:340 +#: src/Gtk/MainWindow.vala:339 msgid "Delete and reload all cached kernel info" msgstr "" -#: src/Gtk/MainWindow.vala:345 src/Gtk/SettingsDialog.vala:41 +#: src/Gtk/MainWindow.vala:344 src/Gtk/SettingsDialog.vala:41 msgid "Settings" msgstr "Ρυθμίσεις" -#: src/Gtk/MainWindow.vala:350 +#: src/Gtk/MainWindow.vala:349 msgid "About" msgstr "Σχετικά" -#: src/Gtk/MainWindow.vala:355 +#: src/Gtk/MainWindow.vala:354 msgid "Exit" msgstr "Έξοδος" -#: src/Gtk/MainWindow.vala:436 +#: src/Gtk/MainWindow.vala:435 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Πρόγραμμα αναβάθμισης πυρήνα για διανομές που βασίζονται στο Ubuntu" -#: src/Gtk/MainWindow.vala:437 +#: src/Gtk/MainWindow.vala:436 msgid "Forked" msgstr "Forked" -#: src/Gtk/MainWindow.vala:437 +#: src/Gtk/MainWindow.vala:436 msgid "Original" msgstr "Πρωτότυπο" -#: src/Gtk/MainWindow.vala:466 +#: src/Gtk/MainWindow.vala:465 msgid "Updating kernels" msgstr "Ενημέρωση πυρήνων" -#: src/Gtk/MainWindow.vala:526 +#: src/Gtk/MainWindow.vala:525 msgid "available" msgstr "διαθέσιμος" -#: src/Gtk/MainWindow.vala:568 src/Gtk/MainWindow.vala:599 -#: src/Gtk/MainWindow.vala:624 +#: src/Gtk/MainWindow.vala:567 src/Gtk/MainWindow.vala:598 +#: src/Gtk/MainWindow.vala:623 msgid "DONE" msgstr "" @@ -539,7 +539,7 @@ msgstr "Εντολές" msgid "Done" msgstr "" -#: src/Gtk/TerminalWindow.vala:142 +#: src/Gtk/TerminalWindow.vala:141 msgid "Cancel" msgstr "Άκυρο" diff --git a/po/es.po b/po/es.po index 0c3de195..97595fae 100644 --- a/po/es.po +++ b/po/es.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-04 18:30-0400\n" +"POT-Creation-Date: 2023-06-05 00:44-0400\n" "PO-Revision-Date: 2018-01-03 02:03-0600\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish\n" @@ -66,7 +66,7 @@ msgstr "" msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:668 src/Gtk/MainWindow.vala:522 +#: src/Common/LinuxKernel.vala:668 src/Gtk/MainWindow.vala:521 msgid "Running" msgstr "En ejecución" @@ -86,7 +86,7 @@ msgstr "Paquetes disponibles" msgid "Packages Installed" msgstr "Paquetes instalados" -#: src/Common/LinuxKernel.vala:791 src/lib/TeeJee.FileSystem.vala:99 +#: src/Common/LinuxKernel.vala:791 src/lib/TeeJee.FileSystem.vala:94 msgid "File not found" msgstr "No se encontró el archivo" @@ -94,7 +94,7 @@ msgstr "No se encontró el archivo" msgid "Available Kernels" msgstr "Núcleos disponibles" -#: src/Common/LinuxKernel.vala:920 src/Gtk/MainWindow.vala:136 +#: src/Common/LinuxKernel.vala:920 src/Gtk/MainWindow.vala:135 msgid "Kernel" msgstr "Núcleo" @@ -267,7 +267,7 @@ msgstr "Desinstalar el kernel especificado" msgid "Uninstall specified kernels" msgstr "Desinstalar el kernel especificado" -#: src/Console/AppConsole.vala:51 src/Gtk/MainWindow.vala:334 +#: src/Console/AppConsole.vala:51 src/Gtk/MainWindow.vala:333 msgid "Uninstall all but the highest installed version" msgstr "Desinstale todas las versiones instaladas excepto la más alta" @@ -332,7 +332,7 @@ msgstr "Kernel %s Disponible" msgid "Show" msgstr "Mostrar" -#: src/Console/AppConsole.vala:267 src/Gtk/MainWindow.vala:313 +#: src/Console/AppConsole.vala:267 src/Gtk/MainWindow.vala:312 msgid "Install" msgstr "Instalar" @@ -340,39 +340,39 @@ msgstr "Instalar" msgid "Previously notified" msgstr "Notificado previamente" -#: src/Gtk/AboutWindow.vala:162 src/Gtk/AboutWindow.vala:179 +#: src/Gtk/AboutWindow.vala:32 src/Gtk/AboutWindow.vala:170 msgid "Credits" msgstr "Créditos" -#: src/Gtk/AboutWindow.vala:175 -msgid "Back" -msgstr "Atrás" - -#: src/Gtk/AboutWindow.vala:185 src/Gtk/TerminalWindow.vala:152 +#: src/Gtk/AboutWindow.vala:33 src/Gtk/TerminalWindow.vala:151 msgid "Close" msgstr "Cerrar" -#: src/Gtk/AboutWindow.vala:204 +#: src/Gtk/AboutWindow.vala:166 +msgid "Back" +msgstr "Atrás" + +#: src/Gtk/AboutWindow.vala:193 msgid "Authors" msgstr "Autores" -#: src/Gtk/AboutWindow.vala:212 +#: src/Gtk/AboutWindow.vala:201 msgid "Contributions" msgstr "Contribuciones" -#: src/Gtk/AboutWindow.vala:220 +#: src/Gtk/AboutWindow.vala:209 msgid "Artists" msgstr "Artistas" -#: src/Gtk/AboutWindow.vala:228 +#: src/Gtk/AboutWindow.vala:217 msgid "Translators" msgstr "Traductores" -#: src/Gtk/AboutWindow.vala:236 +#: src/Gtk/AboutWindow.vala:225 msgid "Documenters" msgstr "Documentadores" -#: src/Gtk/AboutWindow.vala:244 +#: src/Gtk/AboutWindow.vala:233 msgid "Third Party Inclusions" msgstr "Herramientas de Terceros" @@ -388,73 +388,73 @@ msgstr "Mostrar información de depuración" msgid "Show all options" msgstr "Mostrar todas las opciones" -#: src/Gtk/MainWindow.vala:160 +#: src/Gtk/MainWindow.vala:159 msgid "Lock" msgstr "" -#: src/Gtk/MainWindow.vala:177 +#: src/Gtk/MainWindow.vala:176 msgid "Status" msgstr "Estado" -#: src/Gtk/MainWindow.vala:189 +#: src/Gtk/MainWindow.vala:188 msgid "Notes" msgstr "Notas" -#: src/Gtk/MainWindow.vala:318 +#: src/Gtk/MainWindow.vala:317 msgid "Uninstall" msgstr "Desinstalar" -#: src/Gtk/MainWindow.vala:324 +#: src/Gtk/MainWindow.vala:323 msgid "Changelog, build status, etc" msgstr "" -#: src/Gtk/MainWindow.vala:333 +#: src/Gtk/MainWindow.vala:332 msgid "Uninstall Old" msgstr "Desinstalar Antiguo" -#: src/Gtk/MainWindow.vala:339 +#: src/Gtk/MainWindow.vala:338 msgid "Reload" msgstr "Recargar" -#: src/Gtk/MainWindow.vala:340 +#: src/Gtk/MainWindow.vala:339 msgid "Delete and reload all cached kernel info" msgstr "" -#: src/Gtk/MainWindow.vala:345 src/Gtk/SettingsDialog.vala:41 +#: src/Gtk/MainWindow.vala:344 src/Gtk/SettingsDialog.vala:41 msgid "Settings" msgstr "Configuración" -#: src/Gtk/MainWindow.vala:350 +#: src/Gtk/MainWindow.vala:349 msgid "About" msgstr "Acerca de" -#: src/Gtk/MainWindow.vala:355 +#: src/Gtk/MainWindow.vala:354 msgid "Exit" msgstr "Salida" -#: src/Gtk/MainWindow.vala:436 +#: src/Gtk/MainWindow.vala:435 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "" "Herramienta de renovación de núcleo para distribuciones basadas en Ubuntu" -#: src/Gtk/MainWindow.vala:437 +#: src/Gtk/MainWindow.vala:436 msgid "Forked" msgstr "Bifurcada" -#: src/Gtk/MainWindow.vala:437 +#: src/Gtk/MainWindow.vala:436 msgid "Original" msgstr "Original" -#: src/Gtk/MainWindow.vala:466 +#: src/Gtk/MainWindow.vala:465 msgid "Updating kernels" msgstr "Actualización de kernels" -#: src/Gtk/MainWindow.vala:526 +#: src/Gtk/MainWindow.vala:525 msgid "available" msgstr "disponibles" -#: src/Gtk/MainWindow.vala:568 src/Gtk/MainWindow.vala:599 -#: src/Gtk/MainWindow.vala:624 +#: src/Gtk/MainWindow.vala:567 src/Gtk/MainWindow.vala:598 +#: src/Gtk/MainWindow.vala:623 msgid "DONE" msgstr "" @@ -539,7 +539,7 @@ msgstr "Comandos" msgid "Done" msgstr "" -#: src/Gtk/TerminalWindow.vala:142 +#: src/Gtk/TerminalWindow.vala:141 msgid "Cancel" msgstr "Cancelar" diff --git a/po/fr.po b/po/fr.po index 27ab2661..c2f48ab8 100644 --- a/po/fr.po +++ b/po/fr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-04 18:30-0400\n" +"POT-Creation-Date: 2023-06-05 00:44-0400\n" "PO-Revision-Date: 2018-08-05 15:50+0200\n" "Last-Translator: Yolateng0 \n" "Language-Team: French\n" @@ -66,7 +66,7 @@ msgstr "" msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:668 src/Gtk/MainWindow.vala:522 +#: src/Common/LinuxKernel.vala:668 src/Gtk/MainWindow.vala:521 msgid "Running" msgstr "Actuel" @@ -86,7 +86,7 @@ msgstr "Paquets Disponibles" msgid "Packages Installed" msgstr "Paquets Installés" -#: src/Common/LinuxKernel.vala:791 src/lib/TeeJee.FileSystem.vala:99 +#: src/Common/LinuxKernel.vala:791 src/lib/TeeJee.FileSystem.vala:94 msgid "File not found" msgstr "Fichier non trouvé" @@ -94,7 +94,7 @@ msgstr "Fichier non trouvé" msgid "Available Kernels" msgstr "Noyaux Disponibles" -#: src/Common/LinuxKernel.vala:920 src/Gtk/MainWindow.vala:136 +#: src/Common/LinuxKernel.vala:920 src/Gtk/MainWindow.vala:135 msgid "Kernel" msgstr "Noyau" @@ -267,7 +267,7 @@ msgstr "Désinstaller le noyau spécifié" msgid "Uninstall specified kernels" msgstr "Désinstaller le noyau spécifié" -#: src/Console/AppConsole.vala:51 src/Gtk/MainWindow.vala:334 +#: src/Console/AppConsole.vala:51 src/Gtk/MainWindow.vala:333 msgid "Uninstall all but the highest installed version" msgstr "Désinstallez toutes le version installées, sauf la plus élevée" @@ -332,7 +332,7 @@ msgstr "Paquet %s disponibles" msgid "Show" msgstr "Montrer" -#: src/Console/AppConsole.vala:267 src/Gtk/MainWindow.vala:313 +#: src/Console/AppConsole.vala:267 src/Gtk/MainWindow.vala:312 msgid "Install" msgstr "Installer" @@ -340,39 +340,39 @@ msgstr "Installer" msgid "Previously notified" msgstr "Précédemment notifié" -#: src/Gtk/AboutWindow.vala:162 src/Gtk/AboutWindow.vala:179 +#: src/Gtk/AboutWindow.vala:32 src/Gtk/AboutWindow.vala:170 msgid "Credits" msgstr "Crédits" -#: src/Gtk/AboutWindow.vala:175 -msgid "Back" -msgstr "Retour" - -#: src/Gtk/AboutWindow.vala:185 src/Gtk/TerminalWindow.vala:152 +#: src/Gtk/AboutWindow.vala:33 src/Gtk/TerminalWindow.vala:151 msgid "Close" msgstr "Fermer" -#: src/Gtk/AboutWindow.vala:204 +#: src/Gtk/AboutWindow.vala:166 +msgid "Back" +msgstr "Retour" + +#: src/Gtk/AboutWindow.vala:193 msgid "Authors" msgstr "Auteurs" -#: src/Gtk/AboutWindow.vala:212 +#: src/Gtk/AboutWindow.vala:201 msgid "Contributions" msgstr "Contributions" -#: src/Gtk/AboutWindow.vala:220 +#: src/Gtk/AboutWindow.vala:209 msgid "Artists" msgstr "Artistes" -#: src/Gtk/AboutWindow.vala:228 +#: src/Gtk/AboutWindow.vala:217 msgid "Translators" msgstr "Traducteurs" -#: src/Gtk/AboutWindow.vala:236 +#: src/Gtk/AboutWindow.vala:225 msgid "Documenters" msgstr "Documentalistes" -#: src/Gtk/AboutWindow.vala:244 +#: src/Gtk/AboutWindow.vala:233 msgid "Third Party Inclusions" msgstr "Dépendances Tierces" @@ -388,74 +388,74 @@ msgstr "Afficher les informations de débogage" msgid "Show all options" msgstr "Afficher toutes les options" -#: src/Gtk/MainWindow.vala:160 +#: src/Gtk/MainWindow.vala:159 msgid "Lock" msgstr "" -#: src/Gtk/MainWindow.vala:177 +#: src/Gtk/MainWindow.vala:176 msgid "Status" msgstr "Statut" -#: src/Gtk/MainWindow.vala:189 +#: src/Gtk/MainWindow.vala:188 msgid "Notes" msgstr "Notes" -#: src/Gtk/MainWindow.vala:318 +#: src/Gtk/MainWindow.vala:317 msgid "Uninstall" msgstr "Désinstaller" -#: src/Gtk/MainWindow.vala:324 +#: src/Gtk/MainWindow.vala:323 msgid "Changelog, build status, etc" msgstr "" -#: src/Gtk/MainWindow.vala:333 +#: src/Gtk/MainWindow.vala:332 msgid "Uninstall Old" msgstr "Désinstaller Ancien" -#: src/Gtk/MainWindow.vala:339 +#: src/Gtk/MainWindow.vala:338 msgid "Reload" msgstr "Recharger" -#: src/Gtk/MainWindow.vala:340 +#: src/Gtk/MainWindow.vala:339 msgid "Delete and reload all cached kernel info" msgstr "" -#: src/Gtk/MainWindow.vala:345 src/Gtk/SettingsDialog.vala:41 +#: src/Gtk/MainWindow.vala:344 src/Gtk/SettingsDialog.vala:41 msgid "Settings" msgstr "Paramètres" -#: src/Gtk/MainWindow.vala:350 +#: src/Gtk/MainWindow.vala:349 msgid "About" msgstr "À propos" -#: src/Gtk/MainWindow.vala:355 +#: src/Gtk/MainWindow.vala:354 msgid "Exit" msgstr "Sortie" -#: src/Gtk/MainWindow.vala:436 +#: src/Gtk/MainWindow.vala:435 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "" "Utilitaire de mise à niveau des noyaux pour les distributions basées sur " "Ubuntu" -#: src/Gtk/MainWindow.vala:437 +#: src/Gtk/MainWindow.vala:436 msgid "Forked" msgstr "Forkée" -#: src/Gtk/MainWindow.vala:437 +#: src/Gtk/MainWindow.vala:436 msgid "Original" msgstr "Originale" -#: src/Gtk/MainWindow.vala:466 +#: src/Gtk/MainWindow.vala:465 msgid "Updating kernels" msgstr "Mise à jour des noyaux" -#: src/Gtk/MainWindow.vala:526 +#: src/Gtk/MainWindow.vala:525 msgid "available" msgstr "disponible" -#: src/Gtk/MainWindow.vala:568 src/Gtk/MainWindow.vala:599 -#: src/Gtk/MainWindow.vala:624 +#: src/Gtk/MainWindow.vala:567 src/Gtk/MainWindow.vala:598 +#: src/Gtk/MainWindow.vala:623 msgid "DONE" msgstr "" @@ -540,7 +540,7 @@ msgstr "Commandes" msgid "Done" msgstr "" -#: src/Gtk/TerminalWindow.vala:142 +#: src/Gtk/TerminalWindow.vala:141 msgid "Cancel" msgstr "Annuler" diff --git a/po/hr.po b/po/hr.po index 4411db85..f200bcd2 100644 --- a/po/hr.po +++ b/po/hr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-04 18:30-0400\n" +"POT-Creation-Date: 2023-06-05 00:44-0400\n" "PO-Revision-Date: 2022-09-22 12:13+0200\n" "Last-Translator: gogo \n" "Language-Team: Croatian\n" @@ -66,7 +66,7 @@ msgstr "" msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:668 src/Gtk/MainWindow.vala:522 +#: src/Common/LinuxKernel.vala:668 src/Gtk/MainWindow.vala:521 msgid "Running" msgstr "Pokrenuto" @@ -86,7 +86,7 @@ msgstr "Dostupni Paketi" msgid "Packages Installed" msgstr "Instalirani paketi" -#: src/Common/LinuxKernel.vala:791 src/lib/TeeJee.FileSystem.vala:99 +#: src/Common/LinuxKernel.vala:791 src/lib/TeeJee.FileSystem.vala:94 msgid "File not found" msgstr "Datoteka nije pronađena" @@ -94,7 +94,7 @@ msgstr "Datoteka nije pronađena" msgid "Available Kernels" msgstr "Dostupni kerneli" -#: src/Common/LinuxKernel.vala:920 src/Gtk/MainWindow.vala:136 +#: src/Common/LinuxKernel.vala:920 src/Gtk/MainWindow.vala:135 msgid "Kernel" msgstr "Kernel" @@ -266,7 +266,7 @@ msgstr "Deinstaliraj određene kernele" msgid "Uninstall specified kernels" msgstr "Deinstaliraj određene kernele" -#: src/Console/AppConsole.vala:51 src/Gtk/MainWindow.vala:334 +#: src/Console/AppConsole.vala:51 src/Gtk/MainWindow.vala:333 msgid "Uninstall all but the highest installed version" msgstr "Deinstaliraj sve osim najnovije instalirane verzije" @@ -331,7 +331,7 @@ msgstr "Kernel %s je dostupan" msgid "Show" msgstr "Prikaži" -#: src/Console/AppConsole.vala:267 src/Gtk/MainWindow.vala:313 +#: src/Console/AppConsole.vala:267 src/Gtk/MainWindow.vala:312 msgid "Install" msgstr "Instaliraj" @@ -339,39 +339,39 @@ msgstr "Instaliraj" msgid "Previously notified" msgstr "Prethodno prijavljeno" -#: src/Gtk/AboutWindow.vala:162 src/Gtk/AboutWindow.vala:179 +#: src/Gtk/AboutWindow.vala:32 src/Gtk/AboutWindow.vala:170 msgid "Credits" msgstr "Zasluge" -#: src/Gtk/AboutWindow.vala:175 -msgid "Back" -msgstr "Natrag" - -#: src/Gtk/AboutWindow.vala:185 src/Gtk/TerminalWindow.vala:152 +#: src/Gtk/AboutWindow.vala:33 src/Gtk/TerminalWindow.vala:151 msgid "Close" msgstr "Zatvori" -#: src/Gtk/AboutWindow.vala:204 +#: src/Gtk/AboutWindow.vala:166 +msgid "Back" +msgstr "Natrag" + +#: src/Gtk/AboutWindow.vala:193 msgid "Authors" msgstr "Autori" -#: src/Gtk/AboutWindow.vala:212 +#: src/Gtk/AboutWindow.vala:201 msgid "Contributions" msgstr "Prilozi" -#: src/Gtk/AboutWindow.vala:220 +#: src/Gtk/AboutWindow.vala:209 msgid "Artists" msgstr "Dizajneri" -#: src/Gtk/AboutWindow.vala:228 +#: src/Gtk/AboutWindow.vala:217 msgid "Translators" msgstr "Prevoditelji" -#: src/Gtk/AboutWindow.vala:236 +#: src/Gtk/AboutWindow.vala:225 msgid "Documenters" msgstr "Autori dokumentacije" -#: src/Gtk/AboutWindow.vala:244 +#: src/Gtk/AboutWindow.vala:233 msgid "Third Party Inclusions" msgstr "Uključene treće strane" @@ -387,72 +387,72 @@ msgstr "Ispiši informacije otklanjanja grešaka" msgid "Show all options" msgstr "Prikaži sve mogućnosti" -#: src/Gtk/MainWindow.vala:160 +#: src/Gtk/MainWindow.vala:159 msgid "Lock" msgstr "" -#: src/Gtk/MainWindow.vala:177 +#: src/Gtk/MainWindow.vala:176 msgid "Status" msgstr "Stanje" -#: src/Gtk/MainWindow.vala:189 +#: src/Gtk/MainWindow.vala:188 msgid "Notes" msgstr "Bilješke" -#: src/Gtk/MainWindow.vala:318 +#: src/Gtk/MainWindow.vala:317 msgid "Uninstall" msgstr "Deinstaliraj" -#: src/Gtk/MainWindow.vala:324 +#: src/Gtk/MainWindow.vala:323 msgid "Changelog, build status, etc" msgstr "" -#: src/Gtk/MainWindow.vala:333 +#: src/Gtk/MainWindow.vala:332 msgid "Uninstall Old" msgstr "Deinstaliraj staro" -#: src/Gtk/MainWindow.vala:339 +#: src/Gtk/MainWindow.vala:338 msgid "Reload" msgstr "Ponovno učitati" -#: src/Gtk/MainWindow.vala:340 +#: src/Gtk/MainWindow.vala:339 msgid "Delete and reload all cached kernel info" msgstr "" -#: src/Gtk/MainWindow.vala:345 src/Gtk/SettingsDialog.vala:41 +#: src/Gtk/MainWindow.vala:344 src/Gtk/SettingsDialog.vala:41 msgid "Settings" msgstr "Postavke" -#: src/Gtk/MainWindow.vala:350 +#: src/Gtk/MainWindow.vala:349 msgid "About" msgstr "O programu" -#: src/Gtk/MainWindow.vala:355 +#: src/Gtk/MainWindow.vala:354 msgid "Exit" msgstr "Izlaz" -#: src/Gtk/MainWindow.vala:436 +#: src/Gtk/MainWindow.vala:435 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Alat za nadogradnju kernela Ubuntu temeljenih distribucija" -#: src/Gtk/MainWindow.vala:437 +#: src/Gtk/MainWindow.vala:436 msgid "Forked" msgstr "Forkano" -#: src/Gtk/MainWindow.vala:437 +#: src/Gtk/MainWindow.vala:436 msgid "Original" msgstr "Izvornik" -#: src/Gtk/MainWindow.vala:466 +#: src/Gtk/MainWindow.vala:465 msgid "Updating kernels" msgstr "Ažuriranje jezgri" -#: src/Gtk/MainWindow.vala:526 +#: src/Gtk/MainWindow.vala:525 msgid "available" msgstr "dostupno" -#: src/Gtk/MainWindow.vala:568 src/Gtk/MainWindow.vala:599 -#: src/Gtk/MainWindow.vala:624 +#: src/Gtk/MainWindow.vala:567 src/Gtk/MainWindow.vala:598 +#: src/Gtk/MainWindow.vala:623 msgid "DONE" msgstr "" @@ -537,7 +537,7 @@ msgstr "Naredbe" msgid "Done" msgstr "" -#: src/Gtk/TerminalWindow.vala:142 +#: src/Gtk/TerminalWindow.vala:141 msgid "Cancel" msgstr "Odustani" diff --git a/po/it.po b/po/it.po index b943215d..46614344 100644 --- a/po/it.po +++ b/po/it.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-04 18:30-0400\n" +"POT-Creation-Date: 2023-06-05 00:44-0400\n" "PO-Revision-Date: 2020-08-22 15:35+0100\n" "Last-Translator: Demetrio Mendozzi\n" "Language-Team: Italian\n" @@ -64,7 +64,7 @@ msgstr "" msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:668 src/Gtk/MainWindow.vala:522 +#: src/Common/LinuxKernel.vala:668 src/Gtk/MainWindow.vala:521 msgid "Running" msgstr "In esecuzione" @@ -84,7 +84,7 @@ msgstr "Pacchetti disponibili" msgid "Packages Installed" msgstr "Pacchetti installati" -#: src/Common/LinuxKernel.vala:791 src/lib/TeeJee.FileSystem.vala:99 +#: src/Common/LinuxKernel.vala:791 src/lib/TeeJee.FileSystem.vala:94 msgid "File not found" msgstr "File non trovato" @@ -92,7 +92,7 @@ msgstr "File non trovato" msgid "Available Kernels" msgstr "Kernel disponibili" -#: src/Common/LinuxKernel.vala:920 src/Gtk/MainWindow.vala:136 +#: src/Common/LinuxKernel.vala:920 src/Gtk/MainWindow.vala:135 msgid "Kernel" msgstr "Kernel" @@ -267,7 +267,7 @@ msgstr "Disinstalla i kernel specificati" msgid "Uninstall specified kernels" msgstr "Disinstalla i kernel specificati" -#: src/Console/AppConsole.vala:51 src/Gtk/MainWindow.vala:334 +#: src/Console/AppConsole.vala:51 src/Gtk/MainWindow.vala:333 msgid "Uninstall all but the highest installed version" msgstr "Disinstallare tutti tranne la versione più recente installata" @@ -332,7 +332,7 @@ msgstr "Kernel %s Disponibile" msgid "Show" msgstr "Mostra" -#: src/Console/AppConsole.vala:267 src/Gtk/MainWindow.vala:313 +#: src/Console/AppConsole.vala:267 src/Gtk/MainWindow.vala:312 msgid "Install" msgstr "Installa" @@ -340,39 +340,39 @@ msgstr "Installa" msgid "Previously notified" msgstr "Notificato in precedenza" -#: src/Gtk/AboutWindow.vala:162 src/Gtk/AboutWindow.vala:179 +#: src/Gtk/AboutWindow.vala:32 src/Gtk/AboutWindow.vala:170 msgid "Credits" msgstr "Crediti" -#: src/Gtk/AboutWindow.vala:175 -msgid "Back" -msgstr "Indietro" - -#: src/Gtk/AboutWindow.vala:185 src/Gtk/TerminalWindow.vala:152 +#: src/Gtk/AboutWindow.vala:33 src/Gtk/TerminalWindow.vala:151 msgid "Close" msgstr "Chiudi" -#: src/Gtk/AboutWindow.vala:204 +#: src/Gtk/AboutWindow.vala:166 +msgid "Back" +msgstr "Indietro" + +#: src/Gtk/AboutWindow.vala:193 msgid "Authors" msgstr "Autori" -#: src/Gtk/AboutWindow.vala:212 +#: src/Gtk/AboutWindow.vala:201 msgid "Contributions" msgstr "Contributori" -#: src/Gtk/AboutWindow.vala:220 +#: src/Gtk/AboutWindow.vala:209 msgid "Artists" msgstr "Artisti" -#: src/Gtk/AboutWindow.vala:228 +#: src/Gtk/AboutWindow.vala:217 msgid "Translators" msgstr "Traduttori" -#: src/Gtk/AboutWindow.vala:236 +#: src/Gtk/AboutWindow.vala:225 msgid "Documenters" msgstr "Documentatori" -#: src/Gtk/AboutWindow.vala:244 +#: src/Gtk/AboutWindow.vala:233 msgid "Third Party Inclusions" msgstr "Inclusioni di terze parti" @@ -388,72 +388,72 @@ msgstr "Stampa le informazioni di debug" msgid "Show all options" msgstr "Mostra tutte le opzioni" -#: src/Gtk/MainWindow.vala:160 +#: src/Gtk/MainWindow.vala:159 msgid "Lock" msgstr "" -#: src/Gtk/MainWindow.vala:177 +#: src/Gtk/MainWindow.vala:176 msgid "Status" msgstr "Stato" -#: src/Gtk/MainWindow.vala:189 +#: src/Gtk/MainWindow.vala:188 msgid "Notes" msgstr "Note" -#: src/Gtk/MainWindow.vala:318 +#: src/Gtk/MainWindow.vala:317 msgid "Uninstall" msgstr "Disinstalla" -#: src/Gtk/MainWindow.vala:324 +#: src/Gtk/MainWindow.vala:323 msgid "Changelog, build status, etc" msgstr "" -#: src/Gtk/MainWindow.vala:333 +#: src/Gtk/MainWindow.vala:332 msgid "Uninstall Old" msgstr "Disinstalla i vecchi" -#: src/Gtk/MainWindow.vala:339 +#: src/Gtk/MainWindow.vala:338 msgid "Reload" msgstr "Ricarica" -#: src/Gtk/MainWindow.vala:340 +#: src/Gtk/MainWindow.vala:339 msgid "Delete and reload all cached kernel info" msgstr "" -#: src/Gtk/MainWindow.vala:345 src/Gtk/SettingsDialog.vala:41 +#: src/Gtk/MainWindow.vala:344 src/Gtk/SettingsDialog.vala:41 msgid "Settings" msgstr "Impostazioni" -#: src/Gtk/MainWindow.vala:350 +#: src/Gtk/MainWindow.vala:349 msgid "About" msgstr "Informazioni" -#: src/Gtk/MainWindow.vala:355 +#: src/Gtk/MainWindow.vala:354 msgid "Exit" msgstr "Chiudi" -#: src/Gtk/MainWindow.vala:436 +#: src/Gtk/MainWindow.vala:435 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Utilità di aggiornamento del kernel per distribuzioni basate su Ubuntu" -#: src/Gtk/MainWindow.vala:437 +#: src/Gtk/MainWindow.vala:436 msgid "Forked" msgstr "Forked" -#: src/Gtk/MainWindow.vala:437 +#: src/Gtk/MainWindow.vala:436 msgid "Original" msgstr "Originale" -#: src/Gtk/MainWindow.vala:466 +#: src/Gtk/MainWindow.vala:465 msgid "Updating kernels" msgstr "Aggiornamento dei kernel" -#: src/Gtk/MainWindow.vala:526 +#: src/Gtk/MainWindow.vala:525 msgid "available" msgstr "disponibile" -#: src/Gtk/MainWindow.vala:568 src/Gtk/MainWindow.vala:599 -#: src/Gtk/MainWindow.vala:624 +#: src/Gtk/MainWindow.vala:567 src/Gtk/MainWindow.vala:598 +#: src/Gtk/MainWindow.vala:623 msgid "DONE" msgstr "" @@ -538,7 +538,7 @@ msgstr "Comandi" msgid "Done" msgstr "" -#: src/Gtk/TerminalWindow.vala:142 +#: src/Gtk/TerminalWindow.vala:141 msgid "Cancel" msgstr "Cancella" diff --git a/po/ko.po b/po/ko.po index a4966aa3..bd74faa8 100644 --- a/po/ko.po +++ b/po/ko.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-04 18:30-0400\n" +"POT-Creation-Date: 2023-06-05 00:44-0400\n" "PO-Revision-Date: 2022-09-28 11:48+0900\n" "Last-Translator: Kevin Kim \n" "Language-Team: Korean\n" @@ -66,7 +66,7 @@ msgstr "" msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:668 src/Gtk/MainWindow.vala:522 +#: src/Common/LinuxKernel.vala:668 src/Gtk/MainWindow.vala:521 msgid "Running" msgstr "구동 중" @@ -86,7 +86,7 @@ msgstr "설치 가능한 패키지" msgid "Packages Installed" msgstr "설치된 패키지" -#: src/Common/LinuxKernel.vala:791 src/lib/TeeJee.FileSystem.vala:99 +#: src/Common/LinuxKernel.vala:791 src/lib/TeeJee.FileSystem.vala:94 msgid "File not found" msgstr "파일을 찾을 수 없습니다" @@ -94,7 +94,7 @@ msgstr "파일을 찾을 수 없습니다" msgid "Available Kernels" msgstr "설치 가능한 커널" -#: src/Common/LinuxKernel.vala:920 src/Gtk/MainWindow.vala:136 +#: src/Common/LinuxKernel.vala:920 src/Gtk/MainWindow.vala:135 msgid "Kernel" msgstr "커널" @@ -265,7 +265,7 @@ msgstr "지정한 커널 삭제" msgid "Uninstall specified kernels" msgstr "지정한 커널 삭제" -#: src/Console/AppConsole.vala:51 src/Gtk/MainWindow.vala:334 +#: src/Console/AppConsole.vala:51 src/Gtk/MainWindow.vala:333 msgid "Uninstall all but the highest installed version" msgstr "설치된 가장 높은 버전을 제외한 모든 버전을 제거합니다" @@ -330,7 +330,7 @@ msgstr "커널 %s 사용 가능" msgid "Show" msgstr "보이기" -#: src/Console/AppConsole.vala:267 src/Gtk/MainWindow.vala:313 +#: src/Console/AppConsole.vala:267 src/Gtk/MainWindow.vala:312 msgid "Install" msgstr "설치" @@ -338,39 +338,39 @@ msgstr "설치" msgid "Previously notified" msgstr "이전에 통보됨" -#: src/Gtk/AboutWindow.vala:162 src/Gtk/AboutWindow.vala:179 +#: src/Gtk/AboutWindow.vala:32 src/Gtk/AboutWindow.vala:170 msgid "Credits" msgstr "제작자" -#: src/Gtk/AboutWindow.vala:175 -msgid "Back" -msgstr "뒤로" - -#: src/Gtk/AboutWindow.vala:185 src/Gtk/TerminalWindow.vala:152 +#: src/Gtk/AboutWindow.vala:33 src/Gtk/TerminalWindow.vala:151 msgid "Close" msgstr "닫기" -#: src/Gtk/AboutWindow.vala:204 +#: src/Gtk/AboutWindow.vala:166 +msgid "Back" +msgstr "뒤로" + +#: src/Gtk/AboutWindow.vala:193 msgid "Authors" msgstr "개발자" -#: src/Gtk/AboutWindow.vala:212 +#: src/Gtk/AboutWindow.vala:201 msgid "Contributions" msgstr "기여자" -#: src/Gtk/AboutWindow.vala:220 +#: src/Gtk/AboutWindow.vala:209 msgid "Artists" msgstr "아티스트" -#: src/Gtk/AboutWindow.vala:228 +#: src/Gtk/AboutWindow.vala:217 msgid "Translators" msgstr "번역자" -#: src/Gtk/AboutWindow.vala:236 +#: src/Gtk/AboutWindow.vala:225 msgid "Documenters" msgstr "문서작성" -#: src/Gtk/AboutWindow.vala:244 +#: src/Gtk/AboutWindow.vala:233 msgid "Third Party Inclusions" msgstr "서드파티 포함" @@ -386,72 +386,72 @@ msgstr "디버그 정보 출력" msgid "Show all options" msgstr "모든 옵션 보기" -#: src/Gtk/MainWindow.vala:160 +#: src/Gtk/MainWindow.vala:159 msgid "Lock" msgstr "" -#: src/Gtk/MainWindow.vala:177 +#: src/Gtk/MainWindow.vala:176 msgid "Status" msgstr "상태" -#: src/Gtk/MainWindow.vala:189 +#: src/Gtk/MainWindow.vala:188 msgid "Notes" msgstr "노트" -#: src/Gtk/MainWindow.vala:318 +#: src/Gtk/MainWindow.vala:317 msgid "Uninstall" msgstr "삭제" -#: src/Gtk/MainWindow.vala:324 +#: src/Gtk/MainWindow.vala:323 msgid "Changelog, build status, etc" msgstr "" -#: src/Gtk/MainWindow.vala:333 +#: src/Gtk/MainWindow.vala:332 msgid "Uninstall Old" msgstr "오래된 커널 제거" -#: src/Gtk/MainWindow.vala:339 +#: src/Gtk/MainWindow.vala:338 msgid "Reload" msgstr "새로고침" -#: src/Gtk/MainWindow.vala:340 +#: src/Gtk/MainWindow.vala:339 msgid "Delete and reload all cached kernel info" msgstr "" -#: src/Gtk/MainWindow.vala:345 src/Gtk/SettingsDialog.vala:41 +#: src/Gtk/MainWindow.vala:344 src/Gtk/SettingsDialog.vala:41 msgid "Settings" msgstr "설정" -#: src/Gtk/MainWindow.vala:350 +#: src/Gtk/MainWindow.vala:349 msgid "About" msgstr "정보" -#: src/Gtk/MainWindow.vala:355 +#: src/Gtk/MainWindow.vala:354 msgid "Exit" msgstr "출구" -#: src/Gtk/MainWindow.vala:436 +#: src/Gtk/MainWindow.vala:435 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "우분투 기반 배포판의 커널 업그레이드 도구" -#: src/Gtk/MainWindow.vala:437 +#: src/Gtk/MainWindow.vala:436 msgid "Forked" msgstr "가랑이진" -#: src/Gtk/MainWindow.vala:437 +#: src/Gtk/MainWindow.vala:436 msgid "Original" msgstr "원문 언어" -#: src/Gtk/MainWindow.vala:466 +#: src/Gtk/MainWindow.vala:465 msgid "Updating kernels" msgstr "커널 업데이트" -#: src/Gtk/MainWindow.vala:526 +#: src/Gtk/MainWindow.vala:525 msgid "available" msgstr "사용가능" -#: src/Gtk/MainWindow.vala:568 src/Gtk/MainWindow.vala:599 -#: src/Gtk/MainWindow.vala:624 +#: src/Gtk/MainWindow.vala:567 src/Gtk/MainWindow.vala:598 +#: src/Gtk/MainWindow.vala:623 msgid "DONE" msgstr "" @@ -536,7 +536,7 @@ msgstr "명령어" msgid "Done" msgstr "" -#: src/Gtk/TerminalWindow.vala:142 +#: src/Gtk/TerminalWindow.vala:141 msgid "Cancel" msgstr "취소" diff --git a/po/messages.pot b/po/messages.pot index 8e3c4590..d30ab59a 100644 --- a/po/messages.pot +++ b/po/messages.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline 1.3.9\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-04 18:36-0400\n" +"POT-Creation-Date: 2023-06-05 00:44-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -70,7 +70,7 @@ msgstr "" msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:668 src/Gtk/MainWindow.vala:522 +#: src/Common/LinuxKernel.vala:668 src/Gtk/MainWindow.vala:521 msgid "Running" msgstr "" @@ -90,7 +90,7 @@ msgstr "" msgid "Packages Installed" msgstr "" -#: src/Common/LinuxKernel.vala:791 src/lib/TeeJee.FileSystem.vala:99 +#: src/Common/LinuxKernel.vala:791 src/lib/TeeJee.FileSystem.vala:94 msgid "File not found" msgstr "" @@ -98,7 +98,7 @@ msgstr "" msgid "Available Kernels" msgstr "" -#: src/Common/LinuxKernel.vala:920 src/Gtk/MainWindow.vala:136 +#: src/Common/LinuxKernel.vala:920 src/Gtk/MainWindow.vala:135 msgid "Kernel" msgstr "" @@ -258,7 +258,7 @@ msgstr "" msgid "Uninstall specified kernels" msgstr "" -#: src/Console/AppConsole.vala:51 src/Gtk/MainWindow.vala:334 +#: src/Console/AppConsole.vala:51 src/Gtk/MainWindow.vala:333 msgid "Uninstall all but the highest installed version" msgstr "" @@ -320,7 +320,7 @@ msgstr "" msgid "Show" msgstr "" -#: src/Console/AppConsole.vala:267 src/Gtk/MainWindow.vala:313 +#: src/Console/AppConsole.vala:267 src/Gtk/MainWindow.vala:312 msgid "Install" msgstr "" @@ -328,39 +328,39 @@ msgstr "" msgid "Previously notified" msgstr "" -#: src/Gtk/AboutWindow.vala:162 src/Gtk/AboutWindow.vala:179 +#: src/Gtk/AboutWindow.vala:32 src/Gtk/AboutWindow.vala:170 msgid "Credits" msgstr "" -#: src/Gtk/AboutWindow.vala:175 -msgid "Back" +#: src/Gtk/AboutWindow.vala:33 src/Gtk/TerminalWindow.vala:151 +msgid "Close" msgstr "" -#: src/Gtk/AboutWindow.vala:185 src/Gtk/TerminalWindow.vala:152 -msgid "Close" +#: src/Gtk/AboutWindow.vala:166 +msgid "Back" msgstr "" -#: src/Gtk/AboutWindow.vala:204 +#: src/Gtk/AboutWindow.vala:193 msgid "Authors" msgstr "" -#: src/Gtk/AboutWindow.vala:212 +#: src/Gtk/AboutWindow.vala:201 msgid "Contributions" msgstr "" -#: src/Gtk/AboutWindow.vala:220 +#: src/Gtk/AboutWindow.vala:209 msgid "Artists" msgstr "" -#: src/Gtk/AboutWindow.vala:228 +#: src/Gtk/AboutWindow.vala:217 msgid "Translators" msgstr "" -#: src/Gtk/AboutWindow.vala:236 +#: src/Gtk/AboutWindow.vala:225 msgid "Documenters" msgstr "" -#: src/Gtk/AboutWindow.vala:244 +#: src/Gtk/AboutWindow.vala:233 msgid "Third Party Inclusions" msgstr "" @@ -376,72 +376,72 @@ msgstr "" msgid "Show all options" msgstr "" -#: src/Gtk/MainWindow.vala:160 +#: src/Gtk/MainWindow.vala:159 msgid "Lock" msgstr "" -#: src/Gtk/MainWindow.vala:177 +#: src/Gtk/MainWindow.vala:176 msgid "Status" msgstr "" -#: src/Gtk/MainWindow.vala:189 +#: src/Gtk/MainWindow.vala:188 msgid "Notes" msgstr "" -#: src/Gtk/MainWindow.vala:318 +#: src/Gtk/MainWindow.vala:317 msgid "Uninstall" msgstr "" -#: src/Gtk/MainWindow.vala:324 +#: src/Gtk/MainWindow.vala:323 msgid "Changelog, build status, etc" msgstr "" -#: src/Gtk/MainWindow.vala:333 +#: src/Gtk/MainWindow.vala:332 msgid "Uninstall Old" msgstr "" -#: src/Gtk/MainWindow.vala:339 +#: src/Gtk/MainWindow.vala:338 msgid "Reload" msgstr "" -#: src/Gtk/MainWindow.vala:340 +#: src/Gtk/MainWindow.vala:339 msgid "Delete and reload all cached kernel info" msgstr "" -#: src/Gtk/MainWindow.vala:345 src/Gtk/SettingsDialog.vala:41 +#: src/Gtk/MainWindow.vala:344 src/Gtk/SettingsDialog.vala:41 msgid "Settings" msgstr "" -#: src/Gtk/MainWindow.vala:350 +#: src/Gtk/MainWindow.vala:349 msgid "About" msgstr "" -#: src/Gtk/MainWindow.vala:355 +#: src/Gtk/MainWindow.vala:354 msgid "Exit" msgstr "" -#: src/Gtk/MainWindow.vala:436 +#: src/Gtk/MainWindow.vala:435 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "" -#: src/Gtk/MainWindow.vala:437 +#: src/Gtk/MainWindow.vala:436 msgid "Forked" msgstr "" -#: src/Gtk/MainWindow.vala:437 +#: src/Gtk/MainWindow.vala:436 msgid "Original" msgstr "" -#: src/Gtk/MainWindow.vala:466 +#: src/Gtk/MainWindow.vala:465 msgid "Updating kernels" msgstr "" -#: src/Gtk/MainWindow.vala:526 +#: src/Gtk/MainWindow.vala:525 msgid "available" msgstr "" -#: src/Gtk/MainWindow.vala:568 src/Gtk/MainWindow.vala:599 -#: src/Gtk/MainWindow.vala:624 +#: src/Gtk/MainWindow.vala:567 src/Gtk/MainWindow.vala:598 +#: src/Gtk/MainWindow.vala:623 msgid "DONE" msgstr "" @@ -525,7 +525,7 @@ msgstr "" msgid "Done" msgstr "" -#: src/Gtk/TerminalWindow.vala:142 +#: src/Gtk/TerminalWindow.vala:141 msgid "Cancel" msgstr "" diff --git a/po/nl.po b/po/nl.po index ce0af43e..933d0110 100644 --- a/po/nl.po +++ b/po/nl.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-04 18:30-0400\n" +"POT-Creation-Date: 2023-06-05 00:44-0400\n" "PO-Revision-Date: 2020-08-23 13:55+0200\n" "Last-Translator: Heimen Stoffels \n" "Language-Team: Dutch (Netherlands)\n" @@ -66,7 +66,7 @@ msgstr "" msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:668 src/Gtk/MainWindow.vala:522 +#: src/Common/LinuxKernel.vala:668 src/Gtk/MainWindow.vala:521 msgid "Running" msgstr "In gebruik" @@ -86,7 +86,7 @@ msgstr "Beschikbare pakketten" msgid "Packages Installed" msgstr "Geïnstalleerde pakketten" -#: src/Common/LinuxKernel.vala:791 src/lib/TeeJee.FileSystem.vala:99 +#: src/Common/LinuxKernel.vala:791 src/lib/TeeJee.FileSystem.vala:94 msgid "File not found" msgstr "Het bestand is niet gevonden" @@ -94,7 +94,7 @@ msgstr "Het bestand is niet gevonden" msgid "Available Kernels" msgstr "Beschikbare kernels" -#: src/Common/LinuxKernel.vala:920 src/Gtk/MainWindow.vala:136 +#: src/Common/LinuxKernel.vala:920 src/Gtk/MainWindow.vala:135 msgid "Kernel" msgstr "Kernel" @@ -267,7 +267,7 @@ msgstr "Opgegeven kernel verwijderen" msgid "Uninstall specified kernels" msgstr "Opgegeven kernel verwijderen" -#: src/Console/AppConsole.vala:51 src/Gtk/MainWindow.vala:334 +#: src/Console/AppConsole.vala:51 src/Gtk/MainWindow.vala:333 msgid "Uninstall all but the highest installed version" msgstr "Verwijder alle behalve de hoogst geïnstalleerde versie" @@ -332,7 +332,7 @@ msgstr "Kernel %s is beschikbaar" msgid "Show" msgstr "Tonen" -#: src/Console/AppConsole.vala:267 src/Gtk/MainWindow.vala:313 +#: src/Console/AppConsole.vala:267 src/Gtk/MainWindow.vala:312 msgid "Install" msgstr "Installeren" @@ -340,39 +340,39 @@ msgstr "Installeren" msgid "Previously notified" msgstr "Eerder gemeld" -#: src/Gtk/AboutWindow.vala:162 src/Gtk/AboutWindow.vala:179 +#: src/Gtk/AboutWindow.vala:32 src/Gtk/AboutWindow.vala:170 msgid "Credits" msgstr "Met dank aan" -#: src/Gtk/AboutWindow.vala:175 -msgid "Back" -msgstr "Terug" - -#: src/Gtk/AboutWindow.vala:185 src/Gtk/TerminalWindow.vala:152 +#: src/Gtk/AboutWindow.vala:33 src/Gtk/TerminalWindow.vala:151 msgid "Close" msgstr "Sluiten" -#: src/Gtk/AboutWindow.vala:204 +#: src/Gtk/AboutWindow.vala:166 +msgid "Back" +msgstr "Terug" + +#: src/Gtk/AboutWindow.vala:193 msgid "Authors" msgstr "Makers" -#: src/Gtk/AboutWindow.vala:212 +#: src/Gtk/AboutWindow.vala:201 msgid "Contributions" msgstr "Bijdragers" -#: src/Gtk/AboutWindow.vala:220 +#: src/Gtk/AboutWindow.vala:209 msgid "Artists" msgstr "Artiesten" -#: src/Gtk/AboutWindow.vala:228 +#: src/Gtk/AboutWindow.vala:217 msgid "Translators" msgstr "Vertalers" -#: src/Gtk/AboutWindow.vala:236 +#: src/Gtk/AboutWindow.vala:225 msgid "Documenters" msgstr "Documenteerders" -#: src/Gtk/AboutWindow.vala:244 +#: src/Gtk/AboutWindow.vala:233 msgid "Third Party Inclusions" msgstr "Externe code" @@ -388,72 +388,72 @@ msgstr "Foutopsporingsinformatie tonen" msgid "Show all options" msgstr "Alle opties tonen" -#: src/Gtk/MainWindow.vala:160 +#: src/Gtk/MainWindow.vala:159 msgid "Lock" msgstr "" -#: src/Gtk/MainWindow.vala:177 +#: src/Gtk/MainWindow.vala:176 msgid "Status" msgstr "Status" -#: src/Gtk/MainWindow.vala:189 +#: src/Gtk/MainWindow.vala:188 msgid "Notes" msgstr "Notities" -#: src/Gtk/MainWindow.vala:318 +#: src/Gtk/MainWindow.vala:317 msgid "Uninstall" msgstr "Deïnstalleren" -#: src/Gtk/MainWindow.vala:324 +#: src/Gtk/MainWindow.vala:323 msgid "Changelog, build status, etc" msgstr "" -#: src/Gtk/MainWindow.vala:333 +#: src/Gtk/MainWindow.vala:332 msgid "Uninstall Old" msgstr "Verwijder Oude" -#: src/Gtk/MainWindow.vala:339 +#: src/Gtk/MainWindow.vala:338 msgid "Reload" msgstr "Herladen" -#: src/Gtk/MainWindow.vala:340 +#: src/Gtk/MainWindow.vala:339 msgid "Delete and reload all cached kernel info" msgstr "" -#: src/Gtk/MainWindow.vala:345 src/Gtk/SettingsDialog.vala:41 +#: src/Gtk/MainWindow.vala:344 src/Gtk/SettingsDialog.vala:41 msgid "Settings" msgstr "Instellingen" -#: src/Gtk/MainWindow.vala:350 +#: src/Gtk/MainWindow.vala:349 msgid "About" msgstr "Over" -#: src/Gtk/MainWindow.vala:355 +#: src/Gtk/MainWindow.vala:354 msgid "Exit" msgstr "Afsluiten" -#: src/Gtk/MainWindow.vala:436 +#: src/Gtk/MainWindow.vala:435 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Een kernelupgradehulpmiddel voor op Ubuntu gebaseerde distributies" -#: src/Gtk/MainWindow.vala:437 +#: src/Gtk/MainWindow.vala:436 msgid "Forked" msgstr "Geforkt" -#: src/Gtk/MainWindow.vala:437 +#: src/Gtk/MainWindow.vala:436 msgid "Original" msgstr "Origineel" -#: src/Gtk/MainWindow.vala:466 +#: src/Gtk/MainWindow.vala:465 msgid "Updating kernels" msgstr "Kernels bijwerken" -#: src/Gtk/MainWindow.vala:526 +#: src/Gtk/MainWindow.vala:525 msgid "available" msgstr "beschikbaar" -#: src/Gtk/MainWindow.vala:568 src/Gtk/MainWindow.vala:599 -#: src/Gtk/MainWindow.vala:624 +#: src/Gtk/MainWindow.vala:567 src/Gtk/MainWindow.vala:598 +#: src/Gtk/MainWindow.vala:623 msgid "DONE" msgstr "" @@ -538,7 +538,7 @@ msgstr "Opdrachten" msgid "Done" msgstr "" -#: src/Gtk/TerminalWindow.vala:142 +#: src/Gtk/TerminalWindow.vala:141 msgid "Cancel" msgstr "Annuleren" diff --git a/po/pl.po b/po/pl.po index 8a60e1a3..226e2b58 100644 --- a/po/pl.po +++ b/po/pl.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-04 18:30-0400\n" +"POT-Creation-Date: 2023-06-05 00:44-0400\n" "PO-Revision-Date: 2023-06-03 14:24+0200\n" "Last-Translator: Matthaiks\n" "Language-Team: Polish\n" @@ -65,7 +65,7 @@ msgstr "zablokowane" msgid "is locked." msgstr "jest zablokowane." -#: src/Common/LinuxKernel.vala:668 src/Gtk/MainWindow.vala:522 +#: src/Common/LinuxKernel.vala:668 src/Gtk/MainWindow.vala:521 msgid "Running" msgstr "Uruchomione" @@ -85,7 +85,7 @@ msgstr "Dostępne pakiety" msgid "Packages Installed" msgstr "Pakiety zainstalowane" -#: src/Common/LinuxKernel.vala:791 src/lib/TeeJee.FileSystem.vala:99 +#: src/Common/LinuxKernel.vala:791 src/lib/TeeJee.FileSystem.vala:94 msgid "File not found" msgstr "Nie odnaleziono pliku" @@ -93,7 +93,7 @@ msgstr "Nie odnaleziono pliku" msgid "Available Kernels" msgstr "Dostępne jądra" -#: src/Common/LinuxKernel.vala:920 src/Gtk/MainWindow.vala:136 +#: src/Common/LinuxKernel.vala:920 src/Gtk/MainWindow.vala:135 msgid "Kernel" msgstr "Jądro" @@ -255,7 +255,7 @@ msgstr "Zainstaluj wybrane jądra" msgid "Uninstall specified kernels" msgstr "Odinstaluj wybrane jądra" -#: src/Console/AppConsole.vala:51 src/Gtk/MainWindow.vala:334 +#: src/Console/AppConsole.vala:51 src/Gtk/MainWindow.vala:333 msgid "Uninstall all but the highest installed version" msgstr "Odinstaluj wszystkie oprócz najwyższej zainstalowanej wersji" @@ -319,7 +319,7 @@ msgstr "Dostępne %s jądra" msgid "Show" msgstr "Pokaż" -#: src/Console/AppConsole.vala:267 src/Gtk/MainWindow.vala:313 +#: src/Console/AppConsole.vala:267 src/Gtk/MainWindow.vala:312 msgid "Install" msgstr "Zainstaluj" @@ -327,39 +327,39 @@ msgstr "Zainstaluj" msgid "Previously notified" msgstr "Wcześniej powiadomiono" -#: src/Gtk/AboutWindow.vala:162 src/Gtk/AboutWindow.vala:179 +#: src/Gtk/AboutWindow.vala:32 src/Gtk/AboutWindow.vala:170 msgid "Credits" msgstr "Zasługi" -#: src/Gtk/AboutWindow.vala:175 -msgid "Back" -msgstr "Wstecz" - -#: src/Gtk/AboutWindow.vala:185 src/Gtk/TerminalWindow.vala:152 +#: src/Gtk/AboutWindow.vala:33 src/Gtk/TerminalWindow.vala:151 msgid "Close" msgstr "Zamknij" -#: src/Gtk/AboutWindow.vala:204 +#: src/Gtk/AboutWindow.vala:166 +msgid "Back" +msgstr "Wstecz" + +#: src/Gtk/AboutWindow.vala:193 msgid "Authors" msgstr "Аutorzy" -#: src/Gtk/AboutWindow.vala:212 +#: src/Gtk/AboutWindow.vala:201 msgid "Contributions" msgstr "Wkład" -#: src/Gtk/AboutWindow.vala:220 +#: src/Gtk/AboutWindow.vala:209 msgid "Artists" msgstr "Artyści" -#: src/Gtk/AboutWindow.vala:228 +#: src/Gtk/AboutWindow.vala:217 msgid "Translators" msgstr "Tłumacze" -#: src/Gtk/AboutWindow.vala:236 +#: src/Gtk/AboutWindow.vala:225 msgid "Documenters" msgstr "Dokumentujący" -#: src/Gtk/AboutWindow.vala:244 +#: src/Gtk/AboutWindow.vala:233 msgid "Third Party Inclusions" msgstr "Włączenia stron trzecich" @@ -375,73 +375,73 @@ msgstr "Wypisz informacje debugujące" msgid "Show all options" msgstr "Pokaż wszystkie opcje" -#: src/Gtk/MainWindow.vala:160 +#: src/Gtk/MainWindow.vala:159 msgid "Lock" msgstr "Zablokuj" -#: src/Gtk/MainWindow.vala:177 +#: src/Gtk/MainWindow.vala:176 msgid "Status" msgstr "Status" -#: src/Gtk/MainWindow.vala:189 +#: src/Gtk/MainWindow.vala:188 msgid "Notes" msgstr "Notatki" -#: src/Gtk/MainWindow.vala:318 +#: src/Gtk/MainWindow.vala:317 msgid "Uninstall" msgstr "Odinstaluj" -#: src/Gtk/MainWindow.vala:324 +#: src/Gtk/MainWindow.vala:323 msgid "Changelog, build status, etc" msgstr "Dziennik zmian, status kompilacji itd." -#: src/Gtk/MainWindow.vala:333 +#: src/Gtk/MainWindow.vala:332 msgid "Uninstall Old" msgstr "Odinstaluj stare" -#: src/Gtk/MainWindow.vala:339 +#: src/Gtk/MainWindow.vala:338 msgid "Reload" msgstr "Wczytaj ponownie" -#: src/Gtk/MainWindow.vala:340 +#: src/Gtk/MainWindow.vala:339 msgid "Delete and reload all cached kernel info" msgstr "" "Usuń i ponownie załaduj wszystkie informacje o jądrze z pamięci podręcznej" -#: src/Gtk/MainWindow.vala:345 src/Gtk/SettingsDialog.vala:41 +#: src/Gtk/MainWindow.vala:344 src/Gtk/SettingsDialog.vala:41 msgid "Settings" msgstr "Ustawienia" -#: src/Gtk/MainWindow.vala:350 +#: src/Gtk/MainWindow.vala:349 msgid "About" msgstr "O programie" -#: src/Gtk/MainWindow.vala:355 +#: src/Gtk/MainWindow.vala:354 msgid "Exit" msgstr "Wyjdź" -#: src/Gtk/MainWindow.vala:436 +#: src/Gtk/MainWindow.vala:435 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Narzędzie uaktualniania jądra dla dystrybucji z rodziny Ubuntu" -#: src/Gtk/MainWindow.vala:437 +#: src/Gtk/MainWindow.vala:436 msgid "Forked" msgstr "Sforkowane" -#: src/Gtk/MainWindow.vala:437 +#: src/Gtk/MainWindow.vala:436 msgid "Original" msgstr "Oryginalne" -#: src/Gtk/MainWindow.vala:466 +#: src/Gtk/MainWindow.vala:465 msgid "Updating kernels" msgstr "Aktualizowanie jąder" -#: src/Gtk/MainWindow.vala:526 +#: src/Gtk/MainWindow.vala:525 msgid "available" msgstr "dostępne" -#: src/Gtk/MainWindow.vala:568 src/Gtk/MainWindow.vala:599 -#: src/Gtk/MainWindow.vala:624 +#: src/Gtk/MainWindow.vala:567 src/Gtk/MainWindow.vala:598 +#: src/Gtk/MainWindow.vala:623 msgid "DONE" msgstr "GOTOWE" @@ -526,7 +526,7 @@ msgstr "Polecenia" msgid "Done" msgstr "Gotowe" -#: src/Gtk/TerminalWindow.vala:142 +#: src/Gtk/TerminalWindow.vala:141 msgid "Cancel" msgstr "Anuluj" diff --git a/po/ru.po b/po/ru.po index 9ebef8f6..576d5aed 100644 --- a/po/ru.po +++ b/po/ru.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-04 18:30-0400\n" +"POT-Creation-Date: 2023-06-05 00:44-0400\n" "PO-Revision-Date: 2023-04-17 20:16+0300\n" "Last-Translator: Danik2343 \n" "Language-Team: Russian\n" @@ -66,7 +66,7 @@ msgstr "" msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:668 src/Gtk/MainWindow.vala:522 +#: src/Common/LinuxKernel.vala:668 src/Gtk/MainWindow.vala:521 msgid "Running" msgstr "Используется" @@ -86,7 +86,7 @@ msgstr "Доступные пакеты" msgid "Packages Installed" msgstr "Установленные пакеты" -#: src/Common/LinuxKernel.vala:791 src/lib/TeeJee.FileSystem.vala:99 +#: src/Common/LinuxKernel.vala:791 src/lib/TeeJee.FileSystem.vala:94 msgid "File not found" msgstr "Файл не найден" @@ -94,7 +94,7 @@ msgstr "Файл не найден" msgid "Available Kernels" msgstr "Доступные ядра" -#: src/Common/LinuxKernel.vala:920 src/Gtk/MainWindow.vala:136 +#: src/Common/LinuxKernel.vala:920 src/Gtk/MainWindow.vala:135 msgid "Kernel" msgstr "Ядро" @@ -266,7 +266,7 @@ msgstr "Установить указанное ядро" msgid "Uninstall specified kernels" msgstr "Установить указанное ядро" -#: src/Console/AppConsole.vala:51 src/Gtk/MainWindow.vala:334 +#: src/Console/AppConsole.vala:51 src/Gtk/MainWindow.vala:333 msgid "Uninstall all but the highest installed version" msgstr "Удаление всех установленных версий, кроме самой высокой" @@ -331,7 +331,7 @@ msgstr "Доступно ядро %s" msgid "Show" msgstr "Показать" -#: src/Console/AppConsole.vala:267 src/Gtk/MainWindow.vala:313 +#: src/Console/AppConsole.vala:267 src/Gtk/MainWindow.vala:312 msgid "Install" msgstr "Установить" @@ -339,39 +339,39 @@ msgstr "Установить" msgid "Previously notified" msgstr "Предварительно уведомлено" -#: src/Gtk/AboutWindow.vala:162 src/Gtk/AboutWindow.vala:179 +#: src/Gtk/AboutWindow.vala:32 src/Gtk/AboutWindow.vala:170 msgid "Credits" msgstr "Создатели" -#: src/Gtk/AboutWindow.vala:175 -msgid "Back" -msgstr "Назад" - -#: src/Gtk/AboutWindow.vala:185 src/Gtk/TerminalWindow.vala:152 +#: src/Gtk/AboutWindow.vala:33 src/Gtk/TerminalWindow.vala:151 msgid "Close" msgstr "Закрыть" -#: src/Gtk/AboutWindow.vala:204 +#: src/Gtk/AboutWindow.vala:166 +msgid "Back" +msgstr "Назад" + +#: src/Gtk/AboutWindow.vala:193 msgid "Authors" msgstr "Авторы" -#: src/Gtk/AboutWindow.vala:212 +#: src/Gtk/AboutWindow.vala:201 msgid "Contributions" msgstr "Взносы" -#: src/Gtk/AboutWindow.vala:220 +#: src/Gtk/AboutWindow.vala:209 msgid "Artists" msgstr "Художники" -#: src/Gtk/AboutWindow.vala:228 +#: src/Gtk/AboutWindow.vala:217 msgid "Translators" msgstr "Переводчики" -#: src/Gtk/AboutWindow.vala:236 +#: src/Gtk/AboutWindow.vala:225 msgid "Documenters" msgstr "Составители документации" -#: src/Gtk/AboutWindow.vala:244 +#: src/Gtk/AboutWindow.vala:233 msgid "Third Party Inclusions" msgstr "Включая сторонние инструменты" @@ -387,72 +387,72 @@ msgstr "Распечатать отладочную информацию" msgid "Show all options" msgstr "Показать все параметры" -#: src/Gtk/MainWindow.vala:160 +#: src/Gtk/MainWindow.vala:159 msgid "Lock" msgstr "" -#: src/Gtk/MainWindow.vala:177 +#: src/Gtk/MainWindow.vala:176 msgid "Status" msgstr "Состояние" -#: src/Gtk/MainWindow.vala:189 +#: src/Gtk/MainWindow.vala:188 msgid "Notes" msgstr "Примечания" -#: src/Gtk/MainWindow.vala:318 +#: src/Gtk/MainWindow.vala:317 msgid "Uninstall" msgstr "Удалить" -#: src/Gtk/MainWindow.vala:324 +#: src/Gtk/MainWindow.vala:323 msgid "Changelog, build status, etc" msgstr "Список изменений, статус сборки и т.д" -#: src/Gtk/MainWindow.vala:333 +#: src/Gtk/MainWindow.vala:332 msgid "Uninstall Old" msgstr "Удалить старые" -#: src/Gtk/MainWindow.vala:339 +#: src/Gtk/MainWindow.vala:338 msgid "Reload" msgstr "Перезагрузить" -#: src/Gtk/MainWindow.vala:340 +#: src/Gtk/MainWindow.vala:339 msgid "Delete and reload all cached kernel info" msgstr "" -#: src/Gtk/MainWindow.vala:345 src/Gtk/SettingsDialog.vala:41 +#: src/Gtk/MainWindow.vala:344 src/Gtk/SettingsDialog.vala:41 msgid "Settings" msgstr "Настройки" -#: src/Gtk/MainWindow.vala:350 +#: src/Gtk/MainWindow.vala:349 msgid "About" msgstr "О программе" -#: src/Gtk/MainWindow.vala:355 +#: src/Gtk/MainWindow.vala:354 msgid "Exit" msgstr "Выход" -#: src/Gtk/MainWindow.vala:436 +#: src/Gtk/MainWindow.vala:435 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Программа обновления ядра для дистрибутивов на базе Ubuntu" -#: src/Gtk/MainWindow.vala:437 +#: src/Gtk/MainWindow.vala:436 msgid "Forked" msgstr "Форк" -#: src/Gtk/MainWindow.vala:437 +#: src/Gtk/MainWindow.vala:436 msgid "Original" msgstr "Оригинал" -#: src/Gtk/MainWindow.vala:466 +#: src/Gtk/MainWindow.vala:465 msgid "Updating kernels" msgstr "Обновление ядер" -#: src/Gtk/MainWindow.vala:526 +#: src/Gtk/MainWindow.vala:525 msgid "available" msgstr "доступно" -#: src/Gtk/MainWindow.vala:568 src/Gtk/MainWindow.vala:599 -#: src/Gtk/MainWindow.vala:624 +#: src/Gtk/MainWindow.vala:567 src/Gtk/MainWindow.vala:598 +#: src/Gtk/MainWindow.vala:623 msgid "DONE" msgstr "" @@ -537,7 +537,7 @@ msgstr "Комманды" msgid "Done" msgstr "" -#: src/Gtk/TerminalWindow.vala:142 +#: src/Gtk/TerminalWindow.vala:141 msgid "Cancel" msgstr "Отмена" diff --git a/po/sv.po b/po/sv.po index 312eb60a..ea1d1d5f 100644 --- a/po/sv.po +++ b/po/sv.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-04 18:30-0400\n" +"POT-Creation-Date: 2023-06-05 00:44-0400\n" "PO-Revision-Date: 2018-01-13 16:56+0100\n" "Last-Translator: Åke Engelbrektson \n" "Language-Team:Swedish\n" @@ -66,7 +66,7 @@ msgstr "" msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:668 src/Gtk/MainWindow.vala:522 +#: src/Common/LinuxKernel.vala:668 src/Gtk/MainWindow.vala:521 msgid "Running" msgstr "Körs" @@ -86,7 +86,7 @@ msgstr "Tillgängliga paket" msgid "Packages Installed" msgstr "Installerade paket" -#: src/Common/LinuxKernel.vala:791 src/lib/TeeJee.FileSystem.vala:99 +#: src/Common/LinuxKernel.vala:791 src/lib/TeeJee.FileSystem.vala:94 msgid "File not found" msgstr "Filen kan inte hittas" @@ -94,7 +94,7 @@ msgstr "Filen kan inte hittas" msgid "Available Kernels" msgstr "Tillgängliga kärnor" -#: src/Common/LinuxKernel.vala:920 src/Gtk/MainWindow.vala:136 +#: src/Common/LinuxKernel.vala:920 src/Gtk/MainWindow.vala:135 msgid "Kernel" msgstr "Kärna" @@ -265,7 +265,7 @@ msgstr "Avinstallera angiven kärna" msgid "Uninstall specified kernels" msgstr "Avinstallera angiven kärna" -#: src/Console/AppConsole.vala:51 src/Gtk/MainWindow.vala:334 +#: src/Console/AppConsole.vala:51 src/Gtk/MainWindow.vala:333 msgid "Uninstall all but the highest installed version" msgstr "Avinstallera alla utom den högsta installerade versionen" @@ -330,7 +330,7 @@ msgstr "Kernel %s tillgängliga" msgid "Show" msgstr "Visa" -#: src/Console/AppConsole.vala:267 src/Gtk/MainWindow.vala:313 +#: src/Console/AppConsole.vala:267 src/Gtk/MainWindow.vala:312 msgid "Install" msgstr "Installera" @@ -338,39 +338,39 @@ msgstr "Installera" msgid "Previously notified" msgstr "Tidigare anmält" -#: src/Gtk/AboutWindow.vala:162 src/Gtk/AboutWindow.vala:179 +#: src/Gtk/AboutWindow.vala:32 src/Gtk/AboutWindow.vala:170 msgid "Credits" msgstr "Tack" -#: src/Gtk/AboutWindow.vala:175 -msgid "Back" -msgstr "Tillbaka" - -#: src/Gtk/AboutWindow.vala:185 src/Gtk/TerminalWindow.vala:152 +#: src/Gtk/AboutWindow.vala:33 src/Gtk/TerminalWindow.vala:151 msgid "Close" msgstr "Stäng" -#: src/Gtk/AboutWindow.vala:204 +#: src/Gtk/AboutWindow.vala:166 +msgid "Back" +msgstr "Tillbaka" + +#: src/Gtk/AboutWindow.vala:193 msgid "Authors" msgstr "Utvecklare" -#: src/Gtk/AboutWindow.vala:212 +#: src/Gtk/AboutWindow.vala:201 msgid "Contributions" msgstr "Bidrag" -#: src/Gtk/AboutWindow.vala:220 +#: src/Gtk/AboutWindow.vala:209 msgid "Artists" msgstr "Artister" -#: src/Gtk/AboutWindow.vala:228 +#: src/Gtk/AboutWindow.vala:217 msgid "Translators" msgstr "Översättare" -#: src/Gtk/AboutWindow.vala:236 +#: src/Gtk/AboutWindow.vala:225 msgid "Documenters" msgstr "Dokumentalister" -#: src/Gtk/AboutWindow.vala:244 +#: src/Gtk/AboutWindow.vala:233 msgid "Third Party Inclusions" msgstr "Tredjepartsverktyg" @@ -386,72 +386,72 @@ msgstr "Skriv ut felsökningsinformation" msgid "Show all options" msgstr "Visa alla alternativ" -#: src/Gtk/MainWindow.vala:160 +#: src/Gtk/MainWindow.vala:159 msgid "Lock" msgstr "" -#: src/Gtk/MainWindow.vala:177 +#: src/Gtk/MainWindow.vala:176 msgid "Status" msgstr "Status" -#: src/Gtk/MainWindow.vala:189 +#: src/Gtk/MainWindow.vala:188 msgid "Notes" msgstr "Anteckningar" -#: src/Gtk/MainWindow.vala:318 +#: src/Gtk/MainWindow.vala:317 msgid "Uninstall" msgstr "Avinstallera" -#: src/Gtk/MainWindow.vala:324 +#: src/Gtk/MainWindow.vala:323 msgid "Changelog, build status, etc" msgstr "" -#: src/Gtk/MainWindow.vala:333 +#: src/Gtk/MainWindow.vala:332 msgid "Uninstall Old" msgstr "Avinstallera Gamla" -#: src/Gtk/MainWindow.vala:339 +#: src/Gtk/MainWindow.vala:338 msgid "Reload" msgstr "Reload" -#: src/Gtk/MainWindow.vala:340 +#: src/Gtk/MainWindow.vala:339 msgid "Delete and reload all cached kernel info" msgstr "" -#: src/Gtk/MainWindow.vala:345 src/Gtk/SettingsDialog.vala:41 +#: src/Gtk/MainWindow.vala:344 src/Gtk/SettingsDialog.vala:41 msgid "Settings" msgstr "Inställningar" -#: src/Gtk/MainWindow.vala:350 +#: src/Gtk/MainWindow.vala:349 msgid "About" msgstr "Om" -#: src/Gtk/MainWindow.vala:355 +#: src/Gtk/MainWindow.vala:354 msgid "Exit" msgstr "Utgång" -#: src/Gtk/MainWindow.vala:436 +#: src/Gtk/MainWindow.vala:435 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Kärnuppgraderingsverktyg för Ubuntu-baserade distributioner" -#: src/Gtk/MainWindow.vala:437 +#: src/Gtk/MainWindow.vala:436 msgid "Forked" msgstr "Kluven" -#: src/Gtk/MainWindow.vala:437 +#: src/Gtk/MainWindow.vala:436 msgid "Original" msgstr "Original" -#: src/Gtk/MainWindow.vala:466 +#: src/Gtk/MainWindow.vala:465 msgid "Updating kernels" msgstr "Uppdatera kärnor" -#: src/Gtk/MainWindow.vala:526 +#: src/Gtk/MainWindow.vala:525 msgid "available" msgstr "tillgänglig" -#: src/Gtk/MainWindow.vala:568 src/Gtk/MainWindow.vala:599 -#: src/Gtk/MainWindow.vala:624 +#: src/Gtk/MainWindow.vala:567 src/Gtk/MainWindow.vala:598 +#: src/Gtk/MainWindow.vala:623 msgid "DONE" msgstr "" @@ -536,7 +536,7 @@ msgstr "Kommandon" msgid "Done" msgstr "" -#: src/Gtk/TerminalWindow.vala:142 +#: src/Gtk/TerminalWindow.vala:141 msgid "Cancel" msgstr "Avbryt" diff --git a/po/tr.po b/po/tr.po index 2dfdacea..18c0b9fd 100644 --- a/po/tr.po +++ b/po/tr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-04 18:30-0400\n" +"POT-Creation-Date: 2023-06-05 00:44-0400\n" "PO-Revision-Date: 2022-08-06 16:48+0300\n" "Last-Translator: Sabri Ünal \n" "Language-Team: Turkish\n" @@ -66,7 +66,7 @@ msgstr "" msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:668 src/Gtk/MainWindow.vala:522 +#: src/Common/LinuxKernel.vala:668 src/Gtk/MainWindow.vala:521 msgid "Running" msgstr "Çalışıyor" @@ -86,7 +86,7 @@ msgstr "Mevcut Paketler" msgid "Packages Installed" msgstr "Kurulu Paketler" -#: src/Common/LinuxKernel.vala:791 src/lib/TeeJee.FileSystem.vala:99 +#: src/Common/LinuxKernel.vala:791 src/lib/TeeJee.FileSystem.vala:94 msgid "File not found" msgstr "Dosya bulunamadı" @@ -94,7 +94,7 @@ msgstr "Dosya bulunamadı" msgid "Available Kernels" msgstr "Mevcut Çekirdekler" -#: src/Common/LinuxKernel.vala:920 src/Gtk/MainWindow.vala:136 +#: src/Common/LinuxKernel.vala:920 src/Gtk/MainWindow.vala:135 msgid "Kernel" msgstr "Çekirdek" @@ -267,7 +267,7 @@ msgstr "Belirtilen çekirdeğini kaldır" msgid "Uninstall specified kernels" msgstr "Belirtilen çekirdeğini kaldır" -#: src/Console/AppConsole.vala:51 src/Gtk/MainWindow.vala:334 +#: src/Console/AppConsole.vala:51 src/Gtk/MainWindow.vala:333 msgid "Uninstall all but the highest installed version" msgstr "En yüksek yüklü sürüm dışındaki tüm sürümleri kaldırın" @@ -332,7 +332,7 @@ msgstr "Çekirdek %s Kullanılabilir" msgid "Show" msgstr "Göster" -#: src/Console/AppConsole.vala:267 src/Gtk/MainWindow.vala:313 +#: src/Console/AppConsole.vala:267 src/Gtk/MainWindow.vala:312 msgid "Install" msgstr "Kur" @@ -340,39 +340,39 @@ msgstr "Kur" msgid "Previously notified" msgstr "Daha önce bildirilmiş" -#: src/Gtk/AboutWindow.vala:162 src/Gtk/AboutWindow.vala:179 +#: src/Gtk/AboutWindow.vala:32 src/Gtk/AboutWindow.vala:170 msgid "Credits" msgstr "Hazırlayanlar" -#: src/Gtk/AboutWindow.vala:175 -msgid "Back" -msgstr "Geri" - -#: src/Gtk/AboutWindow.vala:185 src/Gtk/TerminalWindow.vala:152 +#: src/Gtk/AboutWindow.vala:33 src/Gtk/TerminalWindow.vala:151 msgid "Close" msgstr "Kapat" -#: src/Gtk/AboutWindow.vala:204 +#: src/Gtk/AboutWindow.vala:166 +msgid "Back" +msgstr "Geri" + +#: src/Gtk/AboutWindow.vala:193 msgid "Authors" msgstr "Yazar" -#: src/Gtk/AboutWindow.vala:212 +#: src/Gtk/AboutWindow.vala:201 msgid "Contributions" msgstr "Destek verenler" -#: src/Gtk/AboutWindow.vala:220 +#: src/Gtk/AboutWindow.vala:209 msgid "Artists" msgstr "Sanatçılar" -#: src/Gtk/AboutWindow.vala:228 +#: src/Gtk/AboutWindow.vala:217 msgid "Translators" msgstr "Çevirenler" -#: src/Gtk/AboutWindow.vala:236 +#: src/Gtk/AboutWindow.vala:225 msgid "Documenters" msgstr "Belgelendirenler" -#: src/Gtk/AboutWindow.vala:244 +#: src/Gtk/AboutWindow.vala:233 msgid "Third Party Inclusions" msgstr "Üçüncü Taraf Eklemeler" @@ -388,72 +388,72 @@ msgstr "Hata ayıklama bilgisini yazdır" msgid "Show all options" msgstr "Tüm seçenekleri göster" -#: src/Gtk/MainWindow.vala:160 +#: src/Gtk/MainWindow.vala:159 msgid "Lock" msgstr "" -#: src/Gtk/MainWindow.vala:177 +#: src/Gtk/MainWindow.vala:176 msgid "Status" msgstr "Durum" -#: src/Gtk/MainWindow.vala:189 +#: src/Gtk/MainWindow.vala:188 msgid "Notes" msgstr "Notlar" -#: src/Gtk/MainWindow.vala:318 +#: src/Gtk/MainWindow.vala:317 msgid "Uninstall" msgstr "Kaldır" -#: src/Gtk/MainWindow.vala:324 +#: src/Gtk/MainWindow.vala:323 msgid "Changelog, build status, etc" msgstr "" -#: src/Gtk/MainWindow.vala:333 +#: src/Gtk/MainWindow.vala:332 msgid "Uninstall Old" msgstr "Eskileri Kaldır" -#: src/Gtk/MainWindow.vala:339 +#: src/Gtk/MainWindow.vala:338 msgid "Reload" msgstr "Arjantin" -#: src/Gtk/MainWindow.vala:340 +#: src/Gtk/MainWindow.vala:339 msgid "Delete and reload all cached kernel info" msgstr "" -#: src/Gtk/MainWindow.vala:345 src/Gtk/SettingsDialog.vala:41 +#: src/Gtk/MainWindow.vala:344 src/Gtk/SettingsDialog.vala:41 msgid "Settings" msgstr "Ayarlar" -#: src/Gtk/MainWindow.vala:350 +#: src/Gtk/MainWindow.vala:349 msgid "About" msgstr "Hakkında" -#: src/Gtk/MainWindow.vala:355 +#: src/Gtk/MainWindow.vala:354 msgid "Exit" msgstr "Çıkış" -#: src/Gtk/MainWindow.vala:436 +#: src/Gtk/MainWindow.vala:435 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Ubuntu tabanlı dağıtımlar için çekirdek güncelleme aracı" -#: src/Gtk/MainWindow.vala:437 +#: src/Gtk/MainWindow.vala:436 msgid "Forked" msgstr "Çatallandı" -#: src/Gtk/MainWindow.vala:437 +#: src/Gtk/MainWindow.vala:436 msgid "Original" msgstr "Özgün" -#: src/Gtk/MainWindow.vala:466 +#: src/Gtk/MainWindow.vala:465 msgid "Updating kernels" msgstr "Çekirdekleri güncelleme" -#: src/Gtk/MainWindow.vala:526 +#: src/Gtk/MainWindow.vala:525 msgid "available" msgstr "mevcut" -#: src/Gtk/MainWindow.vala:568 src/Gtk/MainWindow.vala:599 -#: src/Gtk/MainWindow.vala:624 +#: src/Gtk/MainWindow.vala:567 src/Gtk/MainWindow.vala:598 +#: src/Gtk/MainWindow.vala:623 msgid "DONE" msgstr "" @@ -538,7 +538,7 @@ msgstr "Komutlar" msgid "Done" msgstr "" -#: src/Gtk/TerminalWindow.vala:142 +#: src/Gtk/TerminalWindow.vala:141 msgid "Cancel" msgstr "İptal Et" diff --git a/po/uk.po b/po/uk.po index 0d3ef6a8..f07ad37e 100644 --- a/po/uk.po +++ b/po/uk.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-04 18:30-0400\n" +"POT-Creation-Date: 2023-06-05 00:44-0400\n" "PO-Revision-Date: 2019-07-25 11:00+0300\n" "Last-Translator: Serhii Golovko \n" "Language-Team: Ukranian\n" @@ -66,7 +66,7 @@ msgstr "заблокований" msgid "is locked." msgstr "заблоковано." -#: src/Common/LinuxKernel.vala:668 src/Gtk/MainWindow.vala:522 +#: src/Common/LinuxKernel.vala:668 src/Gtk/MainWindow.vala:521 msgid "Running" msgstr "Використовується" @@ -86,7 +86,7 @@ msgstr "Доступні пакети" msgid "Packages Installed" msgstr "Встановлені пакети" -#: src/Common/LinuxKernel.vala:791 src/lib/TeeJee.FileSystem.vala:99 +#: src/Common/LinuxKernel.vala:791 src/lib/TeeJee.FileSystem.vala:94 msgid "File not found" msgstr "Файл не знайдено" @@ -94,7 +94,7 @@ msgstr "Файл не знайдено" msgid "Available Kernels" msgstr "Доступні ядра" -#: src/Common/LinuxKernel.vala:920 src/Gtk/MainWindow.vala:136 +#: src/Common/LinuxKernel.vala:920 src/Gtk/MainWindow.vala:135 msgid "Kernel" msgstr "Ядро" @@ -255,7 +255,7 @@ msgstr "Встановити вказані ядра" msgid "Uninstall specified kernels" msgstr "Видалити вказані ядра" -#: src/Console/AppConsole.vala:51 src/Gtk/MainWindow.vala:334 +#: src/Console/AppConsole.vala:51 src/Gtk/MainWindow.vala:333 msgid "Uninstall all but the highest installed version" msgstr "Видаліть усі, крім найвищої встановленої версії" @@ -318,7 +318,7 @@ msgstr "Ядро %s Доступне" msgid "Show" msgstr "Показати" -#: src/Console/AppConsole.vala:267 src/Gtk/MainWindow.vala:313 +#: src/Console/AppConsole.vala:267 src/Gtk/MainWindow.vala:312 msgid "Install" msgstr "Встановити" @@ -326,39 +326,39 @@ msgstr "Встановити" msgid "Previously notified" msgstr "Попередньо повідомлено" -#: src/Gtk/AboutWindow.vala:162 src/Gtk/AboutWindow.vala:179 +#: src/Gtk/AboutWindow.vala:32 src/Gtk/AboutWindow.vala:170 msgid "Credits" msgstr "Творці" -#: src/Gtk/AboutWindow.vala:175 -msgid "Back" -msgstr "Назад" - -#: src/Gtk/AboutWindow.vala:185 src/Gtk/TerminalWindow.vala:152 +#: src/Gtk/AboutWindow.vala:33 src/Gtk/TerminalWindow.vala:151 msgid "Close" msgstr "Закрити" -#: src/Gtk/AboutWindow.vala:204 +#: src/Gtk/AboutWindow.vala:166 +msgid "Back" +msgstr "Назад" + +#: src/Gtk/AboutWindow.vala:193 msgid "Authors" msgstr "Автори" -#: src/Gtk/AboutWindow.vala:212 +#: src/Gtk/AboutWindow.vala:201 msgid "Contributions" msgstr "Внески" -#: src/Gtk/AboutWindow.vala:220 +#: src/Gtk/AboutWindow.vala:209 msgid "Artists" msgstr "Художники" -#: src/Gtk/AboutWindow.vala:228 +#: src/Gtk/AboutWindow.vala:217 msgid "Translators" msgstr "Перекладачі" -#: src/Gtk/AboutWindow.vala:236 +#: src/Gtk/AboutWindow.vala:225 msgid "Documenters" msgstr "Документатори" -#: src/Gtk/AboutWindow.vala:244 +#: src/Gtk/AboutWindow.vala:233 msgid "Third Party Inclusions" msgstr "Включення третіх осіб" @@ -374,72 +374,72 @@ msgstr "Роздрукувати зневадження" msgid "Show all options" msgstr "Показати усі параметри" -#: src/Gtk/MainWindow.vala:160 +#: src/Gtk/MainWindow.vala:159 msgid "Lock" msgstr "Блок" -#: src/Gtk/MainWindow.vala:177 +#: src/Gtk/MainWindow.vala:176 msgid "Status" msgstr "Стан" -#: src/Gtk/MainWindow.vala:189 +#: src/Gtk/MainWindow.vala:188 msgid "Notes" msgstr "Нотатки" -#: src/Gtk/MainWindow.vala:318 +#: src/Gtk/MainWindow.vala:317 msgid "Uninstall" msgstr "Видалити" -#: src/Gtk/MainWindow.vala:324 +#: src/Gtk/MainWindow.vala:323 msgid "Changelog, build status, etc" msgstr "Журнал змін, статус збірки тощо" -#: src/Gtk/MainWindow.vala:333 +#: src/Gtk/MainWindow.vala:332 msgid "Uninstall Old" msgstr "Видалити старе" -#: src/Gtk/MainWindow.vala:339 +#: src/Gtk/MainWindow.vala:338 msgid "Reload" msgstr "Перезавантажити" -#: src/Gtk/MainWindow.vala:340 +#: src/Gtk/MainWindow.vala:339 msgid "Delete and reload all cached kernel info" msgstr "Видаліть і перезавантажте всю кешовану інформацію про ядро" -#: src/Gtk/MainWindow.vala:345 src/Gtk/SettingsDialog.vala:41 +#: src/Gtk/MainWindow.vala:344 src/Gtk/SettingsDialog.vala:41 msgid "Settings" msgstr "Налаштування" -#: src/Gtk/MainWindow.vala:350 +#: src/Gtk/MainWindow.vala:349 msgid "About" msgstr "Про программу" -#: src/Gtk/MainWindow.vala:355 +#: src/Gtk/MainWindow.vala:354 msgid "Exit" msgstr "Вихід" -#: src/Gtk/MainWindow.vala:436 +#: src/Gtk/MainWindow.vala:435 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Програма оновлення ядра для дистрибутивів на базі Ubuntu" -#: src/Gtk/MainWindow.vala:437 +#: src/Gtk/MainWindow.vala:436 msgid "Forked" msgstr "Двоєний" -#: src/Gtk/MainWindow.vala:437 +#: src/Gtk/MainWindow.vala:436 msgid "Original" msgstr "Оригінал" -#: src/Gtk/MainWindow.vala:466 +#: src/Gtk/MainWindow.vala:465 msgid "Updating kernels" msgstr "Оновлення ядер" -#: src/Gtk/MainWindow.vala:526 +#: src/Gtk/MainWindow.vala:525 msgid "available" msgstr "доступний" -#: src/Gtk/MainWindow.vala:568 src/Gtk/MainWindow.vala:599 -#: src/Gtk/MainWindow.vala:624 +#: src/Gtk/MainWindow.vala:567 src/Gtk/MainWindow.vala:598 +#: src/Gtk/MainWindow.vala:623 msgid "DONE" msgstr "ГОТОВО" @@ -524,7 +524,7 @@ msgstr "Команди" msgid "Done" msgstr "" -#: src/Gtk/TerminalWindow.vala:142 +#: src/Gtk/TerminalWindow.vala:141 msgid "Cancel" msgstr "Відміна" diff --git a/src/Gtk/AboutWindow.vala b/src/Gtk/AboutWindow.vala index 91d57563..d68d84ad 100644 --- a/src/Gtk/AboutWindow.vala +++ b/src/Gtk/AboutWindow.vala @@ -28,20 +28,16 @@ using TeeJee.Misc; using l.misc; public class AboutWindow : Dialog { - private Box vbox_main; - private Box vbox_logo; - private Box vbox_credits; - private Box vbox_lines; - private Box hbox_action; - private Button btn_credits; - private Button btn_close; - - private Gtk.Image img_logo; - private Label lbl_program_name; - private Label lbl_version; - private Label lbl_comments; - private LinkButton lbtn_website; - private Label lbl_copyright; + + private Button btn_credits = new Button.with_label(_("Credits")); + private Button btn_close = new Button.with_label(_("Close")); + private LinkButton lbtn_website = new LinkButton(""); + private Image img_logo = new Gtk.Image(); + private Label lbl_program_name = new Label(""); + private Label lbl_version = new Label(""); + private Label lbl_comments = new Label(""); + private Label lbl_copyright = new Label(""); + private Box vbox_lines = new Box(Orientation.VERTICAL,0); private string[] _artists; public string[] artists { get { return _artists; } set { _artists = value; } } @@ -91,62 +87,56 @@ public class AboutWindow : Dialog { set_modal (true); set_default_size (450, 400); - vbox_main = get_content_area(); + var vbox_main = get_content_area(); + vbox_main.margin = 6; vbox_main.spacing = 6; - vbox_logo = new Box(Orientation.VERTICAL,0); + var vbox_logo = new Box(Orientation.VERTICAL,0); vbox_main.add(vbox_logo); - vbox_credits = new Box(Orientation.VERTICAL,0); + var vbox_credits = new Box(Orientation.VERTICAL,0); vbox_credits.no_show_all = true; vbox_main.add(vbox_credits); - vbox_lines = new Box(Orientation.VERTICAL,0); vbox_lines.margin_top = 10; - //logo - img_logo = new Gtk.Image(); + // logo img_logo.margin_top = 6; img_logo.margin_bottom = 6; vbox_logo.add(img_logo); - //program_name - lbl_program_name = new Label(""); + // program_name lbl_program_name.set_use_markup(true); vbox_logo.add(lbl_program_name); - //version - lbl_version = new Label(""); + // version lbl_version.set_use_markup(true); lbl_version.margin_top = 5; vbox_logo.add(lbl_version); - //comments - lbl_comments = new Label(""); + // comments lbl_comments.set_use_markup(true); lbl_comments.margin_top = 10; vbox_logo.add(lbl_comments); - //website - lbtn_website = new LinkButton(""); + // website lbtn_website.margin_top = 5; vbox_logo.add(lbtn_website); lbtn_website.activate_link.connect(()=>{ uri_open(lbtn_website.uri); return true; }); - //copyright - lbl_copyright = new Label(""); + // copyright lbl_copyright.set_use_markup(true); lbl_copyright.margin_top = 5; vbox_logo.add(lbl_copyright); - //spacer_bottom + // spacer_bottom var spacer_bottom = new Label(""); spacer_bottom.margin_top = 20; vbox_logo.add(spacer_bottom); - //scroller + // scroller var sw_credits = new ScrolledWindow(null, null); sw_credits.set_shadow_type(ShadowType.ETCHED_IN); sw_credits.expand = true; @@ -154,12 +144,13 @@ public class AboutWindow : Dialog { vbox_credits.add(sw_credits); sw_credits.add(vbox_lines); - //hbox_commands -------------------------------------------------- + // hbox_commands -------------------------------------------------- - hbox_action = (Box) get_action_area(); + var hbox_action = new Box(Gtk.Orientation.HORIZONTAL, 6); + hbox_action.halign = Gtk.Align.END; + vbox_main.add(hbox_action); - //btn_credits - btn_credits = new Button.with_label(_("Credits")); + // credits btn_credits.set_image (new Image.from_icon_name("gtk-about", IconSize.MENU)); hbox_action.add(btn_credits); @@ -181,12 +172,11 @@ public class AboutWindow : Dialog { } }); - //btn_close - btn_close = new Button.with_label(_("Close")); + // close btn_close.set_image (new Image.from_icon_name("gtk-close", IconSize.MENU)); hbox_action.add(btn_close); - btn_close.clicked.connect(()=>{ this.destroy(); }); + } public void initialize() { @@ -197,7 +187,6 @@ public class AboutWindow : Dialog { lbl_comments.label = "%s".printf(comments); lbtn_website.uri = website; lbtn_website.label = website_label; - //lbl_copyright.label = "%s".printf(copyright); lbl_copyright.label = "%s".printf(copyright); if (authors.length > 0){ diff --git a/src/Gtk/MainWindow.vala b/src/Gtk/MainWindow.vala index 56636ed7..a42d707b 100644 --- a/src/Gtk/MainWindow.vala +++ b/src/Gtk/MainWindow.vala @@ -26,7 +26,6 @@ using Gtk; using TeeJee.FileSystem; using TeeJee.ProcessHelper; using l.gtk; -using TeeJee.Misc; using l.misc; public class MainWindow : Window { diff --git a/src/Gtk/TerminalWindow.vala b/src/Gtk/TerminalWindow.vala index d9db11bb..05366075 100644 --- a/src/Gtk/TerminalWindow.vala +++ b/src/Gtk/TerminalWindow.vala @@ -87,8 +87,7 @@ public class TerminalWindow : Gtk.Window { // vbox_main --------------- vbox_main = new Gtk.Box(Gtk.Orientation.VERTICAL, 0); - - add (vbox_main); + add(vbox_main); // terminal ---------------------- diff --git a/src/lib/TeeJee.FileSystem.vala b/src/lib/TeeJee.FileSystem.vala index 7fdaf3a8..87d59c6e 100644 --- a/src/lib/TeeJee.FileSystem.vala +++ b/src/lib/TeeJee.FileSystem.vala @@ -24,22 +24,20 @@ namespace TeeJee.FileSystem { - using TeeJee.ProcessHelper; - using TeeJee.Misc; using l.misc; public string file_parent(string f) { - //log_debug("file_parent("+f+")"); + //vprint("file_parent("+f+")",4); return File.new_for_path(f).get_parent().get_path(); } public string file_basename(string f) { - //log_debug("file_basename("+f+")"); + //vprint("file_basename("+f+")",4); return File.new_for_path(f).get_basename(); } public bool file_exists(string file_path) { - //log_debug("file_exists("+file_path+")"); + //vprint("file_exists("+file_path+")",4); return (FileUtils.test(file_path, GLib.FileTest.EXISTS) && !FileUtils.test(file_path, GLib.FileTest.IS_DIR)); } @@ -56,18 +54,15 @@ namespace TeeJee.FileSystem { return txt; } - public bool file_write(string f, string contents) { - vprint("file_write("+f+")",3); + public bool file_write(string path, string data) { + vprint("file_write("+path+")",3); try { - dir_create(file_parent(f)); - var file = File.new_for_path(f); - //delete_r(f); - //var file_stream = file.create(); + dir_create(file_parent(path)); + var file = File.new_for_path(path); var file_stream = file.replace(null, false, FileCreateFlags.REPLACE_DESTINATION); - //var file_stream = file.replace(null, false, FileCreateFlags.NONE); var data_stream = new DataOutputStream(file_stream); - data_stream.put_string(contents); + data_stream.put_string(data); data_stream.close(); return true; } catch (Error e) { @@ -111,23 +106,6 @@ namespace TeeJee.FileSystem { catch (Error e) { vprint(e.message,1,stderr); } } - public int64 file_get_size(string file_path) { - try { - File file = File.parse_name(file_path); - if (FileUtils.test(file_path, GLib.FileTest.EXISTS)) { - if (FileUtils.test(file_path, GLib.FileTest.IS_REGULAR) - && !FileUtils.test(file_path, GLib.FileTest.IS_SYMLINK)) { - return file.query_info("standard::size",0).get_size(); - } - } - } - catch (Error e) { - vprint(e.message,1,stderr); - } - - return -1; - } - public bool dir_create(string d) { vprint("dir_create("+d+")",3); try { From 6fc8d716a7aaf101d046fd1a1d1fb06cf7766073 Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Mon, 5 Jun 2023 03:15:50 -0400 Subject: [PATCH 358/567] preliminary support for vte Terminal spawn_async to shut up the last compiler warning --- Makefile | 2 +- po/messages.pot | 2 +- src/Gtk/TerminalWindow.vala | 50 +++++++++++++++++++++---------- src/lib/TeeJee.ProcessHelper.vala | 2 +- 4 files changed, 38 insertions(+), 18 deletions(-) diff --git a/Makefile b/Makefile index 6745f389..7b13bfd7 100644 --- a/Makefile +++ b/Makefile @@ -2,7 +2,7 @@ SHELL := /bin/bash CFLAGS := -O2 -VALACFLAGS := #-D LOCK_TOGGLES_IN_KERNEL_COLUMN +VALACFLAGS := #-D LOCK_TOGGLES_IN_KERNEL_COLUMN #-D VTE_ASYNC prefix := /usr bindir := $(prefix)/bin diff --git a/po/messages.pot b/po/messages.pot index d30ab59a..8f4fc624 100644 --- a/po/messages.pot +++ b/po/messages.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline 1.3.9\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-05 00:44-0400\n" +"POT-Creation-Date: 2023-06-05 03:13-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/src/Gtk/TerminalWindow.vala b/src/Gtk/TerminalWindow.vala index 05366075..c0455b2f 100644 --- a/src/Gtk/TerminalWindow.vala +++ b/src/Gtk/TerminalWindow.vala @@ -171,33 +171,53 @@ public class TerminalWindow : Gtk.Window { process_quit(child_pid); } +// $ make clean all VALACFLAGS="-D VTE_ASYNC" && sudo make install VALACFLAGS="-D VTE_ASYNC" +#if VTE_ASYNC + public void t_callback(Vte.Terminal terminal, Pid pid, Error? error) { + if (error != null) { vprint("Error setting up terminal: "+error.message,1,stderr); return; } + vprint("Terminal set up, process ID: "+pid.to_string(),4); + child_pid = pid; + } +#endif + public void execute_script(string f, string d) { string[] argv = {"sh", f}; string[] env = Environ.get(); - try { - +#if VTE_ASYNC is_running = true; - - term.spawn_sync ( + term.spawn_async ( Vte.PtyFlags.DEFAULT, //pty_flags - d, //working_directory - argv, //argv - env, //env + d, // working_directory + argv, // argv + env, // env GLib.SpawnFlags.SEARCH_PATH, //spawn_flags - null, //child_setup - out child_pid, - null + null, // child_setup() func + -1, // timeout + null, // cancellable + t_callback // callback + ); + term.watch_child(child_pid); // VTE-CRITICAL **: 02:34:56.658: void vte_terminal_watch_child(VteTerminal*, GPid): assertion 'WIDGET(terminal)->pty() != nullptr' failed + term.child_exited.connect(script_exit); +#else + try { + is_running = true; + term.spawn_sync ( + Vte.PtyFlags.DEFAULT, // pty_flags + d, // working_directory + argv, // argv + env, // env + GLib.SpawnFlags.SEARCH_PATH, // spawn_flags + null, // child_setup() func + out child_pid, // child pid receiver var + null // cancellable ); - term.watch_child(child_pid); - term.child_exited.connect(script_exit); } - catch (Error e) { - vprint(e.message,1,stderr); - } + catch (Error e) { vprint(e.message,1,stderr); } +#endif } public void script_exit(int status) { diff --git a/src/lib/TeeJee.ProcessHelper.vala b/src/lib/TeeJee.ProcessHelper.vala index 5ebd5d13..cc77e8cd 100644 --- a/src/lib/TeeJee.ProcessHelper.vala +++ b/src/lib/TeeJee.ProcessHelper.vala @@ -117,7 +117,7 @@ namespace TeeJee.ProcessHelper { // manage process --------------------------------- public void process_quit(Pid process_pid, bool killChildren = true) { - + //vprint("process_quit("+process_pid.to_string()+")"); /* Kills specified process and its children (optional). * Sends signal SIGTERM to the process to allow it to quit gracefully. * */ From 83fa04ceb53adc3dc8ffabc06b8dac858450b3b6 Mon Sep 17 00:00:00 2001 From: Danik2343 <38865696+Danik2343@users.noreply.github.com> Date: Mon, 5 Jun 2023 23:32:55 +0300 Subject: [PATCH 359/567] Update Russian Translation --- po/ru.po | 77 ++++++++++++++++++++++---------------------------------- 1 file changed, 30 insertions(+), 47 deletions(-) diff --git a/po/ru.po b/po/ru.po index 576d5aed..9bd60b88 100644 --- a/po/ru.po +++ b/po/ru.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-05 00:44-0400\n" -"PO-Revision-Date: 2023-04-17 20:16+0300\n" +"POT-Creation-Date: 2023-06-05 03:13-0400\n" +"PO-Revision-Date: 2023-06-05 23:29+0300\n" "Last-Translator: Danik2343 \n" "Language-Team: Russian\n" "Language: ru\n" @@ -11,7 +11,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2016-12-13 11:48+0000\n" -"X-Generator: Poedit 3.0.1\n" +"X-Generator: Poedit 3.2.2\n" #: src/Common/LinuxKernel.vala:100 msgid "Distribution" @@ -59,12 +59,12 @@ msgstr "Найдено установлененное" #: src/Common/LinuxKernel.vala:393 msgid "locked" -msgstr "" +msgstr "заблокирован" #: src/Common/LinuxKernel.vala:475 src/Common/LinuxKernel.vala:1003 #: src/Common/LinuxKernel.vala:1094 msgid "is locked." -msgstr "" +msgstr "заблокирован" #: src/Common/LinuxKernel.vala:668 src/Gtk/MainWindow.vala:521 msgid "Running" @@ -99,14 +99,12 @@ msgid "Kernel" msgstr "Ядро" #: src/Common/LinuxKernel.vala:920 -#, fuzzy msgid "not found" -msgstr "Файл не найден" +msgstr "не найдено" #: src/Common/LinuxKernel.vala:927 -#, fuzzy msgid "Download: no downloadable kernels specified" -msgstr "Команда не указана" +msgstr "Загрузка: не указаны загружаемые ядра" #: src/Common/LinuxKernel.vala:947 msgid "enabled" @@ -117,14 +115,12 @@ msgid "Downloading" msgstr "Загрузки" #: src/Common/LinuxKernel.vala:989 -#, fuzzy msgid "Installing selected kernels" -msgstr "Удаление выбранных ядер" +msgstr "Установка выбранных ядер" #: src/Common/LinuxKernel.vala:995 src/Common/LinuxKernel.vala:1034 -#, fuzzy msgid "Requested" -msgstr "запрошено" +msgstr "Запрошено" #: src/Common/LinuxKernel.vala:998 msgid "is already installed." @@ -132,25 +128,23 @@ msgstr "уже установлен." #: src/Common/LinuxKernel.vala:1008 msgid "download failed." -msgstr "" +msgstr "загрузка не удалась." #: src/Common/LinuxKernel.vala:1015 -#, fuzzy msgid "Install: no installable kernels secified" -msgstr "Команда не указана" +msgstr "Установка: устанавливаемые ядра не указаны" #: src/Common/LinuxKernel.vala:1030 msgid "Uninstalling selected kernels" msgstr "Удаление выбранных ядер" #: src/Common/LinuxKernel.vala:1037 -#, fuzzy msgid "Not uninstalling the currently running kernel" -msgstr "не удаляет текущее работающее ядро" +msgstr "Не удалять запущенное в данный момент ядро" #: src/Common/LinuxKernel.vala:1042 msgid "is locked" -msgstr "" +msgstr "заблокирован" #: src/Common/LinuxKernel.vala:1050 msgid "found" @@ -158,12 +152,11 @@ msgstr "найдено" #: src/Common/LinuxKernel.vala:1054 msgid "Uninstall: no uninstallable packages found" -msgstr "" +msgstr "Удаление: не найдено удаляемых пакетов" #: src/Common/LinuxKernel.vala:1090 -#, fuzzy msgid "is the highest installed version." -msgstr "Удаление всех установленных версий, кроме самой высокой" +msgstr "это самая высокая установленная версия." #: src/Common/LinuxKernel.vala:1103 msgid "Could not find running kernel in list" @@ -208,10 +201,8 @@ msgid "at logon" msgstr "при запуске" #: src/Common/Main.vala:355 -msgid "" -"This file is over-written and executed again whenever settings are saved in" -msgstr "" -"Этот файл перезаписывается и выполняется снова при сохранении настроек в" +msgid "This file is over-written and executed again whenever settings are saved in" +msgstr "Этот файл перезаписывается и выполняется снова при сохранении настроек в" #: src/Common/Main.vala:387 msgid "Notifications are disabled" @@ -239,9 +230,8 @@ msgid "Check for kernel updates and notify current user" msgstr "Проверить обновления ядра и уведомить текущего пользователя" #: src/Console/AppConsole.vala:45 -#, fuzzy msgid "List available mainline kernels" -msgstr "Список всех доступных основных ядер" +msgstr "Список доступных основных ядер" #: src/Console/AppConsole.vala:46 msgid "List installed kernels" @@ -252,19 +242,16 @@ msgid "Install latest mainline kernel" msgstr "Установите последнюю версию основного ядра" #: src/Console/AppConsole.vala:48 -#, fuzzy msgid "Install latest point update in the current major version" -msgstr "Установить последнее обновление точек для текущей серии" +msgstr "Установить последнее точечное обновление в текущей основной версии" #: src/Console/AppConsole.vala:49 -#, fuzzy msgid "Install specified kernels" -msgstr "Установить указанное ядро" +msgstr "Установить указанные ядра" #: src/Console/AppConsole.vala:50 -#, fuzzy msgid "Uninstall specified kernels" -msgstr "Установить указанное ядро" +msgstr "Удалить указанные ядра" #: src/Console/AppConsole.vala:51 src/Gtk/MainWindow.vala:333 msgid "Uninstall all but the highest installed version" @@ -292,25 +279,23 @@ msgstr "Исключить нестабильные и релиз-кандида #: src/Console/AppConsole.vala:59 msgid "Verbosity. Set to n if given, or increment." -msgstr "" +msgstr "Многословие. Установите в n, если задано, или увеличьте." #: src/Console/AppConsole.vala:60 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "Предполагать \"Да\" для всех запросов (неинтерактивный режим)" #: src/Console/AppConsole.vala:63 -#, fuzzy msgid "One or more version strings taken from the output of --list" -msgstr "Строка версии, взятая из вывода --list" +msgstr "Одна или несколько строк версии, взятых из вывода --list" #: src/Console/AppConsole.vala:64 msgid "comma, pipe, or colon-seperated, or quoted space seperated" -msgstr "" +msgstr "через запятую, вертикальную черту или двоеточие или через пробел в кавычках" #: src/Console/AppConsole.vala:65 -#, fuzzy msgid "Locked kernels and the currently running kernel are ignored" -msgstr "Текущее работающее ядро всегда будет игнорироваться" +msgstr "Заблокированные ядра и работающее в данный момент ядро игнорируются." #: src/Console/AppConsole.vala:139 src/Console/AppConsole.vala:193 #: src/Gtk/AppGtk.vala:109 @@ -318,7 +303,6 @@ msgid "Unknown option" msgstr "Неизвестный параметр" #: src/Console/AppConsole.vala:229 -#, fuzzy msgid "Notifications disabled" msgstr "Уведомления отключены" @@ -389,7 +373,7 @@ msgstr "Показать все параметры" #: src/Gtk/MainWindow.vala:159 msgid "Lock" -msgstr "" +msgstr "Блокировка" #: src/Gtk/MainWindow.vala:176 msgid "Status" @@ -417,7 +401,7 @@ msgstr "Перезагрузить" #: src/Gtk/MainWindow.vala:339 msgid "Delete and reload all cached kernel info" -msgstr "" +msgstr "Удалить и перезагрузить всю кэшированную информацию о ядре" #: src/Gtk/MainWindow.vala:344 src/Gtk/SettingsDialog.vala:41 msgid "Settings" @@ -454,7 +438,7 @@ msgstr "доступно" #: src/Gtk/MainWindow.vala:567 src/Gtk/MainWindow.vala:598 #: src/Gtk/MainWindow.vala:623 msgid "DONE" -msgstr "" +msgstr "ГОТОВО" #: src/Gtk/SettingsDialog.vala:50 msgid "Notification" @@ -529,13 +513,12 @@ msgid "Proxy" msgstr "Доверенность" #: src/Gtk/SettingsDialog.vala:250 -#, fuzzy msgid "Auth Command" -msgstr "Комманды" +msgstr "Команда авторизации" #: src/Gtk/SettingsDialog.vala:278 msgid "Done" -msgstr "" +msgstr "Готово" #: src/Gtk/TerminalWindow.vala:141 msgid "Cancel" From b21b944352cfa6f0e032673998e0c828815cdfc7 Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Mon, 5 Jun 2023 19:41:42 -0400 Subject: [PATCH 360/567] Vte.Terminal.spawn_async --- .deb_build_number.mak | 2 +- BRANDING.mak | 2 +- Makefile | 2 +- debian/changelog | 7 +++ po/de.po | 10 ++-- po/el.po | 10 ++-- po/es.po | 10 ++-- po/fr.po | 10 ++-- po/hr.po | 10 ++-- po/it.po | 10 ++-- po/ko.po | 10 ++-- po/messages.pot | 12 ++--- po/nl.po | 10 ++-- po/pl.po | 10 ++-- po/ru.po | 10 ++-- po/sv.po | 10 ++-- po/tr.po | 10 ++-- po/uk.po | 10 ++-- src/Gtk/MainWindow.vala | 15 ++++-- src/Gtk/TerminalWindow.vala | 63 ++++++++++++------------ src/lib/TeeJee.ProcessHelper.vala | 79 ------------------------------- 21 files changed, 126 insertions(+), 186 deletions(-) diff --git a/.deb_build_number.mak b/.deb_build_number.mak index 9330b49a..8c3e5a59 100644 --- a/.deb_build_number.mak +++ b/.deb_build_number.mak @@ -1,3 +1,3 @@ # This file is generated by Makefile "make deb_build_number" -DEB_PKG_VERSION := 1.3.9 +DEB_PKG_VERSION := 1.3.10 DEB_BUILD_NUMBER := 0000 diff --git a/BRANDING.mak b/BRANDING.mak index 38086caf..df534151 100644 --- a/BRANDING.mak +++ b/BRANDING.mak @@ -3,7 +3,7 @@ VERSION_MAJOR = 1 VERSION_MINOR = 3 -VERSION_MICRO = 9 +VERSION_MICRO = 10 BRANDING_SHORTNAME = mainline BRANDING_LONGNAME = Ubuntu Mainline Kernel Installer BRANDING_AUTHORNAME = Brian K. White diff --git a/Makefile b/Makefile index 7b13bfd7..02f51412 100644 --- a/Makefile +++ b/Makefile @@ -2,7 +2,7 @@ SHELL := /bin/bash CFLAGS := -O2 -VALACFLAGS := #-D LOCK_TOGGLES_IN_KERNEL_COLUMN #-D VTE_ASYNC +VALACFLAGS := -D VTE_ASYNC # -D LOCK_TOGGLES_IN_KERNEL_COLUMN # -D VTE_ASYNC prefix := /usr bindir := $(prefix)/bin diff --git a/debian/changelog b/debian/changelog index aafb1e2d..ecd3f83f 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +mainline (1.3.10) unstable; urgency=medium + + * switch from Vte.Terminal.spawn_sync to spawn_async to remove the last compiler warning + old version still available for now by commenting out -D VTE_ASYNC from VALACFLAGS in Makefile + + -- Brian K. White Mon, 05 Jun 2023 19:35:21 -0400 + mainline (1.3.9) unstable; urgency=medium * More auth commands diff --git a/po/de.po b/po/de.po index 7a1dd68d..5e05f5d6 100644 --- a/po/de.po +++ b/po/de.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-05 00:44-0400\n" +"POT-Creation-Date: 2023-06-05 19:12-0400\n" "PO-Revision-Date: 2023-02-20 18:40+0100\n" "Last-Translator: Marvin Meysel \n" "Language-Team: German\n" @@ -344,7 +344,7 @@ msgstr "Zuvor gemeldet" msgid "Credits" msgstr "Credits" -#: src/Gtk/AboutWindow.vala:33 src/Gtk/TerminalWindow.vala:151 +#: src/Gtk/AboutWindow.vala:33 src/Gtk/TerminalWindow.vala:161 msgid "Close" msgstr "Schließen" @@ -452,8 +452,8 @@ msgstr "Aktualisieren von Kernels" msgid "available" msgstr "Verfügbar" -#: src/Gtk/MainWindow.vala:567 src/Gtk/MainWindow.vala:598 -#: src/Gtk/MainWindow.vala:623 +#: src/Gtk/MainWindow.vala:570 src/Gtk/MainWindow.vala:604 +#: src/Gtk/MainWindow.vala:632 msgid "DONE" msgstr "" @@ -538,7 +538,7 @@ msgstr "Befehle" msgid "Done" msgstr "" -#: src/Gtk/TerminalWindow.vala:141 +#: src/Gtk/TerminalWindow.vala:151 msgid "Cancel" msgstr "Abbrechen" diff --git a/po/el.po b/po/el.po index e6448947..710556c0 100644 --- a/po/el.po +++ b/po/el.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-05 00:44-0400\n" +"POT-Creation-Date: 2023-06-05 19:12-0400\n" "PO-Revision-Date: 2023-01-10 02:03-0600\n" "Last-Translator: Vasilis Kosmidis \n" "Language-Team: Greek\n" @@ -345,7 +345,7 @@ msgstr "Έχει ήδη κοινοποιηθεί" msgid "Credits" msgstr "Μνεία" -#: src/Gtk/AboutWindow.vala:33 src/Gtk/TerminalWindow.vala:151 +#: src/Gtk/AboutWindow.vala:33 src/Gtk/TerminalWindow.vala:161 msgid "Close" msgstr "Κλείσιμο" @@ -453,8 +453,8 @@ msgstr "Ενημέρωση πυρήνων" msgid "available" msgstr "διαθέσιμος" -#: src/Gtk/MainWindow.vala:567 src/Gtk/MainWindow.vala:598 -#: src/Gtk/MainWindow.vala:623 +#: src/Gtk/MainWindow.vala:570 src/Gtk/MainWindow.vala:604 +#: src/Gtk/MainWindow.vala:632 msgid "DONE" msgstr "" @@ -539,7 +539,7 @@ msgstr "Εντολές" msgid "Done" msgstr "" -#: src/Gtk/TerminalWindow.vala:141 +#: src/Gtk/TerminalWindow.vala:151 msgid "Cancel" msgstr "Άκυρο" diff --git a/po/es.po b/po/es.po index 97595fae..39531e18 100644 --- a/po/es.po +++ b/po/es.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-05 00:44-0400\n" +"POT-Creation-Date: 2023-06-05 19:12-0400\n" "PO-Revision-Date: 2018-01-03 02:03-0600\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish\n" @@ -344,7 +344,7 @@ msgstr "Notificado previamente" msgid "Credits" msgstr "Créditos" -#: src/Gtk/AboutWindow.vala:33 src/Gtk/TerminalWindow.vala:151 +#: src/Gtk/AboutWindow.vala:33 src/Gtk/TerminalWindow.vala:161 msgid "Close" msgstr "Cerrar" @@ -453,8 +453,8 @@ msgstr "Actualización de kernels" msgid "available" msgstr "disponibles" -#: src/Gtk/MainWindow.vala:567 src/Gtk/MainWindow.vala:598 -#: src/Gtk/MainWindow.vala:623 +#: src/Gtk/MainWindow.vala:570 src/Gtk/MainWindow.vala:604 +#: src/Gtk/MainWindow.vala:632 msgid "DONE" msgstr "" @@ -539,7 +539,7 @@ msgstr "Comandos" msgid "Done" msgstr "" -#: src/Gtk/TerminalWindow.vala:141 +#: src/Gtk/TerminalWindow.vala:151 msgid "Cancel" msgstr "Cancelar" diff --git a/po/fr.po b/po/fr.po index c2f48ab8..cd5c35c9 100644 --- a/po/fr.po +++ b/po/fr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-05 00:44-0400\n" +"POT-Creation-Date: 2023-06-05 19:12-0400\n" "PO-Revision-Date: 2018-08-05 15:50+0200\n" "Last-Translator: Yolateng0 \n" "Language-Team: French\n" @@ -344,7 +344,7 @@ msgstr "Précédemment notifié" msgid "Credits" msgstr "Crédits" -#: src/Gtk/AboutWindow.vala:33 src/Gtk/TerminalWindow.vala:151 +#: src/Gtk/AboutWindow.vala:33 src/Gtk/TerminalWindow.vala:161 msgid "Close" msgstr "Fermer" @@ -454,8 +454,8 @@ msgstr "Mise à jour des noyaux" msgid "available" msgstr "disponible" -#: src/Gtk/MainWindow.vala:567 src/Gtk/MainWindow.vala:598 -#: src/Gtk/MainWindow.vala:623 +#: src/Gtk/MainWindow.vala:570 src/Gtk/MainWindow.vala:604 +#: src/Gtk/MainWindow.vala:632 msgid "DONE" msgstr "" @@ -540,7 +540,7 @@ msgstr "Commandes" msgid "Done" msgstr "" -#: src/Gtk/TerminalWindow.vala:141 +#: src/Gtk/TerminalWindow.vala:151 msgid "Cancel" msgstr "Annuler" diff --git a/po/hr.po b/po/hr.po index f200bcd2..52e40a84 100644 --- a/po/hr.po +++ b/po/hr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-05 00:44-0400\n" +"POT-Creation-Date: 2023-06-05 19:12-0400\n" "PO-Revision-Date: 2022-09-22 12:13+0200\n" "Last-Translator: gogo \n" "Language-Team: Croatian\n" @@ -343,7 +343,7 @@ msgstr "Prethodno prijavljeno" msgid "Credits" msgstr "Zasluge" -#: src/Gtk/AboutWindow.vala:33 src/Gtk/TerminalWindow.vala:151 +#: src/Gtk/AboutWindow.vala:33 src/Gtk/TerminalWindow.vala:161 msgid "Close" msgstr "Zatvori" @@ -451,8 +451,8 @@ msgstr "Ažuriranje jezgri" msgid "available" msgstr "dostupno" -#: src/Gtk/MainWindow.vala:567 src/Gtk/MainWindow.vala:598 -#: src/Gtk/MainWindow.vala:623 +#: src/Gtk/MainWindow.vala:570 src/Gtk/MainWindow.vala:604 +#: src/Gtk/MainWindow.vala:632 msgid "DONE" msgstr "" @@ -537,7 +537,7 @@ msgstr "Naredbe" msgid "Done" msgstr "" -#: src/Gtk/TerminalWindow.vala:141 +#: src/Gtk/TerminalWindow.vala:151 msgid "Cancel" msgstr "Odustani" diff --git a/po/it.po b/po/it.po index 46614344..0f8d9c76 100644 --- a/po/it.po +++ b/po/it.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-05 00:44-0400\n" +"POT-Creation-Date: 2023-06-05 19:12-0400\n" "PO-Revision-Date: 2020-08-22 15:35+0100\n" "Last-Translator: Demetrio Mendozzi\n" "Language-Team: Italian\n" @@ -344,7 +344,7 @@ msgstr "Notificato in precedenza" msgid "Credits" msgstr "Crediti" -#: src/Gtk/AboutWindow.vala:33 src/Gtk/TerminalWindow.vala:151 +#: src/Gtk/AboutWindow.vala:33 src/Gtk/TerminalWindow.vala:161 msgid "Close" msgstr "Chiudi" @@ -452,8 +452,8 @@ msgstr "Aggiornamento dei kernel" msgid "available" msgstr "disponibile" -#: src/Gtk/MainWindow.vala:567 src/Gtk/MainWindow.vala:598 -#: src/Gtk/MainWindow.vala:623 +#: src/Gtk/MainWindow.vala:570 src/Gtk/MainWindow.vala:604 +#: src/Gtk/MainWindow.vala:632 msgid "DONE" msgstr "" @@ -538,7 +538,7 @@ msgstr "Comandi" msgid "Done" msgstr "" -#: src/Gtk/TerminalWindow.vala:141 +#: src/Gtk/TerminalWindow.vala:151 msgid "Cancel" msgstr "Cancella" diff --git a/po/ko.po b/po/ko.po index bd74faa8..369fe515 100644 --- a/po/ko.po +++ b/po/ko.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-05 00:44-0400\n" +"POT-Creation-Date: 2023-06-05 19:12-0400\n" "PO-Revision-Date: 2022-09-28 11:48+0900\n" "Last-Translator: Kevin Kim \n" "Language-Team: Korean\n" @@ -342,7 +342,7 @@ msgstr "이전에 통보됨" msgid "Credits" msgstr "제작자" -#: src/Gtk/AboutWindow.vala:33 src/Gtk/TerminalWindow.vala:151 +#: src/Gtk/AboutWindow.vala:33 src/Gtk/TerminalWindow.vala:161 msgid "Close" msgstr "닫기" @@ -450,8 +450,8 @@ msgstr "커널 업데이트" msgid "available" msgstr "사용가능" -#: src/Gtk/MainWindow.vala:567 src/Gtk/MainWindow.vala:598 -#: src/Gtk/MainWindow.vala:623 +#: src/Gtk/MainWindow.vala:570 src/Gtk/MainWindow.vala:604 +#: src/Gtk/MainWindow.vala:632 msgid "DONE" msgstr "" @@ -536,7 +536,7 @@ msgstr "명령어" msgid "Done" msgstr "" -#: src/Gtk/TerminalWindow.vala:141 +#: src/Gtk/TerminalWindow.vala:151 msgid "Cancel" msgstr "취소" diff --git a/po/messages.pot b/po/messages.pot index 8f4fc624..7b7643ef 100644 --- a/po/messages.pot +++ b/po/messages.pot @@ -6,9 +6,9 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: mainline 1.3.9\n" +"Project-Id-Version: mainline 1.3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-05 03:13-0400\n" +"POT-Creation-Date: 2023-06-05 19:33-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -332,7 +332,7 @@ msgstr "" msgid "Credits" msgstr "" -#: src/Gtk/AboutWindow.vala:33 src/Gtk/TerminalWindow.vala:151 +#: src/Gtk/AboutWindow.vala:33 src/Gtk/TerminalWindow.vala:161 msgid "Close" msgstr "" @@ -440,8 +440,8 @@ msgstr "" msgid "available" msgstr "" -#: src/Gtk/MainWindow.vala:567 src/Gtk/MainWindow.vala:598 -#: src/Gtk/MainWindow.vala:623 +#: src/Gtk/MainWindow.vala:570 src/Gtk/MainWindow.vala:604 +#: src/Gtk/MainWindow.vala:632 msgid "DONE" msgstr "" @@ -525,7 +525,7 @@ msgstr "" msgid "Done" msgstr "" -#: src/Gtk/TerminalWindow.vala:141 +#: src/Gtk/TerminalWindow.vala:151 msgid "Cancel" msgstr "" diff --git a/po/nl.po b/po/nl.po index 933d0110..9faf06cd 100644 --- a/po/nl.po +++ b/po/nl.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-05 00:44-0400\n" +"POT-Creation-Date: 2023-06-05 19:12-0400\n" "PO-Revision-Date: 2020-08-23 13:55+0200\n" "Last-Translator: Heimen Stoffels \n" "Language-Team: Dutch (Netherlands)\n" @@ -344,7 +344,7 @@ msgstr "Eerder gemeld" msgid "Credits" msgstr "Met dank aan" -#: src/Gtk/AboutWindow.vala:33 src/Gtk/TerminalWindow.vala:151 +#: src/Gtk/AboutWindow.vala:33 src/Gtk/TerminalWindow.vala:161 msgid "Close" msgstr "Sluiten" @@ -452,8 +452,8 @@ msgstr "Kernels bijwerken" msgid "available" msgstr "beschikbaar" -#: src/Gtk/MainWindow.vala:567 src/Gtk/MainWindow.vala:598 -#: src/Gtk/MainWindow.vala:623 +#: src/Gtk/MainWindow.vala:570 src/Gtk/MainWindow.vala:604 +#: src/Gtk/MainWindow.vala:632 msgid "DONE" msgstr "" @@ -538,7 +538,7 @@ msgstr "Opdrachten" msgid "Done" msgstr "" -#: src/Gtk/TerminalWindow.vala:141 +#: src/Gtk/TerminalWindow.vala:151 msgid "Cancel" msgstr "Annuleren" diff --git a/po/pl.po b/po/pl.po index 226e2b58..6cf00dcc 100644 --- a/po/pl.po +++ b/po/pl.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-05 00:44-0400\n" +"POT-Creation-Date: 2023-06-05 19:12-0400\n" "PO-Revision-Date: 2023-06-03 14:24+0200\n" "Last-Translator: Matthaiks\n" "Language-Team: Polish\n" @@ -331,7 +331,7 @@ msgstr "Wcześniej powiadomiono" msgid "Credits" msgstr "Zasługi" -#: src/Gtk/AboutWindow.vala:33 src/Gtk/TerminalWindow.vala:151 +#: src/Gtk/AboutWindow.vala:33 src/Gtk/TerminalWindow.vala:161 msgid "Close" msgstr "Zamknij" @@ -440,8 +440,8 @@ msgstr "Aktualizowanie jąder" msgid "available" msgstr "dostępne" -#: src/Gtk/MainWindow.vala:567 src/Gtk/MainWindow.vala:598 -#: src/Gtk/MainWindow.vala:623 +#: src/Gtk/MainWindow.vala:570 src/Gtk/MainWindow.vala:604 +#: src/Gtk/MainWindow.vala:632 msgid "DONE" msgstr "GOTOWE" @@ -526,7 +526,7 @@ msgstr "Polecenia" msgid "Done" msgstr "Gotowe" -#: src/Gtk/TerminalWindow.vala:141 +#: src/Gtk/TerminalWindow.vala:151 msgid "Cancel" msgstr "Anuluj" diff --git a/po/ru.po b/po/ru.po index 576d5aed..5dab93cf 100644 --- a/po/ru.po +++ b/po/ru.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-05 00:44-0400\n" +"POT-Creation-Date: 2023-06-05 19:12-0400\n" "PO-Revision-Date: 2023-04-17 20:16+0300\n" "Last-Translator: Danik2343 \n" "Language-Team: Russian\n" @@ -343,7 +343,7 @@ msgstr "Предварительно уведомлено" msgid "Credits" msgstr "Создатели" -#: src/Gtk/AboutWindow.vala:33 src/Gtk/TerminalWindow.vala:151 +#: src/Gtk/AboutWindow.vala:33 src/Gtk/TerminalWindow.vala:161 msgid "Close" msgstr "Закрыть" @@ -451,8 +451,8 @@ msgstr "Обновление ядер" msgid "available" msgstr "доступно" -#: src/Gtk/MainWindow.vala:567 src/Gtk/MainWindow.vala:598 -#: src/Gtk/MainWindow.vala:623 +#: src/Gtk/MainWindow.vala:570 src/Gtk/MainWindow.vala:604 +#: src/Gtk/MainWindow.vala:632 msgid "DONE" msgstr "" @@ -537,7 +537,7 @@ msgstr "Комманды" msgid "Done" msgstr "" -#: src/Gtk/TerminalWindow.vala:141 +#: src/Gtk/TerminalWindow.vala:151 msgid "Cancel" msgstr "Отмена" diff --git a/po/sv.po b/po/sv.po index ea1d1d5f..7d762efd 100644 --- a/po/sv.po +++ b/po/sv.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-05 00:44-0400\n" +"POT-Creation-Date: 2023-06-05 19:12-0400\n" "PO-Revision-Date: 2018-01-13 16:56+0100\n" "Last-Translator: Åke Engelbrektson \n" "Language-Team:Swedish\n" @@ -342,7 +342,7 @@ msgstr "Tidigare anmält" msgid "Credits" msgstr "Tack" -#: src/Gtk/AboutWindow.vala:33 src/Gtk/TerminalWindow.vala:151 +#: src/Gtk/AboutWindow.vala:33 src/Gtk/TerminalWindow.vala:161 msgid "Close" msgstr "Stäng" @@ -450,8 +450,8 @@ msgstr "Uppdatera kärnor" msgid "available" msgstr "tillgänglig" -#: src/Gtk/MainWindow.vala:567 src/Gtk/MainWindow.vala:598 -#: src/Gtk/MainWindow.vala:623 +#: src/Gtk/MainWindow.vala:570 src/Gtk/MainWindow.vala:604 +#: src/Gtk/MainWindow.vala:632 msgid "DONE" msgstr "" @@ -536,7 +536,7 @@ msgstr "Kommandon" msgid "Done" msgstr "" -#: src/Gtk/TerminalWindow.vala:141 +#: src/Gtk/TerminalWindow.vala:151 msgid "Cancel" msgstr "Avbryt" diff --git a/po/tr.po b/po/tr.po index 18c0b9fd..4edbf431 100644 --- a/po/tr.po +++ b/po/tr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-05 00:44-0400\n" +"POT-Creation-Date: 2023-06-05 19:12-0400\n" "PO-Revision-Date: 2022-08-06 16:48+0300\n" "Last-Translator: Sabri Ünal \n" "Language-Team: Turkish\n" @@ -344,7 +344,7 @@ msgstr "Daha önce bildirilmiş" msgid "Credits" msgstr "Hazırlayanlar" -#: src/Gtk/AboutWindow.vala:33 src/Gtk/TerminalWindow.vala:151 +#: src/Gtk/AboutWindow.vala:33 src/Gtk/TerminalWindow.vala:161 msgid "Close" msgstr "Kapat" @@ -452,8 +452,8 @@ msgstr "Çekirdekleri güncelleme" msgid "available" msgstr "mevcut" -#: src/Gtk/MainWindow.vala:567 src/Gtk/MainWindow.vala:598 -#: src/Gtk/MainWindow.vala:623 +#: src/Gtk/MainWindow.vala:570 src/Gtk/MainWindow.vala:604 +#: src/Gtk/MainWindow.vala:632 msgid "DONE" msgstr "" @@ -538,7 +538,7 @@ msgstr "Komutlar" msgid "Done" msgstr "" -#: src/Gtk/TerminalWindow.vala:141 +#: src/Gtk/TerminalWindow.vala:151 msgid "Cancel" msgstr "İptal Et" diff --git a/po/uk.po b/po/uk.po index f07ad37e..2748dc94 100644 --- a/po/uk.po +++ b/po/uk.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-05 00:44-0400\n" +"POT-Creation-Date: 2023-06-05 19:12-0400\n" "PO-Revision-Date: 2019-07-25 11:00+0300\n" "Last-Translator: Serhii Golovko \n" "Language-Team: Ukranian\n" @@ -330,7 +330,7 @@ msgstr "Попередньо повідомлено" msgid "Credits" msgstr "Творці" -#: src/Gtk/AboutWindow.vala:33 src/Gtk/TerminalWindow.vala:151 +#: src/Gtk/AboutWindow.vala:33 src/Gtk/TerminalWindow.vala:161 msgid "Close" msgstr "Закрити" @@ -438,8 +438,8 @@ msgstr "Оновлення ядер" msgid "available" msgstr "доступний" -#: src/Gtk/MainWindow.vala:567 src/Gtk/MainWindow.vala:598 -#: src/Gtk/MainWindow.vala:623 +#: src/Gtk/MainWindow.vala:570 src/Gtk/MainWindow.vala:604 +#: src/Gtk/MainWindow.vala:632 msgid "DONE" msgstr "ГОТОВО" @@ -524,7 +524,7 @@ msgstr "Команди" msgid "Done" msgstr "" -#: src/Gtk/TerminalWindow.vala:141 +#: src/Gtk/TerminalWindow.vala:151 msgid "Cancel" msgstr "Відміна" diff --git a/src/Gtk/MainWindow.vala b/src/Gtk/MainWindow.vala index a42d707b..29afea35 100644 --- a/src/Gtk/MainWindow.vala +++ b/src/Gtk/MainWindow.vala @@ -547,6 +547,7 @@ public class MainWindow : Window { vlist = vlist.strip(); if (vlist=="") { vprint("Install: no installable kernels specified"); return; } + bool did_update_cache = false; var term = new TerminalWindow.with_parent(this, false, true); string t_dir = create_tmp_dir(); string t_file = get_temp_file_path(t_dir)+".sh"; @@ -554,11 +555,13 @@ public class MainWindow : Window { term.script_complete.connect(()=>{ term.present(); term.allow_window_close(); + did_update_cache = true; + update_cache(); }); term.destroy.connect(()=>{ delete_r(t_dir); - update_cache(); + if (!did_update_cache) update_cache(); }); string sh = "VERBOSE="+Main.VERBOSE.to_string()+" "+BRANDING_SHORTNAME; @@ -574,6 +577,7 @@ public class MainWindow : Window { public void do_uninstall(Gee.ArrayList klist) { if (klist==null || klist.size<1) return; + bool did_update_cache = false; var term = new TerminalWindow.with_parent(this, false, true); string t_dir = create_tmp_dir(); string t_file = get_temp_file_path(t_dir)+".sh"; @@ -581,11 +585,13 @@ public class MainWindow : Window { term.script_complete.connect(()=>{ term.present(); term.allow_window_close(); + did_update_cache = true; + update_cache(); }); term.destroy.connect(() => { delete_r(t_dir); - update_cache(); + if (!did_update_cache) update_cache(); }); string vlist = ""; @@ -603,6 +609,7 @@ public class MainWindow : Window { } public void uninstall_old () { + bool did_update_cache = false; var term = new TerminalWindow.with_parent(this, false, true); string t_dir = create_tmp_dir(); string t_file = get_temp_file_path(t_dir)+".sh"; @@ -610,11 +617,13 @@ public class MainWindow : Window { term.script_complete.connect(()=>{ term.present(); term.allow_window_close(); + did_update_cache = true; + update_cache(); }); term.destroy.connect(()=>{ delete_r(t_dir); - update_cache(); + if (!did_update_cache) update_cache(); }); string sh = "VERBOSE="+Main.VERBOSE.to_string()+" "+BRANDING_SHORTNAME+" --uninstall-old"; diff --git a/src/Gtk/TerminalWindow.vala b/src/Gtk/TerminalWindow.vala index c0455b2f..461c8e9f 100644 --- a/src/Gtk/TerminalWindow.vala +++ b/src/Gtk/TerminalWindow.vala @@ -19,7 +19,6 @@ * MA 02110-1301, USA. */ -using TeeJee.ProcessHelper; using l.gtk; using l.misc; @@ -39,6 +38,17 @@ public class TerminalWindow : Gtk.Window { public signal void script_complete(); + // annoying + enum SIG { +#if VALA_0_40 + HUP = Posix.Signal.HUP, + TERM = Posix.Signal.TERM +#else + HUP = Posix.SIGHUP, + TERM = Posix.SIGTERM +#endif + } + // init public TerminalWindow.with_parent(Gtk.Window? parent, bool fullscreen = false, bool show_cancel_button = false) { @@ -129,27 +139,27 @@ public class TerminalWindow : Gtk.Window { var hbox = new Gtk.Box(Gtk.Orientation.HORIZONTAL, 6); hbox.homogeneous = true; - vbox_main.add (hbox); + vbox_main.add(hbox); var label = new Gtk.Label(""); - hbox.pack_start (label, true, true, 0); + hbox.pack_start(label, true, true, 0); label = new Gtk.Label(""); - hbox.pack_start (label, true, true, 0); + hbox.pack_start(label, true, true, 0); // btn_cancel var button = new Gtk.Button.with_label (_("Cancel")); - hbox.pack_start (button, true, true, 0); + hbox.pack_start(button, true, true, 0); btn_cancel = button; btn_cancel.clicked.connect(()=>{ cancelled = true; - terminate_child(); + Posix.kill(child_pid,SIG.HUP); }); // btn_close button = new Gtk.Button.with_label (_("Close")); - hbox.pack_start (button, true, true, 0); + hbox.pack_start(button, true, true, 0); btn_close = button; btn_close.clicked.connect(()=>{ @@ -159,36 +169,32 @@ public class TerminalWindow : Gtk.Window { }); label = new Gtk.Label(""); - hbox.pack_start (label, true, true, 0); + hbox.pack_start(label, true, true, 0); label = new Gtk.Label(""); - hbox.pack_start (label, true, true, 0); + hbox.pack_start(label, true, true, 0); } - public void terminate_child() { - btn_cancel.sensitive = false; - process_quit(child_pid); - } - -// $ make clean all VALACFLAGS="-D VTE_ASYNC" && sudo make install VALACFLAGS="-D VTE_ASYNC" #if VTE_ASYNC - public void t_callback(Vte.Terminal terminal, Pid pid, Error? error) { + public void async_cb(Vte.Terminal terminal, Pid pid, Error? error) { if (error != null) { vprint("Error setting up terminal: "+error.message,1,stderr); return; } - vprint("Terminal set up, process ID: "+pid.to_string(),4); + vprint("TerminalWindow: child_pid="+pid.to_string(),3); child_pid = pid; + term.watch_child(child_pid); + term.child_exited.connect(script_has_exited); } #endif public void execute_script(string f, string d) { + vprint("TerminalWindow: execute_script("+f+","+d+")",3); string[] argv = {"sh", f}; - string[] env = Environ.get(); #if VTE_ASYNC is_running = true; - term.spawn_async ( - Vte.PtyFlags.DEFAULT, //pty_flags + term.spawn_async( + Vte.PtyFlags.DEFAULT, // pty_flags d, // working_directory argv, // argv env, // env @@ -196,33 +202,32 @@ public class TerminalWindow : Gtk.Window { null, // child_setup() func -1, // timeout null, // cancellable - t_callback // callback + async_cb // callback ); - term.watch_child(child_pid); // VTE-CRITICAL **: 02:34:56.658: void vte_terminal_watch_child(VteTerminal*, GPid): assertion 'WIDGET(terminal)->pty() != nullptr' failed - term.child_exited.connect(script_exit); #else try { is_running = true; - term.spawn_sync ( + term.spawn_sync( Vte.PtyFlags.DEFAULT, // pty_flags d, // working_directory argv, // argv env, // env GLib.SpawnFlags.SEARCH_PATH, // spawn_flags null, // child_setup() func - out child_pid, // child pid receiver var + out child_pid, // child pid written here null // cancellable ); + term.child_exited.connect(script_has_exited); term.watch_child(child_pid); - term.child_exited.connect(script_exit); } catch (Error e) { vprint(e.message,1,stderr); } #endif } - public void script_exit(int status) { + public void script_has_exited(int status) { + vprint("TerminalWindow: script_has_exited("+status.to_string()+")",3); is_running = false; - btn_cancel.visible = false; + allow_cancel(false); btn_close.visible = true; script_complete(); } @@ -241,11 +246,9 @@ public class TerminalWindow : Gtk.Window { if (allow) { btn_cancel.visible = true; btn_cancel.sensitive = true; - vbox_main.margin = 3; } else { btn_cancel.visible = false; btn_cancel.sensitive = false; - vbox_main.margin = 3; } } } diff --git a/src/lib/TeeJee.ProcessHelper.vala b/src/lib/TeeJee.ProcessHelper.vala index cc77e8cd..487f1cfb 100644 --- a/src/lib/TeeJee.ProcessHelper.vala +++ b/src/lib/TeeJee.ProcessHelper.vala @@ -64,83 +64,4 @@ namespace TeeJee.ProcessHelper { return null; } - // find process ------------------------------- - - // dep: ps TODO: Rewrite using /proc - public bool process_is_running(long pid) { - - /* Checks if given process is running */ - - string cmd = ""; - string std_out; - string std_err; - int ret_val; - - try{ - cmd = "ps --pid %ld".printf(pid); - Process.spawn_command_line_sync(cmd, out std_out, out std_err, out ret_val); - } - catch (Error e) { - vprint(e.message,1,stderr); - return false; - } - - return (ret_val == 0); - } - - // dep: ps TODO: Rewrite using /proc - public int[] get_process_children (Pid parent_pid) { - - /* Returns the list of child processes spawned by given process */ - - string std_out, std_err; - exec_sync("ps --ppid %d".printf(parent_pid), out std_out, out std_err); - - int pid; - int[] procList = {}; - string[] arr; - - foreach (string line in std_out.split ("\n")) { - arr = line.strip().split (" "); - if (arr.length < 1) { continue; } - - pid = 0; - pid = int.parse (arr[0]); - - if (pid != 0){ - procList += pid; - } - } - return procList; - } - - // manage process --------------------------------- - - public void process_quit(Pid process_pid, bool killChildren = true) { - //vprint("process_quit("+process_pid.to_string()+")"); - /* Kills specified process and its children (optional). - * Sends signal SIGTERM to the process to allow it to quit gracefully. - * */ - - int[] child_pids = get_process_children (process_pid); - -#if VALA_0_40 - Posix.kill(process_pid, Posix.Signal.TERM); -#else - Posix.kill(process_pid, Posix.SIGTERM); -#endif - - if (killChildren) { - Pid childPid; - foreach (long pid in child_pids) { - childPid = (Pid) pid; -#if VALA_0_40 - Posix.kill(childPid, Posix.Signal.TERM); -#else - Posix.kill(childPid, Posix.SIGTERM); -#endif - } - } - } - } From 7c264dc639bd29358d91b951fa0fa0c0763aa3a6 Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Mon, 5 Jun 2023 19:45:48 -0400 Subject: [PATCH 361/567] message typo --- .deb_build_number.mak | 2 +- po/de.po | 4 ++-- po/el.po | 4 ++-- po/es.po | 4 ++-- po/fr.po | 4 ++-- po/hr.po | 4 ++-- po/it.po | 4 ++-- po/ko.po | 4 ++-- po/messages.pot | 4 ++-- po/nl.po | 4 ++-- po/pl.po | 5 +++-- po/ru.po | 4 ++-- po/sv.po | 4 ++-- po/tr.po | 4 ++-- po/uk.po | 5 +++-- src/Common/LinuxKernel.vala | 2 +- 16 files changed, 32 insertions(+), 30 deletions(-) diff --git a/.deb_build_number.mak b/.deb_build_number.mak index 8c3e5a59..9777bde5 100644 --- a/.deb_build_number.mak +++ b/.deb_build_number.mak @@ -1,3 +1,3 @@ # This file is generated by Makefile "make deb_build_number" DEB_PKG_VERSION := 1.3.10 -DEB_BUILD_NUMBER := 0000 +DEB_BUILD_NUMBER := 0001 diff --git a/po/de.po b/po/de.po index 5e05f5d6..bda8244e 100644 --- a/po/de.po +++ b/po/de.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-05 19:12-0400\n" +"POT-Creation-Date: 2023-06-05 19:44-0400\n" "PO-Revision-Date: 2023-02-20 18:40+0100\n" "Last-Translator: Marvin Meysel \n" "Language-Team: German\n" @@ -136,7 +136,7 @@ msgstr "" #: src/Common/LinuxKernel.vala:1015 #, fuzzy -msgid "Install: no installable kernels secified" +msgid "Install: no installable kernels specified" msgstr "Befehl nicht angegeben" #: src/Common/LinuxKernel.vala:1030 diff --git a/po/el.po b/po/el.po index 710556c0..4275d30e 100644 --- a/po/el.po +++ b/po/el.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-05 19:12-0400\n" +"POT-Creation-Date: 2023-06-05 19:44-0400\n" "PO-Revision-Date: 2023-01-10 02:03-0600\n" "Last-Translator: Vasilis Kosmidis \n" "Language-Team: Greek\n" @@ -136,7 +136,7 @@ msgstr "" #: src/Common/LinuxKernel.vala:1015 #, fuzzy -msgid "Install: no installable kernels secified" +msgid "Install: no installable kernels specified" msgstr "Η εντολή δεν προσδιορίστηκε" #: src/Common/LinuxKernel.vala:1030 diff --git a/po/es.po b/po/es.po index 39531e18..751c027f 100644 --- a/po/es.po +++ b/po/es.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-05 19:12-0400\n" +"POT-Creation-Date: 2023-06-05 19:44-0400\n" "PO-Revision-Date: 2018-01-03 02:03-0600\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish\n" @@ -136,7 +136,7 @@ msgstr "" #: src/Common/LinuxKernel.vala:1015 #, fuzzy -msgid "Install: no installable kernels secified" +msgid "Install: no installable kernels specified" msgstr "Coomand no especificado" #: src/Common/LinuxKernel.vala:1030 diff --git a/po/fr.po b/po/fr.po index cd5c35c9..fa6090d6 100644 --- a/po/fr.po +++ b/po/fr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-05 19:12-0400\n" +"POT-Creation-Date: 2023-06-05 19:44-0400\n" "PO-Revision-Date: 2018-08-05 15:50+0200\n" "Last-Translator: Yolateng0 \n" "Language-Team: French\n" @@ -136,7 +136,7 @@ msgstr "" #: src/Common/LinuxKernel.vala:1015 #, fuzzy -msgid "Install: no installable kernels secified" +msgid "Install: no installable kernels specified" msgstr "Pas de commande fournie" #: src/Common/LinuxKernel.vala:1030 diff --git a/po/hr.po b/po/hr.po index 52e40a84..48fca510 100644 --- a/po/hr.po +++ b/po/hr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-05 19:12-0400\n" +"POT-Creation-Date: 2023-06-05 19:44-0400\n" "PO-Revision-Date: 2022-09-22 12:13+0200\n" "Last-Translator: gogo \n" "Language-Team: Croatian\n" @@ -136,7 +136,7 @@ msgstr "" #: src/Common/LinuxKernel.vala:1015 #, fuzzy -msgid "Install: no installable kernels secified" +msgid "Install: no installable kernels specified" msgstr "Naredba nije navedena" #: src/Common/LinuxKernel.vala:1030 diff --git a/po/it.po b/po/it.po index 0f8d9c76..5c549755 100644 --- a/po/it.po +++ b/po/it.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-05 19:12-0400\n" +"POT-Creation-Date: 2023-06-05 19:44-0400\n" "PO-Revision-Date: 2020-08-22 15:35+0100\n" "Last-Translator: Demetrio Mendozzi\n" "Language-Team: Italian\n" @@ -134,7 +134,7 @@ msgstr "" #: src/Common/LinuxKernel.vala:1015 #, fuzzy -msgid "Install: no installable kernels secified" +msgid "Install: no installable kernels specified" msgstr "Comando non specificato" #: src/Common/LinuxKernel.vala:1030 diff --git a/po/ko.po b/po/ko.po index 369fe515..d49166c4 100644 --- a/po/ko.po +++ b/po/ko.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-05 19:12-0400\n" +"POT-Creation-Date: 2023-06-05 19:44-0400\n" "PO-Revision-Date: 2022-09-28 11:48+0900\n" "Last-Translator: Kevin Kim \n" "Language-Team: Korean\n" @@ -136,7 +136,7 @@ msgstr "" #: src/Common/LinuxKernel.vala:1015 #, fuzzy -msgid "Install: no installable kernels secified" +msgid "Install: no installable kernels specified" msgstr "지정한 명령어가 없습니다" #: src/Common/LinuxKernel.vala:1030 diff --git a/po/messages.pot b/po/messages.pot index 7b7643ef..22b34754 100644 --- a/po/messages.pot +++ b/po/messages.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline 1.3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-05 19:33-0400\n" +"POT-Creation-Date: 2023-06-05 19:44-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -135,7 +135,7 @@ msgid "download failed." msgstr "" #: src/Common/LinuxKernel.vala:1015 -msgid "Install: no installable kernels secified" +msgid "Install: no installable kernels specified" msgstr "" #: src/Common/LinuxKernel.vala:1030 diff --git a/po/nl.po b/po/nl.po index 9faf06cd..2ba679ad 100644 --- a/po/nl.po +++ b/po/nl.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-05 19:12-0400\n" +"POT-Creation-Date: 2023-06-05 19:44-0400\n" "PO-Revision-Date: 2020-08-23 13:55+0200\n" "Last-Translator: Heimen Stoffels \n" "Language-Team: Dutch (Netherlands)\n" @@ -136,7 +136,7 @@ msgstr "" #: src/Common/LinuxKernel.vala:1015 #, fuzzy -msgid "Install: no installable kernels secified" +msgid "Install: no installable kernels specified" msgstr "Geen opdracht opgegeven" #: src/Common/LinuxKernel.vala:1030 diff --git a/po/pl.po b/po/pl.po index 6cf00dcc..e942dfe3 100644 --- a/po/pl.po +++ b/po/pl.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-05 19:12-0400\n" +"POT-Creation-Date: 2023-06-05 19:44-0400\n" "PO-Revision-Date: 2023-06-03 14:24+0200\n" "Last-Translator: Matthaiks\n" "Language-Team: Polish\n" @@ -130,7 +130,8 @@ msgid "download failed." msgstr "pobieranie nie powiodło się." #: src/Common/LinuxKernel.vala:1015 -msgid "Install: no installable kernels secified" +#, fuzzy +msgid "Install: no installable kernels specified" msgstr "Instalowanie: nie określono jąder do zainstalowania" #: src/Common/LinuxKernel.vala:1030 diff --git a/po/ru.po b/po/ru.po index 5dab93cf..495c06b8 100644 --- a/po/ru.po +++ b/po/ru.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-05 19:12-0400\n" +"POT-Creation-Date: 2023-06-05 19:44-0400\n" "PO-Revision-Date: 2023-04-17 20:16+0300\n" "Last-Translator: Danik2343 \n" "Language-Team: Russian\n" @@ -136,7 +136,7 @@ msgstr "" #: src/Common/LinuxKernel.vala:1015 #, fuzzy -msgid "Install: no installable kernels secified" +msgid "Install: no installable kernels specified" msgstr "Команда не указана" #: src/Common/LinuxKernel.vala:1030 diff --git a/po/sv.po b/po/sv.po index 7d762efd..380376cc 100644 --- a/po/sv.po +++ b/po/sv.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-05 19:12-0400\n" +"POT-Creation-Date: 2023-06-05 19:44-0400\n" "PO-Revision-Date: 2018-01-13 16:56+0100\n" "Last-Translator: Åke Engelbrektson \n" "Language-Team:Swedish\n" @@ -136,7 +136,7 @@ msgstr "" #: src/Common/LinuxKernel.vala:1015 #, fuzzy -msgid "Install: no installable kernels secified" +msgid "Install: no installable kernels specified" msgstr "Kommandot har inte angetts" #: src/Common/LinuxKernel.vala:1030 diff --git a/po/tr.po b/po/tr.po index 4edbf431..b69e5ef1 100644 --- a/po/tr.po +++ b/po/tr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-05 19:12-0400\n" +"POT-Creation-Date: 2023-06-05 19:44-0400\n" "PO-Revision-Date: 2022-08-06 16:48+0300\n" "Last-Translator: Sabri Ünal \n" "Language-Team: Turkish\n" @@ -136,7 +136,7 @@ msgstr "" #: src/Common/LinuxKernel.vala:1015 #, fuzzy -msgid "Install: no installable kernels secified" +msgid "Install: no installable kernels specified" msgstr "Komut belirtilmedi" #: src/Common/LinuxKernel.vala:1030 diff --git a/po/uk.po b/po/uk.po index 2748dc94..930ca53b 100644 --- a/po/uk.po +++ b/po/uk.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-05 19:12-0400\n" +"POT-Creation-Date: 2023-06-05 19:44-0400\n" "PO-Revision-Date: 2019-07-25 11:00+0300\n" "Last-Translator: Serhii Golovko \n" "Language-Team: Ukranian\n" @@ -131,7 +131,8 @@ msgid "download failed." msgstr "не вдалося завантажити." #: src/Common/LinuxKernel.vala:1015 -msgid "Install: no installable kernels secified" +#, fuzzy +msgid "Install: no installable kernels specified" msgstr "Встановлення: ядра, які можна встановити, не визначені" #: src/Common/LinuxKernel.vala:1030 diff --git a/src/Common/LinuxKernel.vala b/src/Common/LinuxKernel.vala index 0c13534d..23199818 100644 --- a/src/Common/LinuxKernel.vala +++ b/src/Common/LinuxKernel.vala @@ -1012,7 +1012,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { foreach (string f in k.deb_url_list.keys) flist += k.cache_subdir+"/"+f; } - if (flist.length==0) { vprint(_("Install: no installable kernels secified")); return 1; } + if (flist.length==0) { vprint(_("Install: no installable kernels specified")); return 1; } // full paths instead of env -C // https://github.com/bkw777/mainline/issues/128 From 808ffd504d55084e14b7fadad6d2236a7fc01f4f Mon Sep 17 00:00:00 2001 From: cappelikan Date: Tue, 6 Jun 2023 06:37:52 +0300 Subject: [PATCH 362/567] Update uk.po --- po/uk.po | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/po/uk.po b/po/uk.po index 930ca53b..fdab3300 100644 --- a/po/uk.po +++ b/po/uk.po @@ -131,9 +131,8 @@ msgid "download failed." msgstr "не вдалося завантажити." #: src/Common/LinuxKernel.vala:1015 -#, fuzzy msgid "Install: no installable kernels specified" -msgstr "Встановлення: ядра, які можна встановити, не визначені" +msgstr "Встановити: ядра, які можна встановити, не вказано" #: src/Common/LinuxKernel.vala:1030 msgid "Uninstalling selected kernels" @@ -306,9 +305,8 @@ msgid "Unknown option" msgstr "Невідомий параметр" #: src/Console/AppConsole.vala:229 -#, fuzzy msgid "Notifications disabled" -msgstr "Повідомлення вимкнено" +msgstr "Сповіщення вимкнено" #: src/Console/AppConsole.vala:262 #, c-format From 4312141b84e212b9f6c92d6e32cdf57a944033d1 Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Tue, 6 Jun 2023 04:27:50 -0400 Subject: [PATCH 363/567] refactor ppa_dirs_ver from new/old bool to version num --- Makefile | 4 +- po/de.po | 158 ++++++++++++++---------- po/el.po | 158 ++++++++++++++---------- po/es.po | 158 ++++++++++++++---------- po/fr.po | 158 ++++++++++++++---------- po/hr.po | 158 ++++++++++++++---------- po/it.po | 158 ++++++++++++++---------- po/ko.po | 158 ++++++++++++++---------- po/messages.pot | 151 +++++++++++++---------- po/nl.po | 158 ++++++++++++++---------- po/pl.po | 158 ++++++++++++++---------- po/ru.po | 158 ++++++++++++++---------- po/sv.po | 158 ++++++++++++++---------- po/tr.po | 160 ++++++++++++++---------- po/uk.po | 158 ++++++++++++++---------- src/Common/DownloadManager.vala | 1 - src/Common/LinuxKernel.vala | 212 +++++++++++++------------------- src/Common/Main.vala | 14 +-- src/Console/AppConsole.vala | 40 ++---- src/Gtk/SettingsDialog.vala | 2 +- src/lib/l.misc.vala | 4 +- 21 files changed, 1417 insertions(+), 1067 deletions(-) diff --git a/Makefile b/Makefile index 02f51412..b7195b4f 100644 --- a/Makefile +++ b/Makefile @@ -63,12 +63,12 @@ deb_file = release/deb/$(BRANDING_SHORTNAME)_$(pkg_version).$(DEB_BUILD_NUMBER)_ .PHONY: all all: $(BRANDING_SHORTNAME) $(BRANDING_SHORTNAME)-gtk -$(BRANDING_SHORTNAME)-gtk: $(misc_files) $(common_vala_files) $(gui_vala_files) translations +$(BRANDING_SHORTNAME)-gtk: $(misc_files) $(common_vala_files) $(gui_vala_files) TRANSLATORS valac $(VALACFLAGS) -X -w $(build_symbols) --Xcc="-lm" \ --pkg $(glib) --pkg $(gio-unix) --pkg posix --pkg $(gee) --pkg $(json-glib) --pkg $(gtk+) --pkg $(vte) --pkg x11 \ $(common_vala_files) $(gui_vala_files) -o $(@) -$(BRANDING_SHORTNAME): $(misc_files) $(common_vala_files) $(tui_vala_files) translations +$(BRANDING_SHORTNAME): $(misc_files) $(common_vala_files) $(tui_vala_files) TRANSLATORS valac $(VALACFLAGS) -X -w $(build_symbols) --Xcc="-lm" \ --pkg $(glib) --pkg $(gio-unix) --pkg posix --pkg $(gee) --pkg $(json-glib) \ $(common_vala_files) $(tui_vala_files) -o $(@) diff --git a/po/de.po b/po/de.po index bda8244e..64e3daa1 100644 --- a/po/de.po +++ b/po/de.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-05 19:44-0400\n" +"POT-Creation-Date: 2023-06-06 03:55-0400\n" "PO-Revision-Date: 2023-02-20 18:40+0100\n" "Last-Translator: Marvin Meysel \n" "Language-Team: German\n" @@ -13,207 +13,211 @@ msgstr "" "X-Launchpad-Export-Date: 2017-04-13 11:48+0000\n" "X-Generator: Poedit 3.1.1\n" -#: src/Common/LinuxKernel.vala:100 +#: src/Common/LinuxKernel.vala:104 msgid "Distribution" msgstr "Distribution" -#: src/Common/LinuxKernel.vala:115 +#: src/Common/LinuxKernel.vala:119 msgid "Architecture" msgstr "Architektur" -#: src/Common/LinuxKernel.vala:130 +#: src/Common/LinuxKernel.vala:134 msgid "Running kernel" msgstr "Laufender kernel" -#: src/Common/LinuxKernel.vala:230 +#: src/Common/LinuxKernel.vala:221 msgid "loading cached" msgstr "laden gecached" -#: src/Common/LinuxKernel.vala:242 +#: src/Common/LinuxKernel.vala:233 msgid "queuing download" msgstr "download der warteschlange" -#: src/Common/LinuxKernel.vala:263 +#: src/Common/LinuxKernel.vala:253 msgid "Fetching individual kernel indexes" msgstr "Abrufen einzelner Kernel-Indizes" -#: src/Common/LinuxKernel.vala:277 +#: src/Common/LinuxKernel.vala:267 msgid "loading downloaded" msgstr "laden von heruntergeladenen Dateien" -#: src/Common/LinuxKernel.vala:318 +#: src/Common/LinuxKernel.vala:307 msgid "Updating from" msgstr "Aktualisieren von" -#: src/Common/LinuxKernel.vala:326 +#: src/Common/LinuxKernel.vala:315 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:329 +#: src/Common/LinuxKernel.vala:318 msgid "FAILED" msgstr "MISSLUNGEN" -#: src/Common/LinuxKernel.vala:392 +#: src/Common/LinuxKernel.vala:383 msgid "Found installed" msgstr "Installiert gefunden" -#: src/Common/LinuxKernel.vala:393 +#: src/Common/LinuxKernel.vala:384 msgid "locked" msgstr "" -#: src/Common/LinuxKernel.vala:475 src/Common/LinuxKernel.vala:1003 -#: src/Common/LinuxKernel.vala:1094 +#: src/Common/LinuxKernel.vala:466 src/Common/LinuxKernel.vala:997 +#: src/Common/LinuxKernel.vala:1088 msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:668 src/Gtk/MainWindow.vala:521 +#: src/Common/LinuxKernel.vala:661 src/Gtk/MainWindow.vala:521 msgid "Running" msgstr "Läuft" -#: src/Common/LinuxKernel.vala:669 +#: src/Common/LinuxKernel.vala:662 msgid "Installed" msgstr "Installiert" -#: src/Common/LinuxKernel.vala:670 +#: src/Common/LinuxKernel.vala:663 msgid "Invalid" msgstr "Ungültig" -#: src/Common/LinuxKernel.vala:760 +#: src/Common/LinuxKernel.vala:758 msgid "Packages Available" msgstr "Verfügbare Pakete" -#: src/Common/LinuxKernel.vala:766 +#: src/Common/LinuxKernel.vala:764 msgid "Packages Installed" msgstr "Installierte Pakete" -#: src/Common/LinuxKernel.vala:791 src/lib/TeeJee.FileSystem.vala:94 +#: src/Common/LinuxKernel.vala:789 src/lib/TeeJee.FileSystem.vala:94 msgid "File not found" msgstr "Datei nicht gefunden " -#: src/Common/LinuxKernel.vala:885 +#: src/Common/LinuxKernel.vala:883 msgid "Available Kernels" msgstr "Verfügbare Kernel" -#: src/Common/LinuxKernel.vala:920 src/Gtk/MainWindow.vala:135 +#: src/Common/LinuxKernel.vala:917 src/Gtk/MainWindow.vala:135 msgid "Kernel" msgstr "Kernel" -#: src/Common/LinuxKernel.vala:920 +#: src/Common/LinuxKernel.vala:917 #, fuzzy msgid "not found" msgstr "Datei nicht gefunden " -#: src/Common/LinuxKernel.vala:927 +#: src/Common/LinuxKernel.vala:924 #, fuzzy msgid "Download: no downloadable kernels specified" msgstr "Befehl nicht angegeben" -#: src/Common/LinuxKernel.vala:947 +#: src/Common/LinuxKernel.vala:940 msgid "enabled" msgstr "ermöglichte" -#: src/Common/LinuxKernel.vala:971 +#: src/Common/LinuxKernel.vala:965 msgid "Downloading" msgstr "Laden" -#: src/Common/LinuxKernel.vala:989 +#: src/Common/LinuxKernel.vala:983 #, fuzzy msgid "Installing selected kernels" msgstr "Deinstallation des angegebenen Kernels" -#: src/Common/LinuxKernel.vala:995 src/Common/LinuxKernel.vala:1034 +#: src/Common/LinuxKernel.vala:989 src/Common/LinuxKernel.vala:1028 #, fuzzy msgid "Requested" msgstr "angefordert" -#: src/Common/LinuxKernel.vala:998 +#: src/Common/LinuxKernel.vala:992 msgid "is already installed." msgstr "ist bereits installiert." -#: src/Common/LinuxKernel.vala:1008 +#: src/Common/LinuxKernel.vala:1002 msgid "download failed." msgstr "" -#: src/Common/LinuxKernel.vala:1015 +#: src/Common/LinuxKernel.vala:1009 #, fuzzy msgid "Install: no installable kernels specified" msgstr "Befehl nicht angegeben" -#: src/Common/LinuxKernel.vala:1030 +#: src/Common/LinuxKernel.vala:1024 msgid "Uninstalling selected kernels" msgstr "Deinstallation des angegebenen Kernels" -#: src/Common/LinuxKernel.vala:1037 +#: src/Common/LinuxKernel.vala:1031 #, fuzzy msgid "Not uninstalling the currently running kernel" msgstr "Den aktuell laufenden Kernel wird nicht deinstalliert" -#: src/Common/LinuxKernel.vala:1042 +#: src/Common/LinuxKernel.vala:1036 msgid "is locked" msgstr "" -#: src/Common/LinuxKernel.vala:1050 +#: src/Common/LinuxKernel.vala:1044 msgid "found" msgstr "gründen" -#: src/Common/LinuxKernel.vala:1054 +#: src/Common/LinuxKernel.vala:1048 msgid "Uninstall: no uninstallable packages found" msgstr "" -#: src/Common/LinuxKernel.vala:1090 +#: src/Common/LinuxKernel.vala:1084 #, fuzzy msgid "is the highest installed version." msgstr "Deinstallieren Sie alle bis auf die höchste installierte Version" -#: src/Common/LinuxKernel.vala:1103 +#: src/Common/LinuxKernel.vala:1097 msgid "Could not find running kernel in list" msgstr "Konnte keinen laufenden Kernel in der Liste finden" -#: src/Common/LinuxKernel.vala:1108 +#: src/Common/LinuxKernel.vala:1102 msgid "Could not find any kernels to uninstall" msgstr "Es konnten keine Kernel zum Deinstallieren gefunden werden" -#: src/Common/LinuxKernel.vala:1116 +#: src/Common/LinuxKernel.vala:1107 msgid "The following kernels will be uninstalled" msgstr "Die folgenden Kernel werden deinstalliert" -#: src/Common/LinuxKernel.vala:1120 +#: src/Common/LinuxKernel.vala:1109 msgid "Continue ?" msgstr "Weiter ?" -#: src/Common/LinuxKernel.vala:1142 src/Console/AppConsole.vala:208 -msgid "Latest update" -msgstr "Neustes Update" - -#: src/Common/LinuxKernel.vala:1153 src/Console/AppConsole.vala:215 -msgid "Latest point update" -msgstr "Letzte Punktaktualisierung" - -#: src/Common/LinuxKernel.vala:1161 src/Console/AppConsole.vala:220 -#: src/Console/AppConsole.vala:240 -msgid "No updates found" +#: src/Common/LinuxKernel.vala:1125 +#, fuzzy +msgid "No updates" msgstr "Keine Updates gefunden" -#: src/Common/LinuxKernel.vala:1170 +#: src/Common/LinuxKernel.vala:1131 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Kernel-Version %s installieren? (j/n):" -#: src/Common/Main.vala:354 +#: src/Common/Main.vala:240 +msgid "Wrote config file" +msgstr "" + +#: src/Common/Main.vala:259 +msgid "No config file" +msgstr "" + +#: src/Common/Main.vala:321 +msgid "Loaded config file" +msgstr "" + +#: src/Common/Main.vala:350 msgid "Called from" msgstr "Angerufen von" -#: src/Common/Main.vala:354 +#: src/Common/Main.vala:350 msgid "at logon" msgstr "beim start" -#: src/Common/Main.vala:355 +#: src/Common/Main.vala:351 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" "Diese Datei wird überschrieben und erneut ausgeführt, wenn Einstellungen in" -#: src/Common/Main.vala:387 +#: src/Common/Main.vala:383 msgid "Notifications are disabled" msgstr "Benachrichtigungen sind deaktiviert" @@ -313,30 +317,56 @@ msgstr "" msgid "Locked kernels and the currently running kernel are ignored" msgstr "Der aktuell laufende Kernel wird immer ignoriert" -#: src/Console/AppConsole.vala:139 src/Console/AppConsole.vala:193 +#: src/Console/AppConsole.vala:139 src/Console/AppConsole.vala:190 #: src/Gtk/AppGtk.vala:109 msgid "Unknown option" msgstr "Unbekannte Option" -#: src/Console/AppConsole.vala:229 +#: src/Console/AppConsole.vala:202 +msgid "Latest update" +msgstr "Neustes Update" + +#: src/Console/AppConsole.vala:203 +msgid "Latest point update" +msgstr "Letzte Punktaktualisierung" + +#: src/Console/AppConsole.vala:204 src/Console/AppConsole.vala:222 +msgid "No updates found" +msgstr "Keine Updates gefunden" + +#: src/Console/AppConsole.vala:211 #, fuzzy msgid "Notifications disabled" msgstr "Benachrichtigungen sind deaktiviert" -#: src/Console/AppConsole.vala:262 +#: src/Console/AppConsole.vala:216 +msgid "No" +msgstr "" + +#: src/Console/AppConsole.vala:231 +#, fuzzy +msgid "notify point releases disabled" +msgstr "Benachrichtigen, wenn eine Punktfreigabe verfügbar ist" + +#: src/Console/AppConsole.vala:239 +#, fuzzy +msgid "notify major releases disabled" +msgstr "Benachrichtigen, wenn eine größere Version verfügbar ist" + +#: src/Console/AppConsole.vala:244 #, c-format msgid "Kernel %s Available" msgstr "Kernel %s verfügbar" -#: src/Console/AppConsole.vala:266 src/Gtk/SettingsDialog.vala:151 +#: src/Console/AppConsole.vala:248 src/Gtk/SettingsDialog.vala:151 msgid "Show" msgstr "Zeigen" -#: src/Console/AppConsole.vala:267 src/Gtk/MainWindow.vala:312 +#: src/Console/AppConsole.vala:249 src/Gtk/MainWindow.vala:312 msgid "Install" msgstr "Installieren" -#: src/Console/AppConsole.vala:270 +#: src/Console/AppConsole.vala:252 msgid "Previously notified" msgstr "Zuvor gemeldet" diff --git a/po/el.po b/po/el.po index 4275d30e..db66fed8 100644 --- a/po/el.po +++ b/po/el.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-05 19:44-0400\n" +"POT-Creation-Date: 2023-06-06 03:55-0400\n" "PO-Revision-Date: 2023-01-10 02:03-0600\n" "Last-Translator: Vasilis Kosmidis \n" "Language-Team: Greek\n" @@ -13,208 +13,212 @@ msgstr "" "X-Launchpad-Export-Date: 2017-04-13 11:48+0000\n" "X-Generator: Poedit 2.0.5\n" -#: src/Common/LinuxKernel.vala:100 +#: src/Common/LinuxKernel.vala:104 msgid "Distribution" msgstr "Διανομή" -#: src/Common/LinuxKernel.vala:115 +#: src/Common/LinuxKernel.vala:119 msgid "Architecture" msgstr "Αρχιτεκτονική" -#: src/Common/LinuxKernel.vala:130 +#: src/Common/LinuxKernel.vala:134 msgid "Running kernel" msgstr "Εκτέλεση πυρήνα" -#: src/Common/LinuxKernel.vala:230 +#: src/Common/LinuxKernel.vala:221 msgid "loading cached" msgstr "φόρτωση προσωρινά αποθηκευμένου" -#: src/Common/LinuxKernel.vala:242 +#: src/Common/LinuxKernel.vala:233 msgid "queuing download" msgstr "Προσθήκη λήψης στην ουρά" -#: src/Common/LinuxKernel.vala:263 +#: src/Common/LinuxKernel.vala:253 msgid "Fetching individual kernel indexes" msgstr "Λήψη μεμονωμένων ευρετηρίων πυρήνα" -#: src/Common/LinuxKernel.vala:277 +#: src/Common/LinuxKernel.vala:267 msgid "loading downloaded" msgstr "Φόρτωση λήψης" -#: src/Common/LinuxKernel.vala:318 +#: src/Common/LinuxKernel.vala:307 msgid "Updating from" msgstr "Ενημέρωση από" -#: src/Common/LinuxKernel.vala:326 +#: src/Common/LinuxKernel.vala:315 msgid "OK" msgstr "ΟΚ" -#: src/Common/LinuxKernel.vala:329 +#: src/Common/LinuxKernel.vala:318 msgid "FAILED" msgstr "ΑΠΈΤΥΧΕ" -#: src/Common/LinuxKernel.vala:392 +#: src/Common/LinuxKernel.vala:383 msgid "Found installed" msgstr "Βρέθηκε εγκατεστημένο" -#: src/Common/LinuxKernel.vala:393 +#: src/Common/LinuxKernel.vala:384 msgid "locked" msgstr "" -#: src/Common/LinuxKernel.vala:475 src/Common/LinuxKernel.vala:1003 -#: src/Common/LinuxKernel.vala:1094 +#: src/Common/LinuxKernel.vala:466 src/Common/LinuxKernel.vala:997 +#: src/Common/LinuxKernel.vala:1088 msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:668 src/Gtk/MainWindow.vala:521 +#: src/Common/LinuxKernel.vala:661 src/Gtk/MainWindow.vala:521 msgid "Running" msgstr "Ενεργός" -#: src/Common/LinuxKernel.vala:669 +#: src/Common/LinuxKernel.vala:662 msgid "Installed" msgstr "Εγκατεστημένος" -#: src/Common/LinuxKernel.vala:670 +#: src/Common/LinuxKernel.vala:663 msgid "Invalid" msgstr "Άκυρος" -#: src/Common/LinuxKernel.vala:760 +#: src/Common/LinuxKernel.vala:758 msgid "Packages Available" msgstr "Διαθέσιμα πακέτα" -#: src/Common/LinuxKernel.vala:766 +#: src/Common/LinuxKernel.vala:764 msgid "Packages Installed" msgstr "Εγκατεστημένα πακέτα" -#: src/Common/LinuxKernel.vala:791 src/lib/TeeJee.FileSystem.vala:94 +#: src/Common/LinuxKernel.vala:789 src/lib/TeeJee.FileSystem.vala:94 msgid "File not found" msgstr "Το αρχείο δε βρέθηκε" -#: src/Common/LinuxKernel.vala:885 +#: src/Common/LinuxKernel.vala:883 msgid "Available Kernels" msgstr "Διαθέσιμοι πυρήνες" -#: src/Common/LinuxKernel.vala:920 src/Gtk/MainWindow.vala:135 +#: src/Common/LinuxKernel.vala:917 src/Gtk/MainWindow.vala:135 msgid "Kernel" msgstr "Πυρήνας" -#: src/Common/LinuxKernel.vala:920 +#: src/Common/LinuxKernel.vala:917 #, fuzzy msgid "not found" msgstr "Το αρχείο δε βρέθηκε" -#: src/Common/LinuxKernel.vala:927 +#: src/Common/LinuxKernel.vala:924 #, fuzzy msgid "Download: no downloadable kernels specified" msgstr "Η εντολή δεν προσδιορίστηκε" -#: src/Common/LinuxKernel.vala:947 +#: src/Common/LinuxKernel.vala:940 msgid "enabled" msgstr "ενεργοποιημένη" -#: src/Common/LinuxKernel.vala:971 +#: src/Common/LinuxKernel.vala:965 msgid "Downloading" msgstr "Κατέβασμα" -#: src/Common/LinuxKernel.vala:989 +#: src/Common/LinuxKernel.vala:983 #, fuzzy msgid "Installing selected kernels" msgstr "Απεγκατάσταση επιλεγμένων πυρήνων" -#: src/Common/LinuxKernel.vala:995 src/Common/LinuxKernel.vala:1034 +#: src/Common/LinuxKernel.vala:989 src/Common/LinuxKernel.vala:1028 #, fuzzy msgid "Requested" msgstr "ζητήθηκε" -#: src/Common/LinuxKernel.vala:998 +#: src/Common/LinuxKernel.vala:992 msgid "is already installed." msgstr "είναι ήδη εγκατεστημένο." -#: src/Common/LinuxKernel.vala:1008 +#: src/Common/LinuxKernel.vala:1002 msgid "download failed." msgstr "" -#: src/Common/LinuxKernel.vala:1015 +#: src/Common/LinuxKernel.vala:1009 #, fuzzy msgid "Install: no installable kernels specified" msgstr "Η εντολή δεν προσδιορίστηκε" -#: src/Common/LinuxKernel.vala:1030 +#: src/Common/LinuxKernel.vala:1024 msgid "Uninstalling selected kernels" msgstr "Απεγκατάσταση επιλεγμένων πυρήνων" -#: src/Common/LinuxKernel.vala:1037 +#: src/Common/LinuxKernel.vala:1031 #, fuzzy msgid "Not uninstalling the currently running kernel" msgstr "δεν θα απεγκαταστήσει τον πυρήνα που εκτελείται αυτήν τη στιγμή" -#: src/Common/LinuxKernel.vala:1042 +#: src/Common/LinuxKernel.vala:1036 msgid "is locked" msgstr "" -#: src/Common/LinuxKernel.vala:1050 +#: src/Common/LinuxKernel.vala:1044 msgid "found" msgstr "ιδρύω" -#: src/Common/LinuxKernel.vala:1054 +#: src/Common/LinuxKernel.vala:1048 msgid "Uninstall: no uninstallable packages found" msgstr "" -#: src/Common/LinuxKernel.vala:1090 +#: src/Common/LinuxKernel.vala:1084 #, fuzzy msgid "is the highest installed version." msgstr "Απεγκαταστήστε όλες εκτός από την υψηλότερη εγκατεστημένη έκδοση" -#: src/Common/LinuxKernel.vala:1103 +#: src/Common/LinuxKernel.vala:1097 msgid "Could not find running kernel in list" msgstr "Δεν ήταν δυνατή η εύρεση του πυρήνα που εκτελείται αυτήν τη στιγμή" -#: src/Common/LinuxKernel.vala:1108 +#: src/Common/LinuxKernel.vala:1102 msgid "Could not find any kernels to uninstall" msgstr "Δεν βρέθηκε κανένας πυρήνας για απεγκατάσταση" -#: src/Common/LinuxKernel.vala:1116 +#: src/Common/LinuxKernel.vala:1107 msgid "The following kernels will be uninstalled" msgstr "Θα καταργηθεί η εγκατάσταση των ακόλουθων πυρήνων" -#: src/Common/LinuxKernel.vala:1120 +#: src/Common/LinuxKernel.vala:1109 msgid "Continue ?" msgstr "Συνέχεια;" -#: src/Common/LinuxKernel.vala:1142 src/Console/AppConsole.vala:208 -msgid "Latest update" -msgstr "Τελευταία αναβάθμιση" - -#: src/Common/LinuxKernel.vala:1153 src/Console/AppConsole.vala:215 -msgid "Latest point update" -msgstr "Τελευταία ενημέρωση συντήρησης" - -#: src/Common/LinuxKernel.vala:1161 src/Console/AppConsole.vala:220 -#: src/Console/AppConsole.vala:240 -msgid "No updates found" +#: src/Common/LinuxKernel.vala:1125 +#, fuzzy +msgid "No updates" msgstr "Δεν βρέθηκαν ενημερώσεις" -#: src/Common/LinuxKernel.vala:1170 +#: src/Common/LinuxKernel.vala:1131 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Εγκατάσταση του πυρήνα έκδοσης %s ; (ν/ό):" -#: src/Common/Main.vala:354 +#: src/Common/Main.vala:240 +msgid "Wrote config file" +msgstr "" + +#: src/Common/Main.vala:259 +msgid "No config file" +msgstr "" + +#: src/Common/Main.vala:321 +msgid "Loaded config file" +msgstr "" + +#: src/Common/Main.vala:350 msgid "Called from" msgstr "Κλήθηκε από" -#: src/Common/Main.vala:354 +#: src/Common/Main.vala:350 msgid "at logon" msgstr "κατά την εκκίνηση" -#: src/Common/Main.vala:355 +#: src/Common/Main.vala:351 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" "Αυτό το αρχείο αντικαθίσταται και εκτελείται ξανά κάθε φορά που " "αποθηκεύονται οι ρυθμίσεις στο" -#: src/Common/Main.vala:387 +#: src/Common/Main.vala:383 msgid "Notifications are disabled" msgstr "Οι ειδοποιήσεις είναι απενεργοποιημένες" @@ -314,30 +318,56 @@ msgstr "" msgid "Locked kernels and the currently running kernel are ignored" msgstr "Αυτός ο πυρήνας είναι ήδη εγκατεστημένος." -#: src/Console/AppConsole.vala:139 src/Console/AppConsole.vala:193 +#: src/Console/AppConsole.vala:139 src/Console/AppConsole.vala:190 #: src/Gtk/AppGtk.vala:109 msgid "Unknown option" msgstr "Άγνωστη επιλογή" -#: src/Console/AppConsole.vala:229 +#: src/Console/AppConsole.vala:202 +msgid "Latest update" +msgstr "Τελευταία αναβάθμιση" + +#: src/Console/AppConsole.vala:203 +msgid "Latest point update" +msgstr "Τελευταία ενημέρωση συντήρησης" + +#: src/Console/AppConsole.vala:204 src/Console/AppConsole.vala:222 +msgid "No updates found" +msgstr "Δεν βρέθηκαν ενημερώσεις" + +#: src/Console/AppConsole.vala:211 #, fuzzy msgid "Notifications disabled" msgstr "Οι ειδοποιήσεις είναι απενεργοποιημένες" -#: src/Console/AppConsole.vala:262 +#: src/Console/AppConsole.vala:216 +msgid "No" +msgstr "" + +#: src/Console/AppConsole.vala:231 +#, fuzzy +msgid "notify point releases disabled" +msgstr "Ειδοποίηση αν είναι διαθέσιμη έκδοση συντήρησης" + +#: src/Console/AppConsole.vala:239 +#, fuzzy +msgid "notify major releases disabled" +msgstr "Ειδοποίηση αν είναι διαθέσιμη κύρια έκδοση" + +#: src/Console/AppConsole.vala:244 #, c-format msgid "Kernel %s Available" msgstr "Πυρήνας %s διαθέσιμος" -#: src/Console/AppConsole.vala:266 src/Gtk/SettingsDialog.vala:151 +#: src/Console/AppConsole.vala:248 src/Gtk/SettingsDialog.vala:151 msgid "Show" msgstr "Προβολή" -#: src/Console/AppConsole.vala:267 src/Gtk/MainWindow.vala:312 +#: src/Console/AppConsole.vala:249 src/Gtk/MainWindow.vala:312 msgid "Install" msgstr "Εγκατάσταση" -#: src/Console/AppConsole.vala:270 +#: src/Console/AppConsole.vala:252 msgid "Previously notified" msgstr "Έχει ήδη κοινοποιηθεί" diff --git a/po/es.po b/po/es.po index 751c027f..ab46298d 100644 --- a/po/es.po +++ b/po/es.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-05 19:44-0400\n" +"POT-Creation-Date: 2023-06-06 03:55-0400\n" "PO-Revision-Date: 2018-01-03 02:03-0600\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish\n" @@ -13,208 +13,212 @@ msgstr "" "X-Launchpad-Export-Date: 2017-04-13 11:48+0000\n" "X-Generator: Poedit 2.0.5\n" -#: src/Common/LinuxKernel.vala:100 +#: src/Common/LinuxKernel.vala:104 msgid "Distribution" msgstr "Distribución" -#: src/Common/LinuxKernel.vala:115 +#: src/Common/LinuxKernel.vala:119 msgid "Architecture" msgstr "Arquitectura del sistema" -#: src/Common/LinuxKernel.vala:130 +#: src/Common/LinuxKernel.vala:134 msgid "Running kernel" msgstr "Kernel en ejecución" -#: src/Common/LinuxKernel.vala:230 +#: src/Common/LinuxKernel.vala:221 msgid "loading cached" msgstr "carga en caché" -#: src/Common/LinuxKernel.vala:242 +#: src/Common/LinuxKernel.vala:233 msgid "queuing download" msgstr "descarga de colas" -#: src/Common/LinuxKernel.vala:263 +#: src/Common/LinuxKernel.vala:253 msgid "Fetching individual kernel indexes" msgstr "Obtención de índices de kernel individuales" -#: src/Common/LinuxKernel.vala:277 +#: src/Common/LinuxKernel.vala:267 msgid "loading downloaded" msgstr "cargando descargado" -#: src/Common/LinuxKernel.vala:318 +#: src/Common/LinuxKernel.vala:307 msgid "Updating from" msgstr "Actualización desde" -#: src/Common/LinuxKernel.vala:326 +#: src/Common/LinuxKernel.vala:315 msgid "OK" msgstr "Aceptar" -#: src/Common/LinuxKernel.vala:329 +#: src/Common/LinuxKernel.vala:318 msgid "FAILED" msgstr "FRACASADO" -#: src/Common/LinuxKernel.vala:392 +#: src/Common/LinuxKernel.vala:383 msgid "Found installed" msgstr "Encontrado instalado" -#: src/Common/LinuxKernel.vala:393 +#: src/Common/LinuxKernel.vala:384 msgid "locked" msgstr "" -#: src/Common/LinuxKernel.vala:475 src/Common/LinuxKernel.vala:1003 -#: src/Common/LinuxKernel.vala:1094 +#: src/Common/LinuxKernel.vala:466 src/Common/LinuxKernel.vala:997 +#: src/Common/LinuxKernel.vala:1088 msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:668 src/Gtk/MainWindow.vala:521 +#: src/Common/LinuxKernel.vala:661 src/Gtk/MainWindow.vala:521 msgid "Running" msgstr "En ejecución" -#: src/Common/LinuxKernel.vala:669 +#: src/Common/LinuxKernel.vala:662 msgid "Installed" msgstr "Instalado" -#: src/Common/LinuxKernel.vala:670 +#: src/Common/LinuxKernel.vala:663 msgid "Invalid" msgstr "No válido" -#: src/Common/LinuxKernel.vala:760 +#: src/Common/LinuxKernel.vala:758 msgid "Packages Available" msgstr "Paquetes disponibles" -#: src/Common/LinuxKernel.vala:766 +#: src/Common/LinuxKernel.vala:764 msgid "Packages Installed" msgstr "Paquetes instalados" -#: src/Common/LinuxKernel.vala:791 src/lib/TeeJee.FileSystem.vala:94 +#: src/Common/LinuxKernel.vala:789 src/lib/TeeJee.FileSystem.vala:94 msgid "File not found" msgstr "No se encontró el archivo" -#: src/Common/LinuxKernel.vala:885 +#: src/Common/LinuxKernel.vala:883 msgid "Available Kernels" msgstr "Núcleos disponibles" -#: src/Common/LinuxKernel.vala:920 src/Gtk/MainWindow.vala:135 +#: src/Common/LinuxKernel.vala:917 src/Gtk/MainWindow.vala:135 msgid "Kernel" msgstr "Núcleo" -#: src/Common/LinuxKernel.vala:920 +#: src/Common/LinuxKernel.vala:917 #, fuzzy msgid "not found" msgstr "No se encontró el archivo" -#: src/Common/LinuxKernel.vala:927 +#: src/Common/LinuxKernel.vala:924 #, fuzzy msgid "Download: no downloadable kernels specified" msgstr "Coomand no especificado" -#: src/Common/LinuxKernel.vala:947 +#: src/Common/LinuxKernel.vala:940 msgid "enabled" msgstr "habilitado" -#: src/Common/LinuxKernel.vala:971 +#: src/Common/LinuxKernel.vala:965 msgid "Downloading" msgstr "Descargar" -#: src/Common/LinuxKernel.vala:989 +#: src/Common/LinuxKernel.vala:983 #, fuzzy msgid "Installing selected kernels" msgstr "Desinstalación de kernels seleccionados" -#: src/Common/LinuxKernel.vala:995 src/Common/LinuxKernel.vala:1034 +#: src/Common/LinuxKernel.vala:989 src/Common/LinuxKernel.vala:1028 #, fuzzy msgid "Requested" msgstr "solicitado" -#: src/Common/LinuxKernel.vala:998 +#: src/Common/LinuxKernel.vala:992 msgid "is already installed." msgstr "ya está instalado." -#: src/Common/LinuxKernel.vala:1008 +#: src/Common/LinuxKernel.vala:1002 msgid "download failed." msgstr "" -#: src/Common/LinuxKernel.vala:1015 +#: src/Common/LinuxKernel.vala:1009 #, fuzzy msgid "Install: no installable kernels specified" msgstr "Coomand no especificado" -#: src/Common/LinuxKernel.vala:1030 +#: src/Common/LinuxKernel.vala:1024 msgid "Uninstalling selected kernels" msgstr "Desinstalación de kernels seleccionados" -#: src/Common/LinuxKernel.vala:1037 +#: src/Common/LinuxKernel.vala:1031 #, fuzzy msgid "Not uninstalling the currently running kernel" msgstr "No desinstalará el kernel que se está ejecutando actualmente" -#: src/Common/LinuxKernel.vala:1042 +#: src/Common/LinuxKernel.vala:1036 msgid "is locked" msgstr "" -#: src/Common/LinuxKernel.vala:1050 +#: src/Common/LinuxKernel.vala:1044 msgid "found" msgstr "fundar" -#: src/Common/LinuxKernel.vala:1054 +#: src/Common/LinuxKernel.vala:1048 msgid "Uninstall: no uninstallable packages found" msgstr "" -#: src/Common/LinuxKernel.vala:1090 +#: src/Common/LinuxKernel.vala:1084 #, fuzzy msgid "is the highest installed version." msgstr "Desinstale todas las versiones instaladas excepto la más alta" -#: src/Common/LinuxKernel.vala:1103 +#: src/Common/LinuxKernel.vala:1097 msgid "Could not find running kernel in list" msgstr "No se pudo encontrar el kernel en ejecución en la lista" -#: src/Common/LinuxKernel.vala:1108 +#: src/Common/LinuxKernel.vala:1102 msgid "Could not find any kernels to uninstall" msgstr "No se pudo encontrar ningún kernel para desinstalar" -#: src/Common/LinuxKernel.vala:1116 +#: src/Common/LinuxKernel.vala:1107 msgid "The following kernels will be uninstalled" msgstr "Se desinstalarán los siguientes kernels" -#: src/Common/LinuxKernel.vala:1120 +#: src/Common/LinuxKernel.vala:1109 msgid "Continue ?" msgstr "¿Continuar?" -#: src/Common/LinuxKernel.vala:1142 src/Console/AppConsole.vala:208 -msgid "Latest update" -msgstr "Última actualización" - -#: src/Common/LinuxKernel.vala:1153 src/Console/AppConsole.vala:215 -msgid "Latest point update" -msgstr "Última actualización puntual" - -#: src/Common/LinuxKernel.vala:1161 src/Console/AppConsole.vala:220 -#: src/Console/AppConsole.vala:240 -msgid "No updates found" +#: src/Common/LinuxKernel.vala:1125 +#, fuzzy +msgid "No updates" msgstr "No se encontró ninguna actualización" -#: src/Common/LinuxKernel.vala:1170 +#: src/Common/LinuxKernel.vala:1131 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Instalar la versión del kernel %s? (s/n): " -#: src/Common/Main.vala:354 +#: src/Common/Main.vala:240 +msgid "Wrote config file" +msgstr "" + +#: src/Common/Main.vala:259 +msgid "No config file" +msgstr "" + +#: src/Common/Main.vala:321 +msgid "Loaded config file" +msgstr "" + +#: src/Common/Main.vala:350 msgid "Called from" msgstr "Llamado desde" -#: src/Common/Main.vala:354 +#: src/Common/Main.vala:350 msgid "at logon" msgstr "al inicio" -#: src/Common/Main.vala:355 +#: src/Common/Main.vala:351 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" "Este archivo se sobrescribe y se ejecuta de nuevo cada vez que se guarda la " "configuración en" -#: src/Common/Main.vala:387 +#: src/Common/Main.vala:383 msgid "Notifications are disabled" msgstr "Las notificaciones están deshabilitadas" @@ -313,30 +317,56 @@ msgstr "" msgid "Locked kernels and the currently running kernel are ignored" msgstr "El kernel que se está ejecutando actualmente siempre será ignorado" -#: src/Console/AppConsole.vala:139 src/Console/AppConsole.vala:193 +#: src/Console/AppConsole.vala:139 src/Console/AppConsole.vala:190 #: src/Gtk/AppGtk.vala:109 msgid "Unknown option" msgstr "Opción desconocida" -#: src/Console/AppConsole.vala:229 +#: src/Console/AppConsole.vala:202 +msgid "Latest update" +msgstr "Última actualización" + +#: src/Console/AppConsole.vala:203 +msgid "Latest point update" +msgstr "Última actualización puntual" + +#: src/Console/AppConsole.vala:204 src/Console/AppConsole.vala:222 +msgid "No updates found" +msgstr "No se encontró ninguna actualización" + +#: src/Console/AppConsole.vala:211 #, fuzzy msgid "Notifications disabled" msgstr "Las notificaciones están deshabilitadas" -#: src/Console/AppConsole.vala:262 +#: src/Console/AppConsole.vala:216 +msgid "No" +msgstr "" + +#: src/Console/AppConsole.vala:231 +#, fuzzy +msgid "notify point releases disabled" +msgstr "Notificar si hay una versión puntual disponible" + +#: src/Console/AppConsole.vala:239 +#, fuzzy +msgid "notify major releases disabled" +msgstr "Notificar si hay una versión importante disponible" + +#: src/Console/AppConsole.vala:244 #, c-format msgid "Kernel %s Available" msgstr "Kernel %s Disponible" -#: src/Console/AppConsole.vala:266 src/Gtk/SettingsDialog.vala:151 +#: src/Console/AppConsole.vala:248 src/Gtk/SettingsDialog.vala:151 msgid "Show" msgstr "Mostrar" -#: src/Console/AppConsole.vala:267 src/Gtk/MainWindow.vala:312 +#: src/Console/AppConsole.vala:249 src/Gtk/MainWindow.vala:312 msgid "Install" msgstr "Instalar" -#: src/Console/AppConsole.vala:270 +#: src/Console/AppConsole.vala:252 msgid "Previously notified" msgstr "Notificado previamente" diff --git a/po/fr.po b/po/fr.po index fa6090d6..144c83aa 100644 --- a/po/fr.po +++ b/po/fr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-05 19:44-0400\n" +"POT-Creation-Date: 2023-06-06 03:55-0400\n" "PO-Revision-Date: 2018-08-05 15:50+0200\n" "Last-Translator: Yolateng0 \n" "Language-Team: French\n" @@ -13,208 +13,212 @@ msgstr "" "X-Launchpad-Export-Date: 2017-04-13 11:48+0000\n" "X-Generator: Poedit 2.0.6\n" -#: src/Common/LinuxKernel.vala:100 +#: src/Common/LinuxKernel.vala:104 msgid "Distribution" msgstr "Distribution" -#: src/Common/LinuxKernel.vala:115 +#: src/Common/LinuxKernel.vala:119 msgid "Architecture" msgstr "Architecture" -#: src/Common/LinuxKernel.vala:130 +#: src/Common/LinuxKernel.vala:134 msgid "Running kernel" msgstr "Noyau en cours d'exécution" -#: src/Common/LinuxKernel.vala:230 +#: src/Common/LinuxKernel.vala:221 msgid "loading cached" msgstr "chargement mis en cache" -#: src/Common/LinuxKernel.vala:242 +#: src/Common/LinuxKernel.vala:233 msgid "queuing download" msgstr "enqueuing télécharger" -#: src/Common/LinuxKernel.vala:263 +#: src/Common/LinuxKernel.vala:253 msgid "Fetching individual kernel indexes" msgstr "Récupération d'index de noyau individuels" -#: src/Common/LinuxKernel.vala:277 +#: src/Common/LinuxKernel.vala:267 msgid "loading downloaded" msgstr "chargement téléchargé" -#: src/Common/LinuxKernel.vala:318 +#: src/Common/LinuxKernel.vala:307 msgid "Updating from" msgstr "Mise à jour à partir de" -#: src/Common/LinuxKernel.vala:326 +#: src/Common/LinuxKernel.vala:315 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:329 +#: src/Common/LinuxKernel.vala:318 msgid "FAILED" msgstr "RATÉ" -#: src/Common/LinuxKernel.vala:392 +#: src/Common/LinuxKernel.vala:383 msgid "Found installed" msgstr "Trouvé installé" -#: src/Common/LinuxKernel.vala:393 +#: src/Common/LinuxKernel.vala:384 msgid "locked" msgstr "" -#: src/Common/LinuxKernel.vala:475 src/Common/LinuxKernel.vala:1003 -#: src/Common/LinuxKernel.vala:1094 +#: src/Common/LinuxKernel.vala:466 src/Common/LinuxKernel.vala:997 +#: src/Common/LinuxKernel.vala:1088 msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:668 src/Gtk/MainWindow.vala:521 +#: src/Common/LinuxKernel.vala:661 src/Gtk/MainWindow.vala:521 msgid "Running" msgstr "Actuel" -#: src/Common/LinuxKernel.vala:669 +#: src/Common/LinuxKernel.vala:662 msgid "Installed" msgstr "Installé" -#: src/Common/LinuxKernel.vala:670 +#: src/Common/LinuxKernel.vala:663 msgid "Invalid" msgstr "No válido" -#: src/Common/LinuxKernel.vala:760 +#: src/Common/LinuxKernel.vala:758 msgid "Packages Available" msgstr "Paquets Disponibles" -#: src/Common/LinuxKernel.vala:766 +#: src/Common/LinuxKernel.vala:764 msgid "Packages Installed" msgstr "Paquets Installés" -#: src/Common/LinuxKernel.vala:791 src/lib/TeeJee.FileSystem.vala:94 +#: src/Common/LinuxKernel.vala:789 src/lib/TeeJee.FileSystem.vala:94 msgid "File not found" msgstr "Fichier non trouvé" -#: src/Common/LinuxKernel.vala:885 +#: src/Common/LinuxKernel.vala:883 msgid "Available Kernels" msgstr "Noyaux Disponibles" -#: src/Common/LinuxKernel.vala:920 src/Gtk/MainWindow.vala:135 +#: src/Common/LinuxKernel.vala:917 src/Gtk/MainWindow.vala:135 msgid "Kernel" msgstr "Noyau" -#: src/Common/LinuxKernel.vala:920 +#: src/Common/LinuxKernel.vala:917 #, fuzzy msgid "not found" msgstr "Fichier non trouvé" -#: src/Common/LinuxKernel.vala:927 +#: src/Common/LinuxKernel.vala:924 #, fuzzy msgid "Download: no downloadable kernels specified" msgstr "Pas de commande fournie" -#: src/Common/LinuxKernel.vala:947 +#: src/Common/LinuxKernel.vala:940 msgid "enabled" msgstr "activé" -#: src/Common/LinuxKernel.vala:971 +#: src/Common/LinuxKernel.vala:965 msgid "Downloading" msgstr "Téléchargement" -#: src/Common/LinuxKernel.vala:989 +#: src/Common/LinuxKernel.vala:983 #, fuzzy msgid "Installing selected kernels" msgstr "Désinstallation des noyaux sélectionnés" -#: src/Common/LinuxKernel.vala:995 src/Common/LinuxKernel.vala:1034 +#: src/Common/LinuxKernel.vala:989 src/Common/LinuxKernel.vala:1028 #, fuzzy msgid "Requested" msgstr "Demandé" -#: src/Common/LinuxKernel.vala:998 +#: src/Common/LinuxKernel.vala:992 msgid "is already installed." msgstr "est déjà installé." -#: src/Common/LinuxKernel.vala:1008 +#: src/Common/LinuxKernel.vala:1002 msgid "download failed." msgstr "" -#: src/Common/LinuxKernel.vala:1015 +#: src/Common/LinuxKernel.vala:1009 #, fuzzy msgid "Install: no installable kernels specified" msgstr "Pas de commande fournie" -#: src/Common/LinuxKernel.vala:1030 +#: src/Common/LinuxKernel.vala:1024 msgid "Uninstalling selected kernels" msgstr "Désinstallation des noyaux sélectionnés" -#: src/Common/LinuxKernel.vala:1037 +#: src/Common/LinuxKernel.vala:1031 #, fuzzy msgid "Not uninstalling the currently running kernel" msgstr "Ne pas désinstaller le noyau en cours d'exécution" -#: src/Common/LinuxKernel.vala:1042 +#: src/Common/LinuxKernel.vala:1036 msgid "is locked" msgstr "" -#: src/Common/LinuxKernel.vala:1050 +#: src/Common/LinuxKernel.vala:1044 msgid "found" msgstr "fonder" -#: src/Common/LinuxKernel.vala:1054 +#: src/Common/LinuxKernel.vala:1048 msgid "Uninstall: no uninstallable packages found" msgstr "" -#: src/Common/LinuxKernel.vala:1090 +#: src/Common/LinuxKernel.vala:1084 #, fuzzy msgid "is the highest installed version." msgstr "Désinstallez toutes le version installées, sauf la plus élevée" -#: src/Common/LinuxKernel.vala:1103 +#: src/Common/LinuxKernel.vala:1097 msgid "Could not find running kernel in list" msgstr "Impossible de trouver le noyau en cours d'exécution dans la liste" -#: src/Common/LinuxKernel.vala:1108 +#: src/Common/LinuxKernel.vala:1102 msgid "Could not find any kernels to uninstall" msgstr "Impossible de trouver des noyaux à désinstaller" -#: src/Common/LinuxKernel.vala:1116 +#: src/Common/LinuxKernel.vala:1107 msgid "The following kernels will be uninstalled" msgstr "Les noyaux suivants seront désinstallés" -#: src/Common/LinuxKernel.vala:1120 +#: src/Common/LinuxKernel.vala:1109 msgid "Continue ?" msgstr "Reprendre ?" -#: src/Common/LinuxKernel.vala:1142 src/Console/AppConsole.vala:208 -msgid "Latest update" -msgstr "Dernière mise à jour" - -#: src/Common/LinuxKernel.vala:1153 src/Console/AppConsole.vala:215 -msgid "Latest point update" -msgstr "Dernière mise à jour mineure" - -#: src/Common/LinuxKernel.vala:1161 src/Console/AppConsole.vala:220 -#: src/Console/AppConsole.vala:240 -msgid "No updates found" +#: src/Common/LinuxKernel.vala:1125 +#, fuzzy +msgid "No updates" msgstr "Aucune mise à jour disponible" -#: src/Common/LinuxKernel.vala:1170 +#: src/Common/LinuxKernel.vala:1131 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Installer le noyau en version %s ? (y/n): " -#: src/Common/Main.vala:354 +#: src/Common/Main.vala:240 +msgid "Wrote config file" +msgstr "" + +#: src/Common/Main.vala:259 +msgid "No config file" +msgstr "" + +#: src/Common/Main.vala:321 +msgid "Loaded config file" +msgstr "" + +#: src/Common/Main.vala:350 msgid "Called from" msgstr "Appelé à partir de" -#: src/Common/Main.vala:354 +#: src/Common/Main.vala:350 msgid "at logon" msgstr "au démarrage" -#: src/Common/Main.vala:355 +#: src/Common/Main.vala:351 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" "Ce fichier est écrasé et exécuté à nouveau chaque fois que les paramètres " "sont enregistrés dans" -#: src/Common/Main.vala:387 +#: src/Common/Main.vala:383 msgid "Notifications are disabled" msgstr "Les notifications sont désactivées" @@ -313,30 +317,56 @@ msgstr "" msgid "Locked kernels and the currently running kernel are ignored" msgstr "Le noyau en cours d'exécution sera toujours ignoré" -#: src/Console/AppConsole.vala:139 src/Console/AppConsole.vala:193 +#: src/Console/AppConsole.vala:139 src/Console/AppConsole.vala:190 #: src/Gtk/AppGtk.vala:109 msgid "Unknown option" msgstr "Option inconnue" -#: src/Console/AppConsole.vala:229 +#: src/Console/AppConsole.vala:202 +msgid "Latest update" +msgstr "Dernière mise à jour" + +#: src/Console/AppConsole.vala:203 +msgid "Latest point update" +msgstr "Dernière mise à jour mineure" + +#: src/Console/AppConsole.vala:204 src/Console/AppConsole.vala:222 +msgid "No updates found" +msgstr "Aucune mise à jour disponible" + +#: src/Console/AppConsole.vala:211 #, fuzzy msgid "Notifications disabled" msgstr "Les notifications sont désactivées" -#: src/Console/AppConsole.vala:262 +#: src/Console/AppConsole.vala:216 +msgid "No" +msgstr "" + +#: src/Console/AppConsole.vala:231 +#, fuzzy +msgid "notify point releases disabled" +msgstr "Notifier si une version stable mineure est disponible" + +#: src/Console/AppConsole.vala:239 +#, fuzzy +msgid "notify major releases disabled" +msgstr "Notifier si une version stable majeure est disponible" + +#: src/Console/AppConsole.vala:244 #, c-format msgid "Kernel %s Available" msgstr "Paquet %s disponibles" -#: src/Console/AppConsole.vala:266 src/Gtk/SettingsDialog.vala:151 +#: src/Console/AppConsole.vala:248 src/Gtk/SettingsDialog.vala:151 msgid "Show" msgstr "Montrer" -#: src/Console/AppConsole.vala:267 src/Gtk/MainWindow.vala:312 +#: src/Console/AppConsole.vala:249 src/Gtk/MainWindow.vala:312 msgid "Install" msgstr "Installer" -#: src/Console/AppConsole.vala:270 +#: src/Console/AppConsole.vala:252 msgid "Previously notified" msgstr "Précédemment notifié" diff --git a/po/hr.po b/po/hr.po index 48fca510..991c3a90 100644 --- a/po/hr.po +++ b/po/hr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-05 19:44-0400\n" +"POT-Creation-Date: 2023-06-06 03:55-0400\n" "PO-Revision-Date: 2022-09-22 12:13+0200\n" "Last-Translator: gogo \n" "Language-Team: Croatian\n" @@ -13,207 +13,211 @@ msgstr "" "X-Launchpad-Export-Date: 2017-12-23 23:36+0000\n" "X-Generator: Poedit 3.0.1\n" -#: src/Common/LinuxKernel.vala:100 +#: src/Common/LinuxKernel.vala:104 msgid "Distribution" msgstr "Distribucija" -#: src/Common/LinuxKernel.vala:115 +#: src/Common/LinuxKernel.vala:119 msgid "Architecture" msgstr "Arhitektura" -#: src/Common/LinuxKernel.vala:130 +#: src/Common/LinuxKernel.vala:134 msgid "Running kernel" msgstr "Trčanje kernel" -#: src/Common/LinuxKernel.vala:230 +#: src/Common/LinuxKernel.vala:221 msgid "loading cached" msgstr "učitavanje predmemoriranog" -#: src/Common/LinuxKernel.vala:242 +#: src/Common/LinuxKernel.vala:233 msgid "queuing download" msgstr "preuzimanje u redu čekanja" -#: src/Common/LinuxKernel.vala:263 +#: src/Common/LinuxKernel.vala:253 msgid "Fetching individual kernel indexes" msgstr "Dohvaćanje pojedinačnih indeksa kernel" -#: src/Common/LinuxKernel.vala:277 +#: src/Common/LinuxKernel.vala:267 msgid "loading downloaded" msgstr "učitavanje preuzeto" -#: src/Common/LinuxKernel.vala:318 +#: src/Common/LinuxKernel.vala:307 msgid "Updating from" msgstr "Ažuriranje iz" -#: src/Common/LinuxKernel.vala:326 +#: src/Common/LinuxKernel.vala:315 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:329 +#: src/Common/LinuxKernel.vala:318 msgid "FAILED" msgstr "NIJE USPIO" -#: src/Common/LinuxKernel.vala:392 +#: src/Common/LinuxKernel.vala:383 msgid "Found installed" msgstr "Pronađeno instalirano" -#: src/Common/LinuxKernel.vala:393 +#: src/Common/LinuxKernel.vala:384 msgid "locked" msgstr "" -#: src/Common/LinuxKernel.vala:475 src/Common/LinuxKernel.vala:1003 -#: src/Common/LinuxKernel.vala:1094 +#: src/Common/LinuxKernel.vala:466 src/Common/LinuxKernel.vala:997 +#: src/Common/LinuxKernel.vala:1088 msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:668 src/Gtk/MainWindow.vala:521 +#: src/Common/LinuxKernel.vala:661 src/Gtk/MainWindow.vala:521 msgid "Running" msgstr "Pokrenuto" -#: src/Common/LinuxKernel.vala:669 +#: src/Common/LinuxKernel.vala:662 msgid "Installed" msgstr "Instalirano" -#: src/Common/LinuxKernel.vala:670 +#: src/Common/LinuxKernel.vala:663 msgid "Invalid" msgstr "Érvénytelen" -#: src/Common/LinuxKernel.vala:760 +#: src/Common/LinuxKernel.vala:758 msgid "Packages Available" msgstr "Dostupni Paketi" -#: src/Common/LinuxKernel.vala:766 +#: src/Common/LinuxKernel.vala:764 msgid "Packages Installed" msgstr "Instalirani paketi" -#: src/Common/LinuxKernel.vala:791 src/lib/TeeJee.FileSystem.vala:94 +#: src/Common/LinuxKernel.vala:789 src/lib/TeeJee.FileSystem.vala:94 msgid "File not found" msgstr "Datoteka nije pronađena" -#: src/Common/LinuxKernel.vala:885 +#: src/Common/LinuxKernel.vala:883 msgid "Available Kernels" msgstr "Dostupni kerneli" -#: src/Common/LinuxKernel.vala:920 src/Gtk/MainWindow.vala:135 +#: src/Common/LinuxKernel.vala:917 src/Gtk/MainWindow.vala:135 msgid "Kernel" msgstr "Kernel" -#: src/Common/LinuxKernel.vala:920 +#: src/Common/LinuxKernel.vala:917 #, fuzzy msgid "not found" msgstr "Datoteka nije pronađena" -#: src/Common/LinuxKernel.vala:927 +#: src/Common/LinuxKernel.vala:924 #, fuzzy msgid "Download: no downloadable kernels specified" msgstr "Naredba nije navedena" -#: src/Common/LinuxKernel.vala:947 +#: src/Common/LinuxKernel.vala:940 msgid "enabled" msgstr "omogućen" -#: src/Common/LinuxKernel.vala:971 +#: src/Common/LinuxKernel.vala:965 msgid "Downloading" msgstr "Učitavanje" -#: src/Common/LinuxKernel.vala:989 +#: src/Common/LinuxKernel.vala:983 #, fuzzy msgid "Installing selected kernels" msgstr "Deinstaliraj određene kernele" -#: src/Common/LinuxKernel.vala:995 src/Common/LinuxKernel.vala:1034 +#: src/Common/LinuxKernel.vala:989 src/Common/LinuxKernel.vala:1028 #, fuzzy msgid "Requested" msgstr "Zatražio" -#: src/Common/LinuxKernel.vala:998 +#: src/Common/LinuxKernel.vala:992 msgid "is already installed." msgstr "je već instaliran." -#: src/Common/LinuxKernel.vala:1008 +#: src/Common/LinuxKernel.vala:1002 msgid "download failed." msgstr "" -#: src/Common/LinuxKernel.vala:1015 +#: src/Common/LinuxKernel.vala:1009 #, fuzzy msgid "Install: no installable kernels specified" msgstr "Naredba nije navedena" -#: src/Common/LinuxKernel.vala:1030 +#: src/Common/LinuxKernel.vala:1024 msgid "Uninstalling selected kernels" msgstr "Deinstaliraj određene kernele" -#: src/Common/LinuxKernel.vala:1037 +#: src/Common/LinuxKernel.vala:1031 #, fuzzy msgid "Not uninstalling the currently running kernel" msgstr "ne deinstaliranje trenutno pokrenute kernel" -#: src/Common/LinuxKernel.vala:1042 +#: src/Common/LinuxKernel.vala:1036 msgid "is locked" msgstr "" -#: src/Common/LinuxKernel.vala:1050 +#: src/Common/LinuxKernel.vala:1044 msgid "found" msgstr "pronađen" -#: src/Common/LinuxKernel.vala:1054 +#: src/Common/LinuxKernel.vala:1048 msgid "Uninstall: no uninstallable packages found" msgstr "" -#: src/Common/LinuxKernel.vala:1090 +#: src/Common/LinuxKernel.vala:1084 #, fuzzy msgid "is the highest installed version." msgstr "Deinstaliraj sve osim najnovije instalirane verzije" -#: src/Common/LinuxKernel.vala:1103 +#: src/Common/LinuxKernel.vala:1097 msgid "Could not find running kernel in list" msgstr "Nije moguće pronaći pokrenutu kernel na popisu" -#: src/Common/LinuxKernel.vala:1108 +#: src/Common/LinuxKernel.vala:1102 msgid "Could not find any kernels to uninstall" msgstr "Nema pronađenih kernela za deinstaliranje" -#: src/Common/LinuxKernel.vala:1116 +#: src/Common/LinuxKernel.vala:1107 msgid "The following kernels will be uninstalled" msgstr "Deinstalirat će se sljedeće kerneli" -#: src/Common/LinuxKernel.vala:1120 +#: src/Common/LinuxKernel.vala:1109 msgid "Continue ?" msgstr "Nastavi?" -#: src/Common/LinuxKernel.vala:1142 src/Console/AppConsole.vala:208 -msgid "Latest update" -msgstr "Najnovija nadopuna" - -#: src/Common/LinuxKernel.vala:1153 src/Console/AppConsole.vala:215 -msgid "Latest point update" -msgstr "Najnovija ciljana nadopuna" - -#: src/Common/LinuxKernel.vala:1161 src/Console/AppConsole.vala:220 -#: src/Console/AppConsole.vala:240 -msgid "No updates found" +#: src/Common/LinuxKernel.vala:1125 +#, fuzzy +msgid "No updates" msgstr "Nema pronađenih nadopuna" -#: src/Common/LinuxKernel.vala:1170 +#: src/Common/LinuxKernel.vala:1131 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Instaliraj kernel inačice %s ? (d/n): " -#: src/Common/Main.vala:354 +#: src/Common/Main.vala:240 +msgid "Wrote config file" +msgstr "" + +#: src/Common/Main.vala:259 +msgid "No config file" +msgstr "" + +#: src/Common/Main.vala:321 +msgid "Loaded config file" +msgstr "" + +#: src/Common/Main.vala:350 msgid "Called from" msgstr "Pozvano od" -#: src/Common/Main.vala:354 +#: src/Common/Main.vala:350 msgid "at logon" msgstr "indításkor" -#: src/Common/Main.vala:355 +#: src/Common/Main.vala:351 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" "Ova se datoteka prepisuje i ponovno izvršava kad god se postavke spremaju u" -#: src/Common/Main.vala:387 +#: src/Common/Main.vala:383 msgid "Notifications are disabled" msgstr "Obavijesti su onemogućene" @@ -312,30 +316,56 @@ msgstr "" msgid "Locked kernels and the currently running kernel are ignored" msgstr "Trenutno pokrenuta jezgra uvijek će se zanemariti" -#: src/Console/AppConsole.vala:139 src/Console/AppConsole.vala:193 +#: src/Console/AppConsole.vala:139 src/Console/AppConsole.vala:190 #: src/Gtk/AppGtk.vala:109 msgid "Unknown option" msgstr "Nepoznata mogućnost" -#: src/Console/AppConsole.vala:229 +#: src/Console/AppConsole.vala:202 +msgid "Latest update" +msgstr "Najnovija nadopuna" + +#: src/Console/AppConsole.vala:203 +msgid "Latest point update" +msgstr "Najnovija ciljana nadopuna" + +#: src/Console/AppConsole.vala:204 src/Console/AppConsole.vala:222 +msgid "No updates found" +msgstr "Nema pronađenih nadopuna" + +#: src/Console/AppConsole.vala:211 #, fuzzy msgid "Notifications disabled" msgstr "Obavijesti su onemogućene" -#: src/Console/AppConsole.vala:262 +#: src/Console/AppConsole.vala:216 +msgid "No" +msgstr "" + +#: src/Console/AppConsole.vala:231 +#, fuzzy +msgid "notify point releases disabled" +msgstr "Obavijesti kada je pojedino izdanje dostupno" + +#: src/Console/AppConsole.vala:239 +#, fuzzy +msgid "notify major releases disabled" +msgstr "Obavijesti kada je glavno izdanje dostupno" + +#: src/Console/AppConsole.vala:244 #, c-format msgid "Kernel %s Available" msgstr "Kernel %s je dostupan" -#: src/Console/AppConsole.vala:266 src/Gtk/SettingsDialog.vala:151 +#: src/Console/AppConsole.vala:248 src/Gtk/SettingsDialog.vala:151 msgid "Show" msgstr "Prikaži" -#: src/Console/AppConsole.vala:267 src/Gtk/MainWindow.vala:312 +#: src/Console/AppConsole.vala:249 src/Gtk/MainWindow.vala:312 msgid "Install" msgstr "Instaliraj" -#: src/Console/AppConsole.vala:270 +#: src/Console/AppConsole.vala:252 msgid "Previously notified" msgstr "Prethodno prijavljeno" diff --git a/po/it.po b/po/it.po index 5c549755..6b371d69 100644 --- a/po/it.po +++ b/po/it.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-05 19:44-0400\n" +"POT-Creation-Date: 2023-06-06 03:55-0400\n" "PO-Revision-Date: 2020-08-22 15:35+0100\n" "Last-Translator: Demetrio Mendozzi\n" "Language-Team: Italian\n" @@ -11,208 +11,212 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: src/Common/LinuxKernel.vala:100 +#: src/Common/LinuxKernel.vala:104 msgid "Distribution" msgstr "Distribuzione" -#: src/Common/LinuxKernel.vala:115 +#: src/Common/LinuxKernel.vala:119 msgid "Architecture" msgstr "Architettura" -#: src/Common/LinuxKernel.vala:130 +#: src/Common/LinuxKernel.vala:134 msgid "Running kernel" msgstr "Kernel in esecuzione" -#: src/Common/LinuxKernel.vala:230 +#: src/Common/LinuxKernel.vala:221 msgid "loading cached" msgstr "Caricamento file della cache" -#: src/Common/LinuxKernel.vala:242 +#: src/Common/LinuxKernel.vala:233 msgid "queuing download" msgstr "download in coda" -#: src/Common/LinuxKernel.vala:263 +#: src/Common/LinuxKernel.vala:253 msgid "Fetching individual kernel indexes" msgstr "Recupero dei singoli indici del kernel" -#: src/Common/LinuxKernel.vala:277 +#: src/Common/LinuxKernel.vala:267 msgid "loading downloaded" msgstr "caricamento dei file scaricati" -#: src/Common/LinuxKernel.vala:318 +#: src/Common/LinuxKernel.vala:307 msgid "Updating from" msgstr "Aggiornamento da" -#: src/Common/LinuxKernel.vala:326 +#: src/Common/LinuxKernel.vala:315 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:329 +#: src/Common/LinuxKernel.vala:318 msgid "FAILED" msgstr "FALLITO" -#: src/Common/LinuxKernel.vala:392 +#: src/Common/LinuxKernel.vala:383 msgid "Found installed" msgstr "Trovato installato" -#: src/Common/LinuxKernel.vala:393 +#: src/Common/LinuxKernel.vala:384 msgid "locked" msgstr "" -#: src/Common/LinuxKernel.vala:475 src/Common/LinuxKernel.vala:1003 -#: src/Common/LinuxKernel.vala:1094 +#: src/Common/LinuxKernel.vala:466 src/Common/LinuxKernel.vala:997 +#: src/Common/LinuxKernel.vala:1088 msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:668 src/Gtk/MainWindow.vala:521 +#: src/Common/LinuxKernel.vala:661 src/Gtk/MainWindow.vala:521 msgid "Running" msgstr "In esecuzione" -#: src/Common/LinuxKernel.vala:669 +#: src/Common/LinuxKernel.vala:662 msgid "Installed" msgstr "Installato" -#: src/Common/LinuxKernel.vala:670 +#: src/Common/LinuxKernel.vala:663 msgid "Invalid" msgstr "Non valido" -#: src/Common/LinuxKernel.vala:760 +#: src/Common/LinuxKernel.vala:758 msgid "Packages Available" msgstr "Pacchetti disponibili" -#: src/Common/LinuxKernel.vala:766 +#: src/Common/LinuxKernel.vala:764 msgid "Packages Installed" msgstr "Pacchetti installati" -#: src/Common/LinuxKernel.vala:791 src/lib/TeeJee.FileSystem.vala:94 +#: src/Common/LinuxKernel.vala:789 src/lib/TeeJee.FileSystem.vala:94 msgid "File not found" msgstr "File non trovato" -#: src/Common/LinuxKernel.vala:885 +#: src/Common/LinuxKernel.vala:883 msgid "Available Kernels" msgstr "Kernel disponibili" -#: src/Common/LinuxKernel.vala:920 src/Gtk/MainWindow.vala:135 +#: src/Common/LinuxKernel.vala:917 src/Gtk/MainWindow.vala:135 msgid "Kernel" msgstr "Kernel" -#: src/Common/LinuxKernel.vala:920 +#: src/Common/LinuxKernel.vala:917 #, fuzzy msgid "not found" msgstr "File non trovato" -#: src/Common/LinuxKernel.vala:927 +#: src/Common/LinuxKernel.vala:924 #, fuzzy msgid "Download: no downloadable kernels specified" msgstr "Comando non specificato" -#: src/Common/LinuxKernel.vala:947 +#: src/Common/LinuxKernel.vala:940 msgid "enabled" msgstr "abilitato" -#: src/Common/LinuxKernel.vala:971 +#: src/Common/LinuxKernel.vala:965 msgid "Downloading" msgstr "Scaricamento" -#: src/Common/LinuxKernel.vala:989 +#: src/Common/LinuxKernel.vala:983 #, fuzzy msgid "Installing selected kernels" msgstr "Disinstalla i kernel specificati" -#: src/Common/LinuxKernel.vala:995 src/Common/LinuxKernel.vala:1034 +#: src/Common/LinuxKernel.vala:989 src/Common/LinuxKernel.vala:1028 #, fuzzy msgid "Requested" msgstr "richiesto" -#: src/Common/LinuxKernel.vala:998 +#: src/Common/LinuxKernel.vala:992 msgid "is already installed." msgstr "è già installato." -#: src/Common/LinuxKernel.vala:1008 +#: src/Common/LinuxKernel.vala:1002 msgid "download failed." msgstr "" -#: src/Common/LinuxKernel.vala:1015 +#: src/Common/LinuxKernel.vala:1009 #, fuzzy msgid "Install: no installable kernels specified" msgstr "Comando non specificato" -#: src/Common/LinuxKernel.vala:1030 +#: src/Common/LinuxKernel.vala:1024 msgid "Uninstalling selected kernels" msgstr "Disinstalla i kernel specificati" -#: src/Common/LinuxKernel.vala:1037 +#: src/Common/LinuxKernel.vala:1031 #, fuzzy msgid "Not uninstalling the currently running kernel" msgstr "non disinstallare il kernel attualmente in esecuzione" -#: src/Common/LinuxKernel.vala:1042 +#: src/Common/LinuxKernel.vala:1036 msgid "is locked" msgstr "" -#: src/Common/LinuxKernel.vala:1050 +#: src/Common/LinuxKernel.vala:1044 msgid "found" msgstr "trovato" -#: src/Common/LinuxKernel.vala:1054 +#: src/Common/LinuxKernel.vala:1048 msgid "Uninstall: no uninstallable packages found" msgstr "" -#: src/Common/LinuxKernel.vala:1090 +#: src/Common/LinuxKernel.vala:1084 #, fuzzy msgid "is the highest installed version." msgstr "Disinstallare tutti tranne la versione più recente installata" -#: src/Common/LinuxKernel.vala:1103 +#: src/Common/LinuxKernel.vala:1097 msgid "Could not find running kernel in list" msgstr "Impossibile trovare il kernel in esecuzione nell'elenco" -#: src/Common/LinuxKernel.vala:1108 +#: src/Common/LinuxKernel.vala:1102 msgid "Could not find any kernels to uninstall" msgstr "Impossibile trovare alcun kernel da rimuovere" -#: src/Common/LinuxKernel.vala:1116 +#: src/Common/LinuxKernel.vala:1107 msgid "The following kernels will be uninstalled" msgstr "I seguenti kernel saranno rimossi" -#: src/Common/LinuxKernel.vala:1120 +#: src/Common/LinuxKernel.vala:1109 msgid "Continue ?" msgstr "Continuare ?" -#: src/Common/LinuxKernel.vala:1142 src/Console/AppConsole.vala:208 -msgid "Latest update" -msgstr "Ultimo aggiornamento" - -#: src/Common/LinuxKernel.vala:1153 src/Console/AppConsole.vala:215 -msgid "Latest point update" -msgstr "Ultimo aggiornamento del rilascio parziale" - -#: src/Common/LinuxKernel.vala:1161 src/Console/AppConsole.vala:220 -#: src/Console/AppConsole.vala:240 -msgid "No updates found" +#: src/Common/LinuxKernel.vala:1125 +#, fuzzy +msgid "No updates" msgstr "Nessun aggiornamento trovato" -#: src/Common/LinuxKernel.vala:1170 +#: src/Common/LinuxKernel.vala:1131 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Installare la versione del kernel %s ? (y/n): " -#: src/Common/Main.vala:354 +#: src/Common/Main.vala:240 +msgid "Wrote config file" +msgstr "" + +#: src/Common/Main.vala:259 +msgid "No config file" +msgstr "" + +#: src/Common/Main.vala:321 +msgid "Loaded config file" +msgstr "" + +#: src/Common/Main.vala:350 msgid "Called from" msgstr "Chiamato da" -#: src/Common/Main.vala:354 +#: src/Common/Main.vala:350 msgid "at logon" msgstr "all'avvio" -#: src/Common/Main.vala:355 +#: src/Common/Main.vala:351 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" "Questo file viene sovrascritto ed eseguito nuovamente ogni volta che vengono " "salvate le impostazioni" -#: src/Common/Main.vala:387 +#: src/Common/Main.vala:383 msgid "Notifications are disabled" msgstr "Le notifiche sono disabilitate" @@ -313,30 +317,56 @@ msgstr "" msgid "Locked kernels and the currently running kernel are ignored" msgstr "Il kernel attualmente in esecuzione sarà sempre ignorato" -#: src/Console/AppConsole.vala:139 src/Console/AppConsole.vala:193 +#: src/Console/AppConsole.vala:139 src/Console/AppConsole.vala:190 #: src/Gtk/AppGtk.vala:109 msgid "Unknown option" msgstr "Opzione sconosciuta" -#: src/Console/AppConsole.vala:229 +#: src/Console/AppConsole.vala:202 +msgid "Latest update" +msgstr "Ultimo aggiornamento" + +#: src/Console/AppConsole.vala:203 +msgid "Latest point update" +msgstr "Ultimo aggiornamento del rilascio parziale" + +#: src/Console/AppConsole.vala:204 src/Console/AppConsole.vala:222 +msgid "No updates found" +msgstr "Nessun aggiornamento trovato" + +#: src/Console/AppConsole.vala:211 #, fuzzy msgid "Notifications disabled" msgstr "Le notifiche sono disabilitate" -#: src/Console/AppConsole.vala:262 +#: src/Console/AppConsole.vala:216 +msgid "No" +msgstr "" + +#: src/Console/AppConsole.vala:231 +#, fuzzy +msgid "notify point releases disabled" +msgstr "Avvisa se è disponibile un rilascio parziale" + +#: src/Console/AppConsole.vala:239 +#, fuzzy +msgid "notify major releases disabled" +msgstr "Avvisa se è disponibile una versione principale" + +#: src/Console/AppConsole.vala:244 #, c-format msgid "Kernel %s Available" msgstr "Kernel %s Disponibile" -#: src/Console/AppConsole.vala:266 src/Gtk/SettingsDialog.vala:151 +#: src/Console/AppConsole.vala:248 src/Gtk/SettingsDialog.vala:151 msgid "Show" msgstr "Mostra" -#: src/Console/AppConsole.vala:267 src/Gtk/MainWindow.vala:312 +#: src/Console/AppConsole.vala:249 src/Gtk/MainWindow.vala:312 msgid "Install" msgstr "Installa" -#: src/Console/AppConsole.vala:270 +#: src/Console/AppConsole.vala:252 msgid "Previously notified" msgstr "Notificato in precedenza" diff --git a/po/ko.po b/po/ko.po index d49166c4..fff5a5d0 100644 --- a/po/ko.po +++ b/po/ko.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-05 19:44-0400\n" +"POT-Creation-Date: 2023-06-06 03:55-0400\n" "PO-Revision-Date: 2022-09-28 11:48+0900\n" "Last-Translator: Kevin Kim \n" "Language-Team: Korean\n" @@ -13,206 +13,210 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Poedit 3.0.1\n" -#: src/Common/LinuxKernel.vala:100 +#: src/Common/LinuxKernel.vala:104 msgid "Distribution" msgstr "배포판" -#: src/Common/LinuxKernel.vala:115 +#: src/Common/LinuxKernel.vala:119 msgid "Architecture" msgstr "아키텍처" -#: src/Common/LinuxKernel.vala:130 +#: src/Common/LinuxKernel.vala:134 msgid "Running kernel" msgstr "현재 실행 중인 커널" -#: src/Common/LinuxKernel.vala:230 +#: src/Common/LinuxKernel.vala:221 msgid "loading cached" msgstr "캐시된 로드 중" -#: src/Common/LinuxKernel.vala:242 +#: src/Common/LinuxKernel.vala:233 msgid "queuing download" msgstr "대기열 다운로드" -#: src/Common/LinuxKernel.vala:263 +#: src/Common/LinuxKernel.vala:253 msgid "Fetching individual kernel indexes" msgstr "개별 커널 인덱스 페치" -#: src/Common/LinuxKernel.vala:277 +#: src/Common/LinuxKernel.vala:267 msgid "loading downloaded" msgstr "다운로드 로드 중" -#: src/Common/LinuxKernel.vala:318 +#: src/Common/LinuxKernel.vala:307 msgid "Updating from" msgstr "다음에서 업데이트" -#: src/Common/LinuxKernel.vala:326 +#: src/Common/LinuxKernel.vala:315 msgid "OK" msgstr "확인" -#: src/Common/LinuxKernel.vala:329 +#: src/Common/LinuxKernel.vala:318 msgid "FAILED" msgstr "실패" -#: src/Common/LinuxKernel.vala:392 +#: src/Common/LinuxKernel.vala:383 msgid "Found installed" msgstr "설치된 것을 찾았습니다" -#: src/Common/LinuxKernel.vala:393 +#: src/Common/LinuxKernel.vala:384 msgid "locked" msgstr "" -#: src/Common/LinuxKernel.vala:475 src/Common/LinuxKernel.vala:1003 -#: src/Common/LinuxKernel.vala:1094 +#: src/Common/LinuxKernel.vala:466 src/Common/LinuxKernel.vala:997 +#: src/Common/LinuxKernel.vala:1088 msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:668 src/Gtk/MainWindow.vala:521 +#: src/Common/LinuxKernel.vala:661 src/Gtk/MainWindow.vala:521 msgid "Running" msgstr "구동 중" -#: src/Common/LinuxKernel.vala:669 +#: src/Common/LinuxKernel.vala:662 msgid "Installed" msgstr "설치 됨" -#: src/Common/LinuxKernel.vala:670 +#: src/Common/LinuxKernel.vala:663 msgid "Invalid" msgstr "사용할 수 없음" -#: src/Common/LinuxKernel.vala:760 +#: src/Common/LinuxKernel.vala:758 msgid "Packages Available" msgstr "설치 가능한 패키지" -#: src/Common/LinuxKernel.vala:766 +#: src/Common/LinuxKernel.vala:764 msgid "Packages Installed" msgstr "설치된 패키지" -#: src/Common/LinuxKernel.vala:791 src/lib/TeeJee.FileSystem.vala:94 +#: src/Common/LinuxKernel.vala:789 src/lib/TeeJee.FileSystem.vala:94 msgid "File not found" msgstr "파일을 찾을 수 없습니다" -#: src/Common/LinuxKernel.vala:885 +#: src/Common/LinuxKernel.vala:883 msgid "Available Kernels" msgstr "설치 가능한 커널" -#: src/Common/LinuxKernel.vala:920 src/Gtk/MainWindow.vala:135 +#: src/Common/LinuxKernel.vala:917 src/Gtk/MainWindow.vala:135 msgid "Kernel" msgstr "커널" -#: src/Common/LinuxKernel.vala:920 +#: src/Common/LinuxKernel.vala:917 #, fuzzy msgid "not found" msgstr "파일을 찾을 수 없습니다" -#: src/Common/LinuxKernel.vala:927 +#: src/Common/LinuxKernel.vala:924 #, fuzzy msgid "Download: no downloadable kernels specified" msgstr "지정한 명령어가 없습니다" -#: src/Common/LinuxKernel.vala:947 +#: src/Common/LinuxKernel.vala:940 msgid "enabled" msgstr "사용" -#: src/Common/LinuxKernel.vala:971 +#: src/Common/LinuxKernel.vala:965 msgid "Downloading" msgstr "다운로드" -#: src/Common/LinuxKernel.vala:989 +#: src/Common/LinuxKernel.vala:983 #, fuzzy msgid "Installing selected kernels" msgstr "선택한 커널 제거" -#: src/Common/LinuxKernel.vala:995 src/Common/LinuxKernel.vala:1034 +#: src/Common/LinuxKernel.vala:989 src/Common/LinuxKernel.vala:1028 #, fuzzy msgid "Requested" msgstr "요청" -#: src/Common/LinuxKernel.vala:998 +#: src/Common/LinuxKernel.vala:992 msgid "is already installed." msgstr "가 이미 설치되어 있습니다" -#: src/Common/LinuxKernel.vala:1008 +#: src/Common/LinuxKernel.vala:1002 msgid "download failed." msgstr "" -#: src/Common/LinuxKernel.vala:1015 +#: src/Common/LinuxKernel.vala:1009 #, fuzzy msgid "Install: no installable kernels specified" msgstr "지정한 명령어가 없습니다" -#: src/Common/LinuxKernel.vala:1030 +#: src/Common/LinuxKernel.vala:1024 msgid "Uninstalling selected kernels" msgstr "선택한 커널 제거" -#: src/Common/LinuxKernel.vala:1037 +#: src/Common/LinuxKernel.vala:1031 #, fuzzy msgid "Not uninstalling the currently running kernel" msgstr "현재 실행 중인 커널을 제거하지 않음" -#: src/Common/LinuxKernel.vala:1042 +#: src/Common/LinuxKernel.vala:1036 msgid "is locked" msgstr "" -#: src/Common/LinuxKernel.vala:1050 +#: src/Common/LinuxKernel.vala:1044 msgid "found" msgstr "설립하다" -#: src/Common/LinuxKernel.vala:1054 +#: src/Common/LinuxKernel.vala:1048 msgid "Uninstall: no uninstallable packages found" msgstr "" -#: src/Common/LinuxKernel.vala:1090 +#: src/Common/LinuxKernel.vala:1084 #, fuzzy msgid "is the highest installed version." msgstr "설치된 가장 높은 버전을 제외한 모든 버전을 제거합니다" -#: src/Common/LinuxKernel.vala:1103 +#: src/Common/LinuxKernel.vala:1097 msgid "Could not find running kernel in list" msgstr "현재 실행 중인 커널을 찾을 수 없습니다" -#: src/Common/LinuxKernel.vala:1108 +#: src/Common/LinuxKernel.vala:1102 msgid "Could not find any kernels to uninstall" msgstr "삭제할 커널을 찾을 수 없습니다" -#: src/Common/LinuxKernel.vala:1116 +#: src/Common/LinuxKernel.vala:1107 msgid "The following kernels will be uninstalled" msgstr "풀이" -#: src/Common/LinuxKernel.vala:1120 +#: src/Common/LinuxKernel.vala:1109 msgid "Continue ?" msgstr "계속하시겠습니까?" -#: src/Common/LinuxKernel.vala:1142 src/Console/AppConsole.vala:208 -msgid "Latest update" -msgstr "최신 업데이트" - -#: src/Common/LinuxKernel.vala:1153 src/Console/AppConsole.vala:215 -msgid "Latest point update" -msgstr "최신 포인트 업데이트" - -#: src/Common/LinuxKernel.vala:1161 src/Console/AppConsole.vala:220 -#: src/Console/AppConsole.vala:240 -msgid "No updates found" +#: src/Common/LinuxKernel.vala:1125 +#, fuzzy +msgid "No updates" msgstr "업데이트를 찾을 수 없습니다" -#: src/Common/LinuxKernel.vala:1170 +#: src/Common/LinuxKernel.vala:1131 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "커널 %s 버전을 설치하시겠습니까? (y/n): " -#: src/Common/Main.vala:354 +#: src/Common/Main.vala:240 +msgid "Wrote config file" +msgstr "" + +#: src/Common/Main.vala:259 +msgid "No config file" +msgstr "" + +#: src/Common/Main.vala:321 +msgid "Loaded config file" +msgstr "" + +#: src/Common/Main.vala:350 msgid "Called from" msgstr "에서 호출" -#: src/Common/Main.vala:354 +#: src/Common/Main.vala:350 msgid "at logon" msgstr "로그온 시" -#: src/Common/Main.vala:355 +#: src/Common/Main.vala:351 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "이 파일은 덮어쓰고 설정이 저장될 때마다 다시 실행됩니다." -#: src/Common/Main.vala:387 +#: src/Common/Main.vala:383 msgid "Notifications are disabled" msgstr "알림이 비활성화 되었습니다" @@ -311,30 +315,56 @@ msgstr "" msgid "Locked kernels and the currently running kernel are ignored" msgstr "현재 실행중인 커널은 항상 무시됩니다" -#: src/Console/AppConsole.vala:139 src/Console/AppConsole.vala:193 +#: src/Console/AppConsole.vala:139 src/Console/AppConsole.vala:190 #: src/Gtk/AppGtk.vala:109 msgid "Unknown option" msgstr "알 수 없는 옵션" -#: src/Console/AppConsole.vala:229 +#: src/Console/AppConsole.vala:202 +msgid "Latest update" +msgstr "최신 업데이트" + +#: src/Console/AppConsole.vala:203 +msgid "Latest point update" +msgstr "최신 포인트 업데이트" + +#: src/Console/AppConsole.vala:204 src/Console/AppConsole.vala:222 +msgid "No updates found" +msgstr "업데이트를 찾을 수 없습니다" + +#: src/Console/AppConsole.vala:211 #, fuzzy msgid "Notifications disabled" msgstr "알림이 비활성화 되었습니다" -#: src/Console/AppConsole.vala:262 +#: src/Console/AppConsole.vala:216 +msgid "No" +msgstr "" + +#: src/Console/AppConsole.vala:231 +#, fuzzy +msgid "notify point releases disabled" +msgstr "포인트 릴리즈가 있으면 알림" + +#: src/Console/AppConsole.vala:239 +#, fuzzy +msgid "notify major releases disabled" +msgstr "메이저 릴리즈가 있으면 알림" + +#: src/Console/AppConsole.vala:244 #, c-format msgid "Kernel %s Available" msgstr "커널 %s 사용 가능" -#: src/Console/AppConsole.vala:266 src/Gtk/SettingsDialog.vala:151 +#: src/Console/AppConsole.vala:248 src/Gtk/SettingsDialog.vala:151 msgid "Show" msgstr "보이기" -#: src/Console/AppConsole.vala:267 src/Gtk/MainWindow.vala:312 +#: src/Console/AppConsole.vala:249 src/Gtk/MainWindow.vala:312 msgid "Install" msgstr "설치" -#: src/Console/AppConsole.vala:270 +#: src/Console/AppConsole.vala:252 msgid "Previously notified" msgstr "이전에 통보됨" diff --git a/po/messages.pot b/po/messages.pot index 22b34754..76c83da0 100644 --- a/po/messages.pot +++ b/po/messages.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline 1.3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-05 19:44-0400\n" +"POT-Creation-Date: 2023-06-06 03:59-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,199 +17,202 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" -#: src/Common/LinuxKernel.vala:100 +#: src/Common/LinuxKernel.vala:104 msgid "Distribution" msgstr "" -#: src/Common/LinuxKernel.vala:115 +#: src/Common/LinuxKernel.vala:119 msgid "Architecture" msgstr "" -#: src/Common/LinuxKernel.vala:130 +#: src/Common/LinuxKernel.vala:134 msgid "Running kernel" msgstr "" -#: src/Common/LinuxKernel.vala:230 +#: src/Common/LinuxKernel.vala:221 msgid "loading cached" msgstr "" -#: src/Common/LinuxKernel.vala:242 +#: src/Common/LinuxKernel.vala:233 msgid "queuing download" msgstr "" -#: src/Common/LinuxKernel.vala:263 +#: src/Common/LinuxKernel.vala:253 msgid "Fetching individual kernel indexes" msgstr "" -#: src/Common/LinuxKernel.vala:277 +#: src/Common/LinuxKernel.vala:267 msgid "loading downloaded" msgstr "" -#: src/Common/LinuxKernel.vala:318 +#: src/Common/LinuxKernel.vala:307 msgid "Updating from" msgstr "" -#: src/Common/LinuxKernel.vala:326 +#: src/Common/LinuxKernel.vala:315 msgid "OK" msgstr "" -#: src/Common/LinuxKernel.vala:329 +#: src/Common/LinuxKernel.vala:318 msgid "FAILED" msgstr "" -#: src/Common/LinuxKernel.vala:392 +#: src/Common/LinuxKernel.vala:383 msgid "Found installed" msgstr "" -#: src/Common/LinuxKernel.vala:393 +#: src/Common/LinuxKernel.vala:384 msgid "locked" msgstr "" -#: src/Common/LinuxKernel.vala:475 src/Common/LinuxKernel.vala:1003 -#: src/Common/LinuxKernel.vala:1094 +#: src/Common/LinuxKernel.vala:466 src/Common/LinuxKernel.vala:997 +#: src/Common/LinuxKernel.vala:1088 msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:668 src/Gtk/MainWindow.vala:521 +#: src/Common/LinuxKernel.vala:661 src/Gtk/MainWindow.vala:521 msgid "Running" msgstr "" -#: src/Common/LinuxKernel.vala:669 +#: src/Common/LinuxKernel.vala:662 msgid "Installed" msgstr "" -#: src/Common/LinuxKernel.vala:670 +#: src/Common/LinuxKernel.vala:663 msgid "Invalid" msgstr "" -#: src/Common/LinuxKernel.vala:760 +#: src/Common/LinuxKernel.vala:758 msgid "Packages Available" msgstr "" -#: src/Common/LinuxKernel.vala:766 +#: src/Common/LinuxKernel.vala:764 msgid "Packages Installed" msgstr "" -#: src/Common/LinuxKernel.vala:791 src/lib/TeeJee.FileSystem.vala:94 +#: src/Common/LinuxKernel.vala:789 src/lib/TeeJee.FileSystem.vala:94 msgid "File not found" msgstr "" -#: src/Common/LinuxKernel.vala:885 +#: src/Common/LinuxKernel.vala:883 msgid "Available Kernels" msgstr "" -#: src/Common/LinuxKernel.vala:920 src/Gtk/MainWindow.vala:135 +#: src/Common/LinuxKernel.vala:917 src/Gtk/MainWindow.vala:135 msgid "Kernel" msgstr "" -#: src/Common/LinuxKernel.vala:920 +#: src/Common/LinuxKernel.vala:917 msgid "not found" msgstr "" -#: src/Common/LinuxKernel.vala:927 +#: src/Common/LinuxKernel.vala:924 msgid "Download: no downloadable kernels specified" msgstr "" -#: src/Common/LinuxKernel.vala:947 +#: src/Common/LinuxKernel.vala:940 msgid "enabled" msgstr "" -#: src/Common/LinuxKernel.vala:971 +#: src/Common/LinuxKernel.vala:965 msgid "Downloading" msgstr "" -#: src/Common/LinuxKernel.vala:989 +#: src/Common/LinuxKernel.vala:983 msgid "Installing selected kernels" msgstr "" -#: src/Common/LinuxKernel.vala:995 src/Common/LinuxKernel.vala:1034 +#: src/Common/LinuxKernel.vala:989 src/Common/LinuxKernel.vala:1028 msgid "Requested" msgstr "" -#: src/Common/LinuxKernel.vala:998 +#: src/Common/LinuxKernel.vala:992 msgid "is already installed." msgstr "" -#: src/Common/LinuxKernel.vala:1008 +#: src/Common/LinuxKernel.vala:1002 msgid "download failed." msgstr "" -#: src/Common/LinuxKernel.vala:1015 +#: src/Common/LinuxKernel.vala:1009 msgid "Install: no installable kernels specified" msgstr "" -#: src/Common/LinuxKernel.vala:1030 +#: src/Common/LinuxKernel.vala:1024 msgid "Uninstalling selected kernels" msgstr "" -#: src/Common/LinuxKernel.vala:1037 +#: src/Common/LinuxKernel.vala:1031 msgid "Not uninstalling the currently running kernel" msgstr "" -#: src/Common/LinuxKernel.vala:1042 +#: src/Common/LinuxKernel.vala:1036 msgid "is locked" msgstr "" -#: src/Common/LinuxKernel.vala:1050 +#: src/Common/LinuxKernel.vala:1044 msgid "found" msgstr "" -#: src/Common/LinuxKernel.vala:1054 +#: src/Common/LinuxKernel.vala:1048 msgid "Uninstall: no uninstallable packages found" msgstr "" -#: src/Common/LinuxKernel.vala:1090 +#: src/Common/LinuxKernel.vala:1084 msgid "is the highest installed version." msgstr "" -#: src/Common/LinuxKernel.vala:1103 +#: src/Common/LinuxKernel.vala:1097 msgid "Could not find running kernel in list" msgstr "" -#: src/Common/LinuxKernel.vala:1108 +#: src/Common/LinuxKernel.vala:1102 msgid "Could not find any kernels to uninstall" msgstr "" -#: src/Common/LinuxKernel.vala:1116 +#: src/Common/LinuxKernel.vala:1107 msgid "The following kernels will be uninstalled" msgstr "" -#: src/Common/LinuxKernel.vala:1120 +#: src/Common/LinuxKernel.vala:1109 msgid "Continue ?" msgstr "" -#: src/Common/LinuxKernel.vala:1142 src/Console/AppConsole.vala:208 -msgid "Latest update" +#: src/Common/LinuxKernel.vala:1125 +msgid "No updates" msgstr "" -#: src/Common/LinuxKernel.vala:1153 src/Console/AppConsole.vala:215 -msgid "Latest point update" +#: src/Common/LinuxKernel.vala:1131 +#, c-format +msgid "Install Kernel Version %s ? (y/n): " msgstr "" -#: src/Common/LinuxKernel.vala:1161 src/Console/AppConsole.vala:220 -#: src/Console/AppConsole.vala:240 -msgid "No updates found" +#: src/Common/Main.vala:240 +msgid "Wrote config file" msgstr "" -#: src/Common/LinuxKernel.vala:1170 -#, c-format -msgid "Install Kernel Version %s ? (y/n): " +#: src/Common/Main.vala:259 +msgid "No config file" +msgstr "" + +#: src/Common/Main.vala:321 +msgid "Loaded config file" msgstr "" -#: src/Common/Main.vala:354 +#: src/Common/Main.vala:350 msgid "Called from" msgstr "" -#: src/Common/Main.vala:354 +#: src/Common/Main.vala:350 msgid "at logon" msgstr "" -#: src/Common/Main.vala:355 +#: src/Common/Main.vala:351 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" -#: src/Common/Main.vala:387 +#: src/Common/Main.vala:383 msgid "Notifications are disabled" msgstr "" @@ -302,29 +305,53 @@ msgstr "" msgid "Locked kernels and the currently running kernel are ignored" msgstr "" -#: src/Console/AppConsole.vala:139 src/Console/AppConsole.vala:193 +#: src/Console/AppConsole.vala:139 src/Console/AppConsole.vala:190 #: src/Gtk/AppGtk.vala:109 msgid "Unknown option" msgstr "" -#: src/Console/AppConsole.vala:229 +#: src/Console/AppConsole.vala:202 +msgid "Latest update" +msgstr "" + +#: src/Console/AppConsole.vala:203 +msgid "Latest point update" +msgstr "" + +#: src/Console/AppConsole.vala:204 src/Console/AppConsole.vala:222 +msgid "No updates found" +msgstr "" + +#: src/Console/AppConsole.vala:211 msgid "Notifications disabled" msgstr "" -#: src/Console/AppConsole.vala:262 +#: src/Console/AppConsole.vala:216 +msgid "No" +msgstr "" + +#: src/Console/AppConsole.vala:231 +msgid "notify point releases disabled" +msgstr "" + +#: src/Console/AppConsole.vala:239 +msgid "notify major releases disabled" +msgstr "" + +#: src/Console/AppConsole.vala:244 #, c-format msgid "Kernel %s Available" msgstr "" -#: src/Console/AppConsole.vala:266 src/Gtk/SettingsDialog.vala:151 +#: src/Console/AppConsole.vala:248 src/Gtk/SettingsDialog.vala:151 msgid "Show" msgstr "" -#: src/Console/AppConsole.vala:267 src/Gtk/MainWindow.vala:312 +#: src/Console/AppConsole.vala:249 src/Gtk/MainWindow.vala:312 msgid "Install" msgstr "" -#: src/Console/AppConsole.vala:270 +#: src/Console/AppConsole.vala:252 msgid "Previously notified" msgstr "" diff --git a/po/nl.po b/po/nl.po index 2ba679ad..36bf7afa 100644 --- a/po/nl.po +++ b/po/nl.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-05 19:44-0400\n" +"POT-Creation-Date: 2023-06-06 03:55-0400\n" "PO-Revision-Date: 2020-08-23 13:55+0200\n" "Last-Translator: Heimen Stoffels \n" "Language-Team: Dutch (Netherlands)\n" @@ -13,208 +13,212 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Poedit 3.2.2\n" -#: src/Common/LinuxKernel.vala:100 +#: src/Common/LinuxKernel.vala:104 msgid "Distribution" msgstr "Distributie" -#: src/Common/LinuxKernel.vala:115 +#: src/Common/LinuxKernel.vala:119 msgid "Architecture" msgstr "Architectuur" -#: src/Common/LinuxKernel.vala:130 +#: src/Common/LinuxKernel.vala:134 msgid "Running kernel" msgstr "Kernel uitvoeren" -#: src/Common/LinuxKernel.vala:230 +#: src/Common/LinuxKernel.vala:221 msgid "loading cached" msgstr "laden in cache" -#: src/Common/LinuxKernel.vala:242 +#: src/Common/LinuxKernel.vala:233 msgid "queuing download" msgstr "wachtrijen downloaden" -#: src/Common/LinuxKernel.vala:263 +#: src/Common/LinuxKernel.vala:253 msgid "Fetching individual kernel indexes" msgstr "Afzonderlijke kernelindexen ophalen" -#: src/Common/LinuxKernel.vala:277 +#: src/Common/LinuxKernel.vala:267 msgid "loading downloaded" msgstr "laden gedownload" -#: src/Common/LinuxKernel.vala:318 +#: src/Common/LinuxKernel.vala:307 msgid "Updating from" msgstr "Bijwerken van" -#: src/Common/LinuxKernel.vala:326 +#: src/Common/LinuxKernel.vala:315 msgid "OK" msgstr "Oké" -#: src/Common/LinuxKernel.vala:329 +#: src/Common/LinuxKernel.vala:318 msgid "FAILED" msgstr "MISLUKT" -#: src/Common/LinuxKernel.vala:392 +#: src/Common/LinuxKernel.vala:383 msgid "Found installed" msgstr "Geïnstalleerd gevonden" -#: src/Common/LinuxKernel.vala:393 +#: src/Common/LinuxKernel.vala:384 msgid "locked" msgstr "" -#: src/Common/LinuxKernel.vala:475 src/Common/LinuxKernel.vala:1003 -#: src/Common/LinuxKernel.vala:1094 +#: src/Common/LinuxKernel.vala:466 src/Common/LinuxKernel.vala:997 +#: src/Common/LinuxKernel.vala:1088 msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:668 src/Gtk/MainWindow.vala:521 +#: src/Common/LinuxKernel.vala:661 src/Gtk/MainWindow.vala:521 msgid "Running" msgstr "In gebruik" -#: src/Common/LinuxKernel.vala:669 +#: src/Common/LinuxKernel.vala:662 msgid "Installed" msgstr "Geïnstalleerd" -#: src/Common/LinuxKernel.vala:670 +#: src/Common/LinuxKernel.vala:663 msgid "Invalid" msgstr "Ongeldig" -#: src/Common/LinuxKernel.vala:760 +#: src/Common/LinuxKernel.vala:758 msgid "Packages Available" msgstr "Beschikbare pakketten" -#: src/Common/LinuxKernel.vala:766 +#: src/Common/LinuxKernel.vala:764 msgid "Packages Installed" msgstr "Geïnstalleerde pakketten" -#: src/Common/LinuxKernel.vala:791 src/lib/TeeJee.FileSystem.vala:94 +#: src/Common/LinuxKernel.vala:789 src/lib/TeeJee.FileSystem.vala:94 msgid "File not found" msgstr "Het bestand is niet gevonden" -#: src/Common/LinuxKernel.vala:885 +#: src/Common/LinuxKernel.vala:883 msgid "Available Kernels" msgstr "Beschikbare kernels" -#: src/Common/LinuxKernel.vala:920 src/Gtk/MainWindow.vala:135 +#: src/Common/LinuxKernel.vala:917 src/Gtk/MainWindow.vala:135 msgid "Kernel" msgstr "Kernel" -#: src/Common/LinuxKernel.vala:920 +#: src/Common/LinuxKernel.vala:917 #, fuzzy msgid "not found" msgstr "Het bestand is niet gevonden" -#: src/Common/LinuxKernel.vala:927 +#: src/Common/LinuxKernel.vala:924 #, fuzzy msgid "Download: no downloadable kernels specified" msgstr "Geen opdracht opgegeven" -#: src/Common/LinuxKernel.vala:947 +#: src/Common/LinuxKernel.vala:940 msgid "enabled" msgstr "ingeschakeld" -#: src/Common/LinuxKernel.vala:971 +#: src/Common/LinuxKernel.vala:965 msgid "Downloading" msgstr "Downloaden" -#: src/Common/LinuxKernel.vala:989 +#: src/Common/LinuxKernel.vala:983 #, fuzzy msgid "Installing selected kernels" msgstr "Geselecteerde kernels verwijderen" -#: src/Common/LinuxKernel.vala:995 src/Common/LinuxKernel.vala:1034 +#: src/Common/LinuxKernel.vala:989 src/Common/LinuxKernel.vala:1028 #, fuzzy msgid "Requested" msgstr "verzocht" -#: src/Common/LinuxKernel.vala:998 +#: src/Common/LinuxKernel.vala:992 msgid "is already installed." msgstr "is al geïnstalleerd." -#: src/Common/LinuxKernel.vala:1008 +#: src/Common/LinuxKernel.vala:1002 msgid "download failed." msgstr "" -#: src/Common/LinuxKernel.vala:1015 +#: src/Common/LinuxKernel.vala:1009 #, fuzzy msgid "Install: no installable kernels specified" msgstr "Geen opdracht opgegeven" -#: src/Common/LinuxKernel.vala:1030 +#: src/Common/LinuxKernel.vala:1024 msgid "Uninstalling selected kernels" msgstr "Geselecteerde kernels verwijderen" -#: src/Common/LinuxKernel.vala:1037 +#: src/Common/LinuxKernel.vala:1031 #, fuzzy msgid "Not uninstalling the currently running kernel" msgstr "de momenteel actieve kernel niet verwijderen" -#: src/Common/LinuxKernel.vala:1042 +#: src/Common/LinuxKernel.vala:1036 msgid "is locked" msgstr "" -#: src/Common/LinuxKernel.vala:1050 +#: src/Common/LinuxKernel.vala:1044 msgid "found" msgstr "gevonden" -#: src/Common/LinuxKernel.vala:1054 +#: src/Common/LinuxKernel.vala:1048 msgid "Uninstall: no uninstallable packages found" msgstr "" -#: src/Common/LinuxKernel.vala:1090 +#: src/Common/LinuxKernel.vala:1084 #, fuzzy msgid "is the highest installed version." msgstr "Verwijder alle behalve de hoogst geïnstalleerde versie" -#: src/Common/LinuxKernel.vala:1103 +#: src/Common/LinuxKernel.vala:1097 msgid "Could not find running kernel in list" msgstr "De in gebruik zijnde kernel staat niet op de lijst" -#: src/Common/LinuxKernel.vala:1108 +#: src/Common/LinuxKernel.vala:1102 msgid "Could not find any kernels to uninstall" msgstr "Er zijn geen te verwijderen kernels" -#: src/Common/LinuxKernel.vala:1116 +#: src/Common/LinuxKernel.vala:1107 msgid "The following kernels will be uninstalled" msgstr "De volgende kernels worden verwijderd" -#: src/Common/LinuxKernel.vala:1120 +#: src/Common/LinuxKernel.vala:1109 msgid "Continue ?" msgstr "Wilt u doorgaan?" -#: src/Common/LinuxKernel.vala:1142 src/Console/AppConsole.vala:208 -msgid "Latest update" -msgstr "Recentste update" - -#: src/Common/LinuxKernel.vala:1153 src/Console/AppConsole.vala:215 -msgid "Latest point update" -msgstr "Recentste puntupdate" - -#: src/Common/LinuxKernel.vala:1161 src/Console/AppConsole.vala:220 -#: src/Console/AppConsole.vala:240 -msgid "No updates found" +#: src/Common/LinuxKernel.vala:1125 +#, fuzzy +msgid "No updates" msgstr "Geen updates gevonden" -#: src/Common/LinuxKernel.vala:1170 +#: src/Common/LinuxKernel.vala:1131 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Wilt u versie %s installeren? (j/n): " -#: src/Common/Main.vala:354 +#: src/Common/Main.vala:240 +msgid "Wrote config file" +msgstr "" + +#: src/Common/Main.vala:259 +msgid "No config file" +msgstr "" + +#: src/Common/Main.vala:321 +msgid "Loaded config file" +msgstr "" + +#: src/Common/Main.vala:350 msgid "Called from" msgstr "Aangeroepen door" -#: src/Common/Main.vala:354 +#: src/Common/Main.vala:350 msgid "at logon" msgstr "bij het opstarten" -#: src/Common/Main.vala:355 +#: src/Common/Main.vala:351 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" "Dit bestand wordt overschreven en opnieuw uitgevoerd wanneer instellingen " "worden opgeslagen in" -#: src/Common/Main.vala:387 +#: src/Common/Main.vala:383 msgid "Notifications are disabled" msgstr "Meldingen zijn uitgeschakeld" @@ -313,30 +317,56 @@ msgstr "" msgid "Locked kernels and the currently running kernel are ignored" msgstr "De momenteel actieve kernel wordt altijd genegeerd" -#: src/Console/AppConsole.vala:139 src/Console/AppConsole.vala:193 +#: src/Console/AppConsole.vala:139 src/Console/AppConsole.vala:190 #: src/Gtk/AppGtk.vala:109 msgid "Unknown option" msgstr "Onbekende optie" -#: src/Console/AppConsole.vala:229 +#: src/Console/AppConsole.vala:202 +msgid "Latest update" +msgstr "Recentste update" + +#: src/Console/AppConsole.vala:203 +msgid "Latest point update" +msgstr "Recentste puntupdate" + +#: src/Console/AppConsole.vala:204 src/Console/AppConsole.vala:222 +msgid "No updates found" +msgstr "Geen updates gevonden" + +#: src/Console/AppConsole.vala:211 #, fuzzy msgid "Notifications disabled" msgstr "Meldingen zijn uitgeschakeld" -#: src/Console/AppConsole.vala:262 +#: src/Console/AppConsole.vala:216 +msgid "No" +msgstr "" + +#: src/Console/AppConsole.vala:231 +#, fuzzy +msgid "notify point releases disabled" +msgstr "Melding tonen als er een puntupdate beschikbaar is" + +#: src/Console/AppConsole.vala:239 +#, fuzzy +msgid "notify major releases disabled" +msgstr "Melding tonen als er een grote update beschikbaar is" + +#: src/Console/AppConsole.vala:244 #, c-format msgid "Kernel %s Available" msgstr "Kernel %s is beschikbaar" -#: src/Console/AppConsole.vala:266 src/Gtk/SettingsDialog.vala:151 +#: src/Console/AppConsole.vala:248 src/Gtk/SettingsDialog.vala:151 msgid "Show" msgstr "Tonen" -#: src/Console/AppConsole.vala:267 src/Gtk/MainWindow.vala:312 +#: src/Console/AppConsole.vala:249 src/Gtk/MainWindow.vala:312 msgid "Install" msgstr "Installeren" -#: src/Console/AppConsole.vala:270 +#: src/Console/AppConsole.vala:252 msgid "Previously notified" msgstr "Eerder gemeld" diff --git a/po/pl.po b/po/pl.po index e942dfe3..0007bfdf 100644 --- a/po/pl.po +++ b/po/pl.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-05 19:44-0400\n" +"POT-Creation-Date: 2023-06-06 03:55-0400\n" "PO-Revision-Date: 2023-06-03 14:24+0200\n" "Last-Translator: Matthaiks\n" "Language-Team: Polish\n" @@ -12,202 +12,206 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Poedit 3.3.1\n" -#: src/Common/LinuxKernel.vala:100 +#: src/Common/LinuxKernel.vala:104 msgid "Distribution" msgstr "Dystrybucja" -#: src/Common/LinuxKernel.vala:115 +#: src/Common/LinuxKernel.vala:119 msgid "Architecture" msgstr "Architektura" -#: src/Common/LinuxKernel.vala:130 +#: src/Common/LinuxKernel.vala:134 msgid "Running kernel" msgstr "Uruchomione jądro" -#: src/Common/LinuxKernel.vala:230 +#: src/Common/LinuxKernel.vala:221 msgid "loading cached" msgstr "ładowanie z pamięci podręcznej" -#: src/Common/LinuxKernel.vala:242 +#: src/Common/LinuxKernel.vala:233 msgid "queuing download" msgstr "pobieranie w kolejce" -#: src/Common/LinuxKernel.vala:263 +#: src/Common/LinuxKernel.vala:253 msgid "Fetching individual kernel indexes" msgstr "Pobieranie indywidualnych indeksów jądra" -#: src/Common/LinuxKernel.vala:277 +#: src/Common/LinuxKernel.vala:267 msgid "loading downloaded" msgstr "ładowanie pobranych" -#: src/Common/LinuxKernel.vala:318 +#: src/Common/LinuxKernel.vala:307 msgid "Updating from" msgstr "Aktualizowanie z" -#: src/Common/LinuxKernel.vala:326 +#: src/Common/LinuxKernel.vala:315 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:329 +#: src/Common/LinuxKernel.vala:318 msgid "FAILED" msgstr "NIEPOWODZENIE" -#: src/Common/LinuxKernel.vala:392 +#: src/Common/LinuxKernel.vala:383 msgid "Found installed" msgstr "Znaleziono zainstalowane" -#: src/Common/LinuxKernel.vala:393 +#: src/Common/LinuxKernel.vala:384 msgid "locked" msgstr "zablokowane" -#: src/Common/LinuxKernel.vala:475 src/Common/LinuxKernel.vala:1003 -#: src/Common/LinuxKernel.vala:1094 +#: src/Common/LinuxKernel.vala:466 src/Common/LinuxKernel.vala:997 +#: src/Common/LinuxKernel.vala:1088 msgid "is locked." msgstr "jest zablokowane." -#: src/Common/LinuxKernel.vala:668 src/Gtk/MainWindow.vala:521 +#: src/Common/LinuxKernel.vala:661 src/Gtk/MainWindow.vala:521 msgid "Running" msgstr "Uruchomione" -#: src/Common/LinuxKernel.vala:669 +#: src/Common/LinuxKernel.vala:662 msgid "Installed" msgstr "Zainstalowane" -#: src/Common/LinuxKernel.vala:670 +#: src/Common/LinuxKernel.vala:663 msgid "Invalid" msgstr "Nieprawidłowe" -#: src/Common/LinuxKernel.vala:760 +#: src/Common/LinuxKernel.vala:758 msgid "Packages Available" msgstr "Dostępne pakiety" -#: src/Common/LinuxKernel.vala:766 +#: src/Common/LinuxKernel.vala:764 msgid "Packages Installed" msgstr "Pakiety zainstalowane" -#: src/Common/LinuxKernel.vala:791 src/lib/TeeJee.FileSystem.vala:94 +#: src/Common/LinuxKernel.vala:789 src/lib/TeeJee.FileSystem.vala:94 msgid "File not found" msgstr "Nie odnaleziono pliku" -#: src/Common/LinuxKernel.vala:885 +#: src/Common/LinuxKernel.vala:883 msgid "Available Kernels" msgstr "Dostępne jądra" -#: src/Common/LinuxKernel.vala:920 src/Gtk/MainWindow.vala:135 +#: src/Common/LinuxKernel.vala:917 src/Gtk/MainWindow.vala:135 msgid "Kernel" msgstr "Jądro" -#: src/Common/LinuxKernel.vala:920 +#: src/Common/LinuxKernel.vala:917 msgid "not found" msgstr "nie odnaleziono" -#: src/Common/LinuxKernel.vala:927 +#: src/Common/LinuxKernel.vala:924 msgid "Download: no downloadable kernels specified" msgstr "Pobieranie: nie określono jąder do pobrania" -#: src/Common/LinuxKernel.vala:947 +#: src/Common/LinuxKernel.vala:940 msgid "enabled" msgstr "włączone" -#: src/Common/LinuxKernel.vala:971 +#: src/Common/LinuxKernel.vala:965 msgid "Downloading" msgstr "Pobieranie" -#: src/Common/LinuxKernel.vala:989 +#: src/Common/LinuxKernel.vala:983 msgid "Installing selected kernels" msgstr "Instalowanie wybranych jąder" -#: src/Common/LinuxKernel.vala:995 src/Common/LinuxKernel.vala:1034 +#: src/Common/LinuxKernel.vala:989 src/Common/LinuxKernel.vala:1028 msgid "Requested" msgstr "Zażądane" -#: src/Common/LinuxKernel.vala:998 +#: src/Common/LinuxKernel.vala:992 msgid "is already installed." msgstr "jest już zainstalowane." -#: src/Common/LinuxKernel.vala:1008 +#: src/Common/LinuxKernel.vala:1002 msgid "download failed." msgstr "pobieranie nie powiodło się." -#: src/Common/LinuxKernel.vala:1015 +#: src/Common/LinuxKernel.vala:1009 #, fuzzy msgid "Install: no installable kernels specified" msgstr "Instalowanie: nie określono jąder do zainstalowania" -#: src/Common/LinuxKernel.vala:1030 +#: src/Common/LinuxKernel.vala:1024 msgid "Uninstalling selected kernels" msgstr "Odinstalowanie wybranych jąder" -#: src/Common/LinuxKernel.vala:1037 +#: src/Common/LinuxKernel.vala:1031 msgid "Not uninstalling the currently running kernel" msgstr "Bez odinstalowywania aktualnie uruchomionego jądra" -#: src/Common/LinuxKernel.vala:1042 +#: src/Common/LinuxKernel.vala:1036 msgid "is locked" msgstr "jest zablokowane" -#: src/Common/LinuxKernel.vala:1050 +#: src/Common/LinuxKernel.vala:1044 msgid "found" msgstr "znalezione" -#: src/Common/LinuxKernel.vala:1054 +#: src/Common/LinuxKernel.vala:1048 msgid "Uninstall: no uninstallable packages found" msgstr "Odinstalowanie: nie znaleziono pakietów, które można odinstalować" -#: src/Common/LinuxKernel.vala:1090 +#: src/Common/LinuxKernel.vala:1084 msgid "is the highest installed version." msgstr "to najwyższa zainstalowana wersja." -#: src/Common/LinuxKernel.vala:1103 +#: src/Common/LinuxKernel.vala:1097 msgid "Could not find running kernel in list" msgstr "Nie można znaleźć uruchomionego jądra na liście" -#: src/Common/LinuxKernel.vala:1108 +#: src/Common/LinuxKernel.vala:1102 msgid "Could not find any kernels to uninstall" msgstr "Nie można znaleźć żadnych jąder do odinstalowania" -#: src/Common/LinuxKernel.vala:1116 +#: src/Common/LinuxKernel.vala:1107 msgid "The following kernels will be uninstalled" msgstr "Następujące jądra zostaną odinstalowane" -#: src/Common/LinuxKernel.vala:1120 +#: src/Common/LinuxKernel.vala:1109 msgid "Continue ?" msgstr "Kontynuować?" -#: src/Common/LinuxKernel.vala:1142 src/Console/AppConsole.vala:208 -msgid "Latest update" -msgstr "Najnowsza aktualizacja" - -#: src/Common/LinuxKernel.vala:1153 src/Console/AppConsole.vala:215 -msgid "Latest point update" -msgstr "Najnowsza aktualizacja punktowa" - -#: src/Common/LinuxKernel.vala:1161 src/Console/AppConsole.vala:220 -#: src/Console/AppConsole.vala:240 -msgid "No updates found" +#: src/Common/LinuxKernel.vala:1125 +#, fuzzy +msgid "No updates" msgstr "Nie znaleziono aktualizacji" -#: src/Common/LinuxKernel.vala:1170 +#: src/Common/LinuxKernel.vala:1131 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Zainstalować wersję jądra %s? (t/n): " -#: src/Common/Main.vala:354 +#: src/Common/Main.vala:240 +msgid "Wrote config file" +msgstr "" + +#: src/Common/Main.vala:259 +msgid "No config file" +msgstr "" + +#: src/Common/Main.vala:321 +msgid "Loaded config file" +msgstr "" + +#: src/Common/Main.vala:350 msgid "Called from" msgstr "Wywołano z" -#: src/Common/Main.vala:354 +#: src/Common/Main.vala:350 msgid "at logon" msgstr "przy logowaniu" -#: src/Common/Main.vala:355 +#: src/Common/Main.vala:351 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" "Ten plik jest nadpisywany i wykonywany ponownie za każdym razem, gdy " "ustawienia są zapisywane w" -#: src/Common/Main.vala:387 +#: src/Common/Main.vala:383 msgid "Notifications are disabled" msgstr "Powiadomienia są wyłączone" @@ -301,30 +305,56 @@ msgstr "" msgid "Locked kernels and the currently running kernel are ignored" msgstr "Zablokowane jądra i aktualnie uruchomione jądro są ignorowane" -#: src/Console/AppConsole.vala:139 src/Console/AppConsole.vala:193 +#: src/Console/AppConsole.vala:139 src/Console/AppConsole.vala:190 #: src/Gtk/AppGtk.vala:109 msgid "Unknown option" msgstr "Nieznana opcja" -#: src/Console/AppConsole.vala:229 +#: src/Console/AppConsole.vala:202 +msgid "Latest update" +msgstr "Najnowsza aktualizacja" + +#: src/Console/AppConsole.vala:203 +msgid "Latest point update" +msgstr "Najnowsza aktualizacja punktowa" + +#: src/Console/AppConsole.vala:204 src/Console/AppConsole.vala:222 +msgid "No updates found" +msgstr "Nie znaleziono aktualizacji" + +#: src/Console/AppConsole.vala:211 #, fuzzy msgid "Notifications disabled" msgstr "Powiadomienia są wyłączone" -#: src/Console/AppConsole.vala:262 +#: src/Console/AppConsole.vala:216 +msgid "No" +msgstr "" + +#: src/Console/AppConsole.vala:231 +#, fuzzy +msgid "notify point releases disabled" +msgstr "Powiadom, jeśli pojawi się wersja punktowa" + +#: src/Console/AppConsole.vala:239 +#, fuzzy +msgid "notify major releases disabled" +msgstr "Powiadom, jeśli pojawi się główna wersja" + +#: src/Console/AppConsole.vala:244 #, c-format msgid "Kernel %s Available" msgstr "Dostępne %s jądra" -#: src/Console/AppConsole.vala:266 src/Gtk/SettingsDialog.vala:151 +#: src/Console/AppConsole.vala:248 src/Gtk/SettingsDialog.vala:151 msgid "Show" msgstr "Pokaż" -#: src/Console/AppConsole.vala:267 src/Gtk/MainWindow.vala:312 +#: src/Console/AppConsole.vala:249 src/Gtk/MainWindow.vala:312 msgid "Install" msgstr "Zainstaluj" -#: src/Console/AppConsole.vala:270 +#: src/Console/AppConsole.vala:252 msgid "Previously notified" msgstr "Wcześniej powiadomiono" diff --git a/po/ru.po b/po/ru.po index 495c06b8..c13a3db8 100644 --- a/po/ru.po +++ b/po/ru.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-05 19:44-0400\n" +"POT-Creation-Date: 2023-06-06 03:55-0400\n" "PO-Revision-Date: 2023-04-17 20:16+0300\n" "Last-Translator: Danik2343 \n" "Language-Team: Russian\n" @@ -13,207 +13,211 @@ msgstr "" "X-Launchpad-Export-Date: 2016-12-13 11:48+0000\n" "X-Generator: Poedit 3.0.1\n" -#: src/Common/LinuxKernel.vala:100 +#: src/Common/LinuxKernel.vala:104 msgid "Distribution" msgstr "Дистрибутив" -#: src/Common/LinuxKernel.vala:115 +#: src/Common/LinuxKernel.vala:119 msgid "Architecture" msgstr "Архитектура" -#: src/Common/LinuxKernel.vala:130 +#: src/Common/LinuxKernel.vala:134 msgid "Running kernel" msgstr "Запущенное ядро" -#: src/Common/LinuxKernel.vala:230 +#: src/Common/LinuxKernel.vala:221 msgid "loading cached" msgstr "загрузка в кэше" -#: src/Common/LinuxKernel.vala:242 +#: src/Common/LinuxKernel.vala:233 msgid "queuing download" msgstr "загрузка очередей" -#: src/Common/LinuxKernel.vala:263 +#: src/Common/LinuxKernel.vala:253 msgid "Fetching individual kernel indexes" msgstr "Получение отдельных индексов ядра" -#: src/Common/LinuxKernel.vala:277 +#: src/Common/LinuxKernel.vala:267 msgid "loading downloaded" msgstr "загрузка загруженных" -#: src/Common/LinuxKernel.vala:318 +#: src/Common/LinuxKernel.vala:307 msgid "Updating from" msgstr "Обновление из" -#: src/Common/LinuxKernel.vala:326 +#: src/Common/LinuxKernel.vala:315 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:329 +#: src/Common/LinuxKernel.vala:318 msgid "FAILED" msgstr "НЕУДАВШИЙСЯ" -#: src/Common/LinuxKernel.vala:392 +#: src/Common/LinuxKernel.vala:383 msgid "Found installed" msgstr "Найдено установлененное" -#: src/Common/LinuxKernel.vala:393 +#: src/Common/LinuxKernel.vala:384 msgid "locked" msgstr "" -#: src/Common/LinuxKernel.vala:475 src/Common/LinuxKernel.vala:1003 -#: src/Common/LinuxKernel.vala:1094 +#: src/Common/LinuxKernel.vala:466 src/Common/LinuxKernel.vala:997 +#: src/Common/LinuxKernel.vala:1088 msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:668 src/Gtk/MainWindow.vala:521 +#: src/Common/LinuxKernel.vala:661 src/Gtk/MainWindow.vala:521 msgid "Running" msgstr "Используется" -#: src/Common/LinuxKernel.vala:669 +#: src/Common/LinuxKernel.vala:662 msgid "Installed" msgstr "Установлено" -#: src/Common/LinuxKernel.vala:670 +#: src/Common/LinuxKernel.vala:663 msgid "Invalid" msgstr "Негодный" -#: src/Common/LinuxKernel.vala:760 +#: src/Common/LinuxKernel.vala:758 msgid "Packages Available" msgstr "Доступные пакеты" -#: src/Common/LinuxKernel.vala:766 +#: src/Common/LinuxKernel.vala:764 msgid "Packages Installed" msgstr "Установленные пакеты" -#: src/Common/LinuxKernel.vala:791 src/lib/TeeJee.FileSystem.vala:94 +#: src/Common/LinuxKernel.vala:789 src/lib/TeeJee.FileSystem.vala:94 msgid "File not found" msgstr "Файл не найден" -#: src/Common/LinuxKernel.vala:885 +#: src/Common/LinuxKernel.vala:883 msgid "Available Kernels" msgstr "Доступные ядра" -#: src/Common/LinuxKernel.vala:920 src/Gtk/MainWindow.vala:135 +#: src/Common/LinuxKernel.vala:917 src/Gtk/MainWindow.vala:135 msgid "Kernel" msgstr "Ядро" -#: src/Common/LinuxKernel.vala:920 +#: src/Common/LinuxKernel.vala:917 #, fuzzy msgid "not found" msgstr "Файл не найден" -#: src/Common/LinuxKernel.vala:927 +#: src/Common/LinuxKernel.vala:924 #, fuzzy msgid "Download: no downloadable kernels specified" msgstr "Команда не указана" -#: src/Common/LinuxKernel.vala:947 +#: src/Common/LinuxKernel.vala:940 msgid "enabled" msgstr "включено" -#: src/Common/LinuxKernel.vala:971 +#: src/Common/LinuxKernel.vala:965 msgid "Downloading" msgstr "Загрузки" -#: src/Common/LinuxKernel.vala:989 +#: src/Common/LinuxKernel.vala:983 #, fuzzy msgid "Installing selected kernels" msgstr "Удаление выбранных ядер" -#: src/Common/LinuxKernel.vala:995 src/Common/LinuxKernel.vala:1034 +#: src/Common/LinuxKernel.vala:989 src/Common/LinuxKernel.vala:1028 #, fuzzy msgid "Requested" msgstr "запрошено" -#: src/Common/LinuxKernel.vala:998 +#: src/Common/LinuxKernel.vala:992 msgid "is already installed." msgstr "уже установлен." -#: src/Common/LinuxKernel.vala:1008 +#: src/Common/LinuxKernel.vala:1002 msgid "download failed." msgstr "" -#: src/Common/LinuxKernel.vala:1015 +#: src/Common/LinuxKernel.vala:1009 #, fuzzy msgid "Install: no installable kernels specified" msgstr "Команда не указана" -#: src/Common/LinuxKernel.vala:1030 +#: src/Common/LinuxKernel.vala:1024 msgid "Uninstalling selected kernels" msgstr "Удаление выбранных ядер" -#: src/Common/LinuxKernel.vala:1037 +#: src/Common/LinuxKernel.vala:1031 #, fuzzy msgid "Not uninstalling the currently running kernel" msgstr "не удаляет текущее работающее ядро" -#: src/Common/LinuxKernel.vala:1042 +#: src/Common/LinuxKernel.vala:1036 msgid "is locked" msgstr "" -#: src/Common/LinuxKernel.vala:1050 +#: src/Common/LinuxKernel.vala:1044 msgid "found" msgstr "найдено" -#: src/Common/LinuxKernel.vala:1054 +#: src/Common/LinuxKernel.vala:1048 msgid "Uninstall: no uninstallable packages found" msgstr "" -#: src/Common/LinuxKernel.vala:1090 +#: src/Common/LinuxKernel.vala:1084 #, fuzzy msgid "is the highest installed version." msgstr "Удаление всех установленных версий, кроме самой высокой" -#: src/Common/LinuxKernel.vala:1103 +#: src/Common/LinuxKernel.vala:1097 msgid "Could not find running kernel in list" msgstr "Could not find running kernel in list" -#: src/Common/LinuxKernel.vala:1108 +#: src/Common/LinuxKernel.vala:1102 msgid "Could not find any kernels to uninstall" msgstr "Не удалось найти ядра для деинсталляции" -#: src/Common/LinuxKernel.vala:1116 +#: src/Common/LinuxKernel.vala:1107 msgid "The following kernels will be uninstalled" msgstr "Следующие ядра будут удалены" -#: src/Common/LinuxKernel.vala:1120 +#: src/Common/LinuxKernel.vala:1109 msgid "Continue ?" msgstr "Продолжить ?" -#: src/Common/LinuxKernel.vala:1142 src/Console/AppConsole.vala:208 -msgid "Latest update" -msgstr "Последнее обновление" - -#: src/Common/LinuxKernel.vala:1153 src/Console/AppConsole.vala:215 -msgid "Latest point update" -msgstr "Последнее обновление пунктов" - -#: src/Common/LinuxKernel.vala:1161 src/Console/AppConsole.vala:220 -#: src/Console/AppConsole.vala:240 -msgid "No updates found" +#: src/Common/LinuxKernel.vala:1125 +#, fuzzy +msgid "No updates" msgstr "Обновлений не найдено" -#: src/Common/LinuxKernel.vala:1170 +#: src/Common/LinuxKernel.vala:1131 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Установить версию ядра %s ? (y/n): " -#: src/Common/Main.vala:354 +#: src/Common/Main.vala:240 +msgid "Wrote config file" +msgstr "" + +#: src/Common/Main.vala:259 +msgid "No config file" +msgstr "" + +#: src/Common/Main.vala:321 +msgid "Loaded config file" +msgstr "" + +#: src/Common/Main.vala:350 msgid "Called from" msgstr "Вызван из" -#: src/Common/Main.vala:354 +#: src/Common/Main.vala:350 msgid "at logon" msgstr "при запуске" -#: src/Common/Main.vala:355 +#: src/Common/Main.vala:351 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" "Этот файл перезаписывается и выполняется снова при сохранении настроек в" -#: src/Common/Main.vala:387 +#: src/Common/Main.vala:383 msgid "Notifications are disabled" msgstr "Уведомления отключены" @@ -312,30 +316,56 @@ msgstr "" msgid "Locked kernels and the currently running kernel are ignored" msgstr "Текущее работающее ядро всегда будет игнорироваться" -#: src/Console/AppConsole.vala:139 src/Console/AppConsole.vala:193 +#: src/Console/AppConsole.vala:139 src/Console/AppConsole.vala:190 #: src/Gtk/AppGtk.vala:109 msgid "Unknown option" msgstr "Неизвестный параметр" -#: src/Console/AppConsole.vala:229 +#: src/Console/AppConsole.vala:202 +msgid "Latest update" +msgstr "Последнее обновление" + +#: src/Console/AppConsole.vala:203 +msgid "Latest point update" +msgstr "Последнее обновление пунктов" + +#: src/Console/AppConsole.vala:204 src/Console/AppConsole.vala:222 +msgid "No updates found" +msgstr "Обновлений не найдено" + +#: src/Console/AppConsole.vala:211 #, fuzzy msgid "Notifications disabled" msgstr "Уведомления отключены" -#: src/Console/AppConsole.vala:262 +#: src/Console/AppConsole.vala:216 +msgid "No" +msgstr "" + +#: src/Console/AppConsole.vala:231 +#, fuzzy +msgid "notify point releases disabled" +msgstr "Уведомлять, если доступно небольшое обновление" + +#: src/Console/AppConsole.vala:239 +#, fuzzy +msgid "notify major releases disabled" +msgstr "Уведомлять, если доступно крупное обновление" + +#: src/Console/AppConsole.vala:244 #, c-format msgid "Kernel %s Available" msgstr "Доступно ядро %s" -#: src/Console/AppConsole.vala:266 src/Gtk/SettingsDialog.vala:151 +#: src/Console/AppConsole.vala:248 src/Gtk/SettingsDialog.vala:151 msgid "Show" msgstr "Показать" -#: src/Console/AppConsole.vala:267 src/Gtk/MainWindow.vala:312 +#: src/Console/AppConsole.vala:249 src/Gtk/MainWindow.vala:312 msgid "Install" msgstr "Установить" -#: src/Console/AppConsole.vala:270 +#: src/Console/AppConsole.vala:252 msgid "Previously notified" msgstr "Предварительно уведомлено" diff --git a/po/sv.po b/po/sv.po index 380376cc..6d553ba7 100644 --- a/po/sv.po +++ b/po/sv.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-05 19:44-0400\n" +"POT-Creation-Date: 2023-06-06 03:55-0400\n" "PO-Revision-Date: 2018-01-13 16:56+0100\n" "Last-Translator: Åke Engelbrektson \n" "Language-Team:Swedish\n" @@ -13,206 +13,210 @@ msgstr "" "X-Generator: Poedit 1.8.7.1\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: src/Common/LinuxKernel.vala:100 +#: src/Common/LinuxKernel.vala:104 msgid "Distribution" msgstr "Distribution" -#: src/Common/LinuxKernel.vala:115 +#: src/Common/LinuxKernel.vala:119 msgid "Architecture" msgstr "Arkitektur" -#: src/Common/LinuxKernel.vala:130 +#: src/Common/LinuxKernel.vala:134 msgid "Running kernel" msgstr "Löpande kernel" -#: src/Common/LinuxKernel.vala:230 +#: src/Common/LinuxKernel.vala:221 msgid "loading cached" msgstr "laddar cachelagrat" -#: src/Common/LinuxKernel.vala:242 +#: src/Common/LinuxKernel.vala:233 msgid "queuing download" msgstr "köbildning nedladdning" -#: src/Common/LinuxKernel.vala:263 +#: src/Common/LinuxKernel.vala:253 msgid "Fetching individual kernel indexes" msgstr "Hämta enskilda kernelindex" -#: src/Common/LinuxKernel.vala:277 +#: src/Common/LinuxKernel.vala:267 msgid "loading downloaded" msgstr "laddar nedladdad" -#: src/Common/LinuxKernel.vala:318 +#: src/Common/LinuxKernel.vala:307 msgid "Updating from" msgstr "Uppdatering från" -#: src/Common/LinuxKernel.vala:326 +#: src/Common/LinuxKernel.vala:315 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:329 +#: src/Common/LinuxKernel.vala:318 msgid "FAILED" msgstr "MISSLYCKADES" -#: src/Common/LinuxKernel.vala:392 +#: src/Common/LinuxKernel.vala:383 msgid "Found installed" msgstr "Hittade installerat" -#: src/Common/LinuxKernel.vala:393 +#: src/Common/LinuxKernel.vala:384 msgid "locked" msgstr "" -#: src/Common/LinuxKernel.vala:475 src/Common/LinuxKernel.vala:1003 -#: src/Common/LinuxKernel.vala:1094 +#: src/Common/LinuxKernel.vala:466 src/Common/LinuxKernel.vala:997 +#: src/Common/LinuxKernel.vala:1088 msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:668 src/Gtk/MainWindow.vala:521 +#: src/Common/LinuxKernel.vala:661 src/Gtk/MainWindow.vala:521 msgid "Running" msgstr "Körs" -#: src/Common/LinuxKernel.vala:669 +#: src/Common/LinuxKernel.vala:662 msgid "Installed" msgstr "Installerad" -#: src/Common/LinuxKernel.vala:670 +#: src/Common/LinuxKernel.vala:663 msgid "Invalid" msgstr "Ogiltig" -#: src/Common/LinuxKernel.vala:760 +#: src/Common/LinuxKernel.vala:758 msgid "Packages Available" msgstr "Tillgängliga paket" -#: src/Common/LinuxKernel.vala:766 +#: src/Common/LinuxKernel.vala:764 msgid "Packages Installed" msgstr "Installerade paket" -#: src/Common/LinuxKernel.vala:791 src/lib/TeeJee.FileSystem.vala:94 +#: src/Common/LinuxKernel.vala:789 src/lib/TeeJee.FileSystem.vala:94 msgid "File not found" msgstr "Filen kan inte hittas" -#: src/Common/LinuxKernel.vala:885 +#: src/Common/LinuxKernel.vala:883 msgid "Available Kernels" msgstr "Tillgängliga kärnor" -#: src/Common/LinuxKernel.vala:920 src/Gtk/MainWindow.vala:135 +#: src/Common/LinuxKernel.vala:917 src/Gtk/MainWindow.vala:135 msgid "Kernel" msgstr "Kärna" -#: src/Common/LinuxKernel.vala:920 +#: src/Common/LinuxKernel.vala:917 #, fuzzy msgid "not found" msgstr "Filen kan inte hittas" -#: src/Common/LinuxKernel.vala:927 +#: src/Common/LinuxKernel.vala:924 #, fuzzy msgid "Download: no downloadable kernels specified" msgstr "Kommandot har inte angetts" -#: src/Common/LinuxKernel.vala:947 +#: src/Common/LinuxKernel.vala:940 msgid "enabled" msgstr "aktiverat" -#: src/Common/LinuxKernel.vala:971 +#: src/Common/LinuxKernel.vala:965 msgid "Downloading" msgstr "Ladda ner" -#: src/Common/LinuxKernel.vala:989 +#: src/Common/LinuxKernel.vala:983 #, fuzzy msgid "Installing selected kernels" msgstr "Avinstallera valda kärnor" -#: src/Common/LinuxKernel.vala:995 src/Common/LinuxKernel.vala:1034 +#: src/Common/LinuxKernel.vala:989 src/Common/LinuxKernel.vala:1028 #, fuzzy msgid "Requested" msgstr "begärd" -#: src/Common/LinuxKernel.vala:998 +#: src/Common/LinuxKernel.vala:992 msgid "is already installed." msgstr "är redan installerat." -#: src/Common/LinuxKernel.vala:1008 +#: src/Common/LinuxKernel.vala:1002 msgid "download failed." msgstr "" -#: src/Common/LinuxKernel.vala:1015 +#: src/Common/LinuxKernel.vala:1009 #, fuzzy msgid "Install: no installable kernels specified" msgstr "Kommandot har inte angetts" -#: src/Common/LinuxKernel.vala:1030 +#: src/Common/LinuxKernel.vala:1024 msgid "Uninstalling selected kernels" msgstr "Avinstallera valda kärnor" -#: src/Common/LinuxKernel.vala:1037 +#: src/Common/LinuxKernel.vala:1031 #, fuzzy msgid "Not uninstalling the currently running kernel" msgstr "Avinstallera inte den kärna som körs, för närvarande" -#: src/Common/LinuxKernel.vala:1042 +#: src/Common/LinuxKernel.vala:1036 msgid "is locked" msgstr "" -#: src/Common/LinuxKernel.vala:1050 +#: src/Common/LinuxKernel.vala:1044 msgid "found" msgstr "grunda" -#: src/Common/LinuxKernel.vala:1054 +#: src/Common/LinuxKernel.vala:1048 msgid "Uninstall: no uninstallable packages found" msgstr "" -#: src/Common/LinuxKernel.vala:1090 +#: src/Common/LinuxKernel.vala:1084 #, fuzzy msgid "is the highest installed version." msgstr "Avinstallera alla utom den högsta installerade versionen" -#: src/Common/LinuxKernel.vala:1103 +#: src/Common/LinuxKernel.vala:1097 msgid "Could not find running kernel in list" msgstr "Det gick inte att hitta kernel som körs i listan" -#: src/Common/LinuxKernel.vala:1108 +#: src/Common/LinuxKernel.vala:1102 msgid "Could not find any kernels to uninstall" msgstr "Det gick inte att hitta några kärnor att avinstallera" -#: src/Common/LinuxKernel.vala:1116 +#: src/Common/LinuxKernel.vala:1107 msgid "The following kernels will be uninstalled" msgstr "Följande kärnor kommer att avinstalleras" -#: src/Common/LinuxKernel.vala:1120 +#: src/Common/LinuxKernel.vala:1109 msgid "Continue ?" msgstr "Fortsätta?" -#: src/Common/LinuxKernel.vala:1142 src/Console/AppConsole.vala:208 -msgid "Latest update" -msgstr "Senaste uppdatering" - -#: src/Common/LinuxKernel.vala:1153 src/Console/AppConsole.vala:215 -msgid "Latest point update" -msgstr "Senaste punktuppdatering" - -#: src/Common/LinuxKernel.vala:1161 src/Console/AppConsole.vala:220 -#: src/Console/AppConsole.vala:240 -msgid "No updates found" +#: src/Common/LinuxKernel.vala:1125 +#, fuzzy +msgid "No updates" msgstr "Inga uppdateringar hittades" -#: src/Common/LinuxKernel.vala:1170 +#: src/Common/LinuxKernel.vala:1131 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Installera kärnversion %s ? (j/n):" -#: src/Common/Main.vala:354 +#: src/Common/Main.vala:240 +msgid "Wrote config file" +msgstr "" + +#: src/Common/Main.vala:259 +msgid "No config file" +msgstr "" + +#: src/Common/Main.vala:321 +msgid "Loaded config file" +msgstr "" + +#: src/Common/Main.vala:350 msgid "Called from" msgstr "Ringde från" -#: src/Common/Main.vala:354 +#: src/Common/Main.vala:350 msgid "at logon" msgstr "vid start" -#: src/Common/Main.vala:355 +#: src/Common/Main.vala:351 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "Den här filen skrivs över och körs igen när inställningar sparas i" -#: src/Common/Main.vala:387 +#: src/Common/Main.vala:383 msgid "Notifications are disabled" msgstr "Meddelanden är inaktiverade" @@ -311,30 +315,56 @@ msgstr "" msgid "Locked kernels and the currently running kernel are ignored" msgstr "Den kärna som för närvarande körs ignoreras alltid" -#: src/Console/AppConsole.vala:139 src/Console/AppConsole.vala:193 +#: src/Console/AppConsole.vala:139 src/Console/AppConsole.vala:190 #: src/Gtk/AppGtk.vala:109 msgid "Unknown option" msgstr "Okänt alternativ" -#: src/Console/AppConsole.vala:229 +#: src/Console/AppConsole.vala:202 +msgid "Latest update" +msgstr "Senaste uppdatering" + +#: src/Console/AppConsole.vala:203 +msgid "Latest point update" +msgstr "Senaste punktuppdatering" + +#: src/Console/AppConsole.vala:204 src/Console/AppConsole.vala:222 +msgid "No updates found" +msgstr "Inga uppdateringar hittades" + +#: src/Console/AppConsole.vala:211 #, fuzzy msgid "Notifications disabled" msgstr "Meddelanden är inaktiverade" -#: src/Console/AppConsole.vala:262 +#: src/Console/AppConsole.vala:216 +msgid "No" +msgstr "" + +#: src/Console/AppConsole.vala:231 +#, fuzzy +msgid "notify point releases disabled" +msgstr "Meddela om en punktrelease är tillgänglig" + +#: src/Console/AppConsole.vala:239 +#, fuzzy +msgid "notify major releases disabled" +msgstr "Meddela om en större version är tillgänglig" + +#: src/Console/AppConsole.vala:244 #, c-format msgid "Kernel %s Available" msgstr "Kernel %s tillgängliga" -#: src/Console/AppConsole.vala:266 src/Gtk/SettingsDialog.vala:151 +#: src/Console/AppConsole.vala:248 src/Gtk/SettingsDialog.vala:151 msgid "Show" msgstr "Visa" -#: src/Console/AppConsole.vala:267 src/Gtk/MainWindow.vala:312 +#: src/Console/AppConsole.vala:249 src/Gtk/MainWindow.vala:312 msgid "Install" msgstr "Installera" -#: src/Console/AppConsole.vala:270 +#: src/Console/AppConsole.vala:252 msgid "Previously notified" msgstr "Tidigare anmält" diff --git a/po/tr.po b/po/tr.po index b69e5ef1..2c9deb58 100644 --- a/po/tr.po +++ b/po/tr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-05 19:44-0400\n" +"POT-Creation-Date: 2023-06-06 03:55-0400\n" "PO-Revision-Date: 2022-08-06 16:48+0300\n" "Last-Translator: Sabri Ünal \n" "Language-Team: Turkish\n" @@ -13,208 +13,211 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Poedit 3.1.1\n" -#: src/Common/LinuxKernel.vala:100 +#: src/Common/LinuxKernel.vala:104 msgid "Distribution" msgstr "Dağıtım" -#: src/Common/LinuxKernel.vala:115 +#: src/Common/LinuxKernel.vala:119 msgid "Architecture" msgstr "Sistem mimarisi" -#: src/Common/LinuxKernel.vala:130 +#: src/Common/LinuxKernel.vala:134 msgid "Running kernel" msgstr "Çalışan çekirdek" -#: src/Common/LinuxKernel.vala:230 +#: src/Common/LinuxKernel.vala:221 msgid "loading cached" msgstr "önbelleğe alınmış yükleme" -#: src/Common/LinuxKernel.vala:242 +#: src/Common/LinuxKernel.vala:233 msgid "queuing download" msgstr "kuyruğa alma indirme" -#: src/Common/LinuxKernel.vala:263 +#: src/Common/LinuxKernel.vala:253 msgid "Fetching individual kernel indexes" msgstr "Tek tek çekirdek dizinlerini alma" -#: src/Common/LinuxKernel.vala:277 +#: src/Common/LinuxKernel.vala:267 msgid "loading downloaded" msgstr "indirilen yükleniyor" -#: src/Common/LinuxKernel.vala:318 +#: src/Common/LinuxKernel.vala:307 msgid "Updating from" msgstr "Şuradan güncelleniyor" -#: src/Common/LinuxKernel.vala:326 +#: src/Common/LinuxKernel.vala:315 msgid "OK" msgstr "Tamam" -#: src/Common/LinuxKernel.vala:329 +#: src/Common/LinuxKernel.vala:318 msgid "FAILED" msgstr "BAŞARISIZ" -#: src/Common/LinuxKernel.vala:392 +#: src/Common/LinuxKernel.vala:383 msgid "Found installed" msgstr "Yüklü bulundu" -#: src/Common/LinuxKernel.vala:393 +#: src/Common/LinuxKernel.vala:384 msgid "locked" msgstr "" -#: src/Common/LinuxKernel.vala:475 src/Common/LinuxKernel.vala:1003 -#: src/Common/LinuxKernel.vala:1094 +#: src/Common/LinuxKernel.vala:466 src/Common/LinuxKernel.vala:997 +#: src/Common/LinuxKernel.vala:1088 msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:668 src/Gtk/MainWindow.vala:521 +#: src/Common/LinuxKernel.vala:661 src/Gtk/MainWindow.vala:521 msgid "Running" msgstr "Çalışıyor" -#: src/Common/LinuxKernel.vala:669 +#: src/Common/LinuxKernel.vala:662 msgid "Installed" msgstr "Kurulu" -#: src/Common/LinuxKernel.vala:670 +#: src/Common/LinuxKernel.vala:663 msgid "Invalid" msgstr "Geçersiz" -#: src/Common/LinuxKernel.vala:760 +#: src/Common/LinuxKernel.vala:758 msgid "Packages Available" msgstr "Mevcut Paketler" -#: src/Common/LinuxKernel.vala:766 +#: src/Common/LinuxKernel.vala:764 msgid "Packages Installed" msgstr "Kurulu Paketler" -#: src/Common/LinuxKernel.vala:791 src/lib/TeeJee.FileSystem.vala:94 +#: src/Common/LinuxKernel.vala:789 src/lib/TeeJee.FileSystem.vala:94 msgid "File not found" msgstr "Dosya bulunamadı" -#: src/Common/LinuxKernel.vala:885 +#: src/Common/LinuxKernel.vala:883 msgid "Available Kernels" msgstr "Mevcut Çekirdekler" -#: src/Common/LinuxKernel.vala:920 src/Gtk/MainWindow.vala:135 +#: src/Common/LinuxKernel.vala:917 src/Gtk/MainWindow.vala:135 msgid "Kernel" msgstr "Çekirdek" -#: src/Common/LinuxKernel.vala:920 +#: src/Common/LinuxKernel.vala:917 #, fuzzy msgid "not found" msgstr "Dosya bulunamadı" -#: src/Common/LinuxKernel.vala:927 +#: src/Common/LinuxKernel.vala:924 #, fuzzy msgid "Download: no downloadable kernels specified" msgstr "Komut belirtilmedi" -#: src/Common/LinuxKernel.vala:947 +#: src/Common/LinuxKernel.vala:940 msgid "enabled" msgstr "etkin" -#: src/Common/LinuxKernel.vala:971 +#: src/Common/LinuxKernel.vala:965 msgid "Downloading" msgstr "Indiriyor" -#: src/Common/LinuxKernel.vala:989 +#: src/Common/LinuxKernel.vala:983 #, fuzzy msgid "Installing selected kernels" msgstr "Seçili çekirdekleri kaldırma" -#: src/Common/LinuxKernel.vala:995 src/Common/LinuxKernel.vala:1034 +#: src/Common/LinuxKernel.vala:989 src/Common/LinuxKernel.vala:1028 #, fuzzy msgid "Requested" msgstr "istenen" -#: src/Common/LinuxKernel.vala:998 +#: src/Common/LinuxKernel.vala:992 msgid "is already installed." msgstr "zaten yüklü." -#: src/Common/LinuxKernel.vala:1008 +#: src/Common/LinuxKernel.vala:1002 msgid "download failed." msgstr "" -#: src/Common/LinuxKernel.vala:1015 +#: src/Common/LinuxKernel.vala:1009 #, fuzzy msgid "Install: no installable kernels specified" msgstr "Komut belirtilmedi" -#: src/Common/LinuxKernel.vala:1030 +#: src/Common/LinuxKernel.vala:1024 msgid "Uninstalling selected kernels" msgstr "Seçili çekirdekleri kaldırma" -#: src/Common/LinuxKernel.vala:1037 +#: src/Common/LinuxKernel.vala:1031 #, fuzzy msgid "Not uninstalling the currently running kernel" msgstr "çalışmakta olan çekirdeğin kaldırılmaması" -#: src/Common/LinuxKernel.vala:1042 +#: src/Common/LinuxKernel.vala:1036 msgid "is locked" msgstr "" -#: src/Common/LinuxKernel.vala:1050 +#: src/Common/LinuxKernel.vala:1044 msgid "found" msgstr "kurmak" -#: src/Common/LinuxKernel.vala:1054 +#: src/Common/LinuxKernel.vala:1048 msgid "Uninstall: no uninstallable packages found" msgstr "" -#: src/Common/LinuxKernel.vala:1090 +#: src/Common/LinuxKernel.vala:1084 #, fuzzy msgid "is the highest installed version." msgstr "En yüksek yüklü sürüm dışındaki tüm sürümleri kaldırın" -#: src/Common/LinuxKernel.vala:1103 +#: src/Common/LinuxKernel.vala:1097 msgid "Could not find running kernel in list" msgstr "Listede çalışan çekirdek bulunamadı" -#: src/Common/LinuxKernel.vala:1108 +#: src/Common/LinuxKernel.vala:1102 msgid "Could not find any kernels to uninstall" msgstr "Kaldırılacak çekirdek bulunamadı" -#: src/Common/LinuxKernel.vala:1116 +#: src/Common/LinuxKernel.vala:1107 msgid "The following kernels will be uninstalled" msgstr "Aşağıdaki çekirdekler kaldırılacaktır" -#: src/Common/LinuxKernel.vala:1120 +#: src/Common/LinuxKernel.vala:1109 msgid "Continue ?" msgstr "Devam edilsin mi?" -#: src/Common/LinuxKernel.vala:1142 src/Console/AppConsole.vala:208 -msgid "Latest update" -msgstr "Son güncelleme" - -# Point burada point release anlamında kullanılıyor. Örneğin 5.10.x sayısının en sonundaki x rakamı point release/nokta sürüm oluyor. -#: src/Common/LinuxKernel.vala:1153 src/Console/AppConsole.vala:215 -msgid "Latest point update" -msgstr "Son nokta güncellemesi" - -#: src/Common/LinuxKernel.vala:1161 src/Console/AppConsole.vala:220 -#: src/Console/AppConsole.vala:240 -msgid "No updates found" +#: src/Common/LinuxKernel.vala:1125 +#, fuzzy +msgid "No updates" msgstr "Güncelleme bulunamadı" -#: src/Common/LinuxKernel.vala:1170 +#: src/Common/LinuxKernel.vala:1131 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Linux Çekirdek Sürümü %s Kurulsun mu? (e/h): " -#: src/Common/Main.vala:354 +#: src/Common/Main.vala:240 +msgid "Wrote config file" +msgstr "" + +#: src/Common/Main.vala:259 +msgid "No config file" +msgstr "" + +#: src/Common/Main.vala:321 +msgid "Loaded config file" +msgstr "" + +#: src/Common/Main.vala:350 msgid "Called from" msgstr "Çağrı konumu" -#: src/Common/Main.vala:354 +#: src/Common/Main.vala:350 msgid "at logon" msgstr "başlangıçta" -#: src/Common/Main.vala:355 +#: src/Common/Main.vala:351 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" "Bu dosyanın üzerine yazılır ve ayarlar her kaydedildiğinde yeniden yürütülür" -#: src/Common/Main.vala:387 +#: src/Common/Main.vala:383 msgid "Notifications are disabled" msgstr "Bildirimler devre dışı bırakılmış" @@ -313,30 +316,57 @@ msgstr "" msgid "Locked kernels and the currently running kernel are ignored" msgstr "Şu anda çalışan çekirdek her zaman yoksayılır" -#: src/Console/AppConsole.vala:139 src/Console/AppConsole.vala:193 +#: src/Console/AppConsole.vala:139 src/Console/AppConsole.vala:190 #: src/Gtk/AppGtk.vala:109 msgid "Unknown option" msgstr "Bilinmeyen seçenek" -#: src/Console/AppConsole.vala:229 +#: src/Console/AppConsole.vala:202 +msgid "Latest update" +msgstr "Son güncelleme" + +# Point burada point release anlamında kullanılıyor. Örneğin 5.10.x sayısının en sonundaki x rakamı point release/nokta sürüm oluyor. +#: src/Console/AppConsole.vala:203 +msgid "Latest point update" +msgstr "Son nokta güncellemesi" + +#: src/Console/AppConsole.vala:204 src/Console/AppConsole.vala:222 +msgid "No updates found" +msgstr "Güncelleme bulunamadı" + +#: src/Console/AppConsole.vala:211 #, fuzzy msgid "Notifications disabled" msgstr "Bildirimler devre dışı bırakılmış" -#: src/Console/AppConsole.vala:262 +#: src/Console/AppConsole.vala:216 +msgid "No" +msgstr "" + +#: src/Console/AppConsole.vala:231 +#, fuzzy +msgid "notify point releases disabled" +msgstr "Nokta sürüm mevcutsa bildir" + +#: src/Console/AppConsole.vala:239 +#, fuzzy +msgid "notify major releases disabled" +msgstr "Ana sürüm mevcutsa bildir" + +#: src/Console/AppConsole.vala:244 #, c-format msgid "Kernel %s Available" msgstr "Çekirdek %s Kullanılabilir" -#: src/Console/AppConsole.vala:266 src/Gtk/SettingsDialog.vala:151 +#: src/Console/AppConsole.vala:248 src/Gtk/SettingsDialog.vala:151 msgid "Show" msgstr "Göster" -#: src/Console/AppConsole.vala:267 src/Gtk/MainWindow.vala:312 +#: src/Console/AppConsole.vala:249 src/Gtk/MainWindow.vala:312 msgid "Install" msgstr "Kur" -#: src/Console/AppConsole.vala:270 +#: src/Console/AppConsole.vala:252 msgid "Previously notified" msgstr "Daha önce bildirilmiş" diff --git a/po/uk.po b/po/uk.po index 930ca53b..988ec382 100644 --- a/po/uk.po +++ b/po/uk.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-05 19:44-0400\n" +"POT-Creation-Date: 2023-06-06 03:55-0400\n" "PO-Revision-Date: 2019-07-25 11:00+0300\n" "Last-Translator: Serhii Golovko \n" "Language-Team: Ukranian\n" @@ -13,201 +13,205 @@ msgstr "" "X-Launchpad-Export-Date: 2016-12-13 11:48+0000\n" "X-Generator: Poedit 2.2.1\n" -#: src/Common/LinuxKernel.vala:100 +#: src/Common/LinuxKernel.vala:104 msgid "Distribution" msgstr "Дистрибутив" -#: src/Common/LinuxKernel.vala:115 +#: src/Common/LinuxKernel.vala:119 msgid "Architecture" msgstr "Системна архитектура" -#: src/Common/LinuxKernel.vala:130 +#: src/Common/LinuxKernel.vala:134 msgid "Running kernel" msgstr "Запуск ядра" -#: src/Common/LinuxKernel.vala:230 +#: src/Common/LinuxKernel.vala:221 msgid "loading cached" msgstr "Завантаження кешованого" -#: src/Common/LinuxKernel.vala:242 +#: src/Common/LinuxKernel.vala:233 msgid "queuing download" msgstr "Черга завантаження" -#: src/Common/LinuxKernel.vala:263 +#: src/Common/LinuxKernel.vala:253 msgid "Fetching individual kernel indexes" msgstr "Вибірка окремих індексів ядра" -#: src/Common/LinuxKernel.vala:277 +#: src/Common/LinuxKernel.vala:267 msgid "loading downloaded" msgstr "Завантаження завантаженого" -#: src/Common/LinuxKernel.vala:318 +#: src/Common/LinuxKernel.vala:307 msgid "Updating from" msgstr "Оновлення з" -#: src/Common/LinuxKernel.vala:326 +#: src/Common/LinuxKernel.vala:315 msgid "OK" msgstr "Добре" -#: src/Common/LinuxKernel.vala:329 +#: src/Common/LinuxKernel.vala:318 msgid "FAILED" msgstr "НЕ ВДАЛОСЯ" -#: src/Common/LinuxKernel.vala:392 +#: src/Common/LinuxKernel.vala:383 msgid "Found installed" msgstr "Знайдено встановленим" -#: src/Common/LinuxKernel.vala:393 +#: src/Common/LinuxKernel.vala:384 msgid "locked" msgstr "заблокований" -#: src/Common/LinuxKernel.vala:475 src/Common/LinuxKernel.vala:1003 -#: src/Common/LinuxKernel.vala:1094 +#: src/Common/LinuxKernel.vala:466 src/Common/LinuxKernel.vala:997 +#: src/Common/LinuxKernel.vala:1088 msgid "is locked." msgstr "заблоковано." -#: src/Common/LinuxKernel.vala:668 src/Gtk/MainWindow.vala:521 +#: src/Common/LinuxKernel.vala:661 src/Gtk/MainWindow.vala:521 msgid "Running" msgstr "Використовується" -#: src/Common/LinuxKernel.vala:669 +#: src/Common/LinuxKernel.vala:662 msgid "Installed" msgstr "Встановлено" -#: src/Common/LinuxKernel.vala:670 +#: src/Common/LinuxKernel.vala:663 msgid "Invalid" msgstr "Інвалід" -#: src/Common/LinuxKernel.vala:760 +#: src/Common/LinuxKernel.vala:758 msgid "Packages Available" msgstr "Доступні пакети" -#: src/Common/LinuxKernel.vala:766 +#: src/Common/LinuxKernel.vala:764 msgid "Packages Installed" msgstr "Встановлені пакети" -#: src/Common/LinuxKernel.vala:791 src/lib/TeeJee.FileSystem.vala:94 +#: src/Common/LinuxKernel.vala:789 src/lib/TeeJee.FileSystem.vala:94 msgid "File not found" msgstr "Файл не знайдено" -#: src/Common/LinuxKernel.vala:885 +#: src/Common/LinuxKernel.vala:883 msgid "Available Kernels" msgstr "Доступні ядра" -#: src/Common/LinuxKernel.vala:920 src/Gtk/MainWindow.vala:135 +#: src/Common/LinuxKernel.vala:917 src/Gtk/MainWindow.vala:135 msgid "Kernel" msgstr "Ядро" -#: src/Common/LinuxKernel.vala:920 +#: src/Common/LinuxKernel.vala:917 msgid "not found" msgstr "не знайдено" -#: src/Common/LinuxKernel.vala:927 +#: src/Common/LinuxKernel.vala:924 msgid "Download: no downloadable kernels specified" msgstr "Завантажити: ядра для завантаження не вказано" -#: src/Common/LinuxKernel.vala:947 +#: src/Common/LinuxKernel.vala:940 msgid "enabled" msgstr "увімкнено" -#: src/Common/LinuxKernel.vala:971 +#: src/Common/LinuxKernel.vala:965 msgid "Downloading" msgstr "Завантаження" -#: src/Common/LinuxKernel.vala:989 +#: src/Common/LinuxKernel.vala:983 msgid "Installing selected kernels" msgstr "Встановлення обраних ядер" -#: src/Common/LinuxKernel.vala:995 src/Common/LinuxKernel.vala:1034 +#: src/Common/LinuxKernel.vala:989 src/Common/LinuxKernel.vala:1028 msgid "Requested" msgstr "Запитуваний" -#: src/Common/LinuxKernel.vala:998 +#: src/Common/LinuxKernel.vala:992 msgid "is already installed." msgstr "вже встановлено." -#: src/Common/LinuxKernel.vala:1008 +#: src/Common/LinuxKernel.vala:1002 msgid "download failed." msgstr "не вдалося завантажити." -#: src/Common/LinuxKernel.vala:1015 +#: src/Common/LinuxKernel.vala:1009 #, fuzzy msgid "Install: no installable kernels specified" msgstr "Встановлення: ядра, які можна встановити, не визначені" -#: src/Common/LinuxKernel.vala:1030 +#: src/Common/LinuxKernel.vala:1024 msgid "Uninstalling selected kernels" msgstr "Видаліть конкретні ядра" -#: src/Common/LinuxKernel.vala:1037 +#: src/Common/LinuxKernel.vala:1031 msgid "Not uninstalling the currently running kernel" msgstr "Не видалення поточного запущеного ядра" -#: src/Common/LinuxKernel.vala:1042 +#: src/Common/LinuxKernel.vala:1036 msgid "is locked" msgstr "заблоковано" -#: src/Common/LinuxKernel.vala:1050 +#: src/Common/LinuxKernel.vala:1044 msgid "found" msgstr "знайдено" -#: src/Common/LinuxKernel.vala:1054 +#: src/Common/LinuxKernel.vala:1048 msgid "Uninstall: no uninstallable packages found" msgstr "Видалити: пакетів, які можна видалити, не знайдено" -#: src/Common/LinuxKernel.vala:1090 +#: src/Common/LinuxKernel.vala:1084 msgid "is the highest installed version." msgstr "є найвищою встановленою версією." -#: src/Common/LinuxKernel.vala:1103 +#: src/Common/LinuxKernel.vala:1097 msgid "Could not find running kernel in list" msgstr "Не вдалося знайти запущене ядро у списку!" -#: src/Common/LinuxKernel.vala:1108 +#: src/Common/LinuxKernel.vala:1102 msgid "Could not find any kernels to uninstall" msgstr "Не вдалося знайти жодне ядро для вилучення" -#: src/Common/LinuxKernel.vala:1116 +#: src/Common/LinuxKernel.vala:1107 msgid "The following kernels will be uninstalled" msgstr "Наступні ядра будуть видалені" -#: src/Common/LinuxKernel.vala:1120 +#: src/Common/LinuxKernel.vala:1109 msgid "Continue ?" msgstr "Продовжувати ?" -#: src/Common/LinuxKernel.vala:1142 src/Console/AppConsole.vala:208 -msgid "Latest update" -msgstr "Останнє оновлення" - -#: src/Common/LinuxKernel.vala:1153 src/Console/AppConsole.vala:215 -msgid "Latest point update" -msgstr "Остання точка оновлення" - -#: src/Common/LinuxKernel.vala:1161 src/Console/AppConsole.vala:220 -#: src/Console/AppConsole.vala:240 -msgid "No updates found" +#: src/Common/LinuxKernel.vala:1125 +#, fuzzy +msgid "No updates" msgstr "Оновлень не знайдено" -#: src/Common/LinuxKernel.vala:1170 +#: src/Common/LinuxKernel.vala:1131 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Встановити Ядро Версії %s ? (так/ні): " -#: src/Common/Main.vala:354 +#: src/Common/Main.vala:240 +msgid "Wrote config file" +msgstr "" + +#: src/Common/Main.vala:259 +msgid "No config file" +msgstr "" + +#: src/Common/Main.vala:321 +msgid "Loaded config file" +msgstr "" + +#: src/Common/Main.vala:350 msgid "Called from" msgstr "Викликано з" -#: src/Common/Main.vala:354 +#: src/Common/Main.vala:350 msgid "at logon" msgstr "при запуску" -#: src/Common/Main.vala:355 +#: src/Common/Main.vala:351 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" "Цей файл перезаписується та виконується знову під час збереження налаштувань" -#: src/Common/Main.vala:387 +#: src/Common/Main.vala:383 msgid "Notifications are disabled" msgstr "Повідомлення вимкнено" @@ -300,30 +304,56 @@ msgstr "розділені комою, вертикальною рискою, д msgid "Locked kernels and the currently running kernel are ignored" msgstr "Заблоковані ядра та поточне запущене ядро ігноруються" -#: src/Console/AppConsole.vala:139 src/Console/AppConsole.vala:193 +#: src/Console/AppConsole.vala:139 src/Console/AppConsole.vala:190 #: src/Gtk/AppGtk.vala:109 msgid "Unknown option" msgstr "Невідомий параметр" -#: src/Console/AppConsole.vala:229 +#: src/Console/AppConsole.vala:202 +msgid "Latest update" +msgstr "Останнє оновлення" + +#: src/Console/AppConsole.vala:203 +msgid "Latest point update" +msgstr "Остання точка оновлення" + +#: src/Console/AppConsole.vala:204 src/Console/AppConsole.vala:222 +msgid "No updates found" +msgstr "Оновлень не знайдено" + +#: src/Console/AppConsole.vala:211 #, fuzzy msgid "Notifications disabled" msgstr "Повідомлення вимкнено" -#: src/Console/AppConsole.vala:262 +#: src/Console/AppConsole.vala:216 +msgid "No" +msgstr "" + +#: src/Console/AppConsole.vala:231 +#, fuzzy +msgid "notify point releases disabled" +msgstr "Повідомити, чи доступний невеликий випуск" + +#: src/Console/AppConsole.vala:239 +#, fuzzy +msgid "notify major releases disabled" +msgstr "Повідомити, чи доступний великий випуск" + +#: src/Console/AppConsole.vala:244 #, c-format msgid "Kernel %s Available" msgstr "Ядро %s Доступне" -#: src/Console/AppConsole.vala:266 src/Gtk/SettingsDialog.vala:151 +#: src/Console/AppConsole.vala:248 src/Gtk/SettingsDialog.vala:151 msgid "Show" msgstr "Показати" -#: src/Console/AppConsole.vala:267 src/Gtk/MainWindow.vala:312 +#: src/Console/AppConsole.vala:249 src/Gtk/MainWindow.vala:312 msgid "Install" msgstr "Встановити" -#: src/Console/AppConsole.vala:270 +#: src/Console/AppConsole.vala:252 msgid "Previously notified" msgstr "Попередньо повідомлено" diff --git a/src/Common/DownloadManager.vala b/src/Common/DownloadManager.vala index 071bce1e..85ef8252 100644 --- a/src/Common/DownloadManager.vala +++ b/src/Common/DownloadManager.vala @@ -23,7 +23,6 @@ public class DownloadTask : AsyncTask { regex = new Gee.HashMap(); try { - //Sample: //[#4df0c7 19283968B/45095814B(42%) CN:1 DL:105404B ETA:4m4s] regex["file-progress"] = new Regex("""^\[#([^ \t]+)[ \t]+([0-9]+)B\/([0-9]+)B\(([0-9]+)%\)[ \t]+[^ \t]+[ \t]+DL\:([0-9]+)B[ \t]+ETA\:([^ \]]+)\]"""); diff --git a/src/Common/LinuxKernel.vala b/src/Common/LinuxKernel.vala index 23199818..f1c83e24 100644 --- a/src/Common/LinuxKernel.vala +++ b/src/Common/LinuxKernel.vala @@ -49,8 +49,10 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { public static LinuxKernel kernel_latest_available; public static LinuxKernel kernel_latest_installed; public static LinuxKernel kernel_oldest_installed; - public static LinuxKernel kernel_last_stable_old_ppa_dirs; - public static LinuxKernel kernel_last_unstable_old_ppa_dirs; + public static LinuxKernel kernel_last_stable_ppa_dirs_v1; + public static LinuxKernel kernel_last_rc_ppa_dirs_v1; + //public static LinuxKernel kernel_last_stable_ppa_dirs_v2; // if the site changes again + //public static LinuxKernel kernel_last_rc_ppa_dirs_v2; public static Gee.ArrayList kernel_list = new Gee.ArrayList(); @@ -78,13 +80,15 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { kernel_update_major = kernel_active; kernel_update_minor = kernel_active; - // Special kernel versions where the mainline-ppa site changed their directory structure. - // affects: - // - ./foo.deb vs .//foo.deb - // - ./CHECKSUMS vs .//CHECKSUMS - // - ./BUILT vs .//status - kernel_last_stable_old_ppa_dirs = new LinuxKernel("5.6.17"); - kernel_last_unstable_old_ppa_dirs = new LinuxKernel("5.7-rc7"); + // Special threshold kernel versions where the mainline-ppa site changed their directory structure. + // ppa_dirs_ver=1 ppa_dirs_ver=2 + // ./foo.deb vs .//foo.deb + // ./CHECKSUMS vs .//CHECKSUMS + // ./BUILT vs .//status + kernel_last_stable_ppa_dirs_v1 = new LinuxKernel("5.6.17"); + kernel_last_rc_ppa_dirs_v1 = new LinuxKernel("5.7-rc7"); + //kernel_last_stable_ppa_dirs_v2 = new LinuxKernel("5.6.17"); // if the site changes again + //kernel_last_rc_ppa_dirs_v2 = new LinuxKernel("5.7-rc7"); } @@ -156,15 +160,6 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { } } - public static bool check_if_initialized() { - bool ok = (NATIVE_ARCH.length > 0); - if (!ok){ - vprint("LinuxKernel: Class should be initialized before use!",1,stderr); - exit(1); - } - return ok; - } - public static void delete_cache() { vprint("delete_cache()",2); kernel_list.clear(); @@ -183,23 +178,19 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { public static void mk_kernel_list(bool wait = true, owned Notifier? notifier = null) { vprint("mk_kernel_list()",2); - check_if_initialized(); - - kernel_list.clear(); - try { - App.cancelled = false; - var worker = new Thread.try(null, () => query_thread((owned) notifier) ); + var worker = new Thread.try(null, () => mk_kernel_list_worker((owned)notifier) ); if (wait) worker.join(); - } catch (Error e) { - vprint(e.message,1,stderr); - } + } catch (Error e) { vprint(e.message,1,stderr); } } - private static bool query_thread(owned Notifier? notifier) { - vprint("query_thread()",2); + private static bool mk_kernel_list_worker(owned Notifier? notifier) { + vprint("mk_kernel_list_worker()",2); + + kernel_list.clear(); App.progress_total = 0; App.progress_count = 0; + App.cancelled = false; var timer = timer_start(); int count = 0; @@ -240,8 +231,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { // add index.html to download list vprint(_("queuing download")+" "+k.version_main,3); - var item = new DownloadItem(k.cached_page_uri, file_parent(k.cached_page), file_basename(k.cached_page)); - downloads.add(item); + downloads.add(new DownloadItem(k.cached_page_uri, file_parent(k.cached_page), file_basename(k.cached_page))); // add kernel to update list kernels_to_update.add(k); @@ -298,7 +288,6 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { // download the main index.html listing all mainline kernels private static bool download_index() { vprint("download_index()",2); - check_if_initialized(); string cif = main_index_file(); if (!file_exists(cif)) App.index_is_fresh=false; @@ -323,7 +312,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { if (file_exists(tfn)) { file_move(tfn,cif); App.index_is_fresh=true; - vprint(_("OK")); + vprint(_("OK"),2); return true; } else { vprint(_("FAILED"),1,stderr); @@ -355,8 +344,10 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { v = mi.fetch(1); var k = new LinuxKernel(v); - if (k.version_major=0 && App.hide_unstable)) { delete_r(k.cache_subdir); continue; } + if (k.version_major=0 && App.hide_unstable)) { + if (File.parse_name(k.cache_subdir).query_exists()) delete_r(k.cache_subdir); + continue; + } k.page_uri = App.ppa_uri + v; k.is_mainline = true; @@ -605,41 +596,43 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { } // complicated comparison logic for kernel version strings +// * individual fields tested numerically if possible +// so that 1.12.0 is higher than 1.2.0 +// * 1.2.3-rc5 is higher than 1.2.3-rc4 normal, but... +// 1.2.3 is higher than 1.2.3-rc5 <-- the weird one // like strcmp(), but l & r are LinuxKernel objects +// l.compare_to(r) name & interface to please Gee.Comparable // lr return 1 public int compare_to(LinuxKernel t) { vprint(version_main+" compare_to() "+t.version_main,4); - // TODO version_sort is a transitional hack to keep doing the old way of parsing version_main - // since version_main has a different format now. - // The better way will be to just examine the individual variables we already have for free, - // version_major, version_minor, etc... + // TODO version_sort is a transitional hack to keep doing the old way of + // parsing version_main, since version_main has a different format now. + // The better way will be to just examine the individual variables + // which we already did the work of parsing in split_version_string() var a = version_sort.split_set(".-_"); var b = t.version_sort.split_set(".-_"); int x, y, i = -1; - while (++i0 && y>0) return (x - y); - if (x==0 && y==0) return strcmp(a[i],b[i]); - if (x>0) return 1; - return -1; + while (++i0 && y>0) return (x - y); // both numerical >0, numerical compare + if (x==0 && y==0) return strcmp(a[i],b[i]); // neither numerical >0 (alpha or maybe 0), lexical compare + if (x>0) return 1; // only left is numerical>0, left is greater + return -1; // only right is numerical>0, right is greater } - if (i0) return 1; return -1; } - if (i0) return -1; return 1; } - return 0; + if (i0) return 1; return -1; } // left is longer { {left is numerical>0) left is greater else right is greater } + if (i0) return -1; return 1; } // right is longer { {right is numerical>0) right is greater else left is greater } + return 0; // left & right identical the whole way } public void set_pkg_list() { - vprint("set_pkg_list()",2); - vprint("kname:"+kname+" kver:"+kver+" version_main:"+version_main,3); + vprint("set_pkg_list("+kver+")",2); foreach(var p in Package.dpkg_list) { - if (!p.pname.has_prefix("linux-")) continue; if (p.version == kver) { pkg_list[p.pname] = p.pname; - vprint("Package: "+p.pname,2); + vprint("pkg: "+p.pname,2); } } } @@ -672,20 +665,19 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { } } - public bool new_ppa_dirs { - get { - // if stable and newer than kernel_last_stable_old_ppa_dirs - // or if unstable and newer than kernel_last_unstable_old_ppa_dirs - if (ppa_dirs_ver==2) return true; - if (ppa_dirs_ver==1) return false; - var k = kernel_last_stable_old_ppa_dirs; - if (version_rc>=0) k = kernel_last_unstable_old_ppa_dirs; - if (compare_to(k)>0) { ppa_dirs_ver = 2; return true; } - else { ppa_dirs_ver = 1; return false; } - } + private void set_ppa_dirs_ver() { + if (ppa_dirs_ver>0) return; + ppa_dirs_ver = 1; + var k = kernel_last_stable_ppa_dirs_v1; // Which threshold, + if (version_rc>=0) k = kernel_last_rc_ppa_dirs_v1; // stable or rc? + if (compare_to(k)>0) ppa_dirs_ver = 2; // Do we exceed it? + // and in the future if the ppa site changes again, + // add more copies of these 3 lines + //k = kernel_last_stable_ppa_dirs_v2; + //if (version_rc>=0) k = kernel_last_rc_ppa_dirs_v2; + //if (compare_to(k)>0) ppa_dirs_ver = 3; } - public static string main_index_file () { return App.CACHE_DIR+"/index.html"; } @@ -740,8 +732,12 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { public string checksums_file_uri { owned get { - if (new_ppa_dirs) return page_uri+NATIVE_ARCH+"/CHECKSUMS"; - return page_uri+"CHECKSUMS"; + if (ppa_dirs_ver<1) set_ppa_dirs_ver(); // doing here means we only do if needed + switch (ppa_dirs_ver) { + case 1: return page_uri+"CHECKSUMS"; + //case 2: return page_uri+NATIVE_ARCH+"/CHECKSUMS"; + default: return page_uri+NATIVE_ARCH+"/CHECKSUMS"; + } } } @@ -905,7 +901,6 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { public static Gee.ArrayList vlist_to_klist(string list="",bool uk=false) { vprint("vlist_to_klist("+list+")",3); - check_if_initialized(); var klist = new Gee.ArrayList(); var vlist = list.split_set(",;:| "); int i=vlist.length; @@ -933,23 +928,20 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { // dep: aria2c public bool download_packages() { vprint("download_packages("+version_main+")",2); - check_if_initialized(); bool ok = true; int MB = 1024 * 1024; - var mgr = new DownloadTask(); - // CHECKSUMS - //fetch CHECKSUMS or /CHECKSUMS depending on version deb_checksum_list.clear(); foreach (string f in deb_url_list.keys) deb_checksum_list[f] = ""; if (App.verify_checksums) { vprint("CHECKSUMS "+_("enabled"),2); if (!file_exists(cached_checksums_file)) { - mgr.add_to_queue(new DownloadItem(checksums_file_uri,cache_subdir,"CHECKSUMS")); - mgr.execute(); - while (mgr.is_running()) sleep(250); + var dt = new DownloadTask(); + dt.add_to_queue(new DownloadItem(checksums_file_uri,cache_subdir,"CHECKSUMS")); + dt.execute(); + while (dt.is_running()) sleep(100); } // extract the sha256 hashes and save in aria2c format @@ -965,7 +957,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { } } - mgr = new DownloadTask(); + var mgr = new DownloadTask(); foreach (string file_name in deb_url_list.keys) mgr.add_to_queue(new DownloadItem(deb_url_list[file_name],cache_subdir,file_name,deb_checksum_list[file_name])); vprint(_("Downloading")+" "+version_main); @@ -1058,7 +1050,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { return Posix.system(cmd); } - public static void kunin_old(bool confirm) { + public static int kunin_old(bool confirm) { vprint("kunin_old()",2); find_thresholds(true); @@ -1101,82 +1093,46 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { if (!found_running_kernel) { vprint(_("Could not find running kernel in list"),1,stderr); - return; + return 2; } if (klist.size == 0){ vprint(_("Could not find any kernels to uninstall"),2); - return; + return 0; } - // confirm ------------------------------- - if (confirm) { - var message = "\n"+_("The following kernels will be uninstalled")+"\n"; - foreach (var k in klist) message += " ▰ %s\n".printf(k.version_main); - message += "\n%s (y/n): ".printf(_("Continue ?")); - vprint(message,0); - int ch = stdin.getc(); - - if (ch != 'y') return; + if (ch != 'y') return 1; } // uninstall -------------------------------- - uninstall_klist(klist); + return uninstall_klist(klist); } - public static void kinst_latest(bool point_update, bool confirm) { + public static int kinst_latest(bool point_update = false, bool confirm = true) { vprint("kinst_latest()",2); - mk_kernel_list(true); - - var kern_major = LinuxKernel.kernel_update_major; - - if ((kern_major != null) && !point_update) { - - var message = "%s: %s".printf(_("Latest update"), kern_major.version_main); - vprint(message); - - kinst_update(kern_major, confirm); - return; - } - - var kern_minor = LinuxKernel.kernel_update_minor; - - if (kern_minor != null) { - - var message = "%s: %s".printf(_("Latest point update"), kern_minor.version_main); - vprint(message); - - kinst_update(kern_minor, confirm); - return; - } - - if ((kern_major == null) && (kern_minor == null)) { - vprint(_("No updates found")); - } - + var k = LinuxKernel.kernel_update_major; + if (point_update) k = LinuxKernel.kernel_update_minor; + if (k != null) return kinst_update(k, confirm); + vprint(_("No updates")); + return 1; } - public static void kinst_update(LinuxKernel k, bool confirm) { - + public static int kinst_update(LinuxKernel k, bool confirm) { if (confirm) { - - var message = "\n" + _("Install Kernel Version %s ? (y/n): ").printf(k.version_main); - vprint(message,0); - + vprint("\n" + _("Install Kernel Version %s ? (y/n): ").printf(k.version_main),0); int ch = stdin.getc(); - if (ch != 'y') return; + if (ch != 'y') return 1; } - var klist = new Gee.ArrayList(); klist.add(k); - install_klist(klist); + return install_klist(klist); } } diff --git a/src/Common/Main.vala b/src/Common/Main.vala index ae3d28f5..17f824e0 100644 --- a/src/Common/Main.vala +++ b/src/Common/Main.vala @@ -71,8 +71,7 @@ const string[] DEFAULT_AUTH_CMDS = { "gksu --su-mode", "pbrun" }; - -// windows +// window sizes const int DEFAULT_WINDOW_WIDTH = 800 ; const int DEFAULT_WINDOW_HEIGHT = 600 ; const int DEFAULT_WINDOW_X = -1 ; @@ -87,12 +86,10 @@ extern void exit(int exit_code); public class Main : GLib.Object { // constants ---------- - public string CONFIG_DIR = ""; public string CACHE_DIR = ""; public string DATA_DIR = ""; public string TMP_PREFIX = ""; - public string APP_CONFIG_FILE = ""; public string STARTUP_SCRIPT_FILE = ""; public string STARTUP_DESKTOP_FILE = ""; @@ -101,7 +98,6 @@ public class Main : GLib.Object { public string MINOR_SEEN_FILE = ""; // global progress ---------------- - public string status_line = ""; public int progress_total = 0; public int progress_count = 0; @@ -117,6 +113,7 @@ public class Main : GLib.Object { public bool index_is_fresh = false; public bool RUN_NOTIFY_SCRIPT = false; + // config public string ppa_uri = DEFAULT_PPA_URI; public string all_proxy = DEFAULT_ALL_PROXY; public int connect_timeout_seconds = DEFAULT_CONNECT_TIMEOUT_SECONDS; @@ -240,7 +237,7 @@ public class Main : GLib.Object { try { json.to_file(APP_CONFIG_FILE); } catch (Error e) { vprint(e.message,1,stderr); } - vprint("Wrote config file: %s".printf(APP_CONFIG_FILE),2); + vprint(_("Wrote config file")+": "+APP_CONFIG_FILE,2); update_notification_files(); } @@ -259,7 +256,7 @@ public class Main : GLib.Object { try { parser.load_from_file(APP_CONFIG_FILE); } catch (Error e) { cf = false; vprint(e.message,2); } if (!cf) { - vprint("detetcted no config file",2); + vprint(_("No config file"),2); save_app_config(); try { parser.load_from_file(APP_CONFIG_FILE); } catch (Error e) { vprint(e.message,1,stderr); exit(1); } @@ -321,10 +318,9 @@ public class Main : GLib.Object { if (connect_timeout_seconds>600) connect_timeout_seconds = 600; // aria2c max allowed if (resave) save_app_config(); - vprint("Loaded config file: "+APP_CONFIG_FILE,2); + vprint(_("Loaded config file")+": "+APP_CONFIG_FILE,2); } - // begin ------------ private void update_startup_script() { vprint("update_startup_script()",2); diff --git a/src/Console/AppConsole.vala b/src/Console/AppConsole.vala index fa896928..6fbde1f3 100644 --- a/src/Console/AppConsole.vala +++ b/src/Console/AppConsole.vala @@ -163,17 +163,14 @@ public class AppConsole : GLib.Object { return notify_user(); case "--install-latest": - LinuxKernel.kinst_latest(false, App.confirm); - break; + return LinuxKernel.kinst_latest(false, App.confirm); case "--install-point": - LinuxKernel.kinst_latest(true, App.confirm); - break; + return LinuxKernel.kinst_latest(true, App.confirm); case "--purge-old-kernels": // back compat case "--uninstall-old": - LinuxKernel.kunin_old(App.confirm); - break; + return LinuxKernel.kunin_old(App.confirm); case "--clean-cache": // back compat case "--delete-cache": @@ -199,27 +196,12 @@ public class AppConsole : GLib.Object { } private void print_updates() { - LinuxKernel.mk_kernel_list(true); - - var kern_major = LinuxKernel.kernel_update_major; - - if (kern_major != null) { - var message = "%s: %s".printf(_("Latest update"), kern_major.version_main); - vprint(message); - } - - var kern_minor = LinuxKernel.kernel_update_minor; - - if (kern_minor != null) { - var message = "%s: %s".printf(_("Latest point update"), kern_minor.version_main); - vprint(message); - } - - if ((kern_major == null) && (kern_minor == null)) { - vprint(_("No updates found")); - } - + var km = LinuxKernel.kernel_update_major; + var kp = LinuxKernel.kernel_update_minor; + if (km != null) vprint(_("Latest update")+": "+km.version_main); + if (kp != null) vprint(_("Latest point update")+": "+kp.version_main); + if ((km == null) && (kp == null)) vprint(_("No updates found")); } private int notify_user() { @@ -231,7 +213,7 @@ public class AppConsole : GLib.Object { } if (Environment.get_variable("DISPLAY")==null) { - vprint("No $DISPLAY",2); + vprint(_("No")+" $DISPLAY",2); return 1; } @@ -246,7 +228,7 @@ public class AppConsole : GLib.Object { if (k!=null && k.version_main!="") available = k.version_main; if (file_exists(App.MINOR_SEEN_FILE)) seen = file_read(App.MINOR_SEEN_FILE).strip(); if (seen!=available) file_write(App.MINOR_SEEN_FILE,available); - } else vprint("notify point releases disabled",2); + } else vprint(_("notify point releases disabled"),2); // if notify_major enabled and there is one, simply overwrite available if (App.notify_major) { @@ -254,7 +236,7 @@ public class AppConsole : GLib.Object { if (k!=null && k.version_main!="") available = k.version_main; if (file_exists(App.MAJOR_SEEN_FILE)) seen = file_read(App.MAJOR_SEEN_FILE).strip(); if (seen!=available) file_write(App.MAJOR_SEEN_FILE,available); - } else vprint("notify major releases disabled",2); + } else vprint(_("notify major releases disabled"),2); if (seen==available) available = ""; diff --git a/src/Gtk/SettingsDialog.vala b/src/Gtk/SettingsDialog.vala index 51834a78..a66698d4 100644 --- a/src/Gtk/SettingsDialog.vala +++ b/src/Gtk/SettingsDialog.vala @@ -70,7 +70,7 @@ public class SettingsDialog : Gtk.Dialog { chk.toggled.connect(()=>{ App.notify_minor = chk_notify_minor.active; }); if (Main.VERBOSE>1) { - label = new Gtk.Label("( VERBOSE > 1 : "+_("Seconds interval enabled for debugging")+" )"); + label = new Gtk.Label("( VERBOSE="+Main.VERBOSE.to_string()+" : "+_("Seconds interval enabled for debugging")+" )"); label.xalign = (float) 0.0; label.margin_bottom = 6; vbox_main.add (label); diff --git a/src/lib/l.misc.vala b/src/lib/l.misc.vala index 3dab3d74..0f6b92ad 100644 --- a/src/lib/l.misc.vala +++ b/src/lib/l.misc.vala @@ -126,7 +126,7 @@ namespace l.misc { // 20200510 bkw - execute command without waiting public void exec_async(string cmd) { vprint("exec_async("+cmd+")",2); - try { Process.spawn_command_line_async (cmd); } + try { Process.spawn_command_line_async(cmd); } catch (SpawnError e) { vprint(e.message,1,stderr); } } @@ -146,7 +146,7 @@ namespace l.misc { } public void sleep(int milliseconds) { - Thread.usleep ((ulong) milliseconds * 1000); + Thread.usleep((ulong) milliseconds * 1000); } public bool delete_r(string dir_path) { From 19242072693e7f975a16714110e019b7895cdf33 Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Tue, 6 Jun 2023 04:34:34 -0400 Subject: [PATCH 364/567] pos --- po/de.po | 58 ++++++++--------- po/el.po | 58 ++++++++--------- po/es.po | 58 ++++++++--------- po/fr.po | 58 ++++++++--------- po/hr.po | 58 ++++++++--------- po/it.po | 58 ++++++++--------- po/ko.po | 58 ++++++++--------- po/messages.pot | 58 ++++++++--------- po/nl.po | 58 ++++++++--------- po/pl.po | 58 ++++++++--------- po/ru.po | 167 +++++++++++++++++++++++++++++------------------- po/sv.po | 58 ++++++++--------- po/tr.po | 58 ++++++++--------- po/uk.po | 58 ++++++++--------- 14 files changed, 477 insertions(+), 444 deletions(-) diff --git a/po/de.po b/po/de.po index 64e3daa1..d6855ea7 100644 --- a/po/de.po +++ b/po/de.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-06 03:55-0400\n" +"POT-Creation-Date: 2023-06-06 04:33-0400\n" "PO-Revision-Date: 2023-02-20 18:40+0100\n" "Last-Translator: Marvin Meysel \n" "Language-Team: German\n" @@ -61,8 +61,8 @@ msgstr "Installiert gefunden" msgid "locked" msgstr "" -#: src/Common/LinuxKernel.vala:466 src/Common/LinuxKernel.vala:997 -#: src/Common/LinuxKernel.vala:1088 +#: src/Common/LinuxKernel.vala:466 src/Common/LinuxKernel.vala:995 +#: src/Common/LinuxKernel.vala:1086 msgid "is locked." msgstr "" @@ -78,115 +78,115 @@ msgstr "Installiert" msgid "Invalid" msgstr "Ungültig" -#: src/Common/LinuxKernel.vala:758 +#: src/Common/LinuxKernel.vala:756 msgid "Packages Available" msgstr "Verfügbare Pakete" -#: src/Common/LinuxKernel.vala:764 +#: src/Common/LinuxKernel.vala:762 msgid "Packages Installed" msgstr "Installierte Pakete" -#: src/Common/LinuxKernel.vala:789 src/lib/TeeJee.FileSystem.vala:94 +#: src/Common/LinuxKernel.vala:787 src/lib/TeeJee.FileSystem.vala:94 msgid "File not found" msgstr "Datei nicht gefunden " -#: src/Common/LinuxKernel.vala:883 +#: src/Common/LinuxKernel.vala:881 msgid "Available Kernels" msgstr "Verfügbare Kernel" -#: src/Common/LinuxKernel.vala:917 src/Gtk/MainWindow.vala:135 +#: src/Common/LinuxKernel.vala:915 src/Gtk/MainWindow.vala:135 msgid "Kernel" msgstr "Kernel" -#: src/Common/LinuxKernel.vala:917 +#: src/Common/LinuxKernel.vala:915 #, fuzzy msgid "not found" msgstr "Datei nicht gefunden " -#: src/Common/LinuxKernel.vala:924 +#: src/Common/LinuxKernel.vala:922 #, fuzzy msgid "Download: no downloadable kernels specified" msgstr "Befehl nicht angegeben" -#: src/Common/LinuxKernel.vala:940 +#: src/Common/LinuxKernel.vala:938 msgid "enabled" msgstr "ermöglichte" -#: src/Common/LinuxKernel.vala:965 +#: src/Common/LinuxKernel.vala:963 msgid "Downloading" msgstr "Laden" -#: src/Common/LinuxKernel.vala:983 +#: src/Common/LinuxKernel.vala:981 #, fuzzy msgid "Installing selected kernels" msgstr "Deinstallation des angegebenen Kernels" -#: src/Common/LinuxKernel.vala:989 src/Common/LinuxKernel.vala:1028 +#: src/Common/LinuxKernel.vala:987 src/Common/LinuxKernel.vala:1026 #, fuzzy msgid "Requested" msgstr "angefordert" -#: src/Common/LinuxKernel.vala:992 +#: src/Common/LinuxKernel.vala:990 msgid "is already installed." msgstr "ist bereits installiert." -#: src/Common/LinuxKernel.vala:1002 +#: src/Common/LinuxKernel.vala:1000 msgid "download failed." msgstr "" -#: src/Common/LinuxKernel.vala:1009 +#: src/Common/LinuxKernel.vala:1007 #, fuzzy msgid "Install: no installable kernels specified" msgstr "Befehl nicht angegeben" -#: src/Common/LinuxKernel.vala:1024 +#: src/Common/LinuxKernel.vala:1022 msgid "Uninstalling selected kernels" msgstr "Deinstallation des angegebenen Kernels" -#: src/Common/LinuxKernel.vala:1031 +#: src/Common/LinuxKernel.vala:1029 #, fuzzy msgid "Not uninstalling the currently running kernel" msgstr "Den aktuell laufenden Kernel wird nicht deinstalliert" -#: src/Common/LinuxKernel.vala:1036 +#: src/Common/LinuxKernel.vala:1034 msgid "is locked" msgstr "" -#: src/Common/LinuxKernel.vala:1044 +#: src/Common/LinuxKernel.vala:1042 msgid "found" msgstr "gründen" -#: src/Common/LinuxKernel.vala:1048 +#: src/Common/LinuxKernel.vala:1046 msgid "Uninstall: no uninstallable packages found" msgstr "" -#: src/Common/LinuxKernel.vala:1084 +#: src/Common/LinuxKernel.vala:1082 #, fuzzy msgid "is the highest installed version." msgstr "Deinstallieren Sie alle bis auf die höchste installierte Version" -#: src/Common/LinuxKernel.vala:1097 +#: src/Common/LinuxKernel.vala:1095 msgid "Could not find running kernel in list" msgstr "Konnte keinen laufenden Kernel in der Liste finden" -#: src/Common/LinuxKernel.vala:1102 +#: src/Common/LinuxKernel.vala:1100 msgid "Could not find any kernels to uninstall" msgstr "Es konnten keine Kernel zum Deinstallieren gefunden werden" -#: src/Common/LinuxKernel.vala:1107 +#: src/Common/LinuxKernel.vala:1105 msgid "The following kernels will be uninstalled" msgstr "Die folgenden Kernel werden deinstalliert" -#: src/Common/LinuxKernel.vala:1109 +#: src/Common/LinuxKernel.vala:1107 msgid "Continue ?" msgstr "Weiter ?" -#: src/Common/LinuxKernel.vala:1125 +#: src/Common/LinuxKernel.vala:1123 #, fuzzy msgid "No updates" msgstr "Keine Updates gefunden" -#: src/Common/LinuxKernel.vala:1131 +#: src/Common/LinuxKernel.vala:1129 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Kernel-Version %s installieren? (j/n):" diff --git a/po/el.po b/po/el.po index db66fed8..ae974775 100644 --- a/po/el.po +++ b/po/el.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-06 03:55-0400\n" +"POT-Creation-Date: 2023-06-06 04:33-0400\n" "PO-Revision-Date: 2023-01-10 02:03-0600\n" "Last-Translator: Vasilis Kosmidis \n" "Language-Team: Greek\n" @@ -61,8 +61,8 @@ msgstr "Βρέθηκε εγκατεστημένο" msgid "locked" msgstr "" -#: src/Common/LinuxKernel.vala:466 src/Common/LinuxKernel.vala:997 -#: src/Common/LinuxKernel.vala:1088 +#: src/Common/LinuxKernel.vala:466 src/Common/LinuxKernel.vala:995 +#: src/Common/LinuxKernel.vala:1086 msgid "is locked." msgstr "" @@ -78,115 +78,115 @@ msgstr "Εγκατεστημένος" msgid "Invalid" msgstr "Άκυρος" -#: src/Common/LinuxKernel.vala:758 +#: src/Common/LinuxKernel.vala:756 msgid "Packages Available" msgstr "Διαθέσιμα πακέτα" -#: src/Common/LinuxKernel.vala:764 +#: src/Common/LinuxKernel.vala:762 msgid "Packages Installed" msgstr "Εγκατεστημένα πακέτα" -#: src/Common/LinuxKernel.vala:789 src/lib/TeeJee.FileSystem.vala:94 +#: src/Common/LinuxKernel.vala:787 src/lib/TeeJee.FileSystem.vala:94 msgid "File not found" msgstr "Το αρχείο δε βρέθηκε" -#: src/Common/LinuxKernel.vala:883 +#: src/Common/LinuxKernel.vala:881 msgid "Available Kernels" msgstr "Διαθέσιμοι πυρήνες" -#: src/Common/LinuxKernel.vala:917 src/Gtk/MainWindow.vala:135 +#: src/Common/LinuxKernel.vala:915 src/Gtk/MainWindow.vala:135 msgid "Kernel" msgstr "Πυρήνας" -#: src/Common/LinuxKernel.vala:917 +#: src/Common/LinuxKernel.vala:915 #, fuzzy msgid "not found" msgstr "Το αρχείο δε βρέθηκε" -#: src/Common/LinuxKernel.vala:924 +#: src/Common/LinuxKernel.vala:922 #, fuzzy msgid "Download: no downloadable kernels specified" msgstr "Η εντολή δεν προσδιορίστηκε" -#: src/Common/LinuxKernel.vala:940 +#: src/Common/LinuxKernel.vala:938 msgid "enabled" msgstr "ενεργοποιημένη" -#: src/Common/LinuxKernel.vala:965 +#: src/Common/LinuxKernel.vala:963 msgid "Downloading" msgstr "Κατέβασμα" -#: src/Common/LinuxKernel.vala:983 +#: src/Common/LinuxKernel.vala:981 #, fuzzy msgid "Installing selected kernels" msgstr "Απεγκατάσταση επιλεγμένων πυρήνων" -#: src/Common/LinuxKernel.vala:989 src/Common/LinuxKernel.vala:1028 +#: src/Common/LinuxKernel.vala:987 src/Common/LinuxKernel.vala:1026 #, fuzzy msgid "Requested" msgstr "ζητήθηκε" -#: src/Common/LinuxKernel.vala:992 +#: src/Common/LinuxKernel.vala:990 msgid "is already installed." msgstr "είναι ήδη εγκατεστημένο." -#: src/Common/LinuxKernel.vala:1002 +#: src/Common/LinuxKernel.vala:1000 msgid "download failed." msgstr "" -#: src/Common/LinuxKernel.vala:1009 +#: src/Common/LinuxKernel.vala:1007 #, fuzzy msgid "Install: no installable kernels specified" msgstr "Η εντολή δεν προσδιορίστηκε" -#: src/Common/LinuxKernel.vala:1024 +#: src/Common/LinuxKernel.vala:1022 msgid "Uninstalling selected kernels" msgstr "Απεγκατάσταση επιλεγμένων πυρήνων" -#: src/Common/LinuxKernel.vala:1031 +#: src/Common/LinuxKernel.vala:1029 #, fuzzy msgid "Not uninstalling the currently running kernel" msgstr "δεν θα απεγκαταστήσει τον πυρήνα που εκτελείται αυτήν τη στιγμή" -#: src/Common/LinuxKernel.vala:1036 +#: src/Common/LinuxKernel.vala:1034 msgid "is locked" msgstr "" -#: src/Common/LinuxKernel.vala:1044 +#: src/Common/LinuxKernel.vala:1042 msgid "found" msgstr "ιδρύω" -#: src/Common/LinuxKernel.vala:1048 +#: src/Common/LinuxKernel.vala:1046 msgid "Uninstall: no uninstallable packages found" msgstr "" -#: src/Common/LinuxKernel.vala:1084 +#: src/Common/LinuxKernel.vala:1082 #, fuzzy msgid "is the highest installed version." msgstr "Απεγκαταστήστε όλες εκτός από την υψηλότερη εγκατεστημένη έκδοση" -#: src/Common/LinuxKernel.vala:1097 +#: src/Common/LinuxKernel.vala:1095 msgid "Could not find running kernel in list" msgstr "Δεν ήταν δυνατή η εύρεση του πυρήνα που εκτελείται αυτήν τη στιγμή" -#: src/Common/LinuxKernel.vala:1102 +#: src/Common/LinuxKernel.vala:1100 msgid "Could not find any kernels to uninstall" msgstr "Δεν βρέθηκε κανένας πυρήνας για απεγκατάσταση" -#: src/Common/LinuxKernel.vala:1107 +#: src/Common/LinuxKernel.vala:1105 msgid "The following kernels will be uninstalled" msgstr "Θα καταργηθεί η εγκατάσταση των ακόλουθων πυρήνων" -#: src/Common/LinuxKernel.vala:1109 +#: src/Common/LinuxKernel.vala:1107 msgid "Continue ?" msgstr "Συνέχεια;" -#: src/Common/LinuxKernel.vala:1125 +#: src/Common/LinuxKernel.vala:1123 #, fuzzy msgid "No updates" msgstr "Δεν βρέθηκαν ενημερώσεις" -#: src/Common/LinuxKernel.vala:1131 +#: src/Common/LinuxKernel.vala:1129 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Εγκατάσταση του πυρήνα έκδοσης %s ; (ν/ό):" diff --git a/po/es.po b/po/es.po index ab46298d..15865b12 100644 --- a/po/es.po +++ b/po/es.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-06 03:55-0400\n" +"POT-Creation-Date: 2023-06-06 04:33-0400\n" "PO-Revision-Date: 2018-01-03 02:03-0600\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish\n" @@ -61,8 +61,8 @@ msgstr "Encontrado instalado" msgid "locked" msgstr "" -#: src/Common/LinuxKernel.vala:466 src/Common/LinuxKernel.vala:997 -#: src/Common/LinuxKernel.vala:1088 +#: src/Common/LinuxKernel.vala:466 src/Common/LinuxKernel.vala:995 +#: src/Common/LinuxKernel.vala:1086 msgid "is locked." msgstr "" @@ -78,115 +78,115 @@ msgstr "Instalado" msgid "Invalid" msgstr "No válido" -#: src/Common/LinuxKernel.vala:758 +#: src/Common/LinuxKernel.vala:756 msgid "Packages Available" msgstr "Paquetes disponibles" -#: src/Common/LinuxKernel.vala:764 +#: src/Common/LinuxKernel.vala:762 msgid "Packages Installed" msgstr "Paquetes instalados" -#: src/Common/LinuxKernel.vala:789 src/lib/TeeJee.FileSystem.vala:94 +#: src/Common/LinuxKernel.vala:787 src/lib/TeeJee.FileSystem.vala:94 msgid "File not found" msgstr "No se encontró el archivo" -#: src/Common/LinuxKernel.vala:883 +#: src/Common/LinuxKernel.vala:881 msgid "Available Kernels" msgstr "Núcleos disponibles" -#: src/Common/LinuxKernel.vala:917 src/Gtk/MainWindow.vala:135 +#: src/Common/LinuxKernel.vala:915 src/Gtk/MainWindow.vala:135 msgid "Kernel" msgstr "Núcleo" -#: src/Common/LinuxKernel.vala:917 +#: src/Common/LinuxKernel.vala:915 #, fuzzy msgid "not found" msgstr "No se encontró el archivo" -#: src/Common/LinuxKernel.vala:924 +#: src/Common/LinuxKernel.vala:922 #, fuzzy msgid "Download: no downloadable kernels specified" msgstr "Coomand no especificado" -#: src/Common/LinuxKernel.vala:940 +#: src/Common/LinuxKernel.vala:938 msgid "enabled" msgstr "habilitado" -#: src/Common/LinuxKernel.vala:965 +#: src/Common/LinuxKernel.vala:963 msgid "Downloading" msgstr "Descargar" -#: src/Common/LinuxKernel.vala:983 +#: src/Common/LinuxKernel.vala:981 #, fuzzy msgid "Installing selected kernels" msgstr "Desinstalación de kernels seleccionados" -#: src/Common/LinuxKernel.vala:989 src/Common/LinuxKernel.vala:1028 +#: src/Common/LinuxKernel.vala:987 src/Common/LinuxKernel.vala:1026 #, fuzzy msgid "Requested" msgstr "solicitado" -#: src/Common/LinuxKernel.vala:992 +#: src/Common/LinuxKernel.vala:990 msgid "is already installed." msgstr "ya está instalado." -#: src/Common/LinuxKernel.vala:1002 +#: src/Common/LinuxKernel.vala:1000 msgid "download failed." msgstr "" -#: src/Common/LinuxKernel.vala:1009 +#: src/Common/LinuxKernel.vala:1007 #, fuzzy msgid "Install: no installable kernels specified" msgstr "Coomand no especificado" -#: src/Common/LinuxKernel.vala:1024 +#: src/Common/LinuxKernel.vala:1022 msgid "Uninstalling selected kernels" msgstr "Desinstalación de kernels seleccionados" -#: src/Common/LinuxKernel.vala:1031 +#: src/Common/LinuxKernel.vala:1029 #, fuzzy msgid "Not uninstalling the currently running kernel" msgstr "No desinstalará el kernel que se está ejecutando actualmente" -#: src/Common/LinuxKernel.vala:1036 +#: src/Common/LinuxKernel.vala:1034 msgid "is locked" msgstr "" -#: src/Common/LinuxKernel.vala:1044 +#: src/Common/LinuxKernel.vala:1042 msgid "found" msgstr "fundar" -#: src/Common/LinuxKernel.vala:1048 +#: src/Common/LinuxKernel.vala:1046 msgid "Uninstall: no uninstallable packages found" msgstr "" -#: src/Common/LinuxKernel.vala:1084 +#: src/Common/LinuxKernel.vala:1082 #, fuzzy msgid "is the highest installed version." msgstr "Desinstale todas las versiones instaladas excepto la más alta" -#: src/Common/LinuxKernel.vala:1097 +#: src/Common/LinuxKernel.vala:1095 msgid "Could not find running kernel in list" msgstr "No se pudo encontrar el kernel en ejecución en la lista" -#: src/Common/LinuxKernel.vala:1102 +#: src/Common/LinuxKernel.vala:1100 msgid "Could not find any kernels to uninstall" msgstr "No se pudo encontrar ningún kernel para desinstalar" -#: src/Common/LinuxKernel.vala:1107 +#: src/Common/LinuxKernel.vala:1105 msgid "The following kernels will be uninstalled" msgstr "Se desinstalarán los siguientes kernels" -#: src/Common/LinuxKernel.vala:1109 +#: src/Common/LinuxKernel.vala:1107 msgid "Continue ?" msgstr "¿Continuar?" -#: src/Common/LinuxKernel.vala:1125 +#: src/Common/LinuxKernel.vala:1123 #, fuzzy msgid "No updates" msgstr "No se encontró ninguna actualización" -#: src/Common/LinuxKernel.vala:1131 +#: src/Common/LinuxKernel.vala:1129 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Instalar la versión del kernel %s? (s/n): " diff --git a/po/fr.po b/po/fr.po index 144c83aa..0aea2659 100644 --- a/po/fr.po +++ b/po/fr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-06 03:55-0400\n" +"POT-Creation-Date: 2023-06-06 04:33-0400\n" "PO-Revision-Date: 2018-08-05 15:50+0200\n" "Last-Translator: Yolateng0 \n" "Language-Team: French\n" @@ -61,8 +61,8 @@ msgstr "Trouvé installé" msgid "locked" msgstr "" -#: src/Common/LinuxKernel.vala:466 src/Common/LinuxKernel.vala:997 -#: src/Common/LinuxKernel.vala:1088 +#: src/Common/LinuxKernel.vala:466 src/Common/LinuxKernel.vala:995 +#: src/Common/LinuxKernel.vala:1086 msgid "is locked." msgstr "" @@ -78,115 +78,115 @@ msgstr "Installé" msgid "Invalid" msgstr "No válido" -#: src/Common/LinuxKernel.vala:758 +#: src/Common/LinuxKernel.vala:756 msgid "Packages Available" msgstr "Paquets Disponibles" -#: src/Common/LinuxKernel.vala:764 +#: src/Common/LinuxKernel.vala:762 msgid "Packages Installed" msgstr "Paquets Installés" -#: src/Common/LinuxKernel.vala:789 src/lib/TeeJee.FileSystem.vala:94 +#: src/Common/LinuxKernel.vala:787 src/lib/TeeJee.FileSystem.vala:94 msgid "File not found" msgstr "Fichier non trouvé" -#: src/Common/LinuxKernel.vala:883 +#: src/Common/LinuxKernel.vala:881 msgid "Available Kernels" msgstr "Noyaux Disponibles" -#: src/Common/LinuxKernel.vala:917 src/Gtk/MainWindow.vala:135 +#: src/Common/LinuxKernel.vala:915 src/Gtk/MainWindow.vala:135 msgid "Kernel" msgstr "Noyau" -#: src/Common/LinuxKernel.vala:917 +#: src/Common/LinuxKernel.vala:915 #, fuzzy msgid "not found" msgstr "Fichier non trouvé" -#: src/Common/LinuxKernel.vala:924 +#: src/Common/LinuxKernel.vala:922 #, fuzzy msgid "Download: no downloadable kernels specified" msgstr "Pas de commande fournie" -#: src/Common/LinuxKernel.vala:940 +#: src/Common/LinuxKernel.vala:938 msgid "enabled" msgstr "activé" -#: src/Common/LinuxKernel.vala:965 +#: src/Common/LinuxKernel.vala:963 msgid "Downloading" msgstr "Téléchargement" -#: src/Common/LinuxKernel.vala:983 +#: src/Common/LinuxKernel.vala:981 #, fuzzy msgid "Installing selected kernels" msgstr "Désinstallation des noyaux sélectionnés" -#: src/Common/LinuxKernel.vala:989 src/Common/LinuxKernel.vala:1028 +#: src/Common/LinuxKernel.vala:987 src/Common/LinuxKernel.vala:1026 #, fuzzy msgid "Requested" msgstr "Demandé" -#: src/Common/LinuxKernel.vala:992 +#: src/Common/LinuxKernel.vala:990 msgid "is already installed." msgstr "est déjà installé." -#: src/Common/LinuxKernel.vala:1002 +#: src/Common/LinuxKernel.vala:1000 msgid "download failed." msgstr "" -#: src/Common/LinuxKernel.vala:1009 +#: src/Common/LinuxKernel.vala:1007 #, fuzzy msgid "Install: no installable kernels specified" msgstr "Pas de commande fournie" -#: src/Common/LinuxKernel.vala:1024 +#: src/Common/LinuxKernel.vala:1022 msgid "Uninstalling selected kernels" msgstr "Désinstallation des noyaux sélectionnés" -#: src/Common/LinuxKernel.vala:1031 +#: src/Common/LinuxKernel.vala:1029 #, fuzzy msgid "Not uninstalling the currently running kernel" msgstr "Ne pas désinstaller le noyau en cours d'exécution" -#: src/Common/LinuxKernel.vala:1036 +#: src/Common/LinuxKernel.vala:1034 msgid "is locked" msgstr "" -#: src/Common/LinuxKernel.vala:1044 +#: src/Common/LinuxKernel.vala:1042 msgid "found" msgstr "fonder" -#: src/Common/LinuxKernel.vala:1048 +#: src/Common/LinuxKernel.vala:1046 msgid "Uninstall: no uninstallable packages found" msgstr "" -#: src/Common/LinuxKernel.vala:1084 +#: src/Common/LinuxKernel.vala:1082 #, fuzzy msgid "is the highest installed version." msgstr "Désinstallez toutes le version installées, sauf la plus élevée" -#: src/Common/LinuxKernel.vala:1097 +#: src/Common/LinuxKernel.vala:1095 msgid "Could not find running kernel in list" msgstr "Impossible de trouver le noyau en cours d'exécution dans la liste" -#: src/Common/LinuxKernel.vala:1102 +#: src/Common/LinuxKernel.vala:1100 msgid "Could not find any kernels to uninstall" msgstr "Impossible de trouver des noyaux à désinstaller" -#: src/Common/LinuxKernel.vala:1107 +#: src/Common/LinuxKernel.vala:1105 msgid "The following kernels will be uninstalled" msgstr "Les noyaux suivants seront désinstallés" -#: src/Common/LinuxKernel.vala:1109 +#: src/Common/LinuxKernel.vala:1107 msgid "Continue ?" msgstr "Reprendre ?" -#: src/Common/LinuxKernel.vala:1125 +#: src/Common/LinuxKernel.vala:1123 #, fuzzy msgid "No updates" msgstr "Aucune mise à jour disponible" -#: src/Common/LinuxKernel.vala:1131 +#: src/Common/LinuxKernel.vala:1129 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Installer le noyau en version %s ? (y/n): " diff --git a/po/hr.po b/po/hr.po index 991c3a90..10f0de49 100644 --- a/po/hr.po +++ b/po/hr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-06 03:55-0400\n" +"POT-Creation-Date: 2023-06-06 04:33-0400\n" "PO-Revision-Date: 2022-09-22 12:13+0200\n" "Last-Translator: gogo \n" "Language-Team: Croatian\n" @@ -61,8 +61,8 @@ msgstr "Pronađeno instalirano" msgid "locked" msgstr "" -#: src/Common/LinuxKernel.vala:466 src/Common/LinuxKernel.vala:997 -#: src/Common/LinuxKernel.vala:1088 +#: src/Common/LinuxKernel.vala:466 src/Common/LinuxKernel.vala:995 +#: src/Common/LinuxKernel.vala:1086 msgid "is locked." msgstr "" @@ -78,115 +78,115 @@ msgstr "Instalirano" msgid "Invalid" msgstr "Érvénytelen" -#: src/Common/LinuxKernel.vala:758 +#: src/Common/LinuxKernel.vala:756 msgid "Packages Available" msgstr "Dostupni Paketi" -#: src/Common/LinuxKernel.vala:764 +#: src/Common/LinuxKernel.vala:762 msgid "Packages Installed" msgstr "Instalirani paketi" -#: src/Common/LinuxKernel.vala:789 src/lib/TeeJee.FileSystem.vala:94 +#: src/Common/LinuxKernel.vala:787 src/lib/TeeJee.FileSystem.vala:94 msgid "File not found" msgstr "Datoteka nije pronađena" -#: src/Common/LinuxKernel.vala:883 +#: src/Common/LinuxKernel.vala:881 msgid "Available Kernels" msgstr "Dostupni kerneli" -#: src/Common/LinuxKernel.vala:917 src/Gtk/MainWindow.vala:135 +#: src/Common/LinuxKernel.vala:915 src/Gtk/MainWindow.vala:135 msgid "Kernel" msgstr "Kernel" -#: src/Common/LinuxKernel.vala:917 +#: src/Common/LinuxKernel.vala:915 #, fuzzy msgid "not found" msgstr "Datoteka nije pronađena" -#: src/Common/LinuxKernel.vala:924 +#: src/Common/LinuxKernel.vala:922 #, fuzzy msgid "Download: no downloadable kernels specified" msgstr "Naredba nije navedena" -#: src/Common/LinuxKernel.vala:940 +#: src/Common/LinuxKernel.vala:938 msgid "enabled" msgstr "omogućen" -#: src/Common/LinuxKernel.vala:965 +#: src/Common/LinuxKernel.vala:963 msgid "Downloading" msgstr "Učitavanje" -#: src/Common/LinuxKernel.vala:983 +#: src/Common/LinuxKernel.vala:981 #, fuzzy msgid "Installing selected kernels" msgstr "Deinstaliraj određene kernele" -#: src/Common/LinuxKernel.vala:989 src/Common/LinuxKernel.vala:1028 +#: src/Common/LinuxKernel.vala:987 src/Common/LinuxKernel.vala:1026 #, fuzzy msgid "Requested" msgstr "Zatražio" -#: src/Common/LinuxKernel.vala:992 +#: src/Common/LinuxKernel.vala:990 msgid "is already installed." msgstr "je već instaliran." -#: src/Common/LinuxKernel.vala:1002 +#: src/Common/LinuxKernel.vala:1000 msgid "download failed." msgstr "" -#: src/Common/LinuxKernel.vala:1009 +#: src/Common/LinuxKernel.vala:1007 #, fuzzy msgid "Install: no installable kernels specified" msgstr "Naredba nije navedena" -#: src/Common/LinuxKernel.vala:1024 +#: src/Common/LinuxKernel.vala:1022 msgid "Uninstalling selected kernels" msgstr "Deinstaliraj određene kernele" -#: src/Common/LinuxKernel.vala:1031 +#: src/Common/LinuxKernel.vala:1029 #, fuzzy msgid "Not uninstalling the currently running kernel" msgstr "ne deinstaliranje trenutno pokrenute kernel" -#: src/Common/LinuxKernel.vala:1036 +#: src/Common/LinuxKernel.vala:1034 msgid "is locked" msgstr "" -#: src/Common/LinuxKernel.vala:1044 +#: src/Common/LinuxKernel.vala:1042 msgid "found" msgstr "pronađen" -#: src/Common/LinuxKernel.vala:1048 +#: src/Common/LinuxKernel.vala:1046 msgid "Uninstall: no uninstallable packages found" msgstr "" -#: src/Common/LinuxKernel.vala:1084 +#: src/Common/LinuxKernel.vala:1082 #, fuzzy msgid "is the highest installed version." msgstr "Deinstaliraj sve osim najnovije instalirane verzije" -#: src/Common/LinuxKernel.vala:1097 +#: src/Common/LinuxKernel.vala:1095 msgid "Could not find running kernel in list" msgstr "Nije moguće pronaći pokrenutu kernel na popisu" -#: src/Common/LinuxKernel.vala:1102 +#: src/Common/LinuxKernel.vala:1100 msgid "Could not find any kernels to uninstall" msgstr "Nema pronađenih kernela za deinstaliranje" -#: src/Common/LinuxKernel.vala:1107 +#: src/Common/LinuxKernel.vala:1105 msgid "The following kernels will be uninstalled" msgstr "Deinstalirat će se sljedeće kerneli" -#: src/Common/LinuxKernel.vala:1109 +#: src/Common/LinuxKernel.vala:1107 msgid "Continue ?" msgstr "Nastavi?" -#: src/Common/LinuxKernel.vala:1125 +#: src/Common/LinuxKernel.vala:1123 #, fuzzy msgid "No updates" msgstr "Nema pronađenih nadopuna" -#: src/Common/LinuxKernel.vala:1131 +#: src/Common/LinuxKernel.vala:1129 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Instaliraj kernel inačice %s ? (d/n): " diff --git a/po/it.po b/po/it.po index 6b371d69..87c031e5 100644 --- a/po/it.po +++ b/po/it.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-06 03:55-0400\n" +"POT-Creation-Date: 2023-06-06 04:33-0400\n" "PO-Revision-Date: 2020-08-22 15:35+0100\n" "Last-Translator: Demetrio Mendozzi\n" "Language-Team: Italian\n" @@ -59,8 +59,8 @@ msgstr "Trovato installato" msgid "locked" msgstr "" -#: src/Common/LinuxKernel.vala:466 src/Common/LinuxKernel.vala:997 -#: src/Common/LinuxKernel.vala:1088 +#: src/Common/LinuxKernel.vala:466 src/Common/LinuxKernel.vala:995 +#: src/Common/LinuxKernel.vala:1086 msgid "is locked." msgstr "" @@ -76,115 +76,115 @@ msgstr "Installato" msgid "Invalid" msgstr "Non valido" -#: src/Common/LinuxKernel.vala:758 +#: src/Common/LinuxKernel.vala:756 msgid "Packages Available" msgstr "Pacchetti disponibili" -#: src/Common/LinuxKernel.vala:764 +#: src/Common/LinuxKernel.vala:762 msgid "Packages Installed" msgstr "Pacchetti installati" -#: src/Common/LinuxKernel.vala:789 src/lib/TeeJee.FileSystem.vala:94 +#: src/Common/LinuxKernel.vala:787 src/lib/TeeJee.FileSystem.vala:94 msgid "File not found" msgstr "File non trovato" -#: src/Common/LinuxKernel.vala:883 +#: src/Common/LinuxKernel.vala:881 msgid "Available Kernels" msgstr "Kernel disponibili" -#: src/Common/LinuxKernel.vala:917 src/Gtk/MainWindow.vala:135 +#: src/Common/LinuxKernel.vala:915 src/Gtk/MainWindow.vala:135 msgid "Kernel" msgstr "Kernel" -#: src/Common/LinuxKernel.vala:917 +#: src/Common/LinuxKernel.vala:915 #, fuzzy msgid "not found" msgstr "File non trovato" -#: src/Common/LinuxKernel.vala:924 +#: src/Common/LinuxKernel.vala:922 #, fuzzy msgid "Download: no downloadable kernels specified" msgstr "Comando non specificato" -#: src/Common/LinuxKernel.vala:940 +#: src/Common/LinuxKernel.vala:938 msgid "enabled" msgstr "abilitato" -#: src/Common/LinuxKernel.vala:965 +#: src/Common/LinuxKernel.vala:963 msgid "Downloading" msgstr "Scaricamento" -#: src/Common/LinuxKernel.vala:983 +#: src/Common/LinuxKernel.vala:981 #, fuzzy msgid "Installing selected kernels" msgstr "Disinstalla i kernel specificati" -#: src/Common/LinuxKernel.vala:989 src/Common/LinuxKernel.vala:1028 +#: src/Common/LinuxKernel.vala:987 src/Common/LinuxKernel.vala:1026 #, fuzzy msgid "Requested" msgstr "richiesto" -#: src/Common/LinuxKernel.vala:992 +#: src/Common/LinuxKernel.vala:990 msgid "is already installed." msgstr "è già installato." -#: src/Common/LinuxKernel.vala:1002 +#: src/Common/LinuxKernel.vala:1000 msgid "download failed." msgstr "" -#: src/Common/LinuxKernel.vala:1009 +#: src/Common/LinuxKernel.vala:1007 #, fuzzy msgid "Install: no installable kernels specified" msgstr "Comando non specificato" -#: src/Common/LinuxKernel.vala:1024 +#: src/Common/LinuxKernel.vala:1022 msgid "Uninstalling selected kernels" msgstr "Disinstalla i kernel specificati" -#: src/Common/LinuxKernel.vala:1031 +#: src/Common/LinuxKernel.vala:1029 #, fuzzy msgid "Not uninstalling the currently running kernel" msgstr "non disinstallare il kernel attualmente in esecuzione" -#: src/Common/LinuxKernel.vala:1036 +#: src/Common/LinuxKernel.vala:1034 msgid "is locked" msgstr "" -#: src/Common/LinuxKernel.vala:1044 +#: src/Common/LinuxKernel.vala:1042 msgid "found" msgstr "trovato" -#: src/Common/LinuxKernel.vala:1048 +#: src/Common/LinuxKernel.vala:1046 msgid "Uninstall: no uninstallable packages found" msgstr "" -#: src/Common/LinuxKernel.vala:1084 +#: src/Common/LinuxKernel.vala:1082 #, fuzzy msgid "is the highest installed version." msgstr "Disinstallare tutti tranne la versione più recente installata" -#: src/Common/LinuxKernel.vala:1097 +#: src/Common/LinuxKernel.vala:1095 msgid "Could not find running kernel in list" msgstr "Impossibile trovare il kernel in esecuzione nell'elenco" -#: src/Common/LinuxKernel.vala:1102 +#: src/Common/LinuxKernel.vala:1100 msgid "Could not find any kernels to uninstall" msgstr "Impossibile trovare alcun kernel da rimuovere" -#: src/Common/LinuxKernel.vala:1107 +#: src/Common/LinuxKernel.vala:1105 msgid "The following kernels will be uninstalled" msgstr "I seguenti kernel saranno rimossi" -#: src/Common/LinuxKernel.vala:1109 +#: src/Common/LinuxKernel.vala:1107 msgid "Continue ?" msgstr "Continuare ?" -#: src/Common/LinuxKernel.vala:1125 +#: src/Common/LinuxKernel.vala:1123 #, fuzzy msgid "No updates" msgstr "Nessun aggiornamento trovato" -#: src/Common/LinuxKernel.vala:1131 +#: src/Common/LinuxKernel.vala:1129 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Installare la versione del kernel %s ? (y/n): " diff --git a/po/ko.po b/po/ko.po index fff5a5d0..aba3383a 100644 --- a/po/ko.po +++ b/po/ko.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-06 03:55-0400\n" +"POT-Creation-Date: 2023-06-06 04:33-0400\n" "PO-Revision-Date: 2022-09-28 11:48+0900\n" "Last-Translator: Kevin Kim \n" "Language-Team: Korean\n" @@ -61,8 +61,8 @@ msgstr "설치된 것을 찾았습니다" msgid "locked" msgstr "" -#: src/Common/LinuxKernel.vala:466 src/Common/LinuxKernel.vala:997 -#: src/Common/LinuxKernel.vala:1088 +#: src/Common/LinuxKernel.vala:466 src/Common/LinuxKernel.vala:995 +#: src/Common/LinuxKernel.vala:1086 msgid "is locked." msgstr "" @@ -78,115 +78,115 @@ msgstr "설치 됨" msgid "Invalid" msgstr "사용할 수 없음" -#: src/Common/LinuxKernel.vala:758 +#: src/Common/LinuxKernel.vala:756 msgid "Packages Available" msgstr "설치 가능한 패키지" -#: src/Common/LinuxKernel.vala:764 +#: src/Common/LinuxKernel.vala:762 msgid "Packages Installed" msgstr "설치된 패키지" -#: src/Common/LinuxKernel.vala:789 src/lib/TeeJee.FileSystem.vala:94 +#: src/Common/LinuxKernel.vala:787 src/lib/TeeJee.FileSystem.vala:94 msgid "File not found" msgstr "파일을 찾을 수 없습니다" -#: src/Common/LinuxKernel.vala:883 +#: src/Common/LinuxKernel.vala:881 msgid "Available Kernels" msgstr "설치 가능한 커널" -#: src/Common/LinuxKernel.vala:917 src/Gtk/MainWindow.vala:135 +#: src/Common/LinuxKernel.vala:915 src/Gtk/MainWindow.vala:135 msgid "Kernel" msgstr "커널" -#: src/Common/LinuxKernel.vala:917 +#: src/Common/LinuxKernel.vala:915 #, fuzzy msgid "not found" msgstr "파일을 찾을 수 없습니다" -#: src/Common/LinuxKernel.vala:924 +#: src/Common/LinuxKernel.vala:922 #, fuzzy msgid "Download: no downloadable kernels specified" msgstr "지정한 명령어가 없습니다" -#: src/Common/LinuxKernel.vala:940 +#: src/Common/LinuxKernel.vala:938 msgid "enabled" msgstr "사용" -#: src/Common/LinuxKernel.vala:965 +#: src/Common/LinuxKernel.vala:963 msgid "Downloading" msgstr "다운로드" -#: src/Common/LinuxKernel.vala:983 +#: src/Common/LinuxKernel.vala:981 #, fuzzy msgid "Installing selected kernels" msgstr "선택한 커널 제거" -#: src/Common/LinuxKernel.vala:989 src/Common/LinuxKernel.vala:1028 +#: src/Common/LinuxKernel.vala:987 src/Common/LinuxKernel.vala:1026 #, fuzzy msgid "Requested" msgstr "요청" -#: src/Common/LinuxKernel.vala:992 +#: src/Common/LinuxKernel.vala:990 msgid "is already installed." msgstr "가 이미 설치되어 있습니다" -#: src/Common/LinuxKernel.vala:1002 +#: src/Common/LinuxKernel.vala:1000 msgid "download failed." msgstr "" -#: src/Common/LinuxKernel.vala:1009 +#: src/Common/LinuxKernel.vala:1007 #, fuzzy msgid "Install: no installable kernels specified" msgstr "지정한 명령어가 없습니다" -#: src/Common/LinuxKernel.vala:1024 +#: src/Common/LinuxKernel.vala:1022 msgid "Uninstalling selected kernels" msgstr "선택한 커널 제거" -#: src/Common/LinuxKernel.vala:1031 +#: src/Common/LinuxKernel.vala:1029 #, fuzzy msgid "Not uninstalling the currently running kernel" msgstr "현재 실행 중인 커널을 제거하지 않음" -#: src/Common/LinuxKernel.vala:1036 +#: src/Common/LinuxKernel.vala:1034 msgid "is locked" msgstr "" -#: src/Common/LinuxKernel.vala:1044 +#: src/Common/LinuxKernel.vala:1042 msgid "found" msgstr "설립하다" -#: src/Common/LinuxKernel.vala:1048 +#: src/Common/LinuxKernel.vala:1046 msgid "Uninstall: no uninstallable packages found" msgstr "" -#: src/Common/LinuxKernel.vala:1084 +#: src/Common/LinuxKernel.vala:1082 #, fuzzy msgid "is the highest installed version." msgstr "설치된 가장 높은 버전을 제외한 모든 버전을 제거합니다" -#: src/Common/LinuxKernel.vala:1097 +#: src/Common/LinuxKernel.vala:1095 msgid "Could not find running kernel in list" msgstr "현재 실행 중인 커널을 찾을 수 없습니다" -#: src/Common/LinuxKernel.vala:1102 +#: src/Common/LinuxKernel.vala:1100 msgid "Could not find any kernels to uninstall" msgstr "삭제할 커널을 찾을 수 없습니다" -#: src/Common/LinuxKernel.vala:1107 +#: src/Common/LinuxKernel.vala:1105 msgid "The following kernels will be uninstalled" msgstr "풀이" -#: src/Common/LinuxKernel.vala:1109 +#: src/Common/LinuxKernel.vala:1107 msgid "Continue ?" msgstr "계속하시겠습니까?" -#: src/Common/LinuxKernel.vala:1125 +#: src/Common/LinuxKernel.vala:1123 #, fuzzy msgid "No updates" msgstr "업데이트를 찾을 수 없습니다" -#: src/Common/LinuxKernel.vala:1131 +#: src/Common/LinuxKernel.vala:1129 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "커널 %s 버전을 설치하시겠습니까? (y/n): " diff --git a/po/messages.pot b/po/messages.pot index 76c83da0..046e8b74 100644 --- a/po/messages.pot +++ b/po/messages.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline 1.3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-06 03:59-0400\n" +"POT-Creation-Date: 2023-06-06 04:33-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -65,8 +65,8 @@ msgstr "" msgid "locked" msgstr "" -#: src/Common/LinuxKernel.vala:466 src/Common/LinuxKernel.vala:997 -#: src/Common/LinuxKernel.vala:1088 +#: src/Common/LinuxKernel.vala:466 src/Common/LinuxKernel.vala:995 +#: src/Common/LinuxKernel.vala:1086 msgid "is locked." msgstr "" @@ -82,107 +82,107 @@ msgstr "" msgid "Invalid" msgstr "" -#: src/Common/LinuxKernel.vala:758 +#: src/Common/LinuxKernel.vala:756 msgid "Packages Available" msgstr "" -#: src/Common/LinuxKernel.vala:764 +#: src/Common/LinuxKernel.vala:762 msgid "Packages Installed" msgstr "" -#: src/Common/LinuxKernel.vala:789 src/lib/TeeJee.FileSystem.vala:94 +#: src/Common/LinuxKernel.vala:787 src/lib/TeeJee.FileSystem.vala:94 msgid "File not found" msgstr "" -#: src/Common/LinuxKernel.vala:883 +#: src/Common/LinuxKernel.vala:881 msgid "Available Kernels" msgstr "" -#: src/Common/LinuxKernel.vala:917 src/Gtk/MainWindow.vala:135 +#: src/Common/LinuxKernel.vala:915 src/Gtk/MainWindow.vala:135 msgid "Kernel" msgstr "" -#: src/Common/LinuxKernel.vala:917 +#: src/Common/LinuxKernel.vala:915 msgid "not found" msgstr "" -#: src/Common/LinuxKernel.vala:924 +#: src/Common/LinuxKernel.vala:922 msgid "Download: no downloadable kernels specified" msgstr "" -#: src/Common/LinuxKernel.vala:940 +#: src/Common/LinuxKernel.vala:938 msgid "enabled" msgstr "" -#: src/Common/LinuxKernel.vala:965 +#: src/Common/LinuxKernel.vala:963 msgid "Downloading" msgstr "" -#: src/Common/LinuxKernel.vala:983 +#: src/Common/LinuxKernel.vala:981 msgid "Installing selected kernels" msgstr "" -#: src/Common/LinuxKernel.vala:989 src/Common/LinuxKernel.vala:1028 +#: src/Common/LinuxKernel.vala:987 src/Common/LinuxKernel.vala:1026 msgid "Requested" msgstr "" -#: src/Common/LinuxKernel.vala:992 +#: src/Common/LinuxKernel.vala:990 msgid "is already installed." msgstr "" -#: src/Common/LinuxKernel.vala:1002 +#: src/Common/LinuxKernel.vala:1000 msgid "download failed." msgstr "" -#: src/Common/LinuxKernel.vala:1009 +#: src/Common/LinuxKernel.vala:1007 msgid "Install: no installable kernels specified" msgstr "" -#: src/Common/LinuxKernel.vala:1024 +#: src/Common/LinuxKernel.vala:1022 msgid "Uninstalling selected kernels" msgstr "" -#: src/Common/LinuxKernel.vala:1031 +#: src/Common/LinuxKernel.vala:1029 msgid "Not uninstalling the currently running kernel" msgstr "" -#: src/Common/LinuxKernel.vala:1036 +#: src/Common/LinuxKernel.vala:1034 msgid "is locked" msgstr "" -#: src/Common/LinuxKernel.vala:1044 +#: src/Common/LinuxKernel.vala:1042 msgid "found" msgstr "" -#: src/Common/LinuxKernel.vala:1048 +#: src/Common/LinuxKernel.vala:1046 msgid "Uninstall: no uninstallable packages found" msgstr "" -#: src/Common/LinuxKernel.vala:1084 +#: src/Common/LinuxKernel.vala:1082 msgid "is the highest installed version." msgstr "" -#: src/Common/LinuxKernel.vala:1097 +#: src/Common/LinuxKernel.vala:1095 msgid "Could not find running kernel in list" msgstr "" -#: src/Common/LinuxKernel.vala:1102 +#: src/Common/LinuxKernel.vala:1100 msgid "Could not find any kernels to uninstall" msgstr "" -#: src/Common/LinuxKernel.vala:1107 +#: src/Common/LinuxKernel.vala:1105 msgid "The following kernels will be uninstalled" msgstr "" -#: src/Common/LinuxKernel.vala:1109 +#: src/Common/LinuxKernel.vala:1107 msgid "Continue ?" msgstr "" -#: src/Common/LinuxKernel.vala:1125 +#: src/Common/LinuxKernel.vala:1123 msgid "No updates" msgstr "" -#: src/Common/LinuxKernel.vala:1131 +#: src/Common/LinuxKernel.vala:1129 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "" diff --git a/po/nl.po b/po/nl.po index 36bf7afa..972f12f1 100644 --- a/po/nl.po +++ b/po/nl.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-06 03:55-0400\n" +"POT-Creation-Date: 2023-06-06 04:33-0400\n" "PO-Revision-Date: 2020-08-23 13:55+0200\n" "Last-Translator: Heimen Stoffels \n" "Language-Team: Dutch (Netherlands)\n" @@ -61,8 +61,8 @@ msgstr "Geïnstalleerd gevonden" msgid "locked" msgstr "" -#: src/Common/LinuxKernel.vala:466 src/Common/LinuxKernel.vala:997 -#: src/Common/LinuxKernel.vala:1088 +#: src/Common/LinuxKernel.vala:466 src/Common/LinuxKernel.vala:995 +#: src/Common/LinuxKernel.vala:1086 msgid "is locked." msgstr "" @@ -78,115 +78,115 @@ msgstr "Geïnstalleerd" msgid "Invalid" msgstr "Ongeldig" -#: src/Common/LinuxKernel.vala:758 +#: src/Common/LinuxKernel.vala:756 msgid "Packages Available" msgstr "Beschikbare pakketten" -#: src/Common/LinuxKernel.vala:764 +#: src/Common/LinuxKernel.vala:762 msgid "Packages Installed" msgstr "Geïnstalleerde pakketten" -#: src/Common/LinuxKernel.vala:789 src/lib/TeeJee.FileSystem.vala:94 +#: src/Common/LinuxKernel.vala:787 src/lib/TeeJee.FileSystem.vala:94 msgid "File not found" msgstr "Het bestand is niet gevonden" -#: src/Common/LinuxKernel.vala:883 +#: src/Common/LinuxKernel.vala:881 msgid "Available Kernels" msgstr "Beschikbare kernels" -#: src/Common/LinuxKernel.vala:917 src/Gtk/MainWindow.vala:135 +#: src/Common/LinuxKernel.vala:915 src/Gtk/MainWindow.vala:135 msgid "Kernel" msgstr "Kernel" -#: src/Common/LinuxKernel.vala:917 +#: src/Common/LinuxKernel.vala:915 #, fuzzy msgid "not found" msgstr "Het bestand is niet gevonden" -#: src/Common/LinuxKernel.vala:924 +#: src/Common/LinuxKernel.vala:922 #, fuzzy msgid "Download: no downloadable kernels specified" msgstr "Geen opdracht opgegeven" -#: src/Common/LinuxKernel.vala:940 +#: src/Common/LinuxKernel.vala:938 msgid "enabled" msgstr "ingeschakeld" -#: src/Common/LinuxKernel.vala:965 +#: src/Common/LinuxKernel.vala:963 msgid "Downloading" msgstr "Downloaden" -#: src/Common/LinuxKernel.vala:983 +#: src/Common/LinuxKernel.vala:981 #, fuzzy msgid "Installing selected kernels" msgstr "Geselecteerde kernels verwijderen" -#: src/Common/LinuxKernel.vala:989 src/Common/LinuxKernel.vala:1028 +#: src/Common/LinuxKernel.vala:987 src/Common/LinuxKernel.vala:1026 #, fuzzy msgid "Requested" msgstr "verzocht" -#: src/Common/LinuxKernel.vala:992 +#: src/Common/LinuxKernel.vala:990 msgid "is already installed." msgstr "is al geïnstalleerd." -#: src/Common/LinuxKernel.vala:1002 +#: src/Common/LinuxKernel.vala:1000 msgid "download failed." msgstr "" -#: src/Common/LinuxKernel.vala:1009 +#: src/Common/LinuxKernel.vala:1007 #, fuzzy msgid "Install: no installable kernels specified" msgstr "Geen opdracht opgegeven" -#: src/Common/LinuxKernel.vala:1024 +#: src/Common/LinuxKernel.vala:1022 msgid "Uninstalling selected kernels" msgstr "Geselecteerde kernels verwijderen" -#: src/Common/LinuxKernel.vala:1031 +#: src/Common/LinuxKernel.vala:1029 #, fuzzy msgid "Not uninstalling the currently running kernel" msgstr "de momenteel actieve kernel niet verwijderen" -#: src/Common/LinuxKernel.vala:1036 +#: src/Common/LinuxKernel.vala:1034 msgid "is locked" msgstr "" -#: src/Common/LinuxKernel.vala:1044 +#: src/Common/LinuxKernel.vala:1042 msgid "found" msgstr "gevonden" -#: src/Common/LinuxKernel.vala:1048 +#: src/Common/LinuxKernel.vala:1046 msgid "Uninstall: no uninstallable packages found" msgstr "" -#: src/Common/LinuxKernel.vala:1084 +#: src/Common/LinuxKernel.vala:1082 #, fuzzy msgid "is the highest installed version." msgstr "Verwijder alle behalve de hoogst geïnstalleerde versie" -#: src/Common/LinuxKernel.vala:1097 +#: src/Common/LinuxKernel.vala:1095 msgid "Could not find running kernel in list" msgstr "De in gebruik zijnde kernel staat niet op de lijst" -#: src/Common/LinuxKernel.vala:1102 +#: src/Common/LinuxKernel.vala:1100 msgid "Could not find any kernels to uninstall" msgstr "Er zijn geen te verwijderen kernels" -#: src/Common/LinuxKernel.vala:1107 +#: src/Common/LinuxKernel.vala:1105 msgid "The following kernels will be uninstalled" msgstr "De volgende kernels worden verwijderd" -#: src/Common/LinuxKernel.vala:1109 +#: src/Common/LinuxKernel.vala:1107 msgid "Continue ?" msgstr "Wilt u doorgaan?" -#: src/Common/LinuxKernel.vala:1125 +#: src/Common/LinuxKernel.vala:1123 #, fuzzy msgid "No updates" msgstr "Geen updates gevonden" -#: src/Common/LinuxKernel.vala:1131 +#: src/Common/LinuxKernel.vala:1129 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Wilt u versie %s installeren? (j/n): " diff --git a/po/pl.po b/po/pl.po index 0007bfdf..9171045d 100644 --- a/po/pl.po +++ b/po/pl.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-06 03:55-0400\n" +"POT-Creation-Date: 2023-06-06 04:33-0400\n" "PO-Revision-Date: 2023-06-03 14:24+0200\n" "Last-Translator: Matthaiks\n" "Language-Team: Polish\n" @@ -60,8 +60,8 @@ msgstr "Znaleziono zainstalowane" msgid "locked" msgstr "zablokowane" -#: src/Common/LinuxKernel.vala:466 src/Common/LinuxKernel.vala:997 -#: src/Common/LinuxKernel.vala:1088 +#: src/Common/LinuxKernel.vala:466 src/Common/LinuxKernel.vala:995 +#: src/Common/LinuxKernel.vala:1086 msgid "is locked." msgstr "jest zablokowane." @@ -77,109 +77,109 @@ msgstr "Zainstalowane" msgid "Invalid" msgstr "Nieprawidłowe" -#: src/Common/LinuxKernel.vala:758 +#: src/Common/LinuxKernel.vala:756 msgid "Packages Available" msgstr "Dostępne pakiety" -#: src/Common/LinuxKernel.vala:764 +#: src/Common/LinuxKernel.vala:762 msgid "Packages Installed" msgstr "Pakiety zainstalowane" -#: src/Common/LinuxKernel.vala:789 src/lib/TeeJee.FileSystem.vala:94 +#: src/Common/LinuxKernel.vala:787 src/lib/TeeJee.FileSystem.vala:94 msgid "File not found" msgstr "Nie odnaleziono pliku" -#: src/Common/LinuxKernel.vala:883 +#: src/Common/LinuxKernel.vala:881 msgid "Available Kernels" msgstr "Dostępne jądra" -#: src/Common/LinuxKernel.vala:917 src/Gtk/MainWindow.vala:135 +#: src/Common/LinuxKernel.vala:915 src/Gtk/MainWindow.vala:135 msgid "Kernel" msgstr "Jądro" -#: src/Common/LinuxKernel.vala:917 +#: src/Common/LinuxKernel.vala:915 msgid "not found" msgstr "nie odnaleziono" -#: src/Common/LinuxKernel.vala:924 +#: src/Common/LinuxKernel.vala:922 msgid "Download: no downloadable kernels specified" msgstr "Pobieranie: nie określono jąder do pobrania" -#: src/Common/LinuxKernel.vala:940 +#: src/Common/LinuxKernel.vala:938 msgid "enabled" msgstr "włączone" -#: src/Common/LinuxKernel.vala:965 +#: src/Common/LinuxKernel.vala:963 msgid "Downloading" msgstr "Pobieranie" -#: src/Common/LinuxKernel.vala:983 +#: src/Common/LinuxKernel.vala:981 msgid "Installing selected kernels" msgstr "Instalowanie wybranych jąder" -#: src/Common/LinuxKernel.vala:989 src/Common/LinuxKernel.vala:1028 +#: src/Common/LinuxKernel.vala:987 src/Common/LinuxKernel.vala:1026 msgid "Requested" msgstr "Zażądane" -#: src/Common/LinuxKernel.vala:992 +#: src/Common/LinuxKernel.vala:990 msgid "is already installed." msgstr "jest już zainstalowane." -#: src/Common/LinuxKernel.vala:1002 +#: src/Common/LinuxKernel.vala:1000 msgid "download failed." msgstr "pobieranie nie powiodło się." -#: src/Common/LinuxKernel.vala:1009 +#: src/Common/LinuxKernel.vala:1007 #, fuzzy msgid "Install: no installable kernels specified" msgstr "Instalowanie: nie określono jąder do zainstalowania" -#: src/Common/LinuxKernel.vala:1024 +#: src/Common/LinuxKernel.vala:1022 msgid "Uninstalling selected kernels" msgstr "Odinstalowanie wybranych jąder" -#: src/Common/LinuxKernel.vala:1031 +#: src/Common/LinuxKernel.vala:1029 msgid "Not uninstalling the currently running kernel" msgstr "Bez odinstalowywania aktualnie uruchomionego jądra" -#: src/Common/LinuxKernel.vala:1036 +#: src/Common/LinuxKernel.vala:1034 msgid "is locked" msgstr "jest zablokowane" -#: src/Common/LinuxKernel.vala:1044 +#: src/Common/LinuxKernel.vala:1042 msgid "found" msgstr "znalezione" -#: src/Common/LinuxKernel.vala:1048 +#: src/Common/LinuxKernel.vala:1046 msgid "Uninstall: no uninstallable packages found" msgstr "Odinstalowanie: nie znaleziono pakietów, które można odinstalować" -#: src/Common/LinuxKernel.vala:1084 +#: src/Common/LinuxKernel.vala:1082 msgid "is the highest installed version." msgstr "to najwyższa zainstalowana wersja." -#: src/Common/LinuxKernel.vala:1097 +#: src/Common/LinuxKernel.vala:1095 msgid "Could not find running kernel in list" msgstr "Nie można znaleźć uruchomionego jądra na liście" -#: src/Common/LinuxKernel.vala:1102 +#: src/Common/LinuxKernel.vala:1100 msgid "Could not find any kernels to uninstall" msgstr "Nie można znaleźć żadnych jąder do odinstalowania" -#: src/Common/LinuxKernel.vala:1107 +#: src/Common/LinuxKernel.vala:1105 msgid "The following kernels will be uninstalled" msgstr "Następujące jądra zostaną odinstalowane" -#: src/Common/LinuxKernel.vala:1109 +#: src/Common/LinuxKernel.vala:1107 msgid "Continue ?" msgstr "Kontynuować?" -#: src/Common/LinuxKernel.vala:1125 +#: src/Common/LinuxKernel.vala:1123 #, fuzzy msgid "No updates" msgstr "Nie znaleziono aktualizacji" -#: src/Common/LinuxKernel.vala:1131 +#: src/Common/LinuxKernel.vala:1129 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Zainstalować wersję jądra %s? (t/n): " diff --git a/po/ru.po b/po/ru.po index c95cfd8d..73408cda 100644 --- a/po/ru.po +++ b/po/ru.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-05 03:13-0400\n" +"POT-Creation-Date: 2023-06-06 04:33-0400\n" "PO-Revision-Date: 2023-06-05 23:29+0300\n" "Last-Translator: Danik2343 \n" "Language-Team: Russian\n" @@ -13,198 +13,204 @@ msgstr "" "X-Launchpad-Export-Date: 2016-12-13 11:48+0000\n" "X-Generator: Poedit 3.2.2\n" -#: src/Common/LinuxKernel.vala:100 +#: src/Common/LinuxKernel.vala:104 msgid "Distribution" msgstr "Дистрибутив" -#: src/Common/LinuxKernel.vala:115 +#: src/Common/LinuxKernel.vala:119 msgid "Architecture" msgstr "Архитектура" -#: src/Common/LinuxKernel.vala:130 +#: src/Common/LinuxKernel.vala:134 msgid "Running kernel" msgstr "Запущенное ядро" -#: src/Common/LinuxKernel.vala:230 +#: src/Common/LinuxKernel.vala:221 msgid "loading cached" msgstr "загрузка в кэше" -#: src/Common/LinuxKernel.vala:242 +#: src/Common/LinuxKernel.vala:233 msgid "queuing download" msgstr "загрузка очередей" -#: src/Common/LinuxKernel.vala:263 +#: src/Common/LinuxKernel.vala:253 msgid "Fetching individual kernel indexes" msgstr "Получение отдельных индексов ядра" -#: src/Common/LinuxKernel.vala:277 +#: src/Common/LinuxKernel.vala:267 msgid "loading downloaded" msgstr "загрузка загруженных" -#: src/Common/LinuxKernel.vala:318 +#: src/Common/LinuxKernel.vala:307 msgid "Updating from" msgstr "Обновление из" -#: src/Common/LinuxKernel.vala:326 +#: src/Common/LinuxKernel.vala:315 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:329 +#: src/Common/LinuxKernel.vala:318 msgid "FAILED" msgstr "НЕУДАВШИЙСЯ" -#: src/Common/LinuxKernel.vala:392 +#: src/Common/LinuxKernel.vala:383 msgid "Found installed" msgstr "Найдено установлененное" -#: src/Common/LinuxKernel.vala:393 +#: src/Common/LinuxKernel.vala:384 msgid "locked" msgstr "заблокирован" -#: src/Common/LinuxKernel.vala:475 src/Common/LinuxKernel.vala:1003 -#: src/Common/LinuxKernel.vala:1094 +#: src/Common/LinuxKernel.vala:466 src/Common/LinuxKernel.vala:995 +#: src/Common/LinuxKernel.vala:1086 msgid "is locked." msgstr "заблокирован" -#: src/Common/LinuxKernel.vala:668 src/Gtk/MainWindow.vala:521 +#: src/Common/LinuxKernel.vala:661 src/Gtk/MainWindow.vala:521 msgid "Running" msgstr "Используется" -#: src/Common/LinuxKernel.vala:669 +#: src/Common/LinuxKernel.vala:662 msgid "Installed" msgstr "Установлено" -#: src/Common/LinuxKernel.vala:670 +#: src/Common/LinuxKernel.vala:663 msgid "Invalid" msgstr "Негодный" -#: src/Common/LinuxKernel.vala:760 +#: src/Common/LinuxKernel.vala:756 msgid "Packages Available" msgstr "Доступные пакеты" -#: src/Common/LinuxKernel.vala:766 +#: src/Common/LinuxKernel.vala:762 msgid "Packages Installed" msgstr "Установленные пакеты" -#: src/Common/LinuxKernel.vala:791 src/lib/TeeJee.FileSystem.vala:94 +#: src/Common/LinuxKernel.vala:787 src/lib/TeeJee.FileSystem.vala:94 msgid "File not found" msgstr "Файл не найден" -#: src/Common/LinuxKernel.vala:885 +#: src/Common/LinuxKernel.vala:881 msgid "Available Kernels" msgstr "Доступные ядра" -#: src/Common/LinuxKernel.vala:920 src/Gtk/MainWindow.vala:135 +#: src/Common/LinuxKernel.vala:915 src/Gtk/MainWindow.vala:135 msgid "Kernel" msgstr "Ядро" -#: src/Common/LinuxKernel.vala:920 +#: src/Common/LinuxKernel.vala:915 msgid "not found" msgstr "не найдено" -#: src/Common/LinuxKernel.vala:927 +#: src/Common/LinuxKernel.vala:922 msgid "Download: no downloadable kernels specified" msgstr "Загрузка: не указаны загружаемые ядра" -#: src/Common/LinuxKernel.vala:947 +#: src/Common/LinuxKernel.vala:938 msgid "enabled" msgstr "включено" -#: src/Common/LinuxKernel.vala:971 +#: src/Common/LinuxKernel.vala:963 msgid "Downloading" msgstr "Загрузки" -#: src/Common/LinuxKernel.vala:989 +#: src/Common/LinuxKernel.vala:981 msgid "Installing selected kernels" msgstr "Установка выбранных ядер" -#: src/Common/LinuxKernel.vala:995 src/Common/LinuxKernel.vala:1034 +#: src/Common/LinuxKernel.vala:987 src/Common/LinuxKernel.vala:1026 msgid "Requested" msgstr "Запрошено" -#: src/Common/LinuxKernel.vala:998 +#: src/Common/LinuxKernel.vala:990 msgid "is already installed." msgstr "уже установлен." -#: src/Common/LinuxKernel.vala:1008 +#: src/Common/LinuxKernel.vala:1000 msgid "download failed." msgstr "загрузка не удалась." -#: src/Common/LinuxKernel.vala:1015 +#: src/Common/LinuxKernel.vala:1007 msgid "Install: no installable kernels specified" msgstr "Команда не указана" -#: src/Common/LinuxKernel.vala:1030 +#: src/Common/LinuxKernel.vala:1022 msgid "Uninstalling selected kernels" msgstr "Удаление выбранных ядер" -#: src/Common/LinuxKernel.vala:1037 +#: src/Common/LinuxKernel.vala:1029 msgid "Not uninstalling the currently running kernel" msgstr "Не удалять запущенное в данный момент ядро" -#: src/Common/LinuxKernel.vala:1042 +#: src/Common/LinuxKernel.vala:1034 msgid "is locked" msgstr "заблокирован" -#: src/Common/LinuxKernel.vala:1050 +#: src/Common/LinuxKernel.vala:1042 msgid "found" msgstr "найдено" -#: src/Common/LinuxKernel.vala:1054 +#: src/Common/LinuxKernel.vala:1046 msgid "Uninstall: no uninstallable packages found" msgstr "Удаление: не найдено удаляемых пакетов" -#: src/Common/LinuxKernel.vala:1090 +#: src/Common/LinuxKernel.vala:1082 msgid "is the highest installed version." msgstr "это самая высокая установленная версия." -#: src/Common/LinuxKernel.vala:1103 +#: src/Common/LinuxKernel.vala:1095 msgid "Could not find running kernel in list" msgstr "Could not find running kernel in list" -#: src/Common/LinuxKernel.vala:1108 +#: src/Common/LinuxKernel.vala:1100 msgid "Could not find any kernels to uninstall" msgstr "Не удалось найти ядра для деинсталляции" -#: src/Common/LinuxKernel.vala:1116 +#: src/Common/LinuxKernel.vala:1105 msgid "The following kernels will be uninstalled" msgstr "Следующие ядра будут удалены" -#: src/Common/LinuxKernel.vala:1120 +#: src/Common/LinuxKernel.vala:1107 msgid "Continue ?" msgstr "Продолжить ?" -#: src/Common/LinuxKernel.vala:1142 src/Console/AppConsole.vala:208 -msgid "Latest update" -msgstr "Последнее обновление" - -#: src/Common/LinuxKernel.vala:1153 src/Console/AppConsole.vala:215 -msgid "Latest point update" -msgstr "Последнее обновление пунктов" - -#: src/Common/LinuxKernel.vala:1161 src/Console/AppConsole.vala:220 -#: src/Console/AppConsole.vala:240 -msgid "No updates found" +#: src/Common/LinuxKernel.vala:1123 +#, fuzzy +msgid "No updates" msgstr "Обновлений не найдено" -#: src/Common/LinuxKernel.vala:1170 +#: src/Common/LinuxKernel.vala:1129 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Установить версию ядра %s ? (y/n): " -#: src/Common/Main.vala:354 +#: src/Common/Main.vala:240 +msgid "Wrote config file" +msgstr "" + +#: src/Common/Main.vala:259 +msgid "No config file" +msgstr "" + +#: src/Common/Main.vala:321 +msgid "Loaded config file" +msgstr "" + +#: src/Common/Main.vala:350 msgid "Called from" msgstr "Вызван из" -#: src/Common/Main.vala:354 +#: src/Common/Main.vala:350 msgid "at logon" msgstr "при запуске" -#: src/Common/Main.vala:355 -msgid "This file is over-written and executed again whenever settings are saved in" -msgstr "Этот файл перезаписывается и выполняется снова при сохранении настроек в" +#: src/Common/Main.vala:351 +msgid "" +"This file is over-written and executed again whenever settings are saved in" +msgstr "" +"Этот файл перезаписывается и выполняется снова при сохранении настроек в" -#: src/Common/Main.vala:387 +#: src/Common/Main.vala:383 msgid "Notifications are disabled" msgstr "Уведомления отключены" @@ -291,35 +297,62 @@ msgstr "Одна или несколько строк версии, взятых #: src/Console/AppConsole.vala:64 msgid "comma, pipe, or colon-seperated, or quoted space seperated" -msgstr "через запятую, вертикальную черту или двоеточие или через пробел в кавычках" +msgstr "" +"через запятую, вертикальную черту или двоеточие или через пробел в кавычках" #: src/Console/AppConsole.vala:65 msgid "Locked kernels and the currently running kernel are ignored" msgstr "Заблокированные ядра и работающее в данный момент ядро игнорируются." -#: src/Console/AppConsole.vala:139 src/Console/AppConsole.vala:193 +#: src/Console/AppConsole.vala:139 src/Console/AppConsole.vala:190 #: src/Gtk/AppGtk.vala:109 msgid "Unknown option" msgstr "Неизвестный параметр" -#: src/Console/AppConsole.vala:229 +#: src/Console/AppConsole.vala:202 +msgid "Latest update" +msgstr "Последнее обновление" + +#: src/Console/AppConsole.vala:203 +msgid "Latest point update" +msgstr "Последнее обновление пунктов" + +#: src/Console/AppConsole.vala:204 src/Console/AppConsole.vala:222 +msgid "No updates found" +msgstr "Обновлений не найдено" + +#: src/Console/AppConsole.vala:211 msgid "Notifications disabled" msgstr "Уведомления отключены" -#: src/Console/AppConsole.vala:262 +#: src/Console/AppConsole.vala:216 +msgid "No" +msgstr "" + +#: src/Console/AppConsole.vala:231 +#, fuzzy +msgid "notify point releases disabled" +msgstr "Уведомлять, если доступно небольшое обновление" + +#: src/Console/AppConsole.vala:239 +#, fuzzy +msgid "notify major releases disabled" +msgstr "Уведомлять, если доступно крупное обновление" + +#: src/Console/AppConsole.vala:244 #, c-format msgid "Kernel %s Available" msgstr "Доступно ядро %s" -#: src/Console/AppConsole.vala:266 src/Gtk/SettingsDialog.vala:151 +#: src/Console/AppConsole.vala:248 src/Gtk/SettingsDialog.vala:151 msgid "Show" msgstr "Показать" -#: src/Console/AppConsole.vala:267 src/Gtk/MainWindow.vala:312 +#: src/Console/AppConsole.vala:249 src/Gtk/MainWindow.vala:312 msgid "Install" msgstr "Установить" -#: src/Console/AppConsole.vala:270 +#: src/Console/AppConsole.vala:252 msgid "Previously notified" msgstr "Предварительно уведомлено" diff --git a/po/sv.po b/po/sv.po index 6d553ba7..8be851fc 100644 --- a/po/sv.po +++ b/po/sv.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-06 03:55-0400\n" +"POT-Creation-Date: 2023-06-06 04:33-0400\n" "PO-Revision-Date: 2018-01-13 16:56+0100\n" "Last-Translator: Åke Engelbrektson \n" "Language-Team:Swedish\n" @@ -61,8 +61,8 @@ msgstr "Hittade installerat" msgid "locked" msgstr "" -#: src/Common/LinuxKernel.vala:466 src/Common/LinuxKernel.vala:997 -#: src/Common/LinuxKernel.vala:1088 +#: src/Common/LinuxKernel.vala:466 src/Common/LinuxKernel.vala:995 +#: src/Common/LinuxKernel.vala:1086 msgid "is locked." msgstr "" @@ -78,115 +78,115 @@ msgstr "Installerad" msgid "Invalid" msgstr "Ogiltig" -#: src/Common/LinuxKernel.vala:758 +#: src/Common/LinuxKernel.vala:756 msgid "Packages Available" msgstr "Tillgängliga paket" -#: src/Common/LinuxKernel.vala:764 +#: src/Common/LinuxKernel.vala:762 msgid "Packages Installed" msgstr "Installerade paket" -#: src/Common/LinuxKernel.vala:789 src/lib/TeeJee.FileSystem.vala:94 +#: src/Common/LinuxKernel.vala:787 src/lib/TeeJee.FileSystem.vala:94 msgid "File not found" msgstr "Filen kan inte hittas" -#: src/Common/LinuxKernel.vala:883 +#: src/Common/LinuxKernel.vala:881 msgid "Available Kernels" msgstr "Tillgängliga kärnor" -#: src/Common/LinuxKernel.vala:917 src/Gtk/MainWindow.vala:135 +#: src/Common/LinuxKernel.vala:915 src/Gtk/MainWindow.vala:135 msgid "Kernel" msgstr "Kärna" -#: src/Common/LinuxKernel.vala:917 +#: src/Common/LinuxKernel.vala:915 #, fuzzy msgid "not found" msgstr "Filen kan inte hittas" -#: src/Common/LinuxKernel.vala:924 +#: src/Common/LinuxKernel.vala:922 #, fuzzy msgid "Download: no downloadable kernels specified" msgstr "Kommandot har inte angetts" -#: src/Common/LinuxKernel.vala:940 +#: src/Common/LinuxKernel.vala:938 msgid "enabled" msgstr "aktiverat" -#: src/Common/LinuxKernel.vala:965 +#: src/Common/LinuxKernel.vala:963 msgid "Downloading" msgstr "Ladda ner" -#: src/Common/LinuxKernel.vala:983 +#: src/Common/LinuxKernel.vala:981 #, fuzzy msgid "Installing selected kernels" msgstr "Avinstallera valda kärnor" -#: src/Common/LinuxKernel.vala:989 src/Common/LinuxKernel.vala:1028 +#: src/Common/LinuxKernel.vala:987 src/Common/LinuxKernel.vala:1026 #, fuzzy msgid "Requested" msgstr "begärd" -#: src/Common/LinuxKernel.vala:992 +#: src/Common/LinuxKernel.vala:990 msgid "is already installed." msgstr "är redan installerat." -#: src/Common/LinuxKernel.vala:1002 +#: src/Common/LinuxKernel.vala:1000 msgid "download failed." msgstr "" -#: src/Common/LinuxKernel.vala:1009 +#: src/Common/LinuxKernel.vala:1007 #, fuzzy msgid "Install: no installable kernels specified" msgstr "Kommandot har inte angetts" -#: src/Common/LinuxKernel.vala:1024 +#: src/Common/LinuxKernel.vala:1022 msgid "Uninstalling selected kernels" msgstr "Avinstallera valda kärnor" -#: src/Common/LinuxKernel.vala:1031 +#: src/Common/LinuxKernel.vala:1029 #, fuzzy msgid "Not uninstalling the currently running kernel" msgstr "Avinstallera inte den kärna som körs, för närvarande" -#: src/Common/LinuxKernel.vala:1036 +#: src/Common/LinuxKernel.vala:1034 msgid "is locked" msgstr "" -#: src/Common/LinuxKernel.vala:1044 +#: src/Common/LinuxKernel.vala:1042 msgid "found" msgstr "grunda" -#: src/Common/LinuxKernel.vala:1048 +#: src/Common/LinuxKernel.vala:1046 msgid "Uninstall: no uninstallable packages found" msgstr "" -#: src/Common/LinuxKernel.vala:1084 +#: src/Common/LinuxKernel.vala:1082 #, fuzzy msgid "is the highest installed version." msgstr "Avinstallera alla utom den högsta installerade versionen" -#: src/Common/LinuxKernel.vala:1097 +#: src/Common/LinuxKernel.vala:1095 msgid "Could not find running kernel in list" msgstr "Det gick inte att hitta kernel som körs i listan" -#: src/Common/LinuxKernel.vala:1102 +#: src/Common/LinuxKernel.vala:1100 msgid "Could not find any kernels to uninstall" msgstr "Det gick inte att hitta några kärnor att avinstallera" -#: src/Common/LinuxKernel.vala:1107 +#: src/Common/LinuxKernel.vala:1105 msgid "The following kernels will be uninstalled" msgstr "Följande kärnor kommer att avinstalleras" -#: src/Common/LinuxKernel.vala:1109 +#: src/Common/LinuxKernel.vala:1107 msgid "Continue ?" msgstr "Fortsätta?" -#: src/Common/LinuxKernel.vala:1125 +#: src/Common/LinuxKernel.vala:1123 #, fuzzy msgid "No updates" msgstr "Inga uppdateringar hittades" -#: src/Common/LinuxKernel.vala:1131 +#: src/Common/LinuxKernel.vala:1129 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Installera kärnversion %s ? (j/n):" diff --git a/po/tr.po b/po/tr.po index 2c9deb58..5c8b065a 100644 --- a/po/tr.po +++ b/po/tr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-06 03:55-0400\n" +"POT-Creation-Date: 2023-06-06 04:33-0400\n" "PO-Revision-Date: 2022-08-06 16:48+0300\n" "Last-Translator: Sabri Ünal \n" "Language-Team: Turkish\n" @@ -61,8 +61,8 @@ msgstr "Yüklü bulundu" msgid "locked" msgstr "" -#: src/Common/LinuxKernel.vala:466 src/Common/LinuxKernel.vala:997 -#: src/Common/LinuxKernel.vala:1088 +#: src/Common/LinuxKernel.vala:466 src/Common/LinuxKernel.vala:995 +#: src/Common/LinuxKernel.vala:1086 msgid "is locked." msgstr "" @@ -78,115 +78,115 @@ msgstr "Kurulu" msgid "Invalid" msgstr "Geçersiz" -#: src/Common/LinuxKernel.vala:758 +#: src/Common/LinuxKernel.vala:756 msgid "Packages Available" msgstr "Mevcut Paketler" -#: src/Common/LinuxKernel.vala:764 +#: src/Common/LinuxKernel.vala:762 msgid "Packages Installed" msgstr "Kurulu Paketler" -#: src/Common/LinuxKernel.vala:789 src/lib/TeeJee.FileSystem.vala:94 +#: src/Common/LinuxKernel.vala:787 src/lib/TeeJee.FileSystem.vala:94 msgid "File not found" msgstr "Dosya bulunamadı" -#: src/Common/LinuxKernel.vala:883 +#: src/Common/LinuxKernel.vala:881 msgid "Available Kernels" msgstr "Mevcut Çekirdekler" -#: src/Common/LinuxKernel.vala:917 src/Gtk/MainWindow.vala:135 +#: src/Common/LinuxKernel.vala:915 src/Gtk/MainWindow.vala:135 msgid "Kernel" msgstr "Çekirdek" -#: src/Common/LinuxKernel.vala:917 +#: src/Common/LinuxKernel.vala:915 #, fuzzy msgid "not found" msgstr "Dosya bulunamadı" -#: src/Common/LinuxKernel.vala:924 +#: src/Common/LinuxKernel.vala:922 #, fuzzy msgid "Download: no downloadable kernels specified" msgstr "Komut belirtilmedi" -#: src/Common/LinuxKernel.vala:940 +#: src/Common/LinuxKernel.vala:938 msgid "enabled" msgstr "etkin" -#: src/Common/LinuxKernel.vala:965 +#: src/Common/LinuxKernel.vala:963 msgid "Downloading" msgstr "Indiriyor" -#: src/Common/LinuxKernel.vala:983 +#: src/Common/LinuxKernel.vala:981 #, fuzzy msgid "Installing selected kernels" msgstr "Seçili çekirdekleri kaldırma" -#: src/Common/LinuxKernel.vala:989 src/Common/LinuxKernel.vala:1028 +#: src/Common/LinuxKernel.vala:987 src/Common/LinuxKernel.vala:1026 #, fuzzy msgid "Requested" msgstr "istenen" -#: src/Common/LinuxKernel.vala:992 +#: src/Common/LinuxKernel.vala:990 msgid "is already installed." msgstr "zaten yüklü." -#: src/Common/LinuxKernel.vala:1002 +#: src/Common/LinuxKernel.vala:1000 msgid "download failed." msgstr "" -#: src/Common/LinuxKernel.vala:1009 +#: src/Common/LinuxKernel.vala:1007 #, fuzzy msgid "Install: no installable kernels specified" msgstr "Komut belirtilmedi" -#: src/Common/LinuxKernel.vala:1024 +#: src/Common/LinuxKernel.vala:1022 msgid "Uninstalling selected kernels" msgstr "Seçili çekirdekleri kaldırma" -#: src/Common/LinuxKernel.vala:1031 +#: src/Common/LinuxKernel.vala:1029 #, fuzzy msgid "Not uninstalling the currently running kernel" msgstr "çalışmakta olan çekirdeğin kaldırılmaması" -#: src/Common/LinuxKernel.vala:1036 +#: src/Common/LinuxKernel.vala:1034 msgid "is locked" msgstr "" -#: src/Common/LinuxKernel.vala:1044 +#: src/Common/LinuxKernel.vala:1042 msgid "found" msgstr "kurmak" -#: src/Common/LinuxKernel.vala:1048 +#: src/Common/LinuxKernel.vala:1046 msgid "Uninstall: no uninstallable packages found" msgstr "" -#: src/Common/LinuxKernel.vala:1084 +#: src/Common/LinuxKernel.vala:1082 #, fuzzy msgid "is the highest installed version." msgstr "En yüksek yüklü sürüm dışındaki tüm sürümleri kaldırın" -#: src/Common/LinuxKernel.vala:1097 +#: src/Common/LinuxKernel.vala:1095 msgid "Could not find running kernel in list" msgstr "Listede çalışan çekirdek bulunamadı" -#: src/Common/LinuxKernel.vala:1102 +#: src/Common/LinuxKernel.vala:1100 msgid "Could not find any kernels to uninstall" msgstr "Kaldırılacak çekirdek bulunamadı" -#: src/Common/LinuxKernel.vala:1107 +#: src/Common/LinuxKernel.vala:1105 msgid "The following kernels will be uninstalled" msgstr "Aşağıdaki çekirdekler kaldırılacaktır" -#: src/Common/LinuxKernel.vala:1109 +#: src/Common/LinuxKernel.vala:1107 msgid "Continue ?" msgstr "Devam edilsin mi?" -#: src/Common/LinuxKernel.vala:1125 +#: src/Common/LinuxKernel.vala:1123 #, fuzzy msgid "No updates" msgstr "Güncelleme bulunamadı" -#: src/Common/LinuxKernel.vala:1131 +#: src/Common/LinuxKernel.vala:1129 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Linux Çekirdek Sürümü %s Kurulsun mu? (e/h): " diff --git a/po/uk.po b/po/uk.po index 988ec382..47fceb05 100644 --- a/po/uk.po +++ b/po/uk.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-06 03:55-0400\n" +"POT-Creation-Date: 2023-06-06 04:33-0400\n" "PO-Revision-Date: 2019-07-25 11:00+0300\n" "Last-Translator: Serhii Golovko \n" "Language-Team: Ukranian\n" @@ -61,8 +61,8 @@ msgstr "Знайдено встановленим" msgid "locked" msgstr "заблокований" -#: src/Common/LinuxKernel.vala:466 src/Common/LinuxKernel.vala:997 -#: src/Common/LinuxKernel.vala:1088 +#: src/Common/LinuxKernel.vala:466 src/Common/LinuxKernel.vala:995 +#: src/Common/LinuxKernel.vala:1086 msgid "is locked." msgstr "заблоковано." @@ -78,109 +78,109 @@ msgstr "Встановлено" msgid "Invalid" msgstr "Інвалід" -#: src/Common/LinuxKernel.vala:758 +#: src/Common/LinuxKernel.vala:756 msgid "Packages Available" msgstr "Доступні пакети" -#: src/Common/LinuxKernel.vala:764 +#: src/Common/LinuxKernel.vala:762 msgid "Packages Installed" msgstr "Встановлені пакети" -#: src/Common/LinuxKernel.vala:789 src/lib/TeeJee.FileSystem.vala:94 +#: src/Common/LinuxKernel.vala:787 src/lib/TeeJee.FileSystem.vala:94 msgid "File not found" msgstr "Файл не знайдено" -#: src/Common/LinuxKernel.vala:883 +#: src/Common/LinuxKernel.vala:881 msgid "Available Kernels" msgstr "Доступні ядра" -#: src/Common/LinuxKernel.vala:917 src/Gtk/MainWindow.vala:135 +#: src/Common/LinuxKernel.vala:915 src/Gtk/MainWindow.vala:135 msgid "Kernel" msgstr "Ядро" -#: src/Common/LinuxKernel.vala:917 +#: src/Common/LinuxKernel.vala:915 msgid "not found" msgstr "не знайдено" -#: src/Common/LinuxKernel.vala:924 +#: src/Common/LinuxKernel.vala:922 msgid "Download: no downloadable kernels specified" msgstr "Завантажити: ядра для завантаження не вказано" -#: src/Common/LinuxKernel.vala:940 +#: src/Common/LinuxKernel.vala:938 msgid "enabled" msgstr "увімкнено" -#: src/Common/LinuxKernel.vala:965 +#: src/Common/LinuxKernel.vala:963 msgid "Downloading" msgstr "Завантаження" -#: src/Common/LinuxKernel.vala:983 +#: src/Common/LinuxKernel.vala:981 msgid "Installing selected kernels" msgstr "Встановлення обраних ядер" -#: src/Common/LinuxKernel.vala:989 src/Common/LinuxKernel.vala:1028 +#: src/Common/LinuxKernel.vala:987 src/Common/LinuxKernel.vala:1026 msgid "Requested" msgstr "Запитуваний" -#: src/Common/LinuxKernel.vala:992 +#: src/Common/LinuxKernel.vala:990 msgid "is already installed." msgstr "вже встановлено." -#: src/Common/LinuxKernel.vala:1002 +#: src/Common/LinuxKernel.vala:1000 msgid "download failed." msgstr "не вдалося завантажити." -#: src/Common/LinuxKernel.vala:1009 +#: src/Common/LinuxKernel.vala:1007 #, fuzzy msgid "Install: no installable kernels specified" msgstr "Встановлення: ядра, які можна встановити, не визначені" -#: src/Common/LinuxKernel.vala:1024 +#: src/Common/LinuxKernel.vala:1022 msgid "Uninstalling selected kernels" msgstr "Видаліть конкретні ядра" -#: src/Common/LinuxKernel.vala:1031 +#: src/Common/LinuxKernel.vala:1029 msgid "Not uninstalling the currently running kernel" msgstr "Не видалення поточного запущеного ядра" -#: src/Common/LinuxKernel.vala:1036 +#: src/Common/LinuxKernel.vala:1034 msgid "is locked" msgstr "заблоковано" -#: src/Common/LinuxKernel.vala:1044 +#: src/Common/LinuxKernel.vala:1042 msgid "found" msgstr "знайдено" -#: src/Common/LinuxKernel.vala:1048 +#: src/Common/LinuxKernel.vala:1046 msgid "Uninstall: no uninstallable packages found" msgstr "Видалити: пакетів, які можна видалити, не знайдено" -#: src/Common/LinuxKernel.vala:1084 +#: src/Common/LinuxKernel.vala:1082 msgid "is the highest installed version." msgstr "є найвищою встановленою версією." -#: src/Common/LinuxKernel.vala:1097 +#: src/Common/LinuxKernel.vala:1095 msgid "Could not find running kernel in list" msgstr "Не вдалося знайти запущене ядро у списку!" -#: src/Common/LinuxKernel.vala:1102 +#: src/Common/LinuxKernel.vala:1100 msgid "Could not find any kernels to uninstall" msgstr "Не вдалося знайти жодне ядро для вилучення" -#: src/Common/LinuxKernel.vala:1107 +#: src/Common/LinuxKernel.vala:1105 msgid "The following kernels will be uninstalled" msgstr "Наступні ядра будуть видалені" -#: src/Common/LinuxKernel.vala:1109 +#: src/Common/LinuxKernel.vala:1107 msgid "Continue ?" msgstr "Продовжувати ?" -#: src/Common/LinuxKernel.vala:1125 +#: src/Common/LinuxKernel.vala:1123 #, fuzzy msgid "No updates" msgstr "Оновлень не знайдено" -#: src/Common/LinuxKernel.vala:1131 +#: src/Common/LinuxKernel.vala:1129 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Встановити Ядро Версії %s ? (так/ні): " From 41fbf807393e76e37f944ef6f034f934bc788b86 Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Tue, 6 Jun 2023 08:26:02 -0400 Subject: [PATCH 365/567] internationalize strings --- po/de.po | 20 +++++++++++++++++--- po/el.po | 20 +++++++++++++++++--- po/es.po | 20 +++++++++++++++++--- po/fr.po | 20 +++++++++++++++++--- po/hr.po | 20 +++++++++++++++++--- po/it.po | 20 +++++++++++++++++--- po/ko.po | 20 +++++++++++++++++--- po/messages.pot | 18 +++++++++++++++--- po/nl.po | 20 +++++++++++++++++--- po/pl.po | 20 +++++++++++++++++--- po/ru.po | 20 +++++++++++++++++--- po/sv.po | 20 +++++++++++++++++--- po/tr.po | 20 +++++++++++++++++--- po/uk.po | 20 +++++++++++++++++--- src/Common/LinuxKernel.vala | 12 ++++++------ src/Gtk/MainWindow.vala | 8 ++++---- 16 files changed, 246 insertions(+), 52 deletions(-) diff --git a/po/de.po b/po/de.po index d6855ea7..d48d5c80 100644 --- a/po/de.po +++ b/po/de.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-06 04:33-0400\n" +"POT-Creation-Date: 2023-06-06 08:23-0400\n" "PO-Revision-Date: 2023-02-20 18:40+0100\n" "Last-Translator: Marvin Meysel \n" "Language-Team: German\n" @@ -90,6 +90,11 @@ msgstr "Installierte Pakete" msgid "File not found" msgstr "Datei nicht gefunden " +#: src/Common/LinuxKernel.vala:814 +#, fuzzy +msgid "needs update" +msgstr "Neustes Update" + #: src/Common/LinuxKernel.vala:881 msgid "Available Kernels" msgstr "Verfügbare Kernel" @@ -134,7 +139,7 @@ msgstr "ist bereits installiert." msgid "download failed." msgstr "" -#: src/Common/LinuxKernel.vala:1007 +#: src/Common/LinuxKernel.vala:1007 src/Gtk/MainWindow.vala:548 #, fuzzy msgid "Install: no installable kernels specified" msgstr "Befehl nicht angegeben" @@ -148,7 +153,7 @@ msgstr "Deinstallation des angegebenen Kernels" msgid "Not uninstalling the currently running kernel" msgstr "Den aktuell laufenden Kernel wird nicht deinstalliert" -#: src/Common/LinuxKernel.vala:1034 +#: src/Common/LinuxKernel.vala:1034 src/Gtk/MainWindow.vala:543 msgid "is locked" msgstr "" @@ -482,6 +487,15 @@ msgstr "Aktualisieren von Kernels" msgid "available" msgstr "Verfügbar" +#: src/Gtk/MainWindow.vala:542 +#, fuzzy +msgid "is already installed" +msgstr "ist bereits installiert." + +#: src/Gtk/MainWindow.vala:544 +msgid "adding" +msgstr "" + #: src/Gtk/MainWindow.vala:570 src/Gtk/MainWindow.vala:604 #: src/Gtk/MainWindow.vala:632 msgid "DONE" diff --git a/po/el.po b/po/el.po index ae974775..42223b8d 100644 --- a/po/el.po +++ b/po/el.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-06 04:33-0400\n" +"POT-Creation-Date: 2023-06-06 08:23-0400\n" "PO-Revision-Date: 2023-01-10 02:03-0600\n" "Last-Translator: Vasilis Kosmidis \n" "Language-Team: Greek\n" @@ -90,6 +90,11 @@ msgstr "Εγκατεστημένα πακέτα" msgid "File not found" msgstr "Το αρχείο δε βρέθηκε" +#: src/Common/LinuxKernel.vala:814 +#, fuzzy +msgid "needs update" +msgstr "Τελευταία αναβάθμιση" + #: src/Common/LinuxKernel.vala:881 msgid "Available Kernels" msgstr "Διαθέσιμοι πυρήνες" @@ -134,7 +139,7 @@ msgstr "είναι ήδη εγκατεστημένο." msgid "download failed." msgstr "" -#: src/Common/LinuxKernel.vala:1007 +#: src/Common/LinuxKernel.vala:1007 src/Gtk/MainWindow.vala:548 #, fuzzy msgid "Install: no installable kernels specified" msgstr "Η εντολή δεν προσδιορίστηκε" @@ -148,7 +153,7 @@ msgstr "Απεγκατάσταση επιλεγμένων πυρήνων" msgid "Not uninstalling the currently running kernel" msgstr "δεν θα απεγκαταστήσει τον πυρήνα που εκτελείται αυτήν τη στιγμή" -#: src/Common/LinuxKernel.vala:1034 +#: src/Common/LinuxKernel.vala:1034 src/Gtk/MainWindow.vala:543 msgid "is locked" msgstr "" @@ -483,6 +488,15 @@ msgstr "Ενημέρωση πυρήνων" msgid "available" msgstr "διαθέσιμος" +#: src/Gtk/MainWindow.vala:542 +#, fuzzy +msgid "is already installed" +msgstr "είναι ήδη εγκατεστημένο." + +#: src/Gtk/MainWindow.vala:544 +msgid "adding" +msgstr "" + #: src/Gtk/MainWindow.vala:570 src/Gtk/MainWindow.vala:604 #: src/Gtk/MainWindow.vala:632 msgid "DONE" diff --git a/po/es.po b/po/es.po index 15865b12..88853149 100644 --- a/po/es.po +++ b/po/es.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-06 04:33-0400\n" +"POT-Creation-Date: 2023-06-06 08:23-0400\n" "PO-Revision-Date: 2018-01-03 02:03-0600\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish\n" @@ -90,6 +90,11 @@ msgstr "Paquetes instalados" msgid "File not found" msgstr "No se encontró el archivo" +#: src/Common/LinuxKernel.vala:814 +#, fuzzy +msgid "needs update" +msgstr "Última actualización" + #: src/Common/LinuxKernel.vala:881 msgid "Available Kernels" msgstr "Núcleos disponibles" @@ -134,7 +139,7 @@ msgstr "ya está instalado." msgid "download failed." msgstr "" -#: src/Common/LinuxKernel.vala:1007 +#: src/Common/LinuxKernel.vala:1007 src/Gtk/MainWindow.vala:548 #, fuzzy msgid "Install: no installable kernels specified" msgstr "Coomand no especificado" @@ -148,7 +153,7 @@ msgstr "Desinstalación de kernels seleccionados" msgid "Not uninstalling the currently running kernel" msgstr "No desinstalará el kernel que se está ejecutando actualmente" -#: src/Common/LinuxKernel.vala:1034 +#: src/Common/LinuxKernel.vala:1034 src/Gtk/MainWindow.vala:543 msgid "is locked" msgstr "" @@ -483,6 +488,15 @@ msgstr "Actualización de kernels" msgid "available" msgstr "disponibles" +#: src/Gtk/MainWindow.vala:542 +#, fuzzy +msgid "is already installed" +msgstr "ya está instalado." + +#: src/Gtk/MainWindow.vala:544 +msgid "adding" +msgstr "" + #: src/Gtk/MainWindow.vala:570 src/Gtk/MainWindow.vala:604 #: src/Gtk/MainWindow.vala:632 msgid "DONE" diff --git a/po/fr.po b/po/fr.po index 0aea2659..64c9da96 100644 --- a/po/fr.po +++ b/po/fr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-06 04:33-0400\n" +"POT-Creation-Date: 2023-06-06 08:23-0400\n" "PO-Revision-Date: 2018-08-05 15:50+0200\n" "Last-Translator: Yolateng0 \n" "Language-Team: French\n" @@ -90,6 +90,11 @@ msgstr "Paquets Installés" msgid "File not found" msgstr "Fichier non trouvé" +#: src/Common/LinuxKernel.vala:814 +#, fuzzy +msgid "needs update" +msgstr "Dernière mise à jour" + #: src/Common/LinuxKernel.vala:881 msgid "Available Kernels" msgstr "Noyaux Disponibles" @@ -134,7 +139,7 @@ msgstr "est déjà installé." msgid "download failed." msgstr "" -#: src/Common/LinuxKernel.vala:1007 +#: src/Common/LinuxKernel.vala:1007 src/Gtk/MainWindow.vala:548 #, fuzzy msgid "Install: no installable kernels specified" msgstr "Pas de commande fournie" @@ -148,7 +153,7 @@ msgstr "Désinstallation des noyaux sélectionnés" msgid "Not uninstalling the currently running kernel" msgstr "Ne pas désinstaller le noyau en cours d'exécution" -#: src/Common/LinuxKernel.vala:1034 +#: src/Common/LinuxKernel.vala:1034 src/Gtk/MainWindow.vala:543 msgid "is locked" msgstr "" @@ -484,6 +489,15 @@ msgstr "Mise à jour des noyaux" msgid "available" msgstr "disponible" +#: src/Gtk/MainWindow.vala:542 +#, fuzzy +msgid "is already installed" +msgstr "est déjà installé." + +#: src/Gtk/MainWindow.vala:544 +msgid "adding" +msgstr "" + #: src/Gtk/MainWindow.vala:570 src/Gtk/MainWindow.vala:604 #: src/Gtk/MainWindow.vala:632 msgid "DONE" diff --git a/po/hr.po b/po/hr.po index 10f0de49..0fcb0c17 100644 --- a/po/hr.po +++ b/po/hr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-06 04:33-0400\n" +"POT-Creation-Date: 2023-06-06 08:23-0400\n" "PO-Revision-Date: 2022-09-22 12:13+0200\n" "Last-Translator: gogo \n" "Language-Team: Croatian\n" @@ -90,6 +90,11 @@ msgstr "Instalirani paketi" msgid "File not found" msgstr "Datoteka nije pronađena" +#: src/Common/LinuxKernel.vala:814 +#, fuzzy +msgid "needs update" +msgstr "Najnovija nadopuna" + #: src/Common/LinuxKernel.vala:881 msgid "Available Kernels" msgstr "Dostupni kerneli" @@ -134,7 +139,7 @@ msgstr "je već instaliran." msgid "download failed." msgstr "" -#: src/Common/LinuxKernel.vala:1007 +#: src/Common/LinuxKernel.vala:1007 src/Gtk/MainWindow.vala:548 #, fuzzy msgid "Install: no installable kernels specified" msgstr "Naredba nije navedena" @@ -148,7 +153,7 @@ msgstr "Deinstaliraj određene kernele" msgid "Not uninstalling the currently running kernel" msgstr "ne deinstaliranje trenutno pokrenute kernel" -#: src/Common/LinuxKernel.vala:1034 +#: src/Common/LinuxKernel.vala:1034 src/Gtk/MainWindow.vala:543 msgid "is locked" msgstr "" @@ -481,6 +486,15 @@ msgstr "Ažuriranje jezgri" msgid "available" msgstr "dostupno" +#: src/Gtk/MainWindow.vala:542 +#, fuzzy +msgid "is already installed" +msgstr "je već instaliran." + +#: src/Gtk/MainWindow.vala:544 +msgid "adding" +msgstr "" + #: src/Gtk/MainWindow.vala:570 src/Gtk/MainWindow.vala:604 #: src/Gtk/MainWindow.vala:632 msgid "DONE" diff --git a/po/it.po b/po/it.po index 87c031e5..49612486 100644 --- a/po/it.po +++ b/po/it.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-06 04:33-0400\n" +"POT-Creation-Date: 2023-06-06 08:23-0400\n" "PO-Revision-Date: 2020-08-22 15:35+0100\n" "Last-Translator: Demetrio Mendozzi\n" "Language-Team: Italian\n" @@ -88,6 +88,11 @@ msgstr "Pacchetti installati" msgid "File not found" msgstr "File non trovato" +#: src/Common/LinuxKernel.vala:814 +#, fuzzy +msgid "needs update" +msgstr "Ultimo aggiornamento" + #: src/Common/LinuxKernel.vala:881 msgid "Available Kernels" msgstr "Kernel disponibili" @@ -132,7 +137,7 @@ msgstr "è già installato." msgid "download failed." msgstr "" -#: src/Common/LinuxKernel.vala:1007 +#: src/Common/LinuxKernel.vala:1007 src/Gtk/MainWindow.vala:548 #, fuzzy msgid "Install: no installable kernels specified" msgstr "Comando non specificato" @@ -146,7 +151,7 @@ msgstr "Disinstalla i kernel specificati" msgid "Not uninstalling the currently running kernel" msgstr "non disinstallare il kernel attualmente in esecuzione" -#: src/Common/LinuxKernel.vala:1034 +#: src/Common/LinuxKernel.vala:1034 src/Gtk/MainWindow.vala:543 msgid "is locked" msgstr "" @@ -482,6 +487,15 @@ msgstr "Aggiornamento dei kernel" msgid "available" msgstr "disponibile" +#: src/Gtk/MainWindow.vala:542 +#, fuzzy +msgid "is already installed" +msgstr "è già installato." + +#: src/Gtk/MainWindow.vala:544 +msgid "adding" +msgstr "" + #: src/Gtk/MainWindow.vala:570 src/Gtk/MainWindow.vala:604 #: src/Gtk/MainWindow.vala:632 msgid "DONE" diff --git a/po/ko.po b/po/ko.po index aba3383a..d221e5af 100644 --- a/po/ko.po +++ b/po/ko.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-06 04:33-0400\n" +"POT-Creation-Date: 2023-06-06 08:23-0400\n" "PO-Revision-Date: 2022-09-28 11:48+0900\n" "Last-Translator: Kevin Kim \n" "Language-Team: Korean\n" @@ -90,6 +90,11 @@ msgstr "설치된 패키지" msgid "File not found" msgstr "파일을 찾을 수 없습니다" +#: src/Common/LinuxKernel.vala:814 +#, fuzzy +msgid "needs update" +msgstr "최신 업데이트" + #: src/Common/LinuxKernel.vala:881 msgid "Available Kernels" msgstr "설치 가능한 커널" @@ -134,7 +139,7 @@ msgstr "가 이미 설치되어 있습니다" msgid "download failed." msgstr "" -#: src/Common/LinuxKernel.vala:1007 +#: src/Common/LinuxKernel.vala:1007 src/Gtk/MainWindow.vala:548 #, fuzzy msgid "Install: no installable kernels specified" msgstr "지정한 명령어가 없습니다" @@ -148,7 +153,7 @@ msgstr "선택한 커널 제거" msgid "Not uninstalling the currently running kernel" msgstr "현재 실행 중인 커널을 제거하지 않음" -#: src/Common/LinuxKernel.vala:1034 +#: src/Common/LinuxKernel.vala:1034 src/Gtk/MainWindow.vala:543 msgid "is locked" msgstr "" @@ -480,6 +485,15 @@ msgstr "커널 업데이트" msgid "available" msgstr "사용가능" +#: src/Gtk/MainWindow.vala:542 +#, fuzzy +msgid "is already installed" +msgstr "가 이미 설치되어 있습니다" + +#: src/Gtk/MainWindow.vala:544 +msgid "adding" +msgstr "" + #: src/Gtk/MainWindow.vala:570 src/Gtk/MainWindow.vala:604 #: src/Gtk/MainWindow.vala:632 msgid "DONE" diff --git a/po/messages.pot b/po/messages.pot index 046e8b74..055eb333 100644 --- a/po/messages.pot +++ b/po/messages.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline 1.3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-06 04:33-0400\n" +"POT-Creation-Date: 2023-06-06 08:23-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -94,6 +94,10 @@ msgstr "" msgid "File not found" msgstr "" +#: src/Common/LinuxKernel.vala:814 +msgid "needs update" +msgstr "" + #: src/Common/LinuxKernel.vala:881 msgid "Available Kernels" msgstr "" @@ -134,7 +138,7 @@ msgstr "" msgid "download failed." msgstr "" -#: src/Common/LinuxKernel.vala:1007 +#: src/Common/LinuxKernel.vala:1007 src/Gtk/MainWindow.vala:548 msgid "Install: no installable kernels specified" msgstr "" @@ -146,7 +150,7 @@ msgstr "" msgid "Not uninstalling the currently running kernel" msgstr "" -#: src/Common/LinuxKernel.vala:1034 +#: src/Common/LinuxKernel.vala:1034 src/Gtk/MainWindow.vala:543 msgid "is locked" msgstr "" @@ -467,6 +471,14 @@ msgstr "" msgid "available" msgstr "" +#: src/Gtk/MainWindow.vala:542 +msgid "is already installed" +msgstr "" + +#: src/Gtk/MainWindow.vala:544 +msgid "adding" +msgstr "" + #: src/Gtk/MainWindow.vala:570 src/Gtk/MainWindow.vala:604 #: src/Gtk/MainWindow.vala:632 msgid "DONE" diff --git a/po/nl.po b/po/nl.po index 972f12f1..499dc524 100644 --- a/po/nl.po +++ b/po/nl.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-06 04:33-0400\n" +"POT-Creation-Date: 2023-06-06 08:23-0400\n" "PO-Revision-Date: 2020-08-23 13:55+0200\n" "Last-Translator: Heimen Stoffels \n" "Language-Team: Dutch (Netherlands)\n" @@ -90,6 +90,11 @@ msgstr "Geïnstalleerde pakketten" msgid "File not found" msgstr "Het bestand is niet gevonden" +#: src/Common/LinuxKernel.vala:814 +#, fuzzy +msgid "needs update" +msgstr "Recentste update" + #: src/Common/LinuxKernel.vala:881 msgid "Available Kernels" msgstr "Beschikbare kernels" @@ -134,7 +139,7 @@ msgstr "is al geïnstalleerd." msgid "download failed." msgstr "" -#: src/Common/LinuxKernel.vala:1007 +#: src/Common/LinuxKernel.vala:1007 src/Gtk/MainWindow.vala:548 #, fuzzy msgid "Install: no installable kernels specified" msgstr "Geen opdracht opgegeven" @@ -148,7 +153,7 @@ msgstr "Geselecteerde kernels verwijderen" msgid "Not uninstalling the currently running kernel" msgstr "de momenteel actieve kernel niet verwijderen" -#: src/Common/LinuxKernel.vala:1034 +#: src/Common/LinuxKernel.vala:1034 src/Gtk/MainWindow.vala:543 msgid "is locked" msgstr "" @@ -482,6 +487,15 @@ msgstr "Kernels bijwerken" msgid "available" msgstr "beschikbaar" +#: src/Gtk/MainWindow.vala:542 +#, fuzzy +msgid "is already installed" +msgstr "is al geïnstalleerd." + +#: src/Gtk/MainWindow.vala:544 +msgid "adding" +msgstr "" + #: src/Gtk/MainWindow.vala:570 src/Gtk/MainWindow.vala:604 #: src/Gtk/MainWindow.vala:632 msgid "DONE" diff --git a/po/pl.po b/po/pl.po index 9171045d..8aabc29a 100644 --- a/po/pl.po +++ b/po/pl.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-06 04:33-0400\n" +"POT-Creation-Date: 2023-06-06 08:23-0400\n" "PO-Revision-Date: 2023-06-03 14:24+0200\n" "Last-Translator: Matthaiks\n" "Language-Team: Polish\n" @@ -89,6 +89,11 @@ msgstr "Pakiety zainstalowane" msgid "File not found" msgstr "Nie odnaleziono pliku" +#: src/Common/LinuxKernel.vala:814 +#, fuzzy +msgid "needs update" +msgstr "Najnowsza aktualizacja" + #: src/Common/LinuxKernel.vala:881 msgid "Available Kernels" msgstr "Dostępne jądra" @@ -129,7 +134,7 @@ msgstr "jest już zainstalowane." msgid "download failed." msgstr "pobieranie nie powiodło się." -#: src/Common/LinuxKernel.vala:1007 +#: src/Common/LinuxKernel.vala:1007 src/Gtk/MainWindow.vala:548 #, fuzzy msgid "Install: no installable kernels specified" msgstr "Instalowanie: nie określono jąder do zainstalowania" @@ -142,7 +147,7 @@ msgstr "Odinstalowanie wybranych jąder" msgid "Not uninstalling the currently running kernel" msgstr "Bez odinstalowywania aktualnie uruchomionego jądra" -#: src/Common/LinuxKernel.vala:1034 +#: src/Common/LinuxKernel.vala:1034 src/Gtk/MainWindow.vala:543 msgid "is locked" msgstr "jest zablokowane" @@ -471,6 +476,15 @@ msgstr "Aktualizowanie jąder" msgid "available" msgstr "dostępne" +#: src/Gtk/MainWindow.vala:542 +#, fuzzy +msgid "is already installed" +msgstr "jest już zainstalowane." + +#: src/Gtk/MainWindow.vala:544 +msgid "adding" +msgstr "" + #: src/Gtk/MainWindow.vala:570 src/Gtk/MainWindow.vala:604 #: src/Gtk/MainWindow.vala:632 msgid "DONE" diff --git a/po/ru.po b/po/ru.po index 73408cda..2ebb4d84 100644 --- a/po/ru.po +++ b/po/ru.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-06 04:33-0400\n" +"POT-Creation-Date: 2023-06-06 08:23-0400\n" "PO-Revision-Date: 2023-06-05 23:29+0300\n" "Last-Translator: Danik2343 \n" "Language-Team: Russian\n" @@ -90,6 +90,11 @@ msgstr "Установленные пакеты" msgid "File not found" msgstr "Файл не найден" +#: src/Common/LinuxKernel.vala:814 +#, fuzzy +msgid "needs update" +msgstr "Последнее обновление" + #: src/Common/LinuxKernel.vala:881 msgid "Available Kernels" msgstr "Доступные ядра" @@ -130,7 +135,7 @@ msgstr "уже установлен." msgid "download failed." msgstr "загрузка не удалась." -#: src/Common/LinuxKernel.vala:1007 +#: src/Common/LinuxKernel.vala:1007 src/Gtk/MainWindow.vala:548 msgid "Install: no installable kernels specified" msgstr "Команда не указана" @@ -142,7 +147,7 @@ msgstr "Удаление выбранных ядер" msgid "Not uninstalling the currently running kernel" msgstr "Не удалять запущенное в данный момент ядро" -#: src/Common/LinuxKernel.vala:1034 +#: src/Common/LinuxKernel.vala:1034 src/Gtk/MainWindow.vala:543 msgid "is locked" msgstr "заблокирован" @@ -468,6 +473,15 @@ msgstr "Обновление ядер" msgid "available" msgstr "доступно" +#: src/Gtk/MainWindow.vala:542 +#, fuzzy +msgid "is already installed" +msgstr "уже установлен." + +#: src/Gtk/MainWindow.vala:544 +msgid "adding" +msgstr "" + #: src/Gtk/MainWindow.vala:570 src/Gtk/MainWindow.vala:604 #: src/Gtk/MainWindow.vala:632 msgid "DONE" diff --git a/po/sv.po b/po/sv.po index 8be851fc..ac1d8864 100644 --- a/po/sv.po +++ b/po/sv.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-06 04:33-0400\n" +"POT-Creation-Date: 2023-06-06 08:23-0400\n" "PO-Revision-Date: 2018-01-13 16:56+0100\n" "Last-Translator: Åke Engelbrektson \n" "Language-Team:Swedish\n" @@ -90,6 +90,11 @@ msgstr "Installerade paket" msgid "File not found" msgstr "Filen kan inte hittas" +#: src/Common/LinuxKernel.vala:814 +#, fuzzy +msgid "needs update" +msgstr "Senaste uppdatering" + #: src/Common/LinuxKernel.vala:881 msgid "Available Kernels" msgstr "Tillgängliga kärnor" @@ -134,7 +139,7 @@ msgstr "är redan installerat." msgid "download failed." msgstr "" -#: src/Common/LinuxKernel.vala:1007 +#: src/Common/LinuxKernel.vala:1007 src/Gtk/MainWindow.vala:548 #, fuzzy msgid "Install: no installable kernels specified" msgstr "Kommandot har inte angetts" @@ -148,7 +153,7 @@ msgstr "Avinstallera valda kärnor" msgid "Not uninstalling the currently running kernel" msgstr "Avinstallera inte den kärna som körs, för närvarande" -#: src/Common/LinuxKernel.vala:1034 +#: src/Common/LinuxKernel.vala:1034 src/Gtk/MainWindow.vala:543 msgid "is locked" msgstr "" @@ -480,6 +485,15 @@ msgstr "Uppdatera kärnor" msgid "available" msgstr "tillgänglig" +#: src/Gtk/MainWindow.vala:542 +#, fuzzy +msgid "is already installed" +msgstr "är redan installerat." + +#: src/Gtk/MainWindow.vala:544 +msgid "adding" +msgstr "" + #: src/Gtk/MainWindow.vala:570 src/Gtk/MainWindow.vala:604 #: src/Gtk/MainWindow.vala:632 msgid "DONE" diff --git a/po/tr.po b/po/tr.po index 5c8b065a..bf448d17 100644 --- a/po/tr.po +++ b/po/tr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-06 04:33-0400\n" +"POT-Creation-Date: 2023-06-06 08:23-0400\n" "PO-Revision-Date: 2022-08-06 16:48+0300\n" "Last-Translator: Sabri Ünal \n" "Language-Team: Turkish\n" @@ -90,6 +90,11 @@ msgstr "Kurulu Paketler" msgid "File not found" msgstr "Dosya bulunamadı" +#: src/Common/LinuxKernel.vala:814 +#, fuzzy +msgid "needs update" +msgstr "Son güncelleme" + #: src/Common/LinuxKernel.vala:881 msgid "Available Kernels" msgstr "Mevcut Çekirdekler" @@ -134,7 +139,7 @@ msgstr "zaten yüklü." msgid "download failed." msgstr "" -#: src/Common/LinuxKernel.vala:1007 +#: src/Common/LinuxKernel.vala:1007 src/Gtk/MainWindow.vala:548 #, fuzzy msgid "Install: no installable kernels specified" msgstr "Komut belirtilmedi" @@ -148,7 +153,7 @@ msgstr "Seçili çekirdekleri kaldırma" msgid "Not uninstalling the currently running kernel" msgstr "çalışmakta olan çekirdeğin kaldırılmaması" -#: src/Common/LinuxKernel.vala:1034 +#: src/Common/LinuxKernel.vala:1034 src/Gtk/MainWindow.vala:543 msgid "is locked" msgstr "" @@ -482,6 +487,15 @@ msgstr "Çekirdekleri güncelleme" msgid "available" msgstr "mevcut" +#: src/Gtk/MainWindow.vala:542 +#, fuzzy +msgid "is already installed" +msgstr "zaten yüklü." + +#: src/Gtk/MainWindow.vala:544 +msgid "adding" +msgstr "" + #: src/Gtk/MainWindow.vala:570 src/Gtk/MainWindow.vala:604 #: src/Gtk/MainWindow.vala:632 msgid "DONE" diff --git a/po/uk.po b/po/uk.po index 8334fe72..d35ea8e3 100644 --- a/po/uk.po +++ b/po/uk.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-06 04:33-0400\n" +"POT-Creation-Date: 2023-06-06 08:23-0400\n" "PO-Revision-Date: 2019-07-25 11:00+0300\n" "Last-Translator: Serhii Golovko \n" "Language-Team: Ukranian\n" @@ -90,6 +90,11 @@ msgstr "Встановлені пакети" msgid "File not found" msgstr "Файл не знайдено" +#: src/Common/LinuxKernel.vala:814 +#, fuzzy +msgid "needs update" +msgstr "Останнє оновлення" + #: src/Common/LinuxKernel.vala:881 msgid "Available Kernels" msgstr "Доступні ядра" @@ -130,7 +135,7 @@ msgstr "вже встановлено." msgid "download failed." msgstr "не вдалося завантажити." -#: src/Common/LinuxKernel.vala:1007 +#: src/Common/LinuxKernel.vala:1007 src/Gtk/MainWindow.vala:548 #, fuzzy msgid "Install: no installable kernels specified" msgstr "Встановити: ядра, які можна встановити, не вказано" @@ -143,7 +148,7 @@ msgstr "Видаліть конкретні ядра" msgid "Not uninstalling the currently running kernel" msgstr "Не видалення поточного запущеного ядра" -#: src/Common/LinuxKernel.vala:1034 +#: src/Common/LinuxKernel.vala:1034 src/Gtk/MainWindow.vala:543 msgid "is locked" msgstr "заблоковано" @@ -469,6 +474,15 @@ msgstr "Оновлення ядер" msgid "available" msgstr "доступний" +#: src/Gtk/MainWindow.vala:542 +#, fuzzy +msgid "is already installed" +msgstr "вже встановлено." + +#: src/Gtk/MainWindow.vala:544 +msgid "adding" +msgstr "" + #: src/Gtk/MainWindow.vala:570 src/Gtk/MainWindow.vala:604 #: src/Gtk/MainWindow.vala:632 msgid "DONE" diff --git a/src/Common/LinuxKernel.vala b/src/Common/LinuxKernel.vala index f1c83e24..ebccf35b 100644 --- a/src/Common/LinuxKernel.vala +++ b/src/Common/LinuxKernel.vala @@ -199,14 +199,14 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { find_thresholds(true); // ===== download the main index.html listing all kernels ===== - download_index(); - load_index(); + download_index(); // download the main index.html + load_index(); // scrape the index.html to make the initial kernel_list // ===== download the per-kernel index.html and CHANGES ===== - // list of kernels - 1 LinuxKernel object per kernel to update + // list of kernels - one LinuxKernel object per kernel to update var kernels_to_update = new Gee.ArrayList(); - // list of files - 1 DownloadItem object per individual file to download + // list of files - one DownloadItem object per individual file to download var downloads = new Gee.ArrayList(); // add files to download list, and add kernels to kernel list @@ -809,9 +809,9 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { } // if datetime from main index is later than the latest cached datetime, - // delete the cached index and status, return false + // delete the cache, return false. it will get downloaded in the next stage. if (ppa_datetime>d_max) { - vprint(version_main+": ppa:"+ppa_datetime.to_string()+" > cache:"+d_max.to_string()+" : needs update"); + vprint(version_main+": ppa:"+ppa_datetime.to_string()+" > cache:"+d_max.to_string()+" : "+_("needs update")); delete_r(cache_subdir); return false; } diff --git a/src/Gtk/MainWindow.vala b/src/Gtk/MainWindow.vala index 29afea35..ce427557 100644 --- a/src/Gtk/MainWindow.vala +++ b/src/Gtk/MainWindow.vala @@ -539,13 +539,13 @@ public class MainWindow : Window { vlist = ""; foreach (var k in klist) { - if (k.is_installed) { vprint(k.version_main+" is already installed"); continue; } - if (k.is_locked) { vprint(k.version_main+" is locked"); continue; } - vprint("adding "+k.version_main); + if (k.is_installed) { vprint(k.version_main+" "+_("is already installed")); continue; } + if (k.is_locked) { vprint(k.version_main+" "+_("is locked")); continue; } + vprint(_("adding")+" "+k.version_main); vlist += " "+k.version_main; } vlist = vlist.strip(); - if (vlist=="") { vprint("Install: no installable kernels specified"); return; } + if (vlist=="") { vprint(_("Install: no installable kernels specified")); return; } bool did_update_cache = false; var term = new TerminalWindow.with_parent(this, false, true); From 7496bde8854a71797b42bfd2383075e9e094fcab Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Wed, 7 Jun 2023 04:11:05 -0400 Subject: [PATCH 366/567] fix building on old systems from xenial up --- .deb_build_number.mak | 4 +- BRANDING.mak | 2 +- Makefile | 74 +++++++++++++++++++++++++++---------- debian/changelog | 8 ++++ debian/compat | 2 +- po/de.po | 20 ++++++---- po/el.po | 20 ++++++---- po/es.po | 20 ++++++---- po/fr.po | 20 ++++++---- po/hr.po | 20 ++++++---- po/it.po | 20 ++++++---- po/ko.po | 20 ++++++---- po/messages.pot | 22 ++++++----- po/nl.po | 20 ++++++---- po/pl.po | 20 ++++++---- po/ru.po | 20 ++++++---- po/sv.po | 20 ++++++---- po/tr.po | 20 ++++++---- po/uk.po | 20 ++++++---- src/Common/Main.vala | 9 +++-- src/Gtk/MainWindow.vala | 2 +- src/Gtk/TerminalWindow.vala | 29 ++++++++------- 22 files changed, 256 insertions(+), 156 deletions(-) diff --git a/.deb_build_number.mak b/.deb_build_number.mak index 9777bde5..0372e1d4 100644 --- a/.deb_build_number.mak +++ b/.deb_build_number.mak @@ -1,3 +1,3 @@ # This file is generated by Makefile "make deb_build_number" -DEB_PKG_VERSION := 1.3.10 -DEB_BUILD_NUMBER := 0001 +DEB_PKG_VERSION := 1.3.11 +DEB_BUILD_NUMBER := 0000 diff --git a/BRANDING.mak b/BRANDING.mak index df534151..2de915ba 100644 --- a/BRANDING.mak +++ b/BRANDING.mak @@ -3,7 +3,7 @@ VERSION_MAJOR = 1 VERSION_MINOR = 3 -VERSION_MICRO = 10 +VERSION_MICRO = 11 BRANDING_SHORTNAME = mainline BRANDING_LONGNAME = Ubuntu Mainline Kernel Installer BRANDING_AUTHORNAME = Brian K. White diff --git a/Makefile b/Makefile index b7195b4f..fe0f9502 100644 --- a/Makefile +++ b/Makefile @@ -2,7 +2,7 @@ SHELL := /bin/bash CFLAGS := -O2 -VALACFLAGS := -D VTE_ASYNC # -D LOCK_TOGGLES_IN_KERNEL_COLUMN # -D VTE_ASYNC +VALACFLAGS := # -D LOCK_TOGGLES_IN_KERNEL_COLUMN prefix := /usr bindir := $(prefix)/bin @@ -21,10 +21,9 @@ gtk+ := gtk+-3.0 json-glib := json-glib-1.0 gee := gee-0.8 -x != pkg-config $(json-glib) --atleast-version=1.6.0 -ifeq ($(.SHELLSTATUS),0) -VALACFLAGS += -D GLIB_JSON_1_6 -endif +#VALACFLAGS += $(shell pkg-config $(json-glib) --atleast-version=1.6 && echo " -D HAVE_GLIB_JSON_1_6") +#VALACFLAGS += $(shell pkg-config $(vte) --atleast-version=0.66 && echo " -D HAVE_VTE_0_66") +VALACFLAGS += $(shell pkg-config $(glib) --atleast-version=2.56 || echo " --target-glib 2.32") include BRANDING.mak BRANDING_VERSION := $(VERSION_MAJOR).$(VERSION_MINOR).$(VERSION_MICRO) @@ -56,23 +55,27 @@ host_dist := $(shell lsb_release -sc) host_arch := $(shell dpkg --print-architecture) pkg_version = $(shell dpkg-parsechangelog -S Version) dsc_file = release/deb-src/$(BRANDING_SHORTNAME)_$(pkg_version).dsc -deb_file = release/deb/$(BRANDING_SHORTNAME)_$(pkg_version).$(DEB_BUILD_NUMBER)_$(host_arch).deb +deb_file = release/deb/$(BRANDING_SHORTNAME)_$(pkg_version).$(DEB_BUILD_NUMBER)_$(host_dist)_$(host_arch).deb ################################################################################ .PHONY: all all: $(BRANDING_SHORTNAME) $(BRANDING_SHORTNAME)-gtk -$(BRANDING_SHORTNAME)-gtk: $(misc_files) $(common_vala_files) $(gui_vala_files) TRANSLATORS - valac $(VALACFLAGS) -X -w $(build_symbols) --Xcc="-lm" \ - --pkg $(glib) --pkg $(gio-unix) --pkg posix --pkg $(gee) --pkg $(json-glib) --pkg $(gtk+) --pkg $(vte) --pkg x11 \ - $(common_vala_files) $(gui_vala_files) -o $(@) - $(BRANDING_SHORTNAME): $(misc_files) $(common_vala_files) $(tui_vala_files) TRANSLATORS + valac --version + pkg-config $(glib) --modversion + pkg-config $(vte) --modversion + pkg-config $(json-glib) --modversion valac $(VALACFLAGS) -X -w $(build_symbols) --Xcc="-lm" \ --pkg $(glib) --pkg $(gio-unix) --pkg posix --pkg $(gee) --pkg $(json-glib) \ $(common_vala_files) $(tui_vala_files) -o $(@) +$(BRANDING_SHORTNAME)-gtk: $(misc_files) $(common_vala_files) $(gui_vala_files) TRANSLATORS + valac $(VALACFLAGS) -X -w $(build_symbols) --Xcc="-lm" \ + --pkg $(glib) --pkg $(gio-unix) --pkg posix --pkg $(gee) --pkg $(json-glib) --pkg $(gtk+) --pkg $(vte) --pkg x11 \ + $(common_vala_files) $(gui_vala_files) -o $(@) + $(misc_files): %: %.src BRANDING.mak sed -e 's/BRANDING_SHORTNAME/$(BRANDING_SHORTNAME)/g' \ -e ';s/BRANDING_LONGNAME/$(BRANDING_LONGNAME)/g' \ @@ -139,10 +142,39 @@ uninstall: rm -f $(DESTDIR)/home/*/.config/$(BRANDING_SHORTNAME)/$(BRANDING_SHORTNAME)-notify.sh rm -f $(DESTDIR)/home/*/.config/autostart/$(BRANDING_SHORTNAME).desktop + +## deb build stuff +## +## optionally add "host_dist=foo" to build for dist "foo" +## optionally add "host_arch=foo" to build for arch "foo" +## +## To create the deb build environment, run one time only. +## make deb_env_create +## +## To update the build environment, run as needed. +## make deb_env_update +## +## To (re)build a deb without incrementing build number or doing clean. +## make deb +## +## To build a deb for release. Increments build number and does clean before build. +## make release_deb +## +## Example for bionic on i386. +## make deb_env_create host_dist=bionic host_arch=i386 +## make release_deb host_dist=bionic host_arch=i386 + +.PHONY: pbuilder-dist +pbuilder-dist: + @which pbuilder-dist >/dev/null || { echo "Missing pbuilder-dist. apt install ubuntu-dev-tools" ;false ; } + .PHONY: deb-src deb-src: $(dsc_file) -$(dsc_file): debian/changelog $(misc_files) $(po_files) +.PHONY: dsc +dsc: $(dsc_file) + +$(dsc_file): debian/changelog $(misc_files) $(common_vala_files) $(gui_vala_files) TRANSLATORS @[[ "$(pkg_version)" == "$(BRANDING_VERSION)" ]] || { echo -e "Version number in debian/changelog ($(pkg_version)) does not match BRANDING.mak ($(BRANDING_VERSION)).\n(Maybe need to run \"dch\"?)" >&2 ; exit 1 ; } $(MAKE) clean dpkg-source --build . @@ -154,15 +186,17 @@ $(dsc_file): debian/changelog $(misc_files) $(po_files) .PHONY: deb deb: $(deb_file) -# To create the deb build env -# "pbuilder-dist" provided by "ubuntu-dev-tools" -#sudo apt intsall ubuntu-dev-tools -#pbuilder-dist `lsb_release -sc` create -# To update the deb build env -#pbuilder-dist `lsb_release -sc` update -$(deb_file): $(dsc_file) +.PHONY: deb_env_create +deb_env_create: pbuilder-dist + pbuilder-dist $(host_dist) $(host_arch) create + +.PHONY: deb_env_update +deb_env_update: pbuilder-dist + pbuilder-dist $(host_dist) $(host_arch) update + +$(deb_file): $(dsc_file) pbuilder-dist mkdir -pv release/deb - pbuilder-dist $(host_dist) build $(dsc_file) --buildresult release/deb + pbuilder-dist $(host_dist) $(host_arch) build $(dsc_file) --buildresult release/deb mv -fv release/deb/$(BRANDING_SHORTNAME)_$(pkg_version)_$(host_arch).deb $(@) ls -lv release/deb diff --git a/debian/changelog b/debian/changelog index ecd3f83f..c200e102 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,11 @@ +mainline (1.3.11) unstable; urgency=medium + + * support old vte versions that need to keep using Vte.Terminal.spawn_sync + * add some deb build conveniences in Makefile to build for arbitrary dist + * support building back to xenial + + -- Brian K. White Tue, 06 Jun 2023 19:04:36 -0400 + mainline (1.3.10) unstable; urgency=medium * switch from Vte.Terminal.spawn_sync to spawn_async to remove the last compiler warning diff --git a/debian/compat b/debian/compat index 48082f72..f599e28b 100644 --- a/debian/compat +++ b/debian/compat @@ -1 +1 @@ -12 +10 diff --git a/po/de.po b/po/de.po index d48d5c80..5b77551c 100644 --- a/po/de.po +++ b/po/de.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-06 08:23-0400\n" +"POT-Creation-Date: 2023-06-07 03:39-0400\n" "PO-Revision-Date: 2023-02-20 18:40+0100\n" "Last-Translator: Marvin Meysel \n" "Language-Team: German\n" @@ -196,33 +196,37 @@ msgstr "Keine Updates gefunden" msgid "Install Kernel Version %s ? (y/n): " msgstr "Kernel-Version %s installieren? (j/n):" -#: src/Common/Main.vala:240 +#: src/Common/Main.vala:158 +msgid "Missing Thread support in Glib." +msgstr "" + +#: src/Common/Main.vala:242 msgid "Wrote config file" msgstr "" -#: src/Common/Main.vala:259 +#: src/Common/Main.vala:261 msgid "No config file" msgstr "" -#: src/Common/Main.vala:321 +#: src/Common/Main.vala:322 msgid "Loaded config file" msgstr "" -#: src/Common/Main.vala:350 +#: src/Common/Main.vala:351 msgid "Called from" msgstr "Angerufen von" -#: src/Common/Main.vala:350 +#: src/Common/Main.vala:351 msgid "at logon" msgstr "beim start" -#: src/Common/Main.vala:351 +#: src/Common/Main.vala:352 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" "Diese Datei wird überschrieben und erneut ausgeführt, wenn Einstellungen in" -#: src/Common/Main.vala:383 +#: src/Common/Main.vala:384 msgid "Notifications are disabled" msgstr "Benachrichtigungen sind deaktiviert" diff --git a/po/el.po b/po/el.po index 42223b8d..b7cd9cd4 100644 --- a/po/el.po +++ b/po/el.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-06 08:23-0400\n" +"POT-Creation-Date: 2023-06-07 03:39-0400\n" "PO-Revision-Date: 2023-01-10 02:03-0600\n" "Last-Translator: Vasilis Kosmidis \n" "Language-Team: Greek\n" @@ -196,34 +196,38 @@ msgstr "Δεν βρέθηκαν ενημερώσεις" msgid "Install Kernel Version %s ? (y/n): " msgstr "Εγκατάσταση του πυρήνα έκδοσης %s ; (ν/ό):" -#: src/Common/Main.vala:240 +#: src/Common/Main.vala:158 +msgid "Missing Thread support in Glib." +msgstr "" + +#: src/Common/Main.vala:242 msgid "Wrote config file" msgstr "" -#: src/Common/Main.vala:259 +#: src/Common/Main.vala:261 msgid "No config file" msgstr "" -#: src/Common/Main.vala:321 +#: src/Common/Main.vala:322 msgid "Loaded config file" msgstr "" -#: src/Common/Main.vala:350 +#: src/Common/Main.vala:351 msgid "Called from" msgstr "Κλήθηκε από" -#: src/Common/Main.vala:350 +#: src/Common/Main.vala:351 msgid "at logon" msgstr "κατά την εκκίνηση" -#: src/Common/Main.vala:351 +#: src/Common/Main.vala:352 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" "Αυτό το αρχείο αντικαθίσταται και εκτελείται ξανά κάθε φορά που " "αποθηκεύονται οι ρυθμίσεις στο" -#: src/Common/Main.vala:383 +#: src/Common/Main.vala:384 msgid "Notifications are disabled" msgstr "Οι ειδοποιήσεις είναι απενεργοποιημένες" diff --git a/po/es.po b/po/es.po index 88853149..986f0e94 100644 --- a/po/es.po +++ b/po/es.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-06 08:23-0400\n" +"POT-Creation-Date: 2023-06-07 03:39-0400\n" "PO-Revision-Date: 2018-01-03 02:03-0600\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish\n" @@ -196,34 +196,38 @@ msgstr "No se encontró ninguna actualización" msgid "Install Kernel Version %s ? (y/n): " msgstr "Instalar la versión del kernel %s? (s/n): " -#: src/Common/Main.vala:240 +#: src/Common/Main.vala:158 +msgid "Missing Thread support in Glib." +msgstr "" + +#: src/Common/Main.vala:242 msgid "Wrote config file" msgstr "" -#: src/Common/Main.vala:259 +#: src/Common/Main.vala:261 msgid "No config file" msgstr "" -#: src/Common/Main.vala:321 +#: src/Common/Main.vala:322 msgid "Loaded config file" msgstr "" -#: src/Common/Main.vala:350 +#: src/Common/Main.vala:351 msgid "Called from" msgstr "Llamado desde" -#: src/Common/Main.vala:350 +#: src/Common/Main.vala:351 msgid "at logon" msgstr "al inicio" -#: src/Common/Main.vala:351 +#: src/Common/Main.vala:352 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" "Este archivo se sobrescribe y se ejecuta de nuevo cada vez que se guarda la " "configuración en" -#: src/Common/Main.vala:383 +#: src/Common/Main.vala:384 msgid "Notifications are disabled" msgstr "Las notificaciones están deshabilitadas" diff --git a/po/fr.po b/po/fr.po index 64c9da96..22fe0d59 100644 --- a/po/fr.po +++ b/po/fr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-06 08:23-0400\n" +"POT-Creation-Date: 2023-06-07 03:39-0400\n" "PO-Revision-Date: 2018-08-05 15:50+0200\n" "Last-Translator: Yolateng0 \n" "Language-Team: French\n" @@ -196,34 +196,38 @@ msgstr "Aucune mise à jour disponible" msgid "Install Kernel Version %s ? (y/n): " msgstr "Installer le noyau en version %s ? (y/n): " -#: src/Common/Main.vala:240 +#: src/Common/Main.vala:158 +msgid "Missing Thread support in Glib." +msgstr "" + +#: src/Common/Main.vala:242 msgid "Wrote config file" msgstr "" -#: src/Common/Main.vala:259 +#: src/Common/Main.vala:261 msgid "No config file" msgstr "" -#: src/Common/Main.vala:321 +#: src/Common/Main.vala:322 msgid "Loaded config file" msgstr "" -#: src/Common/Main.vala:350 +#: src/Common/Main.vala:351 msgid "Called from" msgstr "Appelé à partir de" -#: src/Common/Main.vala:350 +#: src/Common/Main.vala:351 msgid "at logon" msgstr "au démarrage" -#: src/Common/Main.vala:351 +#: src/Common/Main.vala:352 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" "Ce fichier est écrasé et exécuté à nouveau chaque fois que les paramètres " "sont enregistrés dans" -#: src/Common/Main.vala:383 +#: src/Common/Main.vala:384 msgid "Notifications are disabled" msgstr "Les notifications sont désactivées" diff --git a/po/hr.po b/po/hr.po index 0fcb0c17..b11201d7 100644 --- a/po/hr.po +++ b/po/hr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-06 08:23-0400\n" +"POT-Creation-Date: 2023-06-07 03:39-0400\n" "PO-Revision-Date: 2022-09-22 12:13+0200\n" "Last-Translator: gogo \n" "Language-Team: Croatian\n" @@ -196,33 +196,37 @@ msgstr "Nema pronađenih nadopuna" msgid "Install Kernel Version %s ? (y/n): " msgstr "Instaliraj kernel inačice %s ? (d/n): " -#: src/Common/Main.vala:240 +#: src/Common/Main.vala:158 +msgid "Missing Thread support in Glib." +msgstr "" + +#: src/Common/Main.vala:242 msgid "Wrote config file" msgstr "" -#: src/Common/Main.vala:259 +#: src/Common/Main.vala:261 msgid "No config file" msgstr "" -#: src/Common/Main.vala:321 +#: src/Common/Main.vala:322 msgid "Loaded config file" msgstr "" -#: src/Common/Main.vala:350 +#: src/Common/Main.vala:351 msgid "Called from" msgstr "Pozvano od" -#: src/Common/Main.vala:350 +#: src/Common/Main.vala:351 msgid "at logon" msgstr "indításkor" -#: src/Common/Main.vala:351 +#: src/Common/Main.vala:352 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" "Ova se datoteka prepisuje i ponovno izvršava kad god se postavke spremaju u" -#: src/Common/Main.vala:383 +#: src/Common/Main.vala:384 msgid "Notifications are disabled" msgstr "Obavijesti su onemogućene" diff --git a/po/it.po b/po/it.po index 49612486..c57b335a 100644 --- a/po/it.po +++ b/po/it.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-06 08:23-0400\n" +"POT-Creation-Date: 2023-06-07 03:39-0400\n" "PO-Revision-Date: 2020-08-22 15:35+0100\n" "Last-Translator: Demetrio Mendozzi\n" "Language-Team: Italian\n" @@ -194,34 +194,38 @@ msgstr "Nessun aggiornamento trovato" msgid "Install Kernel Version %s ? (y/n): " msgstr "Installare la versione del kernel %s ? (y/n): " -#: src/Common/Main.vala:240 +#: src/Common/Main.vala:158 +msgid "Missing Thread support in Glib." +msgstr "" + +#: src/Common/Main.vala:242 msgid "Wrote config file" msgstr "" -#: src/Common/Main.vala:259 +#: src/Common/Main.vala:261 msgid "No config file" msgstr "" -#: src/Common/Main.vala:321 +#: src/Common/Main.vala:322 msgid "Loaded config file" msgstr "" -#: src/Common/Main.vala:350 +#: src/Common/Main.vala:351 msgid "Called from" msgstr "Chiamato da" -#: src/Common/Main.vala:350 +#: src/Common/Main.vala:351 msgid "at logon" msgstr "all'avvio" -#: src/Common/Main.vala:351 +#: src/Common/Main.vala:352 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" "Questo file viene sovrascritto ed eseguito nuovamente ogni volta che vengono " "salvate le impostazioni" -#: src/Common/Main.vala:383 +#: src/Common/Main.vala:384 msgid "Notifications are disabled" msgstr "Le notifiche sono disabilitate" diff --git a/po/ko.po b/po/ko.po index d221e5af..b24396ac 100644 --- a/po/ko.po +++ b/po/ko.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-06 08:23-0400\n" +"POT-Creation-Date: 2023-06-07 03:39-0400\n" "PO-Revision-Date: 2022-09-28 11:48+0900\n" "Last-Translator: Kevin Kim \n" "Language-Team: Korean\n" @@ -196,32 +196,36 @@ msgstr "업데이트를 찾을 수 없습니다" msgid "Install Kernel Version %s ? (y/n): " msgstr "커널 %s 버전을 설치하시겠습니까? (y/n): " -#: src/Common/Main.vala:240 +#: src/Common/Main.vala:158 +msgid "Missing Thread support in Glib." +msgstr "" + +#: src/Common/Main.vala:242 msgid "Wrote config file" msgstr "" -#: src/Common/Main.vala:259 +#: src/Common/Main.vala:261 msgid "No config file" msgstr "" -#: src/Common/Main.vala:321 +#: src/Common/Main.vala:322 msgid "Loaded config file" msgstr "" -#: src/Common/Main.vala:350 +#: src/Common/Main.vala:351 msgid "Called from" msgstr "에서 호출" -#: src/Common/Main.vala:350 +#: src/Common/Main.vala:351 msgid "at logon" msgstr "로그온 시" -#: src/Common/Main.vala:351 +#: src/Common/Main.vala:352 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "이 파일은 덮어쓰고 설정이 저장될 때마다 다시 실행됩니다." -#: src/Common/Main.vala:383 +#: src/Common/Main.vala:384 msgid "Notifications are disabled" msgstr "알림이 비활성화 되었습니다" diff --git a/po/messages.pot b/po/messages.pot index 055eb333..e4dd3f11 100644 --- a/po/messages.pot +++ b/po/messages.pot @@ -6,9 +6,9 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: mainline 1.3.10\n" +"Project-Id-Version: mainline 1.3.11\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-06 08:23-0400\n" +"POT-Creation-Date: 2023-06-07 03:39-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -191,32 +191,36 @@ msgstr "" msgid "Install Kernel Version %s ? (y/n): " msgstr "" -#: src/Common/Main.vala:240 +#: src/Common/Main.vala:158 +msgid "Missing Thread support in Glib." +msgstr "" + +#: src/Common/Main.vala:242 msgid "Wrote config file" msgstr "" -#: src/Common/Main.vala:259 +#: src/Common/Main.vala:261 msgid "No config file" msgstr "" -#: src/Common/Main.vala:321 +#: src/Common/Main.vala:322 msgid "Loaded config file" msgstr "" -#: src/Common/Main.vala:350 +#: src/Common/Main.vala:351 msgid "Called from" msgstr "" -#: src/Common/Main.vala:350 +#: src/Common/Main.vala:351 msgid "at logon" msgstr "" -#: src/Common/Main.vala:351 +#: src/Common/Main.vala:352 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" -#: src/Common/Main.vala:383 +#: src/Common/Main.vala:384 msgid "Notifications are disabled" msgstr "" diff --git a/po/nl.po b/po/nl.po index 499dc524..d9beaf2e 100644 --- a/po/nl.po +++ b/po/nl.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-06 08:23-0400\n" +"POT-Creation-Date: 2023-06-07 03:39-0400\n" "PO-Revision-Date: 2020-08-23 13:55+0200\n" "Last-Translator: Heimen Stoffels \n" "Language-Team: Dutch (Netherlands)\n" @@ -196,34 +196,38 @@ msgstr "Geen updates gevonden" msgid "Install Kernel Version %s ? (y/n): " msgstr "Wilt u versie %s installeren? (j/n): " -#: src/Common/Main.vala:240 +#: src/Common/Main.vala:158 +msgid "Missing Thread support in Glib." +msgstr "" + +#: src/Common/Main.vala:242 msgid "Wrote config file" msgstr "" -#: src/Common/Main.vala:259 +#: src/Common/Main.vala:261 msgid "No config file" msgstr "" -#: src/Common/Main.vala:321 +#: src/Common/Main.vala:322 msgid "Loaded config file" msgstr "" -#: src/Common/Main.vala:350 +#: src/Common/Main.vala:351 msgid "Called from" msgstr "Aangeroepen door" -#: src/Common/Main.vala:350 +#: src/Common/Main.vala:351 msgid "at logon" msgstr "bij het opstarten" -#: src/Common/Main.vala:351 +#: src/Common/Main.vala:352 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" "Dit bestand wordt overschreven en opnieuw uitgevoerd wanneer instellingen " "worden opgeslagen in" -#: src/Common/Main.vala:383 +#: src/Common/Main.vala:384 msgid "Notifications are disabled" msgstr "Meldingen zijn uitgeschakeld" diff --git a/po/pl.po b/po/pl.po index 8aabc29a..a70b36af 100644 --- a/po/pl.po +++ b/po/pl.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-06 08:23-0400\n" +"POT-Creation-Date: 2023-06-07 03:39-0400\n" "PO-Revision-Date: 2023-06-03 14:24+0200\n" "Last-Translator: Matthaiks\n" "Language-Team: Polish\n" @@ -189,34 +189,38 @@ msgstr "Nie znaleziono aktualizacji" msgid "Install Kernel Version %s ? (y/n): " msgstr "Zainstalować wersję jądra %s? (t/n): " -#: src/Common/Main.vala:240 +#: src/Common/Main.vala:158 +msgid "Missing Thread support in Glib." +msgstr "" + +#: src/Common/Main.vala:242 msgid "Wrote config file" msgstr "" -#: src/Common/Main.vala:259 +#: src/Common/Main.vala:261 msgid "No config file" msgstr "" -#: src/Common/Main.vala:321 +#: src/Common/Main.vala:322 msgid "Loaded config file" msgstr "" -#: src/Common/Main.vala:350 +#: src/Common/Main.vala:351 msgid "Called from" msgstr "Wywołano z" -#: src/Common/Main.vala:350 +#: src/Common/Main.vala:351 msgid "at logon" msgstr "przy logowaniu" -#: src/Common/Main.vala:351 +#: src/Common/Main.vala:352 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" "Ten plik jest nadpisywany i wykonywany ponownie za każdym razem, gdy " "ustawienia są zapisywane w" -#: src/Common/Main.vala:383 +#: src/Common/Main.vala:384 msgid "Notifications are disabled" msgstr "Powiadomienia są wyłączone" diff --git a/po/ru.po b/po/ru.po index 2ebb4d84..1d6baba3 100644 --- a/po/ru.po +++ b/po/ru.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-06 08:23-0400\n" +"POT-Creation-Date: 2023-06-07 03:39-0400\n" "PO-Revision-Date: 2023-06-05 23:29+0300\n" "Last-Translator: Danik2343 \n" "Language-Team: Russian\n" @@ -189,33 +189,37 @@ msgstr "Обновлений не найдено" msgid "Install Kernel Version %s ? (y/n): " msgstr "Установить версию ядра %s ? (y/n): " -#: src/Common/Main.vala:240 +#: src/Common/Main.vala:158 +msgid "Missing Thread support in Glib." +msgstr "" + +#: src/Common/Main.vala:242 msgid "Wrote config file" msgstr "" -#: src/Common/Main.vala:259 +#: src/Common/Main.vala:261 msgid "No config file" msgstr "" -#: src/Common/Main.vala:321 +#: src/Common/Main.vala:322 msgid "Loaded config file" msgstr "" -#: src/Common/Main.vala:350 +#: src/Common/Main.vala:351 msgid "Called from" msgstr "Вызван из" -#: src/Common/Main.vala:350 +#: src/Common/Main.vala:351 msgid "at logon" msgstr "при запуске" -#: src/Common/Main.vala:351 +#: src/Common/Main.vala:352 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" "Этот файл перезаписывается и выполняется снова при сохранении настроек в" -#: src/Common/Main.vala:383 +#: src/Common/Main.vala:384 msgid "Notifications are disabled" msgstr "Уведомления отключены" diff --git a/po/sv.po b/po/sv.po index ac1d8864..de523a2a 100644 --- a/po/sv.po +++ b/po/sv.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-06 08:23-0400\n" +"POT-Creation-Date: 2023-06-07 03:39-0400\n" "PO-Revision-Date: 2018-01-13 16:56+0100\n" "Last-Translator: Åke Engelbrektson \n" "Language-Team:Swedish\n" @@ -196,32 +196,36 @@ msgstr "Inga uppdateringar hittades" msgid "Install Kernel Version %s ? (y/n): " msgstr "Installera kärnversion %s ? (j/n):" -#: src/Common/Main.vala:240 +#: src/Common/Main.vala:158 +msgid "Missing Thread support in Glib." +msgstr "" + +#: src/Common/Main.vala:242 msgid "Wrote config file" msgstr "" -#: src/Common/Main.vala:259 +#: src/Common/Main.vala:261 msgid "No config file" msgstr "" -#: src/Common/Main.vala:321 +#: src/Common/Main.vala:322 msgid "Loaded config file" msgstr "" -#: src/Common/Main.vala:350 +#: src/Common/Main.vala:351 msgid "Called from" msgstr "Ringde från" -#: src/Common/Main.vala:350 +#: src/Common/Main.vala:351 msgid "at logon" msgstr "vid start" -#: src/Common/Main.vala:351 +#: src/Common/Main.vala:352 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "Den här filen skrivs över och körs igen när inställningar sparas i" -#: src/Common/Main.vala:383 +#: src/Common/Main.vala:384 msgid "Notifications are disabled" msgstr "Meddelanden är inaktiverade" diff --git a/po/tr.po b/po/tr.po index bf448d17..c2c24ad0 100644 --- a/po/tr.po +++ b/po/tr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-06 08:23-0400\n" +"POT-Creation-Date: 2023-06-07 03:39-0400\n" "PO-Revision-Date: 2022-08-06 16:48+0300\n" "Last-Translator: Sabri Ünal \n" "Language-Team: Turkish\n" @@ -196,33 +196,37 @@ msgstr "Güncelleme bulunamadı" msgid "Install Kernel Version %s ? (y/n): " msgstr "Linux Çekirdek Sürümü %s Kurulsun mu? (e/h): " -#: src/Common/Main.vala:240 +#: src/Common/Main.vala:158 +msgid "Missing Thread support in Glib." +msgstr "" + +#: src/Common/Main.vala:242 msgid "Wrote config file" msgstr "" -#: src/Common/Main.vala:259 +#: src/Common/Main.vala:261 msgid "No config file" msgstr "" -#: src/Common/Main.vala:321 +#: src/Common/Main.vala:322 msgid "Loaded config file" msgstr "" -#: src/Common/Main.vala:350 +#: src/Common/Main.vala:351 msgid "Called from" msgstr "Çağrı konumu" -#: src/Common/Main.vala:350 +#: src/Common/Main.vala:351 msgid "at logon" msgstr "başlangıçta" -#: src/Common/Main.vala:351 +#: src/Common/Main.vala:352 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" "Bu dosyanın üzerine yazılır ve ayarlar her kaydedildiğinde yeniden yürütülür" -#: src/Common/Main.vala:383 +#: src/Common/Main.vala:384 msgid "Notifications are disabled" msgstr "Bildirimler devre dışı bırakılmış" diff --git a/po/uk.po b/po/uk.po index d35ea8e3..69151401 100644 --- a/po/uk.po +++ b/po/uk.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-06 08:23-0400\n" +"POT-Creation-Date: 2023-06-07 03:39-0400\n" "PO-Revision-Date: 2019-07-25 11:00+0300\n" "Last-Translator: Serhii Golovko \n" "Language-Team: Ukranian\n" @@ -190,33 +190,37 @@ msgstr "Оновлень не знайдено" msgid "Install Kernel Version %s ? (y/n): " msgstr "Встановити Ядро Версії %s ? (так/ні): " -#: src/Common/Main.vala:240 +#: src/Common/Main.vala:158 +msgid "Missing Thread support in Glib." +msgstr "" + +#: src/Common/Main.vala:242 msgid "Wrote config file" msgstr "" -#: src/Common/Main.vala:259 +#: src/Common/Main.vala:261 msgid "No config file" msgstr "" -#: src/Common/Main.vala:321 +#: src/Common/Main.vala:322 msgid "Loaded config file" msgstr "" -#: src/Common/Main.vala:350 +#: src/Common/Main.vala:351 msgid "Called from" msgstr "Викликано з" -#: src/Common/Main.vala:350 +#: src/Common/Main.vala:351 msgid "at logon" msgstr "при запуску" -#: src/Common/Main.vala:351 +#: src/Common/Main.vala:352 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" "Цей файл перезаписується та виконується знову під час збереження налаштувань" -#: src/Common/Main.vala:383 +#: src/Common/Main.vala:384 msgid "Notifications are disabled" msgstr "Повідомлення вимкнено" diff --git a/src/Common/Main.vala b/src/Common/Main.vala index 17f824e0..9d440086 100644 --- a/src/Common/Main.vala +++ b/src/Common/Main.vala @@ -28,7 +28,8 @@ using TeeJee.FileSystem; using TeeJee.ProcessHelper; using TeeJee.Misc; using l.misc; -#if ! GLIB_JSON_1_6 +//#if ! HAVE_GLIB_JSON_1_6 +#if ! VALA_0_50 using l.json; #endif @@ -154,6 +155,7 @@ public class Main : GLib.Object { get_env(); set_locale(); vprint(BRANDING_SHORTNAME+" "+BRANDING_VERSION); + if (!Thread.supported()) { vprint(_("Missing Thread support in Glib."),1,stderr); exit(1); } init_paths(); load_app_config(); Package.initialize(); @@ -265,8 +267,8 @@ public class Main : GLib.Object { var node = parser.get_root(); var config = node.get_object(); -#if GLIB_JSON_1_6 - vprint("glib-json >= 1.6",3); +//#if HAVE_GLIB_JSON_1_6 +#if VALA_0_50 ppa_uri = config.get_string_member_with_default( "ppa_uri", DEFAULT_PPA_URI ); all_proxy = config.get_string_member_with_default( "all_proxy", DEFAULT_ALL_PROXY ); connect_timeout_seconds = (int)config.get_int_member_with_default( "connect_timeout_seconds", DEFAULT_CONNECT_TIMEOUT_SECONDS ); @@ -288,7 +290,6 @@ public class Main : GLib.Object { term_x = (int)config.get_int_member_with_default( "term_x", DEFAULT_TERM_X ); term_y = (int)config.get_int_member_with_default( "term_y", DEFAULT_TERM_Y ); #else - vprint("glib-json < 1.6",3); ppa_uri = json_get_string( config, "ppa_uri", DEFAULT_PPA_URI ); all_proxy = json_get_string( config, "all_proxy", DEFAULT_ALL_PROXY ); connect_timeout_seconds = json_get_int( config, "connect_timeout_seconds", DEFAULT_CONNECT_TIMEOUT_SECONDS ); diff --git a/src/Gtk/MainWindow.vala b/src/Gtk/MainWindow.vala index ce427557..88674123 100644 --- a/src/Gtk/MainWindow.vala +++ b/src/Gtk/MainWindow.vala @@ -116,7 +116,7 @@ public class MainWindow : Window { // add treeview tv.get_selection().mode = SelectionMode.MULTIPLE; tv.headers_visible = true; - tv.set_grid_lines(BOTH); + tv.set_grid_lines(TreeViewGridLines.BOTH); tv.expand = true; tv.row_activated.connect(tv_row_activated); diff --git a/src/Gtk/TerminalWindow.vala b/src/Gtk/TerminalWindow.vala index 461c8e9f..a028d456 100644 --- a/src/Gtk/TerminalWindow.vala +++ b/src/Gtk/TerminalWindow.vala @@ -176,7 +176,7 @@ public class TerminalWindow : Gtk.Window { } -#if VTE_ASYNC +#if VALA_0_50 public void async_cb(Vte.Terminal terminal, Pid pid, Error? error) { if (error != null) { vprint("Error setting up terminal: "+error.message,1,stderr); return; } vprint("TerminalWindow: child_pid="+pid.to_string(),3); @@ -191,19 +191,20 @@ public class TerminalWindow : Gtk.Window { string[] argv = {"sh", f}; string[] env = Environ.get(); -#if VTE_ASYNC - is_running = true; - term.spawn_async( - Vte.PtyFlags.DEFAULT, // pty_flags - d, // working_directory - argv, // argv - env, // env - GLib.SpawnFlags.SEARCH_PATH, //spawn_flags - null, // child_setup() func - -1, // timeout - null, // cancellable - async_cb // callback - ); +//#if HAVE_VTE_0_66 +#if VALA_0_50 + is_running = true; + term.spawn_async( + Vte.PtyFlags.DEFAULT, // pty_flags + d, // working_directory + argv, // argv + env, // env + GLib.SpawnFlags.SEARCH_PATH, //spawn_flags + null, // child_setup() func + -1, // timeout + null, // cancellable + async_cb // callback + ); #else try { is_running = true; From 65cf35c836e59f29977a572bce6aad08900b70b0 Mon Sep 17 00:00:00 2001 From: Danik2343 <38865696+Danik2343@users.noreply.github.com> Date: Thu, 8 Jun 2023 11:08:26 +0300 Subject: [PATCH 367/567] Update Russian Language --- po/ru.po | 44 ++++++++++++++++++-------------------------- 1 file changed, 18 insertions(+), 26 deletions(-) diff --git a/po/ru.po b/po/ru.po index 1d6baba3..e1f1c64f 100644 --- a/po/ru.po +++ b/po/ru.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-06-07 03:39-0400\n" -"PO-Revision-Date: 2023-06-05 23:29+0300\n" +"PO-Revision-Date: 2023-06-08 11:06+0300\n" "Last-Translator: Danik2343 \n" "Language-Team: Russian\n" "Language: ru\n" @@ -11,7 +11,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2016-12-13 11:48+0000\n" -"X-Generator: Poedit 3.2.2\n" +"X-Generator: Poedit 3.3\n" #: src/Common/LinuxKernel.vala:104 msgid "Distribution" @@ -64,7 +64,7 @@ msgstr "заблокирован" #: src/Common/LinuxKernel.vala:466 src/Common/LinuxKernel.vala:995 #: src/Common/LinuxKernel.vala:1086 msgid "is locked." -msgstr "заблокирован" +msgstr "заблокирован." #: src/Common/LinuxKernel.vala:661 src/Gtk/MainWindow.vala:521 msgid "Running" @@ -91,9 +91,8 @@ msgid "File not found" msgstr "Файл не найден" #: src/Common/LinuxKernel.vala:814 -#, fuzzy msgid "needs update" -msgstr "Последнее обновление" +msgstr "требуется обновление" #: src/Common/LinuxKernel.vala:881 msgid "Available Kernels" @@ -180,9 +179,8 @@ msgid "Continue ?" msgstr "Продолжить ?" #: src/Common/LinuxKernel.vala:1123 -#, fuzzy msgid "No updates" -msgstr "Обновлений не найдено" +msgstr "Нет обнолений" #: src/Common/LinuxKernel.vala:1129 #, c-format @@ -191,19 +189,19 @@ msgstr "Установить версию ядра %s ? (y/n): " #: src/Common/Main.vala:158 msgid "Missing Thread support in Glib." -msgstr "" +msgstr "Отсутствие поддержки потоков в Glib." #: src/Common/Main.vala:242 msgid "Wrote config file" -msgstr "" +msgstr "Записан файл конфигурации" #: src/Common/Main.vala:261 msgid "No config file" -msgstr "" +msgstr "Нет файла конфигурации" #: src/Common/Main.vala:322 msgid "Loaded config file" -msgstr "" +msgstr "Загружен файл конфигурации" #: src/Common/Main.vala:351 msgid "Called from" @@ -214,10 +212,8 @@ msgid "at logon" msgstr "при запуске" #: src/Common/Main.vala:352 -msgid "" -"This file is over-written and executed again whenever settings are saved in" -msgstr "" -"Этот файл перезаписывается и выполняется снова при сохранении настроек в" +msgid "This file is over-written and executed again whenever settings are saved in" +msgstr "Этот файл перезаписывается и выполняется снова при сохранении настроек в" #: src/Common/Main.vala:384 msgid "Notifications are disabled" @@ -306,12 +302,11 @@ msgstr "Одна или несколько строк версии, взятых #: src/Console/AppConsole.vala:64 msgid "comma, pipe, or colon-seperated, or quoted space seperated" -msgstr "" -"через запятую, вертикальную черту или двоеточие или через пробел в кавычках" +msgstr "через запятую, вертикальную черту или двоеточие или через пробел в кавычках" #: src/Console/AppConsole.vala:65 msgid "Locked kernels and the currently running kernel are ignored" -msgstr "Заблокированные ядра и работающее в данный момент ядро игнорируются." +msgstr "Заблокированные ядра и работающее в данный момент ядро игнорируются" #: src/Console/AppConsole.vala:139 src/Console/AppConsole.vala:190 #: src/Gtk/AppGtk.vala:109 @@ -336,17 +331,15 @@ msgstr "Уведомления отключены" #: src/Console/AppConsole.vala:216 msgid "No" -msgstr "" +msgstr "Нет" #: src/Console/AppConsole.vala:231 -#, fuzzy msgid "notify point releases disabled" -msgstr "Уведомлять, если доступно небольшое обновление" +msgstr "уведомления о выпуске точечных релизов отключены" #: src/Console/AppConsole.vala:239 -#, fuzzy msgid "notify major releases disabled" -msgstr "Уведомлять, если доступно крупное обновление" +msgstr "отключено уведомление о крупных релизах" #: src/Console/AppConsole.vala:244 #, c-format @@ -478,13 +471,12 @@ msgid "available" msgstr "доступно" #: src/Gtk/MainWindow.vala:542 -#, fuzzy msgid "is already installed" -msgstr "уже установлен." +msgstr "уже установлен" #: src/Gtk/MainWindow.vala:544 msgid "adding" -msgstr "" +msgstr "добавление" #: src/Gtk/MainWindow.vala:570 src/Gtk/MainWindow.vala:604 #: src/Gtk/MainWindow.vala:632 From 7933f265a5c1dbed241f2a47094c785adeb1e855 Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Thu, 8 Jun 2023 04:47:41 -0400 Subject: [PATCH 368/567] nothing formating --- po/de.po | 138 ++++++++++++++++++------------------ po/el.po | 138 ++++++++++++++++++------------------ po/es.po | 138 ++++++++++++++++++------------------ po/fr.po | 138 ++++++++++++++++++------------------ po/hr.po | 138 ++++++++++++++++++------------------ po/it.po | 138 ++++++++++++++++++------------------ po/ko.po | 138 ++++++++++++++++++------------------ po/messages.pot | 138 ++++++++++++++++++------------------ po/nl.po | 138 ++++++++++++++++++------------------ po/pl.po | 138 ++++++++++++++++++------------------ po/ru.po | 138 ++++++++++++++++++------------------ po/sv.po | 138 ++++++++++++++++++------------------ po/tr.po | 138 ++++++++++++++++++------------------ po/uk.po | 138 ++++++++++++++++++------------------ src/Common/LinuxKernel.vala | 15 ++-- src/Common/Main.vala | 112 +++++++++++++---------------- src/Gtk/SettingsDialog.vala | 18 ++--- src/Gtk/TerminalWindow.vala | 3 +- 18 files changed, 1030 insertions(+), 1050 deletions(-) diff --git a/po/de.po b/po/de.po index 5b77551c..bcb103ff 100644 --- a/po/de.po +++ b/po/de.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-07 03:39-0400\n" +"POT-Creation-Date: 2023-06-08 03:52-0400\n" "PO-Revision-Date: 2023-02-20 18:40+0100\n" "Last-Translator: Marvin Meysel \n" "Language-Team: German\n" @@ -13,220 +13,220 @@ msgstr "" "X-Launchpad-Export-Date: 2017-04-13 11:48+0000\n" "X-Generator: Poedit 3.1.1\n" -#: src/Common/LinuxKernel.vala:104 +#: src/Common/LinuxKernel.vala:102 msgid "Distribution" msgstr "Distribution" -#: src/Common/LinuxKernel.vala:119 +#: src/Common/LinuxKernel.vala:117 msgid "Architecture" msgstr "Architektur" -#: src/Common/LinuxKernel.vala:134 +#: src/Common/LinuxKernel.vala:132 msgid "Running kernel" msgstr "Laufender kernel" -#: src/Common/LinuxKernel.vala:221 +#: src/Common/LinuxKernel.vala:219 msgid "loading cached" msgstr "laden gecached" -#: src/Common/LinuxKernel.vala:233 +#: src/Common/LinuxKernel.vala:231 msgid "queuing download" msgstr "download der warteschlange" -#: src/Common/LinuxKernel.vala:253 +#: src/Common/LinuxKernel.vala:251 msgid "Fetching individual kernel indexes" msgstr "Abrufen einzelner Kernel-Indizes" -#: src/Common/LinuxKernel.vala:267 +#: src/Common/LinuxKernel.vala:265 msgid "loading downloaded" msgstr "laden von heruntergeladenen Dateien" -#: src/Common/LinuxKernel.vala:307 +#: src/Common/LinuxKernel.vala:305 msgid "Updating from" msgstr "Aktualisieren von" -#: src/Common/LinuxKernel.vala:315 +#: src/Common/LinuxKernel.vala:313 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:318 +#: src/Common/LinuxKernel.vala:316 msgid "FAILED" msgstr "MISSLUNGEN" -#: src/Common/LinuxKernel.vala:383 +#: src/Common/LinuxKernel.vala:381 msgid "Found installed" msgstr "Installiert gefunden" -#: src/Common/LinuxKernel.vala:384 +#: src/Common/LinuxKernel.vala:382 msgid "locked" msgstr "" -#: src/Common/LinuxKernel.vala:466 src/Common/LinuxKernel.vala:995 -#: src/Common/LinuxKernel.vala:1086 +#: src/Common/LinuxKernel.vala:464 src/Common/LinuxKernel.vala:994 +#: src/Common/LinuxKernel.vala:1085 msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:661 src/Gtk/MainWindow.vala:521 +#: src/Common/LinuxKernel.vala:660 src/Gtk/MainWindow.vala:521 msgid "Running" msgstr "Läuft" -#: src/Common/LinuxKernel.vala:662 +#: src/Common/LinuxKernel.vala:661 msgid "Installed" msgstr "Installiert" -#: src/Common/LinuxKernel.vala:663 +#: src/Common/LinuxKernel.vala:662 msgid "Invalid" msgstr "Ungültig" -#: src/Common/LinuxKernel.vala:756 +#: src/Common/LinuxKernel.vala:755 msgid "Packages Available" msgstr "Verfügbare Pakete" -#: src/Common/LinuxKernel.vala:762 +#: src/Common/LinuxKernel.vala:761 msgid "Packages Installed" msgstr "Installierte Pakete" -#: src/Common/LinuxKernel.vala:787 src/lib/TeeJee.FileSystem.vala:94 +#: src/Common/LinuxKernel.vala:786 src/lib/TeeJee.FileSystem.vala:94 msgid "File not found" msgstr "Datei nicht gefunden " -#: src/Common/LinuxKernel.vala:814 +#: src/Common/LinuxKernel.vala:813 #, fuzzy msgid "needs update" msgstr "Neustes Update" -#: src/Common/LinuxKernel.vala:881 +#: src/Common/LinuxKernel.vala:880 msgid "Available Kernels" msgstr "Verfügbare Kernel" -#: src/Common/LinuxKernel.vala:915 src/Gtk/MainWindow.vala:135 +#: src/Common/LinuxKernel.vala:914 src/Gtk/MainWindow.vala:135 msgid "Kernel" msgstr "Kernel" -#: src/Common/LinuxKernel.vala:915 +#: src/Common/LinuxKernel.vala:914 #, fuzzy msgid "not found" msgstr "Datei nicht gefunden " -#: src/Common/LinuxKernel.vala:922 +#: src/Common/LinuxKernel.vala:921 #, fuzzy msgid "Download: no downloadable kernels specified" msgstr "Befehl nicht angegeben" -#: src/Common/LinuxKernel.vala:938 +#: src/Common/LinuxKernel.vala:937 msgid "enabled" msgstr "ermöglichte" -#: src/Common/LinuxKernel.vala:963 +#: src/Common/LinuxKernel.vala:962 msgid "Downloading" msgstr "Laden" -#: src/Common/LinuxKernel.vala:981 +#: src/Common/LinuxKernel.vala:980 #, fuzzy msgid "Installing selected kernels" msgstr "Deinstallation des angegebenen Kernels" -#: src/Common/LinuxKernel.vala:987 src/Common/LinuxKernel.vala:1026 +#: src/Common/LinuxKernel.vala:986 src/Common/LinuxKernel.vala:1025 #, fuzzy msgid "Requested" msgstr "angefordert" -#: src/Common/LinuxKernel.vala:990 +#: src/Common/LinuxKernel.vala:989 msgid "is already installed." msgstr "ist bereits installiert." -#: src/Common/LinuxKernel.vala:1000 +#: src/Common/LinuxKernel.vala:999 msgid "download failed." msgstr "" -#: src/Common/LinuxKernel.vala:1007 src/Gtk/MainWindow.vala:548 +#: src/Common/LinuxKernel.vala:1006 src/Gtk/MainWindow.vala:548 #, fuzzy msgid "Install: no installable kernels specified" msgstr "Befehl nicht angegeben" -#: src/Common/LinuxKernel.vala:1022 +#: src/Common/LinuxKernel.vala:1021 msgid "Uninstalling selected kernels" msgstr "Deinstallation des angegebenen Kernels" -#: src/Common/LinuxKernel.vala:1029 +#: src/Common/LinuxKernel.vala:1028 #, fuzzy msgid "Not uninstalling the currently running kernel" msgstr "Den aktuell laufenden Kernel wird nicht deinstalliert" -#: src/Common/LinuxKernel.vala:1034 src/Gtk/MainWindow.vala:543 +#: src/Common/LinuxKernel.vala:1033 src/Gtk/MainWindow.vala:543 msgid "is locked" msgstr "" -#: src/Common/LinuxKernel.vala:1042 +#: src/Common/LinuxKernel.vala:1041 msgid "found" msgstr "gründen" -#: src/Common/LinuxKernel.vala:1046 +#: src/Common/LinuxKernel.vala:1045 msgid "Uninstall: no uninstallable packages found" msgstr "" -#: src/Common/LinuxKernel.vala:1082 +#: src/Common/LinuxKernel.vala:1081 #, fuzzy msgid "is the highest installed version." msgstr "Deinstallieren Sie alle bis auf die höchste installierte Version" -#: src/Common/LinuxKernel.vala:1095 +#: src/Common/LinuxKernel.vala:1094 msgid "Could not find running kernel in list" msgstr "Konnte keinen laufenden Kernel in der Liste finden" -#: src/Common/LinuxKernel.vala:1100 +#: src/Common/LinuxKernel.vala:1099 msgid "Could not find any kernels to uninstall" msgstr "Es konnten keine Kernel zum Deinstallieren gefunden werden" -#: src/Common/LinuxKernel.vala:1105 +#: src/Common/LinuxKernel.vala:1104 msgid "The following kernels will be uninstalled" msgstr "Die folgenden Kernel werden deinstalliert" -#: src/Common/LinuxKernel.vala:1107 +#: src/Common/LinuxKernel.vala:1106 msgid "Continue ?" msgstr "Weiter ?" -#: src/Common/LinuxKernel.vala:1123 +#: src/Common/LinuxKernel.vala:1122 #, fuzzy msgid "No updates" msgstr "Keine Updates gefunden" -#: src/Common/LinuxKernel.vala:1129 +#: src/Common/LinuxKernel.vala:1128 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Kernel-Version %s installieren? (j/n):" -#: src/Common/Main.vala:158 +#: src/Common/Main.vala:157 msgid "Missing Thread support in Glib." msgstr "" -#: src/Common/Main.vala:242 +#: src/Common/Main.vala:241 msgid "Wrote config file" msgstr "" -#: src/Common/Main.vala:261 +#: src/Common/Main.vala:260 msgid "No config file" msgstr "" -#: src/Common/Main.vala:322 +#: src/Common/Main.vala:319 msgid "Loaded config file" msgstr "" -#: src/Common/Main.vala:351 +#: src/Common/Main.vala:339 msgid "Called from" msgstr "Angerufen von" -#: src/Common/Main.vala:351 +#: src/Common/Main.vala:339 msgid "at logon" msgstr "beim start" -#: src/Common/Main.vala:352 +#: src/Common/Main.vala:340 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" "Diese Datei wird überschrieben und erneut ausgeführt, wenn Einstellungen in" -#: src/Common/Main.vala:384 +#: src/Common/Main.vala:372 msgid "Notifications are disabled" msgstr "Benachrichtigungen sind deaktiviert" @@ -367,7 +367,7 @@ msgstr "Benachrichtigen, wenn eine größere Version verfügbar ist" msgid "Kernel %s Available" msgstr "Kernel %s verfügbar" -#: src/Console/AppConsole.vala:248 src/Gtk/SettingsDialog.vala:151 +#: src/Console/AppConsole.vala:248 src/Gtk/SettingsDialog.vala:145 msgid "Show" msgstr "Zeigen" @@ -525,64 +525,64 @@ msgstr "Sekundenintervall für das Debuggen aktiviert" msgid "Check every" msgstr "Prüfen Sie jede" -#: src/Gtk/SettingsDialog.vala:119 +#: src/Gtk/SettingsDialog.vala:118 msgid "Hours" msgstr "Stunden" -#: src/Gtk/SettingsDialog.vala:121 +#: src/Gtk/SettingsDialog.vala:119 msgid "Days" msgstr "Tage" -#: src/Gtk/SettingsDialog.vala:123 +#: src/Gtk/SettingsDialog.vala:120 msgid "Weeks" msgstr "Wochen" -#: src/Gtk/SettingsDialog.vala:126 +#: src/Gtk/SettingsDialog.vala:121 msgid "Seconds" msgstr "Sekunden" -#: src/Gtk/SettingsDialog.vala:132 +#: src/Gtk/SettingsDialog.vala:126 msgid "Filters" msgstr "Filter" -#: src/Gtk/SettingsDialog.vala:140 +#: src/Gtk/SettingsDialog.vala:134 msgid "Hide unstable and RC releases" msgstr "Unstable- und RC-Versionen ausblenden" -#: src/Gtk/SettingsDialog.vala:162 +#: src/Gtk/SettingsDialog.vala:156 msgid "previous major versions ( -1 = all )" msgstr "vorherige Hauptversionen ( -1 = alle )" -#: src/Gtk/SettingsDialog.vala:166 +#: src/Gtk/SettingsDialog.vala:160 msgid "Network" msgstr "Netz" -#: src/Gtk/SettingsDialog.vala:177 +#: src/Gtk/SettingsDialog.vala:171 msgid "Internet connection timeout in" msgstr "Zeitüberschreitung der Internetverbindung in" -#: src/Gtk/SettingsDialog.vala:189 +#: src/Gtk/SettingsDialog.vala:183 msgid "seconds" msgstr "Sekunden" -#: src/Gtk/SettingsDialog.vala:196 +#: src/Gtk/SettingsDialog.vala:190 msgid "Max concurrent downloads" msgstr "Maximale Anzahl gleichzeitiger Downloads" -#: src/Gtk/SettingsDialog.vala:209 +#: src/Gtk/SettingsDialog.vala:203 msgid "Verify Checksums with the CHECKSUMS files" msgstr "Überprüfen von Prüfsummen mit den PRÜFSUMMEN-Dateien" -#: src/Gtk/SettingsDialog.vala:217 +#: src/Gtk/SettingsDialog.vala:211 msgid "Proxy" msgstr "Stellvertreter" -#: src/Gtk/SettingsDialog.vala:250 +#: src/Gtk/SettingsDialog.vala:244 #, fuzzy msgid "Auth Command" msgstr "Befehle" -#: src/Gtk/SettingsDialog.vala:278 +#: src/Gtk/SettingsDialog.vala:272 msgid "Done" msgstr "" diff --git a/po/el.po b/po/el.po index b7cd9cd4..28f3f28b 100644 --- a/po/el.po +++ b/po/el.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-07 03:39-0400\n" +"POT-Creation-Date: 2023-06-08 03:52-0400\n" "PO-Revision-Date: 2023-01-10 02:03-0600\n" "Last-Translator: Vasilis Kosmidis \n" "Language-Team: Greek\n" @@ -13,221 +13,221 @@ msgstr "" "X-Launchpad-Export-Date: 2017-04-13 11:48+0000\n" "X-Generator: Poedit 2.0.5\n" -#: src/Common/LinuxKernel.vala:104 +#: src/Common/LinuxKernel.vala:102 msgid "Distribution" msgstr "Διανομή" -#: src/Common/LinuxKernel.vala:119 +#: src/Common/LinuxKernel.vala:117 msgid "Architecture" msgstr "Αρχιτεκτονική" -#: src/Common/LinuxKernel.vala:134 +#: src/Common/LinuxKernel.vala:132 msgid "Running kernel" msgstr "Εκτέλεση πυρήνα" -#: src/Common/LinuxKernel.vala:221 +#: src/Common/LinuxKernel.vala:219 msgid "loading cached" msgstr "φόρτωση προσωρινά αποθηκευμένου" -#: src/Common/LinuxKernel.vala:233 +#: src/Common/LinuxKernel.vala:231 msgid "queuing download" msgstr "Προσθήκη λήψης στην ουρά" -#: src/Common/LinuxKernel.vala:253 +#: src/Common/LinuxKernel.vala:251 msgid "Fetching individual kernel indexes" msgstr "Λήψη μεμονωμένων ευρετηρίων πυρήνα" -#: src/Common/LinuxKernel.vala:267 +#: src/Common/LinuxKernel.vala:265 msgid "loading downloaded" msgstr "Φόρτωση λήψης" -#: src/Common/LinuxKernel.vala:307 +#: src/Common/LinuxKernel.vala:305 msgid "Updating from" msgstr "Ενημέρωση από" -#: src/Common/LinuxKernel.vala:315 +#: src/Common/LinuxKernel.vala:313 msgid "OK" msgstr "ΟΚ" -#: src/Common/LinuxKernel.vala:318 +#: src/Common/LinuxKernel.vala:316 msgid "FAILED" msgstr "ΑΠΈΤΥΧΕ" -#: src/Common/LinuxKernel.vala:383 +#: src/Common/LinuxKernel.vala:381 msgid "Found installed" msgstr "Βρέθηκε εγκατεστημένο" -#: src/Common/LinuxKernel.vala:384 +#: src/Common/LinuxKernel.vala:382 msgid "locked" msgstr "" -#: src/Common/LinuxKernel.vala:466 src/Common/LinuxKernel.vala:995 -#: src/Common/LinuxKernel.vala:1086 +#: src/Common/LinuxKernel.vala:464 src/Common/LinuxKernel.vala:994 +#: src/Common/LinuxKernel.vala:1085 msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:661 src/Gtk/MainWindow.vala:521 +#: src/Common/LinuxKernel.vala:660 src/Gtk/MainWindow.vala:521 msgid "Running" msgstr "Ενεργός" -#: src/Common/LinuxKernel.vala:662 +#: src/Common/LinuxKernel.vala:661 msgid "Installed" msgstr "Εγκατεστημένος" -#: src/Common/LinuxKernel.vala:663 +#: src/Common/LinuxKernel.vala:662 msgid "Invalid" msgstr "Άκυρος" -#: src/Common/LinuxKernel.vala:756 +#: src/Common/LinuxKernel.vala:755 msgid "Packages Available" msgstr "Διαθέσιμα πακέτα" -#: src/Common/LinuxKernel.vala:762 +#: src/Common/LinuxKernel.vala:761 msgid "Packages Installed" msgstr "Εγκατεστημένα πακέτα" -#: src/Common/LinuxKernel.vala:787 src/lib/TeeJee.FileSystem.vala:94 +#: src/Common/LinuxKernel.vala:786 src/lib/TeeJee.FileSystem.vala:94 msgid "File not found" msgstr "Το αρχείο δε βρέθηκε" -#: src/Common/LinuxKernel.vala:814 +#: src/Common/LinuxKernel.vala:813 #, fuzzy msgid "needs update" msgstr "Τελευταία αναβάθμιση" -#: src/Common/LinuxKernel.vala:881 +#: src/Common/LinuxKernel.vala:880 msgid "Available Kernels" msgstr "Διαθέσιμοι πυρήνες" -#: src/Common/LinuxKernel.vala:915 src/Gtk/MainWindow.vala:135 +#: src/Common/LinuxKernel.vala:914 src/Gtk/MainWindow.vala:135 msgid "Kernel" msgstr "Πυρήνας" -#: src/Common/LinuxKernel.vala:915 +#: src/Common/LinuxKernel.vala:914 #, fuzzy msgid "not found" msgstr "Το αρχείο δε βρέθηκε" -#: src/Common/LinuxKernel.vala:922 +#: src/Common/LinuxKernel.vala:921 #, fuzzy msgid "Download: no downloadable kernels specified" msgstr "Η εντολή δεν προσδιορίστηκε" -#: src/Common/LinuxKernel.vala:938 +#: src/Common/LinuxKernel.vala:937 msgid "enabled" msgstr "ενεργοποιημένη" -#: src/Common/LinuxKernel.vala:963 +#: src/Common/LinuxKernel.vala:962 msgid "Downloading" msgstr "Κατέβασμα" -#: src/Common/LinuxKernel.vala:981 +#: src/Common/LinuxKernel.vala:980 #, fuzzy msgid "Installing selected kernels" msgstr "Απεγκατάσταση επιλεγμένων πυρήνων" -#: src/Common/LinuxKernel.vala:987 src/Common/LinuxKernel.vala:1026 +#: src/Common/LinuxKernel.vala:986 src/Common/LinuxKernel.vala:1025 #, fuzzy msgid "Requested" msgstr "ζητήθηκε" -#: src/Common/LinuxKernel.vala:990 +#: src/Common/LinuxKernel.vala:989 msgid "is already installed." msgstr "είναι ήδη εγκατεστημένο." -#: src/Common/LinuxKernel.vala:1000 +#: src/Common/LinuxKernel.vala:999 msgid "download failed." msgstr "" -#: src/Common/LinuxKernel.vala:1007 src/Gtk/MainWindow.vala:548 +#: src/Common/LinuxKernel.vala:1006 src/Gtk/MainWindow.vala:548 #, fuzzy msgid "Install: no installable kernels specified" msgstr "Η εντολή δεν προσδιορίστηκε" -#: src/Common/LinuxKernel.vala:1022 +#: src/Common/LinuxKernel.vala:1021 msgid "Uninstalling selected kernels" msgstr "Απεγκατάσταση επιλεγμένων πυρήνων" -#: src/Common/LinuxKernel.vala:1029 +#: src/Common/LinuxKernel.vala:1028 #, fuzzy msgid "Not uninstalling the currently running kernel" msgstr "δεν θα απεγκαταστήσει τον πυρήνα που εκτελείται αυτήν τη στιγμή" -#: src/Common/LinuxKernel.vala:1034 src/Gtk/MainWindow.vala:543 +#: src/Common/LinuxKernel.vala:1033 src/Gtk/MainWindow.vala:543 msgid "is locked" msgstr "" -#: src/Common/LinuxKernel.vala:1042 +#: src/Common/LinuxKernel.vala:1041 msgid "found" msgstr "ιδρύω" -#: src/Common/LinuxKernel.vala:1046 +#: src/Common/LinuxKernel.vala:1045 msgid "Uninstall: no uninstallable packages found" msgstr "" -#: src/Common/LinuxKernel.vala:1082 +#: src/Common/LinuxKernel.vala:1081 #, fuzzy msgid "is the highest installed version." msgstr "Απεγκαταστήστε όλες εκτός από την υψηλότερη εγκατεστημένη έκδοση" -#: src/Common/LinuxKernel.vala:1095 +#: src/Common/LinuxKernel.vala:1094 msgid "Could not find running kernel in list" msgstr "Δεν ήταν δυνατή η εύρεση του πυρήνα που εκτελείται αυτήν τη στιγμή" -#: src/Common/LinuxKernel.vala:1100 +#: src/Common/LinuxKernel.vala:1099 msgid "Could not find any kernels to uninstall" msgstr "Δεν βρέθηκε κανένας πυρήνας για απεγκατάσταση" -#: src/Common/LinuxKernel.vala:1105 +#: src/Common/LinuxKernel.vala:1104 msgid "The following kernels will be uninstalled" msgstr "Θα καταργηθεί η εγκατάσταση των ακόλουθων πυρήνων" -#: src/Common/LinuxKernel.vala:1107 +#: src/Common/LinuxKernel.vala:1106 msgid "Continue ?" msgstr "Συνέχεια;" -#: src/Common/LinuxKernel.vala:1123 +#: src/Common/LinuxKernel.vala:1122 #, fuzzy msgid "No updates" msgstr "Δεν βρέθηκαν ενημερώσεις" -#: src/Common/LinuxKernel.vala:1129 +#: src/Common/LinuxKernel.vala:1128 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Εγκατάσταση του πυρήνα έκδοσης %s ; (ν/ό):" -#: src/Common/Main.vala:158 +#: src/Common/Main.vala:157 msgid "Missing Thread support in Glib." msgstr "" -#: src/Common/Main.vala:242 +#: src/Common/Main.vala:241 msgid "Wrote config file" msgstr "" -#: src/Common/Main.vala:261 +#: src/Common/Main.vala:260 msgid "No config file" msgstr "" -#: src/Common/Main.vala:322 +#: src/Common/Main.vala:319 msgid "Loaded config file" msgstr "" -#: src/Common/Main.vala:351 +#: src/Common/Main.vala:339 msgid "Called from" msgstr "Κλήθηκε από" -#: src/Common/Main.vala:351 +#: src/Common/Main.vala:339 msgid "at logon" msgstr "κατά την εκκίνηση" -#: src/Common/Main.vala:352 +#: src/Common/Main.vala:340 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" "Αυτό το αρχείο αντικαθίσταται και εκτελείται ξανά κάθε φορά που " "αποθηκεύονται οι ρυθμίσεις στο" -#: src/Common/Main.vala:384 +#: src/Common/Main.vala:372 msgid "Notifications are disabled" msgstr "Οι ειδοποιήσεις είναι απενεργοποιημένες" @@ -368,7 +368,7 @@ msgstr "Ειδοποίηση αν είναι διαθέσιμη κύρια έκ msgid "Kernel %s Available" msgstr "Πυρήνας %s διαθέσιμος" -#: src/Console/AppConsole.vala:248 src/Gtk/SettingsDialog.vala:151 +#: src/Console/AppConsole.vala:248 src/Gtk/SettingsDialog.vala:145 msgid "Show" msgstr "Προβολή" @@ -526,64 +526,64 @@ msgstr "διάστημα δευτερολέπτων είναι ενεργοπο msgid "Check every" msgstr "Έλεγχος κάθε" -#: src/Gtk/SettingsDialog.vala:119 +#: src/Gtk/SettingsDialog.vala:118 msgid "Hours" msgstr "Ώρες" -#: src/Gtk/SettingsDialog.vala:121 +#: src/Gtk/SettingsDialog.vala:119 msgid "Days" msgstr "Ημέρες" -#: src/Gtk/SettingsDialog.vala:123 +#: src/Gtk/SettingsDialog.vala:120 msgid "Weeks" msgstr "Εβδομάδες" -#: src/Gtk/SettingsDialog.vala:126 +#: src/Gtk/SettingsDialog.vala:121 msgid "Seconds" msgstr "Δευτερόλεπτα" -#: src/Gtk/SettingsDialog.vala:132 +#: src/Gtk/SettingsDialog.vala:126 msgid "Filters" msgstr "Φίλτρα" -#: src/Gtk/SettingsDialog.vala:140 +#: src/Gtk/SettingsDialog.vala:134 msgid "Hide unstable and RC releases" msgstr "Απόκρυψη ασταθών και RC εκδόσεων" -#: src/Gtk/SettingsDialog.vala:162 +#: src/Gtk/SettingsDialog.vala:156 msgid "previous major versions ( -1 = all )" msgstr "προηγούμενες κύριες εκδόσεις ( -1 = όλες )" -#: src/Gtk/SettingsDialog.vala:166 +#: src/Gtk/SettingsDialog.vala:160 msgid "Network" msgstr "Δίκτυο" -#: src/Gtk/SettingsDialog.vala:177 +#: src/Gtk/SettingsDialog.vala:171 msgid "Internet connection timeout in" msgstr "Λήξη χρονικού ορίου σύνδεσης στο διαδίκτυο " -#: src/Gtk/SettingsDialog.vala:189 +#: src/Gtk/SettingsDialog.vala:183 msgid "seconds" msgstr "δευτερόλεπτα" -#: src/Gtk/SettingsDialog.vala:196 +#: src/Gtk/SettingsDialog.vala:190 msgid "Max concurrent downloads" msgstr "Μέγιστες ταυτόχρονες λήψεις" -#: src/Gtk/SettingsDialog.vala:209 +#: src/Gtk/SettingsDialog.vala:203 msgid "Verify Checksums with the CHECKSUMS files" msgstr "Επαλήθευση αθροισμάτων ελέγχου με τα αρχεία CHECKSUMS" -#: src/Gtk/SettingsDialog.vala:217 +#: src/Gtk/SettingsDialog.vala:211 msgid "Proxy" msgstr "Διακομιστής" -#: src/Gtk/SettingsDialog.vala:250 +#: src/Gtk/SettingsDialog.vala:244 #, fuzzy msgid "Auth Command" msgstr "Εντολές" -#: src/Gtk/SettingsDialog.vala:278 +#: src/Gtk/SettingsDialog.vala:272 msgid "Done" msgstr "" diff --git a/po/es.po b/po/es.po index 986f0e94..ed66af1f 100644 --- a/po/es.po +++ b/po/es.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-07 03:39-0400\n" +"POT-Creation-Date: 2023-06-08 03:52-0400\n" "PO-Revision-Date: 2018-01-03 02:03-0600\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish\n" @@ -13,221 +13,221 @@ msgstr "" "X-Launchpad-Export-Date: 2017-04-13 11:48+0000\n" "X-Generator: Poedit 2.0.5\n" -#: src/Common/LinuxKernel.vala:104 +#: src/Common/LinuxKernel.vala:102 msgid "Distribution" msgstr "Distribución" -#: src/Common/LinuxKernel.vala:119 +#: src/Common/LinuxKernel.vala:117 msgid "Architecture" msgstr "Arquitectura del sistema" -#: src/Common/LinuxKernel.vala:134 +#: src/Common/LinuxKernel.vala:132 msgid "Running kernel" msgstr "Kernel en ejecución" -#: src/Common/LinuxKernel.vala:221 +#: src/Common/LinuxKernel.vala:219 msgid "loading cached" msgstr "carga en caché" -#: src/Common/LinuxKernel.vala:233 +#: src/Common/LinuxKernel.vala:231 msgid "queuing download" msgstr "descarga de colas" -#: src/Common/LinuxKernel.vala:253 +#: src/Common/LinuxKernel.vala:251 msgid "Fetching individual kernel indexes" msgstr "Obtención de índices de kernel individuales" -#: src/Common/LinuxKernel.vala:267 +#: src/Common/LinuxKernel.vala:265 msgid "loading downloaded" msgstr "cargando descargado" -#: src/Common/LinuxKernel.vala:307 +#: src/Common/LinuxKernel.vala:305 msgid "Updating from" msgstr "Actualización desde" -#: src/Common/LinuxKernel.vala:315 +#: src/Common/LinuxKernel.vala:313 msgid "OK" msgstr "Aceptar" -#: src/Common/LinuxKernel.vala:318 +#: src/Common/LinuxKernel.vala:316 msgid "FAILED" msgstr "FRACASADO" -#: src/Common/LinuxKernel.vala:383 +#: src/Common/LinuxKernel.vala:381 msgid "Found installed" msgstr "Encontrado instalado" -#: src/Common/LinuxKernel.vala:384 +#: src/Common/LinuxKernel.vala:382 msgid "locked" msgstr "" -#: src/Common/LinuxKernel.vala:466 src/Common/LinuxKernel.vala:995 -#: src/Common/LinuxKernel.vala:1086 +#: src/Common/LinuxKernel.vala:464 src/Common/LinuxKernel.vala:994 +#: src/Common/LinuxKernel.vala:1085 msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:661 src/Gtk/MainWindow.vala:521 +#: src/Common/LinuxKernel.vala:660 src/Gtk/MainWindow.vala:521 msgid "Running" msgstr "En ejecución" -#: src/Common/LinuxKernel.vala:662 +#: src/Common/LinuxKernel.vala:661 msgid "Installed" msgstr "Instalado" -#: src/Common/LinuxKernel.vala:663 +#: src/Common/LinuxKernel.vala:662 msgid "Invalid" msgstr "No válido" -#: src/Common/LinuxKernel.vala:756 +#: src/Common/LinuxKernel.vala:755 msgid "Packages Available" msgstr "Paquetes disponibles" -#: src/Common/LinuxKernel.vala:762 +#: src/Common/LinuxKernel.vala:761 msgid "Packages Installed" msgstr "Paquetes instalados" -#: src/Common/LinuxKernel.vala:787 src/lib/TeeJee.FileSystem.vala:94 +#: src/Common/LinuxKernel.vala:786 src/lib/TeeJee.FileSystem.vala:94 msgid "File not found" msgstr "No se encontró el archivo" -#: src/Common/LinuxKernel.vala:814 +#: src/Common/LinuxKernel.vala:813 #, fuzzy msgid "needs update" msgstr "Última actualización" -#: src/Common/LinuxKernel.vala:881 +#: src/Common/LinuxKernel.vala:880 msgid "Available Kernels" msgstr "Núcleos disponibles" -#: src/Common/LinuxKernel.vala:915 src/Gtk/MainWindow.vala:135 +#: src/Common/LinuxKernel.vala:914 src/Gtk/MainWindow.vala:135 msgid "Kernel" msgstr "Núcleo" -#: src/Common/LinuxKernel.vala:915 +#: src/Common/LinuxKernel.vala:914 #, fuzzy msgid "not found" msgstr "No se encontró el archivo" -#: src/Common/LinuxKernel.vala:922 +#: src/Common/LinuxKernel.vala:921 #, fuzzy msgid "Download: no downloadable kernels specified" msgstr "Coomand no especificado" -#: src/Common/LinuxKernel.vala:938 +#: src/Common/LinuxKernel.vala:937 msgid "enabled" msgstr "habilitado" -#: src/Common/LinuxKernel.vala:963 +#: src/Common/LinuxKernel.vala:962 msgid "Downloading" msgstr "Descargar" -#: src/Common/LinuxKernel.vala:981 +#: src/Common/LinuxKernel.vala:980 #, fuzzy msgid "Installing selected kernels" msgstr "Desinstalación de kernels seleccionados" -#: src/Common/LinuxKernel.vala:987 src/Common/LinuxKernel.vala:1026 +#: src/Common/LinuxKernel.vala:986 src/Common/LinuxKernel.vala:1025 #, fuzzy msgid "Requested" msgstr "solicitado" -#: src/Common/LinuxKernel.vala:990 +#: src/Common/LinuxKernel.vala:989 msgid "is already installed." msgstr "ya está instalado." -#: src/Common/LinuxKernel.vala:1000 +#: src/Common/LinuxKernel.vala:999 msgid "download failed." msgstr "" -#: src/Common/LinuxKernel.vala:1007 src/Gtk/MainWindow.vala:548 +#: src/Common/LinuxKernel.vala:1006 src/Gtk/MainWindow.vala:548 #, fuzzy msgid "Install: no installable kernels specified" msgstr "Coomand no especificado" -#: src/Common/LinuxKernel.vala:1022 +#: src/Common/LinuxKernel.vala:1021 msgid "Uninstalling selected kernels" msgstr "Desinstalación de kernels seleccionados" -#: src/Common/LinuxKernel.vala:1029 +#: src/Common/LinuxKernel.vala:1028 #, fuzzy msgid "Not uninstalling the currently running kernel" msgstr "No desinstalará el kernel que se está ejecutando actualmente" -#: src/Common/LinuxKernel.vala:1034 src/Gtk/MainWindow.vala:543 +#: src/Common/LinuxKernel.vala:1033 src/Gtk/MainWindow.vala:543 msgid "is locked" msgstr "" -#: src/Common/LinuxKernel.vala:1042 +#: src/Common/LinuxKernel.vala:1041 msgid "found" msgstr "fundar" -#: src/Common/LinuxKernel.vala:1046 +#: src/Common/LinuxKernel.vala:1045 msgid "Uninstall: no uninstallable packages found" msgstr "" -#: src/Common/LinuxKernel.vala:1082 +#: src/Common/LinuxKernel.vala:1081 #, fuzzy msgid "is the highest installed version." msgstr "Desinstale todas las versiones instaladas excepto la más alta" -#: src/Common/LinuxKernel.vala:1095 +#: src/Common/LinuxKernel.vala:1094 msgid "Could not find running kernel in list" msgstr "No se pudo encontrar el kernel en ejecución en la lista" -#: src/Common/LinuxKernel.vala:1100 +#: src/Common/LinuxKernel.vala:1099 msgid "Could not find any kernels to uninstall" msgstr "No se pudo encontrar ningún kernel para desinstalar" -#: src/Common/LinuxKernel.vala:1105 +#: src/Common/LinuxKernel.vala:1104 msgid "The following kernels will be uninstalled" msgstr "Se desinstalarán los siguientes kernels" -#: src/Common/LinuxKernel.vala:1107 +#: src/Common/LinuxKernel.vala:1106 msgid "Continue ?" msgstr "¿Continuar?" -#: src/Common/LinuxKernel.vala:1123 +#: src/Common/LinuxKernel.vala:1122 #, fuzzy msgid "No updates" msgstr "No se encontró ninguna actualización" -#: src/Common/LinuxKernel.vala:1129 +#: src/Common/LinuxKernel.vala:1128 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Instalar la versión del kernel %s? (s/n): " -#: src/Common/Main.vala:158 +#: src/Common/Main.vala:157 msgid "Missing Thread support in Glib." msgstr "" -#: src/Common/Main.vala:242 +#: src/Common/Main.vala:241 msgid "Wrote config file" msgstr "" -#: src/Common/Main.vala:261 +#: src/Common/Main.vala:260 msgid "No config file" msgstr "" -#: src/Common/Main.vala:322 +#: src/Common/Main.vala:319 msgid "Loaded config file" msgstr "" -#: src/Common/Main.vala:351 +#: src/Common/Main.vala:339 msgid "Called from" msgstr "Llamado desde" -#: src/Common/Main.vala:351 +#: src/Common/Main.vala:339 msgid "at logon" msgstr "al inicio" -#: src/Common/Main.vala:352 +#: src/Common/Main.vala:340 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" "Este archivo se sobrescribe y se ejecuta de nuevo cada vez que se guarda la " "configuración en" -#: src/Common/Main.vala:384 +#: src/Common/Main.vala:372 msgid "Notifications are disabled" msgstr "Las notificaciones están deshabilitadas" @@ -367,7 +367,7 @@ msgstr "Notificar si hay una versión importante disponible" msgid "Kernel %s Available" msgstr "Kernel %s Disponible" -#: src/Console/AppConsole.vala:248 src/Gtk/SettingsDialog.vala:151 +#: src/Console/AppConsole.vala:248 src/Gtk/SettingsDialog.vala:145 msgid "Show" msgstr "Mostrar" @@ -526,64 +526,64 @@ msgstr "Intervalo de segundos habilitado para la depuración" msgid "Check every" msgstr "Comprobar cada" -#: src/Gtk/SettingsDialog.vala:119 +#: src/Gtk/SettingsDialog.vala:118 msgid "Hours" msgstr "Horas" -#: src/Gtk/SettingsDialog.vala:121 +#: src/Gtk/SettingsDialog.vala:119 msgid "Days" msgstr "Días" -#: src/Gtk/SettingsDialog.vala:123 +#: src/Gtk/SettingsDialog.vala:120 msgid "Weeks" msgstr "Semanas" -#: src/Gtk/SettingsDialog.vala:126 +#: src/Gtk/SettingsDialog.vala:121 msgid "Seconds" msgstr "Sobras" -#: src/Gtk/SettingsDialog.vala:132 +#: src/Gtk/SettingsDialog.vala:126 msgid "Filters" msgstr "Filtros" -#: src/Gtk/SettingsDialog.vala:140 +#: src/Gtk/SettingsDialog.vala:134 msgid "Hide unstable and RC releases" msgstr "Ocultar versiones inestables y RC" -#: src/Gtk/SettingsDialog.vala:162 +#: src/Gtk/SettingsDialog.vala:156 msgid "previous major versions ( -1 = all )" msgstr "Versiones principales anteriores ( -1 = todas )" -#: src/Gtk/SettingsDialog.vala:166 +#: src/Gtk/SettingsDialog.vala:160 msgid "Network" msgstr "Red" -#: src/Gtk/SettingsDialog.vala:177 +#: src/Gtk/SettingsDialog.vala:171 msgid "Internet connection timeout in" msgstr "Tiempo de espera de conexión a Internet en" -#: src/Gtk/SettingsDialog.vala:189 +#: src/Gtk/SettingsDialog.vala:183 msgid "seconds" msgstr "sobras" -#: src/Gtk/SettingsDialog.vala:196 +#: src/Gtk/SettingsDialog.vala:190 msgid "Max concurrent downloads" msgstr "Descargas máximas de la competencia" -#: src/Gtk/SettingsDialog.vala:209 +#: src/Gtk/SettingsDialog.vala:203 msgid "Verify Checksums with the CHECKSUMS files" msgstr "Verificar sumas de comprobación con los archivos CHECKSUMS" -#: src/Gtk/SettingsDialog.vala:217 +#: src/Gtk/SettingsDialog.vala:211 msgid "Proxy" msgstr "Proxy" -#: src/Gtk/SettingsDialog.vala:250 +#: src/Gtk/SettingsDialog.vala:244 #, fuzzy msgid "Auth Command" msgstr "Comandos" -#: src/Gtk/SettingsDialog.vala:278 +#: src/Gtk/SettingsDialog.vala:272 msgid "Done" msgstr "" diff --git a/po/fr.po b/po/fr.po index 22fe0d59..ced9d7ef 100644 --- a/po/fr.po +++ b/po/fr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-07 03:39-0400\n" +"POT-Creation-Date: 2023-06-08 03:52-0400\n" "PO-Revision-Date: 2018-08-05 15:50+0200\n" "Last-Translator: Yolateng0 \n" "Language-Team: French\n" @@ -13,221 +13,221 @@ msgstr "" "X-Launchpad-Export-Date: 2017-04-13 11:48+0000\n" "X-Generator: Poedit 2.0.6\n" -#: src/Common/LinuxKernel.vala:104 +#: src/Common/LinuxKernel.vala:102 msgid "Distribution" msgstr "Distribution" -#: src/Common/LinuxKernel.vala:119 +#: src/Common/LinuxKernel.vala:117 msgid "Architecture" msgstr "Architecture" -#: src/Common/LinuxKernel.vala:134 +#: src/Common/LinuxKernel.vala:132 msgid "Running kernel" msgstr "Noyau en cours d'exécution" -#: src/Common/LinuxKernel.vala:221 +#: src/Common/LinuxKernel.vala:219 msgid "loading cached" msgstr "chargement mis en cache" -#: src/Common/LinuxKernel.vala:233 +#: src/Common/LinuxKernel.vala:231 msgid "queuing download" msgstr "enqueuing télécharger" -#: src/Common/LinuxKernel.vala:253 +#: src/Common/LinuxKernel.vala:251 msgid "Fetching individual kernel indexes" msgstr "Récupération d'index de noyau individuels" -#: src/Common/LinuxKernel.vala:267 +#: src/Common/LinuxKernel.vala:265 msgid "loading downloaded" msgstr "chargement téléchargé" -#: src/Common/LinuxKernel.vala:307 +#: src/Common/LinuxKernel.vala:305 msgid "Updating from" msgstr "Mise à jour à partir de" -#: src/Common/LinuxKernel.vala:315 +#: src/Common/LinuxKernel.vala:313 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:318 +#: src/Common/LinuxKernel.vala:316 msgid "FAILED" msgstr "RATÉ" -#: src/Common/LinuxKernel.vala:383 +#: src/Common/LinuxKernel.vala:381 msgid "Found installed" msgstr "Trouvé installé" -#: src/Common/LinuxKernel.vala:384 +#: src/Common/LinuxKernel.vala:382 msgid "locked" msgstr "" -#: src/Common/LinuxKernel.vala:466 src/Common/LinuxKernel.vala:995 -#: src/Common/LinuxKernel.vala:1086 +#: src/Common/LinuxKernel.vala:464 src/Common/LinuxKernel.vala:994 +#: src/Common/LinuxKernel.vala:1085 msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:661 src/Gtk/MainWindow.vala:521 +#: src/Common/LinuxKernel.vala:660 src/Gtk/MainWindow.vala:521 msgid "Running" msgstr "Actuel" -#: src/Common/LinuxKernel.vala:662 +#: src/Common/LinuxKernel.vala:661 msgid "Installed" msgstr "Installé" -#: src/Common/LinuxKernel.vala:663 +#: src/Common/LinuxKernel.vala:662 msgid "Invalid" msgstr "No válido" -#: src/Common/LinuxKernel.vala:756 +#: src/Common/LinuxKernel.vala:755 msgid "Packages Available" msgstr "Paquets Disponibles" -#: src/Common/LinuxKernel.vala:762 +#: src/Common/LinuxKernel.vala:761 msgid "Packages Installed" msgstr "Paquets Installés" -#: src/Common/LinuxKernel.vala:787 src/lib/TeeJee.FileSystem.vala:94 +#: src/Common/LinuxKernel.vala:786 src/lib/TeeJee.FileSystem.vala:94 msgid "File not found" msgstr "Fichier non trouvé" -#: src/Common/LinuxKernel.vala:814 +#: src/Common/LinuxKernel.vala:813 #, fuzzy msgid "needs update" msgstr "Dernière mise à jour" -#: src/Common/LinuxKernel.vala:881 +#: src/Common/LinuxKernel.vala:880 msgid "Available Kernels" msgstr "Noyaux Disponibles" -#: src/Common/LinuxKernel.vala:915 src/Gtk/MainWindow.vala:135 +#: src/Common/LinuxKernel.vala:914 src/Gtk/MainWindow.vala:135 msgid "Kernel" msgstr "Noyau" -#: src/Common/LinuxKernel.vala:915 +#: src/Common/LinuxKernel.vala:914 #, fuzzy msgid "not found" msgstr "Fichier non trouvé" -#: src/Common/LinuxKernel.vala:922 +#: src/Common/LinuxKernel.vala:921 #, fuzzy msgid "Download: no downloadable kernels specified" msgstr "Pas de commande fournie" -#: src/Common/LinuxKernel.vala:938 +#: src/Common/LinuxKernel.vala:937 msgid "enabled" msgstr "activé" -#: src/Common/LinuxKernel.vala:963 +#: src/Common/LinuxKernel.vala:962 msgid "Downloading" msgstr "Téléchargement" -#: src/Common/LinuxKernel.vala:981 +#: src/Common/LinuxKernel.vala:980 #, fuzzy msgid "Installing selected kernels" msgstr "Désinstallation des noyaux sélectionnés" -#: src/Common/LinuxKernel.vala:987 src/Common/LinuxKernel.vala:1026 +#: src/Common/LinuxKernel.vala:986 src/Common/LinuxKernel.vala:1025 #, fuzzy msgid "Requested" msgstr "Demandé" -#: src/Common/LinuxKernel.vala:990 +#: src/Common/LinuxKernel.vala:989 msgid "is already installed." msgstr "est déjà installé." -#: src/Common/LinuxKernel.vala:1000 +#: src/Common/LinuxKernel.vala:999 msgid "download failed." msgstr "" -#: src/Common/LinuxKernel.vala:1007 src/Gtk/MainWindow.vala:548 +#: src/Common/LinuxKernel.vala:1006 src/Gtk/MainWindow.vala:548 #, fuzzy msgid "Install: no installable kernels specified" msgstr "Pas de commande fournie" -#: src/Common/LinuxKernel.vala:1022 +#: src/Common/LinuxKernel.vala:1021 msgid "Uninstalling selected kernels" msgstr "Désinstallation des noyaux sélectionnés" -#: src/Common/LinuxKernel.vala:1029 +#: src/Common/LinuxKernel.vala:1028 #, fuzzy msgid "Not uninstalling the currently running kernel" msgstr "Ne pas désinstaller le noyau en cours d'exécution" -#: src/Common/LinuxKernel.vala:1034 src/Gtk/MainWindow.vala:543 +#: src/Common/LinuxKernel.vala:1033 src/Gtk/MainWindow.vala:543 msgid "is locked" msgstr "" -#: src/Common/LinuxKernel.vala:1042 +#: src/Common/LinuxKernel.vala:1041 msgid "found" msgstr "fonder" -#: src/Common/LinuxKernel.vala:1046 +#: src/Common/LinuxKernel.vala:1045 msgid "Uninstall: no uninstallable packages found" msgstr "" -#: src/Common/LinuxKernel.vala:1082 +#: src/Common/LinuxKernel.vala:1081 #, fuzzy msgid "is the highest installed version." msgstr "Désinstallez toutes le version installées, sauf la plus élevée" -#: src/Common/LinuxKernel.vala:1095 +#: src/Common/LinuxKernel.vala:1094 msgid "Could not find running kernel in list" msgstr "Impossible de trouver le noyau en cours d'exécution dans la liste" -#: src/Common/LinuxKernel.vala:1100 +#: src/Common/LinuxKernel.vala:1099 msgid "Could not find any kernels to uninstall" msgstr "Impossible de trouver des noyaux à désinstaller" -#: src/Common/LinuxKernel.vala:1105 +#: src/Common/LinuxKernel.vala:1104 msgid "The following kernels will be uninstalled" msgstr "Les noyaux suivants seront désinstallés" -#: src/Common/LinuxKernel.vala:1107 +#: src/Common/LinuxKernel.vala:1106 msgid "Continue ?" msgstr "Reprendre ?" -#: src/Common/LinuxKernel.vala:1123 +#: src/Common/LinuxKernel.vala:1122 #, fuzzy msgid "No updates" msgstr "Aucune mise à jour disponible" -#: src/Common/LinuxKernel.vala:1129 +#: src/Common/LinuxKernel.vala:1128 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Installer le noyau en version %s ? (y/n): " -#: src/Common/Main.vala:158 +#: src/Common/Main.vala:157 msgid "Missing Thread support in Glib." msgstr "" -#: src/Common/Main.vala:242 +#: src/Common/Main.vala:241 msgid "Wrote config file" msgstr "" -#: src/Common/Main.vala:261 +#: src/Common/Main.vala:260 msgid "No config file" msgstr "" -#: src/Common/Main.vala:322 +#: src/Common/Main.vala:319 msgid "Loaded config file" msgstr "" -#: src/Common/Main.vala:351 +#: src/Common/Main.vala:339 msgid "Called from" msgstr "Appelé à partir de" -#: src/Common/Main.vala:351 +#: src/Common/Main.vala:339 msgid "at logon" msgstr "au démarrage" -#: src/Common/Main.vala:352 +#: src/Common/Main.vala:340 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" "Ce fichier est écrasé et exécuté à nouveau chaque fois que les paramètres " "sont enregistrés dans" -#: src/Common/Main.vala:384 +#: src/Common/Main.vala:372 msgid "Notifications are disabled" msgstr "Les notifications sont désactivées" @@ -367,7 +367,7 @@ msgstr "Notifier si une version stable majeure est disponible" msgid "Kernel %s Available" msgstr "Paquet %s disponibles" -#: src/Console/AppConsole.vala:248 src/Gtk/SettingsDialog.vala:151 +#: src/Console/AppConsole.vala:248 src/Gtk/SettingsDialog.vala:145 msgid "Show" msgstr "Montrer" @@ -527,64 +527,64 @@ msgstr "Intervalle de secondes activé pour le débogage" msgid "Check every" msgstr "Vérifier toutes les" -#: src/Gtk/SettingsDialog.vala:119 +#: src/Gtk/SettingsDialog.vala:118 msgid "Hours" msgstr "Heures" -#: src/Gtk/SettingsDialog.vala:121 +#: src/Gtk/SettingsDialog.vala:119 msgid "Days" msgstr "Jours" -#: src/Gtk/SettingsDialog.vala:123 +#: src/Gtk/SettingsDialog.vala:120 msgid "Weeks" msgstr "Semaines" -#: src/Gtk/SettingsDialog.vala:126 +#: src/Gtk/SettingsDialog.vala:121 msgid "Seconds" msgstr "Secondes" -#: src/Gtk/SettingsDialog.vala:132 +#: src/Gtk/SettingsDialog.vala:126 msgid "Filters" msgstr "Filtres" -#: src/Gtk/SettingsDialog.vala:140 +#: src/Gtk/SettingsDialog.vala:134 msgid "Hide unstable and RC releases" msgstr "Cacher les versions instables et RC" -#: src/Gtk/SettingsDialog.vala:162 +#: src/Gtk/SettingsDialog.vala:156 msgid "previous major versions ( -1 = all )" msgstr "versions majeures précédentes ( -1 = toutes )" -#: src/Gtk/SettingsDialog.vala:166 +#: src/Gtk/SettingsDialog.vala:160 msgid "Network" msgstr "Réseau" -#: src/Gtk/SettingsDialog.vala:177 +#: src/Gtk/SettingsDialog.vala:171 msgid "Internet connection timeout in" msgstr "Délai d'expiration de la connexion Internet dans" -#: src/Gtk/SettingsDialog.vala:189 +#: src/Gtk/SettingsDialog.vala:183 msgid "seconds" msgstr "secondes" -#: src/Gtk/SettingsDialog.vala:196 +#: src/Gtk/SettingsDialog.vala:190 msgid "Max concurrent downloads" msgstr "Nombre maximum de téléchargements parallèles" -#: src/Gtk/SettingsDialog.vala:209 +#: src/Gtk/SettingsDialog.vala:203 msgid "Verify Checksums with the CHECKSUMS files" msgstr "Vérifier les sommes de contrôle avec les fichiers CHECKSUMS" -#: src/Gtk/SettingsDialog.vala:217 +#: src/Gtk/SettingsDialog.vala:211 msgid "Proxy" msgstr "Proxy" -#: src/Gtk/SettingsDialog.vala:250 +#: src/Gtk/SettingsDialog.vala:244 #, fuzzy msgid "Auth Command" msgstr "Commandes" -#: src/Gtk/SettingsDialog.vala:278 +#: src/Gtk/SettingsDialog.vala:272 msgid "Done" msgstr "" diff --git a/po/hr.po b/po/hr.po index b11201d7..e4216375 100644 --- a/po/hr.po +++ b/po/hr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-07 03:39-0400\n" +"POT-Creation-Date: 2023-06-08 03:52-0400\n" "PO-Revision-Date: 2022-09-22 12:13+0200\n" "Last-Translator: gogo \n" "Language-Team: Croatian\n" @@ -13,220 +13,220 @@ msgstr "" "X-Launchpad-Export-Date: 2017-12-23 23:36+0000\n" "X-Generator: Poedit 3.0.1\n" -#: src/Common/LinuxKernel.vala:104 +#: src/Common/LinuxKernel.vala:102 msgid "Distribution" msgstr "Distribucija" -#: src/Common/LinuxKernel.vala:119 +#: src/Common/LinuxKernel.vala:117 msgid "Architecture" msgstr "Arhitektura" -#: src/Common/LinuxKernel.vala:134 +#: src/Common/LinuxKernel.vala:132 msgid "Running kernel" msgstr "Trčanje kernel" -#: src/Common/LinuxKernel.vala:221 +#: src/Common/LinuxKernel.vala:219 msgid "loading cached" msgstr "učitavanje predmemoriranog" -#: src/Common/LinuxKernel.vala:233 +#: src/Common/LinuxKernel.vala:231 msgid "queuing download" msgstr "preuzimanje u redu čekanja" -#: src/Common/LinuxKernel.vala:253 +#: src/Common/LinuxKernel.vala:251 msgid "Fetching individual kernel indexes" msgstr "Dohvaćanje pojedinačnih indeksa kernel" -#: src/Common/LinuxKernel.vala:267 +#: src/Common/LinuxKernel.vala:265 msgid "loading downloaded" msgstr "učitavanje preuzeto" -#: src/Common/LinuxKernel.vala:307 +#: src/Common/LinuxKernel.vala:305 msgid "Updating from" msgstr "Ažuriranje iz" -#: src/Common/LinuxKernel.vala:315 +#: src/Common/LinuxKernel.vala:313 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:318 +#: src/Common/LinuxKernel.vala:316 msgid "FAILED" msgstr "NIJE USPIO" -#: src/Common/LinuxKernel.vala:383 +#: src/Common/LinuxKernel.vala:381 msgid "Found installed" msgstr "Pronađeno instalirano" -#: src/Common/LinuxKernel.vala:384 +#: src/Common/LinuxKernel.vala:382 msgid "locked" msgstr "" -#: src/Common/LinuxKernel.vala:466 src/Common/LinuxKernel.vala:995 -#: src/Common/LinuxKernel.vala:1086 +#: src/Common/LinuxKernel.vala:464 src/Common/LinuxKernel.vala:994 +#: src/Common/LinuxKernel.vala:1085 msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:661 src/Gtk/MainWindow.vala:521 +#: src/Common/LinuxKernel.vala:660 src/Gtk/MainWindow.vala:521 msgid "Running" msgstr "Pokrenuto" -#: src/Common/LinuxKernel.vala:662 +#: src/Common/LinuxKernel.vala:661 msgid "Installed" msgstr "Instalirano" -#: src/Common/LinuxKernel.vala:663 +#: src/Common/LinuxKernel.vala:662 msgid "Invalid" msgstr "Érvénytelen" -#: src/Common/LinuxKernel.vala:756 +#: src/Common/LinuxKernel.vala:755 msgid "Packages Available" msgstr "Dostupni Paketi" -#: src/Common/LinuxKernel.vala:762 +#: src/Common/LinuxKernel.vala:761 msgid "Packages Installed" msgstr "Instalirani paketi" -#: src/Common/LinuxKernel.vala:787 src/lib/TeeJee.FileSystem.vala:94 +#: src/Common/LinuxKernel.vala:786 src/lib/TeeJee.FileSystem.vala:94 msgid "File not found" msgstr "Datoteka nije pronađena" -#: src/Common/LinuxKernel.vala:814 +#: src/Common/LinuxKernel.vala:813 #, fuzzy msgid "needs update" msgstr "Najnovija nadopuna" -#: src/Common/LinuxKernel.vala:881 +#: src/Common/LinuxKernel.vala:880 msgid "Available Kernels" msgstr "Dostupni kerneli" -#: src/Common/LinuxKernel.vala:915 src/Gtk/MainWindow.vala:135 +#: src/Common/LinuxKernel.vala:914 src/Gtk/MainWindow.vala:135 msgid "Kernel" msgstr "Kernel" -#: src/Common/LinuxKernel.vala:915 +#: src/Common/LinuxKernel.vala:914 #, fuzzy msgid "not found" msgstr "Datoteka nije pronađena" -#: src/Common/LinuxKernel.vala:922 +#: src/Common/LinuxKernel.vala:921 #, fuzzy msgid "Download: no downloadable kernels specified" msgstr "Naredba nije navedena" -#: src/Common/LinuxKernel.vala:938 +#: src/Common/LinuxKernel.vala:937 msgid "enabled" msgstr "omogućen" -#: src/Common/LinuxKernel.vala:963 +#: src/Common/LinuxKernel.vala:962 msgid "Downloading" msgstr "Učitavanje" -#: src/Common/LinuxKernel.vala:981 +#: src/Common/LinuxKernel.vala:980 #, fuzzy msgid "Installing selected kernels" msgstr "Deinstaliraj određene kernele" -#: src/Common/LinuxKernel.vala:987 src/Common/LinuxKernel.vala:1026 +#: src/Common/LinuxKernel.vala:986 src/Common/LinuxKernel.vala:1025 #, fuzzy msgid "Requested" msgstr "Zatražio" -#: src/Common/LinuxKernel.vala:990 +#: src/Common/LinuxKernel.vala:989 msgid "is already installed." msgstr "je već instaliran." -#: src/Common/LinuxKernel.vala:1000 +#: src/Common/LinuxKernel.vala:999 msgid "download failed." msgstr "" -#: src/Common/LinuxKernel.vala:1007 src/Gtk/MainWindow.vala:548 +#: src/Common/LinuxKernel.vala:1006 src/Gtk/MainWindow.vala:548 #, fuzzy msgid "Install: no installable kernels specified" msgstr "Naredba nije navedena" -#: src/Common/LinuxKernel.vala:1022 +#: src/Common/LinuxKernel.vala:1021 msgid "Uninstalling selected kernels" msgstr "Deinstaliraj određene kernele" -#: src/Common/LinuxKernel.vala:1029 +#: src/Common/LinuxKernel.vala:1028 #, fuzzy msgid "Not uninstalling the currently running kernel" msgstr "ne deinstaliranje trenutno pokrenute kernel" -#: src/Common/LinuxKernel.vala:1034 src/Gtk/MainWindow.vala:543 +#: src/Common/LinuxKernel.vala:1033 src/Gtk/MainWindow.vala:543 msgid "is locked" msgstr "" -#: src/Common/LinuxKernel.vala:1042 +#: src/Common/LinuxKernel.vala:1041 msgid "found" msgstr "pronađen" -#: src/Common/LinuxKernel.vala:1046 +#: src/Common/LinuxKernel.vala:1045 msgid "Uninstall: no uninstallable packages found" msgstr "" -#: src/Common/LinuxKernel.vala:1082 +#: src/Common/LinuxKernel.vala:1081 #, fuzzy msgid "is the highest installed version." msgstr "Deinstaliraj sve osim najnovije instalirane verzije" -#: src/Common/LinuxKernel.vala:1095 +#: src/Common/LinuxKernel.vala:1094 msgid "Could not find running kernel in list" msgstr "Nije moguće pronaći pokrenutu kernel na popisu" -#: src/Common/LinuxKernel.vala:1100 +#: src/Common/LinuxKernel.vala:1099 msgid "Could not find any kernels to uninstall" msgstr "Nema pronađenih kernela za deinstaliranje" -#: src/Common/LinuxKernel.vala:1105 +#: src/Common/LinuxKernel.vala:1104 msgid "The following kernels will be uninstalled" msgstr "Deinstalirat će se sljedeće kerneli" -#: src/Common/LinuxKernel.vala:1107 +#: src/Common/LinuxKernel.vala:1106 msgid "Continue ?" msgstr "Nastavi?" -#: src/Common/LinuxKernel.vala:1123 +#: src/Common/LinuxKernel.vala:1122 #, fuzzy msgid "No updates" msgstr "Nema pronađenih nadopuna" -#: src/Common/LinuxKernel.vala:1129 +#: src/Common/LinuxKernel.vala:1128 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Instaliraj kernel inačice %s ? (d/n): " -#: src/Common/Main.vala:158 +#: src/Common/Main.vala:157 msgid "Missing Thread support in Glib." msgstr "" -#: src/Common/Main.vala:242 +#: src/Common/Main.vala:241 msgid "Wrote config file" msgstr "" -#: src/Common/Main.vala:261 +#: src/Common/Main.vala:260 msgid "No config file" msgstr "" -#: src/Common/Main.vala:322 +#: src/Common/Main.vala:319 msgid "Loaded config file" msgstr "" -#: src/Common/Main.vala:351 +#: src/Common/Main.vala:339 msgid "Called from" msgstr "Pozvano od" -#: src/Common/Main.vala:351 +#: src/Common/Main.vala:339 msgid "at logon" msgstr "indításkor" -#: src/Common/Main.vala:352 +#: src/Common/Main.vala:340 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" "Ova se datoteka prepisuje i ponovno izvršava kad god se postavke spremaju u" -#: src/Common/Main.vala:384 +#: src/Common/Main.vala:372 msgid "Notifications are disabled" msgstr "Obavijesti su onemogućene" @@ -366,7 +366,7 @@ msgstr "Obavijesti kada je glavno izdanje dostupno" msgid "Kernel %s Available" msgstr "Kernel %s je dostupan" -#: src/Console/AppConsole.vala:248 src/Gtk/SettingsDialog.vala:151 +#: src/Console/AppConsole.vala:248 src/Gtk/SettingsDialog.vala:145 msgid "Show" msgstr "Prikaži" @@ -524,64 +524,64 @@ msgstr "Interval sekundi omogućen za ispravljanje pogrešaka" msgid "Check every" msgstr "Provjeri svaka" -#: src/Gtk/SettingsDialog.vala:119 +#: src/Gtk/SettingsDialog.vala:118 msgid "Hours" msgstr "Sati" -#: src/Gtk/SettingsDialog.vala:121 +#: src/Gtk/SettingsDialog.vala:119 msgid "Days" msgstr "Dani" -#: src/Gtk/SettingsDialog.vala:123 +#: src/Gtk/SettingsDialog.vala:120 msgid "Weeks" msgstr "Tjedna" -#: src/Gtk/SettingsDialog.vala:126 +#: src/Gtk/SettingsDialog.vala:121 msgid "Seconds" msgstr "Sekunde" -#: src/Gtk/SettingsDialog.vala:132 +#: src/Gtk/SettingsDialog.vala:126 msgid "Filters" msgstr "Filteri" -#: src/Gtk/SettingsDialog.vala:140 +#: src/Gtk/SettingsDialog.vala:134 msgid "Hide unstable and RC releases" msgstr "Sakrij nestabilna i RC izdanja" -#: src/Gtk/SettingsDialog.vala:162 +#: src/Gtk/SettingsDialog.vala:156 msgid "previous major versions ( -1 = all )" msgstr "prethodne glavne verzije ( -1 = sve )" -#: src/Gtk/SettingsDialog.vala:166 +#: src/Gtk/SettingsDialog.vala:160 msgid "Network" msgstr "Mreža" -#: src/Gtk/SettingsDialog.vala:177 +#: src/Gtk/SettingsDialog.vala:171 msgid "Internet connection timeout in" msgstr "Prekoračenje vremena internetske veze u" -#: src/Gtk/SettingsDialog.vala:189 +#: src/Gtk/SettingsDialog.vala:183 msgid "seconds" msgstr "sekunde" -#: src/Gtk/SettingsDialog.vala:196 +#: src/Gtk/SettingsDialog.vala:190 msgid "Max concurrent downloads" msgstr "Najviše istodobnih preuzimanja" -#: src/Gtk/SettingsDialog.vala:209 +#: src/Gtk/SettingsDialog.vala:203 msgid "Verify Checksums with the CHECKSUMS files" msgstr "Provjera kontrolnih zbrojeva pomoću CHECKSUMS datoteka" -#: src/Gtk/SettingsDialog.vala:217 +#: src/Gtk/SettingsDialog.vala:211 msgid "Proxy" msgstr "Proxy" -#: src/Gtk/SettingsDialog.vala:250 +#: src/Gtk/SettingsDialog.vala:244 #, fuzzy msgid "Auth Command" msgstr "Naredbe" -#: src/Gtk/SettingsDialog.vala:278 +#: src/Gtk/SettingsDialog.vala:272 msgid "Done" msgstr "" diff --git a/po/it.po b/po/it.po index c57b335a..c69250b4 100644 --- a/po/it.po +++ b/po/it.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-07 03:39-0400\n" +"POT-Creation-Date: 2023-06-08 03:52-0400\n" "PO-Revision-Date: 2020-08-22 15:35+0100\n" "Last-Translator: Demetrio Mendozzi\n" "Language-Team: Italian\n" @@ -11,221 +11,221 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: src/Common/LinuxKernel.vala:104 +#: src/Common/LinuxKernel.vala:102 msgid "Distribution" msgstr "Distribuzione" -#: src/Common/LinuxKernel.vala:119 +#: src/Common/LinuxKernel.vala:117 msgid "Architecture" msgstr "Architettura" -#: src/Common/LinuxKernel.vala:134 +#: src/Common/LinuxKernel.vala:132 msgid "Running kernel" msgstr "Kernel in esecuzione" -#: src/Common/LinuxKernel.vala:221 +#: src/Common/LinuxKernel.vala:219 msgid "loading cached" msgstr "Caricamento file della cache" -#: src/Common/LinuxKernel.vala:233 +#: src/Common/LinuxKernel.vala:231 msgid "queuing download" msgstr "download in coda" -#: src/Common/LinuxKernel.vala:253 +#: src/Common/LinuxKernel.vala:251 msgid "Fetching individual kernel indexes" msgstr "Recupero dei singoli indici del kernel" -#: src/Common/LinuxKernel.vala:267 +#: src/Common/LinuxKernel.vala:265 msgid "loading downloaded" msgstr "caricamento dei file scaricati" -#: src/Common/LinuxKernel.vala:307 +#: src/Common/LinuxKernel.vala:305 msgid "Updating from" msgstr "Aggiornamento da" -#: src/Common/LinuxKernel.vala:315 +#: src/Common/LinuxKernel.vala:313 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:318 +#: src/Common/LinuxKernel.vala:316 msgid "FAILED" msgstr "FALLITO" -#: src/Common/LinuxKernel.vala:383 +#: src/Common/LinuxKernel.vala:381 msgid "Found installed" msgstr "Trovato installato" -#: src/Common/LinuxKernel.vala:384 +#: src/Common/LinuxKernel.vala:382 msgid "locked" msgstr "" -#: src/Common/LinuxKernel.vala:466 src/Common/LinuxKernel.vala:995 -#: src/Common/LinuxKernel.vala:1086 +#: src/Common/LinuxKernel.vala:464 src/Common/LinuxKernel.vala:994 +#: src/Common/LinuxKernel.vala:1085 msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:661 src/Gtk/MainWindow.vala:521 +#: src/Common/LinuxKernel.vala:660 src/Gtk/MainWindow.vala:521 msgid "Running" msgstr "In esecuzione" -#: src/Common/LinuxKernel.vala:662 +#: src/Common/LinuxKernel.vala:661 msgid "Installed" msgstr "Installato" -#: src/Common/LinuxKernel.vala:663 +#: src/Common/LinuxKernel.vala:662 msgid "Invalid" msgstr "Non valido" -#: src/Common/LinuxKernel.vala:756 +#: src/Common/LinuxKernel.vala:755 msgid "Packages Available" msgstr "Pacchetti disponibili" -#: src/Common/LinuxKernel.vala:762 +#: src/Common/LinuxKernel.vala:761 msgid "Packages Installed" msgstr "Pacchetti installati" -#: src/Common/LinuxKernel.vala:787 src/lib/TeeJee.FileSystem.vala:94 +#: src/Common/LinuxKernel.vala:786 src/lib/TeeJee.FileSystem.vala:94 msgid "File not found" msgstr "File non trovato" -#: src/Common/LinuxKernel.vala:814 +#: src/Common/LinuxKernel.vala:813 #, fuzzy msgid "needs update" msgstr "Ultimo aggiornamento" -#: src/Common/LinuxKernel.vala:881 +#: src/Common/LinuxKernel.vala:880 msgid "Available Kernels" msgstr "Kernel disponibili" -#: src/Common/LinuxKernel.vala:915 src/Gtk/MainWindow.vala:135 +#: src/Common/LinuxKernel.vala:914 src/Gtk/MainWindow.vala:135 msgid "Kernel" msgstr "Kernel" -#: src/Common/LinuxKernel.vala:915 +#: src/Common/LinuxKernel.vala:914 #, fuzzy msgid "not found" msgstr "File non trovato" -#: src/Common/LinuxKernel.vala:922 +#: src/Common/LinuxKernel.vala:921 #, fuzzy msgid "Download: no downloadable kernels specified" msgstr "Comando non specificato" -#: src/Common/LinuxKernel.vala:938 +#: src/Common/LinuxKernel.vala:937 msgid "enabled" msgstr "abilitato" -#: src/Common/LinuxKernel.vala:963 +#: src/Common/LinuxKernel.vala:962 msgid "Downloading" msgstr "Scaricamento" -#: src/Common/LinuxKernel.vala:981 +#: src/Common/LinuxKernel.vala:980 #, fuzzy msgid "Installing selected kernels" msgstr "Disinstalla i kernel specificati" -#: src/Common/LinuxKernel.vala:987 src/Common/LinuxKernel.vala:1026 +#: src/Common/LinuxKernel.vala:986 src/Common/LinuxKernel.vala:1025 #, fuzzy msgid "Requested" msgstr "richiesto" -#: src/Common/LinuxKernel.vala:990 +#: src/Common/LinuxKernel.vala:989 msgid "is already installed." msgstr "è già installato." -#: src/Common/LinuxKernel.vala:1000 +#: src/Common/LinuxKernel.vala:999 msgid "download failed." msgstr "" -#: src/Common/LinuxKernel.vala:1007 src/Gtk/MainWindow.vala:548 +#: src/Common/LinuxKernel.vala:1006 src/Gtk/MainWindow.vala:548 #, fuzzy msgid "Install: no installable kernels specified" msgstr "Comando non specificato" -#: src/Common/LinuxKernel.vala:1022 +#: src/Common/LinuxKernel.vala:1021 msgid "Uninstalling selected kernels" msgstr "Disinstalla i kernel specificati" -#: src/Common/LinuxKernel.vala:1029 +#: src/Common/LinuxKernel.vala:1028 #, fuzzy msgid "Not uninstalling the currently running kernel" msgstr "non disinstallare il kernel attualmente in esecuzione" -#: src/Common/LinuxKernel.vala:1034 src/Gtk/MainWindow.vala:543 +#: src/Common/LinuxKernel.vala:1033 src/Gtk/MainWindow.vala:543 msgid "is locked" msgstr "" -#: src/Common/LinuxKernel.vala:1042 +#: src/Common/LinuxKernel.vala:1041 msgid "found" msgstr "trovato" -#: src/Common/LinuxKernel.vala:1046 +#: src/Common/LinuxKernel.vala:1045 msgid "Uninstall: no uninstallable packages found" msgstr "" -#: src/Common/LinuxKernel.vala:1082 +#: src/Common/LinuxKernel.vala:1081 #, fuzzy msgid "is the highest installed version." msgstr "Disinstallare tutti tranne la versione più recente installata" -#: src/Common/LinuxKernel.vala:1095 +#: src/Common/LinuxKernel.vala:1094 msgid "Could not find running kernel in list" msgstr "Impossibile trovare il kernel in esecuzione nell'elenco" -#: src/Common/LinuxKernel.vala:1100 +#: src/Common/LinuxKernel.vala:1099 msgid "Could not find any kernels to uninstall" msgstr "Impossibile trovare alcun kernel da rimuovere" -#: src/Common/LinuxKernel.vala:1105 +#: src/Common/LinuxKernel.vala:1104 msgid "The following kernels will be uninstalled" msgstr "I seguenti kernel saranno rimossi" -#: src/Common/LinuxKernel.vala:1107 +#: src/Common/LinuxKernel.vala:1106 msgid "Continue ?" msgstr "Continuare ?" -#: src/Common/LinuxKernel.vala:1123 +#: src/Common/LinuxKernel.vala:1122 #, fuzzy msgid "No updates" msgstr "Nessun aggiornamento trovato" -#: src/Common/LinuxKernel.vala:1129 +#: src/Common/LinuxKernel.vala:1128 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Installare la versione del kernel %s ? (y/n): " -#: src/Common/Main.vala:158 +#: src/Common/Main.vala:157 msgid "Missing Thread support in Glib." msgstr "" -#: src/Common/Main.vala:242 +#: src/Common/Main.vala:241 msgid "Wrote config file" msgstr "" -#: src/Common/Main.vala:261 +#: src/Common/Main.vala:260 msgid "No config file" msgstr "" -#: src/Common/Main.vala:322 +#: src/Common/Main.vala:319 msgid "Loaded config file" msgstr "" -#: src/Common/Main.vala:351 +#: src/Common/Main.vala:339 msgid "Called from" msgstr "Chiamato da" -#: src/Common/Main.vala:351 +#: src/Common/Main.vala:339 msgid "at logon" msgstr "all'avvio" -#: src/Common/Main.vala:352 +#: src/Common/Main.vala:340 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" "Questo file viene sovrascritto ed eseguito nuovamente ogni volta che vengono " "salvate le impostazioni" -#: src/Common/Main.vala:384 +#: src/Common/Main.vala:372 msgid "Notifications are disabled" msgstr "Le notifiche sono disabilitate" @@ -367,7 +367,7 @@ msgstr "Avvisa se è disponibile una versione principale" msgid "Kernel %s Available" msgstr "Kernel %s Disponibile" -#: src/Console/AppConsole.vala:248 src/Gtk/SettingsDialog.vala:151 +#: src/Console/AppConsole.vala:248 src/Gtk/SettingsDialog.vala:145 msgid "Show" msgstr "Mostra" @@ -525,64 +525,64 @@ msgstr "Intervallo in secondi abilitato per il debug" msgid "Check every" msgstr "Controlla ogni" -#: src/Gtk/SettingsDialog.vala:119 +#: src/Gtk/SettingsDialog.vala:118 msgid "Hours" msgstr "Ore" -#: src/Gtk/SettingsDialog.vala:121 +#: src/Gtk/SettingsDialog.vala:119 msgid "Days" msgstr "Giorni" -#: src/Gtk/SettingsDialog.vala:123 +#: src/Gtk/SettingsDialog.vala:120 msgid "Weeks" msgstr "Settimane" -#: src/Gtk/SettingsDialog.vala:126 +#: src/Gtk/SettingsDialog.vala:121 msgid "Seconds" msgstr "Secondi" -#: src/Gtk/SettingsDialog.vala:132 +#: src/Gtk/SettingsDialog.vala:126 msgid "Filters" msgstr "Filtri" -#: src/Gtk/SettingsDialog.vala:140 +#: src/Gtk/SettingsDialog.vala:134 msgid "Hide unstable and RC releases" msgstr "Nascondi versioni instabili e rilasci RC" -#: src/Gtk/SettingsDialog.vala:162 +#: src/Gtk/SettingsDialog.vala:156 msgid "previous major versions ( -1 = all )" msgstr "versioni principali precedenti ( -1 = tutte )" -#: src/Gtk/SettingsDialog.vala:166 +#: src/Gtk/SettingsDialog.vala:160 msgid "Network" msgstr "Rete" -#: src/Gtk/SettingsDialog.vala:177 +#: src/Gtk/SettingsDialog.vala:171 msgid "Internet connection timeout in" msgstr "Timeout connessione Internet in" -#: src/Gtk/SettingsDialog.vala:189 +#: src/Gtk/SettingsDialog.vala:183 msgid "seconds" msgstr "secondi" -#: src/Gtk/SettingsDialog.vala:196 +#: src/Gtk/SettingsDialog.vala:190 msgid "Max concurrent downloads" msgstr "Numero massimo di download simultanei" -#: src/Gtk/SettingsDialog.vala:209 +#: src/Gtk/SettingsDialog.vala:203 msgid "Verify Checksums with the CHECKSUMS files" msgstr "Verifica dei checksum con i file CHECKSUMS" -#: src/Gtk/SettingsDialog.vala:217 +#: src/Gtk/SettingsDialog.vala:211 msgid "Proxy" msgstr "Proxy" -#: src/Gtk/SettingsDialog.vala:250 +#: src/Gtk/SettingsDialog.vala:244 #, fuzzy msgid "Auth Command" msgstr "Comandi" -#: src/Gtk/SettingsDialog.vala:278 +#: src/Gtk/SettingsDialog.vala:272 msgid "Done" msgstr "" diff --git a/po/ko.po b/po/ko.po index b24396ac..7325d120 100644 --- a/po/ko.po +++ b/po/ko.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-07 03:39-0400\n" +"POT-Creation-Date: 2023-06-08 03:52-0400\n" "PO-Revision-Date: 2022-09-28 11:48+0900\n" "Last-Translator: Kevin Kim \n" "Language-Team: Korean\n" @@ -13,219 +13,219 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Poedit 3.0.1\n" -#: src/Common/LinuxKernel.vala:104 +#: src/Common/LinuxKernel.vala:102 msgid "Distribution" msgstr "배포판" -#: src/Common/LinuxKernel.vala:119 +#: src/Common/LinuxKernel.vala:117 msgid "Architecture" msgstr "아키텍처" -#: src/Common/LinuxKernel.vala:134 +#: src/Common/LinuxKernel.vala:132 msgid "Running kernel" msgstr "현재 실행 중인 커널" -#: src/Common/LinuxKernel.vala:221 +#: src/Common/LinuxKernel.vala:219 msgid "loading cached" msgstr "캐시된 로드 중" -#: src/Common/LinuxKernel.vala:233 +#: src/Common/LinuxKernel.vala:231 msgid "queuing download" msgstr "대기열 다운로드" -#: src/Common/LinuxKernel.vala:253 +#: src/Common/LinuxKernel.vala:251 msgid "Fetching individual kernel indexes" msgstr "개별 커널 인덱스 페치" -#: src/Common/LinuxKernel.vala:267 +#: src/Common/LinuxKernel.vala:265 msgid "loading downloaded" msgstr "다운로드 로드 중" -#: src/Common/LinuxKernel.vala:307 +#: src/Common/LinuxKernel.vala:305 msgid "Updating from" msgstr "다음에서 업데이트" -#: src/Common/LinuxKernel.vala:315 +#: src/Common/LinuxKernel.vala:313 msgid "OK" msgstr "확인" -#: src/Common/LinuxKernel.vala:318 +#: src/Common/LinuxKernel.vala:316 msgid "FAILED" msgstr "실패" -#: src/Common/LinuxKernel.vala:383 +#: src/Common/LinuxKernel.vala:381 msgid "Found installed" msgstr "설치된 것을 찾았습니다" -#: src/Common/LinuxKernel.vala:384 +#: src/Common/LinuxKernel.vala:382 msgid "locked" msgstr "" -#: src/Common/LinuxKernel.vala:466 src/Common/LinuxKernel.vala:995 -#: src/Common/LinuxKernel.vala:1086 +#: src/Common/LinuxKernel.vala:464 src/Common/LinuxKernel.vala:994 +#: src/Common/LinuxKernel.vala:1085 msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:661 src/Gtk/MainWindow.vala:521 +#: src/Common/LinuxKernel.vala:660 src/Gtk/MainWindow.vala:521 msgid "Running" msgstr "구동 중" -#: src/Common/LinuxKernel.vala:662 +#: src/Common/LinuxKernel.vala:661 msgid "Installed" msgstr "설치 됨" -#: src/Common/LinuxKernel.vala:663 +#: src/Common/LinuxKernel.vala:662 msgid "Invalid" msgstr "사용할 수 없음" -#: src/Common/LinuxKernel.vala:756 +#: src/Common/LinuxKernel.vala:755 msgid "Packages Available" msgstr "설치 가능한 패키지" -#: src/Common/LinuxKernel.vala:762 +#: src/Common/LinuxKernel.vala:761 msgid "Packages Installed" msgstr "설치된 패키지" -#: src/Common/LinuxKernel.vala:787 src/lib/TeeJee.FileSystem.vala:94 +#: src/Common/LinuxKernel.vala:786 src/lib/TeeJee.FileSystem.vala:94 msgid "File not found" msgstr "파일을 찾을 수 없습니다" -#: src/Common/LinuxKernel.vala:814 +#: src/Common/LinuxKernel.vala:813 #, fuzzy msgid "needs update" msgstr "최신 업데이트" -#: src/Common/LinuxKernel.vala:881 +#: src/Common/LinuxKernel.vala:880 msgid "Available Kernels" msgstr "설치 가능한 커널" -#: src/Common/LinuxKernel.vala:915 src/Gtk/MainWindow.vala:135 +#: src/Common/LinuxKernel.vala:914 src/Gtk/MainWindow.vala:135 msgid "Kernel" msgstr "커널" -#: src/Common/LinuxKernel.vala:915 +#: src/Common/LinuxKernel.vala:914 #, fuzzy msgid "not found" msgstr "파일을 찾을 수 없습니다" -#: src/Common/LinuxKernel.vala:922 +#: src/Common/LinuxKernel.vala:921 #, fuzzy msgid "Download: no downloadable kernels specified" msgstr "지정한 명령어가 없습니다" -#: src/Common/LinuxKernel.vala:938 +#: src/Common/LinuxKernel.vala:937 msgid "enabled" msgstr "사용" -#: src/Common/LinuxKernel.vala:963 +#: src/Common/LinuxKernel.vala:962 msgid "Downloading" msgstr "다운로드" -#: src/Common/LinuxKernel.vala:981 +#: src/Common/LinuxKernel.vala:980 #, fuzzy msgid "Installing selected kernels" msgstr "선택한 커널 제거" -#: src/Common/LinuxKernel.vala:987 src/Common/LinuxKernel.vala:1026 +#: src/Common/LinuxKernel.vala:986 src/Common/LinuxKernel.vala:1025 #, fuzzy msgid "Requested" msgstr "요청" -#: src/Common/LinuxKernel.vala:990 +#: src/Common/LinuxKernel.vala:989 msgid "is already installed." msgstr "가 이미 설치되어 있습니다" -#: src/Common/LinuxKernel.vala:1000 +#: src/Common/LinuxKernel.vala:999 msgid "download failed." msgstr "" -#: src/Common/LinuxKernel.vala:1007 src/Gtk/MainWindow.vala:548 +#: src/Common/LinuxKernel.vala:1006 src/Gtk/MainWindow.vala:548 #, fuzzy msgid "Install: no installable kernels specified" msgstr "지정한 명령어가 없습니다" -#: src/Common/LinuxKernel.vala:1022 +#: src/Common/LinuxKernel.vala:1021 msgid "Uninstalling selected kernels" msgstr "선택한 커널 제거" -#: src/Common/LinuxKernel.vala:1029 +#: src/Common/LinuxKernel.vala:1028 #, fuzzy msgid "Not uninstalling the currently running kernel" msgstr "현재 실행 중인 커널을 제거하지 않음" -#: src/Common/LinuxKernel.vala:1034 src/Gtk/MainWindow.vala:543 +#: src/Common/LinuxKernel.vala:1033 src/Gtk/MainWindow.vala:543 msgid "is locked" msgstr "" -#: src/Common/LinuxKernel.vala:1042 +#: src/Common/LinuxKernel.vala:1041 msgid "found" msgstr "설립하다" -#: src/Common/LinuxKernel.vala:1046 +#: src/Common/LinuxKernel.vala:1045 msgid "Uninstall: no uninstallable packages found" msgstr "" -#: src/Common/LinuxKernel.vala:1082 +#: src/Common/LinuxKernel.vala:1081 #, fuzzy msgid "is the highest installed version." msgstr "설치된 가장 높은 버전을 제외한 모든 버전을 제거합니다" -#: src/Common/LinuxKernel.vala:1095 +#: src/Common/LinuxKernel.vala:1094 msgid "Could not find running kernel in list" msgstr "현재 실행 중인 커널을 찾을 수 없습니다" -#: src/Common/LinuxKernel.vala:1100 +#: src/Common/LinuxKernel.vala:1099 msgid "Could not find any kernels to uninstall" msgstr "삭제할 커널을 찾을 수 없습니다" -#: src/Common/LinuxKernel.vala:1105 +#: src/Common/LinuxKernel.vala:1104 msgid "The following kernels will be uninstalled" msgstr "풀이" -#: src/Common/LinuxKernel.vala:1107 +#: src/Common/LinuxKernel.vala:1106 msgid "Continue ?" msgstr "계속하시겠습니까?" -#: src/Common/LinuxKernel.vala:1123 +#: src/Common/LinuxKernel.vala:1122 #, fuzzy msgid "No updates" msgstr "업데이트를 찾을 수 없습니다" -#: src/Common/LinuxKernel.vala:1129 +#: src/Common/LinuxKernel.vala:1128 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "커널 %s 버전을 설치하시겠습니까? (y/n): " -#: src/Common/Main.vala:158 +#: src/Common/Main.vala:157 msgid "Missing Thread support in Glib." msgstr "" -#: src/Common/Main.vala:242 +#: src/Common/Main.vala:241 msgid "Wrote config file" msgstr "" -#: src/Common/Main.vala:261 +#: src/Common/Main.vala:260 msgid "No config file" msgstr "" -#: src/Common/Main.vala:322 +#: src/Common/Main.vala:319 msgid "Loaded config file" msgstr "" -#: src/Common/Main.vala:351 +#: src/Common/Main.vala:339 msgid "Called from" msgstr "에서 호출" -#: src/Common/Main.vala:351 +#: src/Common/Main.vala:339 msgid "at logon" msgstr "로그온 시" -#: src/Common/Main.vala:352 +#: src/Common/Main.vala:340 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "이 파일은 덮어쓰고 설정이 저장될 때마다 다시 실행됩니다." -#: src/Common/Main.vala:384 +#: src/Common/Main.vala:372 msgid "Notifications are disabled" msgstr "알림이 비활성화 되었습니다" @@ -365,7 +365,7 @@ msgstr "메이저 릴리즈가 있으면 알림" msgid "Kernel %s Available" msgstr "커널 %s 사용 가능" -#: src/Console/AppConsole.vala:248 src/Gtk/SettingsDialog.vala:151 +#: src/Console/AppConsole.vala:248 src/Gtk/SettingsDialog.vala:145 msgid "Show" msgstr "보이기" @@ -523,64 +523,64 @@ msgstr "디버깅에 사용할 수 있는 초 간격" msgid "Check every" msgstr "확인 주기" -#: src/Gtk/SettingsDialog.vala:119 +#: src/Gtk/SettingsDialog.vala:118 msgid "Hours" msgstr "시간" -#: src/Gtk/SettingsDialog.vala:121 +#: src/Gtk/SettingsDialog.vala:119 msgid "Days" msgstr "일" -#: src/Gtk/SettingsDialog.vala:123 +#: src/Gtk/SettingsDialog.vala:120 msgid "Weeks" msgstr "주" -#: src/Gtk/SettingsDialog.vala:126 +#: src/Gtk/SettingsDialog.vala:121 msgid "Seconds" msgstr "초" -#: src/Gtk/SettingsDialog.vala:132 +#: src/Gtk/SettingsDialog.vala:126 msgid "Filters" msgstr "필터" -#: src/Gtk/SettingsDialog.vala:140 +#: src/Gtk/SettingsDialog.vala:134 msgid "Hide unstable and RC releases" msgstr "목록에서 unstable, RC 버전 포함" -#: src/Gtk/SettingsDialog.vala:162 +#: src/Gtk/SettingsDialog.vala:156 msgid "previous major versions ( -1 = all )" msgstr "이전 주 버전 ( -1 = 모두 )" -#: src/Gtk/SettingsDialog.vala:166 +#: src/Gtk/SettingsDialog.vala:160 msgid "Network" msgstr "네트워크" -#: src/Gtk/SettingsDialog.vala:177 +#: src/Gtk/SettingsDialog.vala:171 msgid "Internet connection timeout in" msgstr "인터넷 연결 시간 초과" -#: src/Gtk/SettingsDialog.vala:189 +#: src/Gtk/SettingsDialog.vala:183 msgid "seconds" msgstr "초" -#: src/Gtk/SettingsDialog.vala:196 +#: src/Gtk/SettingsDialog.vala:190 msgid "Max concurrent downloads" msgstr "동시 다운로드 최대 수" -#: src/Gtk/SettingsDialog.vala:209 +#: src/Gtk/SettingsDialog.vala:203 msgid "Verify Checksums with the CHECKSUMS files" msgstr "CHECKSUMS 파일로 체크섬 확인" -#: src/Gtk/SettingsDialog.vala:217 +#: src/Gtk/SettingsDialog.vala:211 msgid "Proxy" msgstr "대리" -#: src/Gtk/SettingsDialog.vala:250 +#: src/Gtk/SettingsDialog.vala:244 #, fuzzy msgid "Auth Command" msgstr "명령어" -#: src/Gtk/SettingsDialog.vala:278 +#: src/Gtk/SettingsDialog.vala:272 msgid "Done" msgstr "" diff --git a/po/messages.pot b/po/messages.pot index e4dd3f11..12616687 100644 --- a/po/messages.pot +++ b/po/messages.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline 1.3.11\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-07 03:39-0400\n" +"POT-Creation-Date: 2023-06-08 04:43-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,210 +17,210 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" -#: src/Common/LinuxKernel.vala:104 +#: src/Common/LinuxKernel.vala:102 msgid "Distribution" msgstr "" -#: src/Common/LinuxKernel.vala:119 +#: src/Common/LinuxKernel.vala:117 msgid "Architecture" msgstr "" -#: src/Common/LinuxKernel.vala:134 +#: src/Common/LinuxKernel.vala:132 msgid "Running kernel" msgstr "" -#: src/Common/LinuxKernel.vala:221 +#: src/Common/LinuxKernel.vala:219 msgid "loading cached" msgstr "" -#: src/Common/LinuxKernel.vala:233 +#: src/Common/LinuxKernel.vala:231 msgid "queuing download" msgstr "" -#: src/Common/LinuxKernel.vala:253 +#: src/Common/LinuxKernel.vala:251 msgid "Fetching individual kernel indexes" msgstr "" -#: src/Common/LinuxKernel.vala:267 +#: src/Common/LinuxKernel.vala:265 msgid "loading downloaded" msgstr "" -#: src/Common/LinuxKernel.vala:307 +#: src/Common/LinuxKernel.vala:305 msgid "Updating from" msgstr "" -#: src/Common/LinuxKernel.vala:315 +#: src/Common/LinuxKernel.vala:313 msgid "OK" msgstr "" -#: src/Common/LinuxKernel.vala:318 +#: src/Common/LinuxKernel.vala:316 msgid "FAILED" msgstr "" -#: src/Common/LinuxKernel.vala:383 +#: src/Common/LinuxKernel.vala:381 msgid "Found installed" msgstr "" -#: src/Common/LinuxKernel.vala:384 +#: src/Common/LinuxKernel.vala:382 msgid "locked" msgstr "" -#: src/Common/LinuxKernel.vala:466 src/Common/LinuxKernel.vala:995 -#: src/Common/LinuxKernel.vala:1086 +#: src/Common/LinuxKernel.vala:464 src/Common/LinuxKernel.vala:994 +#: src/Common/LinuxKernel.vala:1085 msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:661 src/Gtk/MainWindow.vala:521 +#: src/Common/LinuxKernel.vala:660 src/Gtk/MainWindow.vala:521 msgid "Running" msgstr "" -#: src/Common/LinuxKernel.vala:662 +#: src/Common/LinuxKernel.vala:661 msgid "Installed" msgstr "" -#: src/Common/LinuxKernel.vala:663 +#: src/Common/LinuxKernel.vala:662 msgid "Invalid" msgstr "" -#: src/Common/LinuxKernel.vala:756 +#: src/Common/LinuxKernel.vala:755 msgid "Packages Available" msgstr "" -#: src/Common/LinuxKernel.vala:762 +#: src/Common/LinuxKernel.vala:761 msgid "Packages Installed" msgstr "" -#: src/Common/LinuxKernel.vala:787 src/lib/TeeJee.FileSystem.vala:94 +#: src/Common/LinuxKernel.vala:786 src/lib/TeeJee.FileSystem.vala:94 msgid "File not found" msgstr "" -#: src/Common/LinuxKernel.vala:814 +#: src/Common/LinuxKernel.vala:813 msgid "needs update" msgstr "" -#: src/Common/LinuxKernel.vala:881 +#: src/Common/LinuxKernel.vala:880 msgid "Available Kernels" msgstr "" -#: src/Common/LinuxKernel.vala:915 src/Gtk/MainWindow.vala:135 +#: src/Common/LinuxKernel.vala:914 src/Gtk/MainWindow.vala:135 msgid "Kernel" msgstr "" -#: src/Common/LinuxKernel.vala:915 +#: src/Common/LinuxKernel.vala:914 msgid "not found" msgstr "" -#: src/Common/LinuxKernel.vala:922 +#: src/Common/LinuxKernel.vala:921 msgid "Download: no downloadable kernels specified" msgstr "" -#: src/Common/LinuxKernel.vala:938 +#: src/Common/LinuxKernel.vala:937 msgid "enabled" msgstr "" -#: src/Common/LinuxKernel.vala:963 +#: src/Common/LinuxKernel.vala:962 msgid "Downloading" msgstr "" -#: src/Common/LinuxKernel.vala:981 +#: src/Common/LinuxKernel.vala:980 msgid "Installing selected kernels" msgstr "" -#: src/Common/LinuxKernel.vala:987 src/Common/LinuxKernel.vala:1026 +#: src/Common/LinuxKernel.vala:986 src/Common/LinuxKernel.vala:1025 msgid "Requested" msgstr "" -#: src/Common/LinuxKernel.vala:990 +#: src/Common/LinuxKernel.vala:989 msgid "is already installed." msgstr "" -#: src/Common/LinuxKernel.vala:1000 +#: src/Common/LinuxKernel.vala:999 msgid "download failed." msgstr "" -#: src/Common/LinuxKernel.vala:1007 src/Gtk/MainWindow.vala:548 +#: src/Common/LinuxKernel.vala:1006 src/Gtk/MainWindow.vala:548 msgid "Install: no installable kernels specified" msgstr "" -#: src/Common/LinuxKernel.vala:1022 +#: src/Common/LinuxKernel.vala:1021 msgid "Uninstalling selected kernels" msgstr "" -#: src/Common/LinuxKernel.vala:1029 +#: src/Common/LinuxKernel.vala:1028 msgid "Not uninstalling the currently running kernel" msgstr "" -#: src/Common/LinuxKernel.vala:1034 src/Gtk/MainWindow.vala:543 +#: src/Common/LinuxKernel.vala:1033 src/Gtk/MainWindow.vala:543 msgid "is locked" msgstr "" -#: src/Common/LinuxKernel.vala:1042 +#: src/Common/LinuxKernel.vala:1041 msgid "found" msgstr "" -#: src/Common/LinuxKernel.vala:1046 +#: src/Common/LinuxKernel.vala:1045 msgid "Uninstall: no uninstallable packages found" msgstr "" -#: src/Common/LinuxKernel.vala:1082 +#: src/Common/LinuxKernel.vala:1081 msgid "is the highest installed version." msgstr "" -#: src/Common/LinuxKernel.vala:1095 +#: src/Common/LinuxKernel.vala:1094 msgid "Could not find running kernel in list" msgstr "" -#: src/Common/LinuxKernel.vala:1100 +#: src/Common/LinuxKernel.vala:1099 msgid "Could not find any kernels to uninstall" msgstr "" -#: src/Common/LinuxKernel.vala:1105 +#: src/Common/LinuxKernel.vala:1104 msgid "The following kernels will be uninstalled" msgstr "" -#: src/Common/LinuxKernel.vala:1107 +#: src/Common/LinuxKernel.vala:1106 msgid "Continue ?" msgstr "" -#: src/Common/LinuxKernel.vala:1123 +#: src/Common/LinuxKernel.vala:1122 msgid "No updates" msgstr "" -#: src/Common/LinuxKernel.vala:1129 +#: src/Common/LinuxKernel.vala:1128 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "" -#: src/Common/Main.vala:158 +#: src/Common/Main.vala:157 msgid "Missing Thread support in Glib." msgstr "" -#: src/Common/Main.vala:242 +#: src/Common/Main.vala:241 msgid "Wrote config file" msgstr "" -#: src/Common/Main.vala:261 +#: src/Common/Main.vala:260 msgid "No config file" msgstr "" -#: src/Common/Main.vala:322 +#: src/Common/Main.vala:319 msgid "Loaded config file" msgstr "" -#: src/Common/Main.vala:351 +#: src/Common/Main.vala:339 msgid "Called from" msgstr "" -#: src/Common/Main.vala:351 +#: src/Common/Main.vala:339 msgid "at logon" msgstr "" -#: src/Common/Main.vala:352 +#: src/Common/Main.vala:340 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" -#: src/Common/Main.vala:384 +#: src/Common/Main.vala:372 msgid "Notifications are disabled" msgstr "" @@ -351,7 +351,7 @@ msgstr "" msgid "Kernel %s Available" msgstr "" -#: src/Console/AppConsole.vala:248 src/Gtk/SettingsDialog.vala:151 +#: src/Console/AppConsole.vala:248 src/Gtk/SettingsDialog.vala:145 msgid "Show" msgstr "" @@ -508,63 +508,63 @@ msgstr "" msgid "Check every" msgstr "" -#: src/Gtk/SettingsDialog.vala:119 +#: src/Gtk/SettingsDialog.vala:118 msgid "Hours" msgstr "" -#: src/Gtk/SettingsDialog.vala:121 +#: src/Gtk/SettingsDialog.vala:119 msgid "Days" msgstr "" -#: src/Gtk/SettingsDialog.vala:123 +#: src/Gtk/SettingsDialog.vala:120 msgid "Weeks" msgstr "" -#: src/Gtk/SettingsDialog.vala:126 +#: src/Gtk/SettingsDialog.vala:121 msgid "Seconds" msgstr "" -#: src/Gtk/SettingsDialog.vala:132 +#: src/Gtk/SettingsDialog.vala:126 msgid "Filters" msgstr "" -#: src/Gtk/SettingsDialog.vala:140 +#: src/Gtk/SettingsDialog.vala:134 msgid "Hide unstable and RC releases" msgstr "" -#: src/Gtk/SettingsDialog.vala:162 +#: src/Gtk/SettingsDialog.vala:156 msgid "previous major versions ( -1 = all )" msgstr "" -#: src/Gtk/SettingsDialog.vala:166 +#: src/Gtk/SettingsDialog.vala:160 msgid "Network" msgstr "" -#: src/Gtk/SettingsDialog.vala:177 +#: src/Gtk/SettingsDialog.vala:171 msgid "Internet connection timeout in" msgstr "" -#: src/Gtk/SettingsDialog.vala:189 +#: src/Gtk/SettingsDialog.vala:183 msgid "seconds" msgstr "" -#: src/Gtk/SettingsDialog.vala:196 +#: src/Gtk/SettingsDialog.vala:190 msgid "Max concurrent downloads" msgstr "" -#: src/Gtk/SettingsDialog.vala:209 +#: src/Gtk/SettingsDialog.vala:203 msgid "Verify Checksums with the CHECKSUMS files" msgstr "" -#: src/Gtk/SettingsDialog.vala:217 +#: src/Gtk/SettingsDialog.vala:211 msgid "Proxy" msgstr "" -#: src/Gtk/SettingsDialog.vala:250 +#: src/Gtk/SettingsDialog.vala:244 msgid "Auth Command" msgstr "" -#: src/Gtk/SettingsDialog.vala:278 +#: src/Gtk/SettingsDialog.vala:272 msgid "Done" msgstr "" diff --git a/po/nl.po b/po/nl.po index d9beaf2e..b0d01ccf 100644 --- a/po/nl.po +++ b/po/nl.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-07 03:39-0400\n" +"POT-Creation-Date: 2023-06-08 03:52-0400\n" "PO-Revision-Date: 2020-08-23 13:55+0200\n" "Last-Translator: Heimen Stoffels \n" "Language-Team: Dutch (Netherlands)\n" @@ -13,221 +13,221 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Poedit 3.2.2\n" -#: src/Common/LinuxKernel.vala:104 +#: src/Common/LinuxKernel.vala:102 msgid "Distribution" msgstr "Distributie" -#: src/Common/LinuxKernel.vala:119 +#: src/Common/LinuxKernel.vala:117 msgid "Architecture" msgstr "Architectuur" -#: src/Common/LinuxKernel.vala:134 +#: src/Common/LinuxKernel.vala:132 msgid "Running kernel" msgstr "Kernel uitvoeren" -#: src/Common/LinuxKernel.vala:221 +#: src/Common/LinuxKernel.vala:219 msgid "loading cached" msgstr "laden in cache" -#: src/Common/LinuxKernel.vala:233 +#: src/Common/LinuxKernel.vala:231 msgid "queuing download" msgstr "wachtrijen downloaden" -#: src/Common/LinuxKernel.vala:253 +#: src/Common/LinuxKernel.vala:251 msgid "Fetching individual kernel indexes" msgstr "Afzonderlijke kernelindexen ophalen" -#: src/Common/LinuxKernel.vala:267 +#: src/Common/LinuxKernel.vala:265 msgid "loading downloaded" msgstr "laden gedownload" -#: src/Common/LinuxKernel.vala:307 +#: src/Common/LinuxKernel.vala:305 msgid "Updating from" msgstr "Bijwerken van" -#: src/Common/LinuxKernel.vala:315 +#: src/Common/LinuxKernel.vala:313 msgid "OK" msgstr "Oké" -#: src/Common/LinuxKernel.vala:318 +#: src/Common/LinuxKernel.vala:316 msgid "FAILED" msgstr "MISLUKT" -#: src/Common/LinuxKernel.vala:383 +#: src/Common/LinuxKernel.vala:381 msgid "Found installed" msgstr "Geïnstalleerd gevonden" -#: src/Common/LinuxKernel.vala:384 +#: src/Common/LinuxKernel.vala:382 msgid "locked" msgstr "" -#: src/Common/LinuxKernel.vala:466 src/Common/LinuxKernel.vala:995 -#: src/Common/LinuxKernel.vala:1086 +#: src/Common/LinuxKernel.vala:464 src/Common/LinuxKernel.vala:994 +#: src/Common/LinuxKernel.vala:1085 msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:661 src/Gtk/MainWindow.vala:521 +#: src/Common/LinuxKernel.vala:660 src/Gtk/MainWindow.vala:521 msgid "Running" msgstr "In gebruik" -#: src/Common/LinuxKernel.vala:662 +#: src/Common/LinuxKernel.vala:661 msgid "Installed" msgstr "Geïnstalleerd" -#: src/Common/LinuxKernel.vala:663 +#: src/Common/LinuxKernel.vala:662 msgid "Invalid" msgstr "Ongeldig" -#: src/Common/LinuxKernel.vala:756 +#: src/Common/LinuxKernel.vala:755 msgid "Packages Available" msgstr "Beschikbare pakketten" -#: src/Common/LinuxKernel.vala:762 +#: src/Common/LinuxKernel.vala:761 msgid "Packages Installed" msgstr "Geïnstalleerde pakketten" -#: src/Common/LinuxKernel.vala:787 src/lib/TeeJee.FileSystem.vala:94 +#: src/Common/LinuxKernel.vala:786 src/lib/TeeJee.FileSystem.vala:94 msgid "File not found" msgstr "Het bestand is niet gevonden" -#: src/Common/LinuxKernel.vala:814 +#: src/Common/LinuxKernel.vala:813 #, fuzzy msgid "needs update" msgstr "Recentste update" -#: src/Common/LinuxKernel.vala:881 +#: src/Common/LinuxKernel.vala:880 msgid "Available Kernels" msgstr "Beschikbare kernels" -#: src/Common/LinuxKernel.vala:915 src/Gtk/MainWindow.vala:135 +#: src/Common/LinuxKernel.vala:914 src/Gtk/MainWindow.vala:135 msgid "Kernel" msgstr "Kernel" -#: src/Common/LinuxKernel.vala:915 +#: src/Common/LinuxKernel.vala:914 #, fuzzy msgid "not found" msgstr "Het bestand is niet gevonden" -#: src/Common/LinuxKernel.vala:922 +#: src/Common/LinuxKernel.vala:921 #, fuzzy msgid "Download: no downloadable kernels specified" msgstr "Geen opdracht opgegeven" -#: src/Common/LinuxKernel.vala:938 +#: src/Common/LinuxKernel.vala:937 msgid "enabled" msgstr "ingeschakeld" -#: src/Common/LinuxKernel.vala:963 +#: src/Common/LinuxKernel.vala:962 msgid "Downloading" msgstr "Downloaden" -#: src/Common/LinuxKernel.vala:981 +#: src/Common/LinuxKernel.vala:980 #, fuzzy msgid "Installing selected kernels" msgstr "Geselecteerde kernels verwijderen" -#: src/Common/LinuxKernel.vala:987 src/Common/LinuxKernel.vala:1026 +#: src/Common/LinuxKernel.vala:986 src/Common/LinuxKernel.vala:1025 #, fuzzy msgid "Requested" msgstr "verzocht" -#: src/Common/LinuxKernel.vala:990 +#: src/Common/LinuxKernel.vala:989 msgid "is already installed." msgstr "is al geïnstalleerd." -#: src/Common/LinuxKernel.vala:1000 +#: src/Common/LinuxKernel.vala:999 msgid "download failed." msgstr "" -#: src/Common/LinuxKernel.vala:1007 src/Gtk/MainWindow.vala:548 +#: src/Common/LinuxKernel.vala:1006 src/Gtk/MainWindow.vala:548 #, fuzzy msgid "Install: no installable kernels specified" msgstr "Geen opdracht opgegeven" -#: src/Common/LinuxKernel.vala:1022 +#: src/Common/LinuxKernel.vala:1021 msgid "Uninstalling selected kernels" msgstr "Geselecteerde kernels verwijderen" -#: src/Common/LinuxKernel.vala:1029 +#: src/Common/LinuxKernel.vala:1028 #, fuzzy msgid "Not uninstalling the currently running kernel" msgstr "de momenteel actieve kernel niet verwijderen" -#: src/Common/LinuxKernel.vala:1034 src/Gtk/MainWindow.vala:543 +#: src/Common/LinuxKernel.vala:1033 src/Gtk/MainWindow.vala:543 msgid "is locked" msgstr "" -#: src/Common/LinuxKernel.vala:1042 +#: src/Common/LinuxKernel.vala:1041 msgid "found" msgstr "gevonden" -#: src/Common/LinuxKernel.vala:1046 +#: src/Common/LinuxKernel.vala:1045 msgid "Uninstall: no uninstallable packages found" msgstr "" -#: src/Common/LinuxKernel.vala:1082 +#: src/Common/LinuxKernel.vala:1081 #, fuzzy msgid "is the highest installed version." msgstr "Verwijder alle behalve de hoogst geïnstalleerde versie" -#: src/Common/LinuxKernel.vala:1095 +#: src/Common/LinuxKernel.vala:1094 msgid "Could not find running kernel in list" msgstr "De in gebruik zijnde kernel staat niet op de lijst" -#: src/Common/LinuxKernel.vala:1100 +#: src/Common/LinuxKernel.vala:1099 msgid "Could not find any kernels to uninstall" msgstr "Er zijn geen te verwijderen kernels" -#: src/Common/LinuxKernel.vala:1105 +#: src/Common/LinuxKernel.vala:1104 msgid "The following kernels will be uninstalled" msgstr "De volgende kernels worden verwijderd" -#: src/Common/LinuxKernel.vala:1107 +#: src/Common/LinuxKernel.vala:1106 msgid "Continue ?" msgstr "Wilt u doorgaan?" -#: src/Common/LinuxKernel.vala:1123 +#: src/Common/LinuxKernel.vala:1122 #, fuzzy msgid "No updates" msgstr "Geen updates gevonden" -#: src/Common/LinuxKernel.vala:1129 +#: src/Common/LinuxKernel.vala:1128 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Wilt u versie %s installeren? (j/n): " -#: src/Common/Main.vala:158 +#: src/Common/Main.vala:157 msgid "Missing Thread support in Glib." msgstr "" -#: src/Common/Main.vala:242 +#: src/Common/Main.vala:241 msgid "Wrote config file" msgstr "" -#: src/Common/Main.vala:261 +#: src/Common/Main.vala:260 msgid "No config file" msgstr "" -#: src/Common/Main.vala:322 +#: src/Common/Main.vala:319 msgid "Loaded config file" msgstr "" -#: src/Common/Main.vala:351 +#: src/Common/Main.vala:339 msgid "Called from" msgstr "Aangeroepen door" -#: src/Common/Main.vala:351 +#: src/Common/Main.vala:339 msgid "at logon" msgstr "bij het opstarten" -#: src/Common/Main.vala:352 +#: src/Common/Main.vala:340 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" "Dit bestand wordt overschreven en opnieuw uitgevoerd wanneer instellingen " "worden opgeslagen in" -#: src/Common/Main.vala:384 +#: src/Common/Main.vala:372 msgid "Notifications are disabled" msgstr "Meldingen zijn uitgeschakeld" @@ -367,7 +367,7 @@ msgstr "Melding tonen als er een grote update beschikbaar is" msgid "Kernel %s Available" msgstr "Kernel %s is beschikbaar" -#: src/Console/AppConsole.vala:248 src/Gtk/SettingsDialog.vala:151 +#: src/Console/AppConsole.vala:248 src/Gtk/SettingsDialog.vala:145 msgid "Show" msgstr "Tonen" @@ -525,64 +525,64 @@ msgstr "Secondeninterval ingeschakeld voor foutopsporing" msgid "Check every" msgstr "Controleren, elke" -#: src/Gtk/SettingsDialog.vala:119 +#: src/Gtk/SettingsDialog.vala:118 msgid "Hours" msgstr "uur" -#: src/Gtk/SettingsDialog.vala:121 +#: src/Gtk/SettingsDialog.vala:119 msgid "Days" msgstr "dagen" -#: src/Gtk/SettingsDialog.vala:123 +#: src/Gtk/SettingsDialog.vala:120 msgid "Weeks" msgstr "weken" -#: src/Gtk/SettingsDialog.vala:126 +#: src/Gtk/SettingsDialog.vala:121 msgid "Seconds" msgstr "seconden" -#: src/Gtk/SettingsDialog.vala:132 +#: src/Gtk/SettingsDialog.vala:126 msgid "Filters" msgstr "Filters" -#: src/Gtk/SettingsDialog.vala:140 +#: src/Gtk/SettingsDialog.vala:134 msgid "Hide unstable and RC releases" msgstr "Instabiele en rc-uitgaven verbergen" -#: src/Gtk/SettingsDialog.vala:162 +#: src/Gtk/SettingsDialog.vala:156 msgid "previous major versions ( -1 = all )" msgstr "vorige hoofdversies ( -1 = alle )" -#: src/Gtk/SettingsDialog.vala:166 +#: src/Gtk/SettingsDialog.vala:160 msgid "Network" msgstr "Netwerk" -#: src/Gtk/SettingsDialog.vala:177 +#: src/Gtk/SettingsDialog.vala:171 msgid "Internet connection timeout in" msgstr "Verbindingstime-out na" -#: src/Gtk/SettingsDialog.vala:189 +#: src/Gtk/SettingsDialog.vala:183 msgid "seconds" msgstr "seconden" -#: src/Gtk/SettingsDialog.vala:196 +#: src/Gtk/SettingsDialog.vala:190 msgid "Max concurrent downloads" msgstr "Max. aantal gelijktijdige downloads" -#: src/Gtk/SettingsDialog.vala:209 +#: src/Gtk/SettingsDialog.vala:203 msgid "Verify Checksums with the CHECKSUMS files" msgstr "Controleer controlesommen met de CHECKSUMS-bestanden" -#: src/Gtk/SettingsDialog.vala:217 +#: src/Gtk/SettingsDialog.vala:211 msgid "Proxy" msgstr "Proxy" -#: src/Gtk/SettingsDialog.vala:250 +#: src/Gtk/SettingsDialog.vala:244 #, fuzzy msgid "Auth Command" msgstr "Opdrachten" -#: src/Gtk/SettingsDialog.vala:278 +#: src/Gtk/SettingsDialog.vala:272 msgid "Done" msgstr "" diff --git a/po/pl.po b/po/pl.po index a70b36af..2ba3d41d 100644 --- a/po/pl.po +++ b/po/pl.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-07 03:39-0400\n" +"POT-Creation-Date: 2023-06-08 03:52-0400\n" "PO-Revision-Date: 2023-06-03 14:24+0200\n" "Last-Translator: Matthaiks\n" "Language-Team: Polish\n" @@ -12,215 +12,215 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Poedit 3.3.1\n" -#: src/Common/LinuxKernel.vala:104 +#: src/Common/LinuxKernel.vala:102 msgid "Distribution" msgstr "Dystrybucja" -#: src/Common/LinuxKernel.vala:119 +#: src/Common/LinuxKernel.vala:117 msgid "Architecture" msgstr "Architektura" -#: src/Common/LinuxKernel.vala:134 +#: src/Common/LinuxKernel.vala:132 msgid "Running kernel" msgstr "Uruchomione jądro" -#: src/Common/LinuxKernel.vala:221 +#: src/Common/LinuxKernel.vala:219 msgid "loading cached" msgstr "ładowanie z pamięci podręcznej" -#: src/Common/LinuxKernel.vala:233 +#: src/Common/LinuxKernel.vala:231 msgid "queuing download" msgstr "pobieranie w kolejce" -#: src/Common/LinuxKernel.vala:253 +#: src/Common/LinuxKernel.vala:251 msgid "Fetching individual kernel indexes" msgstr "Pobieranie indywidualnych indeksów jądra" -#: src/Common/LinuxKernel.vala:267 +#: src/Common/LinuxKernel.vala:265 msgid "loading downloaded" msgstr "ładowanie pobranych" -#: src/Common/LinuxKernel.vala:307 +#: src/Common/LinuxKernel.vala:305 msgid "Updating from" msgstr "Aktualizowanie z" -#: src/Common/LinuxKernel.vala:315 +#: src/Common/LinuxKernel.vala:313 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:318 +#: src/Common/LinuxKernel.vala:316 msgid "FAILED" msgstr "NIEPOWODZENIE" -#: src/Common/LinuxKernel.vala:383 +#: src/Common/LinuxKernel.vala:381 msgid "Found installed" msgstr "Znaleziono zainstalowane" -#: src/Common/LinuxKernel.vala:384 +#: src/Common/LinuxKernel.vala:382 msgid "locked" msgstr "zablokowane" -#: src/Common/LinuxKernel.vala:466 src/Common/LinuxKernel.vala:995 -#: src/Common/LinuxKernel.vala:1086 +#: src/Common/LinuxKernel.vala:464 src/Common/LinuxKernel.vala:994 +#: src/Common/LinuxKernel.vala:1085 msgid "is locked." msgstr "jest zablokowane." -#: src/Common/LinuxKernel.vala:661 src/Gtk/MainWindow.vala:521 +#: src/Common/LinuxKernel.vala:660 src/Gtk/MainWindow.vala:521 msgid "Running" msgstr "Uruchomione" -#: src/Common/LinuxKernel.vala:662 +#: src/Common/LinuxKernel.vala:661 msgid "Installed" msgstr "Zainstalowane" -#: src/Common/LinuxKernel.vala:663 +#: src/Common/LinuxKernel.vala:662 msgid "Invalid" msgstr "Nieprawidłowe" -#: src/Common/LinuxKernel.vala:756 +#: src/Common/LinuxKernel.vala:755 msgid "Packages Available" msgstr "Dostępne pakiety" -#: src/Common/LinuxKernel.vala:762 +#: src/Common/LinuxKernel.vala:761 msgid "Packages Installed" msgstr "Pakiety zainstalowane" -#: src/Common/LinuxKernel.vala:787 src/lib/TeeJee.FileSystem.vala:94 +#: src/Common/LinuxKernel.vala:786 src/lib/TeeJee.FileSystem.vala:94 msgid "File not found" msgstr "Nie odnaleziono pliku" -#: src/Common/LinuxKernel.vala:814 +#: src/Common/LinuxKernel.vala:813 #, fuzzy msgid "needs update" msgstr "Najnowsza aktualizacja" -#: src/Common/LinuxKernel.vala:881 +#: src/Common/LinuxKernel.vala:880 msgid "Available Kernels" msgstr "Dostępne jądra" -#: src/Common/LinuxKernel.vala:915 src/Gtk/MainWindow.vala:135 +#: src/Common/LinuxKernel.vala:914 src/Gtk/MainWindow.vala:135 msgid "Kernel" msgstr "Jądro" -#: src/Common/LinuxKernel.vala:915 +#: src/Common/LinuxKernel.vala:914 msgid "not found" msgstr "nie odnaleziono" -#: src/Common/LinuxKernel.vala:922 +#: src/Common/LinuxKernel.vala:921 msgid "Download: no downloadable kernels specified" msgstr "Pobieranie: nie określono jąder do pobrania" -#: src/Common/LinuxKernel.vala:938 +#: src/Common/LinuxKernel.vala:937 msgid "enabled" msgstr "włączone" -#: src/Common/LinuxKernel.vala:963 +#: src/Common/LinuxKernel.vala:962 msgid "Downloading" msgstr "Pobieranie" -#: src/Common/LinuxKernel.vala:981 +#: src/Common/LinuxKernel.vala:980 msgid "Installing selected kernels" msgstr "Instalowanie wybranych jąder" -#: src/Common/LinuxKernel.vala:987 src/Common/LinuxKernel.vala:1026 +#: src/Common/LinuxKernel.vala:986 src/Common/LinuxKernel.vala:1025 msgid "Requested" msgstr "Zażądane" -#: src/Common/LinuxKernel.vala:990 +#: src/Common/LinuxKernel.vala:989 msgid "is already installed." msgstr "jest już zainstalowane." -#: src/Common/LinuxKernel.vala:1000 +#: src/Common/LinuxKernel.vala:999 msgid "download failed." msgstr "pobieranie nie powiodło się." -#: src/Common/LinuxKernel.vala:1007 src/Gtk/MainWindow.vala:548 +#: src/Common/LinuxKernel.vala:1006 src/Gtk/MainWindow.vala:548 #, fuzzy msgid "Install: no installable kernels specified" msgstr "Instalowanie: nie określono jąder do zainstalowania" -#: src/Common/LinuxKernel.vala:1022 +#: src/Common/LinuxKernel.vala:1021 msgid "Uninstalling selected kernels" msgstr "Odinstalowanie wybranych jąder" -#: src/Common/LinuxKernel.vala:1029 +#: src/Common/LinuxKernel.vala:1028 msgid "Not uninstalling the currently running kernel" msgstr "Bez odinstalowywania aktualnie uruchomionego jądra" -#: src/Common/LinuxKernel.vala:1034 src/Gtk/MainWindow.vala:543 +#: src/Common/LinuxKernel.vala:1033 src/Gtk/MainWindow.vala:543 msgid "is locked" msgstr "jest zablokowane" -#: src/Common/LinuxKernel.vala:1042 +#: src/Common/LinuxKernel.vala:1041 msgid "found" msgstr "znalezione" -#: src/Common/LinuxKernel.vala:1046 +#: src/Common/LinuxKernel.vala:1045 msgid "Uninstall: no uninstallable packages found" msgstr "Odinstalowanie: nie znaleziono pakietów, które można odinstalować" -#: src/Common/LinuxKernel.vala:1082 +#: src/Common/LinuxKernel.vala:1081 msgid "is the highest installed version." msgstr "to najwyższa zainstalowana wersja." -#: src/Common/LinuxKernel.vala:1095 +#: src/Common/LinuxKernel.vala:1094 msgid "Could not find running kernel in list" msgstr "Nie można znaleźć uruchomionego jądra na liście" -#: src/Common/LinuxKernel.vala:1100 +#: src/Common/LinuxKernel.vala:1099 msgid "Could not find any kernels to uninstall" msgstr "Nie można znaleźć żadnych jąder do odinstalowania" -#: src/Common/LinuxKernel.vala:1105 +#: src/Common/LinuxKernel.vala:1104 msgid "The following kernels will be uninstalled" msgstr "Następujące jądra zostaną odinstalowane" -#: src/Common/LinuxKernel.vala:1107 +#: src/Common/LinuxKernel.vala:1106 msgid "Continue ?" msgstr "Kontynuować?" -#: src/Common/LinuxKernel.vala:1123 +#: src/Common/LinuxKernel.vala:1122 #, fuzzy msgid "No updates" msgstr "Nie znaleziono aktualizacji" -#: src/Common/LinuxKernel.vala:1129 +#: src/Common/LinuxKernel.vala:1128 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Zainstalować wersję jądra %s? (t/n): " -#: src/Common/Main.vala:158 +#: src/Common/Main.vala:157 msgid "Missing Thread support in Glib." msgstr "" -#: src/Common/Main.vala:242 +#: src/Common/Main.vala:241 msgid "Wrote config file" msgstr "" -#: src/Common/Main.vala:261 +#: src/Common/Main.vala:260 msgid "No config file" msgstr "" -#: src/Common/Main.vala:322 +#: src/Common/Main.vala:319 msgid "Loaded config file" msgstr "" -#: src/Common/Main.vala:351 +#: src/Common/Main.vala:339 msgid "Called from" msgstr "Wywołano z" -#: src/Common/Main.vala:351 +#: src/Common/Main.vala:339 msgid "at logon" msgstr "przy logowaniu" -#: src/Common/Main.vala:352 +#: src/Common/Main.vala:340 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" "Ten plik jest nadpisywany i wykonywany ponownie za każdym razem, gdy " "ustawienia są zapisywane w" -#: src/Common/Main.vala:384 +#: src/Common/Main.vala:372 msgid "Notifications are disabled" msgstr "Powiadomienia są wyłączone" @@ -355,7 +355,7 @@ msgstr "Powiadom, jeśli pojawi się główna wersja" msgid "Kernel %s Available" msgstr "Dostępne %s jądra" -#: src/Console/AppConsole.vala:248 src/Gtk/SettingsDialog.vala:151 +#: src/Console/AppConsole.vala:248 src/Gtk/SettingsDialog.vala:145 msgid "Show" msgstr "Pokaż" @@ -514,64 +514,64 @@ msgstr "Interwał w sekundach włączony do debugowania" msgid "Check every" msgstr "Sprawdzaj co" -#: src/Gtk/SettingsDialog.vala:119 +#: src/Gtk/SettingsDialog.vala:118 msgid "Hours" msgstr "godziny" -#: src/Gtk/SettingsDialog.vala:121 +#: src/Gtk/SettingsDialog.vala:119 msgid "Days" msgstr "dni" -#: src/Gtk/SettingsDialog.vala:123 +#: src/Gtk/SettingsDialog.vala:120 msgid "Weeks" msgstr "tygodnie" -#: src/Gtk/SettingsDialog.vala:126 +#: src/Gtk/SettingsDialog.vala:121 msgid "Seconds" msgstr "sekundy" -#: src/Gtk/SettingsDialog.vala:132 +#: src/Gtk/SettingsDialog.vala:126 msgid "Filters" msgstr "Filtry" -#: src/Gtk/SettingsDialog.vala:140 +#: src/Gtk/SettingsDialog.vala:134 msgid "Hide unstable and RC releases" msgstr "Ukryj wydania niestabilne i RC" -#: src/Gtk/SettingsDialog.vala:162 +#: src/Gtk/SettingsDialog.vala:156 msgid "previous major versions ( -1 = all )" msgstr "poprzednie główne wersje ( -1 = wszystkie )" -#: src/Gtk/SettingsDialog.vala:166 +#: src/Gtk/SettingsDialog.vala:160 msgid "Network" msgstr "Sieć" -#: src/Gtk/SettingsDialog.vala:177 +#: src/Gtk/SettingsDialog.vala:171 msgid "Internet connection timeout in" msgstr "Limit czasu połączenia internetowego po" -#: src/Gtk/SettingsDialog.vala:189 +#: src/Gtk/SettingsDialog.vala:183 msgid "seconds" msgstr "sekundy" -#: src/Gtk/SettingsDialog.vala:196 +#: src/Gtk/SettingsDialog.vala:190 msgid "Max concurrent downloads" msgstr "Maksymalna liczba jednoczesnych pobrań" -#: src/Gtk/SettingsDialog.vala:209 +#: src/Gtk/SettingsDialog.vala:203 msgid "Verify Checksums with the CHECKSUMS files" msgstr "Weryfikowanie sum kontrolnych za pomocą plików CHECKSUMS" -#: src/Gtk/SettingsDialog.vala:217 +#: src/Gtk/SettingsDialog.vala:211 msgid "Proxy" msgstr "Serwer pośredniczący" -#: src/Gtk/SettingsDialog.vala:250 +#: src/Gtk/SettingsDialog.vala:244 #, fuzzy msgid "Auth Command" msgstr "Polecenia" -#: src/Gtk/SettingsDialog.vala:278 +#: src/Gtk/SettingsDialog.vala:272 msgid "Done" msgstr "Gotowe" diff --git a/po/ru.po b/po/ru.po index 1d6baba3..b40f6140 100644 --- a/po/ru.po +++ b/po/ru.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-07 03:39-0400\n" +"POT-Creation-Date: 2023-06-08 03:52-0400\n" "PO-Revision-Date: 2023-06-05 23:29+0300\n" "Last-Translator: Danik2343 \n" "Language-Team: Russian\n" @@ -13,213 +13,213 @@ msgstr "" "X-Launchpad-Export-Date: 2016-12-13 11:48+0000\n" "X-Generator: Poedit 3.2.2\n" -#: src/Common/LinuxKernel.vala:104 +#: src/Common/LinuxKernel.vala:102 msgid "Distribution" msgstr "Дистрибутив" -#: src/Common/LinuxKernel.vala:119 +#: src/Common/LinuxKernel.vala:117 msgid "Architecture" msgstr "Архитектура" -#: src/Common/LinuxKernel.vala:134 +#: src/Common/LinuxKernel.vala:132 msgid "Running kernel" msgstr "Запущенное ядро" -#: src/Common/LinuxKernel.vala:221 +#: src/Common/LinuxKernel.vala:219 msgid "loading cached" msgstr "загрузка в кэше" -#: src/Common/LinuxKernel.vala:233 +#: src/Common/LinuxKernel.vala:231 msgid "queuing download" msgstr "загрузка очередей" -#: src/Common/LinuxKernel.vala:253 +#: src/Common/LinuxKernel.vala:251 msgid "Fetching individual kernel indexes" msgstr "Получение отдельных индексов ядра" -#: src/Common/LinuxKernel.vala:267 +#: src/Common/LinuxKernel.vala:265 msgid "loading downloaded" msgstr "загрузка загруженных" -#: src/Common/LinuxKernel.vala:307 +#: src/Common/LinuxKernel.vala:305 msgid "Updating from" msgstr "Обновление из" -#: src/Common/LinuxKernel.vala:315 +#: src/Common/LinuxKernel.vala:313 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:318 +#: src/Common/LinuxKernel.vala:316 msgid "FAILED" msgstr "НЕУДАВШИЙСЯ" -#: src/Common/LinuxKernel.vala:383 +#: src/Common/LinuxKernel.vala:381 msgid "Found installed" msgstr "Найдено установлененное" -#: src/Common/LinuxKernel.vala:384 +#: src/Common/LinuxKernel.vala:382 msgid "locked" msgstr "заблокирован" -#: src/Common/LinuxKernel.vala:466 src/Common/LinuxKernel.vala:995 -#: src/Common/LinuxKernel.vala:1086 +#: src/Common/LinuxKernel.vala:464 src/Common/LinuxKernel.vala:994 +#: src/Common/LinuxKernel.vala:1085 msgid "is locked." msgstr "заблокирован" -#: src/Common/LinuxKernel.vala:661 src/Gtk/MainWindow.vala:521 +#: src/Common/LinuxKernel.vala:660 src/Gtk/MainWindow.vala:521 msgid "Running" msgstr "Используется" -#: src/Common/LinuxKernel.vala:662 +#: src/Common/LinuxKernel.vala:661 msgid "Installed" msgstr "Установлено" -#: src/Common/LinuxKernel.vala:663 +#: src/Common/LinuxKernel.vala:662 msgid "Invalid" msgstr "Негодный" -#: src/Common/LinuxKernel.vala:756 +#: src/Common/LinuxKernel.vala:755 msgid "Packages Available" msgstr "Доступные пакеты" -#: src/Common/LinuxKernel.vala:762 +#: src/Common/LinuxKernel.vala:761 msgid "Packages Installed" msgstr "Установленные пакеты" -#: src/Common/LinuxKernel.vala:787 src/lib/TeeJee.FileSystem.vala:94 +#: src/Common/LinuxKernel.vala:786 src/lib/TeeJee.FileSystem.vala:94 msgid "File not found" msgstr "Файл не найден" -#: src/Common/LinuxKernel.vala:814 +#: src/Common/LinuxKernel.vala:813 #, fuzzy msgid "needs update" msgstr "Последнее обновление" -#: src/Common/LinuxKernel.vala:881 +#: src/Common/LinuxKernel.vala:880 msgid "Available Kernels" msgstr "Доступные ядра" -#: src/Common/LinuxKernel.vala:915 src/Gtk/MainWindow.vala:135 +#: src/Common/LinuxKernel.vala:914 src/Gtk/MainWindow.vala:135 msgid "Kernel" msgstr "Ядро" -#: src/Common/LinuxKernel.vala:915 +#: src/Common/LinuxKernel.vala:914 msgid "not found" msgstr "не найдено" -#: src/Common/LinuxKernel.vala:922 +#: src/Common/LinuxKernel.vala:921 msgid "Download: no downloadable kernels specified" msgstr "Загрузка: не указаны загружаемые ядра" -#: src/Common/LinuxKernel.vala:938 +#: src/Common/LinuxKernel.vala:937 msgid "enabled" msgstr "включено" -#: src/Common/LinuxKernel.vala:963 +#: src/Common/LinuxKernel.vala:962 msgid "Downloading" msgstr "Загрузки" -#: src/Common/LinuxKernel.vala:981 +#: src/Common/LinuxKernel.vala:980 msgid "Installing selected kernels" msgstr "Установка выбранных ядер" -#: src/Common/LinuxKernel.vala:987 src/Common/LinuxKernel.vala:1026 +#: src/Common/LinuxKernel.vala:986 src/Common/LinuxKernel.vala:1025 msgid "Requested" msgstr "Запрошено" -#: src/Common/LinuxKernel.vala:990 +#: src/Common/LinuxKernel.vala:989 msgid "is already installed." msgstr "уже установлен." -#: src/Common/LinuxKernel.vala:1000 +#: src/Common/LinuxKernel.vala:999 msgid "download failed." msgstr "загрузка не удалась." -#: src/Common/LinuxKernel.vala:1007 src/Gtk/MainWindow.vala:548 +#: src/Common/LinuxKernel.vala:1006 src/Gtk/MainWindow.vala:548 msgid "Install: no installable kernels specified" msgstr "Команда не указана" -#: src/Common/LinuxKernel.vala:1022 +#: src/Common/LinuxKernel.vala:1021 msgid "Uninstalling selected kernels" msgstr "Удаление выбранных ядер" -#: src/Common/LinuxKernel.vala:1029 +#: src/Common/LinuxKernel.vala:1028 msgid "Not uninstalling the currently running kernel" msgstr "Не удалять запущенное в данный момент ядро" -#: src/Common/LinuxKernel.vala:1034 src/Gtk/MainWindow.vala:543 +#: src/Common/LinuxKernel.vala:1033 src/Gtk/MainWindow.vala:543 msgid "is locked" msgstr "заблокирован" -#: src/Common/LinuxKernel.vala:1042 +#: src/Common/LinuxKernel.vala:1041 msgid "found" msgstr "найдено" -#: src/Common/LinuxKernel.vala:1046 +#: src/Common/LinuxKernel.vala:1045 msgid "Uninstall: no uninstallable packages found" msgstr "Удаление: не найдено удаляемых пакетов" -#: src/Common/LinuxKernel.vala:1082 +#: src/Common/LinuxKernel.vala:1081 msgid "is the highest installed version." msgstr "это самая высокая установленная версия." -#: src/Common/LinuxKernel.vala:1095 +#: src/Common/LinuxKernel.vala:1094 msgid "Could not find running kernel in list" msgstr "Could not find running kernel in list" -#: src/Common/LinuxKernel.vala:1100 +#: src/Common/LinuxKernel.vala:1099 msgid "Could not find any kernels to uninstall" msgstr "Не удалось найти ядра для деинсталляции" -#: src/Common/LinuxKernel.vala:1105 +#: src/Common/LinuxKernel.vala:1104 msgid "The following kernels will be uninstalled" msgstr "Следующие ядра будут удалены" -#: src/Common/LinuxKernel.vala:1107 +#: src/Common/LinuxKernel.vala:1106 msgid "Continue ?" msgstr "Продолжить ?" -#: src/Common/LinuxKernel.vala:1123 +#: src/Common/LinuxKernel.vala:1122 #, fuzzy msgid "No updates" msgstr "Обновлений не найдено" -#: src/Common/LinuxKernel.vala:1129 +#: src/Common/LinuxKernel.vala:1128 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Установить версию ядра %s ? (y/n): " -#: src/Common/Main.vala:158 +#: src/Common/Main.vala:157 msgid "Missing Thread support in Glib." msgstr "" -#: src/Common/Main.vala:242 +#: src/Common/Main.vala:241 msgid "Wrote config file" msgstr "" -#: src/Common/Main.vala:261 +#: src/Common/Main.vala:260 msgid "No config file" msgstr "" -#: src/Common/Main.vala:322 +#: src/Common/Main.vala:319 msgid "Loaded config file" msgstr "" -#: src/Common/Main.vala:351 +#: src/Common/Main.vala:339 msgid "Called from" msgstr "Вызван из" -#: src/Common/Main.vala:351 +#: src/Common/Main.vala:339 msgid "at logon" msgstr "при запуске" -#: src/Common/Main.vala:352 +#: src/Common/Main.vala:340 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" "Этот файл перезаписывается и выполняется снова при сохранении настроек в" -#: src/Common/Main.vala:384 +#: src/Common/Main.vala:372 msgid "Notifications are disabled" msgstr "Уведомления отключены" @@ -353,7 +353,7 @@ msgstr "Уведомлять, если доступно крупное обно msgid "Kernel %s Available" msgstr "Доступно ядро %s" -#: src/Console/AppConsole.vala:248 src/Gtk/SettingsDialog.vala:151 +#: src/Console/AppConsole.vala:248 src/Gtk/SettingsDialog.vala:145 msgid "Show" msgstr "Показать" @@ -511,63 +511,63 @@ msgstr "Интервал секунд включен для отладки" msgid "Check every" msgstr "Проверять каждые" -#: src/Gtk/SettingsDialog.vala:119 +#: src/Gtk/SettingsDialog.vala:118 msgid "Hours" msgstr "Часов" -#: src/Gtk/SettingsDialog.vala:121 +#: src/Gtk/SettingsDialog.vala:119 msgid "Days" msgstr "Дней" -#: src/Gtk/SettingsDialog.vala:123 +#: src/Gtk/SettingsDialog.vala:120 msgid "Weeks" msgstr "Недель" -#: src/Gtk/SettingsDialog.vala:126 +#: src/Gtk/SettingsDialog.vala:121 msgid "Seconds" msgstr "Секунд" -#: src/Gtk/SettingsDialog.vala:132 +#: src/Gtk/SettingsDialog.vala:126 msgid "Filters" msgstr "Фильтры" -#: src/Gtk/SettingsDialog.vala:140 +#: src/Gtk/SettingsDialog.vala:134 msgid "Hide unstable and RC releases" msgstr "Скрыть нестабильные и релиз-кандидат версии" -#: src/Gtk/SettingsDialog.vala:162 +#: src/Gtk/SettingsDialog.vala:156 msgid "previous major versions ( -1 = all )" msgstr "предыдущие основные версии ( -1 = все )" -#: src/Gtk/SettingsDialog.vala:166 +#: src/Gtk/SettingsDialog.vala:160 msgid "Network" msgstr "Сеть" -#: src/Gtk/SettingsDialog.vala:177 +#: src/Gtk/SettingsDialog.vala:171 msgid "Internet connection timeout in" msgstr "Таймаут подключения к Интернету в" -#: src/Gtk/SettingsDialog.vala:189 +#: src/Gtk/SettingsDialog.vala:183 msgid "seconds" msgstr "секунд" -#: src/Gtk/SettingsDialog.vala:196 +#: src/Gtk/SettingsDialog.vala:190 msgid "Max concurrent downloads" msgstr "Максимальное количество одновременных загрузок" -#: src/Gtk/SettingsDialog.vala:209 +#: src/Gtk/SettingsDialog.vala:203 msgid "Verify Checksums with the CHECKSUMS files" msgstr "Проверка контрольных сумм с помощью файлов CHECKSUMS" -#: src/Gtk/SettingsDialog.vala:217 +#: src/Gtk/SettingsDialog.vala:211 msgid "Proxy" msgstr "Доверенность" -#: src/Gtk/SettingsDialog.vala:250 +#: src/Gtk/SettingsDialog.vala:244 msgid "Auth Command" msgstr "Команда авторизации" -#: src/Gtk/SettingsDialog.vala:278 +#: src/Gtk/SettingsDialog.vala:272 msgid "Done" msgstr "Готово" diff --git a/po/sv.po b/po/sv.po index de523a2a..97958942 100644 --- a/po/sv.po +++ b/po/sv.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-07 03:39-0400\n" +"POT-Creation-Date: 2023-06-08 03:52-0400\n" "PO-Revision-Date: 2018-01-13 16:56+0100\n" "Last-Translator: Åke Engelbrektson \n" "Language-Team:Swedish\n" @@ -13,219 +13,219 @@ msgstr "" "X-Generator: Poedit 1.8.7.1\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: src/Common/LinuxKernel.vala:104 +#: src/Common/LinuxKernel.vala:102 msgid "Distribution" msgstr "Distribution" -#: src/Common/LinuxKernel.vala:119 +#: src/Common/LinuxKernel.vala:117 msgid "Architecture" msgstr "Arkitektur" -#: src/Common/LinuxKernel.vala:134 +#: src/Common/LinuxKernel.vala:132 msgid "Running kernel" msgstr "Löpande kernel" -#: src/Common/LinuxKernel.vala:221 +#: src/Common/LinuxKernel.vala:219 msgid "loading cached" msgstr "laddar cachelagrat" -#: src/Common/LinuxKernel.vala:233 +#: src/Common/LinuxKernel.vala:231 msgid "queuing download" msgstr "köbildning nedladdning" -#: src/Common/LinuxKernel.vala:253 +#: src/Common/LinuxKernel.vala:251 msgid "Fetching individual kernel indexes" msgstr "Hämta enskilda kernelindex" -#: src/Common/LinuxKernel.vala:267 +#: src/Common/LinuxKernel.vala:265 msgid "loading downloaded" msgstr "laddar nedladdad" -#: src/Common/LinuxKernel.vala:307 +#: src/Common/LinuxKernel.vala:305 msgid "Updating from" msgstr "Uppdatering från" -#: src/Common/LinuxKernel.vala:315 +#: src/Common/LinuxKernel.vala:313 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:318 +#: src/Common/LinuxKernel.vala:316 msgid "FAILED" msgstr "MISSLYCKADES" -#: src/Common/LinuxKernel.vala:383 +#: src/Common/LinuxKernel.vala:381 msgid "Found installed" msgstr "Hittade installerat" -#: src/Common/LinuxKernel.vala:384 +#: src/Common/LinuxKernel.vala:382 msgid "locked" msgstr "" -#: src/Common/LinuxKernel.vala:466 src/Common/LinuxKernel.vala:995 -#: src/Common/LinuxKernel.vala:1086 +#: src/Common/LinuxKernel.vala:464 src/Common/LinuxKernel.vala:994 +#: src/Common/LinuxKernel.vala:1085 msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:661 src/Gtk/MainWindow.vala:521 +#: src/Common/LinuxKernel.vala:660 src/Gtk/MainWindow.vala:521 msgid "Running" msgstr "Körs" -#: src/Common/LinuxKernel.vala:662 +#: src/Common/LinuxKernel.vala:661 msgid "Installed" msgstr "Installerad" -#: src/Common/LinuxKernel.vala:663 +#: src/Common/LinuxKernel.vala:662 msgid "Invalid" msgstr "Ogiltig" -#: src/Common/LinuxKernel.vala:756 +#: src/Common/LinuxKernel.vala:755 msgid "Packages Available" msgstr "Tillgängliga paket" -#: src/Common/LinuxKernel.vala:762 +#: src/Common/LinuxKernel.vala:761 msgid "Packages Installed" msgstr "Installerade paket" -#: src/Common/LinuxKernel.vala:787 src/lib/TeeJee.FileSystem.vala:94 +#: src/Common/LinuxKernel.vala:786 src/lib/TeeJee.FileSystem.vala:94 msgid "File not found" msgstr "Filen kan inte hittas" -#: src/Common/LinuxKernel.vala:814 +#: src/Common/LinuxKernel.vala:813 #, fuzzy msgid "needs update" msgstr "Senaste uppdatering" -#: src/Common/LinuxKernel.vala:881 +#: src/Common/LinuxKernel.vala:880 msgid "Available Kernels" msgstr "Tillgängliga kärnor" -#: src/Common/LinuxKernel.vala:915 src/Gtk/MainWindow.vala:135 +#: src/Common/LinuxKernel.vala:914 src/Gtk/MainWindow.vala:135 msgid "Kernel" msgstr "Kärna" -#: src/Common/LinuxKernel.vala:915 +#: src/Common/LinuxKernel.vala:914 #, fuzzy msgid "not found" msgstr "Filen kan inte hittas" -#: src/Common/LinuxKernel.vala:922 +#: src/Common/LinuxKernel.vala:921 #, fuzzy msgid "Download: no downloadable kernels specified" msgstr "Kommandot har inte angetts" -#: src/Common/LinuxKernel.vala:938 +#: src/Common/LinuxKernel.vala:937 msgid "enabled" msgstr "aktiverat" -#: src/Common/LinuxKernel.vala:963 +#: src/Common/LinuxKernel.vala:962 msgid "Downloading" msgstr "Ladda ner" -#: src/Common/LinuxKernel.vala:981 +#: src/Common/LinuxKernel.vala:980 #, fuzzy msgid "Installing selected kernels" msgstr "Avinstallera valda kärnor" -#: src/Common/LinuxKernel.vala:987 src/Common/LinuxKernel.vala:1026 +#: src/Common/LinuxKernel.vala:986 src/Common/LinuxKernel.vala:1025 #, fuzzy msgid "Requested" msgstr "begärd" -#: src/Common/LinuxKernel.vala:990 +#: src/Common/LinuxKernel.vala:989 msgid "is already installed." msgstr "är redan installerat." -#: src/Common/LinuxKernel.vala:1000 +#: src/Common/LinuxKernel.vala:999 msgid "download failed." msgstr "" -#: src/Common/LinuxKernel.vala:1007 src/Gtk/MainWindow.vala:548 +#: src/Common/LinuxKernel.vala:1006 src/Gtk/MainWindow.vala:548 #, fuzzy msgid "Install: no installable kernels specified" msgstr "Kommandot har inte angetts" -#: src/Common/LinuxKernel.vala:1022 +#: src/Common/LinuxKernel.vala:1021 msgid "Uninstalling selected kernels" msgstr "Avinstallera valda kärnor" -#: src/Common/LinuxKernel.vala:1029 +#: src/Common/LinuxKernel.vala:1028 #, fuzzy msgid "Not uninstalling the currently running kernel" msgstr "Avinstallera inte den kärna som körs, för närvarande" -#: src/Common/LinuxKernel.vala:1034 src/Gtk/MainWindow.vala:543 +#: src/Common/LinuxKernel.vala:1033 src/Gtk/MainWindow.vala:543 msgid "is locked" msgstr "" -#: src/Common/LinuxKernel.vala:1042 +#: src/Common/LinuxKernel.vala:1041 msgid "found" msgstr "grunda" -#: src/Common/LinuxKernel.vala:1046 +#: src/Common/LinuxKernel.vala:1045 msgid "Uninstall: no uninstallable packages found" msgstr "" -#: src/Common/LinuxKernel.vala:1082 +#: src/Common/LinuxKernel.vala:1081 #, fuzzy msgid "is the highest installed version." msgstr "Avinstallera alla utom den högsta installerade versionen" -#: src/Common/LinuxKernel.vala:1095 +#: src/Common/LinuxKernel.vala:1094 msgid "Could not find running kernel in list" msgstr "Det gick inte att hitta kernel som körs i listan" -#: src/Common/LinuxKernel.vala:1100 +#: src/Common/LinuxKernel.vala:1099 msgid "Could not find any kernels to uninstall" msgstr "Det gick inte att hitta några kärnor att avinstallera" -#: src/Common/LinuxKernel.vala:1105 +#: src/Common/LinuxKernel.vala:1104 msgid "The following kernels will be uninstalled" msgstr "Följande kärnor kommer att avinstalleras" -#: src/Common/LinuxKernel.vala:1107 +#: src/Common/LinuxKernel.vala:1106 msgid "Continue ?" msgstr "Fortsätta?" -#: src/Common/LinuxKernel.vala:1123 +#: src/Common/LinuxKernel.vala:1122 #, fuzzy msgid "No updates" msgstr "Inga uppdateringar hittades" -#: src/Common/LinuxKernel.vala:1129 +#: src/Common/LinuxKernel.vala:1128 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Installera kärnversion %s ? (j/n):" -#: src/Common/Main.vala:158 +#: src/Common/Main.vala:157 msgid "Missing Thread support in Glib." msgstr "" -#: src/Common/Main.vala:242 +#: src/Common/Main.vala:241 msgid "Wrote config file" msgstr "" -#: src/Common/Main.vala:261 +#: src/Common/Main.vala:260 msgid "No config file" msgstr "" -#: src/Common/Main.vala:322 +#: src/Common/Main.vala:319 msgid "Loaded config file" msgstr "" -#: src/Common/Main.vala:351 +#: src/Common/Main.vala:339 msgid "Called from" msgstr "Ringde från" -#: src/Common/Main.vala:351 +#: src/Common/Main.vala:339 msgid "at logon" msgstr "vid start" -#: src/Common/Main.vala:352 +#: src/Common/Main.vala:340 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "Den här filen skrivs över och körs igen när inställningar sparas i" -#: src/Common/Main.vala:384 +#: src/Common/Main.vala:372 msgid "Notifications are disabled" msgstr "Meddelanden är inaktiverade" @@ -365,7 +365,7 @@ msgstr "Meddela om en större version är tillgänglig" msgid "Kernel %s Available" msgstr "Kernel %s tillgängliga" -#: src/Console/AppConsole.vala:248 src/Gtk/SettingsDialog.vala:151 +#: src/Console/AppConsole.vala:248 src/Gtk/SettingsDialog.vala:145 msgid "Show" msgstr "Visa" @@ -523,64 +523,64 @@ msgstr "Sekundintervall aktiverat för felsökning" msgid "Check every" msgstr "Kontrollera varje" -#: src/Gtk/SettingsDialog.vala:119 +#: src/Gtk/SettingsDialog.vala:118 msgid "Hours" msgstr "timmar" -#: src/Gtk/SettingsDialog.vala:121 +#: src/Gtk/SettingsDialog.vala:119 msgid "Days" msgstr "dagar" -#: src/Gtk/SettingsDialog.vala:123 +#: src/Gtk/SettingsDialog.vala:120 msgid "Weeks" msgstr "veckor" -#: src/Gtk/SettingsDialog.vala:126 +#: src/Gtk/SettingsDialog.vala:121 msgid "Seconds" msgstr "sekunder" -#: src/Gtk/SettingsDialog.vala:132 +#: src/Gtk/SettingsDialog.vala:126 msgid "Filters" msgstr "Filter" -#: src/Gtk/SettingsDialog.vala:140 +#: src/Gtk/SettingsDialog.vala:134 msgid "Hide unstable and RC releases" msgstr "Dölj instabila- och RC-publiceringar" -#: src/Gtk/SettingsDialog.vala:162 +#: src/Gtk/SettingsDialog.vala:156 msgid "previous major versions ( -1 = all )" msgstr "tidigare huvudversioner ( -1 = alla )" -#: src/Gtk/SettingsDialog.vala:166 +#: src/Gtk/SettingsDialog.vala:160 msgid "Network" msgstr "Nätverk" -#: src/Gtk/SettingsDialog.vala:177 +#: src/Gtk/SettingsDialog.vala:171 msgid "Internet connection timeout in" msgstr "Internetuppkopplingen är inte aktiv" -#: src/Gtk/SettingsDialog.vala:189 +#: src/Gtk/SettingsDialog.vala:183 msgid "seconds" msgstr "sekunder" -#: src/Gtk/SettingsDialog.vala:196 +#: src/Gtk/SettingsDialog.vala:190 msgid "Max concurrent downloads" msgstr "Max antal nedladdningar av konkurrenter" -#: src/Gtk/SettingsDialog.vala:209 +#: src/Gtk/SettingsDialog.vala:203 msgid "Verify Checksums with the CHECKSUMS files" msgstr "Verifiera kontrollsummor med CHECKSUMS-filerna" -#: src/Gtk/SettingsDialog.vala:217 +#: src/Gtk/SettingsDialog.vala:211 msgid "Proxy" msgstr "Proxyserver" -#: src/Gtk/SettingsDialog.vala:250 +#: src/Gtk/SettingsDialog.vala:244 #, fuzzy msgid "Auth Command" msgstr "Kommandon" -#: src/Gtk/SettingsDialog.vala:278 +#: src/Gtk/SettingsDialog.vala:272 msgid "Done" msgstr "" diff --git a/po/tr.po b/po/tr.po index c2c24ad0..2df03741 100644 --- a/po/tr.po +++ b/po/tr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-07 03:39-0400\n" +"POT-Creation-Date: 2023-06-08 03:52-0400\n" "PO-Revision-Date: 2022-08-06 16:48+0300\n" "Last-Translator: Sabri Ünal \n" "Language-Team: Turkish\n" @@ -13,220 +13,220 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Poedit 3.1.1\n" -#: src/Common/LinuxKernel.vala:104 +#: src/Common/LinuxKernel.vala:102 msgid "Distribution" msgstr "Dağıtım" -#: src/Common/LinuxKernel.vala:119 +#: src/Common/LinuxKernel.vala:117 msgid "Architecture" msgstr "Sistem mimarisi" -#: src/Common/LinuxKernel.vala:134 +#: src/Common/LinuxKernel.vala:132 msgid "Running kernel" msgstr "Çalışan çekirdek" -#: src/Common/LinuxKernel.vala:221 +#: src/Common/LinuxKernel.vala:219 msgid "loading cached" msgstr "önbelleğe alınmış yükleme" -#: src/Common/LinuxKernel.vala:233 +#: src/Common/LinuxKernel.vala:231 msgid "queuing download" msgstr "kuyruğa alma indirme" -#: src/Common/LinuxKernel.vala:253 +#: src/Common/LinuxKernel.vala:251 msgid "Fetching individual kernel indexes" msgstr "Tek tek çekirdek dizinlerini alma" -#: src/Common/LinuxKernel.vala:267 +#: src/Common/LinuxKernel.vala:265 msgid "loading downloaded" msgstr "indirilen yükleniyor" -#: src/Common/LinuxKernel.vala:307 +#: src/Common/LinuxKernel.vala:305 msgid "Updating from" msgstr "Şuradan güncelleniyor" -#: src/Common/LinuxKernel.vala:315 +#: src/Common/LinuxKernel.vala:313 msgid "OK" msgstr "Tamam" -#: src/Common/LinuxKernel.vala:318 +#: src/Common/LinuxKernel.vala:316 msgid "FAILED" msgstr "BAŞARISIZ" -#: src/Common/LinuxKernel.vala:383 +#: src/Common/LinuxKernel.vala:381 msgid "Found installed" msgstr "Yüklü bulundu" -#: src/Common/LinuxKernel.vala:384 +#: src/Common/LinuxKernel.vala:382 msgid "locked" msgstr "" -#: src/Common/LinuxKernel.vala:466 src/Common/LinuxKernel.vala:995 -#: src/Common/LinuxKernel.vala:1086 +#: src/Common/LinuxKernel.vala:464 src/Common/LinuxKernel.vala:994 +#: src/Common/LinuxKernel.vala:1085 msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:661 src/Gtk/MainWindow.vala:521 +#: src/Common/LinuxKernel.vala:660 src/Gtk/MainWindow.vala:521 msgid "Running" msgstr "Çalışıyor" -#: src/Common/LinuxKernel.vala:662 +#: src/Common/LinuxKernel.vala:661 msgid "Installed" msgstr "Kurulu" -#: src/Common/LinuxKernel.vala:663 +#: src/Common/LinuxKernel.vala:662 msgid "Invalid" msgstr "Geçersiz" -#: src/Common/LinuxKernel.vala:756 +#: src/Common/LinuxKernel.vala:755 msgid "Packages Available" msgstr "Mevcut Paketler" -#: src/Common/LinuxKernel.vala:762 +#: src/Common/LinuxKernel.vala:761 msgid "Packages Installed" msgstr "Kurulu Paketler" -#: src/Common/LinuxKernel.vala:787 src/lib/TeeJee.FileSystem.vala:94 +#: src/Common/LinuxKernel.vala:786 src/lib/TeeJee.FileSystem.vala:94 msgid "File not found" msgstr "Dosya bulunamadı" -#: src/Common/LinuxKernel.vala:814 +#: src/Common/LinuxKernel.vala:813 #, fuzzy msgid "needs update" msgstr "Son güncelleme" -#: src/Common/LinuxKernel.vala:881 +#: src/Common/LinuxKernel.vala:880 msgid "Available Kernels" msgstr "Mevcut Çekirdekler" -#: src/Common/LinuxKernel.vala:915 src/Gtk/MainWindow.vala:135 +#: src/Common/LinuxKernel.vala:914 src/Gtk/MainWindow.vala:135 msgid "Kernel" msgstr "Çekirdek" -#: src/Common/LinuxKernel.vala:915 +#: src/Common/LinuxKernel.vala:914 #, fuzzy msgid "not found" msgstr "Dosya bulunamadı" -#: src/Common/LinuxKernel.vala:922 +#: src/Common/LinuxKernel.vala:921 #, fuzzy msgid "Download: no downloadable kernels specified" msgstr "Komut belirtilmedi" -#: src/Common/LinuxKernel.vala:938 +#: src/Common/LinuxKernel.vala:937 msgid "enabled" msgstr "etkin" -#: src/Common/LinuxKernel.vala:963 +#: src/Common/LinuxKernel.vala:962 msgid "Downloading" msgstr "Indiriyor" -#: src/Common/LinuxKernel.vala:981 +#: src/Common/LinuxKernel.vala:980 #, fuzzy msgid "Installing selected kernels" msgstr "Seçili çekirdekleri kaldırma" -#: src/Common/LinuxKernel.vala:987 src/Common/LinuxKernel.vala:1026 +#: src/Common/LinuxKernel.vala:986 src/Common/LinuxKernel.vala:1025 #, fuzzy msgid "Requested" msgstr "istenen" -#: src/Common/LinuxKernel.vala:990 +#: src/Common/LinuxKernel.vala:989 msgid "is already installed." msgstr "zaten yüklü." -#: src/Common/LinuxKernel.vala:1000 +#: src/Common/LinuxKernel.vala:999 msgid "download failed." msgstr "" -#: src/Common/LinuxKernel.vala:1007 src/Gtk/MainWindow.vala:548 +#: src/Common/LinuxKernel.vala:1006 src/Gtk/MainWindow.vala:548 #, fuzzy msgid "Install: no installable kernels specified" msgstr "Komut belirtilmedi" -#: src/Common/LinuxKernel.vala:1022 +#: src/Common/LinuxKernel.vala:1021 msgid "Uninstalling selected kernels" msgstr "Seçili çekirdekleri kaldırma" -#: src/Common/LinuxKernel.vala:1029 +#: src/Common/LinuxKernel.vala:1028 #, fuzzy msgid "Not uninstalling the currently running kernel" msgstr "çalışmakta olan çekirdeğin kaldırılmaması" -#: src/Common/LinuxKernel.vala:1034 src/Gtk/MainWindow.vala:543 +#: src/Common/LinuxKernel.vala:1033 src/Gtk/MainWindow.vala:543 msgid "is locked" msgstr "" -#: src/Common/LinuxKernel.vala:1042 +#: src/Common/LinuxKernel.vala:1041 msgid "found" msgstr "kurmak" -#: src/Common/LinuxKernel.vala:1046 +#: src/Common/LinuxKernel.vala:1045 msgid "Uninstall: no uninstallable packages found" msgstr "" -#: src/Common/LinuxKernel.vala:1082 +#: src/Common/LinuxKernel.vala:1081 #, fuzzy msgid "is the highest installed version." msgstr "En yüksek yüklü sürüm dışındaki tüm sürümleri kaldırın" -#: src/Common/LinuxKernel.vala:1095 +#: src/Common/LinuxKernel.vala:1094 msgid "Could not find running kernel in list" msgstr "Listede çalışan çekirdek bulunamadı" -#: src/Common/LinuxKernel.vala:1100 +#: src/Common/LinuxKernel.vala:1099 msgid "Could not find any kernels to uninstall" msgstr "Kaldırılacak çekirdek bulunamadı" -#: src/Common/LinuxKernel.vala:1105 +#: src/Common/LinuxKernel.vala:1104 msgid "The following kernels will be uninstalled" msgstr "Aşağıdaki çekirdekler kaldırılacaktır" -#: src/Common/LinuxKernel.vala:1107 +#: src/Common/LinuxKernel.vala:1106 msgid "Continue ?" msgstr "Devam edilsin mi?" -#: src/Common/LinuxKernel.vala:1123 +#: src/Common/LinuxKernel.vala:1122 #, fuzzy msgid "No updates" msgstr "Güncelleme bulunamadı" -#: src/Common/LinuxKernel.vala:1129 +#: src/Common/LinuxKernel.vala:1128 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Linux Çekirdek Sürümü %s Kurulsun mu? (e/h): " -#: src/Common/Main.vala:158 +#: src/Common/Main.vala:157 msgid "Missing Thread support in Glib." msgstr "" -#: src/Common/Main.vala:242 +#: src/Common/Main.vala:241 msgid "Wrote config file" msgstr "" -#: src/Common/Main.vala:261 +#: src/Common/Main.vala:260 msgid "No config file" msgstr "" -#: src/Common/Main.vala:322 +#: src/Common/Main.vala:319 msgid "Loaded config file" msgstr "" -#: src/Common/Main.vala:351 +#: src/Common/Main.vala:339 msgid "Called from" msgstr "Çağrı konumu" -#: src/Common/Main.vala:351 +#: src/Common/Main.vala:339 msgid "at logon" msgstr "başlangıçta" -#: src/Common/Main.vala:352 +#: src/Common/Main.vala:340 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" "Bu dosyanın üzerine yazılır ve ayarlar her kaydedildiğinde yeniden yürütülür" -#: src/Common/Main.vala:384 +#: src/Common/Main.vala:372 msgid "Notifications are disabled" msgstr "Bildirimler devre dışı bırakılmış" @@ -367,7 +367,7 @@ msgstr "Ana sürüm mevcutsa bildir" msgid "Kernel %s Available" msgstr "Çekirdek %s Kullanılabilir" -#: src/Console/AppConsole.vala:248 src/Gtk/SettingsDialog.vala:151 +#: src/Console/AppConsole.vala:248 src/Gtk/SettingsDialog.vala:145 msgid "Show" msgstr "Göster" @@ -525,64 +525,64 @@ msgstr "Hata ayıklama için etkinleştirilen saniye aralığı" msgid "Check every" msgstr "Kontrol aralığı" -#: src/Gtk/SettingsDialog.vala:119 +#: src/Gtk/SettingsDialog.vala:118 msgid "Hours" msgstr "saat" -#: src/Gtk/SettingsDialog.vala:121 +#: src/Gtk/SettingsDialog.vala:119 msgid "Days" msgstr "gün" -#: src/Gtk/SettingsDialog.vala:123 +#: src/Gtk/SettingsDialog.vala:120 msgid "Weeks" msgstr "hafta" -#: src/Gtk/SettingsDialog.vala:126 +#: src/Gtk/SettingsDialog.vala:121 msgid "Seconds" msgstr "saniye" -#: src/Gtk/SettingsDialog.vala:132 +#: src/Gtk/SettingsDialog.vala:126 msgid "Filters" msgstr "Filtre" -#: src/Gtk/SettingsDialog.vala:140 +#: src/Gtk/SettingsDialog.vala:134 msgid "Hide unstable and RC releases" msgstr "Kararsız ve RC sürümleri gizle" -#: src/Gtk/SettingsDialog.vala:162 +#: src/Gtk/SettingsDialog.vala:156 msgid "previous major versions ( -1 = all )" msgstr "önceki ana sürümler ( -1 = tümü )" -#: src/Gtk/SettingsDialog.vala:166 +#: src/Gtk/SettingsDialog.vala:160 msgid "Network" msgstr "Ağ" -#: src/Gtk/SettingsDialog.vala:177 +#: src/Gtk/SettingsDialog.vala:171 msgid "Internet connection timeout in" msgstr "İnternet bağlantısı zaman aşımı " -#: src/Gtk/SettingsDialog.vala:189 +#: src/Gtk/SettingsDialog.vala:183 msgid "seconds" msgstr "saniye" -#: src/Gtk/SettingsDialog.vala:196 +#: src/Gtk/SettingsDialog.vala:190 msgid "Max concurrent downloads" msgstr "Azami eşzamanlı indirme" -#: src/Gtk/SettingsDialog.vala:209 +#: src/Gtk/SettingsDialog.vala:203 msgid "Verify Checksums with the CHECKSUMS files" msgstr "Sağlama toplamlarını CHECKSUMS dosyalarıyla doğrulama" -#: src/Gtk/SettingsDialog.vala:217 +#: src/Gtk/SettingsDialog.vala:211 msgid "Proxy" msgstr "Proxy" -#: src/Gtk/SettingsDialog.vala:250 +#: src/Gtk/SettingsDialog.vala:244 #, fuzzy msgid "Auth Command" msgstr "Komutlar" -#: src/Gtk/SettingsDialog.vala:278 +#: src/Gtk/SettingsDialog.vala:272 msgid "Done" msgstr "" diff --git a/po/uk.po b/po/uk.po index 69151401..0682a021 100644 --- a/po/uk.po +++ b/po/uk.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-07 03:39-0400\n" +"POT-Creation-Date: 2023-06-08 03:52-0400\n" "PO-Revision-Date: 2019-07-25 11:00+0300\n" "Last-Translator: Serhii Golovko \n" "Language-Team: Ukranian\n" @@ -13,214 +13,214 @@ msgstr "" "X-Launchpad-Export-Date: 2016-12-13 11:48+0000\n" "X-Generator: Poedit 2.2.1\n" -#: src/Common/LinuxKernel.vala:104 +#: src/Common/LinuxKernel.vala:102 msgid "Distribution" msgstr "Дистрибутив" -#: src/Common/LinuxKernel.vala:119 +#: src/Common/LinuxKernel.vala:117 msgid "Architecture" msgstr "Системна архитектура" -#: src/Common/LinuxKernel.vala:134 +#: src/Common/LinuxKernel.vala:132 msgid "Running kernel" msgstr "Запуск ядра" -#: src/Common/LinuxKernel.vala:221 +#: src/Common/LinuxKernel.vala:219 msgid "loading cached" msgstr "Завантаження кешованого" -#: src/Common/LinuxKernel.vala:233 +#: src/Common/LinuxKernel.vala:231 msgid "queuing download" msgstr "Черга завантаження" -#: src/Common/LinuxKernel.vala:253 +#: src/Common/LinuxKernel.vala:251 msgid "Fetching individual kernel indexes" msgstr "Вибірка окремих індексів ядра" -#: src/Common/LinuxKernel.vala:267 +#: src/Common/LinuxKernel.vala:265 msgid "loading downloaded" msgstr "Завантаження завантаженого" -#: src/Common/LinuxKernel.vala:307 +#: src/Common/LinuxKernel.vala:305 msgid "Updating from" msgstr "Оновлення з" -#: src/Common/LinuxKernel.vala:315 +#: src/Common/LinuxKernel.vala:313 msgid "OK" msgstr "Добре" -#: src/Common/LinuxKernel.vala:318 +#: src/Common/LinuxKernel.vala:316 msgid "FAILED" msgstr "НЕ ВДАЛОСЯ" -#: src/Common/LinuxKernel.vala:383 +#: src/Common/LinuxKernel.vala:381 msgid "Found installed" msgstr "Знайдено встановленим" -#: src/Common/LinuxKernel.vala:384 +#: src/Common/LinuxKernel.vala:382 msgid "locked" msgstr "заблокований" -#: src/Common/LinuxKernel.vala:466 src/Common/LinuxKernel.vala:995 -#: src/Common/LinuxKernel.vala:1086 +#: src/Common/LinuxKernel.vala:464 src/Common/LinuxKernel.vala:994 +#: src/Common/LinuxKernel.vala:1085 msgid "is locked." msgstr "заблоковано." -#: src/Common/LinuxKernel.vala:661 src/Gtk/MainWindow.vala:521 +#: src/Common/LinuxKernel.vala:660 src/Gtk/MainWindow.vala:521 msgid "Running" msgstr "Використовується" -#: src/Common/LinuxKernel.vala:662 +#: src/Common/LinuxKernel.vala:661 msgid "Installed" msgstr "Встановлено" -#: src/Common/LinuxKernel.vala:663 +#: src/Common/LinuxKernel.vala:662 msgid "Invalid" msgstr "Інвалід" -#: src/Common/LinuxKernel.vala:756 +#: src/Common/LinuxKernel.vala:755 msgid "Packages Available" msgstr "Доступні пакети" -#: src/Common/LinuxKernel.vala:762 +#: src/Common/LinuxKernel.vala:761 msgid "Packages Installed" msgstr "Встановлені пакети" -#: src/Common/LinuxKernel.vala:787 src/lib/TeeJee.FileSystem.vala:94 +#: src/Common/LinuxKernel.vala:786 src/lib/TeeJee.FileSystem.vala:94 msgid "File not found" msgstr "Файл не знайдено" -#: src/Common/LinuxKernel.vala:814 +#: src/Common/LinuxKernel.vala:813 #, fuzzy msgid "needs update" msgstr "Останнє оновлення" -#: src/Common/LinuxKernel.vala:881 +#: src/Common/LinuxKernel.vala:880 msgid "Available Kernels" msgstr "Доступні ядра" -#: src/Common/LinuxKernel.vala:915 src/Gtk/MainWindow.vala:135 +#: src/Common/LinuxKernel.vala:914 src/Gtk/MainWindow.vala:135 msgid "Kernel" msgstr "Ядро" -#: src/Common/LinuxKernel.vala:915 +#: src/Common/LinuxKernel.vala:914 msgid "not found" msgstr "не знайдено" -#: src/Common/LinuxKernel.vala:922 +#: src/Common/LinuxKernel.vala:921 msgid "Download: no downloadable kernels specified" msgstr "Завантажити: ядра для завантаження не вказано" -#: src/Common/LinuxKernel.vala:938 +#: src/Common/LinuxKernel.vala:937 msgid "enabled" msgstr "увімкнено" -#: src/Common/LinuxKernel.vala:963 +#: src/Common/LinuxKernel.vala:962 msgid "Downloading" msgstr "Завантаження" -#: src/Common/LinuxKernel.vala:981 +#: src/Common/LinuxKernel.vala:980 msgid "Installing selected kernels" msgstr "Встановлення обраних ядер" -#: src/Common/LinuxKernel.vala:987 src/Common/LinuxKernel.vala:1026 +#: src/Common/LinuxKernel.vala:986 src/Common/LinuxKernel.vala:1025 msgid "Requested" msgstr "Запитуваний" -#: src/Common/LinuxKernel.vala:990 +#: src/Common/LinuxKernel.vala:989 msgid "is already installed." msgstr "вже встановлено." -#: src/Common/LinuxKernel.vala:1000 +#: src/Common/LinuxKernel.vala:999 msgid "download failed." msgstr "не вдалося завантажити." -#: src/Common/LinuxKernel.vala:1007 src/Gtk/MainWindow.vala:548 +#: src/Common/LinuxKernel.vala:1006 src/Gtk/MainWindow.vala:548 #, fuzzy msgid "Install: no installable kernels specified" msgstr "Встановити: ядра, які можна встановити, не вказано" -#: src/Common/LinuxKernel.vala:1022 +#: src/Common/LinuxKernel.vala:1021 msgid "Uninstalling selected kernels" msgstr "Видаліть конкретні ядра" -#: src/Common/LinuxKernel.vala:1029 +#: src/Common/LinuxKernel.vala:1028 msgid "Not uninstalling the currently running kernel" msgstr "Не видалення поточного запущеного ядра" -#: src/Common/LinuxKernel.vala:1034 src/Gtk/MainWindow.vala:543 +#: src/Common/LinuxKernel.vala:1033 src/Gtk/MainWindow.vala:543 msgid "is locked" msgstr "заблоковано" -#: src/Common/LinuxKernel.vala:1042 +#: src/Common/LinuxKernel.vala:1041 msgid "found" msgstr "знайдено" -#: src/Common/LinuxKernel.vala:1046 +#: src/Common/LinuxKernel.vala:1045 msgid "Uninstall: no uninstallable packages found" msgstr "Видалити: пакетів, які можна видалити, не знайдено" -#: src/Common/LinuxKernel.vala:1082 +#: src/Common/LinuxKernel.vala:1081 msgid "is the highest installed version." msgstr "є найвищою встановленою версією." -#: src/Common/LinuxKernel.vala:1095 +#: src/Common/LinuxKernel.vala:1094 msgid "Could not find running kernel in list" msgstr "Не вдалося знайти запущене ядро у списку!" -#: src/Common/LinuxKernel.vala:1100 +#: src/Common/LinuxKernel.vala:1099 msgid "Could not find any kernels to uninstall" msgstr "Не вдалося знайти жодне ядро для вилучення" -#: src/Common/LinuxKernel.vala:1105 +#: src/Common/LinuxKernel.vala:1104 msgid "The following kernels will be uninstalled" msgstr "Наступні ядра будуть видалені" -#: src/Common/LinuxKernel.vala:1107 +#: src/Common/LinuxKernel.vala:1106 msgid "Continue ?" msgstr "Продовжувати ?" -#: src/Common/LinuxKernel.vala:1123 +#: src/Common/LinuxKernel.vala:1122 #, fuzzy msgid "No updates" msgstr "Оновлень не знайдено" -#: src/Common/LinuxKernel.vala:1129 +#: src/Common/LinuxKernel.vala:1128 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Встановити Ядро Версії %s ? (так/ні): " -#: src/Common/Main.vala:158 +#: src/Common/Main.vala:157 msgid "Missing Thread support in Glib." msgstr "" -#: src/Common/Main.vala:242 +#: src/Common/Main.vala:241 msgid "Wrote config file" msgstr "" -#: src/Common/Main.vala:261 +#: src/Common/Main.vala:260 msgid "No config file" msgstr "" -#: src/Common/Main.vala:322 +#: src/Common/Main.vala:319 msgid "Loaded config file" msgstr "" -#: src/Common/Main.vala:351 +#: src/Common/Main.vala:339 msgid "Called from" msgstr "Викликано з" -#: src/Common/Main.vala:351 +#: src/Common/Main.vala:339 msgid "at logon" msgstr "при запуску" -#: src/Common/Main.vala:352 +#: src/Common/Main.vala:340 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" "Цей файл перезаписується та виконується знову під час збереження налаштувань" -#: src/Common/Main.vala:384 +#: src/Common/Main.vala:372 msgid "Notifications are disabled" msgstr "Повідомлення вимкнено" @@ -354,7 +354,7 @@ msgstr "Повідомити, чи доступний великий випус msgid "Kernel %s Available" msgstr "Ядро %s Доступне" -#: src/Console/AppConsole.vala:248 src/Gtk/SettingsDialog.vala:151 +#: src/Console/AppConsole.vala:248 src/Gtk/SettingsDialog.vala:145 msgid "Show" msgstr "Показати" @@ -512,64 +512,64 @@ msgstr "Увімкнено інтервал секунд для налагодж msgid "Check every" msgstr "Перевіряти кожні" -#: src/Gtk/SettingsDialog.vala:119 +#: src/Gtk/SettingsDialog.vala:118 msgid "Hours" msgstr "годин" -#: src/Gtk/SettingsDialog.vala:121 +#: src/Gtk/SettingsDialog.vala:119 msgid "Days" msgstr "днів" -#: src/Gtk/SettingsDialog.vala:123 +#: src/Gtk/SettingsDialog.vala:120 msgid "Weeks" msgstr "тижнів" -#: src/Gtk/SettingsDialog.vala:126 +#: src/Gtk/SettingsDialog.vala:121 msgid "Seconds" msgstr "секунд" -#: src/Gtk/SettingsDialog.vala:132 +#: src/Gtk/SettingsDialog.vala:126 msgid "Filters" msgstr "Фільтри" -#: src/Gtk/SettingsDialog.vala:140 +#: src/Gtk/SettingsDialog.vala:134 msgid "Hide unstable and RC releases" msgstr "Приховати нестабільні та RC випуски" -#: src/Gtk/SettingsDialog.vala:162 +#: src/Gtk/SettingsDialog.vala:156 msgid "previous major versions ( -1 = all )" msgstr "попередніх основних версій ( -1 = усі )" -#: src/Gtk/SettingsDialog.vala:166 +#: src/Gtk/SettingsDialog.vala:160 msgid "Network" msgstr "Мережа" -#: src/Gtk/SettingsDialog.vala:177 +#: src/Gtk/SettingsDialog.vala:171 msgid "Internet connection timeout in" msgstr "Час очікування підключення до Інтернету в " -#: src/Gtk/SettingsDialog.vala:189 +#: src/Gtk/SettingsDialog.vala:183 msgid "seconds" msgstr "секунди" -#: src/Gtk/SettingsDialog.vala:196 +#: src/Gtk/SettingsDialog.vala:190 msgid "Max concurrent downloads" msgstr "Максимальна кількість завантажень" -#: src/Gtk/SettingsDialog.vala:209 +#: src/Gtk/SettingsDialog.vala:203 msgid "Verify Checksums with the CHECKSUMS files" msgstr "Перевірка Контрольні суми за допомогою файлів CHECKSUMS" -#: src/Gtk/SettingsDialog.vala:217 +#: src/Gtk/SettingsDialog.vala:211 msgid "Proxy" msgstr "Проксі" -#: src/Gtk/SettingsDialog.vala:250 +#: src/Gtk/SettingsDialog.vala:244 #, fuzzy msgid "Auth Command" msgstr "Команди" -#: src/Gtk/SettingsDialog.vala:278 +#: src/Gtk/SettingsDialog.vala:272 msgid "Done" msgstr "" diff --git a/src/Common/LinuxKernel.vala b/src/Common/LinuxKernel.vala index ebccf35b..330ebda3 100644 --- a/src/Common/LinuxKernel.vala +++ b/src/Common/LinuxKernel.vala @@ -23,8 +23,6 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { public Gee.HashMap deb_checksum_list = new Gee.HashMap(); // assosciated .deb files K=filename,V=checksum public Gee.HashMap pkg_list = new Gee.HashMap(); // assosciated dpkg package names - public static Gee.HashMap pkg_list_installed; - public bool is_installed = false; public bool is_running = false; public bool is_mainline = true; @@ -536,6 +534,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { } public void split_version_string(string s="") { + //vprint("+k "+s); version_main = ""; version_major = 0; version_minor = 0; @@ -552,7 +551,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { t = t.split("~")[0]; if (t==null || t=="") t = "0"; kver = t; - //vprint("\""+t+"\""); + //vprint(t); // Unsafe. "rc" could be part of intel-arc or something some day. var mi = regex_match("""([0-9]+|rc)""",t); @@ -657,11 +656,11 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { public string status { get { - return - is_running ? _("Running") : - is_installed ? _("Installed") : - is_invalid ? _("Invalid") : - ""; + return + is_running ? _("Running") : + is_installed ? _("Installed") : + is_invalid ? _("Invalid") : + ""; } } diff --git a/src/Common/Main.vala b/src/Common/Main.vala index 9d440086..a90a65ef 100644 --- a/src/Common/Main.vala +++ b/src/Common/Main.vala @@ -28,8 +28,7 @@ using TeeJee.FileSystem; using TeeJee.ProcessHelper; using TeeJee.Misc; using l.misc; -//#if ! HAVE_GLIB_JSON_1_6 -#if ! VALA_0_50 +#if !VALA_0_50 using l.json; #endif @@ -267,52 +266,50 @@ public class Main : GLib.Object { var node = parser.get_root(); var config = node.get_object(); -//#if HAVE_GLIB_JSON_1_6 -#if VALA_0_50 - ppa_uri = config.get_string_member_with_default( "ppa_uri", DEFAULT_PPA_URI ); - all_proxy = config.get_string_member_with_default( "all_proxy", DEFAULT_ALL_PROXY ); - connect_timeout_seconds = (int)config.get_int_member_with_default( "connect_timeout_seconds", DEFAULT_CONNECT_TIMEOUT_SECONDS ); - concurrent_downloads = (int)config.get_int_member_with_default( "concurrent_downloads", DEFAULT_CONCURRENT_DOWNLOADS ); - hide_unstable = config.get_boolean_member_with_default( "hide_unstable", DEFAULT_HIDE_UNSTABLE ); - previous_majors = (int)config.get_int_member_with_default( "previous_majors", DEFAULT_PREVIOUS_MAJORS ); - notify_major = config.get_boolean_member_with_default( "notify_major", DEFAULT_NOTIFY_MAJOR ); - notify_minor = config.get_boolean_member_with_default( "notify_minor", DEFAULT_NOTIFY_MINOR ); - notify_interval_unit = (int)config.get_int_member_with_default( "notify_interval_unit", DEFAULT_NOTIFY_INTERVAL_UNIT ); - notify_interval_value = (int)config.get_int_member_with_default( "notify_interval_value", DEFAULT_NOTIFY_INTERVAL_VALUE ); - verify_checksums = config.get_boolean_member_with_default( "verify_checksums", DEFAULT_VERIFY_CHECKSUMS ); - auth_cmd = config.get_string_member_with_default( "auth_cmd", DEFAULT_AUTH_CMDS[0] ); - window_width = (int)config.get_int_member_with_default( "window_width", DEFAULT_WINDOW_WIDTH ); - window_height = (int)config.get_int_member_with_default( "window_height", DEFAULT_WINDOW_HEIGHT ); - window_x = (int)config.get_int_member_with_default( "window_x", DEFAULT_WINDOW_X ); - window_y = (int)config.get_int_member_with_default( "window_y", DEFAULT_WINDOW_Y ); - term_width = (int)config.get_int_member_with_default( "term_width", DEFAULT_TERM_WIDTH ); - term_height = (int)config.get_int_member_with_default( "term_height", DEFAULT_TERM_HEIGHT ); - term_x = (int)config.get_int_member_with_default( "term_x", DEFAULT_TERM_X ); - term_y = (int)config.get_int_member_with_default( "term_y", DEFAULT_TERM_Y ); +#if VALA_0_50 // glib-json 1.6 + ppa_uri = config.get_string_member_with_default( "ppa_uri", DEFAULT_PPA_URI ); + all_proxy = config.get_string_member_with_default( "all_proxy", DEFAULT_ALL_PROXY ); + connect_timeout_seconds = (int) config.get_int_member_with_default( "connect_timeout_seconds", DEFAULT_CONNECT_TIMEOUT_SECONDS ); + concurrent_downloads = (int) config.get_int_member_with_default( "concurrent_downloads", DEFAULT_CONCURRENT_DOWNLOADS ); + hide_unstable = config.get_boolean_member_with_default( "hide_unstable", DEFAULT_HIDE_UNSTABLE ); + previous_majors = (int) config.get_int_member_with_default( "previous_majors", DEFAULT_PREVIOUS_MAJORS ); + notify_major = config.get_boolean_member_with_default( "notify_major", DEFAULT_NOTIFY_MAJOR ); + notify_minor = config.get_boolean_member_with_default( "notify_minor", DEFAULT_NOTIFY_MINOR ); + notify_interval_unit = (int) config.get_int_member_with_default( "notify_interval_unit", DEFAULT_NOTIFY_INTERVAL_UNIT ); + notify_interval_value = (int) config.get_int_member_with_default( "notify_interval_value", DEFAULT_NOTIFY_INTERVAL_VALUE ); + verify_checksums = config.get_boolean_member_with_default( "verify_checksums", DEFAULT_VERIFY_CHECKSUMS ); + auth_cmd = config.get_string_member_with_default( "auth_cmd", DEFAULT_AUTH_CMDS[0] ); + window_width = (int) config.get_int_member_with_default( "window_width", DEFAULT_WINDOW_WIDTH ); + window_height = (int) config.get_int_member_with_default( "window_height", DEFAULT_WINDOW_HEIGHT ); + window_x = (int) config.get_int_member_with_default( "window_x", DEFAULT_WINDOW_X ); + window_y = (int) config.get_int_member_with_default( "window_y", DEFAULT_WINDOW_Y ); + term_width = (int) config.get_int_member_with_default( "term_width", DEFAULT_TERM_WIDTH ); + term_height = (int) config.get_int_member_with_default( "term_height", DEFAULT_TERM_HEIGHT ); + term_x = (int) config.get_int_member_with_default( "term_x", DEFAULT_TERM_X ); + term_y = (int) config.get_int_member_with_default( "term_y", DEFAULT_TERM_Y ); #else - ppa_uri = json_get_string( config, "ppa_uri", DEFAULT_PPA_URI ); - all_proxy = json_get_string( config, "all_proxy", DEFAULT_ALL_PROXY ); - connect_timeout_seconds = json_get_int( config, "connect_timeout_seconds", DEFAULT_CONNECT_TIMEOUT_SECONDS ); - concurrent_downloads = json_get_int( config, "concurrent_downloads", DEFAULT_CONCURRENT_DOWNLOADS ); - hide_unstable = json_get_bool( config, "hide_unstable", DEFAULT_HIDE_UNSTABLE ); - previous_majors = json_get_int( config, "previous_majors", DEFAULT_PREVIOUS_MAJORS ); - notify_major = json_get_bool( config, "notify_major", DEFAULT_NOTIFY_MAJOR ); - notify_minor = json_get_bool( config, "notify_minor", DEFAULT_NOTIFY_MINOR ); - notify_interval_unit = json_get_int( config, "notify_interval_unit", DEFAULT_NOTIFY_INTERVAL_UNIT ); - notify_interval_value = json_get_int( config, "notify_interval_value", DEFAULT_NOTIFY_INTERVAL_VALUE ); - verify_checksums = json_get_bool( config, "verify_checksums", DEFAULT_VERIFY_CHECKSUMS ); - auth_cmd = json_get_string( config, "auth_cmd", DEFAULT_AUTH_CMDS[0] ); - window_width = json_get_int( config, "window_width", DEFAULT_WINDOW_WIDTH ); - window_height = json_get_int( config, "window_height", DEFAULT_WINDOW_HEIGHT ); - window_x = json_get_int( config, "window_x", DEFAULT_WINDOW_X ); - window_y = json_get_int( config, "window_y", DEFAULT_WINDOW_Y ); - term_width = json_get_int( config, "term_width", DEFAULT_TERM_WIDTH ); - term_height = json_get_int( config, "term_height", DEFAULT_TERM_HEIGHT ); - term_x = json_get_int( config, "term_x", DEFAULT_TERM_X ); - term_y = json_get_int( config, "term_y", DEFAULT_TERM_Y ); + ppa_uri = json_get_string( config, "ppa_uri", DEFAULT_PPA_URI ); + all_proxy = json_get_string( config, "all_proxy", DEFAULT_ALL_PROXY ); + connect_timeout_seconds = json_get_int( config, "connect_timeout_seconds", DEFAULT_CONNECT_TIMEOUT_SECONDS ); + concurrent_downloads = json_get_int( config, "concurrent_downloads", DEFAULT_CONCURRENT_DOWNLOADS ); + hide_unstable = json_get_bool( config, "hide_unstable", DEFAULT_HIDE_UNSTABLE ); + previous_majors = json_get_int( config, "previous_majors", DEFAULT_PREVIOUS_MAJORS ); + notify_major = json_get_bool( config, "notify_major", DEFAULT_NOTIFY_MAJOR ); + notify_minor = json_get_bool( config, "notify_minor", DEFAULT_NOTIFY_MINOR ); + notify_interval_unit = json_get_int( config, "notify_interval_unit", DEFAULT_NOTIFY_INTERVAL_UNIT ); + notify_interval_value = json_get_int( config, "notify_interval_value", DEFAULT_NOTIFY_INTERVAL_VALUE ); + verify_checksums = json_get_bool( config, "verify_checksums", DEFAULT_VERIFY_CHECKSUMS ); + auth_cmd = json_get_string( config, "auth_cmd", DEFAULT_AUTH_CMDS[0] ); + window_width = json_get_int( config, "window_width", DEFAULT_WINDOW_WIDTH ); + window_height = json_get_int( config, "window_height", DEFAULT_WINDOW_HEIGHT ); + window_x = json_get_int( config, "window_x", DEFAULT_WINDOW_X ); + window_y = json_get_int( config, "window_y", DEFAULT_WINDOW_Y ); + term_width = json_get_int( config, "term_width", DEFAULT_TERM_WIDTH ); + term_height = json_get_int( config, "term_height", DEFAULT_TERM_HEIGHT ); + term_x = json_get_int( config, "term_x", DEFAULT_TERM_X ); + term_y = json_get_int( config, "term_y", DEFAULT_TERM_Y ); #endif - // fixups bool resave = false; if (ppa_uri.length==0) { ppa_uri = DEFAULT_PPA_URI; resave = true; } if (!ppa_uri.has_suffix("/")) { ppa_uri += "/"; resave = true; } @@ -326,27 +323,18 @@ public class Main : GLib.Object { vprint("update_startup_script()",2); // construct the commandline argument for "sleep" - int n = notify_interval_value; - string u = "h"; + int n = notify_interval_value; string u = ""; switch (notify_interval_unit) { - case 0: // hour - u = "h"; - break; - case 1: // day - u = "d"; - break; - case 2: // week - u = "d"; - n = notify_interval_value * 7; - break; - case 3: // second - u = ""; - n = notify_interval_value; - break; + case 0: u = "h"; break; + case 1: u = "d"; break; + case 2: n = n*7; u = "d"; break; + case 3: break; } // TODO, ID file should not assume single DISPLAY // ID and SEEN should probably be in /var/run ? + // Sleep for days or weeks makes no sense. + // Really needs to compare target with current date/time. string s = "#!/bin/bash\n" + "# "+_("Called from")+" "+STARTUP_DESKTOP_FILE+" "+_("at logon")+".\n" + "# "+_("This file is over-written and executed again whenever settings are saved in")+" "+BRANDING_SHORTNAME+"-gtk\n" @@ -405,7 +393,7 @@ public class Main : GLib.Object { public void run_notify_script() { if (!RUN_NOTIFY_SCRIPT) return; RUN_NOTIFY_SCRIPT = false; - exec_async("bash "+STARTUP_SCRIPT_FILE+" 2>&- >&- <&-"); + exec_async("bash "+STARTUP_SCRIPT_FILE); } } diff --git a/src/Gtk/SettingsDialog.vala b/src/Gtk/SettingsDialog.vala index a66698d4..767cacf5 100644 --- a/src/Gtk/SettingsDialog.vala +++ b/src/Gtk/SettingsDialog.vala @@ -85,8 +85,8 @@ public class SettingsDialog : Gtk.Dialog { max_intervals = 3600; } else { if (App.notify_interval_unit == 3) { - App.notify_interval_value = 1; - App.notify_interval_unit = 0; + App.notify_interval_value = DEFAULT_NOTIFY_INTERVAL_VALUE; + App.notify_interval_unit = DEFAULT_NOTIFY_INTERVAL_UNIT; } } @@ -115,16 +115,10 @@ public class SettingsDialog : Gtk.Dialog { Gtk.TreeIter iter; var model = new Gtk.ListStore (1, typeof (string)); - model.append (out iter); - model.set (iter,0,_("Hours")); - model.append (out iter); - model.set (iter,0,_("Days")); - model.append (out iter); - model.set (iter,0,_("Weeks")); - if (Main.VERBOSE>1) { - model.append (out iter); - model.set (iter,0,_("Seconds")); - } + model.append(out iter); model.set(iter,0,_("Hours")); + model.append(out iter); model.set(iter,0,_("Days")); + model.append(out iter); model.set(iter,0,_("Weeks")); + if (Main.VERBOSE>1) { model.append (out iter); model.set (iter,0,_("Seconds")); } combo.set_model(model); combo.set_active(App.notify_interval_unit); diff --git a/src/Gtk/TerminalWindow.vala b/src/Gtk/TerminalWindow.vala index a028d456..05fe6cc4 100644 --- a/src/Gtk/TerminalWindow.vala +++ b/src/Gtk/TerminalWindow.vala @@ -191,8 +191,7 @@ public class TerminalWindow : Gtk.Window { string[] argv = {"sh", f}; string[] env = Environ.get(); -//#if HAVE_VTE_0_66 -#if VALA_0_50 +#if VALA_0_50 // vte 0.66 or so is_running = true; term.spawn_async( Vte.PtyFlags.DEFAULT, // pty_flags From c2ba5267032ca25b6831d0dcc9e17b6765d44510 Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Thu, 8 Jun 2023 16:52:41 -0400 Subject: [PATCH 369/567] formatting --- po/messages.pot | 2 +- po/ru.po | 3 ++- src/Common/Main.vala | 40 ++++++++++++++++++++-------------------- 3 files changed, 23 insertions(+), 22 deletions(-) diff --git a/po/messages.pot b/po/messages.pot index 12616687..a4330c30 100644 --- a/po/messages.pot +++ b/po/messages.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline 1.3.11\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-08 04:43-0400\n" +"POT-Creation-Date: 2023-06-08 16:51-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/po/ru.po b/po/ru.po index dfd09c72..f5350100 100644 --- a/po/ru.po +++ b/po/ru.po @@ -306,7 +306,8 @@ msgstr "Одна или несколько строк версии, взятых #: src/Console/AppConsole.vala:64 msgid "comma, pipe, or colon-seperated, or quoted space seperated" -msgstr "через запятую, вертикальную черту или двоеточие или через пробел в кавычках" +msgstr "" +"через запятую, вертикальную черту или двоеточие или через пробел в кавычках" #: src/Console/AppConsole.vala:65 msgid "Locked kernels and the currently running kernel are ignored" diff --git a/src/Common/Main.vala b/src/Common/Main.vala index a90a65ef..f23ec567 100644 --- a/src/Common/Main.vala +++ b/src/Common/Main.vala @@ -206,26 +206,26 @@ public class Main : GLib.Object { vprint("save_app_config()",2); var config = new Json.Object(); - config.set_string_member( "ppa_uri", ppa_uri ); - config.set_string_member( "all_proxy", all_proxy ); - config.set_int_member( "connect_timeout_seconds", connect_timeout_seconds ); - config.set_int_member( "concurrent_downloads", concurrent_downloads ); - config.set_boolean_member( "hide_unstable", hide_unstable ); - config.set_int_member( "previous_majors", previous_majors ); - config.set_boolean_member( "notify_major", notify_major ); - config.set_boolean_member( "notify_minor", notify_minor ); - config.set_int_member( "notify_interval_unit", notify_interval_unit ); - config.set_int_member( "notify_interval_value", notify_interval_value ); - config.set_boolean_member( "verify_checksums", verify_checksums ); - config.set_string_member( "auth_cmd", auth_cmd ); - config.set_int_member( "window_width", window_width ); - config.set_int_member( "window_height", window_height ); - config.set_int_member( "window_x", window_x ); - config.set_int_member( "window_y", window_y ); - config.set_int_member( "term_width", term_width ); - config.set_int_member( "term_height", term_height ); - config.set_int_member( "term_x", term_x ); - config.set_int_member( "term_y", term_y ); + config.set_string_member( "ppa_uri", ppa_uri ); + config.set_string_member( "all_proxy", all_proxy ); + config.set_int_member( "connect_timeout_seconds", connect_timeout_seconds ); + config.set_int_member( "concurrent_downloads", concurrent_downloads ); + config.set_boolean_member( "hide_unstable", hide_unstable ); + config.set_int_member( "previous_majors", previous_majors ); + config.set_boolean_member( "notify_major", notify_major ); + config.set_boolean_member( "notify_minor", notify_minor ); + config.set_int_member( "notify_interval_unit", notify_interval_unit ); + config.set_int_member( "notify_interval_value", notify_interval_value ); + config.set_boolean_member( "verify_checksums", verify_checksums ); + config.set_string_member( "auth_cmd", auth_cmd ); + config.set_int_member( "window_width", window_width ); + config.set_int_member( "window_height", window_height ); + config.set_int_member( "window_x", window_x ); + config.set_int_member( "window_y", window_y ); + config.set_int_member( "term_width", term_width ); + config.set_int_member( "term_height", term_height ); + config.set_int_member( "term_x", term_x ); + config.set_int_member( "term_y", term_y ); var json = new Json.Generator(); json.pretty = true; From 998f219ab8ffcfd9c685fccc7cd966171fa907e7 Mon Sep 17 00:00:00 2001 From: cappelikan Date: Sat, 10 Jun 2023 04:45:09 +0300 Subject: [PATCH 370/567] Update uk.po --- po/uk.po | 26 +++++++++----------------- 1 file changed, 9 insertions(+), 17 deletions(-) diff --git a/po/uk.po b/po/uk.po index 0682a021..fabcd358 100644 --- a/po/uk.po +++ b/po/uk.po @@ -91,9 +91,8 @@ msgid "File not found" msgstr "Файл не знайдено" #: src/Common/LinuxKernel.vala:813 -#, fuzzy msgid "needs update" -msgstr "Останнє оновлення" +msgstr "потребує оновлення" #: src/Common/LinuxKernel.vala:880 msgid "Available Kernels" @@ -136,7 +135,6 @@ msgid "download failed." msgstr "не вдалося завантажити." #: src/Common/LinuxKernel.vala:1006 src/Gtk/MainWindow.vala:548 -#, fuzzy msgid "Install: no installable kernels specified" msgstr "Встановити: ядра, які можна встановити, не вказано" @@ -181,9 +179,8 @@ msgid "Continue ?" msgstr "Продовжувати ?" #: src/Common/LinuxKernel.vala:1122 -#, fuzzy msgid "No updates" -msgstr "Оновлень не знайдено" +msgstr "Немає оновлень" #: src/Common/LinuxKernel.vala:1128 #, c-format @@ -331,23 +328,20 @@ msgid "No updates found" msgstr "Оновлень не знайдено" #: src/Console/AppConsole.vala:211 -#, fuzzy msgid "Notifications disabled" msgstr "Сповіщення вимкнено" #: src/Console/AppConsole.vala:216 msgid "No" -msgstr "" +msgstr "Ні" #: src/Console/AppConsole.vala:231 -#, fuzzy msgid "notify point releases disabled" -msgstr "Повідомити, чи доступний невеликий випуск" +msgstr "випуски точки сповіщення вимкнено" #: src/Console/AppConsole.vala:239 -#, fuzzy msgid "notify major releases disabled" -msgstr "Повідомити, чи доступний великий випуск" +msgstr "сповіщення про основні випуски вимкнено" #: src/Console/AppConsole.vala:244 #, c-format @@ -479,13 +473,12 @@ msgid "available" msgstr "доступний" #: src/Gtk/MainWindow.vala:542 -#, fuzzy msgid "is already installed" -msgstr "вже встановлено." +msgstr "вже встановлено" #: src/Gtk/MainWindow.vala:544 msgid "adding" -msgstr "" +msgstr "додавання" #: src/Gtk/MainWindow.vala:570 src/Gtk/MainWindow.vala:604 #: src/Gtk/MainWindow.vala:632 @@ -565,13 +558,12 @@ msgid "Proxy" msgstr "Проксі" #: src/Gtk/SettingsDialog.vala:244 -#, fuzzy msgid "Auth Command" -msgstr "Команди" +msgstr "Команда авторизації" #: src/Gtk/SettingsDialog.vala:272 msgid "Done" -msgstr "" +msgstr "Готово" #: src/Gtk/TerminalWindow.vala:151 msgid "Cancel" From 2ee0618fda76e5bea9ab949c2a1406db715da2de Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Sat, 10 Jun 2023 00:29:15 -0400 Subject: [PATCH 371/567] new version parser, trim_cache() --- Makefile | 21 +++- po/de.po | 130 +++++++++++------------ po/el.po | 130 +++++++++++------------ po/es.po | 130 +++++++++++------------ po/fr.po | 130 +++++++++++------------ po/hr.po | 130 +++++++++++------------ po/it.po | 130 +++++++++++------------ po/ko.po | 130 +++++++++++------------ po/messages.pot | 130 +++++++++++------------ po/nl.po | 130 +++++++++++------------ po/pl.po | 130 +++++++++++------------ po/ru.po | 130 +++++++++++------------ po/sv.po | 130 +++++++++++------------ po/tr.po | 130 +++++++++++------------ po/uk.po | 130 +++++++++++------------ src/Common/DownloadManager.vala | 3 - src/Common/LinuxKernel.vala | 177 +++++++++++++++++++++----------- src/Gtk/MainWindow.vala | 10 +- src/lib/AsyncTask.vala | 7 +- src/lib/l.misc.vala | 20 ++-- 20 files changed, 1067 insertions(+), 991 deletions(-) diff --git a/Makefile b/Makefile index fe0f9502..f258d1f2 100644 --- a/Makefile +++ b/Makefile @@ -2,7 +2,26 @@ SHELL := /bin/bash CFLAGS := -O2 -VALACFLAGS := # -D LOCK_TOGGLES_IN_KERNEL_COLUMN +VALACFLAGS := + +# compile-time options +#VALACFLAGS += -D LOCK_TOGGLES_IN_KERNEL_COLUMN +# Put the lock/unlock checkboxes inside the kernel version column instead of +# in their own column. The display is neater, but you can't sort by locked +# status to gather all the locked kernels together by clicking the header. +# TODO customized checkbox lock icon since there is no "Lock" column header label +# TODO cycle sorting between version number and locked status every 2nd time header is clicked +# version-up -> version-dn -> locked-up -> locked-dn -> repeat +VALACFLAGS += -D SPLIT_VERSION_STRING_V2 +# New code for parsing the version strings, trying to prepare the way +# for eventually supporting kernel flavors other than "-generic". +# Initially just aims to be more correct and preserve more info. +# For example, the old version strips all non-numerical text like "-dontuse" +# while the new one retains it and puts it into the version_extra field. +# It may be slightly slower since it does a little more work. +#VALACFLAGS += -D DISPLAY_VERSION_SORT +# Use the internally constructed version_sort string for display. +# Default is version_main which from the mainline-ppa index.html. prefix := /usr bindir := $(prefix)/bin diff --git a/po/de.po b/po/de.po index bcb103ff..885d7a79 100644 --- a/po/de.po +++ b/po/de.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-08 03:52-0400\n" +"POT-Creation-Date: 2023-06-09 23:18-0400\n" "PO-Revision-Date: 2023-02-20 18:40+0100\n" "Last-Translator: Marvin Meysel \n" "Language-Team: German\n" @@ -13,185 +13,185 @@ msgstr "" "X-Launchpad-Export-Date: 2017-04-13 11:48+0000\n" "X-Generator: Poedit 3.1.1\n" -#: src/Common/LinuxKernel.vala:102 +#: src/Common/LinuxKernel.vala:104 msgid "Distribution" msgstr "Distribution" -#: src/Common/LinuxKernel.vala:117 +#: src/Common/LinuxKernel.vala:119 msgid "Architecture" msgstr "Architektur" -#: src/Common/LinuxKernel.vala:132 +#: src/Common/LinuxKernel.vala:134 msgid "Running kernel" msgstr "Laufender kernel" -#: src/Common/LinuxKernel.vala:219 +#: src/Common/LinuxKernel.vala:221 msgid "loading cached" msgstr "laden gecached" -#: src/Common/LinuxKernel.vala:231 +#: src/Common/LinuxKernel.vala:233 msgid "queuing download" msgstr "download der warteschlange" -#: src/Common/LinuxKernel.vala:251 +#: src/Common/LinuxKernel.vala:253 msgid "Fetching individual kernel indexes" msgstr "Abrufen einzelner Kernel-Indizes" -#: src/Common/LinuxKernel.vala:265 +#: src/Common/LinuxKernel.vala:266 msgid "loading downloaded" msgstr "laden von heruntergeladenen Dateien" -#: src/Common/LinuxKernel.vala:305 +#: src/Common/LinuxKernel.vala:307 msgid "Updating from" msgstr "Aktualisieren von" -#: src/Common/LinuxKernel.vala:313 +#: src/Common/LinuxKernel.vala:315 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:316 +#: src/Common/LinuxKernel.vala:318 msgid "FAILED" msgstr "MISSLUNGEN" -#: src/Common/LinuxKernel.vala:381 +#: src/Common/LinuxKernel.vala:386 msgid "Found installed" msgstr "Installiert gefunden" -#: src/Common/LinuxKernel.vala:382 +#: src/Common/LinuxKernel.vala:387 msgid "locked" msgstr "" -#: src/Common/LinuxKernel.vala:464 src/Common/LinuxKernel.vala:994 -#: src/Common/LinuxKernel.vala:1085 +#: src/Common/LinuxKernel.vala:470 src/Common/LinuxKernel.vala:1053 +#: src/Common/LinuxKernel.vala:1144 msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:660 src/Gtk/MainWindow.vala:521 +#: src/Common/LinuxKernel.vala:719 src/Gtk/MainWindow.vala:525 msgid "Running" msgstr "Läuft" -#: src/Common/LinuxKernel.vala:661 +#: src/Common/LinuxKernel.vala:720 msgid "Installed" msgstr "Installiert" -#: src/Common/LinuxKernel.vala:662 +#: src/Common/LinuxKernel.vala:721 msgid "Invalid" msgstr "Ungültig" -#: src/Common/LinuxKernel.vala:755 +#: src/Common/LinuxKernel.vala:814 msgid "Packages Available" msgstr "Verfügbare Pakete" -#: src/Common/LinuxKernel.vala:761 +#: src/Common/LinuxKernel.vala:820 msgid "Packages Installed" msgstr "Installierte Pakete" -#: src/Common/LinuxKernel.vala:786 src/lib/TeeJee.FileSystem.vala:94 +#: src/Common/LinuxKernel.vala:845 src/lib/TeeJee.FileSystem.vala:94 msgid "File not found" msgstr "Datei nicht gefunden " -#: src/Common/LinuxKernel.vala:813 +#: src/Common/LinuxKernel.vala:872 #, fuzzy msgid "needs update" msgstr "Neustes Update" -#: src/Common/LinuxKernel.vala:880 +#: src/Common/LinuxKernel.vala:939 msgid "Available Kernels" msgstr "Verfügbare Kernel" -#: src/Common/LinuxKernel.vala:914 src/Gtk/MainWindow.vala:135 +#: src/Common/LinuxKernel.vala:973 src/Gtk/MainWindow.vala:135 msgid "Kernel" msgstr "Kernel" -#: src/Common/LinuxKernel.vala:914 +#: src/Common/LinuxKernel.vala:973 #, fuzzy msgid "not found" msgstr "Datei nicht gefunden " -#: src/Common/LinuxKernel.vala:921 +#: src/Common/LinuxKernel.vala:980 #, fuzzy msgid "Download: no downloadable kernels specified" msgstr "Befehl nicht angegeben" -#: src/Common/LinuxKernel.vala:937 +#: src/Common/LinuxKernel.vala:996 msgid "enabled" msgstr "ermöglichte" -#: src/Common/LinuxKernel.vala:962 +#: src/Common/LinuxKernel.vala:1021 msgid "Downloading" msgstr "Laden" -#: src/Common/LinuxKernel.vala:980 +#: src/Common/LinuxKernel.vala:1039 #, fuzzy msgid "Installing selected kernels" msgstr "Deinstallation des angegebenen Kernels" -#: src/Common/LinuxKernel.vala:986 src/Common/LinuxKernel.vala:1025 +#: src/Common/LinuxKernel.vala:1045 src/Common/LinuxKernel.vala:1084 #, fuzzy msgid "Requested" msgstr "angefordert" -#: src/Common/LinuxKernel.vala:989 +#: src/Common/LinuxKernel.vala:1048 msgid "is already installed." msgstr "ist bereits installiert." -#: src/Common/LinuxKernel.vala:999 +#: src/Common/LinuxKernel.vala:1058 msgid "download failed." msgstr "" -#: src/Common/LinuxKernel.vala:1006 src/Gtk/MainWindow.vala:548 +#: src/Common/LinuxKernel.vala:1065 src/Gtk/MainWindow.vala:552 #, fuzzy msgid "Install: no installable kernels specified" msgstr "Befehl nicht angegeben" -#: src/Common/LinuxKernel.vala:1021 +#: src/Common/LinuxKernel.vala:1080 msgid "Uninstalling selected kernels" msgstr "Deinstallation des angegebenen Kernels" -#: src/Common/LinuxKernel.vala:1028 +#: src/Common/LinuxKernel.vala:1087 #, fuzzy msgid "Not uninstalling the currently running kernel" msgstr "Den aktuell laufenden Kernel wird nicht deinstalliert" -#: src/Common/LinuxKernel.vala:1033 src/Gtk/MainWindow.vala:543 +#: src/Common/LinuxKernel.vala:1092 src/Gtk/MainWindow.vala:547 msgid "is locked" msgstr "" -#: src/Common/LinuxKernel.vala:1041 +#: src/Common/LinuxKernel.vala:1100 msgid "found" msgstr "gründen" -#: src/Common/LinuxKernel.vala:1045 +#: src/Common/LinuxKernel.vala:1104 msgid "Uninstall: no uninstallable packages found" msgstr "" -#: src/Common/LinuxKernel.vala:1081 +#: src/Common/LinuxKernel.vala:1140 #, fuzzy msgid "is the highest installed version." msgstr "Deinstallieren Sie alle bis auf die höchste installierte Version" -#: src/Common/LinuxKernel.vala:1094 +#: src/Common/LinuxKernel.vala:1153 msgid "Could not find running kernel in list" msgstr "Konnte keinen laufenden Kernel in der Liste finden" -#: src/Common/LinuxKernel.vala:1099 +#: src/Common/LinuxKernel.vala:1158 msgid "Could not find any kernels to uninstall" msgstr "Es konnten keine Kernel zum Deinstallieren gefunden werden" -#: src/Common/LinuxKernel.vala:1104 +#: src/Common/LinuxKernel.vala:1163 msgid "The following kernels will be uninstalled" msgstr "Die folgenden Kernel werden deinstalliert" -#: src/Common/LinuxKernel.vala:1106 +#: src/Common/LinuxKernel.vala:1165 msgid "Continue ?" msgstr "Weiter ?" -#: src/Common/LinuxKernel.vala:1122 +#: src/Common/LinuxKernel.vala:1181 #, fuzzy msgid "No updates" msgstr "Keine Updates gefunden" -#: src/Common/LinuxKernel.vala:1128 +#: src/Common/LinuxKernel.vala:1187 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Kernel-Version %s installieren? (j/n):" @@ -280,7 +280,7 @@ msgstr "Deinstallation des angegebenen Kernels" msgid "Uninstall specified kernels" msgstr "Deinstallation des angegebenen Kernels" -#: src/Console/AppConsole.vala:51 src/Gtk/MainWindow.vala:333 +#: src/Console/AppConsole.vala:51 src/Gtk/MainWindow.vala:337 msgid "Uninstall all but the highest installed version" msgstr "Deinstallieren Sie alle bis auf die höchste installierte Version" @@ -371,7 +371,7 @@ msgstr "Kernel %s verfügbar" msgid "Show" msgstr "Zeigen" -#: src/Console/AppConsole.vala:249 src/Gtk/MainWindow.vala:312 +#: src/Console/AppConsole.vala:249 src/Gtk/MainWindow.vala:316 msgid "Install" msgstr "Installieren" @@ -439,69 +439,69 @@ msgstr "Status" msgid "Notes" msgstr "Notizen" -#: src/Gtk/MainWindow.vala:317 +#: src/Gtk/MainWindow.vala:321 msgid "Uninstall" msgstr "Deinstallieren" -#: src/Gtk/MainWindow.vala:323 +#: src/Gtk/MainWindow.vala:327 msgid "Changelog, build status, etc" msgstr "" -#: src/Gtk/MainWindow.vala:332 +#: src/Gtk/MainWindow.vala:336 msgid "Uninstall Old" msgstr "Alte deinstallieren" -#: src/Gtk/MainWindow.vala:338 +#: src/Gtk/MainWindow.vala:342 msgid "Reload" msgstr "Nachladen" -#: src/Gtk/MainWindow.vala:339 +#: src/Gtk/MainWindow.vala:343 msgid "Delete and reload all cached kernel info" msgstr "" -#: src/Gtk/MainWindow.vala:344 src/Gtk/SettingsDialog.vala:41 +#: src/Gtk/MainWindow.vala:348 src/Gtk/SettingsDialog.vala:41 msgid "Settings" msgstr "Einstellungen" -#: src/Gtk/MainWindow.vala:349 +#: src/Gtk/MainWindow.vala:353 msgid "About" msgstr "Über" -#: src/Gtk/MainWindow.vala:354 +#: src/Gtk/MainWindow.vala:358 msgid "Exit" msgstr "Ausgang" -#: src/Gtk/MainWindow.vala:435 +#: src/Gtk/MainWindow.vala:439 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Kernel-Upgrade-Dienstprogramm für Ubuntu-basierte Distributionen" -#: src/Gtk/MainWindow.vala:436 +#: src/Gtk/MainWindow.vala:440 msgid "Forked" msgstr "Gegabelte" -#: src/Gtk/MainWindow.vala:436 +#: src/Gtk/MainWindow.vala:440 msgid "Original" msgstr "Original" -#: src/Gtk/MainWindow.vala:465 +#: src/Gtk/MainWindow.vala:469 msgid "Updating kernels" msgstr "Aktualisieren von Kernels" -#: src/Gtk/MainWindow.vala:525 +#: src/Gtk/MainWindow.vala:529 msgid "available" msgstr "Verfügbar" -#: src/Gtk/MainWindow.vala:542 +#: src/Gtk/MainWindow.vala:546 #, fuzzy msgid "is already installed" msgstr "ist bereits installiert." -#: src/Gtk/MainWindow.vala:544 +#: src/Gtk/MainWindow.vala:548 msgid "adding" msgstr "" -#: src/Gtk/MainWindow.vala:570 src/Gtk/MainWindow.vala:604 -#: src/Gtk/MainWindow.vala:632 +#: src/Gtk/MainWindow.vala:574 src/Gtk/MainWindow.vala:608 +#: src/Gtk/MainWindow.vala:636 msgid "DONE" msgstr "" @@ -590,6 +590,6 @@ msgstr "" msgid "Cancel" msgstr "Abbrechen" -#: src/lib/l.misc.vala:107 +#: src/lib/l.misc.vala:109 msgid "Can not reach site" msgstr "Fehler beim lesen der Datei" diff --git a/po/el.po b/po/el.po index 28f3f28b..c35cac77 100644 --- a/po/el.po +++ b/po/el.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-08 03:52-0400\n" +"POT-Creation-Date: 2023-06-09 23:18-0400\n" "PO-Revision-Date: 2023-01-10 02:03-0600\n" "Last-Translator: Vasilis Kosmidis \n" "Language-Team: Greek\n" @@ -13,185 +13,185 @@ msgstr "" "X-Launchpad-Export-Date: 2017-04-13 11:48+0000\n" "X-Generator: Poedit 2.0.5\n" -#: src/Common/LinuxKernel.vala:102 +#: src/Common/LinuxKernel.vala:104 msgid "Distribution" msgstr "Διανομή" -#: src/Common/LinuxKernel.vala:117 +#: src/Common/LinuxKernel.vala:119 msgid "Architecture" msgstr "Αρχιτεκτονική" -#: src/Common/LinuxKernel.vala:132 +#: src/Common/LinuxKernel.vala:134 msgid "Running kernel" msgstr "Εκτέλεση πυρήνα" -#: src/Common/LinuxKernel.vala:219 +#: src/Common/LinuxKernel.vala:221 msgid "loading cached" msgstr "φόρτωση προσωρινά αποθηκευμένου" -#: src/Common/LinuxKernel.vala:231 +#: src/Common/LinuxKernel.vala:233 msgid "queuing download" msgstr "Προσθήκη λήψης στην ουρά" -#: src/Common/LinuxKernel.vala:251 +#: src/Common/LinuxKernel.vala:253 msgid "Fetching individual kernel indexes" msgstr "Λήψη μεμονωμένων ευρετηρίων πυρήνα" -#: src/Common/LinuxKernel.vala:265 +#: src/Common/LinuxKernel.vala:266 msgid "loading downloaded" msgstr "Φόρτωση λήψης" -#: src/Common/LinuxKernel.vala:305 +#: src/Common/LinuxKernel.vala:307 msgid "Updating from" msgstr "Ενημέρωση από" -#: src/Common/LinuxKernel.vala:313 +#: src/Common/LinuxKernel.vala:315 msgid "OK" msgstr "ΟΚ" -#: src/Common/LinuxKernel.vala:316 +#: src/Common/LinuxKernel.vala:318 msgid "FAILED" msgstr "ΑΠΈΤΥΧΕ" -#: src/Common/LinuxKernel.vala:381 +#: src/Common/LinuxKernel.vala:386 msgid "Found installed" msgstr "Βρέθηκε εγκατεστημένο" -#: src/Common/LinuxKernel.vala:382 +#: src/Common/LinuxKernel.vala:387 msgid "locked" msgstr "" -#: src/Common/LinuxKernel.vala:464 src/Common/LinuxKernel.vala:994 -#: src/Common/LinuxKernel.vala:1085 +#: src/Common/LinuxKernel.vala:470 src/Common/LinuxKernel.vala:1053 +#: src/Common/LinuxKernel.vala:1144 msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:660 src/Gtk/MainWindow.vala:521 +#: src/Common/LinuxKernel.vala:719 src/Gtk/MainWindow.vala:525 msgid "Running" msgstr "Ενεργός" -#: src/Common/LinuxKernel.vala:661 +#: src/Common/LinuxKernel.vala:720 msgid "Installed" msgstr "Εγκατεστημένος" -#: src/Common/LinuxKernel.vala:662 +#: src/Common/LinuxKernel.vala:721 msgid "Invalid" msgstr "Άκυρος" -#: src/Common/LinuxKernel.vala:755 +#: src/Common/LinuxKernel.vala:814 msgid "Packages Available" msgstr "Διαθέσιμα πακέτα" -#: src/Common/LinuxKernel.vala:761 +#: src/Common/LinuxKernel.vala:820 msgid "Packages Installed" msgstr "Εγκατεστημένα πακέτα" -#: src/Common/LinuxKernel.vala:786 src/lib/TeeJee.FileSystem.vala:94 +#: src/Common/LinuxKernel.vala:845 src/lib/TeeJee.FileSystem.vala:94 msgid "File not found" msgstr "Το αρχείο δε βρέθηκε" -#: src/Common/LinuxKernel.vala:813 +#: src/Common/LinuxKernel.vala:872 #, fuzzy msgid "needs update" msgstr "Τελευταία αναβάθμιση" -#: src/Common/LinuxKernel.vala:880 +#: src/Common/LinuxKernel.vala:939 msgid "Available Kernels" msgstr "Διαθέσιμοι πυρήνες" -#: src/Common/LinuxKernel.vala:914 src/Gtk/MainWindow.vala:135 +#: src/Common/LinuxKernel.vala:973 src/Gtk/MainWindow.vala:135 msgid "Kernel" msgstr "Πυρήνας" -#: src/Common/LinuxKernel.vala:914 +#: src/Common/LinuxKernel.vala:973 #, fuzzy msgid "not found" msgstr "Το αρχείο δε βρέθηκε" -#: src/Common/LinuxKernel.vala:921 +#: src/Common/LinuxKernel.vala:980 #, fuzzy msgid "Download: no downloadable kernels specified" msgstr "Η εντολή δεν προσδιορίστηκε" -#: src/Common/LinuxKernel.vala:937 +#: src/Common/LinuxKernel.vala:996 msgid "enabled" msgstr "ενεργοποιημένη" -#: src/Common/LinuxKernel.vala:962 +#: src/Common/LinuxKernel.vala:1021 msgid "Downloading" msgstr "Κατέβασμα" -#: src/Common/LinuxKernel.vala:980 +#: src/Common/LinuxKernel.vala:1039 #, fuzzy msgid "Installing selected kernels" msgstr "Απεγκατάσταση επιλεγμένων πυρήνων" -#: src/Common/LinuxKernel.vala:986 src/Common/LinuxKernel.vala:1025 +#: src/Common/LinuxKernel.vala:1045 src/Common/LinuxKernel.vala:1084 #, fuzzy msgid "Requested" msgstr "ζητήθηκε" -#: src/Common/LinuxKernel.vala:989 +#: src/Common/LinuxKernel.vala:1048 msgid "is already installed." msgstr "είναι ήδη εγκατεστημένο." -#: src/Common/LinuxKernel.vala:999 +#: src/Common/LinuxKernel.vala:1058 msgid "download failed." msgstr "" -#: src/Common/LinuxKernel.vala:1006 src/Gtk/MainWindow.vala:548 +#: src/Common/LinuxKernel.vala:1065 src/Gtk/MainWindow.vala:552 #, fuzzy msgid "Install: no installable kernels specified" msgstr "Η εντολή δεν προσδιορίστηκε" -#: src/Common/LinuxKernel.vala:1021 +#: src/Common/LinuxKernel.vala:1080 msgid "Uninstalling selected kernels" msgstr "Απεγκατάσταση επιλεγμένων πυρήνων" -#: src/Common/LinuxKernel.vala:1028 +#: src/Common/LinuxKernel.vala:1087 #, fuzzy msgid "Not uninstalling the currently running kernel" msgstr "δεν θα απεγκαταστήσει τον πυρήνα που εκτελείται αυτήν τη στιγμή" -#: src/Common/LinuxKernel.vala:1033 src/Gtk/MainWindow.vala:543 +#: src/Common/LinuxKernel.vala:1092 src/Gtk/MainWindow.vala:547 msgid "is locked" msgstr "" -#: src/Common/LinuxKernel.vala:1041 +#: src/Common/LinuxKernel.vala:1100 msgid "found" msgstr "ιδρύω" -#: src/Common/LinuxKernel.vala:1045 +#: src/Common/LinuxKernel.vala:1104 msgid "Uninstall: no uninstallable packages found" msgstr "" -#: src/Common/LinuxKernel.vala:1081 +#: src/Common/LinuxKernel.vala:1140 #, fuzzy msgid "is the highest installed version." msgstr "Απεγκαταστήστε όλες εκτός από την υψηλότερη εγκατεστημένη έκδοση" -#: src/Common/LinuxKernel.vala:1094 +#: src/Common/LinuxKernel.vala:1153 msgid "Could not find running kernel in list" msgstr "Δεν ήταν δυνατή η εύρεση του πυρήνα που εκτελείται αυτήν τη στιγμή" -#: src/Common/LinuxKernel.vala:1099 +#: src/Common/LinuxKernel.vala:1158 msgid "Could not find any kernels to uninstall" msgstr "Δεν βρέθηκε κανένας πυρήνας για απεγκατάσταση" -#: src/Common/LinuxKernel.vala:1104 +#: src/Common/LinuxKernel.vala:1163 msgid "The following kernels will be uninstalled" msgstr "Θα καταργηθεί η εγκατάσταση των ακόλουθων πυρήνων" -#: src/Common/LinuxKernel.vala:1106 +#: src/Common/LinuxKernel.vala:1165 msgid "Continue ?" msgstr "Συνέχεια;" -#: src/Common/LinuxKernel.vala:1122 +#: src/Common/LinuxKernel.vala:1181 #, fuzzy msgid "No updates" msgstr "Δεν βρέθηκαν ενημερώσεις" -#: src/Common/LinuxKernel.vala:1128 +#: src/Common/LinuxKernel.vala:1187 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Εγκατάσταση του πυρήνα έκδοσης %s ; (ν/ό):" @@ -280,7 +280,7 @@ msgstr "Απεγκατάσταση του καθορισμένου πυρήνα" msgid "Uninstall specified kernels" msgstr "Απεγκατάσταση του καθορισμένου πυρήνα" -#: src/Console/AppConsole.vala:51 src/Gtk/MainWindow.vala:333 +#: src/Console/AppConsole.vala:51 src/Gtk/MainWindow.vala:337 msgid "Uninstall all but the highest installed version" msgstr "Απεγκαταστήστε όλες εκτός από την υψηλότερη εγκατεστημένη έκδοση" @@ -372,7 +372,7 @@ msgstr "Πυρήνας %s διαθέσιμος" msgid "Show" msgstr "Προβολή" -#: src/Console/AppConsole.vala:249 src/Gtk/MainWindow.vala:312 +#: src/Console/AppConsole.vala:249 src/Gtk/MainWindow.vala:316 msgid "Install" msgstr "Εγκατάσταση" @@ -440,69 +440,69 @@ msgstr "Κατάσταση" msgid "Notes" msgstr "Σημειώσεις" -#: src/Gtk/MainWindow.vala:317 +#: src/Gtk/MainWindow.vala:321 msgid "Uninstall" msgstr "Απεγκατάσταση" -#: src/Gtk/MainWindow.vala:323 +#: src/Gtk/MainWindow.vala:327 msgid "Changelog, build status, etc" msgstr "" -#: src/Gtk/MainWindow.vala:332 +#: src/Gtk/MainWindow.vala:336 msgid "Uninstall Old" msgstr "Απεγκατάσταση παλαιών" -#: src/Gtk/MainWindow.vala:338 +#: src/Gtk/MainWindow.vala:342 msgid "Reload" msgstr "Δροσίζω" -#: src/Gtk/MainWindow.vala:339 +#: src/Gtk/MainWindow.vala:343 msgid "Delete and reload all cached kernel info" msgstr "" -#: src/Gtk/MainWindow.vala:344 src/Gtk/SettingsDialog.vala:41 +#: src/Gtk/MainWindow.vala:348 src/Gtk/SettingsDialog.vala:41 msgid "Settings" msgstr "Ρυθμίσεις" -#: src/Gtk/MainWindow.vala:349 +#: src/Gtk/MainWindow.vala:353 msgid "About" msgstr "Σχετικά" -#: src/Gtk/MainWindow.vala:354 +#: src/Gtk/MainWindow.vala:358 msgid "Exit" msgstr "Έξοδος" -#: src/Gtk/MainWindow.vala:435 +#: src/Gtk/MainWindow.vala:439 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Πρόγραμμα αναβάθμισης πυρήνα για διανομές που βασίζονται στο Ubuntu" -#: src/Gtk/MainWindow.vala:436 +#: src/Gtk/MainWindow.vala:440 msgid "Forked" msgstr "Forked" -#: src/Gtk/MainWindow.vala:436 +#: src/Gtk/MainWindow.vala:440 msgid "Original" msgstr "Πρωτότυπο" -#: src/Gtk/MainWindow.vala:465 +#: src/Gtk/MainWindow.vala:469 msgid "Updating kernels" msgstr "Ενημέρωση πυρήνων" -#: src/Gtk/MainWindow.vala:525 +#: src/Gtk/MainWindow.vala:529 msgid "available" msgstr "διαθέσιμος" -#: src/Gtk/MainWindow.vala:542 +#: src/Gtk/MainWindow.vala:546 #, fuzzy msgid "is already installed" msgstr "είναι ήδη εγκατεστημένο." -#: src/Gtk/MainWindow.vala:544 +#: src/Gtk/MainWindow.vala:548 msgid "adding" msgstr "" -#: src/Gtk/MainWindow.vala:570 src/Gtk/MainWindow.vala:604 -#: src/Gtk/MainWindow.vala:632 +#: src/Gtk/MainWindow.vala:574 src/Gtk/MainWindow.vala:608 +#: src/Gtk/MainWindow.vala:636 msgid "DONE" msgstr "" @@ -591,6 +591,6 @@ msgstr "" msgid "Cancel" msgstr "Άκυρο" -#: src/lib/l.misc.vala:107 +#: src/lib/l.misc.vala:109 msgid "Can not reach site" msgstr "Αποτυχία ανάγνωσης του αρχείου" diff --git a/po/es.po b/po/es.po index ed66af1f..7cd5d884 100644 --- a/po/es.po +++ b/po/es.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-08 03:52-0400\n" +"POT-Creation-Date: 2023-06-09 23:18-0400\n" "PO-Revision-Date: 2018-01-03 02:03-0600\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish\n" @@ -13,185 +13,185 @@ msgstr "" "X-Launchpad-Export-Date: 2017-04-13 11:48+0000\n" "X-Generator: Poedit 2.0.5\n" -#: src/Common/LinuxKernel.vala:102 +#: src/Common/LinuxKernel.vala:104 msgid "Distribution" msgstr "Distribución" -#: src/Common/LinuxKernel.vala:117 +#: src/Common/LinuxKernel.vala:119 msgid "Architecture" msgstr "Arquitectura del sistema" -#: src/Common/LinuxKernel.vala:132 +#: src/Common/LinuxKernel.vala:134 msgid "Running kernel" msgstr "Kernel en ejecución" -#: src/Common/LinuxKernel.vala:219 +#: src/Common/LinuxKernel.vala:221 msgid "loading cached" msgstr "carga en caché" -#: src/Common/LinuxKernel.vala:231 +#: src/Common/LinuxKernel.vala:233 msgid "queuing download" msgstr "descarga de colas" -#: src/Common/LinuxKernel.vala:251 +#: src/Common/LinuxKernel.vala:253 msgid "Fetching individual kernel indexes" msgstr "Obtención de índices de kernel individuales" -#: src/Common/LinuxKernel.vala:265 +#: src/Common/LinuxKernel.vala:266 msgid "loading downloaded" msgstr "cargando descargado" -#: src/Common/LinuxKernel.vala:305 +#: src/Common/LinuxKernel.vala:307 msgid "Updating from" msgstr "Actualización desde" -#: src/Common/LinuxKernel.vala:313 +#: src/Common/LinuxKernel.vala:315 msgid "OK" msgstr "Aceptar" -#: src/Common/LinuxKernel.vala:316 +#: src/Common/LinuxKernel.vala:318 msgid "FAILED" msgstr "FRACASADO" -#: src/Common/LinuxKernel.vala:381 +#: src/Common/LinuxKernel.vala:386 msgid "Found installed" msgstr "Encontrado instalado" -#: src/Common/LinuxKernel.vala:382 +#: src/Common/LinuxKernel.vala:387 msgid "locked" msgstr "" -#: src/Common/LinuxKernel.vala:464 src/Common/LinuxKernel.vala:994 -#: src/Common/LinuxKernel.vala:1085 +#: src/Common/LinuxKernel.vala:470 src/Common/LinuxKernel.vala:1053 +#: src/Common/LinuxKernel.vala:1144 msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:660 src/Gtk/MainWindow.vala:521 +#: src/Common/LinuxKernel.vala:719 src/Gtk/MainWindow.vala:525 msgid "Running" msgstr "En ejecución" -#: src/Common/LinuxKernel.vala:661 +#: src/Common/LinuxKernel.vala:720 msgid "Installed" msgstr "Instalado" -#: src/Common/LinuxKernel.vala:662 +#: src/Common/LinuxKernel.vala:721 msgid "Invalid" msgstr "No válido" -#: src/Common/LinuxKernel.vala:755 +#: src/Common/LinuxKernel.vala:814 msgid "Packages Available" msgstr "Paquetes disponibles" -#: src/Common/LinuxKernel.vala:761 +#: src/Common/LinuxKernel.vala:820 msgid "Packages Installed" msgstr "Paquetes instalados" -#: src/Common/LinuxKernel.vala:786 src/lib/TeeJee.FileSystem.vala:94 +#: src/Common/LinuxKernel.vala:845 src/lib/TeeJee.FileSystem.vala:94 msgid "File not found" msgstr "No se encontró el archivo" -#: src/Common/LinuxKernel.vala:813 +#: src/Common/LinuxKernel.vala:872 #, fuzzy msgid "needs update" msgstr "Última actualización" -#: src/Common/LinuxKernel.vala:880 +#: src/Common/LinuxKernel.vala:939 msgid "Available Kernels" msgstr "Núcleos disponibles" -#: src/Common/LinuxKernel.vala:914 src/Gtk/MainWindow.vala:135 +#: src/Common/LinuxKernel.vala:973 src/Gtk/MainWindow.vala:135 msgid "Kernel" msgstr "Núcleo" -#: src/Common/LinuxKernel.vala:914 +#: src/Common/LinuxKernel.vala:973 #, fuzzy msgid "not found" msgstr "No se encontró el archivo" -#: src/Common/LinuxKernel.vala:921 +#: src/Common/LinuxKernel.vala:980 #, fuzzy msgid "Download: no downloadable kernels specified" msgstr "Coomand no especificado" -#: src/Common/LinuxKernel.vala:937 +#: src/Common/LinuxKernel.vala:996 msgid "enabled" msgstr "habilitado" -#: src/Common/LinuxKernel.vala:962 +#: src/Common/LinuxKernel.vala:1021 msgid "Downloading" msgstr "Descargar" -#: src/Common/LinuxKernel.vala:980 +#: src/Common/LinuxKernel.vala:1039 #, fuzzy msgid "Installing selected kernels" msgstr "Desinstalación de kernels seleccionados" -#: src/Common/LinuxKernel.vala:986 src/Common/LinuxKernel.vala:1025 +#: src/Common/LinuxKernel.vala:1045 src/Common/LinuxKernel.vala:1084 #, fuzzy msgid "Requested" msgstr "solicitado" -#: src/Common/LinuxKernel.vala:989 +#: src/Common/LinuxKernel.vala:1048 msgid "is already installed." msgstr "ya está instalado." -#: src/Common/LinuxKernel.vala:999 +#: src/Common/LinuxKernel.vala:1058 msgid "download failed." msgstr "" -#: src/Common/LinuxKernel.vala:1006 src/Gtk/MainWindow.vala:548 +#: src/Common/LinuxKernel.vala:1065 src/Gtk/MainWindow.vala:552 #, fuzzy msgid "Install: no installable kernels specified" msgstr "Coomand no especificado" -#: src/Common/LinuxKernel.vala:1021 +#: src/Common/LinuxKernel.vala:1080 msgid "Uninstalling selected kernels" msgstr "Desinstalación de kernels seleccionados" -#: src/Common/LinuxKernel.vala:1028 +#: src/Common/LinuxKernel.vala:1087 #, fuzzy msgid "Not uninstalling the currently running kernel" msgstr "No desinstalará el kernel que se está ejecutando actualmente" -#: src/Common/LinuxKernel.vala:1033 src/Gtk/MainWindow.vala:543 +#: src/Common/LinuxKernel.vala:1092 src/Gtk/MainWindow.vala:547 msgid "is locked" msgstr "" -#: src/Common/LinuxKernel.vala:1041 +#: src/Common/LinuxKernel.vala:1100 msgid "found" msgstr "fundar" -#: src/Common/LinuxKernel.vala:1045 +#: src/Common/LinuxKernel.vala:1104 msgid "Uninstall: no uninstallable packages found" msgstr "" -#: src/Common/LinuxKernel.vala:1081 +#: src/Common/LinuxKernel.vala:1140 #, fuzzy msgid "is the highest installed version." msgstr "Desinstale todas las versiones instaladas excepto la más alta" -#: src/Common/LinuxKernel.vala:1094 +#: src/Common/LinuxKernel.vala:1153 msgid "Could not find running kernel in list" msgstr "No se pudo encontrar el kernel en ejecución en la lista" -#: src/Common/LinuxKernel.vala:1099 +#: src/Common/LinuxKernel.vala:1158 msgid "Could not find any kernels to uninstall" msgstr "No se pudo encontrar ningún kernel para desinstalar" -#: src/Common/LinuxKernel.vala:1104 +#: src/Common/LinuxKernel.vala:1163 msgid "The following kernels will be uninstalled" msgstr "Se desinstalarán los siguientes kernels" -#: src/Common/LinuxKernel.vala:1106 +#: src/Common/LinuxKernel.vala:1165 msgid "Continue ?" msgstr "¿Continuar?" -#: src/Common/LinuxKernel.vala:1122 +#: src/Common/LinuxKernel.vala:1181 #, fuzzy msgid "No updates" msgstr "No se encontró ninguna actualización" -#: src/Common/LinuxKernel.vala:1128 +#: src/Common/LinuxKernel.vala:1187 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Instalar la versión del kernel %s? (s/n): " @@ -280,7 +280,7 @@ msgstr "Desinstalar el kernel especificado" msgid "Uninstall specified kernels" msgstr "Desinstalar el kernel especificado" -#: src/Console/AppConsole.vala:51 src/Gtk/MainWindow.vala:333 +#: src/Console/AppConsole.vala:51 src/Gtk/MainWindow.vala:337 msgid "Uninstall all but the highest installed version" msgstr "Desinstale todas las versiones instaladas excepto la más alta" @@ -371,7 +371,7 @@ msgstr "Kernel %s Disponible" msgid "Show" msgstr "Mostrar" -#: src/Console/AppConsole.vala:249 src/Gtk/MainWindow.vala:312 +#: src/Console/AppConsole.vala:249 src/Gtk/MainWindow.vala:316 msgid "Install" msgstr "Instalar" @@ -439,70 +439,70 @@ msgstr "Estado" msgid "Notes" msgstr "Notas" -#: src/Gtk/MainWindow.vala:317 +#: src/Gtk/MainWindow.vala:321 msgid "Uninstall" msgstr "Desinstalar" -#: src/Gtk/MainWindow.vala:323 +#: src/Gtk/MainWindow.vala:327 msgid "Changelog, build status, etc" msgstr "" -#: src/Gtk/MainWindow.vala:332 +#: src/Gtk/MainWindow.vala:336 msgid "Uninstall Old" msgstr "Desinstalar Antiguo" -#: src/Gtk/MainWindow.vala:338 +#: src/Gtk/MainWindow.vala:342 msgid "Reload" msgstr "Recargar" -#: src/Gtk/MainWindow.vala:339 +#: src/Gtk/MainWindow.vala:343 msgid "Delete and reload all cached kernel info" msgstr "" -#: src/Gtk/MainWindow.vala:344 src/Gtk/SettingsDialog.vala:41 +#: src/Gtk/MainWindow.vala:348 src/Gtk/SettingsDialog.vala:41 msgid "Settings" msgstr "Configuración" -#: src/Gtk/MainWindow.vala:349 +#: src/Gtk/MainWindow.vala:353 msgid "About" msgstr "Acerca de" -#: src/Gtk/MainWindow.vala:354 +#: src/Gtk/MainWindow.vala:358 msgid "Exit" msgstr "Salida" -#: src/Gtk/MainWindow.vala:435 +#: src/Gtk/MainWindow.vala:439 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "" "Herramienta de renovación de núcleo para distribuciones basadas en Ubuntu" -#: src/Gtk/MainWindow.vala:436 +#: src/Gtk/MainWindow.vala:440 msgid "Forked" msgstr "Bifurcada" -#: src/Gtk/MainWindow.vala:436 +#: src/Gtk/MainWindow.vala:440 msgid "Original" msgstr "Original" -#: src/Gtk/MainWindow.vala:465 +#: src/Gtk/MainWindow.vala:469 msgid "Updating kernels" msgstr "Actualización de kernels" -#: src/Gtk/MainWindow.vala:525 +#: src/Gtk/MainWindow.vala:529 msgid "available" msgstr "disponibles" -#: src/Gtk/MainWindow.vala:542 +#: src/Gtk/MainWindow.vala:546 #, fuzzy msgid "is already installed" msgstr "ya está instalado." -#: src/Gtk/MainWindow.vala:544 +#: src/Gtk/MainWindow.vala:548 msgid "adding" msgstr "" -#: src/Gtk/MainWindow.vala:570 src/Gtk/MainWindow.vala:604 -#: src/Gtk/MainWindow.vala:632 +#: src/Gtk/MainWindow.vala:574 src/Gtk/MainWindow.vala:608 +#: src/Gtk/MainWindow.vala:636 msgid "DONE" msgstr "" @@ -591,6 +591,6 @@ msgstr "" msgid "Cancel" msgstr "Cancelar" -#: src/lib/l.misc.vala:107 +#: src/lib/l.misc.vala:109 msgid "Can not reach site" msgstr "No se puede llegar al sitio" diff --git a/po/fr.po b/po/fr.po index ced9d7ef..d067ef16 100644 --- a/po/fr.po +++ b/po/fr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-08 03:52-0400\n" +"POT-Creation-Date: 2023-06-09 23:18-0400\n" "PO-Revision-Date: 2018-08-05 15:50+0200\n" "Last-Translator: Yolateng0 \n" "Language-Team: French\n" @@ -13,185 +13,185 @@ msgstr "" "X-Launchpad-Export-Date: 2017-04-13 11:48+0000\n" "X-Generator: Poedit 2.0.6\n" -#: src/Common/LinuxKernel.vala:102 +#: src/Common/LinuxKernel.vala:104 msgid "Distribution" msgstr "Distribution" -#: src/Common/LinuxKernel.vala:117 +#: src/Common/LinuxKernel.vala:119 msgid "Architecture" msgstr "Architecture" -#: src/Common/LinuxKernel.vala:132 +#: src/Common/LinuxKernel.vala:134 msgid "Running kernel" msgstr "Noyau en cours d'exécution" -#: src/Common/LinuxKernel.vala:219 +#: src/Common/LinuxKernel.vala:221 msgid "loading cached" msgstr "chargement mis en cache" -#: src/Common/LinuxKernel.vala:231 +#: src/Common/LinuxKernel.vala:233 msgid "queuing download" msgstr "enqueuing télécharger" -#: src/Common/LinuxKernel.vala:251 +#: src/Common/LinuxKernel.vala:253 msgid "Fetching individual kernel indexes" msgstr "Récupération d'index de noyau individuels" -#: src/Common/LinuxKernel.vala:265 +#: src/Common/LinuxKernel.vala:266 msgid "loading downloaded" msgstr "chargement téléchargé" -#: src/Common/LinuxKernel.vala:305 +#: src/Common/LinuxKernel.vala:307 msgid "Updating from" msgstr "Mise à jour à partir de" -#: src/Common/LinuxKernel.vala:313 +#: src/Common/LinuxKernel.vala:315 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:316 +#: src/Common/LinuxKernel.vala:318 msgid "FAILED" msgstr "RATÉ" -#: src/Common/LinuxKernel.vala:381 +#: src/Common/LinuxKernel.vala:386 msgid "Found installed" msgstr "Trouvé installé" -#: src/Common/LinuxKernel.vala:382 +#: src/Common/LinuxKernel.vala:387 msgid "locked" msgstr "" -#: src/Common/LinuxKernel.vala:464 src/Common/LinuxKernel.vala:994 -#: src/Common/LinuxKernel.vala:1085 +#: src/Common/LinuxKernel.vala:470 src/Common/LinuxKernel.vala:1053 +#: src/Common/LinuxKernel.vala:1144 msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:660 src/Gtk/MainWindow.vala:521 +#: src/Common/LinuxKernel.vala:719 src/Gtk/MainWindow.vala:525 msgid "Running" msgstr "Actuel" -#: src/Common/LinuxKernel.vala:661 +#: src/Common/LinuxKernel.vala:720 msgid "Installed" msgstr "Installé" -#: src/Common/LinuxKernel.vala:662 +#: src/Common/LinuxKernel.vala:721 msgid "Invalid" msgstr "No válido" -#: src/Common/LinuxKernel.vala:755 +#: src/Common/LinuxKernel.vala:814 msgid "Packages Available" msgstr "Paquets Disponibles" -#: src/Common/LinuxKernel.vala:761 +#: src/Common/LinuxKernel.vala:820 msgid "Packages Installed" msgstr "Paquets Installés" -#: src/Common/LinuxKernel.vala:786 src/lib/TeeJee.FileSystem.vala:94 +#: src/Common/LinuxKernel.vala:845 src/lib/TeeJee.FileSystem.vala:94 msgid "File not found" msgstr "Fichier non trouvé" -#: src/Common/LinuxKernel.vala:813 +#: src/Common/LinuxKernel.vala:872 #, fuzzy msgid "needs update" msgstr "Dernière mise à jour" -#: src/Common/LinuxKernel.vala:880 +#: src/Common/LinuxKernel.vala:939 msgid "Available Kernels" msgstr "Noyaux Disponibles" -#: src/Common/LinuxKernel.vala:914 src/Gtk/MainWindow.vala:135 +#: src/Common/LinuxKernel.vala:973 src/Gtk/MainWindow.vala:135 msgid "Kernel" msgstr "Noyau" -#: src/Common/LinuxKernel.vala:914 +#: src/Common/LinuxKernel.vala:973 #, fuzzy msgid "not found" msgstr "Fichier non trouvé" -#: src/Common/LinuxKernel.vala:921 +#: src/Common/LinuxKernel.vala:980 #, fuzzy msgid "Download: no downloadable kernels specified" msgstr "Pas de commande fournie" -#: src/Common/LinuxKernel.vala:937 +#: src/Common/LinuxKernel.vala:996 msgid "enabled" msgstr "activé" -#: src/Common/LinuxKernel.vala:962 +#: src/Common/LinuxKernel.vala:1021 msgid "Downloading" msgstr "Téléchargement" -#: src/Common/LinuxKernel.vala:980 +#: src/Common/LinuxKernel.vala:1039 #, fuzzy msgid "Installing selected kernels" msgstr "Désinstallation des noyaux sélectionnés" -#: src/Common/LinuxKernel.vala:986 src/Common/LinuxKernel.vala:1025 +#: src/Common/LinuxKernel.vala:1045 src/Common/LinuxKernel.vala:1084 #, fuzzy msgid "Requested" msgstr "Demandé" -#: src/Common/LinuxKernel.vala:989 +#: src/Common/LinuxKernel.vala:1048 msgid "is already installed." msgstr "est déjà installé." -#: src/Common/LinuxKernel.vala:999 +#: src/Common/LinuxKernel.vala:1058 msgid "download failed." msgstr "" -#: src/Common/LinuxKernel.vala:1006 src/Gtk/MainWindow.vala:548 +#: src/Common/LinuxKernel.vala:1065 src/Gtk/MainWindow.vala:552 #, fuzzy msgid "Install: no installable kernels specified" msgstr "Pas de commande fournie" -#: src/Common/LinuxKernel.vala:1021 +#: src/Common/LinuxKernel.vala:1080 msgid "Uninstalling selected kernels" msgstr "Désinstallation des noyaux sélectionnés" -#: src/Common/LinuxKernel.vala:1028 +#: src/Common/LinuxKernel.vala:1087 #, fuzzy msgid "Not uninstalling the currently running kernel" msgstr "Ne pas désinstaller le noyau en cours d'exécution" -#: src/Common/LinuxKernel.vala:1033 src/Gtk/MainWindow.vala:543 +#: src/Common/LinuxKernel.vala:1092 src/Gtk/MainWindow.vala:547 msgid "is locked" msgstr "" -#: src/Common/LinuxKernel.vala:1041 +#: src/Common/LinuxKernel.vala:1100 msgid "found" msgstr "fonder" -#: src/Common/LinuxKernel.vala:1045 +#: src/Common/LinuxKernel.vala:1104 msgid "Uninstall: no uninstallable packages found" msgstr "" -#: src/Common/LinuxKernel.vala:1081 +#: src/Common/LinuxKernel.vala:1140 #, fuzzy msgid "is the highest installed version." msgstr "Désinstallez toutes le version installées, sauf la plus élevée" -#: src/Common/LinuxKernel.vala:1094 +#: src/Common/LinuxKernel.vala:1153 msgid "Could not find running kernel in list" msgstr "Impossible de trouver le noyau en cours d'exécution dans la liste" -#: src/Common/LinuxKernel.vala:1099 +#: src/Common/LinuxKernel.vala:1158 msgid "Could not find any kernels to uninstall" msgstr "Impossible de trouver des noyaux à désinstaller" -#: src/Common/LinuxKernel.vala:1104 +#: src/Common/LinuxKernel.vala:1163 msgid "The following kernels will be uninstalled" msgstr "Les noyaux suivants seront désinstallés" -#: src/Common/LinuxKernel.vala:1106 +#: src/Common/LinuxKernel.vala:1165 msgid "Continue ?" msgstr "Reprendre ?" -#: src/Common/LinuxKernel.vala:1122 +#: src/Common/LinuxKernel.vala:1181 #, fuzzy msgid "No updates" msgstr "Aucune mise à jour disponible" -#: src/Common/LinuxKernel.vala:1128 +#: src/Common/LinuxKernel.vala:1187 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Installer le noyau en version %s ? (y/n): " @@ -280,7 +280,7 @@ msgstr "Désinstaller le noyau spécifié" msgid "Uninstall specified kernels" msgstr "Désinstaller le noyau spécifié" -#: src/Console/AppConsole.vala:51 src/Gtk/MainWindow.vala:333 +#: src/Console/AppConsole.vala:51 src/Gtk/MainWindow.vala:337 msgid "Uninstall all but the highest installed version" msgstr "Désinstallez toutes le version installées, sauf la plus élevée" @@ -371,7 +371,7 @@ msgstr "Paquet %s disponibles" msgid "Show" msgstr "Montrer" -#: src/Console/AppConsole.vala:249 src/Gtk/MainWindow.vala:312 +#: src/Console/AppConsole.vala:249 src/Gtk/MainWindow.vala:316 msgid "Install" msgstr "Installer" @@ -439,71 +439,71 @@ msgstr "Statut" msgid "Notes" msgstr "Notes" -#: src/Gtk/MainWindow.vala:317 +#: src/Gtk/MainWindow.vala:321 msgid "Uninstall" msgstr "Désinstaller" -#: src/Gtk/MainWindow.vala:323 +#: src/Gtk/MainWindow.vala:327 msgid "Changelog, build status, etc" msgstr "" -#: src/Gtk/MainWindow.vala:332 +#: src/Gtk/MainWindow.vala:336 msgid "Uninstall Old" msgstr "Désinstaller Ancien" -#: src/Gtk/MainWindow.vala:338 +#: src/Gtk/MainWindow.vala:342 msgid "Reload" msgstr "Recharger" -#: src/Gtk/MainWindow.vala:339 +#: src/Gtk/MainWindow.vala:343 msgid "Delete and reload all cached kernel info" msgstr "" -#: src/Gtk/MainWindow.vala:344 src/Gtk/SettingsDialog.vala:41 +#: src/Gtk/MainWindow.vala:348 src/Gtk/SettingsDialog.vala:41 msgid "Settings" msgstr "Paramètres" -#: src/Gtk/MainWindow.vala:349 +#: src/Gtk/MainWindow.vala:353 msgid "About" msgstr "À propos" -#: src/Gtk/MainWindow.vala:354 +#: src/Gtk/MainWindow.vala:358 msgid "Exit" msgstr "Sortie" -#: src/Gtk/MainWindow.vala:435 +#: src/Gtk/MainWindow.vala:439 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "" "Utilitaire de mise à niveau des noyaux pour les distributions basées sur " "Ubuntu" -#: src/Gtk/MainWindow.vala:436 +#: src/Gtk/MainWindow.vala:440 msgid "Forked" msgstr "Forkée" -#: src/Gtk/MainWindow.vala:436 +#: src/Gtk/MainWindow.vala:440 msgid "Original" msgstr "Originale" -#: src/Gtk/MainWindow.vala:465 +#: src/Gtk/MainWindow.vala:469 msgid "Updating kernels" msgstr "Mise à jour des noyaux" -#: src/Gtk/MainWindow.vala:525 +#: src/Gtk/MainWindow.vala:529 msgid "available" msgstr "disponible" -#: src/Gtk/MainWindow.vala:542 +#: src/Gtk/MainWindow.vala:546 #, fuzzy msgid "is already installed" msgstr "est déjà installé." -#: src/Gtk/MainWindow.vala:544 +#: src/Gtk/MainWindow.vala:548 msgid "adding" msgstr "" -#: src/Gtk/MainWindow.vala:570 src/Gtk/MainWindow.vala:604 -#: src/Gtk/MainWindow.vala:632 +#: src/Gtk/MainWindow.vala:574 src/Gtk/MainWindow.vala:608 +#: src/Gtk/MainWindow.vala:636 msgid "DONE" msgstr "" @@ -592,6 +592,6 @@ msgstr "" msgid "Cancel" msgstr "Annuler" -#: src/lib/l.misc.vala:107 +#: src/lib/l.misc.vala:109 msgid "Can not reach site" msgstr "No se puede llegar al sitio" diff --git a/po/hr.po b/po/hr.po index e4216375..4e130a18 100644 --- a/po/hr.po +++ b/po/hr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-08 03:52-0400\n" +"POT-Creation-Date: 2023-06-09 23:18-0400\n" "PO-Revision-Date: 2022-09-22 12:13+0200\n" "Last-Translator: gogo \n" "Language-Team: Croatian\n" @@ -13,185 +13,185 @@ msgstr "" "X-Launchpad-Export-Date: 2017-12-23 23:36+0000\n" "X-Generator: Poedit 3.0.1\n" -#: src/Common/LinuxKernel.vala:102 +#: src/Common/LinuxKernel.vala:104 msgid "Distribution" msgstr "Distribucija" -#: src/Common/LinuxKernel.vala:117 +#: src/Common/LinuxKernel.vala:119 msgid "Architecture" msgstr "Arhitektura" -#: src/Common/LinuxKernel.vala:132 +#: src/Common/LinuxKernel.vala:134 msgid "Running kernel" msgstr "Trčanje kernel" -#: src/Common/LinuxKernel.vala:219 +#: src/Common/LinuxKernel.vala:221 msgid "loading cached" msgstr "učitavanje predmemoriranog" -#: src/Common/LinuxKernel.vala:231 +#: src/Common/LinuxKernel.vala:233 msgid "queuing download" msgstr "preuzimanje u redu čekanja" -#: src/Common/LinuxKernel.vala:251 +#: src/Common/LinuxKernel.vala:253 msgid "Fetching individual kernel indexes" msgstr "Dohvaćanje pojedinačnih indeksa kernel" -#: src/Common/LinuxKernel.vala:265 +#: src/Common/LinuxKernel.vala:266 msgid "loading downloaded" msgstr "učitavanje preuzeto" -#: src/Common/LinuxKernel.vala:305 +#: src/Common/LinuxKernel.vala:307 msgid "Updating from" msgstr "Ažuriranje iz" -#: src/Common/LinuxKernel.vala:313 +#: src/Common/LinuxKernel.vala:315 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:316 +#: src/Common/LinuxKernel.vala:318 msgid "FAILED" msgstr "NIJE USPIO" -#: src/Common/LinuxKernel.vala:381 +#: src/Common/LinuxKernel.vala:386 msgid "Found installed" msgstr "Pronađeno instalirano" -#: src/Common/LinuxKernel.vala:382 +#: src/Common/LinuxKernel.vala:387 msgid "locked" msgstr "" -#: src/Common/LinuxKernel.vala:464 src/Common/LinuxKernel.vala:994 -#: src/Common/LinuxKernel.vala:1085 +#: src/Common/LinuxKernel.vala:470 src/Common/LinuxKernel.vala:1053 +#: src/Common/LinuxKernel.vala:1144 msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:660 src/Gtk/MainWindow.vala:521 +#: src/Common/LinuxKernel.vala:719 src/Gtk/MainWindow.vala:525 msgid "Running" msgstr "Pokrenuto" -#: src/Common/LinuxKernel.vala:661 +#: src/Common/LinuxKernel.vala:720 msgid "Installed" msgstr "Instalirano" -#: src/Common/LinuxKernel.vala:662 +#: src/Common/LinuxKernel.vala:721 msgid "Invalid" msgstr "Érvénytelen" -#: src/Common/LinuxKernel.vala:755 +#: src/Common/LinuxKernel.vala:814 msgid "Packages Available" msgstr "Dostupni Paketi" -#: src/Common/LinuxKernel.vala:761 +#: src/Common/LinuxKernel.vala:820 msgid "Packages Installed" msgstr "Instalirani paketi" -#: src/Common/LinuxKernel.vala:786 src/lib/TeeJee.FileSystem.vala:94 +#: src/Common/LinuxKernel.vala:845 src/lib/TeeJee.FileSystem.vala:94 msgid "File not found" msgstr "Datoteka nije pronađena" -#: src/Common/LinuxKernel.vala:813 +#: src/Common/LinuxKernel.vala:872 #, fuzzy msgid "needs update" msgstr "Najnovija nadopuna" -#: src/Common/LinuxKernel.vala:880 +#: src/Common/LinuxKernel.vala:939 msgid "Available Kernels" msgstr "Dostupni kerneli" -#: src/Common/LinuxKernel.vala:914 src/Gtk/MainWindow.vala:135 +#: src/Common/LinuxKernel.vala:973 src/Gtk/MainWindow.vala:135 msgid "Kernel" msgstr "Kernel" -#: src/Common/LinuxKernel.vala:914 +#: src/Common/LinuxKernel.vala:973 #, fuzzy msgid "not found" msgstr "Datoteka nije pronađena" -#: src/Common/LinuxKernel.vala:921 +#: src/Common/LinuxKernel.vala:980 #, fuzzy msgid "Download: no downloadable kernels specified" msgstr "Naredba nije navedena" -#: src/Common/LinuxKernel.vala:937 +#: src/Common/LinuxKernel.vala:996 msgid "enabled" msgstr "omogućen" -#: src/Common/LinuxKernel.vala:962 +#: src/Common/LinuxKernel.vala:1021 msgid "Downloading" msgstr "Učitavanje" -#: src/Common/LinuxKernel.vala:980 +#: src/Common/LinuxKernel.vala:1039 #, fuzzy msgid "Installing selected kernels" msgstr "Deinstaliraj određene kernele" -#: src/Common/LinuxKernel.vala:986 src/Common/LinuxKernel.vala:1025 +#: src/Common/LinuxKernel.vala:1045 src/Common/LinuxKernel.vala:1084 #, fuzzy msgid "Requested" msgstr "Zatražio" -#: src/Common/LinuxKernel.vala:989 +#: src/Common/LinuxKernel.vala:1048 msgid "is already installed." msgstr "je već instaliran." -#: src/Common/LinuxKernel.vala:999 +#: src/Common/LinuxKernel.vala:1058 msgid "download failed." msgstr "" -#: src/Common/LinuxKernel.vala:1006 src/Gtk/MainWindow.vala:548 +#: src/Common/LinuxKernel.vala:1065 src/Gtk/MainWindow.vala:552 #, fuzzy msgid "Install: no installable kernels specified" msgstr "Naredba nije navedena" -#: src/Common/LinuxKernel.vala:1021 +#: src/Common/LinuxKernel.vala:1080 msgid "Uninstalling selected kernels" msgstr "Deinstaliraj određene kernele" -#: src/Common/LinuxKernel.vala:1028 +#: src/Common/LinuxKernel.vala:1087 #, fuzzy msgid "Not uninstalling the currently running kernel" msgstr "ne deinstaliranje trenutno pokrenute kernel" -#: src/Common/LinuxKernel.vala:1033 src/Gtk/MainWindow.vala:543 +#: src/Common/LinuxKernel.vala:1092 src/Gtk/MainWindow.vala:547 msgid "is locked" msgstr "" -#: src/Common/LinuxKernel.vala:1041 +#: src/Common/LinuxKernel.vala:1100 msgid "found" msgstr "pronađen" -#: src/Common/LinuxKernel.vala:1045 +#: src/Common/LinuxKernel.vala:1104 msgid "Uninstall: no uninstallable packages found" msgstr "" -#: src/Common/LinuxKernel.vala:1081 +#: src/Common/LinuxKernel.vala:1140 #, fuzzy msgid "is the highest installed version." msgstr "Deinstaliraj sve osim najnovije instalirane verzije" -#: src/Common/LinuxKernel.vala:1094 +#: src/Common/LinuxKernel.vala:1153 msgid "Could not find running kernel in list" msgstr "Nije moguće pronaći pokrenutu kernel na popisu" -#: src/Common/LinuxKernel.vala:1099 +#: src/Common/LinuxKernel.vala:1158 msgid "Could not find any kernels to uninstall" msgstr "Nema pronađenih kernela za deinstaliranje" -#: src/Common/LinuxKernel.vala:1104 +#: src/Common/LinuxKernel.vala:1163 msgid "The following kernels will be uninstalled" msgstr "Deinstalirat će se sljedeće kerneli" -#: src/Common/LinuxKernel.vala:1106 +#: src/Common/LinuxKernel.vala:1165 msgid "Continue ?" msgstr "Nastavi?" -#: src/Common/LinuxKernel.vala:1122 +#: src/Common/LinuxKernel.vala:1181 #, fuzzy msgid "No updates" msgstr "Nema pronađenih nadopuna" -#: src/Common/LinuxKernel.vala:1128 +#: src/Common/LinuxKernel.vala:1187 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Instaliraj kernel inačice %s ? (d/n): " @@ -279,7 +279,7 @@ msgstr "Deinstaliraj određene kernele" msgid "Uninstall specified kernels" msgstr "Deinstaliraj određene kernele" -#: src/Console/AppConsole.vala:51 src/Gtk/MainWindow.vala:333 +#: src/Console/AppConsole.vala:51 src/Gtk/MainWindow.vala:337 msgid "Uninstall all but the highest installed version" msgstr "Deinstaliraj sve osim najnovije instalirane verzije" @@ -370,7 +370,7 @@ msgstr "Kernel %s je dostupan" msgid "Show" msgstr "Prikaži" -#: src/Console/AppConsole.vala:249 src/Gtk/MainWindow.vala:312 +#: src/Console/AppConsole.vala:249 src/Gtk/MainWindow.vala:316 msgid "Install" msgstr "Instaliraj" @@ -438,69 +438,69 @@ msgstr "Stanje" msgid "Notes" msgstr "Bilješke" -#: src/Gtk/MainWindow.vala:317 +#: src/Gtk/MainWindow.vala:321 msgid "Uninstall" msgstr "Deinstaliraj" -#: src/Gtk/MainWindow.vala:323 +#: src/Gtk/MainWindow.vala:327 msgid "Changelog, build status, etc" msgstr "" -#: src/Gtk/MainWindow.vala:332 +#: src/Gtk/MainWindow.vala:336 msgid "Uninstall Old" msgstr "Deinstaliraj staro" -#: src/Gtk/MainWindow.vala:338 +#: src/Gtk/MainWindow.vala:342 msgid "Reload" msgstr "Ponovno učitati" -#: src/Gtk/MainWindow.vala:339 +#: src/Gtk/MainWindow.vala:343 msgid "Delete and reload all cached kernel info" msgstr "" -#: src/Gtk/MainWindow.vala:344 src/Gtk/SettingsDialog.vala:41 +#: src/Gtk/MainWindow.vala:348 src/Gtk/SettingsDialog.vala:41 msgid "Settings" msgstr "Postavke" -#: src/Gtk/MainWindow.vala:349 +#: src/Gtk/MainWindow.vala:353 msgid "About" msgstr "O programu" -#: src/Gtk/MainWindow.vala:354 +#: src/Gtk/MainWindow.vala:358 msgid "Exit" msgstr "Izlaz" -#: src/Gtk/MainWindow.vala:435 +#: src/Gtk/MainWindow.vala:439 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Alat za nadogradnju kernela Ubuntu temeljenih distribucija" -#: src/Gtk/MainWindow.vala:436 +#: src/Gtk/MainWindow.vala:440 msgid "Forked" msgstr "Forkano" -#: src/Gtk/MainWindow.vala:436 +#: src/Gtk/MainWindow.vala:440 msgid "Original" msgstr "Izvornik" -#: src/Gtk/MainWindow.vala:465 +#: src/Gtk/MainWindow.vala:469 msgid "Updating kernels" msgstr "Ažuriranje jezgri" -#: src/Gtk/MainWindow.vala:525 +#: src/Gtk/MainWindow.vala:529 msgid "available" msgstr "dostupno" -#: src/Gtk/MainWindow.vala:542 +#: src/Gtk/MainWindow.vala:546 #, fuzzy msgid "is already installed" msgstr "je već instaliran." -#: src/Gtk/MainWindow.vala:544 +#: src/Gtk/MainWindow.vala:548 msgid "adding" msgstr "" -#: src/Gtk/MainWindow.vala:570 src/Gtk/MainWindow.vala:604 -#: src/Gtk/MainWindow.vala:632 +#: src/Gtk/MainWindow.vala:574 src/Gtk/MainWindow.vala:608 +#: src/Gtk/MainWindow.vala:636 msgid "DONE" msgstr "" @@ -589,6 +589,6 @@ msgstr "" msgid "Cancel" msgstr "Odustani" -#: src/lib/l.misc.vala:107 +#: src/lib/l.misc.vala:109 msgid "Can not reach site" msgstr "Nije moguće doći do web-mjesta" diff --git a/po/it.po b/po/it.po index c69250b4..ba210f43 100644 --- a/po/it.po +++ b/po/it.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-08 03:52-0400\n" +"POT-Creation-Date: 2023-06-09 23:18-0400\n" "PO-Revision-Date: 2020-08-22 15:35+0100\n" "Last-Translator: Demetrio Mendozzi\n" "Language-Team: Italian\n" @@ -11,185 +11,185 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: src/Common/LinuxKernel.vala:102 +#: src/Common/LinuxKernel.vala:104 msgid "Distribution" msgstr "Distribuzione" -#: src/Common/LinuxKernel.vala:117 +#: src/Common/LinuxKernel.vala:119 msgid "Architecture" msgstr "Architettura" -#: src/Common/LinuxKernel.vala:132 +#: src/Common/LinuxKernel.vala:134 msgid "Running kernel" msgstr "Kernel in esecuzione" -#: src/Common/LinuxKernel.vala:219 +#: src/Common/LinuxKernel.vala:221 msgid "loading cached" msgstr "Caricamento file della cache" -#: src/Common/LinuxKernel.vala:231 +#: src/Common/LinuxKernel.vala:233 msgid "queuing download" msgstr "download in coda" -#: src/Common/LinuxKernel.vala:251 +#: src/Common/LinuxKernel.vala:253 msgid "Fetching individual kernel indexes" msgstr "Recupero dei singoli indici del kernel" -#: src/Common/LinuxKernel.vala:265 +#: src/Common/LinuxKernel.vala:266 msgid "loading downloaded" msgstr "caricamento dei file scaricati" -#: src/Common/LinuxKernel.vala:305 +#: src/Common/LinuxKernel.vala:307 msgid "Updating from" msgstr "Aggiornamento da" -#: src/Common/LinuxKernel.vala:313 +#: src/Common/LinuxKernel.vala:315 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:316 +#: src/Common/LinuxKernel.vala:318 msgid "FAILED" msgstr "FALLITO" -#: src/Common/LinuxKernel.vala:381 +#: src/Common/LinuxKernel.vala:386 msgid "Found installed" msgstr "Trovato installato" -#: src/Common/LinuxKernel.vala:382 +#: src/Common/LinuxKernel.vala:387 msgid "locked" msgstr "" -#: src/Common/LinuxKernel.vala:464 src/Common/LinuxKernel.vala:994 -#: src/Common/LinuxKernel.vala:1085 +#: src/Common/LinuxKernel.vala:470 src/Common/LinuxKernel.vala:1053 +#: src/Common/LinuxKernel.vala:1144 msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:660 src/Gtk/MainWindow.vala:521 +#: src/Common/LinuxKernel.vala:719 src/Gtk/MainWindow.vala:525 msgid "Running" msgstr "In esecuzione" -#: src/Common/LinuxKernel.vala:661 +#: src/Common/LinuxKernel.vala:720 msgid "Installed" msgstr "Installato" -#: src/Common/LinuxKernel.vala:662 +#: src/Common/LinuxKernel.vala:721 msgid "Invalid" msgstr "Non valido" -#: src/Common/LinuxKernel.vala:755 +#: src/Common/LinuxKernel.vala:814 msgid "Packages Available" msgstr "Pacchetti disponibili" -#: src/Common/LinuxKernel.vala:761 +#: src/Common/LinuxKernel.vala:820 msgid "Packages Installed" msgstr "Pacchetti installati" -#: src/Common/LinuxKernel.vala:786 src/lib/TeeJee.FileSystem.vala:94 +#: src/Common/LinuxKernel.vala:845 src/lib/TeeJee.FileSystem.vala:94 msgid "File not found" msgstr "File non trovato" -#: src/Common/LinuxKernel.vala:813 +#: src/Common/LinuxKernel.vala:872 #, fuzzy msgid "needs update" msgstr "Ultimo aggiornamento" -#: src/Common/LinuxKernel.vala:880 +#: src/Common/LinuxKernel.vala:939 msgid "Available Kernels" msgstr "Kernel disponibili" -#: src/Common/LinuxKernel.vala:914 src/Gtk/MainWindow.vala:135 +#: src/Common/LinuxKernel.vala:973 src/Gtk/MainWindow.vala:135 msgid "Kernel" msgstr "Kernel" -#: src/Common/LinuxKernel.vala:914 +#: src/Common/LinuxKernel.vala:973 #, fuzzy msgid "not found" msgstr "File non trovato" -#: src/Common/LinuxKernel.vala:921 +#: src/Common/LinuxKernel.vala:980 #, fuzzy msgid "Download: no downloadable kernels specified" msgstr "Comando non specificato" -#: src/Common/LinuxKernel.vala:937 +#: src/Common/LinuxKernel.vala:996 msgid "enabled" msgstr "abilitato" -#: src/Common/LinuxKernel.vala:962 +#: src/Common/LinuxKernel.vala:1021 msgid "Downloading" msgstr "Scaricamento" -#: src/Common/LinuxKernel.vala:980 +#: src/Common/LinuxKernel.vala:1039 #, fuzzy msgid "Installing selected kernels" msgstr "Disinstalla i kernel specificati" -#: src/Common/LinuxKernel.vala:986 src/Common/LinuxKernel.vala:1025 +#: src/Common/LinuxKernel.vala:1045 src/Common/LinuxKernel.vala:1084 #, fuzzy msgid "Requested" msgstr "richiesto" -#: src/Common/LinuxKernel.vala:989 +#: src/Common/LinuxKernel.vala:1048 msgid "is already installed." msgstr "è già installato." -#: src/Common/LinuxKernel.vala:999 +#: src/Common/LinuxKernel.vala:1058 msgid "download failed." msgstr "" -#: src/Common/LinuxKernel.vala:1006 src/Gtk/MainWindow.vala:548 +#: src/Common/LinuxKernel.vala:1065 src/Gtk/MainWindow.vala:552 #, fuzzy msgid "Install: no installable kernels specified" msgstr "Comando non specificato" -#: src/Common/LinuxKernel.vala:1021 +#: src/Common/LinuxKernel.vala:1080 msgid "Uninstalling selected kernels" msgstr "Disinstalla i kernel specificati" -#: src/Common/LinuxKernel.vala:1028 +#: src/Common/LinuxKernel.vala:1087 #, fuzzy msgid "Not uninstalling the currently running kernel" msgstr "non disinstallare il kernel attualmente in esecuzione" -#: src/Common/LinuxKernel.vala:1033 src/Gtk/MainWindow.vala:543 +#: src/Common/LinuxKernel.vala:1092 src/Gtk/MainWindow.vala:547 msgid "is locked" msgstr "" -#: src/Common/LinuxKernel.vala:1041 +#: src/Common/LinuxKernel.vala:1100 msgid "found" msgstr "trovato" -#: src/Common/LinuxKernel.vala:1045 +#: src/Common/LinuxKernel.vala:1104 msgid "Uninstall: no uninstallable packages found" msgstr "" -#: src/Common/LinuxKernel.vala:1081 +#: src/Common/LinuxKernel.vala:1140 #, fuzzy msgid "is the highest installed version." msgstr "Disinstallare tutti tranne la versione più recente installata" -#: src/Common/LinuxKernel.vala:1094 +#: src/Common/LinuxKernel.vala:1153 msgid "Could not find running kernel in list" msgstr "Impossibile trovare il kernel in esecuzione nell'elenco" -#: src/Common/LinuxKernel.vala:1099 +#: src/Common/LinuxKernel.vala:1158 msgid "Could not find any kernels to uninstall" msgstr "Impossibile trovare alcun kernel da rimuovere" -#: src/Common/LinuxKernel.vala:1104 +#: src/Common/LinuxKernel.vala:1163 msgid "The following kernels will be uninstalled" msgstr "I seguenti kernel saranno rimossi" -#: src/Common/LinuxKernel.vala:1106 +#: src/Common/LinuxKernel.vala:1165 msgid "Continue ?" msgstr "Continuare ?" -#: src/Common/LinuxKernel.vala:1122 +#: src/Common/LinuxKernel.vala:1181 #, fuzzy msgid "No updates" msgstr "Nessun aggiornamento trovato" -#: src/Common/LinuxKernel.vala:1128 +#: src/Common/LinuxKernel.vala:1187 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Installare la versione del kernel %s ? (y/n): " @@ -280,7 +280,7 @@ msgstr "Disinstalla i kernel specificati" msgid "Uninstall specified kernels" msgstr "Disinstalla i kernel specificati" -#: src/Console/AppConsole.vala:51 src/Gtk/MainWindow.vala:333 +#: src/Console/AppConsole.vala:51 src/Gtk/MainWindow.vala:337 msgid "Uninstall all but the highest installed version" msgstr "Disinstallare tutti tranne la versione più recente installata" @@ -371,7 +371,7 @@ msgstr "Kernel %s Disponibile" msgid "Show" msgstr "Mostra" -#: src/Console/AppConsole.vala:249 src/Gtk/MainWindow.vala:312 +#: src/Console/AppConsole.vala:249 src/Gtk/MainWindow.vala:316 msgid "Install" msgstr "Installa" @@ -439,69 +439,69 @@ msgstr "Stato" msgid "Notes" msgstr "Note" -#: src/Gtk/MainWindow.vala:317 +#: src/Gtk/MainWindow.vala:321 msgid "Uninstall" msgstr "Disinstalla" -#: src/Gtk/MainWindow.vala:323 +#: src/Gtk/MainWindow.vala:327 msgid "Changelog, build status, etc" msgstr "" -#: src/Gtk/MainWindow.vala:332 +#: src/Gtk/MainWindow.vala:336 msgid "Uninstall Old" msgstr "Disinstalla i vecchi" -#: src/Gtk/MainWindow.vala:338 +#: src/Gtk/MainWindow.vala:342 msgid "Reload" msgstr "Ricarica" -#: src/Gtk/MainWindow.vala:339 +#: src/Gtk/MainWindow.vala:343 msgid "Delete and reload all cached kernel info" msgstr "" -#: src/Gtk/MainWindow.vala:344 src/Gtk/SettingsDialog.vala:41 +#: src/Gtk/MainWindow.vala:348 src/Gtk/SettingsDialog.vala:41 msgid "Settings" msgstr "Impostazioni" -#: src/Gtk/MainWindow.vala:349 +#: src/Gtk/MainWindow.vala:353 msgid "About" msgstr "Informazioni" -#: src/Gtk/MainWindow.vala:354 +#: src/Gtk/MainWindow.vala:358 msgid "Exit" msgstr "Chiudi" -#: src/Gtk/MainWindow.vala:435 +#: src/Gtk/MainWindow.vala:439 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Utilità di aggiornamento del kernel per distribuzioni basate su Ubuntu" -#: src/Gtk/MainWindow.vala:436 +#: src/Gtk/MainWindow.vala:440 msgid "Forked" msgstr "Forked" -#: src/Gtk/MainWindow.vala:436 +#: src/Gtk/MainWindow.vala:440 msgid "Original" msgstr "Originale" -#: src/Gtk/MainWindow.vala:465 +#: src/Gtk/MainWindow.vala:469 msgid "Updating kernels" msgstr "Aggiornamento dei kernel" -#: src/Gtk/MainWindow.vala:525 +#: src/Gtk/MainWindow.vala:529 msgid "available" msgstr "disponibile" -#: src/Gtk/MainWindow.vala:542 +#: src/Gtk/MainWindow.vala:546 #, fuzzy msgid "is already installed" msgstr "è già installato." -#: src/Gtk/MainWindow.vala:544 +#: src/Gtk/MainWindow.vala:548 msgid "adding" msgstr "" -#: src/Gtk/MainWindow.vala:570 src/Gtk/MainWindow.vala:604 -#: src/Gtk/MainWindow.vala:632 +#: src/Gtk/MainWindow.vala:574 src/Gtk/MainWindow.vala:608 +#: src/Gtk/MainWindow.vala:636 msgid "DONE" msgstr "" @@ -590,6 +590,6 @@ msgstr "" msgid "Cancel" msgstr "Cancella" -#: src/lib/l.misc.vala:107 +#: src/lib/l.misc.vala:109 msgid "Can not reach site" msgstr "Impossibile raggiungere il sito" diff --git a/po/ko.po b/po/ko.po index 7325d120..5164746a 100644 --- a/po/ko.po +++ b/po/ko.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-08 03:52-0400\n" +"POT-Creation-Date: 2023-06-09 23:18-0400\n" "PO-Revision-Date: 2022-09-28 11:48+0900\n" "Last-Translator: Kevin Kim \n" "Language-Team: Korean\n" @@ -13,185 +13,185 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Poedit 3.0.1\n" -#: src/Common/LinuxKernel.vala:102 +#: src/Common/LinuxKernel.vala:104 msgid "Distribution" msgstr "배포판" -#: src/Common/LinuxKernel.vala:117 +#: src/Common/LinuxKernel.vala:119 msgid "Architecture" msgstr "아키텍처" -#: src/Common/LinuxKernel.vala:132 +#: src/Common/LinuxKernel.vala:134 msgid "Running kernel" msgstr "현재 실행 중인 커널" -#: src/Common/LinuxKernel.vala:219 +#: src/Common/LinuxKernel.vala:221 msgid "loading cached" msgstr "캐시된 로드 중" -#: src/Common/LinuxKernel.vala:231 +#: src/Common/LinuxKernel.vala:233 msgid "queuing download" msgstr "대기열 다운로드" -#: src/Common/LinuxKernel.vala:251 +#: src/Common/LinuxKernel.vala:253 msgid "Fetching individual kernel indexes" msgstr "개별 커널 인덱스 페치" -#: src/Common/LinuxKernel.vala:265 +#: src/Common/LinuxKernel.vala:266 msgid "loading downloaded" msgstr "다운로드 로드 중" -#: src/Common/LinuxKernel.vala:305 +#: src/Common/LinuxKernel.vala:307 msgid "Updating from" msgstr "다음에서 업데이트" -#: src/Common/LinuxKernel.vala:313 +#: src/Common/LinuxKernel.vala:315 msgid "OK" msgstr "확인" -#: src/Common/LinuxKernel.vala:316 +#: src/Common/LinuxKernel.vala:318 msgid "FAILED" msgstr "실패" -#: src/Common/LinuxKernel.vala:381 +#: src/Common/LinuxKernel.vala:386 msgid "Found installed" msgstr "설치된 것을 찾았습니다" -#: src/Common/LinuxKernel.vala:382 +#: src/Common/LinuxKernel.vala:387 msgid "locked" msgstr "" -#: src/Common/LinuxKernel.vala:464 src/Common/LinuxKernel.vala:994 -#: src/Common/LinuxKernel.vala:1085 +#: src/Common/LinuxKernel.vala:470 src/Common/LinuxKernel.vala:1053 +#: src/Common/LinuxKernel.vala:1144 msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:660 src/Gtk/MainWindow.vala:521 +#: src/Common/LinuxKernel.vala:719 src/Gtk/MainWindow.vala:525 msgid "Running" msgstr "구동 중" -#: src/Common/LinuxKernel.vala:661 +#: src/Common/LinuxKernel.vala:720 msgid "Installed" msgstr "설치 됨" -#: src/Common/LinuxKernel.vala:662 +#: src/Common/LinuxKernel.vala:721 msgid "Invalid" msgstr "사용할 수 없음" -#: src/Common/LinuxKernel.vala:755 +#: src/Common/LinuxKernel.vala:814 msgid "Packages Available" msgstr "설치 가능한 패키지" -#: src/Common/LinuxKernel.vala:761 +#: src/Common/LinuxKernel.vala:820 msgid "Packages Installed" msgstr "설치된 패키지" -#: src/Common/LinuxKernel.vala:786 src/lib/TeeJee.FileSystem.vala:94 +#: src/Common/LinuxKernel.vala:845 src/lib/TeeJee.FileSystem.vala:94 msgid "File not found" msgstr "파일을 찾을 수 없습니다" -#: src/Common/LinuxKernel.vala:813 +#: src/Common/LinuxKernel.vala:872 #, fuzzy msgid "needs update" msgstr "최신 업데이트" -#: src/Common/LinuxKernel.vala:880 +#: src/Common/LinuxKernel.vala:939 msgid "Available Kernels" msgstr "설치 가능한 커널" -#: src/Common/LinuxKernel.vala:914 src/Gtk/MainWindow.vala:135 +#: src/Common/LinuxKernel.vala:973 src/Gtk/MainWindow.vala:135 msgid "Kernel" msgstr "커널" -#: src/Common/LinuxKernel.vala:914 +#: src/Common/LinuxKernel.vala:973 #, fuzzy msgid "not found" msgstr "파일을 찾을 수 없습니다" -#: src/Common/LinuxKernel.vala:921 +#: src/Common/LinuxKernel.vala:980 #, fuzzy msgid "Download: no downloadable kernels specified" msgstr "지정한 명령어가 없습니다" -#: src/Common/LinuxKernel.vala:937 +#: src/Common/LinuxKernel.vala:996 msgid "enabled" msgstr "사용" -#: src/Common/LinuxKernel.vala:962 +#: src/Common/LinuxKernel.vala:1021 msgid "Downloading" msgstr "다운로드" -#: src/Common/LinuxKernel.vala:980 +#: src/Common/LinuxKernel.vala:1039 #, fuzzy msgid "Installing selected kernels" msgstr "선택한 커널 제거" -#: src/Common/LinuxKernel.vala:986 src/Common/LinuxKernel.vala:1025 +#: src/Common/LinuxKernel.vala:1045 src/Common/LinuxKernel.vala:1084 #, fuzzy msgid "Requested" msgstr "요청" -#: src/Common/LinuxKernel.vala:989 +#: src/Common/LinuxKernel.vala:1048 msgid "is already installed." msgstr "가 이미 설치되어 있습니다" -#: src/Common/LinuxKernel.vala:999 +#: src/Common/LinuxKernel.vala:1058 msgid "download failed." msgstr "" -#: src/Common/LinuxKernel.vala:1006 src/Gtk/MainWindow.vala:548 +#: src/Common/LinuxKernel.vala:1065 src/Gtk/MainWindow.vala:552 #, fuzzy msgid "Install: no installable kernels specified" msgstr "지정한 명령어가 없습니다" -#: src/Common/LinuxKernel.vala:1021 +#: src/Common/LinuxKernel.vala:1080 msgid "Uninstalling selected kernels" msgstr "선택한 커널 제거" -#: src/Common/LinuxKernel.vala:1028 +#: src/Common/LinuxKernel.vala:1087 #, fuzzy msgid "Not uninstalling the currently running kernel" msgstr "현재 실행 중인 커널을 제거하지 않음" -#: src/Common/LinuxKernel.vala:1033 src/Gtk/MainWindow.vala:543 +#: src/Common/LinuxKernel.vala:1092 src/Gtk/MainWindow.vala:547 msgid "is locked" msgstr "" -#: src/Common/LinuxKernel.vala:1041 +#: src/Common/LinuxKernel.vala:1100 msgid "found" msgstr "설립하다" -#: src/Common/LinuxKernel.vala:1045 +#: src/Common/LinuxKernel.vala:1104 msgid "Uninstall: no uninstallable packages found" msgstr "" -#: src/Common/LinuxKernel.vala:1081 +#: src/Common/LinuxKernel.vala:1140 #, fuzzy msgid "is the highest installed version." msgstr "설치된 가장 높은 버전을 제외한 모든 버전을 제거합니다" -#: src/Common/LinuxKernel.vala:1094 +#: src/Common/LinuxKernel.vala:1153 msgid "Could not find running kernel in list" msgstr "현재 실행 중인 커널을 찾을 수 없습니다" -#: src/Common/LinuxKernel.vala:1099 +#: src/Common/LinuxKernel.vala:1158 msgid "Could not find any kernels to uninstall" msgstr "삭제할 커널을 찾을 수 없습니다" -#: src/Common/LinuxKernel.vala:1104 +#: src/Common/LinuxKernel.vala:1163 msgid "The following kernels will be uninstalled" msgstr "풀이" -#: src/Common/LinuxKernel.vala:1106 +#: src/Common/LinuxKernel.vala:1165 msgid "Continue ?" msgstr "계속하시겠습니까?" -#: src/Common/LinuxKernel.vala:1122 +#: src/Common/LinuxKernel.vala:1181 #, fuzzy msgid "No updates" msgstr "업데이트를 찾을 수 없습니다" -#: src/Common/LinuxKernel.vala:1128 +#: src/Common/LinuxKernel.vala:1187 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "커널 %s 버전을 설치하시겠습니까? (y/n): " @@ -278,7 +278,7 @@ msgstr "지정한 커널 삭제" msgid "Uninstall specified kernels" msgstr "지정한 커널 삭제" -#: src/Console/AppConsole.vala:51 src/Gtk/MainWindow.vala:333 +#: src/Console/AppConsole.vala:51 src/Gtk/MainWindow.vala:337 msgid "Uninstall all but the highest installed version" msgstr "설치된 가장 높은 버전을 제외한 모든 버전을 제거합니다" @@ -369,7 +369,7 @@ msgstr "커널 %s 사용 가능" msgid "Show" msgstr "보이기" -#: src/Console/AppConsole.vala:249 src/Gtk/MainWindow.vala:312 +#: src/Console/AppConsole.vala:249 src/Gtk/MainWindow.vala:316 msgid "Install" msgstr "설치" @@ -437,69 +437,69 @@ msgstr "상태" msgid "Notes" msgstr "노트" -#: src/Gtk/MainWindow.vala:317 +#: src/Gtk/MainWindow.vala:321 msgid "Uninstall" msgstr "삭제" -#: src/Gtk/MainWindow.vala:323 +#: src/Gtk/MainWindow.vala:327 msgid "Changelog, build status, etc" msgstr "" -#: src/Gtk/MainWindow.vala:332 +#: src/Gtk/MainWindow.vala:336 msgid "Uninstall Old" msgstr "오래된 커널 제거" -#: src/Gtk/MainWindow.vala:338 +#: src/Gtk/MainWindow.vala:342 msgid "Reload" msgstr "새로고침" -#: src/Gtk/MainWindow.vala:339 +#: src/Gtk/MainWindow.vala:343 msgid "Delete and reload all cached kernel info" msgstr "" -#: src/Gtk/MainWindow.vala:344 src/Gtk/SettingsDialog.vala:41 +#: src/Gtk/MainWindow.vala:348 src/Gtk/SettingsDialog.vala:41 msgid "Settings" msgstr "설정" -#: src/Gtk/MainWindow.vala:349 +#: src/Gtk/MainWindow.vala:353 msgid "About" msgstr "정보" -#: src/Gtk/MainWindow.vala:354 +#: src/Gtk/MainWindow.vala:358 msgid "Exit" msgstr "출구" -#: src/Gtk/MainWindow.vala:435 +#: src/Gtk/MainWindow.vala:439 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "우분투 기반 배포판의 커널 업그레이드 도구" -#: src/Gtk/MainWindow.vala:436 +#: src/Gtk/MainWindow.vala:440 msgid "Forked" msgstr "가랑이진" -#: src/Gtk/MainWindow.vala:436 +#: src/Gtk/MainWindow.vala:440 msgid "Original" msgstr "원문 언어" -#: src/Gtk/MainWindow.vala:465 +#: src/Gtk/MainWindow.vala:469 msgid "Updating kernels" msgstr "커널 업데이트" -#: src/Gtk/MainWindow.vala:525 +#: src/Gtk/MainWindow.vala:529 msgid "available" msgstr "사용가능" -#: src/Gtk/MainWindow.vala:542 +#: src/Gtk/MainWindow.vala:546 #, fuzzy msgid "is already installed" msgstr "가 이미 설치되어 있습니다" -#: src/Gtk/MainWindow.vala:544 +#: src/Gtk/MainWindow.vala:548 msgid "adding" msgstr "" -#: src/Gtk/MainWindow.vala:570 src/Gtk/MainWindow.vala:604 -#: src/Gtk/MainWindow.vala:632 +#: src/Gtk/MainWindow.vala:574 src/Gtk/MainWindow.vala:608 +#: src/Gtk/MainWindow.vala:636 msgid "DONE" msgstr "" @@ -588,6 +588,6 @@ msgstr "" msgid "Cancel" msgstr "취소" -#: src/lib/l.misc.vala:107 +#: src/lib/l.misc.vala:109 msgid "Can not reach site" msgstr "사이트에 도달 할 수 없습니다" diff --git a/po/messages.pot b/po/messages.pot index a4330c30..90854360 100644 --- a/po/messages.pot +++ b/po/messages.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline 1.3.11\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-08 16:51-0400\n" +"POT-Creation-Date: 2023-06-09 23:47-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,176 +17,176 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" -#: src/Common/LinuxKernel.vala:102 +#: src/Common/LinuxKernel.vala:104 msgid "Distribution" msgstr "" -#: src/Common/LinuxKernel.vala:117 +#: src/Common/LinuxKernel.vala:119 msgid "Architecture" msgstr "" -#: src/Common/LinuxKernel.vala:132 +#: src/Common/LinuxKernel.vala:134 msgid "Running kernel" msgstr "" -#: src/Common/LinuxKernel.vala:219 +#: src/Common/LinuxKernel.vala:221 msgid "loading cached" msgstr "" -#: src/Common/LinuxKernel.vala:231 +#: src/Common/LinuxKernel.vala:233 msgid "queuing download" msgstr "" -#: src/Common/LinuxKernel.vala:251 +#: src/Common/LinuxKernel.vala:253 msgid "Fetching individual kernel indexes" msgstr "" -#: src/Common/LinuxKernel.vala:265 +#: src/Common/LinuxKernel.vala:266 msgid "loading downloaded" msgstr "" -#: src/Common/LinuxKernel.vala:305 +#: src/Common/LinuxKernel.vala:307 msgid "Updating from" msgstr "" -#: src/Common/LinuxKernel.vala:313 +#: src/Common/LinuxKernel.vala:315 msgid "OK" msgstr "" -#: src/Common/LinuxKernel.vala:316 +#: src/Common/LinuxKernel.vala:318 msgid "FAILED" msgstr "" -#: src/Common/LinuxKernel.vala:381 +#: src/Common/LinuxKernel.vala:386 msgid "Found installed" msgstr "" -#: src/Common/LinuxKernel.vala:382 +#: src/Common/LinuxKernel.vala:387 msgid "locked" msgstr "" -#: src/Common/LinuxKernel.vala:464 src/Common/LinuxKernel.vala:994 -#: src/Common/LinuxKernel.vala:1085 +#: src/Common/LinuxKernel.vala:470 src/Common/LinuxKernel.vala:1053 +#: src/Common/LinuxKernel.vala:1144 msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:660 src/Gtk/MainWindow.vala:521 +#: src/Common/LinuxKernel.vala:719 src/Gtk/MainWindow.vala:525 msgid "Running" msgstr "" -#: src/Common/LinuxKernel.vala:661 +#: src/Common/LinuxKernel.vala:720 msgid "Installed" msgstr "" -#: src/Common/LinuxKernel.vala:662 +#: src/Common/LinuxKernel.vala:721 msgid "Invalid" msgstr "" -#: src/Common/LinuxKernel.vala:755 +#: src/Common/LinuxKernel.vala:814 msgid "Packages Available" msgstr "" -#: src/Common/LinuxKernel.vala:761 +#: src/Common/LinuxKernel.vala:820 msgid "Packages Installed" msgstr "" -#: src/Common/LinuxKernel.vala:786 src/lib/TeeJee.FileSystem.vala:94 +#: src/Common/LinuxKernel.vala:845 src/lib/TeeJee.FileSystem.vala:94 msgid "File not found" msgstr "" -#: src/Common/LinuxKernel.vala:813 +#: src/Common/LinuxKernel.vala:872 msgid "needs update" msgstr "" -#: src/Common/LinuxKernel.vala:880 +#: src/Common/LinuxKernel.vala:939 msgid "Available Kernels" msgstr "" -#: src/Common/LinuxKernel.vala:914 src/Gtk/MainWindow.vala:135 +#: src/Common/LinuxKernel.vala:973 src/Gtk/MainWindow.vala:135 msgid "Kernel" msgstr "" -#: src/Common/LinuxKernel.vala:914 +#: src/Common/LinuxKernel.vala:973 msgid "not found" msgstr "" -#: src/Common/LinuxKernel.vala:921 +#: src/Common/LinuxKernel.vala:980 msgid "Download: no downloadable kernels specified" msgstr "" -#: src/Common/LinuxKernel.vala:937 +#: src/Common/LinuxKernel.vala:996 msgid "enabled" msgstr "" -#: src/Common/LinuxKernel.vala:962 +#: src/Common/LinuxKernel.vala:1021 msgid "Downloading" msgstr "" -#: src/Common/LinuxKernel.vala:980 +#: src/Common/LinuxKernel.vala:1039 msgid "Installing selected kernels" msgstr "" -#: src/Common/LinuxKernel.vala:986 src/Common/LinuxKernel.vala:1025 +#: src/Common/LinuxKernel.vala:1045 src/Common/LinuxKernel.vala:1084 msgid "Requested" msgstr "" -#: src/Common/LinuxKernel.vala:989 +#: src/Common/LinuxKernel.vala:1048 msgid "is already installed." msgstr "" -#: src/Common/LinuxKernel.vala:999 +#: src/Common/LinuxKernel.vala:1058 msgid "download failed." msgstr "" -#: src/Common/LinuxKernel.vala:1006 src/Gtk/MainWindow.vala:548 +#: src/Common/LinuxKernel.vala:1065 src/Gtk/MainWindow.vala:552 msgid "Install: no installable kernels specified" msgstr "" -#: src/Common/LinuxKernel.vala:1021 +#: src/Common/LinuxKernel.vala:1080 msgid "Uninstalling selected kernels" msgstr "" -#: src/Common/LinuxKernel.vala:1028 +#: src/Common/LinuxKernel.vala:1087 msgid "Not uninstalling the currently running kernel" msgstr "" -#: src/Common/LinuxKernel.vala:1033 src/Gtk/MainWindow.vala:543 +#: src/Common/LinuxKernel.vala:1092 src/Gtk/MainWindow.vala:547 msgid "is locked" msgstr "" -#: src/Common/LinuxKernel.vala:1041 +#: src/Common/LinuxKernel.vala:1100 msgid "found" msgstr "" -#: src/Common/LinuxKernel.vala:1045 +#: src/Common/LinuxKernel.vala:1104 msgid "Uninstall: no uninstallable packages found" msgstr "" -#: src/Common/LinuxKernel.vala:1081 +#: src/Common/LinuxKernel.vala:1140 msgid "is the highest installed version." msgstr "" -#: src/Common/LinuxKernel.vala:1094 +#: src/Common/LinuxKernel.vala:1153 msgid "Could not find running kernel in list" msgstr "" -#: src/Common/LinuxKernel.vala:1099 +#: src/Common/LinuxKernel.vala:1158 msgid "Could not find any kernels to uninstall" msgstr "" -#: src/Common/LinuxKernel.vala:1104 +#: src/Common/LinuxKernel.vala:1163 msgid "The following kernels will be uninstalled" msgstr "" -#: src/Common/LinuxKernel.vala:1106 +#: src/Common/LinuxKernel.vala:1165 msgid "Continue ?" msgstr "" -#: src/Common/LinuxKernel.vala:1122 +#: src/Common/LinuxKernel.vala:1181 msgid "No updates" msgstr "" -#: src/Common/LinuxKernel.vala:1128 +#: src/Common/LinuxKernel.vala:1187 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "" @@ -269,7 +269,7 @@ msgstr "" msgid "Uninstall specified kernels" msgstr "" -#: src/Console/AppConsole.vala:51 src/Gtk/MainWindow.vala:333 +#: src/Console/AppConsole.vala:51 src/Gtk/MainWindow.vala:337 msgid "Uninstall all but the highest installed version" msgstr "" @@ -355,7 +355,7 @@ msgstr "" msgid "Show" msgstr "" -#: src/Console/AppConsole.vala:249 src/Gtk/MainWindow.vala:312 +#: src/Console/AppConsole.vala:249 src/Gtk/MainWindow.vala:316 msgid "Install" msgstr "" @@ -423,68 +423,68 @@ msgstr "" msgid "Notes" msgstr "" -#: src/Gtk/MainWindow.vala:317 +#: src/Gtk/MainWindow.vala:321 msgid "Uninstall" msgstr "" -#: src/Gtk/MainWindow.vala:323 +#: src/Gtk/MainWindow.vala:327 msgid "Changelog, build status, etc" msgstr "" -#: src/Gtk/MainWindow.vala:332 +#: src/Gtk/MainWindow.vala:336 msgid "Uninstall Old" msgstr "" -#: src/Gtk/MainWindow.vala:338 +#: src/Gtk/MainWindow.vala:342 msgid "Reload" msgstr "" -#: src/Gtk/MainWindow.vala:339 +#: src/Gtk/MainWindow.vala:343 msgid "Delete and reload all cached kernel info" msgstr "" -#: src/Gtk/MainWindow.vala:344 src/Gtk/SettingsDialog.vala:41 +#: src/Gtk/MainWindow.vala:348 src/Gtk/SettingsDialog.vala:41 msgid "Settings" msgstr "" -#: src/Gtk/MainWindow.vala:349 +#: src/Gtk/MainWindow.vala:353 msgid "About" msgstr "" -#: src/Gtk/MainWindow.vala:354 +#: src/Gtk/MainWindow.vala:358 msgid "Exit" msgstr "" -#: src/Gtk/MainWindow.vala:435 +#: src/Gtk/MainWindow.vala:439 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "" -#: src/Gtk/MainWindow.vala:436 +#: src/Gtk/MainWindow.vala:440 msgid "Forked" msgstr "" -#: src/Gtk/MainWindow.vala:436 +#: src/Gtk/MainWindow.vala:440 msgid "Original" msgstr "" -#: src/Gtk/MainWindow.vala:465 +#: src/Gtk/MainWindow.vala:469 msgid "Updating kernels" msgstr "" -#: src/Gtk/MainWindow.vala:525 +#: src/Gtk/MainWindow.vala:529 msgid "available" msgstr "" -#: src/Gtk/MainWindow.vala:542 +#: src/Gtk/MainWindow.vala:546 msgid "is already installed" msgstr "" -#: src/Gtk/MainWindow.vala:544 +#: src/Gtk/MainWindow.vala:548 msgid "adding" msgstr "" -#: src/Gtk/MainWindow.vala:570 src/Gtk/MainWindow.vala:604 -#: src/Gtk/MainWindow.vala:632 +#: src/Gtk/MainWindow.vala:574 src/Gtk/MainWindow.vala:608 +#: src/Gtk/MainWindow.vala:636 msgid "DONE" msgstr "" @@ -572,6 +572,6 @@ msgstr "" msgid "Cancel" msgstr "" -#: src/lib/l.misc.vala:107 +#: src/lib/l.misc.vala:109 msgid "Can not reach site" msgstr "" diff --git a/po/nl.po b/po/nl.po index b0d01ccf..ed21643d 100644 --- a/po/nl.po +++ b/po/nl.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-08 03:52-0400\n" +"POT-Creation-Date: 2023-06-09 23:18-0400\n" "PO-Revision-Date: 2020-08-23 13:55+0200\n" "Last-Translator: Heimen Stoffels \n" "Language-Team: Dutch (Netherlands)\n" @@ -13,185 +13,185 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Poedit 3.2.2\n" -#: src/Common/LinuxKernel.vala:102 +#: src/Common/LinuxKernel.vala:104 msgid "Distribution" msgstr "Distributie" -#: src/Common/LinuxKernel.vala:117 +#: src/Common/LinuxKernel.vala:119 msgid "Architecture" msgstr "Architectuur" -#: src/Common/LinuxKernel.vala:132 +#: src/Common/LinuxKernel.vala:134 msgid "Running kernel" msgstr "Kernel uitvoeren" -#: src/Common/LinuxKernel.vala:219 +#: src/Common/LinuxKernel.vala:221 msgid "loading cached" msgstr "laden in cache" -#: src/Common/LinuxKernel.vala:231 +#: src/Common/LinuxKernel.vala:233 msgid "queuing download" msgstr "wachtrijen downloaden" -#: src/Common/LinuxKernel.vala:251 +#: src/Common/LinuxKernel.vala:253 msgid "Fetching individual kernel indexes" msgstr "Afzonderlijke kernelindexen ophalen" -#: src/Common/LinuxKernel.vala:265 +#: src/Common/LinuxKernel.vala:266 msgid "loading downloaded" msgstr "laden gedownload" -#: src/Common/LinuxKernel.vala:305 +#: src/Common/LinuxKernel.vala:307 msgid "Updating from" msgstr "Bijwerken van" -#: src/Common/LinuxKernel.vala:313 +#: src/Common/LinuxKernel.vala:315 msgid "OK" msgstr "Oké" -#: src/Common/LinuxKernel.vala:316 +#: src/Common/LinuxKernel.vala:318 msgid "FAILED" msgstr "MISLUKT" -#: src/Common/LinuxKernel.vala:381 +#: src/Common/LinuxKernel.vala:386 msgid "Found installed" msgstr "Geïnstalleerd gevonden" -#: src/Common/LinuxKernel.vala:382 +#: src/Common/LinuxKernel.vala:387 msgid "locked" msgstr "" -#: src/Common/LinuxKernel.vala:464 src/Common/LinuxKernel.vala:994 -#: src/Common/LinuxKernel.vala:1085 +#: src/Common/LinuxKernel.vala:470 src/Common/LinuxKernel.vala:1053 +#: src/Common/LinuxKernel.vala:1144 msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:660 src/Gtk/MainWindow.vala:521 +#: src/Common/LinuxKernel.vala:719 src/Gtk/MainWindow.vala:525 msgid "Running" msgstr "In gebruik" -#: src/Common/LinuxKernel.vala:661 +#: src/Common/LinuxKernel.vala:720 msgid "Installed" msgstr "Geïnstalleerd" -#: src/Common/LinuxKernel.vala:662 +#: src/Common/LinuxKernel.vala:721 msgid "Invalid" msgstr "Ongeldig" -#: src/Common/LinuxKernel.vala:755 +#: src/Common/LinuxKernel.vala:814 msgid "Packages Available" msgstr "Beschikbare pakketten" -#: src/Common/LinuxKernel.vala:761 +#: src/Common/LinuxKernel.vala:820 msgid "Packages Installed" msgstr "Geïnstalleerde pakketten" -#: src/Common/LinuxKernel.vala:786 src/lib/TeeJee.FileSystem.vala:94 +#: src/Common/LinuxKernel.vala:845 src/lib/TeeJee.FileSystem.vala:94 msgid "File not found" msgstr "Het bestand is niet gevonden" -#: src/Common/LinuxKernel.vala:813 +#: src/Common/LinuxKernel.vala:872 #, fuzzy msgid "needs update" msgstr "Recentste update" -#: src/Common/LinuxKernel.vala:880 +#: src/Common/LinuxKernel.vala:939 msgid "Available Kernels" msgstr "Beschikbare kernels" -#: src/Common/LinuxKernel.vala:914 src/Gtk/MainWindow.vala:135 +#: src/Common/LinuxKernel.vala:973 src/Gtk/MainWindow.vala:135 msgid "Kernel" msgstr "Kernel" -#: src/Common/LinuxKernel.vala:914 +#: src/Common/LinuxKernel.vala:973 #, fuzzy msgid "not found" msgstr "Het bestand is niet gevonden" -#: src/Common/LinuxKernel.vala:921 +#: src/Common/LinuxKernel.vala:980 #, fuzzy msgid "Download: no downloadable kernels specified" msgstr "Geen opdracht opgegeven" -#: src/Common/LinuxKernel.vala:937 +#: src/Common/LinuxKernel.vala:996 msgid "enabled" msgstr "ingeschakeld" -#: src/Common/LinuxKernel.vala:962 +#: src/Common/LinuxKernel.vala:1021 msgid "Downloading" msgstr "Downloaden" -#: src/Common/LinuxKernel.vala:980 +#: src/Common/LinuxKernel.vala:1039 #, fuzzy msgid "Installing selected kernels" msgstr "Geselecteerde kernels verwijderen" -#: src/Common/LinuxKernel.vala:986 src/Common/LinuxKernel.vala:1025 +#: src/Common/LinuxKernel.vala:1045 src/Common/LinuxKernel.vala:1084 #, fuzzy msgid "Requested" msgstr "verzocht" -#: src/Common/LinuxKernel.vala:989 +#: src/Common/LinuxKernel.vala:1048 msgid "is already installed." msgstr "is al geïnstalleerd." -#: src/Common/LinuxKernel.vala:999 +#: src/Common/LinuxKernel.vala:1058 msgid "download failed." msgstr "" -#: src/Common/LinuxKernel.vala:1006 src/Gtk/MainWindow.vala:548 +#: src/Common/LinuxKernel.vala:1065 src/Gtk/MainWindow.vala:552 #, fuzzy msgid "Install: no installable kernels specified" msgstr "Geen opdracht opgegeven" -#: src/Common/LinuxKernel.vala:1021 +#: src/Common/LinuxKernel.vala:1080 msgid "Uninstalling selected kernels" msgstr "Geselecteerde kernels verwijderen" -#: src/Common/LinuxKernel.vala:1028 +#: src/Common/LinuxKernel.vala:1087 #, fuzzy msgid "Not uninstalling the currently running kernel" msgstr "de momenteel actieve kernel niet verwijderen" -#: src/Common/LinuxKernel.vala:1033 src/Gtk/MainWindow.vala:543 +#: src/Common/LinuxKernel.vala:1092 src/Gtk/MainWindow.vala:547 msgid "is locked" msgstr "" -#: src/Common/LinuxKernel.vala:1041 +#: src/Common/LinuxKernel.vala:1100 msgid "found" msgstr "gevonden" -#: src/Common/LinuxKernel.vala:1045 +#: src/Common/LinuxKernel.vala:1104 msgid "Uninstall: no uninstallable packages found" msgstr "" -#: src/Common/LinuxKernel.vala:1081 +#: src/Common/LinuxKernel.vala:1140 #, fuzzy msgid "is the highest installed version." msgstr "Verwijder alle behalve de hoogst geïnstalleerde versie" -#: src/Common/LinuxKernel.vala:1094 +#: src/Common/LinuxKernel.vala:1153 msgid "Could not find running kernel in list" msgstr "De in gebruik zijnde kernel staat niet op de lijst" -#: src/Common/LinuxKernel.vala:1099 +#: src/Common/LinuxKernel.vala:1158 msgid "Could not find any kernels to uninstall" msgstr "Er zijn geen te verwijderen kernels" -#: src/Common/LinuxKernel.vala:1104 +#: src/Common/LinuxKernel.vala:1163 msgid "The following kernels will be uninstalled" msgstr "De volgende kernels worden verwijderd" -#: src/Common/LinuxKernel.vala:1106 +#: src/Common/LinuxKernel.vala:1165 msgid "Continue ?" msgstr "Wilt u doorgaan?" -#: src/Common/LinuxKernel.vala:1122 +#: src/Common/LinuxKernel.vala:1181 #, fuzzy msgid "No updates" msgstr "Geen updates gevonden" -#: src/Common/LinuxKernel.vala:1128 +#: src/Common/LinuxKernel.vala:1187 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Wilt u versie %s installeren? (j/n): " @@ -280,7 +280,7 @@ msgstr "Opgegeven kernel verwijderen" msgid "Uninstall specified kernels" msgstr "Opgegeven kernel verwijderen" -#: src/Console/AppConsole.vala:51 src/Gtk/MainWindow.vala:333 +#: src/Console/AppConsole.vala:51 src/Gtk/MainWindow.vala:337 msgid "Uninstall all but the highest installed version" msgstr "Verwijder alle behalve de hoogst geïnstalleerde versie" @@ -371,7 +371,7 @@ msgstr "Kernel %s is beschikbaar" msgid "Show" msgstr "Tonen" -#: src/Console/AppConsole.vala:249 src/Gtk/MainWindow.vala:312 +#: src/Console/AppConsole.vala:249 src/Gtk/MainWindow.vala:316 msgid "Install" msgstr "Installeren" @@ -439,69 +439,69 @@ msgstr "Status" msgid "Notes" msgstr "Notities" -#: src/Gtk/MainWindow.vala:317 +#: src/Gtk/MainWindow.vala:321 msgid "Uninstall" msgstr "Deïnstalleren" -#: src/Gtk/MainWindow.vala:323 +#: src/Gtk/MainWindow.vala:327 msgid "Changelog, build status, etc" msgstr "" -#: src/Gtk/MainWindow.vala:332 +#: src/Gtk/MainWindow.vala:336 msgid "Uninstall Old" msgstr "Verwijder Oude" -#: src/Gtk/MainWindow.vala:338 +#: src/Gtk/MainWindow.vala:342 msgid "Reload" msgstr "Herladen" -#: src/Gtk/MainWindow.vala:339 +#: src/Gtk/MainWindow.vala:343 msgid "Delete and reload all cached kernel info" msgstr "" -#: src/Gtk/MainWindow.vala:344 src/Gtk/SettingsDialog.vala:41 +#: src/Gtk/MainWindow.vala:348 src/Gtk/SettingsDialog.vala:41 msgid "Settings" msgstr "Instellingen" -#: src/Gtk/MainWindow.vala:349 +#: src/Gtk/MainWindow.vala:353 msgid "About" msgstr "Over" -#: src/Gtk/MainWindow.vala:354 +#: src/Gtk/MainWindow.vala:358 msgid "Exit" msgstr "Afsluiten" -#: src/Gtk/MainWindow.vala:435 +#: src/Gtk/MainWindow.vala:439 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Een kernelupgradehulpmiddel voor op Ubuntu gebaseerde distributies" -#: src/Gtk/MainWindow.vala:436 +#: src/Gtk/MainWindow.vala:440 msgid "Forked" msgstr "Geforkt" -#: src/Gtk/MainWindow.vala:436 +#: src/Gtk/MainWindow.vala:440 msgid "Original" msgstr "Origineel" -#: src/Gtk/MainWindow.vala:465 +#: src/Gtk/MainWindow.vala:469 msgid "Updating kernels" msgstr "Kernels bijwerken" -#: src/Gtk/MainWindow.vala:525 +#: src/Gtk/MainWindow.vala:529 msgid "available" msgstr "beschikbaar" -#: src/Gtk/MainWindow.vala:542 +#: src/Gtk/MainWindow.vala:546 #, fuzzy msgid "is already installed" msgstr "is al geïnstalleerd." -#: src/Gtk/MainWindow.vala:544 +#: src/Gtk/MainWindow.vala:548 msgid "adding" msgstr "" -#: src/Gtk/MainWindow.vala:570 src/Gtk/MainWindow.vala:604 -#: src/Gtk/MainWindow.vala:632 +#: src/Gtk/MainWindow.vala:574 src/Gtk/MainWindow.vala:608 +#: src/Gtk/MainWindow.vala:636 msgid "DONE" msgstr "" @@ -590,6 +590,6 @@ msgstr "" msgid "Cancel" msgstr "Annuleren" -#: src/lib/l.misc.vala:107 +#: src/lib/l.misc.vala:109 msgid "Can not reach site" msgstr "Kan de site niet bereiken" diff --git a/po/pl.po b/po/pl.po index 2ba3d41d..e57ec7a4 100644 --- a/po/pl.po +++ b/po/pl.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-08 03:52-0400\n" +"POT-Creation-Date: 2023-06-09 23:18-0400\n" "PO-Revision-Date: 2023-06-03 14:24+0200\n" "Last-Translator: Matthaiks\n" "Language-Team: Polish\n" @@ -12,179 +12,179 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Poedit 3.3.1\n" -#: src/Common/LinuxKernel.vala:102 +#: src/Common/LinuxKernel.vala:104 msgid "Distribution" msgstr "Dystrybucja" -#: src/Common/LinuxKernel.vala:117 +#: src/Common/LinuxKernel.vala:119 msgid "Architecture" msgstr "Architektura" -#: src/Common/LinuxKernel.vala:132 +#: src/Common/LinuxKernel.vala:134 msgid "Running kernel" msgstr "Uruchomione jądro" -#: src/Common/LinuxKernel.vala:219 +#: src/Common/LinuxKernel.vala:221 msgid "loading cached" msgstr "ładowanie z pamięci podręcznej" -#: src/Common/LinuxKernel.vala:231 +#: src/Common/LinuxKernel.vala:233 msgid "queuing download" msgstr "pobieranie w kolejce" -#: src/Common/LinuxKernel.vala:251 +#: src/Common/LinuxKernel.vala:253 msgid "Fetching individual kernel indexes" msgstr "Pobieranie indywidualnych indeksów jądra" -#: src/Common/LinuxKernel.vala:265 +#: src/Common/LinuxKernel.vala:266 msgid "loading downloaded" msgstr "ładowanie pobranych" -#: src/Common/LinuxKernel.vala:305 +#: src/Common/LinuxKernel.vala:307 msgid "Updating from" msgstr "Aktualizowanie z" -#: src/Common/LinuxKernel.vala:313 +#: src/Common/LinuxKernel.vala:315 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:316 +#: src/Common/LinuxKernel.vala:318 msgid "FAILED" msgstr "NIEPOWODZENIE" -#: src/Common/LinuxKernel.vala:381 +#: src/Common/LinuxKernel.vala:386 msgid "Found installed" msgstr "Znaleziono zainstalowane" -#: src/Common/LinuxKernel.vala:382 +#: src/Common/LinuxKernel.vala:387 msgid "locked" msgstr "zablokowane" -#: src/Common/LinuxKernel.vala:464 src/Common/LinuxKernel.vala:994 -#: src/Common/LinuxKernel.vala:1085 +#: src/Common/LinuxKernel.vala:470 src/Common/LinuxKernel.vala:1053 +#: src/Common/LinuxKernel.vala:1144 msgid "is locked." msgstr "jest zablokowane." -#: src/Common/LinuxKernel.vala:660 src/Gtk/MainWindow.vala:521 +#: src/Common/LinuxKernel.vala:719 src/Gtk/MainWindow.vala:525 msgid "Running" msgstr "Uruchomione" -#: src/Common/LinuxKernel.vala:661 +#: src/Common/LinuxKernel.vala:720 msgid "Installed" msgstr "Zainstalowane" -#: src/Common/LinuxKernel.vala:662 +#: src/Common/LinuxKernel.vala:721 msgid "Invalid" msgstr "Nieprawidłowe" -#: src/Common/LinuxKernel.vala:755 +#: src/Common/LinuxKernel.vala:814 msgid "Packages Available" msgstr "Dostępne pakiety" -#: src/Common/LinuxKernel.vala:761 +#: src/Common/LinuxKernel.vala:820 msgid "Packages Installed" msgstr "Pakiety zainstalowane" -#: src/Common/LinuxKernel.vala:786 src/lib/TeeJee.FileSystem.vala:94 +#: src/Common/LinuxKernel.vala:845 src/lib/TeeJee.FileSystem.vala:94 msgid "File not found" msgstr "Nie odnaleziono pliku" -#: src/Common/LinuxKernel.vala:813 +#: src/Common/LinuxKernel.vala:872 #, fuzzy msgid "needs update" msgstr "Najnowsza aktualizacja" -#: src/Common/LinuxKernel.vala:880 +#: src/Common/LinuxKernel.vala:939 msgid "Available Kernels" msgstr "Dostępne jądra" -#: src/Common/LinuxKernel.vala:914 src/Gtk/MainWindow.vala:135 +#: src/Common/LinuxKernel.vala:973 src/Gtk/MainWindow.vala:135 msgid "Kernel" msgstr "Jądro" -#: src/Common/LinuxKernel.vala:914 +#: src/Common/LinuxKernel.vala:973 msgid "not found" msgstr "nie odnaleziono" -#: src/Common/LinuxKernel.vala:921 +#: src/Common/LinuxKernel.vala:980 msgid "Download: no downloadable kernels specified" msgstr "Pobieranie: nie określono jąder do pobrania" -#: src/Common/LinuxKernel.vala:937 +#: src/Common/LinuxKernel.vala:996 msgid "enabled" msgstr "włączone" -#: src/Common/LinuxKernel.vala:962 +#: src/Common/LinuxKernel.vala:1021 msgid "Downloading" msgstr "Pobieranie" -#: src/Common/LinuxKernel.vala:980 +#: src/Common/LinuxKernel.vala:1039 msgid "Installing selected kernels" msgstr "Instalowanie wybranych jąder" -#: src/Common/LinuxKernel.vala:986 src/Common/LinuxKernel.vala:1025 +#: src/Common/LinuxKernel.vala:1045 src/Common/LinuxKernel.vala:1084 msgid "Requested" msgstr "Zażądane" -#: src/Common/LinuxKernel.vala:989 +#: src/Common/LinuxKernel.vala:1048 msgid "is already installed." msgstr "jest już zainstalowane." -#: src/Common/LinuxKernel.vala:999 +#: src/Common/LinuxKernel.vala:1058 msgid "download failed." msgstr "pobieranie nie powiodło się." -#: src/Common/LinuxKernel.vala:1006 src/Gtk/MainWindow.vala:548 +#: src/Common/LinuxKernel.vala:1065 src/Gtk/MainWindow.vala:552 #, fuzzy msgid "Install: no installable kernels specified" msgstr "Instalowanie: nie określono jąder do zainstalowania" -#: src/Common/LinuxKernel.vala:1021 +#: src/Common/LinuxKernel.vala:1080 msgid "Uninstalling selected kernels" msgstr "Odinstalowanie wybranych jąder" -#: src/Common/LinuxKernel.vala:1028 +#: src/Common/LinuxKernel.vala:1087 msgid "Not uninstalling the currently running kernel" msgstr "Bez odinstalowywania aktualnie uruchomionego jądra" -#: src/Common/LinuxKernel.vala:1033 src/Gtk/MainWindow.vala:543 +#: src/Common/LinuxKernel.vala:1092 src/Gtk/MainWindow.vala:547 msgid "is locked" msgstr "jest zablokowane" -#: src/Common/LinuxKernel.vala:1041 +#: src/Common/LinuxKernel.vala:1100 msgid "found" msgstr "znalezione" -#: src/Common/LinuxKernel.vala:1045 +#: src/Common/LinuxKernel.vala:1104 msgid "Uninstall: no uninstallable packages found" msgstr "Odinstalowanie: nie znaleziono pakietów, które można odinstalować" -#: src/Common/LinuxKernel.vala:1081 +#: src/Common/LinuxKernel.vala:1140 msgid "is the highest installed version." msgstr "to najwyższa zainstalowana wersja." -#: src/Common/LinuxKernel.vala:1094 +#: src/Common/LinuxKernel.vala:1153 msgid "Could not find running kernel in list" msgstr "Nie można znaleźć uruchomionego jądra na liście" -#: src/Common/LinuxKernel.vala:1099 +#: src/Common/LinuxKernel.vala:1158 msgid "Could not find any kernels to uninstall" msgstr "Nie można znaleźć żadnych jąder do odinstalowania" -#: src/Common/LinuxKernel.vala:1104 +#: src/Common/LinuxKernel.vala:1163 msgid "The following kernels will be uninstalled" msgstr "Następujące jądra zostaną odinstalowane" -#: src/Common/LinuxKernel.vala:1106 +#: src/Common/LinuxKernel.vala:1165 msgid "Continue ?" msgstr "Kontynuować?" -#: src/Common/LinuxKernel.vala:1122 +#: src/Common/LinuxKernel.vala:1181 #, fuzzy msgid "No updates" msgstr "Nie znaleziono aktualizacji" -#: src/Common/LinuxKernel.vala:1128 +#: src/Common/LinuxKernel.vala:1187 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Zainstalować wersję jądra %s? (t/n): " @@ -269,7 +269,7 @@ msgstr "Zainstaluj wybrane jądra" msgid "Uninstall specified kernels" msgstr "Odinstaluj wybrane jądra" -#: src/Console/AppConsole.vala:51 src/Gtk/MainWindow.vala:333 +#: src/Console/AppConsole.vala:51 src/Gtk/MainWindow.vala:337 msgid "Uninstall all but the highest installed version" msgstr "Odinstaluj wszystkie oprócz najwyższej zainstalowanej wersji" @@ -359,7 +359,7 @@ msgstr "Dostępne %s jądra" msgid "Show" msgstr "Pokaż" -#: src/Console/AppConsole.vala:249 src/Gtk/MainWindow.vala:312 +#: src/Console/AppConsole.vala:249 src/Gtk/MainWindow.vala:316 msgid "Install" msgstr "Zainstaluj" @@ -427,70 +427,70 @@ msgstr "Status" msgid "Notes" msgstr "Notatki" -#: src/Gtk/MainWindow.vala:317 +#: src/Gtk/MainWindow.vala:321 msgid "Uninstall" msgstr "Odinstaluj" -#: src/Gtk/MainWindow.vala:323 +#: src/Gtk/MainWindow.vala:327 msgid "Changelog, build status, etc" msgstr "Dziennik zmian, status kompilacji itd." -#: src/Gtk/MainWindow.vala:332 +#: src/Gtk/MainWindow.vala:336 msgid "Uninstall Old" msgstr "Odinstaluj stare" -#: src/Gtk/MainWindow.vala:338 +#: src/Gtk/MainWindow.vala:342 msgid "Reload" msgstr "Wczytaj ponownie" -#: src/Gtk/MainWindow.vala:339 +#: src/Gtk/MainWindow.vala:343 msgid "Delete and reload all cached kernel info" msgstr "" "Usuń i ponownie załaduj wszystkie informacje o jądrze z pamięci podręcznej" -#: src/Gtk/MainWindow.vala:344 src/Gtk/SettingsDialog.vala:41 +#: src/Gtk/MainWindow.vala:348 src/Gtk/SettingsDialog.vala:41 msgid "Settings" msgstr "Ustawienia" -#: src/Gtk/MainWindow.vala:349 +#: src/Gtk/MainWindow.vala:353 msgid "About" msgstr "O programie" -#: src/Gtk/MainWindow.vala:354 +#: src/Gtk/MainWindow.vala:358 msgid "Exit" msgstr "Wyjdź" -#: src/Gtk/MainWindow.vala:435 +#: src/Gtk/MainWindow.vala:439 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Narzędzie uaktualniania jądra dla dystrybucji z rodziny Ubuntu" -#: src/Gtk/MainWindow.vala:436 +#: src/Gtk/MainWindow.vala:440 msgid "Forked" msgstr "Sforkowane" -#: src/Gtk/MainWindow.vala:436 +#: src/Gtk/MainWindow.vala:440 msgid "Original" msgstr "Oryginalne" -#: src/Gtk/MainWindow.vala:465 +#: src/Gtk/MainWindow.vala:469 msgid "Updating kernels" msgstr "Aktualizowanie jąder" -#: src/Gtk/MainWindow.vala:525 +#: src/Gtk/MainWindow.vala:529 msgid "available" msgstr "dostępne" -#: src/Gtk/MainWindow.vala:542 +#: src/Gtk/MainWindow.vala:546 #, fuzzy msgid "is already installed" msgstr "jest już zainstalowane." -#: src/Gtk/MainWindow.vala:544 +#: src/Gtk/MainWindow.vala:548 msgid "adding" msgstr "" -#: src/Gtk/MainWindow.vala:570 src/Gtk/MainWindow.vala:604 -#: src/Gtk/MainWindow.vala:632 +#: src/Gtk/MainWindow.vala:574 src/Gtk/MainWindow.vala:608 +#: src/Gtk/MainWindow.vala:636 msgid "DONE" msgstr "GOTOWE" @@ -579,6 +579,6 @@ msgstr "Gotowe" msgid "Cancel" msgstr "Anuluj" -#: src/lib/l.misc.vala:107 +#: src/lib/l.misc.vala:109 msgid "Can not reach site" msgstr "Nie można dotrzeć do witryny" diff --git a/po/ru.po b/po/ru.po index f5350100..0c3c7ae1 100644 --- a/po/ru.po +++ b/po/ru.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-08 03:52-0400\n" +"POT-Creation-Date: 2023-06-09 23:18-0400\n" "PO-Revision-Date: 2023-06-05 23:29+0300\n" "Last-Translator: Danik2343 \n" "Language-Team: Russian\n" @@ -13,178 +13,178 @@ msgstr "" "X-Launchpad-Export-Date: 2016-12-13 11:48+0000\n" "X-Generator: Poedit 3.3\n" -#: src/Common/LinuxKernel.vala:102 +#: src/Common/LinuxKernel.vala:104 msgid "Distribution" msgstr "Дистрибутив" -#: src/Common/LinuxKernel.vala:117 +#: src/Common/LinuxKernel.vala:119 msgid "Architecture" msgstr "Архитектура" -#: src/Common/LinuxKernel.vala:132 +#: src/Common/LinuxKernel.vala:134 msgid "Running kernel" msgstr "Запущенное ядро" -#: src/Common/LinuxKernel.vala:219 +#: src/Common/LinuxKernel.vala:221 msgid "loading cached" msgstr "загрузка в кэше" -#: src/Common/LinuxKernel.vala:231 +#: src/Common/LinuxKernel.vala:233 msgid "queuing download" msgstr "загрузка очередей" -#: src/Common/LinuxKernel.vala:251 +#: src/Common/LinuxKernel.vala:253 msgid "Fetching individual kernel indexes" msgstr "Получение отдельных индексов ядра" -#: src/Common/LinuxKernel.vala:265 +#: src/Common/LinuxKernel.vala:266 msgid "loading downloaded" msgstr "загрузка загруженных" -#: src/Common/LinuxKernel.vala:305 +#: src/Common/LinuxKernel.vala:307 msgid "Updating from" msgstr "Обновление из" -#: src/Common/LinuxKernel.vala:313 +#: src/Common/LinuxKernel.vala:315 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:316 +#: src/Common/LinuxKernel.vala:318 msgid "FAILED" msgstr "НЕУДАВШИЙСЯ" -#: src/Common/LinuxKernel.vala:381 +#: src/Common/LinuxKernel.vala:386 msgid "Found installed" msgstr "Найдено установлененное" -#: src/Common/LinuxKernel.vala:382 +#: src/Common/LinuxKernel.vala:387 msgid "locked" msgstr "заблокирован" -#: src/Common/LinuxKernel.vala:464 src/Common/LinuxKernel.vala:994 -#: src/Common/LinuxKernel.vala:1085 +#: src/Common/LinuxKernel.vala:470 src/Common/LinuxKernel.vala:1053 +#: src/Common/LinuxKernel.vala:1144 msgid "is locked." msgstr "заблокирован." -#: src/Common/LinuxKernel.vala:660 src/Gtk/MainWindow.vala:521 +#: src/Common/LinuxKernel.vala:719 src/Gtk/MainWindow.vala:525 msgid "Running" msgstr "Используется" -#: src/Common/LinuxKernel.vala:661 +#: src/Common/LinuxKernel.vala:720 msgid "Installed" msgstr "Установлено" -#: src/Common/LinuxKernel.vala:662 +#: src/Common/LinuxKernel.vala:721 msgid "Invalid" msgstr "Негодный" -#: src/Common/LinuxKernel.vala:755 +#: src/Common/LinuxKernel.vala:814 msgid "Packages Available" msgstr "Доступные пакеты" -#: src/Common/LinuxKernel.vala:761 +#: src/Common/LinuxKernel.vala:820 msgid "Packages Installed" msgstr "Установленные пакеты" -#: src/Common/LinuxKernel.vala:786 src/lib/TeeJee.FileSystem.vala:94 +#: src/Common/LinuxKernel.vala:845 src/lib/TeeJee.FileSystem.vala:94 msgid "File not found" msgstr "Файл не найден" -#: src/Common/LinuxKernel.vala:813 +#: src/Common/LinuxKernel.vala:872 #, fuzzy msgid "needs update" msgstr "требуется обновление" -#: src/Common/LinuxKernel.vala:880 +#: src/Common/LinuxKernel.vala:939 msgid "Available Kernels" msgstr "Доступные ядра" -#: src/Common/LinuxKernel.vala:914 src/Gtk/MainWindow.vala:135 +#: src/Common/LinuxKernel.vala:973 src/Gtk/MainWindow.vala:135 msgid "Kernel" msgstr "Ядро" -#: src/Common/LinuxKernel.vala:914 +#: src/Common/LinuxKernel.vala:973 msgid "not found" msgstr "не найдено" -#: src/Common/LinuxKernel.vala:921 +#: src/Common/LinuxKernel.vala:980 msgid "Download: no downloadable kernels specified" msgstr "Загрузка: не указаны загружаемые ядра" -#: src/Common/LinuxKernel.vala:937 +#: src/Common/LinuxKernel.vala:996 msgid "enabled" msgstr "включено" -#: src/Common/LinuxKernel.vala:962 +#: src/Common/LinuxKernel.vala:1021 msgid "Downloading" msgstr "Загрузки" -#: src/Common/LinuxKernel.vala:980 +#: src/Common/LinuxKernel.vala:1039 msgid "Installing selected kernels" msgstr "Установка выбранных ядер" -#: src/Common/LinuxKernel.vala:986 src/Common/LinuxKernel.vala:1025 +#: src/Common/LinuxKernel.vala:1045 src/Common/LinuxKernel.vala:1084 msgid "Requested" msgstr "Запрошено" -#: src/Common/LinuxKernel.vala:989 +#: src/Common/LinuxKernel.vala:1048 msgid "is already installed." msgstr "уже установлен." -#: src/Common/LinuxKernel.vala:999 +#: src/Common/LinuxKernel.vala:1058 msgid "download failed." msgstr "загрузка не удалась." -#: src/Common/LinuxKernel.vala:1006 src/Gtk/MainWindow.vala:548 +#: src/Common/LinuxKernel.vala:1065 src/Gtk/MainWindow.vala:552 msgid "Install: no installable kernels specified" msgstr "Команда не указана" -#: src/Common/LinuxKernel.vala:1021 +#: src/Common/LinuxKernel.vala:1080 msgid "Uninstalling selected kernels" msgstr "Удаление выбранных ядер" -#: src/Common/LinuxKernel.vala:1028 +#: src/Common/LinuxKernel.vala:1087 msgid "Not uninstalling the currently running kernel" msgstr "Не удалять запущенное в данный момент ядро" -#: src/Common/LinuxKernel.vala:1033 src/Gtk/MainWindow.vala:543 +#: src/Common/LinuxKernel.vala:1092 src/Gtk/MainWindow.vala:547 msgid "is locked" msgstr "заблокирован" -#: src/Common/LinuxKernel.vala:1041 +#: src/Common/LinuxKernel.vala:1100 msgid "found" msgstr "найдено" -#: src/Common/LinuxKernel.vala:1045 +#: src/Common/LinuxKernel.vala:1104 msgid "Uninstall: no uninstallable packages found" msgstr "Удаление: не найдено удаляемых пакетов" -#: src/Common/LinuxKernel.vala:1081 +#: src/Common/LinuxKernel.vala:1140 msgid "is the highest installed version." msgstr "это самая высокая установленная версия." -#: src/Common/LinuxKernel.vala:1094 +#: src/Common/LinuxKernel.vala:1153 msgid "Could not find running kernel in list" msgstr "Could not find running kernel in list" -#: src/Common/LinuxKernel.vala:1099 +#: src/Common/LinuxKernel.vala:1158 msgid "Could not find any kernels to uninstall" msgstr "Не удалось найти ядра для деинсталляции" -#: src/Common/LinuxKernel.vala:1104 +#: src/Common/LinuxKernel.vala:1163 msgid "The following kernels will be uninstalled" msgstr "Следующие ядра будут удалены" -#: src/Common/LinuxKernel.vala:1106 +#: src/Common/LinuxKernel.vala:1165 msgid "Continue ?" msgstr "Продолжить ?" -#: src/Common/LinuxKernel.vala:1122 +#: src/Common/LinuxKernel.vala:1181 #, fuzzy msgid "No updates" msgstr "Нет обнолений" -#: src/Common/LinuxKernel.vala:1128 +#: src/Common/LinuxKernel.vala:1187 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Установить версию ядра %s ? (y/n): " @@ -268,7 +268,7 @@ msgstr "Установить указанные ядра" msgid "Uninstall specified kernels" msgstr "Удалить указанные ядра" -#: src/Console/AppConsole.vala:51 src/Gtk/MainWindow.vala:333 +#: src/Console/AppConsole.vala:51 src/Gtk/MainWindow.vala:337 msgid "Uninstall all but the highest installed version" msgstr "Удаление всех установленных версий, кроме самой высокой" @@ -355,7 +355,7 @@ msgstr "Доступно ядро %s" msgid "Show" msgstr "Показать" -#: src/Console/AppConsole.vala:249 src/Gtk/MainWindow.vala:312 +#: src/Console/AppConsole.vala:249 src/Gtk/MainWindow.vala:316 msgid "Install" msgstr "Установить" @@ -423,68 +423,68 @@ msgstr "Состояние" msgid "Notes" msgstr "Примечания" -#: src/Gtk/MainWindow.vala:317 +#: src/Gtk/MainWindow.vala:321 msgid "Uninstall" msgstr "Удалить" -#: src/Gtk/MainWindow.vala:323 +#: src/Gtk/MainWindow.vala:327 msgid "Changelog, build status, etc" msgstr "Список изменений, статус сборки и т.д" -#: src/Gtk/MainWindow.vala:332 +#: src/Gtk/MainWindow.vala:336 msgid "Uninstall Old" msgstr "Удалить старые" -#: src/Gtk/MainWindow.vala:338 +#: src/Gtk/MainWindow.vala:342 msgid "Reload" msgstr "Перезагрузить" -#: src/Gtk/MainWindow.vala:339 +#: src/Gtk/MainWindow.vala:343 msgid "Delete and reload all cached kernel info" msgstr "Удалить и перезагрузить всю кэшированную информацию о ядре" -#: src/Gtk/MainWindow.vala:344 src/Gtk/SettingsDialog.vala:41 +#: src/Gtk/MainWindow.vala:348 src/Gtk/SettingsDialog.vala:41 msgid "Settings" msgstr "Настройки" -#: src/Gtk/MainWindow.vala:349 +#: src/Gtk/MainWindow.vala:353 msgid "About" msgstr "О программе" -#: src/Gtk/MainWindow.vala:354 +#: src/Gtk/MainWindow.vala:358 msgid "Exit" msgstr "Выход" -#: src/Gtk/MainWindow.vala:435 +#: src/Gtk/MainWindow.vala:439 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Программа обновления ядра для дистрибутивов на базе Ubuntu" -#: src/Gtk/MainWindow.vala:436 +#: src/Gtk/MainWindow.vala:440 msgid "Forked" msgstr "Форк" -#: src/Gtk/MainWindow.vala:436 +#: src/Gtk/MainWindow.vala:440 msgid "Original" msgstr "Оригинал" -#: src/Gtk/MainWindow.vala:465 +#: src/Gtk/MainWindow.vala:469 msgid "Updating kernels" msgstr "Обновление ядер" -#: src/Gtk/MainWindow.vala:525 +#: src/Gtk/MainWindow.vala:529 msgid "available" msgstr "доступно" -#: src/Gtk/MainWindow.vala:542 +#: src/Gtk/MainWindow.vala:546 msgid "is already installed" msgstr "уже установлен" -#: src/Gtk/MainWindow.vala:544 +#: src/Gtk/MainWindow.vala:548 msgid "adding" msgstr "добавление" -#: src/Gtk/MainWindow.vala:570 src/Gtk/MainWindow.vala:604 -#: src/Gtk/MainWindow.vala:632 +#: src/Gtk/MainWindow.vala:574 src/Gtk/MainWindow.vala:608 +#: src/Gtk/MainWindow.vala:636 msgid "DONE" msgstr "ГОТОВО" @@ -572,6 +572,6 @@ msgstr "Готово" msgid "Cancel" msgstr "Отмена" -#: src/lib/l.misc.vala:107 +#: src/lib/l.misc.vala:109 msgid "Can not reach site" msgstr "Не удается связаться с сайтом" diff --git a/po/sv.po b/po/sv.po index 97958942..b56f9b7c 100644 --- a/po/sv.po +++ b/po/sv.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-08 03:52-0400\n" +"POT-Creation-Date: 2023-06-09 23:18-0400\n" "PO-Revision-Date: 2018-01-13 16:56+0100\n" "Last-Translator: Åke Engelbrektson \n" "Language-Team:Swedish\n" @@ -13,185 +13,185 @@ msgstr "" "X-Generator: Poedit 1.8.7.1\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: src/Common/LinuxKernel.vala:102 +#: src/Common/LinuxKernel.vala:104 msgid "Distribution" msgstr "Distribution" -#: src/Common/LinuxKernel.vala:117 +#: src/Common/LinuxKernel.vala:119 msgid "Architecture" msgstr "Arkitektur" -#: src/Common/LinuxKernel.vala:132 +#: src/Common/LinuxKernel.vala:134 msgid "Running kernel" msgstr "Löpande kernel" -#: src/Common/LinuxKernel.vala:219 +#: src/Common/LinuxKernel.vala:221 msgid "loading cached" msgstr "laddar cachelagrat" -#: src/Common/LinuxKernel.vala:231 +#: src/Common/LinuxKernel.vala:233 msgid "queuing download" msgstr "köbildning nedladdning" -#: src/Common/LinuxKernel.vala:251 +#: src/Common/LinuxKernel.vala:253 msgid "Fetching individual kernel indexes" msgstr "Hämta enskilda kernelindex" -#: src/Common/LinuxKernel.vala:265 +#: src/Common/LinuxKernel.vala:266 msgid "loading downloaded" msgstr "laddar nedladdad" -#: src/Common/LinuxKernel.vala:305 +#: src/Common/LinuxKernel.vala:307 msgid "Updating from" msgstr "Uppdatering från" -#: src/Common/LinuxKernel.vala:313 +#: src/Common/LinuxKernel.vala:315 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:316 +#: src/Common/LinuxKernel.vala:318 msgid "FAILED" msgstr "MISSLYCKADES" -#: src/Common/LinuxKernel.vala:381 +#: src/Common/LinuxKernel.vala:386 msgid "Found installed" msgstr "Hittade installerat" -#: src/Common/LinuxKernel.vala:382 +#: src/Common/LinuxKernel.vala:387 msgid "locked" msgstr "" -#: src/Common/LinuxKernel.vala:464 src/Common/LinuxKernel.vala:994 -#: src/Common/LinuxKernel.vala:1085 +#: src/Common/LinuxKernel.vala:470 src/Common/LinuxKernel.vala:1053 +#: src/Common/LinuxKernel.vala:1144 msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:660 src/Gtk/MainWindow.vala:521 +#: src/Common/LinuxKernel.vala:719 src/Gtk/MainWindow.vala:525 msgid "Running" msgstr "Körs" -#: src/Common/LinuxKernel.vala:661 +#: src/Common/LinuxKernel.vala:720 msgid "Installed" msgstr "Installerad" -#: src/Common/LinuxKernel.vala:662 +#: src/Common/LinuxKernel.vala:721 msgid "Invalid" msgstr "Ogiltig" -#: src/Common/LinuxKernel.vala:755 +#: src/Common/LinuxKernel.vala:814 msgid "Packages Available" msgstr "Tillgängliga paket" -#: src/Common/LinuxKernel.vala:761 +#: src/Common/LinuxKernel.vala:820 msgid "Packages Installed" msgstr "Installerade paket" -#: src/Common/LinuxKernel.vala:786 src/lib/TeeJee.FileSystem.vala:94 +#: src/Common/LinuxKernel.vala:845 src/lib/TeeJee.FileSystem.vala:94 msgid "File not found" msgstr "Filen kan inte hittas" -#: src/Common/LinuxKernel.vala:813 +#: src/Common/LinuxKernel.vala:872 #, fuzzy msgid "needs update" msgstr "Senaste uppdatering" -#: src/Common/LinuxKernel.vala:880 +#: src/Common/LinuxKernel.vala:939 msgid "Available Kernels" msgstr "Tillgängliga kärnor" -#: src/Common/LinuxKernel.vala:914 src/Gtk/MainWindow.vala:135 +#: src/Common/LinuxKernel.vala:973 src/Gtk/MainWindow.vala:135 msgid "Kernel" msgstr "Kärna" -#: src/Common/LinuxKernel.vala:914 +#: src/Common/LinuxKernel.vala:973 #, fuzzy msgid "not found" msgstr "Filen kan inte hittas" -#: src/Common/LinuxKernel.vala:921 +#: src/Common/LinuxKernel.vala:980 #, fuzzy msgid "Download: no downloadable kernels specified" msgstr "Kommandot har inte angetts" -#: src/Common/LinuxKernel.vala:937 +#: src/Common/LinuxKernel.vala:996 msgid "enabled" msgstr "aktiverat" -#: src/Common/LinuxKernel.vala:962 +#: src/Common/LinuxKernel.vala:1021 msgid "Downloading" msgstr "Ladda ner" -#: src/Common/LinuxKernel.vala:980 +#: src/Common/LinuxKernel.vala:1039 #, fuzzy msgid "Installing selected kernels" msgstr "Avinstallera valda kärnor" -#: src/Common/LinuxKernel.vala:986 src/Common/LinuxKernel.vala:1025 +#: src/Common/LinuxKernel.vala:1045 src/Common/LinuxKernel.vala:1084 #, fuzzy msgid "Requested" msgstr "begärd" -#: src/Common/LinuxKernel.vala:989 +#: src/Common/LinuxKernel.vala:1048 msgid "is already installed." msgstr "är redan installerat." -#: src/Common/LinuxKernel.vala:999 +#: src/Common/LinuxKernel.vala:1058 msgid "download failed." msgstr "" -#: src/Common/LinuxKernel.vala:1006 src/Gtk/MainWindow.vala:548 +#: src/Common/LinuxKernel.vala:1065 src/Gtk/MainWindow.vala:552 #, fuzzy msgid "Install: no installable kernels specified" msgstr "Kommandot har inte angetts" -#: src/Common/LinuxKernel.vala:1021 +#: src/Common/LinuxKernel.vala:1080 msgid "Uninstalling selected kernels" msgstr "Avinstallera valda kärnor" -#: src/Common/LinuxKernel.vala:1028 +#: src/Common/LinuxKernel.vala:1087 #, fuzzy msgid "Not uninstalling the currently running kernel" msgstr "Avinstallera inte den kärna som körs, för närvarande" -#: src/Common/LinuxKernel.vala:1033 src/Gtk/MainWindow.vala:543 +#: src/Common/LinuxKernel.vala:1092 src/Gtk/MainWindow.vala:547 msgid "is locked" msgstr "" -#: src/Common/LinuxKernel.vala:1041 +#: src/Common/LinuxKernel.vala:1100 msgid "found" msgstr "grunda" -#: src/Common/LinuxKernel.vala:1045 +#: src/Common/LinuxKernel.vala:1104 msgid "Uninstall: no uninstallable packages found" msgstr "" -#: src/Common/LinuxKernel.vala:1081 +#: src/Common/LinuxKernel.vala:1140 #, fuzzy msgid "is the highest installed version." msgstr "Avinstallera alla utom den högsta installerade versionen" -#: src/Common/LinuxKernel.vala:1094 +#: src/Common/LinuxKernel.vala:1153 msgid "Could not find running kernel in list" msgstr "Det gick inte att hitta kernel som körs i listan" -#: src/Common/LinuxKernel.vala:1099 +#: src/Common/LinuxKernel.vala:1158 msgid "Could not find any kernels to uninstall" msgstr "Det gick inte att hitta några kärnor att avinstallera" -#: src/Common/LinuxKernel.vala:1104 +#: src/Common/LinuxKernel.vala:1163 msgid "The following kernels will be uninstalled" msgstr "Följande kärnor kommer att avinstalleras" -#: src/Common/LinuxKernel.vala:1106 +#: src/Common/LinuxKernel.vala:1165 msgid "Continue ?" msgstr "Fortsätta?" -#: src/Common/LinuxKernel.vala:1122 +#: src/Common/LinuxKernel.vala:1181 #, fuzzy msgid "No updates" msgstr "Inga uppdateringar hittades" -#: src/Common/LinuxKernel.vala:1128 +#: src/Common/LinuxKernel.vala:1187 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Installera kärnversion %s ? (j/n):" @@ -278,7 +278,7 @@ msgstr "Avinstallera angiven kärna" msgid "Uninstall specified kernels" msgstr "Avinstallera angiven kärna" -#: src/Console/AppConsole.vala:51 src/Gtk/MainWindow.vala:333 +#: src/Console/AppConsole.vala:51 src/Gtk/MainWindow.vala:337 msgid "Uninstall all but the highest installed version" msgstr "Avinstallera alla utom den högsta installerade versionen" @@ -369,7 +369,7 @@ msgstr "Kernel %s tillgängliga" msgid "Show" msgstr "Visa" -#: src/Console/AppConsole.vala:249 src/Gtk/MainWindow.vala:312 +#: src/Console/AppConsole.vala:249 src/Gtk/MainWindow.vala:316 msgid "Install" msgstr "Installera" @@ -437,69 +437,69 @@ msgstr "Status" msgid "Notes" msgstr "Anteckningar" -#: src/Gtk/MainWindow.vala:317 +#: src/Gtk/MainWindow.vala:321 msgid "Uninstall" msgstr "Avinstallera" -#: src/Gtk/MainWindow.vala:323 +#: src/Gtk/MainWindow.vala:327 msgid "Changelog, build status, etc" msgstr "" -#: src/Gtk/MainWindow.vala:332 +#: src/Gtk/MainWindow.vala:336 msgid "Uninstall Old" msgstr "Avinstallera Gamla" -#: src/Gtk/MainWindow.vala:338 +#: src/Gtk/MainWindow.vala:342 msgid "Reload" msgstr "Reload" -#: src/Gtk/MainWindow.vala:339 +#: src/Gtk/MainWindow.vala:343 msgid "Delete and reload all cached kernel info" msgstr "" -#: src/Gtk/MainWindow.vala:344 src/Gtk/SettingsDialog.vala:41 +#: src/Gtk/MainWindow.vala:348 src/Gtk/SettingsDialog.vala:41 msgid "Settings" msgstr "Inställningar" -#: src/Gtk/MainWindow.vala:349 +#: src/Gtk/MainWindow.vala:353 msgid "About" msgstr "Om" -#: src/Gtk/MainWindow.vala:354 +#: src/Gtk/MainWindow.vala:358 msgid "Exit" msgstr "Utgång" -#: src/Gtk/MainWindow.vala:435 +#: src/Gtk/MainWindow.vala:439 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Kärnuppgraderingsverktyg för Ubuntu-baserade distributioner" -#: src/Gtk/MainWindow.vala:436 +#: src/Gtk/MainWindow.vala:440 msgid "Forked" msgstr "Kluven" -#: src/Gtk/MainWindow.vala:436 +#: src/Gtk/MainWindow.vala:440 msgid "Original" msgstr "Original" -#: src/Gtk/MainWindow.vala:465 +#: src/Gtk/MainWindow.vala:469 msgid "Updating kernels" msgstr "Uppdatera kärnor" -#: src/Gtk/MainWindow.vala:525 +#: src/Gtk/MainWindow.vala:529 msgid "available" msgstr "tillgänglig" -#: src/Gtk/MainWindow.vala:542 +#: src/Gtk/MainWindow.vala:546 #, fuzzy msgid "is already installed" msgstr "är redan installerat." -#: src/Gtk/MainWindow.vala:544 +#: src/Gtk/MainWindow.vala:548 msgid "adding" msgstr "" -#: src/Gtk/MainWindow.vala:570 src/Gtk/MainWindow.vala:604 -#: src/Gtk/MainWindow.vala:632 +#: src/Gtk/MainWindow.vala:574 src/Gtk/MainWindow.vala:608 +#: src/Gtk/MainWindow.vala:636 msgid "DONE" msgstr "" @@ -588,6 +588,6 @@ msgstr "" msgid "Cancel" msgstr "Avbryt" -#: src/lib/l.misc.vala:107 +#: src/lib/l.misc.vala:109 msgid "Can not reach site" msgstr "Kan inte nå webbplatsen" diff --git a/po/tr.po b/po/tr.po index 2df03741..b0dae223 100644 --- a/po/tr.po +++ b/po/tr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-08 03:52-0400\n" +"POT-Creation-Date: 2023-06-09 23:18-0400\n" "PO-Revision-Date: 2022-08-06 16:48+0300\n" "Last-Translator: Sabri Ünal \n" "Language-Team: Turkish\n" @@ -13,185 +13,185 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Poedit 3.1.1\n" -#: src/Common/LinuxKernel.vala:102 +#: src/Common/LinuxKernel.vala:104 msgid "Distribution" msgstr "Dağıtım" -#: src/Common/LinuxKernel.vala:117 +#: src/Common/LinuxKernel.vala:119 msgid "Architecture" msgstr "Sistem mimarisi" -#: src/Common/LinuxKernel.vala:132 +#: src/Common/LinuxKernel.vala:134 msgid "Running kernel" msgstr "Çalışan çekirdek" -#: src/Common/LinuxKernel.vala:219 +#: src/Common/LinuxKernel.vala:221 msgid "loading cached" msgstr "önbelleğe alınmış yükleme" -#: src/Common/LinuxKernel.vala:231 +#: src/Common/LinuxKernel.vala:233 msgid "queuing download" msgstr "kuyruğa alma indirme" -#: src/Common/LinuxKernel.vala:251 +#: src/Common/LinuxKernel.vala:253 msgid "Fetching individual kernel indexes" msgstr "Tek tek çekirdek dizinlerini alma" -#: src/Common/LinuxKernel.vala:265 +#: src/Common/LinuxKernel.vala:266 msgid "loading downloaded" msgstr "indirilen yükleniyor" -#: src/Common/LinuxKernel.vala:305 +#: src/Common/LinuxKernel.vala:307 msgid "Updating from" msgstr "Şuradan güncelleniyor" -#: src/Common/LinuxKernel.vala:313 +#: src/Common/LinuxKernel.vala:315 msgid "OK" msgstr "Tamam" -#: src/Common/LinuxKernel.vala:316 +#: src/Common/LinuxKernel.vala:318 msgid "FAILED" msgstr "BAŞARISIZ" -#: src/Common/LinuxKernel.vala:381 +#: src/Common/LinuxKernel.vala:386 msgid "Found installed" msgstr "Yüklü bulundu" -#: src/Common/LinuxKernel.vala:382 +#: src/Common/LinuxKernel.vala:387 msgid "locked" msgstr "" -#: src/Common/LinuxKernel.vala:464 src/Common/LinuxKernel.vala:994 -#: src/Common/LinuxKernel.vala:1085 +#: src/Common/LinuxKernel.vala:470 src/Common/LinuxKernel.vala:1053 +#: src/Common/LinuxKernel.vala:1144 msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:660 src/Gtk/MainWindow.vala:521 +#: src/Common/LinuxKernel.vala:719 src/Gtk/MainWindow.vala:525 msgid "Running" msgstr "Çalışıyor" -#: src/Common/LinuxKernel.vala:661 +#: src/Common/LinuxKernel.vala:720 msgid "Installed" msgstr "Kurulu" -#: src/Common/LinuxKernel.vala:662 +#: src/Common/LinuxKernel.vala:721 msgid "Invalid" msgstr "Geçersiz" -#: src/Common/LinuxKernel.vala:755 +#: src/Common/LinuxKernel.vala:814 msgid "Packages Available" msgstr "Mevcut Paketler" -#: src/Common/LinuxKernel.vala:761 +#: src/Common/LinuxKernel.vala:820 msgid "Packages Installed" msgstr "Kurulu Paketler" -#: src/Common/LinuxKernel.vala:786 src/lib/TeeJee.FileSystem.vala:94 +#: src/Common/LinuxKernel.vala:845 src/lib/TeeJee.FileSystem.vala:94 msgid "File not found" msgstr "Dosya bulunamadı" -#: src/Common/LinuxKernel.vala:813 +#: src/Common/LinuxKernel.vala:872 #, fuzzy msgid "needs update" msgstr "Son güncelleme" -#: src/Common/LinuxKernel.vala:880 +#: src/Common/LinuxKernel.vala:939 msgid "Available Kernels" msgstr "Mevcut Çekirdekler" -#: src/Common/LinuxKernel.vala:914 src/Gtk/MainWindow.vala:135 +#: src/Common/LinuxKernel.vala:973 src/Gtk/MainWindow.vala:135 msgid "Kernel" msgstr "Çekirdek" -#: src/Common/LinuxKernel.vala:914 +#: src/Common/LinuxKernel.vala:973 #, fuzzy msgid "not found" msgstr "Dosya bulunamadı" -#: src/Common/LinuxKernel.vala:921 +#: src/Common/LinuxKernel.vala:980 #, fuzzy msgid "Download: no downloadable kernels specified" msgstr "Komut belirtilmedi" -#: src/Common/LinuxKernel.vala:937 +#: src/Common/LinuxKernel.vala:996 msgid "enabled" msgstr "etkin" -#: src/Common/LinuxKernel.vala:962 +#: src/Common/LinuxKernel.vala:1021 msgid "Downloading" msgstr "Indiriyor" -#: src/Common/LinuxKernel.vala:980 +#: src/Common/LinuxKernel.vala:1039 #, fuzzy msgid "Installing selected kernels" msgstr "Seçili çekirdekleri kaldırma" -#: src/Common/LinuxKernel.vala:986 src/Common/LinuxKernel.vala:1025 +#: src/Common/LinuxKernel.vala:1045 src/Common/LinuxKernel.vala:1084 #, fuzzy msgid "Requested" msgstr "istenen" -#: src/Common/LinuxKernel.vala:989 +#: src/Common/LinuxKernel.vala:1048 msgid "is already installed." msgstr "zaten yüklü." -#: src/Common/LinuxKernel.vala:999 +#: src/Common/LinuxKernel.vala:1058 msgid "download failed." msgstr "" -#: src/Common/LinuxKernel.vala:1006 src/Gtk/MainWindow.vala:548 +#: src/Common/LinuxKernel.vala:1065 src/Gtk/MainWindow.vala:552 #, fuzzy msgid "Install: no installable kernels specified" msgstr "Komut belirtilmedi" -#: src/Common/LinuxKernel.vala:1021 +#: src/Common/LinuxKernel.vala:1080 msgid "Uninstalling selected kernels" msgstr "Seçili çekirdekleri kaldırma" -#: src/Common/LinuxKernel.vala:1028 +#: src/Common/LinuxKernel.vala:1087 #, fuzzy msgid "Not uninstalling the currently running kernel" msgstr "çalışmakta olan çekirdeğin kaldırılmaması" -#: src/Common/LinuxKernel.vala:1033 src/Gtk/MainWindow.vala:543 +#: src/Common/LinuxKernel.vala:1092 src/Gtk/MainWindow.vala:547 msgid "is locked" msgstr "" -#: src/Common/LinuxKernel.vala:1041 +#: src/Common/LinuxKernel.vala:1100 msgid "found" msgstr "kurmak" -#: src/Common/LinuxKernel.vala:1045 +#: src/Common/LinuxKernel.vala:1104 msgid "Uninstall: no uninstallable packages found" msgstr "" -#: src/Common/LinuxKernel.vala:1081 +#: src/Common/LinuxKernel.vala:1140 #, fuzzy msgid "is the highest installed version." msgstr "En yüksek yüklü sürüm dışındaki tüm sürümleri kaldırın" -#: src/Common/LinuxKernel.vala:1094 +#: src/Common/LinuxKernel.vala:1153 msgid "Could not find running kernel in list" msgstr "Listede çalışan çekirdek bulunamadı" -#: src/Common/LinuxKernel.vala:1099 +#: src/Common/LinuxKernel.vala:1158 msgid "Could not find any kernels to uninstall" msgstr "Kaldırılacak çekirdek bulunamadı" -#: src/Common/LinuxKernel.vala:1104 +#: src/Common/LinuxKernel.vala:1163 msgid "The following kernels will be uninstalled" msgstr "Aşağıdaki çekirdekler kaldırılacaktır" -#: src/Common/LinuxKernel.vala:1106 +#: src/Common/LinuxKernel.vala:1165 msgid "Continue ?" msgstr "Devam edilsin mi?" -#: src/Common/LinuxKernel.vala:1122 +#: src/Common/LinuxKernel.vala:1181 #, fuzzy msgid "No updates" msgstr "Güncelleme bulunamadı" -#: src/Common/LinuxKernel.vala:1128 +#: src/Common/LinuxKernel.vala:1187 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Linux Çekirdek Sürümü %s Kurulsun mu? (e/h): " @@ -279,7 +279,7 @@ msgstr "Belirtilen çekirdeğini kaldır" msgid "Uninstall specified kernels" msgstr "Belirtilen çekirdeğini kaldır" -#: src/Console/AppConsole.vala:51 src/Gtk/MainWindow.vala:333 +#: src/Console/AppConsole.vala:51 src/Gtk/MainWindow.vala:337 msgid "Uninstall all but the highest installed version" msgstr "En yüksek yüklü sürüm dışındaki tüm sürümleri kaldırın" @@ -371,7 +371,7 @@ msgstr "Çekirdek %s Kullanılabilir" msgid "Show" msgstr "Göster" -#: src/Console/AppConsole.vala:249 src/Gtk/MainWindow.vala:312 +#: src/Console/AppConsole.vala:249 src/Gtk/MainWindow.vala:316 msgid "Install" msgstr "Kur" @@ -439,69 +439,69 @@ msgstr "Durum" msgid "Notes" msgstr "Notlar" -#: src/Gtk/MainWindow.vala:317 +#: src/Gtk/MainWindow.vala:321 msgid "Uninstall" msgstr "Kaldır" -#: src/Gtk/MainWindow.vala:323 +#: src/Gtk/MainWindow.vala:327 msgid "Changelog, build status, etc" msgstr "" -#: src/Gtk/MainWindow.vala:332 +#: src/Gtk/MainWindow.vala:336 msgid "Uninstall Old" msgstr "Eskileri Kaldır" -#: src/Gtk/MainWindow.vala:338 +#: src/Gtk/MainWindow.vala:342 msgid "Reload" msgstr "Arjantin" -#: src/Gtk/MainWindow.vala:339 +#: src/Gtk/MainWindow.vala:343 msgid "Delete and reload all cached kernel info" msgstr "" -#: src/Gtk/MainWindow.vala:344 src/Gtk/SettingsDialog.vala:41 +#: src/Gtk/MainWindow.vala:348 src/Gtk/SettingsDialog.vala:41 msgid "Settings" msgstr "Ayarlar" -#: src/Gtk/MainWindow.vala:349 +#: src/Gtk/MainWindow.vala:353 msgid "About" msgstr "Hakkında" -#: src/Gtk/MainWindow.vala:354 +#: src/Gtk/MainWindow.vala:358 msgid "Exit" msgstr "Çıkış" -#: src/Gtk/MainWindow.vala:435 +#: src/Gtk/MainWindow.vala:439 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Ubuntu tabanlı dağıtımlar için çekirdek güncelleme aracı" -#: src/Gtk/MainWindow.vala:436 +#: src/Gtk/MainWindow.vala:440 msgid "Forked" msgstr "Çatallandı" -#: src/Gtk/MainWindow.vala:436 +#: src/Gtk/MainWindow.vala:440 msgid "Original" msgstr "Özgün" -#: src/Gtk/MainWindow.vala:465 +#: src/Gtk/MainWindow.vala:469 msgid "Updating kernels" msgstr "Çekirdekleri güncelleme" -#: src/Gtk/MainWindow.vala:525 +#: src/Gtk/MainWindow.vala:529 msgid "available" msgstr "mevcut" -#: src/Gtk/MainWindow.vala:542 +#: src/Gtk/MainWindow.vala:546 #, fuzzy msgid "is already installed" msgstr "zaten yüklü." -#: src/Gtk/MainWindow.vala:544 +#: src/Gtk/MainWindow.vala:548 msgid "adding" msgstr "" -#: src/Gtk/MainWindow.vala:570 src/Gtk/MainWindow.vala:604 -#: src/Gtk/MainWindow.vala:632 +#: src/Gtk/MainWindow.vala:574 src/Gtk/MainWindow.vala:608 +#: src/Gtk/MainWindow.vala:636 msgid "DONE" msgstr "" @@ -590,6 +590,6 @@ msgstr "" msgid "Cancel" msgstr "İptal Et" -#: src/lib/l.misc.vala:107 +#: src/lib/l.misc.vala:109 msgid "Can not reach site" msgstr "Siteye ulaşılamıyor" diff --git a/po/uk.po b/po/uk.po index 0682a021..a3d73add 100644 --- a/po/uk.po +++ b/po/uk.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-08 03:52-0400\n" +"POT-Creation-Date: 2023-06-09 23:18-0400\n" "PO-Revision-Date: 2019-07-25 11:00+0300\n" "Last-Translator: Serhii Golovko \n" "Language-Team: Ukranian\n" @@ -13,179 +13,179 @@ msgstr "" "X-Launchpad-Export-Date: 2016-12-13 11:48+0000\n" "X-Generator: Poedit 2.2.1\n" -#: src/Common/LinuxKernel.vala:102 +#: src/Common/LinuxKernel.vala:104 msgid "Distribution" msgstr "Дистрибутив" -#: src/Common/LinuxKernel.vala:117 +#: src/Common/LinuxKernel.vala:119 msgid "Architecture" msgstr "Системна архитектура" -#: src/Common/LinuxKernel.vala:132 +#: src/Common/LinuxKernel.vala:134 msgid "Running kernel" msgstr "Запуск ядра" -#: src/Common/LinuxKernel.vala:219 +#: src/Common/LinuxKernel.vala:221 msgid "loading cached" msgstr "Завантаження кешованого" -#: src/Common/LinuxKernel.vala:231 +#: src/Common/LinuxKernel.vala:233 msgid "queuing download" msgstr "Черга завантаження" -#: src/Common/LinuxKernel.vala:251 +#: src/Common/LinuxKernel.vala:253 msgid "Fetching individual kernel indexes" msgstr "Вибірка окремих індексів ядра" -#: src/Common/LinuxKernel.vala:265 +#: src/Common/LinuxKernel.vala:266 msgid "loading downloaded" msgstr "Завантаження завантаженого" -#: src/Common/LinuxKernel.vala:305 +#: src/Common/LinuxKernel.vala:307 msgid "Updating from" msgstr "Оновлення з" -#: src/Common/LinuxKernel.vala:313 +#: src/Common/LinuxKernel.vala:315 msgid "OK" msgstr "Добре" -#: src/Common/LinuxKernel.vala:316 +#: src/Common/LinuxKernel.vala:318 msgid "FAILED" msgstr "НЕ ВДАЛОСЯ" -#: src/Common/LinuxKernel.vala:381 +#: src/Common/LinuxKernel.vala:386 msgid "Found installed" msgstr "Знайдено встановленим" -#: src/Common/LinuxKernel.vala:382 +#: src/Common/LinuxKernel.vala:387 msgid "locked" msgstr "заблокований" -#: src/Common/LinuxKernel.vala:464 src/Common/LinuxKernel.vala:994 -#: src/Common/LinuxKernel.vala:1085 +#: src/Common/LinuxKernel.vala:470 src/Common/LinuxKernel.vala:1053 +#: src/Common/LinuxKernel.vala:1144 msgid "is locked." msgstr "заблоковано." -#: src/Common/LinuxKernel.vala:660 src/Gtk/MainWindow.vala:521 +#: src/Common/LinuxKernel.vala:719 src/Gtk/MainWindow.vala:525 msgid "Running" msgstr "Використовується" -#: src/Common/LinuxKernel.vala:661 +#: src/Common/LinuxKernel.vala:720 msgid "Installed" msgstr "Встановлено" -#: src/Common/LinuxKernel.vala:662 +#: src/Common/LinuxKernel.vala:721 msgid "Invalid" msgstr "Інвалід" -#: src/Common/LinuxKernel.vala:755 +#: src/Common/LinuxKernel.vala:814 msgid "Packages Available" msgstr "Доступні пакети" -#: src/Common/LinuxKernel.vala:761 +#: src/Common/LinuxKernel.vala:820 msgid "Packages Installed" msgstr "Встановлені пакети" -#: src/Common/LinuxKernel.vala:786 src/lib/TeeJee.FileSystem.vala:94 +#: src/Common/LinuxKernel.vala:845 src/lib/TeeJee.FileSystem.vala:94 msgid "File not found" msgstr "Файл не знайдено" -#: src/Common/LinuxKernel.vala:813 +#: src/Common/LinuxKernel.vala:872 #, fuzzy msgid "needs update" msgstr "Останнє оновлення" -#: src/Common/LinuxKernel.vala:880 +#: src/Common/LinuxKernel.vala:939 msgid "Available Kernels" msgstr "Доступні ядра" -#: src/Common/LinuxKernel.vala:914 src/Gtk/MainWindow.vala:135 +#: src/Common/LinuxKernel.vala:973 src/Gtk/MainWindow.vala:135 msgid "Kernel" msgstr "Ядро" -#: src/Common/LinuxKernel.vala:914 +#: src/Common/LinuxKernel.vala:973 msgid "not found" msgstr "не знайдено" -#: src/Common/LinuxKernel.vala:921 +#: src/Common/LinuxKernel.vala:980 msgid "Download: no downloadable kernels specified" msgstr "Завантажити: ядра для завантаження не вказано" -#: src/Common/LinuxKernel.vala:937 +#: src/Common/LinuxKernel.vala:996 msgid "enabled" msgstr "увімкнено" -#: src/Common/LinuxKernel.vala:962 +#: src/Common/LinuxKernel.vala:1021 msgid "Downloading" msgstr "Завантаження" -#: src/Common/LinuxKernel.vala:980 +#: src/Common/LinuxKernel.vala:1039 msgid "Installing selected kernels" msgstr "Встановлення обраних ядер" -#: src/Common/LinuxKernel.vala:986 src/Common/LinuxKernel.vala:1025 +#: src/Common/LinuxKernel.vala:1045 src/Common/LinuxKernel.vala:1084 msgid "Requested" msgstr "Запитуваний" -#: src/Common/LinuxKernel.vala:989 +#: src/Common/LinuxKernel.vala:1048 msgid "is already installed." msgstr "вже встановлено." -#: src/Common/LinuxKernel.vala:999 +#: src/Common/LinuxKernel.vala:1058 msgid "download failed." msgstr "не вдалося завантажити." -#: src/Common/LinuxKernel.vala:1006 src/Gtk/MainWindow.vala:548 +#: src/Common/LinuxKernel.vala:1065 src/Gtk/MainWindow.vala:552 #, fuzzy msgid "Install: no installable kernels specified" msgstr "Встановити: ядра, які можна встановити, не вказано" -#: src/Common/LinuxKernel.vala:1021 +#: src/Common/LinuxKernel.vala:1080 msgid "Uninstalling selected kernels" msgstr "Видаліть конкретні ядра" -#: src/Common/LinuxKernel.vala:1028 +#: src/Common/LinuxKernel.vala:1087 msgid "Not uninstalling the currently running kernel" msgstr "Не видалення поточного запущеного ядра" -#: src/Common/LinuxKernel.vala:1033 src/Gtk/MainWindow.vala:543 +#: src/Common/LinuxKernel.vala:1092 src/Gtk/MainWindow.vala:547 msgid "is locked" msgstr "заблоковано" -#: src/Common/LinuxKernel.vala:1041 +#: src/Common/LinuxKernel.vala:1100 msgid "found" msgstr "знайдено" -#: src/Common/LinuxKernel.vala:1045 +#: src/Common/LinuxKernel.vala:1104 msgid "Uninstall: no uninstallable packages found" msgstr "Видалити: пакетів, які можна видалити, не знайдено" -#: src/Common/LinuxKernel.vala:1081 +#: src/Common/LinuxKernel.vala:1140 msgid "is the highest installed version." msgstr "є найвищою встановленою версією." -#: src/Common/LinuxKernel.vala:1094 +#: src/Common/LinuxKernel.vala:1153 msgid "Could not find running kernel in list" msgstr "Не вдалося знайти запущене ядро у списку!" -#: src/Common/LinuxKernel.vala:1099 +#: src/Common/LinuxKernel.vala:1158 msgid "Could not find any kernels to uninstall" msgstr "Не вдалося знайти жодне ядро для вилучення" -#: src/Common/LinuxKernel.vala:1104 +#: src/Common/LinuxKernel.vala:1163 msgid "The following kernels will be uninstalled" msgstr "Наступні ядра будуть видалені" -#: src/Common/LinuxKernel.vala:1106 +#: src/Common/LinuxKernel.vala:1165 msgid "Continue ?" msgstr "Продовжувати ?" -#: src/Common/LinuxKernel.vala:1122 +#: src/Common/LinuxKernel.vala:1181 #, fuzzy msgid "No updates" msgstr "Оновлень не знайдено" -#: src/Common/LinuxKernel.vala:1128 +#: src/Common/LinuxKernel.vala:1187 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Встановити Ядро Версії %s ? (так/ні): " @@ -269,7 +269,7 @@ msgstr "Встановити вказані ядра" msgid "Uninstall specified kernels" msgstr "Видалити вказані ядра" -#: src/Console/AppConsole.vala:51 src/Gtk/MainWindow.vala:333 +#: src/Console/AppConsole.vala:51 src/Gtk/MainWindow.vala:337 msgid "Uninstall all but the highest installed version" msgstr "Видаліть усі, крім найвищої встановленої версії" @@ -358,7 +358,7 @@ msgstr "Ядро %s Доступне" msgid "Show" msgstr "Показати" -#: src/Console/AppConsole.vala:249 src/Gtk/MainWindow.vala:312 +#: src/Console/AppConsole.vala:249 src/Gtk/MainWindow.vala:316 msgid "Install" msgstr "Встановити" @@ -426,69 +426,69 @@ msgstr "Стан" msgid "Notes" msgstr "Нотатки" -#: src/Gtk/MainWindow.vala:317 +#: src/Gtk/MainWindow.vala:321 msgid "Uninstall" msgstr "Видалити" -#: src/Gtk/MainWindow.vala:323 +#: src/Gtk/MainWindow.vala:327 msgid "Changelog, build status, etc" msgstr "Журнал змін, статус збірки тощо" -#: src/Gtk/MainWindow.vala:332 +#: src/Gtk/MainWindow.vala:336 msgid "Uninstall Old" msgstr "Видалити старе" -#: src/Gtk/MainWindow.vala:338 +#: src/Gtk/MainWindow.vala:342 msgid "Reload" msgstr "Перезавантажити" -#: src/Gtk/MainWindow.vala:339 +#: src/Gtk/MainWindow.vala:343 msgid "Delete and reload all cached kernel info" msgstr "Видаліть і перезавантажте всю кешовану інформацію про ядро" -#: src/Gtk/MainWindow.vala:344 src/Gtk/SettingsDialog.vala:41 +#: src/Gtk/MainWindow.vala:348 src/Gtk/SettingsDialog.vala:41 msgid "Settings" msgstr "Налаштування" -#: src/Gtk/MainWindow.vala:349 +#: src/Gtk/MainWindow.vala:353 msgid "About" msgstr "Про программу" -#: src/Gtk/MainWindow.vala:354 +#: src/Gtk/MainWindow.vala:358 msgid "Exit" msgstr "Вихід" -#: src/Gtk/MainWindow.vala:435 +#: src/Gtk/MainWindow.vala:439 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Програма оновлення ядра для дистрибутивів на базі Ubuntu" -#: src/Gtk/MainWindow.vala:436 +#: src/Gtk/MainWindow.vala:440 msgid "Forked" msgstr "Двоєний" -#: src/Gtk/MainWindow.vala:436 +#: src/Gtk/MainWindow.vala:440 msgid "Original" msgstr "Оригінал" -#: src/Gtk/MainWindow.vala:465 +#: src/Gtk/MainWindow.vala:469 msgid "Updating kernels" msgstr "Оновлення ядер" -#: src/Gtk/MainWindow.vala:525 +#: src/Gtk/MainWindow.vala:529 msgid "available" msgstr "доступний" -#: src/Gtk/MainWindow.vala:542 +#: src/Gtk/MainWindow.vala:546 #, fuzzy msgid "is already installed" msgstr "вже встановлено." -#: src/Gtk/MainWindow.vala:544 +#: src/Gtk/MainWindow.vala:548 msgid "adding" msgstr "" -#: src/Gtk/MainWindow.vala:570 src/Gtk/MainWindow.vala:604 -#: src/Gtk/MainWindow.vala:632 +#: src/Gtk/MainWindow.vala:574 src/Gtk/MainWindow.vala:608 +#: src/Gtk/MainWindow.vala:636 msgid "DONE" msgstr "ГОТОВО" @@ -577,6 +577,6 @@ msgstr "" msgid "Cancel" msgstr "Відміна" -#: src/lib/l.misc.vala:107 +#: src/lib/l.misc.vala:109 msgid "Can not reach site" msgstr "Не вдається дістатися до сайту" diff --git a/src/Common/DownloadManager.vala b/src/Common/DownloadManager.vala index 85ef8252..a0017f21 100644 --- a/src/Common/DownloadManager.vala +++ b/src/Common/DownloadManager.vala @@ -170,9 +170,6 @@ public class DownloadTask : AsyncTask { return true; } - - protected override void finish_task() { - } } public class DownloadItem : GLib.Object { diff --git a/src/Common/LinuxKernel.vala b/src/Common/LinuxKernel.vala index 330ebda3..8a541082 100644 --- a/src/Common/LinuxKernel.vala +++ b/src/Common/LinuxKernel.vala @@ -14,7 +14,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { public int version_major = -1; public int version_minor = -1; - public int version_point = -1; + public int version_micro = -1; public int version_rc = -1; public string version_extra = ""; public string version_sort = ""; @@ -26,6 +26,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { public bool is_installed = false; public bool is_running = false; public bool is_mainline = true; + public bool is_unstable = false; public int ppa_dirs_ver = 0; // 0 = not set, 1 = old single dirs, 2 = new // subdirs public int64 ppa_datetime = -1; // timestamp from the main index @@ -48,11 +49,12 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { public static LinuxKernel kernel_latest_installed; public static LinuxKernel kernel_oldest_installed; public static LinuxKernel kernel_last_stable_ppa_dirs_v1; - public static LinuxKernel kernel_last_rc_ppa_dirs_v1; + public static LinuxKernel kernel_last_unstable_ppa_dirs_v1; //public static LinuxKernel kernel_last_stable_ppa_dirs_v2; // if the site changes again - //public static LinuxKernel kernel_last_rc_ppa_dirs_v2; + //public static LinuxKernel kernel_last_unstable_ppa_dirs_v2; public static Gee.ArrayList kernel_list = new Gee.ArrayList(); + public static Gee.ArrayList kall = new Gee.ArrayList(); public static Regex rex_header = null; public static Regex rex_header_all = null; @@ -84,9 +86,9 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { // ./CHECKSUMS vs .//CHECKSUMS // ./BUILT vs .//status kernel_last_stable_ppa_dirs_v1 = new LinuxKernel("5.6.17"); - kernel_last_rc_ppa_dirs_v1 = new LinuxKernel("5.7-rc7"); - //kernel_last_stable_ppa_dirs_v2 = new LinuxKernel("5.6.17"); // if the site changes again - //kernel_last_rc_ppa_dirs_v2 = new LinuxKernel("5.7-rc7"); + kernel_last_unstable_ppa_dirs_v1 = new LinuxKernel("5.7-rc7"); + //kernel_last_stable_ppa_dirs_v2 = new LinuxKernel("x.y.z"); // if the site changes again + //kernel_last_unstable_ppa_dirs_v2 = new LinuxKernel("x.y-rcZ"); } @@ -222,10 +224,10 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { if (k.is_invalid) continue; - if (!k.is_installed) { - if (k.version_major < THRESHOLD_MAJOR) continue; - if (App.hide_unstable && k.version_rc>=0) continue; - } + // don't try to filter here yet + // we don't have is_installed yet until after check_installed() + // and we need everything above threshold major in the list + // to recognize already-installed rc even if rc are disabled now // add index.html to download list vprint(_("queuing download")+" "+k.version_main,3); @@ -252,9 +254,8 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { // while downloading while (mgr.is_running()) { - App.progress_count = mgr.prg_count; // also used by the progress indicator in MainWindow.vala - pbar(App.progress_count,App.progress_total,"(files)"); - //pbar(App.progress_count,App.progress_total); + App.progress_count = mgr.prg_count; + pbar(App.progress_count,App.progress_total); sleep(250); if (notifier != null) notifier(timer, ref count); } @@ -270,6 +271,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { } check_installed(); + trim_cache(); check_updates(); // This is here because it had to be delayed from whenever settings @@ -328,9 +330,10 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { if (!file_exists(cif)) return; string txt = file_read(cif); kernel_list.clear(); + kall.clear(); try { - var rex = new Regex("""href="(v[0-9][a-zA-Z0-9\-._\/]+)".+>[\t ]*([0-9]{4})-([0-9]{2})-([0-9]{2})[\t ]+([0-9]{2}):([0-9]{2})[\t ]*<"""); + var rex = new Regex("""href="(v.+/)".+>[\t ]*([0-9]{4})-([0-9]{2})-([0-9]{2})[\t ]+([0-9]{2}):([0-9]{2})[\t ]*<"""); // [DIR]v2.6.27.61/2018-05-13 20:40 -   // ########### #### ## ## ## ## // fetch(1) 2 3 4 5 6 @@ -342,16 +345,18 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { v = mi.fetch(1); var k = new LinuxKernel(v); - if (k.version_major=0 && App.hide_unstable)) { - if (File.parse_name(k.cache_subdir).query_exists()) delete_r(k.cache_subdir); - continue; - } + // Don't try to exclude unstable here, just k.version_major

Up-j@C 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 literal 0 HcmV?d00001 diff --git a/settings.jpg b/settings.jpg new file mode 100644 index 0000000000000000000000000000000000000000..85b3a8294d9c7a9307bec20b9520c615e324a8f4 GIT binary patch literal 63584 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 Date: Sat, 24 Jun 2023 04:01:56 -0400 Subject: [PATCH 450/567] readme --- README.md.src | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/README.md.src b/README.md.src index bdc90f39..d012e4c9 100644 --- a/README.md.src +++ b/README.md.src @@ -164,6 +164,8 @@ Sorting on the "Notes" column is a way to see all kernels that have any notes to * Add commandline flags for all settings. Currently the console app is controlled by several settings that it has no way to edit or override, other than by the user manually editing config.json # hint -`sudo apt install cool-retro-term` then select it under "terminal window" in settings. -![settings](settings.jpg) +`sudo apt install cool-retro-term` then select it under "terminal window" in settings. + +![settings](settings.jpg) + ![cool-retro-term](cool-retro-term.jpg) From 19c275ba7c90e59561b0520a8f809cd48ec34683 Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Sat, 24 Jun 2023 04:02:25 -0400 Subject: [PATCH 451/567] readme --- README.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 45c601c5..677039eb 100644 --- a/README.md +++ b/README.md @@ -164,6 +164,8 @@ Sorting on the "Notes" column is a way to see all kernels that have any notes to * Add commandline flags for all settings. Currently the console app is controlled by several settings that it has no way to edit or override, other than by the user manually editing config.json # hint -`sudo apt install cool-retro-term` then select it under "terminal window" in settings. -![settings](settings.jpg) +`sudo apt install cool-retro-term` then select it under "terminal window" in settings. + +![settings](settings.jpg) + ![cool-retro-term](cool-retro-term.jpg) From 6d7d562e1ddb50015d6bfb02db9be05f72459b87 Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Sat, 24 Jun 2023 04:03:40 -0400 Subject: [PATCH 452/567] readme --- README.md | 3 ++- README.md.src | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 677039eb..2c363604 100644 --- a/README.md +++ b/README.md @@ -164,7 +164,8 @@ Sorting on the "Notes" column is a way to see all kernels that have any notes to * Add commandline flags for all settings. Currently the console app is controlled by several settings that it has no way to edit or override, other than by the user manually editing config.json # hint -`sudo apt install cool-retro-term` then select it under "terminal window" in settings. +`sudo apt install cool-retro-term` +then select it under "terminal window" in settings. ![settings](settings.jpg) diff --git a/README.md.src b/README.md.src index d012e4c9..69fb7b48 100644 --- a/README.md.src +++ b/README.md.src @@ -164,7 +164,8 @@ Sorting on the "Notes" column is a way to see all kernels that have any notes to * Add commandline flags for all settings. Currently the console app is controlled by several settings that it has no way to edit or override, other than by the user manually editing config.json # hint -`sudo apt install cool-retro-term` then select it under "terminal window" in settings. +`sudo apt install cool-retro-term` +then select it under "terminal window" in settings. ![settings](settings.jpg) From e2cf6f5e50de525160edfe54dffeb86e8ca3191d Mon Sep 17 00:00:00 2001 From: Danik2343 <38865696+Danik2343@users.noreply.github.com> Date: Sat, 24 Jun 2023 16:38:58 +0300 Subject: [PATCH 453/567] Update Russian Language --- po/ru.po | 62 +++++++++++++++++++++++++++++++++++++++----------------- 1 file changed, 43 insertions(+), 19 deletions(-) diff --git a/po/ru.po b/po/ru.po index 41b8cef5..fa32ee11 100644 --- a/po/ru.po +++ b/po/ru.po @@ -3,8 +3,9 @@ msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-06-24 02:38-0400\n" -"PO-Revision-Date: 2023-06-16 17:07+0300\n" -"Last-Translator: Danik2343 \n" +"PO-Revision-Date: 2023-06-24 16:38+0300\n" +"Last-Translator: Faust3000 (Original) | Danik2343 (Update Transaltion) " +"\n" "Language-Team: Russian\n" "Language: ru\n" "MIME-Version: 1.0\n" @@ -187,18 +188,17 @@ msgid "The following kernels will be uninstalled" msgstr "Следующие ядра будут удалены" #: src/Common/LinuxKernel.vala:1109 -#, fuzzy msgid "Continue? (y/N): " -msgstr "Продолжить ?" +msgstr "Продолжить? (y/N): " #: src/Common/LinuxKernel.vala:1123 msgid "No updates" msgstr "Нет обнолений" #: src/Common/LinuxKernel.vala:1125 -#, fuzzy, c-format +#, c-format msgid "Install Kernel Version %s ? (y/N): " -msgstr "Установить версию ядра %s ? (y/n): " +msgstr "Установить версию ядра %s ? (y/N): " #: src/Common/Main.vala:197 msgid "Missing Thread support in Glib." @@ -292,7 +292,7 @@ msgstr "Удаление кэшированной информации о дос #: src/Console/AppConsole.vala:45 msgid "This help" -msgstr "" +msgstr "Это справка" #: src/Console/AppConsole.vala:47 src/Gtk/AppGtk.vala:56 msgid "Options" @@ -316,7 +316,7 @@ msgstr "Предполагать \"Да\" для всех запросов (не #: src/Console/AppConsole.vala:53 msgid "Pause for keypress before exiting (for external terminal)" -msgstr "" +msgstr "Приостановить нажатия клавиш перед выходом (для внешнего терминала)" #: src/Console/AppConsole.vala:56 msgid "One or more version strings taken from the output of --list" @@ -344,9 +344,8 @@ msgid "Error deleting" msgstr "Ошибка удаления" #: src/Console/AppConsole.vala:212 -#, fuzzy msgid "Unknown command" -msgstr "Неизвестный параметр" +msgstr "Неизвестная команда" #: src/Console/AppConsole.vala:223 msgid "Latest update" @@ -454,17 +453,18 @@ msgid "" "A tool for installing kernel packages\n" "from the Ubuntu Mainline Kernels PPA" msgstr "" +"Инструмент для установки пакетов ядра\n" +"из пакета Ubuntu Mainline Kernels PPA" #: src/Gtk/MainWindow.vala:415 msgid "Original" -msgstr "" +msgstr "Оригинал" #: src/Gtk/MainWindow.vala:416 msgid "Forked" -msgstr "" +msgstr "Форк" #: src/Gtk/MainWindow.vala:447 -#, fuzzy msgid "Updating kernels" msgstr "Обновление ядер" @@ -593,9 +593,8 @@ msgid "Proxy" msgstr "Доверенность" #: src/Gtk/SettingsDialog.vala:222 -#, fuzzy msgid "External Commands" -msgstr "Комманды" +msgstr "Внешние команды" #: src/Gtk/SettingsDialog.vala:249 #, c-format @@ -608,18 +607,25 @@ msgid "" "with the dpkg command, otherwise it will be appended to the end.\n" "See \"su -c\" in the drop down list for an example of that.\n" msgstr "" +"Команда, используемая для запуска dpkg с правами root.\n" +"\n" +"Если синтаксис командной строки программ auth требует, чтобы команда execute " +"была заключена в кавычки, а не просто добавлена в конец командной строки, вы " +"можете включить в строку %s, и он будет заменен командой dpkg, в противном " +"случае он будет добавлен в конец.\n" +"Пример этого см. в выпадающем списке \"su -c\".\n" #: src/Gtk/SettingsDialog.vala:279 msgid "Terminal command used to run" -msgstr "" +msgstr "Команда терминала, используемая для запуска" #: src/Gtk/SettingsDialog.vala:280 msgid "Example" -msgstr "" +msgstr "Пример" #: src/Gtk/SettingsDialog.vala:280 msgid "will result in" -msgstr "" +msgstr "приведет к" #: src/Gtk/SettingsDialog.vala:282 #, c-format @@ -642,6 +648,24 @@ msgid "" "\n" "Edit the command to customize the appearance of the terminal." msgstr "" +"Если синтаксис командной строки терминальных программ требует, чтобы команда " +"execute была заключена в кавычки, а не просто добавлена в конец командной " +"строки, вы можете включить в строку %s, и он будет заменен командой install, " +"в противном случае он будет добавлен в конец.\n" +"Пример этого см. в выпадающем списке мат-терминал.\n" +"\n" +"Вы можете написать любую командную строку, какую хотите, но указанная " +"программа должна оставаться на переднем плане и блокировать выполнение " +"команды, а не форкать и возвращаться немедленно.\n" +"Большинство терминальных программ по умолчанию работают нормально, но " +"некоторые требуют специальных флагов командной строки, а некоторые вообще не " +"могут быть использованы.\n" +"\n" +"Примеры:\n" +"gnome-terminal можно заставить блокироваться, используя опцию --wait.\n" +"xfce4-terminal не может быть заблокирован.\n" +"\n" +"Отредактируйте команду, чтобы настроить внешний вид терминала." #: src/Gtk/SettingsDialog.vala:299 msgid "Done" @@ -666,4 +690,4 @@ msgstr "Закрыть" #: src/lib/l.misc.vala:12 msgid "Proceed? (y/N): " -msgstr "" +msgstr "Приступить? (y/N): " From ad8261a13f03414235d70b0c599dffca2eb36e43 Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Sat, 24 Jun 2023 16:47:57 -0400 Subject: [PATCH 454/567] readme & help --- README.md | 24 ++++++++-- README.md.src | 24 ++++++++-- TRANSLATORS | 2 +- po/de.po | 91 +++++++++++++++++++----------------- po/el.po | 91 +++++++++++++++++++----------------- po/es.po | 91 +++++++++++++++++++----------------- po/fr.po | 91 +++++++++++++++++++----------------- po/hr.po | 91 +++++++++++++++++++----------------- po/it.po | 91 +++++++++++++++++++----------------- po/ko.po | 91 +++++++++++++++++++----------------- po/messages.pot | 90 ++++++++++++++++++----------------- po/nl.po | 91 +++++++++++++++++++----------------- po/pl.po | 93 ++++++++++++++++++++----------------- po/ru.po | 93 ++++++++++++++++++++----------------- po/sv.po | 91 +++++++++++++++++++----------------- po/tr.po | 91 +++++++++++++++++++----------------- po/uk.po | 93 ++++++++++++++++++++----------------- src/Console/AppConsole.vala | 18 +++---- 18 files changed, 740 insertions(+), 607 deletions(-) diff --git a/README.md b/README.md index 2c363604..c0396d93 100644 --- a/README.md +++ b/README.md @@ -134,10 +134,17 @@ Sorting on the "Notes" column is a way to see all kernels that have any notes to 3 = more verbose 4 = even more 5+ mostly just for uncommenting things in the code and recompiling, not really useful in the release builds + + A few lines of output are printed before the commandline has been parsed, so `-v 0` doesn't silence them. + The environment variable is read earlier in the process and can silence all output. + `VERBOSE=0 mainline --install-latest --yes` + + The exit value is also meaningful. + `VERBOSE=0 ;mainline --install-latest --yes && mainline --uninstall-old --yes` * If **Uninstall Old** doesn't remove some distribution kernel packages - Use the normal package manager like apt or synaptic to remove the parent meta-package: - ```$ sudo apt remove linux-image-generic``` + Use your normal package manager like apt or synaptic to remove the parent meta-package: + `$ sudo apt remove linux-image-generic` Then **Uninstall Old** should successfully remove everything. * Secure Boot @@ -163,9 +170,16 @@ Sorting on the "Notes" column is a way to see all kernels that have any notes to * Support all installable kernel variants, not just "-generic" * Add commandline flags for all settings. Currently the console app is controlled by several settings that it has no way to edit or override, other than by the user manually editing config.json -# hint -`sudo apt install cool-retro-term` -then select it under "terminal window" in settings. +# hints +* The `--install-latest` and `--yes` options could be used in a cron job to always have the latest kernel installed. +``` +$ sudo cat >/etc/cron.d/mainline <<%EOF +# Check for new kernels on kernel.ubuntu.com every 4 hours +* */4 * * * root VERBOSE=0 ;mainline --install-latest --yes && mainline --uninstall-old --yes +%EOF +``` + +* `sudo apt install cool-retro-term` ![settings](settings.jpg) diff --git a/README.md.src b/README.md.src index 69fb7b48..4c25acdf 100644 --- a/README.md.src +++ b/README.md.src @@ -134,10 +134,17 @@ Sorting on the "Notes" column is a way to see all kernels that have any notes to 3 = more verbose 4 = even more 5+ mostly just for uncommenting things in the code and recompiling, not really useful in the release builds + + A few lines of output are printed before the commandline has been parsed, so `-v 0` doesn't silence them. + The environment variable is read earlier in the process and can silence all output. + `VERBOSE=0 BRANDING_SHORTNAME --install-latest --yes` + + The exit value is also meaningful. + `VERBOSE=0 ;BRANDING_SHORTNAME --install-latest --yes && BRANDING_SHORTNAME --uninstall-old --yes` * If **Uninstall Old** doesn't remove some distribution kernel packages - Use the normal package manager like apt or synaptic to remove the parent meta-package: - ```$ sudo apt remove linux-image-generic``` + Use your normal package manager like apt or synaptic to remove the parent meta-package: + `$ sudo apt remove linux-image-generic` Then **Uninstall Old** should successfully remove everything. * Secure Boot @@ -163,9 +170,16 @@ Sorting on the "Notes" column is a way to see all kernels that have any notes to * Support all installable kernel variants, not just "-generic" * Add commandline flags for all settings. Currently the console app is controlled by several settings that it has no way to edit or override, other than by the user manually editing config.json -# hint -`sudo apt install cool-retro-term` -then select it under "terminal window" in settings. +# hints +* The `--install-latest` and `--yes` options could be used in a cron job to always have the latest kernel installed. +``` +$ sudo cat >/etc/cron.d/mainline <<%EOF +# Check for new kernels on kernel.ubuntu.com every 4 hours +* */4 * * * root VERBOSE=0 ;BRANDING_SHORTNAME --install-latest --yes && BRANDING_SHORTNAME --uninstall-old --yes +%EOF +``` + +* `sudo apt install cool-retro-term` ![settings](settings.jpg) diff --git a/TRANSLATORS b/TRANSLATORS index 04681eee..afc5d196 100644 --- a/TRANSLATORS +++ b/TRANSLATORS @@ -7,7 +7,7 @@ it: Demetrio Mendozzi ko: Kevin Kim nl: Heimen Stoffels pl: Matthaiks -ru: Danik2343 +ru: Faust3000 (Original) | Danik2343 (Update Transaltio sv: Åke Engelbrektson tr: Sabri Ünal uk: Serhii Golovko diff --git a/po/de.po b/po/de.po index a7b0ea28..8f5363c1 100644 --- a/po/de.po +++ b/po/de.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-24 02:38-0400\n" +"POT-Creation-Date: 2023-06-24 16:28-0400\n" "PO-Revision-Date: 2023-02-20 18:40+0100\n" "Last-Translator: Marvin Meysel \n" "Language-Team: German\n" @@ -249,167 +249,174 @@ msgstr "Benachrichtigungen sind deaktiviert" msgid "Can not reach site" msgstr "Fehler beim lesen der Datei" -#: src/Console/AppConsole.vala:30 src/Gtk/AppGtk.vala:54 +#: src/Console/AppConsole.vala:29 +msgid "install kernel packages from kernel.ubuntu.com" +msgstr "" + +#: src/Console/AppConsole.vala:31 src/Gtk/AppGtk.vala:54 msgid "Syntax" msgstr "Syntax" -#: src/Console/AppConsole.vala:32 +#: src/Console/AppConsole.vala:33 msgid "Commands" msgstr "Befehle" -#: src/Console/AppConsole.vala:34 +#: src/Console/AppConsole.vala:35 msgid "Check for kernel updates" msgstr "Nach Kernel-Updates suchen" -#: src/Console/AppConsole.vala:35 -msgid "Check for kernel updates and notify current user" +#: src/Console/AppConsole.vala:36 +#, fuzzy +msgid "Check for kernel updates and send a desktop notification" msgstr "" "Prüfung auf Kernel-Updates und Benachrichtigung des aktuellen Benutzers" -#: src/Console/AppConsole.vala:36 +#: src/Console/AppConsole.vala:37 #, fuzzy -msgid "List available mainline kernels" +msgid "List available kernels" msgstr "Alle verfügbaren Mainline-Kernel auflisten" -#: src/Console/AppConsole.vala:37 +#: src/Console/AppConsole.vala:38 msgid "List installed kernels" msgstr "Installierte Kernel auflisten" -#: src/Console/AppConsole.vala:38 +#: src/Console/AppConsole.vala:39 msgid "Install latest mainline kernel" msgstr "Installieren Sie den neuesten Mainline-Kernel" -#: src/Console/AppConsole.vala:39 +#: src/Console/AppConsole.vala:40 #, fuzzy msgid "Install latest point update in the current major version" msgstr "Neueste Punktaktualisierung für die aktuelle Serie installieren" -#: src/Console/AppConsole.vala:40 +#: src/Console/AppConsole.vala:41 #, fuzzy msgid "Install specified kernels" msgstr "Deinstallation des angegebenen Kernels" -#: src/Console/AppConsole.vala:41 +#: src/Console/AppConsole.vala:42 #, fuzzy msgid "Uninstall specified kernels" msgstr "Deinstallation des angegebenen Kernels" -#: src/Console/AppConsole.vala:42 src/Gtk/MainWindow.vala:340 +#: src/Console/AppConsole.vala:43 src/Gtk/MainWindow.vala:340 msgid "Uninstall all but the highest installed version" msgstr "Deinstallieren Sie alle bis auf die höchste installierte Version" -#: src/Console/AppConsole.vala:43 +#: src/Console/AppConsole.vala:44 msgid "Download specified kernels" msgstr "Herunterladen bestimmter Kernel" -#: src/Console/AppConsole.vala:44 +#: src/Console/AppConsole.vala:45 msgid "Delete cached info about available kernels" msgstr "Löschen zwischengespeicherter Informationen über verfügbare Kernel" -#: src/Console/AppConsole.vala:45 +#: src/Console/AppConsole.vala:46 msgid "This help" msgstr "" -#: src/Console/AppConsole.vala:47 src/Gtk/AppGtk.vala:56 +#: src/Console/AppConsole.vala:48 src/Gtk/AppGtk.vala:56 msgid "Options" msgstr "Optionen" -#: src/Console/AppConsole.vala:49 +#: src/Console/AppConsole.vala:50 msgid "Include unstable and RC releases" msgstr "Unstable- und RC-Versionen einschließen" -#: src/Console/AppConsole.vala:50 +#: src/Console/AppConsole.vala:51 msgid "Exclude unstable and RC releases" msgstr "Ausschluss von Unstable- und RC-Veröffentlichungen" -#: src/Console/AppConsole.vala:51 +#: src/Console/AppConsole.vala:52 msgid "Verbosity. Set to n if given, or increment." msgstr "" -#: src/Console/AppConsole.vala:52 +#: src/Console/AppConsole.vala:53 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "Alle Aufforderungen mit Ja beantworten (nicht interaktiver Modus)" -#: src/Console/AppConsole.vala:53 +#: src/Console/AppConsole.vala:54 msgid "Pause for keypress before exiting (for external terminal)" msgstr "" -#: src/Console/AppConsole.vala:56 +#: src/Console/AppConsole.vala:57 #, fuzzy msgid "One or more version strings taken from the output of --list" msgstr "Eine Versionszeichenfolge aus der Ausgabe von --list" -#: src/Console/AppConsole.vala:57 -msgid "comma, pipe, or colon-seperated, or quoted space seperated" +#: src/Console/AppConsole.vala:58 +msgid "" +"comma, pipe, colon, or space seperated. (space requires quotes or " +"backslashes)" msgstr "" -#: src/Console/AppConsole.vala:58 +#: src/Console/AppConsole.vala:59 #, fuzzy msgid "Locked kernels and the currently running kernel are ignored" msgstr "Der aktuell laufende Kernel wird immer ignoriert" -#: src/Console/AppConsole.vala:159 src/Gtk/AppGtk.vala:89 +#: src/Console/AppConsole.vala:161 src/Gtk/AppGtk.vala:89 msgid "Unknown option" msgstr "Unbekannte Option" -#: src/Console/AppConsole.vala:197 +#: src/Console/AppConsole.vala:199 msgid "Deleted" msgstr "" -#: src/Console/AppConsole.vala:198 +#: src/Console/AppConsole.vala:200 msgid "Error deleting" msgstr "" -#: src/Console/AppConsole.vala:212 +#: src/Console/AppConsole.vala:214 #, fuzzy msgid "Unknown command" msgstr "Unbekannte Option" -#: src/Console/AppConsole.vala:223 +#: src/Console/AppConsole.vala:225 msgid "Latest update" msgstr "Neustes Update" -#: src/Console/AppConsole.vala:224 +#: src/Console/AppConsole.vala:226 msgid "Latest point update" msgstr "Letzte Punktaktualisierung" -#: src/Console/AppConsole.vala:225 src/Console/AppConsole.vala:243 +#: src/Console/AppConsole.vala:227 src/Console/AppConsole.vala:245 msgid "No updates found" msgstr "Keine Updates gefunden" -#: src/Console/AppConsole.vala:232 +#: src/Console/AppConsole.vala:234 #, fuzzy msgid "Notifications disabled" msgstr "Benachrichtigungen sind deaktiviert" -#: src/Console/AppConsole.vala:237 +#: src/Console/AppConsole.vala:239 msgid "No" msgstr "" -#: src/Console/AppConsole.vala:252 +#: src/Console/AppConsole.vala:254 #, fuzzy msgid "notify point releases disabled" msgstr "Benachrichtigen, wenn eine Punktfreigabe verfügbar ist" -#: src/Console/AppConsole.vala:260 +#: src/Console/AppConsole.vala:262 #, fuzzy msgid "notify major releases disabled" msgstr "Benachrichtigen, wenn eine größere Version verfügbar ist" -#: src/Console/AppConsole.vala:265 +#: src/Console/AppConsole.vala:267 #, c-format msgid "Kernel %s Available" msgstr "Kernel %s verfügbar" -#: src/Console/AppConsole.vala:269 src/Gtk/SettingsDialog.vala:124 +#: src/Console/AppConsole.vala:271 src/Gtk/SettingsDialog.vala:124 msgid "Show" msgstr "Zeigen" -#: src/Console/AppConsole.vala:270 src/Gtk/MainWindow.vala:319 +#: src/Console/AppConsole.vala:272 src/Gtk/MainWindow.vala:319 msgid "Install" msgstr "Installieren" -#: src/Console/AppConsole.vala:273 +#: src/Console/AppConsole.vala:275 msgid "Previously notified" msgstr "Zuvor gemeldet" diff --git a/po/el.po b/po/el.po index bc9f6c65..089d628d 100644 --- a/po/el.po +++ b/po/el.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-24 02:38-0400\n" +"POT-Creation-Date: 2023-06-24 16:28-0400\n" "PO-Revision-Date: 2023-01-10 02:03-0600\n" "Last-Translator: Vasilis Kosmidis \n" "Language-Team: Greek\n" @@ -250,167 +250,174 @@ msgstr "Οι ειδοποιήσεις είναι απενεργοποιημέν msgid "Can not reach site" msgstr "Αποτυχία ανάγνωσης του αρχείου" -#: src/Console/AppConsole.vala:30 src/Gtk/AppGtk.vala:54 +#: src/Console/AppConsole.vala:29 +msgid "install kernel packages from kernel.ubuntu.com" +msgstr "" + +#: src/Console/AppConsole.vala:31 src/Gtk/AppGtk.vala:54 msgid "Syntax" msgstr "Σύνταξη" -#: src/Console/AppConsole.vala:32 +#: src/Console/AppConsole.vala:33 msgid "Commands" msgstr "Εντολές" -#: src/Console/AppConsole.vala:34 +#: src/Console/AppConsole.vala:35 msgid "Check for kernel updates" msgstr "Έλεγχος για ενημερώσεις πυρήνα" -#: src/Console/AppConsole.vala:35 -msgid "Check for kernel updates and notify current user" +#: src/Console/AppConsole.vala:36 +#, fuzzy +msgid "Check for kernel updates and send a desktop notification" msgstr "Έλεγχος για ενημερώσεις πυρήνα και ειδοποίηση τρέχοντα χρήστη" -#: src/Console/AppConsole.vala:36 +#: src/Console/AppConsole.vala:37 #, fuzzy -msgid "List available mainline kernels" +msgid "List available kernels" msgstr "Εμφάνιση όλων των διαθέσιμων πυρήνων mainline" -#: src/Console/AppConsole.vala:37 +#: src/Console/AppConsole.vala:38 msgid "List installed kernels" msgstr "Εμφάνιση εγκατεστημένων πυρήνων" -#: src/Console/AppConsole.vala:38 +#: src/Console/AppConsole.vala:39 msgid "Install latest mainline kernel" msgstr "Εγκατάσταση του πιο πρόσφατου πυρήνα mainline" -#: src/Console/AppConsole.vala:39 +#: src/Console/AppConsole.vala:40 #, fuzzy msgid "Install latest point update in the current major version" msgstr "Εγκαταστήστε την τελευταία ενημέρωση συντήρησης για την τρέχουσα σειρά" -#: src/Console/AppConsole.vala:40 +#: src/Console/AppConsole.vala:41 #, fuzzy msgid "Install specified kernels" msgstr "Απεγκατάσταση του καθορισμένου πυρήνα" -#: src/Console/AppConsole.vala:41 +#: src/Console/AppConsole.vala:42 #, fuzzy msgid "Uninstall specified kernels" msgstr "Απεγκατάσταση του καθορισμένου πυρήνα" -#: src/Console/AppConsole.vala:42 src/Gtk/MainWindow.vala:340 +#: src/Console/AppConsole.vala:43 src/Gtk/MainWindow.vala:340 msgid "Uninstall all but the highest installed version" msgstr "Απεγκαταστήστε όλες εκτός από την υψηλότερη εγκατεστημένη έκδοση" -#: src/Console/AppConsole.vala:43 +#: src/Console/AppConsole.vala:44 msgid "Download specified kernels" msgstr "Λήψη των καθορισμένων πυρήνων" -#: src/Console/AppConsole.vala:44 +#: src/Console/AppConsole.vala:45 msgid "Delete cached info about available kernels" msgstr "" "Διαγραφή προσωρινά αποθηκευμένων πληροφοριών σχετικά με διαθέσιμους πυρήνες" -#: src/Console/AppConsole.vala:45 +#: src/Console/AppConsole.vala:46 msgid "This help" msgstr "" -#: src/Console/AppConsole.vala:47 src/Gtk/AppGtk.vala:56 +#: src/Console/AppConsole.vala:48 src/Gtk/AppGtk.vala:56 msgid "Options" msgstr "Επιλογές" -#: src/Console/AppConsole.vala:49 +#: src/Console/AppConsole.vala:50 msgid "Include unstable and RC releases" msgstr "Συμπεριλάβετε ασταθείς και RC εκδόσεις" -#: src/Console/AppConsole.vala:50 +#: src/Console/AppConsole.vala:51 msgid "Exclude unstable and RC releases" msgstr "Εξαίρεση ασταθών και RC εκδόσεων" -#: src/Console/AppConsole.vala:51 +#: src/Console/AppConsole.vala:52 msgid "Verbosity. Set to n if given, or increment." msgstr "" -#: src/Console/AppConsole.vala:52 +#: src/Console/AppConsole.vala:53 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "Υποθέστε Ναι για όλα τα μηνύματα (μη διαδραστική λειτουργία)" -#: src/Console/AppConsole.vala:53 +#: src/Console/AppConsole.vala:54 msgid "Pause for keypress before exiting (for external terminal)" msgstr "" -#: src/Console/AppConsole.vala:56 +#: src/Console/AppConsole.vala:57 #, fuzzy msgid "One or more version strings taken from the output of --list" msgstr "Μια συμβολοσειρά έκδοσης που λαμβάνεται από την έξοδο του --list" -#: src/Console/AppConsole.vala:57 -msgid "comma, pipe, or colon-seperated, or quoted space seperated" +#: src/Console/AppConsole.vala:58 +msgid "" +"comma, pipe, colon, or space seperated. (space requires quotes or " +"backslashes)" msgstr "" -#: src/Console/AppConsole.vala:58 +#: src/Console/AppConsole.vala:59 #, fuzzy msgid "Locked kernels and the currently running kernel are ignored" msgstr "Αυτός ο πυρήνας είναι ήδη εγκατεστημένος." -#: src/Console/AppConsole.vala:159 src/Gtk/AppGtk.vala:89 +#: src/Console/AppConsole.vala:161 src/Gtk/AppGtk.vala:89 msgid "Unknown option" msgstr "Άγνωστη επιλογή" -#: src/Console/AppConsole.vala:197 +#: src/Console/AppConsole.vala:199 msgid "Deleted" msgstr "" -#: src/Console/AppConsole.vala:198 +#: src/Console/AppConsole.vala:200 msgid "Error deleting" msgstr "" -#: src/Console/AppConsole.vala:212 +#: src/Console/AppConsole.vala:214 #, fuzzy msgid "Unknown command" msgstr "Άγνωστη επιλογή" -#: src/Console/AppConsole.vala:223 +#: src/Console/AppConsole.vala:225 msgid "Latest update" msgstr "Τελευταία αναβάθμιση" -#: src/Console/AppConsole.vala:224 +#: src/Console/AppConsole.vala:226 msgid "Latest point update" msgstr "Τελευταία ενημέρωση συντήρησης" -#: src/Console/AppConsole.vala:225 src/Console/AppConsole.vala:243 +#: src/Console/AppConsole.vala:227 src/Console/AppConsole.vala:245 msgid "No updates found" msgstr "Δεν βρέθηκαν ενημερώσεις" -#: src/Console/AppConsole.vala:232 +#: src/Console/AppConsole.vala:234 #, fuzzy msgid "Notifications disabled" msgstr "Οι ειδοποιήσεις είναι απενεργοποιημένες" -#: src/Console/AppConsole.vala:237 +#: src/Console/AppConsole.vala:239 msgid "No" msgstr "" -#: src/Console/AppConsole.vala:252 +#: src/Console/AppConsole.vala:254 #, fuzzy msgid "notify point releases disabled" msgstr "Ειδοποίηση αν είναι διαθέσιμη έκδοση συντήρησης" -#: src/Console/AppConsole.vala:260 +#: src/Console/AppConsole.vala:262 #, fuzzy msgid "notify major releases disabled" msgstr "Ειδοποίηση αν είναι διαθέσιμη κύρια έκδοση" -#: src/Console/AppConsole.vala:265 +#: src/Console/AppConsole.vala:267 #, c-format msgid "Kernel %s Available" msgstr "Πυρήνας %s διαθέσιμος" -#: src/Console/AppConsole.vala:269 src/Gtk/SettingsDialog.vala:124 +#: src/Console/AppConsole.vala:271 src/Gtk/SettingsDialog.vala:124 msgid "Show" msgstr "Προβολή" -#: src/Console/AppConsole.vala:270 src/Gtk/MainWindow.vala:319 +#: src/Console/AppConsole.vala:272 src/Gtk/MainWindow.vala:319 msgid "Install" msgstr "Εγκατάσταση" -#: src/Console/AppConsole.vala:273 +#: src/Console/AppConsole.vala:275 msgid "Previously notified" msgstr "Έχει ήδη κοινοποιηθεί" diff --git a/po/es.po b/po/es.po index d160c503..6df5676a 100644 --- a/po/es.po +++ b/po/es.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-24 02:38-0400\n" +"POT-Creation-Date: 2023-06-24 16:28-0400\n" "PO-Revision-Date: 2018-01-03 02:03-0600\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish\n" @@ -250,166 +250,173 @@ msgstr "Las notificaciones están deshabilitadas" msgid "Can not reach site" msgstr "No se puede llegar al sitio" -#: src/Console/AppConsole.vala:30 src/Gtk/AppGtk.vala:54 +#: src/Console/AppConsole.vala:29 +msgid "install kernel packages from kernel.ubuntu.com" +msgstr "" + +#: src/Console/AppConsole.vala:31 src/Gtk/AppGtk.vala:54 msgid "Syntax" msgstr "Sintaxis" -#: src/Console/AppConsole.vala:32 +#: src/Console/AppConsole.vala:33 msgid "Commands" msgstr "Comandos" -#: src/Console/AppConsole.vala:34 +#: src/Console/AppConsole.vala:35 msgid "Check for kernel updates" msgstr "Buscar actualizaciones del núcleo" -#: src/Console/AppConsole.vala:35 -msgid "Check for kernel updates and notify current user" +#: src/Console/AppConsole.vala:36 +#, fuzzy +msgid "Check for kernel updates and send a desktop notification" msgstr "Compruebe las actualizaciones del kernel y notifique al usuario actual" -#: src/Console/AppConsole.vala:36 +#: src/Console/AppConsole.vala:37 #, fuzzy -msgid "List available mainline kernels" +msgid "List available kernels" msgstr "Mostrar todos los núcleos troncales disponibles" -#: src/Console/AppConsole.vala:37 +#: src/Console/AppConsole.vala:38 msgid "List installed kernels" msgstr "Mostrar kernels disponibles" -#: src/Console/AppConsole.vala:38 +#: src/Console/AppConsole.vala:39 msgid "Install latest mainline kernel" msgstr "Instalar kernel troncal especificado" -#: src/Console/AppConsole.vala:39 +#: src/Console/AppConsole.vala:40 #, fuzzy msgid "Install latest point update in the current major version" msgstr "Instalar la actualización de punto más reciente para la serie actual" -#: src/Console/AppConsole.vala:40 +#: src/Console/AppConsole.vala:41 #, fuzzy msgid "Install specified kernels" msgstr "Desinstalar el kernel especificado" -#: src/Console/AppConsole.vala:41 +#: src/Console/AppConsole.vala:42 #, fuzzy msgid "Uninstall specified kernels" msgstr "Desinstalar el kernel especificado" -#: src/Console/AppConsole.vala:42 src/Gtk/MainWindow.vala:340 +#: src/Console/AppConsole.vala:43 src/Gtk/MainWindow.vala:340 msgid "Uninstall all but the highest installed version" msgstr "Desinstale todas las versiones instaladas excepto la más alta" -#: src/Console/AppConsole.vala:43 +#: src/Console/AppConsole.vala:44 msgid "Download specified kernels" msgstr "Descargar kernels especificados" -#: src/Console/AppConsole.vala:44 +#: src/Console/AppConsole.vala:45 msgid "Delete cached info about available kernels" msgstr "Eliminar información almacenada en caché sobre los kernels disponibles" -#: src/Console/AppConsole.vala:45 +#: src/Console/AppConsole.vala:46 msgid "This help" msgstr "" -#: src/Console/AppConsole.vala:47 src/Gtk/AppGtk.vala:56 +#: src/Console/AppConsole.vala:48 src/Gtk/AppGtk.vala:56 msgid "Options" msgstr "Opciones" -#: src/Console/AppConsole.vala:49 +#: src/Console/AppConsole.vala:50 msgid "Include unstable and RC releases" msgstr "Incluye versiones inestables y RC" -#: src/Console/AppConsole.vala:50 +#: src/Console/AppConsole.vala:51 msgid "Exclude unstable and RC releases" msgstr "Excluir versiones inestables y RC" -#: src/Console/AppConsole.vala:51 +#: src/Console/AppConsole.vala:52 msgid "Verbosity. Set to n if given, or increment." msgstr "" -#: src/Console/AppConsole.vala:52 +#: src/Console/AppConsole.vala:53 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "Asumir Sí para todas las solicitudes (modo no interactivo)" -#: src/Console/AppConsole.vala:53 +#: src/Console/AppConsole.vala:54 msgid "Pause for keypress before exiting (for external terminal)" msgstr "" -#: src/Console/AppConsole.vala:56 +#: src/Console/AppConsole.vala:57 #, fuzzy msgid "One or more version strings taken from the output of --list" msgstr "Una cadena de versión tomada de la salida de --list" -#: src/Console/AppConsole.vala:57 -msgid "comma, pipe, or colon-seperated, or quoted space seperated" +#: src/Console/AppConsole.vala:58 +msgid "" +"comma, pipe, colon, or space seperated. (space requires quotes or " +"backslashes)" msgstr "" -#: src/Console/AppConsole.vala:58 +#: src/Console/AppConsole.vala:59 #, fuzzy msgid "Locked kernels and the currently running kernel are ignored" msgstr "El kernel que se está ejecutando actualmente siempre será ignorado" -#: src/Console/AppConsole.vala:159 src/Gtk/AppGtk.vala:89 +#: src/Console/AppConsole.vala:161 src/Gtk/AppGtk.vala:89 msgid "Unknown option" msgstr "Opción desconocida" -#: src/Console/AppConsole.vala:197 +#: src/Console/AppConsole.vala:199 msgid "Deleted" msgstr "" -#: src/Console/AppConsole.vala:198 +#: src/Console/AppConsole.vala:200 msgid "Error deleting" msgstr "" -#: src/Console/AppConsole.vala:212 +#: src/Console/AppConsole.vala:214 #, fuzzy msgid "Unknown command" msgstr "Opción desconocida" -#: src/Console/AppConsole.vala:223 +#: src/Console/AppConsole.vala:225 msgid "Latest update" msgstr "Última actualización" -#: src/Console/AppConsole.vala:224 +#: src/Console/AppConsole.vala:226 msgid "Latest point update" msgstr "Última actualización puntual" -#: src/Console/AppConsole.vala:225 src/Console/AppConsole.vala:243 +#: src/Console/AppConsole.vala:227 src/Console/AppConsole.vala:245 msgid "No updates found" msgstr "No se encontró ninguna actualización" -#: src/Console/AppConsole.vala:232 +#: src/Console/AppConsole.vala:234 #, fuzzy msgid "Notifications disabled" msgstr "Las notificaciones están deshabilitadas" -#: src/Console/AppConsole.vala:237 +#: src/Console/AppConsole.vala:239 msgid "No" msgstr "" -#: src/Console/AppConsole.vala:252 +#: src/Console/AppConsole.vala:254 #, fuzzy msgid "notify point releases disabled" msgstr "Notificar si hay una versión puntual disponible" -#: src/Console/AppConsole.vala:260 +#: src/Console/AppConsole.vala:262 #, fuzzy msgid "notify major releases disabled" msgstr "Notificar si hay una versión importante disponible" -#: src/Console/AppConsole.vala:265 +#: src/Console/AppConsole.vala:267 #, c-format msgid "Kernel %s Available" msgstr "Kernel %s Disponible" -#: src/Console/AppConsole.vala:269 src/Gtk/SettingsDialog.vala:124 +#: src/Console/AppConsole.vala:271 src/Gtk/SettingsDialog.vala:124 msgid "Show" msgstr "Mostrar" -#: src/Console/AppConsole.vala:270 src/Gtk/MainWindow.vala:319 +#: src/Console/AppConsole.vala:272 src/Gtk/MainWindow.vala:319 msgid "Install" msgstr "Instalar" -#: src/Console/AppConsole.vala:273 +#: src/Console/AppConsole.vala:275 msgid "Previously notified" msgstr "Notificado previamente" diff --git a/po/fr.po b/po/fr.po index 2da5510f..7df1fde4 100644 --- a/po/fr.po +++ b/po/fr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-24 02:38-0400\n" +"POT-Creation-Date: 2023-06-24 16:28-0400\n" "PO-Revision-Date: 2018-08-05 15:50+0200\n" "Last-Translator: Yolateng0 \n" "Language-Team: French\n" @@ -250,166 +250,173 @@ msgstr "Les notifications sont désactivées" msgid "Can not reach site" msgstr "No se puede llegar al sitio" -#: src/Console/AppConsole.vala:30 src/Gtk/AppGtk.vala:54 +#: src/Console/AppConsole.vala:29 +msgid "install kernel packages from kernel.ubuntu.com" +msgstr "" + +#: src/Console/AppConsole.vala:31 src/Gtk/AppGtk.vala:54 msgid "Syntax" msgstr "Syntaxe" -#: src/Console/AppConsole.vala:32 +#: src/Console/AppConsole.vala:33 msgid "Commands" msgstr "Commandes" -#: src/Console/AppConsole.vala:34 +#: src/Console/AppConsole.vala:35 msgid "Check for kernel updates" msgstr "Vérifier les mises à jour de noyau" -#: src/Console/AppConsole.vala:35 -msgid "Check for kernel updates and notify current user" +#: src/Console/AppConsole.vala:36 +#, fuzzy +msgid "Check for kernel updates and send a desktop notification" msgstr "Vérifier les mises à jour de noyau et notifier l'utilisateur" -#: src/Console/AppConsole.vala:36 +#: src/Console/AppConsole.vala:37 #, fuzzy -msgid "List available mainline kernels" +msgid "List available kernels" msgstr "Lister tous les noyaux mainline disponibles" -#: src/Console/AppConsole.vala:37 +#: src/Console/AppConsole.vala:38 msgid "List installed kernels" msgstr "Lister les noyaux installés" -#: src/Console/AppConsole.vala:38 +#: src/Console/AppConsole.vala:39 msgid "Install latest mainline kernel" msgstr "Installer le dernier noyau mainline" -#: src/Console/AppConsole.vala:39 +#: src/Console/AppConsole.vala:40 #, fuzzy msgid "Install latest point update in the current major version" msgstr "Installer la dernière version mineure pour la série courante" -#: src/Console/AppConsole.vala:40 +#: src/Console/AppConsole.vala:41 #, fuzzy msgid "Install specified kernels" msgstr "Désinstaller le noyau spécifié" -#: src/Console/AppConsole.vala:41 +#: src/Console/AppConsole.vala:42 #, fuzzy msgid "Uninstall specified kernels" msgstr "Désinstaller le noyau spécifié" -#: src/Console/AppConsole.vala:42 src/Gtk/MainWindow.vala:340 +#: src/Console/AppConsole.vala:43 src/Gtk/MainWindow.vala:340 msgid "Uninstall all but the highest installed version" msgstr "Désinstallez toutes le version installées, sauf la plus élevée" -#: src/Console/AppConsole.vala:43 +#: src/Console/AppConsole.vala:44 msgid "Download specified kernels" msgstr "Télécharger les noyaux spécifiés" -#: src/Console/AppConsole.vala:44 +#: src/Console/AppConsole.vala:45 msgid "Delete cached info about available kernels" msgstr "Supprimer les informations mises en cache sur les noyaux disponibles" -#: src/Console/AppConsole.vala:45 +#: src/Console/AppConsole.vala:46 msgid "This help" msgstr "" -#: src/Console/AppConsole.vala:47 src/Gtk/AppGtk.vala:56 +#: src/Console/AppConsole.vala:48 src/Gtk/AppGtk.vala:56 msgid "Options" msgstr "Options" -#: src/Console/AppConsole.vala:49 +#: src/Console/AppConsole.vala:50 msgid "Include unstable and RC releases" msgstr "Inclure les versions instables et RC" -#: src/Console/AppConsole.vala:50 +#: src/Console/AppConsole.vala:51 msgid "Exclude unstable and RC releases" msgstr "Exclure les versions instables et RC" -#: src/Console/AppConsole.vala:51 +#: src/Console/AppConsole.vala:52 msgid "Verbosity. Set to n if given, or increment." msgstr "" -#: src/Console/AppConsole.vala:52 +#: src/Console/AppConsole.vala:53 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "Supposons Oui pour toutes les invites (mode non interactif)" -#: src/Console/AppConsole.vala:53 +#: src/Console/AppConsole.vala:54 msgid "Pause for keypress before exiting (for external terminal)" msgstr "" -#: src/Console/AppConsole.vala:56 +#: src/Console/AppConsole.vala:57 #, fuzzy msgid "One or more version strings taken from the output of --list" msgstr "Une version prise du resultat de --list" -#: src/Console/AppConsole.vala:57 -msgid "comma, pipe, or colon-seperated, or quoted space seperated" +#: src/Console/AppConsole.vala:58 +msgid "" +"comma, pipe, colon, or space seperated. (space requires quotes or " +"backslashes)" msgstr "" -#: src/Console/AppConsole.vala:58 +#: src/Console/AppConsole.vala:59 #, fuzzy msgid "Locked kernels and the currently running kernel are ignored" msgstr "Le noyau en cours d'exécution sera toujours ignoré" -#: src/Console/AppConsole.vala:159 src/Gtk/AppGtk.vala:89 +#: src/Console/AppConsole.vala:161 src/Gtk/AppGtk.vala:89 msgid "Unknown option" msgstr "Option inconnue" -#: src/Console/AppConsole.vala:197 +#: src/Console/AppConsole.vala:199 msgid "Deleted" msgstr "" -#: src/Console/AppConsole.vala:198 +#: src/Console/AppConsole.vala:200 msgid "Error deleting" msgstr "" -#: src/Console/AppConsole.vala:212 +#: src/Console/AppConsole.vala:214 #, fuzzy msgid "Unknown command" msgstr "Option inconnue" -#: src/Console/AppConsole.vala:223 +#: src/Console/AppConsole.vala:225 msgid "Latest update" msgstr "Dernière mise à jour" -#: src/Console/AppConsole.vala:224 +#: src/Console/AppConsole.vala:226 msgid "Latest point update" msgstr "Dernière mise à jour mineure" -#: src/Console/AppConsole.vala:225 src/Console/AppConsole.vala:243 +#: src/Console/AppConsole.vala:227 src/Console/AppConsole.vala:245 msgid "No updates found" msgstr "Aucune mise à jour disponible" -#: src/Console/AppConsole.vala:232 +#: src/Console/AppConsole.vala:234 #, fuzzy msgid "Notifications disabled" msgstr "Les notifications sont désactivées" -#: src/Console/AppConsole.vala:237 +#: src/Console/AppConsole.vala:239 msgid "No" msgstr "" -#: src/Console/AppConsole.vala:252 +#: src/Console/AppConsole.vala:254 #, fuzzy msgid "notify point releases disabled" msgstr "Notifier si une version stable mineure est disponible" -#: src/Console/AppConsole.vala:260 +#: src/Console/AppConsole.vala:262 #, fuzzy msgid "notify major releases disabled" msgstr "Notifier si une version stable majeure est disponible" -#: src/Console/AppConsole.vala:265 +#: src/Console/AppConsole.vala:267 #, c-format msgid "Kernel %s Available" msgstr "Paquet %s disponibles" -#: src/Console/AppConsole.vala:269 src/Gtk/SettingsDialog.vala:124 +#: src/Console/AppConsole.vala:271 src/Gtk/SettingsDialog.vala:124 msgid "Show" msgstr "Montrer" -#: src/Console/AppConsole.vala:270 src/Gtk/MainWindow.vala:319 +#: src/Console/AppConsole.vala:272 src/Gtk/MainWindow.vala:319 msgid "Install" msgstr "Installer" -#: src/Console/AppConsole.vala:273 +#: src/Console/AppConsole.vala:275 msgid "Previously notified" msgstr "Précédemment notifié" diff --git a/po/hr.po b/po/hr.po index 29c88a98..08c24172 100644 --- a/po/hr.po +++ b/po/hr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-24 02:38-0400\n" +"POT-Creation-Date: 2023-06-24 16:28-0400\n" "PO-Revision-Date: 2022-09-22 12:13+0200\n" "Last-Translator: gogo \n" "Language-Team: Croatian\n" @@ -249,166 +249,173 @@ msgstr "Obavijesti su onemogućene" msgid "Can not reach site" msgstr "Nije moguće doći do web-mjesta" -#: src/Console/AppConsole.vala:30 src/Gtk/AppGtk.vala:54 +#: src/Console/AppConsole.vala:29 +msgid "install kernel packages from kernel.ubuntu.com" +msgstr "" + +#: src/Console/AppConsole.vala:31 src/Gtk/AppGtk.vala:54 msgid "Syntax" msgstr "Sintaksa" -#: src/Console/AppConsole.vala:32 +#: src/Console/AppConsole.vala:33 msgid "Commands" msgstr "Naredbe" -#: src/Console/AppConsole.vala:34 +#: src/Console/AppConsole.vala:35 msgid "Check for kernel updates" msgstr "Provjeri nadopune kernela" -#: src/Console/AppConsole.vala:35 -msgid "Check for kernel updates and notify current user" +#: src/Console/AppConsole.vala:36 +#, fuzzy +msgid "Check for kernel updates and send a desktop notification" msgstr "Provjeri nadopune kernela i obavijesti trenutnog korisnika" -#: src/Console/AppConsole.vala:36 +#: src/Console/AppConsole.vala:37 #, fuzzy -msgid "List available mainline kernels" +msgid "List available kernels" msgstr "Prikaži sve mainline kernele" -#: src/Console/AppConsole.vala:37 +#: src/Console/AppConsole.vala:38 msgid "List installed kernels" msgstr "Prikaži instalirane kernele" -#: src/Console/AppConsole.vala:38 +#: src/Console/AppConsole.vala:39 msgid "Install latest mainline kernel" msgstr "Instaliraj najnoviji mainline kernel" -#: src/Console/AppConsole.vala:39 +#: src/Console/AppConsole.vala:40 #, fuzzy msgid "Install latest point update in the current major version" msgstr "Instaliraj najnoviju ciljanu nadopunu za trenutnu seriju" -#: src/Console/AppConsole.vala:40 +#: src/Console/AppConsole.vala:41 #, fuzzy msgid "Install specified kernels" msgstr "Deinstaliraj određene kernele" -#: src/Console/AppConsole.vala:41 +#: src/Console/AppConsole.vala:42 #, fuzzy msgid "Uninstall specified kernels" msgstr "Deinstaliraj određene kernele" -#: src/Console/AppConsole.vala:42 src/Gtk/MainWindow.vala:340 +#: src/Console/AppConsole.vala:43 src/Gtk/MainWindow.vala:340 msgid "Uninstall all but the highest installed version" msgstr "Deinstaliraj sve osim najnovije instalirane verzije" -#: src/Console/AppConsole.vala:43 +#: src/Console/AppConsole.vala:44 msgid "Download specified kernels" msgstr "Preuzmi određene kernele" -#: src/Console/AppConsole.vala:44 +#: src/Console/AppConsole.vala:45 msgid "Delete cached info about available kernels" msgstr "Brisanje predmemoriranih podataka o dostupnim jezgrama" -#: src/Console/AppConsole.vala:45 +#: src/Console/AppConsole.vala:46 msgid "This help" msgstr "" -#: src/Console/AppConsole.vala:47 src/Gtk/AppGtk.vala:56 +#: src/Console/AppConsole.vala:48 src/Gtk/AppGtk.vala:56 msgid "Options" msgstr "Mogućnosti" -#: src/Console/AppConsole.vala:49 +#: src/Console/AppConsole.vala:50 msgid "Include unstable and RC releases" msgstr "Uključivati nestabilne i RC kernele" -#: src/Console/AppConsole.vala:50 +#: src/Console/AppConsole.vala:51 msgid "Exclude unstable and RC releases" msgstr "Isključivati nestabilne i RC izdanja" -#: src/Console/AppConsole.vala:51 +#: src/Console/AppConsole.vala:52 msgid "Verbosity. Set to n if given, or increment." msgstr "" -#: src/Console/AppConsole.vala:52 +#: src/Console/AppConsole.vala:53 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "Pretpostavi Da za sve upite (neinteraktivan način rada)" -#: src/Console/AppConsole.vala:53 +#: src/Console/AppConsole.vala:54 msgid "Pause for keypress before exiting (for external terminal)" msgstr "" -#: src/Console/AppConsole.vala:56 +#: src/Console/AppConsole.vala:57 #, fuzzy msgid "One or more version strings taken from the output of --list" msgstr "Izraz inačice uzet iz zapisa --list" -#: src/Console/AppConsole.vala:57 -msgid "comma, pipe, or colon-seperated, or quoted space seperated" +#: src/Console/AppConsole.vala:58 +msgid "" +"comma, pipe, colon, or space seperated. (space requires quotes or " +"backslashes)" msgstr "" -#: src/Console/AppConsole.vala:58 +#: src/Console/AppConsole.vala:59 #, fuzzy msgid "Locked kernels and the currently running kernel are ignored" msgstr "Trenutno pokrenuta jezgra uvijek će se zanemariti" -#: src/Console/AppConsole.vala:159 src/Gtk/AppGtk.vala:89 +#: src/Console/AppConsole.vala:161 src/Gtk/AppGtk.vala:89 msgid "Unknown option" msgstr "Nepoznata mogućnost" -#: src/Console/AppConsole.vala:197 +#: src/Console/AppConsole.vala:199 msgid "Deleted" msgstr "" -#: src/Console/AppConsole.vala:198 +#: src/Console/AppConsole.vala:200 msgid "Error deleting" msgstr "" -#: src/Console/AppConsole.vala:212 +#: src/Console/AppConsole.vala:214 #, fuzzy msgid "Unknown command" msgstr "Nepoznata mogućnost" -#: src/Console/AppConsole.vala:223 +#: src/Console/AppConsole.vala:225 msgid "Latest update" msgstr "Najnovija nadopuna" -#: src/Console/AppConsole.vala:224 +#: src/Console/AppConsole.vala:226 msgid "Latest point update" msgstr "Najnovija ciljana nadopuna" -#: src/Console/AppConsole.vala:225 src/Console/AppConsole.vala:243 +#: src/Console/AppConsole.vala:227 src/Console/AppConsole.vala:245 msgid "No updates found" msgstr "Nema pronađenih nadopuna" -#: src/Console/AppConsole.vala:232 +#: src/Console/AppConsole.vala:234 #, fuzzy msgid "Notifications disabled" msgstr "Obavijesti su onemogućene" -#: src/Console/AppConsole.vala:237 +#: src/Console/AppConsole.vala:239 msgid "No" msgstr "" -#: src/Console/AppConsole.vala:252 +#: src/Console/AppConsole.vala:254 #, fuzzy msgid "notify point releases disabled" msgstr "Obavijesti kada je pojedino izdanje dostupno" -#: src/Console/AppConsole.vala:260 +#: src/Console/AppConsole.vala:262 #, fuzzy msgid "notify major releases disabled" msgstr "Obavijesti kada je glavno izdanje dostupno" -#: src/Console/AppConsole.vala:265 +#: src/Console/AppConsole.vala:267 #, c-format msgid "Kernel %s Available" msgstr "Kernel %s je dostupan" -#: src/Console/AppConsole.vala:269 src/Gtk/SettingsDialog.vala:124 +#: src/Console/AppConsole.vala:271 src/Gtk/SettingsDialog.vala:124 msgid "Show" msgstr "Prikaži" -#: src/Console/AppConsole.vala:270 src/Gtk/MainWindow.vala:319 +#: src/Console/AppConsole.vala:272 src/Gtk/MainWindow.vala:319 msgid "Install" msgstr "Instaliraj" -#: src/Console/AppConsole.vala:273 +#: src/Console/AppConsole.vala:275 msgid "Previously notified" msgstr "Prethodno prijavljeno" diff --git a/po/it.po b/po/it.po index 19be5355..60a112a9 100644 --- a/po/it.po +++ b/po/it.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-24 02:38-0400\n" +"POT-Creation-Date: 2023-06-24 16:28-0400\n" "PO-Revision-Date: 2020-08-22 15:35+0100\n" "Last-Translator: Demetrio Mendozzi\n" "Language-Team: Italian\n" @@ -248,168 +248,175 @@ msgstr "Le notifiche sono disabilitate" msgid "Can not reach site" msgstr "Impossibile raggiungere il sito" -#: src/Console/AppConsole.vala:30 src/Gtk/AppGtk.vala:54 +#: src/Console/AppConsole.vala:29 +msgid "install kernel packages from kernel.ubuntu.com" +msgstr "" + +#: src/Console/AppConsole.vala:31 src/Gtk/AppGtk.vala:54 msgid "Syntax" msgstr "Sintassi" -#: src/Console/AppConsole.vala:32 +#: src/Console/AppConsole.vala:33 msgid "Commands" msgstr "Comandi" -#: src/Console/AppConsole.vala:34 +#: src/Console/AppConsole.vala:35 msgid "Check for kernel updates" msgstr "Verifica aggiornamenti del kernel" -#: src/Console/AppConsole.vala:35 -msgid "Check for kernel updates and notify current user" +#: src/Console/AppConsole.vala:36 +#, fuzzy +msgid "Check for kernel updates and send a desktop notification" msgstr "" "Verifica la disponibilità di aggiornamenti del kerneled avvisa l'utente " "corrente" -#: src/Console/AppConsole.vala:36 +#: src/Console/AppConsole.vala:37 #, fuzzy -msgid "List available mainline kernels" +msgid "List available kernels" msgstr "Elenca tutti i kernel mainline disponibili" -#: src/Console/AppConsole.vala:37 +#: src/Console/AppConsole.vala:38 msgid "List installed kernels" msgstr "Elenca i kernel installati" -#: src/Console/AppConsole.vala:38 +#: src/Console/AppConsole.vala:39 msgid "Install latest mainline kernel" msgstr "Installa l'ultimo kernel mainline" -#: src/Console/AppConsole.vala:39 +#: src/Console/AppConsole.vala:40 #, fuzzy msgid "Install latest point update in the current major version" msgstr "installa l'ultimo rilascio parziale per le serie attuali" -#: src/Console/AppConsole.vala:40 +#: src/Console/AppConsole.vala:41 #, fuzzy msgid "Install specified kernels" msgstr "Disinstalla i kernel specificati" -#: src/Console/AppConsole.vala:41 +#: src/Console/AppConsole.vala:42 #, fuzzy msgid "Uninstall specified kernels" msgstr "Disinstalla i kernel specificati" -#: src/Console/AppConsole.vala:42 src/Gtk/MainWindow.vala:340 +#: src/Console/AppConsole.vala:43 src/Gtk/MainWindow.vala:340 msgid "Uninstall all but the highest installed version" msgstr "Disinstallare tutti tranne la versione più recente installata" -#: src/Console/AppConsole.vala:43 +#: src/Console/AppConsole.vala:44 msgid "Download specified kernels" msgstr "Scarica i kernel specificati" -#: src/Console/AppConsole.vala:44 +#: src/Console/AppConsole.vala:45 msgid "Delete cached info about available kernels" msgstr "Elimina le informazioni sui kernel disponibili dalla cache " -#: src/Console/AppConsole.vala:45 +#: src/Console/AppConsole.vala:46 msgid "This help" msgstr "" -#: src/Console/AppConsole.vala:47 src/Gtk/AppGtk.vala:56 +#: src/Console/AppConsole.vala:48 src/Gtk/AppGtk.vala:56 msgid "Options" msgstr "Opzioni" -#: src/Console/AppConsole.vala:49 +#: src/Console/AppConsole.vala:50 msgid "Include unstable and RC releases" msgstr "Includi versioni instabili e rilasci RC" -#: src/Console/AppConsole.vala:50 +#: src/Console/AppConsole.vala:51 msgid "Exclude unstable and RC releases" msgstr "Escludi versioni instabili e rilasci RC" -#: src/Console/AppConsole.vala:51 +#: src/Console/AppConsole.vala:52 msgid "Verbosity. Set to n if given, or increment." msgstr "" -#: src/Console/AppConsole.vala:52 +#: src/Console/AppConsole.vala:53 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "Imposta Sì per tutte le richieste (modalità non interattiva)" -#: src/Console/AppConsole.vala:53 +#: src/Console/AppConsole.vala:54 msgid "Pause for keypress before exiting (for external terminal)" msgstr "" -#: src/Console/AppConsole.vala:56 +#: src/Console/AppConsole.vala:57 #, fuzzy msgid "One or more version strings taken from the output of --list" msgstr "Una stringa di versione presa dall'output di --list" -#: src/Console/AppConsole.vala:57 -msgid "comma, pipe, or colon-seperated, or quoted space seperated" +#: src/Console/AppConsole.vala:58 +msgid "" +"comma, pipe, colon, or space seperated. (space requires quotes or " +"backslashes)" msgstr "" -#: src/Console/AppConsole.vala:58 +#: src/Console/AppConsole.vala:59 #, fuzzy msgid "Locked kernels and the currently running kernel are ignored" msgstr "Il kernel attualmente in esecuzione sarà sempre ignorato" -#: src/Console/AppConsole.vala:159 src/Gtk/AppGtk.vala:89 +#: src/Console/AppConsole.vala:161 src/Gtk/AppGtk.vala:89 msgid "Unknown option" msgstr "Opzione sconosciuta" -#: src/Console/AppConsole.vala:197 +#: src/Console/AppConsole.vala:199 msgid "Deleted" msgstr "" -#: src/Console/AppConsole.vala:198 +#: src/Console/AppConsole.vala:200 msgid "Error deleting" msgstr "" -#: src/Console/AppConsole.vala:212 +#: src/Console/AppConsole.vala:214 #, fuzzy msgid "Unknown command" msgstr "Opzione sconosciuta" -#: src/Console/AppConsole.vala:223 +#: src/Console/AppConsole.vala:225 msgid "Latest update" msgstr "Ultimo aggiornamento" -#: src/Console/AppConsole.vala:224 +#: src/Console/AppConsole.vala:226 msgid "Latest point update" msgstr "Ultimo aggiornamento del rilascio parziale" -#: src/Console/AppConsole.vala:225 src/Console/AppConsole.vala:243 +#: src/Console/AppConsole.vala:227 src/Console/AppConsole.vala:245 msgid "No updates found" msgstr "Nessun aggiornamento trovato" -#: src/Console/AppConsole.vala:232 +#: src/Console/AppConsole.vala:234 #, fuzzy msgid "Notifications disabled" msgstr "Le notifiche sono disabilitate" -#: src/Console/AppConsole.vala:237 +#: src/Console/AppConsole.vala:239 msgid "No" msgstr "" -#: src/Console/AppConsole.vala:252 +#: src/Console/AppConsole.vala:254 #, fuzzy msgid "notify point releases disabled" msgstr "Avvisa se è disponibile un rilascio parziale" -#: src/Console/AppConsole.vala:260 +#: src/Console/AppConsole.vala:262 #, fuzzy msgid "notify major releases disabled" msgstr "Avvisa se è disponibile una versione principale" -#: src/Console/AppConsole.vala:265 +#: src/Console/AppConsole.vala:267 #, c-format msgid "Kernel %s Available" msgstr "Kernel %s Disponibile" -#: src/Console/AppConsole.vala:269 src/Gtk/SettingsDialog.vala:124 +#: src/Console/AppConsole.vala:271 src/Gtk/SettingsDialog.vala:124 msgid "Show" msgstr "Mostra" -#: src/Console/AppConsole.vala:270 src/Gtk/MainWindow.vala:319 +#: src/Console/AppConsole.vala:272 src/Gtk/MainWindow.vala:319 msgid "Install" msgstr "Installa" -#: src/Console/AppConsole.vala:273 +#: src/Console/AppConsole.vala:275 msgid "Previously notified" msgstr "Notificato in precedenza" diff --git a/po/ko.po b/po/ko.po index ebd5def1..14f29bd2 100644 --- a/po/ko.po +++ b/po/ko.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-24 02:38-0400\n" +"POT-Creation-Date: 2023-06-24 16:28-0400\n" "PO-Revision-Date: 2022-09-28 11:48+0900\n" "Last-Translator: Kevin Kim \n" "Language-Team: Korean\n" @@ -248,166 +248,173 @@ msgstr "알림이 비활성화 되었습니다" msgid "Can not reach site" msgstr "사이트에 도달 할 수 없습니다" -#: src/Console/AppConsole.vala:30 src/Gtk/AppGtk.vala:54 +#: src/Console/AppConsole.vala:29 +msgid "install kernel packages from kernel.ubuntu.com" +msgstr "" + +#: src/Console/AppConsole.vala:31 src/Gtk/AppGtk.vala:54 msgid "Syntax" msgstr "문법" -#: src/Console/AppConsole.vala:32 +#: src/Console/AppConsole.vala:33 msgid "Commands" msgstr "명령어" -#: src/Console/AppConsole.vala:34 +#: src/Console/AppConsole.vala:35 msgid "Check for kernel updates" msgstr "커널 업데이트 확인" -#: src/Console/AppConsole.vala:35 -msgid "Check for kernel updates and notify current user" +#: src/Console/AppConsole.vala:36 +#, fuzzy +msgid "Check for kernel updates and send a desktop notification" msgstr "커널 업데이트를 확인하고 현재 사용자에게 알림" -#: src/Console/AppConsole.vala:36 +#: src/Console/AppConsole.vala:37 #, fuzzy -msgid "List available mainline kernels" +msgid "List available kernels" msgstr "사용 가능한 모든 메인라인 커널 보기" -#: src/Console/AppConsole.vala:37 +#: src/Console/AppConsole.vala:38 msgid "List installed kernels" msgstr "설치된 커널 보기" -#: src/Console/AppConsole.vala:38 +#: src/Console/AppConsole.vala:39 msgid "Install latest mainline kernel" msgstr "최신 메인라인 커널 설치" -#: src/Console/AppConsole.vala:39 +#: src/Console/AppConsole.vala:40 #, fuzzy msgid "Install latest point update in the current major version" msgstr "현재 사용중인 배포판을 위한 최신 포인트 업데이트 설치" -#: src/Console/AppConsole.vala:40 +#: src/Console/AppConsole.vala:41 #, fuzzy msgid "Install specified kernels" msgstr "지정한 커널 삭제" -#: src/Console/AppConsole.vala:41 +#: src/Console/AppConsole.vala:42 #, fuzzy msgid "Uninstall specified kernels" msgstr "지정한 커널 삭제" -#: src/Console/AppConsole.vala:42 src/Gtk/MainWindow.vala:340 +#: src/Console/AppConsole.vala:43 src/Gtk/MainWindow.vala:340 msgid "Uninstall all but the highest installed version" msgstr "설치된 가장 높은 버전을 제외한 모든 버전을 제거합니다" -#: src/Console/AppConsole.vala:43 +#: src/Console/AppConsole.vala:44 msgid "Download specified kernels" msgstr "지정한 커널 다운로드" -#: src/Console/AppConsole.vala:44 +#: src/Console/AppConsole.vala:45 msgid "Delete cached info about available kernels" msgstr "사용 가능한 커널에 대한 캐시된 정보 삭제" -#: src/Console/AppConsole.vala:45 +#: src/Console/AppConsole.vala:46 msgid "This help" msgstr "" -#: src/Console/AppConsole.vala:47 src/Gtk/AppGtk.vala:56 +#: src/Console/AppConsole.vala:48 src/Gtk/AppGtk.vala:56 msgid "Options" msgstr "옵션" -#: src/Console/AppConsole.vala:49 +#: src/Console/AppConsole.vala:50 msgid "Include unstable and RC releases" msgstr "unstable 및 RC 릴리스 포함" -#: src/Console/AppConsole.vala:50 +#: src/Console/AppConsole.vala:51 msgid "Exclude unstable and RC releases" msgstr "unstable 및 RC 릴리스 제외" -#: src/Console/AppConsole.vala:51 +#: src/Console/AppConsole.vala:52 msgid "Verbosity. Set to n if given, or increment." msgstr "" -#: src/Console/AppConsole.vala:52 +#: src/Console/AppConsole.vala:53 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "모든 물음에 자동으로 \"예\"라고 가정 (비 대화형 모드)" -#: src/Console/AppConsole.vala:53 +#: src/Console/AppConsole.vala:54 msgid "Pause for keypress before exiting (for external terminal)" msgstr "" -#: src/Console/AppConsole.vala:56 +#: src/Console/AppConsole.vala:57 #, fuzzy msgid "One or more version strings taken from the output of --list" msgstr "--list 의 출력에서 가져온 버전 문자열" -#: src/Console/AppConsole.vala:57 -msgid "comma, pipe, or colon-seperated, or quoted space seperated" +#: src/Console/AppConsole.vala:58 +msgid "" +"comma, pipe, colon, or space seperated. (space requires quotes or " +"backslashes)" msgstr "" -#: src/Console/AppConsole.vala:58 +#: src/Console/AppConsole.vala:59 #, fuzzy msgid "Locked kernels and the currently running kernel are ignored" msgstr "현재 실행중인 커널은 항상 무시됩니다" -#: src/Console/AppConsole.vala:159 src/Gtk/AppGtk.vala:89 +#: src/Console/AppConsole.vala:161 src/Gtk/AppGtk.vala:89 msgid "Unknown option" msgstr "알 수 없는 옵션" -#: src/Console/AppConsole.vala:197 +#: src/Console/AppConsole.vala:199 msgid "Deleted" msgstr "" -#: src/Console/AppConsole.vala:198 +#: src/Console/AppConsole.vala:200 msgid "Error deleting" msgstr "" -#: src/Console/AppConsole.vala:212 +#: src/Console/AppConsole.vala:214 #, fuzzy msgid "Unknown command" msgstr "알 수 없는 옵션" -#: src/Console/AppConsole.vala:223 +#: src/Console/AppConsole.vala:225 msgid "Latest update" msgstr "최신 업데이트" -#: src/Console/AppConsole.vala:224 +#: src/Console/AppConsole.vala:226 msgid "Latest point update" msgstr "최신 포인트 업데이트" -#: src/Console/AppConsole.vala:225 src/Console/AppConsole.vala:243 +#: src/Console/AppConsole.vala:227 src/Console/AppConsole.vala:245 msgid "No updates found" msgstr "업데이트를 찾을 수 없습니다" -#: src/Console/AppConsole.vala:232 +#: src/Console/AppConsole.vala:234 #, fuzzy msgid "Notifications disabled" msgstr "알림이 비활성화 되었습니다" -#: src/Console/AppConsole.vala:237 +#: src/Console/AppConsole.vala:239 msgid "No" msgstr "" -#: src/Console/AppConsole.vala:252 +#: src/Console/AppConsole.vala:254 #, fuzzy msgid "notify point releases disabled" msgstr "포인트 릴리즈가 있으면 알림" -#: src/Console/AppConsole.vala:260 +#: src/Console/AppConsole.vala:262 #, fuzzy msgid "notify major releases disabled" msgstr "메이저 릴리즈가 있으면 알림" -#: src/Console/AppConsole.vala:265 +#: src/Console/AppConsole.vala:267 #, c-format msgid "Kernel %s Available" msgstr "커널 %s 사용 가능" -#: src/Console/AppConsole.vala:269 src/Gtk/SettingsDialog.vala:124 +#: src/Console/AppConsole.vala:271 src/Gtk/SettingsDialog.vala:124 msgid "Show" msgstr "보이기" -#: src/Console/AppConsole.vala:270 src/Gtk/MainWindow.vala:319 +#: src/Console/AppConsole.vala:272 src/Gtk/MainWindow.vala:319 msgid "Install" msgstr "설치" -#: src/Console/AppConsole.vala:273 +#: src/Console/AppConsole.vala:275 msgid "Previously notified" msgstr "이전에 통보됨" diff --git a/po/messages.pot b/po/messages.pot index 4e2909b2..ecd8b83d 100644 --- a/po/messages.pot +++ b/po/messages.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline 1.3.20\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-24 02:38-0400\n" +"POT-Creation-Date: 2023-06-24 16:28-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -240,156 +240,162 @@ msgstr "" msgid "Can not reach site" msgstr "" -#: src/Console/AppConsole.vala:30 src/Gtk/AppGtk.vala:54 -msgid "Syntax" +#: src/Console/AppConsole.vala:29 +msgid "install kernel packages from kernel.ubuntu.com" msgstr "" -#: src/Console/AppConsole.vala:32 -msgid "Commands" +#: src/Console/AppConsole.vala:31 src/Gtk/AppGtk.vala:54 +msgid "Syntax" msgstr "" -#: src/Console/AppConsole.vala:34 -msgid "Check for kernel updates" +#: src/Console/AppConsole.vala:33 +msgid "Commands" msgstr "" #: src/Console/AppConsole.vala:35 -msgid "Check for kernel updates and notify current user" +msgid "Check for kernel updates" msgstr "" #: src/Console/AppConsole.vala:36 -msgid "List available mainline kernels" +msgid "Check for kernel updates and send a desktop notification" msgstr "" #: src/Console/AppConsole.vala:37 -msgid "List installed kernels" +msgid "List available kernels" msgstr "" #: src/Console/AppConsole.vala:38 -msgid "Install latest mainline kernel" +msgid "List installed kernels" msgstr "" #: src/Console/AppConsole.vala:39 -msgid "Install latest point update in the current major version" +msgid "Install latest mainline kernel" msgstr "" #: src/Console/AppConsole.vala:40 -msgid "Install specified kernels" +msgid "Install latest point update in the current major version" msgstr "" #: src/Console/AppConsole.vala:41 +msgid "Install specified kernels" +msgstr "" + +#: src/Console/AppConsole.vala:42 msgid "Uninstall specified kernels" msgstr "" -#: src/Console/AppConsole.vala:42 src/Gtk/MainWindow.vala:340 +#: src/Console/AppConsole.vala:43 src/Gtk/MainWindow.vala:340 msgid "Uninstall all but the highest installed version" msgstr "" -#: src/Console/AppConsole.vala:43 +#: src/Console/AppConsole.vala:44 msgid "Download specified kernels" msgstr "" -#: src/Console/AppConsole.vala:44 +#: src/Console/AppConsole.vala:45 msgid "Delete cached info about available kernels" msgstr "" -#: src/Console/AppConsole.vala:45 +#: src/Console/AppConsole.vala:46 msgid "This help" msgstr "" -#: src/Console/AppConsole.vala:47 src/Gtk/AppGtk.vala:56 +#: src/Console/AppConsole.vala:48 src/Gtk/AppGtk.vala:56 msgid "Options" msgstr "" -#: src/Console/AppConsole.vala:49 +#: src/Console/AppConsole.vala:50 msgid "Include unstable and RC releases" msgstr "" -#: src/Console/AppConsole.vala:50 +#: src/Console/AppConsole.vala:51 msgid "Exclude unstable and RC releases" msgstr "" -#: src/Console/AppConsole.vala:51 +#: src/Console/AppConsole.vala:52 msgid "Verbosity. Set to n if given, or increment." msgstr "" -#: src/Console/AppConsole.vala:52 +#: src/Console/AppConsole.vala:53 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "" -#: src/Console/AppConsole.vala:53 +#: src/Console/AppConsole.vala:54 msgid "Pause for keypress before exiting (for external terminal)" msgstr "" -#: src/Console/AppConsole.vala:56 +#: src/Console/AppConsole.vala:57 msgid "One or more version strings taken from the output of --list" msgstr "" -#: src/Console/AppConsole.vala:57 -msgid "comma, pipe, or colon-seperated, or quoted space seperated" +#: src/Console/AppConsole.vala:58 +msgid "" +"comma, pipe, colon, or space seperated. (space requires quotes or " +"backslashes)" msgstr "" -#: src/Console/AppConsole.vala:58 +#: src/Console/AppConsole.vala:59 msgid "Locked kernels and the currently running kernel are ignored" msgstr "" -#: src/Console/AppConsole.vala:159 src/Gtk/AppGtk.vala:89 +#: src/Console/AppConsole.vala:161 src/Gtk/AppGtk.vala:89 msgid "Unknown option" msgstr "" -#: src/Console/AppConsole.vala:197 +#: src/Console/AppConsole.vala:199 msgid "Deleted" msgstr "" -#: src/Console/AppConsole.vala:198 +#: src/Console/AppConsole.vala:200 msgid "Error deleting" msgstr "" -#: src/Console/AppConsole.vala:212 +#: src/Console/AppConsole.vala:214 msgid "Unknown command" msgstr "" -#: src/Console/AppConsole.vala:223 +#: src/Console/AppConsole.vala:225 msgid "Latest update" msgstr "" -#: src/Console/AppConsole.vala:224 +#: src/Console/AppConsole.vala:226 msgid "Latest point update" msgstr "" -#: src/Console/AppConsole.vala:225 src/Console/AppConsole.vala:243 +#: src/Console/AppConsole.vala:227 src/Console/AppConsole.vala:245 msgid "No updates found" msgstr "" -#: src/Console/AppConsole.vala:232 +#: src/Console/AppConsole.vala:234 msgid "Notifications disabled" msgstr "" -#: src/Console/AppConsole.vala:237 +#: src/Console/AppConsole.vala:239 msgid "No" msgstr "" -#: src/Console/AppConsole.vala:252 +#: src/Console/AppConsole.vala:254 msgid "notify point releases disabled" msgstr "" -#: src/Console/AppConsole.vala:260 +#: src/Console/AppConsole.vala:262 msgid "notify major releases disabled" msgstr "" -#: src/Console/AppConsole.vala:265 +#: src/Console/AppConsole.vala:267 #, c-format msgid "Kernel %s Available" msgstr "" -#: src/Console/AppConsole.vala:269 src/Gtk/SettingsDialog.vala:124 +#: src/Console/AppConsole.vala:271 src/Gtk/SettingsDialog.vala:124 msgid "Show" msgstr "" -#: src/Console/AppConsole.vala:270 src/Gtk/MainWindow.vala:319 +#: src/Console/AppConsole.vala:272 src/Gtk/MainWindow.vala:319 msgid "Install" msgstr "" -#: src/Console/AppConsole.vala:273 +#: src/Console/AppConsole.vala:275 msgid "Previously notified" msgstr "" diff --git a/po/nl.po b/po/nl.po index a43b6907..45a80046 100644 --- a/po/nl.po +++ b/po/nl.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-24 02:38-0400\n" +"POT-Creation-Date: 2023-06-24 16:28-0400\n" "PO-Revision-Date: 2020-08-23 13:55+0200\n" "Last-Translator: Heimen Stoffels \n" "Language-Team: Dutch (Netherlands)\n" @@ -250,166 +250,173 @@ msgstr "Meldingen zijn uitgeschakeld" msgid "Can not reach site" msgstr "Kan de site niet bereiken" -#: src/Console/AppConsole.vala:30 src/Gtk/AppGtk.vala:54 +#: src/Console/AppConsole.vala:29 +msgid "install kernel packages from kernel.ubuntu.com" +msgstr "" + +#: src/Console/AppConsole.vala:31 src/Gtk/AppGtk.vala:54 msgid "Syntax" msgstr "Syntaxis" -#: src/Console/AppConsole.vala:32 +#: src/Console/AppConsole.vala:33 msgid "Commands" msgstr "Opdrachten" -#: src/Console/AppConsole.vala:34 +#: src/Console/AppConsole.vala:35 msgid "Check for kernel updates" msgstr "Controleren op kernelupdates" -#: src/Console/AppConsole.vala:35 -msgid "Check for kernel updates and notify current user" +#: src/Console/AppConsole.vala:36 +#, fuzzy +msgid "Check for kernel updates and send a desktop notification" msgstr "Controleren op kernelupdates en gebruiker op de hoogte brengen" -#: src/Console/AppConsole.vala:36 +#: src/Console/AppConsole.vala:37 #, fuzzy -msgid "List available mainline kernels" +msgid "List available kernels" msgstr "Alle beschikbare mainline-kernels tonen" -#: src/Console/AppConsole.vala:37 +#: src/Console/AppConsole.vala:38 msgid "List installed kernels" msgstr "Alle geïnstalleerde kernels tonen" -#: src/Console/AppConsole.vala:38 +#: src/Console/AppConsole.vala:39 msgid "Install latest mainline kernel" msgstr "Recentste mainline-kernel installeren" -#: src/Console/AppConsole.vala:39 +#: src/Console/AppConsole.vala:40 #, fuzzy msgid "Install latest point update in the current major version" msgstr "Recentste puntupdate uit huidige editie installeren" -#: src/Console/AppConsole.vala:40 +#: src/Console/AppConsole.vala:41 #, fuzzy msgid "Install specified kernels" msgstr "Opgegeven kernel verwijderen" -#: src/Console/AppConsole.vala:41 +#: src/Console/AppConsole.vala:42 #, fuzzy msgid "Uninstall specified kernels" msgstr "Opgegeven kernel verwijderen" -#: src/Console/AppConsole.vala:42 src/Gtk/MainWindow.vala:340 +#: src/Console/AppConsole.vala:43 src/Gtk/MainWindow.vala:340 msgid "Uninstall all but the highest installed version" msgstr "Verwijder alle behalve de hoogst geïnstalleerde versie" -#: src/Console/AppConsole.vala:43 +#: src/Console/AppConsole.vala:44 msgid "Download specified kernels" msgstr "Opgegeven kernels downloaden" -#: src/Console/AppConsole.vala:44 +#: src/Console/AppConsole.vala:45 msgid "Delete cached info about available kernels" msgstr "Informatie over beschikbare kernels in de cache verwijderen" -#: src/Console/AppConsole.vala:45 +#: src/Console/AppConsole.vala:46 msgid "This help" msgstr "" -#: src/Console/AppConsole.vala:47 src/Gtk/AppGtk.vala:56 +#: src/Console/AppConsole.vala:48 src/Gtk/AppGtk.vala:56 msgid "Options" msgstr "Opties" -#: src/Console/AppConsole.vala:49 +#: src/Console/AppConsole.vala:50 msgid "Include unstable and RC releases" msgstr "Inclusief onstabiele en RC-releases" -#: src/Console/AppConsole.vala:50 +#: src/Console/AppConsole.vala:51 msgid "Exclude unstable and RC releases" msgstr "Onstabiele en RC-releases uitsluiten" -#: src/Console/AppConsole.vala:51 +#: src/Console/AppConsole.vala:52 msgid "Verbosity. Set to n if given, or increment." msgstr "" -#: src/Console/AppConsole.vala:52 +#: src/Console/AppConsole.vala:53 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "Ja op alles (in de niet-interactieve modus)" -#: src/Console/AppConsole.vala:53 +#: src/Console/AppConsole.vala:54 msgid "Pause for keypress before exiting (for external terminal)" msgstr "" -#: src/Console/AppConsole.vala:56 +#: src/Console/AppConsole.vala:57 #, fuzzy msgid "One or more version strings taken from the output of --list" msgstr "Een versietekenreeks uit de uitvoer van --list" -#: src/Console/AppConsole.vala:57 -msgid "comma, pipe, or colon-seperated, or quoted space seperated" +#: src/Console/AppConsole.vala:58 +msgid "" +"comma, pipe, colon, or space seperated. (space requires quotes or " +"backslashes)" msgstr "" -#: src/Console/AppConsole.vala:58 +#: src/Console/AppConsole.vala:59 #, fuzzy msgid "Locked kernels and the currently running kernel are ignored" msgstr "De momenteel actieve kernel wordt altijd genegeerd" -#: src/Console/AppConsole.vala:159 src/Gtk/AppGtk.vala:89 +#: src/Console/AppConsole.vala:161 src/Gtk/AppGtk.vala:89 msgid "Unknown option" msgstr "Onbekende optie" -#: src/Console/AppConsole.vala:197 +#: src/Console/AppConsole.vala:199 msgid "Deleted" msgstr "" -#: src/Console/AppConsole.vala:198 +#: src/Console/AppConsole.vala:200 msgid "Error deleting" msgstr "" -#: src/Console/AppConsole.vala:212 +#: src/Console/AppConsole.vala:214 #, fuzzy msgid "Unknown command" msgstr "Onbekende optie" -#: src/Console/AppConsole.vala:223 +#: src/Console/AppConsole.vala:225 msgid "Latest update" msgstr "Recentste update" -#: src/Console/AppConsole.vala:224 +#: src/Console/AppConsole.vala:226 msgid "Latest point update" msgstr "Recentste puntupdate" -#: src/Console/AppConsole.vala:225 src/Console/AppConsole.vala:243 +#: src/Console/AppConsole.vala:227 src/Console/AppConsole.vala:245 msgid "No updates found" msgstr "Geen updates gevonden" -#: src/Console/AppConsole.vala:232 +#: src/Console/AppConsole.vala:234 #, fuzzy msgid "Notifications disabled" msgstr "Meldingen zijn uitgeschakeld" -#: src/Console/AppConsole.vala:237 +#: src/Console/AppConsole.vala:239 msgid "No" msgstr "" -#: src/Console/AppConsole.vala:252 +#: src/Console/AppConsole.vala:254 #, fuzzy msgid "notify point releases disabled" msgstr "Melding tonen als er een puntupdate beschikbaar is" -#: src/Console/AppConsole.vala:260 +#: src/Console/AppConsole.vala:262 #, fuzzy msgid "notify major releases disabled" msgstr "Melding tonen als er een grote update beschikbaar is" -#: src/Console/AppConsole.vala:265 +#: src/Console/AppConsole.vala:267 #, c-format msgid "Kernel %s Available" msgstr "Kernel %s is beschikbaar" -#: src/Console/AppConsole.vala:269 src/Gtk/SettingsDialog.vala:124 +#: src/Console/AppConsole.vala:271 src/Gtk/SettingsDialog.vala:124 msgid "Show" msgstr "Tonen" -#: src/Console/AppConsole.vala:270 src/Gtk/MainWindow.vala:319 +#: src/Console/AppConsole.vala:272 src/Gtk/MainWindow.vala:319 msgid "Install" msgstr "Installeren" -#: src/Console/AppConsole.vala:273 +#: src/Console/AppConsole.vala:275 msgid "Previously notified" msgstr "Eerder gemeld" diff --git a/po/pl.po b/po/pl.po index 1e749db3..1e9cea2b 100644 --- a/po/pl.po +++ b/po/pl.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-24 02:38-0400\n" +"POT-Creation-Date: 2023-06-24 16:28-0400\n" "PO-Revision-Date: 2023-06-21 01:02+0200\n" "Last-Translator: Matthaiks\n" "Language-Team: Polish\n" @@ -238,158 +238,167 @@ msgstr "Powiadomienia są wyłączone" msgid "Can not reach site" msgstr "Nie można dotrzeć do witryny" -#: src/Console/AppConsole.vala:30 src/Gtk/AppGtk.vala:54 +#: src/Console/AppConsole.vala:29 +msgid "install kernel packages from kernel.ubuntu.com" +msgstr "" + +#: src/Console/AppConsole.vala:31 src/Gtk/AppGtk.vala:54 msgid "Syntax" msgstr "Składnia" -#: src/Console/AppConsole.vala:32 +#: src/Console/AppConsole.vala:33 msgid "Commands" msgstr "Polecenia" -#: src/Console/AppConsole.vala:34 +#: src/Console/AppConsole.vala:35 msgid "Check for kernel updates" msgstr "Sprawdź nowe wersje jądra" -#: src/Console/AppConsole.vala:35 -msgid "Check for kernel updates and notify current user" +#: src/Console/AppConsole.vala:36 +#, fuzzy +msgid "Check for kernel updates and send a desktop notification" msgstr "Sprawdź nowe wersje jądra i powiadom bieżącego użytkownika" -#: src/Console/AppConsole.vala:36 -msgid "List available mainline kernels" +#: src/Console/AppConsole.vala:37 +#, fuzzy +msgid "List available kernels" msgstr "Wyświetl listę dostępnych głównych jąder" -#: src/Console/AppConsole.vala:37 +#: src/Console/AppConsole.vala:38 msgid "List installed kernels" msgstr "Wyświetl listę zainstalowanych jąder" -#: src/Console/AppConsole.vala:38 +#: src/Console/AppConsole.vala:39 msgid "Install latest mainline kernel" msgstr "Zainstaluj najnowsze jądro" -#: src/Console/AppConsole.vala:39 +#: src/Console/AppConsole.vala:40 msgid "Install latest point update in the current major version" msgstr "Zainstaluj najnowszą aktualizację punktową bieżącej wersji głównej" -#: src/Console/AppConsole.vala:40 +#: src/Console/AppConsole.vala:41 msgid "Install specified kernels" msgstr "Zainstaluj wybrane jądra" -#: src/Console/AppConsole.vala:41 +#: src/Console/AppConsole.vala:42 msgid "Uninstall specified kernels" msgstr "Odinstaluj wybrane jądra" -#: src/Console/AppConsole.vala:42 src/Gtk/MainWindow.vala:340 +#: src/Console/AppConsole.vala:43 src/Gtk/MainWindow.vala:340 msgid "Uninstall all but the highest installed version" msgstr "Odinstaluj wszystkie oprócz najwyższej zainstalowanej wersji" -#: src/Console/AppConsole.vala:43 +#: src/Console/AppConsole.vala:44 msgid "Download specified kernels" msgstr "Pobierz wybrane jądra" -#: src/Console/AppConsole.vala:44 +#: src/Console/AppConsole.vala:45 msgid "Delete cached info about available kernels" msgstr "Usuń informacje z pamięci podręcznej o dostępnych jądrach" -#: src/Console/AppConsole.vala:45 +#: src/Console/AppConsole.vala:46 msgid "This help" msgstr "" -#: src/Console/AppConsole.vala:47 src/Gtk/AppGtk.vala:56 +#: src/Console/AppConsole.vala:48 src/Gtk/AppGtk.vala:56 msgid "Options" msgstr "Opcje" -#: src/Console/AppConsole.vala:49 +#: src/Console/AppConsole.vala:50 msgid "Include unstable and RC releases" msgstr "Uwzględnij wydania niestabilne i RC" -#: src/Console/AppConsole.vala:50 +#: src/Console/AppConsole.vala:51 msgid "Exclude unstable and RC releases" msgstr "Wyklucz wersje niestabilne i RC" -#: src/Console/AppConsole.vala:51 +#: src/Console/AppConsole.vala:52 msgid "Verbosity. Set to n if given, or increment." msgstr "Opisowość. Ustaw na n, jeśli podano, lub zwiększ." -#: src/Console/AppConsole.vala:52 +#: src/Console/AppConsole.vala:53 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "Przyjmij Tak dla wszystkich monitów (tryb nieinteraktywny)" -#: src/Console/AppConsole.vala:53 +#: src/Console/AppConsole.vala:54 msgid "Pause for keypress before exiting (for external terminal)" msgstr "" -#: src/Console/AppConsole.vala:56 +#: src/Console/AppConsole.vala:57 msgid "One or more version strings taken from the output of --list" msgstr "Jeden lub więcej ciągów wersji pobranych z danych wyjściowych --list" -#: src/Console/AppConsole.vala:57 -msgid "comma, pipe, or colon-seperated, or quoted space seperated" +#: src/Console/AppConsole.vala:58 +#, fuzzy +msgid "" +"comma, pipe, colon, or space seperated. (space requires quotes or " +"backslashes)" msgstr "" "oddzielone przecinkiem, kreską pionową, dwukropkiem lub spacją w cudzysłowie" -#: src/Console/AppConsole.vala:58 +#: src/Console/AppConsole.vala:59 msgid "Locked kernels and the currently running kernel are ignored" msgstr "Zablokowane jądra i aktualnie uruchomione jądro są ignorowane" -#: src/Console/AppConsole.vala:159 src/Gtk/AppGtk.vala:89 +#: src/Console/AppConsole.vala:161 src/Gtk/AppGtk.vala:89 msgid "Unknown option" msgstr "Nieznana opcja" -#: src/Console/AppConsole.vala:197 +#: src/Console/AppConsole.vala:199 msgid "Deleted" msgstr "Usunięto" -#: src/Console/AppConsole.vala:198 +#: src/Console/AppConsole.vala:200 msgid "Error deleting" msgstr "Błąd podczas usuwania" -#: src/Console/AppConsole.vala:212 +#: src/Console/AppConsole.vala:214 #, fuzzy msgid "Unknown command" msgstr "Nieznana opcja" -#: src/Console/AppConsole.vala:223 +#: src/Console/AppConsole.vala:225 msgid "Latest update" msgstr "Najnowsza aktualizacja" -#: src/Console/AppConsole.vala:224 +#: src/Console/AppConsole.vala:226 msgid "Latest point update" msgstr "Najnowsza aktualizacja punktowa" -#: src/Console/AppConsole.vala:225 src/Console/AppConsole.vala:243 +#: src/Console/AppConsole.vala:227 src/Console/AppConsole.vala:245 msgid "No updates found" msgstr "Nie znaleziono aktualizacji" -#: src/Console/AppConsole.vala:232 +#: src/Console/AppConsole.vala:234 msgid "Notifications disabled" msgstr "Wyłączono powiadomienia" -#: src/Console/AppConsole.vala:237 +#: src/Console/AppConsole.vala:239 msgid "No" msgstr "Nie" -#: src/Console/AppConsole.vala:252 +#: src/Console/AppConsole.vala:254 msgid "notify point releases disabled" msgstr "wyłączono powiadomienia o wersjach punktowych" -#: src/Console/AppConsole.vala:260 +#: src/Console/AppConsole.vala:262 msgid "notify major releases disabled" msgstr "wyłączono powiadomienia o wersjach głównych" -#: src/Console/AppConsole.vala:265 +#: src/Console/AppConsole.vala:267 #, c-format msgid "Kernel %s Available" msgstr "Dostępne %s jądra" -#: src/Console/AppConsole.vala:269 src/Gtk/SettingsDialog.vala:124 +#: src/Console/AppConsole.vala:271 src/Gtk/SettingsDialog.vala:124 msgid "Show" msgstr "Pokaż" -#: src/Console/AppConsole.vala:270 src/Gtk/MainWindow.vala:319 +#: src/Console/AppConsole.vala:272 src/Gtk/MainWindow.vala:319 msgid "Install" msgstr "Zainstaluj" -#: src/Console/AppConsole.vala:273 +#: src/Console/AppConsole.vala:275 msgid "Previously notified" msgstr "Wcześniej powiadomiono" diff --git a/po/ru.po b/po/ru.po index fa32ee11..8aeed0ae 100644 --- a/po/ru.po +++ b/po/ru.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-24 02:38-0400\n" +"POT-Creation-Date: 2023-06-24 16:28-0400\n" "PO-Revision-Date: 2023-06-24 16:38+0300\n" "Last-Translator: Faust3000 (Original) | Danik2343 (Update Transaltion) " "\n" @@ -238,157 +238,166 @@ msgstr "Уведомления отключены" msgid "Can not reach site" msgstr "Не удается связаться с сайтом" -#: src/Console/AppConsole.vala:30 src/Gtk/AppGtk.vala:54 +#: src/Console/AppConsole.vala:29 +msgid "install kernel packages from kernel.ubuntu.com" +msgstr "" + +#: src/Console/AppConsole.vala:31 src/Gtk/AppGtk.vala:54 msgid "Syntax" msgstr "Синтаксис" -#: src/Console/AppConsole.vala:32 +#: src/Console/AppConsole.vala:33 msgid "Commands" msgstr "Комманды" -#: src/Console/AppConsole.vala:34 +#: src/Console/AppConsole.vala:35 msgid "Check for kernel updates" msgstr "Проверить обновления ядра" -#: src/Console/AppConsole.vala:35 -msgid "Check for kernel updates and notify current user" +#: src/Console/AppConsole.vala:36 +#, fuzzy +msgid "Check for kernel updates and send a desktop notification" msgstr "Проверить обновления ядра и уведомить текущего пользователя" -#: src/Console/AppConsole.vala:36 -msgid "List available mainline kernels" +#: src/Console/AppConsole.vala:37 +#, fuzzy +msgid "List available kernels" msgstr "Список доступных основных ядер" -#: src/Console/AppConsole.vala:37 +#: src/Console/AppConsole.vala:38 msgid "List installed kernels" msgstr "Список установленных ядер" -#: src/Console/AppConsole.vala:38 +#: src/Console/AppConsole.vala:39 msgid "Install latest mainline kernel" msgstr "Установите последнюю версию основного ядра" -#: src/Console/AppConsole.vala:39 +#: src/Console/AppConsole.vala:40 msgid "Install latest point update in the current major version" msgstr "Установить последнее точечное обновление в текущей основной версии" -#: src/Console/AppConsole.vala:40 +#: src/Console/AppConsole.vala:41 msgid "Install specified kernels" msgstr "Установить указанные ядра" -#: src/Console/AppConsole.vala:41 +#: src/Console/AppConsole.vala:42 msgid "Uninstall specified kernels" msgstr "Удалить указанные ядра" -#: src/Console/AppConsole.vala:42 src/Gtk/MainWindow.vala:340 +#: src/Console/AppConsole.vala:43 src/Gtk/MainWindow.vala:340 msgid "Uninstall all but the highest installed version" msgstr "Удаление всех установленных версий, кроме самой высокой" -#: src/Console/AppConsole.vala:43 +#: src/Console/AppConsole.vala:44 msgid "Download specified kernels" msgstr "Скачать указанные ядра" -#: src/Console/AppConsole.vala:44 +#: src/Console/AppConsole.vala:45 msgid "Delete cached info about available kernels" msgstr "Удаление кэшированной информации о доступных ядрах" -#: src/Console/AppConsole.vala:45 +#: src/Console/AppConsole.vala:46 msgid "This help" msgstr "Это справка" -#: src/Console/AppConsole.vala:47 src/Gtk/AppGtk.vala:56 +#: src/Console/AppConsole.vala:48 src/Gtk/AppGtk.vala:56 msgid "Options" msgstr "Параметры" -#: src/Console/AppConsole.vala:49 +#: src/Console/AppConsole.vala:50 msgid "Include unstable and RC releases" msgstr "Включать нестабильные и релиз-кандидат релизы" -#: src/Console/AppConsole.vala:50 +#: src/Console/AppConsole.vala:51 msgid "Exclude unstable and RC releases" msgstr "Исключить нестабильные и релиз-кандидат релизы" -#: src/Console/AppConsole.vala:51 +#: src/Console/AppConsole.vala:52 msgid "Verbosity. Set to n if given, or increment." msgstr "Многословие. Установите в n, если задано, или увеличьте." -#: src/Console/AppConsole.vala:52 +#: src/Console/AppConsole.vala:53 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "Предполагать \"Да\" для всех запросов (неинтерактивный режим)" -#: src/Console/AppConsole.vala:53 +#: src/Console/AppConsole.vala:54 msgid "Pause for keypress before exiting (for external terminal)" msgstr "Приостановить нажатия клавиш перед выходом (для внешнего терминала)" -#: src/Console/AppConsole.vala:56 +#: src/Console/AppConsole.vala:57 msgid "One or more version strings taken from the output of --list" msgstr "Одна или несколько строк версии, взятых из вывода --list" -#: src/Console/AppConsole.vala:57 -msgid "comma, pipe, or colon-seperated, or quoted space seperated" +#: src/Console/AppConsole.vala:58 +#, fuzzy +msgid "" +"comma, pipe, colon, or space seperated. (space requires quotes or " +"backslashes)" msgstr "" "через запятую, вертикальную черту или двоеточие или через пробел в кавычках" -#: src/Console/AppConsole.vala:58 +#: src/Console/AppConsole.vala:59 msgid "Locked kernels and the currently running kernel are ignored" msgstr "Заблокированные ядра и работающее в данный момент ядро игнорируются" -#: src/Console/AppConsole.vala:159 src/Gtk/AppGtk.vala:89 +#: src/Console/AppConsole.vala:161 src/Gtk/AppGtk.vala:89 msgid "Unknown option" msgstr "Неизвестный параметр" -#: src/Console/AppConsole.vala:197 +#: src/Console/AppConsole.vala:199 msgid "Deleted" msgstr "Удалено" -#: src/Console/AppConsole.vala:198 +#: src/Console/AppConsole.vala:200 msgid "Error deleting" msgstr "Ошибка удаления" -#: src/Console/AppConsole.vala:212 +#: src/Console/AppConsole.vala:214 msgid "Unknown command" msgstr "Неизвестная команда" -#: src/Console/AppConsole.vala:223 +#: src/Console/AppConsole.vala:225 msgid "Latest update" msgstr "Последнее обновление" -#: src/Console/AppConsole.vala:224 +#: src/Console/AppConsole.vala:226 msgid "Latest point update" msgstr "Последнее обновление пунктов" -#: src/Console/AppConsole.vala:225 src/Console/AppConsole.vala:243 +#: src/Console/AppConsole.vala:227 src/Console/AppConsole.vala:245 msgid "No updates found" msgstr "Обновлений не найдено" -#: src/Console/AppConsole.vala:232 +#: src/Console/AppConsole.vala:234 msgid "Notifications disabled" msgstr "Уведомления отключены" -#: src/Console/AppConsole.vala:237 +#: src/Console/AppConsole.vala:239 msgid "No" msgstr "Нет" -#: src/Console/AppConsole.vala:252 +#: src/Console/AppConsole.vala:254 msgid "notify point releases disabled" msgstr "уведомления о выпуске точечных релизов отключены" -#: src/Console/AppConsole.vala:260 +#: src/Console/AppConsole.vala:262 msgid "notify major releases disabled" msgstr "отключено уведомление о крупных релизах" -#: src/Console/AppConsole.vala:265 +#: src/Console/AppConsole.vala:267 #, c-format msgid "Kernel %s Available" msgstr "Доступно ядро %s" -#: src/Console/AppConsole.vala:269 src/Gtk/SettingsDialog.vala:124 +#: src/Console/AppConsole.vala:271 src/Gtk/SettingsDialog.vala:124 msgid "Show" msgstr "Показать" -#: src/Console/AppConsole.vala:270 src/Gtk/MainWindow.vala:319 +#: src/Console/AppConsole.vala:272 src/Gtk/MainWindow.vala:319 msgid "Install" msgstr "Установить" -#: src/Console/AppConsole.vala:273 +#: src/Console/AppConsole.vala:275 msgid "Previously notified" msgstr "Предварительно уведомлено" diff --git a/po/sv.po b/po/sv.po index 8c41edc6..6fc75bc1 100644 --- a/po/sv.po +++ b/po/sv.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-24 02:38-0400\n" +"POT-Creation-Date: 2023-06-24 16:28-0400\n" "PO-Revision-Date: 2018-01-13 16:56+0100\n" "Last-Translator: Åke Engelbrektson \n" "Language-Team:Swedish\n" @@ -248,166 +248,173 @@ msgstr "Meddelanden är inaktiverade" msgid "Can not reach site" msgstr "Kan inte nå webbplatsen" -#: src/Console/AppConsole.vala:30 src/Gtk/AppGtk.vala:54 +#: src/Console/AppConsole.vala:29 +msgid "install kernel packages from kernel.ubuntu.com" +msgstr "" + +#: src/Console/AppConsole.vala:31 src/Gtk/AppGtk.vala:54 msgid "Syntax" msgstr "Syntax" -#: src/Console/AppConsole.vala:32 +#: src/Console/AppConsole.vala:33 msgid "Commands" msgstr "Kommandon" -#: src/Console/AppConsole.vala:34 +#: src/Console/AppConsole.vala:35 msgid "Check for kernel updates" msgstr "Sök efter kärnuppdateringar" -#: src/Console/AppConsole.vala:35 -msgid "Check for kernel updates and notify current user" +#: src/Console/AppConsole.vala:36 +#, fuzzy +msgid "Check for kernel updates and send a desktop notification" msgstr "Sök efter kärnuppdateringar och meddela aktuell användare" -#: src/Console/AppConsole.vala:36 +#: src/Console/AppConsole.vala:37 #, fuzzy -msgid "List available mainline kernels" +msgid "List available kernels" msgstr "Lista alla tillgängliga kärnor" -#: src/Console/AppConsole.vala:37 +#: src/Console/AppConsole.vala:38 msgid "List installed kernels" msgstr "Lista installerade kärnor" -#: src/Console/AppConsole.vala:38 +#: src/Console/AppConsole.vala:39 msgid "Install latest mainline kernel" msgstr "Installera senaste mainline-kärnan" -#: src/Console/AppConsole.vala:39 +#: src/Console/AppConsole.vala:40 #, fuzzy msgid "Install latest point update in the current major version" msgstr "Installera senaste punktuppdateringen för aktuella serier" -#: src/Console/AppConsole.vala:40 +#: src/Console/AppConsole.vala:41 #, fuzzy msgid "Install specified kernels" msgstr "Avinstallera angiven kärna" -#: src/Console/AppConsole.vala:41 +#: src/Console/AppConsole.vala:42 #, fuzzy msgid "Uninstall specified kernels" msgstr "Avinstallera angiven kärna" -#: src/Console/AppConsole.vala:42 src/Gtk/MainWindow.vala:340 +#: src/Console/AppConsole.vala:43 src/Gtk/MainWindow.vala:340 msgid "Uninstall all but the highest installed version" msgstr "Avinstallera alla utom den högsta installerade versionen" -#: src/Console/AppConsole.vala:43 +#: src/Console/AppConsole.vala:44 msgid "Download specified kernels" msgstr "Ladda ner angivna kärnor" -#: src/Console/AppConsole.vala:44 +#: src/Console/AppConsole.vala:45 msgid "Delete cached info about available kernels" msgstr "Ta bort cachelagrad information om tillgängliga kärnor" -#: src/Console/AppConsole.vala:45 +#: src/Console/AppConsole.vala:46 msgid "This help" msgstr "" -#: src/Console/AppConsole.vala:47 src/Gtk/AppGtk.vala:56 +#: src/Console/AppConsole.vala:48 src/Gtk/AppGtk.vala:56 msgid "Options" msgstr "Alternativ" -#: src/Console/AppConsole.vala:49 +#: src/Console/AppConsole.vala:50 msgid "Include unstable and RC releases" msgstr "Inkludera instabila utgåvor och RC-utgåvor" -#: src/Console/AppConsole.vala:50 +#: src/Console/AppConsole.vala:51 msgid "Exclude unstable and RC releases" msgstr "Exkludera instabila utgåvor och RC-utgåvor" -#: src/Console/AppConsole.vala:51 +#: src/Console/AppConsole.vala:52 msgid "Verbosity. Set to n if given, or increment." msgstr "" -#: src/Console/AppConsole.vala:52 +#: src/Console/AppConsole.vala:53 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "Antag Ja för alla prompter (icke-interaktivt läge)" -#: src/Console/AppConsole.vala:53 +#: src/Console/AppConsole.vala:54 msgid "Pause for keypress before exiting (for external terminal)" msgstr "" -#: src/Console/AppConsole.vala:56 +#: src/Console/AppConsole.vala:57 #, fuzzy msgid "One or more version strings taken from the output of --list" msgstr "En versionssträng som hämtas från utdata från --list" -#: src/Console/AppConsole.vala:57 -msgid "comma, pipe, or colon-seperated, or quoted space seperated" +#: src/Console/AppConsole.vala:58 +msgid "" +"comma, pipe, colon, or space seperated. (space requires quotes or " +"backslashes)" msgstr "" -#: src/Console/AppConsole.vala:58 +#: src/Console/AppConsole.vala:59 #, fuzzy msgid "Locked kernels and the currently running kernel are ignored" msgstr "Den kärna som för närvarande körs ignoreras alltid" -#: src/Console/AppConsole.vala:159 src/Gtk/AppGtk.vala:89 +#: src/Console/AppConsole.vala:161 src/Gtk/AppGtk.vala:89 msgid "Unknown option" msgstr "Okänt alternativ" -#: src/Console/AppConsole.vala:197 +#: src/Console/AppConsole.vala:199 msgid "Deleted" msgstr "" -#: src/Console/AppConsole.vala:198 +#: src/Console/AppConsole.vala:200 msgid "Error deleting" msgstr "" -#: src/Console/AppConsole.vala:212 +#: src/Console/AppConsole.vala:214 #, fuzzy msgid "Unknown command" msgstr "Okänt alternativ" -#: src/Console/AppConsole.vala:223 +#: src/Console/AppConsole.vala:225 msgid "Latest update" msgstr "Senaste uppdatering" -#: src/Console/AppConsole.vala:224 +#: src/Console/AppConsole.vala:226 msgid "Latest point update" msgstr "Senaste punktuppdatering" -#: src/Console/AppConsole.vala:225 src/Console/AppConsole.vala:243 +#: src/Console/AppConsole.vala:227 src/Console/AppConsole.vala:245 msgid "No updates found" msgstr "Inga uppdateringar hittades" -#: src/Console/AppConsole.vala:232 +#: src/Console/AppConsole.vala:234 #, fuzzy msgid "Notifications disabled" msgstr "Meddelanden är inaktiverade" -#: src/Console/AppConsole.vala:237 +#: src/Console/AppConsole.vala:239 msgid "No" msgstr "" -#: src/Console/AppConsole.vala:252 +#: src/Console/AppConsole.vala:254 #, fuzzy msgid "notify point releases disabled" msgstr "Meddela om en punktrelease är tillgänglig" -#: src/Console/AppConsole.vala:260 +#: src/Console/AppConsole.vala:262 #, fuzzy msgid "notify major releases disabled" msgstr "Meddela om en större version är tillgänglig" -#: src/Console/AppConsole.vala:265 +#: src/Console/AppConsole.vala:267 #, c-format msgid "Kernel %s Available" msgstr "Kernel %s tillgängliga" -#: src/Console/AppConsole.vala:269 src/Gtk/SettingsDialog.vala:124 +#: src/Console/AppConsole.vala:271 src/Gtk/SettingsDialog.vala:124 msgid "Show" msgstr "Visa" -#: src/Console/AppConsole.vala:270 src/Gtk/MainWindow.vala:319 +#: src/Console/AppConsole.vala:272 src/Gtk/MainWindow.vala:319 msgid "Install" msgstr "Installera" -#: src/Console/AppConsole.vala:273 +#: src/Console/AppConsole.vala:275 msgid "Previously notified" msgstr "Tidigare anmält" diff --git a/po/tr.po b/po/tr.po index 5ddaebb6..c014459c 100644 --- a/po/tr.po +++ b/po/tr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-24 02:38-0400\n" +"POT-Creation-Date: 2023-06-24 16:28-0400\n" "PO-Revision-Date: 2022-08-06 16:48+0300\n" "Last-Translator: Sabri Ünal \n" "Language-Team: Turkish\n" @@ -249,167 +249,174 @@ msgstr "Bildirimler devre dışı bırakılmış" msgid "Can not reach site" msgstr "Siteye ulaşılamıyor" -#: src/Console/AppConsole.vala:30 src/Gtk/AppGtk.vala:54 +#: src/Console/AppConsole.vala:29 +msgid "install kernel packages from kernel.ubuntu.com" +msgstr "" + +#: src/Console/AppConsole.vala:31 src/Gtk/AppGtk.vala:54 msgid "Syntax" msgstr "Sözdizimi" -#: src/Console/AppConsole.vala:32 +#: src/Console/AppConsole.vala:33 msgid "Commands" msgstr "Komutlar" -#: src/Console/AppConsole.vala:34 +#: src/Console/AppConsole.vala:35 msgid "Check for kernel updates" msgstr "Çekirdek güncellemelerini kontrol et" -#: src/Console/AppConsole.vala:35 -msgid "Check for kernel updates and notify current user" +#: src/Console/AppConsole.vala:36 +#, fuzzy +msgid "Check for kernel updates and send a desktop notification" msgstr "Çekirdek güncellemelerini kontrol et ve mevcut kullanıcıyı uyar" -#: src/Console/AppConsole.vala:36 +#: src/Console/AppConsole.vala:37 #, fuzzy -msgid "List available mainline kernels" +msgid "List available kernels" msgstr "Tüm mainline çekirdeklerini listele" -#: src/Console/AppConsole.vala:37 +#: src/Console/AppConsole.vala:38 msgid "List installed kernels" msgstr "Kurulu çekirdekleri listele" -#: src/Console/AppConsole.vala:38 +#: src/Console/AppConsole.vala:39 msgid "Install latest mainline kernel" msgstr "En son mainline çekirdeğini kur" -#: src/Console/AppConsole.vala:39 +#: src/Console/AppConsole.vala:40 #, fuzzy msgid "Install latest point update in the current major version" msgstr "Mevcut çekirdek serisi için en son nokta güncellemesini kur" -#: src/Console/AppConsole.vala:40 +#: src/Console/AppConsole.vala:41 #, fuzzy msgid "Install specified kernels" msgstr "Belirtilen çekirdeğini kaldır" -#: src/Console/AppConsole.vala:41 +#: src/Console/AppConsole.vala:42 #, fuzzy msgid "Uninstall specified kernels" msgstr "Belirtilen çekirdeğini kaldır" -#: src/Console/AppConsole.vala:42 src/Gtk/MainWindow.vala:340 +#: src/Console/AppConsole.vala:43 src/Gtk/MainWindow.vala:340 msgid "Uninstall all but the highest installed version" msgstr "En yüksek yüklü sürüm dışındaki tüm sürümleri kaldırın" -#: src/Console/AppConsole.vala:43 +#: src/Console/AppConsole.vala:44 msgid "Download specified kernels" msgstr "Belirtilen çekirdekleri indir" -#: src/Console/AppConsole.vala:44 +#: src/Console/AppConsole.vala:45 msgid "Delete cached info about available kernels" msgstr "Kullanılabilir çekirdekler hakkında önbelleğe alınmış bilgileri silme" -#: src/Console/AppConsole.vala:45 +#: src/Console/AppConsole.vala:46 msgid "This help" msgstr "" -#: src/Console/AppConsole.vala:47 src/Gtk/AppGtk.vala:56 +#: src/Console/AppConsole.vala:48 src/Gtk/AppGtk.vala:56 msgid "Options" msgstr "Seçenekler" -#: src/Console/AppConsole.vala:49 +#: src/Console/AppConsole.vala:50 msgid "Include unstable and RC releases" msgstr "Kararsız ve RC sürümleri dahil et" -#: src/Console/AppConsole.vala:50 +#: src/Console/AppConsole.vala:51 msgid "Exclude unstable and RC releases" msgstr "Kararsız ve RC sürümlerini hariç tutma" -#: src/Console/AppConsole.vala:51 +#: src/Console/AppConsole.vala:52 msgid "Verbosity. Set to n if given, or increment." msgstr "" -#: src/Console/AppConsole.vala:52 +#: src/Console/AppConsole.vala:53 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "Tüm istemler için Evet'i kabul edin (etkileşimsiz kip)" -#: src/Console/AppConsole.vala:53 +#: src/Console/AppConsole.vala:54 msgid "Pause for keypress before exiting (for external terminal)" msgstr "" -#: src/Console/AppConsole.vala:56 +#: src/Console/AppConsole.vala:57 #, fuzzy msgid "One or more version strings taken from the output of --list" msgstr "--list çıktısından alınan sürüm dizgesi" -#: src/Console/AppConsole.vala:57 -msgid "comma, pipe, or colon-seperated, or quoted space seperated" +#: src/Console/AppConsole.vala:58 +msgid "" +"comma, pipe, colon, or space seperated. (space requires quotes or " +"backslashes)" msgstr "" -#: src/Console/AppConsole.vala:58 +#: src/Console/AppConsole.vala:59 #, fuzzy msgid "Locked kernels and the currently running kernel are ignored" msgstr "Şu anda çalışan çekirdek her zaman yoksayılır" -#: src/Console/AppConsole.vala:159 src/Gtk/AppGtk.vala:89 +#: src/Console/AppConsole.vala:161 src/Gtk/AppGtk.vala:89 msgid "Unknown option" msgstr "Bilinmeyen seçenek" -#: src/Console/AppConsole.vala:197 +#: src/Console/AppConsole.vala:199 msgid "Deleted" msgstr "" -#: src/Console/AppConsole.vala:198 +#: src/Console/AppConsole.vala:200 msgid "Error deleting" msgstr "" -#: src/Console/AppConsole.vala:212 +#: src/Console/AppConsole.vala:214 #, fuzzy msgid "Unknown command" msgstr "Bilinmeyen seçenek" -#: src/Console/AppConsole.vala:223 +#: src/Console/AppConsole.vala:225 msgid "Latest update" msgstr "Son güncelleme" # Point burada point release anlamında kullanılıyor. Örneğin 5.10.x sayısının en sonundaki x rakamı point release/nokta sürüm oluyor. -#: src/Console/AppConsole.vala:224 +#: src/Console/AppConsole.vala:226 msgid "Latest point update" msgstr "Son nokta güncellemesi" -#: src/Console/AppConsole.vala:225 src/Console/AppConsole.vala:243 +#: src/Console/AppConsole.vala:227 src/Console/AppConsole.vala:245 msgid "No updates found" msgstr "Güncelleme bulunamadı" -#: src/Console/AppConsole.vala:232 +#: src/Console/AppConsole.vala:234 #, fuzzy msgid "Notifications disabled" msgstr "Bildirimler devre dışı bırakılmış" -#: src/Console/AppConsole.vala:237 +#: src/Console/AppConsole.vala:239 msgid "No" msgstr "" -#: src/Console/AppConsole.vala:252 +#: src/Console/AppConsole.vala:254 #, fuzzy msgid "notify point releases disabled" msgstr "Nokta sürüm mevcutsa bildir" -#: src/Console/AppConsole.vala:260 +#: src/Console/AppConsole.vala:262 #, fuzzy msgid "notify major releases disabled" msgstr "Ana sürüm mevcutsa bildir" -#: src/Console/AppConsole.vala:265 +#: src/Console/AppConsole.vala:267 #, c-format msgid "Kernel %s Available" msgstr "Çekirdek %s Kullanılabilir" -#: src/Console/AppConsole.vala:269 src/Gtk/SettingsDialog.vala:124 +#: src/Console/AppConsole.vala:271 src/Gtk/SettingsDialog.vala:124 msgid "Show" msgstr "Göster" -#: src/Console/AppConsole.vala:270 src/Gtk/MainWindow.vala:319 +#: src/Console/AppConsole.vala:272 src/Gtk/MainWindow.vala:319 msgid "Install" msgstr "Kur" -#: src/Console/AppConsole.vala:273 +#: src/Console/AppConsole.vala:275 msgid "Previously notified" msgstr "Daha önce bildirilmiş" diff --git a/po/uk.po b/po/uk.po index 055aab69..97d4e623 100644 --- a/po/uk.po +++ b/po/uk.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-24 02:38-0400\n" +"POT-Creation-Date: 2023-06-24 16:28-0400\n" "PO-Revision-Date: 2019-07-25 11:00+0300\n" "Last-Translator: Serhii Golovko \n" "Language-Team: Ukranian\n" @@ -237,157 +237,166 @@ msgstr "Повідомлення вимкнено" msgid "Can not reach site" msgstr "Не вдається дістатися до сайту" -#: src/Console/AppConsole.vala:30 src/Gtk/AppGtk.vala:54 +#: src/Console/AppConsole.vala:29 +msgid "install kernel packages from kernel.ubuntu.com" +msgstr "" + +#: src/Console/AppConsole.vala:31 src/Gtk/AppGtk.vala:54 msgid "Syntax" msgstr "Синтаксис" -#: src/Console/AppConsole.vala:32 +#: src/Console/AppConsole.vala:33 msgid "Commands" msgstr "Команди" -#: src/Console/AppConsole.vala:34 +#: src/Console/AppConsole.vala:35 msgid "Check for kernel updates" msgstr "Перевірити оновлення ядра" -#: src/Console/AppConsole.vala:35 -msgid "Check for kernel updates and notify current user" +#: src/Console/AppConsole.vala:36 +#, fuzzy +msgid "Check for kernel updates and send a desktop notification" msgstr "Перевірте наявність оновлень ядра та повідомте поточного користувача" -#: src/Console/AppConsole.vala:36 -msgid "List available mainline kernels" +#: src/Console/AppConsole.vala:37 +#, fuzzy +msgid "List available kernels" msgstr "Список доступних основних ядер" -#: src/Console/AppConsole.vala:37 +#: src/Console/AppConsole.vala:38 msgid "List installed kernels" msgstr "Список встановлених ядер" -#: src/Console/AppConsole.vala:38 +#: src/Console/AppConsole.vala:39 msgid "Install latest mainline kernel" msgstr "Встановіть останнє основне ядро" -#: src/Console/AppConsole.vala:39 +#: src/Console/AppConsole.vala:40 msgid "Install latest point update in the current major version" msgstr "Установіть останнє оновлення точки в поточній основній версії" -#: src/Console/AppConsole.vala:40 +#: src/Console/AppConsole.vala:41 msgid "Install specified kernels" msgstr "Встановити вказані ядра" -#: src/Console/AppConsole.vala:41 +#: src/Console/AppConsole.vala:42 msgid "Uninstall specified kernels" msgstr "Видалити вказані ядра" -#: src/Console/AppConsole.vala:42 src/Gtk/MainWindow.vala:340 +#: src/Console/AppConsole.vala:43 src/Gtk/MainWindow.vala:340 msgid "Uninstall all but the highest installed version" msgstr "Видаліть усі, крім найвищої встановленої версії" -#: src/Console/AppConsole.vala:43 +#: src/Console/AppConsole.vala:44 msgid "Download specified kernels" msgstr "Завантажте конкретні ядра" -#: src/Console/AppConsole.vala:44 +#: src/Console/AppConsole.vala:45 msgid "Delete cached info about available kernels" msgstr "Видалити кешовану інформацію про доступні ядра" -#: src/Console/AppConsole.vala:45 +#: src/Console/AppConsole.vala:46 msgid "This help" msgstr "" -#: src/Console/AppConsole.vala:47 src/Gtk/AppGtk.vala:56 +#: src/Console/AppConsole.vala:48 src/Gtk/AppGtk.vala:56 msgid "Options" msgstr "Параметри" -#: src/Console/AppConsole.vala:49 +#: src/Console/AppConsole.vala:50 msgid "Include unstable and RC releases" msgstr "Включення нестабільних і RC-релізів" -#: src/Console/AppConsole.vala:50 +#: src/Console/AppConsole.vala:51 msgid "Exclude unstable and RC releases" msgstr "Виключення нестабільних і RC-релізів" -#: src/Console/AppConsole.vala:51 +#: src/Console/AppConsole.vala:52 msgid "Verbosity. Set to n if given, or increment." msgstr "Багатослівність. Встановіть значення n, якщо задано, або приріст." -#: src/Console/AppConsole.vala:52 +#: src/Console/AppConsole.vala:53 msgid "Assume Yes for all prompts (non-interactive mode)" msgstr "Так для всіх підказок (неінтерактивний режим)" -#: src/Console/AppConsole.vala:53 +#: src/Console/AppConsole.vala:54 msgid "Pause for keypress before exiting (for external terminal)" msgstr "" -#: src/Console/AppConsole.vala:56 +#: src/Console/AppConsole.vala:57 msgid "One or more version strings taken from the output of --list" msgstr "Один або кілька рядків версій, взятих із результату --list" -#: src/Console/AppConsole.vala:57 -msgid "comma, pipe, or colon-seperated, or quoted space seperated" +#: src/Console/AppConsole.vala:58 +#, fuzzy +msgid "" +"comma, pipe, colon, or space seperated. (space requires quotes or " +"backslashes)" msgstr "розділені комою, вертикальною рискою, двокрапкою або лапками" -#: src/Console/AppConsole.vala:58 +#: src/Console/AppConsole.vala:59 msgid "Locked kernels and the currently running kernel are ignored" msgstr "Заблоковані ядра та поточне запущене ядро ігноруються" -#: src/Console/AppConsole.vala:159 src/Gtk/AppGtk.vala:89 +#: src/Console/AppConsole.vala:161 src/Gtk/AppGtk.vala:89 msgid "Unknown option" msgstr "Невідомий параметр" -#: src/Console/AppConsole.vala:197 +#: src/Console/AppConsole.vala:199 msgid "Deleted" msgstr "Видалено" -#: src/Console/AppConsole.vala:198 +#: src/Console/AppConsole.vala:200 msgid "Error deleting" msgstr "Помилка видалення" -#: src/Console/AppConsole.vala:212 +#: src/Console/AppConsole.vala:214 #, fuzzy msgid "Unknown command" msgstr "Невідомий параметр" -#: src/Console/AppConsole.vala:223 +#: src/Console/AppConsole.vala:225 msgid "Latest update" msgstr "Останнє оновлення" -#: src/Console/AppConsole.vala:224 +#: src/Console/AppConsole.vala:226 msgid "Latest point update" msgstr "Остання точка оновлення" -#: src/Console/AppConsole.vala:225 src/Console/AppConsole.vala:243 +#: src/Console/AppConsole.vala:227 src/Console/AppConsole.vala:245 msgid "No updates found" msgstr "Оновлень не знайдено" -#: src/Console/AppConsole.vala:232 +#: src/Console/AppConsole.vala:234 msgid "Notifications disabled" msgstr "Сповіщення вимкнено" -#: src/Console/AppConsole.vala:237 +#: src/Console/AppConsole.vala:239 msgid "No" msgstr "Ні" -#: src/Console/AppConsole.vala:252 +#: src/Console/AppConsole.vala:254 msgid "notify point releases disabled" msgstr "випуски точки сповіщення вимкнено" -#: src/Console/AppConsole.vala:260 +#: src/Console/AppConsole.vala:262 msgid "notify major releases disabled" msgstr "сповіщення про основні випуски вимкнено" -#: src/Console/AppConsole.vala:265 +#: src/Console/AppConsole.vala:267 #, c-format msgid "Kernel %s Available" msgstr "Ядро %s Доступне" -#: src/Console/AppConsole.vala:269 src/Gtk/SettingsDialog.vala:124 +#: src/Console/AppConsole.vala:271 src/Gtk/SettingsDialog.vala:124 msgid "Show" msgstr "Показати" -#: src/Console/AppConsole.vala:270 src/Gtk/MainWindow.vala:319 +#: src/Console/AppConsole.vala:272 src/Gtk/MainWindow.vala:319 msgid "Install" msgstr "Встановити" -#: src/Console/AppConsole.vala:273 +#: src/Console/AppConsole.vala:275 msgid "Previously notified" msgstr "Попередньо повідомлено" diff --git a/src/Console/AppConsole.vala b/src/Console/AppConsole.vala index 55ca068b..0eeedf68 100644 --- a/src/Console/AppConsole.vala +++ b/src/Console/AppConsole.vala @@ -25,15 +25,16 @@ public Main App; public class AppConsole : GLib.Object { - string help = "\n" + BRANDING_SHORTNAME + " " + BRANDING_VERSION + " - " + BRANDING_LONGNAME + "\n" + string help = "\n" + + BRANDING_LONGNAME + " " + BRANDING_VERSION + " - " + _("install kernel packages from kernel.ubuntu.com") + "\n" + "\n" + _("Syntax") + ": " + BRANDING_SHORTNAME + " [options]\n" + "\n" + _("Commands") + ":\n" + "\n" + " --check " + _("Check for kernel updates") + "\n" - + " --notify " + _("Check for kernel updates and notify current user") + "\n" - + " --list " + _("List available mainline kernels") + "\n" + + " --notify " + _("Check for kernel updates and send a desktop notification") + "\n" + + " --list " + _("List available kernels") + "\n" + " --list-installed " + _("List installed kernels") + "\n" + " --install-latest " + _("Install latest mainline kernel") + "\n" + " --install-point " + _("Install latest point update in the current major version") + "\n" @@ -54,7 +55,7 @@ public class AppConsole : GLib.Object { + "\n" + "Notes:\n" + "(1) " +_("One or more version strings taken from the output of --list") + "\n" - + " " +_("comma, pipe, or colon-seperated, or quoted space seperated") + "\n" + + " " +_("comma, pipe, colon, or space seperated. (space requires quotes or backslashes)") + "\n" + "(2) " +_("Locked kernels and the currently running kernel are ignored") + "\n" ; @@ -106,6 +107,7 @@ public class AppConsole : GLib.Object { App.yes = true; break; + // used by gui with external terminal case "--hold": case "--pause": hold_on_exit = true; @@ -116,11 +118,11 @@ public class AppConsole : GLib.Object { App.index_is_fresh = true; break; - case "--show-unstable": // back compat + case "--show-unstable": // back compat case "--include-unstable": App.hide_unstable = false; break; - case "--hide-unstable": // back compat + case "--hide-unstable": // back compat case "--exclude-unstable": App.hide_unstable = true; break; @@ -131,9 +133,9 @@ public class AppConsole : GLib.Object { case "--notify": case "--install-latest": case "--install-point": - case "--purge-old-kernels": // back compat + case "--purge-old-kernels": // back compat case "--uninstall-old": - case "--clean-cache": // back compat + case "--clean-cache": // back compat case "--delete-cache": cmd = a; break; From d429f3e369d1c2fa56208be5b1577ead50df6ff7 Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Sat, 24 Jun 2023 16:52:23 -0400 Subject: [PATCH 455/567] readme --- README.md | 7 ++++--- README.md.src | 7 ++++--- 2 files changed, 8 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index c0396d93..55d3e30e 100644 --- a/README.md +++ b/README.md @@ -173,9 +173,10 @@ Sorting on the "Notes" column is a way to see all kernels that have any notes to # hints * The `--install-latest` and `--yes` options could be used in a cron job to always have the latest kernel installed. ``` -$ sudo cat >/etc/cron.d/mainline <<%EOF -# Check for new kernels on kernel.ubuntu.com every 4 hours -* */4 * * * root VERBOSE=0 ;mainline --install-latest --yes && mainline --uninstall-old --yes +$ sudo -i +# cat >/etc/cron.d/mainline <<-%EOF + # Check for new kernels on kernel.ubuntu.com every 4 hours + * */4 * * * root VERBOSE=0 ;mainline --install-latest --yes && mainline --uninstall-old --yes %EOF ``` diff --git a/README.md.src b/README.md.src index 4c25acdf..48f8e85d 100644 --- a/README.md.src +++ b/README.md.src @@ -173,9 +173,10 @@ Sorting on the "Notes" column is a way to see all kernels that have any notes to # hints * The `--install-latest` and `--yes` options could be used in a cron job to always have the latest kernel installed. ``` -$ sudo cat >/etc/cron.d/mainline <<%EOF -# Check for new kernels on kernel.ubuntu.com every 4 hours -* */4 * * * root VERBOSE=0 ;BRANDING_SHORTNAME --install-latest --yes && BRANDING_SHORTNAME --uninstall-old --yes +$ sudo -i +# cat >/etc/cron.d/mainline <<-%EOF + # Check for new kernels on kernel.ubuntu.com every 4 hours + * */4 * * * root VERBOSE=0 ;BRANDING_SHORTNAME --install-latest --yes && BRANDING_SHORTNAME --uninstall-old --yes %EOF ``` From d6d73e9951c2af34423ccde2b5556ba04bb4d38c Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Sat, 24 Jun 2023 17:25:32 -0400 Subject: [PATCH 456/567] readme --- README.md | 6 +++--- README.md.src | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 55d3e30e..92cb9361 100644 --- a/README.md +++ b/README.md @@ -171,14 +171,14 @@ Sorting on the "Notes" column is a way to see all kernels that have any notes to * Add commandline flags for all settings. Currently the console app is controlled by several settings that it has no way to edit or override, other than by the user manually editing config.json # hints -* The `--install-latest` and `--yes` options could be used in a cron job to always have the latest kernel installed. -``` +* The `--install-latest` and `--yes` options could be used in a cron job to always have the latest kernel installed. +` $ sudo -i # cat >/etc/cron.d/mainline <<-%EOF # Check for new kernels on kernel.ubuntu.com every 4 hours * */4 * * * root VERBOSE=0 ;mainline --install-latest --yes && mainline --uninstall-old --yes %EOF -``` +` * `sudo apt install cool-retro-term` diff --git a/README.md.src b/README.md.src index 48f8e85d..d895a597 100644 --- a/README.md.src +++ b/README.md.src @@ -171,14 +171,14 @@ Sorting on the "Notes" column is a way to see all kernels that have any notes to * Add commandline flags for all settings. Currently the console app is controlled by several settings that it has no way to edit or override, other than by the user manually editing config.json # hints -* The `--install-latest` and `--yes` options could be used in a cron job to always have the latest kernel installed. -``` +* The `--install-latest` and `--yes` options could be used in a cron job to always have the latest kernel installed. +` $ sudo -i # cat >/etc/cron.d/mainline <<-%EOF # Check for new kernels on kernel.ubuntu.com every 4 hours * */4 * * * root VERBOSE=0 ;BRANDING_SHORTNAME --install-latest --yes && BRANDING_SHORTNAME --uninstall-old --yes %EOF -``` +` * `sudo apt install cool-retro-term` From cfd84761ff016844c86aed07faa8b2ca9ac579aa Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Sat, 24 Jun 2023 17:26:15 -0400 Subject: [PATCH 457/567] readme --- README.md | 4 ++-- README.md.src | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 92cb9361..f56a2998 100644 --- a/README.md +++ b/README.md @@ -172,13 +172,13 @@ Sorting on the "Notes" column is a way to see all kernels that have any notes to # hints * The `--install-latest` and `--yes` options could be used in a cron job to always have the latest kernel installed. -` +``` $ sudo -i # cat >/etc/cron.d/mainline <<-%EOF # Check for new kernels on kernel.ubuntu.com every 4 hours * */4 * * * root VERBOSE=0 ;mainline --install-latest --yes && mainline --uninstall-old --yes %EOF -` +``` * `sudo apt install cool-retro-term` diff --git a/README.md.src b/README.md.src index d895a597..8098e2b0 100644 --- a/README.md.src +++ b/README.md.src @@ -172,13 +172,13 @@ Sorting on the "Notes" column is a way to see all kernels that have any notes to # hints * The `--install-latest` and `--yes` options could be used in a cron job to always have the latest kernel installed. -` +``` $ sudo -i # cat >/etc/cron.d/mainline <<-%EOF # Check for new kernels on kernel.ubuntu.com every 4 hours * */4 * * * root VERBOSE=0 ;BRANDING_SHORTNAME --install-latest --yes && BRANDING_SHORTNAME --uninstall-old --yes %EOF -` +``` * `sudo apt install cool-retro-term` From e1d632414513ed5240e33a24e45c2115d6945744 Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Sat, 24 Jun 2023 19:18:09 -0400 Subject: [PATCH 458/567] readme --- README.md | 39 ++++++++++++++++++++++++++++----------- README.md.src | 39 ++++++++++++++++++++++++++++----------- 2 files changed, 56 insertions(+), 22 deletions(-) diff --git a/README.md b/README.md index f56a2998..04386886 100644 --- a/README.md +++ b/README.md @@ -19,24 +19,41 @@ mainline is a fork of [ukuu](https://github.com/teejee2008/ukuu) * Changed name from "ukuu" to "mainline" * Removed all GRUB / bootloader options * Removed all donate buttons, links, dialogs -* Removed un-related/un-used code -* Better temp and cache management -* Better desktop notification behavior -* Reduced dependencies (ex: no longer uses aptitude) -* Per-Kernel User Notes -* Pinning/Locking Kernels +* Removed all unused & unrelated code +* Removed all TeeJee lib code +* Better cache management +* Rewrote all exec() commands not to use temp files, temp bash scripts, and temp directories +* Rewrote the desktop notification scripts to be more reliable +* Reduced dependencies +* Per-kernel user notes +* Pinning/locking kernels * Verify .deb file downloads with the sha256 hashes in the CHECKSUMS files -* Slow but ongoing re-writes of most parts +* Customizable external commands for the terminal window and for root access ## Features * Download the list of available kernels from the [Ubuntu Mainline PPA](http://kernel.ubuntu.com/~kernel-ppa/mainline/) -* Display, install, uninstall, available and installed kernels conveniently, gui and cli -* For each kernel, the related headers & modules packages are automatically grouped and installed or uninstalled at the same time +* Display, install, and uninstall mainline-ppa kernels conveniently, gui and cli +* For each kernel the associated headers & modules packages are downloaded, installed, or uninstalled together * .deb file downloads are verified with the sha256 hashes from the CHECKSUMS files * Optionally monitor and send desktop notifications when new kernels become available ## Not Features -* Care if the kernels run or boot or are compatible with your system beyond the basic plaform arch and whatever dependencies the .deb packages declare and dpkg enforces. The mainline-ppa kernel deb packages are produced with no warranty. When they work, great, when they don't, don't use them. This app intentionally does not even touch a single grub or bootloader file itself. All it does is download .deb packages that the ubuntu kernel team authors, and runs dpkg to install them the same way you would manually. +* Care if the kernels run or boot or work well or are compatible with your system. The kernel deb packages are produced by someone else, and with no warranty. When they work, great, when they don't, don't use them. This app intentionally does not even touch a single grub or bootloader file itself. All it does is download .deb packages that the ubuntu kernel team produces, and runs dpkg to install them the same way you would manually. + +See the comment by "setuid" here: https://ubuntuhandbook.org/index.php/2020/08/mainline-install-latest-kernel-ubuntu-linux-mint/ +> Note that these kernel packages are missing quite a bit that would be needed on most systems, and many dkms modules and other tools won’t work with them (NVIDIA drivers, VMware modules, etc.). +> +> These packages also will not install nor boot on ARM64 (RPi4 for example), despite being spun for those architectures because they lack DTBs and correctly aligned headers. +> +> On AMD64, you’ll find that the cloud tools and tools packages are missing, and installing them would try to bring in libssl3 and an incompatible libc6 from a newer release of Ubuntu, which will most-certainly break userland. +> +> You have been warned. + +This is all true. + +The libssl & libc were transient issues that naturally passed as time went on and most users systems caught up, but new examples of the same kind of issue are bound to appear again from time to time as the kernel.ubuntu.com team updates their build environment. + +That said, I have been running these daily for several years. I just don't need any nvidia or vmware kernel modules nor do I use secure boot. # Install The [PPA](https://code.launchpad.net/~cappelikan/+archive/ubuntu/ppa) is kindly maintained by [cappelikan](https://github.com/cappelikan) @@ -171,7 +188,7 @@ Sorting on the "Notes" column is a way to see all kernels that have any notes to * Add commandline flags for all settings. Currently the console app is controlled by several settings that it has no way to edit or override, other than by the user manually editing config.json # hints -* The `--install-latest` and `--yes` options could be used in a cron job to always have the latest kernel installed. +* The `--install-latest` and `--yes` options can be used in a cron job to always have the latest kernel installed. ``` $ sudo -i # cat >/etc/cron.d/mainline <<-%EOF diff --git a/README.md.src b/README.md.src index 8098e2b0..50aa6681 100644 --- a/README.md.src +++ b/README.md.src @@ -19,24 +19,41 @@ BRANDING_SHORTNAME is a fork of [ukuu](https://github.com/teejee2008/ukuu) * Changed name from "ukuu" to "BRANDING_SHORTNAME" * Removed all GRUB / bootloader options * Removed all donate buttons, links, dialogs -* Removed un-related/un-used code -* Better temp and cache management -* Better desktop notification behavior -* Reduced dependencies (ex: no longer uses aptitude) -* Per-Kernel User Notes -* Pinning/Locking Kernels +* Removed all unused & unrelated code +* Removed all TeeJee lib code +* Better cache management +* Rewrote all exec() commands not to use temp files, temp bash scripts, and temp directories +* Rewrote the desktop notification scripts to be more reliable +* Reduced dependencies +* Per-kernel user notes +* Pinning/locking kernels * Verify .deb file downloads with the sha256 hashes in the CHECKSUMS files -* Slow but ongoing re-writes of most parts +* Customizable external commands for the terminal window and for root access ## Features * Download the list of available kernels from the [Ubuntu Mainline PPA](http://kernel.ubuntu.com/~kernel-ppa/mainline/) -* Display, install, uninstall, available and installed kernels conveniently, gui and cli -* For each kernel, the related headers & modules packages are automatically grouped and installed or uninstalled at the same time +* Display, install, and uninstall mainline-ppa kernels conveniently, gui and cli +* For each kernel the associated headers & modules packages are downloaded, installed, or uninstalled together * .deb file downloads are verified with the sha256 hashes from the CHECKSUMS files * Optionally monitor and send desktop notifications when new kernels become available ## Not Features -* Care if the kernels run or boot or are compatible with your system beyond the basic plaform arch and whatever dependencies the .deb packages declare and dpkg enforces. The mainline-ppa kernel deb packages are produced with no warranty. When they work, great, when they don't, don't use them. This app intentionally does not even touch a single grub or bootloader file itself. All it does is download .deb packages that the ubuntu kernel team authors, and runs dpkg to install them the same way you would manually. +* Care if the kernels run or boot or work well or are compatible with your system. The kernel deb packages are produced by someone else, and with no warranty. When they work, great, when they don't, don't use them. This app intentionally does not even touch a single grub or bootloader file itself. All it does is download .deb packages that the ubuntu kernel team produces, and runs dpkg to install them the same way you would manually. + +See the comment by "setuid" here: https://ubuntuhandbook.org/index.php/2020/08/mainline-install-latest-kernel-ubuntu-linux-mint/ +> Note that these kernel packages are missing quite a bit that would be needed on most systems, and many dkms modules and other tools won’t work with them (NVIDIA drivers, VMware modules, etc.). +> +> These packages also will not install nor boot on ARM64 (RPi4 for example), despite being spun for those architectures because they lack DTBs and correctly aligned headers. +> +> On AMD64, you’ll find that the cloud tools and tools packages are missing, and installing them would try to bring in libssl3 and an incompatible libc6 from a newer release of Ubuntu, which will most-certainly break userland. +> +> You have been warned. + +This is all true. + +The libssl & libc were transient issues that naturally passed as time went on and most users systems caught up, but new examples of the same kind of issue are bound to appear again from time to time as the kernel.ubuntu.com team updates their build environment. + +That said, I have been running these daily for several years. I just don't need any nvidia or vmware kernel modules nor do I use secure boot. # Install The [PPA](https://code.launchpad.net/~cappelikan/+archive/ubuntu/ppa) is kindly maintained by [cappelikan](https://github.com/cappelikan) @@ -171,7 +188,7 @@ Sorting on the "Notes" column is a way to see all kernels that have any notes to * Add commandline flags for all settings. Currently the console app is controlled by several settings that it has no way to edit or override, other than by the user manually editing config.json # hints -* The `--install-latest` and `--yes` options could be used in a cron job to always have the latest kernel installed. +* The `--install-latest` and `--yes` options can be used in a cron job to always have the latest kernel installed. ``` $ sudo -i # cat >/etc/cron.d/mainline <<-%EOF From 0f2902820477fa9a613e6878afd1d7dfac45779c Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Sat, 24 Jun 2023 19:21:07 -0400 Subject: [PATCH 459/567] readme --- README.md | 2 +- README.md.src | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 04386886..a5f7b9c6 100644 --- a/README.md +++ b/README.md @@ -40,7 +40,7 @@ mainline is a fork of [ukuu](https://github.com/teejee2008/ukuu) ## Not Features * Care if the kernels run or boot or work well or are compatible with your system. The kernel deb packages are produced by someone else, and with no warranty. When they work, great, when they don't, don't use them. This app intentionally does not even touch a single grub or bootloader file itself. All it does is download .deb packages that the ubuntu kernel team produces, and runs dpkg to install them the same way you would manually. -See the comment by "setuid" here: https://ubuntuhandbook.org/index.php/2020/08/mainline-install-latest-kernel-ubuntu-linux-mint/ +See the [comment by "setuid"](https://ubuntuhandbook.org/index.php/2020/08/mainline-install-latest-kernel-ubuntu-linux-mint/): > Note that these kernel packages are missing quite a bit that would be needed on most systems, and many dkms modules and other tools won’t work with them (NVIDIA drivers, VMware modules, etc.). > > These packages also will not install nor boot on ARM64 (RPi4 for example), despite being spun for those architectures because they lack DTBs and correctly aligned headers. diff --git a/README.md.src b/README.md.src index 50aa6681..78ecd9b9 100644 --- a/README.md.src +++ b/README.md.src @@ -40,7 +40,7 @@ BRANDING_SHORTNAME is a fork of [ukuu](https://github.com/teejee2008/ukuu) ## Not Features * Care if the kernels run or boot or work well or are compatible with your system. The kernel deb packages are produced by someone else, and with no warranty. When they work, great, when they don't, don't use them. This app intentionally does not even touch a single grub or bootloader file itself. All it does is download .deb packages that the ubuntu kernel team produces, and runs dpkg to install them the same way you would manually. -See the comment by "setuid" here: https://ubuntuhandbook.org/index.php/2020/08/mainline-install-latest-kernel-ubuntu-linux-mint/ +See the [comment by "setuid"](https://ubuntuhandbook.org/index.php/2020/08/mainline-install-latest-kernel-ubuntu-linux-mint/): > Note that these kernel packages are missing quite a bit that would be needed on most systems, and many dkms modules and other tools won’t work with them (NVIDIA drivers, VMware modules, etc.). > > These packages also will not install nor boot on ARM64 (RPi4 for example), despite being spun for those architectures because they lack DTBs and correctly aligned headers. From 0e4cb72e621c5e627be1f3baf3decc326ac229fe Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Sat, 24 Jun 2023 19:27:09 -0400 Subject: [PATCH 460/567] readme --- README.md | 4 +++- README.md.src | 4 +++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index a5f7b9c6..87d6aaf7 100644 --- a/README.md +++ b/README.md @@ -51,7 +51,9 @@ See the [comment by "setuid"](https://ubuntuhandbook.org/index.php/2020/08/mainl This is all true. -The libssl & libc were transient issues that naturally passed as time went on and most users systems caught up, but new examples of the same kind of issue are bound to appear again from time to time as the kernel.ubuntu.com team updates their build environment. +Additionally the kernels are unsigned, and so they won't boot on a system with secure boot enabled. + +The libssl & libc issue they mention were transient issues that naturally passed as time went on and most users systems caught up, but new examples of the same kind of issue are bound to appear again from time to time as the kernel.ubuntu.com team updates their build environment ahead of most users. That said, I have been running these daily for several years. I just don't need any nvidia or vmware kernel modules nor do I use secure boot. diff --git a/README.md.src b/README.md.src index 78ecd9b9..500d462b 100644 --- a/README.md.src +++ b/README.md.src @@ -51,7 +51,9 @@ See the [comment by "setuid"](https://ubuntuhandbook.org/index.php/2020/08/mainl This is all true. -The libssl & libc were transient issues that naturally passed as time went on and most users systems caught up, but new examples of the same kind of issue are bound to appear again from time to time as the kernel.ubuntu.com team updates their build environment. +Additionally the kernels are unsigned, and so they won't boot on a system with secure boot enabled. + +The libssl & libc issue they mention were transient issues that naturally passed as time went on and most users systems caught up, but new examples of the same kind of issue are bound to appear again from time to time as the kernel.ubuntu.com team updates their build environment ahead of most users. That said, I have been running these daily for several years. I just don't need any nvidia or vmware kernel modules nor do I use secure boot. From 690cf97217755b02afaa22b014db580b4c9264db Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Sun, 25 Jun 2023 03:49:24 -0400 Subject: [PATCH 461/567] docs --- INSTALL | 89 ++++++++++---------------------------------- INSTALL.src | 104 ---------------------------------------------------- Makefile | 22 ----------- 3 files changed, 20 insertions(+), 195 deletions(-) delete mode 100644 INSTALL.src diff --git a/INSTALL b/INSTALL index a595e194..00a81a54 100644 --- a/INSTALL +++ b/INSTALL @@ -1,104 +1,55 @@ Build: - make + or + make clean all Install: - sudo make install Unininstall: - sudo make uninstall - -Other build targets: --------------------------------------------------------------------------------- - -Generate a .deb package, for release - -Updates .deb_pkg_version.mak -Unconditional full clean & build everytime -deb filename increments with every run, either by build number or by pkg version - - make release_deb - -------------------------------------------------------------------------------- -Build just the console app +deb packages: - make mainline +Install pbuilder-dist: + sudo apt install pbuilder-dist --------------------------------------------------------------------------------- - -Build just the GUI app +To create the deb build environment, run one time only. + make deb_env_create - make mainline-gtk +To update the build environment, run as needed. + make deb_env_update --------------------------------------------------------------------------------- - -Generate a .deb package, for local repeated re-building +To (re)build a deb without incrementing build number or doing make clean. + make deb -Does not update .deb_pkg_version.mak -Only builds if not yet built or if any source files changed -deb filename does not increment +To build a deb for release. Increments build number and does clean before build. + make release_deb - make deb +For any of the deb-related build targets, you may also build for some other target +distribution by adding "dist=" and/or "arch=" to the end of the command. --------------------------------------------------------------------------------- +So, to build a deb for xenial (if you're not running xenial), +first, one-time setup + make deb_env_create dist=xenial +then + make deb dist=xenial Install the currently built deb Allows to install built deb without having to know it's long path & filename Already includes sudo, don't need "sudo make install-deb" - make install-deb --------------------------------------------------------------------------------- - Uninstall any version of deb package that might be installed Allows to test "make install" without conflict or ambiguity with installed deb Already includes sudo, don't need "sudo make uninstall-deb" - make uninstall-deb --------------------------------------------------------------------------------- - -Translation files are maintained automatically, but you can regenerate any of -them manually with "make " -All translation files are in the po/ directory, and named .po -The po template is in the po/ directory, and named messages.pot - -Regenerate messages.pot - make po/messages.pot - -Regenerate the Spanish .po file (same for any po/*.po files) - make po/es.po - --------------------------------------------------------------------------------- - -The files listed in $(misc_files) are maintained automatically, but you can -regenerate any of them manually with "make ". -Examples: - -Regenerate README.md from README.md.src - make README.md - -Regenerate debian/copyright from debian/copyright.src - make debian/copyright - --------------------------------------------------------------------------------- - debian/changelog is maintained automatically (that is, "dch" is called when needed, you still have to manually edit once dch launches the editor), but you can also update it manually any time. This will run "dch" with appropriate commandline options to pre-load the pkg name, version number, maintainer name, maintainer email etc. - make changelog - --------------------------------------------------------------------------------- - -Regenerate just the deb source pkg files (*.dsc, *.tar.gz) -This is usually done automatically. - - make deb-src - diff --git a/INSTALL.src b/INSTALL.src deleted file mode 100644 index 7b053932..00000000 --- a/INSTALL.src +++ /dev/null @@ -1,104 +0,0 @@ -Build: - - make - -Install: - - sudo make install - -Unininstall: - - sudo make uninstall - - -Other build targets: --------------------------------------------------------------------------------- - -Generate a .deb package, for release - -Updates .deb_pkg_version.mak -Unconditional full clean & build everytime -deb filename increments with every run, either by build number or by pkg version - - make release_deb - --------------------------------------------------------------------------------- - -Build just the console app - - make BRANDING_SHORTNAME - --------------------------------------------------------------------------------- - -Build just the GUI app - - make BRANDING_SHORTNAME-gtk - --------------------------------------------------------------------------------- - -Generate a .deb package, for local repeated re-building - -Does not update .deb_pkg_version.mak -Only builds if not yet built or if any source files changed -deb filename does not increment - - make deb - --------------------------------------------------------------------------------- - -Install the currently built deb -Allows to install built deb without having to know it's long path & filename -Already includes sudo, don't need "sudo make install-deb" - - make install-deb - --------------------------------------------------------------------------------- - -Uninstall any version of deb package that might be installed -Allows to test "make install" without conflict or ambiguity with installed deb -Already includes sudo, don't need "sudo make uninstall-deb" - - make uninstall-deb - --------------------------------------------------------------------------------- - -Translation files are maintained automatically, but you can regenerate any of -them manually with "make " -All translation files are in the po/ directory, and named .po -The po template is in the po/ directory, and named messages.pot - -Regenerate messages.pot - make po/messages.pot - -Regenerate the Spanish .po file (same for any po/*.po files) - make po/es.po - --------------------------------------------------------------------------------- - -The files listed in $(misc_files) are maintained automatically, but you can -regenerate any of them manually with "make ". -Examples: - -Regenerate README.md from README.md.src - make README.md - -Regenerate debian/copyright from debian/copyright.src - make debian/copyright - --------------------------------------------------------------------------------- - -debian/changelog is maintained automatically (that is, "dch" is called when -needed, you still have to manually edit once dch launches the editor), but you -can also update it manually any time. -This will run "dch" with appropriate commandline options to pre-load the pkg -name, version number, maintainer name, maintainer email etc. - - make changelog - --------------------------------------------------------------------------------- - -Regenerate just the deb source pkg files (*.dsc, *.tar.gz) -This is usually done automatically. - - make deb-src - diff --git a/Makefile b/Makefile index 5c835a2b..9b5bc607 100644 --- a/Makefile +++ b/Makefile @@ -154,28 +154,6 @@ uninstall: rm -f $(DESTDIR)/home/*/.config/$(BRANDING_SHORTNAME)/$(BRANDING_SHORTNAME)-notify.sh rm -f $(DESTDIR)/home/*/.config/autostart/$(BRANDING_SHORTNAME).desktop - -## deb build stuff -## -## optionally add "host_dist=foo" to build for dist "foo" -## optionally add "host_arch=foo" to build for arch "foo" -## -## To create the deb build environment, run one time only. -## make deb_env_create -## -## To update the build environment, run as needed. -## make deb_env_update -## -## To (re)build a deb without incrementing build number or doing clean. -## make deb -## -## To build a deb for release. Increments build number and does clean before build. -## make release_deb -## -## Example for bionic on i386. -## make deb_env_create host_dist=bionic host_arch=i386 -## make release_deb host_dist=bionic host_arch=i386 - .PHONY: pbuilder-dist pbuilder-dist: @which pbuilder-dist >/dev/null || { echo "Missing pbuilder-dist. apt install ubuntu-dev-tools" ;false ; } From 65b1678c57cf334ad379696f833165a48ef034b8 Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Mon, 26 Jun 2023 17:07:57 -0400 Subject: [PATCH 462/567] fix #270, auto generate translator credits --- Makefile | 41 +++++++++++++++++++++++---------------- TRANSLATORS | 2 +- debian/changelog | 6 ++++++ debian/rules | 19 ++---------------- po/de.po | 40 +++++++++++++++++--------------------- po/el.po | 40 +++++++++++++++++--------------------- po/es.po | 40 +++++++++++++++++--------------------- po/fr.po | 40 +++++++++++++++++--------------------- po/hr.po | 40 +++++++++++++++++--------------------- po/it.po | 40 +++++++++++++++++--------------------- po/ko.po | 40 +++++++++++++++++--------------------- po/messages.pot | 40 +++++++++++++++++--------------------- po/nl.po | 40 +++++++++++++++++--------------------- po/pl.po | 40 +++++++++++++++++--------------------- po/ru.po | 43 ++++++++++++++++++----------------------- po/sv.po | 40 +++++++++++++++++--------------------- po/tr.po | 40 +++++++++++++++++--------------------- po/uk.po | 40 +++++++++++++++++--------------------- src/Common/Main.vala | 1 + src/Gtk/MainWindow.vala | 17 ++-------------- src/lib/l.misc.vala | 13 ++++--------- 21 files changed, 293 insertions(+), 369 deletions(-) mode change 100755 => 100644 debian/rules diff --git a/Makefile b/Makefile index 9b5bc607..0cc62919 100644 --- a/Makefile +++ b/Makefile @@ -50,7 +50,6 @@ build_symbols := -X -D'INSTALL_PREFIX="$(prefix)"' \ -X -D'GETTEXT_PACKAGE="$(BRANDING_SHORTNAME)"' misc_files := README.md \ - INSTALL \ $(BRANDING_SHORTNAME).desktop \ debian/control \ debian/copyright \ @@ -67,14 +66,19 @@ DEB_BUILD_NUMBER := 0000 DEB_PKG_VERSION := $(BRANDING_VERSION) -include .deb_build_number.mak -host_dist := $(shell lsb_release -sc) -host_arch := $(shell dpkg --print-architecture) +dist := $(shell lsb_release -sc) +arch := $(shell dpkg --print-architecture) pkg_version = $(shell dpkg-parsechangelog -S Version) dsc_file = release/deb-src/$(BRANDING_SHORTNAME)_$(pkg_version).dsc -deb_file = release/deb/$(BRANDING_SHORTNAME)_$(pkg_version).$(DEB_BUILD_NUMBER)_$(host_dist)_$(host_arch).deb +deb_file = release/deb/$(BRANDING_SHORTNAME)_$(pkg_version).$(DEB_BUILD_NUMBER)_$(dist)_$(arch).deb ################################################################################ +# Override debhelper>9 using make -jN in "make deb", which breaks vala unless you do +# https://wiki.gnome.org/Projects/Vala/Documentation/ParallelBuilds +# which is ridiculous nonsense +.NOTPARALLEL: + .PHONY: all all: $(BRANDING_SHORTNAME) $(BRANDING_SHORTNAME)-gtk @@ -83,19 +87,22 @@ $(BRANDING_SHORTNAME): $(misc_files) $(common_vala_files) $(tui_vala_files) TRAN --pkg $(glib) --pkg $(gio-unix) --pkg posix --pkg $(gee) --pkg $(json-glib) \ $(common_vala_files) $(tui_vala_files) -o $(@) +# Override debhelper setting LANG=C & LC_ALL=C in "make deb" +# which causes valac to die on the non-ascii in -D'TRANSLATORS=...' $(BRANDING_SHORTNAME)-gtk: $(misc_files) $(common_vala_files) $(gui_vala_files) TRANSLATORS - valac $(VALACFLAGS) -X -w $(build_symbols) --Xcc="-lm" \ + LANG=C.UTF-8;LC_ALL=$${LANG};LANGUAGE=$${LANG};T=;while read t;do T+="$$t\n";done$(@) $(pot_file): $(common_vala_files) $(tui_vala_files) $(gui_vala_files) @@ -164,7 +171,7 @@ deb-src: $(dsc_file) .PHONY: dsc dsc: $(dsc_file) -$(dsc_file): debian/changelog $(misc_files) $(common_vala_files) $(gui_vala_files) TRANSLATORS +$(dsc_file): debian/changelog debian/compat debian/rules $(misc_files) $(common_vala_files) $(gui_vala_files) AUTHORS INSTALL settings.md Makefile BRANDING.mak @[[ "$(pkg_version)" == "$(BRANDING_VERSION)" ]] || { echo -e "Version number in debian/changelog ($(pkg_version)) does not match BRANDING.mak ($(BRANDING_VERSION)).\n(Maybe need to run \"dch\"?)" >&2 ; exit 1 ; } $(MAKE) clean dpkg-source --build . @@ -178,16 +185,16 @@ deb: $(deb_file) .PHONY: deb_env_create deb_env_create: pbuilder-dist - pbuilder-dist $(host_dist) $(host_arch) create + pbuilder-dist $(dist) $(arch) create .PHONY: deb_env_update deb_env_update: pbuilder-dist - pbuilder-dist $(host_dist) $(host_arch) update + pbuilder-dist $(dist) $(arch) update $(deb_file): $(dsc_file) pbuilder-dist mkdir -pv release/deb - pbuilder-dist $(host_dist) $(host_arch) build $(dsc_file) --buildresult release/deb - mv -fv release/deb/$(BRANDING_SHORTNAME)_$(pkg_version)_$(host_arch).deb $(@) + pbuilder-dist $(dist) $(arch) build $(dsc_file) --buildresult release/deb + mv -fv release/deb/$(BRANDING_SHORTNAME)_$(pkg_version)_$(arch).deb $(@) ls -lv release/deb .PHONY: install-deb diff --git a/TRANSLATORS b/TRANSLATORS index afc5d196..04681eee 100644 --- a/TRANSLATORS +++ b/TRANSLATORS @@ -7,7 +7,7 @@ it: Demetrio Mendozzi ko: Kevin Kim nl: Heimen Stoffels pl: Matthaiks -ru: Faust3000 (Original) | Danik2343 (Update Transaltio +ru: Danik2343 sv: Åke Engelbrektson tr: Sabri Ünal uk: Serhii Golovko diff --git a/debian/changelog b/debian/changelog index 68bba8c0..735442da 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +mainline (1.3.20) unstable; urgency=medium + + * add support for external terminal programs + + -- Brian K. White Mon, 26 Jun 2023 03:32:01 -0400 + mainline (1.3.19) unstable; urgency=medium * remove AboutWindow.vala, replaced with Gtk.show_about_dialog() diff --git a/debian/rules b/debian/rules old mode 100755 new mode 100644 index 6c4126d4..24679500 --- a/debian/rules +++ b/debian/rules @@ -1,20 +1,5 @@ #!/usr/bin/make -f -# -*- makefile -*- -# Sample debian/rules that uses debhelper. -# This file was originally written by Joey Hess and Craig Small. -# As a special exception, when this file is copied by dh-make into a -# dh-make output file, you may use that output file without restriction. -# This special exception was added by Craig Small in version 0.37 of dh-make. - -# Uncomment this to turn on verbose mode. -#export DH_VERBOSE=1 - -# debhelper>9 uses make -jN by default, which fails on vala projects -# https://github.com/bkw777/mainline/issues/74 -# unless you do -# https://wiki.gnome.org/Projects/Vala/Documentation/ParallelBuilds -# which is ridiculous nonsense -# add --no-parallel to prevent debhelper>9 from using make -jN +#DH_VERBOSE = 1 %: - dh $@ --no-parallel + dh $@ diff --git a/po/de.po b/po/de.po index 8f5363c1..653ac296 100644 --- a/po/de.po +++ b/po/de.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-24 16:28-0400\n" +"POT-Creation-Date: 2023-06-26 02:02-0400\n" "PO-Revision-Date: 2023-02-20 18:40+0100\n" "Last-Translator: Marvin Meysel \n" "Language-Team: German\n" @@ -71,7 +71,7 @@ msgstr "Läuft" msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:669 src/Gtk/MainWindow.vala:485 +#: src/Common/LinuxKernel.vala:669 src/Gtk/MainWindow.vala:472 msgid "Running" msgstr "Läuft" @@ -148,7 +148,7 @@ msgstr "ist bereits installiert." msgid "download failed." msgstr "" -#: src/Common/LinuxKernel.vala:1018 src/Gtk/MainWindow.vala:511 +#: src/Common/LinuxKernel.vala:1018 src/Gtk/MainWindow.vala:498 #, fuzzy msgid "Install: no installable kernels specified" msgstr "Befehl nicht angegeben" @@ -162,7 +162,7 @@ msgstr "Deinstallation des angegebenen Kernels" msgid "Not uninstalling the currently running kernel" msgstr "Den aktuell laufenden Kernel wird nicht deinstalliert" -#: src/Common/LinuxKernel.vala:1043 src/Gtk/MainWindow.vala:507 +#: src/Common/LinuxKernel.vala:1043 src/Gtk/MainWindow.vala:494 msgid "is locked" msgstr "" @@ -196,7 +196,7 @@ msgstr "" msgid "The following kernels will be uninstalled" msgstr "Die folgenden Kernel werden deinstalliert" -#: src/Common/LinuxKernel.vala:1109 +#: src/Common/LinuxKernel.vala:1109 src/lib/l.misc.vala:12 #, fuzzy msgid "Continue? (y/N): " msgstr "Weiter ?" @@ -211,41 +211,41 @@ msgstr "Keine Updates gefunden" msgid "Install Kernel Version %s ? (y/N): " msgstr "Kernel-Version %s installieren? (j/n):" -#: src/Common/Main.vala:197 +#: src/Common/Main.vala:198 msgid "Missing Thread support in Glib." msgstr "" -#: src/Common/Main.vala:290 +#: src/Common/Main.vala:291 msgid "Wrote config file" msgstr "" -#: src/Common/Main.vala:309 +#: src/Common/Main.vala:310 msgid "No config file" msgstr "" -#: src/Common/Main.vala:376 +#: src/Common/Main.vala:377 msgid "Loaded config file" msgstr "" -#: src/Common/Main.vala:396 +#: src/Common/Main.vala:397 msgid "Called from" msgstr "Angerufen von" -#: src/Common/Main.vala:396 +#: src/Common/Main.vala:397 msgid "at logon" msgstr "beim start" -#: src/Common/Main.vala:397 +#: src/Common/Main.vala:398 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" "Diese Datei wird überschrieben und erneut ausgeführt, wenn Einstellungen in" -#: src/Common/Main.vala:429 +#: src/Common/Main.vala:430 msgid "Notifications are disabled" msgstr "Benachrichtigungen sind deaktiviert" -#: src/Common/Main.vala:482 +#: src/Common/Main.vala:483 msgid "Can not reach site" msgstr "Fehler beim lesen der Datei" @@ -490,21 +490,21 @@ msgstr "" msgid "Forked" msgstr "" -#: src/Gtk/MainWindow.vala:447 +#: src/Gtk/MainWindow.vala:434 #, fuzzy msgid "Updating kernels" msgstr "Aktualisieren von Kernels" -#: src/Gtk/MainWindow.vala:489 +#: src/Gtk/MainWindow.vala:476 msgid "available" msgstr "Verfügbar" -#: src/Gtk/MainWindow.vala:506 +#: src/Gtk/MainWindow.vala:493 #, fuzzy msgid "is already installed" msgstr "ist bereits installiert." -#: src/Gtk/MainWindow.vala:508 +#: src/Gtk/MainWindow.vala:495 msgid "adding" msgstr "" @@ -683,7 +683,3 @@ msgstr "Abbrechen" #: src/Gtk/TerminalWindow.vala:153 msgid "Close" msgstr "Schließen" - -#: src/lib/l.misc.vala:12 -msgid "Proceed? (y/N): " -msgstr "" diff --git a/po/el.po b/po/el.po index 089d628d..2eff3737 100644 --- a/po/el.po +++ b/po/el.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-24 16:28-0400\n" +"POT-Creation-Date: 2023-06-26 02:02-0400\n" "PO-Revision-Date: 2023-01-10 02:03-0600\n" "Last-Translator: Vasilis Kosmidis \n" "Language-Team: Greek\n" @@ -71,7 +71,7 @@ msgstr "Ενεργός" msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:669 src/Gtk/MainWindow.vala:485 +#: src/Common/LinuxKernel.vala:669 src/Gtk/MainWindow.vala:472 msgid "Running" msgstr "Ενεργός" @@ -148,7 +148,7 @@ msgstr "είναι ήδη εγκατεστημένο." msgid "download failed." msgstr "" -#: src/Common/LinuxKernel.vala:1018 src/Gtk/MainWindow.vala:511 +#: src/Common/LinuxKernel.vala:1018 src/Gtk/MainWindow.vala:498 #, fuzzy msgid "Install: no installable kernels specified" msgstr "Η εντολή δεν προσδιορίστηκε" @@ -162,7 +162,7 @@ msgstr "Απεγκατάσταση επιλεγμένων πυρήνων" msgid "Not uninstalling the currently running kernel" msgstr "δεν θα απεγκαταστήσει τον πυρήνα που εκτελείται αυτήν τη στιγμή" -#: src/Common/LinuxKernel.vala:1043 src/Gtk/MainWindow.vala:507 +#: src/Common/LinuxKernel.vala:1043 src/Gtk/MainWindow.vala:494 msgid "is locked" msgstr "" @@ -196,7 +196,7 @@ msgstr "" msgid "The following kernels will be uninstalled" msgstr "Θα καταργηθεί η εγκατάσταση των ακόλουθων πυρήνων" -#: src/Common/LinuxKernel.vala:1109 +#: src/Common/LinuxKernel.vala:1109 src/lib/l.misc.vala:12 #, fuzzy msgid "Continue? (y/N): " msgstr "Συνέχεια;" @@ -211,42 +211,42 @@ msgstr "Δεν βρέθηκαν ενημερώσεις" msgid "Install Kernel Version %s ? (y/N): " msgstr "Εγκατάσταση του πυρήνα έκδοσης %s ; (ν/ό):" -#: src/Common/Main.vala:197 +#: src/Common/Main.vala:198 msgid "Missing Thread support in Glib." msgstr "" -#: src/Common/Main.vala:290 +#: src/Common/Main.vala:291 msgid "Wrote config file" msgstr "" -#: src/Common/Main.vala:309 +#: src/Common/Main.vala:310 msgid "No config file" msgstr "" -#: src/Common/Main.vala:376 +#: src/Common/Main.vala:377 msgid "Loaded config file" msgstr "" -#: src/Common/Main.vala:396 +#: src/Common/Main.vala:397 msgid "Called from" msgstr "Κλήθηκε από" -#: src/Common/Main.vala:396 +#: src/Common/Main.vala:397 msgid "at logon" msgstr "κατά την εκκίνηση" -#: src/Common/Main.vala:397 +#: src/Common/Main.vala:398 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" "Αυτό το αρχείο αντικαθίσταται και εκτελείται ξανά κάθε φορά που " "αποθηκεύονται οι ρυθμίσεις στο" -#: src/Common/Main.vala:429 +#: src/Common/Main.vala:430 msgid "Notifications are disabled" msgstr "Οι ειδοποιήσεις είναι απενεργοποιημένες" -#: src/Common/Main.vala:482 +#: src/Common/Main.vala:483 msgid "Can not reach site" msgstr "Αποτυχία ανάγνωσης του αρχείου" @@ -491,21 +491,21 @@ msgstr "" msgid "Forked" msgstr "" -#: src/Gtk/MainWindow.vala:447 +#: src/Gtk/MainWindow.vala:434 #, fuzzy msgid "Updating kernels" msgstr "Ενημέρωση πυρήνων" -#: src/Gtk/MainWindow.vala:489 +#: src/Gtk/MainWindow.vala:476 msgid "available" msgstr "διαθέσιμος" -#: src/Gtk/MainWindow.vala:506 +#: src/Gtk/MainWindow.vala:493 #, fuzzy msgid "is already installed" msgstr "είναι ήδη εγκατεστημένο." -#: src/Gtk/MainWindow.vala:508 +#: src/Gtk/MainWindow.vala:495 msgid "adding" msgstr "" @@ -684,7 +684,3 @@ msgstr "Άκυρο" #: src/Gtk/TerminalWindow.vala:153 msgid "Close" msgstr "Κλείσιμο" - -#: src/lib/l.misc.vala:12 -msgid "Proceed? (y/N): " -msgstr "" diff --git a/po/es.po b/po/es.po index 6df5676a..60d47a17 100644 --- a/po/es.po +++ b/po/es.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-24 16:28-0400\n" +"POT-Creation-Date: 2023-06-26 02:02-0400\n" "PO-Revision-Date: 2018-01-03 02:03-0600\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish\n" @@ -71,7 +71,7 @@ msgstr "En ejecución" msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:669 src/Gtk/MainWindow.vala:485 +#: src/Common/LinuxKernel.vala:669 src/Gtk/MainWindow.vala:472 msgid "Running" msgstr "En ejecución" @@ -148,7 +148,7 @@ msgstr "ya está instalado." msgid "download failed." msgstr "" -#: src/Common/LinuxKernel.vala:1018 src/Gtk/MainWindow.vala:511 +#: src/Common/LinuxKernel.vala:1018 src/Gtk/MainWindow.vala:498 #, fuzzy msgid "Install: no installable kernels specified" msgstr "Coomand no especificado" @@ -162,7 +162,7 @@ msgstr "Desinstalación de kernels seleccionados" msgid "Not uninstalling the currently running kernel" msgstr "No desinstalará el kernel que se está ejecutando actualmente" -#: src/Common/LinuxKernel.vala:1043 src/Gtk/MainWindow.vala:507 +#: src/Common/LinuxKernel.vala:1043 src/Gtk/MainWindow.vala:494 msgid "is locked" msgstr "" @@ -196,7 +196,7 @@ msgstr "" msgid "The following kernels will be uninstalled" msgstr "Se desinstalarán los siguientes kernels" -#: src/Common/LinuxKernel.vala:1109 +#: src/Common/LinuxKernel.vala:1109 src/lib/l.misc.vala:12 #, fuzzy msgid "Continue? (y/N): " msgstr "¿Continuar?" @@ -211,42 +211,42 @@ msgstr "No se encontró ninguna actualización" msgid "Install Kernel Version %s ? (y/N): " msgstr "Instalar la versión del kernel %s? (s/n): " -#: src/Common/Main.vala:197 +#: src/Common/Main.vala:198 msgid "Missing Thread support in Glib." msgstr "" -#: src/Common/Main.vala:290 +#: src/Common/Main.vala:291 msgid "Wrote config file" msgstr "" -#: src/Common/Main.vala:309 +#: src/Common/Main.vala:310 msgid "No config file" msgstr "" -#: src/Common/Main.vala:376 +#: src/Common/Main.vala:377 msgid "Loaded config file" msgstr "" -#: src/Common/Main.vala:396 +#: src/Common/Main.vala:397 msgid "Called from" msgstr "Llamado desde" -#: src/Common/Main.vala:396 +#: src/Common/Main.vala:397 msgid "at logon" msgstr "al inicio" -#: src/Common/Main.vala:397 +#: src/Common/Main.vala:398 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" "Este archivo se sobrescribe y se ejecuta de nuevo cada vez que se guarda la " "configuración en" -#: src/Common/Main.vala:429 +#: src/Common/Main.vala:430 msgid "Notifications are disabled" msgstr "Las notificaciones están deshabilitadas" -#: src/Common/Main.vala:482 +#: src/Common/Main.vala:483 msgid "Can not reach site" msgstr "No se puede llegar al sitio" @@ -490,21 +490,21 @@ msgstr "" msgid "Forked" msgstr "" -#: src/Gtk/MainWindow.vala:447 +#: src/Gtk/MainWindow.vala:434 #, fuzzy msgid "Updating kernels" msgstr "Actualización de kernels" -#: src/Gtk/MainWindow.vala:489 +#: src/Gtk/MainWindow.vala:476 msgid "available" msgstr "disponibles" -#: src/Gtk/MainWindow.vala:506 +#: src/Gtk/MainWindow.vala:493 #, fuzzy msgid "is already installed" msgstr "ya está instalado." -#: src/Gtk/MainWindow.vala:508 +#: src/Gtk/MainWindow.vala:495 msgid "adding" msgstr "" @@ -683,7 +683,3 @@ msgstr "Cancelar" #: src/Gtk/TerminalWindow.vala:153 msgid "Close" msgstr "Cerrar" - -#: src/lib/l.misc.vala:12 -msgid "Proceed? (y/N): " -msgstr "" diff --git a/po/fr.po b/po/fr.po index 7df1fde4..b21c414f 100644 --- a/po/fr.po +++ b/po/fr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-24 16:28-0400\n" +"POT-Creation-Date: 2023-06-26 02:02-0400\n" "PO-Revision-Date: 2018-08-05 15:50+0200\n" "Last-Translator: Yolateng0 \n" "Language-Team: French\n" @@ -71,7 +71,7 @@ msgstr "Actuel" msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:669 src/Gtk/MainWindow.vala:485 +#: src/Common/LinuxKernel.vala:669 src/Gtk/MainWindow.vala:472 msgid "Running" msgstr "Actuel" @@ -148,7 +148,7 @@ msgstr "est déjà installé." msgid "download failed." msgstr "" -#: src/Common/LinuxKernel.vala:1018 src/Gtk/MainWindow.vala:511 +#: src/Common/LinuxKernel.vala:1018 src/Gtk/MainWindow.vala:498 #, fuzzy msgid "Install: no installable kernels specified" msgstr "Pas de commande fournie" @@ -162,7 +162,7 @@ msgstr "Désinstallation des noyaux sélectionnés" msgid "Not uninstalling the currently running kernel" msgstr "Ne pas désinstaller le noyau en cours d'exécution" -#: src/Common/LinuxKernel.vala:1043 src/Gtk/MainWindow.vala:507 +#: src/Common/LinuxKernel.vala:1043 src/Gtk/MainWindow.vala:494 msgid "is locked" msgstr "" @@ -196,7 +196,7 @@ msgstr "" msgid "The following kernels will be uninstalled" msgstr "Les noyaux suivants seront désinstallés" -#: src/Common/LinuxKernel.vala:1109 +#: src/Common/LinuxKernel.vala:1109 src/lib/l.misc.vala:12 #, fuzzy msgid "Continue? (y/N): " msgstr "Reprendre ?" @@ -211,42 +211,42 @@ msgstr "Aucune mise à jour disponible" msgid "Install Kernel Version %s ? (y/N): " msgstr "Installer le noyau en version %s ? (y/n): " -#: src/Common/Main.vala:197 +#: src/Common/Main.vala:198 msgid "Missing Thread support in Glib." msgstr "" -#: src/Common/Main.vala:290 +#: src/Common/Main.vala:291 msgid "Wrote config file" msgstr "" -#: src/Common/Main.vala:309 +#: src/Common/Main.vala:310 msgid "No config file" msgstr "" -#: src/Common/Main.vala:376 +#: src/Common/Main.vala:377 msgid "Loaded config file" msgstr "" -#: src/Common/Main.vala:396 +#: src/Common/Main.vala:397 msgid "Called from" msgstr "Appelé à partir de" -#: src/Common/Main.vala:396 +#: src/Common/Main.vala:397 msgid "at logon" msgstr "au démarrage" -#: src/Common/Main.vala:397 +#: src/Common/Main.vala:398 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" "Ce fichier est écrasé et exécuté à nouveau chaque fois que les paramètres " "sont enregistrés dans" -#: src/Common/Main.vala:429 +#: src/Common/Main.vala:430 msgid "Notifications are disabled" msgstr "Les notifications sont désactivées" -#: src/Common/Main.vala:482 +#: src/Common/Main.vala:483 msgid "Can not reach site" msgstr "No se puede llegar al sitio" @@ -490,21 +490,21 @@ msgstr "" msgid "Forked" msgstr "" -#: src/Gtk/MainWindow.vala:447 +#: src/Gtk/MainWindow.vala:434 #, fuzzy msgid "Updating kernels" msgstr "Mise à jour des noyaux" -#: src/Gtk/MainWindow.vala:489 +#: src/Gtk/MainWindow.vala:476 msgid "available" msgstr "disponible" -#: src/Gtk/MainWindow.vala:506 +#: src/Gtk/MainWindow.vala:493 #, fuzzy msgid "is already installed" msgstr "est déjà installé." -#: src/Gtk/MainWindow.vala:508 +#: src/Gtk/MainWindow.vala:495 msgid "adding" msgstr "" @@ -683,7 +683,3 @@ msgstr "Annuler" #: src/Gtk/TerminalWindow.vala:153 msgid "Close" msgstr "Fermer" - -#: src/lib/l.misc.vala:12 -msgid "Proceed? (y/N): " -msgstr "" diff --git a/po/hr.po b/po/hr.po index 08c24172..5a143662 100644 --- a/po/hr.po +++ b/po/hr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-24 16:28-0400\n" +"POT-Creation-Date: 2023-06-26 02:02-0400\n" "PO-Revision-Date: 2022-09-22 12:13+0200\n" "Last-Translator: gogo \n" "Language-Team: Croatian\n" @@ -71,7 +71,7 @@ msgstr "Pokrenuto" msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:669 src/Gtk/MainWindow.vala:485 +#: src/Common/LinuxKernel.vala:669 src/Gtk/MainWindow.vala:472 msgid "Running" msgstr "Pokrenuto" @@ -148,7 +148,7 @@ msgstr "je već instaliran." msgid "download failed." msgstr "" -#: src/Common/LinuxKernel.vala:1018 src/Gtk/MainWindow.vala:511 +#: src/Common/LinuxKernel.vala:1018 src/Gtk/MainWindow.vala:498 #, fuzzy msgid "Install: no installable kernels specified" msgstr "Naredba nije navedena" @@ -162,7 +162,7 @@ msgstr "Deinstaliraj određene kernele" msgid "Not uninstalling the currently running kernel" msgstr "ne deinstaliranje trenutno pokrenute kernel" -#: src/Common/LinuxKernel.vala:1043 src/Gtk/MainWindow.vala:507 +#: src/Common/LinuxKernel.vala:1043 src/Gtk/MainWindow.vala:494 msgid "is locked" msgstr "" @@ -196,7 +196,7 @@ msgstr "" msgid "The following kernels will be uninstalled" msgstr "Deinstalirat će se sljedeće kerneli" -#: src/Common/LinuxKernel.vala:1109 +#: src/Common/LinuxKernel.vala:1109 src/lib/l.misc.vala:12 #, fuzzy msgid "Continue? (y/N): " msgstr "Nastavi?" @@ -211,41 +211,41 @@ msgstr "Nema pronađenih nadopuna" msgid "Install Kernel Version %s ? (y/N): " msgstr "Instaliraj kernel inačice %s ? (d/n): " -#: src/Common/Main.vala:197 +#: src/Common/Main.vala:198 msgid "Missing Thread support in Glib." msgstr "" -#: src/Common/Main.vala:290 +#: src/Common/Main.vala:291 msgid "Wrote config file" msgstr "" -#: src/Common/Main.vala:309 +#: src/Common/Main.vala:310 msgid "No config file" msgstr "" -#: src/Common/Main.vala:376 +#: src/Common/Main.vala:377 msgid "Loaded config file" msgstr "" -#: src/Common/Main.vala:396 +#: src/Common/Main.vala:397 msgid "Called from" msgstr "Pozvano od" -#: src/Common/Main.vala:396 +#: src/Common/Main.vala:397 msgid "at logon" msgstr "indításkor" -#: src/Common/Main.vala:397 +#: src/Common/Main.vala:398 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" "Ova se datoteka prepisuje i ponovno izvršava kad god se postavke spremaju u" -#: src/Common/Main.vala:429 +#: src/Common/Main.vala:430 msgid "Notifications are disabled" msgstr "Obavijesti su onemogućene" -#: src/Common/Main.vala:482 +#: src/Common/Main.vala:483 msgid "Can not reach site" msgstr "Nije moguće doći do web-mjesta" @@ -489,21 +489,21 @@ msgstr "" msgid "Forked" msgstr "" -#: src/Gtk/MainWindow.vala:447 +#: src/Gtk/MainWindow.vala:434 #, fuzzy msgid "Updating kernels" msgstr "Ažuriranje jezgri" -#: src/Gtk/MainWindow.vala:489 +#: src/Gtk/MainWindow.vala:476 msgid "available" msgstr "dostupno" -#: src/Gtk/MainWindow.vala:506 +#: src/Gtk/MainWindow.vala:493 #, fuzzy msgid "is already installed" msgstr "je već instaliran." -#: src/Gtk/MainWindow.vala:508 +#: src/Gtk/MainWindow.vala:495 msgid "adding" msgstr "" @@ -682,7 +682,3 @@ msgstr "Odustani" #: src/Gtk/TerminalWindow.vala:153 msgid "Close" msgstr "Zatvori" - -#: src/lib/l.misc.vala:12 -msgid "Proceed? (y/N): " -msgstr "" diff --git a/po/it.po b/po/it.po index 60a112a9..9a0d7982 100644 --- a/po/it.po +++ b/po/it.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-24 16:28-0400\n" +"POT-Creation-Date: 2023-06-26 02:02-0400\n" "PO-Revision-Date: 2020-08-22 15:35+0100\n" "Last-Translator: Demetrio Mendozzi\n" "Language-Team: Italian\n" @@ -69,7 +69,7 @@ msgstr "In esecuzione" msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:669 src/Gtk/MainWindow.vala:485 +#: src/Common/LinuxKernel.vala:669 src/Gtk/MainWindow.vala:472 msgid "Running" msgstr "In esecuzione" @@ -146,7 +146,7 @@ msgstr "è già installato." msgid "download failed." msgstr "" -#: src/Common/LinuxKernel.vala:1018 src/Gtk/MainWindow.vala:511 +#: src/Common/LinuxKernel.vala:1018 src/Gtk/MainWindow.vala:498 #, fuzzy msgid "Install: no installable kernels specified" msgstr "Comando non specificato" @@ -160,7 +160,7 @@ msgstr "Disinstalla i kernel specificati" msgid "Not uninstalling the currently running kernel" msgstr "non disinstallare il kernel attualmente in esecuzione" -#: src/Common/LinuxKernel.vala:1043 src/Gtk/MainWindow.vala:507 +#: src/Common/LinuxKernel.vala:1043 src/Gtk/MainWindow.vala:494 msgid "is locked" msgstr "" @@ -194,7 +194,7 @@ msgstr "" msgid "The following kernels will be uninstalled" msgstr "I seguenti kernel saranno rimossi" -#: src/Common/LinuxKernel.vala:1109 +#: src/Common/LinuxKernel.vala:1109 src/lib/l.misc.vala:12 #, fuzzy msgid "Continue? (y/N): " msgstr "Continuare ?" @@ -209,42 +209,42 @@ msgstr "Nessun aggiornamento trovato" msgid "Install Kernel Version %s ? (y/N): " msgstr "Installare la versione del kernel %s ? (y/n): " -#: src/Common/Main.vala:197 +#: src/Common/Main.vala:198 msgid "Missing Thread support in Glib." msgstr "" -#: src/Common/Main.vala:290 +#: src/Common/Main.vala:291 msgid "Wrote config file" msgstr "" -#: src/Common/Main.vala:309 +#: src/Common/Main.vala:310 msgid "No config file" msgstr "" -#: src/Common/Main.vala:376 +#: src/Common/Main.vala:377 msgid "Loaded config file" msgstr "" -#: src/Common/Main.vala:396 +#: src/Common/Main.vala:397 msgid "Called from" msgstr "Chiamato da" -#: src/Common/Main.vala:396 +#: src/Common/Main.vala:397 msgid "at logon" msgstr "all'avvio" -#: src/Common/Main.vala:397 +#: src/Common/Main.vala:398 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" "Questo file viene sovrascritto ed eseguito nuovamente ogni volta che vengono " "salvate le impostazioni" -#: src/Common/Main.vala:429 +#: src/Common/Main.vala:430 msgid "Notifications are disabled" msgstr "Le notifiche sono disabilitate" -#: src/Common/Main.vala:482 +#: src/Common/Main.vala:483 msgid "Can not reach site" msgstr "Impossibile raggiungere il sito" @@ -490,21 +490,21 @@ msgstr "" msgid "Forked" msgstr "" -#: src/Gtk/MainWindow.vala:447 +#: src/Gtk/MainWindow.vala:434 #, fuzzy msgid "Updating kernels" msgstr "Aggiornamento dei kernel" -#: src/Gtk/MainWindow.vala:489 +#: src/Gtk/MainWindow.vala:476 msgid "available" msgstr "disponibile" -#: src/Gtk/MainWindow.vala:506 +#: src/Gtk/MainWindow.vala:493 #, fuzzy msgid "is already installed" msgstr "è già installato." -#: src/Gtk/MainWindow.vala:508 +#: src/Gtk/MainWindow.vala:495 msgid "adding" msgstr "" @@ -683,7 +683,3 @@ msgstr "Cancella" #: src/Gtk/TerminalWindow.vala:153 msgid "Close" msgstr "Chiudi" - -#: src/lib/l.misc.vala:12 -msgid "Proceed? (y/N): " -msgstr "" diff --git a/po/ko.po b/po/ko.po index 14f29bd2..5bbc3f11 100644 --- a/po/ko.po +++ b/po/ko.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-24 16:28-0400\n" +"POT-Creation-Date: 2023-06-26 02:02-0400\n" "PO-Revision-Date: 2022-09-28 11:48+0900\n" "Last-Translator: Kevin Kim \n" "Language-Team: Korean\n" @@ -71,7 +71,7 @@ msgstr "구동 중" msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:669 src/Gtk/MainWindow.vala:485 +#: src/Common/LinuxKernel.vala:669 src/Gtk/MainWindow.vala:472 msgid "Running" msgstr "구동 중" @@ -148,7 +148,7 @@ msgstr "가 이미 설치되어 있습니다" msgid "download failed." msgstr "" -#: src/Common/LinuxKernel.vala:1018 src/Gtk/MainWindow.vala:511 +#: src/Common/LinuxKernel.vala:1018 src/Gtk/MainWindow.vala:498 #, fuzzy msgid "Install: no installable kernels specified" msgstr "지정한 명령어가 없습니다" @@ -162,7 +162,7 @@ msgstr "선택한 커널 제거" msgid "Not uninstalling the currently running kernel" msgstr "현재 실행 중인 커널을 제거하지 않음" -#: src/Common/LinuxKernel.vala:1043 src/Gtk/MainWindow.vala:507 +#: src/Common/LinuxKernel.vala:1043 src/Gtk/MainWindow.vala:494 msgid "is locked" msgstr "" @@ -196,7 +196,7 @@ msgstr "" msgid "The following kernels will be uninstalled" msgstr "풀이" -#: src/Common/LinuxKernel.vala:1109 +#: src/Common/LinuxKernel.vala:1109 src/lib/l.misc.vala:12 #, fuzzy msgid "Continue? (y/N): " msgstr "계속하시겠습니까?" @@ -211,40 +211,40 @@ msgstr "업데이트를 찾을 수 없습니다" msgid "Install Kernel Version %s ? (y/N): " msgstr "커널 %s 버전을 설치하시겠습니까? (y/n): " -#: src/Common/Main.vala:197 +#: src/Common/Main.vala:198 msgid "Missing Thread support in Glib." msgstr "" -#: src/Common/Main.vala:290 +#: src/Common/Main.vala:291 msgid "Wrote config file" msgstr "" -#: src/Common/Main.vala:309 +#: src/Common/Main.vala:310 msgid "No config file" msgstr "" -#: src/Common/Main.vala:376 +#: src/Common/Main.vala:377 msgid "Loaded config file" msgstr "" -#: src/Common/Main.vala:396 +#: src/Common/Main.vala:397 msgid "Called from" msgstr "에서 호출" -#: src/Common/Main.vala:396 +#: src/Common/Main.vala:397 msgid "at logon" msgstr "로그온 시" -#: src/Common/Main.vala:397 +#: src/Common/Main.vala:398 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "이 파일은 덮어쓰고 설정이 저장될 때마다 다시 실행됩니다." -#: src/Common/Main.vala:429 +#: src/Common/Main.vala:430 msgid "Notifications are disabled" msgstr "알림이 비활성화 되었습니다" -#: src/Common/Main.vala:482 +#: src/Common/Main.vala:483 msgid "Can not reach site" msgstr "사이트에 도달 할 수 없습니다" @@ -488,21 +488,21 @@ msgstr "" msgid "Forked" msgstr "" -#: src/Gtk/MainWindow.vala:447 +#: src/Gtk/MainWindow.vala:434 #, fuzzy msgid "Updating kernels" msgstr "커널 업데이트" -#: src/Gtk/MainWindow.vala:489 +#: src/Gtk/MainWindow.vala:476 msgid "available" msgstr "사용가능" -#: src/Gtk/MainWindow.vala:506 +#: src/Gtk/MainWindow.vala:493 #, fuzzy msgid "is already installed" msgstr "가 이미 설치되어 있습니다" -#: src/Gtk/MainWindow.vala:508 +#: src/Gtk/MainWindow.vala:495 msgid "adding" msgstr "" @@ -681,7 +681,3 @@ msgstr "취소" #: src/Gtk/TerminalWindow.vala:153 msgid "Close" msgstr "닫기" - -#: src/lib/l.misc.vala:12 -msgid "Proceed? (y/N): " -msgstr "" diff --git a/po/messages.pot b/po/messages.pot index ecd8b83d..f94ed97a 100644 --- a/po/messages.pot +++ b/po/messages.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline 1.3.20\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-24 16:28-0400\n" +"POT-Creation-Date: 2023-06-26 04:08-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -74,7 +74,7 @@ msgstr "" msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:669 src/Gtk/MainWindow.vala:485 +#: src/Common/LinuxKernel.vala:669 src/Gtk/MainWindow.vala:472 msgid "Running" msgstr "" @@ -146,7 +146,7 @@ msgstr "" msgid "download failed." msgstr "" -#: src/Common/LinuxKernel.vala:1018 src/Gtk/MainWindow.vala:511 +#: src/Common/LinuxKernel.vala:1018 src/Gtk/MainWindow.vala:498 msgid "Install: no installable kernels specified" msgstr "" @@ -158,7 +158,7 @@ msgstr "" msgid "Not uninstalling the currently running kernel" msgstr "" -#: src/Common/LinuxKernel.vala:1043 src/Gtk/MainWindow.vala:507 +#: src/Common/LinuxKernel.vala:1043 src/Gtk/MainWindow.vala:494 msgid "is locked" msgstr "" @@ -190,7 +190,7 @@ msgstr "" msgid "The following kernels will be uninstalled" msgstr "" -#: src/Common/LinuxKernel.vala:1109 +#: src/Common/LinuxKernel.vala:1109 src/lib/l.misc.vala:12 msgid "Continue? (y/N): " msgstr "" @@ -203,40 +203,40 @@ msgstr "" msgid "Install Kernel Version %s ? (y/N): " msgstr "" -#: src/Common/Main.vala:197 +#: src/Common/Main.vala:198 msgid "Missing Thread support in Glib." msgstr "" -#: src/Common/Main.vala:290 +#: src/Common/Main.vala:291 msgid "Wrote config file" msgstr "" -#: src/Common/Main.vala:309 +#: src/Common/Main.vala:310 msgid "No config file" msgstr "" -#: src/Common/Main.vala:376 +#: src/Common/Main.vala:377 msgid "Loaded config file" msgstr "" -#: src/Common/Main.vala:396 +#: src/Common/Main.vala:397 msgid "Called from" msgstr "" -#: src/Common/Main.vala:396 +#: src/Common/Main.vala:397 msgid "at logon" msgstr "" -#: src/Common/Main.vala:397 +#: src/Common/Main.vala:398 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" -#: src/Common/Main.vala:429 +#: src/Common/Main.vala:430 msgid "Notifications are disabled" msgstr "" -#: src/Common/Main.vala:482 +#: src/Common/Main.vala:483 msgid "Can not reach site" msgstr "" @@ -469,19 +469,19 @@ msgstr "" msgid "Forked" msgstr "" -#: src/Gtk/MainWindow.vala:447 +#: src/Gtk/MainWindow.vala:434 msgid "Updating kernels" msgstr "" -#: src/Gtk/MainWindow.vala:489 +#: src/Gtk/MainWindow.vala:476 msgid "available" msgstr "" -#: src/Gtk/MainWindow.vala:506 +#: src/Gtk/MainWindow.vala:493 msgid "is already installed" msgstr "" -#: src/Gtk/MainWindow.vala:508 +#: src/Gtk/MainWindow.vala:495 msgid "adding" msgstr "" @@ -657,7 +657,3 @@ msgstr "" #: src/Gtk/TerminalWindow.vala:153 msgid "Close" msgstr "" - -#: src/lib/l.misc.vala:12 -msgid "Proceed? (y/N): " -msgstr "" diff --git a/po/nl.po b/po/nl.po index 45a80046..59c65f97 100644 --- a/po/nl.po +++ b/po/nl.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-24 16:28-0400\n" +"POT-Creation-Date: 2023-06-26 02:02-0400\n" "PO-Revision-Date: 2020-08-23 13:55+0200\n" "Last-Translator: Heimen Stoffels \n" "Language-Team: Dutch (Netherlands)\n" @@ -71,7 +71,7 @@ msgstr "In gebruik" msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:669 src/Gtk/MainWindow.vala:485 +#: src/Common/LinuxKernel.vala:669 src/Gtk/MainWindow.vala:472 msgid "Running" msgstr "In gebruik" @@ -148,7 +148,7 @@ msgstr "is al geïnstalleerd." msgid "download failed." msgstr "" -#: src/Common/LinuxKernel.vala:1018 src/Gtk/MainWindow.vala:511 +#: src/Common/LinuxKernel.vala:1018 src/Gtk/MainWindow.vala:498 #, fuzzy msgid "Install: no installable kernels specified" msgstr "Geen opdracht opgegeven" @@ -162,7 +162,7 @@ msgstr "Geselecteerde kernels verwijderen" msgid "Not uninstalling the currently running kernel" msgstr "de momenteel actieve kernel niet verwijderen" -#: src/Common/LinuxKernel.vala:1043 src/Gtk/MainWindow.vala:507 +#: src/Common/LinuxKernel.vala:1043 src/Gtk/MainWindow.vala:494 msgid "is locked" msgstr "" @@ -196,7 +196,7 @@ msgstr "" msgid "The following kernels will be uninstalled" msgstr "De volgende kernels worden verwijderd" -#: src/Common/LinuxKernel.vala:1109 +#: src/Common/LinuxKernel.vala:1109 src/lib/l.misc.vala:12 #, fuzzy msgid "Continue? (y/N): " msgstr "Wilt u doorgaan?" @@ -211,42 +211,42 @@ msgstr "Geen updates gevonden" msgid "Install Kernel Version %s ? (y/N): " msgstr "Wilt u versie %s installeren? (j/n): " -#: src/Common/Main.vala:197 +#: src/Common/Main.vala:198 msgid "Missing Thread support in Glib." msgstr "" -#: src/Common/Main.vala:290 +#: src/Common/Main.vala:291 msgid "Wrote config file" msgstr "" -#: src/Common/Main.vala:309 +#: src/Common/Main.vala:310 msgid "No config file" msgstr "" -#: src/Common/Main.vala:376 +#: src/Common/Main.vala:377 msgid "Loaded config file" msgstr "" -#: src/Common/Main.vala:396 +#: src/Common/Main.vala:397 msgid "Called from" msgstr "Aangeroepen door" -#: src/Common/Main.vala:396 +#: src/Common/Main.vala:397 msgid "at logon" msgstr "bij het opstarten" -#: src/Common/Main.vala:397 +#: src/Common/Main.vala:398 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" "Dit bestand wordt overschreven en opnieuw uitgevoerd wanneer instellingen " "worden opgeslagen in" -#: src/Common/Main.vala:429 +#: src/Common/Main.vala:430 msgid "Notifications are disabled" msgstr "Meldingen zijn uitgeschakeld" -#: src/Common/Main.vala:482 +#: src/Common/Main.vala:483 msgid "Can not reach site" msgstr "Kan de site niet bereiken" @@ -490,21 +490,21 @@ msgstr "" msgid "Forked" msgstr "" -#: src/Gtk/MainWindow.vala:447 +#: src/Gtk/MainWindow.vala:434 #, fuzzy msgid "Updating kernels" msgstr "Kernels bijwerken" -#: src/Gtk/MainWindow.vala:489 +#: src/Gtk/MainWindow.vala:476 msgid "available" msgstr "beschikbaar" -#: src/Gtk/MainWindow.vala:506 +#: src/Gtk/MainWindow.vala:493 #, fuzzy msgid "is already installed" msgstr "is al geïnstalleerd." -#: src/Gtk/MainWindow.vala:508 +#: src/Gtk/MainWindow.vala:495 msgid "adding" msgstr "" @@ -683,7 +683,3 @@ msgstr "Annuleren" #: src/Gtk/TerminalWindow.vala:153 msgid "Close" msgstr "Sluiten" - -#: src/lib/l.misc.vala:12 -msgid "Proceed? (y/N): " -msgstr "" diff --git a/po/pl.po b/po/pl.po index 1e9cea2b..33f3965e 100644 --- a/po/pl.po +++ b/po/pl.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-24 16:28-0400\n" +"POT-Creation-Date: 2023-06-26 02:02-0400\n" "PO-Revision-Date: 2023-06-21 01:02+0200\n" "Last-Translator: Matthaiks\n" "Language-Team: Polish\n" @@ -69,7 +69,7 @@ msgstr "uruchomione" msgid "is locked." msgstr "jest zablokowane." -#: src/Common/LinuxKernel.vala:669 src/Gtk/MainWindow.vala:485 +#: src/Common/LinuxKernel.vala:669 src/Gtk/MainWindow.vala:472 msgid "Running" msgstr "Uruchomione" @@ -141,7 +141,7 @@ msgstr "jest już zainstalowane." msgid "download failed." msgstr "pobieranie nie powiodło się." -#: src/Common/LinuxKernel.vala:1018 src/Gtk/MainWindow.vala:511 +#: src/Common/LinuxKernel.vala:1018 src/Gtk/MainWindow.vala:498 msgid "Install: no installable kernels specified" msgstr "Instalowanie: nie określono jądra do zainstalowania" @@ -153,7 +153,7 @@ msgstr "Odinstalowanie wybranych jąder" msgid "Not uninstalling the currently running kernel" msgstr "Bez odinstalowywania aktualnie uruchomionego jądra" -#: src/Common/LinuxKernel.vala:1043 src/Gtk/MainWindow.vala:507 +#: src/Common/LinuxKernel.vala:1043 src/Gtk/MainWindow.vala:494 msgid "is locked" msgstr "jest zablokowane" @@ -185,7 +185,7 @@ msgstr "gotowe" msgid "The following kernels will be uninstalled" msgstr "Następujące jądra zostaną odinstalowane" -#: src/Common/LinuxKernel.vala:1109 +#: src/Common/LinuxKernel.vala:1109 src/lib/l.misc.vala:12 #, fuzzy msgid "Continue? (y/N): " msgstr "Kontynuować?" @@ -199,42 +199,42 @@ msgstr "Brak aktualizacji" msgid "Install Kernel Version %s ? (y/N): " msgstr "Zainstalować wersję jądra %s? (t/n): " -#: src/Common/Main.vala:197 +#: src/Common/Main.vala:198 msgid "Missing Thread support in Glib." msgstr "Brak obsługi wątków w Glib." -#: src/Common/Main.vala:290 +#: src/Common/Main.vala:291 msgid "Wrote config file" msgstr "Zapisano plik konfiguracyjny" -#: src/Common/Main.vala:309 +#: src/Common/Main.vala:310 msgid "No config file" msgstr "Brak pliku konfiguracyjnego" -#: src/Common/Main.vala:376 +#: src/Common/Main.vala:377 msgid "Loaded config file" msgstr "Załadowano plik konfiguracyjny" -#: src/Common/Main.vala:396 +#: src/Common/Main.vala:397 msgid "Called from" msgstr "Wywołano z" -#: src/Common/Main.vala:396 +#: src/Common/Main.vala:397 msgid "at logon" msgstr "przy logowaniu" -#: src/Common/Main.vala:397 +#: src/Common/Main.vala:398 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" "Ten plik jest nadpisywany i wykonywany ponownie za każdym razem, gdy " "ustawienia są zapisywane w" -#: src/Common/Main.vala:429 +#: src/Common/Main.vala:430 msgid "Notifications are disabled" msgstr "Powiadomienia są wyłączone" -#: src/Common/Main.vala:482 +#: src/Common/Main.vala:483 msgid "Can not reach site" msgstr "Nie można dotrzeć do witryny" @@ -473,19 +473,19 @@ msgstr "Oryginalne" msgid "Forked" msgstr "Sforkowane" -#: src/Gtk/MainWindow.vala:447 +#: src/Gtk/MainWindow.vala:434 msgid "Updating kernels" msgstr "Aktualizowanie jąder" -#: src/Gtk/MainWindow.vala:489 +#: src/Gtk/MainWindow.vala:476 msgid "available" msgstr "dostępne" -#: src/Gtk/MainWindow.vala:506 +#: src/Gtk/MainWindow.vala:493 msgid "is already installed" msgstr "jest już zainstalowane" -#: src/Gtk/MainWindow.vala:508 +#: src/Gtk/MainWindow.vala:495 msgid "adding" msgstr "dodawanie" @@ -671,7 +671,3 @@ msgstr "Anuluj" #: src/Gtk/TerminalWindow.vala:153 msgid "Close" msgstr "Zamknij" - -#: src/lib/l.misc.vala:12 -msgid "Proceed? (y/N): " -msgstr "" diff --git a/po/ru.po b/po/ru.po index 8aeed0ae..79f64678 100644 --- a/po/ru.po +++ b/po/ru.po @@ -2,10 +2,9 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-24 16:28-0400\n" +"POT-Creation-Date: 2023-06-26 02:02-0400\n" "PO-Revision-Date: 2023-06-24 16:38+0300\n" -"Last-Translator: Faust3000 (Original) | Danik2343 (Update Transaltion) " -"\n" +"Last-Translator: Danik2343 \n" "Language-Team: Russian\n" "Language: ru\n" "MIME-Version: 1.0\n" @@ -71,7 +70,7 @@ msgstr "запущено" msgid "is locked." msgstr "заблокирован." -#: src/Common/LinuxKernel.vala:669 src/Gtk/MainWindow.vala:485 +#: src/Common/LinuxKernel.vala:669 src/Gtk/MainWindow.vala:472 msgid "Running" msgstr "Используется" @@ -143,7 +142,7 @@ msgstr "уже установлен." msgid "download failed." msgstr "загрузка не удалась." -#: src/Common/LinuxKernel.vala:1018 src/Gtk/MainWindow.vala:511 +#: src/Common/LinuxKernel.vala:1018 src/Gtk/MainWindow.vala:498 msgid "Install: no installable kernels specified" msgstr "Команда не указана" @@ -155,7 +154,7 @@ msgstr "Удаление выбранных ядер" msgid "Not uninstalling the currently running kernel" msgstr "Не удалять запущенное в данный момент ядро" -#: src/Common/LinuxKernel.vala:1043 src/Gtk/MainWindow.vala:507 +#: src/Common/LinuxKernel.vala:1043 src/Gtk/MainWindow.vala:494 msgid "is locked" msgstr "заблокирован" @@ -187,7 +186,7 @@ msgstr "готово" msgid "The following kernels will be uninstalled" msgstr "Следующие ядра будут удалены" -#: src/Common/LinuxKernel.vala:1109 +#: src/Common/LinuxKernel.vala:1109 src/lib/l.misc.vala:12 msgid "Continue? (y/N): " msgstr "Продолжить? (y/N): " @@ -200,41 +199,41 @@ msgstr "Нет обнолений" msgid "Install Kernel Version %s ? (y/N): " msgstr "Установить версию ядра %s ? (y/N): " -#: src/Common/Main.vala:197 +#: src/Common/Main.vala:198 msgid "Missing Thread support in Glib." msgstr "Отсутствие поддержки потоков в Glib." -#: src/Common/Main.vala:290 +#: src/Common/Main.vala:291 msgid "Wrote config file" msgstr "Записан файл конфигурации" -#: src/Common/Main.vala:309 +#: src/Common/Main.vala:310 msgid "No config file" msgstr "Нет файла конфигурации" -#: src/Common/Main.vala:376 +#: src/Common/Main.vala:377 msgid "Loaded config file" msgstr "Загружен файл конфигурации" -#: src/Common/Main.vala:396 +#: src/Common/Main.vala:397 msgid "Called from" msgstr "Вызван из" -#: src/Common/Main.vala:396 +#: src/Common/Main.vala:397 msgid "at logon" msgstr "при запуске" -#: src/Common/Main.vala:397 +#: src/Common/Main.vala:398 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" "Этот файл перезаписывается и выполняется снова при сохранении настроек в" -#: src/Common/Main.vala:429 +#: src/Common/Main.vala:430 msgid "Notifications are disabled" msgstr "Уведомления отключены" -#: src/Common/Main.vala:482 +#: src/Common/Main.vala:483 msgid "Can not reach site" msgstr "Не удается связаться с сайтом" @@ -473,19 +472,19 @@ msgstr "Оригинал" msgid "Forked" msgstr "Форк" -#: src/Gtk/MainWindow.vala:447 +#: src/Gtk/MainWindow.vala:434 msgid "Updating kernels" msgstr "Обновление ядер" -#: src/Gtk/MainWindow.vala:489 +#: src/Gtk/MainWindow.vala:476 msgid "available" msgstr "доступно" -#: src/Gtk/MainWindow.vala:506 +#: src/Gtk/MainWindow.vala:493 msgid "is already installed" msgstr "уже установлен" -#: src/Gtk/MainWindow.vala:508 +#: src/Gtk/MainWindow.vala:495 msgid "adding" msgstr "добавление" @@ -696,7 +695,3 @@ msgstr "Отмена" #: src/Gtk/TerminalWindow.vala:153 msgid "Close" msgstr "Закрыть" - -#: src/lib/l.misc.vala:12 -msgid "Proceed? (y/N): " -msgstr "Приступить? (y/N): " diff --git a/po/sv.po b/po/sv.po index 6fc75bc1..58e24710 100644 --- a/po/sv.po +++ b/po/sv.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-24 16:28-0400\n" +"POT-Creation-Date: 2023-06-26 02:02-0400\n" "PO-Revision-Date: 2018-01-13 16:56+0100\n" "Last-Translator: Åke Engelbrektson \n" "Language-Team:Swedish\n" @@ -71,7 +71,7 @@ msgstr "Körs" msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:669 src/Gtk/MainWindow.vala:485 +#: src/Common/LinuxKernel.vala:669 src/Gtk/MainWindow.vala:472 msgid "Running" msgstr "Körs" @@ -148,7 +148,7 @@ msgstr "är redan installerat." msgid "download failed." msgstr "" -#: src/Common/LinuxKernel.vala:1018 src/Gtk/MainWindow.vala:511 +#: src/Common/LinuxKernel.vala:1018 src/Gtk/MainWindow.vala:498 #, fuzzy msgid "Install: no installable kernels specified" msgstr "Kommandot har inte angetts" @@ -162,7 +162,7 @@ msgstr "Avinstallera valda kärnor" msgid "Not uninstalling the currently running kernel" msgstr "Avinstallera inte den kärna som körs, för närvarande" -#: src/Common/LinuxKernel.vala:1043 src/Gtk/MainWindow.vala:507 +#: src/Common/LinuxKernel.vala:1043 src/Gtk/MainWindow.vala:494 msgid "is locked" msgstr "" @@ -196,7 +196,7 @@ msgstr "" msgid "The following kernels will be uninstalled" msgstr "Följande kärnor kommer att avinstalleras" -#: src/Common/LinuxKernel.vala:1109 +#: src/Common/LinuxKernel.vala:1109 src/lib/l.misc.vala:12 #, fuzzy msgid "Continue? (y/N): " msgstr "Fortsätta?" @@ -211,40 +211,40 @@ msgstr "Inga uppdateringar hittades" msgid "Install Kernel Version %s ? (y/N): " msgstr "Installera kärnversion %s ? (j/n):" -#: src/Common/Main.vala:197 +#: src/Common/Main.vala:198 msgid "Missing Thread support in Glib." msgstr "" -#: src/Common/Main.vala:290 +#: src/Common/Main.vala:291 msgid "Wrote config file" msgstr "" -#: src/Common/Main.vala:309 +#: src/Common/Main.vala:310 msgid "No config file" msgstr "" -#: src/Common/Main.vala:376 +#: src/Common/Main.vala:377 msgid "Loaded config file" msgstr "" -#: src/Common/Main.vala:396 +#: src/Common/Main.vala:397 msgid "Called from" msgstr "Ringde från" -#: src/Common/Main.vala:396 +#: src/Common/Main.vala:397 msgid "at logon" msgstr "vid start" -#: src/Common/Main.vala:397 +#: src/Common/Main.vala:398 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "Den här filen skrivs över och körs igen när inställningar sparas i" -#: src/Common/Main.vala:429 +#: src/Common/Main.vala:430 msgid "Notifications are disabled" msgstr "Meddelanden är inaktiverade" -#: src/Common/Main.vala:482 +#: src/Common/Main.vala:483 msgid "Can not reach site" msgstr "Kan inte nå webbplatsen" @@ -488,21 +488,21 @@ msgstr "" msgid "Forked" msgstr "" -#: src/Gtk/MainWindow.vala:447 +#: src/Gtk/MainWindow.vala:434 #, fuzzy msgid "Updating kernels" msgstr "Uppdatera kärnor" -#: src/Gtk/MainWindow.vala:489 +#: src/Gtk/MainWindow.vala:476 msgid "available" msgstr "tillgänglig" -#: src/Gtk/MainWindow.vala:506 +#: src/Gtk/MainWindow.vala:493 #, fuzzy msgid "is already installed" msgstr "är redan installerat." -#: src/Gtk/MainWindow.vala:508 +#: src/Gtk/MainWindow.vala:495 msgid "adding" msgstr "" @@ -681,7 +681,3 @@ msgstr "Avbryt" #: src/Gtk/TerminalWindow.vala:153 msgid "Close" msgstr "Stäng" - -#: src/lib/l.misc.vala:12 -msgid "Proceed? (y/N): " -msgstr "" diff --git a/po/tr.po b/po/tr.po index c014459c..a1cc1dbe 100644 --- a/po/tr.po +++ b/po/tr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-24 16:28-0400\n" +"POT-Creation-Date: 2023-06-26 02:02-0400\n" "PO-Revision-Date: 2022-08-06 16:48+0300\n" "Last-Translator: Sabri Ünal \n" "Language-Team: Turkish\n" @@ -71,7 +71,7 @@ msgstr "Çalışıyor" msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:669 src/Gtk/MainWindow.vala:485 +#: src/Common/LinuxKernel.vala:669 src/Gtk/MainWindow.vala:472 msgid "Running" msgstr "Çalışıyor" @@ -148,7 +148,7 @@ msgstr "zaten yüklü." msgid "download failed." msgstr "" -#: src/Common/LinuxKernel.vala:1018 src/Gtk/MainWindow.vala:511 +#: src/Common/LinuxKernel.vala:1018 src/Gtk/MainWindow.vala:498 #, fuzzy msgid "Install: no installable kernels specified" msgstr "Komut belirtilmedi" @@ -162,7 +162,7 @@ msgstr "Seçili çekirdekleri kaldırma" msgid "Not uninstalling the currently running kernel" msgstr "çalışmakta olan çekirdeğin kaldırılmaması" -#: src/Common/LinuxKernel.vala:1043 src/Gtk/MainWindow.vala:507 +#: src/Common/LinuxKernel.vala:1043 src/Gtk/MainWindow.vala:494 msgid "is locked" msgstr "" @@ -196,7 +196,7 @@ msgstr "" msgid "The following kernels will be uninstalled" msgstr "Aşağıdaki çekirdekler kaldırılacaktır" -#: src/Common/LinuxKernel.vala:1109 +#: src/Common/LinuxKernel.vala:1109 src/lib/l.misc.vala:12 #, fuzzy msgid "Continue? (y/N): " msgstr "Devam edilsin mi?" @@ -211,41 +211,41 @@ msgstr "Güncelleme bulunamadı" msgid "Install Kernel Version %s ? (y/N): " msgstr "Linux Çekirdek Sürümü %s Kurulsun mu? (e/h): " -#: src/Common/Main.vala:197 +#: src/Common/Main.vala:198 msgid "Missing Thread support in Glib." msgstr "" -#: src/Common/Main.vala:290 +#: src/Common/Main.vala:291 msgid "Wrote config file" msgstr "" -#: src/Common/Main.vala:309 +#: src/Common/Main.vala:310 msgid "No config file" msgstr "" -#: src/Common/Main.vala:376 +#: src/Common/Main.vala:377 msgid "Loaded config file" msgstr "" -#: src/Common/Main.vala:396 +#: src/Common/Main.vala:397 msgid "Called from" msgstr "Çağrı konumu" -#: src/Common/Main.vala:396 +#: src/Common/Main.vala:397 msgid "at logon" msgstr "başlangıçta" -#: src/Common/Main.vala:397 +#: src/Common/Main.vala:398 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" "Bu dosyanın üzerine yazılır ve ayarlar her kaydedildiğinde yeniden yürütülür" -#: src/Common/Main.vala:429 +#: src/Common/Main.vala:430 msgid "Notifications are disabled" msgstr "Bildirimler devre dışı bırakılmış" -#: src/Common/Main.vala:482 +#: src/Common/Main.vala:483 msgid "Can not reach site" msgstr "Siteye ulaşılamıyor" @@ -490,21 +490,21 @@ msgstr "" msgid "Forked" msgstr "" -#: src/Gtk/MainWindow.vala:447 +#: src/Gtk/MainWindow.vala:434 #, fuzzy msgid "Updating kernels" msgstr "Çekirdekleri güncelleme" -#: src/Gtk/MainWindow.vala:489 +#: src/Gtk/MainWindow.vala:476 msgid "available" msgstr "mevcut" -#: src/Gtk/MainWindow.vala:506 +#: src/Gtk/MainWindow.vala:493 #, fuzzy msgid "is already installed" msgstr "zaten yüklü." -#: src/Gtk/MainWindow.vala:508 +#: src/Gtk/MainWindow.vala:495 msgid "adding" msgstr "" @@ -683,7 +683,3 @@ msgstr "İptal Et" #: src/Gtk/TerminalWindow.vala:153 msgid "Close" msgstr "Kapat" - -#: src/lib/l.misc.vala:12 -msgid "Proceed? (y/N): " -msgstr "" diff --git a/po/uk.po b/po/uk.po index 97d4e623..f40cf71c 100644 --- a/po/uk.po +++ b/po/uk.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-24 16:28-0400\n" +"POT-Creation-Date: 2023-06-26 02:02-0400\n" "PO-Revision-Date: 2019-07-25 11:00+0300\n" "Last-Translator: Serhii Golovko \n" "Language-Team: Ukranian\n" @@ -70,7 +70,7 @@ msgstr "виконується" msgid "is locked." msgstr "заблоковано." -#: src/Common/LinuxKernel.vala:669 src/Gtk/MainWindow.vala:485 +#: src/Common/LinuxKernel.vala:669 src/Gtk/MainWindow.vala:472 msgid "Running" msgstr "Використовується" @@ -142,7 +142,7 @@ msgstr "вже встановлено." msgid "download failed." msgstr "не вдалося завантажити." -#: src/Common/LinuxKernel.vala:1018 src/Gtk/MainWindow.vala:511 +#: src/Common/LinuxKernel.vala:1018 src/Gtk/MainWindow.vala:498 msgid "Install: no installable kernels specified" msgstr "Встановити: ядра які можна встановити не вказано" @@ -154,7 +154,7 @@ msgstr "Видаліть конкретні ядра" msgid "Not uninstalling the currently running kernel" msgstr "Не видалення поточного запущеного ядра" -#: src/Common/LinuxKernel.vala:1043 src/Gtk/MainWindow.vala:507 +#: src/Common/LinuxKernel.vala:1043 src/Gtk/MainWindow.vala:494 msgid "is locked" msgstr "заблоковано" @@ -186,7 +186,7 @@ msgstr "готово" msgid "The following kernels will be uninstalled" msgstr "Наступні ядра будуть видалені" -#: src/Common/LinuxKernel.vala:1109 +#: src/Common/LinuxKernel.vala:1109 src/lib/l.misc.vala:12 msgid "Continue? (y/N): " msgstr "Продовжити? (так/Ні): " @@ -199,41 +199,41 @@ msgstr "Немає оновлень" msgid "Install Kernel Version %s ? (y/N): " msgstr "Встановити Ядро Версії %s ? (так/Ні): " -#: src/Common/Main.vala:197 +#: src/Common/Main.vala:198 msgid "Missing Thread support in Glib." msgstr "Відсутня підтримка Thread у Glib." -#: src/Common/Main.vala:290 +#: src/Common/Main.vala:291 msgid "Wrote config file" msgstr "Написав файл конфігурації" -#: src/Common/Main.vala:309 +#: src/Common/Main.vala:310 msgid "No config file" msgstr "Немає файлу конфігурації" -#: src/Common/Main.vala:376 +#: src/Common/Main.vala:377 msgid "Loaded config file" msgstr "Завантажено конфігураційний файл" -#: src/Common/Main.vala:396 +#: src/Common/Main.vala:397 msgid "Called from" msgstr "Викликано з" -#: src/Common/Main.vala:396 +#: src/Common/Main.vala:397 msgid "at logon" msgstr "при запуску" -#: src/Common/Main.vala:397 +#: src/Common/Main.vala:398 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" "Цей файл перезаписується та виконується знову під час збереження налаштувань" -#: src/Common/Main.vala:429 +#: src/Common/Main.vala:430 msgid "Notifications are disabled" msgstr "Повідомлення вимкнено" -#: src/Common/Main.vala:482 +#: src/Common/Main.vala:483 msgid "Can not reach site" msgstr "Не вдається дістатися до сайту" @@ -472,19 +472,19 @@ msgstr "Оригінал" msgid "Forked" msgstr "Двоєний" -#: src/Gtk/MainWindow.vala:447 +#: src/Gtk/MainWindow.vala:434 msgid "Updating kernels" msgstr "Оновлення ядер" -#: src/Gtk/MainWindow.vala:489 +#: src/Gtk/MainWindow.vala:476 msgid "available" msgstr "доступний" -#: src/Gtk/MainWindow.vala:506 +#: src/Gtk/MainWindow.vala:493 msgid "is already installed" msgstr "вже встановлено" -#: src/Gtk/MainWindow.vala:508 +#: src/Gtk/MainWindow.vala:495 msgid "adding" msgstr "додавання" @@ -671,7 +671,3 @@ msgstr "Відміна" #: src/Gtk/TerminalWindow.vala:153 msgid "Close" msgstr "Закрити" - -#: src/lib/l.misc.vala:12 -msgid "Proceed? (y/N): " -msgstr "Продовжити? (так/Ні):" diff --git a/src/Common/Main.vala b/src/Common/Main.vala index 0bf7c0bb..fca1f306 100644 --- a/src/Common/Main.vala +++ b/src/Common/Main.vala @@ -36,6 +36,7 @@ using l.json; [CCode(cname="BRANDING_AUTHOREMAIL")] extern const string BRANDING_AUTHOREMAIL; [CCode(cname="BRANDING_WEBSITE")] extern const string BRANDING_WEBSITE; [CCode(cname="INSTALL_PREFIX")] extern const string INSTALL_PREFIX; +[CCode(cname="TRANSLATORS")] extern const string TRANSLATORS; const string LOCALE_DIR = INSTALL_PREFIX + "/share/locale"; const string APP_LIB_DIR = INSTALL_PREFIX + "/lib/" + BRANDING_SHORTNAME; diff --git a/src/Gtk/MainWindow.vala b/src/Gtk/MainWindow.vala index a8613b88..486cf191 100644 --- a/src/Gtk/MainWindow.vala +++ b/src/Gtk/MainWindow.vala @@ -399,7 +399,7 @@ public class MainWindow : Window { void do_about() { - const string[] authors = { + string[] authors = { "Tony George ", BRANDING_AUTHORNAME+" <"+BRANDING_AUTHOREMAIL+">" }; @@ -415,20 +415,7 @@ public class MainWindow : Window { _("Original")+": \"ukuu\" © 2015-18 Tony George\n" + _("Forked")+": \""+BRANDING_SHORTNAME+"\" 2019 "+BRANDING_AUTHORNAME, authors:authors, - translator_credits: - "de: Marvin Meysel \n" + - "el: Vasilis Kosmidis \n" + - "es: Adolfo Jayme Barrientos \n" + - "fr: Yolateng0 \n" + - "hr: gogo \n" + - "it: Demetrio Mendozzi\n" + - "ko: Kevin Kim \n" + - "nl: Heimen Stoffels \n" + - "pl: Matthaiks\n" + - "ru: Danik2343 \n" + - "sv: Åke Engelbrektson \n" + - "tr: Sabri Ünal \n" + - "uk: Serhii Golovko ", + translator_credits:TRANSLATORS, license_type:License.GPL_3_0 ); } diff --git a/src/lib/l.misc.vala b/src/lib/l.misc.vala index c6b71b42..5b54e19b 100644 --- a/src/lib/l.misc.vala +++ b/src/lib/l.misc.vala @@ -9,7 +9,7 @@ namespace l.misc { Intl.bindtextdomain(BRANDING_SHORTNAME,LOCALE_DIR); } - public bool ask(string prompt = "\n"+_("Proceed? (y/N): "), bool def = false) { + public bool ask(string prompt = "\n"+_("Continue? (y/N): "), bool def = false) { if (App.yes) return true; vprint(prompt,0,stdout,false); var l = stdin.read_line().strip(); @@ -46,17 +46,12 @@ namespace l.misc { } // Doesn't really sanitize much, just escapes any %* except - // a single "%s" to reduce the chance of ugly crash from printf. - // - // This is still user-supplied data fed to printf and then to a shell. - // - // Find the first "%s", ignore "%%", replace all other "%" with "%%". - // - // TODO: Working, but maybe there is a less confusing more state-machine way? + // a single %s to reduce the chance of ugly crash from printf. + // It's still user-supplied data fed to printf and then to a shell. static string sanitize_cmd(string cmd) { string s = cmd.strip(); int p = 0; - while (p>=0 && p Date: Tue, 27 Jun 2023 06:29:37 -0400 Subject: [PATCH 463/567] update notify-send.sh --- README.md | 10 +- README.md.src | 4 + lib/notify_send/AUTHORS | 2 +- lib/notify_send/Makefile | 16 +++ lib/notify_send/README.md | 122 +++++++++++----------- lib/notify_send/mainline_changes.txt | 151 +++++++++++++++------------ lib/notify_send/notify-action.sh | 42 ++++---- lib/notify_send/notify-send.sh | 129 ++++++++++++----------- po/de.po | 6 +- po/el.po | 6 +- po/es.po | 6 +- po/fr.po | 6 +- po/hr.po | 6 +- po/it.po | 6 +- po/ko.po | 6 +- po/messages.pot | 6 +- po/nl.po | 6 +- po/pl.po | 6 +- po/ru.po | 6 +- po/sv.po | 6 +- po/tr.po | 6 +- po/uk.po | 6 +- src/Common/Main.vala | 5 +- src/Common/OSDNotify.vala | 36 +++---- 24 files changed, 322 insertions(+), 279 deletions(-) create mode 100644 lib/notify_send/Makefile diff --git a/README.md b/README.md index 87d6aaf7..8ec1343d 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# Mainline Kernels +# BRANDING_LONGNAME A tool for installing [Ubuntu Mainline Kernel Builds](https://wiki.ubuntu.com/Kernel/MainlineBuilds) onto debian-based distributions. ![Main window screenshot](main_window.png) @@ -69,14 +69,14 @@ There are also .deb packages in [releases](../../releases/latest), generated by # Build ``` sudo apt install libgee-0.8-dev libjson-glib-dev libvte-2.91-dev valac aria2 lsb-release make gettext dpkg-dev -git clone https://github.com/bkw777/mainline.git +git clone BRANDING_GITREPO cd mainline make sudo make install ``` # Usage -Look for System -> Mainline Kernels in your desktop's Applications/Start menu. +Look for System -> BRANDING_LONGNAME in your desktop's Applications/Start menu. Otherwise: CLI @@ -161,6 +161,10 @@ Sorting on the "Notes" column is a way to see all kernels that have any notes to The exit value is also meaningful. `VERBOSE=0 ;mainline --install-latest --yes && mainline --uninstall-old --yes` + Debugging notifications: + `DEBUG_NOTIFY_SEND=true VERBOSE=3 mainline --notify` + Then `ls -l ${XDG_RUNTIME_DIR:-/tmp}/*.e` + * If **Uninstall Old** doesn't remove some distribution kernel packages Use your normal package manager like apt or synaptic to remove the parent meta-package: `$ sudo apt remove linux-image-generic` diff --git a/README.md.src b/README.md.src index 500d462b..8d0ee6a6 100644 --- a/README.md.src +++ b/README.md.src @@ -161,6 +161,10 @@ Sorting on the "Notes" column is a way to see all kernels that have any notes to The exit value is also meaningful. `VERBOSE=0 ;BRANDING_SHORTNAME --install-latest --yes && BRANDING_SHORTNAME --uninstall-old --yes` + Debugging notifications: + `DEBUG_NOTIFY_SEND=true VERBOSE=3 BRANDING_SHORTNAME --notify` + Then `ls -l ${XDG_RUNTIME_DIR:-/tmp}/*.e` + * If **Uninstall Old** doesn't remove some distribution kernel packages Use your normal package manager like apt or synaptic to remove the parent meta-package: `$ sudo apt remove linux-image-generic` diff --git a/lib/notify_send/AUTHORS b/lib/notify_send/AUTHORS index 2848bce0..540451a7 100644 --- a/lib/notify_send/AUTHORS +++ b/lib/notify_send/AUTHORS @@ -1,4 +1,4 @@ -Brian K. White +Brian K. White Vyacheslav Levit Max Weller bsilvereagle diff --git a/lib/notify_send/Makefile b/lib/notify_send/Makefile new file mode 100644 index 00000000..4d360161 --- /dev/null +++ b/lib/notify_send/Makefile @@ -0,0 +1,16 @@ + +SOURCES = notify-send.sh notify-action.sh + +PREFIX = /usr/local +BINDIR = $(PREFIX)/bin + +PHONY: all +all: $(SOURCES) + +install: all + @mkdir -p $(BINDIR) + @install -v -o root -m 755 $(SOURCES) $(BINDIR) + +PHONY: uninstall +uninstall: + @cd $(BINDIR) && rm -v $(SOURCES) diff --git a/lib/notify_send/README.md b/lib/notify_send/README.md index db33401b..5a86bf8c 100644 --- a/lib/notify_send/README.md +++ b/lib/notify_send/README.md @@ -1,87 +1,89 @@ -# notify-send.sh - ----- -**This copy has been modified for https://github.com/bkw777/mainline** +This is [bkw777/notify-send.sh](https://github.com/bkw777/notify-send.sh) +a rewerite of [vlevit/notify-send.sh](https://github.com/vlevit/notify-send.sh) +The main purpose and differences are: +* Refactored to remove all the unnecessary external tools (dc, bc, sed) +* Remove unnecessary here-docs (they create temp files behind the scenes) +* Remove unecessary subshells +* General optimizing and tightening +* Fix the handling of actions. For a lengthy explaination of the problem and the fix, see [bkw777/mainline/blob/master/lib/notify_send/mainline_changes.txt](https://raw.githubusercontent.com/bkw777/mainline/master/lib/notify_send/mainline_changes.txt) +* Also a lot of admittedly gratuitous stylistic changes because I just prefer short variable names except where actually useful, and I just prefer "foo && { stuff }" vs "if foo ;then stuff ;fi" etc. ----- +# notify-send.sh -notify-send.sh is a drop-in replacement for notify-send (from -libnotify) with ability to update and close existing notifications. +notify-send.sh is a replacement for notify-send (from libnotify) with ability to update and close existing notifications, and specify commands to be run in response to actions. -The dependencies are `bash` and `gdbus` (shipped with glib2). +In particular, actions work differently. -In Debian and Ubuntu you can ensure all dependencies are installed -with the following command: +In notify-send, you supply a button label, and notify-send itself waits for the dbus message, and just prints the invoked action if any. You have to incorporate notify-send into some other process to collect that output and decide what to do about it. - $ sudo apt-get install bash libglib2.0-bin +In notify-send.sh, you supply both the button label and the command to run via the --action option, and notify-send.sh sets up a background watcher process for you to monitor dbus for that action and run the given command if that button is ever pressed. -For Arch Linux users notify-send.sh is available in [AUR]. +The dependencies are `bash` and `gdbus` (part of glib2). -[AUR]: https://aur.archlinux.org/packages/notify-send.sh/ +## Install +``` +$ sudo apt install bash libglib2.0-bin +$ sudo make install +``` ## Usage - -notify-send.sh has all command line options of notify-send with a few -additional ones: - - Usage: - notify-send.sh [OPTION...]

[BODY] - create a notification - - Help Options: - -?|--help Show help options + notify-send.sh [OPTION...] [BODY] Application Options: -u, --urgency=LEVEL Specifies the urgency level (low, normal, critical). -t, --expire-time=TIME Specifies the timeout in milliseconds at which to expire the notification. + -f, --force-expire Actively close the notification after the expire time, or after processing any action. -a, --app-name=APP_NAME Specifies the app name for the icon -i, --icon=ICON[,ICON...] Specifies an icon filename or stock icon to display. -c, --category=TYPE[,TYPE...] Specifies the notification category. -h, --hint=TYPE:NAME:VALUE Specifies basic extra data to pass. Valid types are int, double, string and byte. -o, --action=LABEL:COMMAND Specifies an action. Can be passed multiple times. LABEL is usually a button's label. COMMAND is a shell command executed when action is invoked. - -d, --default-action=COMMAND Specifies the default action which is usually invoked by clicking the notification. -l, --close-action=COMMAND Specifies the action invoked when the notification is closed. -p, --print-id Print the notification ID to the standard output. -r, --replace=ID Replace existing notification. -R, --replace-file=FILE Store and load notification replace ID to/from this file. -s, --close=ID Close notification. -v, --version Version of the package. - - -So, for example, to notify a user of a new email we can run: - - $ notify-send.sh --icon=mail-unread --app-name=mail --hint=string:sound-name:message-new-email Subject Message - -To replace or close existing message first we should know its id. To -get id we have to run notify-send.sh with `--print-id`: - - $ notify-send.sh --print-id Subject Message - 10 - -Now we can update this notification using `--replace` option: - - $ notify-send.sh --replace=10 --print-id "New Subject" "New Message" - 10 - -Now we may want to close the notification: - - $ notify-send.sh --close=10 - -Use `--replace-file` to make sure that no more than one notification -is created per file. For example, to increase volume by 5% and show -the current volume value you can run: - - $ notify-send.sh --replace-file=/tmp/volumenotification "Increase Volume" "$(amixer sset Master 5%+ | awk '/[0-9]+%/ {print $2,$5}')" - -You can add a button to the notification with `-o` or `--default-action=`: - - $ notify-send.sh "Subject" "Message" -o "Show another notification:notify-send.sh 'new Subject' 'New Message'" - -You can specify multiple actions by passing `-o` multiple times. Use -`-d` or `--default-action` for action which is usually invoked when -notification area is clicked. Use `-l` or `--close-action` for action -performed when notification is closed. + -?, --help This help + +So, for example, to notify a user of a new email: +``` +$ notify-send.sh --icon=mail-unread --app-name=mail --hint=sound-name:message-new-email Subject Message +``` + +To replace or close an existing message first we need to know its id. +To know the id we have to run notify-send.sh with `--print-id` the first time: +``` +$ notify-send.sh --print-id "The Subject" "The Message" +37 +``` + +Update this notification using `--replace` option: +``` +$ notify-send.sh --replace=37 "New Subject" "New Message" +``` + +Close this notification: +``` +$ notify-send.sh --close=37 +``` + +Use `--replace-file` to make sure that no more than one notification is created per file. +`--replace-file` means to get the ID from the given filename, and to store the ID in that filename. +For example, to increase volume by 5% and show the current volume value: +``` +$ notify-send.sh --replace-file=/tmp/volumenotification "Increase Volume" "$(amixer sset Master 5%+ | awk '/[0-9]+%/ {print $2,$5}')" +``` + +To add one or more buttons to the notification, use one or more `--action=...`: +``` +$ notify-send.sh "Subject" "Message" --action "Show another notification:notify-send.sh 'New Subject' 'New Message'" +``` + +To perform an action when the notification is closed, use `--close-action=...` $ notify-send.sh "Subject" "Message" \ - -d "notify-send.sh 'Default Action'" \ - -o "Button Action:notify-send.sh 'Button Action'" \ + -o "Button0 Action:notify-send.sh 'Button0 Action'" \ + -o "Button1 Action:notify-send.sh 'Button1 Action'" \ + -o "Button2 Action:notify-send.sh 'Button2 Action'" \ -l "notify-send.sh 'Close Action'" diff --git a/lib/notify_send/mainline_changes.txt b/lib/notify_send/mainline_changes.txt index d55fe52e..421a5400 100644 --- a/lib/notify_send/mainline_changes.txt +++ b/lib/notify_send/mainline_changes.txt @@ -1,12 +1,10 @@ -notify-send.sh and notify-action.sh originally came from https://github.com/vlevit/notify-send.sh +notify-send.sh and notify-action.sh come from https://github.com/bkw777/notify-send.sh +which is a fork and rewrite of https://github.com/vlevit/notify-send.sh -But this version largely re-written from that. Some changes are for efficiency, removing unnecessary dependencies, external tools, forks, etc. Some changes are fixing or making more reliable the original functionality. Some changes are changing the original functionality. -Some of the functionality changes would be generically useful, ie to the original project. -Some of the functionality changes are probably not desireable in general, but -it's what we need or want for use by "mainline". +Some of the functionality changes may or may not be generally useful (outside of mainline). -------------------------------------------------------------------------------- @@ -14,39 +12,48 @@ Changes to notify-send.sh * --force-close option changed to more generally mean just "explicitly close" - Previously it just meant to start a timer in the background to send a close + Previously: it just meant to start a timer in the background to send a close command after the same amount of time as the --expire-time, IE in case the notification daemon doesn't impliment timeouts, or ignores the requested - timeout becauseof user settings, actively send a close command ourselves - after the same amount of time. + timeout because of user settings, this option means to actively send a close + command ourselves after the same amount of time instead of relying on the + notification daemon to do it. - Now it still does that, but it also sends a close command immediately + Now: it still does that, but it also sends a close command immediately when processing any event, whether ActionInvoked or NotificationClosed, as well as after the requested timeout (if any). This is most useful in concert with --expire-time=0 + because 0 means never expire. So, --expire-time=0 --force-expire + means never expire until the notification is touched, but once it is touched, + then expire (end the process watching for button presses). * Refactor to avoid unecessary forks for external tools and subshells, - and optimize the code generally, aside from forks. - This replaced essentially everything. - Although the overall structure is still mostly the the same. + and optimize the code generally in various other ways besides just forks. + This replaced essentially everything, although the overall structure is still + mostly the the same. Ship of theseus. - * --close without ID gets ID from --replace-file - So the app code can specify the ID the same way for both creating and closing - send: notify-send.sh -R file ... - close: notify-send.sh -R file -s + * --close without specifying the ID gets the ID from --replace-file + Ths is so the app code can specify the ID the same way for both creating and closing + send: notify-send.sh --replace-file=filename ... + close: notify-send.sh --replace-file=filename --close - We only used this option briefly, now we use the new --force-close behavior - instead, but it's free and potentially handy so no reason to remove it. + Mainline only used this option briefly, and now uses --force-close instead, + but it's free and sensible and potentially handy so no reason to remove it. - * Fix quoting of action pairs so that the -d default action, - or any other -o action with no label, produces a blank button (or no button, + * Fix quoting of action pairs so that a default action + (--action=... with empty label), produces a blank button (or no button, depending on the particular behavior of different notification daemons) insted of a button with a label that looks like [ '' ] - * Allow empty SUMMARY & BODY, treat missing as empty instead of error. - We don't use it, but it's valid and there's no reason the script should - treat it as an error. An empty notification with no title and no body + * Removed the -d --default-action option as it doesn't actually work on all + notification daemons, and you can do the same thing by just using --action + with an empty label field: --action=":mainline-gtk" + or --action="'':mainline-gtk" to replicate the original behavior. + + * Allow empty SUMMARY & BODY. Treat missing as empty instead of error. + Mainline doesn't use it, but it's valid and there's no reason the script + should treat it as an error. An empty notification with no title and no body and even no icon, still has an app-name, which can possibly be all the information the sender needed to deliver. @@ -59,12 +66,13 @@ Changes to notify-send.sh * "setsid" to free ourself from the action handler and explicit close child processes, so that we can exit and leave one less unneccessary background process waiting around the whole time the dbus monitor process is waiting - for a ActionInvoked or NotificationClosed event, which may never come. + for a ActionInvoked or NotificationClosed event, *which may never come*. - * Prevent child/bg processes from spamming the terminal except some errors. - Clears up the mistaken appearance that the command didn't end and return - to the prompt, whne really it was just that a bg process wrote to the tty - and clobbered the prompt. Some errors still allowed through. + * Prevent child/background processes from spamming the terminal except for + certain errors. Clears up the mistaken appearance that the command didn't + end and return to the prompt, when really it was just that a background + process wrote to the tty and clobbered the foreground's prompt. + Some errors are still allowed through. -------------------------------------------------------------------------------- @@ -75,31 +83,31 @@ Changes to notify-action.sh below for why this is needed and how it works. * Refactor to avoid unecessary forks for external tools and subshells, - and optimize the code generally, aside from forks. - This replaced essentially everything. - Although the overall structure is still mostly the the same. + and optimize the code generally, aside from just forks. + This replaced essentially everything, although the overall structure is still + mostly the the same. Ship of theseus again. - * "setsid" to free ourself from the invoked action process so we can exit + * "setsid" to free ourself from the invoked action process so we can exit. - * Prevent child/bg processes from spamming the terminal except some errors. - Clears up the mistaken appearance that the command didn't end and return - to the prompt, whne really it was just that a bg process wrote to the tty - and clobbered the prompt. + * Prevent child/background processes from spamming the terminal, except for + certain errors. Clears up the mistaken appearance that the command didn't end + and return to the prompt, whne really it was just that a background process + wrote to the tty and clobbered the foreground's prompt. * Execute the action command directly instead of 'bash -c "command ..."' - You can specify a shell as the command if you need to, and this way you - get the shell of your choice with the flags of your choice, instead of "bash -c". + If you want to specify bash as the executable, you still can, but there + is no reason to hard code that. There is a bit to explain about the temp file and gdbus child process handling. The two sections, "kill obsolete monitors" and "kill current monitor" must orchestrate with each other, and with other instances of ourself. -Basically it's normal for our gdbus process to be killed from outside by another -instance of ourself, and it's likewise normal for us to have to kill other -instances of ourself. +Basically it's normal (expected, not an error) for our gdbus monitor process to +be killed from outside by another instance of ourself, and it's likewise normal +(expected, not an error) for us to have to kill other instances of ourself. === kill obsolete monitors === -This has to orchestrate with the "kill current monitor" section. +This part has to orchestrate with the "kill current monitor" section. It's not an error to find one or more old pid files, with or without matching processes still active. @@ -112,22 +120,22 @@ the notification may never expire. The converse is also true. The notification may be re-opened from the notification daemon's history, and so both action events and on-close -events can be sent multiple times, and sent after we have exited and are no -longer around to respond to them. +events can be sent multiple times. This means they can be sent after we have +exited and are no longer around to respond to them. Different desktop environments have different notification daemon programs which all behave differently from each other in various ways. And the --replace-id and --replace-file options for sending a new notification to update an existing notification means that often, one or more of these -existing monitor processes is now "obsolete" because we are replacing it. -But they have no way to know that their job is done and should exit. -They will never end gracefully on their own, because they are waiting -for something that never came, and now never will come (a dbus event matching -either a button press or a notification-close for the notification ID they are -watching). So every time we start up, before starting the new/current monitor, -we need to find any obsolete monitors and close them. +existing monitor processes is now obsolete(1), because this latest instance +of ourself is replacing it. +But those past instances of ourself have no way to know that their job is +done and they should exit. They will never end gracefully on their own, because +they are waiting for a dbus event that never came, and now never will come +So every time we start up, before starting the new/current monitor, +we need to first find any obsolete monitors and close them. -"Obsolete" is defined as matching all of the following criteria: +(1) "obsolete" is defined as matching all of the following criteria: * Pid file with the same APP_NAME as us @@ -154,15 +162,15 @@ we need to find any obsolete monitors and close them. They get re-used and are not unique over time. That means it's possible to pick up a pid file with a matching $DISPLAY, but really the pid is from some other past session rather than our current one. That's OK. - Any monitor from a logged out session is automatically and by definition - obsolete because it's an orphan. + Any monitor from a past session that was logged out and back in, is + automatically obsolete because it's an orphan. * Watching the same notification ID we are about to watch. The notification ID is recorded in the pid file along with PID and DISPLAY -If all of those are true at the same time for a given PID, +Only if ALL of those are true at the same time for a given PID, then that's a monitor we should kill because we are it's replacement. And when we kill it, remove the pid file *before* killing the PID. @@ -177,28 +185,35 @@ That PID either no longer exists, or if it exists, it's some other unrelated process that we should NOT kill. So here, remove the pid file before killing, so that it's impossible -for the related notify-action.sh to pick up an invalid PID and try to kill it. +for it's parent notify-action.sh to pick up an invalid PID and try to kill it. The first [[ -s file ]] catches the case when the globbing pattern -didn't match any files and the variable contains the globbing pattern itself. +didn't match any files and the variable ends up containing the globbing pattern. === kill current monitor === -This is already described above, but just to go over it from *this* parts -point of view... +This part is actually already described above, +but just to go over it from *this* parts point of view... This has to orchestrate with the "kill obsolete monitors" section. It's not an error if the pid file we know we wrote is missing. While we have been waiting for a dbus event which never came, another new instance of ourself may have started up, found our -pid file, and killed our gdbus child process. When that happens, -the while loop above ends and we fall through to here, +pid file, and killed our gdbus child process. + +When that happens, the while loop ends and we fall through to here, and the pid file we wrote will be missing. This is intentional. -When the gdbus process is killed, the PID we wrote into the pid file -is no longer valid and we should NOT just indiscriminately -try to kill that PID any more, because some other random -unrelated process may now occupy that PID. So during "kill obsolete", -we remove the pid file before killing the pid, so that it's impossible -to pick up an invalid PID here. So here, if the file doesn't exist, -just exit without error. +(it won't always be missing, just that it's expected that it might or +might not exist) When the gdbus process was killed, the PID we wrote +into the pid file is no longer valid and we should NOT just indiscriminately +try to kill that PID any more, because some other random unrelated new +process may now occupy that PID. So during "kill obsolete", we remove the +pid file before killing the pid, so that it's impossible for us to pick up +an invalid PID here. +So here, if the file doesn't exist, just exit without error. + + +TODO: Can we make this more elegant by just sending a signal to the +other parent notify-action.sh process, and it traps the signal to exit +itself, and it's child gdbus process exits itself naturally on HUP? diff --git a/lib/notify_send/notify-action.sh b/lib/notify_send/notify-action.sh index eca35e23..a158d164 100755 --- a/lib/notify_send/notify-action.sh +++ b/lib/notify_send/notify-action.sh @@ -1,28 +1,27 @@ -#!/bin/bash -# 20200520 b.kenyon.w@gmail.com -# This is a complete re-write of notify-action.sh from -# https://github.com/vlevit/notify-send.sh -# for https://github.com/bkw777/mainline -# See mainline_changes.txt before changing "kill obsolete" or "kill current" +#!/usr/bin/env bash +# part of https://github.com/bkw777/notify-send.sh SELF=${0##*/} TMP=${XDG_RUNTIME_DIR:-/tmp} ${DEBUG_NOTIFY_SEND:=false} && { - exec 2>"${TMP}/.${SELF}.${$}.e" + e="${TMP}/.${SELF}.${$}.e" + echo "$0 debug logging to $e" >&2 + exec 2>"$e" set -x + ARGV=("$0" "$@") trap "set >&2" 0 } SEND_SH=${0%/*}/notify-send.sh -GDBUS_PIDF=${TMP}/${APP_NAME:=${SELF}}.${$}.p -GDBUS_ARGS=(monitor --session --dest org.freedesktop.Notifications --object-path /org/freedesktop/Notifications) +GDBUS_PIDFILE=${TMP}/${APP_NAME:=${SELF}}.${$}.p +GDBUS_MONITOR="monitor --session --dest org.freedesktop.Notifications --object-path /org/freedesktop/Notifications" -abrt () { echo "${SELF}: ${@}" >&2 ; exit 1 ; } +abrt () { echo "${SELF}: $@" >&2 ; exit 1 ; } # consume the command line typeset -i ID="$1" ;shift -((ID>0)) || abrt "no notification id" -declare -A a ;while (($#)) ;do a[$1]=$2 ;shift 2 ;done +((ID)) || abrt "no notification id" +typeset -A a ;while (($#)) ;do a[$1]=$2 ;shift 2 ;done ((${#a[@]})) || abrt "no actions" [[ "${DISPLAY}" ]] || abrt "no DISPLAY" @@ -31,12 +30,12 @@ set +H shopt -s extglob # kill obsolete monitors (now) -echo -n "${DISPLAY} ${ID} " > "${GDBUS_PIDF}" +echo -n "${DISPLAY} ${ID} " > "${GDBUS_PIDFILE}" for f in ${TMP}/${APP_NAME}.+([0-9]).p ;do [[ -s $f ]] || continue - [[ $f -ot ${GDBUS_PIDF} ]] || continue - read d i p x < "$f" - [[ $d == ${DISPLAY} ]] || continue + [[ $f -ot ${GDBUS_PIDFILE} ]] || continue + read d i p x < $f + [[ "$d" == "${DISPLAY}" ]] || continue ((i==ID)) || continue ((p>1)) || continue rm -f "$f" @@ -47,24 +46,25 @@ done trap "conclude" 0 conclude () { ${DEBUG_NOTIFY_SEND} && set >&2 - [[ -s ${GDBUS_PIDF} ]] || exit 0 - read d i p x < "${GDBUS_PIDF}" - rm -f "${GDBUS_PIDF}" + [[ -s ${GDBUS_PIDFILE} ]] || exit 0 + read d i p x < "${GDBUS_PIDFILE}" + rm -f "${GDBUS_PIDFILE}" ((p>1)) || exit kill $p } # execute an invoked command doit () { - setsid -f ${a[$1]} >&- 2>&- <&- + setsid -f ${a[${1}]} >&- 2>&- <&- & ${EXPLICIT_CLOSE:-false} && "${SEND_SH}" -s ${ID} } # start the monitor { - gdbus ${GDBUS_ARGS[@]} & echo $! >> "${GDBUS_PIDF}" + gdbus ${GDBUS_MONITOR} & echo ${!} >> "${GDBUS_PIDFILE}" } |while IFS=" :.(),'" read x x x x e x i x k x ;do ((i==ID)) || continue + ${DEBUG_NOTIFY_SEND} && printf 'event="%s" key="%s"\n' "$e" "$k" >&2 case "$e" in "NotificationClosed") doit "close" ;; "ActionInvoked") doit "$k" ;; diff --git a/lib/notify_send/notify-send.sh b/lib/notify_send/notify-send.sh index 0060c7f1..fbaee64b 100755 --- a/lib/notify_send/notify-send.sh +++ b/lib/notify_send/notify-send.sh @@ -1,12 +1,7 @@ -#!/bin/bash - -# notify-send.sh - drop-in replacement for notify-send with more features -# Copyright (C) 2015-2020 notify-send.sh authors (see AUTHORS file) - -# 20200520 b.kenyon.w@gmail.com -# Originally from https://github.com/vlevit/notify-send.sh -# This copy is significantly re-written for https://github.com/bkw777/mainline -# See mainline_changes.txt +#!/usr/bin/env bash +# notify-send.sh - replacement for notify-send with more features +# Copyright (C) 2015-2023 notify-send.sh authors (see AUTHORS file) +# https://github.com/bkw777/notify-send.sh # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -21,20 +16,23 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . -# Desktop Notifications Specification -# https://developer.gnome.org/notification-spec/ +# reference +# https://specifications.freedesktop.org/notification-spec/notification-spec-latest.html SELF=${0##*/} TMP=${XDG_RUNTIME_DIR:-/tmp} ${DEBUG_NOTIFY_SEND:=false} && { - exec 2>${TMP}/.${SELF}.${$}.e + e="${TMP}/.${SELF}.${$}.e" + echo "$0 debug logging to $e" >&2 + exec 2>"$e" set -x + ARGV=("$0" "$@") trap "set >&2" 0 } -VERSION="1.1-bkw777" +VERSION="1.2-bkw777" ACTION_SH=${0%/*}/notify-action.sh -NOTIFY_ARGS=(--session --dest org.freedesktop.Notifications --object-path /org/freedesktop/Notifications) +GDBUS_CALL=(call --session --dest org.freedesktop.Notifications --object-path /org/freedesktop/Notifications) typeset -i i=0 ID=0 EXPIRE_TIME=-1 URGENCY=1 unset ID_FILE @@ -50,6 +48,21 @@ positional=false summary_set=false _r= +typeset -Ar HINT_TYPES=( + [action-icons]=boolean + [category]=string + [desktop-entry]=string + [image-path]=string + [resident]=boolean + [sound-file]=string + [sound-name]=string + [suppress-sound]=boolean + [transient]=boolean + [x]=int32 + [y]=int32 + [urgency]=byte +) + help () { cat <&2 ; exit 1 ; } notify_close () { - i=$2 ;((i>0)) && sleep ${i:0:-3}.${i:$((${#i}-3))} - gdbus call ${NOTIFY_ARGS[@]} --method org.freedesktop.Notifications.CloseNotification "$1" >&- + i=$2 ;((i)) && sleep ${i:0:-3}.${i:$((${#i}-3))} + gdbus ${GDBUS_CALL[@]} --method org.freedesktop.Notifications.CloseNotification -- "$1" >&- } process_urgency () { @@ -97,41 +110,38 @@ process_urgency () { process_category () { local a c ;IFS=, a=($1) for c in "${a[@]}"; do - make_hint string category "$c" && HINTS+=(${_r}) + make_hint category "$c" && HINTS+=(${_r}) done } make_hint () { - _r= ;local t=$1 n=$2 c=$3 - [[ $t =~ ^(byte|int32|double|string)$ ]] || abrt "Hint types: byte int32 double string" - [[ $t == string ]] && c="\"${3}\"" - _r="\"${n}\":<${t} ${c}>" + _r= ;local n=$1 v=$2 t=${HINT_TYPES[$1]:-${3,,}} + [[ $t = string ]] && v="\"$v\"" + _r="\"$n\":<$t $v>" } process_hint () { local a ;IFS=: a=($1) - ((${#a[@]}==3)) || abrt "Hint syntax: \"TYPE:NAME:VALUE\"" - make_hint "${a[0]}" "${a[1]}" "${a[2]}" && HINTS+=(${_r}) + ((${#a[@]}==2 || ${#a[@]}==3)) || abrt "Hint syntax: \"NAME:VALUE[:TYPE]\"" + make_hint "${a[0]}" "${a[1]}" ${a[2]} && HINTS+=(${_r}) } process_action () { local a k ;IFS=: a=($1) ((${#a[@]}==2)) || abrt "Action syntax: \"NAME:COMMAND\"" k=${#AKEYS[@]} - AKEYS+=("\"${k}\",\"${a[0]}\"") - ACMDS+=("${k}" "${a[1]}") + AKEYS+=("\"$k\",\"${a[0]}\"") + ACMDS+=("$k" "${a[1]}") } -# key=default: key:command and key:label, with empty label -# key=close: key:command, no key:label (no button for the on-close event) +# key=close: key:command, no key:label process_special_action () { - [[ $2 ]] || abrt "Command must not be empty" - [[ $1 != close ]] && AKEYS+=("\"${1}\",\"\"") + [[ "$2" ]] || abrt "Command must not be empty" ACMDS+=("$1" "$2") } process_posargs () { - [[ $1 == -* ]] && ! ${positional} && abrt "Unknown option $1" + [[ "$1" = -* ]] && ! ${positional} && abrt "Unknown option $1" ${summary_set} && BODY=$1 || SUMMARY=$1 summary_set=true } @@ -147,56 +157,52 @@ while (($#)) ; do exit 0 ;; -u|--urgency|--urgency=*) - [[ $1 == --urgency=* ]] && s=${1#*=} || { shift ;s=$1 ; } - process_urgency "${s}" + [[ "$1" = --urgency=* ]] && s=${1#*=} || { shift ;s=$1 ; } + process_urgency "$s" ;; -t|--expire-time|--expire-time=*) - [[ $1 == --expire-time=* ]] && EXPIRE_TIME=${1#*=} || { shift ;EXPIRE_TIME=$1 ; } + [[ "$1" = --expire-time=* ]] && EXPIRE_TIME=${1#*=} || { shift ;EXPIRE_TIME=$1 ; } ;; - -f|--force-expire) - export EXPLICIT_CLOSE=true # only export if explicitly set + -f|--force-expire|--explicit-close) + export EXPLICIT_CLOSE=true ;; -a|--app-name|--app-name=*) - [[ $1 == --app-name=* ]] && APP_NAME=${1#*=} || { shift ;APP_NAME=$1 ; } - export APP_NAME # only export if explicitly set + [[ "$1" = --app-name=* ]] && APP_NAME=${1#*=} || { shift ;APP_NAME=$1 ; } + export APP_NAME ;; -i|--icon|--icon=*) - [[ $1 == --icon=* ]] && ICON=${1#*=} || { shift ;ICON=$1 ; } + [[ "$1" = --icon=* ]] && ICON=${1#*=} || { shift ;ICON=$1 ; } ;; -c|--category|--category=*) - [[ $1 == --category=* ]] && s=${1#*=} || { shift ;s=$1 ; } + [[ "$1" = --category=* ]] && s=${1#*=} || { shift ;s=$1 ; } process_category "$s" ;; -h|--hint|--hint=*) - [[ $1 == --hint=* ]] && s=${1#*=} || { shift ;s=$1 ; } + [[ "$1" = --hint=* ]] && s=${1#*=} || { shift ;s=$1 ; } process_hint "$s" ;; -o|--action|--action=*) - [[ $1 == --action=* ]] && s=${1#*=} || { shift ;s=$1 ; } + [[ "$1" == --action=* ]] && s=${1#*=} || { shift ;s=$1 ; } process_action "$s" ;; - -d|--default-action|--default-action=*) - [[ $1 == --default-action=* ]] && s=${1#*=} || { shift ;s=$1 ; } - process_special_action default "$s" - ;; -l|--close-action|--close-action=*) - [[ $1 == --close-action=* ]] && s=${1#*=} || { shift ;s=$1 ; } + [[ "$1" == --close-action=* ]] && s=${1#*=} || { shift ;s=$1 ; } process_special_action close "$s" ;; -p|--print-id) PRINT_ID=true ;; -r|--replace|--replace=*) - [[ $1 == --replace=* ]] && ID=${1#*=} || { shift ;ID=$1 ; } + [[ "$1" = --replace=* ]] && ID=${1#*=} || { shift ;ID=$1 ; } ;; -R|--replace-file|--replace-file=*) - [[ $1 == --replace-file=* ]] && ID_FILE=${1#*=} || { shift ;ID_FILE=$1 ; } + [[ "$1" = --replace-file=* ]] && ID_FILE=${1#*=} || { shift ;ID_FILE=$1 ; } [[ -s ${ID_FILE} ]] && read ID < "${ID_FILE}" ;; -s|--close|--close=*) - [[ $1 == --close=* ]] && i=${1#*=} || { shift ;i=$1 ; } - ((i<1)) && ((ID>0)) && i=${ID} - ((i>0)) && notify_close $i ${EXPIRE_TIME} + [[ "$1" = --close=* ]] && i=${1#*=} || { shift ;i=$1 ; } + ((i<1)) && ((ID)) && i=${ID} + ((i)) && notify_close $i ${EXPIRE_TIME} exit $? ;; --) @@ -211,25 +217,24 @@ done # build the actions & hints strings a= ;for s in "${AKEYS[@]}" ;do a+=,$s ;done ;a=${a:1} -make_hint byte urgency "${URGENCY}" ;h=${_r} +make_hint urgency "${URGENCY}" ;h=${_r} for s in "${HINTS[@]}" ;do h+=,$s ;done # send the dbus message, collect the notification ID typeset -i OLD_ID=${ID} NEW_ID=0 -s=$(gdbus call ${NOTIFY_ARGS[@]} \ - --method org.freedesktop.Notifications.Notify \ +s=$(gdbus ${GDBUS_CALL[@]} --method org.freedesktop.Notifications.Notify -- \ "${APP_NAME}" ${ID} "${ICON}" "${SUMMARY}" "${BODY}" \ - "[$a]" "{$h}" "int32 ${EXPIRE_TIME}") + "[$a]" "{$h}" "${EXPIRE_TIME}") # process the ID s=${s%,*} NEW_ID=${s#* } -((NEW_ID>0)) || abrt "invalid notification ID from gdbus" -((OLD_ID>0)) || ID=${NEW_ID} +((NEW_ID)) || abrt "invalid notification ID from gdbus" +((OLD_ID)) || ID=${NEW_ID} [[ "${ID_FILE}" ]] && ((OLD_ID<1)) && echo ${ID} > "${ID_FILE}" ${PRINT_ID} && echo ${ID} # bg task to monitor dbus and perform the actions -((${#ACMDS[@]}>0)) && setsid -f "${ACTION_SH}" ${ID} "${ACMDS[@]}" 2>&- >&- <&- +((${#ACMDS[@]})) && setsid -f "${ACTION_SH}" ${ID} "${ACMDS[@]}" >&- 2>&- & # bg task to wait expire time and then actively close notification -${EXPLICIT_CLOSE} && ((EXPIRE_TIME>0)) && setsid -f $0 -t ${EXPIRE_TIME} -s ${ID} 2>&- >&- <&- +${EXPLICIT_CLOSE} && ((EXPIRE_TIME)) && setsid -f "$0" -t ${EXPIRE_TIME} -s ${ID} >&- 2>&- <&- & diff --git a/po/de.po b/po/de.po index 653ac296..b9073cb4 100644 --- a/po/de.po +++ b/po/de.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-26 02:02-0400\n" +"POT-Creation-Date: 2023-06-27 05:46-0400\n" "PO-Revision-Date: 2023-02-20 18:40+0100\n" "Last-Translator: Marvin Meysel \n" "Language-Team: German\n" @@ -241,11 +241,11 @@ msgid "" msgstr "" "Diese Datei wird überschrieben und erneut ausgeführt, wenn Einstellungen in" -#: src/Common/Main.vala:430 +#: src/Common/Main.vala:431 msgid "Notifications are disabled" msgstr "Benachrichtigungen sind deaktiviert" -#: src/Common/Main.vala:483 +#: src/Common/Main.vala:484 msgid "Can not reach site" msgstr "Fehler beim lesen der Datei" diff --git a/po/el.po b/po/el.po index 2eff3737..c4911740 100644 --- a/po/el.po +++ b/po/el.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-26 02:02-0400\n" +"POT-Creation-Date: 2023-06-27 05:46-0400\n" "PO-Revision-Date: 2023-01-10 02:03-0600\n" "Last-Translator: Vasilis Kosmidis \n" "Language-Team: Greek\n" @@ -242,11 +242,11 @@ msgstr "" "Αυτό το αρχείο αντικαθίσταται και εκτελείται ξανά κάθε φορά που " "αποθηκεύονται οι ρυθμίσεις στο" -#: src/Common/Main.vala:430 +#: src/Common/Main.vala:431 msgid "Notifications are disabled" msgstr "Οι ειδοποιήσεις είναι απενεργοποιημένες" -#: src/Common/Main.vala:483 +#: src/Common/Main.vala:484 msgid "Can not reach site" msgstr "Αποτυχία ανάγνωσης του αρχείου" diff --git a/po/es.po b/po/es.po index 60d47a17..794fd23d 100644 --- a/po/es.po +++ b/po/es.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-26 02:02-0400\n" +"POT-Creation-Date: 2023-06-27 05:46-0400\n" "PO-Revision-Date: 2018-01-03 02:03-0600\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish\n" @@ -242,11 +242,11 @@ msgstr "" "Este archivo se sobrescribe y se ejecuta de nuevo cada vez que se guarda la " "configuración en" -#: src/Common/Main.vala:430 +#: src/Common/Main.vala:431 msgid "Notifications are disabled" msgstr "Las notificaciones están deshabilitadas" -#: src/Common/Main.vala:483 +#: src/Common/Main.vala:484 msgid "Can not reach site" msgstr "No se puede llegar al sitio" diff --git a/po/fr.po b/po/fr.po index b21c414f..84b03671 100644 --- a/po/fr.po +++ b/po/fr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-26 02:02-0400\n" +"POT-Creation-Date: 2023-06-27 05:46-0400\n" "PO-Revision-Date: 2018-08-05 15:50+0200\n" "Last-Translator: Yolateng0 \n" "Language-Team: French\n" @@ -242,11 +242,11 @@ msgstr "" "Ce fichier est écrasé et exécuté à nouveau chaque fois que les paramètres " "sont enregistrés dans" -#: src/Common/Main.vala:430 +#: src/Common/Main.vala:431 msgid "Notifications are disabled" msgstr "Les notifications sont désactivées" -#: src/Common/Main.vala:483 +#: src/Common/Main.vala:484 msgid "Can not reach site" msgstr "No se puede llegar al sitio" diff --git a/po/hr.po b/po/hr.po index 5a143662..079ad5a3 100644 --- a/po/hr.po +++ b/po/hr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-26 02:02-0400\n" +"POT-Creation-Date: 2023-06-27 05:46-0400\n" "PO-Revision-Date: 2022-09-22 12:13+0200\n" "Last-Translator: gogo \n" "Language-Team: Croatian\n" @@ -241,11 +241,11 @@ msgid "" msgstr "" "Ova se datoteka prepisuje i ponovno izvršava kad god se postavke spremaju u" -#: src/Common/Main.vala:430 +#: src/Common/Main.vala:431 msgid "Notifications are disabled" msgstr "Obavijesti su onemogućene" -#: src/Common/Main.vala:483 +#: src/Common/Main.vala:484 msgid "Can not reach site" msgstr "Nije moguće doći do web-mjesta" diff --git a/po/it.po b/po/it.po index 9a0d7982..b6c08e11 100644 --- a/po/it.po +++ b/po/it.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-26 02:02-0400\n" +"POT-Creation-Date: 2023-06-27 05:46-0400\n" "PO-Revision-Date: 2020-08-22 15:35+0100\n" "Last-Translator: Demetrio Mendozzi\n" "Language-Team: Italian\n" @@ -240,11 +240,11 @@ msgstr "" "Questo file viene sovrascritto ed eseguito nuovamente ogni volta che vengono " "salvate le impostazioni" -#: src/Common/Main.vala:430 +#: src/Common/Main.vala:431 msgid "Notifications are disabled" msgstr "Le notifiche sono disabilitate" -#: src/Common/Main.vala:483 +#: src/Common/Main.vala:484 msgid "Can not reach site" msgstr "Impossibile raggiungere il sito" diff --git a/po/ko.po b/po/ko.po index 5bbc3f11..b0a58acb 100644 --- a/po/ko.po +++ b/po/ko.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-26 02:02-0400\n" +"POT-Creation-Date: 2023-06-27 05:46-0400\n" "PO-Revision-Date: 2022-09-28 11:48+0900\n" "Last-Translator: Kevin Kim \n" "Language-Team: Korean\n" @@ -240,11 +240,11 @@ msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "이 파일은 덮어쓰고 설정이 저장될 때마다 다시 실행됩니다." -#: src/Common/Main.vala:430 +#: src/Common/Main.vala:431 msgid "Notifications are disabled" msgstr "알림이 비활성화 되었습니다" -#: src/Common/Main.vala:483 +#: src/Common/Main.vala:484 msgid "Can not reach site" msgstr "사이트에 도달 할 수 없습니다" diff --git a/po/messages.pot b/po/messages.pot index f94ed97a..fc41d804 100644 --- a/po/messages.pot +++ b/po/messages.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline 1.3.20\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-26 04:08-0400\n" +"POT-Creation-Date: 2023-06-27 05:57-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -232,11 +232,11 @@ msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" -#: src/Common/Main.vala:430 +#: src/Common/Main.vala:431 msgid "Notifications are disabled" msgstr "" -#: src/Common/Main.vala:483 +#: src/Common/Main.vala:484 msgid "Can not reach site" msgstr "" diff --git a/po/nl.po b/po/nl.po index 59c65f97..365dde49 100644 --- a/po/nl.po +++ b/po/nl.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-26 02:02-0400\n" +"POT-Creation-Date: 2023-06-27 05:46-0400\n" "PO-Revision-Date: 2020-08-23 13:55+0200\n" "Last-Translator: Heimen Stoffels \n" "Language-Team: Dutch (Netherlands)\n" @@ -242,11 +242,11 @@ msgstr "" "Dit bestand wordt overschreven en opnieuw uitgevoerd wanneer instellingen " "worden opgeslagen in" -#: src/Common/Main.vala:430 +#: src/Common/Main.vala:431 msgid "Notifications are disabled" msgstr "Meldingen zijn uitgeschakeld" -#: src/Common/Main.vala:483 +#: src/Common/Main.vala:484 msgid "Can not reach site" msgstr "Kan de site niet bereiken" diff --git a/po/pl.po b/po/pl.po index 33f3965e..0082dd49 100644 --- a/po/pl.po +++ b/po/pl.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-26 02:02-0400\n" +"POT-Creation-Date: 2023-06-27 05:46-0400\n" "PO-Revision-Date: 2023-06-21 01:02+0200\n" "Last-Translator: Matthaiks\n" "Language-Team: Polish\n" @@ -230,11 +230,11 @@ msgstr "" "Ten plik jest nadpisywany i wykonywany ponownie za każdym razem, gdy " "ustawienia są zapisywane w" -#: src/Common/Main.vala:430 +#: src/Common/Main.vala:431 msgid "Notifications are disabled" msgstr "Powiadomienia są wyłączone" -#: src/Common/Main.vala:483 +#: src/Common/Main.vala:484 msgid "Can not reach site" msgstr "Nie można dotrzeć do witryny" diff --git a/po/ru.po b/po/ru.po index 79f64678..166131b2 100644 --- a/po/ru.po +++ b/po/ru.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-26 02:02-0400\n" +"POT-Creation-Date: 2023-06-27 05:46-0400\n" "PO-Revision-Date: 2023-06-24 16:38+0300\n" "Last-Translator: Danik2343 \n" "Language-Team: Russian\n" @@ -229,11 +229,11 @@ msgid "" msgstr "" "Этот файл перезаписывается и выполняется снова при сохранении настроек в" -#: src/Common/Main.vala:430 +#: src/Common/Main.vala:431 msgid "Notifications are disabled" msgstr "Уведомления отключены" -#: src/Common/Main.vala:483 +#: src/Common/Main.vala:484 msgid "Can not reach site" msgstr "Не удается связаться с сайтом" diff --git a/po/sv.po b/po/sv.po index 58e24710..1446827d 100644 --- a/po/sv.po +++ b/po/sv.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-26 02:02-0400\n" +"POT-Creation-Date: 2023-06-27 05:46-0400\n" "PO-Revision-Date: 2018-01-13 16:56+0100\n" "Last-Translator: Åke Engelbrektson \n" "Language-Team:Swedish\n" @@ -240,11 +240,11 @@ msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "Den här filen skrivs över och körs igen när inställningar sparas i" -#: src/Common/Main.vala:430 +#: src/Common/Main.vala:431 msgid "Notifications are disabled" msgstr "Meddelanden är inaktiverade" -#: src/Common/Main.vala:483 +#: src/Common/Main.vala:484 msgid "Can not reach site" msgstr "Kan inte nå webbplatsen" diff --git a/po/tr.po b/po/tr.po index a1cc1dbe..0d60aea8 100644 --- a/po/tr.po +++ b/po/tr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-26 02:02-0400\n" +"POT-Creation-Date: 2023-06-27 05:46-0400\n" "PO-Revision-Date: 2022-08-06 16:48+0300\n" "Last-Translator: Sabri Ünal \n" "Language-Team: Turkish\n" @@ -241,11 +241,11 @@ msgid "" msgstr "" "Bu dosyanın üzerine yazılır ve ayarlar her kaydedildiğinde yeniden yürütülür" -#: src/Common/Main.vala:430 +#: src/Common/Main.vala:431 msgid "Notifications are disabled" msgstr "Bildirimler devre dışı bırakılmış" -#: src/Common/Main.vala:483 +#: src/Common/Main.vala:484 msgid "Can not reach site" msgstr "Siteye ulaşılamıyor" diff --git a/po/uk.po b/po/uk.po index f40cf71c..6d82286a 100644 --- a/po/uk.po +++ b/po/uk.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-26 02:02-0400\n" +"POT-Creation-Date: 2023-06-27 05:46-0400\n" "PO-Revision-Date: 2019-07-25 11:00+0300\n" "Last-Translator: Serhii Golovko \n" "Language-Team: Ukranian\n" @@ -229,11 +229,11 @@ msgid "" msgstr "" "Цей файл перезаписується та виконується знову під час збереження налаштувань" -#: src/Common/Main.vala:430 +#: src/Common/Main.vala:431 msgid "Notifications are disabled" msgstr "Повідомлення вимкнено" -#: src/Common/Main.vala:483 +#: src/Common/Main.vala:484 msgid "Can not reach site" msgstr "Не вдається дістатися до сайту" diff --git a/src/Common/Main.vala b/src/Common/Main.vala index fca1f306..34717aeb 100644 --- a/src/Common/Main.vala +++ b/src/Common/Main.vala @@ -419,8 +419,9 @@ public class Main : GLib.Object { + "\n" + "# run whatever the new state should be\n"; if (notify_minor || notify_major) { - s += "while [[ -f $F ]] ;do\n" - + "\tVERBOSE=0 "+BRANDING_SHORTNAME+" --notify 2>&- >&- || exit\n" + s += "VERBOSE=0\n" + + "while [[ -f $F ]] ;do\n" + + "\t"+BRANDING_SHORTNAME+" --notify 2>&- >&- || exit\n" + "\tsleep %d%s &\n".printf(n,u) + "\tc=$!\n" + "\techo $c >>${F}_\n" diff --git a/src/Common/OSDNotify.vala b/src/Common/OSDNotify.vala index de5ccd39..4f6dc84e 100644 --- a/src/Common/OSDNotify.vala +++ b/src/Common/OSDNotify.vala @@ -44,26 +44,22 @@ public class OSDNotify : GLib.Object { if (seconds > MIN_NOTIFICATION_INTERVAL) { - string s = - APP_LIB_DIR+"/notify_send/notify-send.sh" - + " -R "+App.NOTIFICATION_ID_FILE - + " -u low" - + " -c info" - + " -a "+BRANDING_SHORTNAME - + " -i "+BRANDING_SHORTNAME - + " -t 0" - + " -f " - ; - - if (close_action != "") s += " -l \""+close_action+"\""; - - foreach (string a in actions) s += " -o \""+a+"\""; - - s += " \""+summary+"\"" - + " \""+body+"\"" - ; - - vprint(s,2); + string s = APP_LIB_DIR+"/notify_send/notify-send.sh" + + " --replace-file=\""+App.NOTIFICATION_ID_FILE+"\"" + + " --urgency=low" + + " --category=info" + + " --app-name="+BRANDING_SHORTNAME + + " --icon="+BRANDING_SHORTNAME + + " --expire-time=0" + + " --force-expire" + ; + + if (close_action != "") s += " --close-action=\""+close_action+"\""; + + foreach (string a in actions) s += " --action=\""+a+"\""; + + s += " \""+summary+"\" \""+body+"\""; + exec_async(s); dt_last_notification = new DateTime.now_local(); From 004b539ec85213422277a0252d1ab2ca75b37730 Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Tue, 27 Jun 2023 06:48:04 -0400 Subject: [PATCH 464/567] fix sed in Makefile --- Makefile | 14 +++++++------- README.md | 8 ++++---- README.md.src | 2 +- 3 files changed, 12 insertions(+), 12 deletions(-) diff --git a/Makefile b/Makefile index 0cc62919..3c377875 100644 --- a/Makefile +++ b/Makefile @@ -96,13 +96,13 @@ $(BRANDING_SHORTNAME)-gtk: $(misc_files) $(common_vala_files) $(gui_vala_files) $(common_vala_files) $(gui_vala_files) -o $(@) $(misc_files): %: %.src BRANDING.mak - sed 's|BRANDING_SHORTNAME|$(BRANDING_SHORTNAME)|g' \ - ';s|BRANDING_LONGNAME|$(BRANDING_LONGNAME)|g' \ - ';s|BRANDING_AUTHORNAME|$(BRANDING_AUTHORNAME)|g' \ - ';s|BRANDING_AUTHOREMAIL|$(BRANDING_AUTHOREMAIL)|g' \ - ';s|BRANDING_WEBSITE|$(BRANDING_WEBSITE)|g' \ - ';s|BRANDING_VERSION|$(BRANDING_VERSION)|g' \ - ';s|BRANDING_GITREPO|$(BRANDING_GITREPO)|g' \ + sed -e 's|BRANDING_SHORTNAME|$(BRANDING_SHORTNAME)|g' \ + -e 's|BRANDING_LONGNAME|$(BRANDING_LONGNAME)|g' \ + -e 's|BRANDING_AUTHORNAME|$(BRANDING_AUTHORNAME)|g' \ + -e 's|BRANDING_AUTHOREMAIL|$(BRANDING_AUTHOREMAIL)|g' \ + -e 's|BRANDING_WEBSITE|$(BRANDING_WEBSITE)|g' \ + -e 's|BRANDING_VERSION|$(BRANDING_VERSION)|g' \ + -e 's|BRANDING_GITREPO|$(BRANDING_GITREPO)|g' \ $(@).src >$(@) $(pot_file): $(common_vala_files) $(tui_vala_files) $(gui_vala_files) diff --git a/README.md b/README.md index 8ec1343d..5e7a7772 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# BRANDING_LONGNAME +# Mainline Kernels A tool for installing [Ubuntu Mainline Kernel Builds](https://wiki.ubuntu.com/Kernel/MainlineBuilds) onto debian-based distributions. ![Main window screenshot](main_window.png) @@ -69,14 +69,14 @@ There are also .deb packages in [releases](../../releases/latest), generated by # Build ``` sudo apt install libgee-0.8-dev libjson-glib-dev libvte-2.91-dev valac aria2 lsb-release make gettext dpkg-dev -git clone BRANDING_GITREPO +git clone https://github.com/bkw777/mainline.git cd mainline make sudo make install ``` # Usage -Look for System -> BRANDING_LONGNAME in your desktop's Applications/Start menu. +Look for System -> Mainline Kernels in your desktop's Applications/Start menu. Otherwise: CLI @@ -163,7 +163,7 @@ Sorting on the "Notes" column is a way to see all kernels that have any notes to Debugging notifications: `DEBUG_NOTIFY_SEND=true VERBOSE=3 mainline --notify` - Then `ls -l ${XDG_RUNTIME_DIR:-/tmp}/*.e` + Then find the logs here `ls -al ${XDG_RUNTIME_DIR:-/tmp}/.*.e` * If **Uninstall Old** doesn't remove some distribution kernel packages Use your normal package manager like apt or synaptic to remove the parent meta-package: diff --git a/README.md.src b/README.md.src index 8d0ee6a6..d79566a8 100644 --- a/README.md.src +++ b/README.md.src @@ -163,7 +163,7 @@ Sorting on the "Notes" column is a way to see all kernels that have any notes to Debugging notifications: `DEBUG_NOTIFY_SEND=true VERBOSE=3 BRANDING_SHORTNAME --notify` - Then `ls -l ${XDG_RUNTIME_DIR:-/tmp}/*.e` + Then find the logs here `ls -al ${XDG_RUNTIME_DIR:-/tmp}/.*.e` * If **Uninstall Old** doesn't remove some distribution kernel packages Use your normal package manager like apt or synaptic to remove the parent meta-package: From 3e6c3c8c314c2d8bb735aafa740de8618e12cd9a Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Tue, 27 Jun 2023 06:59:33 -0400 Subject: [PATCH 465/567] version --- BRANDING.mak | 2 +- debian/changelog | 6 ++++++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/BRANDING.mak b/BRANDING.mak index 3cfb6f6b..ee0b1518 100644 --- a/BRANDING.mak +++ b/BRANDING.mak @@ -3,7 +3,7 @@ VERSION_MAJOR = 1 VERSION_MINOR = 3 -VERSION_MICRO = 20 +VERSION_MICRO = 21 BRANDING_SHORTNAME = mainline BRANDING_LONGNAME = Mainline Kernels BRANDING_AUTHORNAME = Brian K. White diff --git a/debian/changelog b/debian/changelog index 735442da..1db19481 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +mainline (1.3.21) UNRELEASED; urgency=medium + + * update notify-send.sh + + -- Brian K. White Tue, 27 Jun 2023 06:57:35 -0400 + mainline (1.3.20) unstable; urgency=medium * add support for external terminal programs From 495279954ed0bc5462af33a3c1f1d0645106e0bc Mon Sep 17 00:00:00 2001 From: cappelikan Date: Tue, 27 Jun 2023 17:11:31 +0300 Subject: [PATCH 466/567] Update uk.po --- po/uk.po | 53 ++++++++++++++++++++++++++++++++++++++--------------- 1 file changed, 38 insertions(+), 15 deletions(-) diff --git a/po/uk.po b/po/uk.po index 6d82286a..d9a91294 100644 --- a/po/uk.po +++ b/po/uk.po @@ -239,7 +239,7 @@ msgstr "Не вдається дістатися до сайту" #: src/Console/AppConsole.vala:29 msgid "install kernel packages from kernel.ubuntu.com" -msgstr "" +msgstr "встановити пакети ядра з kernel.ubuntu.com" #: src/Console/AppConsole.vala:31 src/Gtk/AppGtk.vala:54 msgid "Syntax" @@ -254,14 +254,12 @@ msgid "Check for kernel updates" msgstr "Перевірити оновлення ядра" #: src/Console/AppConsole.vala:36 -#, fuzzy msgid "Check for kernel updates and send a desktop notification" -msgstr "Перевірте наявність оновлень ядра та повідомте поточного користувача" +msgstr "Перевірте наявність оновлень ядра та надішліть сповіщення на робочий стіл" #: src/Console/AppConsole.vala:37 -#, fuzzy msgid "List available kernels" -msgstr "Список доступних основних ядер" +msgstr "Список доступних ядер" #: src/Console/AppConsole.vala:38 msgid "List installed kernels" @@ -297,7 +295,7 @@ msgstr "Видалити кешовану інформацію про досту #: src/Console/AppConsole.vala:46 msgid "This help" -msgstr "" +msgstr "Ця допомога" #: src/Console/AppConsole.vala:48 src/Gtk/AppGtk.vala:56 msgid "Options" @@ -321,18 +319,19 @@ msgstr "Так для всіх підказок (неінтерактивний #: src/Console/AppConsole.vala:54 msgid "Pause for keypress before exiting (for external terminal)" -msgstr "" +msgstr "Пауза для натискання клавіші перед виходом (для зовнішнього терміналу)" #: src/Console/AppConsole.vala:57 msgid "One or more version strings taken from the output of --list" msgstr "Один або кілька рядків версій, взятих із результату --list" #: src/Console/AppConsole.vala:58 -#, fuzzy msgid "" "comma, pipe, colon, or space seperated. (space requires quotes or " "backslashes)" -msgstr "розділені комою, вертикальною рискою, двокрапкою або лапками" +msgstr "" +"кома, вертикальна лінія, двокрапка або пробіл. (пробіл вимагає лапок або " +"зворотні косі риски)" #: src/Console/AppConsole.vala:59 msgid "Locked kernels and the currently running kernel are ignored" @@ -351,9 +350,8 @@ msgid "Error deleting" msgstr "Помилка видалення" #: src/Console/AppConsole.vala:214 -#, fuzzy msgid "Unknown command" -msgstr "Невідомий параметр" +msgstr "Невідома команда" #: src/Console/AppConsole.vala:225 msgid "Latest update" @@ -616,18 +614,25 @@ msgid "" "with the dpkg command, otherwise it will be appended to the end.\n" "See \"su -c\" in the drop down list for an example of that.\n" msgstr "" +"Команда, яка використовується для запуску dpkg із правами root.\n" +"\n" +"Якщо синтаксис командного рядка програм автентифікації вимагає, щоб команда виконання була " +"береться в лапки, а не просто додається в кінці команди" +"рядок, ви можете включити один %s у рядок, і він буде замінений " +"за допомогою команди dpkg, інакше її буде додано в кінець.\n" +"Див. \"su -c\" у розкривному списку для прикладу цього.\n" #: src/Gtk/SettingsDialog.vala:279 msgid "Terminal command used to run" -msgstr "" +msgstr "Команда терміналу, яка використовується для запуску" #: src/Gtk/SettingsDialog.vala:280 msgid "Example" -msgstr "" +msgstr "Приклад" #: src/Gtk/SettingsDialog.vala:280 msgid "will result in" -msgstr "" +msgstr "призведе до" #: src/Gtk/SettingsDialog.vala:282 #, c-format @@ -650,6 +655,23 @@ msgid "" "\n" "Edit the command to customize the appearance of the terminal." msgstr "" +"Якщо синтаксис командного рядка програм терміналу вимагає виконання команди " +"брати в лапки, а не просто додавати в кінці команди" +"рядок, ви можете включити один %s у рядок, і він буде замінений " +"за допомогою команди встановлення, інакше її буде додано в кінець.\n" +"Див. приклад mate-terminal у спадному списку.\n" +"\n" +"Ви можете написати будь-який командний рядок, але зазначена програма має залишитися" +"на передньому плані та блокувати під час виконання команди, а не fork і " +"повернути негайно.\n" +"Більшість термінальних програм працюють нормально за замовчуванням, але деякі вимагають спеціального " +"прапорці командного рядка, а деякі взагалі непридатні для використання.\n" +"\n" +"Приклади:\n" +"gnome-terminal можна заблокувати за допомогою параметра --wait.\n" +"xfce4-terminal неможливо заблокувати.\n" +"\n" +"Відредагуйте команду, щоб налаштувати зовнішній вигляд терміналу". #: src/Gtk/SettingsDialog.vala:299 msgid "Done" @@ -662,7 +684,8 @@ msgstr "Копія" #: src/Gtk/TerminalWindow.vala:138 msgid "" "Copies the entire output buffer, including scrollback, to the clipboard." -msgstr "Копіює весь вихідний буфер, включаючи прокручування, до буфера обміну." +msgstr "" +"Копіює весь вихідний буфер, включаючи прокручування, до буфера обміну." #: src/Gtk/TerminalWindow.vala:145 msgid "Cancel" From 4349bf28d41bf6f90fb6b8ffa8edd56a34242c72 Mon Sep 17 00:00:00 2001 From: Danik2343 <38865696+Danik2343@users.noreply.github.com> Date: Wed, 28 Jun 2023 00:09:47 +0300 Subject: [PATCH 467/567] Russian Language Update --- po/ru.po | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/po/ru.po b/po/ru.po index 166131b2..9282283f 100644 --- a/po/ru.po +++ b/po/ru.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-06-27 05:46-0400\n" -"PO-Revision-Date: 2023-06-24 16:38+0300\n" +"PO-Revision-Date: 2023-06-28 00:07+0300\n" "Last-Translator: Danik2343 \n" "Language-Team: Russian\n" "Language: ru\n" @@ -239,7 +239,7 @@ msgstr "Не удается связаться с сайтом" #: src/Console/AppConsole.vala:29 msgid "install kernel packages from kernel.ubuntu.com" -msgstr "" +msgstr "установить пакеты ядра с kernel.ubuntu.com" #: src/Console/AppConsole.vala:31 src/Gtk/AppGtk.vala:54 msgid "Syntax" @@ -254,14 +254,12 @@ msgid "Check for kernel updates" msgstr "Проверить обновления ядра" #: src/Console/AppConsole.vala:36 -#, fuzzy msgid "Check for kernel updates and send a desktop notification" -msgstr "Проверить обновления ядра и уведомить текущего пользователя" +msgstr "Проверка обновлений ядра и отправка уведомления на рабочий стол" #: src/Console/AppConsole.vala:37 -#, fuzzy msgid "List available kernels" -msgstr "Список доступных основных ядер" +msgstr "Список доступных ядер" #: src/Console/AppConsole.vala:38 msgid "List installed kernels" @@ -328,12 +326,12 @@ msgid "One or more version strings taken from the output of --list" msgstr "Одна или несколько строк версии, взятых из вывода --list" #: src/Console/AppConsole.vala:58 -#, fuzzy msgid "" "comma, pipe, colon, or space seperated. (space requires quotes or " "backslashes)" msgstr "" -"через запятую, вертикальную черту или двоеточие или через пробел в кавычках" +"через запятую, трубку, двоеточие или пробел. (пробел требует кавычек или " +"обратного слеша)" #: src/Console/AppConsole.vala:59 msgid "Locked kernels and the currently running kernel are ignored" From 7983b4dd80f20a68f8c639ca4286f241601b5ebc Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Wed, 28 Jun 2023 15:07:07 -0400 Subject: [PATCH 468/567] fix uk.po --- po/de.po | 90 ++++++++++++++++++------------------ po/el.po | 90 ++++++++++++++++++------------------ po/es.po | 90 ++++++++++++++++++------------------ po/fr.po | 90 ++++++++++++++++++------------------ po/hr.po | 90 ++++++++++++++++++------------------ po/it.po | 90 ++++++++++++++++++------------------ po/ko.po | 90 ++++++++++++++++++------------------ po/messages.pot | 92 ++++++++++++++++++------------------- po/nl.po | 90 ++++++++++++++++++------------------ po/pl.po | 90 ++++++++++++++++++------------------ po/ru.po | 90 ++++++++++++++++++------------------ po/sv.po | 90 ++++++++++++++++++------------------ po/tr.po | 90 ++++++++++++++++++------------------ po/uk.po | 2 +- src/Common/LinuxKernel.vala | 1 - 15 files changed, 587 insertions(+), 588 deletions(-) diff --git a/po/de.po b/po/de.po index b9073cb4..c98ce61a 100644 --- a/po/de.po +++ b/po/de.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-27 05:46-0400\n" +"POT-Creation-Date: 2023-06-28 15:01-0400\n" "PO-Revision-Date: 2023-02-20 18:40+0100\n" "Last-Translator: Marvin Meysel \n" "Language-Team: German\n" @@ -25,188 +25,188 @@ msgstr "Architektur" msgid "Running kernel" msgstr "Laufender kernel" -#: src/Common/LinuxKernel.vala:214 +#: src/Common/LinuxKernel.vala:213 msgid "loading cached" msgstr "laden gecached" -#: src/Common/LinuxKernel.vala:226 +#: src/Common/LinuxKernel.vala:225 msgid "queuing download" msgstr "download der warteschlange" -#: src/Common/LinuxKernel.vala:237 +#: src/Common/LinuxKernel.vala:236 msgid "Fetching individual kernel indexes" msgstr "Abrufen einzelner Kernel-Indizes" -#: src/Common/LinuxKernel.vala:252 +#: src/Common/LinuxKernel.vala:251 msgid "loading downloaded" msgstr "laden von heruntergeladenen Dateien" -#: src/Common/LinuxKernel.vala:291 +#: src/Common/LinuxKernel.vala:290 msgid "Updating from" msgstr "Aktualisieren von" -#: src/Common/LinuxKernel.vala:298 +#: src/Common/LinuxKernel.vala:297 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:301 +#: src/Common/LinuxKernel.vala:300 msgid "FAILED" msgstr "MISSLUNGEN" -#: src/Common/LinuxKernel.vala:411 +#: src/Common/LinuxKernel.vala:410 msgid "Found installed" msgstr "Installiert gefunden" -#: src/Common/LinuxKernel.vala:412 +#: src/Common/LinuxKernel.vala:411 msgid "locked" msgstr "" -#: src/Common/LinuxKernel.vala:413 +#: src/Common/LinuxKernel.vala:412 #, fuzzy msgid "running" msgstr "Läuft" -#: src/Common/LinuxKernel.vala:450 src/Common/LinuxKernel.vala:1006 -#: src/Common/LinuxKernel.vala:1088 +#: src/Common/LinuxKernel.vala:449 src/Common/LinuxKernel.vala:1005 +#: src/Common/LinuxKernel.vala:1087 msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:669 src/Gtk/MainWindow.vala:472 +#: src/Common/LinuxKernel.vala:668 src/Gtk/MainWindow.vala:472 msgid "Running" msgstr "Läuft" -#: src/Common/LinuxKernel.vala:670 +#: src/Common/LinuxKernel.vala:669 msgid "Installed" msgstr "Installiert" -#: src/Common/LinuxKernel.vala:671 +#: src/Common/LinuxKernel.vala:670 msgid "Invalid" msgstr "Ungültig" -#: src/Common/LinuxKernel.vala:764 +#: src/Common/LinuxKernel.vala:763 msgid "Packages Available" msgstr "Verfügbare Pakete" -#: src/Common/LinuxKernel.vala:770 +#: src/Common/LinuxKernel.vala:769 msgid "Packages Installed" msgstr "Installierte Pakete" -#: src/Common/LinuxKernel.vala:795 +#: src/Common/LinuxKernel.vala:794 msgid "File not found" msgstr "Datei nicht gefunden " -#: src/Common/LinuxKernel.vala:822 +#: src/Common/LinuxKernel.vala:821 #, fuzzy msgid "needs update" msgstr "Neustes Update" -#: src/Common/LinuxKernel.vala:889 +#: src/Common/LinuxKernel.vala:888 msgid "Available Kernels" msgstr "Verfügbare Kernel" -#: src/Common/LinuxKernel.vala:923 src/Gtk/MainWindow.vala:139 +#: src/Common/LinuxKernel.vala:922 src/Gtk/MainWindow.vala:139 msgid "Kernel" msgstr "Kernel" -#: src/Common/LinuxKernel.vala:923 +#: src/Common/LinuxKernel.vala:922 #, fuzzy msgid "not found" msgstr "Datei nicht gefunden " -#: src/Common/LinuxKernel.vala:930 +#: src/Common/LinuxKernel.vala:929 #, fuzzy msgid "Download: no downloadable kernels specified" msgstr "Befehl nicht angegeben" -#: src/Common/LinuxKernel.vala:949 +#: src/Common/LinuxKernel.vala:948 msgid "enabled" msgstr "ermöglichte" -#: src/Common/LinuxKernel.vala:975 +#: src/Common/LinuxKernel.vala:974 msgid "Downloading" msgstr "Laden" -#: src/Common/LinuxKernel.vala:984 +#: src/Common/LinuxKernel.vala:983 msgid "Cached" msgstr "" -#: src/Common/LinuxKernel.vala:992 +#: src/Common/LinuxKernel.vala:991 #, fuzzy msgid "Installing selected kernels" msgstr "Deinstallation des angegebenen Kernels" -#: src/Common/LinuxKernel.vala:998 src/Common/LinuxKernel.vala:1035 +#: src/Common/LinuxKernel.vala:997 src/Common/LinuxKernel.vala:1034 #, fuzzy msgid "Requested" msgstr "angefordert" -#: src/Common/LinuxKernel.vala:1001 +#: src/Common/LinuxKernel.vala:1000 msgid "is already installed." msgstr "ist bereits installiert." -#: src/Common/LinuxKernel.vala:1011 +#: src/Common/LinuxKernel.vala:1010 msgid "download failed." msgstr "" -#: src/Common/LinuxKernel.vala:1018 src/Gtk/MainWindow.vala:498 +#: src/Common/LinuxKernel.vala:1017 src/Gtk/MainWindow.vala:498 #, fuzzy msgid "Install: no installable kernels specified" msgstr "Befehl nicht angegeben" -#: src/Common/LinuxKernel.vala:1031 +#: src/Common/LinuxKernel.vala:1030 msgid "Uninstalling selected kernels" msgstr "Deinstallation des angegebenen Kernels" -#: src/Common/LinuxKernel.vala:1038 +#: src/Common/LinuxKernel.vala:1037 #, fuzzy msgid "Not uninstalling the currently running kernel" msgstr "Den aktuell laufenden Kernel wird nicht deinstalliert" -#: src/Common/LinuxKernel.vala:1043 src/Gtk/MainWindow.vala:494 +#: src/Common/LinuxKernel.vala:1042 src/Gtk/MainWindow.vala:494 msgid "is locked" msgstr "" -#: src/Common/LinuxKernel.vala:1051 +#: src/Common/LinuxKernel.vala:1050 msgid "found" msgstr "gründen" -#: src/Common/LinuxKernel.vala:1055 +#: src/Common/LinuxKernel.vala:1054 msgid "Uninstall: no uninstallable packages found" msgstr "" -#: src/Common/LinuxKernel.vala:1084 +#: src/Common/LinuxKernel.vala:1083 #, fuzzy msgid "is the highest installed version." msgstr "Deinstallieren Sie alle bis auf die höchste installierte Version" -#: src/Common/LinuxKernel.vala:1096 +#: src/Common/LinuxKernel.vala:1095 msgid "Could not find running kernel in list" msgstr "Konnte keinen laufenden Kernel in der Liste finden" -#: src/Common/LinuxKernel.vala:1101 +#: src/Common/LinuxKernel.vala:1100 #, fuzzy msgid "No old kernels to uninstall" msgstr "Es konnten keine Kernel zum Deinstallieren gefunden werden" -#: src/Common/LinuxKernel.vala:1102 +#: src/Common/LinuxKernel.vala:1101 msgid "done" msgstr "" -#: src/Common/LinuxKernel.vala:1107 +#: src/Common/LinuxKernel.vala:1106 msgid "The following kernels will be uninstalled" msgstr "Die folgenden Kernel werden deinstalliert" -#: src/Common/LinuxKernel.vala:1109 src/lib/l.misc.vala:12 +#: src/Common/LinuxKernel.vala:1108 src/lib/l.misc.vala:12 #, fuzzy msgid "Continue? (y/N): " msgstr "Weiter ?" -#: src/Common/LinuxKernel.vala:1123 +#: src/Common/LinuxKernel.vala:1122 #, fuzzy msgid "No updates" msgstr "Keine Updates gefunden" -#: src/Common/LinuxKernel.vala:1125 +#: src/Common/LinuxKernel.vala:1124 #, fuzzy, c-format msgid "Install Kernel Version %s ? (y/N): " msgstr "Kernel-Version %s installieren? (j/n):" diff --git a/po/el.po b/po/el.po index c4911740..7d65f15c 100644 --- a/po/el.po +++ b/po/el.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-27 05:46-0400\n" +"POT-Creation-Date: 2023-06-28 15:01-0400\n" "PO-Revision-Date: 2023-01-10 02:03-0600\n" "Last-Translator: Vasilis Kosmidis \n" "Language-Team: Greek\n" @@ -25,188 +25,188 @@ msgstr "Αρχιτεκτονική" msgid "Running kernel" msgstr "Εκτέλεση πυρήνα" -#: src/Common/LinuxKernel.vala:214 +#: src/Common/LinuxKernel.vala:213 msgid "loading cached" msgstr "φόρτωση προσωρινά αποθηκευμένου" -#: src/Common/LinuxKernel.vala:226 +#: src/Common/LinuxKernel.vala:225 msgid "queuing download" msgstr "Προσθήκη λήψης στην ουρά" -#: src/Common/LinuxKernel.vala:237 +#: src/Common/LinuxKernel.vala:236 msgid "Fetching individual kernel indexes" msgstr "Λήψη μεμονωμένων ευρετηρίων πυρήνα" -#: src/Common/LinuxKernel.vala:252 +#: src/Common/LinuxKernel.vala:251 msgid "loading downloaded" msgstr "Φόρτωση λήψης" -#: src/Common/LinuxKernel.vala:291 +#: src/Common/LinuxKernel.vala:290 msgid "Updating from" msgstr "Ενημέρωση από" -#: src/Common/LinuxKernel.vala:298 +#: src/Common/LinuxKernel.vala:297 msgid "OK" msgstr "ΟΚ" -#: src/Common/LinuxKernel.vala:301 +#: src/Common/LinuxKernel.vala:300 msgid "FAILED" msgstr "ΑΠΈΤΥΧΕ" -#: src/Common/LinuxKernel.vala:411 +#: src/Common/LinuxKernel.vala:410 msgid "Found installed" msgstr "Βρέθηκε εγκατεστημένο" -#: src/Common/LinuxKernel.vala:412 +#: src/Common/LinuxKernel.vala:411 msgid "locked" msgstr "" -#: src/Common/LinuxKernel.vala:413 +#: src/Common/LinuxKernel.vala:412 #, fuzzy msgid "running" msgstr "Ενεργός" -#: src/Common/LinuxKernel.vala:450 src/Common/LinuxKernel.vala:1006 -#: src/Common/LinuxKernel.vala:1088 +#: src/Common/LinuxKernel.vala:449 src/Common/LinuxKernel.vala:1005 +#: src/Common/LinuxKernel.vala:1087 msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:669 src/Gtk/MainWindow.vala:472 +#: src/Common/LinuxKernel.vala:668 src/Gtk/MainWindow.vala:472 msgid "Running" msgstr "Ενεργός" -#: src/Common/LinuxKernel.vala:670 +#: src/Common/LinuxKernel.vala:669 msgid "Installed" msgstr "Εγκατεστημένος" -#: src/Common/LinuxKernel.vala:671 +#: src/Common/LinuxKernel.vala:670 msgid "Invalid" msgstr "Άκυρος" -#: src/Common/LinuxKernel.vala:764 +#: src/Common/LinuxKernel.vala:763 msgid "Packages Available" msgstr "Διαθέσιμα πακέτα" -#: src/Common/LinuxKernel.vala:770 +#: src/Common/LinuxKernel.vala:769 msgid "Packages Installed" msgstr "Εγκατεστημένα πακέτα" -#: src/Common/LinuxKernel.vala:795 +#: src/Common/LinuxKernel.vala:794 msgid "File not found" msgstr "Το αρχείο δε βρέθηκε" -#: src/Common/LinuxKernel.vala:822 +#: src/Common/LinuxKernel.vala:821 #, fuzzy msgid "needs update" msgstr "Τελευταία αναβάθμιση" -#: src/Common/LinuxKernel.vala:889 +#: src/Common/LinuxKernel.vala:888 msgid "Available Kernels" msgstr "Διαθέσιμοι πυρήνες" -#: src/Common/LinuxKernel.vala:923 src/Gtk/MainWindow.vala:139 +#: src/Common/LinuxKernel.vala:922 src/Gtk/MainWindow.vala:139 msgid "Kernel" msgstr "Πυρήνας" -#: src/Common/LinuxKernel.vala:923 +#: src/Common/LinuxKernel.vala:922 #, fuzzy msgid "not found" msgstr "Το αρχείο δε βρέθηκε" -#: src/Common/LinuxKernel.vala:930 +#: src/Common/LinuxKernel.vala:929 #, fuzzy msgid "Download: no downloadable kernels specified" msgstr "Η εντολή δεν προσδιορίστηκε" -#: src/Common/LinuxKernel.vala:949 +#: src/Common/LinuxKernel.vala:948 msgid "enabled" msgstr "ενεργοποιημένη" -#: src/Common/LinuxKernel.vala:975 +#: src/Common/LinuxKernel.vala:974 msgid "Downloading" msgstr "Κατέβασμα" -#: src/Common/LinuxKernel.vala:984 +#: src/Common/LinuxKernel.vala:983 msgid "Cached" msgstr "" -#: src/Common/LinuxKernel.vala:992 +#: src/Common/LinuxKernel.vala:991 #, fuzzy msgid "Installing selected kernels" msgstr "Απεγκατάσταση επιλεγμένων πυρήνων" -#: src/Common/LinuxKernel.vala:998 src/Common/LinuxKernel.vala:1035 +#: src/Common/LinuxKernel.vala:997 src/Common/LinuxKernel.vala:1034 #, fuzzy msgid "Requested" msgstr "ζητήθηκε" -#: src/Common/LinuxKernel.vala:1001 +#: src/Common/LinuxKernel.vala:1000 msgid "is already installed." msgstr "είναι ήδη εγκατεστημένο." -#: src/Common/LinuxKernel.vala:1011 +#: src/Common/LinuxKernel.vala:1010 msgid "download failed." msgstr "" -#: src/Common/LinuxKernel.vala:1018 src/Gtk/MainWindow.vala:498 +#: src/Common/LinuxKernel.vala:1017 src/Gtk/MainWindow.vala:498 #, fuzzy msgid "Install: no installable kernels specified" msgstr "Η εντολή δεν προσδιορίστηκε" -#: src/Common/LinuxKernel.vala:1031 +#: src/Common/LinuxKernel.vala:1030 msgid "Uninstalling selected kernels" msgstr "Απεγκατάσταση επιλεγμένων πυρήνων" -#: src/Common/LinuxKernel.vala:1038 +#: src/Common/LinuxKernel.vala:1037 #, fuzzy msgid "Not uninstalling the currently running kernel" msgstr "δεν θα απεγκαταστήσει τον πυρήνα που εκτελείται αυτήν τη στιγμή" -#: src/Common/LinuxKernel.vala:1043 src/Gtk/MainWindow.vala:494 +#: src/Common/LinuxKernel.vala:1042 src/Gtk/MainWindow.vala:494 msgid "is locked" msgstr "" -#: src/Common/LinuxKernel.vala:1051 +#: src/Common/LinuxKernel.vala:1050 msgid "found" msgstr "ιδρύω" -#: src/Common/LinuxKernel.vala:1055 +#: src/Common/LinuxKernel.vala:1054 msgid "Uninstall: no uninstallable packages found" msgstr "" -#: src/Common/LinuxKernel.vala:1084 +#: src/Common/LinuxKernel.vala:1083 #, fuzzy msgid "is the highest installed version." msgstr "Απεγκαταστήστε όλες εκτός από την υψηλότερη εγκατεστημένη έκδοση" -#: src/Common/LinuxKernel.vala:1096 +#: src/Common/LinuxKernel.vala:1095 msgid "Could not find running kernel in list" msgstr "Δεν ήταν δυνατή η εύρεση του πυρήνα που εκτελείται αυτήν τη στιγμή" -#: src/Common/LinuxKernel.vala:1101 +#: src/Common/LinuxKernel.vala:1100 #, fuzzy msgid "No old kernels to uninstall" msgstr "Δεν βρέθηκε κανένας πυρήνας για απεγκατάσταση" -#: src/Common/LinuxKernel.vala:1102 +#: src/Common/LinuxKernel.vala:1101 msgid "done" msgstr "" -#: src/Common/LinuxKernel.vala:1107 +#: src/Common/LinuxKernel.vala:1106 msgid "The following kernels will be uninstalled" msgstr "Θα καταργηθεί η εγκατάσταση των ακόλουθων πυρήνων" -#: src/Common/LinuxKernel.vala:1109 src/lib/l.misc.vala:12 +#: src/Common/LinuxKernel.vala:1108 src/lib/l.misc.vala:12 #, fuzzy msgid "Continue? (y/N): " msgstr "Συνέχεια;" -#: src/Common/LinuxKernel.vala:1123 +#: src/Common/LinuxKernel.vala:1122 #, fuzzy msgid "No updates" msgstr "Δεν βρέθηκαν ενημερώσεις" -#: src/Common/LinuxKernel.vala:1125 +#: src/Common/LinuxKernel.vala:1124 #, fuzzy, c-format msgid "Install Kernel Version %s ? (y/N): " msgstr "Εγκατάσταση του πυρήνα έκδοσης %s ; (ν/ό):" diff --git a/po/es.po b/po/es.po index 794fd23d..516c6dc4 100644 --- a/po/es.po +++ b/po/es.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-27 05:46-0400\n" +"POT-Creation-Date: 2023-06-28 15:01-0400\n" "PO-Revision-Date: 2018-01-03 02:03-0600\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish\n" @@ -25,188 +25,188 @@ msgstr "Arquitectura del sistema" msgid "Running kernel" msgstr "Kernel en ejecución" -#: src/Common/LinuxKernel.vala:214 +#: src/Common/LinuxKernel.vala:213 msgid "loading cached" msgstr "carga en caché" -#: src/Common/LinuxKernel.vala:226 +#: src/Common/LinuxKernel.vala:225 msgid "queuing download" msgstr "descarga de colas" -#: src/Common/LinuxKernel.vala:237 +#: src/Common/LinuxKernel.vala:236 msgid "Fetching individual kernel indexes" msgstr "Obtención de índices de kernel individuales" -#: src/Common/LinuxKernel.vala:252 +#: src/Common/LinuxKernel.vala:251 msgid "loading downloaded" msgstr "cargando descargado" -#: src/Common/LinuxKernel.vala:291 +#: src/Common/LinuxKernel.vala:290 msgid "Updating from" msgstr "Actualización desde" -#: src/Common/LinuxKernel.vala:298 +#: src/Common/LinuxKernel.vala:297 msgid "OK" msgstr "Aceptar" -#: src/Common/LinuxKernel.vala:301 +#: src/Common/LinuxKernel.vala:300 msgid "FAILED" msgstr "FRACASADO" -#: src/Common/LinuxKernel.vala:411 +#: src/Common/LinuxKernel.vala:410 msgid "Found installed" msgstr "Encontrado instalado" -#: src/Common/LinuxKernel.vala:412 +#: src/Common/LinuxKernel.vala:411 msgid "locked" msgstr "" -#: src/Common/LinuxKernel.vala:413 +#: src/Common/LinuxKernel.vala:412 #, fuzzy msgid "running" msgstr "En ejecución" -#: src/Common/LinuxKernel.vala:450 src/Common/LinuxKernel.vala:1006 -#: src/Common/LinuxKernel.vala:1088 +#: src/Common/LinuxKernel.vala:449 src/Common/LinuxKernel.vala:1005 +#: src/Common/LinuxKernel.vala:1087 msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:669 src/Gtk/MainWindow.vala:472 +#: src/Common/LinuxKernel.vala:668 src/Gtk/MainWindow.vala:472 msgid "Running" msgstr "En ejecución" -#: src/Common/LinuxKernel.vala:670 +#: src/Common/LinuxKernel.vala:669 msgid "Installed" msgstr "Instalado" -#: src/Common/LinuxKernel.vala:671 +#: src/Common/LinuxKernel.vala:670 msgid "Invalid" msgstr "No válido" -#: src/Common/LinuxKernel.vala:764 +#: src/Common/LinuxKernel.vala:763 msgid "Packages Available" msgstr "Paquetes disponibles" -#: src/Common/LinuxKernel.vala:770 +#: src/Common/LinuxKernel.vala:769 msgid "Packages Installed" msgstr "Paquetes instalados" -#: src/Common/LinuxKernel.vala:795 +#: src/Common/LinuxKernel.vala:794 msgid "File not found" msgstr "No se encontró el archivo" -#: src/Common/LinuxKernel.vala:822 +#: src/Common/LinuxKernel.vala:821 #, fuzzy msgid "needs update" msgstr "Última actualización" -#: src/Common/LinuxKernel.vala:889 +#: src/Common/LinuxKernel.vala:888 msgid "Available Kernels" msgstr "Núcleos disponibles" -#: src/Common/LinuxKernel.vala:923 src/Gtk/MainWindow.vala:139 +#: src/Common/LinuxKernel.vala:922 src/Gtk/MainWindow.vala:139 msgid "Kernel" msgstr "Núcleo" -#: src/Common/LinuxKernel.vala:923 +#: src/Common/LinuxKernel.vala:922 #, fuzzy msgid "not found" msgstr "No se encontró el archivo" -#: src/Common/LinuxKernel.vala:930 +#: src/Common/LinuxKernel.vala:929 #, fuzzy msgid "Download: no downloadable kernels specified" msgstr "Coomand no especificado" -#: src/Common/LinuxKernel.vala:949 +#: src/Common/LinuxKernel.vala:948 msgid "enabled" msgstr "habilitado" -#: src/Common/LinuxKernel.vala:975 +#: src/Common/LinuxKernel.vala:974 msgid "Downloading" msgstr "Descargar" -#: src/Common/LinuxKernel.vala:984 +#: src/Common/LinuxKernel.vala:983 msgid "Cached" msgstr "" -#: src/Common/LinuxKernel.vala:992 +#: src/Common/LinuxKernel.vala:991 #, fuzzy msgid "Installing selected kernels" msgstr "Desinstalación de kernels seleccionados" -#: src/Common/LinuxKernel.vala:998 src/Common/LinuxKernel.vala:1035 +#: src/Common/LinuxKernel.vala:997 src/Common/LinuxKernel.vala:1034 #, fuzzy msgid "Requested" msgstr "solicitado" -#: src/Common/LinuxKernel.vala:1001 +#: src/Common/LinuxKernel.vala:1000 msgid "is already installed." msgstr "ya está instalado." -#: src/Common/LinuxKernel.vala:1011 +#: src/Common/LinuxKernel.vala:1010 msgid "download failed." msgstr "" -#: src/Common/LinuxKernel.vala:1018 src/Gtk/MainWindow.vala:498 +#: src/Common/LinuxKernel.vala:1017 src/Gtk/MainWindow.vala:498 #, fuzzy msgid "Install: no installable kernels specified" msgstr "Coomand no especificado" -#: src/Common/LinuxKernel.vala:1031 +#: src/Common/LinuxKernel.vala:1030 msgid "Uninstalling selected kernels" msgstr "Desinstalación de kernels seleccionados" -#: src/Common/LinuxKernel.vala:1038 +#: src/Common/LinuxKernel.vala:1037 #, fuzzy msgid "Not uninstalling the currently running kernel" msgstr "No desinstalará el kernel que se está ejecutando actualmente" -#: src/Common/LinuxKernel.vala:1043 src/Gtk/MainWindow.vala:494 +#: src/Common/LinuxKernel.vala:1042 src/Gtk/MainWindow.vala:494 msgid "is locked" msgstr "" -#: src/Common/LinuxKernel.vala:1051 +#: src/Common/LinuxKernel.vala:1050 msgid "found" msgstr "fundar" -#: src/Common/LinuxKernel.vala:1055 +#: src/Common/LinuxKernel.vala:1054 msgid "Uninstall: no uninstallable packages found" msgstr "" -#: src/Common/LinuxKernel.vala:1084 +#: src/Common/LinuxKernel.vala:1083 #, fuzzy msgid "is the highest installed version." msgstr "Desinstale todas las versiones instaladas excepto la más alta" -#: src/Common/LinuxKernel.vala:1096 +#: src/Common/LinuxKernel.vala:1095 msgid "Could not find running kernel in list" msgstr "No se pudo encontrar el kernel en ejecución en la lista" -#: src/Common/LinuxKernel.vala:1101 +#: src/Common/LinuxKernel.vala:1100 #, fuzzy msgid "No old kernels to uninstall" msgstr "No se pudo encontrar ningún kernel para desinstalar" -#: src/Common/LinuxKernel.vala:1102 +#: src/Common/LinuxKernel.vala:1101 msgid "done" msgstr "" -#: src/Common/LinuxKernel.vala:1107 +#: src/Common/LinuxKernel.vala:1106 msgid "The following kernels will be uninstalled" msgstr "Se desinstalarán los siguientes kernels" -#: src/Common/LinuxKernel.vala:1109 src/lib/l.misc.vala:12 +#: src/Common/LinuxKernel.vala:1108 src/lib/l.misc.vala:12 #, fuzzy msgid "Continue? (y/N): " msgstr "¿Continuar?" -#: src/Common/LinuxKernel.vala:1123 +#: src/Common/LinuxKernel.vala:1122 #, fuzzy msgid "No updates" msgstr "No se encontró ninguna actualización" -#: src/Common/LinuxKernel.vala:1125 +#: src/Common/LinuxKernel.vala:1124 #, fuzzy, c-format msgid "Install Kernel Version %s ? (y/N): " msgstr "Instalar la versión del kernel %s? (s/n): " diff --git a/po/fr.po b/po/fr.po index 84b03671..7f360db6 100644 --- a/po/fr.po +++ b/po/fr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-27 05:46-0400\n" +"POT-Creation-Date: 2023-06-28 15:01-0400\n" "PO-Revision-Date: 2018-08-05 15:50+0200\n" "Last-Translator: Yolateng0 \n" "Language-Team: French\n" @@ -25,188 +25,188 @@ msgstr "Architecture" msgid "Running kernel" msgstr "Noyau en cours d'exécution" -#: src/Common/LinuxKernel.vala:214 +#: src/Common/LinuxKernel.vala:213 msgid "loading cached" msgstr "chargement mis en cache" -#: src/Common/LinuxKernel.vala:226 +#: src/Common/LinuxKernel.vala:225 msgid "queuing download" msgstr "enqueuing télécharger" -#: src/Common/LinuxKernel.vala:237 +#: src/Common/LinuxKernel.vala:236 msgid "Fetching individual kernel indexes" msgstr "Récupération d'index de noyau individuels" -#: src/Common/LinuxKernel.vala:252 +#: src/Common/LinuxKernel.vala:251 msgid "loading downloaded" msgstr "chargement téléchargé" -#: src/Common/LinuxKernel.vala:291 +#: src/Common/LinuxKernel.vala:290 msgid "Updating from" msgstr "Mise à jour à partir de" -#: src/Common/LinuxKernel.vala:298 +#: src/Common/LinuxKernel.vala:297 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:301 +#: src/Common/LinuxKernel.vala:300 msgid "FAILED" msgstr "RATÉ" -#: src/Common/LinuxKernel.vala:411 +#: src/Common/LinuxKernel.vala:410 msgid "Found installed" msgstr "Trouvé installé" -#: src/Common/LinuxKernel.vala:412 +#: src/Common/LinuxKernel.vala:411 msgid "locked" msgstr "" -#: src/Common/LinuxKernel.vala:413 +#: src/Common/LinuxKernel.vala:412 #, fuzzy msgid "running" msgstr "Actuel" -#: src/Common/LinuxKernel.vala:450 src/Common/LinuxKernel.vala:1006 -#: src/Common/LinuxKernel.vala:1088 +#: src/Common/LinuxKernel.vala:449 src/Common/LinuxKernel.vala:1005 +#: src/Common/LinuxKernel.vala:1087 msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:669 src/Gtk/MainWindow.vala:472 +#: src/Common/LinuxKernel.vala:668 src/Gtk/MainWindow.vala:472 msgid "Running" msgstr "Actuel" -#: src/Common/LinuxKernel.vala:670 +#: src/Common/LinuxKernel.vala:669 msgid "Installed" msgstr "Installé" -#: src/Common/LinuxKernel.vala:671 +#: src/Common/LinuxKernel.vala:670 msgid "Invalid" msgstr "No válido" -#: src/Common/LinuxKernel.vala:764 +#: src/Common/LinuxKernel.vala:763 msgid "Packages Available" msgstr "Paquets Disponibles" -#: src/Common/LinuxKernel.vala:770 +#: src/Common/LinuxKernel.vala:769 msgid "Packages Installed" msgstr "Paquets Installés" -#: src/Common/LinuxKernel.vala:795 +#: src/Common/LinuxKernel.vala:794 msgid "File not found" msgstr "Fichier non trouvé" -#: src/Common/LinuxKernel.vala:822 +#: src/Common/LinuxKernel.vala:821 #, fuzzy msgid "needs update" msgstr "Dernière mise à jour" -#: src/Common/LinuxKernel.vala:889 +#: src/Common/LinuxKernel.vala:888 msgid "Available Kernels" msgstr "Noyaux Disponibles" -#: src/Common/LinuxKernel.vala:923 src/Gtk/MainWindow.vala:139 +#: src/Common/LinuxKernel.vala:922 src/Gtk/MainWindow.vala:139 msgid "Kernel" msgstr "Noyau" -#: src/Common/LinuxKernel.vala:923 +#: src/Common/LinuxKernel.vala:922 #, fuzzy msgid "not found" msgstr "Fichier non trouvé" -#: src/Common/LinuxKernel.vala:930 +#: src/Common/LinuxKernel.vala:929 #, fuzzy msgid "Download: no downloadable kernels specified" msgstr "Pas de commande fournie" -#: src/Common/LinuxKernel.vala:949 +#: src/Common/LinuxKernel.vala:948 msgid "enabled" msgstr "activé" -#: src/Common/LinuxKernel.vala:975 +#: src/Common/LinuxKernel.vala:974 msgid "Downloading" msgstr "Téléchargement" -#: src/Common/LinuxKernel.vala:984 +#: src/Common/LinuxKernel.vala:983 msgid "Cached" msgstr "" -#: src/Common/LinuxKernel.vala:992 +#: src/Common/LinuxKernel.vala:991 #, fuzzy msgid "Installing selected kernels" msgstr "Désinstallation des noyaux sélectionnés" -#: src/Common/LinuxKernel.vala:998 src/Common/LinuxKernel.vala:1035 +#: src/Common/LinuxKernel.vala:997 src/Common/LinuxKernel.vala:1034 #, fuzzy msgid "Requested" msgstr "Demandé" -#: src/Common/LinuxKernel.vala:1001 +#: src/Common/LinuxKernel.vala:1000 msgid "is already installed." msgstr "est déjà installé." -#: src/Common/LinuxKernel.vala:1011 +#: src/Common/LinuxKernel.vala:1010 msgid "download failed." msgstr "" -#: src/Common/LinuxKernel.vala:1018 src/Gtk/MainWindow.vala:498 +#: src/Common/LinuxKernel.vala:1017 src/Gtk/MainWindow.vala:498 #, fuzzy msgid "Install: no installable kernels specified" msgstr "Pas de commande fournie" -#: src/Common/LinuxKernel.vala:1031 +#: src/Common/LinuxKernel.vala:1030 msgid "Uninstalling selected kernels" msgstr "Désinstallation des noyaux sélectionnés" -#: src/Common/LinuxKernel.vala:1038 +#: src/Common/LinuxKernel.vala:1037 #, fuzzy msgid "Not uninstalling the currently running kernel" msgstr "Ne pas désinstaller le noyau en cours d'exécution" -#: src/Common/LinuxKernel.vala:1043 src/Gtk/MainWindow.vala:494 +#: src/Common/LinuxKernel.vala:1042 src/Gtk/MainWindow.vala:494 msgid "is locked" msgstr "" -#: src/Common/LinuxKernel.vala:1051 +#: src/Common/LinuxKernel.vala:1050 msgid "found" msgstr "fonder" -#: src/Common/LinuxKernel.vala:1055 +#: src/Common/LinuxKernel.vala:1054 msgid "Uninstall: no uninstallable packages found" msgstr "" -#: src/Common/LinuxKernel.vala:1084 +#: src/Common/LinuxKernel.vala:1083 #, fuzzy msgid "is the highest installed version." msgstr "Désinstallez toutes le version installées, sauf la plus élevée" -#: src/Common/LinuxKernel.vala:1096 +#: src/Common/LinuxKernel.vala:1095 msgid "Could not find running kernel in list" msgstr "Impossible de trouver le noyau en cours d'exécution dans la liste" -#: src/Common/LinuxKernel.vala:1101 +#: src/Common/LinuxKernel.vala:1100 #, fuzzy msgid "No old kernels to uninstall" msgstr "Impossible de trouver des noyaux à désinstaller" -#: src/Common/LinuxKernel.vala:1102 +#: src/Common/LinuxKernel.vala:1101 msgid "done" msgstr "" -#: src/Common/LinuxKernel.vala:1107 +#: src/Common/LinuxKernel.vala:1106 msgid "The following kernels will be uninstalled" msgstr "Les noyaux suivants seront désinstallés" -#: src/Common/LinuxKernel.vala:1109 src/lib/l.misc.vala:12 +#: src/Common/LinuxKernel.vala:1108 src/lib/l.misc.vala:12 #, fuzzy msgid "Continue? (y/N): " msgstr "Reprendre ?" -#: src/Common/LinuxKernel.vala:1123 +#: src/Common/LinuxKernel.vala:1122 #, fuzzy msgid "No updates" msgstr "Aucune mise à jour disponible" -#: src/Common/LinuxKernel.vala:1125 +#: src/Common/LinuxKernel.vala:1124 #, fuzzy, c-format msgid "Install Kernel Version %s ? (y/N): " msgstr "Installer le noyau en version %s ? (y/n): " diff --git a/po/hr.po b/po/hr.po index 079ad5a3..6dfb8f41 100644 --- a/po/hr.po +++ b/po/hr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-27 05:46-0400\n" +"POT-Creation-Date: 2023-06-28 15:01-0400\n" "PO-Revision-Date: 2022-09-22 12:13+0200\n" "Last-Translator: gogo \n" "Language-Team: Croatian\n" @@ -25,188 +25,188 @@ msgstr "Arhitektura" msgid "Running kernel" msgstr "Trčanje kernel" -#: src/Common/LinuxKernel.vala:214 +#: src/Common/LinuxKernel.vala:213 msgid "loading cached" msgstr "učitavanje predmemoriranog" -#: src/Common/LinuxKernel.vala:226 +#: src/Common/LinuxKernel.vala:225 msgid "queuing download" msgstr "preuzimanje u redu čekanja" -#: src/Common/LinuxKernel.vala:237 +#: src/Common/LinuxKernel.vala:236 msgid "Fetching individual kernel indexes" msgstr "Dohvaćanje pojedinačnih indeksa kernel" -#: src/Common/LinuxKernel.vala:252 +#: src/Common/LinuxKernel.vala:251 msgid "loading downloaded" msgstr "učitavanje preuzeto" -#: src/Common/LinuxKernel.vala:291 +#: src/Common/LinuxKernel.vala:290 msgid "Updating from" msgstr "Ažuriranje iz" -#: src/Common/LinuxKernel.vala:298 +#: src/Common/LinuxKernel.vala:297 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:301 +#: src/Common/LinuxKernel.vala:300 msgid "FAILED" msgstr "NIJE USPIO" -#: src/Common/LinuxKernel.vala:411 +#: src/Common/LinuxKernel.vala:410 msgid "Found installed" msgstr "Pronađeno instalirano" -#: src/Common/LinuxKernel.vala:412 +#: src/Common/LinuxKernel.vala:411 msgid "locked" msgstr "" -#: src/Common/LinuxKernel.vala:413 +#: src/Common/LinuxKernel.vala:412 #, fuzzy msgid "running" msgstr "Pokrenuto" -#: src/Common/LinuxKernel.vala:450 src/Common/LinuxKernel.vala:1006 -#: src/Common/LinuxKernel.vala:1088 +#: src/Common/LinuxKernel.vala:449 src/Common/LinuxKernel.vala:1005 +#: src/Common/LinuxKernel.vala:1087 msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:669 src/Gtk/MainWindow.vala:472 +#: src/Common/LinuxKernel.vala:668 src/Gtk/MainWindow.vala:472 msgid "Running" msgstr "Pokrenuto" -#: src/Common/LinuxKernel.vala:670 +#: src/Common/LinuxKernel.vala:669 msgid "Installed" msgstr "Instalirano" -#: src/Common/LinuxKernel.vala:671 +#: src/Common/LinuxKernel.vala:670 msgid "Invalid" msgstr "Érvénytelen" -#: src/Common/LinuxKernel.vala:764 +#: src/Common/LinuxKernel.vala:763 msgid "Packages Available" msgstr "Dostupni Paketi" -#: src/Common/LinuxKernel.vala:770 +#: src/Common/LinuxKernel.vala:769 msgid "Packages Installed" msgstr "Instalirani paketi" -#: src/Common/LinuxKernel.vala:795 +#: src/Common/LinuxKernel.vala:794 msgid "File not found" msgstr "Datoteka nije pronađena" -#: src/Common/LinuxKernel.vala:822 +#: src/Common/LinuxKernel.vala:821 #, fuzzy msgid "needs update" msgstr "Najnovija nadopuna" -#: src/Common/LinuxKernel.vala:889 +#: src/Common/LinuxKernel.vala:888 msgid "Available Kernels" msgstr "Dostupni kerneli" -#: src/Common/LinuxKernel.vala:923 src/Gtk/MainWindow.vala:139 +#: src/Common/LinuxKernel.vala:922 src/Gtk/MainWindow.vala:139 msgid "Kernel" msgstr "Kernel" -#: src/Common/LinuxKernel.vala:923 +#: src/Common/LinuxKernel.vala:922 #, fuzzy msgid "not found" msgstr "Datoteka nije pronađena" -#: src/Common/LinuxKernel.vala:930 +#: src/Common/LinuxKernel.vala:929 #, fuzzy msgid "Download: no downloadable kernels specified" msgstr "Naredba nije navedena" -#: src/Common/LinuxKernel.vala:949 +#: src/Common/LinuxKernel.vala:948 msgid "enabled" msgstr "omogućen" -#: src/Common/LinuxKernel.vala:975 +#: src/Common/LinuxKernel.vala:974 msgid "Downloading" msgstr "Učitavanje" -#: src/Common/LinuxKernel.vala:984 +#: src/Common/LinuxKernel.vala:983 msgid "Cached" msgstr "" -#: src/Common/LinuxKernel.vala:992 +#: src/Common/LinuxKernel.vala:991 #, fuzzy msgid "Installing selected kernels" msgstr "Deinstaliraj određene kernele" -#: src/Common/LinuxKernel.vala:998 src/Common/LinuxKernel.vala:1035 +#: src/Common/LinuxKernel.vala:997 src/Common/LinuxKernel.vala:1034 #, fuzzy msgid "Requested" msgstr "Zatražio" -#: src/Common/LinuxKernel.vala:1001 +#: src/Common/LinuxKernel.vala:1000 msgid "is already installed." msgstr "je već instaliran." -#: src/Common/LinuxKernel.vala:1011 +#: src/Common/LinuxKernel.vala:1010 msgid "download failed." msgstr "" -#: src/Common/LinuxKernel.vala:1018 src/Gtk/MainWindow.vala:498 +#: src/Common/LinuxKernel.vala:1017 src/Gtk/MainWindow.vala:498 #, fuzzy msgid "Install: no installable kernels specified" msgstr "Naredba nije navedena" -#: src/Common/LinuxKernel.vala:1031 +#: src/Common/LinuxKernel.vala:1030 msgid "Uninstalling selected kernels" msgstr "Deinstaliraj određene kernele" -#: src/Common/LinuxKernel.vala:1038 +#: src/Common/LinuxKernel.vala:1037 #, fuzzy msgid "Not uninstalling the currently running kernel" msgstr "ne deinstaliranje trenutno pokrenute kernel" -#: src/Common/LinuxKernel.vala:1043 src/Gtk/MainWindow.vala:494 +#: src/Common/LinuxKernel.vala:1042 src/Gtk/MainWindow.vala:494 msgid "is locked" msgstr "" -#: src/Common/LinuxKernel.vala:1051 +#: src/Common/LinuxKernel.vala:1050 msgid "found" msgstr "pronađen" -#: src/Common/LinuxKernel.vala:1055 +#: src/Common/LinuxKernel.vala:1054 msgid "Uninstall: no uninstallable packages found" msgstr "" -#: src/Common/LinuxKernel.vala:1084 +#: src/Common/LinuxKernel.vala:1083 #, fuzzy msgid "is the highest installed version." msgstr "Deinstaliraj sve osim najnovije instalirane verzije" -#: src/Common/LinuxKernel.vala:1096 +#: src/Common/LinuxKernel.vala:1095 msgid "Could not find running kernel in list" msgstr "Nije moguće pronaći pokrenutu kernel na popisu" -#: src/Common/LinuxKernel.vala:1101 +#: src/Common/LinuxKernel.vala:1100 #, fuzzy msgid "No old kernels to uninstall" msgstr "Nema pronađenih kernela za deinstaliranje" -#: src/Common/LinuxKernel.vala:1102 +#: src/Common/LinuxKernel.vala:1101 msgid "done" msgstr "" -#: src/Common/LinuxKernel.vala:1107 +#: src/Common/LinuxKernel.vala:1106 msgid "The following kernels will be uninstalled" msgstr "Deinstalirat će se sljedeće kerneli" -#: src/Common/LinuxKernel.vala:1109 src/lib/l.misc.vala:12 +#: src/Common/LinuxKernel.vala:1108 src/lib/l.misc.vala:12 #, fuzzy msgid "Continue? (y/N): " msgstr "Nastavi?" -#: src/Common/LinuxKernel.vala:1123 +#: src/Common/LinuxKernel.vala:1122 #, fuzzy msgid "No updates" msgstr "Nema pronađenih nadopuna" -#: src/Common/LinuxKernel.vala:1125 +#: src/Common/LinuxKernel.vala:1124 #, fuzzy, c-format msgid "Install Kernel Version %s ? (y/N): " msgstr "Instaliraj kernel inačice %s ? (d/n): " diff --git a/po/it.po b/po/it.po index b6c08e11..60195b2c 100644 --- a/po/it.po +++ b/po/it.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-27 05:46-0400\n" +"POT-Creation-Date: 2023-06-28 15:01-0400\n" "PO-Revision-Date: 2020-08-22 15:35+0100\n" "Last-Translator: Demetrio Mendozzi\n" "Language-Team: Italian\n" @@ -23,188 +23,188 @@ msgstr "Architettura" msgid "Running kernel" msgstr "Kernel in esecuzione" -#: src/Common/LinuxKernel.vala:214 +#: src/Common/LinuxKernel.vala:213 msgid "loading cached" msgstr "Caricamento file della cache" -#: src/Common/LinuxKernel.vala:226 +#: src/Common/LinuxKernel.vala:225 msgid "queuing download" msgstr "download in coda" -#: src/Common/LinuxKernel.vala:237 +#: src/Common/LinuxKernel.vala:236 msgid "Fetching individual kernel indexes" msgstr "Recupero dei singoli indici del kernel" -#: src/Common/LinuxKernel.vala:252 +#: src/Common/LinuxKernel.vala:251 msgid "loading downloaded" msgstr "caricamento dei file scaricati" -#: src/Common/LinuxKernel.vala:291 +#: src/Common/LinuxKernel.vala:290 msgid "Updating from" msgstr "Aggiornamento da" -#: src/Common/LinuxKernel.vala:298 +#: src/Common/LinuxKernel.vala:297 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:301 +#: src/Common/LinuxKernel.vala:300 msgid "FAILED" msgstr "FALLITO" -#: src/Common/LinuxKernel.vala:411 +#: src/Common/LinuxKernel.vala:410 msgid "Found installed" msgstr "Trovato installato" -#: src/Common/LinuxKernel.vala:412 +#: src/Common/LinuxKernel.vala:411 msgid "locked" msgstr "" -#: src/Common/LinuxKernel.vala:413 +#: src/Common/LinuxKernel.vala:412 #, fuzzy msgid "running" msgstr "In esecuzione" -#: src/Common/LinuxKernel.vala:450 src/Common/LinuxKernel.vala:1006 -#: src/Common/LinuxKernel.vala:1088 +#: src/Common/LinuxKernel.vala:449 src/Common/LinuxKernel.vala:1005 +#: src/Common/LinuxKernel.vala:1087 msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:669 src/Gtk/MainWindow.vala:472 +#: src/Common/LinuxKernel.vala:668 src/Gtk/MainWindow.vala:472 msgid "Running" msgstr "In esecuzione" -#: src/Common/LinuxKernel.vala:670 +#: src/Common/LinuxKernel.vala:669 msgid "Installed" msgstr "Installato" -#: src/Common/LinuxKernel.vala:671 +#: src/Common/LinuxKernel.vala:670 msgid "Invalid" msgstr "Non valido" -#: src/Common/LinuxKernel.vala:764 +#: src/Common/LinuxKernel.vala:763 msgid "Packages Available" msgstr "Pacchetti disponibili" -#: src/Common/LinuxKernel.vala:770 +#: src/Common/LinuxKernel.vala:769 msgid "Packages Installed" msgstr "Pacchetti installati" -#: src/Common/LinuxKernel.vala:795 +#: src/Common/LinuxKernel.vala:794 msgid "File not found" msgstr "File non trovato" -#: src/Common/LinuxKernel.vala:822 +#: src/Common/LinuxKernel.vala:821 #, fuzzy msgid "needs update" msgstr "Ultimo aggiornamento" -#: src/Common/LinuxKernel.vala:889 +#: src/Common/LinuxKernel.vala:888 msgid "Available Kernels" msgstr "Kernel disponibili" -#: src/Common/LinuxKernel.vala:923 src/Gtk/MainWindow.vala:139 +#: src/Common/LinuxKernel.vala:922 src/Gtk/MainWindow.vala:139 msgid "Kernel" msgstr "Kernel" -#: src/Common/LinuxKernel.vala:923 +#: src/Common/LinuxKernel.vala:922 #, fuzzy msgid "not found" msgstr "File non trovato" -#: src/Common/LinuxKernel.vala:930 +#: src/Common/LinuxKernel.vala:929 #, fuzzy msgid "Download: no downloadable kernels specified" msgstr "Comando non specificato" -#: src/Common/LinuxKernel.vala:949 +#: src/Common/LinuxKernel.vala:948 msgid "enabled" msgstr "abilitato" -#: src/Common/LinuxKernel.vala:975 +#: src/Common/LinuxKernel.vala:974 msgid "Downloading" msgstr "Scaricamento" -#: src/Common/LinuxKernel.vala:984 +#: src/Common/LinuxKernel.vala:983 msgid "Cached" msgstr "" -#: src/Common/LinuxKernel.vala:992 +#: src/Common/LinuxKernel.vala:991 #, fuzzy msgid "Installing selected kernels" msgstr "Disinstalla i kernel specificati" -#: src/Common/LinuxKernel.vala:998 src/Common/LinuxKernel.vala:1035 +#: src/Common/LinuxKernel.vala:997 src/Common/LinuxKernel.vala:1034 #, fuzzy msgid "Requested" msgstr "richiesto" -#: src/Common/LinuxKernel.vala:1001 +#: src/Common/LinuxKernel.vala:1000 msgid "is already installed." msgstr "è già installato." -#: src/Common/LinuxKernel.vala:1011 +#: src/Common/LinuxKernel.vala:1010 msgid "download failed." msgstr "" -#: src/Common/LinuxKernel.vala:1018 src/Gtk/MainWindow.vala:498 +#: src/Common/LinuxKernel.vala:1017 src/Gtk/MainWindow.vala:498 #, fuzzy msgid "Install: no installable kernels specified" msgstr "Comando non specificato" -#: src/Common/LinuxKernel.vala:1031 +#: src/Common/LinuxKernel.vala:1030 msgid "Uninstalling selected kernels" msgstr "Disinstalla i kernel specificati" -#: src/Common/LinuxKernel.vala:1038 +#: src/Common/LinuxKernel.vala:1037 #, fuzzy msgid "Not uninstalling the currently running kernel" msgstr "non disinstallare il kernel attualmente in esecuzione" -#: src/Common/LinuxKernel.vala:1043 src/Gtk/MainWindow.vala:494 +#: src/Common/LinuxKernel.vala:1042 src/Gtk/MainWindow.vala:494 msgid "is locked" msgstr "" -#: src/Common/LinuxKernel.vala:1051 +#: src/Common/LinuxKernel.vala:1050 msgid "found" msgstr "trovato" -#: src/Common/LinuxKernel.vala:1055 +#: src/Common/LinuxKernel.vala:1054 msgid "Uninstall: no uninstallable packages found" msgstr "" -#: src/Common/LinuxKernel.vala:1084 +#: src/Common/LinuxKernel.vala:1083 #, fuzzy msgid "is the highest installed version." msgstr "Disinstallare tutti tranne la versione più recente installata" -#: src/Common/LinuxKernel.vala:1096 +#: src/Common/LinuxKernel.vala:1095 msgid "Could not find running kernel in list" msgstr "Impossibile trovare il kernel in esecuzione nell'elenco" -#: src/Common/LinuxKernel.vala:1101 +#: src/Common/LinuxKernel.vala:1100 #, fuzzy msgid "No old kernels to uninstall" msgstr "Impossibile trovare alcun kernel da rimuovere" -#: src/Common/LinuxKernel.vala:1102 +#: src/Common/LinuxKernel.vala:1101 msgid "done" msgstr "" -#: src/Common/LinuxKernel.vala:1107 +#: src/Common/LinuxKernel.vala:1106 msgid "The following kernels will be uninstalled" msgstr "I seguenti kernel saranno rimossi" -#: src/Common/LinuxKernel.vala:1109 src/lib/l.misc.vala:12 +#: src/Common/LinuxKernel.vala:1108 src/lib/l.misc.vala:12 #, fuzzy msgid "Continue? (y/N): " msgstr "Continuare ?" -#: src/Common/LinuxKernel.vala:1123 +#: src/Common/LinuxKernel.vala:1122 #, fuzzy msgid "No updates" msgstr "Nessun aggiornamento trovato" -#: src/Common/LinuxKernel.vala:1125 +#: src/Common/LinuxKernel.vala:1124 #, fuzzy, c-format msgid "Install Kernel Version %s ? (y/N): " msgstr "Installare la versione del kernel %s ? (y/n): " diff --git a/po/ko.po b/po/ko.po index b0a58acb..c98e4dff 100644 --- a/po/ko.po +++ b/po/ko.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-27 05:46-0400\n" +"POT-Creation-Date: 2023-06-28 15:01-0400\n" "PO-Revision-Date: 2022-09-28 11:48+0900\n" "Last-Translator: Kevin Kim \n" "Language-Team: Korean\n" @@ -25,188 +25,188 @@ msgstr "아키텍처" msgid "Running kernel" msgstr "현재 실행 중인 커널" -#: src/Common/LinuxKernel.vala:214 +#: src/Common/LinuxKernel.vala:213 msgid "loading cached" msgstr "캐시된 로드 중" -#: src/Common/LinuxKernel.vala:226 +#: src/Common/LinuxKernel.vala:225 msgid "queuing download" msgstr "대기열 다운로드" -#: src/Common/LinuxKernel.vala:237 +#: src/Common/LinuxKernel.vala:236 msgid "Fetching individual kernel indexes" msgstr "개별 커널 인덱스 페치" -#: src/Common/LinuxKernel.vala:252 +#: src/Common/LinuxKernel.vala:251 msgid "loading downloaded" msgstr "다운로드 로드 중" -#: src/Common/LinuxKernel.vala:291 +#: src/Common/LinuxKernel.vala:290 msgid "Updating from" msgstr "다음에서 업데이트" -#: src/Common/LinuxKernel.vala:298 +#: src/Common/LinuxKernel.vala:297 msgid "OK" msgstr "확인" -#: src/Common/LinuxKernel.vala:301 +#: src/Common/LinuxKernel.vala:300 msgid "FAILED" msgstr "실패" -#: src/Common/LinuxKernel.vala:411 +#: src/Common/LinuxKernel.vala:410 msgid "Found installed" msgstr "설치된 것을 찾았습니다" -#: src/Common/LinuxKernel.vala:412 +#: src/Common/LinuxKernel.vala:411 msgid "locked" msgstr "" -#: src/Common/LinuxKernel.vala:413 +#: src/Common/LinuxKernel.vala:412 #, fuzzy msgid "running" msgstr "구동 중" -#: src/Common/LinuxKernel.vala:450 src/Common/LinuxKernel.vala:1006 -#: src/Common/LinuxKernel.vala:1088 +#: src/Common/LinuxKernel.vala:449 src/Common/LinuxKernel.vala:1005 +#: src/Common/LinuxKernel.vala:1087 msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:669 src/Gtk/MainWindow.vala:472 +#: src/Common/LinuxKernel.vala:668 src/Gtk/MainWindow.vala:472 msgid "Running" msgstr "구동 중" -#: src/Common/LinuxKernel.vala:670 +#: src/Common/LinuxKernel.vala:669 msgid "Installed" msgstr "설치 됨" -#: src/Common/LinuxKernel.vala:671 +#: src/Common/LinuxKernel.vala:670 msgid "Invalid" msgstr "사용할 수 없음" -#: src/Common/LinuxKernel.vala:764 +#: src/Common/LinuxKernel.vala:763 msgid "Packages Available" msgstr "설치 가능한 패키지" -#: src/Common/LinuxKernel.vala:770 +#: src/Common/LinuxKernel.vala:769 msgid "Packages Installed" msgstr "설치된 패키지" -#: src/Common/LinuxKernel.vala:795 +#: src/Common/LinuxKernel.vala:794 msgid "File not found" msgstr "파일을 찾을 수 없습니다" -#: src/Common/LinuxKernel.vala:822 +#: src/Common/LinuxKernel.vala:821 #, fuzzy msgid "needs update" msgstr "최신 업데이트" -#: src/Common/LinuxKernel.vala:889 +#: src/Common/LinuxKernel.vala:888 msgid "Available Kernels" msgstr "설치 가능한 커널" -#: src/Common/LinuxKernel.vala:923 src/Gtk/MainWindow.vala:139 +#: src/Common/LinuxKernel.vala:922 src/Gtk/MainWindow.vala:139 msgid "Kernel" msgstr "커널" -#: src/Common/LinuxKernel.vala:923 +#: src/Common/LinuxKernel.vala:922 #, fuzzy msgid "not found" msgstr "파일을 찾을 수 없습니다" -#: src/Common/LinuxKernel.vala:930 +#: src/Common/LinuxKernel.vala:929 #, fuzzy msgid "Download: no downloadable kernels specified" msgstr "지정한 명령어가 없습니다" -#: src/Common/LinuxKernel.vala:949 +#: src/Common/LinuxKernel.vala:948 msgid "enabled" msgstr "사용" -#: src/Common/LinuxKernel.vala:975 +#: src/Common/LinuxKernel.vala:974 msgid "Downloading" msgstr "다운로드" -#: src/Common/LinuxKernel.vala:984 +#: src/Common/LinuxKernel.vala:983 msgid "Cached" msgstr "" -#: src/Common/LinuxKernel.vala:992 +#: src/Common/LinuxKernel.vala:991 #, fuzzy msgid "Installing selected kernels" msgstr "선택한 커널 제거" -#: src/Common/LinuxKernel.vala:998 src/Common/LinuxKernel.vala:1035 +#: src/Common/LinuxKernel.vala:997 src/Common/LinuxKernel.vala:1034 #, fuzzy msgid "Requested" msgstr "요청" -#: src/Common/LinuxKernel.vala:1001 +#: src/Common/LinuxKernel.vala:1000 msgid "is already installed." msgstr "가 이미 설치되어 있습니다" -#: src/Common/LinuxKernel.vala:1011 +#: src/Common/LinuxKernel.vala:1010 msgid "download failed." msgstr "" -#: src/Common/LinuxKernel.vala:1018 src/Gtk/MainWindow.vala:498 +#: src/Common/LinuxKernel.vala:1017 src/Gtk/MainWindow.vala:498 #, fuzzy msgid "Install: no installable kernels specified" msgstr "지정한 명령어가 없습니다" -#: src/Common/LinuxKernel.vala:1031 +#: src/Common/LinuxKernel.vala:1030 msgid "Uninstalling selected kernels" msgstr "선택한 커널 제거" -#: src/Common/LinuxKernel.vala:1038 +#: src/Common/LinuxKernel.vala:1037 #, fuzzy msgid "Not uninstalling the currently running kernel" msgstr "현재 실행 중인 커널을 제거하지 않음" -#: src/Common/LinuxKernel.vala:1043 src/Gtk/MainWindow.vala:494 +#: src/Common/LinuxKernel.vala:1042 src/Gtk/MainWindow.vala:494 msgid "is locked" msgstr "" -#: src/Common/LinuxKernel.vala:1051 +#: src/Common/LinuxKernel.vala:1050 msgid "found" msgstr "설립하다" -#: src/Common/LinuxKernel.vala:1055 +#: src/Common/LinuxKernel.vala:1054 msgid "Uninstall: no uninstallable packages found" msgstr "" -#: src/Common/LinuxKernel.vala:1084 +#: src/Common/LinuxKernel.vala:1083 #, fuzzy msgid "is the highest installed version." msgstr "설치된 가장 높은 버전을 제외한 모든 버전을 제거합니다" -#: src/Common/LinuxKernel.vala:1096 +#: src/Common/LinuxKernel.vala:1095 msgid "Could not find running kernel in list" msgstr "현재 실행 중인 커널을 찾을 수 없습니다" -#: src/Common/LinuxKernel.vala:1101 +#: src/Common/LinuxKernel.vala:1100 #, fuzzy msgid "No old kernels to uninstall" msgstr "삭제할 커널을 찾을 수 없습니다" -#: src/Common/LinuxKernel.vala:1102 +#: src/Common/LinuxKernel.vala:1101 msgid "done" msgstr "" -#: src/Common/LinuxKernel.vala:1107 +#: src/Common/LinuxKernel.vala:1106 msgid "The following kernels will be uninstalled" msgstr "풀이" -#: src/Common/LinuxKernel.vala:1109 src/lib/l.misc.vala:12 +#: src/Common/LinuxKernel.vala:1108 src/lib/l.misc.vala:12 #, fuzzy msgid "Continue? (y/N): " msgstr "계속하시겠습니까?" -#: src/Common/LinuxKernel.vala:1123 +#: src/Common/LinuxKernel.vala:1122 #, fuzzy msgid "No updates" msgstr "업데이트를 찾을 수 없습니다" -#: src/Common/LinuxKernel.vala:1125 +#: src/Common/LinuxKernel.vala:1124 #, fuzzy, c-format msgid "Install Kernel Version %s ? (y/N): " msgstr "커널 %s 버전을 설치하시겠습니까? (y/n): " diff --git a/po/messages.pot b/po/messages.pot index fc41d804..b3b5db1b 100644 --- a/po/messages.pot +++ b/po/messages.pot @@ -6,9 +6,9 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: mainline 1.3.20\n" +"Project-Id-Version: mainline 1.3.21\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-27 05:57-0400\n" +"POT-Creation-Date: 2023-06-28 15:01-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -29,176 +29,176 @@ msgstr "" msgid "Running kernel" msgstr "" -#: src/Common/LinuxKernel.vala:214 +#: src/Common/LinuxKernel.vala:213 msgid "loading cached" msgstr "" -#: src/Common/LinuxKernel.vala:226 +#: src/Common/LinuxKernel.vala:225 msgid "queuing download" msgstr "" -#: src/Common/LinuxKernel.vala:237 +#: src/Common/LinuxKernel.vala:236 msgid "Fetching individual kernel indexes" msgstr "" -#: src/Common/LinuxKernel.vala:252 +#: src/Common/LinuxKernel.vala:251 msgid "loading downloaded" msgstr "" -#: src/Common/LinuxKernel.vala:291 +#: src/Common/LinuxKernel.vala:290 msgid "Updating from" msgstr "" -#: src/Common/LinuxKernel.vala:298 +#: src/Common/LinuxKernel.vala:297 msgid "OK" msgstr "" -#: src/Common/LinuxKernel.vala:301 +#: src/Common/LinuxKernel.vala:300 msgid "FAILED" msgstr "" -#: src/Common/LinuxKernel.vala:411 +#: src/Common/LinuxKernel.vala:410 msgid "Found installed" msgstr "" -#: src/Common/LinuxKernel.vala:412 +#: src/Common/LinuxKernel.vala:411 msgid "locked" msgstr "" -#: src/Common/LinuxKernel.vala:413 +#: src/Common/LinuxKernel.vala:412 msgid "running" msgstr "" -#: src/Common/LinuxKernel.vala:450 src/Common/LinuxKernel.vala:1006 -#: src/Common/LinuxKernel.vala:1088 +#: src/Common/LinuxKernel.vala:449 src/Common/LinuxKernel.vala:1005 +#: src/Common/LinuxKernel.vala:1087 msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:669 src/Gtk/MainWindow.vala:472 +#: src/Common/LinuxKernel.vala:668 src/Gtk/MainWindow.vala:472 msgid "Running" msgstr "" -#: src/Common/LinuxKernel.vala:670 +#: src/Common/LinuxKernel.vala:669 msgid "Installed" msgstr "" -#: src/Common/LinuxKernel.vala:671 +#: src/Common/LinuxKernel.vala:670 msgid "Invalid" msgstr "" -#: src/Common/LinuxKernel.vala:764 +#: src/Common/LinuxKernel.vala:763 msgid "Packages Available" msgstr "" -#: src/Common/LinuxKernel.vala:770 +#: src/Common/LinuxKernel.vala:769 msgid "Packages Installed" msgstr "" -#: src/Common/LinuxKernel.vala:795 +#: src/Common/LinuxKernel.vala:794 msgid "File not found" msgstr "" -#: src/Common/LinuxKernel.vala:822 +#: src/Common/LinuxKernel.vala:821 msgid "needs update" msgstr "" -#: src/Common/LinuxKernel.vala:889 +#: src/Common/LinuxKernel.vala:888 msgid "Available Kernels" msgstr "" -#: src/Common/LinuxKernel.vala:923 src/Gtk/MainWindow.vala:139 +#: src/Common/LinuxKernel.vala:922 src/Gtk/MainWindow.vala:139 msgid "Kernel" msgstr "" -#: src/Common/LinuxKernel.vala:923 +#: src/Common/LinuxKernel.vala:922 msgid "not found" msgstr "" -#: src/Common/LinuxKernel.vala:930 +#: src/Common/LinuxKernel.vala:929 msgid "Download: no downloadable kernels specified" msgstr "" -#: src/Common/LinuxKernel.vala:949 +#: src/Common/LinuxKernel.vala:948 msgid "enabled" msgstr "" -#: src/Common/LinuxKernel.vala:975 +#: src/Common/LinuxKernel.vala:974 msgid "Downloading" msgstr "" -#: src/Common/LinuxKernel.vala:984 +#: src/Common/LinuxKernel.vala:983 msgid "Cached" msgstr "" -#: src/Common/LinuxKernel.vala:992 +#: src/Common/LinuxKernel.vala:991 msgid "Installing selected kernels" msgstr "" -#: src/Common/LinuxKernel.vala:998 src/Common/LinuxKernel.vala:1035 +#: src/Common/LinuxKernel.vala:997 src/Common/LinuxKernel.vala:1034 msgid "Requested" msgstr "" -#: src/Common/LinuxKernel.vala:1001 +#: src/Common/LinuxKernel.vala:1000 msgid "is already installed." msgstr "" -#: src/Common/LinuxKernel.vala:1011 +#: src/Common/LinuxKernel.vala:1010 msgid "download failed." msgstr "" -#: src/Common/LinuxKernel.vala:1018 src/Gtk/MainWindow.vala:498 +#: src/Common/LinuxKernel.vala:1017 src/Gtk/MainWindow.vala:498 msgid "Install: no installable kernels specified" msgstr "" -#: src/Common/LinuxKernel.vala:1031 +#: src/Common/LinuxKernel.vala:1030 msgid "Uninstalling selected kernels" msgstr "" -#: src/Common/LinuxKernel.vala:1038 +#: src/Common/LinuxKernel.vala:1037 msgid "Not uninstalling the currently running kernel" msgstr "" -#: src/Common/LinuxKernel.vala:1043 src/Gtk/MainWindow.vala:494 +#: src/Common/LinuxKernel.vala:1042 src/Gtk/MainWindow.vala:494 msgid "is locked" msgstr "" -#: src/Common/LinuxKernel.vala:1051 +#: src/Common/LinuxKernel.vala:1050 msgid "found" msgstr "" -#: src/Common/LinuxKernel.vala:1055 +#: src/Common/LinuxKernel.vala:1054 msgid "Uninstall: no uninstallable packages found" msgstr "" -#: src/Common/LinuxKernel.vala:1084 +#: src/Common/LinuxKernel.vala:1083 msgid "is the highest installed version." msgstr "" -#: src/Common/LinuxKernel.vala:1096 +#: src/Common/LinuxKernel.vala:1095 msgid "Could not find running kernel in list" msgstr "" -#: src/Common/LinuxKernel.vala:1101 +#: src/Common/LinuxKernel.vala:1100 msgid "No old kernels to uninstall" msgstr "" -#: src/Common/LinuxKernel.vala:1102 +#: src/Common/LinuxKernel.vala:1101 msgid "done" msgstr "" -#: src/Common/LinuxKernel.vala:1107 +#: src/Common/LinuxKernel.vala:1106 msgid "The following kernels will be uninstalled" msgstr "" -#: src/Common/LinuxKernel.vala:1109 src/lib/l.misc.vala:12 +#: src/Common/LinuxKernel.vala:1108 src/lib/l.misc.vala:12 msgid "Continue? (y/N): " msgstr "" -#: src/Common/LinuxKernel.vala:1123 +#: src/Common/LinuxKernel.vala:1122 msgid "No updates" msgstr "" -#: src/Common/LinuxKernel.vala:1125 +#: src/Common/LinuxKernel.vala:1124 #, c-format msgid "Install Kernel Version %s ? (y/N): " msgstr "" diff --git a/po/nl.po b/po/nl.po index 365dde49..bf4f2bb3 100644 --- a/po/nl.po +++ b/po/nl.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-27 05:46-0400\n" +"POT-Creation-Date: 2023-06-28 15:01-0400\n" "PO-Revision-Date: 2020-08-23 13:55+0200\n" "Last-Translator: Heimen Stoffels \n" "Language-Team: Dutch (Netherlands)\n" @@ -25,188 +25,188 @@ msgstr "Architectuur" msgid "Running kernel" msgstr "Kernel uitvoeren" -#: src/Common/LinuxKernel.vala:214 +#: src/Common/LinuxKernel.vala:213 msgid "loading cached" msgstr "laden in cache" -#: src/Common/LinuxKernel.vala:226 +#: src/Common/LinuxKernel.vala:225 msgid "queuing download" msgstr "wachtrijen downloaden" -#: src/Common/LinuxKernel.vala:237 +#: src/Common/LinuxKernel.vala:236 msgid "Fetching individual kernel indexes" msgstr "Afzonderlijke kernelindexen ophalen" -#: src/Common/LinuxKernel.vala:252 +#: src/Common/LinuxKernel.vala:251 msgid "loading downloaded" msgstr "laden gedownload" -#: src/Common/LinuxKernel.vala:291 +#: src/Common/LinuxKernel.vala:290 msgid "Updating from" msgstr "Bijwerken van" -#: src/Common/LinuxKernel.vala:298 +#: src/Common/LinuxKernel.vala:297 msgid "OK" msgstr "Oké" -#: src/Common/LinuxKernel.vala:301 +#: src/Common/LinuxKernel.vala:300 msgid "FAILED" msgstr "MISLUKT" -#: src/Common/LinuxKernel.vala:411 +#: src/Common/LinuxKernel.vala:410 msgid "Found installed" msgstr "Geïnstalleerd gevonden" -#: src/Common/LinuxKernel.vala:412 +#: src/Common/LinuxKernel.vala:411 msgid "locked" msgstr "" -#: src/Common/LinuxKernel.vala:413 +#: src/Common/LinuxKernel.vala:412 #, fuzzy msgid "running" msgstr "In gebruik" -#: src/Common/LinuxKernel.vala:450 src/Common/LinuxKernel.vala:1006 -#: src/Common/LinuxKernel.vala:1088 +#: src/Common/LinuxKernel.vala:449 src/Common/LinuxKernel.vala:1005 +#: src/Common/LinuxKernel.vala:1087 msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:669 src/Gtk/MainWindow.vala:472 +#: src/Common/LinuxKernel.vala:668 src/Gtk/MainWindow.vala:472 msgid "Running" msgstr "In gebruik" -#: src/Common/LinuxKernel.vala:670 +#: src/Common/LinuxKernel.vala:669 msgid "Installed" msgstr "Geïnstalleerd" -#: src/Common/LinuxKernel.vala:671 +#: src/Common/LinuxKernel.vala:670 msgid "Invalid" msgstr "Ongeldig" -#: src/Common/LinuxKernel.vala:764 +#: src/Common/LinuxKernel.vala:763 msgid "Packages Available" msgstr "Beschikbare pakketten" -#: src/Common/LinuxKernel.vala:770 +#: src/Common/LinuxKernel.vala:769 msgid "Packages Installed" msgstr "Geïnstalleerde pakketten" -#: src/Common/LinuxKernel.vala:795 +#: src/Common/LinuxKernel.vala:794 msgid "File not found" msgstr "Het bestand is niet gevonden" -#: src/Common/LinuxKernel.vala:822 +#: src/Common/LinuxKernel.vala:821 #, fuzzy msgid "needs update" msgstr "Recentste update" -#: src/Common/LinuxKernel.vala:889 +#: src/Common/LinuxKernel.vala:888 msgid "Available Kernels" msgstr "Beschikbare kernels" -#: src/Common/LinuxKernel.vala:923 src/Gtk/MainWindow.vala:139 +#: src/Common/LinuxKernel.vala:922 src/Gtk/MainWindow.vala:139 msgid "Kernel" msgstr "Kernel" -#: src/Common/LinuxKernel.vala:923 +#: src/Common/LinuxKernel.vala:922 #, fuzzy msgid "not found" msgstr "Het bestand is niet gevonden" -#: src/Common/LinuxKernel.vala:930 +#: src/Common/LinuxKernel.vala:929 #, fuzzy msgid "Download: no downloadable kernels specified" msgstr "Geen opdracht opgegeven" -#: src/Common/LinuxKernel.vala:949 +#: src/Common/LinuxKernel.vala:948 msgid "enabled" msgstr "ingeschakeld" -#: src/Common/LinuxKernel.vala:975 +#: src/Common/LinuxKernel.vala:974 msgid "Downloading" msgstr "Downloaden" -#: src/Common/LinuxKernel.vala:984 +#: src/Common/LinuxKernel.vala:983 msgid "Cached" msgstr "" -#: src/Common/LinuxKernel.vala:992 +#: src/Common/LinuxKernel.vala:991 #, fuzzy msgid "Installing selected kernels" msgstr "Geselecteerde kernels verwijderen" -#: src/Common/LinuxKernel.vala:998 src/Common/LinuxKernel.vala:1035 +#: src/Common/LinuxKernel.vala:997 src/Common/LinuxKernel.vala:1034 #, fuzzy msgid "Requested" msgstr "verzocht" -#: src/Common/LinuxKernel.vala:1001 +#: src/Common/LinuxKernel.vala:1000 msgid "is already installed." msgstr "is al geïnstalleerd." -#: src/Common/LinuxKernel.vala:1011 +#: src/Common/LinuxKernel.vala:1010 msgid "download failed." msgstr "" -#: src/Common/LinuxKernel.vala:1018 src/Gtk/MainWindow.vala:498 +#: src/Common/LinuxKernel.vala:1017 src/Gtk/MainWindow.vala:498 #, fuzzy msgid "Install: no installable kernels specified" msgstr "Geen opdracht opgegeven" -#: src/Common/LinuxKernel.vala:1031 +#: src/Common/LinuxKernel.vala:1030 msgid "Uninstalling selected kernels" msgstr "Geselecteerde kernels verwijderen" -#: src/Common/LinuxKernel.vala:1038 +#: src/Common/LinuxKernel.vala:1037 #, fuzzy msgid "Not uninstalling the currently running kernel" msgstr "de momenteel actieve kernel niet verwijderen" -#: src/Common/LinuxKernel.vala:1043 src/Gtk/MainWindow.vala:494 +#: src/Common/LinuxKernel.vala:1042 src/Gtk/MainWindow.vala:494 msgid "is locked" msgstr "" -#: src/Common/LinuxKernel.vala:1051 +#: src/Common/LinuxKernel.vala:1050 msgid "found" msgstr "gevonden" -#: src/Common/LinuxKernel.vala:1055 +#: src/Common/LinuxKernel.vala:1054 msgid "Uninstall: no uninstallable packages found" msgstr "" -#: src/Common/LinuxKernel.vala:1084 +#: src/Common/LinuxKernel.vala:1083 #, fuzzy msgid "is the highest installed version." msgstr "Verwijder alle behalve de hoogst geïnstalleerde versie" -#: src/Common/LinuxKernel.vala:1096 +#: src/Common/LinuxKernel.vala:1095 msgid "Could not find running kernel in list" msgstr "De in gebruik zijnde kernel staat niet op de lijst" -#: src/Common/LinuxKernel.vala:1101 +#: src/Common/LinuxKernel.vala:1100 #, fuzzy msgid "No old kernels to uninstall" msgstr "Er zijn geen te verwijderen kernels" -#: src/Common/LinuxKernel.vala:1102 +#: src/Common/LinuxKernel.vala:1101 msgid "done" msgstr "" -#: src/Common/LinuxKernel.vala:1107 +#: src/Common/LinuxKernel.vala:1106 msgid "The following kernels will be uninstalled" msgstr "De volgende kernels worden verwijderd" -#: src/Common/LinuxKernel.vala:1109 src/lib/l.misc.vala:12 +#: src/Common/LinuxKernel.vala:1108 src/lib/l.misc.vala:12 #, fuzzy msgid "Continue? (y/N): " msgstr "Wilt u doorgaan?" -#: src/Common/LinuxKernel.vala:1123 +#: src/Common/LinuxKernel.vala:1122 #, fuzzy msgid "No updates" msgstr "Geen updates gevonden" -#: src/Common/LinuxKernel.vala:1125 +#: src/Common/LinuxKernel.vala:1124 #, fuzzy, c-format msgid "Install Kernel Version %s ? (y/N): " msgstr "Wilt u versie %s installeren? (j/n): " diff --git a/po/pl.po b/po/pl.po index 0082dd49..429edcbb 100644 --- a/po/pl.po +++ b/po/pl.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-27 05:46-0400\n" +"POT-Creation-Date: 2023-06-28 15:01-0400\n" "PO-Revision-Date: 2023-06-21 01:02+0200\n" "Last-Translator: Matthaiks\n" "Language-Team: Polish\n" @@ -24,177 +24,177 @@ msgstr "Architektura" msgid "Running kernel" msgstr "Uruchomione jądro" -#: src/Common/LinuxKernel.vala:214 +#: src/Common/LinuxKernel.vala:213 msgid "loading cached" msgstr "ładowanie z pamięci podręcznej" -#: src/Common/LinuxKernel.vala:226 +#: src/Common/LinuxKernel.vala:225 msgid "queuing download" msgstr "pobieranie w kolejce" -#: src/Common/LinuxKernel.vala:237 +#: src/Common/LinuxKernel.vala:236 msgid "Fetching individual kernel indexes" msgstr "Pobieranie indywidualnych indeksów jądra" -#: src/Common/LinuxKernel.vala:252 +#: src/Common/LinuxKernel.vala:251 msgid "loading downloaded" msgstr "ładowanie pobranych" -#: src/Common/LinuxKernel.vala:291 +#: src/Common/LinuxKernel.vala:290 msgid "Updating from" msgstr "Aktualizowanie z" -#: src/Common/LinuxKernel.vala:298 +#: src/Common/LinuxKernel.vala:297 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:301 +#: src/Common/LinuxKernel.vala:300 msgid "FAILED" msgstr "NIEPOWODZENIE" -#: src/Common/LinuxKernel.vala:411 +#: src/Common/LinuxKernel.vala:410 msgid "Found installed" msgstr "Znaleziono zainstalowane" -#: src/Common/LinuxKernel.vala:412 +#: src/Common/LinuxKernel.vala:411 msgid "locked" msgstr "zablokowane" -#: src/Common/LinuxKernel.vala:413 +#: src/Common/LinuxKernel.vala:412 msgid "running" msgstr "uruchomione" -#: src/Common/LinuxKernel.vala:450 src/Common/LinuxKernel.vala:1006 -#: src/Common/LinuxKernel.vala:1088 +#: src/Common/LinuxKernel.vala:449 src/Common/LinuxKernel.vala:1005 +#: src/Common/LinuxKernel.vala:1087 msgid "is locked." msgstr "jest zablokowane." -#: src/Common/LinuxKernel.vala:669 src/Gtk/MainWindow.vala:472 +#: src/Common/LinuxKernel.vala:668 src/Gtk/MainWindow.vala:472 msgid "Running" msgstr "Uruchomione" -#: src/Common/LinuxKernel.vala:670 +#: src/Common/LinuxKernel.vala:669 msgid "Installed" msgstr "Zainstalowane" -#: src/Common/LinuxKernel.vala:671 +#: src/Common/LinuxKernel.vala:670 msgid "Invalid" msgstr "Nieprawidłowe" -#: src/Common/LinuxKernel.vala:764 +#: src/Common/LinuxKernel.vala:763 msgid "Packages Available" msgstr "Dostępne pakiety" -#: src/Common/LinuxKernel.vala:770 +#: src/Common/LinuxKernel.vala:769 msgid "Packages Installed" msgstr "Pakiety zainstalowane" -#: src/Common/LinuxKernel.vala:795 +#: src/Common/LinuxKernel.vala:794 msgid "File not found" msgstr "Nie odnaleziono pliku" -#: src/Common/LinuxKernel.vala:822 +#: src/Common/LinuxKernel.vala:821 msgid "needs update" msgstr "wymaga aktualizacji" -#: src/Common/LinuxKernel.vala:889 +#: src/Common/LinuxKernel.vala:888 msgid "Available Kernels" msgstr "Dostępne jądra" -#: src/Common/LinuxKernel.vala:923 src/Gtk/MainWindow.vala:139 +#: src/Common/LinuxKernel.vala:922 src/Gtk/MainWindow.vala:139 msgid "Kernel" msgstr "Jądro" -#: src/Common/LinuxKernel.vala:923 +#: src/Common/LinuxKernel.vala:922 msgid "not found" msgstr "nie odnaleziono" -#: src/Common/LinuxKernel.vala:930 +#: src/Common/LinuxKernel.vala:929 msgid "Download: no downloadable kernels specified" msgstr "Pobieranie: nie określono jąder do pobrania" -#: src/Common/LinuxKernel.vala:949 +#: src/Common/LinuxKernel.vala:948 msgid "enabled" msgstr "włączone" -#: src/Common/LinuxKernel.vala:975 +#: src/Common/LinuxKernel.vala:974 msgid "Downloading" msgstr "Pobieranie" -#: src/Common/LinuxKernel.vala:984 +#: src/Common/LinuxKernel.vala:983 msgid "Cached" msgstr "Buforowane" -#: src/Common/LinuxKernel.vala:992 +#: src/Common/LinuxKernel.vala:991 msgid "Installing selected kernels" msgstr "Instalowanie wybranych jąder" -#: src/Common/LinuxKernel.vala:998 src/Common/LinuxKernel.vala:1035 +#: src/Common/LinuxKernel.vala:997 src/Common/LinuxKernel.vala:1034 msgid "Requested" msgstr "Zażądane" -#: src/Common/LinuxKernel.vala:1001 +#: src/Common/LinuxKernel.vala:1000 msgid "is already installed." msgstr "jest już zainstalowane." -#: src/Common/LinuxKernel.vala:1011 +#: src/Common/LinuxKernel.vala:1010 msgid "download failed." msgstr "pobieranie nie powiodło się." -#: src/Common/LinuxKernel.vala:1018 src/Gtk/MainWindow.vala:498 +#: src/Common/LinuxKernel.vala:1017 src/Gtk/MainWindow.vala:498 msgid "Install: no installable kernels specified" msgstr "Instalowanie: nie określono jądra do zainstalowania" -#: src/Common/LinuxKernel.vala:1031 +#: src/Common/LinuxKernel.vala:1030 msgid "Uninstalling selected kernels" msgstr "Odinstalowanie wybranych jąder" -#: src/Common/LinuxKernel.vala:1038 +#: src/Common/LinuxKernel.vala:1037 msgid "Not uninstalling the currently running kernel" msgstr "Bez odinstalowywania aktualnie uruchomionego jądra" -#: src/Common/LinuxKernel.vala:1043 src/Gtk/MainWindow.vala:494 +#: src/Common/LinuxKernel.vala:1042 src/Gtk/MainWindow.vala:494 msgid "is locked" msgstr "jest zablokowane" -#: src/Common/LinuxKernel.vala:1051 +#: src/Common/LinuxKernel.vala:1050 msgid "found" msgstr "znalezione" -#: src/Common/LinuxKernel.vala:1055 +#: src/Common/LinuxKernel.vala:1054 msgid "Uninstall: no uninstallable packages found" msgstr "Odinstalowanie: nie znaleziono pakietów, które można odinstalować" -#: src/Common/LinuxKernel.vala:1084 +#: src/Common/LinuxKernel.vala:1083 msgid "is the highest installed version." msgstr "to najwyższa zainstalowana wersja." -#: src/Common/LinuxKernel.vala:1096 +#: src/Common/LinuxKernel.vala:1095 msgid "Could not find running kernel in list" msgstr "Nie można znaleźć uruchomionego jądra na liście" -#: src/Common/LinuxKernel.vala:1101 +#: src/Common/LinuxKernel.vala:1100 msgid "No old kernels to uninstall" msgstr "Brak starych jąder do odinstalowania" -#: src/Common/LinuxKernel.vala:1102 +#: src/Common/LinuxKernel.vala:1101 msgid "done" msgstr "gotowe" -#: src/Common/LinuxKernel.vala:1107 +#: src/Common/LinuxKernel.vala:1106 msgid "The following kernels will be uninstalled" msgstr "Następujące jądra zostaną odinstalowane" -#: src/Common/LinuxKernel.vala:1109 src/lib/l.misc.vala:12 +#: src/Common/LinuxKernel.vala:1108 src/lib/l.misc.vala:12 #, fuzzy msgid "Continue? (y/N): " msgstr "Kontynuować?" -#: src/Common/LinuxKernel.vala:1123 +#: src/Common/LinuxKernel.vala:1122 msgid "No updates" msgstr "Brak aktualizacji" -#: src/Common/LinuxKernel.vala:1125 +#: src/Common/LinuxKernel.vala:1124 #, fuzzy, c-format msgid "Install Kernel Version %s ? (y/N): " msgstr "Zainstalować wersję jądra %s? (t/n): " diff --git a/po/ru.po b/po/ru.po index 9282283f..1840238e 100644 --- a/po/ru.po +++ b/po/ru.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-27 05:46-0400\n" +"POT-Creation-Date: 2023-06-28 15:01-0400\n" "PO-Revision-Date: 2023-06-28 00:07+0300\n" "Last-Translator: Danik2343 \n" "Language-Team: Russian\n" @@ -25,176 +25,176 @@ msgstr "Архитектура" msgid "Running kernel" msgstr "Запущенное ядро" -#: src/Common/LinuxKernel.vala:214 +#: src/Common/LinuxKernel.vala:213 msgid "loading cached" msgstr "загрузка в кэше" -#: src/Common/LinuxKernel.vala:226 +#: src/Common/LinuxKernel.vala:225 msgid "queuing download" msgstr "загрузка очередей" -#: src/Common/LinuxKernel.vala:237 +#: src/Common/LinuxKernel.vala:236 msgid "Fetching individual kernel indexes" msgstr "Получение отдельных индексов ядра" -#: src/Common/LinuxKernel.vala:252 +#: src/Common/LinuxKernel.vala:251 msgid "loading downloaded" msgstr "загрузка загруженных" -#: src/Common/LinuxKernel.vala:291 +#: src/Common/LinuxKernel.vala:290 msgid "Updating from" msgstr "Обновление из" -#: src/Common/LinuxKernel.vala:298 +#: src/Common/LinuxKernel.vala:297 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:301 +#: src/Common/LinuxKernel.vala:300 msgid "FAILED" msgstr "НЕУДАВШИЙСЯ" -#: src/Common/LinuxKernel.vala:411 +#: src/Common/LinuxKernel.vala:410 msgid "Found installed" msgstr "Найдено установлененное" -#: src/Common/LinuxKernel.vala:412 +#: src/Common/LinuxKernel.vala:411 msgid "locked" msgstr "заблокирован" -#: src/Common/LinuxKernel.vala:413 +#: src/Common/LinuxKernel.vala:412 msgid "running" msgstr "запущено" -#: src/Common/LinuxKernel.vala:450 src/Common/LinuxKernel.vala:1006 -#: src/Common/LinuxKernel.vala:1088 +#: src/Common/LinuxKernel.vala:449 src/Common/LinuxKernel.vala:1005 +#: src/Common/LinuxKernel.vala:1087 msgid "is locked." msgstr "заблокирован." -#: src/Common/LinuxKernel.vala:669 src/Gtk/MainWindow.vala:472 +#: src/Common/LinuxKernel.vala:668 src/Gtk/MainWindow.vala:472 msgid "Running" msgstr "Используется" -#: src/Common/LinuxKernel.vala:670 +#: src/Common/LinuxKernel.vala:669 msgid "Installed" msgstr "Установлено" -#: src/Common/LinuxKernel.vala:671 +#: src/Common/LinuxKernel.vala:670 msgid "Invalid" msgstr "Негодный" -#: src/Common/LinuxKernel.vala:764 +#: src/Common/LinuxKernel.vala:763 msgid "Packages Available" msgstr "Доступные пакеты" -#: src/Common/LinuxKernel.vala:770 +#: src/Common/LinuxKernel.vala:769 msgid "Packages Installed" msgstr "Установленные пакеты" -#: src/Common/LinuxKernel.vala:795 +#: src/Common/LinuxKernel.vala:794 msgid "File not found" msgstr "Файл не найден" -#: src/Common/LinuxKernel.vala:822 +#: src/Common/LinuxKernel.vala:821 msgid "needs update" msgstr "требуется обновление" -#: src/Common/LinuxKernel.vala:889 +#: src/Common/LinuxKernel.vala:888 msgid "Available Kernels" msgstr "Доступные ядра" -#: src/Common/LinuxKernel.vala:923 src/Gtk/MainWindow.vala:139 +#: src/Common/LinuxKernel.vala:922 src/Gtk/MainWindow.vala:139 msgid "Kernel" msgstr "Ядро" -#: src/Common/LinuxKernel.vala:923 +#: src/Common/LinuxKernel.vala:922 msgid "not found" msgstr "не найдено" -#: src/Common/LinuxKernel.vala:930 +#: src/Common/LinuxKernel.vala:929 msgid "Download: no downloadable kernels specified" msgstr "Загрузка: не указаны загружаемые ядра" -#: src/Common/LinuxKernel.vala:949 +#: src/Common/LinuxKernel.vala:948 msgid "enabled" msgstr "включено" -#: src/Common/LinuxKernel.vala:975 +#: src/Common/LinuxKernel.vala:974 msgid "Downloading" msgstr "Загрузки" -#: src/Common/LinuxKernel.vala:984 +#: src/Common/LinuxKernel.vala:983 msgid "Cached" msgstr "Кэшировано" -#: src/Common/LinuxKernel.vala:992 +#: src/Common/LinuxKernel.vala:991 msgid "Installing selected kernels" msgstr "Установка выбранных ядер" -#: src/Common/LinuxKernel.vala:998 src/Common/LinuxKernel.vala:1035 +#: src/Common/LinuxKernel.vala:997 src/Common/LinuxKernel.vala:1034 msgid "Requested" msgstr "Запрошено" -#: src/Common/LinuxKernel.vala:1001 +#: src/Common/LinuxKernel.vala:1000 msgid "is already installed." msgstr "уже установлен." -#: src/Common/LinuxKernel.vala:1011 +#: src/Common/LinuxKernel.vala:1010 msgid "download failed." msgstr "загрузка не удалась." -#: src/Common/LinuxKernel.vala:1018 src/Gtk/MainWindow.vala:498 +#: src/Common/LinuxKernel.vala:1017 src/Gtk/MainWindow.vala:498 msgid "Install: no installable kernels specified" msgstr "Команда не указана" -#: src/Common/LinuxKernel.vala:1031 +#: src/Common/LinuxKernel.vala:1030 msgid "Uninstalling selected kernels" msgstr "Удаление выбранных ядер" -#: src/Common/LinuxKernel.vala:1038 +#: src/Common/LinuxKernel.vala:1037 msgid "Not uninstalling the currently running kernel" msgstr "Не удалять запущенное в данный момент ядро" -#: src/Common/LinuxKernel.vala:1043 src/Gtk/MainWindow.vala:494 +#: src/Common/LinuxKernel.vala:1042 src/Gtk/MainWindow.vala:494 msgid "is locked" msgstr "заблокирован" -#: src/Common/LinuxKernel.vala:1051 +#: src/Common/LinuxKernel.vala:1050 msgid "found" msgstr "найдено" -#: src/Common/LinuxKernel.vala:1055 +#: src/Common/LinuxKernel.vala:1054 msgid "Uninstall: no uninstallable packages found" msgstr "Удаление: не найдено удаляемых пакетов" -#: src/Common/LinuxKernel.vala:1084 +#: src/Common/LinuxKernel.vala:1083 msgid "is the highest installed version." msgstr "это самая высокая установленная версия." -#: src/Common/LinuxKernel.vala:1096 +#: src/Common/LinuxKernel.vala:1095 msgid "Could not find running kernel in list" msgstr "Could not find running kernel in list" -#: src/Common/LinuxKernel.vala:1101 +#: src/Common/LinuxKernel.vala:1100 msgid "No old kernels to uninstall" msgstr "Нет старых ядер для деинсталяции" -#: src/Common/LinuxKernel.vala:1102 +#: src/Common/LinuxKernel.vala:1101 msgid "done" msgstr "готово" -#: src/Common/LinuxKernel.vala:1107 +#: src/Common/LinuxKernel.vala:1106 msgid "The following kernels will be uninstalled" msgstr "Следующие ядра будут удалены" -#: src/Common/LinuxKernel.vala:1109 src/lib/l.misc.vala:12 +#: src/Common/LinuxKernel.vala:1108 src/lib/l.misc.vala:12 msgid "Continue? (y/N): " msgstr "Продолжить? (y/N): " -#: src/Common/LinuxKernel.vala:1123 +#: src/Common/LinuxKernel.vala:1122 msgid "No updates" msgstr "Нет обнолений" -#: src/Common/LinuxKernel.vala:1125 +#: src/Common/LinuxKernel.vala:1124 #, c-format msgid "Install Kernel Version %s ? (y/N): " msgstr "Установить версию ядра %s ? (y/N): " diff --git a/po/sv.po b/po/sv.po index 1446827d..679b2c3b 100644 --- a/po/sv.po +++ b/po/sv.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-27 05:46-0400\n" +"POT-Creation-Date: 2023-06-28 15:01-0400\n" "PO-Revision-Date: 2018-01-13 16:56+0100\n" "Last-Translator: Åke Engelbrektson \n" "Language-Team:Swedish\n" @@ -25,188 +25,188 @@ msgstr "Arkitektur" msgid "Running kernel" msgstr "Löpande kernel" -#: src/Common/LinuxKernel.vala:214 +#: src/Common/LinuxKernel.vala:213 msgid "loading cached" msgstr "laddar cachelagrat" -#: src/Common/LinuxKernel.vala:226 +#: src/Common/LinuxKernel.vala:225 msgid "queuing download" msgstr "köbildning nedladdning" -#: src/Common/LinuxKernel.vala:237 +#: src/Common/LinuxKernel.vala:236 msgid "Fetching individual kernel indexes" msgstr "Hämta enskilda kernelindex" -#: src/Common/LinuxKernel.vala:252 +#: src/Common/LinuxKernel.vala:251 msgid "loading downloaded" msgstr "laddar nedladdad" -#: src/Common/LinuxKernel.vala:291 +#: src/Common/LinuxKernel.vala:290 msgid "Updating from" msgstr "Uppdatering från" -#: src/Common/LinuxKernel.vala:298 +#: src/Common/LinuxKernel.vala:297 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:301 +#: src/Common/LinuxKernel.vala:300 msgid "FAILED" msgstr "MISSLYCKADES" -#: src/Common/LinuxKernel.vala:411 +#: src/Common/LinuxKernel.vala:410 msgid "Found installed" msgstr "Hittade installerat" -#: src/Common/LinuxKernel.vala:412 +#: src/Common/LinuxKernel.vala:411 msgid "locked" msgstr "" -#: src/Common/LinuxKernel.vala:413 +#: src/Common/LinuxKernel.vala:412 #, fuzzy msgid "running" msgstr "Körs" -#: src/Common/LinuxKernel.vala:450 src/Common/LinuxKernel.vala:1006 -#: src/Common/LinuxKernel.vala:1088 +#: src/Common/LinuxKernel.vala:449 src/Common/LinuxKernel.vala:1005 +#: src/Common/LinuxKernel.vala:1087 msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:669 src/Gtk/MainWindow.vala:472 +#: src/Common/LinuxKernel.vala:668 src/Gtk/MainWindow.vala:472 msgid "Running" msgstr "Körs" -#: src/Common/LinuxKernel.vala:670 +#: src/Common/LinuxKernel.vala:669 msgid "Installed" msgstr "Installerad" -#: src/Common/LinuxKernel.vala:671 +#: src/Common/LinuxKernel.vala:670 msgid "Invalid" msgstr "Ogiltig" -#: src/Common/LinuxKernel.vala:764 +#: src/Common/LinuxKernel.vala:763 msgid "Packages Available" msgstr "Tillgängliga paket" -#: src/Common/LinuxKernel.vala:770 +#: src/Common/LinuxKernel.vala:769 msgid "Packages Installed" msgstr "Installerade paket" -#: src/Common/LinuxKernel.vala:795 +#: src/Common/LinuxKernel.vala:794 msgid "File not found" msgstr "Filen kan inte hittas" -#: src/Common/LinuxKernel.vala:822 +#: src/Common/LinuxKernel.vala:821 #, fuzzy msgid "needs update" msgstr "Senaste uppdatering" -#: src/Common/LinuxKernel.vala:889 +#: src/Common/LinuxKernel.vala:888 msgid "Available Kernels" msgstr "Tillgängliga kärnor" -#: src/Common/LinuxKernel.vala:923 src/Gtk/MainWindow.vala:139 +#: src/Common/LinuxKernel.vala:922 src/Gtk/MainWindow.vala:139 msgid "Kernel" msgstr "Kärna" -#: src/Common/LinuxKernel.vala:923 +#: src/Common/LinuxKernel.vala:922 #, fuzzy msgid "not found" msgstr "Filen kan inte hittas" -#: src/Common/LinuxKernel.vala:930 +#: src/Common/LinuxKernel.vala:929 #, fuzzy msgid "Download: no downloadable kernels specified" msgstr "Kommandot har inte angetts" -#: src/Common/LinuxKernel.vala:949 +#: src/Common/LinuxKernel.vala:948 msgid "enabled" msgstr "aktiverat" -#: src/Common/LinuxKernel.vala:975 +#: src/Common/LinuxKernel.vala:974 msgid "Downloading" msgstr "Ladda ner" -#: src/Common/LinuxKernel.vala:984 +#: src/Common/LinuxKernel.vala:983 msgid "Cached" msgstr "" -#: src/Common/LinuxKernel.vala:992 +#: src/Common/LinuxKernel.vala:991 #, fuzzy msgid "Installing selected kernels" msgstr "Avinstallera valda kärnor" -#: src/Common/LinuxKernel.vala:998 src/Common/LinuxKernel.vala:1035 +#: src/Common/LinuxKernel.vala:997 src/Common/LinuxKernel.vala:1034 #, fuzzy msgid "Requested" msgstr "begärd" -#: src/Common/LinuxKernel.vala:1001 +#: src/Common/LinuxKernel.vala:1000 msgid "is already installed." msgstr "är redan installerat." -#: src/Common/LinuxKernel.vala:1011 +#: src/Common/LinuxKernel.vala:1010 msgid "download failed." msgstr "" -#: src/Common/LinuxKernel.vala:1018 src/Gtk/MainWindow.vala:498 +#: src/Common/LinuxKernel.vala:1017 src/Gtk/MainWindow.vala:498 #, fuzzy msgid "Install: no installable kernels specified" msgstr "Kommandot har inte angetts" -#: src/Common/LinuxKernel.vala:1031 +#: src/Common/LinuxKernel.vala:1030 msgid "Uninstalling selected kernels" msgstr "Avinstallera valda kärnor" -#: src/Common/LinuxKernel.vala:1038 +#: src/Common/LinuxKernel.vala:1037 #, fuzzy msgid "Not uninstalling the currently running kernel" msgstr "Avinstallera inte den kärna som körs, för närvarande" -#: src/Common/LinuxKernel.vala:1043 src/Gtk/MainWindow.vala:494 +#: src/Common/LinuxKernel.vala:1042 src/Gtk/MainWindow.vala:494 msgid "is locked" msgstr "" -#: src/Common/LinuxKernel.vala:1051 +#: src/Common/LinuxKernel.vala:1050 msgid "found" msgstr "grunda" -#: src/Common/LinuxKernel.vala:1055 +#: src/Common/LinuxKernel.vala:1054 msgid "Uninstall: no uninstallable packages found" msgstr "" -#: src/Common/LinuxKernel.vala:1084 +#: src/Common/LinuxKernel.vala:1083 #, fuzzy msgid "is the highest installed version." msgstr "Avinstallera alla utom den högsta installerade versionen" -#: src/Common/LinuxKernel.vala:1096 +#: src/Common/LinuxKernel.vala:1095 msgid "Could not find running kernel in list" msgstr "Det gick inte att hitta kernel som körs i listan" -#: src/Common/LinuxKernel.vala:1101 +#: src/Common/LinuxKernel.vala:1100 #, fuzzy msgid "No old kernels to uninstall" msgstr "Det gick inte att hitta några kärnor att avinstallera" -#: src/Common/LinuxKernel.vala:1102 +#: src/Common/LinuxKernel.vala:1101 msgid "done" msgstr "" -#: src/Common/LinuxKernel.vala:1107 +#: src/Common/LinuxKernel.vala:1106 msgid "The following kernels will be uninstalled" msgstr "Följande kärnor kommer att avinstalleras" -#: src/Common/LinuxKernel.vala:1109 src/lib/l.misc.vala:12 +#: src/Common/LinuxKernel.vala:1108 src/lib/l.misc.vala:12 #, fuzzy msgid "Continue? (y/N): " msgstr "Fortsätta?" -#: src/Common/LinuxKernel.vala:1123 +#: src/Common/LinuxKernel.vala:1122 #, fuzzy msgid "No updates" msgstr "Inga uppdateringar hittades" -#: src/Common/LinuxKernel.vala:1125 +#: src/Common/LinuxKernel.vala:1124 #, fuzzy, c-format msgid "Install Kernel Version %s ? (y/N): " msgstr "Installera kärnversion %s ? (j/n):" diff --git a/po/tr.po b/po/tr.po index 0d60aea8..eb13a635 100644 --- a/po/tr.po +++ b/po/tr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-27 05:46-0400\n" +"POT-Creation-Date: 2023-06-28 15:01-0400\n" "PO-Revision-Date: 2022-08-06 16:48+0300\n" "Last-Translator: Sabri Ünal \n" "Language-Team: Turkish\n" @@ -25,188 +25,188 @@ msgstr "Sistem mimarisi" msgid "Running kernel" msgstr "Çalışan çekirdek" -#: src/Common/LinuxKernel.vala:214 +#: src/Common/LinuxKernel.vala:213 msgid "loading cached" msgstr "önbelleğe alınmış yükleme" -#: src/Common/LinuxKernel.vala:226 +#: src/Common/LinuxKernel.vala:225 msgid "queuing download" msgstr "kuyruğa alma indirme" -#: src/Common/LinuxKernel.vala:237 +#: src/Common/LinuxKernel.vala:236 msgid "Fetching individual kernel indexes" msgstr "Tek tek çekirdek dizinlerini alma" -#: src/Common/LinuxKernel.vala:252 +#: src/Common/LinuxKernel.vala:251 msgid "loading downloaded" msgstr "indirilen yükleniyor" -#: src/Common/LinuxKernel.vala:291 +#: src/Common/LinuxKernel.vala:290 msgid "Updating from" msgstr "Şuradan güncelleniyor" -#: src/Common/LinuxKernel.vala:298 +#: src/Common/LinuxKernel.vala:297 msgid "OK" msgstr "Tamam" -#: src/Common/LinuxKernel.vala:301 +#: src/Common/LinuxKernel.vala:300 msgid "FAILED" msgstr "BAŞARISIZ" -#: src/Common/LinuxKernel.vala:411 +#: src/Common/LinuxKernel.vala:410 msgid "Found installed" msgstr "Yüklü bulundu" -#: src/Common/LinuxKernel.vala:412 +#: src/Common/LinuxKernel.vala:411 msgid "locked" msgstr "" -#: src/Common/LinuxKernel.vala:413 +#: src/Common/LinuxKernel.vala:412 #, fuzzy msgid "running" msgstr "Çalışıyor" -#: src/Common/LinuxKernel.vala:450 src/Common/LinuxKernel.vala:1006 -#: src/Common/LinuxKernel.vala:1088 +#: src/Common/LinuxKernel.vala:449 src/Common/LinuxKernel.vala:1005 +#: src/Common/LinuxKernel.vala:1087 msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:669 src/Gtk/MainWindow.vala:472 +#: src/Common/LinuxKernel.vala:668 src/Gtk/MainWindow.vala:472 msgid "Running" msgstr "Çalışıyor" -#: src/Common/LinuxKernel.vala:670 +#: src/Common/LinuxKernel.vala:669 msgid "Installed" msgstr "Kurulu" -#: src/Common/LinuxKernel.vala:671 +#: src/Common/LinuxKernel.vala:670 msgid "Invalid" msgstr "Geçersiz" -#: src/Common/LinuxKernel.vala:764 +#: src/Common/LinuxKernel.vala:763 msgid "Packages Available" msgstr "Mevcut Paketler" -#: src/Common/LinuxKernel.vala:770 +#: src/Common/LinuxKernel.vala:769 msgid "Packages Installed" msgstr "Kurulu Paketler" -#: src/Common/LinuxKernel.vala:795 +#: src/Common/LinuxKernel.vala:794 msgid "File not found" msgstr "Dosya bulunamadı" -#: src/Common/LinuxKernel.vala:822 +#: src/Common/LinuxKernel.vala:821 #, fuzzy msgid "needs update" msgstr "Son güncelleme" -#: src/Common/LinuxKernel.vala:889 +#: src/Common/LinuxKernel.vala:888 msgid "Available Kernels" msgstr "Mevcut Çekirdekler" -#: src/Common/LinuxKernel.vala:923 src/Gtk/MainWindow.vala:139 +#: src/Common/LinuxKernel.vala:922 src/Gtk/MainWindow.vala:139 msgid "Kernel" msgstr "Çekirdek" -#: src/Common/LinuxKernel.vala:923 +#: src/Common/LinuxKernel.vala:922 #, fuzzy msgid "not found" msgstr "Dosya bulunamadı" -#: src/Common/LinuxKernel.vala:930 +#: src/Common/LinuxKernel.vala:929 #, fuzzy msgid "Download: no downloadable kernels specified" msgstr "Komut belirtilmedi" -#: src/Common/LinuxKernel.vala:949 +#: src/Common/LinuxKernel.vala:948 msgid "enabled" msgstr "etkin" -#: src/Common/LinuxKernel.vala:975 +#: src/Common/LinuxKernel.vala:974 msgid "Downloading" msgstr "Indiriyor" -#: src/Common/LinuxKernel.vala:984 +#: src/Common/LinuxKernel.vala:983 msgid "Cached" msgstr "" -#: src/Common/LinuxKernel.vala:992 +#: src/Common/LinuxKernel.vala:991 #, fuzzy msgid "Installing selected kernels" msgstr "Seçili çekirdekleri kaldırma" -#: src/Common/LinuxKernel.vala:998 src/Common/LinuxKernel.vala:1035 +#: src/Common/LinuxKernel.vala:997 src/Common/LinuxKernel.vala:1034 #, fuzzy msgid "Requested" msgstr "istenen" -#: src/Common/LinuxKernel.vala:1001 +#: src/Common/LinuxKernel.vala:1000 msgid "is already installed." msgstr "zaten yüklü." -#: src/Common/LinuxKernel.vala:1011 +#: src/Common/LinuxKernel.vala:1010 msgid "download failed." msgstr "" -#: src/Common/LinuxKernel.vala:1018 src/Gtk/MainWindow.vala:498 +#: src/Common/LinuxKernel.vala:1017 src/Gtk/MainWindow.vala:498 #, fuzzy msgid "Install: no installable kernels specified" msgstr "Komut belirtilmedi" -#: src/Common/LinuxKernel.vala:1031 +#: src/Common/LinuxKernel.vala:1030 msgid "Uninstalling selected kernels" msgstr "Seçili çekirdekleri kaldırma" -#: src/Common/LinuxKernel.vala:1038 +#: src/Common/LinuxKernel.vala:1037 #, fuzzy msgid "Not uninstalling the currently running kernel" msgstr "çalışmakta olan çekirdeğin kaldırılmaması" -#: src/Common/LinuxKernel.vala:1043 src/Gtk/MainWindow.vala:494 +#: src/Common/LinuxKernel.vala:1042 src/Gtk/MainWindow.vala:494 msgid "is locked" msgstr "" -#: src/Common/LinuxKernel.vala:1051 +#: src/Common/LinuxKernel.vala:1050 msgid "found" msgstr "kurmak" -#: src/Common/LinuxKernel.vala:1055 +#: src/Common/LinuxKernel.vala:1054 msgid "Uninstall: no uninstallable packages found" msgstr "" -#: src/Common/LinuxKernel.vala:1084 +#: src/Common/LinuxKernel.vala:1083 #, fuzzy msgid "is the highest installed version." msgstr "En yüksek yüklü sürüm dışındaki tüm sürümleri kaldırın" -#: src/Common/LinuxKernel.vala:1096 +#: src/Common/LinuxKernel.vala:1095 msgid "Could not find running kernel in list" msgstr "Listede çalışan çekirdek bulunamadı" -#: src/Common/LinuxKernel.vala:1101 +#: src/Common/LinuxKernel.vala:1100 #, fuzzy msgid "No old kernels to uninstall" msgstr "Kaldırılacak çekirdek bulunamadı" -#: src/Common/LinuxKernel.vala:1102 +#: src/Common/LinuxKernel.vala:1101 msgid "done" msgstr "" -#: src/Common/LinuxKernel.vala:1107 +#: src/Common/LinuxKernel.vala:1106 msgid "The following kernels will be uninstalled" msgstr "Aşağıdaki çekirdekler kaldırılacaktır" -#: src/Common/LinuxKernel.vala:1109 src/lib/l.misc.vala:12 +#: src/Common/LinuxKernel.vala:1108 src/lib/l.misc.vala:12 #, fuzzy msgid "Continue? (y/N): " msgstr "Devam edilsin mi?" -#: src/Common/LinuxKernel.vala:1123 +#: src/Common/LinuxKernel.vala:1122 #, fuzzy msgid "No updates" msgstr "Güncelleme bulunamadı" -#: src/Common/LinuxKernel.vala:1125 +#: src/Common/LinuxKernel.vala:1124 #, fuzzy, c-format msgid "Install Kernel Version %s ? (y/N): " msgstr "Linux Çekirdek Sürümü %s Kurulsun mu? (e/h): " diff --git a/po/uk.po b/po/uk.po index d9a91294..1c9cb8d2 100644 --- a/po/uk.po +++ b/po/uk.po @@ -671,7 +671,7 @@ msgstr "" "gnome-terminal можна заблокувати за допомогою параметра --wait.\n" "xfce4-terminal неможливо заблокувати.\n" "\n" -"Відредагуйте команду, щоб налаштувати зовнішній вигляд терміналу". +"Відредагуйте команду, щоб налаштувати зовнішній вигляд терміналу." #: src/Gtk/SettingsDialog.vala:299 msgid "Done" diff --git a/src/Common/LinuxKernel.vala b/src/Common/LinuxKernel.vala index 4be66207..620ba9e0 100644 --- a/src/Common/LinuxKernel.vala +++ b/src/Common/LinuxKernel.vala @@ -139,7 +139,6 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { } public static void initialize_regex() { - //log_debug("initialize_regex()"); try { //linux-headers-3.4.75-030475-generic_3.4.75-030475.201312201255_amd64.deb From 7f60ba8c1efe5d8455079e86b5c4626521f9d47c Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Wed, 28 Jun 2023 17:04:31 -0400 Subject: [PATCH 469/567] do not try to watch or close pid if spawn_async() is handling it - should fix #273 --- BRANDING.mak | 2 +- debian/changelog | 8 ++- po/messages.pot | 2 +- po/uk.po | 121 +++++++++++++++++++++-------------------- src/lib/AsyncTask.vala | 15 +++-- 5 files changed, 77 insertions(+), 71 deletions(-) diff --git a/BRANDING.mak b/BRANDING.mak index ee0b1518..63b3745e 100644 --- a/BRANDING.mak +++ b/BRANDING.mak @@ -3,7 +3,7 @@ VERSION_MAJOR = 1 VERSION_MINOR = 3 -VERSION_MICRO = 21 +VERSION_MICRO = 22 BRANDING_SHORTNAME = mainline BRANDING_LONGNAME = Mainline Kernels BRANDING_AUTHORNAME = Brian K. White diff --git a/debian/changelog b/debian/changelog index 1db19481..5cf72a64 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,4 +1,10 @@ -mainline (1.3.21) UNRELEASED; urgency=medium +mainline (1.3.22) unstable; urgency=medium + + * fix GLib warning in AsyncTask - do not try to watch or close pid if letting spawn_async() handle it + + -- Brian K. White Wed, 28 Jun 2023 16:56:57 -0400 + +mainline (1.3.21) unstable; urgency=medium * update notify-send.sh diff --git a/po/messages.pot b/po/messages.pot index b3b5db1b..1d5cd4cd 100644 --- a/po/messages.pot +++ b/po/messages.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline 1.3.21\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-28 15:01-0400\n" +"POT-Creation-Date: 2023-06-28 16:52-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/po/uk.po b/po/uk.po index 1c9cb8d2..b91ff6e3 100644 --- a/po/uk.po +++ b/po/uk.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-27 05:46-0400\n" +"POT-Creation-Date: 2023-06-28 16:52-0400\n" "PO-Revision-Date: 2019-07-25 11:00+0300\n" "Last-Translator: Serhii Golovko \n" "Language-Team: Ukranian\n" @@ -25,176 +25,176 @@ msgstr "Системна архитектура" msgid "Running kernel" msgstr "Запуск ядра" -#: src/Common/LinuxKernel.vala:214 +#: src/Common/LinuxKernel.vala:213 msgid "loading cached" msgstr "Завантаження кешованого" -#: src/Common/LinuxKernel.vala:226 +#: src/Common/LinuxKernel.vala:225 msgid "queuing download" msgstr "Черга завантаження" -#: src/Common/LinuxKernel.vala:237 +#: src/Common/LinuxKernel.vala:236 msgid "Fetching individual kernel indexes" msgstr "Вибірка окремих індексів ядра" -#: src/Common/LinuxKernel.vala:252 +#: src/Common/LinuxKernel.vala:251 msgid "loading downloaded" msgstr "Завантаження завантаженого" -#: src/Common/LinuxKernel.vala:291 +#: src/Common/LinuxKernel.vala:290 msgid "Updating from" msgstr "Оновлення з" -#: src/Common/LinuxKernel.vala:298 +#: src/Common/LinuxKernel.vala:297 msgid "OK" msgstr "Добре" -#: src/Common/LinuxKernel.vala:301 +#: src/Common/LinuxKernel.vala:300 msgid "FAILED" msgstr "НЕ ВДАЛОСЯ" -#: src/Common/LinuxKernel.vala:411 +#: src/Common/LinuxKernel.vala:410 msgid "Found installed" msgstr "Знайдено встановленим" -#: src/Common/LinuxKernel.vala:412 +#: src/Common/LinuxKernel.vala:411 msgid "locked" msgstr "заблокований" -#: src/Common/LinuxKernel.vala:413 +#: src/Common/LinuxKernel.vala:412 msgid "running" msgstr "виконується" -#: src/Common/LinuxKernel.vala:450 src/Common/LinuxKernel.vala:1006 -#: src/Common/LinuxKernel.vala:1088 +#: src/Common/LinuxKernel.vala:449 src/Common/LinuxKernel.vala:1005 +#: src/Common/LinuxKernel.vala:1087 msgid "is locked." msgstr "заблоковано." -#: src/Common/LinuxKernel.vala:669 src/Gtk/MainWindow.vala:472 +#: src/Common/LinuxKernel.vala:668 src/Gtk/MainWindow.vala:472 msgid "Running" msgstr "Використовується" -#: src/Common/LinuxKernel.vala:670 +#: src/Common/LinuxKernel.vala:669 msgid "Installed" msgstr "Встановлено" -#: src/Common/LinuxKernel.vala:671 +#: src/Common/LinuxKernel.vala:670 msgid "Invalid" msgstr "Недійсний" -#: src/Common/LinuxKernel.vala:764 +#: src/Common/LinuxKernel.vala:763 msgid "Packages Available" msgstr "Доступні пакети" -#: src/Common/LinuxKernel.vala:770 +#: src/Common/LinuxKernel.vala:769 msgid "Packages Installed" msgstr "Встановлені пакети" -#: src/Common/LinuxKernel.vala:795 +#: src/Common/LinuxKernel.vala:794 msgid "File not found" msgstr "Файл не знайдено" -#: src/Common/LinuxKernel.vala:822 +#: src/Common/LinuxKernel.vala:821 msgid "needs update" msgstr "потребує оновлення" -#: src/Common/LinuxKernel.vala:889 +#: src/Common/LinuxKernel.vala:888 msgid "Available Kernels" msgstr "Доступні ядра" -#: src/Common/LinuxKernel.vala:923 src/Gtk/MainWindow.vala:139 +#: src/Common/LinuxKernel.vala:922 src/Gtk/MainWindow.vala:139 msgid "Kernel" msgstr "Ядро" -#: src/Common/LinuxKernel.vala:923 +#: src/Common/LinuxKernel.vala:922 msgid "not found" msgstr "не знайдено" -#: src/Common/LinuxKernel.vala:930 +#: src/Common/LinuxKernel.vala:929 msgid "Download: no downloadable kernels specified" msgstr "Завантажити: ядра для завантаження не вказано" -#: src/Common/LinuxKernel.vala:949 +#: src/Common/LinuxKernel.vala:948 msgid "enabled" msgstr "увімкнено" -#: src/Common/LinuxKernel.vala:975 +#: src/Common/LinuxKernel.vala:974 msgid "Downloading" msgstr "Завантаження" -#: src/Common/LinuxKernel.vala:984 +#: src/Common/LinuxKernel.vala:983 msgid "Cached" msgstr "Кешовано" -#: src/Common/LinuxKernel.vala:992 +#: src/Common/LinuxKernel.vala:991 msgid "Installing selected kernels" msgstr "Встановлення обраних ядер" -#: src/Common/LinuxKernel.vala:998 src/Common/LinuxKernel.vala:1035 +#: src/Common/LinuxKernel.vala:997 src/Common/LinuxKernel.vala:1034 msgid "Requested" msgstr "Запитуваний" -#: src/Common/LinuxKernel.vala:1001 +#: src/Common/LinuxKernel.vala:1000 msgid "is already installed." msgstr "вже встановлено." -#: src/Common/LinuxKernel.vala:1011 +#: src/Common/LinuxKernel.vala:1010 msgid "download failed." msgstr "не вдалося завантажити." -#: src/Common/LinuxKernel.vala:1018 src/Gtk/MainWindow.vala:498 +#: src/Common/LinuxKernel.vala:1017 src/Gtk/MainWindow.vala:498 msgid "Install: no installable kernels specified" msgstr "Встановити: ядра які можна встановити не вказано" -#: src/Common/LinuxKernel.vala:1031 +#: src/Common/LinuxKernel.vala:1030 msgid "Uninstalling selected kernels" msgstr "Видаліть конкретні ядра" -#: src/Common/LinuxKernel.vala:1038 +#: src/Common/LinuxKernel.vala:1037 msgid "Not uninstalling the currently running kernel" msgstr "Не видалення поточного запущеного ядра" -#: src/Common/LinuxKernel.vala:1043 src/Gtk/MainWindow.vala:494 +#: src/Common/LinuxKernel.vala:1042 src/Gtk/MainWindow.vala:494 msgid "is locked" msgstr "заблоковано" -#: src/Common/LinuxKernel.vala:1051 +#: src/Common/LinuxKernel.vala:1050 msgid "found" msgstr "знайдено" -#: src/Common/LinuxKernel.vala:1055 +#: src/Common/LinuxKernel.vala:1054 msgid "Uninstall: no uninstallable packages found" msgstr "Видалити: пакетів, які можна видалити, не знайдено" -#: src/Common/LinuxKernel.vala:1084 +#: src/Common/LinuxKernel.vala:1083 msgid "is the highest installed version." msgstr "є найвищою встановленою версією." -#: src/Common/LinuxKernel.vala:1096 +#: src/Common/LinuxKernel.vala:1095 msgid "Could not find running kernel in list" msgstr "Не вдалося знайти запущене ядро у списку!" -#: src/Common/LinuxKernel.vala:1101 +#: src/Common/LinuxKernel.vala:1100 msgid "No old kernels to uninstall" msgstr "Немає старих ядер для видалення" -#: src/Common/LinuxKernel.vala:1102 +#: src/Common/LinuxKernel.vala:1101 msgid "done" msgstr "готово" -#: src/Common/LinuxKernel.vala:1107 +#: src/Common/LinuxKernel.vala:1106 msgid "The following kernels will be uninstalled" msgstr "Наступні ядра будуть видалені" -#: src/Common/LinuxKernel.vala:1109 src/lib/l.misc.vala:12 +#: src/Common/LinuxKernel.vala:1108 src/lib/l.misc.vala:12 msgid "Continue? (y/N): " msgstr "Продовжити? (так/Ні): " -#: src/Common/LinuxKernel.vala:1123 +#: src/Common/LinuxKernel.vala:1122 msgid "No updates" msgstr "Немає оновлень" -#: src/Common/LinuxKernel.vala:1125 +#: src/Common/LinuxKernel.vala:1124 #, c-format msgid "Install Kernel Version %s ? (y/N): " msgstr "Встановити Ядро Версії %s ? (так/Ні): " @@ -255,7 +255,8 @@ msgstr "Перевірити оновлення ядра" #: src/Console/AppConsole.vala:36 msgid "Check for kernel updates and send a desktop notification" -msgstr "Перевірте наявність оновлень ядра та надішліть сповіщення на робочий стіл" +msgstr "" +"Перевірте наявність оновлень ядра та надішліть сповіщення на робочий стіл" #: src/Console/AppConsole.vala:37 msgid "List available kernels" @@ -616,10 +617,10 @@ msgid "" msgstr "" "Команда, яка використовується для запуску dpkg із правами root.\n" "\n" -"Якщо синтаксис командного рядка програм автентифікації вимагає, щоб команда виконання була " -"береться в лапки, а не просто додається в кінці команди" -"рядок, ви можете включити один %s у рядок, і він буде замінений " -"за допомогою команди dpkg, інакше її буде додано в кінець.\n" +"Якщо синтаксис командного рядка програм автентифікації вимагає, щоб команда " +"виконання була береться в лапки, а не просто додається в кінці командирядок, " +"ви можете включити один %s у рядок, і він буде замінений за допомогою " +"команди dpkg, інакше її буде додано в кінець.\n" "Див. \"su -c\" у розкривному списку для прикладу цього.\n" #: src/Gtk/SettingsDialog.vala:279 @@ -656,16 +657,17 @@ msgid "" "Edit the command to customize the appearance of the terminal." msgstr "" "Якщо синтаксис командного рядка програм терміналу вимагає виконання команди " -"брати в лапки, а не просто додавати в кінці команди" -"рядок, ви можете включити один %s у рядок, і він буде замінений " -"за допомогою команди встановлення, інакше її буде додано в кінець.\n" +"брати в лапки, а не просто додавати в кінці командирядок, ви можете включити " +"один %s у рядок, і він буде замінений за допомогою команди встановлення, " +"інакше її буде додано в кінець.\n" "Див. приклад mate-terminal у спадному списку.\n" "\n" -"Ви можете написати будь-який командний рядок, але зазначена програма має залишитися" -"на передньому плані та блокувати під час виконання команди, а не fork і " -"повернути негайно.\n" -"Більшість термінальних програм працюють нормально за замовчуванням, але деякі вимагають спеціального " -"прапорці командного рядка, а деякі взагалі непридатні для використання.\n" +"Ви можете написати будь-який командний рядок, але зазначена програма має " +"залишитисяна передньому плані та блокувати під час виконання команди, а не " +"fork і повернути негайно.\n" +"Більшість термінальних програм працюють нормально за замовчуванням, але " +"деякі вимагають спеціального прапорці командного рядка, а деякі взагалі " +"непридатні для використання.\n" "\n" "Приклади:\n" "gnome-terminal можна заблокувати за допомогою параметра --wait.\n" @@ -684,8 +686,7 @@ msgstr "Копія" #: src/Gtk/TerminalWindow.vala:138 msgid "" "Copies the entire output buffer, including scrollback, to the clipboard." -msgstr "" -"Копіює весь вихідний буфер, включаючи прокручування, до буфера обміну." +msgstr "Копіює весь вихідний буфер, включаючи прокручування, до буфера обміну." #: src/Gtk/TerminalWindow.vala:145 msgid "Cancel" diff --git a/src/lib/AsyncTask.vala b/src/lib/AsyncTask.vala index 559b3557..c70e867d 100644 --- a/src/lib/AsyncTask.vala +++ b/src/lib/AsyncTask.vala @@ -7,7 +7,6 @@ public abstract class AsyncTask : GLib.Object { int stdout_fd; DataInputStream stdout_s; - // public public string[] spawn_args = {}; public string stdin_data = ""; public string status_line = ""; @@ -18,7 +17,6 @@ public abstract class AsyncTask : GLib.Object { } public bool begin() { - is_running = true; status_line = ""; prg_count = 0; @@ -29,6 +27,12 @@ public abstract class AsyncTask : GLib.Object { vprint("stdin_data: ---begin---\n"+stdin_data+"\nstdin_data: ---end---"); } + // This is set up to detect both process-ended and process-failed-to-start + // by read_stdout() failing to read, so this only works for commands that open stdout. + // No SpawnFlags.DO_NOT_REAP_CHILD, no ChildWatch.add(), no Close_pid(). + // Do not try to add any of those without adding all three. + // (Either take over all responsibility, or don't touch child_pid at all) + try { Process.spawn_async_with_pipes( null, // working dir @@ -36,7 +40,7 @@ public abstract class AsyncTask : GLib.Object { null, // environment SpawnFlags.SEARCH_PATH, null, // child_setup() - out child_pid, + out child_pid, // not used by us but must exist out stdin_fd, out stdout_fd, null //out stderr_fd @@ -51,11 +55,6 @@ public abstract class AsyncTask : GLib.Object { FileStream stdin_pipe = FileStream.fdopen(stdin_fd,"w"); stdin_pipe.puts(stdin_data); - ChildWatch.add(child_pid, (pid, status) => { - Process.close_pid(pid); - is_running = false; - }); - } catch (Error e) { is_running = false; From b24681acde1510aa3b5c41b18c839a6f84a4caec Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Wed, 28 Jun 2023 20:25:28 -0400 Subject: [PATCH 470/567] init regexes once instead of repeatedly --- debian/rules | 1 + lib/notify_send/notify-send.sh | 2 +- po/de.po | 96 +++++++------- po/el.po | 96 +++++++------- po/es.po | 96 +++++++------- po/fr.po | 96 +++++++------- po/hr.po | 96 +++++++------- po/it.po | 96 +++++++------- po/ko.po | 96 +++++++------- po/messages.pot | 98 +++++++------- po/nl.po | 96 +++++++------- po/pl.po | 96 +++++++------- po/ru.po | 96 +++++++------- po/sv.po | 96 +++++++------- po/tr.po | 96 +++++++------- po/uk.po | 96 +++++++------- src/Common/LinuxKernel.vala | 227 ++++++++++++++++----------------- 17 files changed, 785 insertions(+), 791 deletions(-) diff --git a/debian/rules b/debian/rules index 24679500..2288bf0f 100644 --- a/debian/rules +++ b/debian/rules @@ -1,4 +1,5 @@ #!/usr/bin/make -f + #DH_VERBOSE = 1 %: diff --git a/lib/notify_send/notify-send.sh b/lib/notify_send/notify-send.sh index fbaee64b..db8eeb17 100755 --- a/lib/notify_send/notify-send.sh +++ b/lib/notify_send/notify-send.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# notify-send.sh - replacement for notify-send with more features +# notify-send.sh - replacement for notify-send # Copyright (C) 2015-2023 notify-send.sh authors (see AUTHORS file) # https://github.com/bkw777/notify-send.sh diff --git a/po/de.po b/po/de.po index c98ce61a..5ba11048 100644 --- a/po/de.po +++ b/po/de.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-28 15:01-0400\n" +"POT-Creation-Date: 2023-06-28 20:18-0400\n" "PO-Revision-Date: 2023-02-20 18:40+0100\n" "Last-Translator: Marvin Meysel \n" "Language-Team: German\n" @@ -13,200 +13,200 @@ msgstr "" "X-Launchpad-Export-Date: 2017-04-13 11:48+0000\n" "X-Generator: Poedit 3.1.1\n" -#: src/Common/LinuxKernel.vala:106 +#: src/Common/LinuxKernel.vala:109 msgid "Distribution" msgstr "Distribution" -#: src/Common/LinuxKernel.vala:121 +#: src/Common/LinuxKernel.vala:124 msgid "Architecture" msgstr "Architektur" -#: src/Common/LinuxKernel.vala:136 +#: src/Common/LinuxKernel.vala:139 msgid "Running kernel" msgstr "Laufender kernel" -#: src/Common/LinuxKernel.vala:213 +#: src/Common/LinuxKernel.vala:234 msgid "loading cached" msgstr "laden gecached" -#: src/Common/LinuxKernel.vala:225 +#: src/Common/LinuxKernel.vala:246 msgid "queuing download" msgstr "download der warteschlange" -#: src/Common/LinuxKernel.vala:236 +#: src/Common/LinuxKernel.vala:257 msgid "Fetching individual kernel indexes" msgstr "Abrufen einzelner Kernel-Indizes" -#: src/Common/LinuxKernel.vala:251 +#: src/Common/LinuxKernel.vala:272 msgid "loading downloaded" msgstr "laden von heruntergeladenen Dateien" -#: src/Common/LinuxKernel.vala:290 +#: src/Common/LinuxKernel.vala:311 msgid "Updating from" msgstr "Aktualisieren von" -#: src/Common/LinuxKernel.vala:297 +#: src/Common/LinuxKernel.vala:318 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:300 +#: src/Common/LinuxKernel.vala:321 msgid "FAILED" msgstr "MISSLUNGEN" -#: src/Common/LinuxKernel.vala:410 +#: src/Common/LinuxKernel.vala:420 msgid "Found installed" msgstr "Installiert gefunden" -#: src/Common/LinuxKernel.vala:411 +#: src/Common/LinuxKernel.vala:421 msgid "locked" msgstr "" -#: src/Common/LinuxKernel.vala:412 +#: src/Common/LinuxKernel.vala:422 #, fuzzy msgid "running" msgstr "Läuft" -#: src/Common/LinuxKernel.vala:449 src/Common/LinuxKernel.vala:1005 -#: src/Common/LinuxKernel.vala:1087 +#: src/Common/LinuxKernel.vala:459 src/Common/LinuxKernel.vala:998 +#: src/Common/LinuxKernel.vala:1080 msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:668 src/Gtk/MainWindow.vala:472 +#: src/Common/LinuxKernel.vala:677 src/Gtk/MainWindow.vala:472 msgid "Running" msgstr "Läuft" -#: src/Common/LinuxKernel.vala:669 +#: src/Common/LinuxKernel.vala:678 msgid "Installed" msgstr "Installiert" -#: src/Common/LinuxKernel.vala:670 +#: src/Common/LinuxKernel.vala:679 msgid "Invalid" msgstr "Ungültig" -#: src/Common/LinuxKernel.vala:763 +#: src/Common/LinuxKernel.vala:772 msgid "Packages Available" msgstr "Verfügbare Pakete" -#: src/Common/LinuxKernel.vala:769 +#: src/Common/LinuxKernel.vala:778 msgid "Packages Installed" msgstr "Installierte Pakete" -#: src/Common/LinuxKernel.vala:794 +#: src/Common/LinuxKernel.vala:805 msgid "File not found" msgstr "Datei nicht gefunden " -#: src/Common/LinuxKernel.vala:821 +#: src/Common/LinuxKernel.vala:824 #, fuzzy msgid "needs update" msgstr "Neustes Update" -#: src/Common/LinuxKernel.vala:888 +#: src/Common/LinuxKernel.vala:881 msgid "Available Kernels" msgstr "Verfügbare Kernel" -#: src/Common/LinuxKernel.vala:922 src/Gtk/MainWindow.vala:139 +#: src/Common/LinuxKernel.vala:915 src/Gtk/MainWindow.vala:139 msgid "Kernel" msgstr "Kernel" -#: src/Common/LinuxKernel.vala:922 +#: src/Common/LinuxKernel.vala:915 #, fuzzy msgid "not found" msgstr "Datei nicht gefunden " -#: src/Common/LinuxKernel.vala:929 +#: src/Common/LinuxKernel.vala:922 #, fuzzy msgid "Download: no downloadable kernels specified" msgstr "Befehl nicht angegeben" -#: src/Common/LinuxKernel.vala:948 +#: src/Common/LinuxKernel.vala:941 msgid "enabled" msgstr "ermöglichte" -#: src/Common/LinuxKernel.vala:974 +#: src/Common/LinuxKernel.vala:967 msgid "Downloading" msgstr "Laden" -#: src/Common/LinuxKernel.vala:983 +#: src/Common/LinuxKernel.vala:976 msgid "Cached" msgstr "" -#: src/Common/LinuxKernel.vala:991 +#: src/Common/LinuxKernel.vala:984 #, fuzzy msgid "Installing selected kernels" msgstr "Deinstallation des angegebenen Kernels" -#: src/Common/LinuxKernel.vala:997 src/Common/LinuxKernel.vala:1034 +#: src/Common/LinuxKernel.vala:990 src/Common/LinuxKernel.vala:1027 #, fuzzy msgid "Requested" msgstr "angefordert" -#: src/Common/LinuxKernel.vala:1000 +#: src/Common/LinuxKernel.vala:993 msgid "is already installed." msgstr "ist bereits installiert." -#: src/Common/LinuxKernel.vala:1010 +#: src/Common/LinuxKernel.vala:1003 msgid "download failed." msgstr "" -#: src/Common/LinuxKernel.vala:1017 src/Gtk/MainWindow.vala:498 +#: src/Common/LinuxKernel.vala:1010 src/Gtk/MainWindow.vala:498 #, fuzzy msgid "Install: no installable kernels specified" msgstr "Befehl nicht angegeben" -#: src/Common/LinuxKernel.vala:1030 +#: src/Common/LinuxKernel.vala:1023 msgid "Uninstalling selected kernels" msgstr "Deinstallation des angegebenen Kernels" -#: src/Common/LinuxKernel.vala:1037 +#: src/Common/LinuxKernel.vala:1030 #, fuzzy msgid "Not uninstalling the currently running kernel" msgstr "Den aktuell laufenden Kernel wird nicht deinstalliert" -#: src/Common/LinuxKernel.vala:1042 src/Gtk/MainWindow.vala:494 +#: src/Common/LinuxKernel.vala:1035 src/Gtk/MainWindow.vala:494 msgid "is locked" msgstr "" -#: src/Common/LinuxKernel.vala:1050 +#: src/Common/LinuxKernel.vala:1043 msgid "found" msgstr "gründen" -#: src/Common/LinuxKernel.vala:1054 +#: src/Common/LinuxKernel.vala:1047 msgid "Uninstall: no uninstallable packages found" msgstr "" -#: src/Common/LinuxKernel.vala:1083 +#: src/Common/LinuxKernel.vala:1076 #, fuzzy msgid "is the highest installed version." msgstr "Deinstallieren Sie alle bis auf die höchste installierte Version" -#: src/Common/LinuxKernel.vala:1095 +#: src/Common/LinuxKernel.vala:1088 msgid "Could not find running kernel in list" msgstr "Konnte keinen laufenden Kernel in der Liste finden" -#: src/Common/LinuxKernel.vala:1100 +#: src/Common/LinuxKernel.vala:1093 #, fuzzy msgid "No old kernels to uninstall" msgstr "Es konnten keine Kernel zum Deinstallieren gefunden werden" -#: src/Common/LinuxKernel.vala:1101 +#: src/Common/LinuxKernel.vala:1094 msgid "done" msgstr "" -#: src/Common/LinuxKernel.vala:1106 +#: src/Common/LinuxKernel.vala:1099 msgid "The following kernels will be uninstalled" msgstr "Die folgenden Kernel werden deinstalliert" -#: src/Common/LinuxKernel.vala:1108 src/lib/l.misc.vala:12 +#: src/Common/LinuxKernel.vala:1101 src/lib/l.misc.vala:12 #, fuzzy msgid "Continue? (y/N): " msgstr "Weiter ?" -#: src/Common/LinuxKernel.vala:1122 +#: src/Common/LinuxKernel.vala:1115 #, fuzzy msgid "No updates" msgstr "Keine Updates gefunden" -#: src/Common/LinuxKernel.vala:1124 +#: src/Common/LinuxKernel.vala:1117 #, fuzzy, c-format msgid "Install Kernel Version %s ? (y/N): " msgstr "Kernel-Version %s installieren? (j/n):" diff --git a/po/el.po b/po/el.po index 7d65f15c..8819b3d7 100644 --- a/po/el.po +++ b/po/el.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-28 15:01-0400\n" +"POT-Creation-Date: 2023-06-28 20:18-0400\n" "PO-Revision-Date: 2023-01-10 02:03-0600\n" "Last-Translator: Vasilis Kosmidis \n" "Language-Team: Greek\n" @@ -13,200 +13,200 @@ msgstr "" "X-Launchpad-Export-Date: 2017-04-13 11:48+0000\n" "X-Generator: Poedit 2.0.5\n" -#: src/Common/LinuxKernel.vala:106 +#: src/Common/LinuxKernel.vala:109 msgid "Distribution" msgstr "Διανομή" -#: src/Common/LinuxKernel.vala:121 +#: src/Common/LinuxKernel.vala:124 msgid "Architecture" msgstr "Αρχιτεκτονική" -#: src/Common/LinuxKernel.vala:136 +#: src/Common/LinuxKernel.vala:139 msgid "Running kernel" msgstr "Εκτέλεση πυρήνα" -#: src/Common/LinuxKernel.vala:213 +#: src/Common/LinuxKernel.vala:234 msgid "loading cached" msgstr "φόρτωση προσωρινά αποθηκευμένου" -#: src/Common/LinuxKernel.vala:225 +#: src/Common/LinuxKernel.vala:246 msgid "queuing download" msgstr "Προσθήκη λήψης στην ουρά" -#: src/Common/LinuxKernel.vala:236 +#: src/Common/LinuxKernel.vala:257 msgid "Fetching individual kernel indexes" msgstr "Λήψη μεμονωμένων ευρετηρίων πυρήνα" -#: src/Common/LinuxKernel.vala:251 +#: src/Common/LinuxKernel.vala:272 msgid "loading downloaded" msgstr "Φόρτωση λήψης" -#: src/Common/LinuxKernel.vala:290 +#: src/Common/LinuxKernel.vala:311 msgid "Updating from" msgstr "Ενημέρωση από" -#: src/Common/LinuxKernel.vala:297 +#: src/Common/LinuxKernel.vala:318 msgid "OK" msgstr "ΟΚ" -#: src/Common/LinuxKernel.vala:300 +#: src/Common/LinuxKernel.vala:321 msgid "FAILED" msgstr "ΑΠΈΤΥΧΕ" -#: src/Common/LinuxKernel.vala:410 +#: src/Common/LinuxKernel.vala:420 msgid "Found installed" msgstr "Βρέθηκε εγκατεστημένο" -#: src/Common/LinuxKernel.vala:411 +#: src/Common/LinuxKernel.vala:421 msgid "locked" msgstr "" -#: src/Common/LinuxKernel.vala:412 +#: src/Common/LinuxKernel.vala:422 #, fuzzy msgid "running" msgstr "Ενεργός" -#: src/Common/LinuxKernel.vala:449 src/Common/LinuxKernel.vala:1005 -#: src/Common/LinuxKernel.vala:1087 +#: src/Common/LinuxKernel.vala:459 src/Common/LinuxKernel.vala:998 +#: src/Common/LinuxKernel.vala:1080 msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:668 src/Gtk/MainWindow.vala:472 +#: src/Common/LinuxKernel.vala:677 src/Gtk/MainWindow.vala:472 msgid "Running" msgstr "Ενεργός" -#: src/Common/LinuxKernel.vala:669 +#: src/Common/LinuxKernel.vala:678 msgid "Installed" msgstr "Εγκατεστημένος" -#: src/Common/LinuxKernel.vala:670 +#: src/Common/LinuxKernel.vala:679 msgid "Invalid" msgstr "Άκυρος" -#: src/Common/LinuxKernel.vala:763 +#: src/Common/LinuxKernel.vala:772 msgid "Packages Available" msgstr "Διαθέσιμα πακέτα" -#: src/Common/LinuxKernel.vala:769 +#: src/Common/LinuxKernel.vala:778 msgid "Packages Installed" msgstr "Εγκατεστημένα πακέτα" -#: src/Common/LinuxKernel.vala:794 +#: src/Common/LinuxKernel.vala:805 msgid "File not found" msgstr "Το αρχείο δε βρέθηκε" -#: src/Common/LinuxKernel.vala:821 +#: src/Common/LinuxKernel.vala:824 #, fuzzy msgid "needs update" msgstr "Τελευταία αναβάθμιση" -#: src/Common/LinuxKernel.vala:888 +#: src/Common/LinuxKernel.vala:881 msgid "Available Kernels" msgstr "Διαθέσιμοι πυρήνες" -#: src/Common/LinuxKernel.vala:922 src/Gtk/MainWindow.vala:139 +#: src/Common/LinuxKernel.vala:915 src/Gtk/MainWindow.vala:139 msgid "Kernel" msgstr "Πυρήνας" -#: src/Common/LinuxKernel.vala:922 +#: src/Common/LinuxKernel.vala:915 #, fuzzy msgid "not found" msgstr "Το αρχείο δε βρέθηκε" -#: src/Common/LinuxKernel.vala:929 +#: src/Common/LinuxKernel.vala:922 #, fuzzy msgid "Download: no downloadable kernels specified" msgstr "Η εντολή δεν προσδιορίστηκε" -#: src/Common/LinuxKernel.vala:948 +#: src/Common/LinuxKernel.vala:941 msgid "enabled" msgstr "ενεργοποιημένη" -#: src/Common/LinuxKernel.vala:974 +#: src/Common/LinuxKernel.vala:967 msgid "Downloading" msgstr "Κατέβασμα" -#: src/Common/LinuxKernel.vala:983 +#: src/Common/LinuxKernel.vala:976 msgid "Cached" msgstr "" -#: src/Common/LinuxKernel.vala:991 +#: src/Common/LinuxKernel.vala:984 #, fuzzy msgid "Installing selected kernels" msgstr "Απεγκατάσταση επιλεγμένων πυρήνων" -#: src/Common/LinuxKernel.vala:997 src/Common/LinuxKernel.vala:1034 +#: src/Common/LinuxKernel.vala:990 src/Common/LinuxKernel.vala:1027 #, fuzzy msgid "Requested" msgstr "ζητήθηκε" -#: src/Common/LinuxKernel.vala:1000 +#: src/Common/LinuxKernel.vala:993 msgid "is already installed." msgstr "είναι ήδη εγκατεστημένο." -#: src/Common/LinuxKernel.vala:1010 +#: src/Common/LinuxKernel.vala:1003 msgid "download failed." msgstr "" -#: src/Common/LinuxKernel.vala:1017 src/Gtk/MainWindow.vala:498 +#: src/Common/LinuxKernel.vala:1010 src/Gtk/MainWindow.vala:498 #, fuzzy msgid "Install: no installable kernels specified" msgstr "Η εντολή δεν προσδιορίστηκε" -#: src/Common/LinuxKernel.vala:1030 +#: src/Common/LinuxKernel.vala:1023 msgid "Uninstalling selected kernels" msgstr "Απεγκατάσταση επιλεγμένων πυρήνων" -#: src/Common/LinuxKernel.vala:1037 +#: src/Common/LinuxKernel.vala:1030 #, fuzzy msgid "Not uninstalling the currently running kernel" msgstr "δεν θα απεγκαταστήσει τον πυρήνα που εκτελείται αυτήν τη στιγμή" -#: src/Common/LinuxKernel.vala:1042 src/Gtk/MainWindow.vala:494 +#: src/Common/LinuxKernel.vala:1035 src/Gtk/MainWindow.vala:494 msgid "is locked" msgstr "" -#: src/Common/LinuxKernel.vala:1050 +#: src/Common/LinuxKernel.vala:1043 msgid "found" msgstr "ιδρύω" -#: src/Common/LinuxKernel.vala:1054 +#: src/Common/LinuxKernel.vala:1047 msgid "Uninstall: no uninstallable packages found" msgstr "" -#: src/Common/LinuxKernel.vala:1083 +#: src/Common/LinuxKernel.vala:1076 #, fuzzy msgid "is the highest installed version." msgstr "Απεγκαταστήστε όλες εκτός από την υψηλότερη εγκατεστημένη έκδοση" -#: src/Common/LinuxKernel.vala:1095 +#: src/Common/LinuxKernel.vala:1088 msgid "Could not find running kernel in list" msgstr "Δεν ήταν δυνατή η εύρεση του πυρήνα που εκτελείται αυτήν τη στιγμή" -#: src/Common/LinuxKernel.vala:1100 +#: src/Common/LinuxKernel.vala:1093 #, fuzzy msgid "No old kernels to uninstall" msgstr "Δεν βρέθηκε κανένας πυρήνας για απεγκατάσταση" -#: src/Common/LinuxKernel.vala:1101 +#: src/Common/LinuxKernel.vala:1094 msgid "done" msgstr "" -#: src/Common/LinuxKernel.vala:1106 +#: src/Common/LinuxKernel.vala:1099 msgid "The following kernels will be uninstalled" msgstr "Θα καταργηθεί η εγκατάσταση των ακόλουθων πυρήνων" -#: src/Common/LinuxKernel.vala:1108 src/lib/l.misc.vala:12 +#: src/Common/LinuxKernel.vala:1101 src/lib/l.misc.vala:12 #, fuzzy msgid "Continue? (y/N): " msgstr "Συνέχεια;" -#: src/Common/LinuxKernel.vala:1122 +#: src/Common/LinuxKernel.vala:1115 #, fuzzy msgid "No updates" msgstr "Δεν βρέθηκαν ενημερώσεις" -#: src/Common/LinuxKernel.vala:1124 +#: src/Common/LinuxKernel.vala:1117 #, fuzzy, c-format msgid "Install Kernel Version %s ? (y/N): " msgstr "Εγκατάσταση του πυρήνα έκδοσης %s ; (ν/ό):" diff --git a/po/es.po b/po/es.po index 516c6dc4..15582d84 100644 --- a/po/es.po +++ b/po/es.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-28 15:01-0400\n" +"POT-Creation-Date: 2023-06-28 20:18-0400\n" "PO-Revision-Date: 2018-01-03 02:03-0600\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish\n" @@ -13,200 +13,200 @@ msgstr "" "X-Launchpad-Export-Date: 2017-04-13 11:48+0000\n" "X-Generator: Poedit 2.0.5\n" -#: src/Common/LinuxKernel.vala:106 +#: src/Common/LinuxKernel.vala:109 msgid "Distribution" msgstr "Distribución" -#: src/Common/LinuxKernel.vala:121 +#: src/Common/LinuxKernel.vala:124 msgid "Architecture" msgstr "Arquitectura del sistema" -#: src/Common/LinuxKernel.vala:136 +#: src/Common/LinuxKernel.vala:139 msgid "Running kernel" msgstr "Kernel en ejecución" -#: src/Common/LinuxKernel.vala:213 +#: src/Common/LinuxKernel.vala:234 msgid "loading cached" msgstr "carga en caché" -#: src/Common/LinuxKernel.vala:225 +#: src/Common/LinuxKernel.vala:246 msgid "queuing download" msgstr "descarga de colas" -#: src/Common/LinuxKernel.vala:236 +#: src/Common/LinuxKernel.vala:257 msgid "Fetching individual kernel indexes" msgstr "Obtención de índices de kernel individuales" -#: src/Common/LinuxKernel.vala:251 +#: src/Common/LinuxKernel.vala:272 msgid "loading downloaded" msgstr "cargando descargado" -#: src/Common/LinuxKernel.vala:290 +#: src/Common/LinuxKernel.vala:311 msgid "Updating from" msgstr "Actualización desde" -#: src/Common/LinuxKernel.vala:297 +#: src/Common/LinuxKernel.vala:318 msgid "OK" msgstr "Aceptar" -#: src/Common/LinuxKernel.vala:300 +#: src/Common/LinuxKernel.vala:321 msgid "FAILED" msgstr "FRACASADO" -#: src/Common/LinuxKernel.vala:410 +#: src/Common/LinuxKernel.vala:420 msgid "Found installed" msgstr "Encontrado instalado" -#: src/Common/LinuxKernel.vala:411 +#: src/Common/LinuxKernel.vala:421 msgid "locked" msgstr "" -#: src/Common/LinuxKernel.vala:412 +#: src/Common/LinuxKernel.vala:422 #, fuzzy msgid "running" msgstr "En ejecución" -#: src/Common/LinuxKernel.vala:449 src/Common/LinuxKernel.vala:1005 -#: src/Common/LinuxKernel.vala:1087 +#: src/Common/LinuxKernel.vala:459 src/Common/LinuxKernel.vala:998 +#: src/Common/LinuxKernel.vala:1080 msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:668 src/Gtk/MainWindow.vala:472 +#: src/Common/LinuxKernel.vala:677 src/Gtk/MainWindow.vala:472 msgid "Running" msgstr "En ejecución" -#: src/Common/LinuxKernel.vala:669 +#: src/Common/LinuxKernel.vala:678 msgid "Installed" msgstr "Instalado" -#: src/Common/LinuxKernel.vala:670 +#: src/Common/LinuxKernel.vala:679 msgid "Invalid" msgstr "No válido" -#: src/Common/LinuxKernel.vala:763 +#: src/Common/LinuxKernel.vala:772 msgid "Packages Available" msgstr "Paquetes disponibles" -#: src/Common/LinuxKernel.vala:769 +#: src/Common/LinuxKernel.vala:778 msgid "Packages Installed" msgstr "Paquetes instalados" -#: src/Common/LinuxKernel.vala:794 +#: src/Common/LinuxKernel.vala:805 msgid "File not found" msgstr "No se encontró el archivo" -#: src/Common/LinuxKernel.vala:821 +#: src/Common/LinuxKernel.vala:824 #, fuzzy msgid "needs update" msgstr "Última actualización" -#: src/Common/LinuxKernel.vala:888 +#: src/Common/LinuxKernel.vala:881 msgid "Available Kernels" msgstr "Núcleos disponibles" -#: src/Common/LinuxKernel.vala:922 src/Gtk/MainWindow.vala:139 +#: src/Common/LinuxKernel.vala:915 src/Gtk/MainWindow.vala:139 msgid "Kernel" msgstr "Núcleo" -#: src/Common/LinuxKernel.vala:922 +#: src/Common/LinuxKernel.vala:915 #, fuzzy msgid "not found" msgstr "No se encontró el archivo" -#: src/Common/LinuxKernel.vala:929 +#: src/Common/LinuxKernel.vala:922 #, fuzzy msgid "Download: no downloadable kernels specified" msgstr "Coomand no especificado" -#: src/Common/LinuxKernel.vala:948 +#: src/Common/LinuxKernel.vala:941 msgid "enabled" msgstr "habilitado" -#: src/Common/LinuxKernel.vala:974 +#: src/Common/LinuxKernel.vala:967 msgid "Downloading" msgstr "Descargar" -#: src/Common/LinuxKernel.vala:983 +#: src/Common/LinuxKernel.vala:976 msgid "Cached" msgstr "" -#: src/Common/LinuxKernel.vala:991 +#: src/Common/LinuxKernel.vala:984 #, fuzzy msgid "Installing selected kernels" msgstr "Desinstalación de kernels seleccionados" -#: src/Common/LinuxKernel.vala:997 src/Common/LinuxKernel.vala:1034 +#: src/Common/LinuxKernel.vala:990 src/Common/LinuxKernel.vala:1027 #, fuzzy msgid "Requested" msgstr "solicitado" -#: src/Common/LinuxKernel.vala:1000 +#: src/Common/LinuxKernel.vala:993 msgid "is already installed." msgstr "ya está instalado." -#: src/Common/LinuxKernel.vala:1010 +#: src/Common/LinuxKernel.vala:1003 msgid "download failed." msgstr "" -#: src/Common/LinuxKernel.vala:1017 src/Gtk/MainWindow.vala:498 +#: src/Common/LinuxKernel.vala:1010 src/Gtk/MainWindow.vala:498 #, fuzzy msgid "Install: no installable kernels specified" msgstr "Coomand no especificado" -#: src/Common/LinuxKernel.vala:1030 +#: src/Common/LinuxKernel.vala:1023 msgid "Uninstalling selected kernels" msgstr "Desinstalación de kernels seleccionados" -#: src/Common/LinuxKernel.vala:1037 +#: src/Common/LinuxKernel.vala:1030 #, fuzzy msgid "Not uninstalling the currently running kernel" msgstr "No desinstalará el kernel que se está ejecutando actualmente" -#: src/Common/LinuxKernel.vala:1042 src/Gtk/MainWindow.vala:494 +#: src/Common/LinuxKernel.vala:1035 src/Gtk/MainWindow.vala:494 msgid "is locked" msgstr "" -#: src/Common/LinuxKernel.vala:1050 +#: src/Common/LinuxKernel.vala:1043 msgid "found" msgstr "fundar" -#: src/Common/LinuxKernel.vala:1054 +#: src/Common/LinuxKernel.vala:1047 msgid "Uninstall: no uninstallable packages found" msgstr "" -#: src/Common/LinuxKernel.vala:1083 +#: src/Common/LinuxKernel.vala:1076 #, fuzzy msgid "is the highest installed version." msgstr "Desinstale todas las versiones instaladas excepto la más alta" -#: src/Common/LinuxKernel.vala:1095 +#: src/Common/LinuxKernel.vala:1088 msgid "Could not find running kernel in list" msgstr "No se pudo encontrar el kernel en ejecución en la lista" -#: src/Common/LinuxKernel.vala:1100 +#: src/Common/LinuxKernel.vala:1093 #, fuzzy msgid "No old kernels to uninstall" msgstr "No se pudo encontrar ningún kernel para desinstalar" -#: src/Common/LinuxKernel.vala:1101 +#: src/Common/LinuxKernel.vala:1094 msgid "done" msgstr "" -#: src/Common/LinuxKernel.vala:1106 +#: src/Common/LinuxKernel.vala:1099 msgid "The following kernels will be uninstalled" msgstr "Se desinstalarán los siguientes kernels" -#: src/Common/LinuxKernel.vala:1108 src/lib/l.misc.vala:12 +#: src/Common/LinuxKernel.vala:1101 src/lib/l.misc.vala:12 #, fuzzy msgid "Continue? (y/N): " msgstr "¿Continuar?" -#: src/Common/LinuxKernel.vala:1122 +#: src/Common/LinuxKernel.vala:1115 #, fuzzy msgid "No updates" msgstr "No se encontró ninguna actualización" -#: src/Common/LinuxKernel.vala:1124 +#: src/Common/LinuxKernel.vala:1117 #, fuzzy, c-format msgid "Install Kernel Version %s ? (y/N): " msgstr "Instalar la versión del kernel %s? (s/n): " diff --git a/po/fr.po b/po/fr.po index 7f360db6..63193775 100644 --- a/po/fr.po +++ b/po/fr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-28 15:01-0400\n" +"POT-Creation-Date: 2023-06-28 20:18-0400\n" "PO-Revision-Date: 2018-08-05 15:50+0200\n" "Last-Translator: Yolateng0 \n" "Language-Team: French\n" @@ -13,200 +13,200 @@ msgstr "" "X-Launchpad-Export-Date: 2017-04-13 11:48+0000\n" "X-Generator: Poedit 2.0.6\n" -#: src/Common/LinuxKernel.vala:106 +#: src/Common/LinuxKernel.vala:109 msgid "Distribution" msgstr "Distribution" -#: src/Common/LinuxKernel.vala:121 +#: src/Common/LinuxKernel.vala:124 msgid "Architecture" msgstr "Architecture" -#: src/Common/LinuxKernel.vala:136 +#: src/Common/LinuxKernel.vala:139 msgid "Running kernel" msgstr "Noyau en cours d'exécution" -#: src/Common/LinuxKernel.vala:213 +#: src/Common/LinuxKernel.vala:234 msgid "loading cached" msgstr "chargement mis en cache" -#: src/Common/LinuxKernel.vala:225 +#: src/Common/LinuxKernel.vala:246 msgid "queuing download" msgstr "enqueuing télécharger" -#: src/Common/LinuxKernel.vala:236 +#: src/Common/LinuxKernel.vala:257 msgid "Fetching individual kernel indexes" msgstr "Récupération d'index de noyau individuels" -#: src/Common/LinuxKernel.vala:251 +#: src/Common/LinuxKernel.vala:272 msgid "loading downloaded" msgstr "chargement téléchargé" -#: src/Common/LinuxKernel.vala:290 +#: src/Common/LinuxKernel.vala:311 msgid "Updating from" msgstr "Mise à jour à partir de" -#: src/Common/LinuxKernel.vala:297 +#: src/Common/LinuxKernel.vala:318 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:300 +#: src/Common/LinuxKernel.vala:321 msgid "FAILED" msgstr "RATÉ" -#: src/Common/LinuxKernel.vala:410 +#: src/Common/LinuxKernel.vala:420 msgid "Found installed" msgstr "Trouvé installé" -#: src/Common/LinuxKernel.vala:411 +#: src/Common/LinuxKernel.vala:421 msgid "locked" msgstr "" -#: src/Common/LinuxKernel.vala:412 +#: src/Common/LinuxKernel.vala:422 #, fuzzy msgid "running" msgstr "Actuel" -#: src/Common/LinuxKernel.vala:449 src/Common/LinuxKernel.vala:1005 -#: src/Common/LinuxKernel.vala:1087 +#: src/Common/LinuxKernel.vala:459 src/Common/LinuxKernel.vala:998 +#: src/Common/LinuxKernel.vala:1080 msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:668 src/Gtk/MainWindow.vala:472 +#: src/Common/LinuxKernel.vala:677 src/Gtk/MainWindow.vala:472 msgid "Running" msgstr "Actuel" -#: src/Common/LinuxKernel.vala:669 +#: src/Common/LinuxKernel.vala:678 msgid "Installed" msgstr "Installé" -#: src/Common/LinuxKernel.vala:670 +#: src/Common/LinuxKernel.vala:679 msgid "Invalid" msgstr "No válido" -#: src/Common/LinuxKernel.vala:763 +#: src/Common/LinuxKernel.vala:772 msgid "Packages Available" msgstr "Paquets Disponibles" -#: src/Common/LinuxKernel.vala:769 +#: src/Common/LinuxKernel.vala:778 msgid "Packages Installed" msgstr "Paquets Installés" -#: src/Common/LinuxKernel.vala:794 +#: src/Common/LinuxKernel.vala:805 msgid "File not found" msgstr "Fichier non trouvé" -#: src/Common/LinuxKernel.vala:821 +#: src/Common/LinuxKernel.vala:824 #, fuzzy msgid "needs update" msgstr "Dernière mise à jour" -#: src/Common/LinuxKernel.vala:888 +#: src/Common/LinuxKernel.vala:881 msgid "Available Kernels" msgstr "Noyaux Disponibles" -#: src/Common/LinuxKernel.vala:922 src/Gtk/MainWindow.vala:139 +#: src/Common/LinuxKernel.vala:915 src/Gtk/MainWindow.vala:139 msgid "Kernel" msgstr "Noyau" -#: src/Common/LinuxKernel.vala:922 +#: src/Common/LinuxKernel.vala:915 #, fuzzy msgid "not found" msgstr "Fichier non trouvé" -#: src/Common/LinuxKernel.vala:929 +#: src/Common/LinuxKernel.vala:922 #, fuzzy msgid "Download: no downloadable kernels specified" msgstr "Pas de commande fournie" -#: src/Common/LinuxKernel.vala:948 +#: src/Common/LinuxKernel.vala:941 msgid "enabled" msgstr "activé" -#: src/Common/LinuxKernel.vala:974 +#: src/Common/LinuxKernel.vala:967 msgid "Downloading" msgstr "Téléchargement" -#: src/Common/LinuxKernel.vala:983 +#: src/Common/LinuxKernel.vala:976 msgid "Cached" msgstr "" -#: src/Common/LinuxKernel.vala:991 +#: src/Common/LinuxKernel.vala:984 #, fuzzy msgid "Installing selected kernels" msgstr "Désinstallation des noyaux sélectionnés" -#: src/Common/LinuxKernel.vala:997 src/Common/LinuxKernel.vala:1034 +#: src/Common/LinuxKernel.vala:990 src/Common/LinuxKernel.vala:1027 #, fuzzy msgid "Requested" msgstr "Demandé" -#: src/Common/LinuxKernel.vala:1000 +#: src/Common/LinuxKernel.vala:993 msgid "is already installed." msgstr "est déjà installé." -#: src/Common/LinuxKernel.vala:1010 +#: src/Common/LinuxKernel.vala:1003 msgid "download failed." msgstr "" -#: src/Common/LinuxKernel.vala:1017 src/Gtk/MainWindow.vala:498 +#: src/Common/LinuxKernel.vala:1010 src/Gtk/MainWindow.vala:498 #, fuzzy msgid "Install: no installable kernels specified" msgstr "Pas de commande fournie" -#: src/Common/LinuxKernel.vala:1030 +#: src/Common/LinuxKernel.vala:1023 msgid "Uninstalling selected kernels" msgstr "Désinstallation des noyaux sélectionnés" -#: src/Common/LinuxKernel.vala:1037 +#: src/Common/LinuxKernel.vala:1030 #, fuzzy msgid "Not uninstalling the currently running kernel" msgstr "Ne pas désinstaller le noyau en cours d'exécution" -#: src/Common/LinuxKernel.vala:1042 src/Gtk/MainWindow.vala:494 +#: src/Common/LinuxKernel.vala:1035 src/Gtk/MainWindow.vala:494 msgid "is locked" msgstr "" -#: src/Common/LinuxKernel.vala:1050 +#: src/Common/LinuxKernel.vala:1043 msgid "found" msgstr "fonder" -#: src/Common/LinuxKernel.vala:1054 +#: src/Common/LinuxKernel.vala:1047 msgid "Uninstall: no uninstallable packages found" msgstr "" -#: src/Common/LinuxKernel.vala:1083 +#: src/Common/LinuxKernel.vala:1076 #, fuzzy msgid "is the highest installed version." msgstr "Désinstallez toutes le version installées, sauf la plus élevée" -#: src/Common/LinuxKernel.vala:1095 +#: src/Common/LinuxKernel.vala:1088 msgid "Could not find running kernel in list" msgstr "Impossible de trouver le noyau en cours d'exécution dans la liste" -#: src/Common/LinuxKernel.vala:1100 +#: src/Common/LinuxKernel.vala:1093 #, fuzzy msgid "No old kernels to uninstall" msgstr "Impossible de trouver des noyaux à désinstaller" -#: src/Common/LinuxKernel.vala:1101 +#: src/Common/LinuxKernel.vala:1094 msgid "done" msgstr "" -#: src/Common/LinuxKernel.vala:1106 +#: src/Common/LinuxKernel.vala:1099 msgid "The following kernels will be uninstalled" msgstr "Les noyaux suivants seront désinstallés" -#: src/Common/LinuxKernel.vala:1108 src/lib/l.misc.vala:12 +#: src/Common/LinuxKernel.vala:1101 src/lib/l.misc.vala:12 #, fuzzy msgid "Continue? (y/N): " msgstr "Reprendre ?" -#: src/Common/LinuxKernel.vala:1122 +#: src/Common/LinuxKernel.vala:1115 #, fuzzy msgid "No updates" msgstr "Aucune mise à jour disponible" -#: src/Common/LinuxKernel.vala:1124 +#: src/Common/LinuxKernel.vala:1117 #, fuzzy, c-format msgid "Install Kernel Version %s ? (y/N): " msgstr "Installer le noyau en version %s ? (y/n): " diff --git a/po/hr.po b/po/hr.po index 6dfb8f41..c2643fa1 100644 --- a/po/hr.po +++ b/po/hr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-28 15:01-0400\n" +"POT-Creation-Date: 2023-06-28 20:18-0400\n" "PO-Revision-Date: 2022-09-22 12:13+0200\n" "Last-Translator: gogo \n" "Language-Team: Croatian\n" @@ -13,200 +13,200 @@ msgstr "" "X-Launchpad-Export-Date: 2017-12-23 23:36+0000\n" "X-Generator: Poedit 3.0.1\n" -#: src/Common/LinuxKernel.vala:106 +#: src/Common/LinuxKernel.vala:109 msgid "Distribution" msgstr "Distribucija" -#: src/Common/LinuxKernel.vala:121 +#: src/Common/LinuxKernel.vala:124 msgid "Architecture" msgstr "Arhitektura" -#: src/Common/LinuxKernel.vala:136 +#: src/Common/LinuxKernel.vala:139 msgid "Running kernel" msgstr "Trčanje kernel" -#: src/Common/LinuxKernel.vala:213 +#: src/Common/LinuxKernel.vala:234 msgid "loading cached" msgstr "učitavanje predmemoriranog" -#: src/Common/LinuxKernel.vala:225 +#: src/Common/LinuxKernel.vala:246 msgid "queuing download" msgstr "preuzimanje u redu čekanja" -#: src/Common/LinuxKernel.vala:236 +#: src/Common/LinuxKernel.vala:257 msgid "Fetching individual kernel indexes" msgstr "Dohvaćanje pojedinačnih indeksa kernel" -#: src/Common/LinuxKernel.vala:251 +#: src/Common/LinuxKernel.vala:272 msgid "loading downloaded" msgstr "učitavanje preuzeto" -#: src/Common/LinuxKernel.vala:290 +#: src/Common/LinuxKernel.vala:311 msgid "Updating from" msgstr "Ažuriranje iz" -#: src/Common/LinuxKernel.vala:297 +#: src/Common/LinuxKernel.vala:318 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:300 +#: src/Common/LinuxKernel.vala:321 msgid "FAILED" msgstr "NIJE USPIO" -#: src/Common/LinuxKernel.vala:410 +#: src/Common/LinuxKernel.vala:420 msgid "Found installed" msgstr "Pronađeno instalirano" -#: src/Common/LinuxKernel.vala:411 +#: src/Common/LinuxKernel.vala:421 msgid "locked" msgstr "" -#: src/Common/LinuxKernel.vala:412 +#: src/Common/LinuxKernel.vala:422 #, fuzzy msgid "running" msgstr "Pokrenuto" -#: src/Common/LinuxKernel.vala:449 src/Common/LinuxKernel.vala:1005 -#: src/Common/LinuxKernel.vala:1087 +#: src/Common/LinuxKernel.vala:459 src/Common/LinuxKernel.vala:998 +#: src/Common/LinuxKernel.vala:1080 msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:668 src/Gtk/MainWindow.vala:472 +#: src/Common/LinuxKernel.vala:677 src/Gtk/MainWindow.vala:472 msgid "Running" msgstr "Pokrenuto" -#: src/Common/LinuxKernel.vala:669 +#: src/Common/LinuxKernel.vala:678 msgid "Installed" msgstr "Instalirano" -#: src/Common/LinuxKernel.vala:670 +#: src/Common/LinuxKernel.vala:679 msgid "Invalid" msgstr "Érvénytelen" -#: src/Common/LinuxKernel.vala:763 +#: src/Common/LinuxKernel.vala:772 msgid "Packages Available" msgstr "Dostupni Paketi" -#: src/Common/LinuxKernel.vala:769 +#: src/Common/LinuxKernel.vala:778 msgid "Packages Installed" msgstr "Instalirani paketi" -#: src/Common/LinuxKernel.vala:794 +#: src/Common/LinuxKernel.vala:805 msgid "File not found" msgstr "Datoteka nije pronađena" -#: src/Common/LinuxKernel.vala:821 +#: src/Common/LinuxKernel.vala:824 #, fuzzy msgid "needs update" msgstr "Najnovija nadopuna" -#: src/Common/LinuxKernel.vala:888 +#: src/Common/LinuxKernel.vala:881 msgid "Available Kernels" msgstr "Dostupni kerneli" -#: src/Common/LinuxKernel.vala:922 src/Gtk/MainWindow.vala:139 +#: src/Common/LinuxKernel.vala:915 src/Gtk/MainWindow.vala:139 msgid "Kernel" msgstr "Kernel" -#: src/Common/LinuxKernel.vala:922 +#: src/Common/LinuxKernel.vala:915 #, fuzzy msgid "not found" msgstr "Datoteka nije pronađena" -#: src/Common/LinuxKernel.vala:929 +#: src/Common/LinuxKernel.vala:922 #, fuzzy msgid "Download: no downloadable kernels specified" msgstr "Naredba nije navedena" -#: src/Common/LinuxKernel.vala:948 +#: src/Common/LinuxKernel.vala:941 msgid "enabled" msgstr "omogućen" -#: src/Common/LinuxKernel.vala:974 +#: src/Common/LinuxKernel.vala:967 msgid "Downloading" msgstr "Učitavanje" -#: src/Common/LinuxKernel.vala:983 +#: src/Common/LinuxKernel.vala:976 msgid "Cached" msgstr "" -#: src/Common/LinuxKernel.vala:991 +#: src/Common/LinuxKernel.vala:984 #, fuzzy msgid "Installing selected kernels" msgstr "Deinstaliraj određene kernele" -#: src/Common/LinuxKernel.vala:997 src/Common/LinuxKernel.vala:1034 +#: src/Common/LinuxKernel.vala:990 src/Common/LinuxKernel.vala:1027 #, fuzzy msgid "Requested" msgstr "Zatražio" -#: src/Common/LinuxKernel.vala:1000 +#: src/Common/LinuxKernel.vala:993 msgid "is already installed." msgstr "je već instaliran." -#: src/Common/LinuxKernel.vala:1010 +#: src/Common/LinuxKernel.vala:1003 msgid "download failed." msgstr "" -#: src/Common/LinuxKernel.vala:1017 src/Gtk/MainWindow.vala:498 +#: src/Common/LinuxKernel.vala:1010 src/Gtk/MainWindow.vala:498 #, fuzzy msgid "Install: no installable kernels specified" msgstr "Naredba nije navedena" -#: src/Common/LinuxKernel.vala:1030 +#: src/Common/LinuxKernel.vala:1023 msgid "Uninstalling selected kernels" msgstr "Deinstaliraj određene kernele" -#: src/Common/LinuxKernel.vala:1037 +#: src/Common/LinuxKernel.vala:1030 #, fuzzy msgid "Not uninstalling the currently running kernel" msgstr "ne deinstaliranje trenutno pokrenute kernel" -#: src/Common/LinuxKernel.vala:1042 src/Gtk/MainWindow.vala:494 +#: src/Common/LinuxKernel.vala:1035 src/Gtk/MainWindow.vala:494 msgid "is locked" msgstr "" -#: src/Common/LinuxKernel.vala:1050 +#: src/Common/LinuxKernel.vala:1043 msgid "found" msgstr "pronađen" -#: src/Common/LinuxKernel.vala:1054 +#: src/Common/LinuxKernel.vala:1047 msgid "Uninstall: no uninstallable packages found" msgstr "" -#: src/Common/LinuxKernel.vala:1083 +#: src/Common/LinuxKernel.vala:1076 #, fuzzy msgid "is the highest installed version." msgstr "Deinstaliraj sve osim najnovije instalirane verzije" -#: src/Common/LinuxKernel.vala:1095 +#: src/Common/LinuxKernel.vala:1088 msgid "Could not find running kernel in list" msgstr "Nije moguće pronaći pokrenutu kernel na popisu" -#: src/Common/LinuxKernel.vala:1100 +#: src/Common/LinuxKernel.vala:1093 #, fuzzy msgid "No old kernels to uninstall" msgstr "Nema pronađenih kernela za deinstaliranje" -#: src/Common/LinuxKernel.vala:1101 +#: src/Common/LinuxKernel.vala:1094 msgid "done" msgstr "" -#: src/Common/LinuxKernel.vala:1106 +#: src/Common/LinuxKernel.vala:1099 msgid "The following kernels will be uninstalled" msgstr "Deinstalirat će se sljedeće kerneli" -#: src/Common/LinuxKernel.vala:1108 src/lib/l.misc.vala:12 +#: src/Common/LinuxKernel.vala:1101 src/lib/l.misc.vala:12 #, fuzzy msgid "Continue? (y/N): " msgstr "Nastavi?" -#: src/Common/LinuxKernel.vala:1122 +#: src/Common/LinuxKernel.vala:1115 #, fuzzy msgid "No updates" msgstr "Nema pronađenih nadopuna" -#: src/Common/LinuxKernel.vala:1124 +#: src/Common/LinuxKernel.vala:1117 #, fuzzy, c-format msgid "Install Kernel Version %s ? (y/N): " msgstr "Instaliraj kernel inačice %s ? (d/n): " diff --git a/po/it.po b/po/it.po index 60195b2c..5de8225b 100644 --- a/po/it.po +++ b/po/it.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-28 15:01-0400\n" +"POT-Creation-Date: 2023-06-28 20:18-0400\n" "PO-Revision-Date: 2020-08-22 15:35+0100\n" "Last-Translator: Demetrio Mendozzi\n" "Language-Team: Italian\n" @@ -11,200 +11,200 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: src/Common/LinuxKernel.vala:106 +#: src/Common/LinuxKernel.vala:109 msgid "Distribution" msgstr "Distribuzione" -#: src/Common/LinuxKernel.vala:121 +#: src/Common/LinuxKernel.vala:124 msgid "Architecture" msgstr "Architettura" -#: src/Common/LinuxKernel.vala:136 +#: src/Common/LinuxKernel.vala:139 msgid "Running kernel" msgstr "Kernel in esecuzione" -#: src/Common/LinuxKernel.vala:213 +#: src/Common/LinuxKernel.vala:234 msgid "loading cached" msgstr "Caricamento file della cache" -#: src/Common/LinuxKernel.vala:225 +#: src/Common/LinuxKernel.vala:246 msgid "queuing download" msgstr "download in coda" -#: src/Common/LinuxKernel.vala:236 +#: src/Common/LinuxKernel.vala:257 msgid "Fetching individual kernel indexes" msgstr "Recupero dei singoli indici del kernel" -#: src/Common/LinuxKernel.vala:251 +#: src/Common/LinuxKernel.vala:272 msgid "loading downloaded" msgstr "caricamento dei file scaricati" -#: src/Common/LinuxKernel.vala:290 +#: src/Common/LinuxKernel.vala:311 msgid "Updating from" msgstr "Aggiornamento da" -#: src/Common/LinuxKernel.vala:297 +#: src/Common/LinuxKernel.vala:318 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:300 +#: src/Common/LinuxKernel.vala:321 msgid "FAILED" msgstr "FALLITO" -#: src/Common/LinuxKernel.vala:410 +#: src/Common/LinuxKernel.vala:420 msgid "Found installed" msgstr "Trovato installato" -#: src/Common/LinuxKernel.vala:411 +#: src/Common/LinuxKernel.vala:421 msgid "locked" msgstr "" -#: src/Common/LinuxKernel.vala:412 +#: src/Common/LinuxKernel.vala:422 #, fuzzy msgid "running" msgstr "In esecuzione" -#: src/Common/LinuxKernel.vala:449 src/Common/LinuxKernel.vala:1005 -#: src/Common/LinuxKernel.vala:1087 +#: src/Common/LinuxKernel.vala:459 src/Common/LinuxKernel.vala:998 +#: src/Common/LinuxKernel.vala:1080 msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:668 src/Gtk/MainWindow.vala:472 +#: src/Common/LinuxKernel.vala:677 src/Gtk/MainWindow.vala:472 msgid "Running" msgstr "In esecuzione" -#: src/Common/LinuxKernel.vala:669 +#: src/Common/LinuxKernel.vala:678 msgid "Installed" msgstr "Installato" -#: src/Common/LinuxKernel.vala:670 +#: src/Common/LinuxKernel.vala:679 msgid "Invalid" msgstr "Non valido" -#: src/Common/LinuxKernel.vala:763 +#: src/Common/LinuxKernel.vala:772 msgid "Packages Available" msgstr "Pacchetti disponibili" -#: src/Common/LinuxKernel.vala:769 +#: src/Common/LinuxKernel.vala:778 msgid "Packages Installed" msgstr "Pacchetti installati" -#: src/Common/LinuxKernel.vala:794 +#: src/Common/LinuxKernel.vala:805 msgid "File not found" msgstr "File non trovato" -#: src/Common/LinuxKernel.vala:821 +#: src/Common/LinuxKernel.vala:824 #, fuzzy msgid "needs update" msgstr "Ultimo aggiornamento" -#: src/Common/LinuxKernel.vala:888 +#: src/Common/LinuxKernel.vala:881 msgid "Available Kernels" msgstr "Kernel disponibili" -#: src/Common/LinuxKernel.vala:922 src/Gtk/MainWindow.vala:139 +#: src/Common/LinuxKernel.vala:915 src/Gtk/MainWindow.vala:139 msgid "Kernel" msgstr "Kernel" -#: src/Common/LinuxKernel.vala:922 +#: src/Common/LinuxKernel.vala:915 #, fuzzy msgid "not found" msgstr "File non trovato" -#: src/Common/LinuxKernel.vala:929 +#: src/Common/LinuxKernel.vala:922 #, fuzzy msgid "Download: no downloadable kernels specified" msgstr "Comando non specificato" -#: src/Common/LinuxKernel.vala:948 +#: src/Common/LinuxKernel.vala:941 msgid "enabled" msgstr "abilitato" -#: src/Common/LinuxKernel.vala:974 +#: src/Common/LinuxKernel.vala:967 msgid "Downloading" msgstr "Scaricamento" -#: src/Common/LinuxKernel.vala:983 +#: src/Common/LinuxKernel.vala:976 msgid "Cached" msgstr "" -#: src/Common/LinuxKernel.vala:991 +#: src/Common/LinuxKernel.vala:984 #, fuzzy msgid "Installing selected kernels" msgstr "Disinstalla i kernel specificati" -#: src/Common/LinuxKernel.vala:997 src/Common/LinuxKernel.vala:1034 +#: src/Common/LinuxKernel.vala:990 src/Common/LinuxKernel.vala:1027 #, fuzzy msgid "Requested" msgstr "richiesto" -#: src/Common/LinuxKernel.vala:1000 +#: src/Common/LinuxKernel.vala:993 msgid "is already installed." msgstr "è già installato." -#: src/Common/LinuxKernel.vala:1010 +#: src/Common/LinuxKernel.vala:1003 msgid "download failed." msgstr "" -#: src/Common/LinuxKernel.vala:1017 src/Gtk/MainWindow.vala:498 +#: src/Common/LinuxKernel.vala:1010 src/Gtk/MainWindow.vala:498 #, fuzzy msgid "Install: no installable kernels specified" msgstr "Comando non specificato" -#: src/Common/LinuxKernel.vala:1030 +#: src/Common/LinuxKernel.vala:1023 msgid "Uninstalling selected kernels" msgstr "Disinstalla i kernel specificati" -#: src/Common/LinuxKernel.vala:1037 +#: src/Common/LinuxKernel.vala:1030 #, fuzzy msgid "Not uninstalling the currently running kernel" msgstr "non disinstallare il kernel attualmente in esecuzione" -#: src/Common/LinuxKernel.vala:1042 src/Gtk/MainWindow.vala:494 +#: src/Common/LinuxKernel.vala:1035 src/Gtk/MainWindow.vala:494 msgid "is locked" msgstr "" -#: src/Common/LinuxKernel.vala:1050 +#: src/Common/LinuxKernel.vala:1043 msgid "found" msgstr "trovato" -#: src/Common/LinuxKernel.vala:1054 +#: src/Common/LinuxKernel.vala:1047 msgid "Uninstall: no uninstallable packages found" msgstr "" -#: src/Common/LinuxKernel.vala:1083 +#: src/Common/LinuxKernel.vala:1076 #, fuzzy msgid "is the highest installed version." msgstr "Disinstallare tutti tranne la versione più recente installata" -#: src/Common/LinuxKernel.vala:1095 +#: src/Common/LinuxKernel.vala:1088 msgid "Could not find running kernel in list" msgstr "Impossibile trovare il kernel in esecuzione nell'elenco" -#: src/Common/LinuxKernel.vala:1100 +#: src/Common/LinuxKernel.vala:1093 #, fuzzy msgid "No old kernels to uninstall" msgstr "Impossibile trovare alcun kernel da rimuovere" -#: src/Common/LinuxKernel.vala:1101 +#: src/Common/LinuxKernel.vala:1094 msgid "done" msgstr "" -#: src/Common/LinuxKernel.vala:1106 +#: src/Common/LinuxKernel.vala:1099 msgid "The following kernels will be uninstalled" msgstr "I seguenti kernel saranno rimossi" -#: src/Common/LinuxKernel.vala:1108 src/lib/l.misc.vala:12 +#: src/Common/LinuxKernel.vala:1101 src/lib/l.misc.vala:12 #, fuzzy msgid "Continue? (y/N): " msgstr "Continuare ?" -#: src/Common/LinuxKernel.vala:1122 +#: src/Common/LinuxKernel.vala:1115 #, fuzzy msgid "No updates" msgstr "Nessun aggiornamento trovato" -#: src/Common/LinuxKernel.vala:1124 +#: src/Common/LinuxKernel.vala:1117 #, fuzzy, c-format msgid "Install Kernel Version %s ? (y/N): " msgstr "Installare la versione del kernel %s ? (y/n): " diff --git a/po/ko.po b/po/ko.po index c98e4dff..97c82335 100644 --- a/po/ko.po +++ b/po/ko.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-28 15:01-0400\n" +"POT-Creation-Date: 2023-06-28 20:18-0400\n" "PO-Revision-Date: 2022-09-28 11:48+0900\n" "Last-Translator: Kevin Kim \n" "Language-Team: Korean\n" @@ -13,200 +13,200 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Poedit 3.0.1\n" -#: src/Common/LinuxKernel.vala:106 +#: src/Common/LinuxKernel.vala:109 msgid "Distribution" msgstr "배포판" -#: src/Common/LinuxKernel.vala:121 +#: src/Common/LinuxKernel.vala:124 msgid "Architecture" msgstr "아키텍처" -#: src/Common/LinuxKernel.vala:136 +#: src/Common/LinuxKernel.vala:139 msgid "Running kernel" msgstr "현재 실행 중인 커널" -#: src/Common/LinuxKernel.vala:213 +#: src/Common/LinuxKernel.vala:234 msgid "loading cached" msgstr "캐시된 로드 중" -#: src/Common/LinuxKernel.vala:225 +#: src/Common/LinuxKernel.vala:246 msgid "queuing download" msgstr "대기열 다운로드" -#: src/Common/LinuxKernel.vala:236 +#: src/Common/LinuxKernel.vala:257 msgid "Fetching individual kernel indexes" msgstr "개별 커널 인덱스 페치" -#: src/Common/LinuxKernel.vala:251 +#: src/Common/LinuxKernel.vala:272 msgid "loading downloaded" msgstr "다운로드 로드 중" -#: src/Common/LinuxKernel.vala:290 +#: src/Common/LinuxKernel.vala:311 msgid "Updating from" msgstr "다음에서 업데이트" -#: src/Common/LinuxKernel.vala:297 +#: src/Common/LinuxKernel.vala:318 msgid "OK" msgstr "확인" -#: src/Common/LinuxKernel.vala:300 +#: src/Common/LinuxKernel.vala:321 msgid "FAILED" msgstr "실패" -#: src/Common/LinuxKernel.vala:410 +#: src/Common/LinuxKernel.vala:420 msgid "Found installed" msgstr "설치된 것을 찾았습니다" -#: src/Common/LinuxKernel.vala:411 +#: src/Common/LinuxKernel.vala:421 msgid "locked" msgstr "" -#: src/Common/LinuxKernel.vala:412 +#: src/Common/LinuxKernel.vala:422 #, fuzzy msgid "running" msgstr "구동 중" -#: src/Common/LinuxKernel.vala:449 src/Common/LinuxKernel.vala:1005 -#: src/Common/LinuxKernel.vala:1087 +#: src/Common/LinuxKernel.vala:459 src/Common/LinuxKernel.vala:998 +#: src/Common/LinuxKernel.vala:1080 msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:668 src/Gtk/MainWindow.vala:472 +#: src/Common/LinuxKernel.vala:677 src/Gtk/MainWindow.vala:472 msgid "Running" msgstr "구동 중" -#: src/Common/LinuxKernel.vala:669 +#: src/Common/LinuxKernel.vala:678 msgid "Installed" msgstr "설치 됨" -#: src/Common/LinuxKernel.vala:670 +#: src/Common/LinuxKernel.vala:679 msgid "Invalid" msgstr "사용할 수 없음" -#: src/Common/LinuxKernel.vala:763 +#: src/Common/LinuxKernel.vala:772 msgid "Packages Available" msgstr "설치 가능한 패키지" -#: src/Common/LinuxKernel.vala:769 +#: src/Common/LinuxKernel.vala:778 msgid "Packages Installed" msgstr "설치된 패키지" -#: src/Common/LinuxKernel.vala:794 +#: src/Common/LinuxKernel.vala:805 msgid "File not found" msgstr "파일을 찾을 수 없습니다" -#: src/Common/LinuxKernel.vala:821 +#: src/Common/LinuxKernel.vala:824 #, fuzzy msgid "needs update" msgstr "최신 업데이트" -#: src/Common/LinuxKernel.vala:888 +#: src/Common/LinuxKernel.vala:881 msgid "Available Kernels" msgstr "설치 가능한 커널" -#: src/Common/LinuxKernel.vala:922 src/Gtk/MainWindow.vala:139 +#: src/Common/LinuxKernel.vala:915 src/Gtk/MainWindow.vala:139 msgid "Kernel" msgstr "커널" -#: src/Common/LinuxKernel.vala:922 +#: src/Common/LinuxKernel.vala:915 #, fuzzy msgid "not found" msgstr "파일을 찾을 수 없습니다" -#: src/Common/LinuxKernel.vala:929 +#: src/Common/LinuxKernel.vala:922 #, fuzzy msgid "Download: no downloadable kernels specified" msgstr "지정한 명령어가 없습니다" -#: src/Common/LinuxKernel.vala:948 +#: src/Common/LinuxKernel.vala:941 msgid "enabled" msgstr "사용" -#: src/Common/LinuxKernel.vala:974 +#: src/Common/LinuxKernel.vala:967 msgid "Downloading" msgstr "다운로드" -#: src/Common/LinuxKernel.vala:983 +#: src/Common/LinuxKernel.vala:976 msgid "Cached" msgstr "" -#: src/Common/LinuxKernel.vala:991 +#: src/Common/LinuxKernel.vala:984 #, fuzzy msgid "Installing selected kernels" msgstr "선택한 커널 제거" -#: src/Common/LinuxKernel.vala:997 src/Common/LinuxKernel.vala:1034 +#: src/Common/LinuxKernel.vala:990 src/Common/LinuxKernel.vala:1027 #, fuzzy msgid "Requested" msgstr "요청" -#: src/Common/LinuxKernel.vala:1000 +#: src/Common/LinuxKernel.vala:993 msgid "is already installed." msgstr "가 이미 설치되어 있습니다" -#: src/Common/LinuxKernel.vala:1010 +#: src/Common/LinuxKernel.vala:1003 msgid "download failed." msgstr "" -#: src/Common/LinuxKernel.vala:1017 src/Gtk/MainWindow.vala:498 +#: src/Common/LinuxKernel.vala:1010 src/Gtk/MainWindow.vala:498 #, fuzzy msgid "Install: no installable kernels specified" msgstr "지정한 명령어가 없습니다" -#: src/Common/LinuxKernel.vala:1030 +#: src/Common/LinuxKernel.vala:1023 msgid "Uninstalling selected kernels" msgstr "선택한 커널 제거" -#: src/Common/LinuxKernel.vala:1037 +#: src/Common/LinuxKernel.vala:1030 #, fuzzy msgid "Not uninstalling the currently running kernel" msgstr "현재 실행 중인 커널을 제거하지 않음" -#: src/Common/LinuxKernel.vala:1042 src/Gtk/MainWindow.vala:494 +#: src/Common/LinuxKernel.vala:1035 src/Gtk/MainWindow.vala:494 msgid "is locked" msgstr "" -#: src/Common/LinuxKernel.vala:1050 +#: src/Common/LinuxKernel.vala:1043 msgid "found" msgstr "설립하다" -#: src/Common/LinuxKernel.vala:1054 +#: src/Common/LinuxKernel.vala:1047 msgid "Uninstall: no uninstallable packages found" msgstr "" -#: src/Common/LinuxKernel.vala:1083 +#: src/Common/LinuxKernel.vala:1076 #, fuzzy msgid "is the highest installed version." msgstr "설치된 가장 높은 버전을 제외한 모든 버전을 제거합니다" -#: src/Common/LinuxKernel.vala:1095 +#: src/Common/LinuxKernel.vala:1088 msgid "Could not find running kernel in list" msgstr "현재 실행 중인 커널을 찾을 수 없습니다" -#: src/Common/LinuxKernel.vala:1100 +#: src/Common/LinuxKernel.vala:1093 #, fuzzy msgid "No old kernels to uninstall" msgstr "삭제할 커널을 찾을 수 없습니다" -#: src/Common/LinuxKernel.vala:1101 +#: src/Common/LinuxKernel.vala:1094 msgid "done" msgstr "" -#: src/Common/LinuxKernel.vala:1106 +#: src/Common/LinuxKernel.vala:1099 msgid "The following kernels will be uninstalled" msgstr "풀이" -#: src/Common/LinuxKernel.vala:1108 src/lib/l.misc.vala:12 +#: src/Common/LinuxKernel.vala:1101 src/lib/l.misc.vala:12 #, fuzzy msgid "Continue? (y/N): " msgstr "계속하시겠습니까?" -#: src/Common/LinuxKernel.vala:1122 +#: src/Common/LinuxKernel.vala:1115 #, fuzzy msgid "No updates" msgstr "업데이트를 찾을 수 없습니다" -#: src/Common/LinuxKernel.vala:1124 +#: src/Common/LinuxKernel.vala:1117 #, fuzzy, c-format msgid "Install Kernel Version %s ? (y/N): " msgstr "커널 %s 버전을 설치하시겠습니까? (y/n): " diff --git a/po/messages.pot b/po/messages.pot index 1d5cd4cd..9a3bcdcc 100644 --- a/po/messages.pot +++ b/po/messages.pot @@ -6,9 +6,9 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: mainline 1.3.21\n" +"Project-Id-Version: mainline 1.3.22\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-28 16:52-0400\n" +"POT-Creation-Date: 2023-06-28 20:18-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,188 +17,188 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" -#: src/Common/LinuxKernel.vala:106 +#: src/Common/LinuxKernel.vala:109 msgid "Distribution" msgstr "" -#: src/Common/LinuxKernel.vala:121 +#: src/Common/LinuxKernel.vala:124 msgid "Architecture" msgstr "" -#: src/Common/LinuxKernel.vala:136 +#: src/Common/LinuxKernel.vala:139 msgid "Running kernel" msgstr "" -#: src/Common/LinuxKernel.vala:213 +#: src/Common/LinuxKernel.vala:234 msgid "loading cached" msgstr "" -#: src/Common/LinuxKernel.vala:225 +#: src/Common/LinuxKernel.vala:246 msgid "queuing download" msgstr "" -#: src/Common/LinuxKernel.vala:236 +#: src/Common/LinuxKernel.vala:257 msgid "Fetching individual kernel indexes" msgstr "" -#: src/Common/LinuxKernel.vala:251 +#: src/Common/LinuxKernel.vala:272 msgid "loading downloaded" msgstr "" -#: src/Common/LinuxKernel.vala:290 +#: src/Common/LinuxKernel.vala:311 msgid "Updating from" msgstr "" -#: src/Common/LinuxKernel.vala:297 +#: src/Common/LinuxKernel.vala:318 msgid "OK" msgstr "" -#: src/Common/LinuxKernel.vala:300 +#: src/Common/LinuxKernel.vala:321 msgid "FAILED" msgstr "" -#: src/Common/LinuxKernel.vala:410 +#: src/Common/LinuxKernel.vala:420 msgid "Found installed" msgstr "" -#: src/Common/LinuxKernel.vala:411 +#: src/Common/LinuxKernel.vala:421 msgid "locked" msgstr "" -#: src/Common/LinuxKernel.vala:412 +#: src/Common/LinuxKernel.vala:422 msgid "running" msgstr "" -#: src/Common/LinuxKernel.vala:449 src/Common/LinuxKernel.vala:1005 -#: src/Common/LinuxKernel.vala:1087 +#: src/Common/LinuxKernel.vala:459 src/Common/LinuxKernel.vala:998 +#: src/Common/LinuxKernel.vala:1080 msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:668 src/Gtk/MainWindow.vala:472 +#: src/Common/LinuxKernel.vala:677 src/Gtk/MainWindow.vala:472 msgid "Running" msgstr "" -#: src/Common/LinuxKernel.vala:669 +#: src/Common/LinuxKernel.vala:678 msgid "Installed" msgstr "" -#: src/Common/LinuxKernel.vala:670 +#: src/Common/LinuxKernel.vala:679 msgid "Invalid" msgstr "" -#: src/Common/LinuxKernel.vala:763 +#: src/Common/LinuxKernel.vala:772 msgid "Packages Available" msgstr "" -#: src/Common/LinuxKernel.vala:769 +#: src/Common/LinuxKernel.vala:778 msgid "Packages Installed" msgstr "" -#: src/Common/LinuxKernel.vala:794 +#: src/Common/LinuxKernel.vala:805 msgid "File not found" msgstr "" -#: src/Common/LinuxKernel.vala:821 +#: src/Common/LinuxKernel.vala:824 msgid "needs update" msgstr "" -#: src/Common/LinuxKernel.vala:888 +#: src/Common/LinuxKernel.vala:881 msgid "Available Kernels" msgstr "" -#: src/Common/LinuxKernel.vala:922 src/Gtk/MainWindow.vala:139 +#: src/Common/LinuxKernel.vala:915 src/Gtk/MainWindow.vala:139 msgid "Kernel" msgstr "" -#: src/Common/LinuxKernel.vala:922 +#: src/Common/LinuxKernel.vala:915 msgid "not found" msgstr "" -#: src/Common/LinuxKernel.vala:929 +#: src/Common/LinuxKernel.vala:922 msgid "Download: no downloadable kernels specified" msgstr "" -#: src/Common/LinuxKernel.vala:948 +#: src/Common/LinuxKernel.vala:941 msgid "enabled" msgstr "" -#: src/Common/LinuxKernel.vala:974 +#: src/Common/LinuxKernel.vala:967 msgid "Downloading" msgstr "" -#: src/Common/LinuxKernel.vala:983 +#: src/Common/LinuxKernel.vala:976 msgid "Cached" msgstr "" -#: src/Common/LinuxKernel.vala:991 +#: src/Common/LinuxKernel.vala:984 msgid "Installing selected kernels" msgstr "" -#: src/Common/LinuxKernel.vala:997 src/Common/LinuxKernel.vala:1034 +#: src/Common/LinuxKernel.vala:990 src/Common/LinuxKernel.vala:1027 msgid "Requested" msgstr "" -#: src/Common/LinuxKernel.vala:1000 +#: src/Common/LinuxKernel.vala:993 msgid "is already installed." msgstr "" -#: src/Common/LinuxKernel.vala:1010 +#: src/Common/LinuxKernel.vala:1003 msgid "download failed." msgstr "" -#: src/Common/LinuxKernel.vala:1017 src/Gtk/MainWindow.vala:498 +#: src/Common/LinuxKernel.vala:1010 src/Gtk/MainWindow.vala:498 msgid "Install: no installable kernels specified" msgstr "" -#: src/Common/LinuxKernel.vala:1030 +#: src/Common/LinuxKernel.vala:1023 msgid "Uninstalling selected kernels" msgstr "" -#: src/Common/LinuxKernel.vala:1037 +#: src/Common/LinuxKernel.vala:1030 msgid "Not uninstalling the currently running kernel" msgstr "" -#: src/Common/LinuxKernel.vala:1042 src/Gtk/MainWindow.vala:494 +#: src/Common/LinuxKernel.vala:1035 src/Gtk/MainWindow.vala:494 msgid "is locked" msgstr "" -#: src/Common/LinuxKernel.vala:1050 +#: src/Common/LinuxKernel.vala:1043 msgid "found" msgstr "" -#: src/Common/LinuxKernel.vala:1054 +#: src/Common/LinuxKernel.vala:1047 msgid "Uninstall: no uninstallable packages found" msgstr "" -#: src/Common/LinuxKernel.vala:1083 +#: src/Common/LinuxKernel.vala:1076 msgid "is the highest installed version." msgstr "" -#: src/Common/LinuxKernel.vala:1095 +#: src/Common/LinuxKernel.vala:1088 msgid "Could not find running kernel in list" msgstr "" -#: src/Common/LinuxKernel.vala:1100 +#: src/Common/LinuxKernel.vala:1093 msgid "No old kernels to uninstall" msgstr "" -#: src/Common/LinuxKernel.vala:1101 +#: src/Common/LinuxKernel.vala:1094 msgid "done" msgstr "" -#: src/Common/LinuxKernel.vala:1106 +#: src/Common/LinuxKernel.vala:1099 msgid "The following kernels will be uninstalled" msgstr "" -#: src/Common/LinuxKernel.vala:1108 src/lib/l.misc.vala:12 +#: src/Common/LinuxKernel.vala:1101 src/lib/l.misc.vala:12 msgid "Continue? (y/N): " msgstr "" -#: src/Common/LinuxKernel.vala:1122 +#: src/Common/LinuxKernel.vala:1115 msgid "No updates" msgstr "" -#: src/Common/LinuxKernel.vala:1124 +#: src/Common/LinuxKernel.vala:1117 #, c-format msgid "Install Kernel Version %s ? (y/N): " msgstr "" diff --git a/po/nl.po b/po/nl.po index bf4f2bb3..d6ad221c 100644 --- a/po/nl.po +++ b/po/nl.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-28 15:01-0400\n" +"POT-Creation-Date: 2023-06-28 20:18-0400\n" "PO-Revision-Date: 2020-08-23 13:55+0200\n" "Last-Translator: Heimen Stoffels \n" "Language-Team: Dutch (Netherlands)\n" @@ -13,200 +13,200 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Poedit 3.2.2\n" -#: src/Common/LinuxKernel.vala:106 +#: src/Common/LinuxKernel.vala:109 msgid "Distribution" msgstr "Distributie" -#: src/Common/LinuxKernel.vala:121 +#: src/Common/LinuxKernel.vala:124 msgid "Architecture" msgstr "Architectuur" -#: src/Common/LinuxKernel.vala:136 +#: src/Common/LinuxKernel.vala:139 msgid "Running kernel" msgstr "Kernel uitvoeren" -#: src/Common/LinuxKernel.vala:213 +#: src/Common/LinuxKernel.vala:234 msgid "loading cached" msgstr "laden in cache" -#: src/Common/LinuxKernel.vala:225 +#: src/Common/LinuxKernel.vala:246 msgid "queuing download" msgstr "wachtrijen downloaden" -#: src/Common/LinuxKernel.vala:236 +#: src/Common/LinuxKernel.vala:257 msgid "Fetching individual kernel indexes" msgstr "Afzonderlijke kernelindexen ophalen" -#: src/Common/LinuxKernel.vala:251 +#: src/Common/LinuxKernel.vala:272 msgid "loading downloaded" msgstr "laden gedownload" -#: src/Common/LinuxKernel.vala:290 +#: src/Common/LinuxKernel.vala:311 msgid "Updating from" msgstr "Bijwerken van" -#: src/Common/LinuxKernel.vala:297 +#: src/Common/LinuxKernel.vala:318 msgid "OK" msgstr "Oké" -#: src/Common/LinuxKernel.vala:300 +#: src/Common/LinuxKernel.vala:321 msgid "FAILED" msgstr "MISLUKT" -#: src/Common/LinuxKernel.vala:410 +#: src/Common/LinuxKernel.vala:420 msgid "Found installed" msgstr "Geïnstalleerd gevonden" -#: src/Common/LinuxKernel.vala:411 +#: src/Common/LinuxKernel.vala:421 msgid "locked" msgstr "" -#: src/Common/LinuxKernel.vala:412 +#: src/Common/LinuxKernel.vala:422 #, fuzzy msgid "running" msgstr "In gebruik" -#: src/Common/LinuxKernel.vala:449 src/Common/LinuxKernel.vala:1005 -#: src/Common/LinuxKernel.vala:1087 +#: src/Common/LinuxKernel.vala:459 src/Common/LinuxKernel.vala:998 +#: src/Common/LinuxKernel.vala:1080 msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:668 src/Gtk/MainWindow.vala:472 +#: src/Common/LinuxKernel.vala:677 src/Gtk/MainWindow.vala:472 msgid "Running" msgstr "In gebruik" -#: src/Common/LinuxKernel.vala:669 +#: src/Common/LinuxKernel.vala:678 msgid "Installed" msgstr "Geïnstalleerd" -#: src/Common/LinuxKernel.vala:670 +#: src/Common/LinuxKernel.vala:679 msgid "Invalid" msgstr "Ongeldig" -#: src/Common/LinuxKernel.vala:763 +#: src/Common/LinuxKernel.vala:772 msgid "Packages Available" msgstr "Beschikbare pakketten" -#: src/Common/LinuxKernel.vala:769 +#: src/Common/LinuxKernel.vala:778 msgid "Packages Installed" msgstr "Geïnstalleerde pakketten" -#: src/Common/LinuxKernel.vala:794 +#: src/Common/LinuxKernel.vala:805 msgid "File not found" msgstr "Het bestand is niet gevonden" -#: src/Common/LinuxKernel.vala:821 +#: src/Common/LinuxKernel.vala:824 #, fuzzy msgid "needs update" msgstr "Recentste update" -#: src/Common/LinuxKernel.vala:888 +#: src/Common/LinuxKernel.vala:881 msgid "Available Kernels" msgstr "Beschikbare kernels" -#: src/Common/LinuxKernel.vala:922 src/Gtk/MainWindow.vala:139 +#: src/Common/LinuxKernel.vala:915 src/Gtk/MainWindow.vala:139 msgid "Kernel" msgstr "Kernel" -#: src/Common/LinuxKernel.vala:922 +#: src/Common/LinuxKernel.vala:915 #, fuzzy msgid "not found" msgstr "Het bestand is niet gevonden" -#: src/Common/LinuxKernel.vala:929 +#: src/Common/LinuxKernel.vala:922 #, fuzzy msgid "Download: no downloadable kernels specified" msgstr "Geen opdracht opgegeven" -#: src/Common/LinuxKernel.vala:948 +#: src/Common/LinuxKernel.vala:941 msgid "enabled" msgstr "ingeschakeld" -#: src/Common/LinuxKernel.vala:974 +#: src/Common/LinuxKernel.vala:967 msgid "Downloading" msgstr "Downloaden" -#: src/Common/LinuxKernel.vala:983 +#: src/Common/LinuxKernel.vala:976 msgid "Cached" msgstr "" -#: src/Common/LinuxKernel.vala:991 +#: src/Common/LinuxKernel.vala:984 #, fuzzy msgid "Installing selected kernels" msgstr "Geselecteerde kernels verwijderen" -#: src/Common/LinuxKernel.vala:997 src/Common/LinuxKernel.vala:1034 +#: src/Common/LinuxKernel.vala:990 src/Common/LinuxKernel.vala:1027 #, fuzzy msgid "Requested" msgstr "verzocht" -#: src/Common/LinuxKernel.vala:1000 +#: src/Common/LinuxKernel.vala:993 msgid "is already installed." msgstr "is al geïnstalleerd." -#: src/Common/LinuxKernel.vala:1010 +#: src/Common/LinuxKernel.vala:1003 msgid "download failed." msgstr "" -#: src/Common/LinuxKernel.vala:1017 src/Gtk/MainWindow.vala:498 +#: src/Common/LinuxKernel.vala:1010 src/Gtk/MainWindow.vala:498 #, fuzzy msgid "Install: no installable kernels specified" msgstr "Geen opdracht opgegeven" -#: src/Common/LinuxKernel.vala:1030 +#: src/Common/LinuxKernel.vala:1023 msgid "Uninstalling selected kernels" msgstr "Geselecteerde kernels verwijderen" -#: src/Common/LinuxKernel.vala:1037 +#: src/Common/LinuxKernel.vala:1030 #, fuzzy msgid "Not uninstalling the currently running kernel" msgstr "de momenteel actieve kernel niet verwijderen" -#: src/Common/LinuxKernel.vala:1042 src/Gtk/MainWindow.vala:494 +#: src/Common/LinuxKernel.vala:1035 src/Gtk/MainWindow.vala:494 msgid "is locked" msgstr "" -#: src/Common/LinuxKernel.vala:1050 +#: src/Common/LinuxKernel.vala:1043 msgid "found" msgstr "gevonden" -#: src/Common/LinuxKernel.vala:1054 +#: src/Common/LinuxKernel.vala:1047 msgid "Uninstall: no uninstallable packages found" msgstr "" -#: src/Common/LinuxKernel.vala:1083 +#: src/Common/LinuxKernel.vala:1076 #, fuzzy msgid "is the highest installed version." msgstr "Verwijder alle behalve de hoogst geïnstalleerde versie" -#: src/Common/LinuxKernel.vala:1095 +#: src/Common/LinuxKernel.vala:1088 msgid "Could not find running kernel in list" msgstr "De in gebruik zijnde kernel staat niet op de lijst" -#: src/Common/LinuxKernel.vala:1100 +#: src/Common/LinuxKernel.vala:1093 #, fuzzy msgid "No old kernels to uninstall" msgstr "Er zijn geen te verwijderen kernels" -#: src/Common/LinuxKernel.vala:1101 +#: src/Common/LinuxKernel.vala:1094 msgid "done" msgstr "" -#: src/Common/LinuxKernel.vala:1106 +#: src/Common/LinuxKernel.vala:1099 msgid "The following kernels will be uninstalled" msgstr "De volgende kernels worden verwijderd" -#: src/Common/LinuxKernel.vala:1108 src/lib/l.misc.vala:12 +#: src/Common/LinuxKernel.vala:1101 src/lib/l.misc.vala:12 #, fuzzy msgid "Continue? (y/N): " msgstr "Wilt u doorgaan?" -#: src/Common/LinuxKernel.vala:1122 +#: src/Common/LinuxKernel.vala:1115 #, fuzzy msgid "No updates" msgstr "Geen updates gevonden" -#: src/Common/LinuxKernel.vala:1124 +#: src/Common/LinuxKernel.vala:1117 #, fuzzy, c-format msgid "Install Kernel Version %s ? (y/N): " msgstr "Wilt u versie %s installeren? (j/n): " diff --git a/po/pl.po b/po/pl.po index 429edcbb..ff78b79a 100644 --- a/po/pl.po +++ b/po/pl.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-28 15:01-0400\n" +"POT-Creation-Date: 2023-06-28 20:18-0400\n" "PO-Revision-Date: 2023-06-21 01:02+0200\n" "Last-Translator: Matthaiks\n" "Language-Team: Polish\n" @@ -12,189 +12,189 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Poedit 3.3.1\n" -#: src/Common/LinuxKernel.vala:106 +#: src/Common/LinuxKernel.vala:109 msgid "Distribution" msgstr "Dystrybucja" -#: src/Common/LinuxKernel.vala:121 +#: src/Common/LinuxKernel.vala:124 msgid "Architecture" msgstr "Architektura" -#: src/Common/LinuxKernel.vala:136 +#: src/Common/LinuxKernel.vala:139 msgid "Running kernel" msgstr "Uruchomione jądro" -#: src/Common/LinuxKernel.vala:213 +#: src/Common/LinuxKernel.vala:234 msgid "loading cached" msgstr "ładowanie z pamięci podręcznej" -#: src/Common/LinuxKernel.vala:225 +#: src/Common/LinuxKernel.vala:246 msgid "queuing download" msgstr "pobieranie w kolejce" -#: src/Common/LinuxKernel.vala:236 +#: src/Common/LinuxKernel.vala:257 msgid "Fetching individual kernel indexes" msgstr "Pobieranie indywidualnych indeksów jądra" -#: src/Common/LinuxKernel.vala:251 +#: src/Common/LinuxKernel.vala:272 msgid "loading downloaded" msgstr "ładowanie pobranych" -#: src/Common/LinuxKernel.vala:290 +#: src/Common/LinuxKernel.vala:311 msgid "Updating from" msgstr "Aktualizowanie z" -#: src/Common/LinuxKernel.vala:297 +#: src/Common/LinuxKernel.vala:318 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:300 +#: src/Common/LinuxKernel.vala:321 msgid "FAILED" msgstr "NIEPOWODZENIE" -#: src/Common/LinuxKernel.vala:410 +#: src/Common/LinuxKernel.vala:420 msgid "Found installed" msgstr "Znaleziono zainstalowane" -#: src/Common/LinuxKernel.vala:411 +#: src/Common/LinuxKernel.vala:421 msgid "locked" msgstr "zablokowane" -#: src/Common/LinuxKernel.vala:412 +#: src/Common/LinuxKernel.vala:422 msgid "running" msgstr "uruchomione" -#: src/Common/LinuxKernel.vala:449 src/Common/LinuxKernel.vala:1005 -#: src/Common/LinuxKernel.vala:1087 +#: src/Common/LinuxKernel.vala:459 src/Common/LinuxKernel.vala:998 +#: src/Common/LinuxKernel.vala:1080 msgid "is locked." msgstr "jest zablokowane." -#: src/Common/LinuxKernel.vala:668 src/Gtk/MainWindow.vala:472 +#: src/Common/LinuxKernel.vala:677 src/Gtk/MainWindow.vala:472 msgid "Running" msgstr "Uruchomione" -#: src/Common/LinuxKernel.vala:669 +#: src/Common/LinuxKernel.vala:678 msgid "Installed" msgstr "Zainstalowane" -#: src/Common/LinuxKernel.vala:670 +#: src/Common/LinuxKernel.vala:679 msgid "Invalid" msgstr "Nieprawidłowe" -#: src/Common/LinuxKernel.vala:763 +#: src/Common/LinuxKernel.vala:772 msgid "Packages Available" msgstr "Dostępne pakiety" -#: src/Common/LinuxKernel.vala:769 +#: src/Common/LinuxKernel.vala:778 msgid "Packages Installed" msgstr "Pakiety zainstalowane" -#: src/Common/LinuxKernel.vala:794 +#: src/Common/LinuxKernel.vala:805 msgid "File not found" msgstr "Nie odnaleziono pliku" -#: src/Common/LinuxKernel.vala:821 +#: src/Common/LinuxKernel.vala:824 msgid "needs update" msgstr "wymaga aktualizacji" -#: src/Common/LinuxKernel.vala:888 +#: src/Common/LinuxKernel.vala:881 msgid "Available Kernels" msgstr "Dostępne jądra" -#: src/Common/LinuxKernel.vala:922 src/Gtk/MainWindow.vala:139 +#: src/Common/LinuxKernel.vala:915 src/Gtk/MainWindow.vala:139 msgid "Kernel" msgstr "Jądro" -#: src/Common/LinuxKernel.vala:922 +#: src/Common/LinuxKernel.vala:915 msgid "not found" msgstr "nie odnaleziono" -#: src/Common/LinuxKernel.vala:929 +#: src/Common/LinuxKernel.vala:922 msgid "Download: no downloadable kernels specified" msgstr "Pobieranie: nie określono jąder do pobrania" -#: src/Common/LinuxKernel.vala:948 +#: src/Common/LinuxKernel.vala:941 msgid "enabled" msgstr "włączone" -#: src/Common/LinuxKernel.vala:974 +#: src/Common/LinuxKernel.vala:967 msgid "Downloading" msgstr "Pobieranie" -#: src/Common/LinuxKernel.vala:983 +#: src/Common/LinuxKernel.vala:976 msgid "Cached" msgstr "Buforowane" -#: src/Common/LinuxKernel.vala:991 +#: src/Common/LinuxKernel.vala:984 msgid "Installing selected kernels" msgstr "Instalowanie wybranych jąder" -#: src/Common/LinuxKernel.vala:997 src/Common/LinuxKernel.vala:1034 +#: src/Common/LinuxKernel.vala:990 src/Common/LinuxKernel.vala:1027 msgid "Requested" msgstr "Zażądane" -#: src/Common/LinuxKernel.vala:1000 +#: src/Common/LinuxKernel.vala:993 msgid "is already installed." msgstr "jest już zainstalowane." -#: src/Common/LinuxKernel.vala:1010 +#: src/Common/LinuxKernel.vala:1003 msgid "download failed." msgstr "pobieranie nie powiodło się." -#: src/Common/LinuxKernel.vala:1017 src/Gtk/MainWindow.vala:498 +#: src/Common/LinuxKernel.vala:1010 src/Gtk/MainWindow.vala:498 msgid "Install: no installable kernels specified" msgstr "Instalowanie: nie określono jądra do zainstalowania" -#: src/Common/LinuxKernel.vala:1030 +#: src/Common/LinuxKernel.vala:1023 msgid "Uninstalling selected kernels" msgstr "Odinstalowanie wybranych jąder" -#: src/Common/LinuxKernel.vala:1037 +#: src/Common/LinuxKernel.vala:1030 msgid "Not uninstalling the currently running kernel" msgstr "Bez odinstalowywania aktualnie uruchomionego jądra" -#: src/Common/LinuxKernel.vala:1042 src/Gtk/MainWindow.vala:494 +#: src/Common/LinuxKernel.vala:1035 src/Gtk/MainWindow.vala:494 msgid "is locked" msgstr "jest zablokowane" -#: src/Common/LinuxKernel.vala:1050 +#: src/Common/LinuxKernel.vala:1043 msgid "found" msgstr "znalezione" -#: src/Common/LinuxKernel.vala:1054 +#: src/Common/LinuxKernel.vala:1047 msgid "Uninstall: no uninstallable packages found" msgstr "Odinstalowanie: nie znaleziono pakietów, które można odinstalować" -#: src/Common/LinuxKernel.vala:1083 +#: src/Common/LinuxKernel.vala:1076 msgid "is the highest installed version." msgstr "to najwyższa zainstalowana wersja." -#: src/Common/LinuxKernel.vala:1095 +#: src/Common/LinuxKernel.vala:1088 msgid "Could not find running kernel in list" msgstr "Nie można znaleźć uruchomionego jądra na liście" -#: src/Common/LinuxKernel.vala:1100 +#: src/Common/LinuxKernel.vala:1093 msgid "No old kernels to uninstall" msgstr "Brak starych jąder do odinstalowania" -#: src/Common/LinuxKernel.vala:1101 +#: src/Common/LinuxKernel.vala:1094 msgid "done" msgstr "gotowe" -#: src/Common/LinuxKernel.vala:1106 +#: src/Common/LinuxKernel.vala:1099 msgid "The following kernels will be uninstalled" msgstr "Następujące jądra zostaną odinstalowane" -#: src/Common/LinuxKernel.vala:1108 src/lib/l.misc.vala:12 +#: src/Common/LinuxKernel.vala:1101 src/lib/l.misc.vala:12 #, fuzzy msgid "Continue? (y/N): " msgstr "Kontynuować?" -#: src/Common/LinuxKernel.vala:1122 +#: src/Common/LinuxKernel.vala:1115 msgid "No updates" msgstr "Brak aktualizacji" -#: src/Common/LinuxKernel.vala:1124 +#: src/Common/LinuxKernel.vala:1117 #, fuzzy, c-format msgid "Install Kernel Version %s ? (y/N): " msgstr "Zainstalować wersję jądra %s? (t/n): " diff --git a/po/ru.po b/po/ru.po index 1840238e..ac830bfc 100644 --- a/po/ru.po +++ b/po/ru.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-28 15:01-0400\n" +"POT-Creation-Date: 2023-06-28 20:18-0400\n" "PO-Revision-Date: 2023-06-28 00:07+0300\n" "Last-Translator: Danik2343 \n" "Language-Team: Russian\n" @@ -13,188 +13,188 @@ msgstr "" "X-Launchpad-Export-Date: 2016-12-13 11:48+0000\n" "X-Generator: Poedit 3.0.1\n" -#: src/Common/LinuxKernel.vala:106 +#: src/Common/LinuxKernel.vala:109 msgid "Distribution" msgstr "Дистрибутив" -#: src/Common/LinuxKernel.vala:121 +#: src/Common/LinuxKernel.vala:124 msgid "Architecture" msgstr "Архитектура" -#: src/Common/LinuxKernel.vala:136 +#: src/Common/LinuxKernel.vala:139 msgid "Running kernel" msgstr "Запущенное ядро" -#: src/Common/LinuxKernel.vala:213 +#: src/Common/LinuxKernel.vala:234 msgid "loading cached" msgstr "загрузка в кэше" -#: src/Common/LinuxKernel.vala:225 +#: src/Common/LinuxKernel.vala:246 msgid "queuing download" msgstr "загрузка очередей" -#: src/Common/LinuxKernel.vala:236 +#: src/Common/LinuxKernel.vala:257 msgid "Fetching individual kernel indexes" msgstr "Получение отдельных индексов ядра" -#: src/Common/LinuxKernel.vala:251 +#: src/Common/LinuxKernel.vala:272 msgid "loading downloaded" msgstr "загрузка загруженных" -#: src/Common/LinuxKernel.vala:290 +#: src/Common/LinuxKernel.vala:311 msgid "Updating from" msgstr "Обновление из" -#: src/Common/LinuxKernel.vala:297 +#: src/Common/LinuxKernel.vala:318 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:300 +#: src/Common/LinuxKernel.vala:321 msgid "FAILED" msgstr "НЕУДАВШИЙСЯ" -#: src/Common/LinuxKernel.vala:410 +#: src/Common/LinuxKernel.vala:420 msgid "Found installed" msgstr "Найдено установлененное" -#: src/Common/LinuxKernel.vala:411 +#: src/Common/LinuxKernel.vala:421 msgid "locked" msgstr "заблокирован" -#: src/Common/LinuxKernel.vala:412 +#: src/Common/LinuxKernel.vala:422 msgid "running" msgstr "запущено" -#: src/Common/LinuxKernel.vala:449 src/Common/LinuxKernel.vala:1005 -#: src/Common/LinuxKernel.vala:1087 +#: src/Common/LinuxKernel.vala:459 src/Common/LinuxKernel.vala:998 +#: src/Common/LinuxKernel.vala:1080 msgid "is locked." msgstr "заблокирован." -#: src/Common/LinuxKernel.vala:668 src/Gtk/MainWindow.vala:472 +#: src/Common/LinuxKernel.vala:677 src/Gtk/MainWindow.vala:472 msgid "Running" msgstr "Используется" -#: src/Common/LinuxKernel.vala:669 +#: src/Common/LinuxKernel.vala:678 msgid "Installed" msgstr "Установлено" -#: src/Common/LinuxKernel.vala:670 +#: src/Common/LinuxKernel.vala:679 msgid "Invalid" msgstr "Негодный" -#: src/Common/LinuxKernel.vala:763 +#: src/Common/LinuxKernel.vala:772 msgid "Packages Available" msgstr "Доступные пакеты" -#: src/Common/LinuxKernel.vala:769 +#: src/Common/LinuxKernel.vala:778 msgid "Packages Installed" msgstr "Установленные пакеты" -#: src/Common/LinuxKernel.vala:794 +#: src/Common/LinuxKernel.vala:805 msgid "File not found" msgstr "Файл не найден" -#: src/Common/LinuxKernel.vala:821 +#: src/Common/LinuxKernel.vala:824 msgid "needs update" msgstr "требуется обновление" -#: src/Common/LinuxKernel.vala:888 +#: src/Common/LinuxKernel.vala:881 msgid "Available Kernels" msgstr "Доступные ядра" -#: src/Common/LinuxKernel.vala:922 src/Gtk/MainWindow.vala:139 +#: src/Common/LinuxKernel.vala:915 src/Gtk/MainWindow.vala:139 msgid "Kernel" msgstr "Ядро" -#: src/Common/LinuxKernel.vala:922 +#: src/Common/LinuxKernel.vala:915 msgid "not found" msgstr "не найдено" -#: src/Common/LinuxKernel.vala:929 +#: src/Common/LinuxKernel.vala:922 msgid "Download: no downloadable kernels specified" msgstr "Загрузка: не указаны загружаемые ядра" -#: src/Common/LinuxKernel.vala:948 +#: src/Common/LinuxKernel.vala:941 msgid "enabled" msgstr "включено" -#: src/Common/LinuxKernel.vala:974 +#: src/Common/LinuxKernel.vala:967 msgid "Downloading" msgstr "Загрузки" -#: src/Common/LinuxKernel.vala:983 +#: src/Common/LinuxKernel.vala:976 msgid "Cached" msgstr "Кэшировано" -#: src/Common/LinuxKernel.vala:991 +#: src/Common/LinuxKernel.vala:984 msgid "Installing selected kernels" msgstr "Установка выбранных ядер" -#: src/Common/LinuxKernel.vala:997 src/Common/LinuxKernel.vala:1034 +#: src/Common/LinuxKernel.vala:990 src/Common/LinuxKernel.vala:1027 msgid "Requested" msgstr "Запрошено" -#: src/Common/LinuxKernel.vala:1000 +#: src/Common/LinuxKernel.vala:993 msgid "is already installed." msgstr "уже установлен." -#: src/Common/LinuxKernel.vala:1010 +#: src/Common/LinuxKernel.vala:1003 msgid "download failed." msgstr "загрузка не удалась." -#: src/Common/LinuxKernel.vala:1017 src/Gtk/MainWindow.vala:498 +#: src/Common/LinuxKernel.vala:1010 src/Gtk/MainWindow.vala:498 msgid "Install: no installable kernels specified" msgstr "Команда не указана" -#: src/Common/LinuxKernel.vala:1030 +#: src/Common/LinuxKernel.vala:1023 msgid "Uninstalling selected kernels" msgstr "Удаление выбранных ядер" -#: src/Common/LinuxKernel.vala:1037 +#: src/Common/LinuxKernel.vala:1030 msgid "Not uninstalling the currently running kernel" msgstr "Не удалять запущенное в данный момент ядро" -#: src/Common/LinuxKernel.vala:1042 src/Gtk/MainWindow.vala:494 +#: src/Common/LinuxKernel.vala:1035 src/Gtk/MainWindow.vala:494 msgid "is locked" msgstr "заблокирован" -#: src/Common/LinuxKernel.vala:1050 +#: src/Common/LinuxKernel.vala:1043 msgid "found" msgstr "найдено" -#: src/Common/LinuxKernel.vala:1054 +#: src/Common/LinuxKernel.vala:1047 msgid "Uninstall: no uninstallable packages found" msgstr "Удаление: не найдено удаляемых пакетов" -#: src/Common/LinuxKernel.vala:1083 +#: src/Common/LinuxKernel.vala:1076 msgid "is the highest installed version." msgstr "это самая высокая установленная версия." -#: src/Common/LinuxKernel.vala:1095 +#: src/Common/LinuxKernel.vala:1088 msgid "Could not find running kernel in list" msgstr "Could not find running kernel in list" -#: src/Common/LinuxKernel.vala:1100 +#: src/Common/LinuxKernel.vala:1093 msgid "No old kernels to uninstall" msgstr "Нет старых ядер для деинсталяции" -#: src/Common/LinuxKernel.vala:1101 +#: src/Common/LinuxKernel.vala:1094 msgid "done" msgstr "готово" -#: src/Common/LinuxKernel.vala:1106 +#: src/Common/LinuxKernel.vala:1099 msgid "The following kernels will be uninstalled" msgstr "Следующие ядра будут удалены" -#: src/Common/LinuxKernel.vala:1108 src/lib/l.misc.vala:12 +#: src/Common/LinuxKernel.vala:1101 src/lib/l.misc.vala:12 msgid "Continue? (y/N): " msgstr "Продолжить? (y/N): " -#: src/Common/LinuxKernel.vala:1122 +#: src/Common/LinuxKernel.vala:1115 msgid "No updates" msgstr "Нет обнолений" -#: src/Common/LinuxKernel.vala:1124 +#: src/Common/LinuxKernel.vala:1117 #, c-format msgid "Install Kernel Version %s ? (y/N): " msgstr "Установить версию ядра %s ? (y/N): " diff --git a/po/sv.po b/po/sv.po index 679b2c3b..a27b25ce 100644 --- a/po/sv.po +++ b/po/sv.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-28 15:01-0400\n" +"POT-Creation-Date: 2023-06-28 20:18-0400\n" "PO-Revision-Date: 2018-01-13 16:56+0100\n" "Last-Translator: Åke Engelbrektson \n" "Language-Team:Swedish\n" @@ -13,200 +13,200 @@ msgstr "" "X-Generator: Poedit 1.8.7.1\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: src/Common/LinuxKernel.vala:106 +#: src/Common/LinuxKernel.vala:109 msgid "Distribution" msgstr "Distribution" -#: src/Common/LinuxKernel.vala:121 +#: src/Common/LinuxKernel.vala:124 msgid "Architecture" msgstr "Arkitektur" -#: src/Common/LinuxKernel.vala:136 +#: src/Common/LinuxKernel.vala:139 msgid "Running kernel" msgstr "Löpande kernel" -#: src/Common/LinuxKernel.vala:213 +#: src/Common/LinuxKernel.vala:234 msgid "loading cached" msgstr "laddar cachelagrat" -#: src/Common/LinuxKernel.vala:225 +#: src/Common/LinuxKernel.vala:246 msgid "queuing download" msgstr "köbildning nedladdning" -#: src/Common/LinuxKernel.vala:236 +#: src/Common/LinuxKernel.vala:257 msgid "Fetching individual kernel indexes" msgstr "Hämta enskilda kernelindex" -#: src/Common/LinuxKernel.vala:251 +#: src/Common/LinuxKernel.vala:272 msgid "loading downloaded" msgstr "laddar nedladdad" -#: src/Common/LinuxKernel.vala:290 +#: src/Common/LinuxKernel.vala:311 msgid "Updating from" msgstr "Uppdatering från" -#: src/Common/LinuxKernel.vala:297 +#: src/Common/LinuxKernel.vala:318 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:300 +#: src/Common/LinuxKernel.vala:321 msgid "FAILED" msgstr "MISSLYCKADES" -#: src/Common/LinuxKernel.vala:410 +#: src/Common/LinuxKernel.vala:420 msgid "Found installed" msgstr "Hittade installerat" -#: src/Common/LinuxKernel.vala:411 +#: src/Common/LinuxKernel.vala:421 msgid "locked" msgstr "" -#: src/Common/LinuxKernel.vala:412 +#: src/Common/LinuxKernel.vala:422 #, fuzzy msgid "running" msgstr "Körs" -#: src/Common/LinuxKernel.vala:449 src/Common/LinuxKernel.vala:1005 -#: src/Common/LinuxKernel.vala:1087 +#: src/Common/LinuxKernel.vala:459 src/Common/LinuxKernel.vala:998 +#: src/Common/LinuxKernel.vala:1080 msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:668 src/Gtk/MainWindow.vala:472 +#: src/Common/LinuxKernel.vala:677 src/Gtk/MainWindow.vala:472 msgid "Running" msgstr "Körs" -#: src/Common/LinuxKernel.vala:669 +#: src/Common/LinuxKernel.vala:678 msgid "Installed" msgstr "Installerad" -#: src/Common/LinuxKernel.vala:670 +#: src/Common/LinuxKernel.vala:679 msgid "Invalid" msgstr "Ogiltig" -#: src/Common/LinuxKernel.vala:763 +#: src/Common/LinuxKernel.vala:772 msgid "Packages Available" msgstr "Tillgängliga paket" -#: src/Common/LinuxKernel.vala:769 +#: src/Common/LinuxKernel.vala:778 msgid "Packages Installed" msgstr "Installerade paket" -#: src/Common/LinuxKernel.vala:794 +#: src/Common/LinuxKernel.vala:805 msgid "File not found" msgstr "Filen kan inte hittas" -#: src/Common/LinuxKernel.vala:821 +#: src/Common/LinuxKernel.vala:824 #, fuzzy msgid "needs update" msgstr "Senaste uppdatering" -#: src/Common/LinuxKernel.vala:888 +#: src/Common/LinuxKernel.vala:881 msgid "Available Kernels" msgstr "Tillgängliga kärnor" -#: src/Common/LinuxKernel.vala:922 src/Gtk/MainWindow.vala:139 +#: src/Common/LinuxKernel.vala:915 src/Gtk/MainWindow.vala:139 msgid "Kernel" msgstr "Kärna" -#: src/Common/LinuxKernel.vala:922 +#: src/Common/LinuxKernel.vala:915 #, fuzzy msgid "not found" msgstr "Filen kan inte hittas" -#: src/Common/LinuxKernel.vala:929 +#: src/Common/LinuxKernel.vala:922 #, fuzzy msgid "Download: no downloadable kernels specified" msgstr "Kommandot har inte angetts" -#: src/Common/LinuxKernel.vala:948 +#: src/Common/LinuxKernel.vala:941 msgid "enabled" msgstr "aktiverat" -#: src/Common/LinuxKernel.vala:974 +#: src/Common/LinuxKernel.vala:967 msgid "Downloading" msgstr "Ladda ner" -#: src/Common/LinuxKernel.vala:983 +#: src/Common/LinuxKernel.vala:976 msgid "Cached" msgstr "" -#: src/Common/LinuxKernel.vala:991 +#: src/Common/LinuxKernel.vala:984 #, fuzzy msgid "Installing selected kernels" msgstr "Avinstallera valda kärnor" -#: src/Common/LinuxKernel.vala:997 src/Common/LinuxKernel.vala:1034 +#: src/Common/LinuxKernel.vala:990 src/Common/LinuxKernel.vala:1027 #, fuzzy msgid "Requested" msgstr "begärd" -#: src/Common/LinuxKernel.vala:1000 +#: src/Common/LinuxKernel.vala:993 msgid "is already installed." msgstr "är redan installerat." -#: src/Common/LinuxKernel.vala:1010 +#: src/Common/LinuxKernel.vala:1003 msgid "download failed." msgstr "" -#: src/Common/LinuxKernel.vala:1017 src/Gtk/MainWindow.vala:498 +#: src/Common/LinuxKernel.vala:1010 src/Gtk/MainWindow.vala:498 #, fuzzy msgid "Install: no installable kernels specified" msgstr "Kommandot har inte angetts" -#: src/Common/LinuxKernel.vala:1030 +#: src/Common/LinuxKernel.vala:1023 msgid "Uninstalling selected kernels" msgstr "Avinstallera valda kärnor" -#: src/Common/LinuxKernel.vala:1037 +#: src/Common/LinuxKernel.vala:1030 #, fuzzy msgid "Not uninstalling the currently running kernel" msgstr "Avinstallera inte den kärna som körs, för närvarande" -#: src/Common/LinuxKernel.vala:1042 src/Gtk/MainWindow.vala:494 +#: src/Common/LinuxKernel.vala:1035 src/Gtk/MainWindow.vala:494 msgid "is locked" msgstr "" -#: src/Common/LinuxKernel.vala:1050 +#: src/Common/LinuxKernel.vala:1043 msgid "found" msgstr "grunda" -#: src/Common/LinuxKernel.vala:1054 +#: src/Common/LinuxKernel.vala:1047 msgid "Uninstall: no uninstallable packages found" msgstr "" -#: src/Common/LinuxKernel.vala:1083 +#: src/Common/LinuxKernel.vala:1076 #, fuzzy msgid "is the highest installed version." msgstr "Avinstallera alla utom den högsta installerade versionen" -#: src/Common/LinuxKernel.vala:1095 +#: src/Common/LinuxKernel.vala:1088 msgid "Could not find running kernel in list" msgstr "Det gick inte att hitta kernel som körs i listan" -#: src/Common/LinuxKernel.vala:1100 +#: src/Common/LinuxKernel.vala:1093 #, fuzzy msgid "No old kernels to uninstall" msgstr "Det gick inte att hitta några kärnor att avinstallera" -#: src/Common/LinuxKernel.vala:1101 +#: src/Common/LinuxKernel.vala:1094 msgid "done" msgstr "" -#: src/Common/LinuxKernel.vala:1106 +#: src/Common/LinuxKernel.vala:1099 msgid "The following kernels will be uninstalled" msgstr "Följande kärnor kommer att avinstalleras" -#: src/Common/LinuxKernel.vala:1108 src/lib/l.misc.vala:12 +#: src/Common/LinuxKernel.vala:1101 src/lib/l.misc.vala:12 #, fuzzy msgid "Continue? (y/N): " msgstr "Fortsätta?" -#: src/Common/LinuxKernel.vala:1122 +#: src/Common/LinuxKernel.vala:1115 #, fuzzy msgid "No updates" msgstr "Inga uppdateringar hittades" -#: src/Common/LinuxKernel.vala:1124 +#: src/Common/LinuxKernel.vala:1117 #, fuzzy, c-format msgid "Install Kernel Version %s ? (y/N): " msgstr "Installera kärnversion %s ? (j/n):" diff --git a/po/tr.po b/po/tr.po index eb13a635..7108602c 100644 --- a/po/tr.po +++ b/po/tr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-28 15:01-0400\n" +"POT-Creation-Date: 2023-06-28 20:18-0400\n" "PO-Revision-Date: 2022-08-06 16:48+0300\n" "Last-Translator: Sabri Ünal \n" "Language-Team: Turkish\n" @@ -13,200 +13,200 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Poedit 3.1.1\n" -#: src/Common/LinuxKernel.vala:106 +#: src/Common/LinuxKernel.vala:109 msgid "Distribution" msgstr "Dağıtım" -#: src/Common/LinuxKernel.vala:121 +#: src/Common/LinuxKernel.vala:124 msgid "Architecture" msgstr "Sistem mimarisi" -#: src/Common/LinuxKernel.vala:136 +#: src/Common/LinuxKernel.vala:139 msgid "Running kernel" msgstr "Çalışan çekirdek" -#: src/Common/LinuxKernel.vala:213 +#: src/Common/LinuxKernel.vala:234 msgid "loading cached" msgstr "önbelleğe alınmış yükleme" -#: src/Common/LinuxKernel.vala:225 +#: src/Common/LinuxKernel.vala:246 msgid "queuing download" msgstr "kuyruğa alma indirme" -#: src/Common/LinuxKernel.vala:236 +#: src/Common/LinuxKernel.vala:257 msgid "Fetching individual kernel indexes" msgstr "Tek tek çekirdek dizinlerini alma" -#: src/Common/LinuxKernel.vala:251 +#: src/Common/LinuxKernel.vala:272 msgid "loading downloaded" msgstr "indirilen yükleniyor" -#: src/Common/LinuxKernel.vala:290 +#: src/Common/LinuxKernel.vala:311 msgid "Updating from" msgstr "Şuradan güncelleniyor" -#: src/Common/LinuxKernel.vala:297 +#: src/Common/LinuxKernel.vala:318 msgid "OK" msgstr "Tamam" -#: src/Common/LinuxKernel.vala:300 +#: src/Common/LinuxKernel.vala:321 msgid "FAILED" msgstr "BAŞARISIZ" -#: src/Common/LinuxKernel.vala:410 +#: src/Common/LinuxKernel.vala:420 msgid "Found installed" msgstr "Yüklü bulundu" -#: src/Common/LinuxKernel.vala:411 +#: src/Common/LinuxKernel.vala:421 msgid "locked" msgstr "" -#: src/Common/LinuxKernel.vala:412 +#: src/Common/LinuxKernel.vala:422 #, fuzzy msgid "running" msgstr "Çalışıyor" -#: src/Common/LinuxKernel.vala:449 src/Common/LinuxKernel.vala:1005 -#: src/Common/LinuxKernel.vala:1087 +#: src/Common/LinuxKernel.vala:459 src/Common/LinuxKernel.vala:998 +#: src/Common/LinuxKernel.vala:1080 msgid "is locked." msgstr "" -#: src/Common/LinuxKernel.vala:668 src/Gtk/MainWindow.vala:472 +#: src/Common/LinuxKernel.vala:677 src/Gtk/MainWindow.vala:472 msgid "Running" msgstr "Çalışıyor" -#: src/Common/LinuxKernel.vala:669 +#: src/Common/LinuxKernel.vala:678 msgid "Installed" msgstr "Kurulu" -#: src/Common/LinuxKernel.vala:670 +#: src/Common/LinuxKernel.vala:679 msgid "Invalid" msgstr "Geçersiz" -#: src/Common/LinuxKernel.vala:763 +#: src/Common/LinuxKernel.vala:772 msgid "Packages Available" msgstr "Mevcut Paketler" -#: src/Common/LinuxKernel.vala:769 +#: src/Common/LinuxKernel.vala:778 msgid "Packages Installed" msgstr "Kurulu Paketler" -#: src/Common/LinuxKernel.vala:794 +#: src/Common/LinuxKernel.vala:805 msgid "File not found" msgstr "Dosya bulunamadı" -#: src/Common/LinuxKernel.vala:821 +#: src/Common/LinuxKernel.vala:824 #, fuzzy msgid "needs update" msgstr "Son güncelleme" -#: src/Common/LinuxKernel.vala:888 +#: src/Common/LinuxKernel.vala:881 msgid "Available Kernels" msgstr "Mevcut Çekirdekler" -#: src/Common/LinuxKernel.vala:922 src/Gtk/MainWindow.vala:139 +#: src/Common/LinuxKernel.vala:915 src/Gtk/MainWindow.vala:139 msgid "Kernel" msgstr "Çekirdek" -#: src/Common/LinuxKernel.vala:922 +#: src/Common/LinuxKernel.vala:915 #, fuzzy msgid "not found" msgstr "Dosya bulunamadı" -#: src/Common/LinuxKernel.vala:929 +#: src/Common/LinuxKernel.vala:922 #, fuzzy msgid "Download: no downloadable kernels specified" msgstr "Komut belirtilmedi" -#: src/Common/LinuxKernel.vala:948 +#: src/Common/LinuxKernel.vala:941 msgid "enabled" msgstr "etkin" -#: src/Common/LinuxKernel.vala:974 +#: src/Common/LinuxKernel.vala:967 msgid "Downloading" msgstr "Indiriyor" -#: src/Common/LinuxKernel.vala:983 +#: src/Common/LinuxKernel.vala:976 msgid "Cached" msgstr "" -#: src/Common/LinuxKernel.vala:991 +#: src/Common/LinuxKernel.vala:984 #, fuzzy msgid "Installing selected kernels" msgstr "Seçili çekirdekleri kaldırma" -#: src/Common/LinuxKernel.vala:997 src/Common/LinuxKernel.vala:1034 +#: src/Common/LinuxKernel.vala:990 src/Common/LinuxKernel.vala:1027 #, fuzzy msgid "Requested" msgstr "istenen" -#: src/Common/LinuxKernel.vala:1000 +#: src/Common/LinuxKernel.vala:993 msgid "is already installed." msgstr "zaten yüklü." -#: src/Common/LinuxKernel.vala:1010 +#: src/Common/LinuxKernel.vala:1003 msgid "download failed." msgstr "" -#: src/Common/LinuxKernel.vala:1017 src/Gtk/MainWindow.vala:498 +#: src/Common/LinuxKernel.vala:1010 src/Gtk/MainWindow.vala:498 #, fuzzy msgid "Install: no installable kernels specified" msgstr "Komut belirtilmedi" -#: src/Common/LinuxKernel.vala:1030 +#: src/Common/LinuxKernel.vala:1023 msgid "Uninstalling selected kernels" msgstr "Seçili çekirdekleri kaldırma" -#: src/Common/LinuxKernel.vala:1037 +#: src/Common/LinuxKernel.vala:1030 #, fuzzy msgid "Not uninstalling the currently running kernel" msgstr "çalışmakta olan çekirdeğin kaldırılmaması" -#: src/Common/LinuxKernel.vala:1042 src/Gtk/MainWindow.vala:494 +#: src/Common/LinuxKernel.vala:1035 src/Gtk/MainWindow.vala:494 msgid "is locked" msgstr "" -#: src/Common/LinuxKernel.vala:1050 +#: src/Common/LinuxKernel.vala:1043 msgid "found" msgstr "kurmak" -#: src/Common/LinuxKernel.vala:1054 +#: src/Common/LinuxKernel.vala:1047 msgid "Uninstall: no uninstallable packages found" msgstr "" -#: src/Common/LinuxKernel.vala:1083 +#: src/Common/LinuxKernel.vala:1076 #, fuzzy msgid "is the highest installed version." msgstr "En yüksek yüklü sürüm dışındaki tüm sürümleri kaldırın" -#: src/Common/LinuxKernel.vala:1095 +#: src/Common/LinuxKernel.vala:1088 msgid "Could not find running kernel in list" msgstr "Listede çalışan çekirdek bulunamadı" -#: src/Common/LinuxKernel.vala:1100 +#: src/Common/LinuxKernel.vala:1093 #, fuzzy msgid "No old kernels to uninstall" msgstr "Kaldırılacak çekirdek bulunamadı" -#: src/Common/LinuxKernel.vala:1101 +#: src/Common/LinuxKernel.vala:1094 msgid "done" msgstr "" -#: src/Common/LinuxKernel.vala:1106 +#: src/Common/LinuxKernel.vala:1099 msgid "The following kernels will be uninstalled" msgstr "Aşağıdaki çekirdekler kaldırılacaktır" -#: src/Common/LinuxKernel.vala:1108 src/lib/l.misc.vala:12 +#: src/Common/LinuxKernel.vala:1101 src/lib/l.misc.vala:12 #, fuzzy msgid "Continue? (y/N): " msgstr "Devam edilsin mi?" -#: src/Common/LinuxKernel.vala:1122 +#: src/Common/LinuxKernel.vala:1115 #, fuzzy msgid "No updates" msgstr "Güncelleme bulunamadı" -#: src/Common/LinuxKernel.vala:1124 +#: src/Common/LinuxKernel.vala:1117 #, fuzzy, c-format msgid "Install Kernel Version %s ? (y/N): " msgstr "Linux Çekirdek Sürümü %s Kurulsun mu? (e/h): " diff --git a/po/uk.po b/po/uk.po index b91ff6e3..b9ef16d9 100644 --- a/po/uk.po +++ b/po/uk.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-06-28 16:52-0400\n" +"POT-Creation-Date: 2023-06-28 20:18-0400\n" "PO-Revision-Date: 2019-07-25 11:00+0300\n" "Last-Translator: Serhii Golovko \n" "Language-Team: Ukranian\n" @@ -13,188 +13,188 @@ msgstr "" "X-Launchpad-Export-Date: 2016-12-13 11:48+0000\n" "X-Generator: Poedit 2.2.1\n" -#: src/Common/LinuxKernel.vala:106 +#: src/Common/LinuxKernel.vala:109 msgid "Distribution" msgstr "Дистрибутив" -#: src/Common/LinuxKernel.vala:121 +#: src/Common/LinuxKernel.vala:124 msgid "Architecture" msgstr "Системна архитектура" -#: src/Common/LinuxKernel.vala:136 +#: src/Common/LinuxKernel.vala:139 msgid "Running kernel" msgstr "Запуск ядра" -#: src/Common/LinuxKernel.vala:213 +#: src/Common/LinuxKernel.vala:234 msgid "loading cached" msgstr "Завантаження кешованого" -#: src/Common/LinuxKernel.vala:225 +#: src/Common/LinuxKernel.vala:246 msgid "queuing download" msgstr "Черга завантаження" -#: src/Common/LinuxKernel.vala:236 +#: src/Common/LinuxKernel.vala:257 msgid "Fetching individual kernel indexes" msgstr "Вибірка окремих індексів ядра" -#: src/Common/LinuxKernel.vala:251 +#: src/Common/LinuxKernel.vala:272 msgid "loading downloaded" msgstr "Завантаження завантаженого" -#: src/Common/LinuxKernel.vala:290 +#: src/Common/LinuxKernel.vala:311 msgid "Updating from" msgstr "Оновлення з" -#: src/Common/LinuxKernel.vala:297 +#: src/Common/LinuxKernel.vala:318 msgid "OK" msgstr "Добре" -#: src/Common/LinuxKernel.vala:300 +#: src/Common/LinuxKernel.vala:321 msgid "FAILED" msgstr "НЕ ВДАЛОСЯ" -#: src/Common/LinuxKernel.vala:410 +#: src/Common/LinuxKernel.vala:420 msgid "Found installed" msgstr "Знайдено встановленим" -#: src/Common/LinuxKernel.vala:411 +#: src/Common/LinuxKernel.vala:421 msgid "locked" msgstr "заблокований" -#: src/Common/LinuxKernel.vala:412 +#: src/Common/LinuxKernel.vala:422 msgid "running" msgstr "виконується" -#: src/Common/LinuxKernel.vala:449 src/Common/LinuxKernel.vala:1005 -#: src/Common/LinuxKernel.vala:1087 +#: src/Common/LinuxKernel.vala:459 src/Common/LinuxKernel.vala:998 +#: src/Common/LinuxKernel.vala:1080 msgid "is locked." msgstr "заблоковано." -#: src/Common/LinuxKernel.vala:668 src/Gtk/MainWindow.vala:472 +#: src/Common/LinuxKernel.vala:677 src/Gtk/MainWindow.vala:472 msgid "Running" msgstr "Використовується" -#: src/Common/LinuxKernel.vala:669 +#: src/Common/LinuxKernel.vala:678 msgid "Installed" msgstr "Встановлено" -#: src/Common/LinuxKernel.vala:670 +#: src/Common/LinuxKernel.vala:679 msgid "Invalid" msgstr "Недійсний" -#: src/Common/LinuxKernel.vala:763 +#: src/Common/LinuxKernel.vala:772 msgid "Packages Available" msgstr "Доступні пакети" -#: src/Common/LinuxKernel.vala:769 +#: src/Common/LinuxKernel.vala:778 msgid "Packages Installed" msgstr "Встановлені пакети" -#: src/Common/LinuxKernel.vala:794 +#: src/Common/LinuxKernel.vala:805 msgid "File not found" msgstr "Файл не знайдено" -#: src/Common/LinuxKernel.vala:821 +#: src/Common/LinuxKernel.vala:824 msgid "needs update" msgstr "потребує оновлення" -#: src/Common/LinuxKernel.vala:888 +#: src/Common/LinuxKernel.vala:881 msgid "Available Kernels" msgstr "Доступні ядра" -#: src/Common/LinuxKernel.vala:922 src/Gtk/MainWindow.vala:139 +#: src/Common/LinuxKernel.vala:915 src/Gtk/MainWindow.vala:139 msgid "Kernel" msgstr "Ядро" -#: src/Common/LinuxKernel.vala:922 +#: src/Common/LinuxKernel.vala:915 msgid "not found" msgstr "не знайдено" -#: src/Common/LinuxKernel.vala:929 +#: src/Common/LinuxKernel.vala:922 msgid "Download: no downloadable kernels specified" msgstr "Завантажити: ядра для завантаження не вказано" -#: src/Common/LinuxKernel.vala:948 +#: src/Common/LinuxKernel.vala:941 msgid "enabled" msgstr "увімкнено" -#: src/Common/LinuxKernel.vala:974 +#: src/Common/LinuxKernel.vala:967 msgid "Downloading" msgstr "Завантаження" -#: src/Common/LinuxKernel.vala:983 +#: src/Common/LinuxKernel.vala:976 msgid "Cached" msgstr "Кешовано" -#: src/Common/LinuxKernel.vala:991 +#: src/Common/LinuxKernel.vala:984 msgid "Installing selected kernels" msgstr "Встановлення обраних ядер" -#: src/Common/LinuxKernel.vala:997 src/Common/LinuxKernel.vala:1034 +#: src/Common/LinuxKernel.vala:990 src/Common/LinuxKernel.vala:1027 msgid "Requested" msgstr "Запитуваний" -#: src/Common/LinuxKernel.vala:1000 +#: src/Common/LinuxKernel.vala:993 msgid "is already installed." msgstr "вже встановлено." -#: src/Common/LinuxKernel.vala:1010 +#: src/Common/LinuxKernel.vala:1003 msgid "download failed." msgstr "не вдалося завантажити." -#: src/Common/LinuxKernel.vala:1017 src/Gtk/MainWindow.vala:498 +#: src/Common/LinuxKernel.vala:1010 src/Gtk/MainWindow.vala:498 msgid "Install: no installable kernels specified" msgstr "Встановити: ядра які можна встановити не вказано" -#: src/Common/LinuxKernel.vala:1030 +#: src/Common/LinuxKernel.vala:1023 msgid "Uninstalling selected kernels" msgstr "Видаліть конкретні ядра" -#: src/Common/LinuxKernel.vala:1037 +#: src/Common/LinuxKernel.vala:1030 msgid "Not uninstalling the currently running kernel" msgstr "Не видалення поточного запущеного ядра" -#: src/Common/LinuxKernel.vala:1042 src/Gtk/MainWindow.vala:494 +#: src/Common/LinuxKernel.vala:1035 src/Gtk/MainWindow.vala:494 msgid "is locked" msgstr "заблоковано" -#: src/Common/LinuxKernel.vala:1050 +#: src/Common/LinuxKernel.vala:1043 msgid "found" msgstr "знайдено" -#: src/Common/LinuxKernel.vala:1054 +#: src/Common/LinuxKernel.vala:1047 msgid "Uninstall: no uninstallable packages found" msgstr "Видалити: пакетів, які можна видалити, не знайдено" -#: src/Common/LinuxKernel.vala:1083 +#: src/Common/LinuxKernel.vala:1076 msgid "is the highest installed version." msgstr "є найвищою встановленою версією." -#: src/Common/LinuxKernel.vala:1095 +#: src/Common/LinuxKernel.vala:1088 msgid "Could not find running kernel in list" msgstr "Не вдалося знайти запущене ядро у списку!" -#: src/Common/LinuxKernel.vala:1100 +#: src/Common/LinuxKernel.vala:1093 msgid "No old kernels to uninstall" msgstr "Немає старих ядер для видалення" -#: src/Common/LinuxKernel.vala:1101 +#: src/Common/LinuxKernel.vala:1094 msgid "done" msgstr "готово" -#: src/Common/LinuxKernel.vala:1106 +#: src/Common/LinuxKernel.vala:1099 msgid "The following kernels will be uninstalled" msgstr "Наступні ядра будуть видалені" -#: src/Common/LinuxKernel.vala:1108 src/lib/l.misc.vala:12 +#: src/Common/LinuxKernel.vala:1101 src/lib/l.misc.vala:12 msgid "Continue? (y/N): " msgstr "Продовжити? (так/Ні): " -#: src/Common/LinuxKernel.vala:1122 +#: src/Common/LinuxKernel.vala:1115 msgid "No updates" msgstr "Немає оновлень" -#: src/Common/LinuxKernel.vala:1124 +#: src/Common/LinuxKernel.vala:1117 #, c-format msgid "Install Kernel Version %s ? (y/N): " msgstr "Встановити Ядро Версії %s ? (так/Ні): " diff --git a/src/Common/LinuxKernel.vala b/src/Common/LinuxKernel.vala index 620ba9e0..ce260e90 100644 --- a/src/Common/LinuxKernel.vala +++ b/src/Common/LinuxKernel.vala @@ -54,6 +54,9 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { public static Gee.ArrayList kernel_list = new Gee.ArrayList(); public static Gee.ArrayList kall = new Gee.ArrayList(); + public static Regex rex_pageuri = null; + public static Regex rex_datetime = null; + public static Regex rex_fileuri = null; public static Regex rex_header = null; public static Regex rex_header_all = null; public static Regex rex_image = null; @@ -141,19 +144,37 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { public static void initialize_regex() { try { - //linux-headers-3.4.75-030475-generic_3.4.75-030475.201312201255_amd64.deb + // uri to a kernel page and it's datetime, in the main index.html + // [DIR]v2.6.27.61/2018-05-13 20:40 -   + // ########### #### ## ## ## ## + // fetch(1) 2 3 4 5 6 + rex_pageuri = new Regex("""href="(v.+/)".+>[\t ]*([0-9]{4})-([0-9]{2})-([0-9]{2})[\t ]+([0-9]{2}):([0-9]{2})[\t ]*<"""); + + // date & time for any uri in a per-kernel page + // [TXT]HEADER.html2023-05-11 23:21 5.6K  + // [DIR]amd64/2023-05-11 22:30 -   + // #### ## ## ## ## + // 1 2 3 4 5 + rex_datetime = new Regex(""">[\t ]*([0-9]{4})-([0-9]{2})-([0-9]{2})[\t ]+([0-9]{2}):([0-9]{2})[\t ]*<"""); + + // uri to any .deb file in a per-kernel page + // //same deb name// + // ############################################################################ + rex_fileuri = new Regex("""href="(.+\.deb)""""); + + // linux-headers-3.4.75-030475-generic_3.4.75-030475.201312201255_amd64.deb rex_header = new Regex("(?:" + NATIVE_ARCH + """/|>)?linux-headers-.+-generic_.+_""" + NATIVE_ARCH + ".deb"); - //linux-headers-3.4.75-030475_3.4.75-030475.201312201255_all.deb + // linux-headers-3.4.75-030475_3.4.75-030475.201312201255_all.deb rex_header_all = new Regex("(?:" + NATIVE_ARCH + """/|>)?linux-headers-.+_all.deb"""); - //linux-image-3.4.75-030475-generic_3.4.75-030475.201312201255_amd64.deb + // linux-image-3.4.75-030475-generic_3.4.75-030475.201312201255_amd64.deb rex_image = new Regex("(?:" + NATIVE_ARCH + """/|>)?linux-image-.+-generic_.+_""" + NATIVE_ARCH + ".deb"); - //linux-image-extra-3.4.75-030475-generic_3.4.75-030475.201312201255_amd64.deb + // linux-image-extra-3.4.75-030475-generic_3.4.75-030475.201312201255_amd64.deb rex_image_extra = new Regex("(?:" + NATIVE_ARCH + """/|>)?linux-image-extra-.+-generic_.+_""" + NATIVE_ARCH + ".deb"); - //linux-image-extra-3.4.75-030475-generic_3.4.75-030475.201312201255_amd64.deb + // linux-image-extra-3.4.75-030475-generic_3.4.75-030475.201312201255_amd64.deb rex_modules = new Regex("(?:" + NATIVE_ARCH + """/|>)?linux-modules-.+-generic_.+_""" + NATIVE_ARCH + ".deb"); } catch (Error e) { @@ -314,40 +335,29 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { kernel_list.clear(); kall.clear(); - try { - var rex = new Regex("""href="(v.+/)".+>[\t ]*([0-9]{4})-([0-9]{2})-([0-9]{2})[\t ]+([0-9]{2}):([0-9]{2})[\t ]*<"""); - // [DIR]v2.6.27.61/2018-05-13 20:40 -   - // ########### #### ## ## ## ## - // fetch(1) 2 3 4 5 6 - - MatchInfo mi; - string v; - foreach (string l in txt.split("\n")) { - if (!rex.match(l, 0, out mi)) continue; - v = mi.fetch(1); - var k = new LinuxKernel(v); - - // Don't try to exclude unstable here, just k.version_major

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 Bd9wfj literal 27423 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 Date: Tue, 4 Apr 2023 16:36:37 +0200 Subject: [PATCH 302/567] Update it.po --- po/it.po | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/po/it.po b/po/it.po index 0f3d6718..cc046c73 100644 --- a/po/it.po +++ b/po/it.po @@ -4,7 +4,7 @@ msgstr "" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-04-04 07:52-0400\n" "PO-Revision-Date: 2020-08-22 15:35+0100\n" -"Last-Translator: Albano Battistella \n" +"Last-Translator: Demetrio Mendozzi, Albano Battistella \n" "Language-Team: Italian\n" "Language: it\n" "MIME-Version: 1.0\n" @@ -21,7 +21,7 @@ msgstr "Architettura" #: src/Common/LinuxKernel.vala:132 msgid "Running kernel" -msgstr "Aggiornamento dei kernel" +msgstr "Kernel in esecuzione" #: src/Common/LinuxKernel.vala:253 msgid "loading cached" @@ -184,9 +184,8 @@ msgstr "Verifica aggiornamenti del kernel" #: src/Console/AppConsole.vala:52 msgid "Check for kernel updates and notify current user" -msgstr "" -"Verifica la disponibilità di aggiornamenti del kerneled avvisa l'utente " -"corrente" +msgstr "Verifica la disponibilità di aggiornamenti del kernel" +"ed avvisa l'utente corrente" #: src/Console/AppConsole.vala:53 msgid "List all available mainline kernels" @@ -198,7 +197,7 @@ msgstr "Elenca i kernel installati" #: src/Console/AppConsole.vala:55 msgid "Install latest mainline kernel" -msgstr "Installa ultimo kernel mainline" +msgstr "Installa l'ultimo kernel mainline" #: src/Console/AppConsole.vala:56 msgid "Install latest point update for current series" @@ -206,7 +205,7 @@ msgstr "installa l'ultimo rilascio parziale per le serie attuali" #: src/Console/AppConsole.vala:57 msgid "Install specified mainline kernel" -msgstr "Installa kernel mainline specificato" +msgstr "Installa il kernel mainline specificato" #: src/Console/AppConsole.vala:58 msgid "Uninstall specified kernel" From 0ee8b503c496d62a86a58d69c6b46ef701a48a9a Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Tue, 4 Apr 2023 18:10:04 -0400 Subject: [PATCH 303/567] logic for determining update available --- .deb_build_number.mak | 4 +- BRANDING.mak | 2 +- debian/changelog | 6 +++ po/de.po | 96 ++++++++++++++++++------------------- po/el.po | 96 ++++++++++++++++++------------------- po/es.po | 96 ++++++++++++++++++------------------- po/fr.po | 96 ++++++++++++++++++------------------- po/hr.po | 96 ++++++++++++++++++------------------- po/it.po | 96 ++++++++++++++++++------------------- po/ko.po | 96 ++++++++++++++++++------------------- po/messages.pot | 96 ++++++++++++++++++------------------- po/nl.po | 96 ++++++++++++++++++------------------- po/pl.po | 96 ++++++++++++++++++------------------- po/ru.po | 96 ++++++++++++++++++------------------- po/sv.po | 96 ++++++++++++++++++------------------- po/tr.po | 96 ++++++++++++++++++------------------- po/uk.po | 96 ++++++++++++++++++------------------- src/Common/LinuxKernel.vala | 28 +++++++---- src/Console/AppConsole.vala | 2 + src/Gtk/AppGtk.vala | 3 +- src/Gtk/MainWindow.vala | 3 ++ src/lib/l.misc.vala | 2 +- 22 files changed, 708 insertions(+), 686 deletions(-) diff --git a/.deb_build_number.mak b/.deb_build_number.mak index f7b71746..c1cee27b 100644 --- a/.deb_build_number.mak +++ b/.deb_build_number.mak @@ -1,3 +1,3 @@ # This file is generated by Makefile "make deb_build_number" -DEB_PKG_VERSION := 1.2.0 -DEB_BUILD_NUMBER := 0001 +DEB_PKG_VERSION := 1.2.1 +DEB_BUILD_NUMBER := 0000 diff --git a/BRANDING.mak b/BRANDING.mak index afd70158..e0081854 100644 --- a/BRANDING.mak +++ b/BRANDING.mak @@ -3,7 +3,7 @@ VERSION_MAJOR = 1 VERSION_MINOR = 2 -VERSION_MICRO = 0 +VERSION_MICRO = 1 BRANDING_SHORTNAME = mainline BRANDING_LONGNAME = Ubuntu Mainline Kernel Installer BRANDING_AUTHORNAME = Brian K. White diff --git a/debian/changelog b/debian/changelog index bd643d0c..e8a5ef7e 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +mainline (1.2.1) unstable; urgency=medium + + * improve the logic for determining if a new kernel is available + + -- Brian K. White Tue, 04 Apr 2023 18:05:01 -0400 + mainline (1.2.0) unstable; urgency=medium * NOTES! diff --git a/po/de.po b/po/de.po index c6306ed8..fde448f1 100644 --- a/po/de.po +++ b/po/de.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-04-04 07:52-0400\n" +"POT-Creation-Date: 2023-04-04 17:58-0400\n" "PO-Revision-Date: 2023-02-20 18:40+0100\n" "Last-Translator: Marvin Meysel \n" "Language-Team: German\n" @@ -53,101 +53,101 @@ msgstr "OK" msgid "FAILED" msgstr "MISSLUNGEN" -#: src/Common/LinuxKernel.vala:397 +#: src/Common/LinuxKernel.vala:395 msgid "Found installed" msgstr "Installiert gefunden" -#: src/Common/LinuxKernel.vala:721 src/Gtk/MainWindow.vala:519 +#: src/Common/LinuxKernel.vala:731 src/Gtk/MainWindow.vala:519 #: src/Gtk/MainWindow.vala:532 msgid "Running" msgstr "Läuft" -#: src/Common/LinuxKernel.vala:722 +#: src/Common/LinuxKernel.vala:732 msgid "Installed" msgstr "Installiert" -#: src/Common/LinuxKernel.vala:723 +#: src/Common/LinuxKernel.vala:733 msgid "Invalid" msgstr "Ungültig" -#: src/Common/LinuxKernel.vala:797 +#: src/Common/LinuxKernel.vala:807 msgid "Packages Available" msgstr "Verfügbare Pakete" -#: src/Common/LinuxKernel.vala:803 +#: src/Common/LinuxKernel.vala:813 msgid "Packages Installed" msgstr "Installierte Pakete" -#: src/Common/LinuxKernel.vala:825 src/lib/TeeJee.FileSystem.vala:118 +#: src/Common/LinuxKernel.vala:835 src/lib/TeeJee.FileSystem.vala:118 msgid "File not found" msgstr "Datei nicht gefunden " -#: src/Common/LinuxKernel.vala:894 +#: src/Common/LinuxKernel.vala:904 msgid "Available Kernels" msgstr "Verfügbare Kernel" -#: src/Common/LinuxKernel.vala:931 +#: src/Common/LinuxKernel.vala:941 msgid "enabled" msgstr "ermöglichte" -#: src/Common/LinuxKernel.vala:955 +#: src/Common/LinuxKernel.vala:965 msgid "Downloading" msgstr "Laden" -#: src/Common/LinuxKernel.vala:976 +#: src/Common/LinuxKernel.vala:986 msgid "is already installed." msgstr "ist bereits installiert." -#: src/Common/LinuxKernel.vala:1006 +#: src/Common/LinuxKernel.vala:1016 msgid "Uninstalling selected kernels" msgstr "Deinstallation des angegebenen Kernels" -#: src/Common/LinuxKernel.vala:1012 +#: src/Common/LinuxKernel.vala:1022 msgid "requested" msgstr "angefordert" -#: src/Common/LinuxKernel.vala:1015 +#: src/Common/LinuxKernel.vala:1025 msgid "not uninstalling the currently running kernel" msgstr "Den aktuell laufenden Kernel wird nicht deinstalliert" -#: src/Common/LinuxKernel.vala:1031 +#: src/Common/LinuxKernel.vala:1041 msgid "found" msgstr "gründen" -#: src/Common/LinuxKernel.vala:1034 +#: src/Common/LinuxKernel.vala:1044 msgid "No packages to un-install!" msgstr "Keine Pakete zum Deinstallieren!" -#: src/Common/LinuxKernel.vala:1082 +#: src/Common/LinuxKernel.vala:1092 msgid "Could not find running kernel in list" msgstr "Konnte keinen laufenden Kernel in der Liste finden" -#: src/Common/LinuxKernel.vala:1087 +#: src/Common/LinuxKernel.vala:1097 msgid "Could not find any kernels to uninstall" msgstr "Es konnten keine Kernel zum Deinstallieren gefunden werden" -#: src/Common/LinuxKernel.vala:1095 +#: src/Common/LinuxKernel.vala:1105 msgid "The following kernels will be uninstalled" msgstr "Die folgenden Kernel werden deinstalliert" -#: src/Common/LinuxKernel.vala:1099 +#: src/Common/LinuxKernel.vala:1109 msgid "Continue ?" msgstr "Weiter ?" -#: src/Common/LinuxKernel.vala:1121 src/Console/AppConsole.vala:290 +#: src/Common/LinuxKernel.vala:1131 src/Console/AppConsole.vala:292 msgid "Latest update" msgstr "Neustes Update" -#: src/Common/LinuxKernel.vala:1132 src/Console/AppConsole.vala:297 +#: src/Common/LinuxKernel.vala:1142 src/Console/AppConsole.vala:299 msgid "Latest point update" msgstr "Letzte Punktaktualisierung" -#: src/Common/LinuxKernel.vala:1140 src/Console/AppConsole.vala:302 -#: src/Console/AppConsole.vala:318 +#: src/Common/LinuxKernel.vala:1150 src/Console/AppConsole.vala:304 +#: src/Console/AppConsole.vala:320 msgid "No updates found" msgstr "Keine Updates gefunden" -#: src/Common/LinuxKernel.vala:1149 +#: src/Common/LinuxKernel.vala:1159 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Kernel-Version %s installieren? (j/n):" @@ -171,7 +171,7 @@ msgstr "Benachrichtigungen sind deaktiviert" msgid "File not found: %s" msgstr "Datei nicht gefunden: %s" -#: src/Console/AppConsole.vala:47 src/Gtk/AppGtk.vala:135 +#: src/Console/AppConsole.vala:47 src/Gtk/AppGtk.vala:136 msgid "Syntax" msgstr "Syntax" @@ -224,7 +224,7 @@ msgstr "Herunterladen bestimmter Kernel" msgid "Delete cached info about available kernels" msgstr "Löschen zwischengespeicherter Informationen über verfügbare Kernel" -#: src/Console/AppConsole.vala:63 src/Gtk/AppGtk.vala:137 +#: src/Console/AppConsole.vala:63 src/Gtk/AppGtk.vala:138 msgid "Options" msgstr "Optionen" @@ -256,63 +256,63 @@ msgstr "Ein oder mehrere, durch Kommas getrennte" msgid "The currently running kernel will always be ignored" msgstr "Der aktuell laufende Kernel wird immer ignoriert" -#: src/Console/AppConsole.vala:161 src/Gtk/AppGtk.vala:121 +#: src/Console/AppConsole.vala:163 src/Gtk/AppGtk.vala:122 msgid "Unknown option" msgstr "Unbekannte Option" -#: src/Console/AppConsole.vala:162 src/Console/AppConsole.vala:248 -#: src/Console/AppConsole.vala:276 +#: src/Console/AppConsole.vala:164 src/Console/AppConsole.vala:250 +#: src/Console/AppConsole.vala:278 msgid "Run" msgstr "Ausführen" -#: src/Console/AppConsole.vala:162 +#: src/Console/AppConsole.vala:164 msgid "to list all options" msgstr "um alle Optionen aufzulisten" -#: src/Console/AppConsole.vala:216 src/Console/AppConsole.vala:256 +#: src/Console/AppConsole.vala:218 src/Console/AppConsole.vala:258 msgid "No kernels specified" msgstr "Keine Kernel angegeben" -#: src/Console/AppConsole.vala:222 +#: src/Console/AppConsole.vala:224 msgid "Multiple kernels selected for installation. Select only one." msgstr "" "Mehrere Kernel für die Installation ausgewählt. Wählen Sie nur einen aus." -#: src/Console/AppConsole.vala:245 +#: src/Console/AppConsole.vala:247 msgid "Could not find requested version" msgstr "Die gewünschte Version konnte nicht gefunden werden" -#: src/Console/AppConsole.vala:248 +#: src/Console/AppConsole.vala:250 msgid "and use a version string listed in first column" msgstr "" "und verwenden Sie eine in der ersten Spalte aufgeführte Versionszeichenfolge" -#: src/Console/AppConsole.vala:275 +#: src/Console/AppConsole.vala:277 msgid "Command not specified" msgstr "Befehl nicht angegeben" -#: src/Console/AppConsole.vala:276 +#: src/Console/AppConsole.vala:278 msgid "to list all commands" msgstr "um alle Befehle aufzulisten" -#: src/Console/AppConsole.vala:312 +#: src/Console/AppConsole.vala:314 msgid "Notifications disabled in settings" msgstr "Benachrichtigungen sind deaktiviert" -#: src/Console/AppConsole.vala:337 +#: src/Console/AppConsole.vala:339 #, c-format msgid "Kernel %s Available" msgstr "Kernel %s verfügbar" -#: src/Console/AppConsole.vala:341 src/Gtk/SettingsDialog.vala:166 +#: src/Console/AppConsole.vala:343 src/Gtk/SettingsDialog.vala:166 msgid "Show" msgstr "Zeigen" -#: src/Console/AppConsole.vala:342 src/Gtk/MainWindow.vala:296 +#: src/Console/AppConsole.vala:344 src/Gtk/MainWindow.vala:296 msgid "Install" msgstr "Installieren" -#: src/Console/AppConsole.vala:345 +#: src/Console/AppConsole.vala:347 msgid "Previously notified" msgstr "Zuvor gemeldet" @@ -352,15 +352,15 @@ msgstr "Dokumentierer" msgid "Third Party Inclusions" msgstr "Einschlüsse von Drittparteien" -#: src/Gtk/AppGtk.vala:135 +#: src/Gtk/AppGtk.vala:136 msgid "options" msgstr "optionen" -#: src/Gtk/AppGtk.vala:139 +#: src/Gtk/AppGtk.vala:140 msgid "Print debug information" msgstr "Zeige Debug Informationen" -#: src/Gtk/AppGtk.vala:140 +#: src/Gtk/AppGtk.vala:141 msgid "Show all options" msgstr "Alle Optionen anzeigen" @@ -430,8 +430,8 @@ msgstr "Aktualisieren von Kernels" msgid "available" msgstr "Verfügbar" -#: src/Gtk/MainWindow.vala:571 src/Gtk/MainWindow.vala:611 -#: src/Gtk/MainWindow.vala:645 +#: src/Gtk/MainWindow.vala:571 src/Gtk/MainWindow.vala:612 +#: src/Gtk/MainWindow.vala:647 msgid "DONE" msgstr "FERTIG" diff --git a/po/el.po b/po/el.po index fb5c8faa..4a099226 100644 --- a/po/el.po +++ b/po/el.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-04-04 07:52-0400\n" +"POT-Creation-Date: 2023-04-04 17:58-0400\n" "PO-Revision-Date: 2023-01-10 02:03-0600\n" "Last-Translator: Vasilis Kosmidis \n" "Language-Team: Greek\n" @@ -53,101 +53,101 @@ msgstr "ΟΚ" msgid "FAILED" msgstr "ΑΠΈΤΥΧΕ" -#: src/Common/LinuxKernel.vala:397 +#: src/Common/LinuxKernel.vala:395 msgid "Found installed" msgstr "Βρέθηκε εγκατεστημένο" -#: src/Common/LinuxKernel.vala:721 src/Gtk/MainWindow.vala:519 +#: src/Common/LinuxKernel.vala:731 src/Gtk/MainWindow.vala:519 #: src/Gtk/MainWindow.vala:532 msgid "Running" msgstr "Ενεργός" -#: src/Common/LinuxKernel.vala:722 +#: src/Common/LinuxKernel.vala:732 msgid "Installed" msgstr "Εγκατεστημένος" -#: src/Common/LinuxKernel.vala:723 +#: src/Common/LinuxKernel.vala:733 msgid "Invalid" msgstr "Άκυρος" -#: src/Common/LinuxKernel.vala:797 +#: src/Common/LinuxKernel.vala:807 msgid "Packages Available" msgstr "Διαθέσιμα πακέτα" -#: src/Common/LinuxKernel.vala:803 +#: src/Common/LinuxKernel.vala:813 msgid "Packages Installed" msgstr "Εγκατεστημένα πακέτα" -#: src/Common/LinuxKernel.vala:825 src/lib/TeeJee.FileSystem.vala:118 +#: src/Common/LinuxKernel.vala:835 src/lib/TeeJee.FileSystem.vala:118 msgid "File not found" msgstr "Το αρχείο δε βρέθηκε" -#: src/Common/LinuxKernel.vala:894 +#: src/Common/LinuxKernel.vala:904 msgid "Available Kernels" msgstr "Διαθέσιμοι πυρήνες" -#: src/Common/LinuxKernel.vala:931 +#: src/Common/LinuxKernel.vala:941 msgid "enabled" msgstr "ενεργοποιημένη" -#: src/Common/LinuxKernel.vala:955 +#: src/Common/LinuxKernel.vala:965 msgid "Downloading" msgstr "Κατέβασμα" -#: src/Common/LinuxKernel.vala:976 +#: src/Common/LinuxKernel.vala:986 msgid "is already installed." msgstr "είναι ήδη εγκατεστημένο." -#: src/Common/LinuxKernel.vala:1006 +#: src/Common/LinuxKernel.vala:1016 msgid "Uninstalling selected kernels" msgstr "Απεγκατάσταση επιλεγμένων πυρήνων" -#: src/Common/LinuxKernel.vala:1012 +#: src/Common/LinuxKernel.vala:1022 msgid "requested" msgstr "ζητήθηκε" -#: src/Common/LinuxKernel.vala:1015 +#: src/Common/LinuxKernel.vala:1025 msgid "not uninstalling the currently running kernel" msgstr "δεν θα απεγκαταστήσει τον πυρήνα που εκτελείται αυτήν τη στιγμή" -#: src/Common/LinuxKernel.vala:1031 +#: src/Common/LinuxKernel.vala:1041 msgid "found" msgstr "ιδρύω" -#: src/Common/LinuxKernel.vala:1034 +#: src/Common/LinuxKernel.vala:1044 msgid "No packages to un-install!" msgstr "Δεν υπάρχουν πακέτα για απεγκατάσταση!" -#: src/Common/LinuxKernel.vala:1082 +#: src/Common/LinuxKernel.vala:1092 msgid "Could not find running kernel in list" msgstr "Δεν ήταν δυνατή η εύρεση του πυρήνα που εκτελείται αυτήν τη στιγμή" -#: src/Common/LinuxKernel.vala:1087 +#: src/Common/LinuxKernel.vala:1097 msgid "Could not find any kernels to uninstall" msgstr "Δεν βρέθηκε κανένας πυρήνας για απεγκατάσταση" -#: src/Common/LinuxKernel.vala:1095 +#: src/Common/LinuxKernel.vala:1105 msgid "The following kernels will be uninstalled" msgstr "Θα καταργηθεί η εγκατάσταση των ακόλουθων πυρήνων" -#: src/Common/LinuxKernel.vala:1099 +#: src/Common/LinuxKernel.vala:1109 msgid "Continue ?" msgstr "Συνέχεια;" -#: src/Common/LinuxKernel.vala:1121 src/Console/AppConsole.vala:290 +#: src/Common/LinuxKernel.vala:1131 src/Console/AppConsole.vala:292 msgid "Latest update" msgstr "Τελευταία αναβάθμιση" -#: src/Common/LinuxKernel.vala:1132 src/Console/AppConsole.vala:297 +#: src/Common/LinuxKernel.vala:1142 src/Console/AppConsole.vala:299 msgid "Latest point update" msgstr "Τελευταία ενημέρωση συντήρησης" -#: src/Common/LinuxKernel.vala:1140 src/Console/AppConsole.vala:302 -#: src/Console/AppConsole.vala:318 +#: src/Common/LinuxKernel.vala:1150 src/Console/AppConsole.vala:304 +#: src/Console/AppConsole.vala:320 msgid "No updates found" msgstr "Δεν βρέθηκαν ενημερώσεις" -#: src/Common/LinuxKernel.vala:1149 +#: src/Common/LinuxKernel.vala:1159 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Εγκατάσταση του πυρήνα έκδοσης %s ; (ν/ό):" @@ -172,7 +172,7 @@ msgstr "Οι ειδοποιήσεις είναι απενεργοποιημέν msgid "File not found: %s" msgstr "Το αρχείο δεν βρέθηκε: %s" -#: src/Console/AppConsole.vala:47 src/Gtk/AppGtk.vala:135 +#: src/Console/AppConsole.vala:47 src/Gtk/AppGtk.vala:136 msgid "Syntax" msgstr "Σύνταξη" @@ -225,7 +225,7 @@ msgid "Delete cached info about available kernels" msgstr "" "Διαγραφή προσωρινά αποθηκευμένων πληροφοριών σχετικά με διαθέσιμους πυρήνες" -#: src/Console/AppConsole.vala:63 src/Gtk/AppGtk.vala:137 +#: src/Console/AppConsole.vala:63 src/Gtk/AppGtk.vala:138 msgid "Options" msgstr "Επιλογές" @@ -257,62 +257,62 @@ msgstr "Ένα ή περισσότερα, διαχωρισμένα με κόμμ msgid "The currently running kernel will always be ignored" msgstr "Αυτός ο πυρήνας είναι ήδη εγκατεστημένος." -#: src/Console/AppConsole.vala:161 src/Gtk/AppGtk.vala:121 +#: src/Console/AppConsole.vala:163 src/Gtk/AppGtk.vala:122 msgid "Unknown option" msgstr "Άγνωστη επιλογή" -#: src/Console/AppConsole.vala:162 src/Console/AppConsole.vala:248 -#: src/Console/AppConsole.vala:276 +#: src/Console/AppConsole.vala:164 src/Console/AppConsole.vala:250 +#: src/Console/AppConsole.vala:278 msgid "Run" msgstr "Τρέξτε" -#: src/Console/AppConsole.vala:162 +#: src/Console/AppConsole.vala:164 msgid "to list all options" msgstr "για να παραθέσετε όλες τις επιλογές" -#: src/Console/AppConsole.vala:216 src/Console/AppConsole.vala:256 +#: src/Console/AppConsole.vala:218 src/Console/AppConsole.vala:258 msgid "No kernels specified" msgstr "Δεν έχουν καθοριστεί πυρήνες" -#: src/Console/AppConsole.vala:222 +#: src/Console/AppConsole.vala:224 msgid "Multiple kernels selected for installation. Select only one." msgstr "Επιλέχθηκαν πολλαπλοί πυρήνες για εγκατάσταση. Επιλέξτε μόνο ένα." -#: src/Console/AppConsole.vala:245 +#: src/Console/AppConsole.vala:247 msgid "Could not find requested version" msgstr "Δε βρέθηκε η ζητούμενη έκδοση" -#: src/Console/AppConsole.vala:248 +#: src/Console/AppConsole.vala:250 msgid "and use a version string listed in first column" msgstr "" "και χρησιμοποιήστε μια συμβολοσειρά έκδοσης που αναφέρεται στην πρώτη στήλη" -#: src/Console/AppConsole.vala:275 +#: src/Console/AppConsole.vala:277 msgid "Command not specified" msgstr "Η εντολή δεν προσδιορίστηκε" -#: src/Console/AppConsole.vala:276 +#: src/Console/AppConsole.vala:278 msgid "to list all commands" msgstr "για να παραθέσετε όλες τις εντολές" -#: src/Console/AppConsole.vala:312 +#: src/Console/AppConsole.vala:314 msgid "Notifications disabled in settings" msgstr "Οι ειδοποιήσεις είναι απενεργοποιημένες στις ρυθμίσεις" -#: src/Console/AppConsole.vala:337 +#: src/Console/AppConsole.vala:339 #, c-format msgid "Kernel %s Available" msgstr "Πυρήνας %s διαθέσιμος" -#: src/Console/AppConsole.vala:341 src/Gtk/SettingsDialog.vala:166 +#: src/Console/AppConsole.vala:343 src/Gtk/SettingsDialog.vala:166 msgid "Show" msgstr "Προβολή" -#: src/Console/AppConsole.vala:342 src/Gtk/MainWindow.vala:296 +#: src/Console/AppConsole.vala:344 src/Gtk/MainWindow.vala:296 msgid "Install" msgstr "Εγκατάσταση" -#: src/Console/AppConsole.vala:345 +#: src/Console/AppConsole.vala:347 msgid "Previously notified" msgstr "Έχει ήδη κοινοποιηθεί" @@ -352,15 +352,15 @@ msgstr "Τεκμηριωτές" msgid "Third Party Inclusions" msgstr "Συμπεριλήψεις τρίτων" -#: src/Gtk/AppGtk.vala:135 +#: src/Gtk/AppGtk.vala:136 msgid "options" msgstr "επιλογές" -#: src/Gtk/AppGtk.vala:139 +#: src/Gtk/AppGtk.vala:140 msgid "Print debug information" msgstr "Εκτύπωση πληροφοριών εντοπισμού σφαλμάτων" -#: src/Gtk/AppGtk.vala:140 +#: src/Gtk/AppGtk.vala:141 msgid "Show all options" msgstr "Εμφάνιση όλων των επιλογών" @@ -430,8 +430,8 @@ msgstr "Ενημέρωση πυρήνων" msgid "available" msgstr "διαθέσιμος" -#: src/Gtk/MainWindow.vala:571 src/Gtk/MainWindow.vala:611 -#: src/Gtk/MainWindow.vala:645 +#: src/Gtk/MainWindow.vala:571 src/Gtk/MainWindow.vala:612 +#: src/Gtk/MainWindow.vala:647 msgid "DONE" msgstr "ΈΤΟΙΜΟ" diff --git a/po/es.po b/po/es.po index 7c87b9e9..96f346d3 100644 --- a/po/es.po +++ b/po/es.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-04-04 07:52-0400\n" +"POT-Creation-Date: 2023-04-04 17:58-0400\n" "PO-Revision-Date: 2018-01-03 02:03-0600\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish\n" @@ -53,101 +53,101 @@ msgstr "Aceptar" msgid "FAILED" msgstr "FRACASADO" -#: src/Common/LinuxKernel.vala:397 +#: src/Common/LinuxKernel.vala:395 msgid "Found installed" msgstr "Encontrado instalado" -#: src/Common/LinuxKernel.vala:721 src/Gtk/MainWindow.vala:519 +#: src/Common/LinuxKernel.vala:731 src/Gtk/MainWindow.vala:519 #: src/Gtk/MainWindow.vala:532 msgid "Running" msgstr "En ejecución" -#: src/Common/LinuxKernel.vala:722 +#: src/Common/LinuxKernel.vala:732 msgid "Installed" msgstr "Instalado" -#: src/Common/LinuxKernel.vala:723 +#: src/Common/LinuxKernel.vala:733 msgid "Invalid" msgstr "No válido" -#: src/Common/LinuxKernel.vala:797 +#: src/Common/LinuxKernel.vala:807 msgid "Packages Available" msgstr "Paquetes disponibles" -#: src/Common/LinuxKernel.vala:803 +#: src/Common/LinuxKernel.vala:813 msgid "Packages Installed" msgstr "Paquetes instalados" -#: src/Common/LinuxKernel.vala:825 src/lib/TeeJee.FileSystem.vala:118 +#: src/Common/LinuxKernel.vala:835 src/lib/TeeJee.FileSystem.vala:118 msgid "File not found" msgstr "No se encontró el archivo" -#: src/Common/LinuxKernel.vala:894 +#: src/Common/LinuxKernel.vala:904 msgid "Available Kernels" msgstr "Núcleos disponibles" -#: src/Common/LinuxKernel.vala:931 +#: src/Common/LinuxKernel.vala:941 msgid "enabled" msgstr "habilitado" -#: src/Common/LinuxKernel.vala:955 +#: src/Common/LinuxKernel.vala:965 msgid "Downloading" msgstr "Descargar" -#: src/Common/LinuxKernel.vala:976 +#: src/Common/LinuxKernel.vala:986 msgid "is already installed." msgstr "ya está instalado." -#: src/Common/LinuxKernel.vala:1006 +#: src/Common/LinuxKernel.vala:1016 msgid "Uninstalling selected kernels" msgstr "Desinstalación de kernels seleccionados" -#: src/Common/LinuxKernel.vala:1012 +#: src/Common/LinuxKernel.vala:1022 msgid "requested" msgstr "solicitado" -#: src/Common/LinuxKernel.vala:1015 +#: src/Common/LinuxKernel.vala:1025 msgid "not uninstalling the currently running kernel" msgstr "No desinstalará el kernel que se está ejecutando actualmente" -#: src/Common/LinuxKernel.vala:1031 +#: src/Common/LinuxKernel.vala:1041 msgid "found" msgstr "fundar" -#: src/Common/LinuxKernel.vala:1034 +#: src/Common/LinuxKernel.vala:1044 msgid "No packages to un-install!" msgstr "¡No hay paquetes para desinstalar!" -#: src/Common/LinuxKernel.vala:1082 +#: src/Common/LinuxKernel.vala:1092 msgid "Could not find running kernel in list" msgstr "No se pudo encontrar el kernel en ejecución en la lista" -#: src/Common/LinuxKernel.vala:1087 +#: src/Common/LinuxKernel.vala:1097 msgid "Could not find any kernels to uninstall" msgstr "No se pudo encontrar ningún kernel para desinstalar" -#: src/Common/LinuxKernel.vala:1095 +#: src/Common/LinuxKernel.vala:1105 msgid "The following kernels will be uninstalled" msgstr "Se desinstalarán los siguientes kernels" -#: src/Common/LinuxKernel.vala:1099 +#: src/Common/LinuxKernel.vala:1109 msgid "Continue ?" msgstr "¿Continuar?" -#: src/Common/LinuxKernel.vala:1121 src/Console/AppConsole.vala:290 +#: src/Common/LinuxKernel.vala:1131 src/Console/AppConsole.vala:292 msgid "Latest update" msgstr "Última actualización" -#: src/Common/LinuxKernel.vala:1132 src/Console/AppConsole.vala:297 +#: src/Common/LinuxKernel.vala:1142 src/Console/AppConsole.vala:299 msgid "Latest point update" msgstr "Última actualización puntual" -#: src/Common/LinuxKernel.vala:1140 src/Console/AppConsole.vala:302 -#: src/Console/AppConsole.vala:318 +#: src/Common/LinuxKernel.vala:1150 src/Console/AppConsole.vala:304 +#: src/Console/AppConsole.vala:320 msgid "No updates found" msgstr "No se encontró ninguna actualización" -#: src/Common/LinuxKernel.vala:1149 +#: src/Common/LinuxKernel.vala:1159 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Instalar la versión del kernel %s? (s/n): " @@ -172,7 +172,7 @@ msgstr "Las notificaciones están deshabilitadas" msgid "File not found: %s" msgstr "Archivo no encontrado: %s" -#: src/Console/AppConsole.vala:47 src/Gtk/AppGtk.vala:135 +#: src/Console/AppConsole.vala:47 src/Gtk/AppGtk.vala:136 msgid "Syntax" msgstr "Sintaxis" @@ -224,7 +224,7 @@ msgstr "Descargar kernels especificados" msgid "Delete cached info about available kernels" msgstr "Eliminar información almacenada en caché sobre los kernels disponibles" -#: src/Console/AppConsole.vala:63 src/Gtk/AppGtk.vala:137 +#: src/Console/AppConsole.vala:63 src/Gtk/AppGtk.vala:138 msgid "Options" msgstr "Opciones" @@ -256,61 +256,61 @@ msgstr "Uno o más, separados por comas" msgid "The currently running kernel will always be ignored" msgstr "El kernel que se está ejecutando actualmente siempre será ignorado" -#: src/Console/AppConsole.vala:161 src/Gtk/AppGtk.vala:121 +#: src/Console/AppConsole.vala:163 src/Gtk/AppGtk.vala:122 msgid "Unknown option" msgstr "Opción desconocida" -#: src/Console/AppConsole.vala:162 src/Console/AppConsole.vala:248 -#: src/Console/AppConsole.vala:276 +#: src/Console/AppConsole.vala:164 src/Console/AppConsole.vala:250 +#: src/Console/AppConsole.vala:278 msgid "Run" msgstr "En ejecución" -#: src/Console/AppConsole.vala:162 +#: src/Console/AppConsole.vala:164 msgid "to list all options" msgstr "para enumerar todas las opciones" -#: src/Console/AppConsole.vala:216 src/Console/AppConsole.vala:256 +#: src/Console/AppConsole.vala:218 src/Console/AppConsole.vala:258 msgid "No kernels specified" msgstr "No se especifican núcleos" -#: src/Console/AppConsole.vala:222 +#: src/Console/AppConsole.vala:224 msgid "Multiple kernels selected for installation. Select only one." msgstr "Se seleccionaron varios núcleos para su instalación. Elija solo uno." -#: src/Console/AppConsole.vala:245 +#: src/Console/AppConsole.vala:247 msgid "Could not find requested version" msgstr "No se pudo encontrar la versión solicitada" -#: src/Console/AppConsole.vala:248 +#: src/Console/AppConsole.vala:250 msgid "and use a version string listed in first column" msgstr "y utilice una cadena de versión enumerada en la primera columna" -#: src/Console/AppConsole.vala:275 +#: src/Console/AppConsole.vala:277 msgid "Command not specified" msgstr "Coomand no especificado" -#: src/Console/AppConsole.vala:276 +#: src/Console/AppConsole.vala:278 msgid "to list all commands" msgstr "para enumerar todos los cmmands" -#: src/Console/AppConsole.vala:312 +#: src/Console/AppConsole.vala:314 msgid "Notifications disabled in settings" msgstr "Notificaciones deshabilitadas en la configuración" -#: src/Console/AppConsole.vala:337 +#: src/Console/AppConsole.vala:339 #, c-format msgid "Kernel %s Available" msgstr "Kernel %s Disponible" -#: src/Console/AppConsole.vala:341 src/Gtk/SettingsDialog.vala:166 +#: src/Console/AppConsole.vala:343 src/Gtk/SettingsDialog.vala:166 msgid "Show" msgstr "Mostrar" -#: src/Console/AppConsole.vala:342 src/Gtk/MainWindow.vala:296 +#: src/Console/AppConsole.vala:344 src/Gtk/MainWindow.vala:296 msgid "Install" msgstr "Instalar" -#: src/Console/AppConsole.vala:345 +#: src/Console/AppConsole.vala:347 msgid "Previously notified" msgstr "Notificado previamente" @@ -350,15 +350,15 @@ msgstr "Documentadores" msgid "Third Party Inclusions" msgstr "Herramientas de Terceros" -#: src/Gtk/AppGtk.vala:135 +#: src/Gtk/AppGtk.vala:136 msgid "options" msgstr "opciones" -#: src/Gtk/AppGtk.vala:139 +#: src/Gtk/AppGtk.vala:140 msgid "Print debug information" msgstr "Mostrar información de depuración" -#: src/Gtk/AppGtk.vala:140 +#: src/Gtk/AppGtk.vala:141 msgid "Show all options" msgstr "Mostrar todas las opciones" @@ -429,8 +429,8 @@ msgstr "Actualización de kernels" msgid "available" msgstr "disponibles" -#: src/Gtk/MainWindow.vala:571 src/Gtk/MainWindow.vala:611 -#: src/Gtk/MainWindow.vala:645 +#: src/Gtk/MainWindow.vala:571 src/Gtk/MainWindow.vala:612 +#: src/Gtk/MainWindow.vala:647 msgid "DONE" msgstr "HECHO" diff --git a/po/fr.po b/po/fr.po index fb9f1fc6..358c3f97 100644 --- a/po/fr.po +++ b/po/fr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-04-04 07:52-0400\n" +"POT-Creation-Date: 2023-04-04 17:58-0400\n" "PO-Revision-Date: 2018-08-05 15:50+0200\n" "Last-Translator: Yolateng0 \n" "Language-Team: French\n" @@ -53,101 +53,101 @@ msgstr "OK" msgid "FAILED" msgstr "RATÉ" -#: src/Common/LinuxKernel.vala:397 +#: src/Common/LinuxKernel.vala:395 msgid "Found installed" msgstr "Trouvé installé" -#: src/Common/LinuxKernel.vala:721 src/Gtk/MainWindow.vala:519 +#: src/Common/LinuxKernel.vala:731 src/Gtk/MainWindow.vala:519 #: src/Gtk/MainWindow.vala:532 msgid "Running" msgstr "Actuel" -#: src/Common/LinuxKernel.vala:722 +#: src/Common/LinuxKernel.vala:732 msgid "Installed" msgstr "Installé" -#: src/Common/LinuxKernel.vala:723 +#: src/Common/LinuxKernel.vala:733 msgid "Invalid" msgstr "No válido" -#: src/Common/LinuxKernel.vala:797 +#: src/Common/LinuxKernel.vala:807 msgid "Packages Available" msgstr "Paquets Disponibles" -#: src/Common/LinuxKernel.vala:803 +#: src/Common/LinuxKernel.vala:813 msgid "Packages Installed" msgstr "Paquets Installés" -#: src/Common/LinuxKernel.vala:825 src/lib/TeeJee.FileSystem.vala:118 +#: src/Common/LinuxKernel.vala:835 src/lib/TeeJee.FileSystem.vala:118 msgid "File not found" msgstr "Fichier non trouvé" -#: src/Common/LinuxKernel.vala:894 +#: src/Common/LinuxKernel.vala:904 msgid "Available Kernels" msgstr "Noyaux Disponibles" -#: src/Common/LinuxKernel.vala:931 +#: src/Common/LinuxKernel.vala:941 msgid "enabled" msgstr "activé" -#: src/Common/LinuxKernel.vala:955 +#: src/Common/LinuxKernel.vala:965 msgid "Downloading" msgstr "Téléchargement" -#: src/Common/LinuxKernel.vala:976 +#: src/Common/LinuxKernel.vala:986 msgid "is already installed." msgstr "est déjà installé." -#: src/Common/LinuxKernel.vala:1006 +#: src/Common/LinuxKernel.vala:1016 msgid "Uninstalling selected kernels" msgstr "Désinstallation des noyaux sélectionnés" -#: src/Common/LinuxKernel.vala:1012 +#: src/Common/LinuxKernel.vala:1022 msgid "requested" msgstr "Demandé" -#: src/Common/LinuxKernel.vala:1015 +#: src/Common/LinuxKernel.vala:1025 msgid "not uninstalling the currently running kernel" msgstr "Ne pas désinstaller le noyau en cours d'exécution" -#: src/Common/LinuxKernel.vala:1031 +#: src/Common/LinuxKernel.vala:1041 msgid "found" msgstr "fonder" -#: src/Common/LinuxKernel.vala:1034 +#: src/Common/LinuxKernel.vala:1044 msgid "No packages to un-install!" msgstr "Pas de paquets à désinstaller !" -#: src/Common/LinuxKernel.vala:1082 +#: src/Common/LinuxKernel.vala:1092 msgid "Could not find running kernel in list" msgstr "Impossible de trouver le noyau en cours d'exécution dans la liste" -#: src/Common/LinuxKernel.vala:1087 +#: src/Common/LinuxKernel.vala:1097 msgid "Could not find any kernels to uninstall" msgstr "Impossible de trouver des noyaux à désinstaller" -#: src/Common/LinuxKernel.vala:1095 +#: src/Common/LinuxKernel.vala:1105 msgid "The following kernels will be uninstalled" msgstr "Les noyaux suivants seront désinstallés" -#: src/Common/LinuxKernel.vala:1099 +#: src/Common/LinuxKernel.vala:1109 msgid "Continue ?" msgstr "Reprendre ?" -#: src/Common/LinuxKernel.vala:1121 src/Console/AppConsole.vala:290 +#: src/Common/LinuxKernel.vala:1131 src/Console/AppConsole.vala:292 msgid "Latest update" msgstr "Dernière mise à jour" -#: src/Common/LinuxKernel.vala:1132 src/Console/AppConsole.vala:297 +#: src/Common/LinuxKernel.vala:1142 src/Console/AppConsole.vala:299 msgid "Latest point update" msgstr "Dernière mise à jour mineure" -#: src/Common/LinuxKernel.vala:1140 src/Console/AppConsole.vala:302 -#: src/Console/AppConsole.vala:318 +#: src/Common/LinuxKernel.vala:1150 src/Console/AppConsole.vala:304 +#: src/Console/AppConsole.vala:320 msgid "No updates found" msgstr "Aucune mise à jour disponible" -#: src/Common/LinuxKernel.vala:1149 +#: src/Common/LinuxKernel.vala:1159 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Installer le noyau en version %s ? (y/n): " @@ -172,7 +172,7 @@ msgstr "Les notifications sont désactivées" msgid "File not found: %s" msgstr "Fichier introuvable : %s" -#: src/Console/AppConsole.vala:47 src/Gtk/AppGtk.vala:135 +#: src/Console/AppConsole.vala:47 src/Gtk/AppGtk.vala:136 msgid "Syntax" msgstr "Syntaxe" @@ -224,7 +224,7 @@ msgstr "Télécharger les noyaux spécifiés" msgid "Delete cached info about available kernels" msgstr "Supprimer les informations mises en cache sur les noyaux disponibles" -#: src/Console/AppConsole.vala:63 src/Gtk/AppGtk.vala:137 +#: src/Console/AppConsole.vala:63 src/Gtk/AppGtk.vala:138 msgid "Options" msgstr "Options" @@ -256,63 +256,63 @@ msgstr "Une ou plusieurs, séparées par des virgules" msgid "The currently running kernel will always be ignored" msgstr "Le noyau en cours d'exécution sera toujours ignoré" -#: src/Console/AppConsole.vala:161 src/Gtk/AppGtk.vala:121 +#: src/Console/AppConsole.vala:163 src/Gtk/AppGtk.vala:122 msgid "Unknown option" msgstr "Option inconnue" -#: src/Console/AppConsole.vala:162 src/Console/AppConsole.vala:248 -#: src/Console/AppConsole.vala:276 +#: src/Console/AppConsole.vala:164 src/Console/AppConsole.vala:250 +#: src/Console/AppConsole.vala:278 msgid "Run" msgstr "Executez" -#: src/Console/AppConsole.vala:162 +#: src/Console/AppConsole.vala:164 msgid "to list all options" msgstr "pour afficher toutes les options" -#: src/Console/AppConsole.vala:216 src/Console/AppConsole.vala:256 +#: src/Console/AppConsole.vala:218 src/Console/AppConsole.vala:258 msgid "No kernels specified" msgstr "Aucun noyau spécifié" -#: src/Console/AppConsole.vala:222 +#: src/Console/AppConsole.vala:224 msgid "Multiple kernels selected for installation. Select only one." msgstr "" "Plusieurs noyaux sélectionnés pour être installés. Sélectionnez en seulement " "un." -#: src/Console/AppConsole.vala:245 +#: src/Console/AppConsole.vala:247 msgid "Could not find requested version" msgstr "Impossible de trouver la version demandée" -#: src/Console/AppConsole.vala:248 +#: src/Console/AppConsole.vala:250 msgid "and use a version string listed in first column" msgstr "et utilisez une chaîne de version répertoriée dans la première colonne" -#: src/Console/AppConsole.vala:275 +#: src/Console/AppConsole.vala:277 msgid "Command not specified" msgstr "Pas de commande fournie" -#: src/Console/AppConsole.vala:276 +#: src/Console/AppConsole.vala:278 msgid "to list all commands" msgstr "pour afficher toutes les commandes" -#: src/Console/AppConsole.vala:312 +#: src/Console/AppConsole.vala:314 msgid "Notifications disabled in settings" msgstr "Notifications désactivées dans les paramètres" -#: src/Console/AppConsole.vala:337 +#: src/Console/AppConsole.vala:339 #, c-format msgid "Kernel %s Available" msgstr "Paquet %s disponibles" -#: src/Console/AppConsole.vala:341 src/Gtk/SettingsDialog.vala:166 +#: src/Console/AppConsole.vala:343 src/Gtk/SettingsDialog.vala:166 msgid "Show" msgstr "Montrer" -#: src/Console/AppConsole.vala:342 src/Gtk/MainWindow.vala:296 +#: src/Console/AppConsole.vala:344 src/Gtk/MainWindow.vala:296 msgid "Install" msgstr "Installer" -#: src/Console/AppConsole.vala:345 +#: src/Console/AppConsole.vala:347 msgid "Previously notified" msgstr "Précédemment notifié" @@ -352,15 +352,15 @@ msgstr "Documentalistes" msgid "Third Party Inclusions" msgstr "Dépendances Tierces" -#: src/Gtk/AppGtk.vala:135 +#: src/Gtk/AppGtk.vala:136 msgid "options" msgstr "options" -#: src/Gtk/AppGtk.vala:139 +#: src/Gtk/AppGtk.vala:140 msgid "Print debug information" msgstr "Afficher les informations de débogage" -#: src/Gtk/AppGtk.vala:140 +#: src/Gtk/AppGtk.vala:141 msgid "Show all options" msgstr "Afficher toutes les options" @@ -432,8 +432,8 @@ msgstr "Mise à jour des noyaux" msgid "available" msgstr "disponible" -#: src/Gtk/MainWindow.vala:571 src/Gtk/MainWindow.vala:611 -#: src/Gtk/MainWindow.vala:645 +#: src/Gtk/MainWindow.vala:571 src/Gtk/MainWindow.vala:612 +#: src/Gtk/MainWindow.vala:647 msgid "DONE" msgstr "FAIT" diff --git a/po/hr.po b/po/hr.po index 14152f0c..92a08b74 100644 --- a/po/hr.po +++ b/po/hr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-04-04 07:52-0400\n" +"POT-Creation-Date: 2023-04-04 17:58-0400\n" "PO-Revision-Date: 2022-09-22 12:13+0200\n" "Last-Translator: gogo \n" "Language-Team: Croatian\n" @@ -53,101 +53,101 @@ msgstr "OK" msgid "FAILED" msgstr "NIJE USPIO" -#: src/Common/LinuxKernel.vala:397 +#: src/Common/LinuxKernel.vala:395 msgid "Found installed" msgstr "Pronađeno instalirano" -#: src/Common/LinuxKernel.vala:721 src/Gtk/MainWindow.vala:519 +#: src/Common/LinuxKernel.vala:731 src/Gtk/MainWindow.vala:519 #: src/Gtk/MainWindow.vala:532 msgid "Running" msgstr "Pokrenuto" -#: src/Common/LinuxKernel.vala:722 +#: src/Common/LinuxKernel.vala:732 msgid "Installed" msgstr "Instalirano" -#: src/Common/LinuxKernel.vala:723 +#: src/Common/LinuxKernel.vala:733 msgid "Invalid" msgstr "Érvénytelen" -#: src/Common/LinuxKernel.vala:797 +#: src/Common/LinuxKernel.vala:807 msgid "Packages Available" msgstr "Dostupni Paketi" -#: src/Common/LinuxKernel.vala:803 +#: src/Common/LinuxKernel.vala:813 msgid "Packages Installed" msgstr "Instalirani paketi" -#: src/Common/LinuxKernel.vala:825 src/lib/TeeJee.FileSystem.vala:118 +#: src/Common/LinuxKernel.vala:835 src/lib/TeeJee.FileSystem.vala:118 msgid "File not found" msgstr "Datoteka nije pronađena" -#: src/Common/LinuxKernel.vala:894 +#: src/Common/LinuxKernel.vala:904 msgid "Available Kernels" msgstr "Dostupni kerneli" -#: src/Common/LinuxKernel.vala:931 +#: src/Common/LinuxKernel.vala:941 msgid "enabled" msgstr "omogućen" -#: src/Common/LinuxKernel.vala:955 +#: src/Common/LinuxKernel.vala:965 msgid "Downloading" msgstr "Učitavanje" -#: src/Common/LinuxKernel.vala:976 +#: src/Common/LinuxKernel.vala:986 msgid "is already installed." msgstr "je već instaliran." -#: src/Common/LinuxKernel.vala:1006 +#: src/Common/LinuxKernel.vala:1016 msgid "Uninstalling selected kernels" msgstr "Deinstaliraj određene kernele" -#: src/Common/LinuxKernel.vala:1012 +#: src/Common/LinuxKernel.vala:1022 msgid "requested" msgstr "Zatražio" -#: src/Common/LinuxKernel.vala:1015 +#: src/Common/LinuxKernel.vala:1025 msgid "not uninstalling the currently running kernel" msgstr "ne deinstaliranje trenutno pokrenute kernel" -#: src/Common/LinuxKernel.vala:1031 +#: src/Common/LinuxKernel.vala:1041 msgid "found" msgstr "pronađen" -#: src/Common/LinuxKernel.vala:1034 +#: src/Common/LinuxKernel.vala:1044 msgid "No packages to un-install!" msgstr "Nema paketa za poništavanje instalacije!" -#: src/Common/LinuxKernel.vala:1082 +#: src/Common/LinuxKernel.vala:1092 msgid "Could not find running kernel in list" msgstr "Nije moguće pronaći pokrenutu kernel na popisu" -#: src/Common/LinuxKernel.vala:1087 +#: src/Common/LinuxKernel.vala:1097 msgid "Could not find any kernels to uninstall" msgstr "Nema pronađenih kernela za deinstaliranje" -#: src/Common/LinuxKernel.vala:1095 +#: src/Common/LinuxKernel.vala:1105 msgid "The following kernels will be uninstalled" msgstr "Deinstalirat će se sljedeće kerneli" -#: src/Common/LinuxKernel.vala:1099 +#: src/Common/LinuxKernel.vala:1109 msgid "Continue ?" msgstr "Nastavi?" -#: src/Common/LinuxKernel.vala:1121 src/Console/AppConsole.vala:290 +#: src/Common/LinuxKernel.vala:1131 src/Console/AppConsole.vala:292 msgid "Latest update" msgstr "Najnovija nadopuna" -#: src/Common/LinuxKernel.vala:1132 src/Console/AppConsole.vala:297 +#: src/Common/LinuxKernel.vala:1142 src/Console/AppConsole.vala:299 msgid "Latest point update" msgstr "Najnovija ciljana nadopuna" -#: src/Common/LinuxKernel.vala:1140 src/Console/AppConsole.vala:302 -#: src/Console/AppConsole.vala:318 +#: src/Common/LinuxKernel.vala:1150 src/Console/AppConsole.vala:304 +#: src/Console/AppConsole.vala:320 msgid "No updates found" msgstr "Nema pronađenih nadopuna" -#: src/Common/LinuxKernel.vala:1149 +#: src/Common/LinuxKernel.vala:1159 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Instaliraj kernel inačice %s ? (d/n): " @@ -171,7 +171,7 @@ msgstr "Obavijesti su onemogućene" msgid "File not found: %s" msgstr "Datoteka nije pronađena: %s" -#: src/Console/AppConsole.vala:47 src/Gtk/AppGtk.vala:135 +#: src/Console/AppConsole.vala:47 src/Gtk/AppGtk.vala:136 msgid "Syntax" msgstr "Sintaksa" @@ -223,7 +223,7 @@ msgstr "Preuzmi određene kernele" msgid "Delete cached info about available kernels" msgstr "Brisanje predmemoriranih podataka o dostupnim jezgrama" -#: src/Console/AppConsole.vala:63 src/Gtk/AppGtk.vala:137 +#: src/Console/AppConsole.vala:63 src/Gtk/AppGtk.vala:138 msgid "Options" msgstr "Mogućnosti" @@ -255,61 +255,61 @@ msgstr "Jedan ili više njih, odvojeni zarezom" msgid "The currently running kernel will always be ignored" msgstr "Trenutno pokrenuta jezgra uvijek će se zanemariti" -#: src/Console/AppConsole.vala:161 src/Gtk/AppGtk.vala:121 +#: src/Console/AppConsole.vala:163 src/Gtk/AppGtk.vala:122 msgid "Unknown option" msgstr "Nepoznata mogućnost" -#: src/Console/AppConsole.vala:162 src/Console/AppConsole.vala:248 -#: src/Console/AppConsole.vala:276 +#: src/Console/AppConsole.vala:164 src/Console/AppConsole.vala:250 +#: src/Console/AppConsole.vala:278 msgid "Run" msgstr "Pokreni" -#: src/Console/AppConsole.vala:162 +#: src/Console/AppConsole.vala:164 msgid "to list all options" msgstr "za prikaz svih mogućnosti" -#: src/Console/AppConsole.vala:216 src/Console/AppConsole.vala:256 +#: src/Console/AppConsole.vala:218 src/Console/AppConsole.vala:258 msgid "No kernels specified" msgstr "Nema određenih kernela" -#: src/Console/AppConsole.vala:222 +#: src/Console/AppConsole.vala:224 msgid "Multiple kernels selected for installation. Select only one." msgstr "Više kernela je odabrano za instalaciju. odaberite samo jedan." -#: src/Console/AppConsole.vala:245 +#: src/Console/AppConsole.vala:247 msgid "Could not find requested version" msgstr "Nemoguće je pronaći zatraženu inačicu" -#: src/Console/AppConsole.vala:248 +#: src/Console/AppConsole.vala:250 msgid "and use a version string listed in first column" msgstr "i koristite izraz inačice prikazan u prvom stupcu" -#: src/Console/AppConsole.vala:275 +#: src/Console/AppConsole.vala:277 msgid "Command not specified" msgstr "Naredba nije navedena" -#: src/Console/AppConsole.vala:276 +#: src/Console/AppConsole.vala:278 msgid "to list all commands" msgstr "za prikaz svih mogućnosti" -#: src/Console/AppConsole.vala:312 +#: src/Console/AppConsole.vala:314 msgid "Notifications disabled in settings" msgstr "Obavijesti onemogućene u postavkama" -#: src/Console/AppConsole.vala:337 +#: src/Console/AppConsole.vala:339 #, c-format msgid "Kernel %s Available" msgstr "Kernel %s je dostupan" -#: src/Console/AppConsole.vala:341 src/Gtk/SettingsDialog.vala:166 +#: src/Console/AppConsole.vala:343 src/Gtk/SettingsDialog.vala:166 msgid "Show" msgstr "Prikaži" -#: src/Console/AppConsole.vala:342 src/Gtk/MainWindow.vala:296 +#: src/Console/AppConsole.vala:344 src/Gtk/MainWindow.vala:296 msgid "Install" msgstr "Instaliraj" -#: src/Console/AppConsole.vala:345 +#: src/Console/AppConsole.vala:347 msgid "Previously notified" msgstr "Prethodno prijavljeno" @@ -349,15 +349,15 @@ msgstr "Autori dokumentacije" msgid "Third Party Inclusions" msgstr "Uključene treće strane" -#: src/Gtk/AppGtk.vala:135 +#: src/Gtk/AppGtk.vala:136 msgid "options" msgstr "mogućnosti" -#: src/Gtk/AppGtk.vala:139 +#: src/Gtk/AppGtk.vala:140 msgid "Print debug information" msgstr "Ispiši informacije otklanjanja grešaka" -#: src/Gtk/AppGtk.vala:140 +#: src/Gtk/AppGtk.vala:141 msgid "Show all options" msgstr "Prikaži sve mogućnosti" @@ -427,8 +427,8 @@ msgstr "Ažuriranje jezgri" msgid "available" msgstr "dostupno" -#: src/Gtk/MainWindow.vala:571 src/Gtk/MainWindow.vala:611 -#: src/Gtk/MainWindow.vala:645 +#: src/Gtk/MainWindow.vala:571 src/Gtk/MainWindow.vala:612 +#: src/Gtk/MainWindow.vala:647 msgid "DONE" msgstr "UČINJENO" diff --git a/po/it.po b/po/it.po index 0f3d6718..e6bbc9bf 100644 --- a/po/it.po +++ b/po/it.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline 1.0.15\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-04-04 07:52-0400\n" +"POT-Creation-Date: 2023-04-04 17:58-0400\n" "PO-Revision-Date: 2020-08-22 15:35+0100\n" "Last-Translator: Albano Battistella \n" "Language-Team: Italian\n" @@ -51,101 +51,101 @@ msgstr "OK" msgid "FAILED" msgstr "FALLITO" -#: src/Common/LinuxKernel.vala:397 +#: src/Common/LinuxKernel.vala:395 msgid "Found installed" msgstr "Trovato installato" -#: src/Common/LinuxKernel.vala:721 src/Gtk/MainWindow.vala:519 +#: src/Common/LinuxKernel.vala:731 src/Gtk/MainWindow.vala:519 #: src/Gtk/MainWindow.vala:532 msgid "Running" msgstr "In esecuzione" -#: src/Common/LinuxKernel.vala:722 +#: src/Common/LinuxKernel.vala:732 msgid "Installed" msgstr "Installato" -#: src/Common/LinuxKernel.vala:723 +#: src/Common/LinuxKernel.vala:733 msgid "Invalid" msgstr "Non valido" -#: src/Common/LinuxKernel.vala:797 +#: src/Common/LinuxKernel.vala:807 msgid "Packages Available" msgstr "Pacchetti disponibili" -#: src/Common/LinuxKernel.vala:803 +#: src/Common/LinuxKernel.vala:813 msgid "Packages Installed" msgstr "Pacchetti installati" -#: src/Common/LinuxKernel.vala:825 src/lib/TeeJee.FileSystem.vala:118 +#: src/Common/LinuxKernel.vala:835 src/lib/TeeJee.FileSystem.vala:118 msgid "File not found" msgstr "File non trovato" -#: src/Common/LinuxKernel.vala:894 +#: src/Common/LinuxKernel.vala:904 msgid "Available Kernels" msgstr "Kernel disponibili" -#: src/Common/LinuxKernel.vala:931 +#: src/Common/LinuxKernel.vala:941 msgid "enabled" msgstr "abilitato" -#: src/Common/LinuxKernel.vala:955 +#: src/Common/LinuxKernel.vala:965 msgid "Downloading" msgstr "Scaricamento" -#: src/Common/LinuxKernel.vala:976 +#: src/Common/LinuxKernel.vala:986 msgid "is already installed." msgstr "è già installato." -#: src/Common/LinuxKernel.vala:1006 +#: src/Common/LinuxKernel.vala:1016 msgid "Uninstalling selected kernels" msgstr "Disinstalla i kernel specificati" -#: src/Common/LinuxKernel.vala:1012 +#: src/Common/LinuxKernel.vala:1022 msgid "requested" msgstr "richiesto" -#: src/Common/LinuxKernel.vala:1015 +#: src/Common/LinuxKernel.vala:1025 msgid "not uninstalling the currently running kernel" msgstr "non disinstallare il kernel attualmente in esecuzione" -#: src/Common/LinuxKernel.vala:1031 +#: src/Common/LinuxKernel.vala:1041 msgid "found" msgstr "trovato" -#: src/Common/LinuxKernel.vala:1034 +#: src/Common/LinuxKernel.vala:1044 msgid "No packages to un-install!" msgstr "Nessun pacchetto da disinstallare!" -#: src/Common/LinuxKernel.vala:1082 +#: src/Common/LinuxKernel.vala:1092 msgid "Could not find running kernel in list" msgstr "Impossibile trovare il kernel in esecuzione nell'elenco" -#: src/Common/LinuxKernel.vala:1087 +#: src/Common/LinuxKernel.vala:1097 msgid "Could not find any kernels to uninstall" msgstr "Impossibile trovare alcun kernel da rimuovere" -#: src/Common/LinuxKernel.vala:1095 +#: src/Common/LinuxKernel.vala:1105 msgid "The following kernels will be uninstalled" msgstr "I seguenti kernel saranno rimossi" -#: src/Common/LinuxKernel.vala:1099 +#: src/Common/LinuxKernel.vala:1109 msgid "Continue ?" msgstr "Continuare ?" -#: src/Common/LinuxKernel.vala:1121 src/Console/AppConsole.vala:290 +#: src/Common/LinuxKernel.vala:1131 src/Console/AppConsole.vala:292 msgid "Latest update" msgstr "Ultimo aggiornamento" -#: src/Common/LinuxKernel.vala:1132 src/Console/AppConsole.vala:297 +#: src/Common/LinuxKernel.vala:1142 src/Console/AppConsole.vala:299 msgid "Latest point update" msgstr "Ultimo aggiornamento del rilascio parziale" -#: src/Common/LinuxKernel.vala:1140 src/Console/AppConsole.vala:302 -#: src/Console/AppConsole.vala:318 +#: src/Common/LinuxKernel.vala:1150 src/Console/AppConsole.vala:304 +#: src/Console/AppConsole.vala:320 msgid "No updates found" msgstr "Nessun aggiornamento trovato" -#: src/Common/LinuxKernel.vala:1149 +#: src/Common/LinuxKernel.vala:1159 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Installare la versione del kernel %s ? (y/n): " @@ -170,7 +170,7 @@ msgstr "Le notifiche sono disabilitate" msgid "File not found: %s" msgstr "File non trovato: %s" -#: src/Console/AppConsole.vala:47 src/Gtk/AppGtk.vala:135 +#: src/Console/AppConsole.vala:47 src/Gtk/AppGtk.vala:136 msgid "Syntax" msgstr "Sintassi" @@ -224,7 +224,7 @@ msgstr "Scarica i kernel specificati" msgid "Delete cached info about available kernels" msgstr "Elimina le informazioni sui kernel disponibili dalla cache " -#: src/Console/AppConsole.vala:63 src/Gtk/AppGtk.vala:137 +#: src/Console/AppConsole.vala:63 src/Gtk/AppGtk.vala:138 msgid "Options" msgstr "Opzioni" @@ -256,61 +256,61 @@ msgstr "Uno o più, separati da virgola" msgid "The currently running kernel will always be ignored" msgstr "Il kernel attualmente in esecuzione sarà sempre ignorato" -#: src/Console/AppConsole.vala:161 src/Gtk/AppGtk.vala:121 +#: src/Console/AppConsole.vala:163 src/Gtk/AppGtk.vala:122 msgid "Unknown option" msgstr "Opzione sconosciuta" -#: src/Console/AppConsole.vala:162 src/Console/AppConsole.vala:248 -#: src/Console/AppConsole.vala:276 +#: src/Console/AppConsole.vala:164 src/Console/AppConsole.vala:250 +#: src/Console/AppConsole.vala:278 msgid "Run" msgstr "In corso" -#: src/Console/AppConsole.vala:162 +#: src/Console/AppConsole.vala:164 msgid "to list all options" msgstr "elencare tutte le opzioni" -#: src/Console/AppConsole.vala:216 src/Console/AppConsole.vala:256 +#: src/Console/AppConsole.vala:218 src/Console/AppConsole.vala:258 msgid "No kernels specified" msgstr "Nessun kernel specificato" -#: src/Console/AppConsole.vala:222 +#: src/Console/AppConsole.vala:224 msgid "Multiple kernels selected for installation. Select only one." msgstr "Più kernel selezionati per l'installazione. Selezionarne uno solo." -#: src/Console/AppConsole.vala:245 +#: src/Console/AppConsole.vala:247 msgid "Could not find requested version" msgstr "Impossibile trovare la versione richiesta" -#: src/Console/AppConsole.vala:248 +#: src/Console/AppConsole.vala:250 msgid "and use a version string listed in first column" msgstr "ed usa una stringa di versione elencata nella prima colonna" -#: src/Console/AppConsole.vala:275 +#: src/Console/AppConsole.vala:277 msgid "Command not specified" msgstr "Comando non specificato" -#: src/Console/AppConsole.vala:276 +#: src/Console/AppConsole.vala:278 msgid "to list all commands" msgstr "elencare tutti i comandi" -#: src/Console/AppConsole.vala:312 +#: src/Console/AppConsole.vala:314 msgid "Notifications disabled in settings" msgstr "Le notifiche sono disabilitate" -#: src/Console/AppConsole.vala:337 +#: src/Console/AppConsole.vala:339 #, c-format msgid "Kernel %s Available" msgstr "Kernel %s Disponibile" -#: src/Console/AppConsole.vala:341 src/Gtk/SettingsDialog.vala:166 +#: src/Console/AppConsole.vala:343 src/Gtk/SettingsDialog.vala:166 msgid "Show" msgstr "Mostra" -#: src/Console/AppConsole.vala:342 src/Gtk/MainWindow.vala:296 +#: src/Console/AppConsole.vala:344 src/Gtk/MainWindow.vala:296 msgid "Install" msgstr "Installa" -#: src/Console/AppConsole.vala:345 +#: src/Console/AppConsole.vala:347 msgid "Previously notified" msgstr "Notificato in precedenza" @@ -350,15 +350,15 @@ msgstr "Documentatori" msgid "Third Party Inclusions" msgstr "Inclusioni di terze parti" -#: src/Gtk/AppGtk.vala:135 +#: src/Gtk/AppGtk.vala:136 msgid "options" msgstr "opzioni" -#: src/Gtk/AppGtk.vala:139 +#: src/Gtk/AppGtk.vala:140 msgid "Print debug information" msgstr "Stampa le informazioni di debug" -#: src/Gtk/AppGtk.vala:140 +#: src/Gtk/AppGtk.vala:141 msgid "Show all options" msgstr "Mostra tutte le opzioni" @@ -428,8 +428,8 @@ msgstr "Aggiornamento dei kernel" msgid "available" msgstr "disponibile" -#: src/Gtk/MainWindow.vala:571 src/Gtk/MainWindow.vala:611 -#: src/Gtk/MainWindow.vala:645 +#: src/Gtk/MainWindow.vala:571 src/Gtk/MainWindow.vala:612 +#: src/Gtk/MainWindow.vala:647 msgid "DONE" msgstr "FATTO" diff --git a/po/ko.po b/po/ko.po index 6ae1a4a0..c6e96580 100644 --- a/po/ko.po +++ b/po/ko.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline 1.0.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-04-04 07:52-0400\n" +"POT-Creation-Date: 2023-04-04 17:58-0400\n" "PO-Revision-Date: 2022-09-28 11:48+0900\n" "Last-Translator: Kevin Kim \n" "Language-Team: Korean\n" @@ -53,101 +53,101 @@ msgstr "확인" msgid "FAILED" msgstr "실패" -#: src/Common/LinuxKernel.vala:397 +#: src/Common/LinuxKernel.vala:395 msgid "Found installed" msgstr "설치된 것을 찾았습니다" -#: src/Common/LinuxKernel.vala:721 src/Gtk/MainWindow.vala:519 +#: src/Common/LinuxKernel.vala:731 src/Gtk/MainWindow.vala:519 #: src/Gtk/MainWindow.vala:532 msgid "Running" msgstr "구동 중" -#: src/Common/LinuxKernel.vala:722 +#: src/Common/LinuxKernel.vala:732 msgid "Installed" msgstr "설치 됨" -#: src/Common/LinuxKernel.vala:723 +#: src/Common/LinuxKernel.vala:733 msgid "Invalid" msgstr "사용할 수 없음" -#: src/Common/LinuxKernel.vala:797 +#: src/Common/LinuxKernel.vala:807 msgid "Packages Available" msgstr "설치 가능한 패키지" -#: src/Common/LinuxKernel.vala:803 +#: src/Common/LinuxKernel.vala:813 msgid "Packages Installed" msgstr "설치된 패키지" -#: src/Common/LinuxKernel.vala:825 src/lib/TeeJee.FileSystem.vala:118 +#: src/Common/LinuxKernel.vala:835 src/lib/TeeJee.FileSystem.vala:118 msgid "File not found" msgstr "파일을 찾을 수 없습니다" -#: src/Common/LinuxKernel.vala:894 +#: src/Common/LinuxKernel.vala:904 msgid "Available Kernels" msgstr "설치 가능한 커널" -#: src/Common/LinuxKernel.vala:931 +#: src/Common/LinuxKernel.vala:941 msgid "enabled" msgstr "사용" -#: src/Common/LinuxKernel.vala:955 +#: src/Common/LinuxKernel.vala:965 msgid "Downloading" msgstr "다운로드" -#: src/Common/LinuxKernel.vala:976 +#: src/Common/LinuxKernel.vala:986 msgid "is already installed." msgstr "가 이미 설치되어 있습니다" -#: src/Common/LinuxKernel.vala:1006 +#: src/Common/LinuxKernel.vala:1016 msgid "Uninstalling selected kernels" msgstr "선택한 커널 제거" -#: src/Common/LinuxKernel.vala:1012 +#: src/Common/LinuxKernel.vala:1022 msgid "requested" msgstr "요청" -#: src/Common/LinuxKernel.vala:1015 +#: src/Common/LinuxKernel.vala:1025 msgid "not uninstalling the currently running kernel" msgstr "현재 실행 중인 커널을 제거하지 않음" -#: src/Common/LinuxKernel.vala:1031 +#: src/Common/LinuxKernel.vala:1041 msgid "found" msgstr "설립하다" -#: src/Common/LinuxKernel.vala:1034 +#: src/Common/LinuxKernel.vala:1044 msgid "No packages to un-install!" msgstr "제거 할 패키지가 없습니다!" -#: src/Common/LinuxKernel.vala:1082 +#: src/Common/LinuxKernel.vala:1092 msgid "Could not find running kernel in list" msgstr "현재 실행 중인 커널을 찾을 수 없습니다" -#: src/Common/LinuxKernel.vala:1087 +#: src/Common/LinuxKernel.vala:1097 msgid "Could not find any kernels to uninstall" msgstr "삭제할 커널을 찾을 수 없습니다" -#: src/Common/LinuxKernel.vala:1095 +#: src/Common/LinuxKernel.vala:1105 msgid "The following kernels will be uninstalled" msgstr "풀이" -#: src/Common/LinuxKernel.vala:1099 +#: src/Common/LinuxKernel.vala:1109 msgid "Continue ?" msgstr "계속하시겠습니까?" -#: src/Common/LinuxKernel.vala:1121 src/Console/AppConsole.vala:290 +#: src/Common/LinuxKernel.vala:1131 src/Console/AppConsole.vala:292 msgid "Latest update" msgstr "최신 업데이트" -#: src/Common/LinuxKernel.vala:1132 src/Console/AppConsole.vala:297 +#: src/Common/LinuxKernel.vala:1142 src/Console/AppConsole.vala:299 msgid "Latest point update" msgstr "최신 포인트 업데이트" -#: src/Common/LinuxKernel.vala:1140 src/Console/AppConsole.vala:302 -#: src/Console/AppConsole.vala:318 +#: src/Common/LinuxKernel.vala:1150 src/Console/AppConsole.vala:304 +#: src/Console/AppConsole.vala:320 msgid "No updates found" msgstr "업데이트를 찾을 수 없습니다" -#: src/Common/LinuxKernel.vala:1149 +#: src/Common/LinuxKernel.vala:1159 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "커널 %s 버전을 설치하시겠습니까? (y/n): " @@ -170,7 +170,7 @@ msgstr "알림이 비활성화 되었습니다" msgid "File not found: %s" msgstr "파일을 찾을 수 없음: %s" -#: src/Console/AppConsole.vala:47 src/Gtk/AppGtk.vala:135 +#: src/Console/AppConsole.vala:47 src/Gtk/AppGtk.vala:136 msgid "Syntax" msgstr "문법" @@ -222,7 +222,7 @@ msgstr "지정한 커널 다운로드" msgid "Delete cached info about available kernels" msgstr "사용 가능한 커널에 대한 캐시된 정보 삭제" -#: src/Console/AppConsole.vala:63 src/Gtk/AppGtk.vala:137 +#: src/Console/AppConsole.vala:63 src/Gtk/AppGtk.vala:138 msgid "Options" msgstr "옵션" @@ -254,61 +254,61 @@ msgstr "하나 이상, 쉼표로 구분" msgid "The currently running kernel will always be ignored" msgstr "현재 실행중인 커널은 항상 무시됩니다" -#: src/Console/AppConsole.vala:161 src/Gtk/AppGtk.vala:121 +#: src/Console/AppConsole.vala:163 src/Gtk/AppGtk.vala:122 msgid "Unknown option" msgstr "알 수 없는 옵션" -#: src/Console/AppConsole.vala:162 src/Console/AppConsole.vala:248 -#: src/Console/AppConsole.vala:276 +#: src/Console/AppConsole.vala:164 src/Console/AppConsole.vala:250 +#: src/Console/AppConsole.vala:278 msgid "Run" msgstr "실행" -#: src/Console/AppConsole.vala:162 +#: src/Console/AppConsole.vala:164 msgid "to list all options" msgstr "모든 옵션을 나열" -#: src/Console/AppConsole.vala:216 src/Console/AppConsole.vala:256 +#: src/Console/AppConsole.vala:218 src/Console/AppConsole.vala:258 msgid "No kernels specified" msgstr "지정한 커널이 없습니다" -#: src/Console/AppConsole.vala:222 +#: src/Console/AppConsole.vala:224 msgid "Multiple kernels selected for installation. Select only one." msgstr "설치할 커널이 여러개 선택되었습니다. 하나의 커널만 선택하세요." -#: src/Console/AppConsole.vala:245 +#: src/Console/AppConsole.vala:247 msgid "Could not find requested version" msgstr "요청한 버전을 찾을 수 없습니다" -#: src/Console/AppConsole.vala:248 +#: src/Console/AppConsole.vala:250 msgid "and use a version string listed in first column" msgstr "첫 번째 열에 나열된 버전 문자열을 사용" -#: src/Console/AppConsole.vala:275 +#: src/Console/AppConsole.vala:277 msgid "Command not specified" msgstr "지정한 명령어가 없습니다" -#: src/Console/AppConsole.vala:276 +#: src/Console/AppConsole.vala:278 msgid "to list all commands" msgstr "모든 명령어 나열" -#: src/Console/AppConsole.vala:312 +#: src/Console/AppConsole.vala:314 msgid "Notifications disabled in settings" msgstr "설정에서 비활성화된 알림" -#: src/Console/AppConsole.vala:337 +#: src/Console/AppConsole.vala:339 #, c-format msgid "Kernel %s Available" msgstr "커널 %s 사용 가능" -#: src/Console/AppConsole.vala:341 src/Gtk/SettingsDialog.vala:166 +#: src/Console/AppConsole.vala:343 src/Gtk/SettingsDialog.vala:166 msgid "Show" msgstr "보이기" -#: src/Console/AppConsole.vala:342 src/Gtk/MainWindow.vala:296 +#: src/Console/AppConsole.vala:344 src/Gtk/MainWindow.vala:296 msgid "Install" msgstr "설치" -#: src/Console/AppConsole.vala:345 +#: src/Console/AppConsole.vala:347 msgid "Previously notified" msgstr "이전에 통보됨" @@ -348,15 +348,15 @@ msgstr "문서작성" msgid "Third Party Inclusions" msgstr "서드파티 포함" -#: src/Gtk/AppGtk.vala:135 +#: src/Gtk/AppGtk.vala:136 msgid "options" msgstr "옵션" -#: src/Gtk/AppGtk.vala:139 +#: src/Gtk/AppGtk.vala:140 msgid "Print debug information" msgstr "디버그 정보 출력" -#: src/Gtk/AppGtk.vala:140 +#: src/Gtk/AppGtk.vala:141 msgid "Show all options" msgstr "모든 옵션 보기" @@ -426,8 +426,8 @@ msgstr "커널 업데이트" msgid "available" msgstr "사용가능" -#: src/Gtk/MainWindow.vala:571 src/Gtk/MainWindow.vala:611 -#: src/Gtk/MainWindow.vala:645 +#: src/Gtk/MainWindow.vala:571 src/Gtk/MainWindow.vala:612 +#: src/Gtk/MainWindow.vala:647 msgid "DONE" msgstr "수행" diff --git a/po/messages.pot b/po/messages.pot index d596df5d..ad2aa57f 100644 --- a/po/messages.pot +++ b/po/messages.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline 1.2.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-04-04 07:52-0400\n" +"POT-Creation-Date: 2023-04-04 18:02-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -57,101 +57,101 @@ msgstr "" msgid "FAILED" msgstr "" -#: src/Common/LinuxKernel.vala:397 +#: src/Common/LinuxKernel.vala:395 msgid "Found installed" msgstr "" -#: src/Common/LinuxKernel.vala:721 src/Gtk/MainWindow.vala:519 +#: src/Common/LinuxKernel.vala:731 src/Gtk/MainWindow.vala:519 #: src/Gtk/MainWindow.vala:532 msgid "Running" msgstr "" -#: src/Common/LinuxKernel.vala:722 +#: src/Common/LinuxKernel.vala:732 msgid "Installed" msgstr "" -#: src/Common/LinuxKernel.vala:723 +#: src/Common/LinuxKernel.vala:733 msgid "Invalid" msgstr "" -#: src/Common/LinuxKernel.vala:797 +#: src/Common/LinuxKernel.vala:807 msgid "Packages Available" msgstr "" -#: src/Common/LinuxKernel.vala:803 +#: src/Common/LinuxKernel.vala:813 msgid "Packages Installed" msgstr "" -#: src/Common/LinuxKernel.vala:825 src/lib/TeeJee.FileSystem.vala:118 +#: src/Common/LinuxKernel.vala:835 src/lib/TeeJee.FileSystem.vala:118 msgid "File not found" msgstr "" -#: src/Common/LinuxKernel.vala:894 +#: src/Common/LinuxKernel.vala:904 msgid "Available Kernels" msgstr "" -#: src/Common/LinuxKernel.vala:931 +#: src/Common/LinuxKernel.vala:941 msgid "enabled" msgstr "" -#: src/Common/LinuxKernel.vala:955 +#: src/Common/LinuxKernel.vala:965 msgid "Downloading" msgstr "" -#: src/Common/LinuxKernel.vala:976 +#: src/Common/LinuxKernel.vala:986 msgid "is already installed." msgstr "" -#: src/Common/LinuxKernel.vala:1006 +#: src/Common/LinuxKernel.vala:1016 msgid "Uninstalling selected kernels" msgstr "" -#: src/Common/LinuxKernel.vala:1012 +#: src/Common/LinuxKernel.vala:1022 msgid "requested" msgstr "" -#: src/Common/LinuxKernel.vala:1015 +#: src/Common/LinuxKernel.vala:1025 msgid "not uninstalling the currently running kernel" msgstr "" -#: src/Common/LinuxKernel.vala:1031 +#: src/Common/LinuxKernel.vala:1041 msgid "found" msgstr "" -#: src/Common/LinuxKernel.vala:1034 +#: src/Common/LinuxKernel.vala:1044 msgid "No packages to un-install!" msgstr "" -#: src/Common/LinuxKernel.vala:1082 +#: src/Common/LinuxKernel.vala:1092 msgid "Could not find running kernel in list" msgstr "" -#: src/Common/LinuxKernel.vala:1087 +#: src/Common/LinuxKernel.vala:1097 msgid "Could not find any kernels to uninstall" msgstr "" -#: src/Common/LinuxKernel.vala:1095 +#: src/Common/LinuxKernel.vala:1105 msgid "The following kernels will be uninstalled" msgstr "" -#: src/Common/LinuxKernel.vala:1099 +#: src/Common/LinuxKernel.vala:1109 msgid "Continue ?" msgstr "" -#: src/Common/LinuxKernel.vala:1121 src/Console/AppConsole.vala:290 +#: src/Common/LinuxKernel.vala:1131 src/Console/AppConsole.vala:292 msgid "Latest update" msgstr "" -#: src/Common/LinuxKernel.vala:1132 src/Console/AppConsole.vala:297 +#: src/Common/LinuxKernel.vala:1142 src/Console/AppConsole.vala:299 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:1140 src/Console/AppConsole.vala:302 -#: src/Console/AppConsole.vala:318 +#: src/Common/LinuxKernel.vala:1150 src/Console/AppConsole.vala:304 +#: src/Console/AppConsole.vala:320 msgid "No updates found" msgstr "" -#: src/Common/LinuxKernel.vala:1149 +#: src/Common/LinuxKernel.vala:1159 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "" @@ -174,7 +174,7 @@ msgstr "" msgid "File not found: %s" msgstr "" -#: src/Console/AppConsole.vala:47 src/Gtk/AppGtk.vala:135 +#: src/Console/AppConsole.vala:47 src/Gtk/AppGtk.vala:136 msgid "Syntax" msgstr "" @@ -226,7 +226,7 @@ msgstr "" msgid "Delete cached info about available kernels" msgstr "" -#: src/Console/AppConsole.vala:63 src/Gtk/AppGtk.vala:137 +#: src/Console/AppConsole.vala:63 src/Gtk/AppGtk.vala:138 msgid "Options" msgstr "" @@ -258,61 +258,61 @@ msgstr "" msgid "The currently running kernel will always be ignored" msgstr "" -#: src/Console/AppConsole.vala:161 src/Gtk/AppGtk.vala:121 +#: src/Console/AppConsole.vala:163 src/Gtk/AppGtk.vala:122 msgid "Unknown option" msgstr "" -#: src/Console/AppConsole.vala:162 src/Console/AppConsole.vala:248 -#: src/Console/AppConsole.vala:276 +#: src/Console/AppConsole.vala:164 src/Console/AppConsole.vala:250 +#: src/Console/AppConsole.vala:278 msgid "Run" msgstr "" -#: src/Console/AppConsole.vala:162 +#: src/Console/AppConsole.vala:164 msgid "to list all options" msgstr "" -#: src/Console/AppConsole.vala:216 src/Console/AppConsole.vala:256 +#: src/Console/AppConsole.vala:218 src/Console/AppConsole.vala:258 msgid "No kernels specified" msgstr "" -#: src/Console/AppConsole.vala:222 +#: src/Console/AppConsole.vala:224 msgid "Multiple kernels selected for installation. Select only one." msgstr "" -#: src/Console/AppConsole.vala:245 +#: src/Console/AppConsole.vala:247 msgid "Could not find requested version" msgstr "" -#: src/Console/AppConsole.vala:248 +#: src/Console/AppConsole.vala:250 msgid "and use a version string listed in first column" msgstr "" -#: src/Console/AppConsole.vala:275 +#: src/Console/AppConsole.vala:277 msgid "Command not specified" msgstr "" -#: src/Console/AppConsole.vala:276 +#: src/Console/AppConsole.vala:278 msgid "to list all commands" msgstr "" -#: src/Console/AppConsole.vala:312 +#: src/Console/AppConsole.vala:314 msgid "Notifications disabled in settings" msgstr "" -#: src/Console/AppConsole.vala:337 +#: src/Console/AppConsole.vala:339 #, c-format msgid "Kernel %s Available" msgstr "" -#: src/Console/AppConsole.vala:341 src/Gtk/SettingsDialog.vala:166 +#: src/Console/AppConsole.vala:343 src/Gtk/SettingsDialog.vala:166 msgid "Show" msgstr "" -#: src/Console/AppConsole.vala:342 src/Gtk/MainWindow.vala:296 +#: src/Console/AppConsole.vala:344 src/Gtk/MainWindow.vala:296 msgid "Install" msgstr "" -#: src/Console/AppConsole.vala:345 +#: src/Console/AppConsole.vala:347 msgid "Previously notified" msgstr "" @@ -352,15 +352,15 @@ msgstr "" msgid "Third Party Inclusions" msgstr "" -#: src/Gtk/AppGtk.vala:135 +#: src/Gtk/AppGtk.vala:136 msgid "options" msgstr "" -#: src/Gtk/AppGtk.vala:139 +#: src/Gtk/AppGtk.vala:140 msgid "Print debug information" msgstr "" -#: src/Gtk/AppGtk.vala:140 +#: src/Gtk/AppGtk.vala:141 msgid "Show all options" msgstr "" @@ -427,8 +427,8 @@ msgstr "" msgid "available" msgstr "" -#: src/Gtk/MainWindow.vala:571 src/Gtk/MainWindow.vala:611 -#: src/Gtk/MainWindow.vala:645 +#: src/Gtk/MainWindow.vala:571 src/Gtk/MainWindow.vala:612 +#: src/Gtk/MainWindow.vala:647 msgid "DONE" msgstr "" diff --git a/po/nl.po b/po/nl.po index 61b4dbf6..4acca1e5 100644 --- a/po/nl.po +++ b/po/nl.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-04-04 07:52-0400\n" +"POT-Creation-Date: 2023-04-04 17:58-0400\n" "PO-Revision-Date: 2020-08-23 13:55+0200\n" "Last-Translator: Heimen Stoffels \n" "Language-Team: Dutch (Netherlands)\n" @@ -53,101 +53,101 @@ msgstr "Oké" msgid "FAILED" msgstr "MISLUKT" -#: src/Common/LinuxKernel.vala:397 +#: src/Common/LinuxKernel.vala:395 msgid "Found installed" msgstr "Geïnstalleerd gevonden" -#: src/Common/LinuxKernel.vala:721 src/Gtk/MainWindow.vala:519 +#: src/Common/LinuxKernel.vala:731 src/Gtk/MainWindow.vala:519 #: src/Gtk/MainWindow.vala:532 msgid "Running" msgstr "In gebruik" -#: src/Common/LinuxKernel.vala:722 +#: src/Common/LinuxKernel.vala:732 msgid "Installed" msgstr "Geïnstalleerd" -#: src/Common/LinuxKernel.vala:723 +#: src/Common/LinuxKernel.vala:733 msgid "Invalid" msgstr "Ongeldig" -#: src/Common/LinuxKernel.vala:797 +#: src/Common/LinuxKernel.vala:807 msgid "Packages Available" msgstr "Beschikbare pakketten" -#: src/Common/LinuxKernel.vala:803 +#: src/Common/LinuxKernel.vala:813 msgid "Packages Installed" msgstr "Geïnstalleerde pakketten" -#: src/Common/LinuxKernel.vala:825 src/lib/TeeJee.FileSystem.vala:118 +#: src/Common/LinuxKernel.vala:835 src/lib/TeeJee.FileSystem.vala:118 msgid "File not found" msgstr "Het bestand is niet gevonden" -#: src/Common/LinuxKernel.vala:894 +#: src/Common/LinuxKernel.vala:904 msgid "Available Kernels" msgstr "Beschikbare kernels" -#: src/Common/LinuxKernel.vala:931 +#: src/Common/LinuxKernel.vala:941 msgid "enabled" msgstr "ingeschakeld" -#: src/Common/LinuxKernel.vala:955 +#: src/Common/LinuxKernel.vala:965 msgid "Downloading" msgstr "Downloaden" -#: src/Common/LinuxKernel.vala:976 +#: src/Common/LinuxKernel.vala:986 msgid "is already installed." msgstr "is al geïnstalleerd." -#: src/Common/LinuxKernel.vala:1006 +#: src/Common/LinuxKernel.vala:1016 msgid "Uninstalling selected kernels" msgstr "Geselecteerde kernels verwijderen" -#: src/Common/LinuxKernel.vala:1012 +#: src/Common/LinuxKernel.vala:1022 msgid "requested" msgstr "verzocht" -#: src/Common/LinuxKernel.vala:1015 +#: src/Common/LinuxKernel.vala:1025 msgid "not uninstalling the currently running kernel" msgstr "de momenteel actieve kernel niet verwijderen" -#: src/Common/LinuxKernel.vala:1031 +#: src/Common/LinuxKernel.vala:1041 msgid "found" msgstr "gevonden" -#: src/Common/LinuxKernel.vala:1034 +#: src/Common/LinuxKernel.vala:1044 msgid "No packages to un-install!" msgstr "Geen pakketten om te verwijderen!" -#: src/Common/LinuxKernel.vala:1082 +#: src/Common/LinuxKernel.vala:1092 msgid "Could not find running kernel in list" msgstr "De in gebruik zijnde kernel staat niet op de lijst" -#: src/Common/LinuxKernel.vala:1087 +#: src/Common/LinuxKernel.vala:1097 msgid "Could not find any kernels to uninstall" msgstr "Er zijn geen te verwijderen kernels" -#: src/Common/LinuxKernel.vala:1095 +#: src/Common/LinuxKernel.vala:1105 msgid "The following kernels will be uninstalled" msgstr "De volgende kernels worden verwijderd" -#: src/Common/LinuxKernel.vala:1099 +#: src/Common/LinuxKernel.vala:1109 msgid "Continue ?" msgstr "Wilt u doorgaan?" -#: src/Common/LinuxKernel.vala:1121 src/Console/AppConsole.vala:290 +#: src/Common/LinuxKernel.vala:1131 src/Console/AppConsole.vala:292 msgid "Latest update" msgstr "Recentste update" -#: src/Common/LinuxKernel.vala:1132 src/Console/AppConsole.vala:297 +#: src/Common/LinuxKernel.vala:1142 src/Console/AppConsole.vala:299 msgid "Latest point update" msgstr "Recentste puntupdate" -#: src/Common/LinuxKernel.vala:1140 src/Console/AppConsole.vala:302 -#: src/Console/AppConsole.vala:318 +#: src/Common/LinuxKernel.vala:1150 src/Console/AppConsole.vala:304 +#: src/Console/AppConsole.vala:320 msgid "No updates found" msgstr "Geen updates gevonden" -#: src/Common/LinuxKernel.vala:1149 +#: src/Common/LinuxKernel.vala:1159 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Wilt u versie %s installeren? (j/n): " @@ -172,7 +172,7 @@ msgstr "Meldingen zijn uitgeschakeld" msgid "File not found: %s" msgstr "Bestand niet gevonden: %s" -#: src/Console/AppConsole.vala:47 src/Gtk/AppGtk.vala:135 +#: src/Console/AppConsole.vala:47 src/Gtk/AppGtk.vala:136 msgid "Syntax" msgstr "Syntaxis" @@ -224,7 +224,7 @@ msgstr "Opgegeven kernels downloaden" msgid "Delete cached info about available kernels" msgstr "Informatie over beschikbare kernels in de cache verwijderen" -#: src/Console/AppConsole.vala:63 src/Gtk/AppGtk.vala:137 +#: src/Console/AppConsole.vala:63 src/Gtk/AppGtk.vala:138 msgid "Options" msgstr "Opties" @@ -256,62 +256,62 @@ msgstr "Een of meer, komma-gescheiden" msgid "The currently running kernel will always be ignored" msgstr "De momenteel actieve kernel wordt altijd genegeerd" -#: src/Console/AppConsole.vala:161 src/Gtk/AppGtk.vala:121 +#: src/Console/AppConsole.vala:163 src/Gtk/AppGtk.vala:122 msgid "Unknown option" msgstr "Onbekende optie" -#: src/Console/AppConsole.vala:162 src/Console/AppConsole.vala:248 -#: src/Console/AppConsole.vala:276 +#: src/Console/AppConsole.vala:164 src/Console/AppConsole.vala:250 +#: src/Console/AppConsole.vala:278 msgid "Run" msgstr "Uitvoeren" -#: src/Console/AppConsole.vala:162 +#: src/Console/AppConsole.vala:164 msgid "to list all options" msgstr "om alle opties te tonen" -#: src/Console/AppConsole.vala:216 src/Console/AppConsole.vala:256 +#: src/Console/AppConsole.vala:218 src/Console/AppConsole.vala:258 msgid "No kernels specified" msgstr "Geen kernels opgegeven" -#: src/Console/AppConsole.vala:222 +#: src/Console/AppConsole.vala:224 msgid "Multiple kernels selected for installation. Select only one." msgstr "" "Er zijn meerdere te installeren kernels geselecteerd. Selecteer er één." -#: src/Console/AppConsole.vala:245 +#: src/Console/AppConsole.vala:247 msgid "Could not find requested version" msgstr "De vereiste versie kan niet worden gevonden" -#: src/Console/AppConsole.vala:248 +#: src/Console/AppConsole.vala:250 msgid "and use a version string listed in first column" msgstr "en gebruik een versietekenreeks in de eerste kolom" -#: src/Console/AppConsole.vala:275 +#: src/Console/AppConsole.vala:277 msgid "Command not specified" msgstr "Geen opdracht opgegeven" -#: src/Console/AppConsole.vala:276 +#: src/Console/AppConsole.vala:278 msgid "to list all commands" msgstr "om alle opdrachten te tonen" -#: src/Console/AppConsole.vala:312 +#: src/Console/AppConsole.vala:314 msgid "Notifications disabled in settings" msgstr "Meldingen uitgeschakeld in instellingen" -#: src/Console/AppConsole.vala:337 +#: src/Console/AppConsole.vala:339 #, c-format msgid "Kernel %s Available" msgstr "Kernel %s is beschikbaar" -#: src/Console/AppConsole.vala:341 src/Gtk/SettingsDialog.vala:166 +#: src/Console/AppConsole.vala:343 src/Gtk/SettingsDialog.vala:166 msgid "Show" msgstr "Tonen" -#: src/Console/AppConsole.vala:342 src/Gtk/MainWindow.vala:296 +#: src/Console/AppConsole.vala:344 src/Gtk/MainWindow.vala:296 msgid "Install" msgstr "Installeren" -#: src/Console/AppConsole.vala:345 +#: src/Console/AppConsole.vala:347 msgid "Previously notified" msgstr "Eerder gemeld" @@ -351,15 +351,15 @@ msgstr "Documenteerders" msgid "Third Party Inclusions" msgstr "Externe code" -#: src/Gtk/AppGtk.vala:135 +#: src/Gtk/AppGtk.vala:136 msgid "options" msgstr "opties" -#: src/Gtk/AppGtk.vala:139 +#: src/Gtk/AppGtk.vala:140 msgid "Print debug information" msgstr "Foutopsporingsinformatie tonen" -#: src/Gtk/AppGtk.vala:140 +#: src/Gtk/AppGtk.vala:141 msgid "Show all options" msgstr "Alle opties tonen" @@ -429,8 +429,8 @@ msgstr "Kernels bijwerken" msgid "available" msgstr "beschikbaar" -#: src/Gtk/MainWindow.vala:571 src/Gtk/MainWindow.vala:611 -#: src/Gtk/MainWindow.vala:645 +#: src/Gtk/MainWindow.vala:571 src/Gtk/MainWindow.vala:612 +#: src/Gtk/MainWindow.vala:647 msgid "DONE" msgstr "AFGEROND" diff --git a/po/pl.po b/po/pl.po index 5ff21797..77a57c5d 100644 --- a/po/pl.po +++ b/po/pl.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-04-04 07:52-0400\n" +"POT-Creation-Date: 2023-04-04 17:58-0400\n" "PO-Revision-Date: 2023-04-02 21:31+0200\n" "Last-Translator: Matthaiks\n" "Language-Team: Polish\n" @@ -52,101 +52,101 @@ msgstr "OK" msgid "FAILED" msgstr "NIEPOWODZENIE" -#: src/Common/LinuxKernel.vala:397 +#: src/Common/LinuxKernel.vala:395 msgid "Found installed" msgstr "Znaleziono zainstalowane" -#: src/Common/LinuxKernel.vala:721 src/Gtk/MainWindow.vala:519 +#: src/Common/LinuxKernel.vala:731 src/Gtk/MainWindow.vala:519 #: src/Gtk/MainWindow.vala:532 msgid "Running" msgstr "Uruchomione" -#: src/Common/LinuxKernel.vala:722 +#: src/Common/LinuxKernel.vala:732 msgid "Installed" msgstr "Zainstalowane" -#: src/Common/LinuxKernel.vala:723 +#: src/Common/LinuxKernel.vala:733 msgid "Invalid" msgstr "Nieprawidłowy" -#: src/Common/LinuxKernel.vala:797 +#: src/Common/LinuxKernel.vala:807 msgid "Packages Available" msgstr "Dostępne pakiety" -#: src/Common/LinuxKernel.vala:803 +#: src/Common/LinuxKernel.vala:813 msgid "Packages Installed" msgstr "Pakiety zainstalowane" -#: src/Common/LinuxKernel.vala:825 src/lib/TeeJee.FileSystem.vala:118 +#: src/Common/LinuxKernel.vala:835 src/lib/TeeJee.FileSystem.vala:118 msgid "File not found" msgstr "Nie odnaleziono pliku" -#: src/Common/LinuxKernel.vala:894 +#: src/Common/LinuxKernel.vala:904 msgid "Available Kernels" msgstr "Dostępne jądra" -#: src/Common/LinuxKernel.vala:931 +#: src/Common/LinuxKernel.vala:941 msgid "enabled" msgstr "włączone" -#: src/Common/LinuxKernel.vala:955 +#: src/Common/LinuxKernel.vala:965 msgid "Downloading" msgstr "Pobieranie" -#: src/Common/LinuxKernel.vala:976 +#: src/Common/LinuxKernel.vala:986 msgid "is already installed." msgstr "jest już zainstalowane." -#: src/Common/LinuxKernel.vala:1006 +#: src/Common/LinuxKernel.vala:1016 msgid "Uninstalling selected kernels" msgstr "Odinstalowanie wybranych jąder" -#: src/Common/LinuxKernel.vala:1012 +#: src/Common/LinuxKernel.vala:1022 msgid "requested" msgstr "zażądane" -#: src/Common/LinuxKernel.vala:1015 +#: src/Common/LinuxKernel.vala:1025 msgid "not uninstalling the currently running kernel" msgstr "bez odinstalowywania aktualnie uruchomionego jądra" -#: src/Common/LinuxKernel.vala:1031 +#: src/Common/LinuxKernel.vala:1041 msgid "found" msgstr "znalezione" -#: src/Common/LinuxKernel.vala:1034 +#: src/Common/LinuxKernel.vala:1044 msgid "No packages to un-install!" msgstr "Brak pakietów do odinstalowania!" -#: src/Common/LinuxKernel.vala:1082 +#: src/Common/LinuxKernel.vala:1092 msgid "Could not find running kernel in list" msgstr "Nie można znaleźć uruchomionego jądra na liście" -#: src/Common/LinuxKernel.vala:1087 +#: src/Common/LinuxKernel.vala:1097 msgid "Could not find any kernels to uninstall" msgstr "Nie można znaleźć żadnych jąder do odinstalowania" -#: src/Common/LinuxKernel.vala:1095 +#: src/Common/LinuxKernel.vala:1105 msgid "The following kernels will be uninstalled" msgstr "Następujące jądra zostaną odinstalowane" -#: src/Common/LinuxKernel.vala:1099 +#: src/Common/LinuxKernel.vala:1109 msgid "Continue ?" msgstr "Kontynuować?" -#: src/Common/LinuxKernel.vala:1121 src/Console/AppConsole.vala:290 +#: src/Common/LinuxKernel.vala:1131 src/Console/AppConsole.vala:292 msgid "Latest update" msgstr "Najnowsza aktualizacja" -#: src/Common/LinuxKernel.vala:1132 src/Console/AppConsole.vala:297 +#: src/Common/LinuxKernel.vala:1142 src/Console/AppConsole.vala:299 msgid "Latest point update" msgstr "Najnowsza aktualizacja punktowa" -#: src/Common/LinuxKernel.vala:1140 src/Console/AppConsole.vala:302 -#: src/Console/AppConsole.vala:318 +#: src/Common/LinuxKernel.vala:1150 src/Console/AppConsole.vala:304 +#: src/Console/AppConsole.vala:320 msgid "No updates found" msgstr "Nie znaleziono aktualizacji" -#: src/Common/LinuxKernel.vala:1149 +#: src/Common/LinuxKernel.vala:1159 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Zainstalować wersję jądra %s? (t/n): " @@ -171,7 +171,7 @@ msgstr "Powiadomienia są wyłączone" msgid "File not found: %s" msgstr "Nie znaleziono pliku: %s" -#: src/Console/AppConsole.vala:47 src/Gtk/AppGtk.vala:135 +#: src/Console/AppConsole.vala:47 src/Gtk/AppGtk.vala:136 msgid "Syntax" msgstr "Składnia" @@ -223,7 +223,7 @@ msgstr "Pobierz wybrane jądra" msgid "Delete cached info about available kernels" msgstr "Usuń informacje z pamięci podręcznej o dostępnych jądrach" -#: src/Console/AppConsole.vala:63 src/Gtk/AppGtk.vala:137 +#: src/Console/AppConsole.vala:63 src/Gtk/AppGtk.vala:138 msgid "Options" msgstr "Opcje" @@ -255,61 +255,61 @@ msgstr "Jedno lub więcej, oddzielone przecinkami" msgid "The currently running kernel will always be ignored" msgstr "Aktualnie uruchomione jądro będzie zawsze ignorowane" -#: src/Console/AppConsole.vala:161 src/Gtk/AppGtk.vala:121 +#: src/Console/AppConsole.vala:163 src/Gtk/AppGtk.vala:122 msgid "Unknown option" msgstr "Nieznana opcja" -#: src/Console/AppConsole.vala:162 src/Console/AppConsole.vala:248 -#: src/Console/AppConsole.vala:276 +#: src/Console/AppConsole.vala:164 src/Console/AppConsole.vala:250 +#: src/Console/AppConsole.vala:278 msgid "Run" msgstr "Uruchom" -#: src/Console/AppConsole.vala:162 +#: src/Console/AppConsole.vala:164 msgid "to list all options" msgstr "do wyświetlenia wszystkich opcji" -#: src/Console/AppConsole.vala:216 src/Console/AppConsole.vala:256 +#: src/Console/AppConsole.vala:218 src/Console/AppConsole.vala:258 msgid "No kernels specified" msgstr "Nie wybrano jąder" -#: src/Console/AppConsole.vala:222 +#: src/Console/AppConsole.vala:224 msgid "Multiple kernels selected for installation. Select only one." msgstr "Wybrano kilka jąder do instalacji. Wybierz tylko jedno." -#: src/Console/AppConsole.vala:245 +#: src/Console/AppConsole.vala:247 msgid "Could not find requested version" msgstr "Nie można odnaleźć żądanej wersji" -#: src/Console/AppConsole.vala:248 +#: src/Console/AppConsole.vala:250 msgid "and use a version string listed in first column" msgstr "i użyć numeru wersji wymienionego w pierwszej kolumnie" -#: src/Console/AppConsole.vala:275 +#: src/Console/AppConsole.vala:277 msgid "Command not specified" msgstr "Nie określono polecenia" -#: src/Console/AppConsole.vala:276 +#: src/Console/AppConsole.vala:278 msgid "to list all commands" msgstr "do wyświetlenia wszystkich poleceń" -#: src/Console/AppConsole.vala:312 +#: src/Console/AppConsole.vala:314 msgid "Notifications disabled in settings" msgstr "Powiadomienia wyłączone w ustawieniach" -#: src/Console/AppConsole.vala:337 +#: src/Console/AppConsole.vala:339 #, c-format msgid "Kernel %s Available" msgstr "Dostępne %s jądra" -#: src/Console/AppConsole.vala:341 src/Gtk/SettingsDialog.vala:166 +#: src/Console/AppConsole.vala:343 src/Gtk/SettingsDialog.vala:166 msgid "Show" msgstr "Pokaż" -#: src/Console/AppConsole.vala:342 src/Gtk/MainWindow.vala:296 +#: src/Console/AppConsole.vala:344 src/Gtk/MainWindow.vala:296 msgid "Install" msgstr "Zainstaluj" -#: src/Console/AppConsole.vala:345 +#: src/Console/AppConsole.vala:347 msgid "Previously notified" msgstr "Wcześniej powiadomiono" @@ -349,15 +349,15 @@ msgstr "Dokumentujący" msgid "Third Party Inclusions" msgstr "Włączenia stron trzecich" -#: src/Gtk/AppGtk.vala:135 +#: src/Gtk/AppGtk.vala:136 msgid "options" msgstr "opcje" -#: src/Gtk/AppGtk.vala:139 +#: src/Gtk/AppGtk.vala:140 msgid "Print debug information" msgstr "Wypisz informacje debugujące" -#: src/Gtk/AppGtk.vala:140 +#: src/Gtk/AppGtk.vala:141 msgid "Show all options" msgstr "Pokaż wszystkie opcje" @@ -427,8 +427,8 @@ msgstr "Aktualizowanie jąder" msgid "available" msgstr "dostępne" -#: src/Gtk/MainWindow.vala:571 src/Gtk/MainWindow.vala:611 -#: src/Gtk/MainWindow.vala:645 +#: src/Gtk/MainWindow.vala:571 src/Gtk/MainWindow.vala:612 +#: src/Gtk/MainWindow.vala:647 msgid "DONE" msgstr "GOTOWE" diff --git a/po/ru.po b/po/ru.po index e9950d2b..abecaf39 100644 --- a/po/ru.po +++ b/po/ru.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-04-04 07:52-0400\n" +"POT-Creation-Date: 2023-04-04 17:58-0400\n" "PO-Revision-Date: 2023-04-02 17:50+0300\n" "Last-Translator: Faust3000 (Original) | Danik2343 (Update Transaltion) " "\n" @@ -54,101 +54,101 @@ msgstr "OK" msgid "FAILED" msgstr "НЕУДАВШИЙСЯ" -#: src/Common/LinuxKernel.vala:397 +#: src/Common/LinuxKernel.vala:395 msgid "Found installed" msgstr "Найдено установлененное" -#: src/Common/LinuxKernel.vala:721 src/Gtk/MainWindow.vala:519 +#: src/Common/LinuxKernel.vala:731 src/Gtk/MainWindow.vala:519 #: src/Gtk/MainWindow.vala:532 msgid "Running" msgstr "Используется" -#: src/Common/LinuxKernel.vala:722 +#: src/Common/LinuxKernel.vala:732 msgid "Installed" msgstr "Установлено" -#: src/Common/LinuxKernel.vala:723 +#: src/Common/LinuxKernel.vala:733 msgid "Invalid" msgstr "Негодный" -#: src/Common/LinuxKernel.vala:797 +#: src/Common/LinuxKernel.vala:807 msgid "Packages Available" msgstr "Доступные пакеты" -#: src/Common/LinuxKernel.vala:803 +#: src/Common/LinuxKernel.vala:813 msgid "Packages Installed" msgstr "Установленные пакеты" -#: src/Common/LinuxKernel.vala:825 src/lib/TeeJee.FileSystem.vala:118 +#: src/Common/LinuxKernel.vala:835 src/lib/TeeJee.FileSystem.vala:118 msgid "File not found" msgstr "Файл не найден" -#: src/Common/LinuxKernel.vala:894 +#: src/Common/LinuxKernel.vala:904 msgid "Available Kernels" msgstr "Доступные ядра" -#: src/Common/LinuxKernel.vala:931 +#: src/Common/LinuxKernel.vala:941 msgid "enabled" msgstr "включено" -#: src/Common/LinuxKernel.vala:955 +#: src/Common/LinuxKernel.vala:965 msgid "Downloading" msgstr "Загрузки" -#: src/Common/LinuxKernel.vala:976 +#: src/Common/LinuxKernel.vala:986 msgid "is already installed." msgstr "уже установлен." -#: src/Common/LinuxKernel.vala:1006 +#: src/Common/LinuxKernel.vala:1016 msgid "Uninstalling selected kernels" msgstr "Удаление выбранных ядер" -#: src/Common/LinuxKernel.vala:1012 +#: src/Common/LinuxKernel.vala:1022 msgid "requested" msgstr "запрошено" -#: src/Common/LinuxKernel.vala:1015 +#: src/Common/LinuxKernel.vala:1025 msgid "not uninstalling the currently running kernel" msgstr "не удаляет текущее работающее ядро" -#: src/Common/LinuxKernel.vala:1031 +#: src/Common/LinuxKernel.vala:1041 msgid "found" msgstr "найдено" -#: src/Common/LinuxKernel.vala:1034 +#: src/Common/LinuxKernel.vala:1044 msgid "No packages to un-install!" msgstr "Нет пакетов для удаления!" -#: src/Common/LinuxKernel.vala:1082 +#: src/Common/LinuxKernel.vala:1092 msgid "Could not find running kernel in list" msgstr "Could not find running kernel in list" -#: src/Common/LinuxKernel.vala:1087 +#: src/Common/LinuxKernel.vala:1097 msgid "Could not find any kernels to uninstall" msgstr "Не удалось найти ядра для деинсталляции" -#: src/Common/LinuxKernel.vala:1095 +#: src/Common/LinuxKernel.vala:1105 msgid "The following kernels will be uninstalled" msgstr "Следующие ядра будут удалены" -#: src/Common/LinuxKernel.vala:1099 +#: src/Common/LinuxKernel.vala:1109 msgid "Continue ?" msgstr "Продолжить ?" -#: src/Common/LinuxKernel.vala:1121 src/Console/AppConsole.vala:290 +#: src/Common/LinuxKernel.vala:1131 src/Console/AppConsole.vala:292 msgid "Latest update" msgstr "Последнее обновление" -#: src/Common/LinuxKernel.vala:1132 src/Console/AppConsole.vala:297 +#: src/Common/LinuxKernel.vala:1142 src/Console/AppConsole.vala:299 msgid "Latest point update" msgstr "Последнее обновление пунктов" -#: src/Common/LinuxKernel.vala:1140 src/Console/AppConsole.vala:302 -#: src/Console/AppConsole.vala:318 +#: src/Common/LinuxKernel.vala:1150 src/Console/AppConsole.vala:304 +#: src/Console/AppConsole.vala:320 msgid "No updates found" msgstr "Обновлений не найдено" -#: src/Common/LinuxKernel.vala:1149 +#: src/Common/LinuxKernel.vala:1159 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Установить версию ядра %s ? (y/n): " @@ -172,7 +172,7 @@ msgstr "Уведомления отключены" msgid "File not found: %s" msgstr "Файл не найден: %s" -#: src/Console/AppConsole.vala:47 src/Gtk/AppGtk.vala:135 +#: src/Console/AppConsole.vala:47 src/Gtk/AppGtk.vala:136 msgid "Syntax" msgstr "Синтаксис" @@ -224,7 +224,7 @@ msgstr "Скачать указанные ядра" msgid "Delete cached info about available kernels" msgstr "Удаление кэшированной информации о доступных ядрах" -#: src/Console/AppConsole.vala:63 src/Gtk/AppGtk.vala:137 +#: src/Console/AppConsole.vala:63 src/Gtk/AppGtk.vala:138 msgid "Options" msgstr "Параметры" @@ -256,61 +256,61 @@ msgstr "Один или несколько, разделенных запяты msgid "The currently running kernel will always be ignored" msgstr "Текущее работающее ядро всегда будет игнорироваться" -#: src/Console/AppConsole.vala:161 src/Gtk/AppGtk.vala:121 +#: src/Console/AppConsole.vala:163 src/Gtk/AppGtk.vala:122 msgid "Unknown option" msgstr "Неизвестный параметр" -#: src/Console/AppConsole.vala:162 src/Console/AppConsole.vala:248 -#: src/Console/AppConsole.vala:276 +#: src/Console/AppConsole.vala:164 src/Console/AppConsole.vala:250 +#: src/Console/AppConsole.vala:278 msgid "Run" msgstr "Используется" -#: src/Console/AppConsole.vala:162 +#: src/Console/AppConsole.vala:164 msgid "to list all options" msgstr "чтобы перечислить все параметры" -#: src/Console/AppConsole.vala:216 src/Console/AppConsole.vala:256 +#: src/Console/AppConsole.vala:218 src/Console/AppConsole.vala:258 msgid "No kernels specified" msgstr "Ядра не указаны" -#: src/Console/AppConsole.vala:222 +#: src/Console/AppConsole.vala:224 msgid "Multiple kernels selected for installation. Select only one." msgstr "Для установки выбрано несколько ядер. Выберите только одно." -#: src/Console/AppConsole.vala:245 +#: src/Console/AppConsole.vala:247 msgid "Could not find requested version" msgstr "Не удалось найти запрошенную версию" -#: src/Console/AppConsole.vala:248 +#: src/Console/AppConsole.vala:250 msgid "and use a version string listed in first column" msgstr "и использовать строку версии, указанную в первом столбце" -#: src/Console/AppConsole.vala:275 +#: src/Console/AppConsole.vala:277 msgid "Command not specified" msgstr "Команда не указана" -#: src/Console/AppConsole.vala:276 +#: src/Console/AppConsole.vala:278 msgid "to list all commands" msgstr "чтобы перечислить все команды" -#: src/Console/AppConsole.vala:312 +#: src/Console/AppConsole.vala:314 msgid "Notifications disabled in settings" msgstr "Уведомления отключены в настройках" -#: src/Console/AppConsole.vala:337 +#: src/Console/AppConsole.vala:339 #, c-format msgid "Kernel %s Available" msgstr "Доступно ядро %s" -#: src/Console/AppConsole.vala:341 src/Gtk/SettingsDialog.vala:166 +#: src/Console/AppConsole.vala:343 src/Gtk/SettingsDialog.vala:166 msgid "Show" msgstr "Показать" -#: src/Console/AppConsole.vala:342 src/Gtk/MainWindow.vala:296 +#: src/Console/AppConsole.vala:344 src/Gtk/MainWindow.vala:296 msgid "Install" msgstr "Установить" -#: src/Console/AppConsole.vala:345 +#: src/Console/AppConsole.vala:347 msgid "Previously notified" msgstr "Предварительно уведомлено" @@ -350,15 +350,15 @@ msgstr "Составители документации" msgid "Third Party Inclusions" msgstr "Включая сторонние инструменты" -#: src/Gtk/AppGtk.vala:135 +#: src/Gtk/AppGtk.vala:136 msgid "options" msgstr "параметры" -#: src/Gtk/AppGtk.vala:139 +#: src/Gtk/AppGtk.vala:140 msgid "Print debug information" msgstr "Распечатать отладочную информацию" -#: src/Gtk/AppGtk.vala:140 +#: src/Gtk/AppGtk.vala:141 msgid "Show all options" msgstr "Показать все параметры" @@ -428,8 +428,8 @@ msgstr "Обновление ядер" msgid "available" msgstr "доступно" -#: src/Gtk/MainWindow.vala:571 src/Gtk/MainWindow.vala:611 -#: src/Gtk/MainWindow.vala:645 +#: src/Gtk/MainWindow.vala:571 src/Gtk/MainWindow.vala:612 +#: src/Gtk/MainWindow.vala:647 msgid "DONE" msgstr "ГОТОВО" diff --git a/po/sv.po b/po/sv.po index 5cca4653..9be43fd9 100644 --- a/po/sv.po +++ b/po/sv.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-04-04 07:52-0400\n" +"POT-Creation-Date: 2023-04-04 17:58-0400\n" "PO-Revision-Date: 2018-01-13 16:56+0100\n" "Last-Translator: Åke Engelbrektson \n" "Language-Team:Swedish\n" @@ -53,101 +53,101 @@ msgstr "OK" msgid "FAILED" msgstr "MISSLYCKADES" -#: src/Common/LinuxKernel.vala:397 +#: src/Common/LinuxKernel.vala:395 msgid "Found installed" msgstr "Hittade installerat" -#: src/Common/LinuxKernel.vala:721 src/Gtk/MainWindow.vala:519 +#: src/Common/LinuxKernel.vala:731 src/Gtk/MainWindow.vala:519 #: src/Gtk/MainWindow.vala:532 msgid "Running" msgstr "Körs" -#: src/Common/LinuxKernel.vala:722 +#: src/Common/LinuxKernel.vala:732 msgid "Installed" msgstr "Installerad" -#: src/Common/LinuxKernel.vala:723 +#: src/Common/LinuxKernel.vala:733 msgid "Invalid" msgstr "Ogiltig" -#: src/Common/LinuxKernel.vala:797 +#: src/Common/LinuxKernel.vala:807 msgid "Packages Available" msgstr "Tillgängliga paket" -#: src/Common/LinuxKernel.vala:803 +#: src/Common/LinuxKernel.vala:813 msgid "Packages Installed" msgstr "Installerade paket" -#: src/Common/LinuxKernel.vala:825 src/lib/TeeJee.FileSystem.vala:118 +#: src/Common/LinuxKernel.vala:835 src/lib/TeeJee.FileSystem.vala:118 msgid "File not found" msgstr "Filen kan inte hittas" -#: src/Common/LinuxKernel.vala:894 +#: src/Common/LinuxKernel.vala:904 msgid "Available Kernels" msgstr "Tillgängliga kärnor" -#: src/Common/LinuxKernel.vala:931 +#: src/Common/LinuxKernel.vala:941 msgid "enabled" msgstr "aktiverat" -#: src/Common/LinuxKernel.vala:955 +#: src/Common/LinuxKernel.vala:965 msgid "Downloading" msgstr "Ladda ner" -#: src/Common/LinuxKernel.vala:976 +#: src/Common/LinuxKernel.vala:986 msgid "is already installed." msgstr "är redan installerat." -#: src/Common/LinuxKernel.vala:1006 +#: src/Common/LinuxKernel.vala:1016 msgid "Uninstalling selected kernels" msgstr "Avinstallera valda kärnor" -#: src/Common/LinuxKernel.vala:1012 +#: src/Common/LinuxKernel.vala:1022 msgid "requested" msgstr "begärd" -#: src/Common/LinuxKernel.vala:1015 +#: src/Common/LinuxKernel.vala:1025 msgid "not uninstalling the currently running kernel" msgstr "Avinstallera inte den kärna som körs, för närvarande" -#: src/Common/LinuxKernel.vala:1031 +#: src/Common/LinuxKernel.vala:1041 msgid "found" msgstr "grunda" -#: src/Common/LinuxKernel.vala:1034 +#: src/Common/LinuxKernel.vala:1044 msgid "No packages to un-install!" msgstr "Inga paket att avinstallera!" -#: src/Common/LinuxKernel.vala:1082 +#: src/Common/LinuxKernel.vala:1092 msgid "Could not find running kernel in list" msgstr "Det gick inte att hitta kernel som körs i listan" -#: src/Common/LinuxKernel.vala:1087 +#: src/Common/LinuxKernel.vala:1097 msgid "Could not find any kernels to uninstall" msgstr "Det gick inte att hitta några kärnor att avinstallera" -#: src/Common/LinuxKernel.vala:1095 +#: src/Common/LinuxKernel.vala:1105 msgid "The following kernels will be uninstalled" msgstr "Följande kärnor kommer att avinstalleras" -#: src/Common/LinuxKernel.vala:1099 +#: src/Common/LinuxKernel.vala:1109 msgid "Continue ?" msgstr "Fortsätta?" -#: src/Common/LinuxKernel.vala:1121 src/Console/AppConsole.vala:290 +#: src/Common/LinuxKernel.vala:1131 src/Console/AppConsole.vala:292 msgid "Latest update" msgstr "Senaste uppdatering" -#: src/Common/LinuxKernel.vala:1132 src/Console/AppConsole.vala:297 +#: src/Common/LinuxKernel.vala:1142 src/Console/AppConsole.vala:299 msgid "Latest point update" msgstr "Senaste punktuppdatering" -#: src/Common/LinuxKernel.vala:1140 src/Console/AppConsole.vala:302 -#: src/Console/AppConsole.vala:318 +#: src/Common/LinuxKernel.vala:1150 src/Console/AppConsole.vala:304 +#: src/Console/AppConsole.vala:320 msgid "No updates found" msgstr "Inga uppdateringar hittades" -#: src/Common/LinuxKernel.vala:1149 +#: src/Common/LinuxKernel.vala:1159 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Installera kärnversion %s ? (j/n):" @@ -170,7 +170,7 @@ msgstr "Meddelanden är inaktiverade" msgid "File not found: %s" msgstr "Filen hittades inte: %s" -#: src/Console/AppConsole.vala:47 src/Gtk/AppGtk.vala:135 +#: src/Console/AppConsole.vala:47 src/Gtk/AppGtk.vala:136 msgid "Syntax" msgstr "Syntax" @@ -222,7 +222,7 @@ msgstr "Ladda ner angivna kärnor" msgid "Delete cached info about available kernels" msgstr "Ta bort cachelagrad information om tillgängliga kärnor" -#: src/Console/AppConsole.vala:63 src/Gtk/AppGtk.vala:137 +#: src/Console/AppConsole.vala:63 src/Gtk/AppGtk.vala:138 msgid "Options" msgstr "Alternativ" @@ -254,61 +254,61 @@ msgstr "En eller flera, kommaseparerade" msgid "The currently running kernel will always be ignored" msgstr "Den kärna som för närvarande körs ignoreras alltid" -#: src/Console/AppConsole.vala:161 src/Gtk/AppGtk.vala:121 +#: src/Console/AppConsole.vala:163 src/Gtk/AppGtk.vala:122 msgid "Unknown option" msgstr "Okänt alternativ" -#: src/Console/AppConsole.vala:162 src/Console/AppConsole.vala:248 -#: src/Console/AppConsole.vala:276 +#: src/Console/AppConsole.vala:164 src/Console/AppConsole.vala:250 +#: src/Console/AppConsole.vala:278 msgid "Run" msgstr "Kör" -#: src/Console/AppConsole.vala:162 +#: src/Console/AppConsole.vala:164 msgid "to list all options" msgstr "för att lista alla alternativ" -#: src/Console/AppConsole.vala:216 src/Console/AppConsole.vala:256 +#: src/Console/AppConsole.vala:218 src/Console/AppConsole.vala:258 msgid "No kernels specified" msgstr "Inga kärnor angivna" -#: src/Console/AppConsole.vala:222 +#: src/Console/AppConsole.vala:224 msgid "Multiple kernels selected for installation. Select only one." msgstr "Flera kärnor valda för installation. Välj endast en." -#: src/Console/AppConsole.vala:245 +#: src/Console/AppConsole.vala:247 msgid "Could not find requested version" msgstr "Kunde inte hitta efterfrågad version" -#: src/Console/AppConsole.vala:248 +#: src/Console/AppConsole.vala:250 msgid "and use a version string listed in first column" msgstr "och använd en versionssträng som anges i första kolumnen" -#: src/Console/AppConsole.vala:275 +#: src/Console/AppConsole.vala:277 msgid "Command not specified" msgstr "Kommandot har inte angetts" -#: src/Console/AppConsole.vala:276 +#: src/Console/AppConsole.vala:278 msgid "to list all commands" msgstr "för att lista alla kommandon" -#: src/Console/AppConsole.vala:312 +#: src/Console/AppConsole.vala:314 msgid "Notifications disabled in settings" msgstr "Meddelanden inaktiverade i inställningarna" -#: src/Console/AppConsole.vala:337 +#: src/Console/AppConsole.vala:339 #, c-format msgid "Kernel %s Available" msgstr "Kernel %s tillgängliga" -#: src/Console/AppConsole.vala:341 src/Gtk/SettingsDialog.vala:166 +#: src/Console/AppConsole.vala:343 src/Gtk/SettingsDialog.vala:166 msgid "Show" msgstr "Visa" -#: src/Console/AppConsole.vala:342 src/Gtk/MainWindow.vala:296 +#: src/Console/AppConsole.vala:344 src/Gtk/MainWindow.vala:296 msgid "Install" msgstr "Installera" -#: src/Console/AppConsole.vala:345 +#: src/Console/AppConsole.vala:347 msgid "Previously notified" msgstr "Tidigare anmält" @@ -348,15 +348,15 @@ msgstr "Dokumentalister" msgid "Third Party Inclusions" msgstr "Tredjepartsverktyg" -#: src/Gtk/AppGtk.vala:135 +#: src/Gtk/AppGtk.vala:136 msgid "options" msgstr "alternativ" -#: src/Gtk/AppGtk.vala:139 +#: src/Gtk/AppGtk.vala:140 msgid "Print debug information" msgstr "Skriv ut felsökningsinformation" -#: src/Gtk/AppGtk.vala:140 +#: src/Gtk/AppGtk.vala:141 msgid "Show all options" msgstr "Visa alla alternativ" @@ -426,8 +426,8 @@ msgstr "Uppdatera kärnor" msgid "available" msgstr "tillgänglig" -#: src/Gtk/MainWindow.vala:571 src/Gtk/MainWindow.vala:611 -#: src/Gtk/MainWindow.vala:645 +#: src/Gtk/MainWindow.vala:571 src/Gtk/MainWindow.vala:612 +#: src/Gtk/MainWindow.vala:647 msgid "DONE" msgstr "FÄRDIG" diff --git a/po/tr.po b/po/tr.po index aea1a1b3..de714f85 100644 --- a/po/tr.po +++ b/po/tr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-04-04 07:52-0400\n" +"POT-Creation-Date: 2023-04-04 17:58-0400\n" "PO-Revision-Date: 2022-08-06 16:48+0300\n" "Last-Translator: Sabri Ünal \n" "Language-Team: Turkish\n" @@ -53,102 +53,102 @@ msgstr "Tamam" msgid "FAILED" msgstr "BAŞARISIZ" -#: src/Common/LinuxKernel.vala:397 +#: src/Common/LinuxKernel.vala:395 msgid "Found installed" msgstr "Yüklü bulundu" -#: src/Common/LinuxKernel.vala:721 src/Gtk/MainWindow.vala:519 +#: src/Common/LinuxKernel.vala:731 src/Gtk/MainWindow.vala:519 #: src/Gtk/MainWindow.vala:532 msgid "Running" msgstr "Çalışıyor" -#: src/Common/LinuxKernel.vala:722 +#: src/Common/LinuxKernel.vala:732 msgid "Installed" msgstr "Kurulu" -#: src/Common/LinuxKernel.vala:723 +#: src/Common/LinuxKernel.vala:733 msgid "Invalid" msgstr "Geçersiz" -#: src/Common/LinuxKernel.vala:797 +#: src/Common/LinuxKernel.vala:807 msgid "Packages Available" msgstr "Mevcut Paketler" -#: src/Common/LinuxKernel.vala:803 +#: src/Common/LinuxKernel.vala:813 msgid "Packages Installed" msgstr "Kurulu Paketler" -#: src/Common/LinuxKernel.vala:825 src/lib/TeeJee.FileSystem.vala:118 +#: src/Common/LinuxKernel.vala:835 src/lib/TeeJee.FileSystem.vala:118 msgid "File not found" msgstr "Dosya bulunamadı" -#: src/Common/LinuxKernel.vala:894 +#: src/Common/LinuxKernel.vala:904 msgid "Available Kernels" msgstr "Mevcut Çekirdekler" -#: src/Common/LinuxKernel.vala:931 +#: src/Common/LinuxKernel.vala:941 msgid "enabled" msgstr "etkin" -#: src/Common/LinuxKernel.vala:955 +#: src/Common/LinuxKernel.vala:965 msgid "Downloading" msgstr "Indiriyor" -#: src/Common/LinuxKernel.vala:976 +#: src/Common/LinuxKernel.vala:986 msgid "is already installed." msgstr "zaten yüklü." -#: src/Common/LinuxKernel.vala:1006 +#: src/Common/LinuxKernel.vala:1016 msgid "Uninstalling selected kernels" msgstr "Seçili çekirdekleri kaldırma" -#: src/Common/LinuxKernel.vala:1012 +#: src/Common/LinuxKernel.vala:1022 msgid "requested" msgstr "istenen" -#: src/Common/LinuxKernel.vala:1015 +#: src/Common/LinuxKernel.vala:1025 msgid "not uninstalling the currently running kernel" msgstr "çalışmakta olan çekirdeğin kaldırılmaması" -#: src/Common/LinuxKernel.vala:1031 +#: src/Common/LinuxKernel.vala:1041 msgid "found" msgstr "kurmak" -#: src/Common/LinuxKernel.vala:1034 +#: src/Common/LinuxKernel.vala:1044 msgid "No packages to un-install!" msgstr "Kaldırılacak paket yok!" -#: src/Common/LinuxKernel.vala:1082 +#: src/Common/LinuxKernel.vala:1092 msgid "Could not find running kernel in list" msgstr "Listede çalışan çekirdek bulunamadı" -#: src/Common/LinuxKernel.vala:1087 +#: src/Common/LinuxKernel.vala:1097 msgid "Could not find any kernels to uninstall" msgstr "Kaldırılacak çekirdek bulunamadı" -#: src/Common/LinuxKernel.vala:1095 +#: src/Common/LinuxKernel.vala:1105 msgid "The following kernels will be uninstalled" msgstr "Aşağıdaki çekirdekler kaldırılacaktır" -#: src/Common/LinuxKernel.vala:1099 +#: src/Common/LinuxKernel.vala:1109 msgid "Continue ?" msgstr "Devam edilsin mi?" -#: src/Common/LinuxKernel.vala:1121 src/Console/AppConsole.vala:290 +#: src/Common/LinuxKernel.vala:1131 src/Console/AppConsole.vala:292 msgid "Latest update" msgstr "Son güncelleme" # Point burada point release anlamında kullanılıyor. Örneğin 5.10.x sayısının en sonundaki x rakamı point release/nokta sürüm oluyor. -#: src/Common/LinuxKernel.vala:1132 src/Console/AppConsole.vala:297 +#: src/Common/LinuxKernel.vala:1142 src/Console/AppConsole.vala:299 msgid "Latest point update" msgstr "Son nokta güncellemesi" -#: src/Common/LinuxKernel.vala:1140 src/Console/AppConsole.vala:302 -#: src/Console/AppConsole.vala:318 +#: src/Common/LinuxKernel.vala:1150 src/Console/AppConsole.vala:304 +#: src/Console/AppConsole.vala:320 msgid "No updates found" msgstr "Güncelleme bulunamadı" -#: src/Common/LinuxKernel.vala:1149 +#: src/Common/LinuxKernel.vala:1159 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Linux Çekirdek Sürümü %s Kurulsun mu? (e/h): " @@ -172,7 +172,7 @@ msgstr "Bildirimler devre dışı bırakılmış" msgid "File not found: %s" msgstr "Dosya bulunamadı: %s" -#: src/Console/AppConsole.vala:47 src/Gtk/AppGtk.vala:135 +#: src/Console/AppConsole.vala:47 src/Gtk/AppGtk.vala:136 msgid "Syntax" msgstr "Sözdizimi" @@ -224,7 +224,7 @@ msgstr "Belirtilen çekirdekleri indir" msgid "Delete cached info about available kernels" msgstr "Kullanılabilir çekirdekler hakkında önbelleğe alınmış bilgileri silme" -#: src/Console/AppConsole.vala:63 src/Gtk/AppGtk.vala:137 +#: src/Console/AppConsole.vala:63 src/Gtk/AppGtk.vala:138 msgid "Options" msgstr "Seçenekler" @@ -256,61 +256,61 @@ msgstr "Bir veya daha fazla, virgülle ayrılmış" msgid "The currently running kernel will always be ignored" msgstr "Şu anda çalışan çekirdek her zaman yoksayılır" -#: src/Console/AppConsole.vala:161 src/Gtk/AppGtk.vala:121 +#: src/Console/AppConsole.vala:163 src/Gtk/AppGtk.vala:122 msgid "Unknown option" msgstr "Bilinmeyen seçenek" -#: src/Console/AppConsole.vala:162 src/Console/AppConsole.vala:248 -#: src/Console/AppConsole.vala:276 +#: src/Console/AppConsole.vala:164 src/Console/AppConsole.vala:250 +#: src/Console/AppConsole.vala:278 msgid "Run" msgstr "Çalıştır" -#: src/Console/AppConsole.vala:162 +#: src/Console/AppConsole.vala:164 msgid "to list all options" msgstr "tüm seçenekleri listele" -#: src/Console/AppConsole.vala:216 src/Console/AppConsole.vala:256 +#: src/Console/AppConsole.vala:218 src/Console/AppConsole.vala:258 msgid "No kernels specified" msgstr "Çekirdek belirtilmedi" -#: src/Console/AppConsole.vala:222 +#: src/Console/AppConsole.vala:224 msgid "Multiple kernels selected for installation. Select only one." msgstr "Kurulum için birden fazla çekirdek seçildi. Sadece bir tane seçiniz." -#: src/Console/AppConsole.vala:245 +#: src/Console/AppConsole.vala:247 msgid "Could not find requested version" msgstr "İstenen sürüm bulunamadı" -#: src/Console/AppConsole.vala:248 +#: src/Console/AppConsole.vala:250 msgid "and use a version string listed in first column" msgstr "ve ilk sütunda listelenen bir sürüm dizgesini kullanın" -#: src/Console/AppConsole.vala:275 +#: src/Console/AppConsole.vala:277 msgid "Command not specified" msgstr "Komut belirtilmedi" -#: src/Console/AppConsole.vala:276 +#: src/Console/AppConsole.vala:278 msgid "to list all commands" msgstr "tüm komutları listele" -#: src/Console/AppConsole.vala:312 +#: src/Console/AppConsole.vala:314 msgid "Notifications disabled in settings" msgstr "Ayarlarda devre dışı bırakılan bildirimler" -#: src/Console/AppConsole.vala:337 +#: src/Console/AppConsole.vala:339 #, c-format msgid "Kernel %s Available" msgstr "Çekirdek %s Kullanılabilir" -#: src/Console/AppConsole.vala:341 src/Gtk/SettingsDialog.vala:166 +#: src/Console/AppConsole.vala:343 src/Gtk/SettingsDialog.vala:166 msgid "Show" msgstr "Göster" -#: src/Console/AppConsole.vala:342 src/Gtk/MainWindow.vala:296 +#: src/Console/AppConsole.vala:344 src/Gtk/MainWindow.vala:296 msgid "Install" msgstr "Kur" -#: src/Console/AppConsole.vala:345 +#: src/Console/AppConsole.vala:347 msgid "Previously notified" msgstr "Daha önce bildirilmiş" @@ -350,15 +350,15 @@ msgstr "Belgelendirenler" msgid "Third Party Inclusions" msgstr "Üçüncü Taraf Eklemeler" -#: src/Gtk/AppGtk.vala:135 +#: src/Gtk/AppGtk.vala:136 msgid "options" msgstr "seçenekler" -#: src/Gtk/AppGtk.vala:139 +#: src/Gtk/AppGtk.vala:140 msgid "Print debug information" msgstr "Hata ayıklama bilgisini yazdır" -#: src/Gtk/AppGtk.vala:140 +#: src/Gtk/AppGtk.vala:141 msgid "Show all options" msgstr "Tüm seçenekleri göster" @@ -428,8 +428,8 @@ msgstr "Çekirdekleri güncelleme" msgid "available" msgstr "mevcut" -#: src/Gtk/MainWindow.vala:571 src/Gtk/MainWindow.vala:611 -#: src/Gtk/MainWindow.vala:645 +#: src/Gtk/MainWindow.vala:571 src/Gtk/MainWindow.vala:612 +#: src/Gtk/MainWindow.vala:647 msgid "DONE" msgstr "YAPILMIŞ" diff --git a/po/uk.po b/po/uk.po index a2b429aa..887823ee 100644 --- a/po/uk.po +++ b/po/uk.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-04-04 07:52-0400\n" +"POT-Creation-Date: 2023-04-04 17:58-0400\n" "PO-Revision-Date: 2019-07-25 11:00+0300\n" "Last-Translator: Serhii Golovko \n" "Language-Team: Ukranian\n" @@ -53,101 +53,101 @@ msgstr "Добре" msgid "FAILED" msgstr "НЕ ВДАЛОСЯ" -#: src/Common/LinuxKernel.vala:397 +#: src/Common/LinuxKernel.vala:395 msgid "Found installed" msgstr "Знайдено встановленим" -#: src/Common/LinuxKernel.vala:721 src/Gtk/MainWindow.vala:519 +#: src/Common/LinuxKernel.vala:731 src/Gtk/MainWindow.vala:519 #: src/Gtk/MainWindow.vala:532 msgid "Running" msgstr "Використовується" -#: src/Common/LinuxKernel.vala:722 +#: src/Common/LinuxKernel.vala:732 msgid "Installed" msgstr "Встановлено" -#: src/Common/LinuxKernel.vala:723 +#: src/Common/LinuxKernel.vala:733 msgid "Invalid" msgstr "Інвалід" -#: src/Common/LinuxKernel.vala:797 +#: src/Common/LinuxKernel.vala:807 msgid "Packages Available" msgstr "Доступні пакети" -#: src/Common/LinuxKernel.vala:803 +#: src/Common/LinuxKernel.vala:813 msgid "Packages Installed" msgstr "Встановлені пакети" -#: src/Common/LinuxKernel.vala:825 src/lib/TeeJee.FileSystem.vala:118 +#: src/Common/LinuxKernel.vala:835 src/lib/TeeJee.FileSystem.vala:118 msgid "File not found" msgstr "Файл не знайдено" -#: src/Common/LinuxKernel.vala:894 +#: src/Common/LinuxKernel.vala:904 msgid "Available Kernels" msgstr "Доступні ядра" -#: src/Common/LinuxKernel.vala:931 +#: src/Common/LinuxKernel.vala:941 msgid "enabled" msgstr "увімкнено" -#: src/Common/LinuxKernel.vala:955 +#: src/Common/LinuxKernel.vala:965 msgid "Downloading" msgstr "Завантаження" -#: src/Common/LinuxKernel.vala:976 +#: src/Common/LinuxKernel.vala:986 msgid "is already installed." msgstr "вже встановлено." -#: src/Common/LinuxKernel.vala:1006 +#: src/Common/LinuxKernel.vala:1016 msgid "Uninstalling selected kernels" msgstr "Видаліть конкретні ядра" -#: src/Common/LinuxKernel.vala:1012 +#: src/Common/LinuxKernel.vala:1022 msgid "requested" msgstr "запитуваний" -#: src/Common/LinuxKernel.vala:1015 +#: src/Common/LinuxKernel.vala:1025 msgid "not uninstalling the currently running kernel" msgstr "не видалятиме поточне запущене ядро" -#: src/Common/LinuxKernel.vala:1031 +#: src/Common/LinuxKernel.vala:1041 msgid "found" msgstr "знайдено" -#: src/Common/LinuxKernel.vala:1034 +#: src/Common/LinuxKernel.vala:1044 msgid "No packages to un-install!" msgstr "Немає пакетів для видалення!" -#: src/Common/LinuxKernel.vala:1082 +#: src/Common/LinuxKernel.vala:1092 msgid "Could not find running kernel in list" msgstr "Не вдалося знайти запущене ядро у списку!" -#: src/Common/LinuxKernel.vala:1087 +#: src/Common/LinuxKernel.vala:1097 msgid "Could not find any kernels to uninstall" msgstr "Не вдалося знайти жодне ядро для вилучення" -#: src/Common/LinuxKernel.vala:1095 +#: src/Common/LinuxKernel.vala:1105 msgid "The following kernels will be uninstalled" msgstr "Наступні ядра будуть видалені" -#: src/Common/LinuxKernel.vala:1099 +#: src/Common/LinuxKernel.vala:1109 msgid "Continue ?" msgstr "Продовжувати ?" -#: src/Common/LinuxKernel.vala:1121 src/Console/AppConsole.vala:290 +#: src/Common/LinuxKernel.vala:1131 src/Console/AppConsole.vala:292 msgid "Latest update" msgstr "Останнє оновлення" -#: src/Common/LinuxKernel.vala:1132 src/Console/AppConsole.vala:297 +#: src/Common/LinuxKernel.vala:1142 src/Console/AppConsole.vala:299 msgid "Latest point update" msgstr "Остання точка оновлення" -#: src/Common/LinuxKernel.vala:1140 src/Console/AppConsole.vala:302 -#: src/Console/AppConsole.vala:318 +#: src/Common/LinuxKernel.vala:1150 src/Console/AppConsole.vala:304 +#: src/Console/AppConsole.vala:320 msgid "No updates found" msgstr "Оновлень не знайдено" -#: src/Common/LinuxKernel.vala:1149 +#: src/Common/LinuxKernel.vala:1159 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Встановити Ядро Версії %s ? (так/ні): " @@ -171,7 +171,7 @@ msgstr "Повідомлення вимкнено" msgid "File not found: %s" msgstr "Файл не знайдено: %s" -#: src/Console/AppConsole.vala:47 src/Gtk/AppGtk.vala:135 +#: src/Console/AppConsole.vala:47 src/Gtk/AppGtk.vala:136 msgid "Syntax" msgstr "Синтаксис" @@ -223,7 +223,7 @@ msgstr "Завантажте конкретні ядра" msgid "Delete cached info about available kernels" msgstr "Видалити кешовану інформацію про доступні ядра" -#: src/Console/AppConsole.vala:63 src/Gtk/AppGtk.vala:137 +#: src/Console/AppConsole.vala:63 src/Gtk/AppGtk.vala:138 msgid "Options" msgstr "Параметри" @@ -255,61 +255,61 @@ msgstr "Один або кілька розділених комами" msgid "The currently running kernel will always be ignored" msgstr "Поточне ядро, що працює, завжди буде ігноруватися" -#: src/Console/AppConsole.vala:161 src/Gtk/AppGtk.vala:121 +#: src/Console/AppConsole.vala:163 src/Gtk/AppGtk.vala:122 msgid "Unknown option" msgstr "Невідомий параметр" -#: src/Console/AppConsole.vala:162 src/Console/AppConsole.vala:248 -#: src/Console/AppConsole.vala:276 +#: src/Console/AppConsole.vala:164 src/Console/AppConsole.vala:250 +#: src/Console/AppConsole.vala:278 msgid "Run" msgstr "Запуск" -#: src/Console/AppConsole.vala:162 +#: src/Console/AppConsole.vala:164 msgid "to list all options" msgstr "Показати усі параметри" -#: src/Console/AppConsole.vala:216 src/Console/AppConsole.vala:256 +#: src/Console/AppConsole.vala:218 src/Console/AppConsole.vala:258 msgid "No kernels specified" msgstr "Ядра не вказані" -#: src/Console/AppConsole.vala:222 +#: src/Console/AppConsole.vala:224 msgid "Multiple kernels selected for installation. Select only one." msgstr "Для встановлення вибрано кілька ядер. Виберіть лише одну." -#: src/Console/AppConsole.vala:245 +#: src/Console/AppConsole.vala:247 msgid "Could not find requested version" msgstr "Не вдалося знайти запитувану версію" -#: src/Console/AppConsole.vala:248 +#: src/Console/AppConsole.vala:250 msgid "and use a version string listed in first column" msgstr "і використовувати рядок версій, вказаний у першому стовпці" -#: src/Console/AppConsole.vala:275 +#: src/Console/AppConsole.vala:277 msgid "Command not specified" msgstr "Команда не вказана" -#: src/Console/AppConsole.vala:276 +#: src/Console/AppConsole.vala:278 msgid "to list all commands" msgstr "щоб відобразити всі команди" -#: src/Console/AppConsole.vala:312 +#: src/Console/AppConsole.vala:314 msgid "Notifications disabled in settings" msgstr "Сповіщення, вимкнені в налаштуваннях" -#: src/Console/AppConsole.vala:337 +#: src/Console/AppConsole.vala:339 #, c-format msgid "Kernel %s Available" msgstr "Ядро %s Доступне" -#: src/Console/AppConsole.vala:341 src/Gtk/SettingsDialog.vala:166 +#: src/Console/AppConsole.vala:343 src/Gtk/SettingsDialog.vala:166 msgid "Show" msgstr "Показати" -#: src/Console/AppConsole.vala:342 src/Gtk/MainWindow.vala:296 +#: src/Console/AppConsole.vala:344 src/Gtk/MainWindow.vala:296 msgid "Install" msgstr "Встановити" -#: src/Console/AppConsole.vala:345 +#: src/Console/AppConsole.vala:347 msgid "Previously notified" msgstr "Попередньо повідомлено" @@ -349,15 +349,15 @@ msgstr "Документатори" msgid "Third Party Inclusions" msgstr "Включення третіх осіб" -#: src/Gtk/AppGtk.vala:135 +#: src/Gtk/AppGtk.vala:136 msgid "options" msgstr "параметри" -#: src/Gtk/AppGtk.vala:139 +#: src/Gtk/AppGtk.vala:140 msgid "Print debug information" msgstr "Роздрукувати зневадження" -#: src/Gtk/AppGtk.vala:140 +#: src/Gtk/AppGtk.vala:141 msgid "Show all options" msgstr "Показати усі параметри" @@ -427,8 +427,8 @@ msgstr "Оновлення ядер" msgid "available" msgstr "доступний" -#: src/Gtk/MainWindow.vala:571 src/Gtk/MainWindow.vala:611 -#: src/Gtk/MainWindow.vala:645 +#: src/Gtk/MainWindow.vala:571 src/Gtk/MainWindow.vala:612 +#: src/Gtk/MainWindow.vala:647 msgid "DONE" msgstr "ГОТОВО" diff --git a/src/Common/LinuxKernel.vala b/src/Common/LinuxKernel.vala index 184b6ffc..3b0bdc29 100644 --- a/src/Common/LinuxKernel.vala +++ b/src/Common/LinuxKernel.vala @@ -378,8 +378,6 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { kernel_list.sort((a,b) => { return a.compare_to(b) * -1; }); - kernel_latest_available = kernel_list[0]; - vprint("latest_available: "+kernel_latest_available.version_main,2); } catch (Error e) { vprint(e.message,1,stderr); @@ -498,7 +496,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { } } -// log_debug("latest_available: "+kernel_latest_available.version_main); +// vprint("latest_available: "+kernel_latest_available.version_main,2); vprint("latest_installed: "+kernel_latest_installed.version_main,2); vprint("oldest_installed: "+kernel_oldest_installed.version_main,2); } @@ -508,15 +506,20 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { vprint("check_updates()",2); kernel_update_major = null; kernel_update_minor = null; + kernel_latest_available = kernel_latest_installed; + + bool major_available = false; + bool minor_available = false; foreach(var k in LinuxKernel.kernel_list) { + vprint(k.version_main,3); if (k.is_invalid) continue; if (k.is_installed) continue; if (k.is_unstable && App.hide_unstable) continue; + if (k.version_maj < threshold_major) break; + if (k.compare_to(kernel_latest_installed)<=0) break; - bool major_available = false; - bool minor_available = false; - + // kernel_list is sorted so first match is highest match if (k.version_maj > kernel_latest_installed.version_maj) major_available = true; else if (k.version_maj == kernel_latest_installed.version_maj) { if (k.version_min > kernel_latest_installed.version_min) major_available = true; @@ -529,12 +532,19 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { } if (major_available && (kernel_update_major == null)) kernel_update_major = k; - if (minor_available && (kernel_update_minor == null)) kernel_update_minor = k; - // stop if we have everything possible - if ((kernel_update_major != null) && (kernel_update_minor != null) && (kernel_latest_available != null)) break; + // if we have everything possible, skip the rest + if (kernel_update_major != null && kernel_update_minor != null) break; } + + if (kernel_update_minor != null) kernel_latest_available = kernel_update_minor; + if (kernel_update_major != null) kernel_latest_available = kernel_update_major; + + if (kernel_update_minor != null) vprint("minor available: "+kernel_update_minor.version_main,2); + if (kernel_update_major != null) vprint("major available: "+kernel_update_major.version_main,2); + if (kernel_latest_available != kernel_latest_installed) vprint("latest available: "+kernel_latest_available.version_main,2); + } // helpers diff --git a/src/Console/AppConsole.vala b/src/Console/AppConsole.vala index a093f3fa..40743497 100644 --- a/src/Console/AppConsole.vala +++ b/src/Console/AppConsole.vala @@ -99,6 +99,8 @@ public class AppConsole : GLib.Object { switch (a) { case "--debug": App.VERBOSE = 2; + l.misc.VERBOSE = 2; + Environment.set_variable("VERBOSE","2",true); break; case "--yes": diff --git a/src/Gtk/AppGtk.vala b/src/Gtk/AppGtk.vala index cf058efd..5489c34c 100644 --- a/src/Gtk/AppGtk.vala +++ b/src/Gtk/AppGtk.vala @@ -45,7 +45,6 @@ public class AppGtk : GLib.Object { // create main window -------------------------------------- var window = new MainWindow (); window.configure_event.connect ((event) => { - //log_debug("resize: %dx%d@%dx%d".printf(event.width,event.height,event.x,event.y)); App.window_width = event.width; App.window_height = event.height; App.window_x = event.x; @@ -97,6 +96,8 @@ public class AppGtk : GLib.Object { case "--debug": App.VERBOSE = 2; + l.misc.VERBOSE = 2; + Environment.set_variable("VERBOSE","2",true); break; // this is used by the notifications diff --git a/src/Gtk/MainWindow.vala b/src/Gtk/MainWindow.vala index a2e2b887..4d0e484b 100644 --- a/src/Gtk/MainWindow.vala +++ b/src/Gtk/MainWindow.vala @@ -573,6 +573,7 @@ public class MainWindow : Gtk.Window { save_bash_script_temp(sh,t_file); term.execute_script(t_file,t_dir); + vprint("------------------------------------------------------------------------------"); } public void do_uninstall(Gee.ArrayList klist) { @@ -613,6 +614,7 @@ public class MainWindow : Gtk.Window { save_bash_script_temp(sh,t_file); term.execute_script(t_file,t_dir); + vprint("------------------------------------------------------------------------------"); } public void do_purge () { @@ -647,6 +649,7 @@ public class MainWindow : Gtk.Window { save_bash_script_temp(sh,t_file); term.execute_script(t_file,t_dir); + vprint("------------------------------------------------------------------------------"); } } diff --git a/src/lib/l.misc.vala b/src/lib/l.misc.vala index 9b1d881c..a615d40e 100644 --- a/src/lib/l.misc.vala +++ b/src/lib/l.misc.vala @@ -2,7 +2,7 @@ namespace l.misc { - public static int VERBOSE = 1; + public int VERBOSE = 1; private static void set_locale() { Intl.setlocale(LocaleCategory.MESSAGES,BRANDING_SHORTNAME); From 88eda9fb33522ab659e71eacc0d21aebc4032a6e Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Tue, 4 Apr 2023 18:13:35 -0400 Subject: [PATCH 304/567] rebuild --- .deb_build_number.mak | 2 +- TRANSLATORS | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.deb_build_number.mak b/.deb_build_number.mak index c1cee27b..1bac6d2f 100644 --- a/.deb_build_number.mak +++ b/.deb_build_number.mak @@ -1,3 +1,3 @@ # This file is generated by Makefile "make deb_build_number" DEB_PKG_VERSION := 1.2.1 -DEB_BUILD_NUMBER := 0000 +DEB_BUILD_NUMBER := 0001 diff --git a/TRANSLATORS b/TRANSLATORS index d86e240f..9aa1f9a2 100644 --- a/TRANSLATORS +++ b/TRANSLATORS @@ -3,7 +3,7 @@ el: Vasilis Kosmidis es: Adolfo Jayme Barrientos fr: Yolateng0 hr: gogo -it: Albano Battistella +it: Demetrio Mendozzi, Albano Battistella ko: Kevin Kim nl: Heimen Stoffels pl: Matthaiks From 867dce19a900a010ffbe51a12e9996f81b6894b0 Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Thu, 6 Apr 2023 19:22:56 -0400 Subject: [PATCH 305/567] availability logic in --notify --- .deb_build_number.mak | 4 ++-- BRANDING.mak | 2 +- debian/changelog | 6 ++++++ po/de.po | 26 +++++++++++++---------- po/el.po | 26 +++++++++++++---------- po/es.po | 26 +++++++++++++---------- po/fr.po | 26 +++++++++++++---------- po/hr.po | 26 +++++++++++++---------- po/it.po | 34 +++++++++++++++++------------- po/ko.po | 26 +++++++++++++---------- po/messages.pot | 28 ++++++++++++++----------- po/nl.po | 26 +++++++++++++---------- po/pl.po | 26 +++++++++++++---------- po/ru.po | 26 +++++++++++++---------- po/sv.po | 26 +++++++++++++---------- po/tr.po | 26 +++++++++++++---------- po/uk.po | 26 +++++++++++++---------- src/Common/LinuxKernel.vala | 42 ++++++++++++++++++------------------- src/Common/Main.vala | 36 ++++++++++++++++--------------- src/Console/AppConsole.vala | 39 ++++++++++++++++++---------------- src/Gtk/AppGtk.vala | 7 ++----- src/Gtk/MainWindow.vala | 2 +- src/Gtk/SettingsDialog.vala | 2 +- 23 files changed, 290 insertions(+), 224 deletions(-) diff --git a/.deb_build_number.mak b/.deb_build_number.mak index 1bac6d2f..406f8397 100644 --- a/.deb_build_number.mak +++ b/.deb_build_number.mak @@ -1,3 +1,3 @@ # This file is generated by Makefile "make deb_build_number" -DEB_PKG_VERSION := 1.2.1 -DEB_BUILD_NUMBER := 0001 +DEB_PKG_VERSION := 1.2.2 +DEB_BUILD_NUMBER := 0000 diff --git a/BRANDING.mak b/BRANDING.mak index e0081854..79c2cc91 100644 --- a/BRANDING.mak +++ b/BRANDING.mak @@ -3,7 +3,7 @@ VERSION_MAJOR = 1 VERSION_MINOR = 2 -VERSION_MICRO = 1 +VERSION_MICRO = 2 BRANDING_SHORTNAME = mainline BRANDING_LONGNAME = Ubuntu Mainline Kernel Installer BRANDING_AUTHORNAME = Brian K. White diff --git a/debian/changelog b/debian/changelog index e8a5ef7e..7ea79a5c 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +mainline (1.2.2) unstable; urgency=medium + + * un-bork the notification available version logic, again + + -- Brian K. White Thu, 06 Apr 2023 18:59:49 -0400 + mainline (1.2.1) unstable; urgency=medium * improve the logic for determining if a new kernel is available diff --git a/po/de.po b/po/de.po index fde448f1..77799424 100644 --- a/po/de.po +++ b/po/de.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-04-04 17:58-0400\n" +"POT-Creation-Date: 2023-04-06 18:59-0400\n" "PO-Revision-Date: 2023-02-20 18:40+0100\n" "Last-Translator: Marvin Meysel \n" "Language-Team: German\n" @@ -156,6 +156,10 @@ msgstr "Kernel-Version %s installieren? (j/n):" msgid "Called from" msgstr "Angerufen von" +#: src/Common/Main.vala:351 +msgid "at logon" +msgstr "beim start" + #: src/Common/Main.vala:352 msgid "" "This file is over-written and executed again whenever settings are saved in" @@ -171,7 +175,7 @@ msgstr "Benachrichtigungen sind deaktiviert" msgid "File not found: %s" msgstr "Datei nicht gefunden: %s" -#: src/Console/AppConsole.vala:47 src/Gtk/AppGtk.vala:136 +#: src/Console/AppConsole.vala:47 src/Gtk/AppGtk.vala:133 msgid "Syntax" msgstr "Syntax" @@ -224,7 +228,7 @@ msgstr "Herunterladen bestimmter Kernel" msgid "Delete cached info about available kernels" msgstr "Löschen zwischengespeicherter Informationen über verfügbare Kernel" -#: src/Console/AppConsole.vala:63 src/Gtk/AppGtk.vala:138 +#: src/Console/AppConsole.vala:63 src/Gtk/AppGtk.vala:135 msgid "Options" msgstr "Optionen" @@ -256,7 +260,7 @@ msgstr "Ein oder mehrere, durch Kommas getrennte" msgid "The currently running kernel will always be ignored" msgstr "Der aktuell laufende Kernel wird immer ignoriert" -#: src/Console/AppConsole.vala:163 src/Gtk/AppGtk.vala:122 +#: src/Console/AppConsole.vala:163 src/Gtk/AppGtk.vala:119 msgid "Unknown option" msgstr "Unbekannte Option" @@ -299,20 +303,20 @@ msgstr "um alle Befehle aufzulisten" msgid "Notifications disabled in settings" msgstr "Benachrichtigungen sind deaktiviert" -#: src/Console/AppConsole.vala:339 +#: src/Console/AppConsole.vala:342 #, c-format msgid "Kernel %s Available" msgstr "Kernel %s verfügbar" -#: src/Console/AppConsole.vala:343 src/Gtk/SettingsDialog.vala:166 +#: src/Console/AppConsole.vala:346 src/Gtk/SettingsDialog.vala:166 msgid "Show" msgstr "Zeigen" -#: src/Console/AppConsole.vala:344 src/Gtk/MainWindow.vala:296 +#: src/Console/AppConsole.vala:347 src/Gtk/MainWindow.vala:296 msgid "Install" msgstr "Installieren" -#: src/Console/AppConsole.vala:347 +#: src/Console/AppConsole.vala:350 msgid "Previously notified" msgstr "Zuvor gemeldet" @@ -352,15 +356,15 @@ msgstr "Dokumentierer" msgid "Third Party Inclusions" msgstr "Einschlüsse von Drittparteien" -#: src/Gtk/AppGtk.vala:136 +#: src/Gtk/AppGtk.vala:133 msgid "options" msgstr "optionen" -#: src/Gtk/AppGtk.vala:140 +#: src/Gtk/AppGtk.vala:137 msgid "Print debug information" msgstr "Zeige Debug Informationen" -#: src/Gtk/AppGtk.vala:141 +#: src/Gtk/AppGtk.vala:138 msgid "Show all options" msgstr "Alle Optionen anzeigen" diff --git a/po/el.po b/po/el.po index 4a099226..d38ee139 100644 --- a/po/el.po +++ b/po/el.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-04-04 17:58-0400\n" +"POT-Creation-Date: 2023-04-06 18:59-0400\n" "PO-Revision-Date: 2023-01-10 02:03-0600\n" "Last-Translator: Vasilis Kosmidis \n" "Language-Team: Greek\n" @@ -156,6 +156,10 @@ msgstr "Εγκατάσταση του πυρήνα έκδοσης %s ; (ν/ό):" msgid "Called from" msgstr "Κλήθηκε από" +#: src/Common/Main.vala:351 +msgid "at logon" +msgstr "κατά την εκκίνηση" + #: src/Common/Main.vala:352 msgid "" "This file is over-written and executed again whenever settings are saved in" @@ -172,7 +176,7 @@ msgstr "Οι ειδοποιήσεις είναι απενεργοποιημέν msgid "File not found: %s" msgstr "Το αρχείο δεν βρέθηκε: %s" -#: src/Console/AppConsole.vala:47 src/Gtk/AppGtk.vala:136 +#: src/Console/AppConsole.vala:47 src/Gtk/AppGtk.vala:133 msgid "Syntax" msgstr "Σύνταξη" @@ -225,7 +229,7 @@ msgid "Delete cached info about available kernels" msgstr "" "Διαγραφή προσωρινά αποθηκευμένων πληροφοριών σχετικά με διαθέσιμους πυρήνες" -#: src/Console/AppConsole.vala:63 src/Gtk/AppGtk.vala:138 +#: src/Console/AppConsole.vala:63 src/Gtk/AppGtk.vala:135 msgid "Options" msgstr "Επιλογές" @@ -257,7 +261,7 @@ msgstr "Ένα ή περισσότερα, διαχωρισμένα με κόμμ msgid "The currently running kernel will always be ignored" msgstr "Αυτός ο πυρήνας είναι ήδη εγκατεστημένος." -#: src/Console/AppConsole.vala:163 src/Gtk/AppGtk.vala:122 +#: src/Console/AppConsole.vala:163 src/Gtk/AppGtk.vala:119 msgid "Unknown option" msgstr "Άγνωστη επιλογή" @@ -299,20 +303,20 @@ msgstr "για να παραθέσετε όλες τις εντολές" msgid "Notifications disabled in settings" msgstr "Οι ειδοποιήσεις είναι απενεργοποιημένες στις ρυθμίσεις" -#: src/Console/AppConsole.vala:339 +#: src/Console/AppConsole.vala:342 #, c-format msgid "Kernel %s Available" msgstr "Πυρήνας %s διαθέσιμος" -#: src/Console/AppConsole.vala:343 src/Gtk/SettingsDialog.vala:166 +#: src/Console/AppConsole.vala:346 src/Gtk/SettingsDialog.vala:166 msgid "Show" msgstr "Προβολή" -#: src/Console/AppConsole.vala:344 src/Gtk/MainWindow.vala:296 +#: src/Console/AppConsole.vala:347 src/Gtk/MainWindow.vala:296 msgid "Install" msgstr "Εγκατάσταση" -#: src/Console/AppConsole.vala:347 +#: src/Console/AppConsole.vala:350 msgid "Previously notified" msgstr "Έχει ήδη κοινοποιηθεί" @@ -352,15 +356,15 @@ msgstr "Τεκμηριωτές" msgid "Third Party Inclusions" msgstr "Συμπεριλήψεις τρίτων" -#: src/Gtk/AppGtk.vala:136 +#: src/Gtk/AppGtk.vala:133 msgid "options" msgstr "επιλογές" -#: src/Gtk/AppGtk.vala:140 +#: src/Gtk/AppGtk.vala:137 msgid "Print debug information" msgstr "Εκτύπωση πληροφοριών εντοπισμού σφαλμάτων" -#: src/Gtk/AppGtk.vala:141 +#: src/Gtk/AppGtk.vala:138 msgid "Show all options" msgstr "Εμφάνιση όλων των επιλογών" diff --git a/po/es.po b/po/es.po index 96f346d3..ee161d1d 100644 --- a/po/es.po +++ b/po/es.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-04-04 17:58-0400\n" +"POT-Creation-Date: 2023-04-06 18:59-0400\n" "PO-Revision-Date: 2018-01-03 02:03-0600\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish\n" @@ -156,6 +156,10 @@ msgstr "Instalar la versión del kernel %s? (s/n): " msgid "Called from" msgstr "Llamado desde" +#: src/Common/Main.vala:351 +msgid "at logon" +msgstr "al inicio" + #: src/Common/Main.vala:352 msgid "" "This file is over-written and executed again whenever settings are saved in" @@ -172,7 +176,7 @@ msgstr "Las notificaciones están deshabilitadas" msgid "File not found: %s" msgstr "Archivo no encontrado: %s" -#: src/Console/AppConsole.vala:47 src/Gtk/AppGtk.vala:136 +#: src/Console/AppConsole.vala:47 src/Gtk/AppGtk.vala:133 msgid "Syntax" msgstr "Sintaxis" @@ -224,7 +228,7 @@ msgstr "Descargar kernels especificados" msgid "Delete cached info about available kernels" msgstr "Eliminar información almacenada en caché sobre los kernels disponibles" -#: src/Console/AppConsole.vala:63 src/Gtk/AppGtk.vala:138 +#: src/Console/AppConsole.vala:63 src/Gtk/AppGtk.vala:135 msgid "Options" msgstr "Opciones" @@ -256,7 +260,7 @@ msgstr "Uno o más, separados por comas" msgid "The currently running kernel will always be ignored" msgstr "El kernel que se está ejecutando actualmente siempre será ignorado" -#: src/Console/AppConsole.vala:163 src/Gtk/AppGtk.vala:122 +#: src/Console/AppConsole.vala:163 src/Gtk/AppGtk.vala:119 msgid "Unknown option" msgstr "Opción desconocida" @@ -297,20 +301,20 @@ msgstr "para enumerar todos los cmmands" msgid "Notifications disabled in settings" msgstr "Notificaciones deshabilitadas en la configuración" -#: src/Console/AppConsole.vala:339 +#: src/Console/AppConsole.vala:342 #, c-format msgid "Kernel %s Available" msgstr "Kernel %s Disponible" -#: src/Console/AppConsole.vala:343 src/Gtk/SettingsDialog.vala:166 +#: src/Console/AppConsole.vala:346 src/Gtk/SettingsDialog.vala:166 msgid "Show" msgstr "Mostrar" -#: src/Console/AppConsole.vala:344 src/Gtk/MainWindow.vala:296 +#: src/Console/AppConsole.vala:347 src/Gtk/MainWindow.vala:296 msgid "Install" msgstr "Instalar" -#: src/Console/AppConsole.vala:347 +#: src/Console/AppConsole.vala:350 msgid "Previously notified" msgstr "Notificado previamente" @@ -350,15 +354,15 @@ msgstr "Documentadores" msgid "Third Party Inclusions" msgstr "Herramientas de Terceros" -#: src/Gtk/AppGtk.vala:136 +#: src/Gtk/AppGtk.vala:133 msgid "options" msgstr "opciones" -#: src/Gtk/AppGtk.vala:140 +#: src/Gtk/AppGtk.vala:137 msgid "Print debug information" msgstr "Mostrar información de depuración" -#: src/Gtk/AppGtk.vala:141 +#: src/Gtk/AppGtk.vala:138 msgid "Show all options" msgstr "Mostrar todas las opciones" diff --git a/po/fr.po b/po/fr.po index 358c3f97..3eb9f13e 100644 --- a/po/fr.po +++ b/po/fr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-04-04 17:58-0400\n" +"POT-Creation-Date: 2023-04-06 18:59-0400\n" "PO-Revision-Date: 2018-08-05 15:50+0200\n" "Last-Translator: Yolateng0 \n" "Language-Team: French\n" @@ -156,6 +156,10 @@ msgstr "Installer le noyau en version %s ? (y/n): " msgid "Called from" msgstr "Appelé à partir de" +#: src/Common/Main.vala:351 +msgid "at logon" +msgstr "au démarrage" + #: src/Common/Main.vala:352 msgid "" "This file is over-written and executed again whenever settings are saved in" @@ -172,7 +176,7 @@ msgstr "Les notifications sont désactivées" msgid "File not found: %s" msgstr "Fichier introuvable : %s" -#: src/Console/AppConsole.vala:47 src/Gtk/AppGtk.vala:136 +#: src/Console/AppConsole.vala:47 src/Gtk/AppGtk.vala:133 msgid "Syntax" msgstr "Syntaxe" @@ -224,7 +228,7 @@ msgstr "Télécharger les noyaux spécifiés" msgid "Delete cached info about available kernels" msgstr "Supprimer les informations mises en cache sur les noyaux disponibles" -#: src/Console/AppConsole.vala:63 src/Gtk/AppGtk.vala:138 +#: src/Console/AppConsole.vala:63 src/Gtk/AppGtk.vala:135 msgid "Options" msgstr "Options" @@ -256,7 +260,7 @@ msgstr "Une ou plusieurs, séparées par des virgules" msgid "The currently running kernel will always be ignored" msgstr "Le noyau en cours d'exécution sera toujours ignoré" -#: src/Console/AppConsole.vala:163 src/Gtk/AppGtk.vala:122 +#: src/Console/AppConsole.vala:163 src/Gtk/AppGtk.vala:119 msgid "Unknown option" msgstr "Option inconnue" @@ -299,20 +303,20 @@ msgstr "pour afficher toutes les commandes" msgid "Notifications disabled in settings" msgstr "Notifications désactivées dans les paramètres" -#: src/Console/AppConsole.vala:339 +#: src/Console/AppConsole.vala:342 #, c-format msgid "Kernel %s Available" msgstr "Paquet %s disponibles" -#: src/Console/AppConsole.vala:343 src/Gtk/SettingsDialog.vala:166 +#: src/Console/AppConsole.vala:346 src/Gtk/SettingsDialog.vala:166 msgid "Show" msgstr "Montrer" -#: src/Console/AppConsole.vala:344 src/Gtk/MainWindow.vala:296 +#: src/Console/AppConsole.vala:347 src/Gtk/MainWindow.vala:296 msgid "Install" msgstr "Installer" -#: src/Console/AppConsole.vala:347 +#: src/Console/AppConsole.vala:350 msgid "Previously notified" msgstr "Précédemment notifié" @@ -352,15 +356,15 @@ msgstr "Documentalistes" msgid "Third Party Inclusions" msgstr "Dépendances Tierces" -#: src/Gtk/AppGtk.vala:136 +#: src/Gtk/AppGtk.vala:133 msgid "options" msgstr "options" -#: src/Gtk/AppGtk.vala:140 +#: src/Gtk/AppGtk.vala:137 msgid "Print debug information" msgstr "Afficher les informations de débogage" -#: src/Gtk/AppGtk.vala:141 +#: src/Gtk/AppGtk.vala:138 msgid "Show all options" msgstr "Afficher toutes les options" diff --git a/po/hr.po b/po/hr.po index 92a08b74..d4278173 100644 --- a/po/hr.po +++ b/po/hr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-04-04 17:58-0400\n" +"POT-Creation-Date: 2023-04-06 18:59-0400\n" "PO-Revision-Date: 2022-09-22 12:13+0200\n" "Last-Translator: gogo \n" "Language-Team: Croatian\n" @@ -156,6 +156,10 @@ msgstr "Instaliraj kernel inačice %s ? (d/n): " msgid "Called from" msgstr "Pozvano od" +#: src/Common/Main.vala:351 +msgid "at logon" +msgstr "indításkor" + #: src/Common/Main.vala:352 msgid "" "This file is over-written and executed again whenever settings are saved in" @@ -171,7 +175,7 @@ msgstr "Obavijesti su onemogućene" msgid "File not found: %s" msgstr "Datoteka nije pronađena: %s" -#: src/Console/AppConsole.vala:47 src/Gtk/AppGtk.vala:136 +#: src/Console/AppConsole.vala:47 src/Gtk/AppGtk.vala:133 msgid "Syntax" msgstr "Sintaksa" @@ -223,7 +227,7 @@ msgstr "Preuzmi određene kernele" msgid "Delete cached info about available kernels" msgstr "Brisanje predmemoriranih podataka o dostupnim jezgrama" -#: src/Console/AppConsole.vala:63 src/Gtk/AppGtk.vala:138 +#: src/Console/AppConsole.vala:63 src/Gtk/AppGtk.vala:135 msgid "Options" msgstr "Mogućnosti" @@ -255,7 +259,7 @@ msgstr "Jedan ili više njih, odvojeni zarezom" msgid "The currently running kernel will always be ignored" msgstr "Trenutno pokrenuta jezgra uvijek će se zanemariti" -#: src/Console/AppConsole.vala:163 src/Gtk/AppGtk.vala:122 +#: src/Console/AppConsole.vala:163 src/Gtk/AppGtk.vala:119 msgid "Unknown option" msgstr "Nepoznata mogućnost" @@ -296,20 +300,20 @@ msgstr "za prikaz svih mogućnosti" msgid "Notifications disabled in settings" msgstr "Obavijesti onemogućene u postavkama" -#: src/Console/AppConsole.vala:339 +#: src/Console/AppConsole.vala:342 #, c-format msgid "Kernel %s Available" msgstr "Kernel %s je dostupan" -#: src/Console/AppConsole.vala:343 src/Gtk/SettingsDialog.vala:166 +#: src/Console/AppConsole.vala:346 src/Gtk/SettingsDialog.vala:166 msgid "Show" msgstr "Prikaži" -#: src/Console/AppConsole.vala:344 src/Gtk/MainWindow.vala:296 +#: src/Console/AppConsole.vala:347 src/Gtk/MainWindow.vala:296 msgid "Install" msgstr "Instaliraj" -#: src/Console/AppConsole.vala:347 +#: src/Console/AppConsole.vala:350 msgid "Previously notified" msgstr "Prethodno prijavljeno" @@ -349,15 +353,15 @@ msgstr "Autori dokumentacije" msgid "Third Party Inclusions" msgstr "Uključene treće strane" -#: src/Gtk/AppGtk.vala:136 +#: src/Gtk/AppGtk.vala:133 msgid "options" msgstr "mogućnosti" -#: src/Gtk/AppGtk.vala:140 +#: src/Gtk/AppGtk.vala:137 msgid "Print debug information" msgstr "Ispiši informacije otklanjanja grešaka" -#: src/Gtk/AppGtk.vala:141 +#: src/Gtk/AppGtk.vala:138 msgid "Show all options" msgstr "Prikaži sve mogućnosti" diff --git a/po/it.po b/po/it.po index 30d8a118..5e58b8f7 100644 --- a/po/it.po +++ b/po/it.po @@ -2,9 +2,10 @@ msgid "" msgstr "" "Project-Id-Version: mainline 1.0.15\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-04-04 17:58-0400\n" +"POT-Creation-Date: 2023-04-06 18:59-0400\n" "PO-Revision-Date: 2020-08-22 15:35+0100\n" -"Last-Translator: Demetrio Mendozzi, Albano Battistella \n" +"Last-Translator: Demetrio Mendozzi, Albano Battistella " +"\n" "Language-Team: Italian\n" "Language: it\n" "MIME-Version: 1.0\n" @@ -154,6 +155,10 @@ msgstr "Installare la versione del kernel %s ? (y/n): " msgid "Called from" msgstr "Chiamato da" +#: src/Common/Main.vala:351 +msgid "at logon" +msgstr "all'avvio" + #: src/Common/Main.vala:352 msgid "" "This file is over-written and executed again whenever settings are saved in" @@ -170,7 +175,7 @@ msgstr "Le notifiche sono disabilitate" msgid "File not found: %s" msgstr "File non trovato: %s" -#: src/Console/AppConsole.vala:47 src/Gtk/AppGtk.vala:136 +#: src/Console/AppConsole.vala:47 src/Gtk/AppGtk.vala:133 msgid "Syntax" msgstr "Sintassi" @@ -184,8 +189,9 @@ msgstr "Verifica aggiornamenti del kernel" #: src/Console/AppConsole.vala:52 msgid "Check for kernel updates and notify current user" -msgstr "Verifica la disponibilità di aggiornamenti del kernel" -"ed avvisa l'utente corrente" +msgstr "" +"Verifica la disponibilità di aggiornamenti del kerneled avvisa l'utente " +"corrente" #: src/Console/AppConsole.vala:53 msgid "List all available mainline kernels" @@ -223,7 +229,7 @@ msgstr "Scarica i kernel specificati" msgid "Delete cached info about available kernels" msgstr "Elimina le informazioni sui kernel disponibili dalla cache " -#: src/Console/AppConsole.vala:63 src/Gtk/AppGtk.vala:138 +#: src/Console/AppConsole.vala:63 src/Gtk/AppGtk.vala:135 msgid "Options" msgstr "Opzioni" @@ -255,7 +261,7 @@ msgstr "Uno o più, separati da virgola" msgid "The currently running kernel will always be ignored" msgstr "Il kernel attualmente in esecuzione sarà sempre ignorato" -#: src/Console/AppConsole.vala:163 src/Gtk/AppGtk.vala:122 +#: src/Console/AppConsole.vala:163 src/Gtk/AppGtk.vala:119 msgid "Unknown option" msgstr "Opzione sconosciuta" @@ -296,20 +302,20 @@ msgstr "elencare tutti i comandi" msgid "Notifications disabled in settings" msgstr "Le notifiche sono disabilitate" -#: src/Console/AppConsole.vala:339 +#: src/Console/AppConsole.vala:342 #, c-format msgid "Kernel %s Available" msgstr "Kernel %s Disponibile" -#: src/Console/AppConsole.vala:343 src/Gtk/SettingsDialog.vala:166 +#: src/Console/AppConsole.vala:346 src/Gtk/SettingsDialog.vala:166 msgid "Show" msgstr "Mostra" -#: src/Console/AppConsole.vala:344 src/Gtk/MainWindow.vala:296 +#: src/Console/AppConsole.vala:347 src/Gtk/MainWindow.vala:296 msgid "Install" msgstr "Installa" -#: src/Console/AppConsole.vala:347 +#: src/Console/AppConsole.vala:350 msgid "Previously notified" msgstr "Notificato in precedenza" @@ -349,15 +355,15 @@ msgstr "Documentatori" msgid "Third Party Inclusions" msgstr "Inclusioni di terze parti" -#: src/Gtk/AppGtk.vala:136 +#: src/Gtk/AppGtk.vala:133 msgid "options" msgstr "opzioni" -#: src/Gtk/AppGtk.vala:140 +#: src/Gtk/AppGtk.vala:137 msgid "Print debug information" msgstr "Stampa le informazioni di debug" -#: src/Gtk/AppGtk.vala:141 +#: src/Gtk/AppGtk.vala:138 msgid "Show all options" msgstr "Mostra tutte le opzioni" diff --git a/po/ko.po b/po/ko.po index c6e96580..09e84b71 100644 --- a/po/ko.po +++ b/po/ko.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline 1.0.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-04-04 17:58-0400\n" +"POT-Creation-Date: 2023-04-06 18:59-0400\n" "PO-Revision-Date: 2022-09-28 11:48+0900\n" "Last-Translator: Kevin Kim \n" "Language-Team: Korean\n" @@ -156,6 +156,10 @@ msgstr "커널 %s 버전을 설치하시겠습니까? (y/n): " msgid "Called from" msgstr "에서 호출" +#: src/Common/Main.vala:351 +msgid "at logon" +msgstr "로그온 시" + #: src/Common/Main.vala:352 msgid "" "This file is over-written and executed again whenever settings are saved in" @@ -170,7 +174,7 @@ msgstr "알림이 비활성화 되었습니다" msgid "File not found: %s" msgstr "파일을 찾을 수 없음: %s" -#: src/Console/AppConsole.vala:47 src/Gtk/AppGtk.vala:136 +#: src/Console/AppConsole.vala:47 src/Gtk/AppGtk.vala:133 msgid "Syntax" msgstr "문법" @@ -222,7 +226,7 @@ msgstr "지정한 커널 다운로드" msgid "Delete cached info about available kernels" msgstr "사용 가능한 커널에 대한 캐시된 정보 삭제" -#: src/Console/AppConsole.vala:63 src/Gtk/AppGtk.vala:138 +#: src/Console/AppConsole.vala:63 src/Gtk/AppGtk.vala:135 msgid "Options" msgstr "옵션" @@ -254,7 +258,7 @@ msgstr "하나 이상, 쉼표로 구분" msgid "The currently running kernel will always be ignored" msgstr "현재 실행중인 커널은 항상 무시됩니다" -#: src/Console/AppConsole.vala:163 src/Gtk/AppGtk.vala:122 +#: src/Console/AppConsole.vala:163 src/Gtk/AppGtk.vala:119 msgid "Unknown option" msgstr "알 수 없는 옵션" @@ -295,20 +299,20 @@ msgstr "모든 명령어 나열" msgid "Notifications disabled in settings" msgstr "설정에서 비활성화된 알림" -#: src/Console/AppConsole.vala:339 +#: src/Console/AppConsole.vala:342 #, c-format msgid "Kernel %s Available" msgstr "커널 %s 사용 가능" -#: src/Console/AppConsole.vala:343 src/Gtk/SettingsDialog.vala:166 +#: src/Console/AppConsole.vala:346 src/Gtk/SettingsDialog.vala:166 msgid "Show" msgstr "보이기" -#: src/Console/AppConsole.vala:344 src/Gtk/MainWindow.vala:296 +#: src/Console/AppConsole.vala:347 src/Gtk/MainWindow.vala:296 msgid "Install" msgstr "설치" -#: src/Console/AppConsole.vala:347 +#: src/Console/AppConsole.vala:350 msgid "Previously notified" msgstr "이전에 통보됨" @@ -348,15 +352,15 @@ msgstr "문서작성" msgid "Third Party Inclusions" msgstr "서드파티 포함" -#: src/Gtk/AppGtk.vala:136 +#: src/Gtk/AppGtk.vala:133 msgid "options" msgstr "옵션" -#: src/Gtk/AppGtk.vala:140 +#: src/Gtk/AppGtk.vala:137 msgid "Print debug information" msgstr "디버그 정보 출력" -#: src/Gtk/AppGtk.vala:141 +#: src/Gtk/AppGtk.vala:138 msgid "Show all options" msgstr "모든 옵션 보기" diff --git a/po/messages.pot b/po/messages.pot index ad2aa57f..d0962e8f 100644 --- a/po/messages.pot +++ b/po/messages.pot @@ -6,9 +6,9 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: mainline 1.2.0\n" +"Project-Id-Version: mainline 1.2.2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-04-04 18:02-0400\n" +"POT-Creation-Date: 2023-04-06 18:59-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -160,6 +160,10 @@ msgstr "" msgid "Called from" msgstr "" +#: src/Common/Main.vala:351 +msgid "at logon" +msgstr "" + #: src/Common/Main.vala:352 msgid "" "This file is over-written and executed again whenever settings are saved in" @@ -174,7 +178,7 @@ msgstr "" msgid "File not found: %s" msgstr "" -#: src/Console/AppConsole.vala:47 src/Gtk/AppGtk.vala:136 +#: src/Console/AppConsole.vala:47 src/Gtk/AppGtk.vala:133 msgid "Syntax" msgstr "" @@ -226,7 +230,7 @@ msgstr "" msgid "Delete cached info about available kernels" msgstr "" -#: src/Console/AppConsole.vala:63 src/Gtk/AppGtk.vala:138 +#: src/Console/AppConsole.vala:63 src/Gtk/AppGtk.vala:135 msgid "Options" msgstr "" @@ -258,7 +262,7 @@ msgstr "" msgid "The currently running kernel will always be ignored" msgstr "" -#: src/Console/AppConsole.vala:163 src/Gtk/AppGtk.vala:122 +#: src/Console/AppConsole.vala:163 src/Gtk/AppGtk.vala:119 msgid "Unknown option" msgstr "" @@ -299,20 +303,20 @@ msgstr "" msgid "Notifications disabled in settings" msgstr "" -#: src/Console/AppConsole.vala:339 +#: src/Console/AppConsole.vala:342 #, c-format msgid "Kernel %s Available" msgstr "" -#: src/Console/AppConsole.vala:343 src/Gtk/SettingsDialog.vala:166 +#: src/Console/AppConsole.vala:346 src/Gtk/SettingsDialog.vala:166 msgid "Show" msgstr "" -#: src/Console/AppConsole.vala:344 src/Gtk/MainWindow.vala:296 +#: src/Console/AppConsole.vala:347 src/Gtk/MainWindow.vala:296 msgid "Install" msgstr "" -#: src/Console/AppConsole.vala:347 +#: src/Console/AppConsole.vala:350 msgid "Previously notified" msgstr "" @@ -352,15 +356,15 @@ msgstr "" msgid "Third Party Inclusions" msgstr "" -#: src/Gtk/AppGtk.vala:136 +#: src/Gtk/AppGtk.vala:133 msgid "options" msgstr "" -#: src/Gtk/AppGtk.vala:140 +#: src/Gtk/AppGtk.vala:137 msgid "Print debug information" msgstr "" -#: src/Gtk/AppGtk.vala:141 +#: src/Gtk/AppGtk.vala:138 msgid "Show all options" msgstr "" diff --git a/po/nl.po b/po/nl.po index 4acca1e5..cd2eb0a7 100644 --- a/po/nl.po +++ b/po/nl.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-04-04 17:58-0400\n" +"POT-Creation-Date: 2023-04-06 18:59-0400\n" "PO-Revision-Date: 2020-08-23 13:55+0200\n" "Last-Translator: Heimen Stoffels \n" "Language-Team: Dutch (Netherlands)\n" @@ -156,6 +156,10 @@ msgstr "Wilt u versie %s installeren? (j/n): " msgid "Called from" msgstr "Aangeroepen door" +#: src/Common/Main.vala:351 +msgid "at logon" +msgstr "bij het opstarten" + #: src/Common/Main.vala:352 msgid "" "This file is over-written and executed again whenever settings are saved in" @@ -172,7 +176,7 @@ msgstr "Meldingen zijn uitgeschakeld" msgid "File not found: %s" msgstr "Bestand niet gevonden: %s" -#: src/Console/AppConsole.vala:47 src/Gtk/AppGtk.vala:136 +#: src/Console/AppConsole.vala:47 src/Gtk/AppGtk.vala:133 msgid "Syntax" msgstr "Syntaxis" @@ -224,7 +228,7 @@ msgstr "Opgegeven kernels downloaden" msgid "Delete cached info about available kernels" msgstr "Informatie over beschikbare kernels in de cache verwijderen" -#: src/Console/AppConsole.vala:63 src/Gtk/AppGtk.vala:138 +#: src/Console/AppConsole.vala:63 src/Gtk/AppGtk.vala:135 msgid "Options" msgstr "Opties" @@ -256,7 +260,7 @@ msgstr "Een of meer, komma-gescheiden" msgid "The currently running kernel will always be ignored" msgstr "De momenteel actieve kernel wordt altijd genegeerd" -#: src/Console/AppConsole.vala:163 src/Gtk/AppGtk.vala:122 +#: src/Console/AppConsole.vala:163 src/Gtk/AppGtk.vala:119 msgid "Unknown option" msgstr "Onbekende optie" @@ -298,20 +302,20 @@ msgstr "om alle opdrachten te tonen" msgid "Notifications disabled in settings" msgstr "Meldingen uitgeschakeld in instellingen" -#: src/Console/AppConsole.vala:339 +#: src/Console/AppConsole.vala:342 #, c-format msgid "Kernel %s Available" msgstr "Kernel %s is beschikbaar" -#: src/Console/AppConsole.vala:343 src/Gtk/SettingsDialog.vala:166 +#: src/Console/AppConsole.vala:346 src/Gtk/SettingsDialog.vala:166 msgid "Show" msgstr "Tonen" -#: src/Console/AppConsole.vala:344 src/Gtk/MainWindow.vala:296 +#: src/Console/AppConsole.vala:347 src/Gtk/MainWindow.vala:296 msgid "Install" msgstr "Installeren" -#: src/Console/AppConsole.vala:347 +#: src/Console/AppConsole.vala:350 msgid "Previously notified" msgstr "Eerder gemeld" @@ -351,15 +355,15 @@ msgstr "Documenteerders" msgid "Third Party Inclusions" msgstr "Externe code" -#: src/Gtk/AppGtk.vala:136 +#: src/Gtk/AppGtk.vala:133 msgid "options" msgstr "opties" -#: src/Gtk/AppGtk.vala:140 +#: src/Gtk/AppGtk.vala:137 msgid "Print debug information" msgstr "Foutopsporingsinformatie tonen" -#: src/Gtk/AppGtk.vala:141 +#: src/Gtk/AppGtk.vala:138 msgid "Show all options" msgstr "Alle opties tonen" diff --git a/po/pl.po b/po/pl.po index 77a57c5d..a5f30be5 100644 --- a/po/pl.po +++ b/po/pl.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-04-04 17:58-0400\n" +"POT-Creation-Date: 2023-04-06 18:59-0400\n" "PO-Revision-Date: 2023-04-02 21:31+0200\n" "Last-Translator: Matthaiks\n" "Language-Team: Polish\n" @@ -155,6 +155,10 @@ msgstr "Zainstalować wersję jądra %s? (t/n): " msgid "Called from" msgstr "Wywołano z" +#: src/Common/Main.vala:351 +msgid "at logon" +msgstr "przy starcie" + #: src/Common/Main.vala:352 msgid "" "This file is over-written and executed again whenever settings are saved in" @@ -171,7 +175,7 @@ msgstr "Powiadomienia są wyłączone" msgid "File not found: %s" msgstr "Nie znaleziono pliku: %s" -#: src/Console/AppConsole.vala:47 src/Gtk/AppGtk.vala:136 +#: src/Console/AppConsole.vala:47 src/Gtk/AppGtk.vala:133 msgid "Syntax" msgstr "Składnia" @@ -223,7 +227,7 @@ msgstr "Pobierz wybrane jądra" msgid "Delete cached info about available kernels" msgstr "Usuń informacje z pamięci podręcznej o dostępnych jądrach" -#: src/Console/AppConsole.vala:63 src/Gtk/AppGtk.vala:138 +#: src/Console/AppConsole.vala:63 src/Gtk/AppGtk.vala:135 msgid "Options" msgstr "Opcje" @@ -255,7 +259,7 @@ msgstr "Jedno lub więcej, oddzielone przecinkami" msgid "The currently running kernel will always be ignored" msgstr "Aktualnie uruchomione jądro będzie zawsze ignorowane" -#: src/Console/AppConsole.vala:163 src/Gtk/AppGtk.vala:122 +#: src/Console/AppConsole.vala:163 src/Gtk/AppGtk.vala:119 msgid "Unknown option" msgstr "Nieznana opcja" @@ -296,20 +300,20 @@ msgstr "do wyświetlenia wszystkich poleceń" msgid "Notifications disabled in settings" msgstr "Powiadomienia wyłączone w ustawieniach" -#: src/Console/AppConsole.vala:339 +#: src/Console/AppConsole.vala:342 #, c-format msgid "Kernel %s Available" msgstr "Dostępne %s jądra" -#: src/Console/AppConsole.vala:343 src/Gtk/SettingsDialog.vala:166 +#: src/Console/AppConsole.vala:346 src/Gtk/SettingsDialog.vala:166 msgid "Show" msgstr "Pokaż" -#: src/Console/AppConsole.vala:344 src/Gtk/MainWindow.vala:296 +#: src/Console/AppConsole.vala:347 src/Gtk/MainWindow.vala:296 msgid "Install" msgstr "Zainstaluj" -#: src/Console/AppConsole.vala:347 +#: src/Console/AppConsole.vala:350 msgid "Previously notified" msgstr "Wcześniej powiadomiono" @@ -349,15 +353,15 @@ msgstr "Dokumentujący" msgid "Third Party Inclusions" msgstr "Włączenia stron trzecich" -#: src/Gtk/AppGtk.vala:136 +#: src/Gtk/AppGtk.vala:133 msgid "options" msgstr "opcje" -#: src/Gtk/AppGtk.vala:140 +#: src/Gtk/AppGtk.vala:137 msgid "Print debug information" msgstr "Wypisz informacje debugujące" -#: src/Gtk/AppGtk.vala:141 +#: src/Gtk/AppGtk.vala:138 msgid "Show all options" msgstr "Pokaż wszystkie opcje" diff --git a/po/ru.po b/po/ru.po index abecaf39..9ec23769 100644 --- a/po/ru.po +++ b/po/ru.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-04-04 17:58-0400\n" +"POT-Creation-Date: 2023-04-06 18:59-0400\n" "PO-Revision-Date: 2023-04-02 17:50+0300\n" "Last-Translator: Faust3000 (Original) | Danik2343 (Update Transaltion) " "\n" @@ -157,6 +157,10 @@ msgstr "Установить версию ядра %s ? (y/n): " msgid "Called from" msgstr "Вызван из" +#: src/Common/Main.vala:351 +msgid "at logon" +msgstr "при запуске" + #: src/Common/Main.vala:352 msgid "" "This file is over-written and executed again whenever settings are saved in" @@ -172,7 +176,7 @@ msgstr "Уведомления отключены" msgid "File not found: %s" msgstr "Файл не найден: %s" -#: src/Console/AppConsole.vala:47 src/Gtk/AppGtk.vala:136 +#: src/Console/AppConsole.vala:47 src/Gtk/AppGtk.vala:133 msgid "Syntax" msgstr "Синтаксис" @@ -224,7 +228,7 @@ msgstr "Скачать указанные ядра" msgid "Delete cached info about available kernels" msgstr "Удаление кэшированной информации о доступных ядрах" -#: src/Console/AppConsole.vala:63 src/Gtk/AppGtk.vala:138 +#: src/Console/AppConsole.vala:63 src/Gtk/AppGtk.vala:135 msgid "Options" msgstr "Параметры" @@ -256,7 +260,7 @@ msgstr "Один или несколько, разделенных запяты msgid "The currently running kernel will always be ignored" msgstr "Текущее работающее ядро всегда будет игнорироваться" -#: src/Console/AppConsole.vala:163 src/Gtk/AppGtk.vala:122 +#: src/Console/AppConsole.vala:163 src/Gtk/AppGtk.vala:119 msgid "Unknown option" msgstr "Неизвестный параметр" @@ -297,20 +301,20 @@ msgstr "чтобы перечислить все команды" msgid "Notifications disabled in settings" msgstr "Уведомления отключены в настройках" -#: src/Console/AppConsole.vala:339 +#: src/Console/AppConsole.vala:342 #, c-format msgid "Kernel %s Available" msgstr "Доступно ядро %s" -#: src/Console/AppConsole.vala:343 src/Gtk/SettingsDialog.vala:166 +#: src/Console/AppConsole.vala:346 src/Gtk/SettingsDialog.vala:166 msgid "Show" msgstr "Показать" -#: src/Console/AppConsole.vala:344 src/Gtk/MainWindow.vala:296 +#: src/Console/AppConsole.vala:347 src/Gtk/MainWindow.vala:296 msgid "Install" msgstr "Установить" -#: src/Console/AppConsole.vala:347 +#: src/Console/AppConsole.vala:350 msgid "Previously notified" msgstr "Предварительно уведомлено" @@ -350,15 +354,15 @@ msgstr "Составители документации" msgid "Third Party Inclusions" msgstr "Включая сторонние инструменты" -#: src/Gtk/AppGtk.vala:136 +#: src/Gtk/AppGtk.vala:133 msgid "options" msgstr "параметры" -#: src/Gtk/AppGtk.vala:140 +#: src/Gtk/AppGtk.vala:137 msgid "Print debug information" msgstr "Распечатать отладочную информацию" -#: src/Gtk/AppGtk.vala:141 +#: src/Gtk/AppGtk.vala:138 msgid "Show all options" msgstr "Показать все параметры" diff --git a/po/sv.po b/po/sv.po index 9be43fd9..542e5268 100644 --- a/po/sv.po +++ b/po/sv.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-04-04 17:58-0400\n" +"POT-Creation-Date: 2023-04-06 18:59-0400\n" "PO-Revision-Date: 2018-01-13 16:56+0100\n" "Last-Translator: Åke Engelbrektson \n" "Language-Team:Swedish\n" @@ -156,6 +156,10 @@ msgstr "Installera kärnversion %s ? (j/n):" msgid "Called from" msgstr "Ringde från" +#: src/Common/Main.vala:351 +msgid "at logon" +msgstr "vid start" + #: src/Common/Main.vala:352 msgid "" "This file is over-written and executed again whenever settings are saved in" @@ -170,7 +174,7 @@ msgstr "Meddelanden är inaktiverade" msgid "File not found: %s" msgstr "Filen hittades inte: %s" -#: src/Console/AppConsole.vala:47 src/Gtk/AppGtk.vala:136 +#: src/Console/AppConsole.vala:47 src/Gtk/AppGtk.vala:133 msgid "Syntax" msgstr "Syntax" @@ -222,7 +226,7 @@ msgstr "Ladda ner angivna kärnor" msgid "Delete cached info about available kernels" msgstr "Ta bort cachelagrad information om tillgängliga kärnor" -#: src/Console/AppConsole.vala:63 src/Gtk/AppGtk.vala:138 +#: src/Console/AppConsole.vala:63 src/Gtk/AppGtk.vala:135 msgid "Options" msgstr "Alternativ" @@ -254,7 +258,7 @@ msgstr "En eller flera, kommaseparerade" msgid "The currently running kernel will always be ignored" msgstr "Den kärna som för närvarande körs ignoreras alltid" -#: src/Console/AppConsole.vala:163 src/Gtk/AppGtk.vala:122 +#: src/Console/AppConsole.vala:163 src/Gtk/AppGtk.vala:119 msgid "Unknown option" msgstr "Okänt alternativ" @@ -295,20 +299,20 @@ msgstr "för att lista alla kommandon" msgid "Notifications disabled in settings" msgstr "Meddelanden inaktiverade i inställningarna" -#: src/Console/AppConsole.vala:339 +#: src/Console/AppConsole.vala:342 #, c-format msgid "Kernel %s Available" msgstr "Kernel %s tillgängliga" -#: src/Console/AppConsole.vala:343 src/Gtk/SettingsDialog.vala:166 +#: src/Console/AppConsole.vala:346 src/Gtk/SettingsDialog.vala:166 msgid "Show" msgstr "Visa" -#: src/Console/AppConsole.vala:344 src/Gtk/MainWindow.vala:296 +#: src/Console/AppConsole.vala:347 src/Gtk/MainWindow.vala:296 msgid "Install" msgstr "Installera" -#: src/Console/AppConsole.vala:347 +#: src/Console/AppConsole.vala:350 msgid "Previously notified" msgstr "Tidigare anmält" @@ -348,15 +352,15 @@ msgstr "Dokumentalister" msgid "Third Party Inclusions" msgstr "Tredjepartsverktyg" -#: src/Gtk/AppGtk.vala:136 +#: src/Gtk/AppGtk.vala:133 msgid "options" msgstr "alternativ" -#: src/Gtk/AppGtk.vala:140 +#: src/Gtk/AppGtk.vala:137 msgid "Print debug information" msgstr "Skriv ut felsökningsinformation" -#: src/Gtk/AppGtk.vala:141 +#: src/Gtk/AppGtk.vala:138 msgid "Show all options" msgstr "Visa alla alternativ" diff --git a/po/tr.po b/po/tr.po index de714f85..1c770035 100644 --- a/po/tr.po +++ b/po/tr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-04-04 17:58-0400\n" +"POT-Creation-Date: 2023-04-06 18:59-0400\n" "PO-Revision-Date: 2022-08-06 16:48+0300\n" "Last-Translator: Sabri Ünal \n" "Language-Team: Turkish\n" @@ -157,6 +157,10 @@ msgstr "Linux Çekirdek Sürümü %s Kurulsun mu? (e/h): " msgid "Called from" msgstr "Çağrı konumu" +#: src/Common/Main.vala:351 +msgid "at logon" +msgstr "başlangıçta" + #: src/Common/Main.vala:352 msgid "" "This file is over-written and executed again whenever settings are saved in" @@ -172,7 +176,7 @@ msgstr "Bildirimler devre dışı bırakılmış" msgid "File not found: %s" msgstr "Dosya bulunamadı: %s" -#: src/Console/AppConsole.vala:47 src/Gtk/AppGtk.vala:136 +#: src/Console/AppConsole.vala:47 src/Gtk/AppGtk.vala:133 msgid "Syntax" msgstr "Sözdizimi" @@ -224,7 +228,7 @@ msgstr "Belirtilen çekirdekleri indir" msgid "Delete cached info about available kernels" msgstr "Kullanılabilir çekirdekler hakkında önbelleğe alınmış bilgileri silme" -#: src/Console/AppConsole.vala:63 src/Gtk/AppGtk.vala:138 +#: src/Console/AppConsole.vala:63 src/Gtk/AppGtk.vala:135 msgid "Options" msgstr "Seçenekler" @@ -256,7 +260,7 @@ msgstr "Bir veya daha fazla, virgülle ayrılmış" msgid "The currently running kernel will always be ignored" msgstr "Şu anda çalışan çekirdek her zaman yoksayılır" -#: src/Console/AppConsole.vala:163 src/Gtk/AppGtk.vala:122 +#: src/Console/AppConsole.vala:163 src/Gtk/AppGtk.vala:119 msgid "Unknown option" msgstr "Bilinmeyen seçenek" @@ -297,20 +301,20 @@ msgstr "tüm komutları listele" msgid "Notifications disabled in settings" msgstr "Ayarlarda devre dışı bırakılan bildirimler" -#: src/Console/AppConsole.vala:339 +#: src/Console/AppConsole.vala:342 #, c-format msgid "Kernel %s Available" msgstr "Çekirdek %s Kullanılabilir" -#: src/Console/AppConsole.vala:343 src/Gtk/SettingsDialog.vala:166 +#: src/Console/AppConsole.vala:346 src/Gtk/SettingsDialog.vala:166 msgid "Show" msgstr "Göster" -#: src/Console/AppConsole.vala:344 src/Gtk/MainWindow.vala:296 +#: src/Console/AppConsole.vala:347 src/Gtk/MainWindow.vala:296 msgid "Install" msgstr "Kur" -#: src/Console/AppConsole.vala:347 +#: src/Console/AppConsole.vala:350 msgid "Previously notified" msgstr "Daha önce bildirilmiş" @@ -350,15 +354,15 @@ msgstr "Belgelendirenler" msgid "Third Party Inclusions" msgstr "Üçüncü Taraf Eklemeler" -#: src/Gtk/AppGtk.vala:136 +#: src/Gtk/AppGtk.vala:133 msgid "options" msgstr "seçenekler" -#: src/Gtk/AppGtk.vala:140 +#: src/Gtk/AppGtk.vala:137 msgid "Print debug information" msgstr "Hata ayıklama bilgisini yazdır" -#: src/Gtk/AppGtk.vala:141 +#: src/Gtk/AppGtk.vala:138 msgid "Show all options" msgstr "Tüm seçenekleri göster" diff --git a/po/uk.po b/po/uk.po index 887823ee..de00703f 100644 --- a/po/uk.po +++ b/po/uk.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-04-04 17:58-0400\n" +"POT-Creation-Date: 2023-04-06 18:59-0400\n" "PO-Revision-Date: 2019-07-25 11:00+0300\n" "Last-Translator: Serhii Golovko \n" "Language-Team: Ukranian\n" @@ -156,6 +156,10 @@ msgstr "Встановити Ядро Версії %s ? (так/ні): " msgid "Called from" msgstr "Викликано з" +#: src/Common/Main.vala:351 +msgid "at logon" +msgstr "при запуску" + #: src/Common/Main.vala:352 msgid "" "This file is over-written and executed again whenever settings are saved in" @@ -171,7 +175,7 @@ msgstr "Повідомлення вимкнено" msgid "File not found: %s" msgstr "Файл не знайдено: %s" -#: src/Console/AppConsole.vala:47 src/Gtk/AppGtk.vala:136 +#: src/Console/AppConsole.vala:47 src/Gtk/AppGtk.vala:133 msgid "Syntax" msgstr "Синтаксис" @@ -223,7 +227,7 @@ msgstr "Завантажте конкретні ядра" msgid "Delete cached info about available kernels" msgstr "Видалити кешовану інформацію про доступні ядра" -#: src/Console/AppConsole.vala:63 src/Gtk/AppGtk.vala:138 +#: src/Console/AppConsole.vala:63 src/Gtk/AppGtk.vala:135 msgid "Options" msgstr "Параметри" @@ -255,7 +259,7 @@ msgstr "Один або кілька розділених комами" msgid "The currently running kernel will always be ignored" msgstr "Поточне ядро, що працює, завжди буде ігноруватися" -#: src/Console/AppConsole.vala:163 src/Gtk/AppGtk.vala:122 +#: src/Console/AppConsole.vala:163 src/Gtk/AppGtk.vala:119 msgid "Unknown option" msgstr "Невідомий параметр" @@ -296,20 +300,20 @@ msgstr "щоб відобразити всі команди" msgid "Notifications disabled in settings" msgstr "Сповіщення, вимкнені в налаштуваннях" -#: src/Console/AppConsole.vala:339 +#: src/Console/AppConsole.vala:342 #, c-format msgid "Kernel %s Available" msgstr "Ядро %s Доступне" -#: src/Console/AppConsole.vala:343 src/Gtk/SettingsDialog.vala:166 +#: src/Console/AppConsole.vala:346 src/Gtk/SettingsDialog.vala:166 msgid "Show" msgstr "Показати" -#: src/Console/AppConsole.vala:344 src/Gtk/MainWindow.vala:296 +#: src/Console/AppConsole.vala:347 src/Gtk/MainWindow.vala:296 msgid "Install" msgstr "Встановити" -#: src/Console/AppConsole.vala:347 +#: src/Console/AppConsole.vala:350 msgid "Previously notified" msgstr "Попередньо повідомлено" @@ -349,15 +353,15 @@ msgstr "Документатори" msgid "Third Party Inclusions" msgstr "Включення третіх осіб" -#: src/Gtk/AppGtk.vala:136 +#: src/Gtk/AppGtk.vala:133 msgid "options" msgstr "параметри" -#: src/Gtk/AppGtk.vala:140 +#: src/Gtk/AppGtk.vala:137 msgid "Print debug information" msgstr "Роздрукувати зневадження" -#: src/Gtk/AppGtk.vala:141 +#: src/Gtk/AppGtk.vala:138 msgid "Show all options" msgstr "Показати усі параметри" diff --git a/src/Common/LinuxKernel.vala b/src/Common/LinuxKernel.vala index 3b0bdc29..e0b68b2d 100644 --- a/src/Common/LinuxKernel.vala +++ b/src/Common/LinuxKernel.vala @@ -13,8 +13,8 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { public string page_uri = ""; public string notes = ""; - public int version_maj = -1; - public int version_min = -1; + public int version_major = -1; + public int version_minor = -1; public int version_point = -1; public int version_rc = -1; @@ -258,7 +258,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { if (k.is_invalid) continue; if (!k.is_installed) { - if (k.version_maj < threshold_major) continue; + if (k.version_major < threshold_major) continue; if (App.hide_unstable && k.is_unstable) continue; } @@ -406,7 +406,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { bool found = false; foreach (var k in kernel_list) { if (k.is_invalid) continue; - if (k.version_maj { foreach (string pkg_version in pkg_versions) { foreach (var k in kernel_list) { if (k.is_invalid) continue; - if (k.version_maj { kernel_oldest_installed = kernel_latest_installed; foreach(var k in kernel_list) { if (k.is_installed) { - if (kernel_latest_installed.version_maj==0) kernel_latest_installed = k; + if (kernel_latest_installed.version_major==0) kernel_latest_installed = k; kernel_oldest_installed = k; } } @@ -516,14 +516,14 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { if (k.is_invalid) continue; if (k.is_installed) continue; if (k.is_unstable && App.hide_unstable) continue; - if (k.version_maj < threshold_major) break; + if (k.version_major < threshold_major) break; if (k.compare_to(kernel_latest_installed)<=0) break; // kernel_list is sorted so first match is highest match - if (k.version_maj > kernel_latest_installed.version_maj) major_available = true; - else if (k.version_maj == kernel_latest_installed.version_maj) { - if (k.version_min > kernel_latest_installed.version_min) major_available = true; - else if (k.version_min == kernel_latest_installed.version_min) { + if (k.version_major > kernel_latest_installed.version_major) major_available = true; + else if (k.version_major == kernel_latest_installed.version_major) { + if (k.version_minor > kernel_latest_installed.version_minor) major_available = true; + else if (k.version_minor == kernel_latest_installed.version_minor) { if (k.version_point > kernel_latest_installed.version_point) minor_available = true; else if (k.version_point == kernel_latest_installed.version_point) { if (k.version_rc > kernel_latest_installed.version_rc) minor_available = true; @@ -554,7 +554,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { //Package.update_dpkg_list(); - if (App.previous_majors<0 || App.previous_majors>=kernel_latest_available.version_maj) { threshold_major=0; return; } + if (App.previous_majors<0 || App.previous_majors>=kernel_latest_available.version_major) { threshold_major=0; return; } // start from the running kernel and work down kernel_oldest_installed = new LinuxKernel.from_version(RUNNING_KERNEL); @@ -562,18 +562,18 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { foreach (var pkg in Package.dpkg_list) { if (!pkg.pname.has_prefix("linux-image-")) continue; var candidate = new LinuxKernel(pkg.version, false); - if (candidate.version_maj < kernel_oldest_installed.version_maj) kernel_oldest_installed = candidate; + if (candidate.version_major < kernel_oldest_installed.version_major) kernel_oldest_installed = candidate; } - threshold_major = kernel_latest_available.version_maj - App.previous_majors; - if (kernel_oldest_installed.version_maj < threshold_major) threshold_major = kernel_oldest_installed.version_maj; + threshold_major = kernel_latest_available.version_major - App.previous_majors; + if (kernel_oldest_installed.version_major < threshold_major) threshold_major = kernel_oldest_installed.version_major; vprint("threshold_major %d".printf(threshold_major),2); } public void split_version_string(string _version_string, out string ver_main) { ver_main = ""; - version_maj = 0; - version_min = 0; + version_major = 0; + version_minor = 0; version_point = 0; version_rc = -1; @@ -599,10 +599,10 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { } else { switch (index) { case 0: - version_maj = int.parse(num); + version_major = int.parse(num); break; case 1: - version_min = int.parse(num); + version_minor = int.parse(num); break; case 2: version_point = int.parse(num); @@ -619,7 +619,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { } if (version_rc>-1) version_extra = "-rc%d".printf(version_rc); - ver_main = "%d.%d.%d%s".printf(version_maj,version_min,version_point,version_extra); + ver_main = "%d.%d.%d%s".printf(version_major,version_minor,version_point,version_extra); try{ if (!match.next()) break; @@ -911,7 +911,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { // hide hidden, but don't hide any installed if (!k.is_installed) { if (App.hide_unstable && k.is_unstable) continue; - if (k.version_maj < threshold_major) continue; + if (k.version_major < threshold_major) continue; } if (k.version_main.length>nl) nl = k.version_main.length; diff --git a/src/Common/Main.vala b/src/Common/Main.vala index 91499d61..f574e12a 100644 --- a/src/Common/Main.vala +++ b/src/Common/Main.vala @@ -348,13 +348,13 @@ public class Main : GLib.Object { // TODO, ID file should not assume single DISPLAY // ID and SEEN should probably be in /var/run ? string s = "#!/bin/bash\n" - + "# "+_("Called from")+" "+STARTUP_DESKTOP_FILE+" at logon.\n" + + "# "+_("Called from")+" "+STARTUP_DESKTOP_FILE+" "+_("at logon")+".\n" + "# "+_("This file is over-written and executed again whenever settings are saved in")+" "+BRANDING_SHORTNAME+"-gtk\n" + "[[ $1 == --autostart ]] && rm -f \""+NOTIFICATION_ID_FILE+"\" \""+MAJOR_SEEN_FILE+"\" \""+MINOR_SEEN_FILE+"\"\n" + "TMP=${XDG_RUNTIME_DIR:-/tmp}\n" + "N=${0//\\//_}\n" + "F=\"${TMP}/${N}.${$}.p\"\n" - + "trap '[[ -f ${F}_ ]] && read c < ${F}_ && kill $c ;rm -f $F{,_}' 0\n" + + "trap '[[ -f ${F}_ ]] && read c < ${F}_ && kill $c ;rm -f ${F}{,_}' 0\n" + "typeset -i p\n" + "shopt -s extglob\n" + "\n" @@ -385,21 +385,23 @@ public class Main : GLib.Object { + "exit 0\n"; } - file_write(STARTUP_SCRIPT_FILE,s); - // save_app_config() gets run right at app startup if the config file - // doesn't exist yet, so sometimes update_startup_script() might run - // early in app start-up when we haven't done the cache update yet. - // If we blindly launch the background notification process immediately - // any time settings are updated, the --notify process and ourselves - // will both try to update the same cache files at the same time and - // step all over each other. - // This is not really a fully correct answer, but mostly good enough: - // * If notifications are now OFF, then run the new startup script - // immediately so that it clears out the existing notification loop - // that might be running. - // * If notifications are now ON, then delay running the new startup - // script until later at app exit. - if (!notify_major && !notify_minor) exec_async("bash "+STARTUP_SCRIPT_FILE+" 2>&- >&- <&-"); + if (GUI_MODE) { + // save_app_config() gets run right at app startup if the config file + // doesn't exist yet, so sometimes update_startup_script() might run + // early in app start-up when we haven't done the cache update yet. + // If we blindly launch the background notification process immediately + // any time settings are updated, the --notify process and ourselves + // will both try to update the same cache files at the same time and + // step all over each other. + // This is not really a fully correct answer, but mostly good enough: + // * If all notifications are now OFF, then run the new startup script + // immediately so that it clears out the existing notification loop + // that might be running. + // * Otherwise don't do anything right now, and run the new startup + // script at app exit instead. + file_write(STARTUP_SCRIPT_FILE,s); + if (!notify_major && !notify_minor) exec_async("bash "+STARTUP_SCRIPT_FILE+" 2>&- >&- <&-"); + } } private void update_startup_desktop_file() { diff --git a/src/Console/AppConsole.vala b/src/Console/AppConsole.vala index 40743497..312a4186 100644 --- a/src/Console/AppConsole.vala +++ b/src/Console/AppConsole.vala @@ -308,10 +308,10 @@ public class AppConsole : GLib.Object { } private void notify_user() { - vprint("notify_user()",4); + vprint("notify_user()",2); if (!App.notify_major && !App.notify_minor) { - vprint(_("Notifications disabled in settings"),4); + vprint(_("Notifications disabled in settings"),2); return; } @@ -319,35 +319,38 @@ public class AppConsole : GLib.Object { string title = _("No updates found"); string seen = ""; - var k = new LinuxKernel("",true); + string available = ""; + if (App.notify_minor) { + var k = LinuxKernel.kernel_update_minor; + if (k!=null && k.version_main!="") available = k.version_main; + if (file_exists(App.MINOR_SEEN_FILE)) seen = file_read(App.MINOR_SEEN_FILE).strip(); + if (seen!=available) file_write(App.MINOR_SEEN_FILE,available); + } else vprint("notify point releases disabled",2); + + // if notify_major enabled and there is one, simply overwrite available if (App.notify_major) { + var k = LinuxKernel.kernel_update_major; + if (k!=null && k.version_main!="") available = k.version_main; if (file_exists(App.MAJOR_SEEN_FILE)) seen = file_read(App.MAJOR_SEEN_FILE).strip(); - k = LinuxKernel.kernel_update_major; - if (k!=null && seen!=k.version_main) file_write(App.MAJOR_SEEN_FILE,k.version_main); - else k = null; - } + if (seen!=available) file_write(App.MAJOR_SEEN_FILE,available); + } else vprint("notify major releases disabled",2); - if (App.notify_minor && k==null) { - if (file_exists(App.MINOR_SEEN_FILE)) seen = file_read(App.MINOR_SEEN_FILE).strip(); - k = LinuxKernel.kernel_update_minor; - if (k!=null && seen!=k.version_main) file_write(App.MINOR_SEEN_FILE,k.version_main); - else k = null; - } + if (seen==available) available = ""; - if (k!=null) { - title = _("Kernel %s Available").printf(k.version_main); + if (available!="") { + title = _("Kernel %s Available").printf(available); string close_action = ""; // command to run when user closes notification without pressing any action button string body = ""; // notification message body var alist = new Gee.ArrayList (); // notification action buttons: "buttonlabel:command line to run" alist.add(_("Show")+":"+BRANDING_SHORTNAME+"-gtk"); - alist.add(_("Install")+":"+BRANDING_SHORTNAME+"-gtk --install "+k.version_main); + alist.add(_("Install")+":"+BRANDING_SHORTNAME+"-gtk --install "+available); OSDNotify.notify_send(title,body,alist,close_action); } else { - if (seen.length>0) title = _("Previously notified")+": \""+seen+"\""; + if (seen!="") title = _("Previously notified")+": \""+seen+"\""; } - vprint(title); + vprint(title,2); } } diff --git a/src/Gtk/AppGtk.vala b/src/Gtk/AppGtk.vala index 5489c34c..ef6d1a14 100644 --- a/src/Gtk/AppGtk.vala +++ b/src/Gtk/AppGtk.vala @@ -81,8 +81,8 @@ public class AppGtk : GLib.Object { //|| App.term_y != App._term_y ) App.save_app_config(); - // start the notification background process if notifcations enabled - if (App.notify_major || App.notify_major) exec_async("bash "+App.STARTUP_SCRIPT_FILE+" 2>&- >&- <&-"); + // start the notification background process if any notifcations are enabled + if (App.notify_major || App.notify_minor) exec_async("bash "+App.STARTUP_SCRIPT_FILE+" 2>&- >&- <&-"); return 0; } @@ -106,9 +106,6 @@ public class AppGtk : GLib.Object { App.command = "install"; App.requested_version = args[i].down(); } - //if (App.VERBOSE<1) App.VERBOSE = 1; - //l.misc.VERBOSE = App.VERBOSE; - //Environment.set_variable("VERBOSE",App.VERBOSE.to_string(),true); break; case "--help": diff --git a/src/Gtk/MainWindow.vala b/src/Gtk/MainWindow.vala index 4d0e484b..09aea843 100644 --- a/src/Gtk/MainWindow.vala +++ b/src/Gtk/MainWindow.vala @@ -239,7 +239,7 @@ public class MainWindow : Gtk.Window { if (k.is_invalid) continue; if (!k.is_installed) { if (k.is_unstable && App.hide_unstable) continue; - if (k.version_maj < LinuxKernel.threshold_major) continue; + if (k.version_major < LinuxKernel.threshold_major) continue; } // add row diff --git a/src/Gtk/SettingsDialog.vala b/src/Gtk/SettingsDialog.vala index 4dd05dda..e24eb3c9 100644 --- a/src/Gtk/SettingsDialog.vala +++ b/src/Gtk/SettingsDialog.vala @@ -168,7 +168,7 @@ public class SettingsDialog : Gtk.Dialog { label.margin_start = 6; hbox.add (label); - var spm_adj = new Gtk.Adjustment(App.previous_majors, -1, LinuxKernel.kernel_latest_available.version_maj , 1, 1, 0); + var spm_adj = new Gtk.Adjustment(App.previous_majors, -1, LinuxKernel.kernel_latest_available.version_major , 1, 1, 0); var spm_spin = new Gtk.SpinButton (spm_adj, 1, 0); spm_spin.xalign = (float) 0.5; hbox.add(spm_spin); From 3e064b21dbbf82c7dbf2f4939b8512d0ab4e3a72 Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Fri, 7 Apr 2023 14:13:03 -0400 Subject: [PATCH 306/567] sortable notes column --- .deb_build_number.mak | 2 +- BRANDING.mak | 2 +- TRANSLATORS | 4 +-- debian/changelog | 6 +++++ po/de.po | 46 ++++++++++++++++----------------- po/el.po | 46 ++++++++++++++++----------------- po/es.po | 46 ++++++++++++++++----------------- po/fr.po | 46 ++++++++++++++++----------------- po/hr.po | 46 ++++++++++++++++----------------- po/it.po | 51 ++++++++++++++++++------------------- po/ko.po | 48 +++++++++++++++++----------------- po/messages.pot | 46 ++++++++++++++++----------------- po/nl.po | 46 ++++++++++++++++----------------- po/pl.po | 46 ++++++++++++++++----------------- po/ru.po | 49 +++++++++++++++++------------------ po/sv.po | 46 ++++++++++++++++----------------- po/tr.po | 46 ++++++++++++++++----------------- po/uk.po | 46 ++++++++++++++++----------------- src/Common/Main.vala | 2 ++ src/Console/AppConsole.vala | 2 +- src/Gtk/MainWindow.vala | 47 +++++++++++++++++----------------- 21 files changed, 363 insertions(+), 356 deletions(-) diff --git a/.deb_build_number.mak b/.deb_build_number.mak index 406f8397..27e26dde 100644 --- a/.deb_build_number.mak +++ b/.deb_build_number.mak @@ -1,3 +1,3 @@ # This file is generated by Makefile "make deb_build_number" -DEB_PKG_VERSION := 1.2.2 +DEB_PKG_VERSION := 1.2.3 DEB_BUILD_NUMBER := 0000 diff --git a/BRANDING.mak b/BRANDING.mak index 79c2cc91..f70d4d8c 100644 --- a/BRANDING.mak +++ b/BRANDING.mak @@ -3,7 +3,7 @@ VERSION_MAJOR = 1 VERSION_MINOR = 2 -VERSION_MICRO = 2 +VERSION_MICRO = 3 BRANDING_SHORTNAME = mainline BRANDING_LONGNAME = Ubuntu Mainline Kernel Installer BRANDING_AUTHORNAME = Brian K. White diff --git a/TRANSLATORS b/TRANSLATORS index 9aa1f9a2..b30d2116 100644 --- a/TRANSLATORS +++ b/TRANSLATORS @@ -3,11 +3,11 @@ el: Vasilis Kosmidis es: Adolfo Jayme Barrientos fr: Yolateng0 hr: gogo -it: Demetrio Mendozzi, Albano Battistella +it: Demetrio Mendozzi ko: Kevin Kim nl: Heimen Stoffels pl: Matthaiks -ru: Faust3000 (Original) | Danik2343 (Update Transaltio +ru: Danik2343 sv: Åke Engelbrektson tr: Sabri Ünal uk: Serhii Golovko diff --git a/debian/changelog b/debian/changelog index 7ea79a5c..8410d966 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +mainline (1.2.3) unstable; urgency=medium + + * make the Notes column sortable + + -- Brian K. White Fri, 07 Apr 2023 14:10:40 -0400 + mainline (1.2.2) unstable; urgency=medium * un-bork the notification available version logic, again diff --git a/po/de.po b/po/de.po index 77799424..c198be84 100644 --- a/po/de.po +++ b/po/de.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-04-06 18:59-0400\n" +"POT-Creation-Date: 2023-04-07 14:01-0400\n" "PO-Revision-Date: 2023-02-20 18:40+0100\n" "Last-Translator: Marvin Meysel \n" "Language-Team: German\n" @@ -57,8 +57,8 @@ msgstr "MISSLUNGEN" msgid "Found installed" msgstr "Installiert gefunden" -#: src/Common/LinuxKernel.vala:731 src/Gtk/MainWindow.vala:519 -#: src/Gtk/MainWindow.vala:532 +#: src/Common/LinuxKernel.vala:731 src/Gtk/MainWindow.vala:520 +#: src/Gtk/MainWindow.vala:533 msgid "Running" msgstr "Läuft" @@ -152,21 +152,21 @@ msgstr "Keine Updates gefunden" msgid "Install Kernel Version %s ? (y/n): " msgstr "Kernel-Version %s installieren? (j/n):" -#: src/Common/Main.vala:351 +#: src/Common/Main.vala:353 msgid "Called from" msgstr "Angerufen von" -#: src/Common/Main.vala:351 +#: src/Common/Main.vala:353 msgid "at logon" msgstr "beim start" -#: src/Common/Main.vala:352 +#: src/Common/Main.vala:354 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" "Diese Datei wird überschrieben und erneut ausgeführt, wenn Einstellungen in" -#: src/Common/Main.vala:384 +#: src/Common/Main.vala:386 msgid "Notifications are disabled" msgstr "Benachrichtigungen sind deaktiviert" @@ -216,7 +216,7 @@ msgstr "Angegebenen Mainline-Kernel installieren" msgid "Uninstall specified kernel" msgstr "Deinstallation des angegebenen Kernels" -#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:328 +#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:329 msgid "Uninstall all but the highest installed version" msgstr "Deinstallieren Sie alle bis auf die höchste installierte Version" @@ -312,7 +312,7 @@ msgstr "Kernel %s verfügbar" msgid "Show" msgstr "Zeigen" -#: src/Console/AppConsole.vala:347 src/Gtk/MainWindow.vala:296 +#: src/Console/AppConsole.vala:347 src/Gtk/MainWindow.vala:297 msgid "Install" msgstr "Installieren" @@ -380,19 +380,19 @@ msgstr "Status" msgid "Notes" msgstr "Notizen" -#: src/Gtk/MainWindow.vala:306 +#: src/Gtk/MainWindow.vala:307 msgid "Uninstall" msgstr "Deinstallieren" -#: src/Gtk/MainWindow.vala:327 +#: src/Gtk/MainWindow.vala:328 msgid "Uninstall Old" msgstr "Alte deinstallieren" -#: src/Gtk/MainWindow.vala:333 +#: src/Gtk/MainWindow.vala:334 msgid "Reload" msgstr "Nachladen" -#: src/Gtk/MainWindow.vala:334 +#: src/Gtk/MainWindow.vala:335 msgid "" "Delete cache and reload all kernel info\n" "\n" @@ -402,40 +402,40 @@ msgstr "" "\n" "DADURCH WERDEN AUCH ALLE BENUTZERNOTIZEN GELÖSCHT" -#: src/Gtk/MainWindow.vala:339 src/Gtk/SettingsDialog.vala:49 +#: src/Gtk/MainWindow.vala:340 src/Gtk/SettingsDialog.vala:49 msgid "Settings" msgstr "Einstellungen" -#: src/Gtk/MainWindow.vala:344 +#: src/Gtk/MainWindow.vala:345 msgid "About" msgstr "Über" -#: src/Gtk/MainWindow.vala:349 +#: src/Gtk/MainWindow.vala:350 msgid "Exit" msgstr "Ausgang" -#: src/Gtk/MainWindow.vala:418 +#: src/Gtk/MainWindow.vala:419 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Kernel-Upgrade-Dienstprogramm für Ubuntu-basierte Distributionen" -#: src/Gtk/MainWindow.vala:419 +#: src/Gtk/MainWindow.vala:420 msgid "Forked" msgstr "Gegabelte" -#: src/Gtk/MainWindow.vala:419 +#: src/Gtk/MainWindow.vala:420 msgid "Original" msgstr "Original" -#: src/Gtk/MainWindow.vala:457 +#: src/Gtk/MainWindow.vala:458 msgid "Updating kernels" msgstr "Aktualisieren von Kernels" -#: src/Gtk/MainWindow.vala:528 +#: src/Gtk/MainWindow.vala:529 msgid "available" msgstr "Verfügbar" -#: src/Gtk/MainWindow.vala:571 src/Gtk/MainWindow.vala:612 -#: src/Gtk/MainWindow.vala:647 +#: src/Gtk/MainWindow.vala:572 src/Gtk/MainWindow.vala:613 +#: src/Gtk/MainWindow.vala:648 msgid "DONE" msgstr "FERTIG" diff --git a/po/el.po b/po/el.po index d38ee139..17a4aaf0 100644 --- a/po/el.po +++ b/po/el.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-04-06 18:59-0400\n" +"POT-Creation-Date: 2023-04-07 14:01-0400\n" "PO-Revision-Date: 2023-01-10 02:03-0600\n" "Last-Translator: Vasilis Kosmidis \n" "Language-Team: Greek\n" @@ -57,8 +57,8 @@ msgstr "ΑΠΈΤΥΧΕ" msgid "Found installed" msgstr "Βρέθηκε εγκατεστημένο" -#: src/Common/LinuxKernel.vala:731 src/Gtk/MainWindow.vala:519 -#: src/Gtk/MainWindow.vala:532 +#: src/Common/LinuxKernel.vala:731 src/Gtk/MainWindow.vala:520 +#: src/Gtk/MainWindow.vala:533 msgid "Running" msgstr "Ενεργός" @@ -152,22 +152,22 @@ msgstr "Δεν βρέθηκαν ενημερώσεις" msgid "Install Kernel Version %s ? (y/n): " msgstr "Εγκατάσταση του πυρήνα έκδοσης %s ; (ν/ό):" -#: src/Common/Main.vala:351 +#: src/Common/Main.vala:353 msgid "Called from" msgstr "Κλήθηκε από" -#: src/Common/Main.vala:351 +#: src/Common/Main.vala:353 msgid "at logon" msgstr "κατά την εκκίνηση" -#: src/Common/Main.vala:352 +#: src/Common/Main.vala:354 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" "Αυτό το αρχείο αντικαθίσταται και εκτελείται ξανά κάθε φορά που " "αποθηκεύονται οι ρυθμίσεις στο" -#: src/Common/Main.vala:384 +#: src/Common/Main.vala:386 msgid "Notifications are disabled" msgstr "Οι ειδοποιήσεις είναι απενεργοποιημένες" @@ -216,7 +216,7 @@ msgstr "Εγκατάσταση του καθορισμένου mainline πυρή msgid "Uninstall specified kernel" msgstr "Απεγκατάσταση του καθορισμένου πυρήνα" -#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:328 +#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:329 msgid "Uninstall all but the highest installed version" msgstr "Απεγκαταστήστε όλες εκτός από την υψηλότερη εγκατεστημένη έκδοση" @@ -312,7 +312,7 @@ msgstr "Πυρήνας %s διαθέσιμος" msgid "Show" msgstr "Προβολή" -#: src/Console/AppConsole.vala:347 src/Gtk/MainWindow.vala:296 +#: src/Console/AppConsole.vala:347 src/Gtk/MainWindow.vala:297 msgid "Install" msgstr "Εγκατάσταση" @@ -380,19 +380,19 @@ msgstr "Κατάσταση" msgid "Notes" msgstr "Σημειώσεις" -#: src/Gtk/MainWindow.vala:306 +#: src/Gtk/MainWindow.vala:307 msgid "Uninstall" msgstr "Απεγκατάσταση" -#: src/Gtk/MainWindow.vala:327 +#: src/Gtk/MainWindow.vala:328 msgid "Uninstall Old" msgstr "Απεγκατάσταση παλαιών" -#: src/Gtk/MainWindow.vala:333 +#: src/Gtk/MainWindow.vala:334 msgid "Reload" msgstr "Δροσίζω" -#: src/Gtk/MainWindow.vala:334 +#: src/Gtk/MainWindow.vala:335 msgid "" "Delete cache and reload all kernel info\n" "\n" @@ -402,40 +402,40 @@ msgstr "" "\n" "ΑΥΤΌ ΘΑ ΔΙΑΓΡΆΨΕΙ ΕΠΊΣΗΣ ΌΛΕΣ ΤΙΣ ΣΗΜΕΙΏΣΕΙΣ ΧΡΉΣΤΗ" -#: src/Gtk/MainWindow.vala:339 src/Gtk/SettingsDialog.vala:49 +#: src/Gtk/MainWindow.vala:340 src/Gtk/SettingsDialog.vala:49 msgid "Settings" msgstr "Ρυθμίσεις" -#: src/Gtk/MainWindow.vala:344 +#: src/Gtk/MainWindow.vala:345 msgid "About" msgstr "Σχετικά" -#: src/Gtk/MainWindow.vala:349 +#: src/Gtk/MainWindow.vala:350 msgid "Exit" msgstr "Έξοδος" -#: src/Gtk/MainWindow.vala:418 +#: src/Gtk/MainWindow.vala:419 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Πρόγραμμα αναβάθμισης πυρήνα για διανομές που βασίζονται στο Ubuntu" -#: src/Gtk/MainWindow.vala:419 +#: src/Gtk/MainWindow.vala:420 msgid "Forked" msgstr "Forked" -#: src/Gtk/MainWindow.vala:419 +#: src/Gtk/MainWindow.vala:420 msgid "Original" msgstr "Πρωτότυπο" -#: src/Gtk/MainWindow.vala:457 +#: src/Gtk/MainWindow.vala:458 msgid "Updating kernels" msgstr "Ενημέρωση πυρήνων" -#: src/Gtk/MainWindow.vala:528 +#: src/Gtk/MainWindow.vala:529 msgid "available" msgstr "διαθέσιμος" -#: src/Gtk/MainWindow.vala:571 src/Gtk/MainWindow.vala:612 -#: src/Gtk/MainWindow.vala:647 +#: src/Gtk/MainWindow.vala:572 src/Gtk/MainWindow.vala:613 +#: src/Gtk/MainWindow.vala:648 msgid "DONE" msgstr "ΈΤΟΙΜΟ" diff --git a/po/es.po b/po/es.po index ee161d1d..545b12de 100644 --- a/po/es.po +++ b/po/es.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-04-06 18:59-0400\n" +"POT-Creation-Date: 2023-04-07 14:01-0400\n" "PO-Revision-Date: 2018-01-03 02:03-0600\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish\n" @@ -57,8 +57,8 @@ msgstr "FRACASADO" msgid "Found installed" msgstr "Encontrado instalado" -#: src/Common/LinuxKernel.vala:731 src/Gtk/MainWindow.vala:519 -#: src/Gtk/MainWindow.vala:532 +#: src/Common/LinuxKernel.vala:731 src/Gtk/MainWindow.vala:520 +#: src/Gtk/MainWindow.vala:533 msgid "Running" msgstr "En ejecución" @@ -152,22 +152,22 @@ msgstr "No se encontró ninguna actualización" msgid "Install Kernel Version %s ? (y/n): " msgstr "Instalar la versión del kernel %s? (s/n): " -#: src/Common/Main.vala:351 +#: src/Common/Main.vala:353 msgid "Called from" msgstr "Llamado desde" -#: src/Common/Main.vala:351 +#: src/Common/Main.vala:353 msgid "at logon" msgstr "al inicio" -#: src/Common/Main.vala:352 +#: src/Common/Main.vala:354 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" "Este archivo se sobrescribe y se ejecuta de nuevo cada vez que se guarda la " "configuración en" -#: src/Common/Main.vala:384 +#: src/Common/Main.vala:386 msgid "Notifications are disabled" msgstr "Las notificaciones están deshabilitadas" @@ -216,7 +216,7 @@ msgstr "Instalar núcleo troncal especificado" msgid "Uninstall specified kernel" msgstr "Desinstalar el kernel especificado" -#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:328 +#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:329 msgid "Uninstall all but the highest installed version" msgstr "Desinstale todas las versiones instaladas excepto la más alta" @@ -310,7 +310,7 @@ msgstr "Kernel %s Disponible" msgid "Show" msgstr "Mostrar" -#: src/Console/AppConsole.vala:347 src/Gtk/MainWindow.vala:296 +#: src/Console/AppConsole.vala:347 src/Gtk/MainWindow.vala:297 msgid "Install" msgstr "Instalar" @@ -378,19 +378,19 @@ msgstr "Estado" msgid "Notes" msgstr "Notas" -#: src/Gtk/MainWindow.vala:306 +#: src/Gtk/MainWindow.vala:307 msgid "Uninstall" msgstr "Desinstalar" -#: src/Gtk/MainWindow.vala:327 +#: src/Gtk/MainWindow.vala:328 msgid "Uninstall Old" msgstr "Desinstalar Antiguo" -#: src/Gtk/MainWindow.vala:333 +#: src/Gtk/MainWindow.vala:334 msgid "Reload" msgstr "Recargar" -#: src/Gtk/MainWindow.vala:334 +#: src/Gtk/MainWindow.vala:335 msgid "" "Delete cache and reload all kernel info\n" "\n" @@ -400,41 +400,41 @@ msgstr "" "\n" "ESTO TAMBIÉN ELIMINARÁ TODAS LAS NOTAS DEL USUARIO" -#: src/Gtk/MainWindow.vala:339 src/Gtk/SettingsDialog.vala:49 +#: src/Gtk/MainWindow.vala:340 src/Gtk/SettingsDialog.vala:49 msgid "Settings" msgstr "Configuración" -#: src/Gtk/MainWindow.vala:344 +#: src/Gtk/MainWindow.vala:345 msgid "About" msgstr "Acerca de" -#: src/Gtk/MainWindow.vala:349 +#: src/Gtk/MainWindow.vala:350 msgid "Exit" msgstr "Salida" -#: src/Gtk/MainWindow.vala:418 +#: src/Gtk/MainWindow.vala:419 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "" "Herramienta de renovación de núcleo para distribuciones basadas en Ubuntu" -#: src/Gtk/MainWindow.vala:419 +#: src/Gtk/MainWindow.vala:420 msgid "Forked" msgstr "Bifurcada" -#: src/Gtk/MainWindow.vala:419 +#: src/Gtk/MainWindow.vala:420 msgid "Original" msgstr "Original" -#: src/Gtk/MainWindow.vala:457 +#: src/Gtk/MainWindow.vala:458 msgid "Updating kernels" msgstr "Actualización de kernels" -#: src/Gtk/MainWindow.vala:528 +#: src/Gtk/MainWindow.vala:529 msgid "available" msgstr "disponibles" -#: src/Gtk/MainWindow.vala:571 src/Gtk/MainWindow.vala:612 -#: src/Gtk/MainWindow.vala:647 +#: src/Gtk/MainWindow.vala:572 src/Gtk/MainWindow.vala:613 +#: src/Gtk/MainWindow.vala:648 msgid "DONE" msgstr "HECHO" diff --git a/po/fr.po b/po/fr.po index 3eb9f13e..7477cf7c 100644 --- a/po/fr.po +++ b/po/fr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-04-06 18:59-0400\n" +"POT-Creation-Date: 2023-04-07 14:01-0400\n" "PO-Revision-Date: 2018-08-05 15:50+0200\n" "Last-Translator: Yolateng0 \n" "Language-Team: French\n" @@ -57,8 +57,8 @@ msgstr "RATÉ" msgid "Found installed" msgstr "Trouvé installé" -#: src/Common/LinuxKernel.vala:731 src/Gtk/MainWindow.vala:519 -#: src/Gtk/MainWindow.vala:532 +#: src/Common/LinuxKernel.vala:731 src/Gtk/MainWindow.vala:520 +#: src/Gtk/MainWindow.vala:533 msgid "Running" msgstr "Actuel" @@ -152,22 +152,22 @@ msgstr "Aucune mise à jour disponible" msgid "Install Kernel Version %s ? (y/n): " msgstr "Installer le noyau en version %s ? (y/n): " -#: src/Common/Main.vala:351 +#: src/Common/Main.vala:353 msgid "Called from" msgstr "Appelé à partir de" -#: src/Common/Main.vala:351 +#: src/Common/Main.vala:353 msgid "at logon" msgstr "au démarrage" -#: src/Common/Main.vala:352 +#: src/Common/Main.vala:354 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" "Ce fichier est écrasé et exécuté à nouveau chaque fois que les paramètres " "sont enregistrés dans" -#: src/Common/Main.vala:384 +#: src/Common/Main.vala:386 msgid "Notifications are disabled" msgstr "Les notifications sont désactivées" @@ -216,7 +216,7 @@ msgstr "Installer le noyau mainline spécifié" msgid "Uninstall specified kernel" msgstr "Désinstaller le noyau spécifié" -#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:328 +#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:329 msgid "Uninstall all but the highest installed version" msgstr "Désinstallez toutes le version installées, sauf la plus élevée" @@ -312,7 +312,7 @@ msgstr "Paquet %s disponibles" msgid "Show" msgstr "Montrer" -#: src/Console/AppConsole.vala:347 src/Gtk/MainWindow.vala:296 +#: src/Console/AppConsole.vala:347 src/Gtk/MainWindow.vala:297 msgid "Install" msgstr "Installer" @@ -380,19 +380,19 @@ msgstr "Statut" msgid "Notes" msgstr "Notes" -#: src/Gtk/MainWindow.vala:306 +#: src/Gtk/MainWindow.vala:307 msgid "Uninstall" msgstr "Désinstaller" -#: src/Gtk/MainWindow.vala:327 +#: src/Gtk/MainWindow.vala:328 msgid "Uninstall Old" msgstr "Désinstaller Ancien" -#: src/Gtk/MainWindow.vala:333 +#: src/Gtk/MainWindow.vala:334 msgid "Reload" msgstr "Recharger" -#: src/Gtk/MainWindow.vala:334 +#: src/Gtk/MainWindow.vala:335 msgid "" "Delete cache and reload all kernel info\n" "\n" @@ -402,42 +402,42 @@ msgstr "" "\n" "CELA SUPPRIMERA ÉGALEMENT TOUTES LES NOTES DE UTILISATEUR" -#: src/Gtk/MainWindow.vala:339 src/Gtk/SettingsDialog.vala:49 +#: src/Gtk/MainWindow.vala:340 src/Gtk/SettingsDialog.vala:49 msgid "Settings" msgstr "Paramètres" -#: src/Gtk/MainWindow.vala:344 +#: src/Gtk/MainWindow.vala:345 msgid "About" msgstr "À propos" -#: src/Gtk/MainWindow.vala:349 +#: src/Gtk/MainWindow.vala:350 msgid "Exit" msgstr "Sortie" -#: src/Gtk/MainWindow.vala:418 +#: src/Gtk/MainWindow.vala:419 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "" "Utilitaire de mise à niveau des noyaux pour les distributions basées sur " "Ubuntu" -#: src/Gtk/MainWindow.vala:419 +#: src/Gtk/MainWindow.vala:420 msgid "Forked" msgstr "Forkée" -#: src/Gtk/MainWindow.vala:419 +#: src/Gtk/MainWindow.vala:420 msgid "Original" msgstr "Originale" -#: src/Gtk/MainWindow.vala:457 +#: src/Gtk/MainWindow.vala:458 msgid "Updating kernels" msgstr "Mise à jour des noyaux" -#: src/Gtk/MainWindow.vala:528 +#: src/Gtk/MainWindow.vala:529 msgid "available" msgstr "disponible" -#: src/Gtk/MainWindow.vala:571 src/Gtk/MainWindow.vala:612 -#: src/Gtk/MainWindow.vala:647 +#: src/Gtk/MainWindow.vala:572 src/Gtk/MainWindow.vala:613 +#: src/Gtk/MainWindow.vala:648 msgid "DONE" msgstr "FAIT" diff --git a/po/hr.po b/po/hr.po index d4278173..fdbb94c5 100644 --- a/po/hr.po +++ b/po/hr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-04-06 18:59-0400\n" +"POT-Creation-Date: 2023-04-07 14:01-0400\n" "PO-Revision-Date: 2022-09-22 12:13+0200\n" "Last-Translator: gogo \n" "Language-Team: Croatian\n" @@ -57,8 +57,8 @@ msgstr "NIJE USPIO" msgid "Found installed" msgstr "Pronađeno instalirano" -#: src/Common/LinuxKernel.vala:731 src/Gtk/MainWindow.vala:519 -#: src/Gtk/MainWindow.vala:532 +#: src/Common/LinuxKernel.vala:731 src/Gtk/MainWindow.vala:520 +#: src/Gtk/MainWindow.vala:533 msgid "Running" msgstr "Pokrenuto" @@ -152,21 +152,21 @@ msgstr "Nema pronađenih nadopuna" msgid "Install Kernel Version %s ? (y/n): " msgstr "Instaliraj kernel inačice %s ? (d/n): " -#: src/Common/Main.vala:351 +#: src/Common/Main.vala:353 msgid "Called from" msgstr "Pozvano od" -#: src/Common/Main.vala:351 +#: src/Common/Main.vala:353 msgid "at logon" msgstr "indításkor" -#: src/Common/Main.vala:352 +#: src/Common/Main.vala:354 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" "Ova se datoteka prepisuje i ponovno izvršava kad god se postavke spremaju u" -#: src/Common/Main.vala:384 +#: src/Common/Main.vala:386 msgid "Notifications are disabled" msgstr "Obavijesti su onemogućene" @@ -215,7 +215,7 @@ msgstr "Instaliraj određeni mainline kernel" msgid "Uninstall specified kernel" msgstr "Deinstaliraj određene kernele" -#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:328 +#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:329 msgid "Uninstall all but the highest installed version" msgstr "Deinstaliraj sve osim najnovije instalirane verzije" @@ -309,7 +309,7 @@ msgstr "Kernel %s je dostupan" msgid "Show" msgstr "Prikaži" -#: src/Console/AppConsole.vala:347 src/Gtk/MainWindow.vala:296 +#: src/Console/AppConsole.vala:347 src/Gtk/MainWindow.vala:297 msgid "Install" msgstr "Instaliraj" @@ -377,19 +377,19 @@ msgstr "Stanje" msgid "Notes" msgstr "Bilješke" -#: src/Gtk/MainWindow.vala:306 +#: src/Gtk/MainWindow.vala:307 msgid "Uninstall" msgstr "Deinstaliraj" -#: src/Gtk/MainWindow.vala:327 +#: src/Gtk/MainWindow.vala:328 msgid "Uninstall Old" msgstr "Deinstaliraj staro" -#: src/Gtk/MainWindow.vala:333 +#: src/Gtk/MainWindow.vala:334 msgid "Reload" msgstr "Ponovno učitati" -#: src/Gtk/MainWindow.vala:334 +#: src/Gtk/MainWindow.vala:335 msgid "" "Delete cache and reload all kernel info\n" "\n" @@ -399,40 +399,40 @@ msgstr "" "\n" "EZZEL AZ ÖSSZES FELHASZNÁLÓI JEGYZETET IS TÖRLI" -#: src/Gtk/MainWindow.vala:339 src/Gtk/SettingsDialog.vala:49 +#: src/Gtk/MainWindow.vala:340 src/Gtk/SettingsDialog.vala:49 msgid "Settings" msgstr "Postavke" -#: src/Gtk/MainWindow.vala:344 +#: src/Gtk/MainWindow.vala:345 msgid "About" msgstr "O programu" -#: src/Gtk/MainWindow.vala:349 +#: src/Gtk/MainWindow.vala:350 msgid "Exit" msgstr "Izlaz" -#: src/Gtk/MainWindow.vala:418 +#: src/Gtk/MainWindow.vala:419 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Alat za nadogradnju kernela Ubuntu temeljenih distribucija" -#: src/Gtk/MainWindow.vala:419 +#: src/Gtk/MainWindow.vala:420 msgid "Forked" msgstr "Forkano" -#: src/Gtk/MainWindow.vala:419 +#: src/Gtk/MainWindow.vala:420 msgid "Original" msgstr "Izvornik" -#: src/Gtk/MainWindow.vala:457 +#: src/Gtk/MainWindow.vala:458 msgid "Updating kernels" msgstr "Ažuriranje jezgri" -#: src/Gtk/MainWindow.vala:528 +#: src/Gtk/MainWindow.vala:529 msgid "available" msgstr "dostupno" -#: src/Gtk/MainWindow.vala:571 src/Gtk/MainWindow.vala:612 -#: src/Gtk/MainWindow.vala:647 +#: src/Gtk/MainWindow.vala:572 src/Gtk/MainWindow.vala:613 +#: src/Gtk/MainWindow.vala:648 msgid "DONE" msgstr "UČINJENO" diff --git a/po/it.po b/po/it.po index 5e58b8f7..a39f7318 100644 --- a/po/it.po +++ b/po/it.po @@ -1,11 +1,10 @@ msgid "" msgstr "" -"Project-Id-Version: mainline 1.0.15\n" +"Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-04-06 18:59-0400\n" +"POT-Creation-Date: 2023-04-07 14:01-0400\n" "PO-Revision-Date: 2020-08-22 15:35+0100\n" -"Last-Translator: Demetrio Mendozzi, Albano Battistella " -"\n" +"Last-Translator: Demetrio Mendozzi\n" "Language-Team: Italian\n" "Language: it\n" "MIME-Version: 1.0\n" @@ -56,8 +55,8 @@ msgstr "FALLITO" msgid "Found installed" msgstr "Trovato installato" -#: src/Common/LinuxKernel.vala:731 src/Gtk/MainWindow.vala:519 -#: src/Gtk/MainWindow.vala:532 +#: src/Common/LinuxKernel.vala:731 src/Gtk/MainWindow.vala:520 +#: src/Gtk/MainWindow.vala:533 msgid "Running" msgstr "In esecuzione" @@ -151,22 +150,22 @@ msgstr "Nessun aggiornamento trovato" msgid "Install Kernel Version %s ? (y/n): " msgstr "Installare la versione del kernel %s ? (y/n): " -#: src/Common/Main.vala:351 +#: src/Common/Main.vala:353 msgid "Called from" msgstr "Chiamato da" -#: src/Common/Main.vala:351 +#: src/Common/Main.vala:353 msgid "at logon" msgstr "all'avvio" -#: src/Common/Main.vala:352 +#: src/Common/Main.vala:354 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" "Questo file viene sovrascritto ed eseguito nuovamente ogni volta che vengono " "salvate le impostazioni" -#: src/Common/Main.vala:384 +#: src/Common/Main.vala:386 msgid "Notifications are disabled" msgstr "Le notifiche sono disabilitate" @@ -217,7 +216,7 @@ msgstr "Installa il kernel mainline specificato" msgid "Uninstall specified kernel" msgstr "Disinstalla i kernel specificati" -#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:328 +#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:329 msgid "Uninstall all but the highest installed version" msgstr "Disinstallare tutti tranne la versione più recente installata" @@ -311,7 +310,7 @@ msgstr "Kernel %s Disponibile" msgid "Show" msgstr "Mostra" -#: src/Console/AppConsole.vala:347 src/Gtk/MainWindow.vala:296 +#: src/Console/AppConsole.vala:347 src/Gtk/MainWindow.vala:297 msgid "Install" msgstr "Installa" @@ -379,19 +378,19 @@ msgstr "Stato" msgid "Notes" msgstr "Note" -#: src/Gtk/MainWindow.vala:306 +#: src/Gtk/MainWindow.vala:307 msgid "Uninstall" msgstr "Disinstalla" -#: src/Gtk/MainWindow.vala:327 +#: src/Gtk/MainWindow.vala:328 msgid "Uninstall Old" msgstr "Disinstalla i vecchi" -#: src/Gtk/MainWindow.vala:333 +#: src/Gtk/MainWindow.vala:334 msgid "Reload" msgstr "Ricarica" -#: src/Gtk/MainWindow.vala:334 +#: src/Gtk/MainWindow.vala:335 msgid "" "Delete cache and reload all kernel info\n" "\n" @@ -401,40 +400,40 @@ msgstr "" "\n" "QUESTO CANCELLERÀ ANCHE TUTTE LE NOTE UTENTE" -#: src/Gtk/MainWindow.vala:339 src/Gtk/SettingsDialog.vala:49 +#: src/Gtk/MainWindow.vala:340 src/Gtk/SettingsDialog.vala:49 msgid "Settings" msgstr "Impostazioni" -#: src/Gtk/MainWindow.vala:344 +#: src/Gtk/MainWindow.vala:345 msgid "About" msgstr "Informazioni" -#: src/Gtk/MainWindow.vala:349 +#: src/Gtk/MainWindow.vala:350 msgid "Exit" msgstr "Chiudi" -#: src/Gtk/MainWindow.vala:418 +#: src/Gtk/MainWindow.vala:419 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Utilità di aggiornamento del kernel per distribuzioni basate su Ubuntu" -#: src/Gtk/MainWindow.vala:419 +#: src/Gtk/MainWindow.vala:420 msgid "Forked" msgstr "Forked" -#: src/Gtk/MainWindow.vala:419 +#: src/Gtk/MainWindow.vala:420 msgid "Original" msgstr "Originale" -#: src/Gtk/MainWindow.vala:457 +#: src/Gtk/MainWindow.vala:458 msgid "Updating kernels" msgstr "Aggiornamento dei kernel" -#: src/Gtk/MainWindow.vala:528 +#: src/Gtk/MainWindow.vala:529 msgid "available" msgstr "disponibile" -#: src/Gtk/MainWindow.vala:571 src/Gtk/MainWindow.vala:612 -#: src/Gtk/MainWindow.vala:647 +#: src/Gtk/MainWindow.vala:572 src/Gtk/MainWindow.vala:613 +#: src/Gtk/MainWindow.vala:648 msgid "DONE" msgstr "FATTO" diff --git a/po/ko.po b/po/ko.po index 09e84b71..6494ba54 100644 --- a/po/ko.po +++ b/po/ko.po @@ -1,8 +1,8 @@ msgid "" msgstr "" -"Project-Id-Version: mainline 1.0.14\n" +"Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-04-06 18:59-0400\n" +"POT-Creation-Date: 2023-04-07 14:01-0400\n" "PO-Revision-Date: 2022-09-28 11:48+0900\n" "Last-Translator: Kevin Kim \n" "Language-Team: Korean\n" @@ -57,8 +57,8 @@ msgstr "실패" msgid "Found installed" msgstr "설치된 것을 찾았습니다" -#: src/Common/LinuxKernel.vala:731 src/Gtk/MainWindow.vala:519 -#: src/Gtk/MainWindow.vala:532 +#: src/Common/LinuxKernel.vala:731 src/Gtk/MainWindow.vala:520 +#: src/Gtk/MainWindow.vala:533 msgid "Running" msgstr "구동 중" @@ -152,20 +152,20 @@ msgstr "업데이트를 찾을 수 없습니다" msgid "Install Kernel Version %s ? (y/n): " msgstr "커널 %s 버전을 설치하시겠습니까? (y/n): " -#: src/Common/Main.vala:351 +#: src/Common/Main.vala:353 msgid "Called from" msgstr "에서 호출" -#: src/Common/Main.vala:351 +#: src/Common/Main.vala:353 msgid "at logon" msgstr "로그온 시" -#: src/Common/Main.vala:352 +#: src/Common/Main.vala:354 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "이 파일은 덮어쓰고 설정이 저장될 때마다 다시 실행됩니다." -#: src/Common/Main.vala:384 +#: src/Common/Main.vala:386 msgid "Notifications are disabled" msgstr "알림이 비활성화 되었습니다" @@ -214,7 +214,7 @@ msgstr "지정한 메인라인 커널 설치" msgid "Uninstall specified kernel" msgstr "지정한 커널 삭제" -#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:328 +#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:329 msgid "Uninstall all but the highest installed version" msgstr "설치된 가장 높은 버전을 제외한 모든 버전을 제거합니다" @@ -308,7 +308,7 @@ msgstr "커널 %s 사용 가능" msgid "Show" msgstr "보이기" -#: src/Console/AppConsole.vala:347 src/Gtk/MainWindow.vala:296 +#: src/Console/AppConsole.vala:347 src/Gtk/MainWindow.vala:297 msgid "Install" msgstr "설치" @@ -376,19 +376,19 @@ msgstr "상태" msgid "Notes" msgstr "노트" -#: src/Gtk/MainWindow.vala:306 +#: src/Gtk/MainWindow.vala:307 msgid "Uninstall" msgstr "삭제" -#: src/Gtk/MainWindow.vala:327 +#: src/Gtk/MainWindow.vala:328 msgid "Uninstall Old" msgstr "오래된 커널 제거" -#: src/Gtk/MainWindow.vala:333 +#: src/Gtk/MainWindow.vala:334 msgid "Reload" msgstr "새로고침" -#: src/Gtk/MainWindow.vala:334 +#: src/Gtk/MainWindow.vala:335 msgid "" "Delete cache and reload all kernel info\n" "\n" @@ -398,40 +398,40 @@ msgstr "" "\n" "!! 이렇게 하면 모든 사용자 메모도 삭제됩니다 !!" -#: src/Gtk/MainWindow.vala:339 src/Gtk/SettingsDialog.vala:49 +#: src/Gtk/MainWindow.vala:340 src/Gtk/SettingsDialog.vala:49 msgid "Settings" msgstr "설정" -#: src/Gtk/MainWindow.vala:344 +#: src/Gtk/MainWindow.vala:345 msgid "About" msgstr "정보" -#: src/Gtk/MainWindow.vala:349 +#: src/Gtk/MainWindow.vala:350 msgid "Exit" msgstr "출구" -#: src/Gtk/MainWindow.vala:418 +#: src/Gtk/MainWindow.vala:419 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "우분투 기반 배포판의 커널 업그레이드 도구" -#: src/Gtk/MainWindow.vala:419 +#: src/Gtk/MainWindow.vala:420 msgid "Forked" msgstr "가랑이진" -#: src/Gtk/MainWindow.vala:419 +#: src/Gtk/MainWindow.vala:420 msgid "Original" msgstr "원문 언어" -#: src/Gtk/MainWindow.vala:457 +#: src/Gtk/MainWindow.vala:458 msgid "Updating kernels" msgstr "커널 업데이트" -#: src/Gtk/MainWindow.vala:528 +#: src/Gtk/MainWindow.vala:529 msgid "available" msgstr "사용가능" -#: src/Gtk/MainWindow.vala:571 src/Gtk/MainWindow.vala:612 -#: src/Gtk/MainWindow.vala:647 +#: src/Gtk/MainWindow.vala:572 src/Gtk/MainWindow.vala:613 +#: src/Gtk/MainWindow.vala:648 msgid "DONE" msgstr "수행" diff --git a/po/messages.pot b/po/messages.pot index d0962e8f..ab03fbe2 100644 --- a/po/messages.pot +++ b/po/messages.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline 1.2.2\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-04-06 18:59-0400\n" +"POT-Creation-Date: 2023-04-07 14:01-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -61,8 +61,8 @@ msgstr "" msgid "Found installed" msgstr "" -#: src/Common/LinuxKernel.vala:731 src/Gtk/MainWindow.vala:519 -#: src/Gtk/MainWindow.vala:532 +#: src/Common/LinuxKernel.vala:731 src/Gtk/MainWindow.vala:520 +#: src/Gtk/MainWindow.vala:533 msgid "Running" msgstr "" @@ -156,20 +156,20 @@ msgstr "" msgid "Install Kernel Version %s ? (y/n): " msgstr "" -#: src/Common/Main.vala:351 +#: src/Common/Main.vala:353 msgid "Called from" msgstr "" -#: src/Common/Main.vala:351 +#: src/Common/Main.vala:353 msgid "at logon" msgstr "" -#: src/Common/Main.vala:352 +#: src/Common/Main.vala:354 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" -#: src/Common/Main.vala:384 +#: src/Common/Main.vala:386 msgid "Notifications are disabled" msgstr "" @@ -218,7 +218,7 @@ msgstr "" msgid "Uninstall specified kernel" msgstr "" -#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:328 +#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:329 msgid "Uninstall all but the highest installed version" msgstr "" @@ -312,7 +312,7 @@ msgstr "" msgid "Show" msgstr "" -#: src/Console/AppConsole.vala:347 src/Gtk/MainWindow.vala:296 +#: src/Console/AppConsole.vala:347 src/Gtk/MainWindow.vala:297 msgid "Install" msgstr "" @@ -380,59 +380,59 @@ msgstr "" msgid "Notes" msgstr "" -#: src/Gtk/MainWindow.vala:306 +#: src/Gtk/MainWindow.vala:307 msgid "Uninstall" msgstr "" -#: src/Gtk/MainWindow.vala:327 +#: src/Gtk/MainWindow.vala:328 msgid "Uninstall Old" msgstr "" -#: src/Gtk/MainWindow.vala:333 +#: src/Gtk/MainWindow.vala:334 msgid "Reload" msgstr "" -#: src/Gtk/MainWindow.vala:334 +#: src/Gtk/MainWindow.vala:335 msgid "" "Delete cache and reload all kernel info\n" "\n" "THIS WILL ALSO DELETE ALL USER NOTES" msgstr "" -#: src/Gtk/MainWindow.vala:339 src/Gtk/SettingsDialog.vala:49 +#: src/Gtk/MainWindow.vala:340 src/Gtk/SettingsDialog.vala:49 msgid "Settings" msgstr "" -#: src/Gtk/MainWindow.vala:344 +#: src/Gtk/MainWindow.vala:345 msgid "About" msgstr "" -#: src/Gtk/MainWindow.vala:349 +#: src/Gtk/MainWindow.vala:350 msgid "Exit" msgstr "" -#: src/Gtk/MainWindow.vala:418 +#: src/Gtk/MainWindow.vala:419 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "" -#: src/Gtk/MainWindow.vala:419 +#: src/Gtk/MainWindow.vala:420 msgid "Forked" msgstr "" -#: src/Gtk/MainWindow.vala:419 +#: src/Gtk/MainWindow.vala:420 msgid "Original" msgstr "" -#: src/Gtk/MainWindow.vala:457 +#: src/Gtk/MainWindow.vala:458 msgid "Updating kernels" msgstr "" -#: src/Gtk/MainWindow.vala:528 +#: src/Gtk/MainWindow.vala:529 msgid "available" msgstr "" -#: src/Gtk/MainWindow.vala:571 src/Gtk/MainWindow.vala:612 -#: src/Gtk/MainWindow.vala:647 +#: src/Gtk/MainWindow.vala:572 src/Gtk/MainWindow.vala:613 +#: src/Gtk/MainWindow.vala:648 msgid "DONE" msgstr "" diff --git a/po/nl.po b/po/nl.po index cd2eb0a7..c422e63f 100644 --- a/po/nl.po +++ b/po/nl.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-04-06 18:59-0400\n" +"POT-Creation-Date: 2023-04-07 14:01-0400\n" "PO-Revision-Date: 2020-08-23 13:55+0200\n" "Last-Translator: Heimen Stoffels \n" "Language-Team: Dutch (Netherlands)\n" @@ -57,8 +57,8 @@ msgstr "MISLUKT" msgid "Found installed" msgstr "Geïnstalleerd gevonden" -#: src/Common/LinuxKernel.vala:731 src/Gtk/MainWindow.vala:519 -#: src/Gtk/MainWindow.vala:532 +#: src/Common/LinuxKernel.vala:731 src/Gtk/MainWindow.vala:520 +#: src/Gtk/MainWindow.vala:533 msgid "Running" msgstr "In gebruik" @@ -152,22 +152,22 @@ msgstr "Geen updates gevonden" msgid "Install Kernel Version %s ? (y/n): " msgstr "Wilt u versie %s installeren? (j/n): " -#: src/Common/Main.vala:351 +#: src/Common/Main.vala:353 msgid "Called from" msgstr "Aangeroepen door" -#: src/Common/Main.vala:351 +#: src/Common/Main.vala:353 msgid "at logon" msgstr "bij het opstarten" -#: src/Common/Main.vala:352 +#: src/Common/Main.vala:354 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" "Dit bestand wordt overschreven en opnieuw uitgevoerd wanneer instellingen " "worden opgeslagen in" -#: src/Common/Main.vala:384 +#: src/Common/Main.vala:386 msgid "Notifications are disabled" msgstr "Meldingen zijn uitgeschakeld" @@ -216,7 +216,7 @@ msgstr "Opgegeven mainline-kernel installeren" msgid "Uninstall specified kernel" msgstr "Opgegeven kernel verwijderen" -#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:328 +#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:329 msgid "Uninstall all but the highest installed version" msgstr "Verwijder alle behalve de hoogst geïnstalleerde versie" @@ -311,7 +311,7 @@ msgstr "Kernel %s is beschikbaar" msgid "Show" msgstr "Tonen" -#: src/Console/AppConsole.vala:347 src/Gtk/MainWindow.vala:296 +#: src/Console/AppConsole.vala:347 src/Gtk/MainWindow.vala:297 msgid "Install" msgstr "Installeren" @@ -379,19 +379,19 @@ msgstr "Status" msgid "Notes" msgstr "Notities" -#: src/Gtk/MainWindow.vala:306 +#: src/Gtk/MainWindow.vala:307 msgid "Uninstall" msgstr "Deïnstalleren" -#: src/Gtk/MainWindow.vala:327 +#: src/Gtk/MainWindow.vala:328 msgid "Uninstall Old" msgstr "Verwijder Oude" -#: src/Gtk/MainWindow.vala:333 +#: src/Gtk/MainWindow.vala:334 msgid "Reload" msgstr "Herladen" -#: src/Gtk/MainWindow.vala:334 +#: src/Gtk/MainWindow.vala:335 msgid "" "Delete cache and reload all kernel info\n" "\n" @@ -401,40 +401,40 @@ msgstr "" "\n" "HIERMEE WORDEN OOK ALLE GEBRUIKERSNOTITIES VERWIJDERD" -#: src/Gtk/MainWindow.vala:339 src/Gtk/SettingsDialog.vala:49 +#: src/Gtk/MainWindow.vala:340 src/Gtk/SettingsDialog.vala:49 msgid "Settings" msgstr "Instellingen" -#: src/Gtk/MainWindow.vala:344 +#: src/Gtk/MainWindow.vala:345 msgid "About" msgstr "Over" -#: src/Gtk/MainWindow.vala:349 +#: src/Gtk/MainWindow.vala:350 msgid "Exit" msgstr "Afsluiten" -#: src/Gtk/MainWindow.vala:418 +#: src/Gtk/MainWindow.vala:419 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Een kernelupgradehulpmiddel voor op Ubuntu gebaseerde distributies" -#: src/Gtk/MainWindow.vala:419 +#: src/Gtk/MainWindow.vala:420 msgid "Forked" msgstr "Geforkt" -#: src/Gtk/MainWindow.vala:419 +#: src/Gtk/MainWindow.vala:420 msgid "Original" msgstr "Origineel" -#: src/Gtk/MainWindow.vala:457 +#: src/Gtk/MainWindow.vala:458 msgid "Updating kernels" msgstr "Kernels bijwerken" -#: src/Gtk/MainWindow.vala:528 +#: src/Gtk/MainWindow.vala:529 msgid "available" msgstr "beschikbaar" -#: src/Gtk/MainWindow.vala:571 src/Gtk/MainWindow.vala:612 -#: src/Gtk/MainWindow.vala:647 +#: src/Gtk/MainWindow.vala:572 src/Gtk/MainWindow.vala:613 +#: src/Gtk/MainWindow.vala:648 msgid "DONE" msgstr "AFGEROND" diff --git a/po/pl.po b/po/pl.po index a5f30be5..450ef7a8 100644 --- a/po/pl.po +++ b/po/pl.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-04-06 18:59-0400\n" +"POT-Creation-Date: 2023-04-07 14:01-0400\n" "PO-Revision-Date: 2023-04-02 21:31+0200\n" "Last-Translator: Matthaiks\n" "Language-Team: Polish\n" @@ -56,8 +56,8 @@ msgstr "NIEPOWODZENIE" msgid "Found installed" msgstr "Znaleziono zainstalowane" -#: src/Common/LinuxKernel.vala:731 src/Gtk/MainWindow.vala:519 -#: src/Gtk/MainWindow.vala:532 +#: src/Common/LinuxKernel.vala:731 src/Gtk/MainWindow.vala:520 +#: src/Gtk/MainWindow.vala:533 msgid "Running" msgstr "Uruchomione" @@ -151,22 +151,22 @@ msgstr "Nie znaleziono aktualizacji" msgid "Install Kernel Version %s ? (y/n): " msgstr "Zainstalować wersję jądra %s? (t/n): " -#: src/Common/Main.vala:351 +#: src/Common/Main.vala:353 msgid "Called from" msgstr "Wywołano z" -#: src/Common/Main.vala:351 +#: src/Common/Main.vala:353 msgid "at logon" msgstr "przy starcie" -#: src/Common/Main.vala:352 +#: src/Common/Main.vala:354 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" "Ten plik jest nadpisywany i wykonywany ponownie za każdym razem, gdy " "ustawienia są zapisywane w" -#: src/Common/Main.vala:384 +#: src/Common/Main.vala:386 msgid "Notifications are disabled" msgstr "Powiadomienia są wyłączone" @@ -215,7 +215,7 @@ msgstr "Zainstaluj wybrane jądro" msgid "Uninstall specified kernel" msgstr "Odinstaluj wybrane jądro" -#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:328 +#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:329 msgid "Uninstall all but the highest installed version" msgstr "Odinstaluj wszystkie wersje oprócz najwyżej zainstalowanej" @@ -309,7 +309,7 @@ msgstr "Dostępne %s jądra" msgid "Show" msgstr "Pokaż" -#: src/Console/AppConsole.vala:347 src/Gtk/MainWindow.vala:296 +#: src/Console/AppConsole.vala:347 src/Gtk/MainWindow.vala:297 msgid "Install" msgstr "Zainstaluj" @@ -377,19 +377,19 @@ msgstr "Status" msgid "Notes" msgstr "Notatki" -#: src/Gtk/MainWindow.vala:306 +#: src/Gtk/MainWindow.vala:307 msgid "Uninstall" msgstr "Odinstaluj" -#: src/Gtk/MainWindow.vala:327 +#: src/Gtk/MainWindow.vala:328 msgid "Uninstall Old" msgstr "Odinstaluj stare" -#: src/Gtk/MainWindow.vala:333 +#: src/Gtk/MainWindow.vala:334 msgid "Reload" msgstr "Wczytaj ponownie" -#: src/Gtk/MainWindow.vala:334 +#: src/Gtk/MainWindow.vala:335 msgid "" "Delete cache and reload all kernel info\n" "\n" @@ -399,40 +399,40 @@ msgstr "" "\n" "SPOWODUJE TO RÓWNIEŻ USUNIĘCIE WSZYSTKICH NOTATEK UŻYTKOWNIKA" -#: src/Gtk/MainWindow.vala:339 src/Gtk/SettingsDialog.vala:49 +#: src/Gtk/MainWindow.vala:340 src/Gtk/SettingsDialog.vala:49 msgid "Settings" msgstr "Ustawienia" -#: src/Gtk/MainWindow.vala:344 +#: src/Gtk/MainWindow.vala:345 msgid "About" msgstr "O programie" -#: src/Gtk/MainWindow.vala:349 +#: src/Gtk/MainWindow.vala:350 msgid "Exit" msgstr "Wyjdź" -#: src/Gtk/MainWindow.vala:418 +#: src/Gtk/MainWindow.vala:419 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Narzędzie uaktualniania jądra dla dystrybucji z rodziny Ubuntu" -#: src/Gtk/MainWindow.vala:419 +#: src/Gtk/MainWindow.vala:420 msgid "Forked" msgstr "Sforkowane" -#: src/Gtk/MainWindow.vala:419 +#: src/Gtk/MainWindow.vala:420 msgid "Original" msgstr "Oryginalne" -#: src/Gtk/MainWindow.vala:457 +#: src/Gtk/MainWindow.vala:458 msgid "Updating kernels" msgstr "Aktualizowanie jąder" -#: src/Gtk/MainWindow.vala:528 +#: src/Gtk/MainWindow.vala:529 msgid "available" msgstr "dostępne" -#: src/Gtk/MainWindow.vala:571 src/Gtk/MainWindow.vala:612 -#: src/Gtk/MainWindow.vala:647 +#: src/Gtk/MainWindow.vala:572 src/Gtk/MainWindow.vala:613 +#: src/Gtk/MainWindow.vala:648 msgid "DONE" msgstr "GOTOWE" diff --git a/po/ru.po b/po/ru.po index 9ec23769..31059aa5 100644 --- a/po/ru.po +++ b/po/ru.po @@ -2,10 +2,9 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-04-06 18:59-0400\n" +"POT-Creation-Date: 2023-04-07 14:01-0400\n" "PO-Revision-Date: 2023-04-02 17:50+0300\n" -"Last-Translator: Faust3000 (Original) | Danik2343 (Update Transaltion) " -"\n" +"Last-Translator: Danik2343 \n" "Language-Team: Russian\n" "Language: ru\n" "MIME-Version: 1.0\n" @@ -58,8 +57,8 @@ msgstr "НЕУДАВШИЙСЯ" msgid "Found installed" msgstr "Найдено установлененное" -#: src/Common/LinuxKernel.vala:731 src/Gtk/MainWindow.vala:519 -#: src/Gtk/MainWindow.vala:532 +#: src/Common/LinuxKernel.vala:731 src/Gtk/MainWindow.vala:520 +#: src/Gtk/MainWindow.vala:533 msgid "Running" msgstr "Используется" @@ -153,21 +152,21 @@ msgstr "Обновлений не найдено" msgid "Install Kernel Version %s ? (y/n): " msgstr "Установить версию ядра %s ? (y/n): " -#: src/Common/Main.vala:351 +#: src/Common/Main.vala:353 msgid "Called from" msgstr "Вызван из" -#: src/Common/Main.vala:351 +#: src/Common/Main.vala:353 msgid "at logon" msgstr "при запуске" -#: src/Common/Main.vala:352 +#: src/Common/Main.vala:354 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" "Этот файл перезаписывается и выполняется снова при сохранении настроек в" -#: src/Common/Main.vala:384 +#: src/Common/Main.vala:386 msgid "Notifications are disabled" msgstr "Уведомления отключены" @@ -216,7 +215,7 @@ msgstr "Установить указанную ветку основного я msgid "Uninstall specified kernel" msgstr "Установить указанное ядро" -#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:328 +#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:329 msgid "Uninstall all but the highest installed version" msgstr "Удаление всех установленных версий, кроме самой высокой" @@ -310,7 +309,7 @@ msgstr "Доступно ядро %s" msgid "Show" msgstr "Показать" -#: src/Console/AppConsole.vala:347 src/Gtk/MainWindow.vala:296 +#: src/Console/AppConsole.vala:347 src/Gtk/MainWindow.vala:297 msgid "Install" msgstr "Установить" @@ -378,19 +377,19 @@ msgstr "Состояние" msgid "Notes" msgstr "Примечания" -#: src/Gtk/MainWindow.vala:306 +#: src/Gtk/MainWindow.vala:307 msgid "Uninstall" msgstr "Удалить" -#: src/Gtk/MainWindow.vala:327 +#: src/Gtk/MainWindow.vala:328 msgid "Uninstall Old" msgstr "Удалить старые" -#: src/Gtk/MainWindow.vala:333 +#: src/Gtk/MainWindow.vala:334 msgid "Reload" msgstr "Перезагрузить" -#: src/Gtk/MainWindow.vala:334 +#: src/Gtk/MainWindow.vala:335 msgid "" "Delete cache and reload all kernel info\n" "\n" @@ -400,40 +399,40 @@ msgstr "" "\n" "ЭТО ТАКЖЕ ПРИВЕДЕТ К УДАЛЕНИЮ ВСЕХ ЗАМЕТОК ПОЛЬЗОВАТЕЛЯ" -#: src/Gtk/MainWindow.vala:339 src/Gtk/SettingsDialog.vala:49 +#: src/Gtk/MainWindow.vala:340 src/Gtk/SettingsDialog.vala:49 msgid "Settings" msgstr "Настройки" -#: src/Gtk/MainWindow.vala:344 +#: src/Gtk/MainWindow.vala:345 msgid "About" msgstr "О программе" -#: src/Gtk/MainWindow.vala:349 +#: src/Gtk/MainWindow.vala:350 msgid "Exit" msgstr "Выход" -#: src/Gtk/MainWindow.vala:418 +#: src/Gtk/MainWindow.vala:419 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Программа обновления ядра для дистрибутивов на базе Ubuntu" -#: src/Gtk/MainWindow.vala:419 +#: src/Gtk/MainWindow.vala:420 msgid "Forked" msgstr "Форк" -#: src/Gtk/MainWindow.vala:419 +#: src/Gtk/MainWindow.vala:420 msgid "Original" msgstr "Оригинал" -#: src/Gtk/MainWindow.vala:457 +#: src/Gtk/MainWindow.vala:458 msgid "Updating kernels" msgstr "Обновление ядер" -#: src/Gtk/MainWindow.vala:528 +#: src/Gtk/MainWindow.vala:529 msgid "available" msgstr "доступно" -#: src/Gtk/MainWindow.vala:571 src/Gtk/MainWindow.vala:612 -#: src/Gtk/MainWindow.vala:647 +#: src/Gtk/MainWindow.vala:572 src/Gtk/MainWindow.vala:613 +#: src/Gtk/MainWindow.vala:648 msgid "DONE" msgstr "ГОТОВО" diff --git a/po/sv.po b/po/sv.po index 542e5268..b7357548 100644 --- a/po/sv.po +++ b/po/sv.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-04-06 18:59-0400\n" +"POT-Creation-Date: 2023-04-07 14:01-0400\n" "PO-Revision-Date: 2018-01-13 16:56+0100\n" "Last-Translator: Åke Engelbrektson \n" "Language-Team:Swedish\n" @@ -57,8 +57,8 @@ msgstr "MISSLYCKADES" msgid "Found installed" msgstr "Hittade installerat" -#: src/Common/LinuxKernel.vala:731 src/Gtk/MainWindow.vala:519 -#: src/Gtk/MainWindow.vala:532 +#: src/Common/LinuxKernel.vala:731 src/Gtk/MainWindow.vala:520 +#: src/Gtk/MainWindow.vala:533 msgid "Running" msgstr "Körs" @@ -152,20 +152,20 @@ msgstr "Inga uppdateringar hittades" msgid "Install Kernel Version %s ? (y/n): " msgstr "Installera kärnversion %s ? (j/n):" -#: src/Common/Main.vala:351 +#: src/Common/Main.vala:353 msgid "Called from" msgstr "Ringde från" -#: src/Common/Main.vala:351 +#: src/Common/Main.vala:353 msgid "at logon" msgstr "vid start" -#: src/Common/Main.vala:352 +#: src/Common/Main.vala:354 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "Den här filen skrivs över och körs igen när inställningar sparas i" -#: src/Common/Main.vala:384 +#: src/Common/Main.vala:386 msgid "Notifications are disabled" msgstr "Meddelanden är inaktiverade" @@ -214,7 +214,7 @@ msgstr "Installera angiven huvudkärna" msgid "Uninstall specified kernel" msgstr "Avinstallera angiven kärna" -#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:328 +#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:329 msgid "Uninstall all but the highest installed version" msgstr "Avinstallera alla utom den högsta installerade versionen" @@ -308,7 +308,7 @@ msgstr "Kernel %s tillgängliga" msgid "Show" msgstr "Visa" -#: src/Console/AppConsole.vala:347 src/Gtk/MainWindow.vala:296 +#: src/Console/AppConsole.vala:347 src/Gtk/MainWindow.vala:297 msgid "Install" msgstr "Installera" @@ -376,19 +376,19 @@ msgstr "Status" msgid "Notes" msgstr "Anteckningar" -#: src/Gtk/MainWindow.vala:306 +#: src/Gtk/MainWindow.vala:307 msgid "Uninstall" msgstr "Avinstallera" -#: src/Gtk/MainWindow.vala:327 +#: src/Gtk/MainWindow.vala:328 msgid "Uninstall Old" msgstr "Avinstallera Gamla" -#: src/Gtk/MainWindow.vala:333 +#: src/Gtk/MainWindow.vala:334 msgid "Reload" msgstr "Reload" -#: src/Gtk/MainWindow.vala:334 +#: src/Gtk/MainWindow.vala:335 msgid "" "Delete cache and reload all kernel info\n" "\n" @@ -398,40 +398,40 @@ msgstr "" "\n" "DETTA TAR OCKSÅ BORT ALLA ANVÄNDARANTECKNINGAR" -#: src/Gtk/MainWindow.vala:339 src/Gtk/SettingsDialog.vala:49 +#: src/Gtk/MainWindow.vala:340 src/Gtk/SettingsDialog.vala:49 msgid "Settings" msgstr "Inställningar" -#: src/Gtk/MainWindow.vala:344 +#: src/Gtk/MainWindow.vala:345 msgid "About" msgstr "Om" -#: src/Gtk/MainWindow.vala:349 +#: src/Gtk/MainWindow.vala:350 msgid "Exit" msgstr "Utgång" -#: src/Gtk/MainWindow.vala:418 +#: src/Gtk/MainWindow.vala:419 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Kärnuppgraderingsverktyg för Ubuntu-baserade distributioner" -#: src/Gtk/MainWindow.vala:419 +#: src/Gtk/MainWindow.vala:420 msgid "Forked" msgstr "Kluven" -#: src/Gtk/MainWindow.vala:419 +#: src/Gtk/MainWindow.vala:420 msgid "Original" msgstr "Original" -#: src/Gtk/MainWindow.vala:457 +#: src/Gtk/MainWindow.vala:458 msgid "Updating kernels" msgstr "Uppdatera kärnor" -#: src/Gtk/MainWindow.vala:528 +#: src/Gtk/MainWindow.vala:529 msgid "available" msgstr "tillgänglig" -#: src/Gtk/MainWindow.vala:571 src/Gtk/MainWindow.vala:612 -#: src/Gtk/MainWindow.vala:647 +#: src/Gtk/MainWindow.vala:572 src/Gtk/MainWindow.vala:613 +#: src/Gtk/MainWindow.vala:648 msgid "DONE" msgstr "FÄRDIG" diff --git a/po/tr.po b/po/tr.po index 1c770035..c07a758a 100644 --- a/po/tr.po +++ b/po/tr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-04-06 18:59-0400\n" +"POT-Creation-Date: 2023-04-07 14:01-0400\n" "PO-Revision-Date: 2022-08-06 16:48+0300\n" "Last-Translator: Sabri Ünal \n" "Language-Team: Turkish\n" @@ -57,8 +57,8 @@ msgstr "BAŞARISIZ" msgid "Found installed" msgstr "Yüklü bulundu" -#: src/Common/LinuxKernel.vala:731 src/Gtk/MainWindow.vala:519 -#: src/Gtk/MainWindow.vala:532 +#: src/Common/LinuxKernel.vala:731 src/Gtk/MainWindow.vala:520 +#: src/Gtk/MainWindow.vala:533 msgid "Running" msgstr "Çalışıyor" @@ -153,21 +153,21 @@ msgstr "Güncelleme bulunamadı" msgid "Install Kernel Version %s ? (y/n): " msgstr "Linux Çekirdek Sürümü %s Kurulsun mu? (e/h): " -#: src/Common/Main.vala:351 +#: src/Common/Main.vala:353 msgid "Called from" msgstr "Çağrı konumu" -#: src/Common/Main.vala:351 +#: src/Common/Main.vala:353 msgid "at logon" msgstr "başlangıçta" -#: src/Common/Main.vala:352 +#: src/Common/Main.vala:354 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" "Bu dosyanın üzerine yazılır ve ayarlar her kaydedildiğinde yeniden yürütülür" -#: src/Common/Main.vala:384 +#: src/Common/Main.vala:386 msgid "Notifications are disabled" msgstr "Bildirimler devre dışı bırakılmış" @@ -216,7 +216,7 @@ msgstr "Belirtilen mainline çekirdeğini kur" msgid "Uninstall specified kernel" msgstr "Belirtilen çekirdeğini kaldır" -#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:328 +#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:329 msgid "Uninstall all but the highest installed version" msgstr "En yüksek yüklü sürüm dışındaki tüm sürümleri kaldırın" @@ -310,7 +310,7 @@ msgstr "Çekirdek %s Kullanılabilir" msgid "Show" msgstr "Göster" -#: src/Console/AppConsole.vala:347 src/Gtk/MainWindow.vala:296 +#: src/Console/AppConsole.vala:347 src/Gtk/MainWindow.vala:297 msgid "Install" msgstr "Kur" @@ -378,19 +378,19 @@ msgstr "Durum" msgid "Notes" msgstr "Notlar" -#: src/Gtk/MainWindow.vala:306 +#: src/Gtk/MainWindow.vala:307 msgid "Uninstall" msgstr "Kaldır" -#: src/Gtk/MainWindow.vala:327 +#: src/Gtk/MainWindow.vala:328 msgid "Uninstall Old" msgstr "Eskileri Kaldır" -#: src/Gtk/MainWindow.vala:333 +#: src/Gtk/MainWindow.vala:334 msgid "Reload" msgstr "Arjantin" -#: src/Gtk/MainWindow.vala:334 +#: src/Gtk/MainWindow.vala:335 msgid "" "Delete cache and reload all kernel info\n" "\n" @@ -400,40 +400,40 @@ msgstr "" "\n" "BU AYNI ZAMANDA TÜM KULLANICI NOTLARINI DA SILER" -#: src/Gtk/MainWindow.vala:339 src/Gtk/SettingsDialog.vala:49 +#: src/Gtk/MainWindow.vala:340 src/Gtk/SettingsDialog.vala:49 msgid "Settings" msgstr "Ayarlar" -#: src/Gtk/MainWindow.vala:344 +#: src/Gtk/MainWindow.vala:345 msgid "About" msgstr "Hakkında" -#: src/Gtk/MainWindow.vala:349 +#: src/Gtk/MainWindow.vala:350 msgid "Exit" msgstr "Çıkış" -#: src/Gtk/MainWindow.vala:418 +#: src/Gtk/MainWindow.vala:419 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Ubuntu tabanlı dağıtımlar için çekirdek güncelleme aracı" -#: src/Gtk/MainWindow.vala:419 +#: src/Gtk/MainWindow.vala:420 msgid "Forked" msgstr "Çatallandı" -#: src/Gtk/MainWindow.vala:419 +#: src/Gtk/MainWindow.vala:420 msgid "Original" msgstr "Özgün" -#: src/Gtk/MainWindow.vala:457 +#: src/Gtk/MainWindow.vala:458 msgid "Updating kernels" msgstr "Çekirdekleri güncelleme" -#: src/Gtk/MainWindow.vala:528 +#: src/Gtk/MainWindow.vala:529 msgid "available" msgstr "mevcut" -#: src/Gtk/MainWindow.vala:571 src/Gtk/MainWindow.vala:612 -#: src/Gtk/MainWindow.vala:647 +#: src/Gtk/MainWindow.vala:572 src/Gtk/MainWindow.vala:613 +#: src/Gtk/MainWindow.vala:648 msgid "DONE" msgstr "YAPILMIŞ" diff --git a/po/uk.po b/po/uk.po index de00703f..5d7c5889 100644 --- a/po/uk.po +++ b/po/uk.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-04-06 18:59-0400\n" +"POT-Creation-Date: 2023-04-07 14:01-0400\n" "PO-Revision-Date: 2019-07-25 11:00+0300\n" "Last-Translator: Serhii Golovko \n" "Language-Team: Ukranian\n" @@ -57,8 +57,8 @@ msgstr "НЕ ВДАЛОСЯ" msgid "Found installed" msgstr "Знайдено встановленим" -#: src/Common/LinuxKernel.vala:731 src/Gtk/MainWindow.vala:519 -#: src/Gtk/MainWindow.vala:532 +#: src/Common/LinuxKernel.vala:731 src/Gtk/MainWindow.vala:520 +#: src/Gtk/MainWindow.vala:533 msgid "Running" msgstr "Використовується" @@ -152,21 +152,21 @@ msgstr "Оновлень не знайдено" msgid "Install Kernel Version %s ? (y/n): " msgstr "Встановити Ядро Версії %s ? (так/ні): " -#: src/Common/Main.vala:351 +#: src/Common/Main.vala:353 msgid "Called from" msgstr "Викликано з" -#: src/Common/Main.vala:351 +#: src/Common/Main.vala:353 msgid "at logon" msgstr "при запуску" -#: src/Common/Main.vala:352 +#: src/Common/Main.vala:354 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" "Цей файл перезаписується та виконується знову під час збереження налаштувань" -#: src/Common/Main.vala:384 +#: src/Common/Main.vala:386 msgid "Notifications are disabled" msgstr "Повідомлення вимкнено" @@ -215,7 +215,7 @@ msgstr "Встановіть конкретне основне ядро" msgid "Uninstall specified kernel" msgstr "Видаліть конкретні ядра" -#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:328 +#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:329 msgid "Uninstall all but the highest installed version" msgstr "Видаліть усі, крім найвищої встановленої версії" @@ -309,7 +309,7 @@ msgstr "Ядро %s Доступне" msgid "Show" msgstr "Показати" -#: src/Console/AppConsole.vala:347 src/Gtk/MainWindow.vala:296 +#: src/Console/AppConsole.vala:347 src/Gtk/MainWindow.vala:297 msgid "Install" msgstr "Встановити" @@ -377,19 +377,19 @@ msgstr "Стан" msgid "Notes" msgstr "Нотатки" -#: src/Gtk/MainWindow.vala:306 +#: src/Gtk/MainWindow.vala:307 msgid "Uninstall" msgstr "Видалити" -#: src/Gtk/MainWindow.vala:327 +#: src/Gtk/MainWindow.vala:328 msgid "Uninstall Old" msgstr "Видалити старе" -#: src/Gtk/MainWindow.vala:333 +#: src/Gtk/MainWindow.vala:334 msgid "Reload" msgstr "Перезавантажити" -#: src/Gtk/MainWindow.vala:334 +#: src/Gtk/MainWindow.vala:335 msgid "" "Delete cache and reload all kernel info\n" "\n" @@ -399,40 +399,40 @@ msgstr "" "\n" "ЦЕ ТАКОЖ ВИДАЛИТЬ УСІ НОТАТКИ КОРИСТУВАЧА" -#: src/Gtk/MainWindow.vala:339 src/Gtk/SettingsDialog.vala:49 +#: src/Gtk/MainWindow.vala:340 src/Gtk/SettingsDialog.vala:49 msgid "Settings" msgstr "Налаштування" -#: src/Gtk/MainWindow.vala:344 +#: src/Gtk/MainWindow.vala:345 msgid "About" msgstr "Про программу" -#: src/Gtk/MainWindow.vala:349 +#: src/Gtk/MainWindow.vala:350 msgid "Exit" msgstr "Вихід" -#: src/Gtk/MainWindow.vala:418 +#: src/Gtk/MainWindow.vala:419 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Програма оновлення ядра для дистрибутивів на базі Ubuntu" -#: src/Gtk/MainWindow.vala:419 +#: src/Gtk/MainWindow.vala:420 msgid "Forked" msgstr "Двоєний" -#: src/Gtk/MainWindow.vala:419 +#: src/Gtk/MainWindow.vala:420 msgid "Original" msgstr "Оригінал" -#: src/Gtk/MainWindow.vala:457 +#: src/Gtk/MainWindow.vala:458 msgid "Updating kernels" msgstr "Оновлення ядер" -#: src/Gtk/MainWindow.vala:528 +#: src/Gtk/MainWindow.vala:529 msgid "available" msgstr "доступний" -#: src/Gtk/MainWindow.vala:571 src/Gtk/MainWindow.vala:612 -#: src/Gtk/MainWindow.vala:647 +#: src/Gtk/MainWindow.vala:572 src/Gtk/MainWindow.vala:613 +#: src/Gtk/MainWindow.vala:648 msgid "DONE" msgstr "ГОТОВО" diff --git a/src/Common/Main.vala b/src/Common/Main.vala index f574e12a..2a57674d 100644 --- a/src/Common/Main.vala +++ b/src/Common/Main.vala @@ -70,6 +70,8 @@ const int DEFAULT_TERM_HEIGHT = 600 ; //const int DEFAULT_TERM_X = -1 ; //const int DEFAULT_TERM_Y = -1 ; +const string line = "----------------------------------------------------------------------"; + extern void exit(int exit_code); public class Main : GLib.Object { diff --git a/src/Console/AppConsole.vala b/src/Console/AppConsole.vala index 312a4186..96e58cf5 100644 --- a/src/Console/AppConsole.vala +++ b/src/Console/AppConsole.vala @@ -304,7 +304,7 @@ public class AppConsole : GLib.Object { vprint(_("No updates found")); } - vprint(string.nfill(70, '-')); + vprint(line); } private void notify_user() { diff --git a/src/Gtk/MainWindow.vala b/src/Gtk/MainWindow.vala index 09aea843..acda2b6f 100644 --- a/src/Gtk/MainWindow.vala +++ b/src/Gtk/MainWindow.vala @@ -87,10 +87,10 @@ public class MainWindow : Gtk.Window { // hbox hbox_list = new Gtk.Box(Orientation.HORIZONTAL, 6); - //hbox.margin = 6; + // hbox.margin = 6; vbox_main.add(hbox_list); - //add treeview + // add treeview tv = new TreeView(); tv.get_selection().mode = SelectionMode.MULTIPLE; tv.headers_visible = true; @@ -105,7 +105,7 @@ public class MainWindow : Gtk.Window { scrollwin.add (tv); hbox_list.add(scrollwin); - //column + // column var col = new TreeViewColumn(); col.title = _("Kernel"); col.resizable = true; @@ -127,18 +127,18 @@ public class MainWindow : Gtk.Window { ((Gtk.CellRendererPixbuf) cell).pixbuf = pix; }); - //cell text + // cell text var cellText = new CellRendererText(); cellText.ellipsize = Pango.EllipsizeMode.END; col.pack_start (cellText, false); col.set_cell_data_func (cellText, (cell_layout, cell, model, iter)=>{ - LinuxKernel kern; - model.get (iter, 1, out kern, -1); + LinuxKernel k; + model.get (iter, 1, out k, -1); return_if_fail(cell as Gtk.CellRendererText != null); - ((Gtk.CellRendererText) cell).text = kern.version_main; + ((Gtk.CellRendererText) cell).text = k.version_main; }); - //column + // column col = new TreeViewColumn(); col.title = _("Status"); col.set_sort_column_id(3); @@ -147,21 +147,21 @@ public class MainWindow : Gtk.Window { col.min_width = 200; tv.append_column(col); - //cell text + // cell text cellText = new CellRendererText(); cellText.ellipsize = Pango.EllipsizeMode.END; col.pack_start(cellText, true); col.add_attribute(cellText, "text", 3); - //column + // column col = new TreeViewColumn(); col.title = _("Notes"); - //col.set_sort_column_id(4); // not working ? + col.set_sort_column_id(4); col.resizable = true; col.min_width = 200; tv.append_column(col); - //cell text + // cell text cellText = new CellRendererText(); cellText.ellipsize = Pango.EllipsizeMode.END; @@ -175,13 +175,14 @@ public class MainWindow : Gtk.Window { cellText.editable = true; cellText.edited.connect((path,data) => { - TreeIter iter; - tv.model.get_iter_from_string(out iter, path); + Gtk.TreeIter iter; LinuxKernel k; + tv.model.get_iter_from_string(out iter, path); tv.model.get(iter, 1, out k, -1); if (k.notes != data._strip()) { k.notes = data; file_write(k.notes_file,data); + tv_refresh(); // updates the sort, otherwise not needed } }); @@ -256,7 +257,7 @@ public class MainWindow : Gtk.Window { model.set(iter, 3, k.status); - //model.set(iter, 4, file_read(k.user_notes_file)); + model.set(iter, 4, k.notes); model.set(iter, 5, k.tooltip_text()); } @@ -401,14 +402,14 @@ public class MainWindow : Gtk.Window { "es: Adolfo Jayme Barrientos ", "fr: Yolateng0 ", "hr: gogo ", - "it: Albano Battistella ", + "it: Demetrio Mendozzi", "ko: Kevin Kim ", "nl: Heimen Stoffels ", - "pl: Viktor Sokyrko ", - "ru: Danik2343 ", + "pl: Matthaiks", + "ru: Danik2343 ", "sv: Åke Engelbrektson ", "tr: Sabri Ünal ", - "uk: Serhii Golovko ", + "uk: Serhii Golovko " }; dialog.documenters = null; @@ -545,7 +546,7 @@ public class MainWindow : Gtk.Window { string t_file = get_temp_file_path(t_dir)+".sh"; term.configure_event.connect ((event) => { - //log_debug("term resize: %dx%d@%dx%d".printf(event.width,event.height,event.x,event.y)); + //vprint("term resize: %dx%d@%dx%d".printf(event.width,event.height,event.x,event.y),2); App.term_width = event.width; App.term_height = event.height; // App.term_x = event.x; @@ -573,7 +574,7 @@ public class MainWindow : Gtk.Window { save_bash_script_temp(sh,t_file); term.execute_script(t_file,t_dir); - vprint("------------------------------------------------------------------------------"); + vprint(line); } public void do_uninstall(Gee.ArrayList klist) { @@ -614,7 +615,7 @@ public class MainWindow : Gtk.Window { save_bash_script_temp(sh,t_file); term.execute_script(t_file,t_dir); - vprint("------------------------------------------------------------------------------"); + vprint(line); } public void do_purge () { @@ -649,7 +650,7 @@ public class MainWindow : Gtk.Window { save_bash_script_temp(sh,t_file); term.execute_script(t_file,t_dir); - vprint("------------------------------------------------------------------------------"); + vprint(line); } } From 980ab380776d93bfa016b8d00aa4cdad923abfe0 Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Fri, 7 Apr 2023 17:23:44 -0400 Subject: [PATCH 307/567] support debhelper>9 --- .deb_build_number.mak | 2 +- README.md | 2 +- README.md.src | 2 +- debian/compat | 2 +- debian/rules | 9 ++++++++- po/messages.pot | 4 ++-- 6 files changed, 14 insertions(+), 7 deletions(-) diff --git a/.deb_build_number.mak b/.deb_build_number.mak index 27e26dde..ad8bccf3 100644 --- a/.deb_build_number.mak +++ b/.deb_build_number.mak @@ -1,3 +1,3 @@ # This file is generated by Makefile "make deb_build_number" DEB_PKG_VERSION := 1.2.3 -DEB_BUILD_NUMBER := 0000 +DEB_BUILD_NUMBER := 0007 diff --git a/README.md b/README.md index 63129aaf..59d14b1a 100644 --- a/README.md +++ b/README.md @@ -119,7 +119,7 @@ Clicking on the Notes field allows to attach arbitrary text to a kernel. # TODO & WIP * Add some extra info into the version strings used for display and --install etc, to better handle multiple kernels of the same main version but from different sources, and other differences like builds and platform/feature options etc -* Replace system("aria2c ...") with libsoup or libcurl or similar +* Replace Process.spawn_async_with_pipes("aria2c ...",...) with libcurl * Make the background process for notifications detect when the user logs out of the desktop session and exit itself * Move the notification/dbus code from the current shell script into the app and make an "applet" mode * Combine the gtk and cli apps into one, or, make the gtk app into a pure front-end for the cli app, either way diff --git a/README.md.src b/README.md.src index 7bca8553..cb7f5727 100644 --- a/README.md.src +++ b/README.md.src @@ -119,7 +119,7 @@ Clicking on the Notes field allows to attach arbitrary text to a kernel. # TODO & WIP * Add some extra info into the version strings used for display and --install etc, to better handle multiple kernels of the same main version but from different sources, and other differences like builds and platform/feature options etc -* Replace system("aria2c ...") with libsoup or libcurl or similar +* Replace Process.spawn_async_with_pipes("aria2c ...",...) with libcurl * Make the background process for notifications detect when the user logs out of the desktop session and exit itself * Move the notification/dbus code from the current shell script into the app and make an "applet" mode * Combine the gtk and cli apps into one, or, make the gtk app into a pure front-end for the cli app, either way diff --git a/debian/compat b/debian/compat index ec635144..b1bd38b6 100644 --- a/debian/compat +++ b/debian/compat @@ -1 +1 @@ -9 +13 diff --git a/debian/rules b/debian/rules index 955dd78b..6c4126d4 100755 --- a/debian/rules +++ b/debian/rules @@ -9,5 +9,12 @@ # Uncomment this to turn on verbose mode. #export DH_VERBOSE=1 +# debhelper>9 uses make -jN by default, which fails on vala projects +# https://github.com/bkw777/mainline/issues/74 +# unless you do +# https://wiki.gnome.org/Projects/Vala/Documentation/ParallelBuilds +# which is ridiculous nonsense +# add --no-parallel to prevent debhelper>9 from using make -jN + %: - dh $@ + dh $@ --no-parallel diff --git a/po/messages.pot b/po/messages.pot index ab03fbe2..0a32c308 100644 --- a/po/messages.pot +++ b/po/messages.pot @@ -6,9 +6,9 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: mainline 1.2.2\n" +"Project-Id-Version: mainline 1.2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-04-07 14:01-0400\n" +"POT-Creation-Date: 2023-04-07 16:30-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" From a66a53a17e5f46a628ed4243048d641243a1d8ac Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Sun, 9 Apr 2023 12:10:52 -0400 Subject: [PATCH 308/567] uri parsing --- README.md | 5 +- README.md.src | 5 +- po/de.po | 108 +++++++++++++++++++----------------- po/el.po | 108 +++++++++++++++++++----------------- po/es.po | 108 +++++++++++++++++++----------------- po/fr.po | 108 +++++++++++++++++++----------------- po/hr.po | 108 +++++++++++++++++++----------------- po/it.po | 108 +++++++++++++++++++----------------- po/ko.po | 108 +++++++++++++++++++----------------- po/messages.pot | 108 +++++++++++++++++++----------------- po/nl.po | 108 +++++++++++++++++++----------------- po/pl.po | 108 +++++++++++++++++++----------------- po/ru.po | 108 +++++++++++++++++++----------------- po/sv.po | 108 +++++++++++++++++++----------------- po/tr.po | 108 +++++++++++++++++++----------------- po/uk.po | 108 +++++++++++++++++++----------------- src/Common/LinuxKernel.vala | 16 ++++-- src/Gtk/MainWindow.vala | 2 + 18 files changed, 804 insertions(+), 736 deletions(-) diff --git a/README.md b/README.md index 59d14b1a..05d1196a 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ # Ubuntu Mainline Kernel Installer -A tool for installing the latest Linux kernels from the [ubuntu mainline ppa](https://kernel.ubuntu.com/~kernel-ppa/mainline/) onto debian-based distributions. +A tool for installing [Ubuntu Mainline Kernel Builds](https://wiki.ubuntu.com/Kernel/MainlineBuilds) onto debian-based distributions. ![Main window screenshot](main_window.png) @@ -90,6 +90,9 @@ For the single manual uninstall button, the button simply isn't activated. For t Clicking on the Notes field allows to attach arbitrary text to a kernel. # Help / FAQ + +* [MainlineBuilds WIKI](https://wiki.ubuntu.com/Kernel/MainlineBuilds) + * General debugging Aside from the ```--debug``` option, there is an environment variable ```VERBOSE```, which takes a numerical value from 0 and up. Example: ```$ VERBOSE=3 mainline-gtk``` diff --git a/README.md.src b/README.md.src index cb7f5727..c98e250a 100644 --- a/README.md.src +++ b/README.md.src @@ -1,5 +1,5 @@ # BRANDING_LONGNAME -A tool for installing the latest Linux kernels from the [ubuntu mainline ppa](https://kernel.ubuntu.com/~kernel-ppa/mainline/) onto debian-based distributions. +A tool for installing [Ubuntu Mainline Kernel Builds](https://wiki.ubuntu.com/Kernel/MainlineBuilds) onto debian-based distributions. ![Main window screenshot](main_window.png) @@ -90,6 +90,9 @@ For the single manual uninstall button, the button simply isn't activated. For t Clicking on the Notes field allows to attach arbitrary text to a kernel. # Help / FAQ + +* [MainlineBuilds WIKI](https://wiki.ubuntu.com/Kernel/MainlineBuilds) + * General debugging Aside from the ```--debug``` option, there is an environment variable ```VERBOSE```, which takes a numerical value from 0 and up. Example: ```$ VERBOSE=3 BRANDING_SHORTNAME-gtk``` diff --git a/po/de.po b/po/de.po index c198be84..7e2b921f 100644 --- a/po/de.po +++ b/po/de.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-04-07 14:01-0400\n" +"POT-Creation-Date: 2023-04-09 11:59-0400\n" "PO-Revision-Date: 2023-02-20 18:40+0100\n" "Last-Translator: Marvin Meysel \n" "Language-Team: German\n" @@ -25,129 +25,129 @@ msgstr "Architektur" msgid "Running kernel" msgstr "Laufender kernel" -#: src/Common/LinuxKernel.vala:253 +#: src/Common/LinuxKernel.vala:255 msgid "loading cached" msgstr "laden gecached" -#: src/Common/LinuxKernel.vala:267 +#: src/Common/LinuxKernel.vala:269 msgid "queuing download" msgstr "download der warteschlange" -#: src/Common/LinuxKernel.vala:290 +#: src/Common/LinuxKernel.vala:292 msgid "Fetching individual kernel indexes" msgstr "Abrufen einzelner Kernel-Indizes" -#: src/Common/LinuxKernel.vala:306 +#: src/Common/LinuxKernel.vala:308 msgid "loading downloaded" msgstr "laden von heruntergeladenen Dateien" -#: src/Common/LinuxKernel.vala:341 +#: src/Common/LinuxKernel.vala:343 msgid "Updating from" msgstr "Aktualisieren von" -#: src/Common/LinuxKernel.vala:349 +#: src/Common/LinuxKernel.vala:351 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:352 +#: src/Common/LinuxKernel.vala:354 msgid "FAILED" msgstr "MISSLUNGEN" -#: src/Common/LinuxKernel.vala:395 +#: src/Common/LinuxKernel.vala:397 msgid "Found installed" msgstr "Installiert gefunden" -#: src/Common/LinuxKernel.vala:731 src/Gtk/MainWindow.vala:520 -#: src/Gtk/MainWindow.vala:533 +#: src/Common/LinuxKernel.vala:733 src/Gtk/MainWindow.vala:522 +#: src/Gtk/MainWindow.vala:535 msgid "Running" msgstr "Läuft" -#: src/Common/LinuxKernel.vala:732 +#: src/Common/LinuxKernel.vala:734 msgid "Installed" msgstr "Installiert" -#: src/Common/LinuxKernel.vala:733 +#: src/Common/LinuxKernel.vala:735 msgid "Invalid" msgstr "Ungültig" -#: src/Common/LinuxKernel.vala:807 +#: src/Common/LinuxKernel.vala:809 msgid "Packages Available" msgstr "Verfügbare Pakete" -#: src/Common/LinuxKernel.vala:813 +#: src/Common/LinuxKernel.vala:815 msgid "Packages Installed" msgstr "Installierte Pakete" -#: src/Common/LinuxKernel.vala:835 src/lib/TeeJee.FileSystem.vala:118 +#: src/Common/LinuxKernel.vala:837 src/lib/TeeJee.FileSystem.vala:118 msgid "File not found" msgstr "Datei nicht gefunden " -#: src/Common/LinuxKernel.vala:904 +#: src/Common/LinuxKernel.vala:908 msgid "Available Kernels" msgstr "Verfügbare Kernel" -#: src/Common/LinuxKernel.vala:941 +#: src/Common/LinuxKernel.vala:945 msgid "enabled" msgstr "ermöglichte" -#: src/Common/LinuxKernel.vala:965 +#: src/Common/LinuxKernel.vala:969 msgid "Downloading" msgstr "Laden" -#: src/Common/LinuxKernel.vala:986 +#: src/Common/LinuxKernel.vala:990 msgid "is already installed." msgstr "ist bereits installiert." -#: src/Common/LinuxKernel.vala:1016 +#: src/Common/LinuxKernel.vala:1020 msgid "Uninstalling selected kernels" msgstr "Deinstallation des angegebenen Kernels" -#: src/Common/LinuxKernel.vala:1022 +#: src/Common/LinuxKernel.vala:1026 msgid "requested" msgstr "angefordert" -#: src/Common/LinuxKernel.vala:1025 +#: src/Common/LinuxKernel.vala:1029 msgid "not uninstalling the currently running kernel" msgstr "Den aktuell laufenden Kernel wird nicht deinstalliert" -#: src/Common/LinuxKernel.vala:1041 +#: src/Common/LinuxKernel.vala:1045 msgid "found" msgstr "gründen" -#: src/Common/LinuxKernel.vala:1044 +#: src/Common/LinuxKernel.vala:1048 msgid "No packages to un-install!" msgstr "Keine Pakete zum Deinstallieren!" -#: src/Common/LinuxKernel.vala:1092 +#: src/Common/LinuxKernel.vala:1096 msgid "Could not find running kernel in list" msgstr "Konnte keinen laufenden Kernel in der Liste finden" -#: src/Common/LinuxKernel.vala:1097 +#: src/Common/LinuxKernel.vala:1101 msgid "Could not find any kernels to uninstall" msgstr "Es konnten keine Kernel zum Deinstallieren gefunden werden" -#: src/Common/LinuxKernel.vala:1105 +#: src/Common/LinuxKernel.vala:1109 msgid "The following kernels will be uninstalled" msgstr "Die folgenden Kernel werden deinstalliert" -#: src/Common/LinuxKernel.vala:1109 +#: src/Common/LinuxKernel.vala:1113 msgid "Continue ?" msgstr "Weiter ?" -#: src/Common/LinuxKernel.vala:1131 src/Console/AppConsole.vala:292 +#: src/Common/LinuxKernel.vala:1135 src/Console/AppConsole.vala:292 msgid "Latest update" msgstr "Neustes Update" -#: src/Common/LinuxKernel.vala:1142 src/Console/AppConsole.vala:299 +#: src/Common/LinuxKernel.vala:1146 src/Console/AppConsole.vala:299 msgid "Latest point update" msgstr "Letzte Punktaktualisierung" -#: src/Common/LinuxKernel.vala:1150 src/Console/AppConsole.vala:304 +#: src/Common/LinuxKernel.vala:1154 src/Console/AppConsole.vala:304 #: src/Console/AppConsole.vala:320 msgid "No updates found" msgstr "Keine Updates gefunden" -#: src/Common/LinuxKernel.vala:1159 +#: src/Common/LinuxKernel.vala:1163 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Kernel-Version %s installieren? (j/n):" @@ -216,7 +216,7 @@ msgstr "Angegebenen Mainline-Kernel installieren" msgid "Uninstall specified kernel" msgstr "Deinstallation des angegebenen Kernels" -#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:329 +#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:331 msgid "Uninstall all but the highest installed version" msgstr "Deinstallieren Sie alle bis auf die höchste installierte Version" @@ -312,7 +312,7 @@ msgstr "Kernel %s verfügbar" msgid "Show" msgstr "Zeigen" -#: src/Console/AppConsole.vala:347 src/Gtk/MainWindow.vala:297 +#: src/Console/AppConsole.vala:347 src/Gtk/MainWindow.vala:298 msgid "Install" msgstr "Installieren" @@ -368,31 +368,35 @@ msgstr "Zeige Debug Informationen" msgid "Show all options" msgstr "Alle Optionen anzeigen" -#: src/Gtk/MainWindow.vala:110 +#: src/Gtk/MainWindow.vala:111 msgid "Kernel" msgstr "Kernel" -#: src/Gtk/MainWindow.vala:143 +#: src/Gtk/MainWindow.vala:144 msgid "Status" msgstr "Status" -#: src/Gtk/MainWindow.vala:158 +#: src/Gtk/MainWindow.vala:159 msgid "Notes" msgstr "Notizen" -#: src/Gtk/MainWindow.vala:307 +#: src/Gtk/MainWindow.vala:308 msgid "Uninstall" msgstr "Deinstallieren" -#: src/Gtk/MainWindow.vala:328 +#: src/Gtk/MainWindow.vala:319 +msgid "Changelog, build status, etc" +msgstr "" + +#: src/Gtk/MainWindow.vala:330 msgid "Uninstall Old" msgstr "Alte deinstallieren" -#: src/Gtk/MainWindow.vala:334 +#: src/Gtk/MainWindow.vala:336 msgid "Reload" msgstr "Nachladen" -#: src/Gtk/MainWindow.vala:335 +#: src/Gtk/MainWindow.vala:337 msgid "" "Delete cache and reload all kernel info\n" "\n" @@ -402,40 +406,40 @@ msgstr "" "\n" "DADURCH WERDEN AUCH ALLE BENUTZERNOTIZEN GELÖSCHT" -#: src/Gtk/MainWindow.vala:340 src/Gtk/SettingsDialog.vala:49 +#: src/Gtk/MainWindow.vala:342 src/Gtk/SettingsDialog.vala:49 msgid "Settings" msgstr "Einstellungen" -#: src/Gtk/MainWindow.vala:345 +#: src/Gtk/MainWindow.vala:347 msgid "About" msgstr "Über" -#: src/Gtk/MainWindow.vala:350 +#: src/Gtk/MainWindow.vala:352 msgid "Exit" msgstr "Ausgang" -#: src/Gtk/MainWindow.vala:419 +#: src/Gtk/MainWindow.vala:421 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Kernel-Upgrade-Dienstprogramm für Ubuntu-basierte Distributionen" -#: src/Gtk/MainWindow.vala:420 +#: src/Gtk/MainWindow.vala:422 msgid "Forked" msgstr "Gegabelte" -#: src/Gtk/MainWindow.vala:420 +#: src/Gtk/MainWindow.vala:422 msgid "Original" msgstr "Original" -#: src/Gtk/MainWindow.vala:458 +#: src/Gtk/MainWindow.vala:460 msgid "Updating kernels" msgstr "Aktualisieren von Kernels" -#: src/Gtk/MainWindow.vala:529 +#: src/Gtk/MainWindow.vala:531 msgid "available" msgstr "Verfügbar" -#: src/Gtk/MainWindow.vala:572 src/Gtk/MainWindow.vala:613 -#: src/Gtk/MainWindow.vala:648 +#: src/Gtk/MainWindow.vala:574 src/Gtk/MainWindow.vala:615 +#: src/Gtk/MainWindow.vala:650 msgid "DONE" msgstr "FERTIG" diff --git a/po/el.po b/po/el.po index 17a4aaf0..92f8bddb 100644 --- a/po/el.po +++ b/po/el.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-04-07 14:01-0400\n" +"POT-Creation-Date: 2023-04-09 11:59-0400\n" "PO-Revision-Date: 2023-01-10 02:03-0600\n" "Last-Translator: Vasilis Kosmidis \n" "Language-Team: Greek\n" @@ -25,129 +25,129 @@ msgstr "Αρχιτεκτονική" msgid "Running kernel" msgstr "Εκτέλεση πυρήνα" -#: src/Common/LinuxKernel.vala:253 +#: src/Common/LinuxKernel.vala:255 msgid "loading cached" msgstr "φόρτωση προσωρινά αποθηκευμένου" -#: src/Common/LinuxKernel.vala:267 +#: src/Common/LinuxKernel.vala:269 msgid "queuing download" msgstr "Προσθήκη λήψης στην ουρά" -#: src/Common/LinuxKernel.vala:290 +#: src/Common/LinuxKernel.vala:292 msgid "Fetching individual kernel indexes" msgstr "Λήψη μεμονωμένων ευρετηρίων πυρήνα" -#: src/Common/LinuxKernel.vala:306 +#: src/Common/LinuxKernel.vala:308 msgid "loading downloaded" msgstr "Φόρτωση λήψης" -#: src/Common/LinuxKernel.vala:341 +#: src/Common/LinuxKernel.vala:343 msgid "Updating from" msgstr "Ενημέρωση από" -#: src/Common/LinuxKernel.vala:349 +#: src/Common/LinuxKernel.vala:351 msgid "OK" msgstr "ΟΚ" -#: src/Common/LinuxKernel.vala:352 +#: src/Common/LinuxKernel.vala:354 msgid "FAILED" msgstr "ΑΠΈΤΥΧΕ" -#: src/Common/LinuxKernel.vala:395 +#: src/Common/LinuxKernel.vala:397 msgid "Found installed" msgstr "Βρέθηκε εγκατεστημένο" -#: src/Common/LinuxKernel.vala:731 src/Gtk/MainWindow.vala:520 -#: src/Gtk/MainWindow.vala:533 +#: src/Common/LinuxKernel.vala:733 src/Gtk/MainWindow.vala:522 +#: src/Gtk/MainWindow.vala:535 msgid "Running" msgstr "Ενεργός" -#: src/Common/LinuxKernel.vala:732 +#: src/Common/LinuxKernel.vala:734 msgid "Installed" msgstr "Εγκατεστημένος" -#: src/Common/LinuxKernel.vala:733 +#: src/Common/LinuxKernel.vala:735 msgid "Invalid" msgstr "Άκυρος" -#: src/Common/LinuxKernel.vala:807 +#: src/Common/LinuxKernel.vala:809 msgid "Packages Available" msgstr "Διαθέσιμα πακέτα" -#: src/Common/LinuxKernel.vala:813 +#: src/Common/LinuxKernel.vala:815 msgid "Packages Installed" msgstr "Εγκατεστημένα πακέτα" -#: src/Common/LinuxKernel.vala:835 src/lib/TeeJee.FileSystem.vala:118 +#: src/Common/LinuxKernel.vala:837 src/lib/TeeJee.FileSystem.vala:118 msgid "File not found" msgstr "Το αρχείο δε βρέθηκε" -#: src/Common/LinuxKernel.vala:904 +#: src/Common/LinuxKernel.vala:908 msgid "Available Kernels" msgstr "Διαθέσιμοι πυρήνες" -#: src/Common/LinuxKernel.vala:941 +#: src/Common/LinuxKernel.vala:945 msgid "enabled" msgstr "ενεργοποιημένη" -#: src/Common/LinuxKernel.vala:965 +#: src/Common/LinuxKernel.vala:969 msgid "Downloading" msgstr "Κατέβασμα" -#: src/Common/LinuxKernel.vala:986 +#: src/Common/LinuxKernel.vala:990 msgid "is already installed." msgstr "είναι ήδη εγκατεστημένο." -#: src/Common/LinuxKernel.vala:1016 +#: src/Common/LinuxKernel.vala:1020 msgid "Uninstalling selected kernels" msgstr "Απεγκατάσταση επιλεγμένων πυρήνων" -#: src/Common/LinuxKernel.vala:1022 +#: src/Common/LinuxKernel.vala:1026 msgid "requested" msgstr "ζητήθηκε" -#: src/Common/LinuxKernel.vala:1025 +#: src/Common/LinuxKernel.vala:1029 msgid "not uninstalling the currently running kernel" msgstr "δεν θα απεγκαταστήσει τον πυρήνα που εκτελείται αυτήν τη στιγμή" -#: src/Common/LinuxKernel.vala:1041 +#: src/Common/LinuxKernel.vala:1045 msgid "found" msgstr "ιδρύω" -#: src/Common/LinuxKernel.vala:1044 +#: src/Common/LinuxKernel.vala:1048 msgid "No packages to un-install!" msgstr "Δεν υπάρχουν πακέτα για απεγκατάσταση!" -#: src/Common/LinuxKernel.vala:1092 +#: src/Common/LinuxKernel.vala:1096 msgid "Could not find running kernel in list" msgstr "Δεν ήταν δυνατή η εύρεση του πυρήνα που εκτελείται αυτήν τη στιγμή" -#: src/Common/LinuxKernel.vala:1097 +#: src/Common/LinuxKernel.vala:1101 msgid "Could not find any kernels to uninstall" msgstr "Δεν βρέθηκε κανένας πυρήνας για απεγκατάσταση" -#: src/Common/LinuxKernel.vala:1105 +#: src/Common/LinuxKernel.vala:1109 msgid "The following kernels will be uninstalled" msgstr "Θα καταργηθεί η εγκατάσταση των ακόλουθων πυρήνων" -#: src/Common/LinuxKernel.vala:1109 +#: src/Common/LinuxKernel.vala:1113 msgid "Continue ?" msgstr "Συνέχεια;" -#: src/Common/LinuxKernel.vala:1131 src/Console/AppConsole.vala:292 +#: src/Common/LinuxKernel.vala:1135 src/Console/AppConsole.vala:292 msgid "Latest update" msgstr "Τελευταία αναβάθμιση" -#: src/Common/LinuxKernel.vala:1142 src/Console/AppConsole.vala:299 +#: src/Common/LinuxKernel.vala:1146 src/Console/AppConsole.vala:299 msgid "Latest point update" msgstr "Τελευταία ενημέρωση συντήρησης" -#: src/Common/LinuxKernel.vala:1150 src/Console/AppConsole.vala:304 +#: src/Common/LinuxKernel.vala:1154 src/Console/AppConsole.vala:304 #: src/Console/AppConsole.vala:320 msgid "No updates found" msgstr "Δεν βρέθηκαν ενημερώσεις" -#: src/Common/LinuxKernel.vala:1159 +#: src/Common/LinuxKernel.vala:1163 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Εγκατάσταση του πυρήνα έκδοσης %s ; (ν/ό):" @@ -216,7 +216,7 @@ msgstr "Εγκατάσταση του καθορισμένου mainline πυρή msgid "Uninstall specified kernel" msgstr "Απεγκατάσταση του καθορισμένου πυρήνα" -#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:329 +#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:331 msgid "Uninstall all but the highest installed version" msgstr "Απεγκαταστήστε όλες εκτός από την υψηλότερη εγκατεστημένη έκδοση" @@ -312,7 +312,7 @@ msgstr "Πυρήνας %s διαθέσιμος" msgid "Show" msgstr "Προβολή" -#: src/Console/AppConsole.vala:347 src/Gtk/MainWindow.vala:297 +#: src/Console/AppConsole.vala:347 src/Gtk/MainWindow.vala:298 msgid "Install" msgstr "Εγκατάσταση" @@ -368,31 +368,35 @@ msgstr "Εκτύπωση πληροφοριών εντοπισμού σφαλμ msgid "Show all options" msgstr "Εμφάνιση όλων των επιλογών" -#: src/Gtk/MainWindow.vala:110 +#: src/Gtk/MainWindow.vala:111 msgid "Kernel" msgstr "Πυρήνας" -#: src/Gtk/MainWindow.vala:143 +#: src/Gtk/MainWindow.vala:144 msgid "Status" msgstr "Κατάσταση" -#: src/Gtk/MainWindow.vala:158 +#: src/Gtk/MainWindow.vala:159 msgid "Notes" msgstr "Σημειώσεις" -#: src/Gtk/MainWindow.vala:307 +#: src/Gtk/MainWindow.vala:308 msgid "Uninstall" msgstr "Απεγκατάσταση" -#: src/Gtk/MainWindow.vala:328 +#: src/Gtk/MainWindow.vala:319 +msgid "Changelog, build status, etc" +msgstr "" + +#: src/Gtk/MainWindow.vala:330 msgid "Uninstall Old" msgstr "Απεγκατάσταση παλαιών" -#: src/Gtk/MainWindow.vala:334 +#: src/Gtk/MainWindow.vala:336 msgid "Reload" msgstr "Δροσίζω" -#: src/Gtk/MainWindow.vala:335 +#: src/Gtk/MainWindow.vala:337 msgid "" "Delete cache and reload all kernel info\n" "\n" @@ -402,40 +406,40 @@ msgstr "" "\n" "ΑΥΤΌ ΘΑ ΔΙΑΓΡΆΨΕΙ ΕΠΊΣΗΣ ΌΛΕΣ ΤΙΣ ΣΗΜΕΙΏΣΕΙΣ ΧΡΉΣΤΗ" -#: src/Gtk/MainWindow.vala:340 src/Gtk/SettingsDialog.vala:49 +#: src/Gtk/MainWindow.vala:342 src/Gtk/SettingsDialog.vala:49 msgid "Settings" msgstr "Ρυθμίσεις" -#: src/Gtk/MainWindow.vala:345 +#: src/Gtk/MainWindow.vala:347 msgid "About" msgstr "Σχετικά" -#: src/Gtk/MainWindow.vala:350 +#: src/Gtk/MainWindow.vala:352 msgid "Exit" msgstr "Έξοδος" -#: src/Gtk/MainWindow.vala:419 +#: src/Gtk/MainWindow.vala:421 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Πρόγραμμα αναβάθμισης πυρήνα για διανομές που βασίζονται στο Ubuntu" -#: src/Gtk/MainWindow.vala:420 +#: src/Gtk/MainWindow.vala:422 msgid "Forked" msgstr "Forked" -#: src/Gtk/MainWindow.vala:420 +#: src/Gtk/MainWindow.vala:422 msgid "Original" msgstr "Πρωτότυπο" -#: src/Gtk/MainWindow.vala:458 +#: src/Gtk/MainWindow.vala:460 msgid "Updating kernels" msgstr "Ενημέρωση πυρήνων" -#: src/Gtk/MainWindow.vala:529 +#: src/Gtk/MainWindow.vala:531 msgid "available" msgstr "διαθέσιμος" -#: src/Gtk/MainWindow.vala:572 src/Gtk/MainWindow.vala:613 -#: src/Gtk/MainWindow.vala:648 +#: src/Gtk/MainWindow.vala:574 src/Gtk/MainWindow.vala:615 +#: src/Gtk/MainWindow.vala:650 msgid "DONE" msgstr "ΈΤΟΙΜΟ" diff --git a/po/es.po b/po/es.po index 545b12de..f880daea 100644 --- a/po/es.po +++ b/po/es.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-04-07 14:01-0400\n" +"POT-Creation-Date: 2023-04-09 11:59-0400\n" "PO-Revision-Date: 2018-01-03 02:03-0600\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish\n" @@ -25,129 +25,129 @@ msgstr "Arquitectura del sistema" msgid "Running kernel" msgstr "Kernel en ejecución" -#: src/Common/LinuxKernel.vala:253 +#: src/Common/LinuxKernel.vala:255 msgid "loading cached" msgstr "carga en caché" -#: src/Common/LinuxKernel.vala:267 +#: src/Common/LinuxKernel.vala:269 msgid "queuing download" msgstr "descarga de colas" -#: src/Common/LinuxKernel.vala:290 +#: src/Common/LinuxKernel.vala:292 msgid "Fetching individual kernel indexes" msgstr "Obtención de índices de kernel individuales" -#: src/Common/LinuxKernel.vala:306 +#: src/Common/LinuxKernel.vala:308 msgid "loading downloaded" msgstr "cargando descargado" -#: src/Common/LinuxKernel.vala:341 +#: src/Common/LinuxKernel.vala:343 msgid "Updating from" msgstr "Actualización desde" -#: src/Common/LinuxKernel.vala:349 +#: src/Common/LinuxKernel.vala:351 msgid "OK" msgstr "Aceptar" -#: src/Common/LinuxKernel.vala:352 +#: src/Common/LinuxKernel.vala:354 msgid "FAILED" msgstr "FRACASADO" -#: src/Common/LinuxKernel.vala:395 +#: src/Common/LinuxKernel.vala:397 msgid "Found installed" msgstr "Encontrado instalado" -#: src/Common/LinuxKernel.vala:731 src/Gtk/MainWindow.vala:520 -#: src/Gtk/MainWindow.vala:533 +#: src/Common/LinuxKernel.vala:733 src/Gtk/MainWindow.vala:522 +#: src/Gtk/MainWindow.vala:535 msgid "Running" msgstr "En ejecución" -#: src/Common/LinuxKernel.vala:732 +#: src/Common/LinuxKernel.vala:734 msgid "Installed" msgstr "Instalado" -#: src/Common/LinuxKernel.vala:733 +#: src/Common/LinuxKernel.vala:735 msgid "Invalid" msgstr "No válido" -#: src/Common/LinuxKernel.vala:807 +#: src/Common/LinuxKernel.vala:809 msgid "Packages Available" msgstr "Paquetes disponibles" -#: src/Common/LinuxKernel.vala:813 +#: src/Common/LinuxKernel.vala:815 msgid "Packages Installed" msgstr "Paquetes instalados" -#: src/Common/LinuxKernel.vala:835 src/lib/TeeJee.FileSystem.vala:118 +#: src/Common/LinuxKernel.vala:837 src/lib/TeeJee.FileSystem.vala:118 msgid "File not found" msgstr "No se encontró el archivo" -#: src/Common/LinuxKernel.vala:904 +#: src/Common/LinuxKernel.vala:908 msgid "Available Kernels" msgstr "Núcleos disponibles" -#: src/Common/LinuxKernel.vala:941 +#: src/Common/LinuxKernel.vala:945 msgid "enabled" msgstr "habilitado" -#: src/Common/LinuxKernel.vala:965 +#: src/Common/LinuxKernel.vala:969 msgid "Downloading" msgstr "Descargar" -#: src/Common/LinuxKernel.vala:986 +#: src/Common/LinuxKernel.vala:990 msgid "is already installed." msgstr "ya está instalado." -#: src/Common/LinuxKernel.vala:1016 +#: src/Common/LinuxKernel.vala:1020 msgid "Uninstalling selected kernels" msgstr "Desinstalación de kernels seleccionados" -#: src/Common/LinuxKernel.vala:1022 +#: src/Common/LinuxKernel.vala:1026 msgid "requested" msgstr "solicitado" -#: src/Common/LinuxKernel.vala:1025 +#: src/Common/LinuxKernel.vala:1029 msgid "not uninstalling the currently running kernel" msgstr "No desinstalará el kernel que se está ejecutando actualmente" -#: src/Common/LinuxKernel.vala:1041 +#: src/Common/LinuxKernel.vala:1045 msgid "found" msgstr "fundar" -#: src/Common/LinuxKernel.vala:1044 +#: src/Common/LinuxKernel.vala:1048 msgid "No packages to un-install!" msgstr "¡No hay paquetes para desinstalar!" -#: src/Common/LinuxKernel.vala:1092 +#: src/Common/LinuxKernel.vala:1096 msgid "Could not find running kernel in list" msgstr "No se pudo encontrar el kernel en ejecución en la lista" -#: src/Common/LinuxKernel.vala:1097 +#: src/Common/LinuxKernel.vala:1101 msgid "Could not find any kernels to uninstall" msgstr "No se pudo encontrar ningún kernel para desinstalar" -#: src/Common/LinuxKernel.vala:1105 +#: src/Common/LinuxKernel.vala:1109 msgid "The following kernels will be uninstalled" msgstr "Se desinstalarán los siguientes kernels" -#: src/Common/LinuxKernel.vala:1109 +#: src/Common/LinuxKernel.vala:1113 msgid "Continue ?" msgstr "¿Continuar?" -#: src/Common/LinuxKernel.vala:1131 src/Console/AppConsole.vala:292 +#: src/Common/LinuxKernel.vala:1135 src/Console/AppConsole.vala:292 msgid "Latest update" msgstr "Última actualización" -#: src/Common/LinuxKernel.vala:1142 src/Console/AppConsole.vala:299 +#: src/Common/LinuxKernel.vala:1146 src/Console/AppConsole.vala:299 msgid "Latest point update" msgstr "Última actualización puntual" -#: src/Common/LinuxKernel.vala:1150 src/Console/AppConsole.vala:304 +#: src/Common/LinuxKernel.vala:1154 src/Console/AppConsole.vala:304 #: src/Console/AppConsole.vala:320 msgid "No updates found" msgstr "No se encontró ninguna actualización" -#: src/Common/LinuxKernel.vala:1159 +#: src/Common/LinuxKernel.vala:1163 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Instalar la versión del kernel %s? (s/n): " @@ -216,7 +216,7 @@ msgstr "Instalar núcleo troncal especificado" msgid "Uninstall specified kernel" msgstr "Desinstalar el kernel especificado" -#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:329 +#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:331 msgid "Uninstall all but the highest installed version" msgstr "Desinstale todas las versiones instaladas excepto la más alta" @@ -310,7 +310,7 @@ msgstr "Kernel %s Disponible" msgid "Show" msgstr "Mostrar" -#: src/Console/AppConsole.vala:347 src/Gtk/MainWindow.vala:297 +#: src/Console/AppConsole.vala:347 src/Gtk/MainWindow.vala:298 msgid "Install" msgstr "Instalar" @@ -366,31 +366,35 @@ msgstr "Mostrar información de depuración" msgid "Show all options" msgstr "Mostrar todas las opciones" -#: src/Gtk/MainWindow.vala:110 +#: src/Gtk/MainWindow.vala:111 msgid "Kernel" msgstr "Núcleo" -#: src/Gtk/MainWindow.vala:143 +#: src/Gtk/MainWindow.vala:144 msgid "Status" msgstr "Estado" -#: src/Gtk/MainWindow.vala:158 +#: src/Gtk/MainWindow.vala:159 msgid "Notes" msgstr "Notas" -#: src/Gtk/MainWindow.vala:307 +#: src/Gtk/MainWindow.vala:308 msgid "Uninstall" msgstr "Desinstalar" -#: src/Gtk/MainWindow.vala:328 +#: src/Gtk/MainWindow.vala:319 +msgid "Changelog, build status, etc" +msgstr "" + +#: src/Gtk/MainWindow.vala:330 msgid "Uninstall Old" msgstr "Desinstalar Antiguo" -#: src/Gtk/MainWindow.vala:334 +#: src/Gtk/MainWindow.vala:336 msgid "Reload" msgstr "Recargar" -#: src/Gtk/MainWindow.vala:335 +#: src/Gtk/MainWindow.vala:337 msgid "" "Delete cache and reload all kernel info\n" "\n" @@ -400,41 +404,41 @@ msgstr "" "\n" "ESTO TAMBIÉN ELIMINARÁ TODAS LAS NOTAS DEL USUARIO" -#: src/Gtk/MainWindow.vala:340 src/Gtk/SettingsDialog.vala:49 +#: src/Gtk/MainWindow.vala:342 src/Gtk/SettingsDialog.vala:49 msgid "Settings" msgstr "Configuración" -#: src/Gtk/MainWindow.vala:345 +#: src/Gtk/MainWindow.vala:347 msgid "About" msgstr "Acerca de" -#: src/Gtk/MainWindow.vala:350 +#: src/Gtk/MainWindow.vala:352 msgid "Exit" msgstr "Salida" -#: src/Gtk/MainWindow.vala:419 +#: src/Gtk/MainWindow.vala:421 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "" "Herramienta de renovación de núcleo para distribuciones basadas en Ubuntu" -#: src/Gtk/MainWindow.vala:420 +#: src/Gtk/MainWindow.vala:422 msgid "Forked" msgstr "Bifurcada" -#: src/Gtk/MainWindow.vala:420 +#: src/Gtk/MainWindow.vala:422 msgid "Original" msgstr "Original" -#: src/Gtk/MainWindow.vala:458 +#: src/Gtk/MainWindow.vala:460 msgid "Updating kernels" msgstr "Actualización de kernels" -#: src/Gtk/MainWindow.vala:529 +#: src/Gtk/MainWindow.vala:531 msgid "available" msgstr "disponibles" -#: src/Gtk/MainWindow.vala:572 src/Gtk/MainWindow.vala:613 -#: src/Gtk/MainWindow.vala:648 +#: src/Gtk/MainWindow.vala:574 src/Gtk/MainWindow.vala:615 +#: src/Gtk/MainWindow.vala:650 msgid "DONE" msgstr "HECHO" diff --git a/po/fr.po b/po/fr.po index 7477cf7c..ea7396e2 100644 --- a/po/fr.po +++ b/po/fr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-04-07 14:01-0400\n" +"POT-Creation-Date: 2023-04-09 11:59-0400\n" "PO-Revision-Date: 2018-08-05 15:50+0200\n" "Last-Translator: Yolateng0 \n" "Language-Team: French\n" @@ -25,129 +25,129 @@ msgstr "Architecture" msgid "Running kernel" msgstr "Noyau en cours d'exécution" -#: src/Common/LinuxKernel.vala:253 +#: src/Common/LinuxKernel.vala:255 msgid "loading cached" msgstr "chargement mis en cache" -#: src/Common/LinuxKernel.vala:267 +#: src/Common/LinuxKernel.vala:269 msgid "queuing download" msgstr "enqueuing télécharger" -#: src/Common/LinuxKernel.vala:290 +#: src/Common/LinuxKernel.vala:292 msgid "Fetching individual kernel indexes" msgstr "Récupération d'index de noyau individuels" -#: src/Common/LinuxKernel.vala:306 +#: src/Common/LinuxKernel.vala:308 msgid "loading downloaded" msgstr "chargement téléchargé" -#: src/Common/LinuxKernel.vala:341 +#: src/Common/LinuxKernel.vala:343 msgid "Updating from" msgstr "Mise à jour à partir de" -#: src/Common/LinuxKernel.vala:349 +#: src/Common/LinuxKernel.vala:351 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:352 +#: src/Common/LinuxKernel.vala:354 msgid "FAILED" msgstr "RATÉ" -#: src/Common/LinuxKernel.vala:395 +#: src/Common/LinuxKernel.vala:397 msgid "Found installed" msgstr "Trouvé installé" -#: src/Common/LinuxKernel.vala:731 src/Gtk/MainWindow.vala:520 -#: src/Gtk/MainWindow.vala:533 +#: src/Common/LinuxKernel.vala:733 src/Gtk/MainWindow.vala:522 +#: src/Gtk/MainWindow.vala:535 msgid "Running" msgstr "Actuel" -#: src/Common/LinuxKernel.vala:732 +#: src/Common/LinuxKernel.vala:734 msgid "Installed" msgstr "Installé" -#: src/Common/LinuxKernel.vala:733 +#: src/Common/LinuxKernel.vala:735 msgid "Invalid" msgstr "No válido" -#: src/Common/LinuxKernel.vala:807 +#: src/Common/LinuxKernel.vala:809 msgid "Packages Available" msgstr "Paquets Disponibles" -#: src/Common/LinuxKernel.vala:813 +#: src/Common/LinuxKernel.vala:815 msgid "Packages Installed" msgstr "Paquets Installés" -#: src/Common/LinuxKernel.vala:835 src/lib/TeeJee.FileSystem.vala:118 +#: src/Common/LinuxKernel.vala:837 src/lib/TeeJee.FileSystem.vala:118 msgid "File not found" msgstr "Fichier non trouvé" -#: src/Common/LinuxKernel.vala:904 +#: src/Common/LinuxKernel.vala:908 msgid "Available Kernels" msgstr "Noyaux Disponibles" -#: src/Common/LinuxKernel.vala:941 +#: src/Common/LinuxKernel.vala:945 msgid "enabled" msgstr "activé" -#: src/Common/LinuxKernel.vala:965 +#: src/Common/LinuxKernel.vala:969 msgid "Downloading" msgstr "Téléchargement" -#: src/Common/LinuxKernel.vala:986 +#: src/Common/LinuxKernel.vala:990 msgid "is already installed." msgstr "est déjà installé." -#: src/Common/LinuxKernel.vala:1016 +#: src/Common/LinuxKernel.vala:1020 msgid "Uninstalling selected kernels" msgstr "Désinstallation des noyaux sélectionnés" -#: src/Common/LinuxKernel.vala:1022 +#: src/Common/LinuxKernel.vala:1026 msgid "requested" msgstr "Demandé" -#: src/Common/LinuxKernel.vala:1025 +#: src/Common/LinuxKernel.vala:1029 msgid "not uninstalling the currently running kernel" msgstr "Ne pas désinstaller le noyau en cours d'exécution" -#: src/Common/LinuxKernel.vala:1041 +#: src/Common/LinuxKernel.vala:1045 msgid "found" msgstr "fonder" -#: src/Common/LinuxKernel.vala:1044 +#: src/Common/LinuxKernel.vala:1048 msgid "No packages to un-install!" msgstr "Pas de paquets à désinstaller !" -#: src/Common/LinuxKernel.vala:1092 +#: src/Common/LinuxKernel.vala:1096 msgid "Could not find running kernel in list" msgstr "Impossible de trouver le noyau en cours d'exécution dans la liste" -#: src/Common/LinuxKernel.vala:1097 +#: src/Common/LinuxKernel.vala:1101 msgid "Could not find any kernels to uninstall" msgstr "Impossible de trouver des noyaux à désinstaller" -#: src/Common/LinuxKernel.vala:1105 +#: src/Common/LinuxKernel.vala:1109 msgid "The following kernels will be uninstalled" msgstr "Les noyaux suivants seront désinstallés" -#: src/Common/LinuxKernel.vala:1109 +#: src/Common/LinuxKernel.vala:1113 msgid "Continue ?" msgstr "Reprendre ?" -#: src/Common/LinuxKernel.vala:1131 src/Console/AppConsole.vala:292 +#: src/Common/LinuxKernel.vala:1135 src/Console/AppConsole.vala:292 msgid "Latest update" msgstr "Dernière mise à jour" -#: src/Common/LinuxKernel.vala:1142 src/Console/AppConsole.vala:299 +#: src/Common/LinuxKernel.vala:1146 src/Console/AppConsole.vala:299 msgid "Latest point update" msgstr "Dernière mise à jour mineure" -#: src/Common/LinuxKernel.vala:1150 src/Console/AppConsole.vala:304 +#: src/Common/LinuxKernel.vala:1154 src/Console/AppConsole.vala:304 #: src/Console/AppConsole.vala:320 msgid "No updates found" msgstr "Aucune mise à jour disponible" -#: src/Common/LinuxKernel.vala:1159 +#: src/Common/LinuxKernel.vala:1163 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Installer le noyau en version %s ? (y/n): " @@ -216,7 +216,7 @@ msgstr "Installer le noyau mainline spécifié" msgid "Uninstall specified kernel" msgstr "Désinstaller le noyau spécifié" -#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:329 +#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:331 msgid "Uninstall all but the highest installed version" msgstr "Désinstallez toutes le version installées, sauf la plus élevée" @@ -312,7 +312,7 @@ msgstr "Paquet %s disponibles" msgid "Show" msgstr "Montrer" -#: src/Console/AppConsole.vala:347 src/Gtk/MainWindow.vala:297 +#: src/Console/AppConsole.vala:347 src/Gtk/MainWindow.vala:298 msgid "Install" msgstr "Installer" @@ -368,31 +368,35 @@ msgstr "Afficher les informations de débogage" msgid "Show all options" msgstr "Afficher toutes les options" -#: src/Gtk/MainWindow.vala:110 +#: src/Gtk/MainWindow.vala:111 msgid "Kernel" msgstr "Noyau" -#: src/Gtk/MainWindow.vala:143 +#: src/Gtk/MainWindow.vala:144 msgid "Status" msgstr "Statut" -#: src/Gtk/MainWindow.vala:158 +#: src/Gtk/MainWindow.vala:159 msgid "Notes" msgstr "Notes" -#: src/Gtk/MainWindow.vala:307 +#: src/Gtk/MainWindow.vala:308 msgid "Uninstall" msgstr "Désinstaller" -#: src/Gtk/MainWindow.vala:328 +#: src/Gtk/MainWindow.vala:319 +msgid "Changelog, build status, etc" +msgstr "" + +#: src/Gtk/MainWindow.vala:330 msgid "Uninstall Old" msgstr "Désinstaller Ancien" -#: src/Gtk/MainWindow.vala:334 +#: src/Gtk/MainWindow.vala:336 msgid "Reload" msgstr "Recharger" -#: src/Gtk/MainWindow.vala:335 +#: src/Gtk/MainWindow.vala:337 msgid "" "Delete cache and reload all kernel info\n" "\n" @@ -402,42 +406,42 @@ msgstr "" "\n" "CELA SUPPRIMERA ÉGALEMENT TOUTES LES NOTES DE UTILISATEUR" -#: src/Gtk/MainWindow.vala:340 src/Gtk/SettingsDialog.vala:49 +#: src/Gtk/MainWindow.vala:342 src/Gtk/SettingsDialog.vala:49 msgid "Settings" msgstr "Paramètres" -#: src/Gtk/MainWindow.vala:345 +#: src/Gtk/MainWindow.vala:347 msgid "About" msgstr "À propos" -#: src/Gtk/MainWindow.vala:350 +#: src/Gtk/MainWindow.vala:352 msgid "Exit" msgstr "Sortie" -#: src/Gtk/MainWindow.vala:419 +#: src/Gtk/MainWindow.vala:421 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "" "Utilitaire de mise à niveau des noyaux pour les distributions basées sur " "Ubuntu" -#: src/Gtk/MainWindow.vala:420 +#: src/Gtk/MainWindow.vala:422 msgid "Forked" msgstr "Forkée" -#: src/Gtk/MainWindow.vala:420 +#: src/Gtk/MainWindow.vala:422 msgid "Original" msgstr "Originale" -#: src/Gtk/MainWindow.vala:458 +#: src/Gtk/MainWindow.vala:460 msgid "Updating kernels" msgstr "Mise à jour des noyaux" -#: src/Gtk/MainWindow.vala:529 +#: src/Gtk/MainWindow.vala:531 msgid "available" msgstr "disponible" -#: src/Gtk/MainWindow.vala:572 src/Gtk/MainWindow.vala:613 -#: src/Gtk/MainWindow.vala:648 +#: src/Gtk/MainWindow.vala:574 src/Gtk/MainWindow.vala:615 +#: src/Gtk/MainWindow.vala:650 msgid "DONE" msgstr "FAIT" diff --git a/po/hr.po b/po/hr.po index fdbb94c5..1c71b80c 100644 --- a/po/hr.po +++ b/po/hr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-04-07 14:01-0400\n" +"POT-Creation-Date: 2023-04-09 11:59-0400\n" "PO-Revision-Date: 2022-09-22 12:13+0200\n" "Last-Translator: gogo \n" "Language-Team: Croatian\n" @@ -25,129 +25,129 @@ msgstr "Arhitektura" msgid "Running kernel" msgstr "Trčanje kernel" -#: src/Common/LinuxKernel.vala:253 +#: src/Common/LinuxKernel.vala:255 msgid "loading cached" msgstr "učitavanje predmemoriranog" -#: src/Common/LinuxKernel.vala:267 +#: src/Common/LinuxKernel.vala:269 msgid "queuing download" msgstr "preuzimanje u redu čekanja" -#: src/Common/LinuxKernel.vala:290 +#: src/Common/LinuxKernel.vala:292 msgid "Fetching individual kernel indexes" msgstr "Dohvaćanje pojedinačnih indeksa kernel" -#: src/Common/LinuxKernel.vala:306 +#: src/Common/LinuxKernel.vala:308 msgid "loading downloaded" msgstr "učitavanje preuzeto" -#: src/Common/LinuxKernel.vala:341 +#: src/Common/LinuxKernel.vala:343 msgid "Updating from" msgstr "Ažuriranje iz" -#: src/Common/LinuxKernel.vala:349 +#: src/Common/LinuxKernel.vala:351 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:352 +#: src/Common/LinuxKernel.vala:354 msgid "FAILED" msgstr "NIJE USPIO" -#: src/Common/LinuxKernel.vala:395 +#: src/Common/LinuxKernel.vala:397 msgid "Found installed" msgstr "Pronađeno instalirano" -#: src/Common/LinuxKernel.vala:731 src/Gtk/MainWindow.vala:520 -#: src/Gtk/MainWindow.vala:533 +#: src/Common/LinuxKernel.vala:733 src/Gtk/MainWindow.vala:522 +#: src/Gtk/MainWindow.vala:535 msgid "Running" msgstr "Pokrenuto" -#: src/Common/LinuxKernel.vala:732 +#: src/Common/LinuxKernel.vala:734 msgid "Installed" msgstr "Instalirano" -#: src/Common/LinuxKernel.vala:733 +#: src/Common/LinuxKernel.vala:735 msgid "Invalid" msgstr "Érvénytelen" -#: src/Common/LinuxKernel.vala:807 +#: src/Common/LinuxKernel.vala:809 msgid "Packages Available" msgstr "Dostupni Paketi" -#: src/Common/LinuxKernel.vala:813 +#: src/Common/LinuxKernel.vala:815 msgid "Packages Installed" msgstr "Instalirani paketi" -#: src/Common/LinuxKernel.vala:835 src/lib/TeeJee.FileSystem.vala:118 +#: src/Common/LinuxKernel.vala:837 src/lib/TeeJee.FileSystem.vala:118 msgid "File not found" msgstr "Datoteka nije pronađena" -#: src/Common/LinuxKernel.vala:904 +#: src/Common/LinuxKernel.vala:908 msgid "Available Kernels" msgstr "Dostupni kerneli" -#: src/Common/LinuxKernel.vala:941 +#: src/Common/LinuxKernel.vala:945 msgid "enabled" msgstr "omogućen" -#: src/Common/LinuxKernel.vala:965 +#: src/Common/LinuxKernel.vala:969 msgid "Downloading" msgstr "Učitavanje" -#: src/Common/LinuxKernel.vala:986 +#: src/Common/LinuxKernel.vala:990 msgid "is already installed." msgstr "je već instaliran." -#: src/Common/LinuxKernel.vala:1016 +#: src/Common/LinuxKernel.vala:1020 msgid "Uninstalling selected kernels" msgstr "Deinstaliraj određene kernele" -#: src/Common/LinuxKernel.vala:1022 +#: src/Common/LinuxKernel.vala:1026 msgid "requested" msgstr "Zatražio" -#: src/Common/LinuxKernel.vala:1025 +#: src/Common/LinuxKernel.vala:1029 msgid "not uninstalling the currently running kernel" msgstr "ne deinstaliranje trenutno pokrenute kernel" -#: src/Common/LinuxKernel.vala:1041 +#: src/Common/LinuxKernel.vala:1045 msgid "found" msgstr "pronađen" -#: src/Common/LinuxKernel.vala:1044 +#: src/Common/LinuxKernel.vala:1048 msgid "No packages to un-install!" msgstr "Nema paketa za poništavanje instalacije!" -#: src/Common/LinuxKernel.vala:1092 +#: src/Common/LinuxKernel.vala:1096 msgid "Could not find running kernel in list" msgstr "Nije moguće pronaći pokrenutu kernel na popisu" -#: src/Common/LinuxKernel.vala:1097 +#: src/Common/LinuxKernel.vala:1101 msgid "Could not find any kernels to uninstall" msgstr "Nema pronađenih kernela za deinstaliranje" -#: src/Common/LinuxKernel.vala:1105 +#: src/Common/LinuxKernel.vala:1109 msgid "The following kernels will be uninstalled" msgstr "Deinstalirat će se sljedeće kerneli" -#: src/Common/LinuxKernel.vala:1109 +#: src/Common/LinuxKernel.vala:1113 msgid "Continue ?" msgstr "Nastavi?" -#: src/Common/LinuxKernel.vala:1131 src/Console/AppConsole.vala:292 +#: src/Common/LinuxKernel.vala:1135 src/Console/AppConsole.vala:292 msgid "Latest update" msgstr "Najnovija nadopuna" -#: src/Common/LinuxKernel.vala:1142 src/Console/AppConsole.vala:299 +#: src/Common/LinuxKernel.vala:1146 src/Console/AppConsole.vala:299 msgid "Latest point update" msgstr "Najnovija ciljana nadopuna" -#: src/Common/LinuxKernel.vala:1150 src/Console/AppConsole.vala:304 +#: src/Common/LinuxKernel.vala:1154 src/Console/AppConsole.vala:304 #: src/Console/AppConsole.vala:320 msgid "No updates found" msgstr "Nema pronađenih nadopuna" -#: src/Common/LinuxKernel.vala:1159 +#: src/Common/LinuxKernel.vala:1163 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Instaliraj kernel inačice %s ? (d/n): " @@ -215,7 +215,7 @@ msgstr "Instaliraj određeni mainline kernel" msgid "Uninstall specified kernel" msgstr "Deinstaliraj određene kernele" -#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:329 +#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:331 msgid "Uninstall all but the highest installed version" msgstr "Deinstaliraj sve osim najnovije instalirane verzije" @@ -309,7 +309,7 @@ msgstr "Kernel %s je dostupan" msgid "Show" msgstr "Prikaži" -#: src/Console/AppConsole.vala:347 src/Gtk/MainWindow.vala:297 +#: src/Console/AppConsole.vala:347 src/Gtk/MainWindow.vala:298 msgid "Install" msgstr "Instaliraj" @@ -365,31 +365,35 @@ msgstr "Ispiši informacije otklanjanja grešaka" msgid "Show all options" msgstr "Prikaži sve mogućnosti" -#: src/Gtk/MainWindow.vala:110 +#: src/Gtk/MainWindow.vala:111 msgid "Kernel" msgstr "Kernel" -#: src/Gtk/MainWindow.vala:143 +#: src/Gtk/MainWindow.vala:144 msgid "Status" msgstr "Stanje" -#: src/Gtk/MainWindow.vala:158 +#: src/Gtk/MainWindow.vala:159 msgid "Notes" msgstr "Bilješke" -#: src/Gtk/MainWindow.vala:307 +#: src/Gtk/MainWindow.vala:308 msgid "Uninstall" msgstr "Deinstaliraj" -#: src/Gtk/MainWindow.vala:328 +#: src/Gtk/MainWindow.vala:319 +msgid "Changelog, build status, etc" +msgstr "" + +#: src/Gtk/MainWindow.vala:330 msgid "Uninstall Old" msgstr "Deinstaliraj staro" -#: src/Gtk/MainWindow.vala:334 +#: src/Gtk/MainWindow.vala:336 msgid "Reload" msgstr "Ponovno učitati" -#: src/Gtk/MainWindow.vala:335 +#: src/Gtk/MainWindow.vala:337 msgid "" "Delete cache and reload all kernel info\n" "\n" @@ -399,40 +403,40 @@ msgstr "" "\n" "EZZEL AZ ÖSSZES FELHASZNÁLÓI JEGYZETET IS TÖRLI" -#: src/Gtk/MainWindow.vala:340 src/Gtk/SettingsDialog.vala:49 +#: src/Gtk/MainWindow.vala:342 src/Gtk/SettingsDialog.vala:49 msgid "Settings" msgstr "Postavke" -#: src/Gtk/MainWindow.vala:345 +#: src/Gtk/MainWindow.vala:347 msgid "About" msgstr "O programu" -#: src/Gtk/MainWindow.vala:350 +#: src/Gtk/MainWindow.vala:352 msgid "Exit" msgstr "Izlaz" -#: src/Gtk/MainWindow.vala:419 +#: src/Gtk/MainWindow.vala:421 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Alat za nadogradnju kernela Ubuntu temeljenih distribucija" -#: src/Gtk/MainWindow.vala:420 +#: src/Gtk/MainWindow.vala:422 msgid "Forked" msgstr "Forkano" -#: src/Gtk/MainWindow.vala:420 +#: src/Gtk/MainWindow.vala:422 msgid "Original" msgstr "Izvornik" -#: src/Gtk/MainWindow.vala:458 +#: src/Gtk/MainWindow.vala:460 msgid "Updating kernels" msgstr "Ažuriranje jezgri" -#: src/Gtk/MainWindow.vala:529 +#: src/Gtk/MainWindow.vala:531 msgid "available" msgstr "dostupno" -#: src/Gtk/MainWindow.vala:572 src/Gtk/MainWindow.vala:613 -#: src/Gtk/MainWindow.vala:648 +#: src/Gtk/MainWindow.vala:574 src/Gtk/MainWindow.vala:615 +#: src/Gtk/MainWindow.vala:650 msgid "DONE" msgstr "UČINJENO" diff --git a/po/it.po b/po/it.po index a39f7318..ee008004 100644 --- a/po/it.po +++ b/po/it.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-04-07 14:01-0400\n" +"POT-Creation-Date: 2023-04-09 11:59-0400\n" "PO-Revision-Date: 2020-08-22 15:35+0100\n" "Last-Translator: Demetrio Mendozzi\n" "Language-Team: Italian\n" @@ -23,129 +23,129 @@ msgstr "Architettura" msgid "Running kernel" msgstr "Kernel in esecuzione" -#: src/Common/LinuxKernel.vala:253 +#: src/Common/LinuxKernel.vala:255 msgid "loading cached" msgstr "Caricamento file della cache" -#: src/Common/LinuxKernel.vala:267 +#: src/Common/LinuxKernel.vala:269 msgid "queuing download" msgstr "download in coda" -#: src/Common/LinuxKernel.vala:290 +#: src/Common/LinuxKernel.vala:292 msgid "Fetching individual kernel indexes" msgstr "Recupero dei singoli indici del kernel" -#: src/Common/LinuxKernel.vala:306 +#: src/Common/LinuxKernel.vala:308 msgid "loading downloaded" msgstr "caricamento dei file scaricati" -#: src/Common/LinuxKernel.vala:341 +#: src/Common/LinuxKernel.vala:343 msgid "Updating from" msgstr "Aggiornamento da" -#: src/Common/LinuxKernel.vala:349 +#: src/Common/LinuxKernel.vala:351 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:352 +#: src/Common/LinuxKernel.vala:354 msgid "FAILED" msgstr "FALLITO" -#: src/Common/LinuxKernel.vala:395 +#: src/Common/LinuxKernel.vala:397 msgid "Found installed" msgstr "Trovato installato" -#: src/Common/LinuxKernel.vala:731 src/Gtk/MainWindow.vala:520 -#: src/Gtk/MainWindow.vala:533 +#: src/Common/LinuxKernel.vala:733 src/Gtk/MainWindow.vala:522 +#: src/Gtk/MainWindow.vala:535 msgid "Running" msgstr "In esecuzione" -#: src/Common/LinuxKernel.vala:732 +#: src/Common/LinuxKernel.vala:734 msgid "Installed" msgstr "Installato" -#: src/Common/LinuxKernel.vala:733 +#: src/Common/LinuxKernel.vala:735 msgid "Invalid" msgstr "Non valido" -#: src/Common/LinuxKernel.vala:807 +#: src/Common/LinuxKernel.vala:809 msgid "Packages Available" msgstr "Pacchetti disponibili" -#: src/Common/LinuxKernel.vala:813 +#: src/Common/LinuxKernel.vala:815 msgid "Packages Installed" msgstr "Pacchetti installati" -#: src/Common/LinuxKernel.vala:835 src/lib/TeeJee.FileSystem.vala:118 +#: src/Common/LinuxKernel.vala:837 src/lib/TeeJee.FileSystem.vala:118 msgid "File not found" msgstr "File non trovato" -#: src/Common/LinuxKernel.vala:904 +#: src/Common/LinuxKernel.vala:908 msgid "Available Kernels" msgstr "Kernel disponibili" -#: src/Common/LinuxKernel.vala:941 +#: src/Common/LinuxKernel.vala:945 msgid "enabled" msgstr "abilitato" -#: src/Common/LinuxKernel.vala:965 +#: src/Common/LinuxKernel.vala:969 msgid "Downloading" msgstr "Scaricamento" -#: src/Common/LinuxKernel.vala:986 +#: src/Common/LinuxKernel.vala:990 msgid "is already installed." msgstr "è già installato." -#: src/Common/LinuxKernel.vala:1016 +#: src/Common/LinuxKernel.vala:1020 msgid "Uninstalling selected kernels" msgstr "Disinstalla i kernel specificati" -#: src/Common/LinuxKernel.vala:1022 +#: src/Common/LinuxKernel.vala:1026 msgid "requested" msgstr "richiesto" -#: src/Common/LinuxKernel.vala:1025 +#: src/Common/LinuxKernel.vala:1029 msgid "not uninstalling the currently running kernel" msgstr "non disinstallare il kernel attualmente in esecuzione" -#: src/Common/LinuxKernel.vala:1041 +#: src/Common/LinuxKernel.vala:1045 msgid "found" msgstr "trovato" -#: src/Common/LinuxKernel.vala:1044 +#: src/Common/LinuxKernel.vala:1048 msgid "No packages to un-install!" msgstr "Nessun pacchetto da disinstallare!" -#: src/Common/LinuxKernel.vala:1092 +#: src/Common/LinuxKernel.vala:1096 msgid "Could not find running kernel in list" msgstr "Impossibile trovare il kernel in esecuzione nell'elenco" -#: src/Common/LinuxKernel.vala:1097 +#: src/Common/LinuxKernel.vala:1101 msgid "Could not find any kernels to uninstall" msgstr "Impossibile trovare alcun kernel da rimuovere" -#: src/Common/LinuxKernel.vala:1105 +#: src/Common/LinuxKernel.vala:1109 msgid "The following kernels will be uninstalled" msgstr "I seguenti kernel saranno rimossi" -#: src/Common/LinuxKernel.vala:1109 +#: src/Common/LinuxKernel.vala:1113 msgid "Continue ?" msgstr "Continuare ?" -#: src/Common/LinuxKernel.vala:1131 src/Console/AppConsole.vala:292 +#: src/Common/LinuxKernel.vala:1135 src/Console/AppConsole.vala:292 msgid "Latest update" msgstr "Ultimo aggiornamento" -#: src/Common/LinuxKernel.vala:1142 src/Console/AppConsole.vala:299 +#: src/Common/LinuxKernel.vala:1146 src/Console/AppConsole.vala:299 msgid "Latest point update" msgstr "Ultimo aggiornamento del rilascio parziale" -#: src/Common/LinuxKernel.vala:1150 src/Console/AppConsole.vala:304 +#: src/Common/LinuxKernel.vala:1154 src/Console/AppConsole.vala:304 #: src/Console/AppConsole.vala:320 msgid "No updates found" msgstr "Nessun aggiornamento trovato" -#: src/Common/LinuxKernel.vala:1159 +#: src/Common/LinuxKernel.vala:1163 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Installare la versione del kernel %s ? (y/n): " @@ -216,7 +216,7 @@ msgstr "Installa il kernel mainline specificato" msgid "Uninstall specified kernel" msgstr "Disinstalla i kernel specificati" -#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:329 +#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:331 msgid "Uninstall all but the highest installed version" msgstr "Disinstallare tutti tranne la versione più recente installata" @@ -310,7 +310,7 @@ msgstr "Kernel %s Disponibile" msgid "Show" msgstr "Mostra" -#: src/Console/AppConsole.vala:347 src/Gtk/MainWindow.vala:297 +#: src/Console/AppConsole.vala:347 src/Gtk/MainWindow.vala:298 msgid "Install" msgstr "Installa" @@ -366,31 +366,35 @@ msgstr "Stampa le informazioni di debug" msgid "Show all options" msgstr "Mostra tutte le opzioni" -#: src/Gtk/MainWindow.vala:110 +#: src/Gtk/MainWindow.vala:111 msgid "Kernel" msgstr "Kernel" -#: src/Gtk/MainWindow.vala:143 +#: src/Gtk/MainWindow.vala:144 msgid "Status" msgstr "Stato" -#: src/Gtk/MainWindow.vala:158 +#: src/Gtk/MainWindow.vala:159 msgid "Notes" msgstr "Note" -#: src/Gtk/MainWindow.vala:307 +#: src/Gtk/MainWindow.vala:308 msgid "Uninstall" msgstr "Disinstalla" -#: src/Gtk/MainWindow.vala:328 +#: src/Gtk/MainWindow.vala:319 +msgid "Changelog, build status, etc" +msgstr "" + +#: src/Gtk/MainWindow.vala:330 msgid "Uninstall Old" msgstr "Disinstalla i vecchi" -#: src/Gtk/MainWindow.vala:334 +#: src/Gtk/MainWindow.vala:336 msgid "Reload" msgstr "Ricarica" -#: src/Gtk/MainWindow.vala:335 +#: src/Gtk/MainWindow.vala:337 msgid "" "Delete cache and reload all kernel info\n" "\n" @@ -400,40 +404,40 @@ msgstr "" "\n" "QUESTO CANCELLERÀ ANCHE TUTTE LE NOTE UTENTE" -#: src/Gtk/MainWindow.vala:340 src/Gtk/SettingsDialog.vala:49 +#: src/Gtk/MainWindow.vala:342 src/Gtk/SettingsDialog.vala:49 msgid "Settings" msgstr "Impostazioni" -#: src/Gtk/MainWindow.vala:345 +#: src/Gtk/MainWindow.vala:347 msgid "About" msgstr "Informazioni" -#: src/Gtk/MainWindow.vala:350 +#: src/Gtk/MainWindow.vala:352 msgid "Exit" msgstr "Chiudi" -#: src/Gtk/MainWindow.vala:419 +#: src/Gtk/MainWindow.vala:421 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Utilità di aggiornamento del kernel per distribuzioni basate su Ubuntu" -#: src/Gtk/MainWindow.vala:420 +#: src/Gtk/MainWindow.vala:422 msgid "Forked" msgstr "Forked" -#: src/Gtk/MainWindow.vala:420 +#: src/Gtk/MainWindow.vala:422 msgid "Original" msgstr "Originale" -#: src/Gtk/MainWindow.vala:458 +#: src/Gtk/MainWindow.vala:460 msgid "Updating kernels" msgstr "Aggiornamento dei kernel" -#: src/Gtk/MainWindow.vala:529 +#: src/Gtk/MainWindow.vala:531 msgid "available" msgstr "disponibile" -#: src/Gtk/MainWindow.vala:572 src/Gtk/MainWindow.vala:613 -#: src/Gtk/MainWindow.vala:648 +#: src/Gtk/MainWindow.vala:574 src/Gtk/MainWindow.vala:615 +#: src/Gtk/MainWindow.vala:650 msgid "DONE" msgstr "FATTO" diff --git a/po/ko.po b/po/ko.po index 6494ba54..03a0552d 100644 --- a/po/ko.po +++ b/po/ko.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-04-07 14:01-0400\n" +"POT-Creation-Date: 2023-04-09 11:59-0400\n" "PO-Revision-Date: 2022-09-28 11:48+0900\n" "Last-Translator: Kevin Kim \n" "Language-Team: Korean\n" @@ -25,129 +25,129 @@ msgstr "아키텍처" msgid "Running kernel" msgstr "현재 실행 중인 커널" -#: src/Common/LinuxKernel.vala:253 +#: src/Common/LinuxKernel.vala:255 msgid "loading cached" msgstr "캐시된 로드 중" -#: src/Common/LinuxKernel.vala:267 +#: src/Common/LinuxKernel.vala:269 msgid "queuing download" msgstr "대기열 다운로드" -#: src/Common/LinuxKernel.vala:290 +#: src/Common/LinuxKernel.vala:292 msgid "Fetching individual kernel indexes" msgstr "개별 커널 인덱스 페치" -#: src/Common/LinuxKernel.vala:306 +#: src/Common/LinuxKernel.vala:308 msgid "loading downloaded" msgstr "다운로드 로드 중" -#: src/Common/LinuxKernel.vala:341 +#: src/Common/LinuxKernel.vala:343 msgid "Updating from" msgstr "다음에서 업데이트" -#: src/Common/LinuxKernel.vala:349 +#: src/Common/LinuxKernel.vala:351 msgid "OK" msgstr "확인" -#: src/Common/LinuxKernel.vala:352 +#: src/Common/LinuxKernel.vala:354 msgid "FAILED" msgstr "실패" -#: src/Common/LinuxKernel.vala:395 +#: src/Common/LinuxKernel.vala:397 msgid "Found installed" msgstr "설치된 것을 찾았습니다" -#: src/Common/LinuxKernel.vala:731 src/Gtk/MainWindow.vala:520 -#: src/Gtk/MainWindow.vala:533 +#: src/Common/LinuxKernel.vala:733 src/Gtk/MainWindow.vala:522 +#: src/Gtk/MainWindow.vala:535 msgid "Running" msgstr "구동 중" -#: src/Common/LinuxKernel.vala:732 +#: src/Common/LinuxKernel.vala:734 msgid "Installed" msgstr "설치 됨" -#: src/Common/LinuxKernel.vala:733 +#: src/Common/LinuxKernel.vala:735 msgid "Invalid" msgstr "사용할 수 없음" -#: src/Common/LinuxKernel.vala:807 +#: src/Common/LinuxKernel.vala:809 msgid "Packages Available" msgstr "설치 가능한 패키지" -#: src/Common/LinuxKernel.vala:813 +#: src/Common/LinuxKernel.vala:815 msgid "Packages Installed" msgstr "설치된 패키지" -#: src/Common/LinuxKernel.vala:835 src/lib/TeeJee.FileSystem.vala:118 +#: src/Common/LinuxKernel.vala:837 src/lib/TeeJee.FileSystem.vala:118 msgid "File not found" msgstr "파일을 찾을 수 없습니다" -#: src/Common/LinuxKernel.vala:904 +#: src/Common/LinuxKernel.vala:908 msgid "Available Kernels" msgstr "설치 가능한 커널" -#: src/Common/LinuxKernel.vala:941 +#: src/Common/LinuxKernel.vala:945 msgid "enabled" msgstr "사용" -#: src/Common/LinuxKernel.vala:965 +#: src/Common/LinuxKernel.vala:969 msgid "Downloading" msgstr "다운로드" -#: src/Common/LinuxKernel.vala:986 +#: src/Common/LinuxKernel.vala:990 msgid "is already installed." msgstr "가 이미 설치되어 있습니다" -#: src/Common/LinuxKernel.vala:1016 +#: src/Common/LinuxKernel.vala:1020 msgid "Uninstalling selected kernels" msgstr "선택한 커널 제거" -#: src/Common/LinuxKernel.vala:1022 +#: src/Common/LinuxKernel.vala:1026 msgid "requested" msgstr "요청" -#: src/Common/LinuxKernel.vala:1025 +#: src/Common/LinuxKernel.vala:1029 msgid "not uninstalling the currently running kernel" msgstr "현재 실행 중인 커널을 제거하지 않음" -#: src/Common/LinuxKernel.vala:1041 +#: src/Common/LinuxKernel.vala:1045 msgid "found" msgstr "설립하다" -#: src/Common/LinuxKernel.vala:1044 +#: src/Common/LinuxKernel.vala:1048 msgid "No packages to un-install!" msgstr "제거 할 패키지가 없습니다!" -#: src/Common/LinuxKernel.vala:1092 +#: src/Common/LinuxKernel.vala:1096 msgid "Could not find running kernel in list" msgstr "현재 실행 중인 커널을 찾을 수 없습니다" -#: src/Common/LinuxKernel.vala:1097 +#: src/Common/LinuxKernel.vala:1101 msgid "Could not find any kernels to uninstall" msgstr "삭제할 커널을 찾을 수 없습니다" -#: src/Common/LinuxKernel.vala:1105 +#: src/Common/LinuxKernel.vala:1109 msgid "The following kernels will be uninstalled" msgstr "풀이" -#: src/Common/LinuxKernel.vala:1109 +#: src/Common/LinuxKernel.vala:1113 msgid "Continue ?" msgstr "계속하시겠습니까?" -#: src/Common/LinuxKernel.vala:1131 src/Console/AppConsole.vala:292 +#: src/Common/LinuxKernel.vala:1135 src/Console/AppConsole.vala:292 msgid "Latest update" msgstr "최신 업데이트" -#: src/Common/LinuxKernel.vala:1142 src/Console/AppConsole.vala:299 +#: src/Common/LinuxKernel.vala:1146 src/Console/AppConsole.vala:299 msgid "Latest point update" msgstr "최신 포인트 업데이트" -#: src/Common/LinuxKernel.vala:1150 src/Console/AppConsole.vala:304 +#: src/Common/LinuxKernel.vala:1154 src/Console/AppConsole.vala:304 #: src/Console/AppConsole.vala:320 msgid "No updates found" msgstr "업데이트를 찾을 수 없습니다" -#: src/Common/LinuxKernel.vala:1159 +#: src/Common/LinuxKernel.vala:1163 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "커널 %s 버전을 설치하시겠습니까? (y/n): " @@ -214,7 +214,7 @@ msgstr "지정한 메인라인 커널 설치" msgid "Uninstall specified kernel" msgstr "지정한 커널 삭제" -#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:329 +#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:331 msgid "Uninstall all but the highest installed version" msgstr "설치된 가장 높은 버전을 제외한 모든 버전을 제거합니다" @@ -308,7 +308,7 @@ msgstr "커널 %s 사용 가능" msgid "Show" msgstr "보이기" -#: src/Console/AppConsole.vala:347 src/Gtk/MainWindow.vala:297 +#: src/Console/AppConsole.vala:347 src/Gtk/MainWindow.vala:298 msgid "Install" msgstr "설치" @@ -364,31 +364,35 @@ msgstr "디버그 정보 출력" msgid "Show all options" msgstr "모든 옵션 보기" -#: src/Gtk/MainWindow.vala:110 +#: src/Gtk/MainWindow.vala:111 msgid "Kernel" msgstr "커널" -#: src/Gtk/MainWindow.vala:143 +#: src/Gtk/MainWindow.vala:144 msgid "Status" msgstr "상태" -#: src/Gtk/MainWindow.vala:158 +#: src/Gtk/MainWindow.vala:159 msgid "Notes" msgstr "노트" -#: src/Gtk/MainWindow.vala:307 +#: src/Gtk/MainWindow.vala:308 msgid "Uninstall" msgstr "삭제" -#: src/Gtk/MainWindow.vala:328 +#: src/Gtk/MainWindow.vala:319 +msgid "Changelog, build status, etc" +msgstr "" + +#: src/Gtk/MainWindow.vala:330 msgid "Uninstall Old" msgstr "오래된 커널 제거" -#: src/Gtk/MainWindow.vala:334 +#: src/Gtk/MainWindow.vala:336 msgid "Reload" msgstr "새로고침" -#: src/Gtk/MainWindow.vala:335 +#: src/Gtk/MainWindow.vala:337 msgid "" "Delete cache and reload all kernel info\n" "\n" @@ -398,40 +402,40 @@ msgstr "" "\n" "!! 이렇게 하면 모든 사용자 메모도 삭제됩니다 !!" -#: src/Gtk/MainWindow.vala:340 src/Gtk/SettingsDialog.vala:49 +#: src/Gtk/MainWindow.vala:342 src/Gtk/SettingsDialog.vala:49 msgid "Settings" msgstr "설정" -#: src/Gtk/MainWindow.vala:345 +#: src/Gtk/MainWindow.vala:347 msgid "About" msgstr "정보" -#: src/Gtk/MainWindow.vala:350 +#: src/Gtk/MainWindow.vala:352 msgid "Exit" msgstr "출구" -#: src/Gtk/MainWindow.vala:419 +#: src/Gtk/MainWindow.vala:421 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "우분투 기반 배포판의 커널 업그레이드 도구" -#: src/Gtk/MainWindow.vala:420 +#: src/Gtk/MainWindow.vala:422 msgid "Forked" msgstr "가랑이진" -#: src/Gtk/MainWindow.vala:420 +#: src/Gtk/MainWindow.vala:422 msgid "Original" msgstr "원문 언어" -#: src/Gtk/MainWindow.vala:458 +#: src/Gtk/MainWindow.vala:460 msgid "Updating kernels" msgstr "커널 업데이트" -#: src/Gtk/MainWindow.vala:529 +#: src/Gtk/MainWindow.vala:531 msgid "available" msgstr "사용가능" -#: src/Gtk/MainWindow.vala:572 src/Gtk/MainWindow.vala:613 -#: src/Gtk/MainWindow.vala:648 +#: src/Gtk/MainWindow.vala:574 src/Gtk/MainWindow.vala:615 +#: src/Gtk/MainWindow.vala:650 msgid "DONE" msgstr "수행" diff --git a/po/messages.pot b/po/messages.pot index 0a32c308..2bdfd788 100644 --- a/po/messages.pot +++ b/po/messages.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline 1.2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-04-07 16:30-0400\n" +"POT-Creation-Date: 2023-04-09 12:06-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -29,129 +29,129 @@ msgstr "" msgid "Running kernel" msgstr "" -#: src/Common/LinuxKernel.vala:253 +#: src/Common/LinuxKernel.vala:255 msgid "loading cached" msgstr "" -#: src/Common/LinuxKernel.vala:267 +#: src/Common/LinuxKernel.vala:269 msgid "queuing download" msgstr "" -#: src/Common/LinuxKernel.vala:290 +#: src/Common/LinuxKernel.vala:292 msgid "Fetching individual kernel indexes" msgstr "" -#: src/Common/LinuxKernel.vala:306 +#: src/Common/LinuxKernel.vala:308 msgid "loading downloaded" msgstr "" -#: src/Common/LinuxKernel.vala:341 +#: src/Common/LinuxKernel.vala:343 msgid "Updating from" msgstr "" -#: src/Common/LinuxKernel.vala:349 +#: src/Common/LinuxKernel.vala:351 msgid "OK" msgstr "" -#: src/Common/LinuxKernel.vala:352 +#: src/Common/LinuxKernel.vala:354 msgid "FAILED" msgstr "" -#: src/Common/LinuxKernel.vala:395 +#: src/Common/LinuxKernel.vala:397 msgid "Found installed" msgstr "" -#: src/Common/LinuxKernel.vala:731 src/Gtk/MainWindow.vala:520 -#: src/Gtk/MainWindow.vala:533 +#: src/Common/LinuxKernel.vala:733 src/Gtk/MainWindow.vala:522 +#: src/Gtk/MainWindow.vala:535 msgid "Running" msgstr "" -#: src/Common/LinuxKernel.vala:732 +#: src/Common/LinuxKernel.vala:734 msgid "Installed" msgstr "" -#: src/Common/LinuxKernel.vala:733 +#: src/Common/LinuxKernel.vala:735 msgid "Invalid" msgstr "" -#: src/Common/LinuxKernel.vala:807 +#: src/Common/LinuxKernel.vala:809 msgid "Packages Available" msgstr "" -#: src/Common/LinuxKernel.vala:813 +#: src/Common/LinuxKernel.vala:815 msgid "Packages Installed" msgstr "" -#: src/Common/LinuxKernel.vala:835 src/lib/TeeJee.FileSystem.vala:118 +#: src/Common/LinuxKernel.vala:837 src/lib/TeeJee.FileSystem.vala:118 msgid "File not found" msgstr "" -#: src/Common/LinuxKernel.vala:904 +#: src/Common/LinuxKernel.vala:908 msgid "Available Kernels" msgstr "" -#: src/Common/LinuxKernel.vala:941 +#: src/Common/LinuxKernel.vala:945 msgid "enabled" msgstr "" -#: src/Common/LinuxKernel.vala:965 +#: src/Common/LinuxKernel.vala:969 msgid "Downloading" msgstr "" -#: src/Common/LinuxKernel.vala:986 +#: src/Common/LinuxKernel.vala:990 msgid "is already installed." msgstr "" -#: src/Common/LinuxKernel.vala:1016 +#: src/Common/LinuxKernel.vala:1020 msgid "Uninstalling selected kernels" msgstr "" -#: src/Common/LinuxKernel.vala:1022 +#: src/Common/LinuxKernel.vala:1026 msgid "requested" msgstr "" -#: src/Common/LinuxKernel.vala:1025 +#: src/Common/LinuxKernel.vala:1029 msgid "not uninstalling the currently running kernel" msgstr "" -#: src/Common/LinuxKernel.vala:1041 +#: src/Common/LinuxKernel.vala:1045 msgid "found" msgstr "" -#: src/Common/LinuxKernel.vala:1044 +#: src/Common/LinuxKernel.vala:1048 msgid "No packages to un-install!" msgstr "" -#: src/Common/LinuxKernel.vala:1092 +#: src/Common/LinuxKernel.vala:1096 msgid "Could not find running kernel in list" msgstr "" -#: src/Common/LinuxKernel.vala:1097 +#: src/Common/LinuxKernel.vala:1101 msgid "Could not find any kernels to uninstall" msgstr "" -#: src/Common/LinuxKernel.vala:1105 +#: src/Common/LinuxKernel.vala:1109 msgid "The following kernels will be uninstalled" msgstr "" -#: src/Common/LinuxKernel.vala:1109 +#: src/Common/LinuxKernel.vala:1113 msgid "Continue ?" msgstr "" -#: src/Common/LinuxKernel.vala:1131 src/Console/AppConsole.vala:292 +#: src/Common/LinuxKernel.vala:1135 src/Console/AppConsole.vala:292 msgid "Latest update" msgstr "" -#: src/Common/LinuxKernel.vala:1142 src/Console/AppConsole.vala:299 +#: src/Common/LinuxKernel.vala:1146 src/Console/AppConsole.vala:299 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:1150 src/Console/AppConsole.vala:304 +#: src/Common/LinuxKernel.vala:1154 src/Console/AppConsole.vala:304 #: src/Console/AppConsole.vala:320 msgid "No updates found" msgstr "" -#: src/Common/LinuxKernel.vala:1159 +#: src/Common/LinuxKernel.vala:1163 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "" @@ -218,7 +218,7 @@ msgstr "" msgid "Uninstall specified kernel" msgstr "" -#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:329 +#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:331 msgid "Uninstall all but the highest installed version" msgstr "" @@ -312,7 +312,7 @@ msgstr "" msgid "Show" msgstr "" -#: src/Console/AppConsole.vala:347 src/Gtk/MainWindow.vala:297 +#: src/Console/AppConsole.vala:347 src/Gtk/MainWindow.vala:298 msgid "Install" msgstr "" @@ -368,71 +368,75 @@ msgstr "" msgid "Show all options" msgstr "" -#: src/Gtk/MainWindow.vala:110 +#: src/Gtk/MainWindow.vala:111 msgid "Kernel" msgstr "" -#: src/Gtk/MainWindow.vala:143 +#: src/Gtk/MainWindow.vala:144 msgid "Status" msgstr "" -#: src/Gtk/MainWindow.vala:158 +#: src/Gtk/MainWindow.vala:159 msgid "Notes" msgstr "" -#: src/Gtk/MainWindow.vala:307 +#: src/Gtk/MainWindow.vala:308 msgid "Uninstall" msgstr "" -#: src/Gtk/MainWindow.vala:328 +#: src/Gtk/MainWindow.vala:319 +msgid "Changelog, build status, etc" +msgstr "" + +#: src/Gtk/MainWindow.vala:330 msgid "Uninstall Old" msgstr "" -#: src/Gtk/MainWindow.vala:334 +#: src/Gtk/MainWindow.vala:336 msgid "Reload" msgstr "" -#: src/Gtk/MainWindow.vala:335 +#: src/Gtk/MainWindow.vala:337 msgid "" "Delete cache and reload all kernel info\n" "\n" "THIS WILL ALSO DELETE ALL USER NOTES" msgstr "" -#: src/Gtk/MainWindow.vala:340 src/Gtk/SettingsDialog.vala:49 +#: src/Gtk/MainWindow.vala:342 src/Gtk/SettingsDialog.vala:49 msgid "Settings" msgstr "" -#: src/Gtk/MainWindow.vala:345 +#: src/Gtk/MainWindow.vala:347 msgid "About" msgstr "" -#: src/Gtk/MainWindow.vala:350 +#: src/Gtk/MainWindow.vala:352 msgid "Exit" msgstr "" -#: src/Gtk/MainWindow.vala:419 +#: src/Gtk/MainWindow.vala:421 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "" -#: src/Gtk/MainWindow.vala:420 +#: src/Gtk/MainWindow.vala:422 msgid "Forked" msgstr "" -#: src/Gtk/MainWindow.vala:420 +#: src/Gtk/MainWindow.vala:422 msgid "Original" msgstr "" -#: src/Gtk/MainWindow.vala:458 +#: src/Gtk/MainWindow.vala:460 msgid "Updating kernels" msgstr "" -#: src/Gtk/MainWindow.vala:529 +#: src/Gtk/MainWindow.vala:531 msgid "available" msgstr "" -#: src/Gtk/MainWindow.vala:572 src/Gtk/MainWindow.vala:613 -#: src/Gtk/MainWindow.vala:648 +#: src/Gtk/MainWindow.vala:574 src/Gtk/MainWindow.vala:615 +#: src/Gtk/MainWindow.vala:650 msgid "DONE" msgstr "" diff --git a/po/nl.po b/po/nl.po index c422e63f..5a8836c2 100644 --- a/po/nl.po +++ b/po/nl.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-04-07 14:01-0400\n" +"POT-Creation-Date: 2023-04-09 11:59-0400\n" "PO-Revision-Date: 2020-08-23 13:55+0200\n" "Last-Translator: Heimen Stoffels \n" "Language-Team: Dutch (Netherlands)\n" @@ -25,129 +25,129 @@ msgstr "Architectuur" msgid "Running kernel" msgstr "Kernel uitvoeren" -#: src/Common/LinuxKernel.vala:253 +#: src/Common/LinuxKernel.vala:255 msgid "loading cached" msgstr "laden in cache" -#: src/Common/LinuxKernel.vala:267 +#: src/Common/LinuxKernel.vala:269 msgid "queuing download" msgstr "wachtrijen downloaden" -#: src/Common/LinuxKernel.vala:290 +#: src/Common/LinuxKernel.vala:292 msgid "Fetching individual kernel indexes" msgstr "Afzonderlijke kernelindexen ophalen" -#: src/Common/LinuxKernel.vala:306 +#: src/Common/LinuxKernel.vala:308 msgid "loading downloaded" msgstr "laden gedownload" -#: src/Common/LinuxKernel.vala:341 +#: src/Common/LinuxKernel.vala:343 msgid "Updating from" msgstr "Bijwerken van" -#: src/Common/LinuxKernel.vala:349 +#: src/Common/LinuxKernel.vala:351 msgid "OK" msgstr "Oké" -#: src/Common/LinuxKernel.vala:352 +#: src/Common/LinuxKernel.vala:354 msgid "FAILED" msgstr "MISLUKT" -#: src/Common/LinuxKernel.vala:395 +#: src/Common/LinuxKernel.vala:397 msgid "Found installed" msgstr "Geïnstalleerd gevonden" -#: src/Common/LinuxKernel.vala:731 src/Gtk/MainWindow.vala:520 -#: src/Gtk/MainWindow.vala:533 +#: src/Common/LinuxKernel.vala:733 src/Gtk/MainWindow.vala:522 +#: src/Gtk/MainWindow.vala:535 msgid "Running" msgstr "In gebruik" -#: src/Common/LinuxKernel.vala:732 +#: src/Common/LinuxKernel.vala:734 msgid "Installed" msgstr "Geïnstalleerd" -#: src/Common/LinuxKernel.vala:733 +#: src/Common/LinuxKernel.vala:735 msgid "Invalid" msgstr "Ongeldig" -#: src/Common/LinuxKernel.vala:807 +#: src/Common/LinuxKernel.vala:809 msgid "Packages Available" msgstr "Beschikbare pakketten" -#: src/Common/LinuxKernel.vala:813 +#: src/Common/LinuxKernel.vala:815 msgid "Packages Installed" msgstr "Geïnstalleerde pakketten" -#: src/Common/LinuxKernel.vala:835 src/lib/TeeJee.FileSystem.vala:118 +#: src/Common/LinuxKernel.vala:837 src/lib/TeeJee.FileSystem.vala:118 msgid "File not found" msgstr "Het bestand is niet gevonden" -#: src/Common/LinuxKernel.vala:904 +#: src/Common/LinuxKernel.vala:908 msgid "Available Kernels" msgstr "Beschikbare kernels" -#: src/Common/LinuxKernel.vala:941 +#: src/Common/LinuxKernel.vala:945 msgid "enabled" msgstr "ingeschakeld" -#: src/Common/LinuxKernel.vala:965 +#: src/Common/LinuxKernel.vala:969 msgid "Downloading" msgstr "Downloaden" -#: src/Common/LinuxKernel.vala:986 +#: src/Common/LinuxKernel.vala:990 msgid "is already installed." msgstr "is al geïnstalleerd." -#: src/Common/LinuxKernel.vala:1016 +#: src/Common/LinuxKernel.vala:1020 msgid "Uninstalling selected kernels" msgstr "Geselecteerde kernels verwijderen" -#: src/Common/LinuxKernel.vala:1022 +#: src/Common/LinuxKernel.vala:1026 msgid "requested" msgstr "verzocht" -#: src/Common/LinuxKernel.vala:1025 +#: src/Common/LinuxKernel.vala:1029 msgid "not uninstalling the currently running kernel" msgstr "de momenteel actieve kernel niet verwijderen" -#: src/Common/LinuxKernel.vala:1041 +#: src/Common/LinuxKernel.vala:1045 msgid "found" msgstr "gevonden" -#: src/Common/LinuxKernel.vala:1044 +#: src/Common/LinuxKernel.vala:1048 msgid "No packages to un-install!" msgstr "Geen pakketten om te verwijderen!" -#: src/Common/LinuxKernel.vala:1092 +#: src/Common/LinuxKernel.vala:1096 msgid "Could not find running kernel in list" msgstr "De in gebruik zijnde kernel staat niet op de lijst" -#: src/Common/LinuxKernel.vala:1097 +#: src/Common/LinuxKernel.vala:1101 msgid "Could not find any kernels to uninstall" msgstr "Er zijn geen te verwijderen kernels" -#: src/Common/LinuxKernel.vala:1105 +#: src/Common/LinuxKernel.vala:1109 msgid "The following kernels will be uninstalled" msgstr "De volgende kernels worden verwijderd" -#: src/Common/LinuxKernel.vala:1109 +#: src/Common/LinuxKernel.vala:1113 msgid "Continue ?" msgstr "Wilt u doorgaan?" -#: src/Common/LinuxKernel.vala:1131 src/Console/AppConsole.vala:292 +#: src/Common/LinuxKernel.vala:1135 src/Console/AppConsole.vala:292 msgid "Latest update" msgstr "Recentste update" -#: src/Common/LinuxKernel.vala:1142 src/Console/AppConsole.vala:299 +#: src/Common/LinuxKernel.vala:1146 src/Console/AppConsole.vala:299 msgid "Latest point update" msgstr "Recentste puntupdate" -#: src/Common/LinuxKernel.vala:1150 src/Console/AppConsole.vala:304 +#: src/Common/LinuxKernel.vala:1154 src/Console/AppConsole.vala:304 #: src/Console/AppConsole.vala:320 msgid "No updates found" msgstr "Geen updates gevonden" -#: src/Common/LinuxKernel.vala:1159 +#: src/Common/LinuxKernel.vala:1163 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Wilt u versie %s installeren? (j/n): " @@ -216,7 +216,7 @@ msgstr "Opgegeven mainline-kernel installeren" msgid "Uninstall specified kernel" msgstr "Opgegeven kernel verwijderen" -#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:329 +#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:331 msgid "Uninstall all but the highest installed version" msgstr "Verwijder alle behalve de hoogst geïnstalleerde versie" @@ -311,7 +311,7 @@ msgstr "Kernel %s is beschikbaar" msgid "Show" msgstr "Tonen" -#: src/Console/AppConsole.vala:347 src/Gtk/MainWindow.vala:297 +#: src/Console/AppConsole.vala:347 src/Gtk/MainWindow.vala:298 msgid "Install" msgstr "Installeren" @@ -367,31 +367,35 @@ msgstr "Foutopsporingsinformatie tonen" msgid "Show all options" msgstr "Alle opties tonen" -#: src/Gtk/MainWindow.vala:110 +#: src/Gtk/MainWindow.vala:111 msgid "Kernel" msgstr "Kernel" -#: src/Gtk/MainWindow.vala:143 +#: src/Gtk/MainWindow.vala:144 msgid "Status" msgstr "Status" -#: src/Gtk/MainWindow.vala:158 +#: src/Gtk/MainWindow.vala:159 msgid "Notes" msgstr "Notities" -#: src/Gtk/MainWindow.vala:307 +#: src/Gtk/MainWindow.vala:308 msgid "Uninstall" msgstr "Deïnstalleren" -#: src/Gtk/MainWindow.vala:328 +#: src/Gtk/MainWindow.vala:319 +msgid "Changelog, build status, etc" +msgstr "" + +#: src/Gtk/MainWindow.vala:330 msgid "Uninstall Old" msgstr "Verwijder Oude" -#: src/Gtk/MainWindow.vala:334 +#: src/Gtk/MainWindow.vala:336 msgid "Reload" msgstr "Herladen" -#: src/Gtk/MainWindow.vala:335 +#: src/Gtk/MainWindow.vala:337 msgid "" "Delete cache and reload all kernel info\n" "\n" @@ -401,40 +405,40 @@ msgstr "" "\n" "HIERMEE WORDEN OOK ALLE GEBRUIKERSNOTITIES VERWIJDERD" -#: src/Gtk/MainWindow.vala:340 src/Gtk/SettingsDialog.vala:49 +#: src/Gtk/MainWindow.vala:342 src/Gtk/SettingsDialog.vala:49 msgid "Settings" msgstr "Instellingen" -#: src/Gtk/MainWindow.vala:345 +#: src/Gtk/MainWindow.vala:347 msgid "About" msgstr "Over" -#: src/Gtk/MainWindow.vala:350 +#: src/Gtk/MainWindow.vala:352 msgid "Exit" msgstr "Afsluiten" -#: src/Gtk/MainWindow.vala:419 +#: src/Gtk/MainWindow.vala:421 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Een kernelupgradehulpmiddel voor op Ubuntu gebaseerde distributies" -#: src/Gtk/MainWindow.vala:420 +#: src/Gtk/MainWindow.vala:422 msgid "Forked" msgstr "Geforkt" -#: src/Gtk/MainWindow.vala:420 +#: src/Gtk/MainWindow.vala:422 msgid "Original" msgstr "Origineel" -#: src/Gtk/MainWindow.vala:458 +#: src/Gtk/MainWindow.vala:460 msgid "Updating kernels" msgstr "Kernels bijwerken" -#: src/Gtk/MainWindow.vala:529 +#: src/Gtk/MainWindow.vala:531 msgid "available" msgstr "beschikbaar" -#: src/Gtk/MainWindow.vala:572 src/Gtk/MainWindow.vala:613 -#: src/Gtk/MainWindow.vala:648 +#: src/Gtk/MainWindow.vala:574 src/Gtk/MainWindow.vala:615 +#: src/Gtk/MainWindow.vala:650 msgid "DONE" msgstr "AFGEROND" diff --git a/po/pl.po b/po/pl.po index 450ef7a8..3fa0854a 100644 --- a/po/pl.po +++ b/po/pl.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-04-07 14:01-0400\n" +"POT-Creation-Date: 2023-04-09 11:59-0400\n" "PO-Revision-Date: 2023-04-02 21:31+0200\n" "Last-Translator: Matthaiks\n" "Language-Team: Polish\n" @@ -24,129 +24,129 @@ msgstr "Architektura" msgid "Running kernel" msgstr "Uruchomione jądro" -#: src/Common/LinuxKernel.vala:253 +#: src/Common/LinuxKernel.vala:255 msgid "loading cached" msgstr "ładowanie z pamięci podręcznej" -#: src/Common/LinuxKernel.vala:267 +#: src/Common/LinuxKernel.vala:269 msgid "queuing download" msgstr "pobieranie w kolejce" -#: src/Common/LinuxKernel.vala:290 +#: src/Common/LinuxKernel.vala:292 msgid "Fetching individual kernel indexes" msgstr "Pobieranie indywidualnych indeksów jądra" -#: src/Common/LinuxKernel.vala:306 +#: src/Common/LinuxKernel.vala:308 msgid "loading downloaded" msgstr "ładowanie pobranych" -#: src/Common/LinuxKernel.vala:341 +#: src/Common/LinuxKernel.vala:343 msgid "Updating from" msgstr "Aktualizowanie z" -#: src/Common/LinuxKernel.vala:349 +#: src/Common/LinuxKernel.vala:351 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:352 +#: src/Common/LinuxKernel.vala:354 msgid "FAILED" msgstr "NIEPOWODZENIE" -#: src/Common/LinuxKernel.vala:395 +#: src/Common/LinuxKernel.vala:397 msgid "Found installed" msgstr "Znaleziono zainstalowane" -#: src/Common/LinuxKernel.vala:731 src/Gtk/MainWindow.vala:520 -#: src/Gtk/MainWindow.vala:533 +#: src/Common/LinuxKernel.vala:733 src/Gtk/MainWindow.vala:522 +#: src/Gtk/MainWindow.vala:535 msgid "Running" msgstr "Uruchomione" -#: src/Common/LinuxKernel.vala:732 +#: src/Common/LinuxKernel.vala:734 msgid "Installed" msgstr "Zainstalowane" -#: src/Common/LinuxKernel.vala:733 +#: src/Common/LinuxKernel.vala:735 msgid "Invalid" msgstr "Nieprawidłowy" -#: src/Common/LinuxKernel.vala:807 +#: src/Common/LinuxKernel.vala:809 msgid "Packages Available" msgstr "Dostępne pakiety" -#: src/Common/LinuxKernel.vala:813 +#: src/Common/LinuxKernel.vala:815 msgid "Packages Installed" msgstr "Pakiety zainstalowane" -#: src/Common/LinuxKernel.vala:835 src/lib/TeeJee.FileSystem.vala:118 +#: src/Common/LinuxKernel.vala:837 src/lib/TeeJee.FileSystem.vala:118 msgid "File not found" msgstr "Nie odnaleziono pliku" -#: src/Common/LinuxKernel.vala:904 +#: src/Common/LinuxKernel.vala:908 msgid "Available Kernels" msgstr "Dostępne jądra" -#: src/Common/LinuxKernel.vala:941 +#: src/Common/LinuxKernel.vala:945 msgid "enabled" msgstr "włączone" -#: src/Common/LinuxKernel.vala:965 +#: src/Common/LinuxKernel.vala:969 msgid "Downloading" msgstr "Pobieranie" -#: src/Common/LinuxKernel.vala:986 +#: src/Common/LinuxKernel.vala:990 msgid "is already installed." msgstr "jest już zainstalowane." -#: src/Common/LinuxKernel.vala:1016 +#: src/Common/LinuxKernel.vala:1020 msgid "Uninstalling selected kernels" msgstr "Odinstalowanie wybranych jąder" -#: src/Common/LinuxKernel.vala:1022 +#: src/Common/LinuxKernel.vala:1026 msgid "requested" msgstr "zażądane" -#: src/Common/LinuxKernel.vala:1025 +#: src/Common/LinuxKernel.vala:1029 msgid "not uninstalling the currently running kernel" msgstr "bez odinstalowywania aktualnie uruchomionego jądra" -#: src/Common/LinuxKernel.vala:1041 +#: src/Common/LinuxKernel.vala:1045 msgid "found" msgstr "znalezione" -#: src/Common/LinuxKernel.vala:1044 +#: src/Common/LinuxKernel.vala:1048 msgid "No packages to un-install!" msgstr "Brak pakietów do odinstalowania!" -#: src/Common/LinuxKernel.vala:1092 +#: src/Common/LinuxKernel.vala:1096 msgid "Could not find running kernel in list" msgstr "Nie można znaleźć uruchomionego jądra na liście" -#: src/Common/LinuxKernel.vala:1097 +#: src/Common/LinuxKernel.vala:1101 msgid "Could not find any kernels to uninstall" msgstr "Nie można znaleźć żadnych jąder do odinstalowania" -#: src/Common/LinuxKernel.vala:1105 +#: src/Common/LinuxKernel.vala:1109 msgid "The following kernels will be uninstalled" msgstr "Następujące jądra zostaną odinstalowane" -#: src/Common/LinuxKernel.vala:1109 +#: src/Common/LinuxKernel.vala:1113 msgid "Continue ?" msgstr "Kontynuować?" -#: src/Common/LinuxKernel.vala:1131 src/Console/AppConsole.vala:292 +#: src/Common/LinuxKernel.vala:1135 src/Console/AppConsole.vala:292 msgid "Latest update" msgstr "Najnowsza aktualizacja" -#: src/Common/LinuxKernel.vala:1142 src/Console/AppConsole.vala:299 +#: src/Common/LinuxKernel.vala:1146 src/Console/AppConsole.vala:299 msgid "Latest point update" msgstr "Najnowsza aktualizacja punktowa" -#: src/Common/LinuxKernel.vala:1150 src/Console/AppConsole.vala:304 +#: src/Common/LinuxKernel.vala:1154 src/Console/AppConsole.vala:304 #: src/Console/AppConsole.vala:320 msgid "No updates found" msgstr "Nie znaleziono aktualizacji" -#: src/Common/LinuxKernel.vala:1159 +#: src/Common/LinuxKernel.vala:1163 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Zainstalować wersję jądra %s? (t/n): " @@ -215,7 +215,7 @@ msgstr "Zainstaluj wybrane jądro" msgid "Uninstall specified kernel" msgstr "Odinstaluj wybrane jądro" -#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:329 +#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:331 msgid "Uninstall all but the highest installed version" msgstr "Odinstaluj wszystkie wersje oprócz najwyżej zainstalowanej" @@ -309,7 +309,7 @@ msgstr "Dostępne %s jądra" msgid "Show" msgstr "Pokaż" -#: src/Console/AppConsole.vala:347 src/Gtk/MainWindow.vala:297 +#: src/Console/AppConsole.vala:347 src/Gtk/MainWindow.vala:298 msgid "Install" msgstr "Zainstaluj" @@ -365,31 +365,35 @@ msgstr "Wypisz informacje debugujące" msgid "Show all options" msgstr "Pokaż wszystkie opcje" -#: src/Gtk/MainWindow.vala:110 +#: src/Gtk/MainWindow.vala:111 msgid "Kernel" msgstr "Jądro" -#: src/Gtk/MainWindow.vala:143 +#: src/Gtk/MainWindow.vala:144 msgid "Status" msgstr "Status" -#: src/Gtk/MainWindow.vala:158 +#: src/Gtk/MainWindow.vala:159 msgid "Notes" msgstr "Notatki" -#: src/Gtk/MainWindow.vala:307 +#: src/Gtk/MainWindow.vala:308 msgid "Uninstall" msgstr "Odinstaluj" -#: src/Gtk/MainWindow.vala:328 +#: src/Gtk/MainWindow.vala:319 +msgid "Changelog, build status, etc" +msgstr "" + +#: src/Gtk/MainWindow.vala:330 msgid "Uninstall Old" msgstr "Odinstaluj stare" -#: src/Gtk/MainWindow.vala:334 +#: src/Gtk/MainWindow.vala:336 msgid "Reload" msgstr "Wczytaj ponownie" -#: src/Gtk/MainWindow.vala:335 +#: src/Gtk/MainWindow.vala:337 msgid "" "Delete cache and reload all kernel info\n" "\n" @@ -399,40 +403,40 @@ msgstr "" "\n" "SPOWODUJE TO RÓWNIEŻ USUNIĘCIE WSZYSTKICH NOTATEK UŻYTKOWNIKA" -#: src/Gtk/MainWindow.vala:340 src/Gtk/SettingsDialog.vala:49 +#: src/Gtk/MainWindow.vala:342 src/Gtk/SettingsDialog.vala:49 msgid "Settings" msgstr "Ustawienia" -#: src/Gtk/MainWindow.vala:345 +#: src/Gtk/MainWindow.vala:347 msgid "About" msgstr "O programie" -#: src/Gtk/MainWindow.vala:350 +#: src/Gtk/MainWindow.vala:352 msgid "Exit" msgstr "Wyjdź" -#: src/Gtk/MainWindow.vala:419 +#: src/Gtk/MainWindow.vala:421 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Narzędzie uaktualniania jądra dla dystrybucji z rodziny Ubuntu" -#: src/Gtk/MainWindow.vala:420 +#: src/Gtk/MainWindow.vala:422 msgid "Forked" msgstr "Sforkowane" -#: src/Gtk/MainWindow.vala:420 +#: src/Gtk/MainWindow.vala:422 msgid "Original" msgstr "Oryginalne" -#: src/Gtk/MainWindow.vala:458 +#: src/Gtk/MainWindow.vala:460 msgid "Updating kernels" msgstr "Aktualizowanie jąder" -#: src/Gtk/MainWindow.vala:529 +#: src/Gtk/MainWindow.vala:531 msgid "available" msgstr "dostępne" -#: src/Gtk/MainWindow.vala:572 src/Gtk/MainWindow.vala:613 -#: src/Gtk/MainWindow.vala:648 +#: src/Gtk/MainWindow.vala:574 src/Gtk/MainWindow.vala:615 +#: src/Gtk/MainWindow.vala:650 msgid "DONE" msgstr "GOTOWE" diff --git a/po/ru.po b/po/ru.po index 31059aa5..697a5139 100644 --- a/po/ru.po +++ b/po/ru.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-04-07 14:01-0400\n" +"POT-Creation-Date: 2023-04-09 11:59-0400\n" "PO-Revision-Date: 2023-04-02 17:50+0300\n" "Last-Translator: Danik2343 \n" "Language-Team: Russian\n" @@ -25,129 +25,129 @@ msgstr "Архитектура" msgid "Running kernel" msgstr "Запущенное ядро" -#: src/Common/LinuxKernel.vala:253 +#: src/Common/LinuxKernel.vala:255 msgid "loading cached" msgstr "загрузка в кэше" -#: src/Common/LinuxKernel.vala:267 +#: src/Common/LinuxKernel.vala:269 msgid "queuing download" msgstr "загрузка очередей" -#: src/Common/LinuxKernel.vala:290 +#: src/Common/LinuxKernel.vala:292 msgid "Fetching individual kernel indexes" msgstr "Получение отдельных индексов ядра" -#: src/Common/LinuxKernel.vala:306 +#: src/Common/LinuxKernel.vala:308 msgid "loading downloaded" msgstr "загрузка загруженных" -#: src/Common/LinuxKernel.vala:341 +#: src/Common/LinuxKernel.vala:343 msgid "Updating from" msgstr "Обновление из" -#: src/Common/LinuxKernel.vala:349 +#: src/Common/LinuxKernel.vala:351 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:352 +#: src/Common/LinuxKernel.vala:354 msgid "FAILED" msgstr "НЕУДАВШИЙСЯ" -#: src/Common/LinuxKernel.vala:395 +#: src/Common/LinuxKernel.vala:397 msgid "Found installed" msgstr "Найдено установлененное" -#: src/Common/LinuxKernel.vala:731 src/Gtk/MainWindow.vala:520 -#: src/Gtk/MainWindow.vala:533 +#: src/Common/LinuxKernel.vala:733 src/Gtk/MainWindow.vala:522 +#: src/Gtk/MainWindow.vala:535 msgid "Running" msgstr "Используется" -#: src/Common/LinuxKernel.vala:732 +#: src/Common/LinuxKernel.vala:734 msgid "Installed" msgstr "Установлено" -#: src/Common/LinuxKernel.vala:733 +#: src/Common/LinuxKernel.vala:735 msgid "Invalid" msgstr "Негодный" -#: src/Common/LinuxKernel.vala:807 +#: src/Common/LinuxKernel.vala:809 msgid "Packages Available" msgstr "Доступные пакеты" -#: src/Common/LinuxKernel.vala:813 +#: src/Common/LinuxKernel.vala:815 msgid "Packages Installed" msgstr "Установленные пакеты" -#: src/Common/LinuxKernel.vala:835 src/lib/TeeJee.FileSystem.vala:118 +#: src/Common/LinuxKernel.vala:837 src/lib/TeeJee.FileSystem.vala:118 msgid "File not found" msgstr "Файл не найден" -#: src/Common/LinuxKernel.vala:904 +#: src/Common/LinuxKernel.vala:908 msgid "Available Kernels" msgstr "Доступные ядра" -#: src/Common/LinuxKernel.vala:941 +#: src/Common/LinuxKernel.vala:945 msgid "enabled" msgstr "включено" -#: src/Common/LinuxKernel.vala:965 +#: src/Common/LinuxKernel.vala:969 msgid "Downloading" msgstr "Загрузки" -#: src/Common/LinuxKernel.vala:986 +#: src/Common/LinuxKernel.vala:990 msgid "is already installed." msgstr "уже установлен." -#: src/Common/LinuxKernel.vala:1016 +#: src/Common/LinuxKernel.vala:1020 msgid "Uninstalling selected kernels" msgstr "Удаление выбранных ядер" -#: src/Common/LinuxKernel.vala:1022 +#: src/Common/LinuxKernel.vala:1026 msgid "requested" msgstr "запрошено" -#: src/Common/LinuxKernel.vala:1025 +#: src/Common/LinuxKernel.vala:1029 msgid "not uninstalling the currently running kernel" msgstr "не удаляет текущее работающее ядро" -#: src/Common/LinuxKernel.vala:1041 +#: src/Common/LinuxKernel.vala:1045 msgid "found" msgstr "найдено" -#: src/Common/LinuxKernel.vala:1044 +#: src/Common/LinuxKernel.vala:1048 msgid "No packages to un-install!" msgstr "Нет пакетов для удаления!" -#: src/Common/LinuxKernel.vala:1092 +#: src/Common/LinuxKernel.vala:1096 msgid "Could not find running kernel in list" msgstr "Could not find running kernel in list" -#: src/Common/LinuxKernel.vala:1097 +#: src/Common/LinuxKernel.vala:1101 msgid "Could not find any kernels to uninstall" msgstr "Не удалось найти ядра для деинсталляции" -#: src/Common/LinuxKernel.vala:1105 +#: src/Common/LinuxKernel.vala:1109 msgid "The following kernels will be uninstalled" msgstr "Следующие ядра будут удалены" -#: src/Common/LinuxKernel.vala:1109 +#: src/Common/LinuxKernel.vala:1113 msgid "Continue ?" msgstr "Продолжить ?" -#: src/Common/LinuxKernel.vala:1131 src/Console/AppConsole.vala:292 +#: src/Common/LinuxKernel.vala:1135 src/Console/AppConsole.vala:292 msgid "Latest update" msgstr "Последнее обновление" -#: src/Common/LinuxKernel.vala:1142 src/Console/AppConsole.vala:299 +#: src/Common/LinuxKernel.vala:1146 src/Console/AppConsole.vala:299 msgid "Latest point update" msgstr "Последнее обновление пунктов" -#: src/Common/LinuxKernel.vala:1150 src/Console/AppConsole.vala:304 +#: src/Common/LinuxKernel.vala:1154 src/Console/AppConsole.vala:304 #: src/Console/AppConsole.vala:320 msgid "No updates found" msgstr "Обновлений не найдено" -#: src/Common/LinuxKernel.vala:1159 +#: src/Common/LinuxKernel.vala:1163 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Установить версию ядра %s ? (y/n): " @@ -215,7 +215,7 @@ msgstr "Установить указанную ветку основного я msgid "Uninstall specified kernel" msgstr "Установить указанное ядро" -#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:329 +#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:331 msgid "Uninstall all but the highest installed version" msgstr "Удаление всех установленных версий, кроме самой высокой" @@ -309,7 +309,7 @@ msgstr "Доступно ядро %s" msgid "Show" msgstr "Показать" -#: src/Console/AppConsole.vala:347 src/Gtk/MainWindow.vala:297 +#: src/Console/AppConsole.vala:347 src/Gtk/MainWindow.vala:298 msgid "Install" msgstr "Установить" @@ -365,31 +365,35 @@ msgstr "Распечатать отладочную информацию" msgid "Show all options" msgstr "Показать все параметры" -#: src/Gtk/MainWindow.vala:110 +#: src/Gtk/MainWindow.vala:111 msgid "Kernel" msgstr "Ядро" -#: src/Gtk/MainWindow.vala:143 +#: src/Gtk/MainWindow.vala:144 msgid "Status" msgstr "Состояние" -#: src/Gtk/MainWindow.vala:158 +#: src/Gtk/MainWindow.vala:159 msgid "Notes" msgstr "Примечания" -#: src/Gtk/MainWindow.vala:307 +#: src/Gtk/MainWindow.vala:308 msgid "Uninstall" msgstr "Удалить" -#: src/Gtk/MainWindow.vala:328 +#: src/Gtk/MainWindow.vala:319 +msgid "Changelog, build status, etc" +msgstr "" + +#: src/Gtk/MainWindow.vala:330 msgid "Uninstall Old" msgstr "Удалить старые" -#: src/Gtk/MainWindow.vala:334 +#: src/Gtk/MainWindow.vala:336 msgid "Reload" msgstr "Перезагрузить" -#: src/Gtk/MainWindow.vala:335 +#: src/Gtk/MainWindow.vala:337 msgid "" "Delete cache and reload all kernel info\n" "\n" @@ -399,40 +403,40 @@ msgstr "" "\n" "ЭТО ТАКЖЕ ПРИВЕДЕТ К УДАЛЕНИЮ ВСЕХ ЗАМЕТОК ПОЛЬЗОВАТЕЛЯ" -#: src/Gtk/MainWindow.vala:340 src/Gtk/SettingsDialog.vala:49 +#: src/Gtk/MainWindow.vala:342 src/Gtk/SettingsDialog.vala:49 msgid "Settings" msgstr "Настройки" -#: src/Gtk/MainWindow.vala:345 +#: src/Gtk/MainWindow.vala:347 msgid "About" msgstr "О программе" -#: src/Gtk/MainWindow.vala:350 +#: src/Gtk/MainWindow.vala:352 msgid "Exit" msgstr "Выход" -#: src/Gtk/MainWindow.vala:419 +#: src/Gtk/MainWindow.vala:421 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Программа обновления ядра для дистрибутивов на базе Ubuntu" -#: src/Gtk/MainWindow.vala:420 +#: src/Gtk/MainWindow.vala:422 msgid "Forked" msgstr "Форк" -#: src/Gtk/MainWindow.vala:420 +#: src/Gtk/MainWindow.vala:422 msgid "Original" msgstr "Оригинал" -#: src/Gtk/MainWindow.vala:458 +#: src/Gtk/MainWindow.vala:460 msgid "Updating kernels" msgstr "Обновление ядер" -#: src/Gtk/MainWindow.vala:529 +#: src/Gtk/MainWindow.vala:531 msgid "available" msgstr "доступно" -#: src/Gtk/MainWindow.vala:572 src/Gtk/MainWindow.vala:613 -#: src/Gtk/MainWindow.vala:648 +#: src/Gtk/MainWindow.vala:574 src/Gtk/MainWindow.vala:615 +#: src/Gtk/MainWindow.vala:650 msgid "DONE" msgstr "ГОТОВО" diff --git a/po/sv.po b/po/sv.po index b7357548..c830b3da 100644 --- a/po/sv.po +++ b/po/sv.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-04-07 14:01-0400\n" +"POT-Creation-Date: 2023-04-09 11:59-0400\n" "PO-Revision-Date: 2018-01-13 16:56+0100\n" "Last-Translator: Åke Engelbrektson \n" "Language-Team:Swedish\n" @@ -25,129 +25,129 @@ msgstr "Arkitektur" msgid "Running kernel" msgstr "Löpande kernel" -#: src/Common/LinuxKernel.vala:253 +#: src/Common/LinuxKernel.vala:255 msgid "loading cached" msgstr "laddar cachelagrat" -#: src/Common/LinuxKernel.vala:267 +#: src/Common/LinuxKernel.vala:269 msgid "queuing download" msgstr "köbildning nedladdning" -#: src/Common/LinuxKernel.vala:290 +#: src/Common/LinuxKernel.vala:292 msgid "Fetching individual kernel indexes" msgstr "Hämta enskilda kernelindex" -#: src/Common/LinuxKernel.vala:306 +#: src/Common/LinuxKernel.vala:308 msgid "loading downloaded" msgstr "laddar nedladdad" -#: src/Common/LinuxKernel.vala:341 +#: src/Common/LinuxKernel.vala:343 msgid "Updating from" msgstr "Uppdatering från" -#: src/Common/LinuxKernel.vala:349 +#: src/Common/LinuxKernel.vala:351 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:352 +#: src/Common/LinuxKernel.vala:354 msgid "FAILED" msgstr "MISSLYCKADES" -#: src/Common/LinuxKernel.vala:395 +#: src/Common/LinuxKernel.vala:397 msgid "Found installed" msgstr "Hittade installerat" -#: src/Common/LinuxKernel.vala:731 src/Gtk/MainWindow.vala:520 -#: src/Gtk/MainWindow.vala:533 +#: src/Common/LinuxKernel.vala:733 src/Gtk/MainWindow.vala:522 +#: src/Gtk/MainWindow.vala:535 msgid "Running" msgstr "Körs" -#: src/Common/LinuxKernel.vala:732 +#: src/Common/LinuxKernel.vala:734 msgid "Installed" msgstr "Installerad" -#: src/Common/LinuxKernel.vala:733 +#: src/Common/LinuxKernel.vala:735 msgid "Invalid" msgstr "Ogiltig" -#: src/Common/LinuxKernel.vala:807 +#: src/Common/LinuxKernel.vala:809 msgid "Packages Available" msgstr "Tillgängliga paket" -#: src/Common/LinuxKernel.vala:813 +#: src/Common/LinuxKernel.vala:815 msgid "Packages Installed" msgstr "Installerade paket" -#: src/Common/LinuxKernel.vala:835 src/lib/TeeJee.FileSystem.vala:118 +#: src/Common/LinuxKernel.vala:837 src/lib/TeeJee.FileSystem.vala:118 msgid "File not found" msgstr "Filen kan inte hittas" -#: src/Common/LinuxKernel.vala:904 +#: src/Common/LinuxKernel.vala:908 msgid "Available Kernels" msgstr "Tillgängliga kärnor" -#: src/Common/LinuxKernel.vala:941 +#: src/Common/LinuxKernel.vala:945 msgid "enabled" msgstr "aktiverat" -#: src/Common/LinuxKernel.vala:965 +#: src/Common/LinuxKernel.vala:969 msgid "Downloading" msgstr "Ladda ner" -#: src/Common/LinuxKernel.vala:986 +#: src/Common/LinuxKernel.vala:990 msgid "is already installed." msgstr "är redan installerat." -#: src/Common/LinuxKernel.vala:1016 +#: src/Common/LinuxKernel.vala:1020 msgid "Uninstalling selected kernels" msgstr "Avinstallera valda kärnor" -#: src/Common/LinuxKernel.vala:1022 +#: src/Common/LinuxKernel.vala:1026 msgid "requested" msgstr "begärd" -#: src/Common/LinuxKernel.vala:1025 +#: src/Common/LinuxKernel.vala:1029 msgid "not uninstalling the currently running kernel" msgstr "Avinstallera inte den kärna som körs, för närvarande" -#: src/Common/LinuxKernel.vala:1041 +#: src/Common/LinuxKernel.vala:1045 msgid "found" msgstr "grunda" -#: src/Common/LinuxKernel.vala:1044 +#: src/Common/LinuxKernel.vala:1048 msgid "No packages to un-install!" msgstr "Inga paket att avinstallera!" -#: src/Common/LinuxKernel.vala:1092 +#: src/Common/LinuxKernel.vala:1096 msgid "Could not find running kernel in list" msgstr "Det gick inte att hitta kernel som körs i listan" -#: src/Common/LinuxKernel.vala:1097 +#: src/Common/LinuxKernel.vala:1101 msgid "Could not find any kernels to uninstall" msgstr "Det gick inte att hitta några kärnor att avinstallera" -#: src/Common/LinuxKernel.vala:1105 +#: src/Common/LinuxKernel.vala:1109 msgid "The following kernels will be uninstalled" msgstr "Följande kärnor kommer att avinstalleras" -#: src/Common/LinuxKernel.vala:1109 +#: src/Common/LinuxKernel.vala:1113 msgid "Continue ?" msgstr "Fortsätta?" -#: src/Common/LinuxKernel.vala:1131 src/Console/AppConsole.vala:292 +#: src/Common/LinuxKernel.vala:1135 src/Console/AppConsole.vala:292 msgid "Latest update" msgstr "Senaste uppdatering" -#: src/Common/LinuxKernel.vala:1142 src/Console/AppConsole.vala:299 +#: src/Common/LinuxKernel.vala:1146 src/Console/AppConsole.vala:299 msgid "Latest point update" msgstr "Senaste punktuppdatering" -#: src/Common/LinuxKernel.vala:1150 src/Console/AppConsole.vala:304 +#: src/Common/LinuxKernel.vala:1154 src/Console/AppConsole.vala:304 #: src/Console/AppConsole.vala:320 msgid "No updates found" msgstr "Inga uppdateringar hittades" -#: src/Common/LinuxKernel.vala:1159 +#: src/Common/LinuxKernel.vala:1163 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Installera kärnversion %s ? (j/n):" @@ -214,7 +214,7 @@ msgstr "Installera angiven huvudkärna" msgid "Uninstall specified kernel" msgstr "Avinstallera angiven kärna" -#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:329 +#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:331 msgid "Uninstall all but the highest installed version" msgstr "Avinstallera alla utom den högsta installerade versionen" @@ -308,7 +308,7 @@ msgstr "Kernel %s tillgängliga" msgid "Show" msgstr "Visa" -#: src/Console/AppConsole.vala:347 src/Gtk/MainWindow.vala:297 +#: src/Console/AppConsole.vala:347 src/Gtk/MainWindow.vala:298 msgid "Install" msgstr "Installera" @@ -364,31 +364,35 @@ msgstr "Skriv ut felsökningsinformation" msgid "Show all options" msgstr "Visa alla alternativ" -#: src/Gtk/MainWindow.vala:110 +#: src/Gtk/MainWindow.vala:111 msgid "Kernel" msgstr "Kärna" -#: src/Gtk/MainWindow.vala:143 +#: src/Gtk/MainWindow.vala:144 msgid "Status" msgstr "Status" -#: src/Gtk/MainWindow.vala:158 +#: src/Gtk/MainWindow.vala:159 msgid "Notes" msgstr "Anteckningar" -#: src/Gtk/MainWindow.vala:307 +#: src/Gtk/MainWindow.vala:308 msgid "Uninstall" msgstr "Avinstallera" -#: src/Gtk/MainWindow.vala:328 +#: src/Gtk/MainWindow.vala:319 +msgid "Changelog, build status, etc" +msgstr "" + +#: src/Gtk/MainWindow.vala:330 msgid "Uninstall Old" msgstr "Avinstallera Gamla" -#: src/Gtk/MainWindow.vala:334 +#: src/Gtk/MainWindow.vala:336 msgid "Reload" msgstr "Reload" -#: src/Gtk/MainWindow.vala:335 +#: src/Gtk/MainWindow.vala:337 msgid "" "Delete cache and reload all kernel info\n" "\n" @@ -398,40 +402,40 @@ msgstr "" "\n" "DETTA TAR OCKSÅ BORT ALLA ANVÄNDARANTECKNINGAR" -#: src/Gtk/MainWindow.vala:340 src/Gtk/SettingsDialog.vala:49 +#: src/Gtk/MainWindow.vala:342 src/Gtk/SettingsDialog.vala:49 msgid "Settings" msgstr "Inställningar" -#: src/Gtk/MainWindow.vala:345 +#: src/Gtk/MainWindow.vala:347 msgid "About" msgstr "Om" -#: src/Gtk/MainWindow.vala:350 +#: src/Gtk/MainWindow.vala:352 msgid "Exit" msgstr "Utgång" -#: src/Gtk/MainWindow.vala:419 +#: src/Gtk/MainWindow.vala:421 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Kärnuppgraderingsverktyg för Ubuntu-baserade distributioner" -#: src/Gtk/MainWindow.vala:420 +#: src/Gtk/MainWindow.vala:422 msgid "Forked" msgstr "Kluven" -#: src/Gtk/MainWindow.vala:420 +#: src/Gtk/MainWindow.vala:422 msgid "Original" msgstr "Original" -#: src/Gtk/MainWindow.vala:458 +#: src/Gtk/MainWindow.vala:460 msgid "Updating kernels" msgstr "Uppdatera kärnor" -#: src/Gtk/MainWindow.vala:529 +#: src/Gtk/MainWindow.vala:531 msgid "available" msgstr "tillgänglig" -#: src/Gtk/MainWindow.vala:572 src/Gtk/MainWindow.vala:613 -#: src/Gtk/MainWindow.vala:648 +#: src/Gtk/MainWindow.vala:574 src/Gtk/MainWindow.vala:615 +#: src/Gtk/MainWindow.vala:650 msgid "DONE" msgstr "FÄRDIG" diff --git a/po/tr.po b/po/tr.po index c07a758a..ff0bd9a6 100644 --- a/po/tr.po +++ b/po/tr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-04-07 14:01-0400\n" +"POT-Creation-Date: 2023-04-09 11:59-0400\n" "PO-Revision-Date: 2022-08-06 16:48+0300\n" "Last-Translator: Sabri Ünal \n" "Language-Team: Turkish\n" @@ -25,130 +25,130 @@ msgstr "Sistem mimarisi" msgid "Running kernel" msgstr "Çalışan çekirdek" -#: src/Common/LinuxKernel.vala:253 +#: src/Common/LinuxKernel.vala:255 msgid "loading cached" msgstr "önbelleğe alınmış yükleme" -#: src/Common/LinuxKernel.vala:267 +#: src/Common/LinuxKernel.vala:269 msgid "queuing download" msgstr "kuyruğa alma indirme" -#: src/Common/LinuxKernel.vala:290 +#: src/Common/LinuxKernel.vala:292 msgid "Fetching individual kernel indexes" msgstr "Tek tek çekirdek dizinlerini alma" -#: src/Common/LinuxKernel.vala:306 +#: src/Common/LinuxKernel.vala:308 msgid "loading downloaded" msgstr "indirilen yükleniyor" -#: src/Common/LinuxKernel.vala:341 +#: src/Common/LinuxKernel.vala:343 msgid "Updating from" msgstr "Şuradan güncelleniyor" -#: src/Common/LinuxKernel.vala:349 +#: src/Common/LinuxKernel.vala:351 msgid "OK" msgstr "Tamam" -#: src/Common/LinuxKernel.vala:352 +#: src/Common/LinuxKernel.vala:354 msgid "FAILED" msgstr "BAŞARISIZ" -#: src/Common/LinuxKernel.vala:395 +#: src/Common/LinuxKernel.vala:397 msgid "Found installed" msgstr "Yüklü bulundu" -#: src/Common/LinuxKernel.vala:731 src/Gtk/MainWindow.vala:520 -#: src/Gtk/MainWindow.vala:533 +#: src/Common/LinuxKernel.vala:733 src/Gtk/MainWindow.vala:522 +#: src/Gtk/MainWindow.vala:535 msgid "Running" msgstr "Çalışıyor" -#: src/Common/LinuxKernel.vala:732 +#: src/Common/LinuxKernel.vala:734 msgid "Installed" msgstr "Kurulu" -#: src/Common/LinuxKernel.vala:733 +#: src/Common/LinuxKernel.vala:735 msgid "Invalid" msgstr "Geçersiz" -#: src/Common/LinuxKernel.vala:807 +#: src/Common/LinuxKernel.vala:809 msgid "Packages Available" msgstr "Mevcut Paketler" -#: src/Common/LinuxKernel.vala:813 +#: src/Common/LinuxKernel.vala:815 msgid "Packages Installed" msgstr "Kurulu Paketler" -#: src/Common/LinuxKernel.vala:835 src/lib/TeeJee.FileSystem.vala:118 +#: src/Common/LinuxKernel.vala:837 src/lib/TeeJee.FileSystem.vala:118 msgid "File not found" msgstr "Dosya bulunamadı" -#: src/Common/LinuxKernel.vala:904 +#: src/Common/LinuxKernel.vala:908 msgid "Available Kernels" msgstr "Mevcut Çekirdekler" -#: src/Common/LinuxKernel.vala:941 +#: src/Common/LinuxKernel.vala:945 msgid "enabled" msgstr "etkin" -#: src/Common/LinuxKernel.vala:965 +#: src/Common/LinuxKernel.vala:969 msgid "Downloading" msgstr "Indiriyor" -#: src/Common/LinuxKernel.vala:986 +#: src/Common/LinuxKernel.vala:990 msgid "is already installed." msgstr "zaten yüklü." -#: src/Common/LinuxKernel.vala:1016 +#: src/Common/LinuxKernel.vala:1020 msgid "Uninstalling selected kernels" msgstr "Seçili çekirdekleri kaldırma" -#: src/Common/LinuxKernel.vala:1022 +#: src/Common/LinuxKernel.vala:1026 msgid "requested" msgstr "istenen" -#: src/Common/LinuxKernel.vala:1025 +#: src/Common/LinuxKernel.vala:1029 msgid "not uninstalling the currently running kernel" msgstr "çalışmakta olan çekirdeğin kaldırılmaması" -#: src/Common/LinuxKernel.vala:1041 +#: src/Common/LinuxKernel.vala:1045 msgid "found" msgstr "kurmak" -#: src/Common/LinuxKernel.vala:1044 +#: src/Common/LinuxKernel.vala:1048 msgid "No packages to un-install!" msgstr "Kaldırılacak paket yok!" -#: src/Common/LinuxKernel.vala:1092 +#: src/Common/LinuxKernel.vala:1096 msgid "Could not find running kernel in list" msgstr "Listede çalışan çekirdek bulunamadı" -#: src/Common/LinuxKernel.vala:1097 +#: src/Common/LinuxKernel.vala:1101 msgid "Could not find any kernels to uninstall" msgstr "Kaldırılacak çekirdek bulunamadı" -#: src/Common/LinuxKernel.vala:1105 +#: src/Common/LinuxKernel.vala:1109 msgid "The following kernels will be uninstalled" msgstr "Aşağıdaki çekirdekler kaldırılacaktır" -#: src/Common/LinuxKernel.vala:1109 +#: src/Common/LinuxKernel.vala:1113 msgid "Continue ?" msgstr "Devam edilsin mi?" -#: src/Common/LinuxKernel.vala:1131 src/Console/AppConsole.vala:292 +#: src/Common/LinuxKernel.vala:1135 src/Console/AppConsole.vala:292 msgid "Latest update" msgstr "Son güncelleme" # Point burada point release anlamında kullanılıyor. Örneğin 5.10.x sayısının en sonundaki x rakamı point release/nokta sürüm oluyor. -#: src/Common/LinuxKernel.vala:1142 src/Console/AppConsole.vala:299 +#: src/Common/LinuxKernel.vala:1146 src/Console/AppConsole.vala:299 msgid "Latest point update" msgstr "Son nokta güncellemesi" -#: src/Common/LinuxKernel.vala:1150 src/Console/AppConsole.vala:304 +#: src/Common/LinuxKernel.vala:1154 src/Console/AppConsole.vala:304 #: src/Console/AppConsole.vala:320 msgid "No updates found" msgstr "Güncelleme bulunamadı" -#: src/Common/LinuxKernel.vala:1159 +#: src/Common/LinuxKernel.vala:1163 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Linux Çekirdek Sürümü %s Kurulsun mu? (e/h): " @@ -216,7 +216,7 @@ msgstr "Belirtilen mainline çekirdeğini kur" msgid "Uninstall specified kernel" msgstr "Belirtilen çekirdeğini kaldır" -#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:329 +#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:331 msgid "Uninstall all but the highest installed version" msgstr "En yüksek yüklü sürüm dışındaki tüm sürümleri kaldırın" @@ -310,7 +310,7 @@ msgstr "Çekirdek %s Kullanılabilir" msgid "Show" msgstr "Göster" -#: src/Console/AppConsole.vala:347 src/Gtk/MainWindow.vala:297 +#: src/Console/AppConsole.vala:347 src/Gtk/MainWindow.vala:298 msgid "Install" msgstr "Kur" @@ -366,31 +366,35 @@ msgstr "Hata ayıklama bilgisini yazdır" msgid "Show all options" msgstr "Tüm seçenekleri göster" -#: src/Gtk/MainWindow.vala:110 +#: src/Gtk/MainWindow.vala:111 msgid "Kernel" msgstr "Çekirdek" -#: src/Gtk/MainWindow.vala:143 +#: src/Gtk/MainWindow.vala:144 msgid "Status" msgstr "Durum" -#: src/Gtk/MainWindow.vala:158 +#: src/Gtk/MainWindow.vala:159 msgid "Notes" msgstr "Notlar" -#: src/Gtk/MainWindow.vala:307 +#: src/Gtk/MainWindow.vala:308 msgid "Uninstall" msgstr "Kaldır" -#: src/Gtk/MainWindow.vala:328 +#: src/Gtk/MainWindow.vala:319 +msgid "Changelog, build status, etc" +msgstr "" + +#: src/Gtk/MainWindow.vala:330 msgid "Uninstall Old" msgstr "Eskileri Kaldır" -#: src/Gtk/MainWindow.vala:334 +#: src/Gtk/MainWindow.vala:336 msgid "Reload" msgstr "Arjantin" -#: src/Gtk/MainWindow.vala:335 +#: src/Gtk/MainWindow.vala:337 msgid "" "Delete cache and reload all kernel info\n" "\n" @@ -400,40 +404,40 @@ msgstr "" "\n" "BU AYNI ZAMANDA TÜM KULLANICI NOTLARINI DA SILER" -#: src/Gtk/MainWindow.vala:340 src/Gtk/SettingsDialog.vala:49 +#: src/Gtk/MainWindow.vala:342 src/Gtk/SettingsDialog.vala:49 msgid "Settings" msgstr "Ayarlar" -#: src/Gtk/MainWindow.vala:345 +#: src/Gtk/MainWindow.vala:347 msgid "About" msgstr "Hakkında" -#: src/Gtk/MainWindow.vala:350 +#: src/Gtk/MainWindow.vala:352 msgid "Exit" msgstr "Çıkış" -#: src/Gtk/MainWindow.vala:419 +#: src/Gtk/MainWindow.vala:421 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Ubuntu tabanlı dağıtımlar için çekirdek güncelleme aracı" -#: src/Gtk/MainWindow.vala:420 +#: src/Gtk/MainWindow.vala:422 msgid "Forked" msgstr "Çatallandı" -#: src/Gtk/MainWindow.vala:420 +#: src/Gtk/MainWindow.vala:422 msgid "Original" msgstr "Özgün" -#: src/Gtk/MainWindow.vala:458 +#: src/Gtk/MainWindow.vala:460 msgid "Updating kernels" msgstr "Çekirdekleri güncelleme" -#: src/Gtk/MainWindow.vala:529 +#: src/Gtk/MainWindow.vala:531 msgid "available" msgstr "mevcut" -#: src/Gtk/MainWindow.vala:572 src/Gtk/MainWindow.vala:613 -#: src/Gtk/MainWindow.vala:648 +#: src/Gtk/MainWindow.vala:574 src/Gtk/MainWindow.vala:615 +#: src/Gtk/MainWindow.vala:650 msgid "DONE" msgstr "YAPILMIŞ" diff --git a/po/uk.po b/po/uk.po index 5d7c5889..9357d72a 100644 --- a/po/uk.po +++ b/po/uk.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-04-07 14:01-0400\n" +"POT-Creation-Date: 2023-04-09 11:59-0400\n" "PO-Revision-Date: 2019-07-25 11:00+0300\n" "Last-Translator: Serhii Golovko \n" "Language-Team: Ukranian\n" @@ -25,129 +25,129 @@ msgstr "Системна архитектура" msgid "Running kernel" msgstr "Запуск ядра" -#: src/Common/LinuxKernel.vala:253 +#: src/Common/LinuxKernel.vala:255 msgid "loading cached" msgstr "Завантаження кешованого" -#: src/Common/LinuxKernel.vala:267 +#: src/Common/LinuxKernel.vala:269 msgid "queuing download" msgstr "Черга завантаження" -#: src/Common/LinuxKernel.vala:290 +#: src/Common/LinuxKernel.vala:292 msgid "Fetching individual kernel indexes" msgstr "Вибірка окремих індексів ядра" -#: src/Common/LinuxKernel.vala:306 +#: src/Common/LinuxKernel.vala:308 msgid "loading downloaded" msgstr "Завантаження завантаженого" -#: src/Common/LinuxKernel.vala:341 +#: src/Common/LinuxKernel.vala:343 msgid "Updating from" msgstr "Оновлення з" -#: src/Common/LinuxKernel.vala:349 +#: src/Common/LinuxKernel.vala:351 msgid "OK" msgstr "Добре" -#: src/Common/LinuxKernel.vala:352 +#: src/Common/LinuxKernel.vala:354 msgid "FAILED" msgstr "НЕ ВДАЛОСЯ" -#: src/Common/LinuxKernel.vala:395 +#: src/Common/LinuxKernel.vala:397 msgid "Found installed" msgstr "Знайдено встановленим" -#: src/Common/LinuxKernel.vala:731 src/Gtk/MainWindow.vala:520 -#: src/Gtk/MainWindow.vala:533 +#: src/Common/LinuxKernel.vala:733 src/Gtk/MainWindow.vala:522 +#: src/Gtk/MainWindow.vala:535 msgid "Running" msgstr "Використовується" -#: src/Common/LinuxKernel.vala:732 +#: src/Common/LinuxKernel.vala:734 msgid "Installed" msgstr "Встановлено" -#: src/Common/LinuxKernel.vala:733 +#: src/Common/LinuxKernel.vala:735 msgid "Invalid" msgstr "Інвалід" -#: src/Common/LinuxKernel.vala:807 +#: src/Common/LinuxKernel.vala:809 msgid "Packages Available" msgstr "Доступні пакети" -#: src/Common/LinuxKernel.vala:813 +#: src/Common/LinuxKernel.vala:815 msgid "Packages Installed" msgstr "Встановлені пакети" -#: src/Common/LinuxKernel.vala:835 src/lib/TeeJee.FileSystem.vala:118 +#: src/Common/LinuxKernel.vala:837 src/lib/TeeJee.FileSystem.vala:118 msgid "File not found" msgstr "Файл не знайдено" -#: src/Common/LinuxKernel.vala:904 +#: src/Common/LinuxKernel.vala:908 msgid "Available Kernels" msgstr "Доступні ядра" -#: src/Common/LinuxKernel.vala:941 +#: src/Common/LinuxKernel.vala:945 msgid "enabled" msgstr "увімкнено" -#: src/Common/LinuxKernel.vala:965 +#: src/Common/LinuxKernel.vala:969 msgid "Downloading" msgstr "Завантаження" -#: src/Common/LinuxKernel.vala:986 +#: src/Common/LinuxKernel.vala:990 msgid "is already installed." msgstr "вже встановлено." -#: src/Common/LinuxKernel.vala:1016 +#: src/Common/LinuxKernel.vala:1020 msgid "Uninstalling selected kernels" msgstr "Видаліть конкретні ядра" -#: src/Common/LinuxKernel.vala:1022 +#: src/Common/LinuxKernel.vala:1026 msgid "requested" msgstr "запитуваний" -#: src/Common/LinuxKernel.vala:1025 +#: src/Common/LinuxKernel.vala:1029 msgid "not uninstalling the currently running kernel" msgstr "не видалятиме поточне запущене ядро" -#: src/Common/LinuxKernel.vala:1041 +#: src/Common/LinuxKernel.vala:1045 msgid "found" msgstr "знайдено" -#: src/Common/LinuxKernel.vala:1044 +#: src/Common/LinuxKernel.vala:1048 msgid "No packages to un-install!" msgstr "Немає пакетів для видалення!" -#: src/Common/LinuxKernel.vala:1092 +#: src/Common/LinuxKernel.vala:1096 msgid "Could not find running kernel in list" msgstr "Не вдалося знайти запущене ядро у списку!" -#: src/Common/LinuxKernel.vala:1097 +#: src/Common/LinuxKernel.vala:1101 msgid "Could not find any kernels to uninstall" msgstr "Не вдалося знайти жодне ядро для вилучення" -#: src/Common/LinuxKernel.vala:1105 +#: src/Common/LinuxKernel.vala:1109 msgid "The following kernels will be uninstalled" msgstr "Наступні ядра будуть видалені" -#: src/Common/LinuxKernel.vala:1109 +#: src/Common/LinuxKernel.vala:1113 msgid "Continue ?" msgstr "Продовжувати ?" -#: src/Common/LinuxKernel.vala:1131 src/Console/AppConsole.vala:292 +#: src/Common/LinuxKernel.vala:1135 src/Console/AppConsole.vala:292 msgid "Latest update" msgstr "Останнє оновлення" -#: src/Common/LinuxKernel.vala:1142 src/Console/AppConsole.vala:299 +#: src/Common/LinuxKernel.vala:1146 src/Console/AppConsole.vala:299 msgid "Latest point update" msgstr "Остання точка оновлення" -#: src/Common/LinuxKernel.vala:1150 src/Console/AppConsole.vala:304 +#: src/Common/LinuxKernel.vala:1154 src/Console/AppConsole.vala:304 #: src/Console/AppConsole.vala:320 msgid "No updates found" msgstr "Оновлень не знайдено" -#: src/Common/LinuxKernel.vala:1159 +#: src/Common/LinuxKernel.vala:1163 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Встановити Ядро Версії %s ? (так/ні): " @@ -215,7 +215,7 @@ msgstr "Встановіть конкретне основне ядро" msgid "Uninstall specified kernel" msgstr "Видаліть конкретні ядра" -#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:329 +#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:331 msgid "Uninstall all but the highest installed version" msgstr "Видаліть усі, крім найвищої встановленої версії" @@ -309,7 +309,7 @@ msgstr "Ядро %s Доступне" msgid "Show" msgstr "Показати" -#: src/Console/AppConsole.vala:347 src/Gtk/MainWindow.vala:297 +#: src/Console/AppConsole.vala:347 src/Gtk/MainWindow.vala:298 msgid "Install" msgstr "Встановити" @@ -365,31 +365,35 @@ msgstr "Роздрукувати зневадження" msgid "Show all options" msgstr "Показати усі параметри" -#: src/Gtk/MainWindow.vala:110 +#: src/Gtk/MainWindow.vala:111 msgid "Kernel" msgstr "Ядро" -#: src/Gtk/MainWindow.vala:143 +#: src/Gtk/MainWindow.vala:144 msgid "Status" msgstr "Стан" -#: src/Gtk/MainWindow.vala:158 +#: src/Gtk/MainWindow.vala:159 msgid "Notes" msgstr "Нотатки" -#: src/Gtk/MainWindow.vala:307 +#: src/Gtk/MainWindow.vala:308 msgid "Uninstall" msgstr "Видалити" -#: src/Gtk/MainWindow.vala:328 +#: src/Gtk/MainWindow.vala:319 +msgid "Changelog, build status, etc" +msgstr "" + +#: src/Gtk/MainWindow.vala:330 msgid "Uninstall Old" msgstr "Видалити старе" -#: src/Gtk/MainWindow.vala:334 +#: src/Gtk/MainWindow.vala:336 msgid "Reload" msgstr "Перезавантажити" -#: src/Gtk/MainWindow.vala:335 +#: src/Gtk/MainWindow.vala:337 msgid "" "Delete cache and reload all kernel info\n" "\n" @@ -399,40 +403,40 @@ msgstr "" "\n" "ЦЕ ТАКОЖ ВИДАЛИТЬ УСІ НОТАТКИ КОРИСТУВАЧА" -#: src/Gtk/MainWindow.vala:340 src/Gtk/SettingsDialog.vala:49 +#: src/Gtk/MainWindow.vala:342 src/Gtk/SettingsDialog.vala:49 msgid "Settings" msgstr "Налаштування" -#: src/Gtk/MainWindow.vala:345 +#: src/Gtk/MainWindow.vala:347 msgid "About" msgstr "Про программу" -#: src/Gtk/MainWindow.vala:350 +#: src/Gtk/MainWindow.vala:352 msgid "Exit" msgstr "Вихід" -#: src/Gtk/MainWindow.vala:419 +#: src/Gtk/MainWindow.vala:421 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Програма оновлення ядра для дистрибутивів на базі Ubuntu" -#: src/Gtk/MainWindow.vala:420 +#: src/Gtk/MainWindow.vala:422 msgid "Forked" msgstr "Двоєний" -#: src/Gtk/MainWindow.vala:420 +#: src/Gtk/MainWindow.vala:422 msgid "Original" msgstr "Оригінал" -#: src/Gtk/MainWindow.vala:458 +#: src/Gtk/MainWindow.vala:460 msgid "Updating kernels" msgstr "Оновлення ядер" -#: src/Gtk/MainWindow.vala:529 +#: src/Gtk/MainWindow.vala:531 msgid "available" msgstr "доступний" -#: src/Gtk/MainWindow.vala:572 src/Gtk/MainWindow.vala:613 -#: src/Gtk/MainWindow.vala:648 +#: src/Gtk/MainWindow.vala:574 src/Gtk/MainWindow.vala:615 +#: src/Gtk/MainWindow.vala:650 msgid "DONE" msgstr "ГОТОВО" diff --git a/src/Common/LinuxKernel.vala b/src/Common/LinuxKernel.vala index e0b68b2d..0aa7bf89 100644 --- a/src/Common/LinuxKernel.vala +++ b/src/Common/LinuxKernel.vala @@ -137,20 +137,22 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { public static void initialize_regex() { //log_debug("initialize_regex()"); try { + //linux-headers-3.4.75-030475-generic_3.4.75-030475.201312201255_amd64.deb - rex_header = new Regex("(?:" + NATIVE_ARCH + """/|>)?linux-headers-[a-zA-Z0-9.\-_]*-generic_[a-zA-Z0-9.\-]*_""" + NATIVE_ARCH + ".deb"); + rex_header = new Regex("(?:" + NATIVE_ARCH + """/|>)?linux-headers-[a-zA-Z0-9\.\-_]*-generic_[a-zA-Z0-9\.\-]*_""" + NATIVE_ARCH + ".deb"); //linux-headers-3.4.75-030475_3.4.75-030475.201312201255_all.deb - rex_header_all = new Regex("(?:" + NATIVE_ARCH + """/|>)?linux-headers-[a-zA-Z0-9.\-_]*_all.deb"""); + rex_header_all = new Regex("(?:" + NATIVE_ARCH + """/|>)?linux-headers-[a-zA-Z0-9\.\-_]*_all.deb"""); //linux-image-3.4.75-030475-generic_3.4.75-030475.201312201255_amd64.deb - rex_image = new Regex("(?:" + NATIVE_ARCH + """/|>)?linux-image-[a-zA-Z0-9.\-_]*-generic_([a-zA-Z0-9.\-]*)_""" + NATIVE_ARCH + ".deb"); + rex_image = new Regex("(?:" + NATIVE_ARCH + """/|>)?linux-image-[a-zA-Z0-9\.\-_]*-generic_([a-zA-Z0-9\.\-]*)_""" + NATIVE_ARCH + ".deb"); //linux-image-extra-3.4.75-030475-generic_3.4.75-030475.201312201255_amd64.deb - rex_image_extra = new Regex("(?:" + NATIVE_ARCH + """/|>)?linux-image-extra-[a-zA-Z0-9.\-_]*-generic_[a-zA-Z0-9.\-]*_""" + NATIVE_ARCH + ".deb"); + rex_image_extra = new Regex("(?:" + NATIVE_ARCH + """/|>)?linux-image-extra-[a-zA-Z0-9\.\-_]*-generic_[a-zA-Z0-9\.\-]*_""" + NATIVE_ARCH + ".deb"); //linux-image-extra-3.4.75-030475-generic_3.4.75-030475.201312201255_amd64.deb - rex_modules = new Regex("(?:" + NATIVE_ARCH + """/|>)?linux-modules-[a-zA-Z0-9.\-_]*-generic_[a-zA-Z0-9.\-]*_""" + NATIVE_ARCH + ".deb"); + rex_modules = new Regex("(?:" + NATIVE_ARCH + """/|>)?linux-modules-[a-zA-Z0-9\.\-_]*-generic_[a-zA-Z0-9\.\-]*_""" + NATIVE_ARCH + ".deb"); + } catch (Error e) { vprint(e.message,1,stderr); } @@ -845,7 +847,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { txt = file_read(cached_page); try { ////same deb name// - var rex = new Regex("""([a-zA-Z0-9\-._/]+)<\/a>"""); + var rex = new Regex("""([a-zA-Z0-9\-\._/]+\.deb)<\/a>"""); MatchInfo match; foreach (string line in txt.split("\n")) { @@ -853,6 +855,8 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { string file_name = Path.get_basename (match.fetch(2)); string file_uri = "%s%s".printf(page_uri, match.fetch(1)); + if (url_list.has_key(file_name)) continue; + bool add = false; if (rex_header.match(file_name, 0, out match)) { diff --git a/src/Gtk/MainWindow.vala b/src/Gtk/MainWindow.vala index acda2b6f..6c17f1e9 100644 --- a/src/Gtk/MainWindow.vala +++ b/src/Gtk/MainWindow.vala @@ -94,6 +94,7 @@ public class MainWindow : Gtk.Window { tv = new TreeView(); tv.get_selection().mode = SelectionMode.MULTIPLE; tv.headers_visible = true; + tv.set_grid_lines(BOTH); tv.expand = true; tv.row_activated.connect(tv_row_activated); @@ -315,6 +316,7 @@ public class MainWindow : Gtk.Window { // ppa button = new Gtk.Button.with_label ("PPA"); + button.set_tooltip_text(_("Changelog, build status, etc")); hbox.pack_start (button, true, true, 0); btn_ppa = button; From 3350599c292fc12264ddfcbe0c5df488fa893b2f Mon Sep 17 00:00:00 2001 From: "Brian K. White" <54458165+bkw777@users.noreply.github.com> Date: Sun, 9 Apr 2023 15:11:48 -0400 Subject: [PATCH 309/567] Update compat --- debian/compat | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/debian/compat b/debian/compat index b1bd38b6..48082f72 100644 --- a/debian/compat +++ b/debian/compat @@ -1 +1 @@ -13 +12 From 930a9d867dc7f32583e4cb34f15edc513ee37c42 Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Wed, 12 Apr 2023 18:52:58 -0400 Subject: [PATCH 310/567] support bionic glib-json --- po/de.po | 12 ++--- po/el.po | 12 ++--- po/es.po | 12 ++--- po/fr.po | 12 ++--- po/hr.po | 12 ++--- po/it.po | 12 ++--- po/ko.po | 12 ++--- po/messages.pot | 12 ++--- po/nl.po | 12 ++--- po/pl.po | 12 ++--- po/ru.po | 12 ++--- po/sv.po | 12 ++--- po/tr.po | 12 ++--- po/uk.po | 12 ++--- src/Common/Main.vala | 106 +++++++++++++++++++++++++++---------------- src/lib/l.json.vala | 22 +++++++++ src/lib/l.misc.vala | 3 -- 17 files changed, 172 insertions(+), 127 deletions(-) create mode 100644 src/lib/l.json.vala diff --git a/po/de.po b/po/de.po index 7e2b921f..22f0381f 100644 --- a/po/de.po +++ b/po/de.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-04-09 11:59-0400\n" +"POT-Creation-Date: 2023-04-12 18:25-0400\n" "PO-Revision-Date: 2023-02-20 18:40+0100\n" "Last-Translator: Marvin Meysel \n" "Language-Team: German\n" @@ -152,21 +152,21 @@ msgstr "Keine Updates gefunden" msgid "Install Kernel Version %s ? (y/n): " msgstr "Kernel-Version %s installieren? (j/n):" -#: src/Common/Main.vala:353 +#: src/Common/Main.vala:379 msgid "Called from" msgstr "Angerufen von" -#: src/Common/Main.vala:353 +#: src/Common/Main.vala:379 msgid "at logon" msgstr "beim start" -#: src/Common/Main.vala:354 +#: src/Common/Main.vala:380 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" "Diese Datei wird überschrieben und erneut ausgeführt, wenn Einstellungen in" -#: src/Common/Main.vala:386 +#: src/Common/Main.vala:412 msgid "Notifications are disabled" msgstr "Benachrichtigungen sind deaktiviert" @@ -523,6 +523,6 @@ msgstr "Stellvertreter" msgid "Missing Icon" msgstr "Fehlendes Symbol" -#: src/lib/l.misc.vala:71 +#: src/lib/l.misc.vala:69 msgid "Can not reach site" msgstr "Fehler beim lesen der Datei" diff --git a/po/el.po b/po/el.po index 92f8bddb..d6e6e9d9 100644 --- a/po/el.po +++ b/po/el.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-04-09 11:59-0400\n" +"POT-Creation-Date: 2023-04-12 18:25-0400\n" "PO-Revision-Date: 2023-01-10 02:03-0600\n" "Last-Translator: Vasilis Kosmidis \n" "Language-Team: Greek\n" @@ -152,22 +152,22 @@ msgstr "Δεν βρέθηκαν ενημερώσεις" msgid "Install Kernel Version %s ? (y/n): " msgstr "Εγκατάσταση του πυρήνα έκδοσης %s ; (ν/ό):" -#: src/Common/Main.vala:353 +#: src/Common/Main.vala:379 msgid "Called from" msgstr "Κλήθηκε από" -#: src/Common/Main.vala:353 +#: src/Common/Main.vala:379 msgid "at logon" msgstr "κατά την εκκίνηση" -#: src/Common/Main.vala:354 +#: src/Common/Main.vala:380 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" "Αυτό το αρχείο αντικαθίσταται και εκτελείται ξανά κάθε φορά που " "αποθηκεύονται οι ρυθμίσεις στο" -#: src/Common/Main.vala:386 +#: src/Common/Main.vala:412 msgid "Notifications are disabled" msgstr "Οι ειδοποιήσεις είναι απενεργοποιημένες" @@ -523,6 +523,6 @@ msgstr "Διακομιστής" msgid "Missing Icon" msgstr "Ελλείπον εικονίδιο" -#: src/lib/l.misc.vala:71 +#: src/lib/l.misc.vala:69 msgid "Can not reach site" msgstr "Αποτυχία ανάγνωσης του αρχείου" diff --git a/po/es.po b/po/es.po index f880daea..6d80a2d4 100644 --- a/po/es.po +++ b/po/es.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-04-09 11:59-0400\n" +"POT-Creation-Date: 2023-04-12 18:25-0400\n" "PO-Revision-Date: 2018-01-03 02:03-0600\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish\n" @@ -152,22 +152,22 @@ msgstr "No se encontró ninguna actualización" msgid "Install Kernel Version %s ? (y/n): " msgstr "Instalar la versión del kernel %s? (s/n): " -#: src/Common/Main.vala:353 +#: src/Common/Main.vala:379 msgid "Called from" msgstr "Llamado desde" -#: src/Common/Main.vala:353 +#: src/Common/Main.vala:379 msgid "at logon" msgstr "al inicio" -#: src/Common/Main.vala:354 +#: src/Common/Main.vala:380 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" "Este archivo se sobrescribe y se ejecuta de nuevo cada vez que se guarda la " "configuración en" -#: src/Common/Main.vala:386 +#: src/Common/Main.vala:412 msgid "Notifications are disabled" msgstr "Las notificaciones están deshabilitadas" @@ -522,6 +522,6 @@ msgstr "Proxy" msgid "Missing Icon" msgstr "Falta el icono" -#: src/lib/l.misc.vala:71 +#: src/lib/l.misc.vala:69 msgid "Can not reach site" msgstr "No se puede llegar al sitio" diff --git a/po/fr.po b/po/fr.po index ea7396e2..ed542f5f 100644 --- a/po/fr.po +++ b/po/fr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-04-09 11:59-0400\n" +"POT-Creation-Date: 2023-04-12 18:25-0400\n" "PO-Revision-Date: 2018-08-05 15:50+0200\n" "Last-Translator: Yolateng0 \n" "Language-Team: French\n" @@ -152,22 +152,22 @@ msgstr "Aucune mise à jour disponible" msgid "Install Kernel Version %s ? (y/n): " msgstr "Installer le noyau en version %s ? (y/n): " -#: src/Common/Main.vala:353 +#: src/Common/Main.vala:379 msgid "Called from" msgstr "Appelé à partir de" -#: src/Common/Main.vala:353 +#: src/Common/Main.vala:379 msgid "at logon" msgstr "au démarrage" -#: src/Common/Main.vala:354 +#: src/Common/Main.vala:380 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" "Ce fichier est écrasé et exécuté à nouveau chaque fois que les paramètres " "sont enregistrés dans" -#: src/Common/Main.vala:386 +#: src/Common/Main.vala:412 msgid "Notifications are disabled" msgstr "Les notifications sont désactivées" @@ -525,6 +525,6 @@ msgstr "Proxy" msgid "Missing Icon" msgstr "Icône introuvable" -#: src/lib/l.misc.vala:71 +#: src/lib/l.misc.vala:69 msgid "Can not reach site" msgstr "No se puede llegar al sitio" diff --git a/po/hr.po b/po/hr.po index 1c71b80c..19f18df4 100644 --- a/po/hr.po +++ b/po/hr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-04-09 11:59-0400\n" +"POT-Creation-Date: 2023-04-12 18:25-0400\n" "PO-Revision-Date: 2022-09-22 12:13+0200\n" "Last-Translator: gogo \n" "Language-Team: Croatian\n" @@ -152,21 +152,21 @@ msgstr "Nema pronađenih nadopuna" msgid "Install Kernel Version %s ? (y/n): " msgstr "Instaliraj kernel inačice %s ? (d/n): " -#: src/Common/Main.vala:353 +#: src/Common/Main.vala:379 msgid "Called from" msgstr "Pozvano od" -#: src/Common/Main.vala:353 +#: src/Common/Main.vala:379 msgid "at logon" msgstr "indításkor" -#: src/Common/Main.vala:354 +#: src/Common/Main.vala:380 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" "Ova se datoteka prepisuje i ponovno izvršava kad god se postavke spremaju u" -#: src/Common/Main.vala:386 +#: src/Common/Main.vala:412 msgid "Notifications are disabled" msgstr "Obavijesti su onemogućene" @@ -520,6 +520,6 @@ msgstr "Proxy" msgid "Missing Icon" msgstr "Ikone koje nedostaju" -#: src/lib/l.misc.vala:71 +#: src/lib/l.misc.vala:69 msgid "Can not reach site" msgstr "Nije moguće doći do web-mjesta" diff --git a/po/it.po b/po/it.po index ee008004..3b8ded68 100644 --- a/po/it.po +++ b/po/it.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-04-09 11:59-0400\n" +"POT-Creation-Date: 2023-04-12 18:25-0400\n" "PO-Revision-Date: 2020-08-22 15:35+0100\n" "Last-Translator: Demetrio Mendozzi\n" "Language-Team: Italian\n" @@ -150,22 +150,22 @@ msgstr "Nessun aggiornamento trovato" msgid "Install Kernel Version %s ? (y/n): " msgstr "Installare la versione del kernel %s ? (y/n): " -#: src/Common/Main.vala:353 +#: src/Common/Main.vala:379 msgid "Called from" msgstr "Chiamato da" -#: src/Common/Main.vala:353 +#: src/Common/Main.vala:379 msgid "at logon" msgstr "all'avvio" -#: src/Common/Main.vala:354 +#: src/Common/Main.vala:380 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" "Questo file viene sovrascritto ed eseguito nuovamente ogni volta che vengono " "salvate le impostazioni" -#: src/Common/Main.vala:386 +#: src/Common/Main.vala:412 msgid "Notifications are disabled" msgstr "Le notifiche sono disabilitate" @@ -521,6 +521,6 @@ msgstr "Proxy" msgid "Missing Icon" msgstr "Icona mancante" -#: src/lib/l.misc.vala:71 +#: src/lib/l.misc.vala:69 msgid "Can not reach site" msgstr "Impossibile raggiungere il sito" diff --git a/po/ko.po b/po/ko.po index 03a0552d..55beeb66 100644 --- a/po/ko.po +++ b/po/ko.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-04-09 11:59-0400\n" +"POT-Creation-Date: 2023-04-12 18:25-0400\n" "PO-Revision-Date: 2022-09-28 11:48+0900\n" "Last-Translator: Kevin Kim \n" "Language-Team: Korean\n" @@ -152,20 +152,20 @@ msgstr "업데이트를 찾을 수 없습니다" msgid "Install Kernel Version %s ? (y/n): " msgstr "커널 %s 버전을 설치하시겠습니까? (y/n): " -#: src/Common/Main.vala:353 +#: src/Common/Main.vala:379 msgid "Called from" msgstr "에서 호출" -#: src/Common/Main.vala:353 +#: src/Common/Main.vala:379 msgid "at logon" msgstr "로그온 시" -#: src/Common/Main.vala:354 +#: src/Common/Main.vala:380 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "이 파일은 덮어쓰고 설정이 저장될 때마다 다시 실행됩니다." -#: src/Common/Main.vala:386 +#: src/Common/Main.vala:412 msgid "Notifications are disabled" msgstr "알림이 비활성화 되었습니다" @@ -519,6 +519,6 @@ msgstr "대리" msgid "Missing Icon" msgstr "아이콘을 찾을 수 없습니다" -#: src/lib/l.misc.vala:71 +#: src/lib/l.misc.vala:69 msgid "Can not reach site" msgstr "사이트에 도달 할 수 없습니다" diff --git a/po/messages.pot b/po/messages.pot index 2bdfd788..b41791cc 100644 --- a/po/messages.pot +++ b/po/messages.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline 1.2.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-04-09 12:06-0400\n" +"POT-Creation-Date: 2023-04-12 18:33-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -156,20 +156,20 @@ msgstr "" msgid "Install Kernel Version %s ? (y/n): " msgstr "" -#: src/Common/Main.vala:353 +#: src/Common/Main.vala:379 msgid "Called from" msgstr "" -#: src/Common/Main.vala:353 +#: src/Common/Main.vala:379 msgid "at logon" msgstr "" -#: src/Common/Main.vala:354 +#: src/Common/Main.vala:380 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" -#: src/Common/Main.vala:386 +#: src/Common/Main.vala:412 msgid "Notifications are disabled" msgstr "" @@ -520,6 +520,6 @@ msgstr "" msgid "Missing Icon" msgstr "" -#: src/lib/l.misc.vala:71 +#: src/lib/l.misc.vala:69 msgid "Can not reach site" msgstr "" diff --git a/po/nl.po b/po/nl.po index 5a8836c2..1719dbd3 100644 --- a/po/nl.po +++ b/po/nl.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-04-09 11:59-0400\n" +"POT-Creation-Date: 2023-04-12 18:25-0400\n" "PO-Revision-Date: 2020-08-23 13:55+0200\n" "Last-Translator: Heimen Stoffels \n" "Language-Team: Dutch (Netherlands)\n" @@ -152,22 +152,22 @@ msgstr "Geen updates gevonden" msgid "Install Kernel Version %s ? (y/n): " msgstr "Wilt u versie %s installeren? (j/n): " -#: src/Common/Main.vala:353 +#: src/Common/Main.vala:379 msgid "Called from" msgstr "Aangeroepen door" -#: src/Common/Main.vala:353 +#: src/Common/Main.vala:379 msgid "at logon" msgstr "bij het opstarten" -#: src/Common/Main.vala:354 +#: src/Common/Main.vala:380 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" "Dit bestand wordt overschreven en opnieuw uitgevoerd wanneer instellingen " "worden opgeslagen in" -#: src/Common/Main.vala:386 +#: src/Common/Main.vala:412 msgid "Notifications are disabled" msgstr "Meldingen zijn uitgeschakeld" @@ -522,6 +522,6 @@ msgstr "Proxy" msgid "Missing Icon" msgstr "Ontbrekend pictogram" -#: src/lib/l.misc.vala:71 +#: src/lib/l.misc.vala:69 msgid "Can not reach site" msgstr "Kan de site niet bereiken" diff --git a/po/pl.po b/po/pl.po index 3fa0854a..caf17801 100644 --- a/po/pl.po +++ b/po/pl.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-04-09 11:59-0400\n" +"POT-Creation-Date: 2023-04-12 18:25-0400\n" "PO-Revision-Date: 2023-04-02 21:31+0200\n" "Last-Translator: Matthaiks\n" "Language-Team: Polish\n" @@ -151,22 +151,22 @@ msgstr "Nie znaleziono aktualizacji" msgid "Install Kernel Version %s ? (y/n): " msgstr "Zainstalować wersję jądra %s? (t/n): " -#: src/Common/Main.vala:353 +#: src/Common/Main.vala:379 msgid "Called from" msgstr "Wywołano z" -#: src/Common/Main.vala:353 +#: src/Common/Main.vala:379 msgid "at logon" msgstr "przy starcie" -#: src/Common/Main.vala:354 +#: src/Common/Main.vala:380 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" "Ten plik jest nadpisywany i wykonywany ponownie za każdym razem, gdy " "ustawienia są zapisywane w" -#: src/Common/Main.vala:386 +#: src/Common/Main.vala:412 msgid "Notifications are disabled" msgstr "Powiadomienia są wyłączone" @@ -520,6 +520,6 @@ msgstr "Serwer pośredniczący" msgid "Missing Icon" msgstr "Brakująca ikona" -#: src/lib/l.misc.vala:71 +#: src/lib/l.misc.vala:69 msgid "Can not reach site" msgstr "Nie można dotrzeć do witryny" diff --git a/po/ru.po b/po/ru.po index 697a5139..88c64b61 100644 --- a/po/ru.po +++ b/po/ru.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-04-09 11:59-0400\n" +"POT-Creation-Date: 2023-04-12 18:25-0400\n" "PO-Revision-Date: 2023-04-02 17:50+0300\n" "Last-Translator: Danik2343 \n" "Language-Team: Russian\n" @@ -152,21 +152,21 @@ msgstr "Обновлений не найдено" msgid "Install Kernel Version %s ? (y/n): " msgstr "Установить версию ядра %s ? (y/n): " -#: src/Common/Main.vala:353 +#: src/Common/Main.vala:379 msgid "Called from" msgstr "Вызван из" -#: src/Common/Main.vala:353 +#: src/Common/Main.vala:379 msgid "at logon" msgstr "при запуске" -#: src/Common/Main.vala:354 +#: src/Common/Main.vala:380 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" "Этот файл перезаписывается и выполняется снова при сохранении настроек в" -#: src/Common/Main.vala:386 +#: src/Common/Main.vala:412 msgid "Notifications are disabled" msgstr "Уведомления отключены" @@ -520,6 +520,6 @@ msgstr "Доверенность" msgid "Missing Icon" msgstr "Значок отсутствует" -#: src/lib/l.misc.vala:71 +#: src/lib/l.misc.vala:69 msgid "Can not reach site" msgstr "Не удается связаться с сайтом" diff --git a/po/sv.po b/po/sv.po index c830b3da..d1cb7e59 100644 --- a/po/sv.po +++ b/po/sv.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-04-09 11:59-0400\n" +"POT-Creation-Date: 2023-04-12 18:25-0400\n" "PO-Revision-Date: 2018-01-13 16:56+0100\n" "Last-Translator: Åke Engelbrektson \n" "Language-Team:Swedish\n" @@ -152,20 +152,20 @@ msgstr "Inga uppdateringar hittades" msgid "Install Kernel Version %s ? (y/n): " msgstr "Installera kärnversion %s ? (j/n):" -#: src/Common/Main.vala:353 +#: src/Common/Main.vala:379 msgid "Called from" msgstr "Ringde från" -#: src/Common/Main.vala:353 +#: src/Common/Main.vala:379 msgid "at logon" msgstr "vid start" -#: src/Common/Main.vala:354 +#: src/Common/Main.vala:380 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "Den här filen skrivs över och körs igen när inställningar sparas i" -#: src/Common/Main.vala:386 +#: src/Common/Main.vala:412 msgid "Notifications are disabled" msgstr "Meddelanden är inaktiverade" @@ -519,6 +519,6 @@ msgstr "Proxyserver" msgid "Missing Icon" msgstr "Saknad ikon" -#: src/lib/l.misc.vala:71 +#: src/lib/l.misc.vala:69 msgid "Can not reach site" msgstr "Kan inte nå webbplatsen" diff --git a/po/tr.po b/po/tr.po index ff0bd9a6..14fee2fc 100644 --- a/po/tr.po +++ b/po/tr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-04-09 11:59-0400\n" +"POT-Creation-Date: 2023-04-12 18:25-0400\n" "PO-Revision-Date: 2022-08-06 16:48+0300\n" "Last-Translator: Sabri Ünal \n" "Language-Team: Turkish\n" @@ -153,21 +153,21 @@ msgstr "Güncelleme bulunamadı" msgid "Install Kernel Version %s ? (y/n): " msgstr "Linux Çekirdek Sürümü %s Kurulsun mu? (e/h): " -#: src/Common/Main.vala:353 +#: src/Common/Main.vala:379 msgid "Called from" msgstr "Çağrı konumu" -#: src/Common/Main.vala:353 +#: src/Common/Main.vala:379 msgid "at logon" msgstr "başlangıçta" -#: src/Common/Main.vala:354 +#: src/Common/Main.vala:380 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" "Bu dosyanın üzerine yazılır ve ayarlar her kaydedildiğinde yeniden yürütülür" -#: src/Common/Main.vala:386 +#: src/Common/Main.vala:412 msgid "Notifications are disabled" msgstr "Bildirimler devre dışı bırakılmış" @@ -521,6 +521,6 @@ msgstr "Proxy" msgid "Missing Icon" msgstr "Eksik Simge" -#: src/lib/l.misc.vala:71 +#: src/lib/l.misc.vala:69 msgid "Can not reach site" msgstr "Siteye ulaşılamıyor" diff --git a/po/uk.po b/po/uk.po index 9357d72a..49007cdc 100644 --- a/po/uk.po +++ b/po/uk.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-04-09 11:59-0400\n" +"POT-Creation-Date: 2023-04-12 18:25-0400\n" "PO-Revision-Date: 2019-07-25 11:00+0300\n" "Last-Translator: Serhii Golovko \n" "Language-Team: Ukranian\n" @@ -152,21 +152,21 @@ msgstr "Оновлень не знайдено" msgid "Install Kernel Version %s ? (y/n): " msgstr "Встановити Ядро Версії %s ? (так/ні): " -#: src/Common/Main.vala:353 +#: src/Common/Main.vala:379 msgid "Called from" msgstr "Викликано з" -#: src/Common/Main.vala:353 +#: src/Common/Main.vala:379 msgid "at logon" msgstr "при запуску" -#: src/Common/Main.vala:354 +#: src/Common/Main.vala:380 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" "Цей файл перезаписується та виконується знову під час збереження налаштувань" -#: src/Common/Main.vala:386 +#: src/Common/Main.vala:412 msgid "Notifications are disabled" msgstr "Повідомлення вимкнено" @@ -520,6 +520,6 @@ msgstr "Проксі" msgid "Missing Icon" msgstr "Нема значка" -#: src/lib/l.misc.vala:71 +#: src/lib/l.misc.vala:69 msgid "Can not reach site" msgstr "Не вдається дістатися до сайту" diff --git a/src/Common/Main.vala b/src/Common/Main.vala index 2a57674d..c35f992c 100644 --- a/src/Common/Main.vala +++ b/src/Common/Main.vala @@ -29,6 +29,7 @@ using TeeJee.FileSystem; using TeeJee.ProcessHelper; using TeeJee.Misc; using l.misc; +using l.json; // REMOVE when bionic no longer supported [CCode(cname="BRANDING_SHORTNAME")] extern const string BRANDING_SHORTNAME; [CCode(cname="BRANDING_LONGNAME")] extern const string BRANDING_LONGNAME; @@ -258,55 +259,80 @@ public class Main : GLib.Object { // detect old file format // hide_unstable, notify_major, notify minor // are all options that have existed since the oldest version of ukuu, - // still exist today, and are not string type. + // still exist today, and are not (now) string type. // They should be present in all config files no matter how old, // and if they are stored as a string, // then the config file is in the old format bool resave = false; if (config.get_string_member("hide_unstable")==null) { - vprint("detetcted new config file format",2); // new config file format - values stored in native format - ppa_uri = config.get_string_member_with_default( "ppa_uri", DEFAULT_PPA_URI ); - all_proxy = config.get_string_member_with_default( "all_proxy", DEFAULT_ALL_PROXY ); - connect_timeout_seconds = (int)config.get_int_member_with_default( "connect_timeout_seconds", DEFAULT_CONNECT_TIMEOUT_SECONDS ); - concurrent_downloads = (int)config.get_int_member_with_default( "concurrent_downloads", DEFAULT_CONCURRENT_DOWNLOADS ); - hide_unstable = config.get_boolean_member_with_default( "hide_unstable", DEFAULT_HIDE_UNSTABLE ); - previous_majors = (int)config.get_int_member_with_default( "previous_majors", DEFAULT_PREVIOUS_MAJORS ); - notify_major = config.get_boolean_member_with_default( "notify_major", DEFAULT_NOTIFY_MAJOR ); - notify_minor = config.get_boolean_member_with_default( "notify_minor", DEFAULT_NOTIFY_MINOR ); - notify_interval_unit = (int)config.get_int_member_with_default( "notify_interval_unit", DEFAULT_NOTIFY_INTERVAL_UNIT ); - notify_interval_value = (int)config.get_int_member_with_default( "notify_interval_value", DEFAULT_NOTIFY_INTERVAL_VALUE ); - verify_checksums = config.get_boolean_member_with_default( "verify_checksums", DEFAULT_VERIFY_CHECKSUMS ); - window_width = (int)config.get_int_member_with_default( "window_width", DEFAULT_WINDOW_WIDTH ); - window_height = (int)config.get_int_member_with_default( "window_height", DEFAULT_WINDOW_HEIGHT ); - window_x = (int)config.get_int_member_with_default( "window_x", DEFAULT_WINDOW_X ); - window_y = (int)config.get_int_member_with_default( "window_y", DEFAULT_WINDOW_Y ); - term_width = (int)config.get_int_member_with_default( "term_width", DEFAULT_TERM_WIDTH ); - term_height = (int)config.get_int_member_with_default( "term_height", DEFAULT_TERM_HEIGHT ); - //term_x = (int)config.get_int_member_with_default( "term_x", DEFAULT_TERM_X ); - //term_y = (int)config.get_int_member_with_default( "term_y", DEFAULT_TERM_Y ); + // bionic doesn't have get_*_member_with_default() + if (Json.MAJOR_VERSION>=1 && Json.MINOR_VERSION>=6) { + ppa_uri = config.get_string_member_with_default( "ppa_uri", DEFAULT_PPA_URI ); + all_proxy = config.get_string_member_with_default( "all_proxy", DEFAULT_ALL_PROXY ); + connect_timeout_seconds = (int)config.get_int_member_with_default( "connect_timeout_seconds", DEFAULT_CONNECT_TIMEOUT_SECONDS ); + concurrent_downloads = (int)config.get_int_member_with_default( "concurrent_downloads", DEFAULT_CONCURRENT_DOWNLOADS ); + hide_unstable = config.get_boolean_member_with_default( "hide_unstable", DEFAULT_HIDE_UNSTABLE ); + previous_majors = (int)config.get_int_member_with_default( "previous_majors", DEFAULT_PREVIOUS_MAJORS ); + notify_major = config.get_boolean_member_with_default( "notify_major", DEFAULT_NOTIFY_MAJOR ); + notify_minor = config.get_boolean_member_with_default( "notify_minor", DEFAULT_NOTIFY_MINOR ); + notify_interval_unit = (int)config.get_int_member_with_default( "notify_interval_unit", DEFAULT_NOTIFY_INTERVAL_UNIT ); + notify_interval_value = (int)config.get_int_member_with_default( "notify_interval_value", DEFAULT_NOTIFY_INTERVAL_VALUE ); + verify_checksums = config.get_boolean_member_with_default( "verify_checksums", DEFAULT_VERIFY_CHECKSUMS ); + window_width = (int)config.get_int_member_with_default( "window_width", DEFAULT_WINDOW_WIDTH ); + window_height = (int)config.get_int_member_with_default( "window_height", DEFAULT_WINDOW_HEIGHT ); + window_x = (int)config.get_int_member_with_default( "window_x", DEFAULT_WINDOW_X ); + window_y = (int)config.get_int_member_with_default( "window_y", DEFAULT_WINDOW_Y ); + term_width = (int)config.get_int_member_with_default( "term_width", DEFAULT_TERM_WIDTH ); + term_height = (int)config.get_int_member_with_default( "term_height", DEFAULT_TERM_HEIGHT ); + //term_x = (int)config.get_int_member_with_default( "term_x", DEFAULT_TERM_X ); + //term_y = (int)config.get_int_member_with_default( "term_y", DEFAULT_TERM_Y ); + } else { + // REMOVE when bionic no longer supported + vprint("bionic-compatible json loader",3); + ppa_uri = json_get_string( config, "ppa_uri", DEFAULT_PPA_URI ); + all_proxy = json_get_string( config, "all_proxy", DEFAULT_ALL_PROXY ); + connect_timeout_seconds = json_get_int( config, "connect_timeout_seconds", DEFAULT_CONNECT_TIMEOUT_SECONDS ); + concurrent_downloads = json_get_int( config, "concurrent_downloads", DEFAULT_CONCURRENT_DOWNLOADS ); + hide_unstable = json_get_bool( config, "hide_unstable", DEFAULT_HIDE_UNSTABLE ); + previous_majors = json_get_int( config, "previous_majors", DEFAULT_PREVIOUS_MAJORS ); + notify_major = json_get_bool( config, "notify_major", DEFAULT_NOTIFY_MAJOR ); + notify_minor = json_get_bool( config, "notify_minor", DEFAULT_NOTIFY_MINOR ); + notify_interval_unit = json_get_int( config, "notify_interval_unit", DEFAULT_NOTIFY_INTERVAL_UNIT ); + notify_interval_value = json_get_int( config, "notify_interval_value", DEFAULT_NOTIFY_INTERVAL_VALUE ); + verify_checksums = json_get_bool( config, "verify_checksums", DEFAULT_VERIFY_CHECKSUMS ); + window_width = json_get_int( config, "window_width", DEFAULT_WINDOW_WIDTH ); + window_height = json_get_int( config, "window_height", DEFAULT_WINDOW_HEIGHT ); + window_x = json_get_int( config, "window_x", DEFAULT_WINDOW_X ); + window_y = json_get_int( config, "window_y", DEFAULT_WINDOW_Y ); + term_width = json_get_int( config, "term_width", DEFAULT_TERM_WIDTH ); + term_height = json_get_int( config, "term_height", DEFAULT_TERM_HEIGHT ); + } } else { + // old config file format - all values stored as string vprint("detetcted old config file format",2); resave = true; - // old config file format - all values stored as string - ppa_uri = config.get_string_member_with_default( "ppa_uri", DEFAULT_PPA_URI ) ; - all_proxy = config.get_string_member_with_default( "all_proxy", DEFAULT_ALL_PROXY ) ; - connect_timeout_seconds = int.parse( config.get_string_member_with_default( "connect_timeout_seconds", DEFAULT_CONNECT_TIMEOUT_SECONDS .to_string() ) ); - concurrent_downloads = int.parse( config.get_string_member_with_default( "concurrent_downloads", DEFAULT_CONCURRENT_DOWNLOADS .to_string() ) ); - hide_unstable = bool.parse( config.get_string_member_with_default( "hide_unstable", DEFAULT_HIDE_UNSTABLE .to_string() ) ); - previous_majors = int.parse( config.get_string_member_with_default( "previous_majors", DEFAULT_PREVIOUS_MAJORS .to_string() ) ); - notify_major = bool.parse( config.get_string_member_with_default( "notify_major", DEFAULT_NOTIFY_MAJOR .to_string() ) ); - notify_minor = bool.parse( config.get_string_member_with_default( "notify_minor", DEFAULT_NOTIFY_MINOR .to_string() ) ); - notify_interval_unit = int.parse( config.get_string_member_with_default( "notify_interval_unit", DEFAULT_NOTIFY_INTERVAL_UNIT .to_string() ) ); - notify_interval_value = int.parse( config.get_string_member_with_default( "notify_interval_value", DEFAULT_NOTIFY_INTERVAL_VALUE .to_string() ) ); - window_width = int.parse( config.get_string_member_with_default( "window_width", DEFAULT_WINDOW_WIDTH .to_string() ) ); - window_height = int.parse( config.get_string_member_with_default( "window_height", DEFAULT_WINDOW_HEIGHT .to_string() ) ); - window_x = int.parse( config.get_string_member_with_default( "window_x", DEFAULT_WINDOW_X .to_string() ) ); - window_y = int.parse( config.get_string_member_with_default( "window_y", DEFAULT_WINDOW_Y .to_string() ) ); - term_width = int.parse( config.get_string_member_with_default( "term_width", DEFAULT_TERM_WIDTH .to_string() ) ); - term_height = int.parse( config.get_string_member_with_default( "term_height", DEFAULT_TERM_HEIGHT .to_string() ) ); - //term_x = int.parse( config.get_string_member_with_default( "term_x", DEFAULT_TERM_X .to_string() ) ); - //term_y = int.parse( config.get_string_member_with_default( "term_y", DEFAULT_TERM_Y .to_string() ) ); + // bionic doesn't have get_*_member_with_default() + if (Json.MAJOR_VERSION>=1 && Json.MINOR_VERSION>=6) { + connect_timeout_seconds = int.parse( config.get_string_member_with_default( "connect_timeout_seconds", DEFAULT_CONNECT_TIMEOUT_SECONDS .to_string() ) ); + concurrent_downloads = int.parse( config.get_string_member_with_default( "concurrent_downloads", DEFAULT_CONCURRENT_DOWNLOADS .to_string() ) ); + hide_unstable = bool.parse( config.get_string_member_with_default( "hide_unstable", DEFAULT_HIDE_UNSTABLE .to_string() ) ); + previous_majors = int.parse( config.get_string_member_with_default( "previous_majors", DEFAULT_PREVIOUS_MAJORS .to_string() ) ); + notify_major = bool.parse( config.get_string_member_with_default( "notify_major", DEFAULT_NOTIFY_MAJOR .to_string() ) ); + notify_minor = bool.parse( config.get_string_member_with_default( "notify_minor", DEFAULT_NOTIFY_MINOR .to_string() ) ); + notify_interval_unit = int.parse( config.get_string_member_with_default( "notify_interval_unit", DEFAULT_NOTIFY_INTERVAL_UNIT .to_string() ) ); + notify_interval_value = int.parse( config.get_string_member_with_default( "notify_interval_value", DEFAULT_NOTIFY_INTERVAL_VALUE .to_string() ) ); + } else { + // REMOVE when bionic no longer supported + connect_timeout_seconds = int.parse( json_get_string( config, "connect_timeout_seconds", DEFAULT_CONNECT_TIMEOUT_SECONDS .to_string() ) ); + concurrent_downloads = int.parse( json_get_string( config, "concurrent_downloads", DEFAULT_CONCURRENT_DOWNLOADS .to_string() ) ); + hide_unstable = bool.parse( json_get_string( config, "hide_unstable", DEFAULT_HIDE_UNSTABLE .to_string() ) ); + previous_majors = int.parse( json_get_string( config, "previous_majors", DEFAULT_PREVIOUS_MAJORS .to_string() ) ); + notify_major = bool.parse( json_get_string( config, "notify_major", DEFAULT_NOTIFY_MAJOR .to_string() ) ); + notify_minor = bool.parse( json_get_string( config, "notify_minor", DEFAULT_NOTIFY_MINOR .to_string() ) ); + notify_interval_unit = int.parse( json_get_string( config, "notify_interval_unit", DEFAULT_NOTIFY_INTERVAL_UNIT .to_string() ) ); + notify_interval_value = int.parse( json_get_string( config, "notify_interval_value", DEFAULT_NOTIFY_INTERVAL_VALUE .to_string() ) ); + } } // fixups diff --git a/src/lib/l.json.vala b/src/lib/l.json.vala new file mode 100644 index 00000000..be9a281f --- /dev/null +++ b/src/lib/l.json.vala @@ -0,0 +1,22 @@ +// REMOVE this file after bionic no longer supported +// These are not as bulletproof as Json.get_*_member_with_default(), +// but those don't exist before json-glib-1.0 1.6 +using Gee; +using Json; + +namespace l.json { + public int json_get_int(Json.Object jobj, string member, int def=0) { + if (!jobj.has_member(member)) return def; + return (int)jobj.get_int_member(member); + } + + public bool json_get_bool(Json.Object jobj, string member, bool def=false) { + if (!jobj.has_member(member)) return def; + return jobj.get_boolean_member(member); + } + + public string json_get_string(Json.Object jobj, string member, string def="") { + if (jobj.get_string_member(member)==null) return def; + return jobj.get_string_member(member); + } +} diff --git a/src/lib/l.misc.vala b/src/lib/l.misc.vala index a615d40e..e1382724 100644 --- a/src/lib/l.misc.vala +++ b/src/lib/l.misc.vala @@ -1,5 +1,3 @@ -// - namespace l.misc { public int VERBOSE = 1; @@ -110,5 +108,4 @@ namespace l.misc { public void sleep(int milliseconds) { Thread.usleep ((ulong) milliseconds * 1000); } - } From 450ea67a71eec91e0d803cda309fe2bded60e44f Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Wed, 12 Apr 2023 19:08:19 -0400 Subject: [PATCH 311/567] 1.2.4 --- .deb_build_number.mak | 4 ++-- BRANDING.mak | 2 +- debian/changelog | 8 ++++++++ 3 files changed, 11 insertions(+), 3 deletions(-) diff --git a/.deb_build_number.mak b/.deb_build_number.mak index ad8bccf3..74e16126 100644 --- a/.deb_build_number.mak +++ b/.deb_build_number.mak @@ -1,3 +1,3 @@ # This file is generated by Makefile "make deb_build_number" -DEB_PKG_VERSION := 1.2.3 -DEB_BUILD_NUMBER := 0007 +DEB_PKG_VERSION := 1.2.4 +DEB_BUILD_NUMBER := 0000 diff --git a/BRANDING.mak b/BRANDING.mak index f70d4d8c..09ebaf98 100644 --- a/BRANDING.mak +++ b/BRANDING.mak @@ -3,7 +3,7 @@ VERSION_MAJOR = 1 VERSION_MINOR = 2 -VERSION_MICRO = 3 +VERSION_MICRO = 4 BRANDING_SHORTNAME = mainline BRANDING_LONGNAME = Ubuntu Mainline Kernel Installer BRANDING_AUTHORNAME = Brian K. White diff --git a/debian/changelog b/debian/changelog index 8410d966..fa579b04 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,11 @@ +mainline (1.2.4) unstable; urgency=medium + + * restore bionic support + - debian/compat < 13 + - glib-json-1.0 < 1.6 + + -- Brian K. White Wed, 12 Apr 2023 18:54:24 -0400 + mainline (1.2.3) unstable; urgency=medium * make the Notes column sortable From de44e8853604de18b89f51d45919b17921d4be86 Mon Sep 17 00:00:00 2001 From: Matthaiks <3577122+Matthaiks@users.noreply.github.com> Date: Thu, 13 Apr 2023 07:43:54 +0200 Subject: [PATCH 312/567] Update Polish translation --- po/pl.po | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/po/pl.po b/po/pl.po index caf17801..d8e30805 100644 --- a/po/pl.po +++ b/po/pl.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-04-12 18:25-0400\n" -"PO-Revision-Date: 2023-04-02 21:31+0200\n" +"POT-Creation-Date: 2023-04-12 18:33-0400\n" +"PO-Revision-Date: 2023-04-13 07:43+0200\n" "Last-Translator: Matthaiks\n" "Language-Team: Polish\n" "Language: pl\n" @@ -67,7 +67,7 @@ msgstr "Zainstalowane" #: src/Common/LinuxKernel.vala:735 msgid "Invalid" -msgstr "Nieprawidłowy" +msgstr "Nieprawidłowe" #: src/Common/LinuxKernel.vala:809 msgid "Packages Available" @@ -157,7 +157,7 @@ msgstr "Wywołano z" #: src/Common/Main.vala:379 msgid "at logon" -msgstr "przy starcie" +msgstr "przy logowaniu" #: src/Common/Main.vala:380 msgid "" @@ -217,7 +217,7 @@ msgstr "Odinstaluj wybrane jądro" #: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:331 msgid "Uninstall all but the highest installed version" -msgstr "Odinstaluj wszystkie wersje oprócz najwyżej zainstalowanej" +msgstr "Odinstaluj wszystkie oprócz najwyższej zainstalowanej wersji" #: src/Console/AppConsole.vala:60 msgid "Download specified kernels" @@ -383,7 +383,7 @@ msgstr "Odinstaluj" #: src/Gtk/MainWindow.vala:319 msgid "Changelog, build status, etc" -msgstr "" +msgstr "Dziennik zmian, status kompilacji itd." #: src/Gtk/MainWindow.vala:330 msgid "Uninstall Old" From 626c3bdc50b1085e1f4a635dd975114cddebe5a0 Mon Sep 17 00:00:00 2001 From: cappelikan Date: Fri, 14 Apr 2023 08:11:50 +0300 Subject: [PATCH 313/567] Update uk.po update translate uk.po --- po/uk.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/uk.po b/po/uk.po index 49007cdc..38d83aca 100644 --- a/po/uk.po +++ b/po/uk.po @@ -383,7 +383,7 @@ msgstr "Видалити" #: src/Gtk/MainWindow.vala:319 msgid "Changelog, build status, etc" -msgstr "" +msgstr "Журнал змін, статус збірки тощо" #: src/Gtk/MainWindow.vala:330 msgid "Uninstall Old" From da87de96ca078ebe163dd13802cfc521bc464345 Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Sat, 15 Apr 2023 12:38:18 -0400 Subject: [PATCH 314/567] fix glib-json < 1.6 support --- .deb_build_number.mak | 2 +- BRANDING.mak | 2 +- Makefile | 5 ++++ debian/changelog | 9 ++++++ po/de.po | 56 +++++++++++++++++------------------ po/el.po | 56 +++++++++++++++++------------------ po/es.po | 56 +++++++++++++++++------------------ po/fr.po | 56 +++++++++++++++++------------------ po/hr.po | 56 +++++++++++++++++------------------ po/it.po | 56 +++++++++++++++++------------------ po/ko.po | 56 +++++++++++++++++------------------ po/messages.pot | 58 ++++++++++++++++++------------------- po/nl.po | 56 +++++++++++++++++------------------ po/pl.po | 56 +++++++++++++++++------------------ po/ru.po | 56 +++++++++++++++++------------------ po/sv.po | 56 +++++++++++++++++------------------ po/tr.po | 56 +++++++++++++++++------------------ po/uk.po | 56 +++++++++++++++++------------------ src/Common/LinuxKernel.vala | 4 ++- src/Common/Main.vala | 25 ++++++++-------- 20 files changed, 425 insertions(+), 408 deletions(-) diff --git a/.deb_build_number.mak b/.deb_build_number.mak index 74e16126..a21127ca 100644 --- a/.deb_build_number.mak +++ b/.deb_build_number.mak @@ -1,3 +1,3 @@ # This file is generated by Makefile "make deb_build_number" DEB_PKG_VERSION := 1.2.4 -DEB_BUILD_NUMBER := 0000 +DEB_BUILD_NUMBER := 0002 diff --git a/BRANDING.mak b/BRANDING.mak index 09ebaf98..6b23274e 100644 --- a/BRANDING.mak +++ b/BRANDING.mak @@ -3,7 +3,7 @@ VERSION_MAJOR = 1 VERSION_MINOR = 2 -VERSION_MICRO = 4 +VERSION_MICRO = 5 BRANDING_SHORTNAME = mainline BRANDING_LONGNAME = Ubuntu Mainline Kernel Installer BRANDING_AUTHORNAME = Brian K. White diff --git a/Makefile b/Makefile index 43e55d85..11b80fe3 100644 --- a/Makefile +++ b/Makefile @@ -21,6 +21,11 @@ gtk+ := gtk+-3.0 json-glib := json-glib-1.0 gee := gee-0.8 +x != pkg-config $(json-glib) --atleast-version=1.6.0 +ifeq ($(.SHELLSTATUS),0) +VALACFLAGS += -D GLIB_JSON_1_6 +endif + include BRANDING.mak BRANDING_VERSION := $(VERSION_MAJOR).$(VERSION_MINOR).$(VERSION_MICRO) build_symbols := -X -D'INSTALL_PREFIX="$(prefix)"' \ diff --git a/debian/changelog b/debian/changelog index fa579b04..03ed1486 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,12 @@ +mainline (1.2.5) unstable; urgency=medium + + * actually do what 1.2.4 claimed + - support bionic by setting debian/compat < 13 + - support bionic, focal, and any other systems with glib-json-1.0 < 1.6 + - use glib-json >= 1.6 get_*_member_with_default() if available + + -- Brian K. White Sat, 15 Apr 2023 12:29:48 -0400 + mainline (1.2.4) unstable; urgency=medium * restore bionic support diff --git a/po/de.po b/po/de.po index 22f0381f..46777bed 100644 --- a/po/de.po +++ b/po/de.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-04-12 18:25-0400\n" +"POT-Creation-Date: 2023-04-15 12:22-0400\n" "PO-Revision-Date: 2023-02-20 18:40+0100\n" "Last-Translator: Marvin Meysel \n" "Language-Team: German\n" @@ -57,116 +57,116 @@ msgstr "MISSLUNGEN" msgid "Found installed" msgstr "Installiert gefunden" -#: src/Common/LinuxKernel.vala:733 src/Gtk/MainWindow.vala:522 +#: src/Common/LinuxKernel.vala:735 src/Gtk/MainWindow.vala:522 #: src/Gtk/MainWindow.vala:535 msgid "Running" msgstr "Läuft" -#: src/Common/LinuxKernel.vala:734 +#: src/Common/LinuxKernel.vala:736 msgid "Installed" msgstr "Installiert" -#: src/Common/LinuxKernel.vala:735 +#: src/Common/LinuxKernel.vala:737 msgid "Invalid" msgstr "Ungültig" -#: src/Common/LinuxKernel.vala:809 +#: src/Common/LinuxKernel.vala:811 msgid "Packages Available" msgstr "Verfügbare Pakete" -#: src/Common/LinuxKernel.vala:815 +#: src/Common/LinuxKernel.vala:817 msgid "Packages Installed" msgstr "Installierte Pakete" -#: src/Common/LinuxKernel.vala:837 src/lib/TeeJee.FileSystem.vala:118 +#: src/Common/LinuxKernel.vala:839 src/lib/TeeJee.FileSystem.vala:118 msgid "File not found" msgstr "Datei nicht gefunden " -#: src/Common/LinuxKernel.vala:908 +#: src/Common/LinuxKernel.vala:910 msgid "Available Kernels" msgstr "Verfügbare Kernel" -#: src/Common/LinuxKernel.vala:945 +#: src/Common/LinuxKernel.vala:947 msgid "enabled" msgstr "ermöglichte" -#: src/Common/LinuxKernel.vala:969 +#: src/Common/LinuxKernel.vala:971 msgid "Downloading" msgstr "Laden" -#: src/Common/LinuxKernel.vala:990 +#: src/Common/LinuxKernel.vala:992 msgid "is already installed." msgstr "ist bereits installiert." -#: src/Common/LinuxKernel.vala:1020 +#: src/Common/LinuxKernel.vala:1022 msgid "Uninstalling selected kernels" msgstr "Deinstallation des angegebenen Kernels" -#: src/Common/LinuxKernel.vala:1026 +#: src/Common/LinuxKernel.vala:1028 msgid "requested" msgstr "angefordert" -#: src/Common/LinuxKernel.vala:1029 +#: src/Common/LinuxKernel.vala:1031 msgid "not uninstalling the currently running kernel" msgstr "Den aktuell laufenden Kernel wird nicht deinstalliert" -#: src/Common/LinuxKernel.vala:1045 +#: src/Common/LinuxKernel.vala:1047 msgid "found" msgstr "gründen" -#: src/Common/LinuxKernel.vala:1048 +#: src/Common/LinuxKernel.vala:1050 msgid "No packages to un-install!" msgstr "Keine Pakete zum Deinstallieren!" -#: src/Common/LinuxKernel.vala:1096 +#: src/Common/LinuxKernel.vala:1098 msgid "Could not find running kernel in list" msgstr "Konnte keinen laufenden Kernel in der Liste finden" -#: src/Common/LinuxKernel.vala:1101 +#: src/Common/LinuxKernel.vala:1103 msgid "Could not find any kernels to uninstall" msgstr "Es konnten keine Kernel zum Deinstallieren gefunden werden" -#: src/Common/LinuxKernel.vala:1109 +#: src/Common/LinuxKernel.vala:1111 msgid "The following kernels will be uninstalled" msgstr "Die folgenden Kernel werden deinstalliert" -#: src/Common/LinuxKernel.vala:1113 +#: src/Common/LinuxKernel.vala:1115 msgid "Continue ?" msgstr "Weiter ?" -#: src/Common/LinuxKernel.vala:1135 src/Console/AppConsole.vala:292 +#: src/Common/LinuxKernel.vala:1137 src/Console/AppConsole.vala:292 msgid "Latest update" msgstr "Neustes Update" -#: src/Common/LinuxKernel.vala:1146 src/Console/AppConsole.vala:299 +#: src/Common/LinuxKernel.vala:1148 src/Console/AppConsole.vala:299 msgid "Latest point update" msgstr "Letzte Punktaktualisierung" -#: src/Common/LinuxKernel.vala:1154 src/Console/AppConsole.vala:304 +#: src/Common/LinuxKernel.vala:1156 src/Console/AppConsole.vala:304 #: src/Console/AppConsole.vala:320 msgid "No updates found" msgstr "Keine Updates gefunden" -#: src/Common/LinuxKernel.vala:1163 +#: src/Common/LinuxKernel.vala:1165 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Kernel-Version %s installieren? (j/n):" -#: src/Common/Main.vala:379 +#: src/Common/Main.vala:380 msgid "Called from" msgstr "Angerufen von" -#: src/Common/Main.vala:379 +#: src/Common/Main.vala:380 msgid "at logon" msgstr "beim start" -#: src/Common/Main.vala:380 +#: src/Common/Main.vala:381 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" "Diese Datei wird überschrieben und erneut ausgeführt, wenn Einstellungen in" -#: src/Common/Main.vala:412 +#: src/Common/Main.vala:413 msgid "Notifications are disabled" msgstr "Benachrichtigungen sind deaktiviert" diff --git a/po/el.po b/po/el.po index d6e6e9d9..c8f1b4b4 100644 --- a/po/el.po +++ b/po/el.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-04-12 18:25-0400\n" +"POT-Creation-Date: 2023-04-15 12:22-0400\n" "PO-Revision-Date: 2023-01-10 02:03-0600\n" "Last-Translator: Vasilis Kosmidis \n" "Language-Team: Greek\n" @@ -57,117 +57,117 @@ msgstr "ΑΠΈΤΥΧΕ" msgid "Found installed" msgstr "Βρέθηκε εγκατεστημένο" -#: src/Common/LinuxKernel.vala:733 src/Gtk/MainWindow.vala:522 +#: src/Common/LinuxKernel.vala:735 src/Gtk/MainWindow.vala:522 #: src/Gtk/MainWindow.vala:535 msgid "Running" msgstr "Ενεργός" -#: src/Common/LinuxKernel.vala:734 +#: src/Common/LinuxKernel.vala:736 msgid "Installed" msgstr "Εγκατεστημένος" -#: src/Common/LinuxKernel.vala:735 +#: src/Common/LinuxKernel.vala:737 msgid "Invalid" msgstr "Άκυρος" -#: src/Common/LinuxKernel.vala:809 +#: src/Common/LinuxKernel.vala:811 msgid "Packages Available" msgstr "Διαθέσιμα πακέτα" -#: src/Common/LinuxKernel.vala:815 +#: src/Common/LinuxKernel.vala:817 msgid "Packages Installed" msgstr "Εγκατεστημένα πακέτα" -#: src/Common/LinuxKernel.vala:837 src/lib/TeeJee.FileSystem.vala:118 +#: src/Common/LinuxKernel.vala:839 src/lib/TeeJee.FileSystem.vala:118 msgid "File not found" msgstr "Το αρχείο δε βρέθηκε" -#: src/Common/LinuxKernel.vala:908 +#: src/Common/LinuxKernel.vala:910 msgid "Available Kernels" msgstr "Διαθέσιμοι πυρήνες" -#: src/Common/LinuxKernel.vala:945 +#: src/Common/LinuxKernel.vala:947 msgid "enabled" msgstr "ενεργοποιημένη" -#: src/Common/LinuxKernel.vala:969 +#: src/Common/LinuxKernel.vala:971 msgid "Downloading" msgstr "Κατέβασμα" -#: src/Common/LinuxKernel.vala:990 +#: src/Common/LinuxKernel.vala:992 msgid "is already installed." msgstr "είναι ήδη εγκατεστημένο." -#: src/Common/LinuxKernel.vala:1020 +#: src/Common/LinuxKernel.vala:1022 msgid "Uninstalling selected kernels" msgstr "Απεγκατάσταση επιλεγμένων πυρήνων" -#: src/Common/LinuxKernel.vala:1026 +#: src/Common/LinuxKernel.vala:1028 msgid "requested" msgstr "ζητήθηκε" -#: src/Common/LinuxKernel.vala:1029 +#: src/Common/LinuxKernel.vala:1031 msgid "not uninstalling the currently running kernel" msgstr "δεν θα απεγκαταστήσει τον πυρήνα που εκτελείται αυτήν τη στιγμή" -#: src/Common/LinuxKernel.vala:1045 +#: src/Common/LinuxKernel.vala:1047 msgid "found" msgstr "ιδρύω" -#: src/Common/LinuxKernel.vala:1048 +#: src/Common/LinuxKernel.vala:1050 msgid "No packages to un-install!" msgstr "Δεν υπάρχουν πακέτα για απεγκατάσταση!" -#: src/Common/LinuxKernel.vala:1096 +#: src/Common/LinuxKernel.vala:1098 msgid "Could not find running kernel in list" msgstr "Δεν ήταν δυνατή η εύρεση του πυρήνα που εκτελείται αυτήν τη στιγμή" -#: src/Common/LinuxKernel.vala:1101 +#: src/Common/LinuxKernel.vala:1103 msgid "Could not find any kernels to uninstall" msgstr "Δεν βρέθηκε κανένας πυρήνας για απεγκατάσταση" -#: src/Common/LinuxKernel.vala:1109 +#: src/Common/LinuxKernel.vala:1111 msgid "The following kernels will be uninstalled" msgstr "Θα καταργηθεί η εγκατάσταση των ακόλουθων πυρήνων" -#: src/Common/LinuxKernel.vala:1113 +#: src/Common/LinuxKernel.vala:1115 msgid "Continue ?" msgstr "Συνέχεια;" -#: src/Common/LinuxKernel.vala:1135 src/Console/AppConsole.vala:292 +#: src/Common/LinuxKernel.vala:1137 src/Console/AppConsole.vala:292 msgid "Latest update" msgstr "Τελευταία αναβάθμιση" -#: src/Common/LinuxKernel.vala:1146 src/Console/AppConsole.vala:299 +#: src/Common/LinuxKernel.vala:1148 src/Console/AppConsole.vala:299 msgid "Latest point update" msgstr "Τελευταία ενημέρωση συντήρησης" -#: src/Common/LinuxKernel.vala:1154 src/Console/AppConsole.vala:304 +#: src/Common/LinuxKernel.vala:1156 src/Console/AppConsole.vala:304 #: src/Console/AppConsole.vala:320 msgid "No updates found" msgstr "Δεν βρέθηκαν ενημερώσεις" -#: src/Common/LinuxKernel.vala:1163 +#: src/Common/LinuxKernel.vala:1165 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Εγκατάσταση του πυρήνα έκδοσης %s ; (ν/ό):" -#: src/Common/Main.vala:379 +#: src/Common/Main.vala:380 msgid "Called from" msgstr "Κλήθηκε από" -#: src/Common/Main.vala:379 +#: src/Common/Main.vala:380 msgid "at logon" msgstr "κατά την εκκίνηση" -#: src/Common/Main.vala:380 +#: src/Common/Main.vala:381 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" "Αυτό το αρχείο αντικαθίσταται και εκτελείται ξανά κάθε φορά που " "αποθηκεύονται οι ρυθμίσεις στο" -#: src/Common/Main.vala:412 +#: src/Common/Main.vala:413 msgid "Notifications are disabled" msgstr "Οι ειδοποιήσεις είναι απενεργοποιημένες" diff --git a/po/es.po b/po/es.po index 6d80a2d4..f7339413 100644 --- a/po/es.po +++ b/po/es.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-04-12 18:25-0400\n" +"POT-Creation-Date: 2023-04-15 12:22-0400\n" "PO-Revision-Date: 2018-01-03 02:03-0600\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish\n" @@ -57,117 +57,117 @@ msgstr "FRACASADO" msgid "Found installed" msgstr "Encontrado instalado" -#: src/Common/LinuxKernel.vala:733 src/Gtk/MainWindow.vala:522 +#: src/Common/LinuxKernel.vala:735 src/Gtk/MainWindow.vala:522 #: src/Gtk/MainWindow.vala:535 msgid "Running" msgstr "En ejecución" -#: src/Common/LinuxKernel.vala:734 +#: src/Common/LinuxKernel.vala:736 msgid "Installed" msgstr "Instalado" -#: src/Common/LinuxKernel.vala:735 +#: src/Common/LinuxKernel.vala:737 msgid "Invalid" msgstr "No válido" -#: src/Common/LinuxKernel.vala:809 +#: src/Common/LinuxKernel.vala:811 msgid "Packages Available" msgstr "Paquetes disponibles" -#: src/Common/LinuxKernel.vala:815 +#: src/Common/LinuxKernel.vala:817 msgid "Packages Installed" msgstr "Paquetes instalados" -#: src/Common/LinuxKernel.vala:837 src/lib/TeeJee.FileSystem.vala:118 +#: src/Common/LinuxKernel.vala:839 src/lib/TeeJee.FileSystem.vala:118 msgid "File not found" msgstr "No se encontró el archivo" -#: src/Common/LinuxKernel.vala:908 +#: src/Common/LinuxKernel.vala:910 msgid "Available Kernels" msgstr "Núcleos disponibles" -#: src/Common/LinuxKernel.vala:945 +#: src/Common/LinuxKernel.vala:947 msgid "enabled" msgstr "habilitado" -#: src/Common/LinuxKernel.vala:969 +#: src/Common/LinuxKernel.vala:971 msgid "Downloading" msgstr "Descargar" -#: src/Common/LinuxKernel.vala:990 +#: src/Common/LinuxKernel.vala:992 msgid "is already installed." msgstr "ya está instalado." -#: src/Common/LinuxKernel.vala:1020 +#: src/Common/LinuxKernel.vala:1022 msgid "Uninstalling selected kernels" msgstr "Desinstalación de kernels seleccionados" -#: src/Common/LinuxKernel.vala:1026 +#: src/Common/LinuxKernel.vala:1028 msgid "requested" msgstr "solicitado" -#: src/Common/LinuxKernel.vala:1029 +#: src/Common/LinuxKernel.vala:1031 msgid "not uninstalling the currently running kernel" msgstr "No desinstalará el kernel que se está ejecutando actualmente" -#: src/Common/LinuxKernel.vala:1045 +#: src/Common/LinuxKernel.vala:1047 msgid "found" msgstr "fundar" -#: src/Common/LinuxKernel.vala:1048 +#: src/Common/LinuxKernel.vala:1050 msgid "No packages to un-install!" msgstr "¡No hay paquetes para desinstalar!" -#: src/Common/LinuxKernel.vala:1096 +#: src/Common/LinuxKernel.vala:1098 msgid "Could not find running kernel in list" msgstr "No se pudo encontrar el kernel en ejecución en la lista" -#: src/Common/LinuxKernel.vala:1101 +#: src/Common/LinuxKernel.vala:1103 msgid "Could not find any kernels to uninstall" msgstr "No se pudo encontrar ningún kernel para desinstalar" -#: src/Common/LinuxKernel.vala:1109 +#: src/Common/LinuxKernel.vala:1111 msgid "The following kernels will be uninstalled" msgstr "Se desinstalarán los siguientes kernels" -#: src/Common/LinuxKernel.vala:1113 +#: src/Common/LinuxKernel.vala:1115 msgid "Continue ?" msgstr "¿Continuar?" -#: src/Common/LinuxKernel.vala:1135 src/Console/AppConsole.vala:292 +#: src/Common/LinuxKernel.vala:1137 src/Console/AppConsole.vala:292 msgid "Latest update" msgstr "Última actualización" -#: src/Common/LinuxKernel.vala:1146 src/Console/AppConsole.vala:299 +#: src/Common/LinuxKernel.vala:1148 src/Console/AppConsole.vala:299 msgid "Latest point update" msgstr "Última actualización puntual" -#: src/Common/LinuxKernel.vala:1154 src/Console/AppConsole.vala:304 +#: src/Common/LinuxKernel.vala:1156 src/Console/AppConsole.vala:304 #: src/Console/AppConsole.vala:320 msgid "No updates found" msgstr "No se encontró ninguna actualización" -#: src/Common/LinuxKernel.vala:1163 +#: src/Common/LinuxKernel.vala:1165 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Instalar la versión del kernel %s? (s/n): " -#: src/Common/Main.vala:379 +#: src/Common/Main.vala:380 msgid "Called from" msgstr "Llamado desde" -#: src/Common/Main.vala:379 +#: src/Common/Main.vala:380 msgid "at logon" msgstr "al inicio" -#: src/Common/Main.vala:380 +#: src/Common/Main.vala:381 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" "Este archivo se sobrescribe y se ejecuta de nuevo cada vez que se guarda la " "configuración en" -#: src/Common/Main.vala:412 +#: src/Common/Main.vala:413 msgid "Notifications are disabled" msgstr "Las notificaciones están deshabilitadas" diff --git a/po/fr.po b/po/fr.po index ed542f5f..754f3c42 100644 --- a/po/fr.po +++ b/po/fr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-04-12 18:25-0400\n" +"POT-Creation-Date: 2023-04-15 12:22-0400\n" "PO-Revision-Date: 2018-08-05 15:50+0200\n" "Last-Translator: Yolateng0 \n" "Language-Team: French\n" @@ -57,117 +57,117 @@ msgstr "RATÉ" msgid "Found installed" msgstr "Trouvé installé" -#: src/Common/LinuxKernel.vala:733 src/Gtk/MainWindow.vala:522 +#: src/Common/LinuxKernel.vala:735 src/Gtk/MainWindow.vala:522 #: src/Gtk/MainWindow.vala:535 msgid "Running" msgstr "Actuel" -#: src/Common/LinuxKernel.vala:734 +#: src/Common/LinuxKernel.vala:736 msgid "Installed" msgstr "Installé" -#: src/Common/LinuxKernel.vala:735 +#: src/Common/LinuxKernel.vala:737 msgid "Invalid" msgstr "No válido" -#: src/Common/LinuxKernel.vala:809 +#: src/Common/LinuxKernel.vala:811 msgid "Packages Available" msgstr "Paquets Disponibles" -#: src/Common/LinuxKernel.vala:815 +#: src/Common/LinuxKernel.vala:817 msgid "Packages Installed" msgstr "Paquets Installés" -#: src/Common/LinuxKernel.vala:837 src/lib/TeeJee.FileSystem.vala:118 +#: src/Common/LinuxKernel.vala:839 src/lib/TeeJee.FileSystem.vala:118 msgid "File not found" msgstr "Fichier non trouvé" -#: src/Common/LinuxKernel.vala:908 +#: src/Common/LinuxKernel.vala:910 msgid "Available Kernels" msgstr "Noyaux Disponibles" -#: src/Common/LinuxKernel.vala:945 +#: src/Common/LinuxKernel.vala:947 msgid "enabled" msgstr "activé" -#: src/Common/LinuxKernel.vala:969 +#: src/Common/LinuxKernel.vala:971 msgid "Downloading" msgstr "Téléchargement" -#: src/Common/LinuxKernel.vala:990 +#: src/Common/LinuxKernel.vala:992 msgid "is already installed." msgstr "est déjà installé." -#: src/Common/LinuxKernel.vala:1020 +#: src/Common/LinuxKernel.vala:1022 msgid "Uninstalling selected kernels" msgstr "Désinstallation des noyaux sélectionnés" -#: src/Common/LinuxKernel.vala:1026 +#: src/Common/LinuxKernel.vala:1028 msgid "requested" msgstr "Demandé" -#: src/Common/LinuxKernel.vala:1029 +#: src/Common/LinuxKernel.vala:1031 msgid "not uninstalling the currently running kernel" msgstr "Ne pas désinstaller le noyau en cours d'exécution" -#: src/Common/LinuxKernel.vala:1045 +#: src/Common/LinuxKernel.vala:1047 msgid "found" msgstr "fonder" -#: src/Common/LinuxKernel.vala:1048 +#: src/Common/LinuxKernel.vala:1050 msgid "No packages to un-install!" msgstr "Pas de paquets à désinstaller !" -#: src/Common/LinuxKernel.vala:1096 +#: src/Common/LinuxKernel.vala:1098 msgid "Could not find running kernel in list" msgstr "Impossible de trouver le noyau en cours d'exécution dans la liste" -#: src/Common/LinuxKernel.vala:1101 +#: src/Common/LinuxKernel.vala:1103 msgid "Could not find any kernels to uninstall" msgstr "Impossible de trouver des noyaux à désinstaller" -#: src/Common/LinuxKernel.vala:1109 +#: src/Common/LinuxKernel.vala:1111 msgid "The following kernels will be uninstalled" msgstr "Les noyaux suivants seront désinstallés" -#: src/Common/LinuxKernel.vala:1113 +#: src/Common/LinuxKernel.vala:1115 msgid "Continue ?" msgstr "Reprendre ?" -#: src/Common/LinuxKernel.vala:1135 src/Console/AppConsole.vala:292 +#: src/Common/LinuxKernel.vala:1137 src/Console/AppConsole.vala:292 msgid "Latest update" msgstr "Dernière mise à jour" -#: src/Common/LinuxKernel.vala:1146 src/Console/AppConsole.vala:299 +#: src/Common/LinuxKernel.vala:1148 src/Console/AppConsole.vala:299 msgid "Latest point update" msgstr "Dernière mise à jour mineure" -#: src/Common/LinuxKernel.vala:1154 src/Console/AppConsole.vala:304 +#: src/Common/LinuxKernel.vala:1156 src/Console/AppConsole.vala:304 #: src/Console/AppConsole.vala:320 msgid "No updates found" msgstr "Aucune mise à jour disponible" -#: src/Common/LinuxKernel.vala:1163 +#: src/Common/LinuxKernel.vala:1165 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Installer le noyau en version %s ? (y/n): " -#: src/Common/Main.vala:379 +#: src/Common/Main.vala:380 msgid "Called from" msgstr "Appelé à partir de" -#: src/Common/Main.vala:379 +#: src/Common/Main.vala:380 msgid "at logon" msgstr "au démarrage" -#: src/Common/Main.vala:380 +#: src/Common/Main.vala:381 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" "Ce fichier est écrasé et exécuté à nouveau chaque fois que les paramètres " "sont enregistrés dans" -#: src/Common/Main.vala:412 +#: src/Common/Main.vala:413 msgid "Notifications are disabled" msgstr "Les notifications sont désactivées" diff --git a/po/hr.po b/po/hr.po index 19f18df4..3c83175b 100644 --- a/po/hr.po +++ b/po/hr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-04-12 18:25-0400\n" +"POT-Creation-Date: 2023-04-15 12:22-0400\n" "PO-Revision-Date: 2022-09-22 12:13+0200\n" "Last-Translator: gogo \n" "Language-Team: Croatian\n" @@ -57,116 +57,116 @@ msgstr "NIJE USPIO" msgid "Found installed" msgstr "Pronađeno instalirano" -#: src/Common/LinuxKernel.vala:733 src/Gtk/MainWindow.vala:522 +#: src/Common/LinuxKernel.vala:735 src/Gtk/MainWindow.vala:522 #: src/Gtk/MainWindow.vala:535 msgid "Running" msgstr "Pokrenuto" -#: src/Common/LinuxKernel.vala:734 +#: src/Common/LinuxKernel.vala:736 msgid "Installed" msgstr "Instalirano" -#: src/Common/LinuxKernel.vala:735 +#: src/Common/LinuxKernel.vala:737 msgid "Invalid" msgstr "Érvénytelen" -#: src/Common/LinuxKernel.vala:809 +#: src/Common/LinuxKernel.vala:811 msgid "Packages Available" msgstr "Dostupni Paketi" -#: src/Common/LinuxKernel.vala:815 +#: src/Common/LinuxKernel.vala:817 msgid "Packages Installed" msgstr "Instalirani paketi" -#: src/Common/LinuxKernel.vala:837 src/lib/TeeJee.FileSystem.vala:118 +#: src/Common/LinuxKernel.vala:839 src/lib/TeeJee.FileSystem.vala:118 msgid "File not found" msgstr "Datoteka nije pronađena" -#: src/Common/LinuxKernel.vala:908 +#: src/Common/LinuxKernel.vala:910 msgid "Available Kernels" msgstr "Dostupni kerneli" -#: src/Common/LinuxKernel.vala:945 +#: src/Common/LinuxKernel.vala:947 msgid "enabled" msgstr "omogućen" -#: src/Common/LinuxKernel.vala:969 +#: src/Common/LinuxKernel.vala:971 msgid "Downloading" msgstr "Učitavanje" -#: src/Common/LinuxKernel.vala:990 +#: src/Common/LinuxKernel.vala:992 msgid "is already installed." msgstr "je već instaliran." -#: src/Common/LinuxKernel.vala:1020 +#: src/Common/LinuxKernel.vala:1022 msgid "Uninstalling selected kernels" msgstr "Deinstaliraj određene kernele" -#: src/Common/LinuxKernel.vala:1026 +#: src/Common/LinuxKernel.vala:1028 msgid "requested" msgstr "Zatražio" -#: src/Common/LinuxKernel.vala:1029 +#: src/Common/LinuxKernel.vala:1031 msgid "not uninstalling the currently running kernel" msgstr "ne deinstaliranje trenutno pokrenute kernel" -#: src/Common/LinuxKernel.vala:1045 +#: src/Common/LinuxKernel.vala:1047 msgid "found" msgstr "pronađen" -#: src/Common/LinuxKernel.vala:1048 +#: src/Common/LinuxKernel.vala:1050 msgid "No packages to un-install!" msgstr "Nema paketa za poništavanje instalacije!" -#: src/Common/LinuxKernel.vala:1096 +#: src/Common/LinuxKernel.vala:1098 msgid "Could not find running kernel in list" msgstr "Nije moguće pronaći pokrenutu kernel na popisu" -#: src/Common/LinuxKernel.vala:1101 +#: src/Common/LinuxKernel.vala:1103 msgid "Could not find any kernels to uninstall" msgstr "Nema pronađenih kernela za deinstaliranje" -#: src/Common/LinuxKernel.vala:1109 +#: src/Common/LinuxKernel.vala:1111 msgid "The following kernels will be uninstalled" msgstr "Deinstalirat će se sljedeće kerneli" -#: src/Common/LinuxKernel.vala:1113 +#: src/Common/LinuxKernel.vala:1115 msgid "Continue ?" msgstr "Nastavi?" -#: src/Common/LinuxKernel.vala:1135 src/Console/AppConsole.vala:292 +#: src/Common/LinuxKernel.vala:1137 src/Console/AppConsole.vala:292 msgid "Latest update" msgstr "Najnovija nadopuna" -#: src/Common/LinuxKernel.vala:1146 src/Console/AppConsole.vala:299 +#: src/Common/LinuxKernel.vala:1148 src/Console/AppConsole.vala:299 msgid "Latest point update" msgstr "Najnovija ciljana nadopuna" -#: src/Common/LinuxKernel.vala:1154 src/Console/AppConsole.vala:304 +#: src/Common/LinuxKernel.vala:1156 src/Console/AppConsole.vala:304 #: src/Console/AppConsole.vala:320 msgid "No updates found" msgstr "Nema pronađenih nadopuna" -#: src/Common/LinuxKernel.vala:1163 +#: src/Common/LinuxKernel.vala:1165 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Instaliraj kernel inačice %s ? (d/n): " -#: src/Common/Main.vala:379 +#: src/Common/Main.vala:380 msgid "Called from" msgstr "Pozvano od" -#: src/Common/Main.vala:379 +#: src/Common/Main.vala:380 msgid "at logon" msgstr "indításkor" -#: src/Common/Main.vala:380 +#: src/Common/Main.vala:381 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" "Ova se datoteka prepisuje i ponovno izvršava kad god se postavke spremaju u" -#: src/Common/Main.vala:412 +#: src/Common/Main.vala:413 msgid "Notifications are disabled" msgstr "Obavijesti su onemogućene" diff --git a/po/it.po b/po/it.po index 3b8ded68..dae223f2 100644 --- a/po/it.po +++ b/po/it.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-04-12 18:25-0400\n" +"POT-Creation-Date: 2023-04-15 12:22-0400\n" "PO-Revision-Date: 2020-08-22 15:35+0100\n" "Last-Translator: Demetrio Mendozzi\n" "Language-Team: Italian\n" @@ -55,117 +55,117 @@ msgstr "FALLITO" msgid "Found installed" msgstr "Trovato installato" -#: src/Common/LinuxKernel.vala:733 src/Gtk/MainWindow.vala:522 +#: src/Common/LinuxKernel.vala:735 src/Gtk/MainWindow.vala:522 #: src/Gtk/MainWindow.vala:535 msgid "Running" msgstr "In esecuzione" -#: src/Common/LinuxKernel.vala:734 +#: src/Common/LinuxKernel.vala:736 msgid "Installed" msgstr "Installato" -#: src/Common/LinuxKernel.vala:735 +#: src/Common/LinuxKernel.vala:737 msgid "Invalid" msgstr "Non valido" -#: src/Common/LinuxKernel.vala:809 +#: src/Common/LinuxKernel.vala:811 msgid "Packages Available" msgstr "Pacchetti disponibili" -#: src/Common/LinuxKernel.vala:815 +#: src/Common/LinuxKernel.vala:817 msgid "Packages Installed" msgstr "Pacchetti installati" -#: src/Common/LinuxKernel.vala:837 src/lib/TeeJee.FileSystem.vala:118 +#: src/Common/LinuxKernel.vala:839 src/lib/TeeJee.FileSystem.vala:118 msgid "File not found" msgstr "File non trovato" -#: src/Common/LinuxKernel.vala:908 +#: src/Common/LinuxKernel.vala:910 msgid "Available Kernels" msgstr "Kernel disponibili" -#: src/Common/LinuxKernel.vala:945 +#: src/Common/LinuxKernel.vala:947 msgid "enabled" msgstr "abilitato" -#: src/Common/LinuxKernel.vala:969 +#: src/Common/LinuxKernel.vala:971 msgid "Downloading" msgstr "Scaricamento" -#: src/Common/LinuxKernel.vala:990 +#: src/Common/LinuxKernel.vala:992 msgid "is already installed." msgstr "è già installato." -#: src/Common/LinuxKernel.vala:1020 +#: src/Common/LinuxKernel.vala:1022 msgid "Uninstalling selected kernels" msgstr "Disinstalla i kernel specificati" -#: src/Common/LinuxKernel.vala:1026 +#: src/Common/LinuxKernel.vala:1028 msgid "requested" msgstr "richiesto" -#: src/Common/LinuxKernel.vala:1029 +#: src/Common/LinuxKernel.vala:1031 msgid "not uninstalling the currently running kernel" msgstr "non disinstallare il kernel attualmente in esecuzione" -#: src/Common/LinuxKernel.vala:1045 +#: src/Common/LinuxKernel.vala:1047 msgid "found" msgstr "trovato" -#: src/Common/LinuxKernel.vala:1048 +#: src/Common/LinuxKernel.vala:1050 msgid "No packages to un-install!" msgstr "Nessun pacchetto da disinstallare!" -#: src/Common/LinuxKernel.vala:1096 +#: src/Common/LinuxKernel.vala:1098 msgid "Could not find running kernel in list" msgstr "Impossibile trovare il kernel in esecuzione nell'elenco" -#: src/Common/LinuxKernel.vala:1101 +#: src/Common/LinuxKernel.vala:1103 msgid "Could not find any kernels to uninstall" msgstr "Impossibile trovare alcun kernel da rimuovere" -#: src/Common/LinuxKernel.vala:1109 +#: src/Common/LinuxKernel.vala:1111 msgid "The following kernels will be uninstalled" msgstr "I seguenti kernel saranno rimossi" -#: src/Common/LinuxKernel.vala:1113 +#: src/Common/LinuxKernel.vala:1115 msgid "Continue ?" msgstr "Continuare ?" -#: src/Common/LinuxKernel.vala:1135 src/Console/AppConsole.vala:292 +#: src/Common/LinuxKernel.vala:1137 src/Console/AppConsole.vala:292 msgid "Latest update" msgstr "Ultimo aggiornamento" -#: src/Common/LinuxKernel.vala:1146 src/Console/AppConsole.vala:299 +#: src/Common/LinuxKernel.vala:1148 src/Console/AppConsole.vala:299 msgid "Latest point update" msgstr "Ultimo aggiornamento del rilascio parziale" -#: src/Common/LinuxKernel.vala:1154 src/Console/AppConsole.vala:304 +#: src/Common/LinuxKernel.vala:1156 src/Console/AppConsole.vala:304 #: src/Console/AppConsole.vala:320 msgid "No updates found" msgstr "Nessun aggiornamento trovato" -#: src/Common/LinuxKernel.vala:1163 +#: src/Common/LinuxKernel.vala:1165 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Installare la versione del kernel %s ? (y/n): " -#: src/Common/Main.vala:379 +#: src/Common/Main.vala:380 msgid "Called from" msgstr "Chiamato da" -#: src/Common/Main.vala:379 +#: src/Common/Main.vala:380 msgid "at logon" msgstr "all'avvio" -#: src/Common/Main.vala:380 +#: src/Common/Main.vala:381 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" "Questo file viene sovrascritto ed eseguito nuovamente ogni volta che vengono " "salvate le impostazioni" -#: src/Common/Main.vala:412 +#: src/Common/Main.vala:413 msgid "Notifications are disabled" msgstr "Le notifiche sono disabilitate" diff --git a/po/ko.po b/po/ko.po index 55beeb66..260bc547 100644 --- a/po/ko.po +++ b/po/ko.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-04-12 18:25-0400\n" +"POT-Creation-Date: 2023-04-15 12:22-0400\n" "PO-Revision-Date: 2022-09-28 11:48+0900\n" "Last-Translator: Kevin Kim \n" "Language-Team: Korean\n" @@ -57,115 +57,115 @@ msgstr "실패" msgid "Found installed" msgstr "설치된 것을 찾았습니다" -#: src/Common/LinuxKernel.vala:733 src/Gtk/MainWindow.vala:522 +#: src/Common/LinuxKernel.vala:735 src/Gtk/MainWindow.vala:522 #: src/Gtk/MainWindow.vala:535 msgid "Running" msgstr "구동 중" -#: src/Common/LinuxKernel.vala:734 +#: src/Common/LinuxKernel.vala:736 msgid "Installed" msgstr "설치 됨" -#: src/Common/LinuxKernel.vala:735 +#: src/Common/LinuxKernel.vala:737 msgid "Invalid" msgstr "사용할 수 없음" -#: src/Common/LinuxKernel.vala:809 +#: src/Common/LinuxKernel.vala:811 msgid "Packages Available" msgstr "설치 가능한 패키지" -#: src/Common/LinuxKernel.vala:815 +#: src/Common/LinuxKernel.vala:817 msgid "Packages Installed" msgstr "설치된 패키지" -#: src/Common/LinuxKernel.vala:837 src/lib/TeeJee.FileSystem.vala:118 +#: src/Common/LinuxKernel.vala:839 src/lib/TeeJee.FileSystem.vala:118 msgid "File not found" msgstr "파일을 찾을 수 없습니다" -#: src/Common/LinuxKernel.vala:908 +#: src/Common/LinuxKernel.vala:910 msgid "Available Kernels" msgstr "설치 가능한 커널" -#: src/Common/LinuxKernel.vala:945 +#: src/Common/LinuxKernel.vala:947 msgid "enabled" msgstr "사용" -#: src/Common/LinuxKernel.vala:969 +#: src/Common/LinuxKernel.vala:971 msgid "Downloading" msgstr "다운로드" -#: src/Common/LinuxKernel.vala:990 +#: src/Common/LinuxKernel.vala:992 msgid "is already installed." msgstr "가 이미 설치되어 있습니다" -#: src/Common/LinuxKernel.vala:1020 +#: src/Common/LinuxKernel.vala:1022 msgid "Uninstalling selected kernels" msgstr "선택한 커널 제거" -#: src/Common/LinuxKernel.vala:1026 +#: src/Common/LinuxKernel.vala:1028 msgid "requested" msgstr "요청" -#: src/Common/LinuxKernel.vala:1029 +#: src/Common/LinuxKernel.vala:1031 msgid "not uninstalling the currently running kernel" msgstr "현재 실행 중인 커널을 제거하지 않음" -#: src/Common/LinuxKernel.vala:1045 +#: src/Common/LinuxKernel.vala:1047 msgid "found" msgstr "설립하다" -#: src/Common/LinuxKernel.vala:1048 +#: src/Common/LinuxKernel.vala:1050 msgid "No packages to un-install!" msgstr "제거 할 패키지가 없습니다!" -#: src/Common/LinuxKernel.vala:1096 +#: src/Common/LinuxKernel.vala:1098 msgid "Could not find running kernel in list" msgstr "현재 실행 중인 커널을 찾을 수 없습니다" -#: src/Common/LinuxKernel.vala:1101 +#: src/Common/LinuxKernel.vala:1103 msgid "Could not find any kernels to uninstall" msgstr "삭제할 커널을 찾을 수 없습니다" -#: src/Common/LinuxKernel.vala:1109 +#: src/Common/LinuxKernel.vala:1111 msgid "The following kernels will be uninstalled" msgstr "풀이" -#: src/Common/LinuxKernel.vala:1113 +#: src/Common/LinuxKernel.vala:1115 msgid "Continue ?" msgstr "계속하시겠습니까?" -#: src/Common/LinuxKernel.vala:1135 src/Console/AppConsole.vala:292 +#: src/Common/LinuxKernel.vala:1137 src/Console/AppConsole.vala:292 msgid "Latest update" msgstr "최신 업데이트" -#: src/Common/LinuxKernel.vala:1146 src/Console/AppConsole.vala:299 +#: src/Common/LinuxKernel.vala:1148 src/Console/AppConsole.vala:299 msgid "Latest point update" msgstr "최신 포인트 업데이트" -#: src/Common/LinuxKernel.vala:1154 src/Console/AppConsole.vala:304 +#: src/Common/LinuxKernel.vala:1156 src/Console/AppConsole.vala:304 #: src/Console/AppConsole.vala:320 msgid "No updates found" msgstr "업데이트를 찾을 수 없습니다" -#: src/Common/LinuxKernel.vala:1163 +#: src/Common/LinuxKernel.vala:1165 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "커널 %s 버전을 설치하시겠습니까? (y/n): " -#: src/Common/Main.vala:379 +#: src/Common/Main.vala:380 msgid "Called from" msgstr "에서 호출" -#: src/Common/Main.vala:379 +#: src/Common/Main.vala:380 msgid "at logon" msgstr "로그온 시" -#: src/Common/Main.vala:380 +#: src/Common/Main.vala:381 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "이 파일은 덮어쓰고 설정이 저장될 때마다 다시 실행됩니다." -#: src/Common/Main.vala:412 +#: src/Common/Main.vala:413 msgid "Notifications are disabled" msgstr "알림이 비활성화 되었습니다" diff --git a/po/messages.pot b/po/messages.pot index b41791cc..7b84ce2a 100644 --- a/po/messages.pot +++ b/po/messages.pot @@ -6,9 +6,9 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: mainline 1.2.3\n" +"Project-Id-Version: mainline 1.2.4\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-04-12 18:33-0400\n" +"POT-Creation-Date: 2023-04-15 12:22-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -61,115 +61,115 @@ msgstr "" msgid "Found installed" msgstr "" -#: src/Common/LinuxKernel.vala:733 src/Gtk/MainWindow.vala:522 +#: src/Common/LinuxKernel.vala:735 src/Gtk/MainWindow.vala:522 #: src/Gtk/MainWindow.vala:535 msgid "Running" msgstr "" -#: src/Common/LinuxKernel.vala:734 +#: src/Common/LinuxKernel.vala:736 msgid "Installed" msgstr "" -#: src/Common/LinuxKernel.vala:735 +#: src/Common/LinuxKernel.vala:737 msgid "Invalid" msgstr "" -#: src/Common/LinuxKernel.vala:809 +#: src/Common/LinuxKernel.vala:811 msgid "Packages Available" msgstr "" -#: src/Common/LinuxKernel.vala:815 +#: src/Common/LinuxKernel.vala:817 msgid "Packages Installed" msgstr "" -#: src/Common/LinuxKernel.vala:837 src/lib/TeeJee.FileSystem.vala:118 +#: src/Common/LinuxKernel.vala:839 src/lib/TeeJee.FileSystem.vala:118 msgid "File not found" msgstr "" -#: src/Common/LinuxKernel.vala:908 +#: src/Common/LinuxKernel.vala:910 msgid "Available Kernels" msgstr "" -#: src/Common/LinuxKernel.vala:945 +#: src/Common/LinuxKernel.vala:947 msgid "enabled" msgstr "" -#: src/Common/LinuxKernel.vala:969 +#: src/Common/LinuxKernel.vala:971 msgid "Downloading" msgstr "" -#: src/Common/LinuxKernel.vala:990 +#: src/Common/LinuxKernel.vala:992 msgid "is already installed." msgstr "" -#: src/Common/LinuxKernel.vala:1020 +#: src/Common/LinuxKernel.vala:1022 msgid "Uninstalling selected kernels" msgstr "" -#: src/Common/LinuxKernel.vala:1026 +#: src/Common/LinuxKernel.vala:1028 msgid "requested" msgstr "" -#: src/Common/LinuxKernel.vala:1029 +#: src/Common/LinuxKernel.vala:1031 msgid "not uninstalling the currently running kernel" msgstr "" -#: src/Common/LinuxKernel.vala:1045 +#: src/Common/LinuxKernel.vala:1047 msgid "found" msgstr "" -#: src/Common/LinuxKernel.vala:1048 +#: src/Common/LinuxKernel.vala:1050 msgid "No packages to un-install!" msgstr "" -#: src/Common/LinuxKernel.vala:1096 +#: src/Common/LinuxKernel.vala:1098 msgid "Could not find running kernel in list" msgstr "" -#: src/Common/LinuxKernel.vala:1101 +#: src/Common/LinuxKernel.vala:1103 msgid "Could not find any kernels to uninstall" msgstr "" -#: src/Common/LinuxKernel.vala:1109 +#: src/Common/LinuxKernel.vala:1111 msgid "The following kernels will be uninstalled" msgstr "" -#: src/Common/LinuxKernel.vala:1113 +#: src/Common/LinuxKernel.vala:1115 msgid "Continue ?" msgstr "" -#: src/Common/LinuxKernel.vala:1135 src/Console/AppConsole.vala:292 +#: src/Common/LinuxKernel.vala:1137 src/Console/AppConsole.vala:292 msgid "Latest update" msgstr "" -#: src/Common/LinuxKernel.vala:1146 src/Console/AppConsole.vala:299 +#: src/Common/LinuxKernel.vala:1148 src/Console/AppConsole.vala:299 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:1154 src/Console/AppConsole.vala:304 +#: src/Common/LinuxKernel.vala:1156 src/Console/AppConsole.vala:304 #: src/Console/AppConsole.vala:320 msgid "No updates found" msgstr "" -#: src/Common/LinuxKernel.vala:1163 +#: src/Common/LinuxKernel.vala:1165 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "" -#: src/Common/Main.vala:379 +#: src/Common/Main.vala:380 msgid "Called from" msgstr "" -#: src/Common/Main.vala:379 +#: src/Common/Main.vala:380 msgid "at logon" msgstr "" -#: src/Common/Main.vala:380 +#: src/Common/Main.vala:381 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" -#: src/Common/Main.vala:412 +#: src/Common/Main.vala:413 msgid "Notifications are disabled" msgstr "" diff --git a/po/nl.po b/po/nl.po index 1719dbd3..cb9a5381 100644 --- a/po/nl.po +++ b/po/nl.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-04-12 18:25-0400\n" +"POT-Creation-Date: 2023-04-15 12:22-0400\n" "PO-Revision-Date: 2020-08-23 13:55+0200\n" "Last-Translator: Heimen Stoffels \n" "Language-Team: Dutch (Netherlands)\n" @@ -57,117 +57,117 @@ msgstr "MISLUKT" msgid "Found installed" msgstr "Geïnstalleerd gevonden" -#: src/Common/LinuxKernel.vala:733 src/Gtk/MainWindow.vala:522 +#: src/Common/LinuxKernel.vala:735 src/Gtk/MainWindow.vala:522 #: src/Gtk/MainWindow.vala:535 msgid "Running" msgstr "In gebruik" -#: src/Common/LinuxKernel.vala:734 +#: src/Common/LinuxKernel.vala:736 msgid "Installed" msgstr "Geïnstalleerd" -#: src/Common/LinuxKernel.vala:735 +#: src/Common/LinuxKernel.vala:737 msgid "Invalid" msgstr "Ongeldig" -#: src/Common/LinuxKernel.vala:809 +#: src/Common/LinuxKernel.vala:811 msgid "Packages Available" msgstr "Beschikbare pakketten" -#: src/Common/LinuxKernel.vala:815 +#: src/Common/LinuxKernel.vala:817 msgid "Packages Installed" msgstr "Geïnstalleerde pakketten" -#: src/Common/LinuxKernel.vala:837 src/lib/TeeJee.FileSystem.vala:118 +#: src/Common/LinuxKernel.vala:839 src/lib/TeeJee.FileSystem.vala:118 msgid "File not found" msgstr "Het bestand is niet gevonden" -#: src/Common/LinuxKernel.vala:908 +#: src/Common/LinuxKernel.vala:910 msgid "Available Kernels" msgstr "Beschikbare kernels" -#: src/Common/LinuxKernel.vala:945 +#: src/Common/LinuxKernel.vala:947 msgid "enabled" msgstr "ingeschakeld" -#: src/Common/LinuxKernel.vala:969 +#: src/Common/LinuxKernel.vala:971 msgid "Downloading" msgstr "Downloaden" -#: src/Common/LinuxKernel.vala:990 +#: src/Common/LinuxKernel.vala:992 msgid "is already installed." msgstr "is al geïnstalleerd." -#: src/Common/LinuxKernel.vala:1020 +#: src/Common/LinuxKernel.vala:1022 msgid "Uninstalling selected kernels" msgstr "Geselecteerde kernels verwijderen" -#: src/Common/LinuxKernel.vala:1026 +#: src/Common/LinuxKernel.vala:1028 msgid "requested" msgstr "verzocht" -#: src/Common/LinuxKernel.vala:1029 +#: src/Common/LinuxKernel.vala:1031 msgid "not uninstalling the currently running kernel" msgstr "de momenteel actieve kernel niet verwijderen" -#: src/Common/LinuxKernel.vala:1045 +#: src/Common/LinuxKernel.vala:1047 msgid "found" msgstr "gevonden" -#: src/Common/LinuxKernel.vala:1048 +#: src/Common/LinuxKernel.vala:1050 msgid "No packages to un-install!" msgstr "Geen pakketten om te verwijderen!" -#: src/Common/LinuxKernel.vala:1096 +#: src/Common/LinuxKernel.vala:1098 msgid "Could not find running kernel in list" msgstr "De in gebruik zijnde kernel staat niet op de lijst" -#: src/Common/LinuxKernel.vala:1101 +#: src/Common/LinuxKernel.vala:1103 msgid "Could not find any kernels to uninstall" msgstr "Er zijn geen te verwijderen kernels" -#: src/Common/LinuxKernel.vala:1109 +#: src/Common/LinuxKernel.vala:1111 msgid "The following kernels will be uninstalled" msgstr "De volgende kernels worden verwijderd" -#: src/Common/LinuxKernel.vala:1113 +#: src/Common/LinuxKernel.vala:1115 msgid "Continue ?" msgstr "Wilt u doorgaan?" -#: src/Common/LinuxKernel.vala:1135 src/Console/AppConsole.vala:292 +#: src/Common/LinuxKernel.vala:1137 src/Console/AppConsole.vala:292 msgid "Latest update" msgstr "Recentste update" -#: src/Common/LinuxKernel.vala:1146 src/Console/AppConsole.vala:299 +#: src/Common/LinuxKernel.vala:1148 src/Console/AppConsole.vala:299 msgid "Latest point update" msgstr "Recentste puntupdate" -#: src/Common/LinuxKernel.vala:1154 src/Console/AppConsole.vala:304 +#: src/Common/LinuxKernel.vala:1156 src/Console/AppConsole.vala:304 #: src/Console/AppConsole.vala:320 msgid "No updates found" msgstr "Geen updates gevonden" -#: src/Common/LinuxKernel.vala:1163 +#: src/Common/LinuxKernel.vala:1165 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Wilt u versie %s installeren? (j/n): " -#: src/Common/Main.vala:379 +#: src/Common/Main.vala:380 msgid "Called from" msgstr "Aangeroepen door" -#: src/Common/Main.vala:379 +#: src/Common/Main.vala:380 msgid "at logon" msgstr "bij het opstarten" -#: src/Common/Main.vala:380 +#: src/Common/Main.vala:381 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" "Dit bestand wordt overschreven en opnieuw uitgevoerd wanneer instellingen " "worden opgeslagen in" -#: src/Common/Main.vala:412 +#: src/Common/Main.vala:413 msgid "Notifications are disabled" msgstr "Meldingen zijn uitgeschakeld" diff --git a/po/pl.po b/po/pl.po index d8e30805..cf061c39 100644 --- a/po/pl.po +++ b/po/pl.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-04-12 18:33-0400\n" +"POT-Creation-Date: 2023-04-15 12:22-0400\n" "PO-Revision-Date: 2023-04-13 07:43+0200\n" "Last-Translator: Matthaiks\n" "Language-Team: Polish\n" @@ -56,117 +56,117 @@ msgstr "NIEPOWODZENIE" msgid "Found installed" msgstr "Znaleziono zainstalowane" -#: src/Common/LinuxKernel.vala:733 src/Gtk/MainWindow.vala:522 +#: src/Common/LinuxKernel.vala:735 src/Gtk/MainWindow.vala:522 #: src/Gtk/MainWindow.vala:535 msgid "Running" msgstr "Uruchomione" -#: src/Common/LinuxKernel.vala:734 +#: src/Common/LinuxKernel.vala:736 msgid "Installed" msgstr "Zainstalowane" -#: src/Common/LinuxKernel.vala:735 +#: src/Common/LinuxKernel.vala:737 msgid "Invalid" msgstr "Nieprawidłowe" -#: src/Common/LinuxKernel.vala:809 +#: src/Common/LinuxKernel.vala:811 msgid "Packages Available" msgstr "Dostępne pakiety" -#: src/Common/LinuxKernel.vala:815 +#: src/Common/LinuxKernel.vala:817 msgid "Packages Installed" msgstr "Pakiety zainstalowane" -#: src/Common/LinuxKernel.vala:837 src/lib/TeeJee.FileSystem.vala:118 +#: src/Common/LinuxKernel.vala:839 src/lib/TeeJee.FileSystem.vala:118 msgid "File not found" msgstr "Nie odnaleziono pliku" -#: src/Common/LinuxKernel.vala:908 +#: src/Common/LinuxKernel.vala:910 msgid "Available Kernels" msgstr "Dostępne jądra" -#: src/Common/LinuxKernel.vala:945 +#: src/Common/LinuxKernel.vala:947 msgid "enabled" msgstr "włączone" -#: src/Common/LinuxKernel.vala:969 +#: src/Common/LinuxKernel.vala:971 msgid "Downloading" msgstr "Pobieranie" -#: src/Common/LinuxKernel.vala:990 +#: src/Common/LinuxKernel.vala:992 msgid "is already installed." msgstr "jest już zainstalowane." -#: src/Common/LinuxKernel.vala:1020 +#: src/Common/LinuxKernel.vala:1022 msgid "Uninstalling selected kernels" msgstr "Odinstalowanie wybranych jąder" -#: src/Common/LinuxKernel.vala:1026 +#: src/Common/LinuxKernel.vala:1028 msgid "requested" msgstr "zażądane" -#: src/Common/LinuxKernel.vala:1029 +#: src/Common/LinuxKernel.vala:1031 msgid "not uninstalling the currently running kernel" msgstr "bez odinstalowywania aktualnie uruchomionego jądra" -#: src/Common/LinuxKernel.vala:1045 +#: src/Common/LinuxKernel.vala:1047 msgid "found" msgstr "znalezione" -#: src/Common/LinuxKernel.vala:1048 +#: src/Common/LinuxKernel.vala:1050 msgid "No packages to un-install!" msgstr "Brak pakietów do odinstalowania!" -#: src/Common/LinuxKernel.vala:1096 +#: src/Common/LinuxKernel.vala:1098 msgid "Could not find running kernel in list" msgstr "Nie można znaleźć uruchomionego jądra na liście" -#: src/Common/LinuxKernel.vala:1101 +#: src/Common/LinuxKernel.vala:1103 msgid "Could not find any kernels to uninstall" msgstr "Nie można znaleźć żadnych jąder do odinstalowania" -#: src/Common/LinuxKernel.vala:1109 +#: src/Common/LinuxKernel.vala:1111 msgid "The following kernels will be uninstalled" msgstr "Następujące jądra zostaną odinstalowane" -#: src/Common/LinuxKernel.vala:1113 +#: src/Common/LinuxKernel.vala:1115 msgid "Continue ?" msgstr "Kontynuować?" -#: src/Common/LinuxKernel.vala:1135 src/Console/AppConsole.vala:292 +#: src/Common/LinuxKernel.vala:1137 src/Console/AppConsole.vala:292 msgid "Latest update" msgstr "Najnowsza aktualizacja" -#: src/Common/LinuxKernel.vala:1146 src/Console/AppConsole.vala:299 +#: src/Common/LinuxKernel.vala:1148 src/Console/AppConsole.vala:299 msgid "Latest point update" msgstr "Najnowsza aktualizacja punktowa" -#: src/Common/LinuxKernel.vala:1154 src/Console/AppConsole.vala:304 +#: src/Common/LinuxKernel.vala:1156 src/Console/AppConsole.vala:304 #: src/Console/AppConsole.vala:320 msgid "No updates found" msgstr "Nie znaleziono aktualizacji" -#: src/Common/LinuxKernel.vala:1163 +#: src/Common/LinuxKernel.vala:1165 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Zainstalować wersję jądra %s? (t/n): " -#: src/Common/Main.vala:379 +#: src/Common/Main.vala:380 msgid "Called from" msgstr "Wywołano z" -#: src/Common/Main.vala:379 +#: src/Common/Main.vala:380 msgid "at logon" msgstr "przy logowaniu" -#: src/Common/Main.vala:380 +#: src/Common/Main.vala:381 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" "Ten plik jest nadpisywany i wykonywany ponownie za każdym razem, gdy " "ustawienia są zapisywane w" -#: src/Common/Main.vala:412 +#: src/Common/Main.vala:413 msgid "Notifications are disabled" msgstr "Powiadomienia są wyłączone" diff --git a/po/ru.po b/po/ru.po index 88c64b61..ac5f7d68 100644 --- a/po/ru.po +++ b/po/ru.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-04-12 18:25-0400\n" +"POT-Creation-Date: 2023-04-15 12:22-0400\n" "PO-Revision-Date: 2023-04-02 17:50+0300\n" "Last-Translator: Danik2343 \n" "Language-Team: Russian\n" @@ -57,116 +57,116 @@ msgstr "НЕУДАВШИЙСЯ" msgid "Found installed" msgstr "Найдено установлененное" -#: src/Common/LinuxKernel.vala:733 src/Gtk/MainWindow.vala:522 +#: src/Common/LinuxKernel.vala:735 src/Gtk/MainWindow.vala:522 #: src/Gtk/MainWindow.vala:535 msgid "Running" msgstr "Используется" -#: src/Common/LinuxKernel.vala:734 +#: src/Common/LinuxKernel.vala:736 msgid "Installed" msgstr "Установлено" -#: src/Common/LinuxKernel.vala:735 +#: src/Common/LinuxKernel.vala:737 msgid "Invalid" msgstr "Негодный" -#: src/Common/LinuxKernel.vala:809 +#: src/Common/LinuxKernel.vala:811 msgid "Packages Available" msgstr "Доступные пакеты" -#: src/Common/LinuxKernel.vala:815 +#: src/Common/LinuxKernel.vala:817 msgid "Packages Installed" msgstr "Установленные пакеты" -#: src/Common/LinuxKernel.vala:837 src/lib/TeeJee.FileSystem.vala:118 +#: src/Common/LinuxKernel.vala:839 src/lib/TeeJee.FileSystem.vala:118 msgid "File not found" msgstr "Файл не найден" -#: src/Common/LinuxKernel.vala:908 +#: src/Common/LinuxKernel.vala:910 msgid "Available Kernels" msgstr "Доступные ядра" -#: src/Common/LinuxKernel.vala:945 +#: src/Common/LinuxKernel.vala:947 msgid "enabled" msgstr "включено" -#: src/Common/LinuxKernel.vala:969 +#: src/Common/LinuxKernel.vala:971 msgid "Downloading" msgstr "Загрузки" -#: src/Common/LinuxKernel.vala:990 +#: src/Common/LinuxKernel.vala:992 msgid "is already installed." msgstr "уже установлен." -#: src/Common/LinuxKernel.vala:1020 +#: src/Common/LinuxKernel.vala:1022 msgid "Uninstalling selected kernels" msgstr "Удаление выбранных ядер" -#: src/Common/LinuxKernel.vala:1026 +#: src/Common/LinuxKernel.vala:1028 msgid "requested" msgstr "запрошено" -#: src/Common/LinuxKernel.vala:1029 +#: src/Common/LinuxKernel.vala:1031 msgid "not uninstalling the currently running kernel" msgstr "не удаляет текущее работающее ядро" -#: src/Common/LinuxKernel.vala:1045 +#: src/Common/LinuxKernel.vala:1047 msgid "found" msgstr "найдено" -#: src/Common/LinuxKernel.vala:1048 +#: src/Common/LinuxKernel.vala:1050 msgid "No packages to un-install!" msgstr "Нет пакетов для удаления!" -#: src/Common/LinuxKernel.vala:1096 +#: src/Common/LinuxKernel.vala:1098 msgid "Could not find running kernel in list" msgstr "Could not find running kernel in list" -#: src/Common/LinuxKernel.vala:1101 +#: src/Common/LinuxKernel.vala:1103 msgid "Could not find any kernels to uninstall" msgstr "Не удалось найти ядра для деинсталляции" -#: src/Common/LinuxKernel.vala:1109 +#: src/Common/LinuxKernel.vala:1111 msgid "The following kernels will be uninstalled" msgstr "Следующие ядра будут удалены" -#: src/Common/LinuxKernel.vala:1113 +#: src/Common/LinuxKernel.vala:1115 msgid "Continue ?" msgstr "Продолжить ?" -#: src/Common/LinuxKernel.vala:1135 src/Console/AppConsole.vala:292 +#: src/Common/LinuxKernel.vala:1137 src/Console/AppConsole.vala:292 msgid "Latest update" msgstr "Последнее обновление" -#: src/Common/LinuxKernel.vala:1146 src/Console/AppConsole.vala:299 +#: src/Common/LinuxKernel.vala:1148 src/Console/AppConsole.vala:299 msgid "Latest point update" msgstr "Последнее обновление пунктов" -#: src/Common/LinuxKernel.vala:1154 src/Console/AppConsole.vala:304 +#: src/Common/LinuxKernel.vala:1156 src/Console/AppConsole.vala:304 #: src/Console/AppConsole.vala:320 msgid "No updates found" msgstr "Обновлений не найдено" -#: src/Common/LinuxKernel.vala:1163 +#: src/Common/LinuxKernel.vala:1165 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Установить версию ядра %s ? (y/n): " -#: src/Common/Main.vala:379 +#: src/Common/Main.vala:380 msgid "Called from" msgstr "Вызван из" -#: src/Common/Main.vala:379 +#: src/Common/Main.vala:380 msgid "at logon" msgstr "при запуске" -#: src/Common/Main.vala:380 +#: src/Common/Main.vala:381 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" "Этот файл перезаписывается и выполняется снова при сохранении настроек в" -#: src/Common/Main.vala:412 +#: src/Common/Main.vala:413 msgid "Notifications are disabled" msgstr "Уведомления отключены" diff --git a/po/sv.po b/po/sv.po index d1cb7e59..3d16a692 100644 --- a/po/sv.po +++ b/po/sv.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-04-12 18:25-0400\n" +"POT-Creation-Date: 2023-04-15 12:22-0400\n" "PO-Revision-Date: 2018-01-13 16:56+0100\n" "Last-Translator: Åke Engelbrektson \n" "Language-Team:Swedish\n" @@ -57,115 +57,115 @@ msgstr "MISSLYCKADES" msgid "Found installed" msgstr "Hittade installerat" -#: src/Common/LinuxKernel.vala:733 src/Gtk/MainWindow.vala:522 +#: src/Common/LinuxKernel.vala:735 src/Gtk/MainWindow.vala:522 #: src/Gtk/MainWindow.vala:535 msgid "Running" msgstr "Körs" -#: src/Common/LinuxKernel.vala:734 +#: src/Common/LinuxKernel.vala:736 msgid "Installed" msgstr "Installerad" -#: src/Common/LinuxKernel.vala:735 +#: src/Common/LinuxKernel.vala:737 msgid "Invalid" msgstr "Ogiltig" -#: src/Common/LinuxKernel.vala:809 +#: src/Common/LinuxKernel.vala:811 msgid "Packages Available" msgstr "Tillgängliga paket" -#: src/Common/LinuxKernel.vala:815 +#: src/Common/LinuxKernel.vala:817 msgid "Packages Installed" msgstr "Installerade paket" -#: src/Common/LinuxKernel.vala:837 src/lib/TeeJee.FileSystem.vala:118 +#: src/Common/LinuxKernel.vala:839 src/lib/TeeJee.FileSystem.vala:118 msgid "File not found" msgstr "Filen kan inte hittas" -#: src/Common/LinuxKernel.vala:908 +#: src/Common/LinuxKernel.vala:910 msgid "Available Kernels" msgstr "Tillgängliga kärnor" -#: src/Common/LinuxKernel.vala:945 +#: src/Common/LinuxKernel.vala:947 msgid "enabled" msgstr "aktiverat" -#: src/Common/LinuxKernel.vala:969 +#: src/Common/LinuxKernel.vala:971 msgid "Downloading" msgstr "Ladda ner" -#: src/Common/LinuxKernel.vala:990 +#: src/Common/LinuxKernel.vala:992 msgid "is already installed." msgstr "är redan installerat." -#: src/Common/LinuxKernel.vala:1020 +#: src/Common/LinuxKernel.vala:1022 msgid "Uninstalling selected kernels" msgstr "Avinstallera valda kärnor" -#: src/Common/LinuxKernel.vala:1026 +#: src/Common/LinuxKernel.vala:1028 msgid "requested" msgstr "begärd" -#: src/Common/LinuxKernel.vala:1029 +#: src/Common/LinuxKernel.vala:1031 msgid "not uninstalling the currently running kernel" msgstr "Avinstallera inte den kärna som körs, för närvarande" -#: src/Common/LinuxKernel.vala:1045 +#: src/Common/LinuxKernel.vala:1047 msgid "found" msgstr "grunda" -#: src/Common/LinuxKernel.vala:1048 +#: src/Common/LinuxKernel.vala:1050 msgid "No packages to un-install!" msgstr "Inga paket att avinstallera!" -#: src/Common/LinuxKernel.vala:1096 +#: src/Common/LinuxKernel.vala:1098 msgid "Could not find running kernel in list" msgstr "Det gick inte att hitta kernel som körs i listan" -#: src/Common/LinuxKernel.vala:1101 +#: src/Common/LinuxKernel.vala:1103 msgid "Could not find any kernels to uninstall" msgstr "Det gick inte att hitta några kärnor att avinstallera" -#: src/Common/LinuxKernel.vala:1109 +#: src/Common/LinuxKernel.vala:1111 msgid "The following kernels will be uninstalled" msgstr "Följande kärnor kommer att avinstalleras" -#: src/Common/LinuxKernel.vala:1113 +#: src/Common/LinuxKernel.vala:1115 msgid "Continue ?" msgstr "Fortsätta?" -#: src/Common/LinuxKernel.vala:1135 src/Console/AppConsole.vala:292 +#: src/Common/LinuxKernel.vala:1137 src/Console/AppConsole.vala:292 msgid "Latest update" msgstr "Senaste uppdatering" -#: src/Common/LinuxKernel.vala:1146 src/Console/AppConsole.vala:299 +#: src/Common/LinuxKernel.vala:1148 src/Console/AppConsole.vala:299 msgid "Latest point update" msgstr "Senaste punktuppdatering" -#: src/Common/LinuxKernel.vala:1154 src/Console/AppConsole.vala:304 +#: src/Common/LinuxKernel.vala:1156 src/Console/AppConsole.vala:304 #: src/Console/AppConsole.vala:320 msgid "No updates found" msgstr "Inga uppdateringar hittades" -#: src/Common/LinuxKernel.vala:1163 +#: src/Common/LinuxKernel.vala:1165 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Installera kärnversion %s ? (j/n):" -#: src/Common/Main.vala:379 +#: src/Common/Main.vala:380 msgid "Called from" msgstr "Ringde från" -#: src/Common/Main.vala:379 +#: src/Common/Main.vala:380 msgid "at logon" msgstr "vid start" -#: src/Common/Main.vala:380 +#: src/Common/Main.vala:381 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "Den här filen skrivs över och körs igen när inställningar sparas i" -#: src/Common/Main.vala:412 +#: src/Common/Main.vala:413 msgid "Notifications are disabled" msgstr "Meddelanden är inaktiverade" diff --git a/po/tr.po b/po/tr.po index 14fee2fc..77d431eb 100644 --- a/po/tr.po +++ b/po/tr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-04-12 18:25-0400\n" +"POT-Creation-Date: 2023-04-15 12:22-0400\n" "PO-Revision-Date: 2022-08-06 16:48+0300\n" "Last-Translator: Sabri Ünal \n" "Language-Team: Turkish\n" @@ -57,117 +57,117 @@ msgstr "BAŞARISIZ" msgid "Found installed" msgstr "Yüklü bulundu" -#: src/Common/LinuxKernel.vala:733 src/Gtk/MainWindow.vala:522 +#: src/Common/LinuxKernel.vala:735 src/Gtk/MainWindow.vala:522 #: src/Gtk/MainWindow.vala:535 msgid "Running" msgstr "Çalışıyor" -#: src/Common/LinuxKernel.vala:734 +#: src/Common/LinuxKernel.vala:736 msgid "Installed" msgstr "Kurulu" -#: src/Common/LinuxKernel.vala:735 +#: src/Common/LinuxKernel.vala:737 msgid "Invalid" msgstr "Geçersiz" -#: src/Common/LinuxKernel.vala:809 +#: src/Common/LinuxKernel.vala:811 msgid "Packages Available" msgstr "Mevcut Paketler" -#: src/Common/LinuxKernel.vala:815 +#: src/Common/LinuxKernel.vala:817 msgid "Packages Installed" msgstr "Kurulu Paketler" -#: src/Common/LinuxKernel.vala:837 src/lib/TeeJee.FileSystem.vala:118 +#: src/Common/LinuxKernel.vala:839 src/lib/TeeJee.FileSystem.vala:118 msgid "File not found" msgstr "Dosya bulunamadı" -#: src/Common/LinuxKernel.vala:908 +#: src/Common/LinuxKernel.vala:910 msgid "Available Kernels" msgstr "Mevcut Çekirdekler" -#: src/Common/LinuxKernel.vala:945 +#: src/Common/LinuxKernel.vala:947 msgid "enabled" msgstr "etkin" -#: src/Common/LinuxKernel.vala:969 +#: src/Common/LinuxKernel.vala:971 msgid "Downloading" msgstr "Indiriyor" -#: src/Common/LinuxKernel.vala:990 +#: src/Common/LinuxKernel.vala:992 msgid "is already installed." msgstr "zaten yüklü." -#: src/Common/LinuxKernel.vala:1020 +#: src/Common/LinuxKernel.vala:1022 msgid "Uninstalling selected kernels" msgstr "Seçili çekirdekleri kaldırma" -#: src/Common/LinuxKernel.vala:1026 +#: src/Common/LinuxKernel.vala:1028 msgid "requested" msgstr "istenen" -#: src/Common/LinuxKernel.vala:1029 +#: src/Common/LinuxKernel.vala:1031 msgid "not uninstalling the currently running kernel" msgstr "çalışmakta olan çekirdeğin kaldırılmaması" -#: src/Common/LinuxKernel.vala:1045 +#: src/Common/LinuxKernel.vala:1047 msgid "found" msgstr "kurmak" -#: src/Common/LinuxKernel.vala:1048 +#: src/Common/LinuxKernel.vala:1050 msgid "No packages to un-install!" msgstr "Kaldırılacak paket yok!" -#: src/Common/LinuxKernel.vala:1096 +#: src/Common/LinuxKernel.vala:1098 msgid "Could not find running kernel in list" msgstr "Listede çalışan çekirdek bulunamadı" -#: src/Common/LinuxKernel.vala:1101 +#: src/Common/LinuxKernel.vala:1103 msgid "Could not find any kernels to uninstall" msgstr "Kaldırılacak çekirdek bulunamadı" -#: src/Common/LinuxKernel.vala:1109 +#: src/Common/LinuxKernel.vala:1111 msgid "The following kernels will be uninstalled" msgstr "Aşağıdaki çekirdekler kaldırılacaktır" -#: src/Common/LinuxKernel.vala:1113 +#: src/Common/LinuxKernel.vala:1115 msgid "Continue ?" msgstr "Devam edilsin mi?" -#: src/Common/LinuxKernel.vala:1135 src/Console/AppConsole.vala:292 +#: src/Common/LinuxKernel.vala:1137 src/Console/AppConsole.vala:292 msgid "Latest update" msgstr "Son güncelleme" # Point burada point release anlamında kullanılıyor. Örneğin 5.10.x sayısının en sonundaki x rakamı point release/nokta sürüm oluyor. -#: src/Common/LinuxKernel.vala:1146 src/Console/AppConsole.vala:299 +#: src/Common/LinuxKernel.vala:1148 src/Console/AppConsole.vala:299 msgid "Latest point update" msgstr "Son nokta güncellemesi" -#: src/Common/LinuxKernel.vala:1154 src/Console/AppConsole.vala:304 +#: src/Common/LinuxKernel.vala:1156 src/Console/AppConsole.vala:304 #: src/Console/AppConsole.vala:320 msgid "No updates found" msgstr "Güncelleme bulunamadı" -#: src/Common/LinuxKernel.vala:1163 +#: src/Common/LinuxKernel.vala:1165 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Linux Çekirdek Sürümü %s Kurulsun mu? (e/h): " -#: src/Common/Main.vala:379 +#: src/Common/Main.vala:380 msgid "Called from" msgstr "Çağrı konumu" -#: src/Common/Main.vala:379 +#: src/Common/Main.vala:380 msgid "at logon" msgstr "başlangıçta" -#: src/Common/Main.vala:380 +#: src/Common/Main.vala:381 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" "Bu dosyanın üzerine yazılır ve ayarlar her kaydedildiğinde yeniden yürütülür" -#: src/Common/Main.vala:412 +#: src/Common/Main.vala:413 msgid "Notifications are disabled" msgstr "Bildirimler devre dışı bırakılmış" diff --git a/po/uk.po b/po/uk.po index 49007cdc..f0f77d23 100644 --- a/po/uk.po +++ b/po/uk.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-04-12 18:25-0400\n" +"POT-Creation-Date: 2023-04-15 12:22-0400\n" "PO-Revision-Date: 2019-07-25 11:00+0300\n" "Last-Translator: Serhii Golovko \n" "Language-Team: Ukranian\n" @@ -57,116 +57,116 @@ msgstr "НЕ ВДАЛОСЯ" msgid "Found installed" msgstr "Знайдено встановленим" -#: src/Common/LinuxKernel.vala:733 src/Gtk/MainWindow.vala:522 +#: src/Common/LinuxKernel.vala:735 src/Gtk/MainWindow.vala:522 #: src/Gtk/MainWindow.vala:535 msgid "Running" msgstr "Використовується" -#: src/Common/LinuxKernel.vala:734 +#: src/Common/LinuxKernel.vala:736 msgid "Installed" msgstr "Встановлено" -#: src/Common/LinuxKernel.vala:735 +#: src/Common/LinuxKernel.vala:737 msgid "Invalid" msgstr "Інвалід" -#: src/Common/LinuxKernel.vala:809 +#: src/Common/LinuxKernel.vala:811 msgid "Packages Available" msgstr "Доступні пакети" -#: src/Common/LinuxKernel.vala:815 +#: src/Common/LinuxKernel.vala:817 msgid "Packages Installed" msgstr "Встановлені пакети" -#: src/Common/LinuxKernel.vala:837 src/lib/TeeJee.FileSystem.vala:118 +#: src/Common/LinuxKernel.vala:839 src/lib/TeeJee.FileSystem.vala:118 msgid "File not found" msgstr "Файл не знайдено" -#: src/Common/LinuxKernel.vala:908 +#: src/Common/LinuxKernel.vala:910 msgid "Available Kernels" msgstr "Доступні ядра" -#: src/Common/LinuxKernel.vala:945 +#: src/Common/LinuxKernel.vala:947 msgid "enabled" msgstr "увімкнено" -#: src/Common/LinuxKernel.vala:969 +#: src/Common/LinuxKernel.vala:971 msgid "Downloading" msgstr "Завантаження" -#: src/Common/LinuxKernel.vala:990 +#: src/Common/LinuxKernel.vala:992 msgid "is already installed." msgstr "вже встановлено." -#: src/Common/LinuxKernel.vala:1020 +#: src/Common/LinuxKernel.vala:1022 msgid "Uninstalling selected kernels" msgstr "Видаліть конкретні ядра" -#: src/Common/LinuxKernel.vala:1026 +#: src/Common/LinuxKernel.vala:1028 msgid "requested" msgstr "запитуваний" -#: src/Common/LinuxKernel.vala:1029 +#: src/Common/LinuxKernel.vala:1031 msgid "not uninstalling the currently running kernel" msgstr "не видалятиме поточне запущене ядро" -#: src/Common/LinuxKernel.vala:1045 +#: src/Common/LinuxKernel.vala:1047 msgid "found" msgstr "знайдено" -#: src/Common/LinuxKernel.vala:1048 +#: src/Common/LinuxKernel.vala:1050 msgid "No packages to un-install!" msgstr "Немає пакетів для видалення!" -#: src/Common/LinuxKernel.vala:1096 +#: src/Common/LinuxKernel.vala:1098 msgid "Could not find running kernel in list" msgstr "Не вдалося знайти запущене ядро у списку!" -#: src/Common/LinuxKernel.vala:1101 +#: src/Common/LinuxKernel.vala:1103 msgid "Could not find any kernels to uninstall" msgstr "Не вдалося знайти жодне ядро для вилучення" -#: src/Common/LinuxKernel.vala:1109 +#: src/Common/LinuxKernel.vala:1111 msgid "The following kernels will be uninstalled" msgstr "Наступні ядра будуть видалені" -#: src/Common/LinuxKernel.vala:1113 +#: src/Common/LinuxKernel.vala:1115 msgid "Continue ?" msgstr "Продовжувати ?" -#: src/Common/LinuxKernel.vala:1135 src/Console/AppConsole.vala:292 +#: src/Common/LinuxKernel.vala:1137 src/Console/AppConsole.vala:292 msgid "Latest update" msgstr "Останнє оновлення" -#: src/Common/LinuxKernel.vala:1146 src/Console/AppConsole.vala:299 +#: src/Common/LinuxKernel.vala:1148 src/Console/AppConsole.vala:299 msgid "Latest point update" msgstr "Остання точка оновлення" -#: src/Common/LinuxKernel.vala:1154 src/Console/AppConsole.vala:304 +#: src/Common/LinuxKernel.vala:1156 src/Console/AppConsole.vala:304 #: src/Console/AppConsole.vala:320 msgid "No updates found" msgstr "Оновлень не знайдено" -#: src/Common/LinuxKernel.vala:1163 +#: src/Common/LinuxKernel.vala:1165 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Встановити Ядро Версії %s ? (так/ні): " -#: src/Common/Main.vala:379 +#: src/Common/Main.vala:380 msgid "Called from" msgstr "Викликано з" -#: src/Common/Main.vala:379 +#: src/Common/Main.vala:380 msgid "at logon" msgstr "при запуску" -#: src/Common/Main.vala:380 +#: src/Common/Main.vala:381 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" "Цей файл перезаписується та виконується знову під час збереження налаштувань" -#: src/Common/Main.vala:412 +#: src/Common/Main.vala:413 msgid "Notifications are disabled" msgstr "Повідомлення вимкнено" diff --git a/src/Common/LinuxKernel.vala b/src/Common/LinuxKernel.vala index 0aa7bf89..255f513c 100644 --- a/src/Common/LinuxKernel.vala +++ b/src/Common/LinuxKernel.vala @@ -694,7 +694,9 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { return 1; } - return (arr_a.length - arr_b.length) * -1; // smaller array is larger version + // the larger array is the lower version, + // because 1.2.3-rcN comes before 1.2.3 + return (arr_a.length - arr_b.length) * -1; } public void set_pkg_list() { diff --git a/src/Common/Main.vala b/src/Common/Main.vala index c35f992c..56118889 100644 --- a/src/Common/Main.vala +++ b/src/Common/Main.vala @@ -29,7 +29,9 @@ using TeeJee.FileSystem; using TeeJee.ProcessHelper; using TeeJee.Misc; using l.misc; -using l.json; // REMOVE when bionic no longer supported +#if ! GLIB_JSON_1_6 +using l.json; +#endif [CCode(cname="BRANDING_SHORTNAME")] extern const string BRANDING_SHORTNAME; [CCode(cname="BRANDING_LONGNAME")] extern const string BRANDING_LONGNAME; @@ -266,8 +268,8 @@ public class Main : GLib.Object { bool resave = false; if (config.get_string_member("hide_unstable")==null) { // new config file format - values stored in native format - // bionic doesn't have get_*_member_with_default() - if (Json.MAJOR_VERSION>=1 && Json.MINOR_VERSION>=6) { +#if GLIB_JSON_1_6 + vprint("glib-json >= 1.6",3); ppa_uri = config.get_string_member_with_default( "ppa_uri", DEFAULT_PPA_URI ); all_proxy = config.get_string_member_with_default( "all_proxy", DEFAULT_ALL_PROXY ); connect_timeout_seconds = (int)config.get_int_member_with_default( "connect_timeout_seconds", DEFAULT_CONNECT_TIMEOUT_SECONDS ); @@ -287,9 +289,8 @@ public class Main : GLib.Object { term_height = (int)config.get_int_member_with_default( "term_height", DEFAULT_TERM_HEIGHT ); //term_x = (int)config.get_int_member_with_default( "term_x", DEFAULT_TERM_X ); //term_y = (int)config.get_int_member_with_default( "term_y", DEFAULT_TERM_Y ); - } else { - // REMOVE when bionic no longer supported - vprint("bionic-compatible json loader",3); +#else + vprint("glib-json < 1.6",3); ppa_uri = json_get_string( config, "ppa_uri", DEFAULT_PPA_URI ); all_proxy = json_get_string( config, "all_proxy", DEFAULT_ALL_PROXY ); connect_timeout_seconds = json_get_int( config, "connect_timeout_seconds", DEFAULT_CONNECT_TIMEOUT_SECONDS ); @@ -307,13 +308,13 @@ public class Main : GLib.Object { window_y = json_get_int( config, "window_y", DEFAULT_WINDOW_Y ); term_width = json_get_int( config, "term_width", DEFAULT_TERM_WIDTH ); term_height = json_get_int( config, "term_height", DEFAULT_TERM_HEIGHT ); - } +#endif } else { // old config file format - all values stored as string vprint("detetcted old config file format",2); resave = true; - // bionic doesn't have get_*_member_with_default() - if (Json.MAJOR_VERSION>=1 && Json.MINOR_VERSION>=6) { +#if GLIB_JSON_1_6 + vprint("glib-json >= 1.6",3); connect_timeout_seconds = int.parse( config.get_string_member_with_default( "connect_timeout_seconds", DEFAULT_CONNECT_TIMEOUT_SECONDS .to_string() ) ); concurrent_downloads = int.parse( config.get_string_member_with_default( "concurrent_downloads", DEFAULT_CONCURRENT_DOWNLOADS .to_string() ) ); hide_unstable = bool.parse( config.get_string_member_with_default( "hide_unstable", DEFAULT_HIDE_UNSTABLE .to_string() ) ); @@ -322,8 +323,8 @@ public class Main : GLib.Object { notify_minor = bool.parse( config.get_string_member_with_default( "notify_minor", DEFAULT_NOTIFY_MINOR .to_string() ) ); notify_interval_unit = int.parse( config.get_string_member_with_default( "notify_interval_unit", DEFAULT_NOTIFY_INTERVAL_UNIT .to_string() ) ); notify_interval_value = int.parse( config.get_string_member_with_default( "notify_interval_value", DEFAULT_NOTIFY_INTERVAL_VALUE .to_string() ) ); - } else { - // REMOVE when bionic no longer supported +#else + vprint("glib-json < 1.6",3); connect_timeout_seconds = int.parse( json_get_string( config, "connect_timeout_seconds", DEFAULT_CONNECT_TIMEOUT_SECONDS .to_string() ) ); concurrent_downloads = int.parse( json_get_string( config, "concurrent_downloads", DEFAULT_CONCURRENT_DOWNLOADS .to_string() ) ); hide_unstable = bool.parse( json_get_string( config, "hide_unstable", DEFAULT_HIDE_UNSTABLE .to_string() ) ); @@ -332,7 +333,7 @@ public class Main : GLib.Object { notify_minor = bool.parse( json_get_string( config, "notify_minor", DEFAULT_NOTIFY_MINOR .to_string() ) ); notify_interval_unit = int.parse( json_get_string( config, "notify_interval_unit", DEFAULT_NOTIFY_INTERVAL_UNIT .to_string() ) ); notify_interval_value = int.parse( json_get_string( config, "notify_interval_value", DEFAULT_NOTIFY_INTERVAL_VALUE .to_string() ) ); - } +#endif } // fixups From 2daf404dd8de87c81b3dab539b889e709a1402d4 Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Sat, 15 Apr 2023 12:45:13 -0400 Subject: [PATCH 315/567] 1.2.5 --- .deb_build_number.mak | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.deb_build_number.mak b/.deb_build_number.mak index a21127ca..c45291ac 100644 --- a/.deb_build_number.mak +++ b/.deb_build_number.mak @@ -1,3 +1,3 @@ # This file is generated by Makefile "make deb_build_number" -DEB_PKG_VERSION := 1.2.4 -DEB_BUILD_NUMBER := 0002 +DEB_PKG_VERSION := 1.2.5 +DEB_BUILD_NUMBER := 0000 From 76de57019d6a7ba06a1d0ec9ef54361b9a40715e Mon Sep 17 00:00:00 2001 From: Danik2343 <38865696+Danik2343@users.noreply.github.com> Date: Mon, 17 Apr 2023 20:19:09 +0300 Subject: [PATCH 316/567] Update Ru Lang --- po/ru.po | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/po/ru.po b/po/ru.po index ac5f7d68..12966489 100644 --- a/po/ru.po +++ b/po/ru.po @@ -3,15 +3,16 @@ msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-04-15 12:22-0400\n" -"PO-Revision-Date: 2023-04-02 17:50+0300\n" -"Last-Translator: Danik2343 \n" +"PO-Revision-Date: 2023-04-17 20:16+0300\n" +"Last-Translator: Faust3000 (Original) | Danik2343 (Update Transaltion) " +"\n" "Language-Team: Russian\n" "Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2016-12-13 11:48+0000\n" -"X-Generator: Poedit 3.1.1\n" +"X-Generator: Poedit 3.0.1\n" #: src/Common/LinuxKernel.vala:102 msgid "Distribution" @@ -383,7 +384,7 @@ msgstr "Удалить" #: src/Gtk/MainWindow.vala:319 msgid "Changelog, build status, etc" -msgstr "" +msgstr "Список изменений, статус сборки и т.д" #: src/Gtk/MainWindow.vala:330 msgid "Uninstall Old" From c3a2b5844b48fad0de196336e6a4f131799432a2 Mon Sep 17 00:00:00 2001 From: "Brian K. White" <54458165+bkw777@users.noreply.github.com> Date: Tue, 18 Apr 2023 10:15:14 -0400 Subject: [PATCH 317/567] Update ru.po single name in last-translator --- po/ru.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/ru.po b/po/ru.po index 12966489..b768245a 100644 --- a/po/ru.po +++ b/po/ru.po @@ -4,8 +4,7 @@ msgstr "" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-04-15 12:22-0400\n" "PO-Revision-Date: 2023-04-17 20:16+0300\n" -"Last-Translator: Faust3000 (Original) | Danik2343 (Update Transaltion) " -"\n" +"Last-Translator: Danik2343 \n" "Language-Team: Russian\n" "Language: ru\n" "MIME-Version: 1.0\n" From 0c7d76ee564297a05a3cb5a73fd830f8288c1cda Mon Sep 17 00:00:00 2001 From: "Brian K. White" <54458165+bkw777@users.noreply.github.com> Date: Tue, 18 Apr 2023 10:18:37 -0400 Subject: [PATCH 318/567] Update ru.po single name in last-translator --- po/ru.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/ru.po b/po/ru.po index 12966489..b768245a 100644 --- a/po/ru.po +++ b/po/ru.po @@ -4,8 +4,7 @@ msgstr "" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-04-15 12:22-0400\n" "PO-Revision-Date: 2023-04-17 20:16+0300\n" -"Last-Translator: Faust3000 (Original) | Danik2343 (Update Transaltion) " -"\n" +"Last-Translator: Danik2343 \n" "Language-Team: Russian\n" "Language: ru\n" "MIME-Version: 1.0\n" From b722d013a6fd3f3115e272d1e8de8c8de1ebd67e Mon Sep 17 00:00:00 2001 From: "Brian K. White" <54458165+bkw777@users.noreply.github.com> Date: Tue, 18 Apr 2023 10:22:17 -0400 Subject: [PATCH 319/567] Update MainWindow.vala fix ru.po translator credit --- src/Gtk/MainWindow.vala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Gtk/MainWindow.vala b/src/Gtk/MainWindow.vala index 6c17f1e9..87da0273 100644 --- a/src/Gtk/MainWindow.vala +++ b/src/Gtk/MainWindow.vala @@ -408,7 +408,7 @@ public class MainWindow : Gtk.Window { "ko: Kevin Kim ", "nl: Heimen Stoffels ", "pl: Matthaiks", - "ru: Danik2343 ", + "ru: Danik2343 ", "sv: Åke Engelbrektson ", "tr: Sabri Ünal ", "uk: Serhii Golovko " From f78d352c711da8e100f4e9405c09c1c684f4e5c7 Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Sat, 20 May 2023 06:40:32 -0400 Subject: [PATCH 320/567] detect out of date cached indexes --- TRANSLATORS | 2 +- po/de.po | 70 ++++++++++++++++++------------------ po/el.po | 70 ++++++++++++++++++------------------ po/es.po | 70 ++++++++++++++++++------------------ po/fr.po | 70 ++++++++++++++++++------------------ po/hr.po | 70 ++++++++++++++++++------------------ po/it.po | 70 ++++++++++++++++++------------------ po/ko.po | 70 ++++++++++++++++++------------------ po/messages.pot | 72 ++++++++++++++++++------------------- po/nl.po | 70 ++++++++++++++++++------------------ po/pl.po | 70 ++++++++++++++++++------------------ po/ru.po | 70 ++++++++++++++++++------------------ po/sv.po | 70 ++++++++++++++++++------------------ po/tr.po | 70 ++++++++++++++++++------------------ po/uk.po | 70 ++++++++++++++++++------------------ src/Common/LinuxKernel.vala | 65 +++++++++++++++++++++++++-------- 16 files changed, 543 insertions(+), 506 deletions(-) diff --git a/TRANSLATORS b/TRANSLATORS index b30d2116..04681eee 100644 --- a/TRANSLATORS +++ b/TRANSLATORS @@ -7,7 +7,7 @@ it: Demetrio Mendozzi ko: Kevin Kim nl: Heimen Stoffels pl: Matthaiks -ru: Danik2343 +ru: Danik2343 sv: Åke Engelbrektson tr: Sabri Ünal uk: Serhii Golovko diff --git a/po/de.po b/po/de.po index 46777bed..ce8dfe2b 100644 --- a/po/de.po +++ b/po/de.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-04-15 12:22-0400\n" +"POT-Creation-Date: 2023-05-20 06:35-0400\n" "PO-Revision-Date: 2023-02-20 18:40+0100\n" "Last-Translator: Marvin Meysel \n" "Language-Team: German\n" @@ -13,141 +13,141 @@ msgstr "" "X-Launchpad-Export-Date: 2017-04-13 11:48+0000\n" "X-Generator: Poedit 3.1.1\n" -#: src/Common/LinuxKernel.vala:102 +#: src/Common/LinuxKernel.vala:103 msgid "Distribution" msgstr "Distribution" -#: src/Common/LinuxKernel.vala:117 +#: src/Common/LinuxKernel.vala:118 msgid "Architecture" msgstr "Architektur" -#: src/Common/LinuxKernel.vala:132 +#: src/Common/LinuxKernel.vala:133 msgid "Running kernel" msgstr "Laufender kernel" -#: src/Common/LinuxKernel.vala:255 +#: src/Common/LinuxKernel.vala:258 msgid "loading cached" msgstr "laden gecached" -#: src/Common/LinuxKernel.vala:269 +#: src/Common/LinuxKernel.vala:270 msgid "queuing download" msgstr "download der warteschlange" -#: src/Common/LinuxKernel.vala:292 +#: src/Common/LinuxKernel.vala:291 msgid "Fetching individual kernel indexes" msgstr "Abrufen einzelner Kernel-Indizes" -#: src/Common/LinuxKernel.vala:308 +#: src/Common/LinuxKernel.vala:307 msgid "loading downloaded" msgstr "laden von heruntergeladenen Dateien" -#: src/Common/LinuxKernel.vala:343 +#: src/Common/LinuxKernel.vala:342 msgid "Updating from" msgstr "Aktualisieren von" -#: src/Common/LinuxKernel.vala:351 +#: src/Common/LinuxKernel.vala:350 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:354 +#: src/Common/LinuxKernel.vala:353 msgid "FAILED" msgstr "MISSLUNGEN" -#: src/Common/LinuxKernel.vala:397 +#: src/Common/LinuxKernel.vala:403 msgid "Found installed" msgstr "Installiert gefunden" -#: src/Common/LinuxKernel.vala:735 src/Gtk/MainWindow.vala:522 +#: src/Common/LinuxKernel.vala:741 src/Gtk/MainWindow.vala:522 #: src/Gtk/MainWindow.vala:535 msgid "Running" msgstr "Läuft" -#: src/Common/LinuxKernel.vala:736 +#: src/Common/LinuxKernel.vala:742 msgid "Installed" msgstr "Installiert" -#: src/Common/LinuxKernel.vala:737 +#: src/Common/LinuxKernel.vala:743 msgid "Invalid" msgstr "Ungültig" -#: src/Common/LinuxKernel.vala:811 +#: src/Common/LinuxKernel.vala:817 msgid "Packages Available" msgstr "Verfügbare Pakete" -#: src/Common/LinuxKernel.vala:817 +#: src/Common/LinuxKernel.vala:823 msgid "Packages Installed" msgstr "Installierte Pakete" -#: src/Common/LinuxKernel.vala:839 src/lib/TeeJee.FileSystem.vala:118 +#: src/Common/LinuxKernel.vala:847 src/lib/TeeJee.FileSystem.vala:118 msgid "File not found" msgstr "Datei nicht gefunden " -#: src/Common/LinuxKernel.vala:910 +#: src/Common/LinuxKernel.vala:947 msgid "Available Kernels" msgstr "Verfügbare Kernel" -#: src/Common/LinuxKernel.vala:947 +#: src/Common/LinuxKernel.vala:984 msgid "enabled" msgstr "ermöglichte" -#: src/Common/LinuxKernel.vala:971 +#: src/Common/LinuxKernel.vala:1008 msgid "Downloading" msgstr "Laden" -#: src/Common/LinuxKernel.vala:992 +#: src/Common/LinuxKernel.vala:1029 msgid "is already installed." msgstr "ist bereits installiert." -#: src/Common/LinuxKernel.vala:1022 +#: src/Common/LinuxKernel.vala:1059 msgid "Uninstalling selected kernels" msgstr "Deinstallation des angegebenen Kernels" -#: src/Common/LinuxKernel.vala:1028 +#: src/Common/LinuxKernel.vala:1065 msgid "requested" msgstr "angefordert" -#: src/Common/LinuxKernel.vala:1031 +#: src/Common/LinuxKernel.vala:1068 msgid "not uninstalling the currently running kernel" msgstr "Den aktuell laufenden Kernel wird nicht deinstalliert" -#: src/Common/LinuxKernel.vala:1047 +#: src/Common/LinuxKernel.vala:1084 msgid "found" msgstr "gründen" -#: src/Common/LinuxKernel.vala:1050 +#: src/Common/LinuxKernel.vala:1087 msgid "No packages to un-install!" msgstr "Keine Pakete zum Deinstallieren!" -#: src/Common/LinuxKernel.vala:1098 +#: src/Common/LinuxKernel.vala:1135 msgid "Could not find running kernel in list" msgstr "Konnte keinen laufenden Kernel in der Liste finden" -#: src/Common/LinuxKernel.vala:1103 +#: src/Common/LinuxKernel.vala:1140 msgid "Could not find any kernels to uninstall" msgstr "Es konnten keine Kernel zum Deinstallieren gefunden werden" -#: src/Common/LinuxKernel.vala:1111 +#: src/Common/LinuxKernel.vala:1148 msgid "The following kernels will be uninstalled" msgstr "Die folgenden Kernel werden deinstalliert" -#: src/Common/LinuxKernel.vala:1115 +#: src/Common/LinuxKernel.vala:1152 msgid "Continue ?" msgstr "Weiter ?" -#: src/Common/LinuxKernel.vala:1137 src/Console/AppConsole.vala:292 +#: src/Common/LinuxKernel.vala:1174 src/Console/AppConsole.vala:292 msgid "Latest update" msgstr "Neustes Update" -#: src/Common/LinuxKernel.vala:1148 src/Console/AppConsole.vala:299 +#: src/Common/LinuxKernel.vala:1185 src/Console/AppConsole.vala:299 msgid "Latest point update" msgstr "Letzte Punktaktualisierung" -#: src/Common/LinuxKernel.vala:1156 src/Console/AppConsole.vala:304 +#: src/Common/LinuxKernel.vala:1193 src/Console/AppConsole.vala:304 #: src/Console/AppConsole.vala:320 msgid "No updates found" msgstr "Keine Updates gefunden" -#: src/Common/LinuxKernel.vala:1165 +#: src/Common/LinuxKernel.vala:1202 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Kernel-Version %s installieren? (j/n):" diff --git a/po/el.po b/po/el.po index c8f1b4b4..54bf631a 100644 --- a/po/el.po +++ b/po/el.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-04-15 12:22-0400\n" +"POT-Creation-Date: 2023-05-20 06:35-0400\n" "PO-Revision-Date: 2023-01-10 02:03-0600\n" "Last-Translator: Vasilis Kosmidis \n" "Language-Team: Greek\n" @@ -13,141 +13,141 @@ msgstr "" "X-Launchpad-Export-Date: 2017-04-13 11:48+0000\n" "X-Generator: Poedit 2.0.5\n" -#: src/Common/LinuxKernel.vala:102 +#: src/Common/LinuxKernel.vala:103 msgid "Distribution" msgstr "Διανομή" -#: src/Common/LinuxKernel.vala:117 +#: src/Common/LinuxKernel.vala:118 msgid "Architecture" msgstr "Αρχιτεκτονική" -#: src/Common/LinuxKernel.vala:132 +#: src/Common/LinuxKernel.vala:133 msgid "Running kernel" msgstr "Εκτέλεση πυρήνα" -#: src/Common/LinuxKernel.vala:255 +#: src/Common/LinuxKernel.vala:258 msgid "loading cached" msgstr "φόρτωση προσωρινά αποθηκευμένου" -#: src/Common/LinuxKernel.vala:269 +#: src/Common/LinuxKernel.vala:270 msgid "queuing download" msgstr "Προσθήκη λήψης στην ουρά" -#: src/Common/LinuxKernel.vala:292 +#: src/Common/LinuxKernel.vala:291 msgid "Fetching individual kernel indexes" msgstr "Λήψη μεμονωμένων ευρετηρίων πυρήνα" -#: src/Common/LinuxKernel.vala:308 +#: src/Common/LinuxKernel.vala:307 msgid "loading downloaded" msgstr "Φόρτωση λήψης" -#: src/Common/LinuxKernel.vala:343 +#: src/Common/LinuxKernel.vala:342 msgid "Updating from" msgstr "Ενημέρωση από" -#: src/Common/LinuxKernel.vala:351 +#: src/Common/LinuxKernel.vala:350 msgid "OK" msgstr "ΟΚ" -#: src/Common/LinuxKernel.vala:354 +#: src/Common/LinuxKernel.vala:353 msgid "FAILED" msgstr "ΑΠΈΤΥΧΕ" -#: src/Common/LinuxKernel.vala:397 +#: src/Common/LinuxKernel.vala:403 msgid "Found installed" msgstr "Βρέθηκε εγκατεστημένο" -#: src/Common/LinuxKernel.vala:735 src/Gtk/MainWindow.vala:522 +#: src/Common/LinuxKernel.vala:741 src/Gtk/MainWindow.vala:522 #: src/Gtk/MainWindow.vala:535 msgid "Running" msgstr "Ενεργός" -#: src/Common/LinuxKernel.vala:736 +#: src/Common/LinuxKernel.vala:742 msgid "Installed" msgstr "Εγκατεστημένος" -#: src/Common/LinuxKernel.vala:737 +#: src/Common/LinuxKernel.vala:743 msgid "Invalid" msgstr "Άκυρος" -#: src/Common/LinuxKernel.vala:811 +#: src/Common/LinuxKernel.vala:817 msgid "Packages Available" msgstr "Διαθέσιμα πακέτα" -#: src/Common/LinuxKernel.vala:817 +#: src/Common/LinuxKernel.vala:823 msgid "Packages Installed" msgstr "Εγκατεστημένα πακέτα" -#: src/Common/LinuxKernel.vala:839 src/lib/TeeJee.FileSystem.vala:118 +#: src/Common/LinuxKernel.vala:847 src/lib/TeeJee.FileSystem.vala:118 msgid "File not found" msgstr "Το αρχείο δε βρέθηκε" -#: src/Common/LinuxKernel.vala:910 +#: src/Common/LinuxKernel.vala:947 msgid "Available Kernels" msgstr "Διαθέσιμοι πυρήνες" -#: src/Common/LinuxKernel.vala:947 +#: src/Common/LinuxKernel.vala:984 msgid "enabled" msgstr "ενεργοποιημένη" -#: src/Common/LinuxKernel.vala:971 +#: src/Common/LinuxKernel.vala:1008 msgid "Downloading" msgstr "Κατέβασμα" -#: src/Common/LinuxKernel.vala:992 +#: src/Common/LinuxKernel.vala:1029 msgid "is already installed." msgstr "είναι ήδη εγκατεστημένο." -#: src/Common/LinuxKernel.vala:1022 +#: src/Common/LinuxKernel.vala:1059 msgid "Uninstalling selected kernels" msgstr "Απεγκατάσταση επιλεγμένων πυρήνων" -#: src/Common/LinuxKernel.vala:1028 +#: src/Common/LinuxKernel.vala:1065 msgid "requested" msgstr "ζητήθηκε" -#: src/Common/LinuxKernel.vala:1031 +#: src/Common/LinuxKernel.vala:1068 msgid "not uninstalling the currently running kernel" msgstr "δεν θα απεγκαταστήσει τον πυρήνα που εκτελείται αυτήν τη στιγμή" -#: src/Common/LinuxKernel.vala:1047 +#: src/Common/LinuxKernel.vala:1084 msgid "found" msgstr "ιδρύω" -#: src/Common/LinuxKernel.vala:1050 +#: src/Common/LinuxKernel.vala:1087 msgid "No packages to un-install!" msgstr "Δεν υπάρχουν πακέτα για απεγκατάσταση!" -#: src/Common/LinuxKernel.vala:1098 +#: src/Common/LinuxKernel.vala:1135 msgid "Could not find running kernel in list" msgstr "Δεν ήταν δυνατή η εύρεση του πυρήνα που εκτελείται αυτήν τη στιγμή" -#: src/Common/LinuxKernel.vala:1103 +#: src/Common/LinuxKernel.vala:1140 msgid "Could not find any kernels to uninstall" msgstr "Δεν βρέθηκε κανένας πυρήνας για απεγκατάσταση" -#: src/Common/LinuxKernel.vala:1111 +#: src/Common/LinuxKernel.vala:1148 msgid "The following kernels will be uninstalled" msgstr "Θα καταργηθεί η εγκατάσταση των ακόλουθων πυρήνων" -#: src/Common/LinuxKernel.vala:1115 +#: src/Common/LinuxKernel.vala:1152 msgid "Continue ?" msgstr "Συνέχεια;" -#: src/Common/LinuxKernel.vala:1137 src/Console/AppConsole.vala:292 +#: src/Common/LinuxKernel.vala:1174 src/Console/AppConsole.vala:292 msgid "Latest update" msgstr "Τελευταία αναβάθμιση" -#: src/Common/LinuxKernel.vala:1148 src/Console/AppConsole.vala:299 +#: src/Common/LinuxKernel.vala:1185 src/Console/AppConsole.vala:299 msgid "Latest point update" msgstr "Τελευταία ενημέρωση συντήρησης" -#: src/Common/LinuxKernel.vala:1156 src/Console/AppConsole.vala:304 +#: src/Common/LinuxKernel.vala:1193 src/Console/AppConsole.vala:304 #: src/Console/AppConsole.vala:320 msgid "No updates found" msgstr "Δεν βρέθηκαν ενημερώσεις" -#: src/Common/LinuxKernel.vala:1165 +#: src/Common/LinuxKernel.vala:1202 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Εγκατάσταση του πυρήνα έκδοσης %s ; (ν/ό):" diff --git a/po/es.po b/po/es.po index f7339413..701c4814 100644 --- a/po/es.po +++ b/po/es.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-04-15 12:22-0400\n" +"POT-Creation-Date: 2023-05-20 06:35-0400\n" "PO-Revision-Date: 2018-01-03 02:03-0600\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish\n" @@ -13,141 +13,141 @@ msgstr "" "X-Launchpad-Export-Date: 2017-04-13 11:48+0000\n" "X-Generator: Poedit 2.0.5\n" -#: src/Common/LinuxKernel.vala:102 +#: src/Common/LinuxKernel.vala:103 msgid "Distribution" msgstr "Distribución" -#: src/Common/LinuxKernel.vala:117 +#: src/Common/LinuxKernel.vala:118 msgid "Architecture" msgstr "Arquitectura del sistema" -#: src/Common/LinuxKernel.vala:132 +#: src/Common/LinuxKernel.vala:133 msgid "Running kernel" msgstr "Kernel en ejecución" -#: src/Common/LinuxKernel.vala:255 +#: src/Common/LinuxKernel.vala:258 msgid "loading cached" msgstr "carga en caché" -#: src/Common/LinuxKernel.vala:269 +#: src/Common/LinuxKernel.vala:270 msgid "queuing download" msgstr "descarga de colas" -#: src/Common/LinuxKernel.vala:292 +#: src/Common/LinuxKernel.vala:291 msgid "Fetching individual kernel indexes" msgstr "Obtención de índices de kernel individuales" -#: src/Common/LinuxKernel.vala:308 +#: src/Common/LinuxKernel.vala:307 msgid "loading downloaded" msgstr "cargando descargado" -#: src/Common/LinuxKernel.vala:343 +#: src/Common/LinuxKernel.vala:342 msgid "Updating from" msgstr "Actualización desde" -#: src/Common/LinuxKernel.vala:351 +#: src/Common/LinuxKernel.vala:350 msgid "OK" msgstr "Aceptar" -#: src/Common/LinuxKernel.vala:354 +#: src/Common/LinuxKernel.vala:353 msgid "FAILED" msgstr "FRACASADO" -#: src/Common/LinuxKernel.vala:397 +#: src/Common/LinuxKernel.vala:403 msgid "Found installed" msgstr "Encontrado instalado" -#: src/Common/LinuxKernel.vala:735 src/Gtk/MainWindow.vala:522 +#: src/Common/LinuxKernel.vala:741 src/Gtk/MainWindow.vala:522 #: src/Gtk/MainWindow.vala:535 msgid "Running" msgstr "En ejecución" -#: src/Common/LinuxKernel.vala:736 +#: src/Common/LinuxKernel.vala:742 msgid "Installed" msgstr "Instalado" -#: src/Common/LinuxKernel.vala:737 +#: src/Common/LinuxKernel.vala:743 msgid "Invalid" msgstr "No válido" -#: src/Common/LinuxKernel.vala:811 +#: src/Common/LinuxKernel.vala:817 msgid "Packages Available" msgstr "Paquetes disponibles" -#: src/Common/LinuxKernel.vala:817 +#: src/Common/LinuxKernel.vala:823 msgid "Packages Installed" msgstr "Paquetes instalados" -#: src/Common/LinuxKernel.vala:839 src/lib/TeeJee.FileSystem.vala:118 +#: src/Common/LinuxKernel.vala:847 src/lib/TeeJee.FileSystem.vala:118 msgid "File not found" msgstr "No se encontró el archivo" -#: src/Common/LinuxKernel.vala:910 +#: src/Common/LinuxKernel.vala:947 msgid "Available Kernels" msgstr "Núcleos disponibles" -#: src/Common/LinuxKernel.vala:947 +#: src/Common/LinuxKernel.vala:984 msgid "enabled" msgstr "habilitado" -#: src/Common/LinuxKernel.vala:971 +#: src/Common/LinuxKernel.vala:1008 msgid "Downloading" msgstr "Descargar" -#: src/Common/LinuxKernel.vala:992 +#: src/Common/LinuxKernel.vala:1029 msgid "is already installed." msgstr "ya está instalado." -#: src/Common/LinuxKernel.vala:1022 +#: src/Common/LinuxKernel.vala:1059 msgid "Uninstalling selected kernels" msgstr "Desinstalación de kernels seleccionados" -#: src/Common/LinuxKernel.vala:1028 +#: src/Common/LinuxKernel.vala:1065 msgid "requested" msgstr "solicitado" -#: src/Common/LinuxKernel.vala:1031 +#: src/Common/LinuxKernel.vala:1068 msgid "not uninstalling the currently running kernel" msgstr "No desinstalará el kernel que se está ejecutando actualmente" -#: src/Common/LinuxKernel.vala:1047 +#: src/Common/LinuxKernel.vala:1084 msgid "found" msgstr "fundar" -#: src/Common/LinuxKernel.vala:1050 +#: src/Common/LinuxKernel.vala:1087 msgid "No packages to un-install!" msgstr "¡No hay paquetes para desinstalar!" -#: src/Common/LinuxKernel.vala:1098 +#: src/Common/LinuxKernel.vala:1135 msgid "Could not find running kernel in list" msgstr "No se pudo encontrar el kernel en ejecución en la lista" -#: src/Common/LinuxKernel.vala:1103 +#: src/Common/LinuxKernel.vala:1140 msgid "Could not find any kernels to uninstall" msgstr "No se pudo encontrar ningún kernel para desinstalar" -#: src/Common/LinuxKernel.vala:1111 +#: src/Common/LinuxKernel.vala:1148 msgid "The following kernels will be uninstalled" msgstr "Se desinstalarán los siguientes kernels" -#: src/Common/LinuxKernel.vala:1115 +#: src/Common/LinuxKernel.vala:1152 msgid "Continue ?" msgstr "¿Continuar?" -#: src/Common/LinuxKernel.vala:1137 src/Console/AppConsole.vala:292 +#: src/Common/LinuxKernel.vala:1174 src/Console/AppConsole.vala:292 msgid "Latest update" msgstr "Última actualización" -#: src/Common/LinuxKernel.vala:1148 src/Console/AppConsole.vala:299 +#: src/Common/LinuxKernel.vala:1185 src/Console/AppConsole.vala:299 msgid "Latest point update" msgstr "Última actualización puntual" -#: src/Common/LinuxKernel.vala:1156 src/Console/AppConsole.vala:304 +#: src/Common/LinuxKernel.vala:1193 src/Console/AppConsole.vala:304 #: src/Console/AppConsole.vala:320 msgid "No updates found" msgstr "No se encontró ninguna actualización" -#: src/Common/LinuxKernel.vala:1165 +#: src/Common/LinuxKernel.vala:1202 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Instalar la versión del kernel %s? (s/n): " diff --git a/po/fr.po b/po/fr.po index 754f3c42..51a88d82 100644 --- a/po/fr.po +++ b/po/fr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-04-15 12:22-0400\n" +"POT-Creation-Date: 2023-05-20 06:35-0400\n" "PO-Revision-Date: 2018-08-05 15:50+0200\n" "Last-Translator: Yolateng0 \n" "Language-Team: French\n" @@ -13,141 +13,141 @@ msgstr "" "X-Launchpad-Export-Date: 2017-04-13 11:48+0000\n" "X-Generator: Poedit 2.0.6\n" -#: src/Common/LinuxKernel.vala:102 +#: src/Common/LinuxKernel.vala:103 msgid "Distribution" msgstr "Distribution" -#: src/Common/LinuxKernel.vala:117 +#: src/Common/LinuxKernel.vala:118 msgid "Architecture" msgstr "Architecture" -#: src/Common/LinuxKernel.vala:132 +#: src/Common/LinuxKernel.vala:133 msgid "Running kernel" msgstr "Noyau en cours d'exécution" -#: src/Common/LinuxKernel.vala:255 +#: src/Common/LinuxKernel.vala:258 msgid "loading cached" msgstr "chargement mis en cache" -#: src/Common/LinuxKernel.vala:269 +#: src/Common/LinuxKernel.vala:270 msgid "queuing download" msgstr "enqueuing télécharger" -#: src/Common/LinuxKernel.vala:292 +#: src/Common/LinuxKernel.vala:291 msgid "Fetching individual kernel indexes" msgstr "Récupération d'index de noyau individuels" -#: src/Common/LinuxKernel.vala:308 +#: src/Common/LinuxKernel.vala:307 msgid "loading downloaded" msgstr "chargement téléchargé" -#: src/Common/LinuxKernel.vala:343 +#: src/Common/LinuxKernel.vala:342 msgid "Updating from" msgstr "Mise à jour à partir de" -#: src/Common/LinuxKernel.vala:351 +#: src/Common/LinuxKernel.vala:350 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:354 +#: src/Common/LinuxKernel.vala:353 msgid "FAILED" msgstr "RATÉ" -#: src/Common/LinuxKernel.vala:397 +#: src/Common/LinuxKernel.vala:403 msgid "Found installed" msgstr "Trouvé installé" -#: src/Common/LinuxKernel.vala:735 src/Gtk/MainWindow.vala:522 +#: src/Common/LinuxKernel.vala:741 src/Gtk/MainWindow.vala:522 #: src/Gtk/MainWindow.vala:535 msgid "Running" msgstr "Actuel" -#: src/Common/LinuxKernel.vala:736 +#: src/Common/LinuxKernel.vala:742 msgid "Installed" msgstr "Installé" -#: src/Common/LinuxKernel.vala:737 +#: src/Common/LinuxKernel.vala:743 msgid "Invalid" msgstr "No válido" -#: src/Common/LinuxKernel.vala:811 +#: src/Common/LinuxKernel.vala:817 msgid "Packages Available" msgstr "Paquets Disponibles" -#: src/Common/LinuxKernel.vala:817 +#: src/Common/LinuxKernel.vala:823 msgid "Packages Installed" msgstr "Paquets Installés" -#: src/Common/LinuxKernel.vala:839 src/lib/TeeJee.FileSystem.vala:118 +#: src/Common/LinuxKernel.vala:847 src/lib/TeeJee.FileSystem.vala:118 msgid "File not found" msgstr "Fichier non trouvé" -#: src/Common/LinuxKernel.vala:910 +#: src/Common/LinuxKernel.vala:947 msgid "Available Kernels" msgstr "Noyaux Disponibles" -#: src/Common/LinuxKernel.vala:947 +#: src/Common/LinuxKernel.vala:984 msgid "enabled" msgstr "activé" -#: src/Common/LinuxKernel.vala:971 +#: src/Common/LinuxKernel.vala:1008 msgid "Downloading" msgstr "Téléchargement" -#: src/Common/LinuxKernel.vala:992 +#: src/Common/LinuxKernel.vala:1029 msgid "is already installed." msgstr "est déjà installé." -#: src/Common/LinuxKernel.vala:1022 +#: src/Common/LinuxKernel.vala:1059 msgid "Uninstalling selected kernels" msgstr "Désinstallation des noyaux sélectionnés" -#: src/Common/LinuxKernel.vala:1028 +#: src/Common/LinuxKernel.vala:1065 msgid "requested" msgstr "Demandé" -#: src/Common/LinuxKernel.vala:1031 +#: src/Common/LinuxKernel.vala:1068 msgid "not uninstalling the currently running kernel" msgstr "Ne pas désinstaller le noyau en cours d'exécution" -#: src/Common/LinuxKernel.vala:1047 +#: src/Common/LinuxKernel.vala:1084 msgid "found" msgstr "fonder" -#: src/Common/LinuxKernel.vala:1050 +#: src/Common/LinuxKernel.vala:1087 msgid "No packages to un-install!" msgstr "Pas de paquets à désinstaller !" -#: src/Common/LinuxKernel.vala:1098 +#: src/Common/LinuxKernel.vala:1135 msgid "Could not find running kernel in list" msgstr "Impossible de trouver le noyau en cours d'exécution dans la liste" -#: src/Common/LinuxKernel.vala:1103 +#: src/Common/LinuxKernel.vala:1140 msgid "Could not find any kernels to uninstall" msgstr "Impossible de trouver des noyaux à désinstaller" -#: src/Common/LinuxKernel.vala:1111 +#: src/Common/LinuxKernel.vala:1148 msgid "The following kernels will be uninstalled" msgstr "Les noyaux suivants seront désinstallés" -#: src/Common/LinuxKernel.vala:1115 +#: src/Common/LinuxKernel.vala:1152 msgid "Continue ?" msgstr "Reprendre ?" -#: src/Common/LinuxKernel.vala:1137 src/Console/AppConsole.vala:292 +#: src/Common/LinuxKernel.vala:1174 src/Console/AppConsole.vala:292 msgid "Latest update" msgstr "Dernière mise à jour" -#: src/Common/LinuxKernel.vala:1148 src/Console/AppConsole.vala:299 +#: src/Common/LinuxKernel.vala:1185 src/Console/AppConsole.vala:299 msgid "Latest point update" msgstr "Dernière mise à jour mineure" -#: src/Common/LinuxKernel.vala:1156 src/Console/AppConsole.vala:304 +#: src/Common/LinuxKernel.vala:1193 src/Console/AppConsole.vala:304 #: src/Console/AppConsole.vala:320 msgid "No updates found" msgstr "Aucune mise à jour disponible" -#: src/Common/LinuxKernel.vala:1165 +#: src/Common/LinuxKernel.vala:1202 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Installer le noyau en version %s ? (y/n): " diff --git a/po/hr.po b/po/hr.po index 3c83175b..d29713f7 100644 --- a/po/hr.po +++ b/po/hr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-04-15 12:22-0400\n" +"POT-Creation-Date: 2023-05-20 06:35-0400\n" "PO-Revision-Date: 2022-09-22 12:13+0200\n" "Last-Translator: gogo \n" "Language-Team: Croatian\n" @@ -13,141 +13,141 @@ msgstr "" "X-Launchpad-Export-Date: 2017-12-23 23:36+0000\n" "X-Generator: Poedit 3.0.1\n" -#: src/Common/LinuxKernel.vala:102 +#: src/Common/LinuxKernel.vala:103 msgid "Distribution" msgstr "Distribucija" -#: src/Common/LinuxKernel.vala:117 +#: src/Common/LinuxKernel.vala:118 msgid "Architecture" msgstr "Arhitektura" -#: src/Common/LinuxKernel.vala:132 +#: src/Common/LinuxKernel.vala:133 msgid "Running kernel" msgstr "Trčanje kernel" -#: src/Common/LinuxKernel.vala:255 +#: src/Common/LinuxKernel.vala:258 msgid "loading cached" msgstr "učitavanje predmemoriranog" -#: src/Common/LinuxKernel.vala:269 +#: src/Common/LinuxKernel.vala:270 msgid "queuing download" msgstr "preuzimanje u redu čekanja" -#: src/Common/LinuxKernel.vala:292 +#: src/Common/LinuxKernel.vala:291 msgid "Fetching individual kernel indexes" msgstr "Dohvaćanje pojedinačnih indeksa kernel" -#: src/Common/LinuxKernel.vala:308 +#: src/Common/LinuxKernel.vala:307 msgid "loading downloaded" msgstr "učitavanje preuzeto" -#: src/Common/LinuxKernel.vala:343 +#: src/Common/LinuxKernel.vala:342 msgid "Updating from" msgstr "Ažuriranje iz" -#: src/Common/LinuxKernel.vala:351 +#: src/Common/LinuxKernel.vala:350 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:354 +#: src/Common/LinuxKernel.vala:353 msgid "FAILED" msgstr "NIJE USPIO" -#: src/Common/LinuxKernel.vala:397 +#: src/Common/LinuxKernel.vala:403 msgid "Found installed" msgstr "Pronađeno instalirano" -#: src/Common/LinuxKernel.vala:735 src/Gtk/MainWindow.vala:522 +#: src/Common/LinuxKernel.vala:741 src/Gtk/MainWindow.vala:522 #: src/Gtk/MainWindow.vala:535 msgid "Running" msgstr "Pokrenuto" -#: src/Common/LinuxKernel.vala:736 +#: src/Common/LinuxKernel.vala:742 msgid "Installed" msgstr "Instalirano" -#: src/Common/LinuxKernel.vala:737 +#: src/Common/LinuxKernel.vala:743 msgid "Invalid" msgstr "Érvénytelen" -#: src/Common/LinuxKernel.vala:811 +#: src/Common/LinuxKernel.vala:817 msgid "Packages Available" msgstr "Dostupni Paketi" -#: src/Common/LinuxKernel.vala:817 +#: src/Common/LinuxKernel.vala:823 msgid "Packages Installed" msgstr "Instalirani paketi" -#: src/Common/LinuxKernel.vala:839 src/lib/TeeJee.FileSystem.vala:118 +#: src/Common/LinuxKernel.vala:847 src/lib/TeeJee.FileSystem.vala:118 msgid "File not found" msgstr "Datoteka nije pronađena" -#: src/Common/LinuxKernel.vala:910 +#: src/Common/LinuxKernel.vala:947 msgid "Available Kernels" msgstr "Dostupni kerneli" -#: src/Common/LinuxKernel.vala:947 +#: src/Common/LinuxKernel.vala:984 msgid "enabled" msgstr "omogućen" -#: src/Common/LinuxKernel.vala:971 +#: src/Common/LinuxKernel.vala:1008 msgid "Downloading" msgstr "Učitavanje" -#: src/Common/LinuxKernel.vala:992 +#: src/Common/LinuxKernel.vala:1029 msgid "is already installed." msgstr "je već instaliran." -#: src/Common/LinuxKernel.vala:1022 +#: src/Common/LinuxKernel.vala:1059 msgid "Uninstalling selected kernels" msgstr "Deinstaliraj određene kernele" -#: src/Common/LinuxKernel.vala:1028 +#: src/Common/LinuxKernel.vala:1065 msgid "requested" msgstr "Zatražio" -#: src/Common/LinuxKernel.vala:1031 +#: src/Common/LinuxKernel.vala:1068 msgid "not uninstalling the currently running kernel" msgstr "ne deinstaliranje trenutno pokrenute kernel" -#: src/Common/LinuxKernel.vala:1047 +#: src/Common/LinuxKernel.vala:1084 msgid "found" msgstr "pronađen" -#: src/Common/LinuxKernel.vala:1050 +#: src/Common/LinuxKernel.vala:1087 msgid "No packages to un-install!" msgstr "Nema paketa za poništavanje instalacije!" -#: src/Common/LinuxKernel.vala:1098 +#: src/Common/LinuxKernel.vala:1135 msgid "Could not find running kernel in list" msgstr "Nije moguće pronaći pokrenutu kernel na popisu" -#: src/Common/LinuxKernel.vala:1103 +#: src/Common/LinuxKernel.vala:1140 msgid "Could not find any kernels to uninstall" msgstr "Nema pronađenih kernela za deinstaliranje" -#: src/Common/LinuxKernel.vala:1111 +#: src/Common/LinuxKernel.vala:1148 msgid "The following kernels will be uninstalled" msgstr "Deinstalirat će se sljedeće kerneli" -#: src/Common/LinuxKernel.vala:1115 +#: src/Common/LinuxKernel.vala:1152 msgid "Continue ?" msgstr "Nastavi?" -#: src/Common/LinuxKernel.vala:1137 src/Console/AppConsole.vala:292 +#: src/Common/LinuxKernel.vala:1174 src/Console/AppConsole.vala:292 msgid "Latest update" msgstr "Najnovija nadopuna" -#: src/Common/LinuxKernel.vala:1148 src/Console/AppConsole.vala:299 +#: src/Common/LinuxKernel.vala:1185 src/Console/AppConsole.vala:299 msgid "Latest point update" msgstr "Najnovija ciljana nadopuna" -#: src/Common/LinuxKernel.vala:1156 src/Console/AppConsole.vala:304 +#: src/Common/LinuxKernel.vala:1193 src/Console/AppConsole.vala:304 #: src/Console/AppConsole.vala:320 msgid "No updates found" msgstr "Nema pronađenih nadopuna" -#: src/Common/LinuxKernel.vala:1165 +#: src/Common/LinuxKernel.vala:1202 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Instaliraj kernel inačice %s ? (d/n): " diff --git a/po/it.po b/po/it.po index dae223f2..37f99a4e 100644 --- a/po/it.po +++ b/po/it.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-04-15 12:22-0400\n" +"POT-Creation-Date: 2023-05-20 06:35-0400\n" "PO-Revision-Date: 2020-08-22 15:35+0100\n" "Last-Translator: Demetrio Mendozzi\n" "Language-Team: Italian\n" @@ -11,141 +11,141 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: src/Common/LinuxKernel.vala:102 +#: src/Common/LinuxKernel.vala:103 msgid "Distribution" msgstr "Distribuzione" -#: src/Common/LinuxKernel.vala:117 +#: src/Common/LinuxKernel.vala:118 msgid "Architecture" msgstr "Architettura" -#: src/Common/LinuxKernel.vala:132 +#: src/Common/LinuxKernel.vala:133 msgid "Running kernel" msgstr "Kernel in esecuzione" -#: src/Common/LinuxKernel.vala:255 +#: src/Common/LinuxKernel.vala:258 msgid "loading cached" msgstr "Caricamento file della cache" -#: src/Common/LinuxKernel.vala:269 +#: src/Common/LinuxKernel.vala:270 msgid "queuing download" msgstr "download in coda" -#: src/Common/LinuxKernel.vala:292 +#: src/Common/LinuxKernel.vala:291 msgid "Fetching individual kernel indexes" msgstr "Recupero dei singoli indici del kernel" -#: src/Common/LinuxKernel.vala:308 +#: src/Common/LinuxKernel.vala:307 msgid "loading downloaded" msgstr "caricamento dei file scaricati" -#: src/Common/LinuxKernel.vala:343 +#: src/Common/LinuxKernel.vala:342 msgid "Updating from" msgstr "Aggiornamento da" -#: src/Common/LinuxKernel.vala:351 +#: src/Common/LinuxKernel.vala:350 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:354 +#: src/Common/LinuxKernel.vala:353 msgid "FAILED" msgstr "FALLITO" -#: src/Common/LinuxKernel.vala:397 +#: src/Common/LinuxKernel.vala:403 msgid "Found installed" msgstr "Trovato installato" -#: src/Common/LinuxKernel.vala:735 src/Gtk/MainWindow.vala:522 +#: src/Common/LinuxKernel.vala:741 src/Gtk/MainWindow.vala:522 #: src/Gtk/MainWindow.vala:535 msgid "Running" msgstr "In esecuzione" -#: src/Common/LinuxKernel.vala:736 +#: src/Common/LinuxKernel.vala:742 msgid "Installed" msgstr "Installato" -#: src/Common/LinuxKernel.vala:737 +#: src/Common/LinuxKernel.vala:743 msgid "Invalid" msgstr "Non valido" -#: src/Common/LinuxKernel.vala:811 +#: src/Common/LinuxKernel.vala:817 msgid "Packages Available" msgstr "Pacchetti disponibili" -#: src/Common/LinuxKernel.vala:817 +#: src/Common/LinuxKernel.vala:823 msgid "Packages Installed" msgstr "Pacchetti installati" -#: src/Common/LinuxKernel.vala:839 src/lib/TeeJee.FileSystem.vala:118 +#: src/Common/LinuxKernel.vala:847 src/lib/TeeJee.FileSystem.vala:118 msgid "File not found" msgstr "File non trovato" -#: src/Common/LinuxKernel.vala:910 +#: src/Common/LinuxKernel.vala:947 msgid "Available Kernels" msgstr "Kernel disponibili" -#: src/Common/LinuxKernel.vala:947 +#: src/Common/LinuxKernel.vala:984 msgid "enabled" msgstr "abilitato" -#: src/Common/LinuxKernel.vala:971 +#: src/Common/LinuxKernel.vala:1008 msgid "Downloading" msgstr "Scaricamento" -#: src/Common/LinuxKernel.vala:992 +#: src/Common/LinuxKernel.vala:1029 msgid "is already installed." msgstr "è già installato." -#: src/Common/LinuxKernel.vala:1022 +#: src/Common/LinuxKernel.vala:1059 msgid "Uninstalling selected kernels" msgstr "Disinstalla i kernel specificati" -#: src/Common/LinuxKernel.vala:1028 +#: src/Common/LinuxKernel.vala:1065 msgid "requested" msgstr "richiesto" -#: src/Common/LinuxKernel.vala:1031 +#: src/Common/LinuxKernel.vala:1068 msgid "not uninstalling the currently running kernel" msgstr "non disinstallare il kernel attualmente in esecuzione" -#: src/Common/LinuxKernel.vala:1047 +#: src/Common/LinuxKernel.vala:1084 msgid "found" msgstr "trovato" -#: src/Common/LinuxKernel.vala:1050 +#: src/Common/LinuxKernel.vala:1087 msgid "No packages to un-install!" msgstr "Nessun pacchetto da disinstallare!" -#: src/Common/LinuxKernel.vala:1098 +#: src/Common/LinuxKernel.vala:1135 msgid "Could not find running kernel in list" msgstr "Impossibile trovare il kernel in esecuzione nell'elenco" -#: src/Common/LinuxKernel.vala:1103 +#: src/Common/LinuxKernel.vala:1140 msgid "Could not find any kernels to uninstall" msgstr "Impossibile trovare alcun kernel da rimuovere" -#: src/Common/LinuxKernel.vala:1111 +#: src/Common/LinuxKernel.vala:1148 msgid "The following kernels will be uninstalled" msgstr "I seguenti kernel saranno rimossi" -#: src/Common/LinuxKernel.vala:1115 +#: src/Common/LinuxKernel.vala:1152 msgid "Continue ?" msgstr "Continuare ?" -#: src/Common/LinuxKernel.vala:1137 src/Console/AppConsole.vala:292 +#: src/Common/LinuxKernel.vala:1174 src/Console/AppConsole.vala:292 msgid "Latest update" msgstr "Ultimo aggiornamento" -#: src/Common/LinuxKernel.vala:1148 src/Console/AppConsole.vala:299 +#: src/Common/LinuxKernel.vala:1185 src/Console/AppConsole.vala:299 msgid "Latest point update" msgstr "Ultimo aggiornamento del rilascio parziale" -#: src/Common/LinuxKernel.vala:1156 src/Console/AppConsole.vala:304 +#: src/Common/LinuxKernel.vala:1193 src/Console/AppConsole.vala:304 #: src/Console/AppConsole.vala:320 msgid "No updates found" msgstr "Nessun aggiornamento trovato" -#: src/Common/LinuxKernel.vala:1165 +#: src/Common/LinuxKernel.vala:1202 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Installare la versione del kernel %s ? (y/n): " diff --git a/po/ko.po b/po/ko.po index 260bc547..d7750fbc 100644 --- a/po/ko.po +++ b/po/ko.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-04-15 12:22-0400\n" +"POT-Creation-Date: 2023-05-20 06:35-0400\n" "PO-Revision-Date: 2022-09-28 11:48+0900\n" "Last-Translator: Kevin Kim \n" "Language-Team: Korean\n" @@ -13,141 +13,141 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Poedit 3.0.1\n" -#: src/Common/LinuxKernel.vala:102 +#: src/Common/LinuxKernel.vala:103 msgid "Distribution" msgstr "배포판" -#: src/Common/LinuxKernel.vala:117 +#: src/Common/LinuxKernel.vala:118 msgid "Architecture" msgstr "아키텍처" -#: src/Common/LinuxKernel.vala:132 +#: src/Common/LinuxKernel.vala:133 msgid "Running kernel" msgstr "현재 실행 중인 커널" -#: src/Common/LinuxKernel.vala:255 +#: src/Common/LinuxKernel.vala:258 msgid "loading cached" msgstr "캐시된 로드 중" -#: src/Common/LinuxKernel.vala:269 +#: src/Common/LinuxKernel.vala:270 msgid "queuing download" msgstr "대기열 다운로드" -#: src/Common/LinuxKernel.vala:292 +#: src/Common/LinuxKernel.vala:291 msgid "Fetching individual kernel indexes" msgstr "개별 커널 인덱스 페치" -#: src/Common/LinuxKernel.vala:308 +#: src/Common/LinuxKernel.vala:307 msgid "loading downloaded" msgstr "다운로드 로드 중" -#: src/Common/LinuxKernel.vala:343 +#: src/Common/LinuxKernel.vala:342 msgid "Updating from" msgstr "다음에서 업데이트" -#: src/Common/LinuxKernel.vala:351 +#: src/Common/LinuxKernel.vala:350 msgid "OK" msgstr "확인" -#: src/Common/LinuxKernel.vala:354 +#: src/Common/LinuxKernel.vala:353 msgid "FAILED" msgstr "실패" -#: src/Common/LinuxKernel.vala:397 +#: src/Common/LinuxKernel.vala:403 msgid "Found installed" msgstr "설치된 것을 찾았습니다" -#: src/Common/LinuxKernel.vala:735 src/Gtk/MainWindow.vala:522 +#: src/Common/LinuxKernel.vala:741 src/Gtk/MainWindow.vala:522 #: src/Gtk/MainWindow.vala:535 msgid "Running" msgstr "구동 중" -#: src/Common/LinuxKernel.vala:736 +#: src/Common/LinuxKernel.vala:742 msgid "Installed" msgstr "설치 됨" -#: src/Common/LinuxKernel.vala:737 +#: src/Common/LinuxKernel.vala:743 msgid "Invalid" msgstr "사용할 수 없음" -#: src/Common/LinuxKernel.vala:811 +#: src/Common/LinuxKernel.vala:817 msgid "Packages Available" msgstr "설치 가능한 패키지" -#: src/Common/LinuxKernel.vala:817 +#: src/Common/LinuxKernel.vala:823 msgid "Packages Installed" msgstr "설치된 패키지" -#: src/Common/LinuxKernel.vala:839 src/lib/TeeJee.FileSystem.vala:118 +#: src/Common/LinuxKernel.vala:847 src/lib/TeeJee.FileSystem.vala:118 msgid "File not found" msgstr "파일을 찾을 수 없습니다" -#: src/Common/LinuxKernel.vala:910 +#: src/Common/LinuxKernel.vala:947 msgid "Available Kernels" msgstr "설치 가능한 커널" -#: src/Common/LinuxKernel.vala:947 +#: src/Common/LinuxKernel.vala:984 msgid "enabled" msgstr "사용" -#: src/Common/LinuxKernel.vala:971 +#: src/Common/LinuxKernel.vala:1008 msgid "Downloading" msgstr "다운로드" -#: src/Common/LinuxKernel.vala:992 +#: src/Common/LinuxKernel.vala:1029 msgid "is already installed." msgstr "가 이미 설치되어 있습니다" -#: src/Common/LinuxKernel.vala:1022 +#: src/Common/LinuxKernel.vala:1059 msgid "Uninstalling selected kernels" msgstr "선택한 커널 제거" -#: src/Common/LinuxKernel.vala:1028 +#: src/Common/LinuxKernel.vala:1065 msgid "requested" msgstr "요청" -#: src/Common/LinuxKernel.vala:1031 +#: src/Common/LinuxKernel.vala:1068 msgid "not uninstalling the currently running kernel" msgstr "현재 실행 중인 커널을 제거하지 않음" -#: src/Common/LinuxKernel.vala:1047 +#: src/Common/LinuxKernel.vala:1084 msgid "found" msgstr "설립하다" -#: src/Common/LinuxKernel.vala:1050 +#: src/Common/LinuxKernel.vala:1087 msgid "No packages to un-install!" msgstr "제거 할 패키지가 없습니다!" -#: src/Common/LinuxKernel.vala:1098 +#: src/Common/LinuxKernel.vala:1135 msgid "Could not find running kernel in list" msgstr "현재 실행 중인 커널을 찾을 수 없습니다" -#: src/Common/LinuxKernel.vala:1103 +#: src/Common/LinuxKernel.vala:1140 msgid "Could not find any kernels to uninstall" msgstr "삭제할 커널을 찾을 수 없습니다" -#: src/Common/LinuxKernel.vala:1111 +#: src/Common/LinuxKernel.vala:1148 msgid "The following kernels will be uninstalled" msgstr "풀이" -#: src/Common/LinuxKernel.vala:1115 +#: src/Common/LinuxKernel.vala:1152 msgid "Continue ?" msgstr "계속하시겠습니까?" -#: src/Common/LinuxKernel.vala:1137 src/Console/AppConsole.vala:292 +#: src/Common/LinuxKernel.vala:1174 src/Console/AppConsole.vala:292 msgid "Latest update" msgstr "최신 업데이트" -#: src/Common/LinuxKernel.vala:1148 src/Console/AppConsole.vala:299 +#: src/Common/LinuxKernel.vala:1185 src/Console/AppConsole.vala:299 msgid "Latest point update" msgstr "최신 포인트 업데이트" -#: src/Common/LinuxKernel.vala:1156 src/Console/AppConsole.vala:304 +#: src/Common/LinuxKernel.vala:1193 src/Console/AppConsole.vala:304 #: src/Console/AppConsole.vala:320 msgid "No updates found" msgstr "업데이트를 찾을 수 없습니다" -#: src/Common/LinuxKernel.vala:1165 +#: src/Common/LinuxKernel.vala:1202 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "커널 %s 버전을 설치하시겠습니까? (y/n): " diff --git a/po/messages.pot b/po/messages.pot index 7b84ce2a..2a4eed68 100644 --- a/po/messages.pot +++ b/po/messages.pot @@ -6,9 +6,9 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: mainline 1.2.4\n" +"Project-Id-Version: mainline 1.2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-04-15 12:22-0400\n" +"POT-Creation-Date: 2023-05-20 06:35-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,141 +17,141 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" -#: src/Common/LinuxKernel.vala:102 +#: src/Common/LinuxKernel.vala:103 msgid "Distribution" msgstr "" -#: src/Common/LinuxKernel.vala:117 +#: src/Common/LinuxKernel.vala:118 msgid "Architecture" msgstr "" -#: src/Common/LinuxKernel.vala:132 +#: src/Common/LinuxKernel.vala:133 msgid "Running kernel" msgstr "" -#: src/Common/LinuxKernel.vala:255 +#: src/Common/LinuxKernel.vala:258 msgid "loading cached" msgstr "" -#: src/Common/LinuxKernel.vala:269 +#: src/Common/LinuxKernel.vala:270 msgid "queuing download" msgstr "" -#: src/Common/LinuxKernel.vala:292 +#: src/Common/LinuxKernel.vala:291 msgid "Fetching individual kernel indexes" msgstr "" -#: src/Common/LinuxKernel.vala:308 +#: src/Common/LinuxKernel.vala:307 msgid "loading downloaded" msgstr "" -#: src/Common/LinuxKernel.vala:343 +#: src/Common/LinuxKernel.vala:342 msgid "Updating from" msgstr "" -#: src/Common/LinuxKernel.vala:351 +#: src/Common/LinuxKernel.vala:350 msgid "OK" msgstr "" -#: src/Common/LinuxKernel.vala:354 +#: src/Common/LinuxKernel.vala:353 msgid "FAILED" msgstr "" -#: src/Common/LinuxKernel.vala:397 +#: src/Common/LinuxKernel.vala:403 msgid "Found installed" msgstr "" -#: src/Common/LinuxKernel.vala:735 src/Gtk/MainWindow.vala:522 +#: src/Common/LinuxKernel.vala:741 src/Gtk/MainWindow.vala:522 #: src/Gtk/MainWindow.vala:535 msgid "Running" msgstr "" -#: src/Common/LinuxKernel.vala:736 +#: src/Common/LinuxKernel.vala:742 msgid "Installed" msgstr "" -#: src/Common/LinuxKernel.vala:737 +#: src/Common/LinuxKernel.vala:743 msgid "Invalid" msgstr "" -#: src/Common/LinuxKernel.vala:811 +#: src/Common/LinuxKernel.vala:817 msgid "Packages Available" msgstr "" -#: src/Common/LinuxKernel.vala:817 +#: src/Common/LinuxKernel.vala:823 msgid "Packages Installed" msgstr "" -#: src/Common/LinuxKernel.vala:839 src/lib/TeeJee.FileSystem.vala:118 +#: src/Common/LinuxKernel.vala:847 src/lib/TeeJee.FileSystem.vala:118 msgid "File not found" msgstr "" -#: src/Common/LinuxKernel.vala:910 +#: src/Common/LinuxKernel.vala:947 msgid "Available Kernels" msgstr "" -#: src/Common/LinuxKernel.vala:947 +#: src/Common/LinuxKernel.vala:984 msgid "enabled" msgstr "" -#: src/Common/LinuxKernel.vala:971 +#: src/Common/LinuxKernel.vala:1008 msgid "Downloading" msgstr "" -#: src/Common/LinuxKernel.vala:992 +#: src/Common/LinuxKernel.vala:1029 msgid "is already installed." msgstr "" -#: src/Common/LinuxKernel.vala:1022 +#: src/Common/LinuxKernel.vala:1059 msgid "Uninstalling selected kernels" msgstr "" -#: src/Common/LinuxKernel.vala:1028 +#: src/Common/LinuxKernel.vala:1065 msgid "requested" msgstr "" -#: src/Common/LinuxKernel.vala:1031 +#: src/Common/LinuxKernel.vala:1068 msgid "not uninstalling the currently running kernel" msgstr "" -#: src/Common/LinuxKernel.vala:1047 +#: src/Common/LinuxKernel.vala:1084 msgid "found" msgstr "" -#: src/Common/LinuxKernel.vala:1050 +#: src/Common/LinuxKernel.vala:1087 msgid "No packages to un-install!" msgstr "" -#: src/Common/LinuxKernel.vala:1098 +#: src/Common/LinuxKernel.vala:1135 msgid "Could not find running kernel in list" msgstr "" -#: src/Common/LinuxKernel.vala:1103 +#: src/Common/LinuxKernel.vala:1140 msgid "Could not find any kernels to uninstall" msgstr "" -#: src/Common/LinuxKernel.vala:1111 +#: src/Common/LinuxKernel.vala:1148 msgid "The following kernels will be uninstalled" msgstr "" -#: src/Common/LinuxKernel.vala:1115 +#: src/Common/LinuxKernel.vala:1152 msgid "Continue ?" msgstr "" -#: src/Common/LinuxKernel.vala:1137 src/Console/AppConsole.vala:292 +#: src/Common/LinuxKernel.vala:1174 src/Console/AppConsole.vala:292 msgid "Latest update" msgstr "" -#: src/Common/LinuxKernel.vala:1148 src/Console/AppConsole.vala:299 +#: src/Common/LinuxKernel.vala:1185 src/Console/AppConsole.vala:299 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:1156 src/Console/AppConsole.vala:304 +#: src/Common/LinuxKernel.vala:1193 src/Console/AppConsole.vala:304 #: src/Console/AppConsole.vala:320 msgid "No updates found" msgstr "" -#: src/Common/LinuxKernel.vala:1165 +#: src/Common/LinuxKernel.vala:1202 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "" diff --git a/po/nl.po b/po/nl.po index cb9a5381..65abf975 100644 --- a/po/nl.po +++ b/po/nl.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-04-15 12:22-0400\n" +"POT-Creation-Date: 2023-05-20 06:35-0400\n" "PO-Revision-Date: 2020-08-23 13:55+0200\n" "Last-Translator: Heimen Stoffels \n" "Language-Team: Dutch (Netherlands)\n" @@ -13,141 +13,141 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Poedit 3.2.2\n" -#: src/Common/LinuxKernel.vala:102 +#: src/Common/LinuxKernel.vala:103 msgid "Distribution" msgstr "Distributie" -#: src/Common/LinuxKernel.vala:117 +#: src/Common/LinuxKernel.vala:118 msgid "Architecture" msgstr "Architectuur" -#: src/Common/LinuxKernel.vala:132 +#: src/Common/LinuxKernel.vala:133 msgid "Running kernel" msgstr "Kernel uitvoeren" -#: src/Common/LinuxKernel.vala:255 +#: src/Common/LinuxKernel.vala:258 msgid "loading cached" msgstr "laden in cache" -#: src/Common/LinuxKernel.vala:269 +#: src/Common/LinuxKernel.vala:270 msgid "queuing download" msgstr "wachtrijen downloaden" -#: src/Common/LinuxKernel.vala:292 +#: src/Common/LinuxKernel.vala:291 msgid "Fetching individual kernel indexes" msgstr "Afzonderlijke kernelindexen ophalen" -#: src/Common/LinuxKernel.vala:308 +#: src/Common/LinuxKernel.vala:307 msgid "loading downloaded" msgstr "laden gedownload" -#: src/Common/LinuxKernel.vala:343 +#: src/Common/LinuxKernel.vala:342 msgid "Updating from" msgstr "Bijwerken van" -#: src/Common/LinuxKernel.vala:351 +#: src/Common/LinuxKernel.vala:350 msgid "OK" msgstr "Oké" -#: src/Common/LinuxKernel.vala:354 +#: src/Common/LinuxKernel.vala:353 msgid "FAILED" msgstr "MISLUKT" -#: src/Common/LinuxKernel.vala:397 +#: src/Common/LinuxKernel.vala:403 msgid "Found installed" msgstr "Geïnstalleerd gevonden" -#: src/Common/LinuxKernel.vala:735 src/Gtk/MainWindow.vala:522 +#: src/Common/LinuxKernel.vala:741 src/Gtk/MainWindow.vala:522 #: src/Gtk/MainWindow.vala:535 msgid "Running" msgstr "In gebruik" -#: src/Common/LinuxKernel.vala:736 +#: src/Common/LinuxKernel.vala:742 msgid "Installed" msgstr "Geïnstalleerd" -#: src/Common/LinuxKernel.vala:737 +#: src/Common/LinuxKernel.vala:743 msgid "Invalid" msgstr "Ongeldig" -#: src/Common/LinuxKernel.vala:811 +#: src/Common/LinuxKernel.vala:817 msgid "Packages Available" msgstr "Beschikbare pakketten" -#: src/Common/LinuxKernel.vala:817 +#: src/Common/LinuxKernel.vala:823 msgid "Packages Installed" msgstr "Geïnstalleerde pakketten" -#: src/Common/LinuxKernel.vala:839 src/lib/TeeJee.FileSystem.vala:118 +#: src/Common/LinuxKernel.vala:847 src/lib/TeeJee.FileSystem.vala:118 msgid "File not found" msgstr "Het bestand is niet gevonden" -#: src/Common/LinuxKernel.vala:910 +#: src/Common/LinuxKernel.vala:947 msgid "Available Kernels" msgstr "Beschikbare kernels" -#: src/Common/LinuxKernel.vala:947 +#: src/Common/LinuxKernel.vala:984 msgid "enabled" msgstr "ingeschakeld" -#: src/Common/LinuxKernel.vala:971 +#: src/Common/LinuxKernel.vala:1008 msgid "Downloading" msgstr "Downloaden" -#: src/Common/LinuxKernel.vala:992 +#: src/Common/LinuxKernel.vala:1029 msgid "is already installed." msgstr "is al geïnstalleerd." -#: src/Common/LinuxKernel.vala:1022 +#: src/Common/LinuxKernel.vala:1059 msgid "Uninstalling selected kernels" msgstr "Geselecteerde kernels verwijderen" -#: src/Common/LinuxKernel.vala:1028 +#: src/Common/LinuxKernel.vala:1065 msgid "requested" msgstr "verzocht" -#: src/Common/LinuxKernel.vala:1031 +#: src/Common/LinuxKernel.vala:1068 msgid "not uninstalling the currently running kernel" msgstr "de momenteel actieve kernel niet verwijderen" -#: src/Common/LinuxKernel.vala:1047 +#: src/Common/LinuxKernel.vala:1084 msgid "found" msgstr "gevonden" -#: src/Common/LinuxKernel.vala:1050 +#: src/Common/LinuxKernel.vala:1087 msgid "No packages to un-install!" msgstr "Geen pakketten om te verwijderen!" -#: src/Common/LinuxKernel.vala:1098 +#: src/Common/LinuxKernel.vala:1135 msgid "Could not find running kernel in list" msgstr "De in gebruik zijnde kernel staat niet op de lijst" -#: src/Common/LinuxKernel.vala:1103 +#: src/Common/LinuxKernel.vala:1140 msgid "Could not find any kernels to uninstall" msgstr "Er zijn geen te verwijderen kernels" -#: src/Common/LinuxKernel.vala:1111 +#: src/Common/LinuxKernel.vala:1148 msgid "The following kernels will be uninstalled" msgstr "De volgende kernels worden verwijderd" -#: src/Common/LinuxKernel.vala:1115 +#: src/Common/LinuxKernel.vala:1152 msgid "Continue ?" msgstr "Wilt u doorgaan?" -#: src/Common/LinuxKernel.vala:1137 src/Console/AppConsole.vala:292 +#: src/Common/LinuxKernel.vala:1174 src/Console/AppConsole.vala:292 msgid "Latest update" msgstr "Recentste update" -#: src/Common/LinuxKernel.vala:1148 src/Console/AppConsole.vala:299 +#: src/Common/LinuxKernel.vala:1185 src/Console/AppConsole.vala:299 msgid "Latest point update" msgstr "Recentste puntupdate" -#: src/Common/LinuxKernel.vala:1156 src/Console/AppConsole.vala:304 +#: src/Common/LinuxKernel.vala:1193 src/Console/AppConsole.vala:304 #: src/Console/AppConsole.vala:320 msgid "No updates found" msgstr "Geen updates gevonden" -#: src/Common/LinuxKernel.vala:1165 +#: src/Common/LinuxKernel.vala:1202 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Wilt u versie %s installeren? (j/n): " diff --git a/po/pl.po b/po/pl.po index cf061c39..f153852d 100644 --- a/po/pl.po +++ b/po/pl.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-04-15 12:22-0400\n" +"POT-Creation-Date: 2023-05-20 06:35-0400\n" "PO-Revision-Date: 2023-04-13 07:43+0200\n" "Last-Translator: Matthaiks\n" "Language-Team: Polish\n" @@ -12,141 +12,141 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Poedit 3.2\n" -#: src/Common/LinuxKernel.vala:102 +#: src/Common/LinuxKernel.vala:103 msgid "Distribution" msgstr "Dystrybucja" -#: src/Common/LinuxKernel.vala:117 +#: src/Common/LinuxKernel.vala:118 msgid "Architecture" msgstr "Architektura" -#: src/Common/LinuxKernel.vala:132 +#: src/Common/LinuxKernel.vala:133 msgid "Running kernel" msgstr "Uruchomione jądro" -#: src/Common/LinuxKernel.vala:255 +#: src/Common/LinuxKernel.vala:258 msgid "loading cached" msgstr "ładowanie z pamięci podręcznej" -#: src/Common/LinuxKernel.vala:269 +#: src/Common/LinuxKernel.vala:270 msgid "queuing download" msgstr "pobieranie w kolejce" -#: src/Common/LinuxKernel.vala:292 +#: src/Common/LinuxKernel.vala:291 msgid "Fetching individual kernel indexes" msgstr "Pobieranie indywidualnych indeksów jądra" -#: src/Common/LinuxKernel.vala:308 +#: src/Common/LinuxKernel.vala:307 msgid "loading downloaded" msgstr "ładowanie pobranych" -#: src/Common/LinuxKernel.vala:343 +#: src/Common/LinuxKernel.vala:342 msgid "Updating from" msgstr "Aktualizowanie z" -#: src/Common/LinuxKernel.vala:351 +#: src/Common/LinuxKernel.vala:350 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:354 +#: src/Common/LinuxKernel.vala:353 msgid "FAILED" msgstr "NIEPOWODZENIE" -#: src/Common/LinuxKernel.vala:397 +#: src/Common/LinuxKernel.vala:403 msgid "Found installed" msgstr "Znaleziono zainstalowane" -#: src/Common/LinuxKernel.vala:735 src/Gtk/MainWindow.vala:522 +#: src/Common/LinuxKernel.vala:741 src/Gtk/MainWindow.vala:522 #: src/Gtk/MainWindow.vala:535 msgid "Running" msgstr "Uruchomione" -#: src/Common/LinuxKernel.vala:736 +#: src/Common/LinuxKernel.vala:742 msgid "Installed" msgstr "Zainstalowane" -#: src/Common/LinuxKernel.vala:737 +#: src/Common/LinuxKernel.vala:743 msgid "Invalid" msgstr "Nieprawidłowe" -#: src/Common/LinuxKernel.vala:811 +#: src/Common/LinuxKernel.vala:817 msgid "Packages Available" msgstr "Dostępne pakiety" -#: src/Common/LinuxKernel.vala:817 +#: src/Common/LinuxKernel.vala:823 msgid "Packages Installed" msgstr "Pakiety zainstalowane" -#: src/Common/LinuxKernel.vala:839 src/lib/TeeJee.FileSystem.vala:118 +#: src/Common/LinuxKernel.vala:847 src/lib/TeeJee.FileSystem.vala:118 msgid "File not found" msgstr "Nie odnaleziono pliku" -#: src/Common/LinuxKernel.vala:910 +#: src/Common/LinuxKernel.vala:947 msgid "Available Kernels" msgstr "Dostępne jądra" -#: src/Common/LinuxKernel.vala:947 +#: src/Common/LinuxKernel.vala:984 msgid "enabled" msgstr "włączone" -#: src/Common/LinuxKernel.vala:971 +#: src/Common/LinuxKernel.vala:1008 msgid "Downloading" msgstr "Pobieranie" -#: src/Common/LinuxKernel.vala:992 +#: src/Common/LinuxKernel.vala:1029 msgid "is already installed." msgstr "jest już zainstalowane." -#: src/Common/LinuxKernel.vala:1022 +#: src/Common/LinuxKernel.vala:1059 msgid "Uninstalling selected kernels" msgstr "Odinstalowanie wybranych jąder" -#: src/Common/LinuxKernel.vala:1028 +#: src/Common/LinuxKernel.vala:1065 msgid "requested" msgstr "zażądane" -#: src/Common/LinuxKernel.vala:1031 +#: src/Common/LinuxKernel.vala:1068 msgid "not uninstalling the currently running kernel" msgstr "bez odinstalowywania aktualnie uruchomionego jądra" -#: src/Common/LinuxKernel.vala:1047 +#: src/Common/LinuxKernel.vala:1084 msgid "found" msgstr "znalezione" -#: src/Common/LinuxKernel.vala:1050 +#: src/Common/LinuxKernel.vala:1087 msgid "No packages to un-install!" msgstr "Brak pakietów do odinstalowania!" -#: src/Common/LinuxKernel.vala:1098 +#: src/Common/LinuxKernel.vala:1135 msgid "Could not find running kernel in list" msgstr "Nie można znaleźć uruchomionego jądra na liście" -#: src/Common/LinuxKernel.vala:1103 +#: src/Common/LinuxKernel.vala:1140 msgid "Could not find any kernels to uninstall" msgstr "Nie można znaleźć żadnych jąder do odinstalowania" -#: src/Common/LinuxKernel.vala:1111 +#: src/Common/LinuxKernel.vala:1148 msgid "The following kernels will be uninstalled" msgstr "Następujące jądra zostaną odinstalowane" -#: src/Common/LinuxKernel.vala:1115 +#: src/Common/LinuxKernel.vala:1152 msgid "Continue ?" msgstr "Kontynuować?" -#: src/Common/LinuxKernel.vala:1137 src/Console/AppConsole.vala:292 +#: src/Common/LinuxKernel.vala:1174 src/Console/AppConsole.vala:292 msgid "Latest update" msgstr "Najnowsza aktualizacja" -#: src/Common/LinuxKernel.vala:1148 src/Console/AppConsole.vala:299 +#: src/Common/LinuxKernel.vala:1185 src/Console/AppConsole.vala:299 msgid "Latest point update" msgstr "Najnowsza aktualizacja punktowa" -#: src/Common/LinuxKernel.vala:1156 src/Console/AppConsole.vala:304 +#: src/Common/LinuxKernel.vala:1193 src/Console/AppConsole.vala:304 #: src/Console/AppConsole.vala:320 msgid "No updates found" msgstr "Nie znaleziono aktualizacji" -#: src/Common/LinuxKernel.vala:1165 +#: src/Common/LinuxKernel.vala:1202 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Zainstalować wersję jądra %s? (t/n): " diff --git a/po/ru.po b/po/ru.po index b768245a..eed2b547 100644 --- a/po/ru.po +++ b/po/ru.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-04-15 12:22-0400\n" +"POT-Creation-Date: 2023-05-20 06:35-0400\n" "PO-Revision-Date: 2023-04-17 20:16+0300\n" "Last-Translator: Danik2343 \n" "Language-Team: Russian\n" @@ -13,141 +13,141 @@ msgstr "" "X-Launchpad-Export-Date: 2016-12-13 11:48+0000\n" "X-Generator: Poedit 3.0.1\n" -#: src/Common/LinuxKernel.vala:102 +#: src/Common/LinuxKernel.vala:103 msgid "Distribution" msgstr "Дистрибутив" -#: src/Common/LinuxKernel.vala:117 +#: src/Common/LinuxKernel.vala:118 msgid "Architecture" msgstr "Архитектура" -#: src/Common/LinuxKernel.vala:132 +#: src/Common/LinuxKernel.vala:133 msgid "Running kernel" msgstr "Запущенное ядро" -#: src/Common/LinuxKernel.vala:255 +#: src/Common/LinuxKernel.vala:258 msgid "loading cached" msgstr "загрузка в кэше" -#: src/Common/LinuxKernel.vala:269 +#: src/Common/LinuxKernel.vala:270 msgid "queuing download" msgstr "загрузка очередей" -#: src/Common/LinuxKernel.vala:292 +#: src/Common/LinuxKernel.vala:291 msgid "Fetching individual kernel indexes" msgstr "Получение отдельных индексов ядра" -#: src/Common/LinuxKernel.vala:308 +#: src/Common/LinuxKernel.vala:307 msgid "loading downloaded" msgstr "загрузка загруженных" -#: src/Common/LinuxKernel.vala:343 +#: src/Common/LinuxKernel.vala:342 msgid "Updating from" msgstr "Обновление из" -#: src/Common/LinuxKernel.vala:351 +#: src/Common/LinuxKernel.vala:350 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:354 +#: src/Common/LinuxKernel.vala:353 msgid "FAILED" msgstr "НЕУДАВШИЙСЯ" -#: src/Common/LinuxKernel.vala:397 +#: src/Common/LinuxKernel.vala:403 msgid "Found installed" msgstr "Найдено установлененное" -#: src/Common/LinuxKernel.vala:735 src/Gtk/MainWindow.vala:522 +#: src/Common/LinuxKernel.vala:741 src/Gtk/MainWindow.vala:522 #: src/Gtk/MainWindow.vala:535 msgid "Running" msgstr "Используется" -#: src/Common/LinuxKernel.vala:736 +#: src/Common/LinuxKernel.vala:742 msgid "Installed" msgstr "Установлено" -#: src/Common/LinuxKernel.vala:737 +#: src/Common/LinuxKernel.vala:743 msgid "Invalid" msgstr "Негодный" -#: src/Common/LinuxKernel.vala:811 +#: src/Common/LinuxKernel.vala:817 msgid "Packages Available" msgstr "Доступные пакеты" -#: src/Common/LinuxKernel.vala:817 +#: src/Common/LinuxKernel.vala:823 msgid "Packages Installed" msgstr "Установленные пакеты" -#: src/Common/LinuxKernel.vala:839 src/lib/TeeJee.FileSystem.vala:118 +#: src/Common/LinuxKernel.vala:847 src/lib/TeeJee.FileSystem.vala:118 msgid "File not found" msgstr "Файл не найден" -#: src/Common/LinuxKernel.vala:910 +#: src/Common/LinuxKernel.vala:947 msgid "Available Kernels" msgstr "Доступные ядра" -#: src/Common/LinuxKernel.vala:947 +#: src/Common/LinuxKernel.vala:984 msgid "enabled" msgstr "включено" -#: src/Common/LinuxKernel.vala:971 +#: src/Common/LinuxKernel.vala:1008 msgid "Downloading" msgstr "Загрузки" -#: src/Common/LinuxKernel.vala:992 +#: src/Common/LinuxKernel.vala:1029 msgid "is already installed." msgstr "уже установлен." -#: src/Common/LinuxKernel.vala:1022 +#: src/Common/LinuxKernel.vala:1059 msgid "Uninstalling selected kernels" msgstr "Удаление выбранных ядер" -#: src/Common/LinuxKernel.vala:1028 +#: src/Common/LinuxKernel.vala:1065 msgid "requested" msgstr "запрошено" -#: src/Common/LinuxKernel.vala:1031 +#: src/Common/LinuxKernel.vala:1068 msgid "not uninstalling the currently running kernel" msgstr "не удаляет текущее работающее ядро" -#: src/Common/LinuxKernel.vala:1047 +#: src/Common/LinuxKernel.vala:1084 msgid "found" msgstr "найдено" -#: src/Common/LinuxKernel.vala:1050 +#: src/Common/LinuxKernel.vala:1087 msgid "No packages to un-install!" msgstr "Нет пакетов для удаления!" -#: src/Common/LinuxKernel.vala:1098 +#: src/Common/LinuxKernel.vala:1135 msgid "Could not find running kernel in list" msgstr "Could not find running kernel in list" -#: src/Common/LinuxKernel.vala:1103 +#: src/Common/LinuxKernel.vala:1140 msgid "Could not find any kernels to uninstall" msgstr "Не удалось найти ядра для деинсталляции" -#: src/Common/LinuxKernel.vala:1111 +#: src/Common/LinuxKernel.vala:1148 msgid "The following kernels will be uninstalled" msgstr "Следующие ядра будут удалены" -#: src/Common/LinuxKernel.vala:1115 +#: src/Common/LinuxKernel.vala:1152 msgid "Continue ?" msgstr "Продолжить ?" -#: src/Common/LinuxKernel.vala:1137 src/Console/AppConsole.vala:292 +#: src/Common/LinuxKernel.vala:1174 src/Console/AppConsole.vala:292 msgid "Latest update" msgstr "Последнее обновление" -#: src/Common/LinuxKernel.vala:1148 src/Console/AppConsole.vala:299 +#: src/Common/LinuxKernel.vala:1185 src/Console/AppConsole.vala:299 msgid "Latest point update" msgstr "Последнее обновление пунктов" -#: src/Common/LinuxKernel.vala:1156 src/Console/AppConsole.vala:304 +#: src/Common/LinuxKernel.vala:1193 src/Console/AppConsole.vala:304 #: src/Console/AppConsole.vala:320 msgid "No updates found" msgstr "Обновлений не найдено" -#: src/Common/LinuxKernel.vala:1165 +#: src/Common/LinuxKernel.vala:1202 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Установить версию ядра %s ? (y/n): " diff --git a/po/sv.po b/po/sv.po index 3d16a692..03b20878 100644 --- a/po/sv.po +++ b/po/sv.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-04-15 12:22-0400\n" +"POT-Creation-Date: 2023-05-20 06:35-0400\n" "PO-Revision-Date: 2018-01-13 16:56+0100\n" "Last-Translator: Åke Engelbrektson \n" "Language-Team:Swedish\n" @@ -13,141 +13,141 @@ msgstr "" "X-Generator: Poedit 1.8.7.1\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: src/Common/LinuxKernel.vala:102 +#: src/Common/LinuxKernel.vala:103 msgid "Distribution" msgstr "Distribution" -#: src/Common/LinuxKernel.vala:117 +#: src/Common/LinuxKernel.vala:118 msgid "Architecture" msgstr "Arkitektur" -#: src/Common/LinuxKernel.vala:132 +#: src/Common/LinuxKernel.vala:133 msgid "Running kernel" msgstr "Löpande kernel" -#: src/Common/LinuxKernel.vala:255 +#: src/Common/LinuxKernel.vala:258 msgid "loading cached" msgstr "laddar cachelagrat" -#: src/Common/LinuxKernel.vala:269 +#: src/Common/LinuxKernel.vala:270 msgid "queuing download" msgstr "köbildning nedladdning" -#: src/Common/LinuxKernel.vala:292 +#: src/Common/LinuxKernel.vala:291 msgid "Fetching individual kernel indexes" msgstr "Hämta enskilda kernelindex" -#: src/Common/LinuxKernel.vala:308 +#: src/Common/LinuxKernel.vala:307 msgid "loading downloaded" msgstr "laddar nedladdad" -#: src/Common/LinuxKernel.vala:343 +#: src/Common/LinuxKernel.vala:342 msgid "Updating from" msgstr "Uppdatering från" -#: src/Common/LinuxKernel.vala:351 +#: src/Common/LinuxKernel.vala:350 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:354 +#: src/Common/LinuxKernel.vala:353 msgid "FAILED" msgstr "MISSLYCKADES" -#: src/Common/LinuxKernel.vala:397 +#: src/Common/LinuxKernel.vala:403 msgid "Found installed" msgstr "Hittade installerat" -#: src/Common/LinuxKernel.vala:735 src/Gtk/MainWindow.vala:522 +#: src/Common/LinuxKernel.vala:741 src/Gtk/MainWindow.vala:522 #: src/Gtk/MainWindow.vala:535 msgid "Running" msgstr "Körs" -#: src/Common/LinuxKernel.vala:736 +#: src/Common/LinuxKernel.vala:742 msgid "Installed" msgstr "Installerad" -#: src/Common/LinuxKernel.vala:737 +#: src/Common/LinuxKernel.vala:743 msgid "Invalid" msgstr "Ogiltig" -#: src/Common/LinuxKernel.vala:811 +#: src/Common/LinuxKernel.vala:817 msgid "Packages Available" msgstr "Tillgängliga paket" -#: src/Common/LinuxKernel.vala:817 +#: src/Common/LinuxKernel.vala:823 msgid "Packages Installed" msgstr "Installerade paket" -#: src/Common/LinuxKernel.vala:839 src/lib/TeeJee.FileSystem.vala:118 +#: src/Common/LinuxKernel.vala:847 src/lib/TeeJee.FileSystem.vala:118 msgid "File not found" msgstr "Filen kan inte hittas" -#: src/Common/LinuxKernel.vala:910 +#: src/Common/LinuxKernel.vala:947 msgid "Available Kernels" msgstr "Tillgängliga kärnor" -#: src/Common/LinuxKernel.vala:947 +#: src/Common/LinuxKernel.vala:984 msgid "enabled" msgstr "aktiverat" -#: src/Common/LinuxKernel.vala:971 +#: src/Common/LinuxKernel.vala:1008 msgid "Downloading" msgstr "Ladda ner" -#: src/Common/LinuxKernel.vala:992 +#: src/Common/LinuxKernel.vala:1029 msgid "is already installed." msgstr "är redan installerat." -#: src/Common/LinuxKernel.vala:1022 +#: src/Common/LinuxKernel.vala:1059 msgid "Uninstalling selected kernels" msgstr "Avinstallera valda kärnor" -#: src/Common/LinuxKernel.vala:1028 +#: src/Common/LinuxKernel.vala:1065 msgid "requested" msgstr "begärd" -#: src/Common/LinuxKernel.vala:1031 +#: src/Common/LinuxKernel.vala:1068 msgid "not uninstalling the currently running kernel" msgstr "Avinstallera inte den kärna som körs, för närvarande" -#: src/Common/LinuxKernel.vala:1047 +#: src/Common/LinuxKernel.vala:1084 msgid "found" msgstr "grunda" -#: src/Common/LinuxKernel.vala:1050 +#: src/Common/LinuxKernel.vala:1087 msgid "No packages to un-install!" msgstr "Inga paket att avinstallera!" -#: src/Common/LinuxKernel.vala:1098 +#: src/Common/LinuxKernel.vala:1135 msgid "Could not find running kernel in list" msgstr "Det gick inte att hitta kernel som körs i listan" -#: src/Common/LinuxKernel.vala:1103 +#: src/Common/LinuxKernel.vala:1140 msgid "Could not find any kernels to uninstall" msgstr "Det gick inte att hitta några kärnor att avinstallera" -#: src/Common/LinuxKernel.vala:1111 +#: src/Common/LinuxKernel.vala:1148 msgid "The following kernels will be uninstalled" msgstr "Följande kärnor kommer att avinstalleras" -#: src/Common/LinuxKernel.vala:1115 +#: src/Common/LinuxKernel.vala:1152 msgid "Continue ?" msgstr "Fortsätta?" -#: src/Common/LinuxKernel.vala:1137 src/Console/AppConsole.vala:292 +#: src/Common/LinuxKernel.vala:1174 src/Console/AppConsole.vala:292 msgid "Latest update" msgstr "Senaste uppdatering" -#: src/Common/LinuxKernel.vala:1148 src/Console/AppConsole.vala:299 +#: src/Common/LinuxKernel.vala:1185 src/Console/AppConsole.vala:299 msgid "Latest point update" msgstr "Senaste punktuppdatering" -#: src/Common/LinuxKernel.vala:1156 src/Console/AppConsole.vala:304 +#: src/Common/LinuxKernel.vala:1193 src/Console/AppConsole.vala:304 #: src/Console/AppConsole.vala:320 msgid "No updates found" msgstr "Inga uppdateringar hittades" -#: src/Common/LinuxKernel.vala:1165 +#: src/Common/LinuxKernel.vala:1202 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Installera kärnversion %s ? (j/n):" diff --git a/po/tr.po b/po/tr.po index 77d431eb..34279fdf 100644 --- a/po/tr.po +++ b/po/tr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-04-15 12:22-0400\n" +"POT-Creation-Date: 2023-05-20 06:35-0400\n" "PO-Revision-Date: 2022-08-06 16:48+0300\n" "Last-Translator: Sabri Ünal \n" "Language-Team: Turkish\n" @@ -13,142 +13,142 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Poedit 3.1.1\n" -#: src/Common/LinuxKernel.vala:102 +#: src/Common/LinuxKernel.vala:103 msgid "Distribution" msgstr "Dağıtım" -#: src/Common/LinuxKernel.vala:117 +#: src/Common/LinuxKernel.vala:118 msgid "Architecture" msgstr "Sistem mimarisi" -#: src/Common/LinuxKernel.vala:132 +#: src/Common/LinuxKernel.vala:133 msgid "Running kernel" msgstr "Çalışan çekirdek" -#: src/Common/LinuxKernel.vala:255 +#: src/Common/LinuxKernel.vala:258 msgid "loading cached" msgstr "önbelleğe alınmış yükleme" -#: src/Common/LinuxKernel.vala:269 +#: src/Common/LinuxKernel.vala:270 msgid "queuing download" msgstr "kuyruğa alma indirme" -#: src/Common/LinuxKernel.vala:292 +#: src/Common/LinuxKernel.vala:291 msgid "Fetching individual kernel indexes" msgstr "Tek tek çekirdek dizinlerini alma" -#: src/Common/LinuxKernel.vala:308 +#: src/Common/LinuxKernel.vala:307 msgid "loading downloaded" msgstr "indirilen yükleniyor" -#: src/Common/LinuxKernel.vala:343 +#: src/Common/LinuxKernel.vala:342 msgid "Updating from" msgstr "Şuradan güncelleniyor" -#: src/Common/LinuxKernel.vala:351 +#: src/Common/LinuxKernel.vala:350 msgid "OK" msgstr "Tamam" -#: src/Common/LinuxKernel.vala:354 +#: src/Common/LinuxKernel.vala:353 msgid "FAILED" msgstr "BAŞARISIZ" -#: src/Common/LinuxKernel.vala:397 +#: src/Common/LinuxKernel.vala:403 msgid "Found installed" msgstr "Yüklü bulundu" -#: src/Common/LinuxKernel.vala:735 src/Gtk/MainWindow.vala:522 +#: src/Common/LinuxKernel.vala:741 src/Gtk/MainWindow.vala:522 #: src/Gtk/MainWindow.vala:535 msgid "Running" msgstr "Çalışıyor" -#: src/Common/LinuxKernel.vala:736 +#: src/Common/LinuxKernel.vala:742 msgid "Installed" msgstr "Kurulu" -#: src/Common/LinuxKernel.vala:737 +#: src/Common/LinuxKernel.vala:743 msgid "Invalid" msgstr "Geçersiz" -#: src/Common/LinuxKernel.vala:811 +#: src/Common/LinuxKernel.vala:817 msgid "Packages Available" msgstr "Mevcut Paketler" -#: src/Common/LinuxKernel.vala:817 +#: src/Common/LinuxKernel.vala:823 msgid "Packages Installed" msgstr "Kurulu Paketler" -#: src/Common/LinuxKernel.vala:839 src/lib/TeeJee.FileSystem.vala:118 +#: src/Common/LinuxKernel.vala:847 src/lib/TeeJee.FileSystem.vala:118 msgid "File not found" msgstr "Dosya bulunamadı" -#: src/Common/LinuxKernel.vala:910 +#: src/Common/LinuxKernel.vala:947 msgid "Available Kernels" msgstr "Mevcut Çekirdekler" -#: src/Common/LinuxKernel.vala:947 +#: src/Common/LinuxKernel.vala:984 msgid "enabled" msgstr "etkin" -#: src/Common/LinuxKernel.vala:971 +#: src/Common/LinuxKernel.vala:1008 msgid "Downloading" msgstr "Indiriyor" -#: src/Common/LinuxKernel.vala:992 +#: src/Common/LinuxKernel.vala:1029 msgid "is already installed." msgstr "zaten yüklü." -#: src/Common/LinuxKernel.vala:1022 +#: src/Common/LinuxKernel.vala:1059 msgid "Uninstalling selected kernels" msgstr "Seçili çekirdekleri kaldırma" -#: src/Common/LinuxKernel.vala:1028 +#: src/Common/LinuxKernel.vala:1065 msgid "requested" msgstr "istenen" -#: src/Common/LinuxKernel.vala:1031 +#: src/Common/LinuxKernel.vala:1068 msgid "not uninstalling the currently running kernel" msgstr "çalışmakta olan çekirdeğin kaldırılmaması" -#: src/Common/LinuxKernel.vala:1047 +#: src/Common/LinuxKernel.vala:1084 msgid "found" msgstr "kurmak" -#: src/Common/LinuxKernel.vala:1050 +#: src/Common/LinuxKernel.vala:1087 msgid "No packages to un-install!" msgstr "Kaldırılacak paket yok!" -#: src/Common/LinuxKernel.vala:1098 +#: src/Common/LinuxKernel.vala:1135 msgid "Could not find running kernel in list" msgstr "Listede çalışan çekirdek bulunamadı" -#: src/Common/LinuxKernel.vala:1103 +#: src/Common/LinuxKernel.vala:1140 msgid "Could not find any kernels to uninstall" msgstr "Kaldırılacak çekirdek bulunamadı" -#: src/Common/LinuxKernel.vala:1111 +#: src/Common/LinuxKernel.vala:1148 msgid "The following kernels will be uninstalled" msgstr "Aşağıdaki çekirdekler kaldırılacaktır" -#: src/Common/LinuxKernel.vala:1115 +#: src/Common/LinuxKernel.vala:1152 msgid "Continue ?" msgstr "Devam edilsin mi?" -#: src/Common/LinuxKernel.vala:1137 src/Console/AppConsole.vala:292 +#: src/Common/LinuxKernel.vala:1174 src/Console/AppConsole.vala:292 msgid "Latest update" msgstr "Son güncelleme" # Point burada point release anlamında kullanılıyor. Örneğin 5.10.x sayısının en sonundaki x rakamı point release/nokta sürüm oluyor. -#: src/Common/LinuxKernel.vala:1148 src/Console/AppConsole.vala:299 +#: src/Common/LinuxKernel.vala:1185 src/Console/AppConsole.vala:299 msgid "Latest point update" msgstr "Son nokta güncellemesi" -#: src/Common/LinuxKernel.vala:1156 src/Console/AppConsole.vala:304 +#: src/Common/LinuxKernel.vala:1193 src/Console/AppConsole.vala:304 #: src/Console/AppConsole.vala:320 msgid "No updates found" msgstr "Güncelleme bulunamadı" -#: src/Common/LinuxKernel.vala:1165 +#: src/Common/LinuxKernel.vala:1202 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Linux Çekirdek Sürümü %s Kurulsun mu? (e/h): " diff --git a/po/uk.po b/po/uk.po index 8c733481..fc2acdb6 100644 --- a/po/uk.po +++ b/po/uk.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-04-15 12:22-0400\n" +"POT-Creation-Date: 2023-05-20 06:35-0400\n" "PO-Revision-Date: 2019-07-25 11:00+0300\n" "Last-Translator: Serhii Golovko \n" "Language-Team: Ukranian\n" @@ -13,141 +13,141 @@ msgstr "" "X-Launchpad-Export-Date: 2016-12-13 11:48+0000\n" "X-Generator: Poedit 2.2.1\n" -#: src/Common/LinuxKernel.vala:102 +#: src/Common/LinuxKernel.vala:103 msgid "Distribution" msgstr "Дистрибутив" -#: src/Common/LinuxKernel.vala:117 +#: src/Common/LinuxKernel.vala:118 msgid "Architecture" msgstr "Системна архитектура" -#: src/Common/LinuxKernel.vala:132 +#: src/Common/LinuxKernel.vala:133 msgid "Running kernel" msgstr "Запуск ядра" -#: src/Common/LinuxKernel.vala:255 +#: src/Common/LinuxKernel.vala:258 msgid "loading cached" msgstr "Завантаження кешованого" -#: src/Common/LinuxKernel.vala:269 +#: src/Common/LinuxKernel.vala:270 msgid "queuing download" msgstr "Черга завантаження" -#: src/Common/LinuxKernel.vala:292 +#: src/Common/LinuxKernel.vala:291 msgid "Fetching individual kernel indexes" msgstr "Вибірка окремих індексів ядра" -#: src/Common/LinuxKernel.vala:308 +#: src/Common/LinuxKernel.vala:307 msgid "loading downloaded" msgstr "Завантаження завантаженого" -#: src/Common/LinuxKernel.vala:343 +#: src/Common/LinuxKernel.vala:342 msgid "Updating from" msgstr "Оновлення з" -#: src/Common/LinuxKernel.vala:351 +#: src/Common/LinuxKernel.vala:350 msgid "OK" msgstr "Добре" -#: src/Common/LinuxKernel.vala:354 +#: src/Common/LinuxKernel.vala:353 msgid "FAILED" msgstr "НЕ ВДАЛОСЯ" -#: src/Common/LinuxKernel.vala:397 +#: src/Common/LinuxKernel.vala:403 msgid "Found installed" msgstr "Знайдено встановленим" -#: src/Common/LinuxKernel.vala:735 src/Gtk/MainWindow.vala:522 +#: src/Common/LinuxKernel.vala:741 src/Gtk/MainWindow.vala:522 #: src/Gtk/MainWindow.vala:535 msgid "Running" msgstr "Використовується" -#: src/Common/LinuxKernel.vala:736 +#: src/Common/LinuxKernel.vala:742 msgid "Installed" msgstr "Встановлено" -#: src/Common/LinuxKernel.vala:737 +#: src/Common/LinuxKernel.vala:743 msgid "Invalid" msgstr "Інвалід" -#: src/Common/LinuxKernel.vala:811 +#: src/Common/LinuxKernel.vala:817 msgid "Packages Available" msgstr "Доступні пакети" -#: src/Common/LinuxKernel.vala:817 +#: src/Common/LinuxKernel.vala:823 msgid "Packages Installed" msgstr "Встановлені пакети" -#: src/Common/LinuxKernel.vala:839 src/lib/TeeJee.FileSystem.vala:118 +#: src/Common/LinuxKernel.vala:847 src/lib/TeeJee.FileSystem.vala:118 msgid "File not found" msgstr "Файл не знайдено" -#: src/Common/LinuxKernel.vala:910 +#: src/Common/LinuxKernel.vala:947 msgid "Available Kernels" msgstr "Доступні ядра" -#: src/Common/LinuxKernel.vala:947 +#: src/Common/LinuxKernel.vala:984 msgid "enabled" msgstr "увімкнено" -#: src/Common/LinuxKernel.vala:971 +#: src/Common/LinuxKernel.vala:1008 msgid "Downloading" msgstr "Завантаження" -#: src/Common/LinuxKernel.vala:992 +#: src/Common/LinuxKernel.vala:1029 msgid "is already installed." msgstr "вже встановлено." -#: src/Common/LinuxKernel.vala:1022 +#: src/Common/LinuxKernel.vala:1059 msgid "Uninstalling selected kernels" msgstr "Видаліть конкретні ядра" -#: src/Common/LinuxKernel.vala:1028 +#: src/Common/LinuxKernel.vala:1065 msgid "requested" msgstr "запитуваний" -#: src/Common/LinuxKernel.vala:1031 +#: src/Common/LinuxKernel.vala:1068 msgid "not uninstalling the currently running kernel" msgstr "не видалятиме поточне запущене ядро" -#: src/Common/LinuxKernel.vala:1047 +#: src/Common/LinuxKernel.vala:1084 msgid "found" msgstr "знайдено" -#: src/Common/LinuxKernel.vala:1050 +#: src/Common/LinuxKernel.vala:1087 msgid "No packages to un-install!" msgstr "Немає пакетів для видалення!" -#: src/Common/LinuxKernel.vala:1098 +#: src/Common/LinuxKernel.vala:1135 msgid "Could not find running kernel in list" msgstr "Не вдалося знайти запущене ядро у списку!" -#: src/Common/LinuxKernel.vala:1103 +#: src/Common/LinuxKernel.vala:1140 msgid "Could not find any kernels to uninstall" msgstr "Не вдалося знайти жодне ядро для вилучення" -#: src/Common/LinuxKernel.vala:1111 +#: src/Common/LinuxKernel.vala:1148 msgid "The following kernels will be uninstalled" msgstr "Наступні ядра будуть видалені" -#: src/Common/LinuxKernel.vala:1115 +#: src/Common/LinuxKernel.vala:1152 msgid "Continue ?" msgstr "Продовжувати ?" -#: src/Common/LinuxKernel.vala:1137 src/Console/AppConsole.vala:292 +#: src/Common/LinuxKernel.vala:1174 src/Console/AppConsole.vala:292 msgid "Latest update" msgstr "Останнє оновлення" -#: src/Common/LinuxKernel.vala:1148 src/Console/AppConsole.vala:299 +#: src/Common/LinuxKernel.vala:1185 src/Console/AppConsole.vala:299 msgid "Latest point update" msgstr "Остання точка оновлення" -#: src/Common/LinuxKernel.vala:1156 src/Console/AppConsole.vala:304 +#: src/Common/LinuxKernel.vala:1193 src/Console/AppConsole.vala:304 #: src/Console/AppConsole.vala:320 msgid "No updates found" msgstr "Оновлень не знайдено" -#: src/Common/LinuxKernel.vala:1165 +#: src/Common/LinuxKernel.vala:1202 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Встановити Ядро Версії %s ? (так/ні): " diff --git a/src/Common/LinuxKernel.vala b/src/Common/LinuxKernel.vala index 255f513c..ad36d4fa 100644 --- a/src/Common/LinuxKernel.vala +++ b/src/Common/LinuxKernel.vala @@ -28,6 +28,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { public bool is_running = false; public bool is_mainline = false; public int ppa_dirs_ver = 0; // 0 = not set, 1 = old single dirs, 2 = new // subdirs + public int64 ppa_datetime = -1; // timestamp from the main index public string deb_header = ""; public string deb_header_all = ""; @@ -250,11 +251,12 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { if (cancelled) break; // skip some kernels for various reasons + + // load the cached index before checking is_invalid + // because we may discover that the cached invalid status is out of date if (k.cached_page_exists) { - // load the index.html files we already had in cache vprint(_("loading cached")+" "+k.version_main,3); - k.load_cached_page(); - continue; + if (k.load_cached_page()) continue; } if (k.is_invalid) continue; @@ -264,11 +266,8 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { if (App.hide_unstable && k.is_unstable) continue; } - //log_debug(k.version_main+" "+_("GET")); - - vprint(_("queuing download")+" "+k.version_main,3); - // add index.html to download list + vprint(_("queuing download")+" "+k.version_main,3); var item = new DownloadItem(k.cached_page_uri, file_parent(k.cached_page), file_basename(k.cached_page)); downloads.add(item); @@ -365,7 +364,8 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { kernel_list.clear(); try { - var rex = new Regex("""v([a-zA-Z0-9\-._]+)[\/]*<\/a>"""); +// [DIR]v2.6.27.61/2018-05-13 20:40 -   + var rex = new Regex("""v([a-zA-Z0-9\-._]+)[\/]*<\/a>.*>([0-9]{4})-([0-9]{2})-([0-9]{2}) ([0-9]{2}):([0-9]{2}) *<"""); // v3.1.8-precise/ // ###fetch(1)#### ##fetch(2)### @@ -375,6 +375,12 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { if (!rex.match(line, 0, out match)) continue; var k = new LinuxKernel(match.fetch(1), true); kernel_list.add(k); + + // "...2018-05-13 20:40 ..." -> 201805132040 + // kernel date/time from main index converted to int + // used to detect kernel that changed after we cached it + k.ppa_datetime = int64.parse(match.fetch(3)+match.fetch(4)+match.fetch(5)+match.fetch(6)+match.fetch(7)); + vprint("kernel_list.add("+k.kname+")",3); } @@ -821,11 +827,13 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { // load - private void load_cached_page() { + private bool load_cached_page() { vprint("load_cached_page(): '"+cached_page+"'",4); string txt = ""; var url_list = new Gee.HashMap(); + int64 d_this = 0; + int64 d_max = 0; deb_image = ""; deb_header = ""; deb_header_all = ""; @@ -837,16 +845,44 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { if (!file_exists(cached_page)) { vprint("load_cached_page(): " + _("File not found") + ": "+cached_page,1,stderr); - return; + return false; + } + + + // parse index.html -------------------------- + txt = file_read(cached_page); + + // find the highest datetime anywhere in the cached index + //[TXT]HEADER.html2023-05-11 23:21 5.6K  + //[DIR]amd64/2023-05-11 22:30 -   + try { + var rex = new Regex(""">([0-9]{4})-([0-9]{2})-([0-9]{2}) ([0-9]{2}):([0-9]{2}) *<"""); + MatchInfo match; + foreach (string line in txt.split("\n")) { + if (rex.match(line, 0, out match)) { + d_this = int64.parse(match.fetch(1)+match.fetch(2)+match.fetch(3)+match.fetch(4)+match.fetch(5)); + if (d_this>d_max) d_max = d_this; + } + } + } catch (Error e) { + vprint(e.message,1,stderr); + } + + // if datetime from main index is newer than the latest cached datetime, + // delete the cached index and status, keep the notes, return false + if (ppa_datetime>d_max) { + file_delete(cached_page); + file_delete(cached_status_file); + file_delete(cached_checksums_file); + return false; } // skip if we already know it's a failed build - if (is_invalid) return; + if (is_invalid) return true; if (file_exists(notes_file)) notes = file_read(notes_file).strip(); - // parse index.html -------------------------- - txt = file_read(cached_page); + // scan for urls to .deb files try { ////same deb name// var rex = new Regex("""([a-zA-Z0-9\-\._/]+\.deb)<\/a>"""); @@ -897,10 +933,11 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { // if ((deb_header.length == 0) || (deb_header_all.length == 0) || (deb_image.length == 0)) if (deb_image.length<1 || url_list.size<1) mark_invalid(); - if (is_invalid) return; + if (is_invalid) return true; deb_url_list = url_list; + return true; } // actions From 2d856f9fb33cf79ba0135004dfc3c3efcbe41ecf Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Mon, 22 May 2023 14:00:08 -0400 Subject: [PATCH 321/567] don't store user data (notes, upcoming flags) in cache --- po/de.po | 114 ++++++++++++++++++------------------ po/el.po | 114 ++++++++++++++++++------------------ po/es.po | 114 ++++++++++++++++++------------------ po/fr.po | 114 ++++++++++++++++++------------------ po/hr.po | 114 ++++++++++++++++++------------------ po/it.po | 114 ++++++++++++++++++------------------ po/ko.po | 114 ++++++++++++++++++------------------ po/messages.pot | 114 ++++++++++++++++++------------------ po/nl.po | 114 ++++++++++++++++++------------------ po/pl.po | 114 ++++++++++++++++++------------------ po/ru.po | 114 ++++++++++++++++++------------------ po/sv.po | 114 ++++++++++++++++++------------------ po/tr.po | 114 ++++++++++++++++++------------------ po/uk.po | 114 ++++++++++++++++++------------------ src/Common/LinuxKernel.vala | 33 ++++++----- src/Common/Main.vala | 36 +++++------- src/Gtk/MainWindow.vala | 3 +- 17 files changed, 833 insertions(+), 835 deletions(-) diff --git a/po/de.po b/po/de.po index ce8dfe2b..88b03fbb 100644 --- a/po/de.po +++ b/po/de.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-20 06:35-0400\n" +"POT-Creation-Date: 2023-05-22 13:54-0400\n" "PO-Revision-Date: 2023-02-20 18:40+0100\n" "Last-Translator: Marvin Meysel \n" "Language-Team: German\n" @@ -13,160 +13,160 @@ msgstr "" "X-Launchpad-Export-Date: 2017-04-13 11:48+0000\n" "X-Generator: Poedit 3.1.1\n" -#: src/Common/LinuxKernel.vala:103 +#: src/Common/LinuxKernel.vala:104 msgid "Distribution" msgstr "Distribution" -#: src/Common/LinuxKernel.vala:118 +#: src/Common/LinuxKernel.vala:119 msgid "Architecture" msgstr "Architektur" -#: src/Common/LinuxKernel.vala:133 +#: src/Common/LinuxKernel.vala:134 msgid "Running kernel" msgstr "Laufender kernel" -#: src/Common/LinuxKernel.vala:258 +#: src/Common/LinuxKernel.vala:259 msgid "loading cached" msgstr "laden gecached" -#: src/Common/LinuxKernel.vala:270 +#: src/Common/LinuxKernel.vala:271 msgid "queuing download" msgstr "download der warteschlange" -#: src/Common/LinuxKernel.vala:291 +#: src/Common/LinuxKernel.vala:292 msgid "Fetching individual kernel indexes" msgstr "Abrufen einzelner Kernel-Indizes" -#: src/Common/LinuxKernel.vala:307 +#: src/Common/LinuxKernel.vala:308 msgid "loading downloaded" msgstr "laden von heruntergeladenen Dateien" -#: src/Common/LinuxKernel.vala:342 +#: src/Common/LinuxKernel.vala:343 msgid "Updating from" msgstr "Aktualisieren von" -#: src/Common/LinuxKernel.vala:350 +#: src/Common/LinuxKernel.vala:351 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:353 +#: src/Common/LinuxKernel.vala:354 msgid "FAILED" msgstr "MISSLUNGEN" -#: src/Common/LinuxKernel.vala:403 +#: src/Common/LinuxKernel.vala:404 msgid "Found installed" msgstr "Installiert gefunden" -#: src/Common/LinuxKernel.vala:741 src/Gtk/MainWindow.vala:522 -#: src/Gtk/MainWindow.vala:535 +#: src/Common/LinuxKernel.vala:742 src/Gtk/MainWindow.vala:523 +#: src/Gtk/MainWindow.vala:536 msgid "Running" msgstr "Läuft" -#: src/Common/LinuxKernel.vala:742 +#: src/Common/LinuxKernel.vala:743 msgid "Installed" msgstr "Installiert" -#: src/Common/LinuxKernel.vala:743 +#: src/Common/LinuxKernel.vala:744 msgid "Invalid" msgstr "Ungültig" -#: src/Common/LinuxKernel.vala:817 +#: src/Common/LinuxKernel.vala:824 msgid "Packages Available" msgstr "Verfügbare Pakete" -#: src/Common/LinuxKernel.vala:823 +#: src/Common/LinuxKernel.vala:830 msgid "Packages Installed" msgstr "Installierte Pakete" -#: src/Common/LinuxKernel.vala:847 src/lib/TeeJee.FileSystem.vala:118 +#: src/Common/LinuxKernel.vala:858 src/lib/TeeJee.FileSystem.vala:118 msgid "File not found" msgstr "Datei nicht gefunden " -#: src/Common/LinuxKernel.vala:947 +#: src/Common/LinuxKernel.vala:948 msgid "Available Kernels" msgstr "Verfügbare Kernel" -#: src/Common/LinuxKernel.vala:984 +#: src/Common/LinuxKernel.vala:985 msgid "enabled" msgstr "ermöglichte" -#: src/Common/LinuxKernel.vala:1008 +#: src/Common/LinuxKernel.vala:1009 msgid "Downloading" msgstr "Laden" -#: src/Common/LinuxKernel.vala:1029 +#: src/Common/LinuxKernel.vala:1030 msgid "is already installed." msgstr "ist bereits installiert." -#: src/Common/LinuxKernel.vala:1059 +#: src/Common/LinuxKernel.vala:1060 msgid "Uninstalling selected kernels" msgstr "Deinstallation des angegebenen Kernels" -#: src/Common/LinuxKernel.vala:1065 +#: src/Common/LinuxKernel.vala:1066 msgid "requested" msgstr "angefordert" -#: src/Common/LinuxKernel.vala:1068 +#: src/Common/LinuxKernel.vala:1069 msgid "not uninstalling the currently running kernel" msgstr "Den aktuell laufenden Kernel wird nicht deinstalliert" -#: src/Common/LinuxKernel.vala:1084 +#: src/Common/LinuxKernel.vala:1085 msgid "found" msgstr "gründen" -#: src/Common/LinuxKernel.vala:1087 +#: src/Common/LinuxKernel.vala:1088 msgid "No packages to un-install!" msgstr "Keine Pakete zum Deinstallieren!" -#: src/Common/LinuxKernel.vala:1135 +#: src/Common/LinuxKernel.vala:1136 msgid "Could not find running kernel in list" msgstr "Konnte keinen laufenden Kernel in der Liste finden" -#: src/Common/LinuxKernel.vala:1140 +#: src/Common/LinuxKernel.vala:1141 msgid "Could not find any kernels to uninstall" msgstr "Es konnten keine Kernel zum Deinstallieren gefunden werden" -#: src/Common/LinuxKernel.vala:1148 +#: src/Common/LinuxKernel.vala:1149 msgid "The following kernels will be uninstalled" msgstr "Die folgenden Kernel werden deinstalliert" -#: src/Common/LinuxKernel.vala:1152 +#: src/Common/LinuxKernel.vala:1153 msgid "Continue ?" msgstr "Weiter ?" -#: src/Common/LinuxKernel.vala:1174 src/Console/AppConsole.vala:292 +#: src/Common/LinuxKernel.vala:1175 src/Console/AppConsole.vala:292 msgid "Latest update" msgstr "Neustes Update" -#: src/Common/LinuxKernel.vala:1185 src/Console/AppConsole.vala:299 +#: src/Common/LinuxKernel.vala:1186 src/Console/AppConsole.vala:299 msgid "Latest point update" msgstr "Letzte Punktaktualisierung" -#: src/Common/LinuxKernel.vala:1193 src/Console/AppConsole.vala:304 +#: src/Common/LinuxKernel.vala:1194 src/Console/AppConsole.vala:304 #: src/Console/AppConsole.vala:320 msgid "No updates found" msgstr "Keine Updates gefunden" -#: src/Common/LinuxKernel.vala:1202 +#: src/Common/LinuxKernel.vala:1203 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Kernel-Version %s installieren? (j/n):" -#: src/Common/Main.vala:380 +#: src/Common/Main.vala:376 msgid "Called from" msgstr "Angerufen von" -#: src/Common/Main.vala:380 +#: src/Common/Main.vala:376 msgid "at logon" msgstr "beim start" -#: src/Common/Main.vala:381 +#: src/Common/Main.vala:377 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" "Diese Datei wird überschrieben und erneut ausgeführt, wenn Einstellungen in" -#: src/Common/Main.vala:413 +#: src/Common/Main.vala:409 msgid "Notifications are disabled" msgstr "Benachrichtigungen sind deaktiviert" @@ -216,7 +216,7 @@ msgstr "Angegebenen Mainline-Kernel installieren" msgid "Uninstall specified kernel" msgstr "Deinstallation des angegebenen Kernels" -#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:331 +#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:332 msgid "Uninstall all but the highest installed version" msgstr "Deinstallieren Sie alle bis auf die höchste installierte Version" @@ -312,7 +312,7 @@ msgstr "Kernel %s verfügbar" msgid "Show" msgstr "Zeigen" -#: src/Console/AppConsole.vala:347 src/Gtk/MainWindow.vala:298 +#: src/Console/AppConsole.vala:347 src/Gtk/MainWindow.vala:299 msgid "Install" msgstr "Installieren" @@ -380,23 +380,23 @@ msgstr "Status" msgid "Notes" msgstr "Notizen" -#: src/Gtk/MainWindow.vala:308 +#: src/Gtk/MainWindow.vala:309 msgid "Uninstall" msgstr "Deinstallieren" -#: src/Gtk/MainWindow.vala:319 +#: src/Gtk/MainWindow.vala:320 msgid "Changelog, build status, etc" msgstr "" -#: src/Gtk/MainWindow.vala:330 +#: src/Gtk/MainWindow.vala:331 msgid "Uninstall Old" msgstr "Alte deinstallieren" -#: src/Gtk/MainWindow.vala:336 +#: src/Gtk/MainWindow.vala:337 msgid "Reload" msgstr "Nachladen" -#: src/Gtk/MainWindow.vala:337 +#: src/Gtk/MainWindow.vala:338 msgid "" "Delete cache and reload all kernel info\n" "\n" @@ -406,40 +406,40 @@ msgstr "" "\n" "DADURCH WERDEN AUCH ALLE BENUTZERNOTIZEN GELÖSCHT" -#: src/Gtk/MainWindow.vala:342 src/Gtk/SettingsDialog.vala:49 +#: src/Gtk/MainWindow.vala:343 src/Gtk/SettingsDialog.vala:49 msgid "Settings" msgstr "Einstellungen" -#: src/Gtk/MainWindow.vala:347 +#: src/Gtk/MainWindow.vala:348 msgid "About" msgstr "Über" -#: src/Gtk/MainWindow.vala:352 +#: src/Gtk/MainWindow.vala:353 msgid "Exit" msgstr "Ausgang" -#: src/Gtk/MainWindow.vala:421 +#: src/Gtk/MainWindow.vala:422 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Kernel-Upgrade-Dienstprogramm für Ubuntu-basierte Distributionen" -#: src/Gtk/MainWindow.vala:422 +#: src/Gtk/MainWindow.vala:423 msgid "Forked" msgstr "Gegabelte" -#: src/Gtk/MainWindow.vala:422 +#: src/Gtk/MainWindow.vala:423 msgid "Original" msgstr "Original" -#: src/Gtk/MainWindow.vala:460 +#: src/Gtk/MainWindow.vala:461 msgid "Updating kernels" msgstr "Aktualisieren von Kernels" -#: src/Gtk/MainWindow.vala:531 +#: src/Gtk/MainWindow.vala:532 msgid "available" msgstr "Verfügbar" -#: src/Gtk/MainWindow.vala:574 src/Gtk/MainWindow.vala:615 -#: src/Gtk/MainWindow.vala:650 +#: src/Gtk/MainWindow.vala:575 src/Gtk/MainWindow.vala:616 +#: src/Gtk/MainWindow.vala:651 msgid "DONE" msgstr "FERTIG" diff --git a/po/el.po b/po/el.po index 54bf631a..14aae0ec 100644 --- a/po/el.po +++ b/po/el.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-20 06:35-0400\n" +"POT-Creation-Date: 2023-05-22 13:54-0400\n" "PO-Revision-Date: 2023-01-10 02:03-0600\n" "Last-Translator: Vasilis Kosmidis \n" "Language-Team: Greek\n" @@ -13,161 +13,161 @@ msgstr "" "X-Launchpad-Export-Date: 2017-04-13 11:48+0000\n" "X-Generator: Poedit 2.0.5\n" -#: src/Common/LinuxKernel.vala:103 +#: src/Common/LinuxKernel.vala:104 msgid "Distribution" msgstr "Διανομή" -#: src/Common/LinuxKernel.vala:118 +#: src/Common/LinuxKernel.vala:119 msgid "Architecture" msgstr "Αρχιτεκτονική" -#: src/Common/LinuxKernel.vala:133 +#: src/Common/LinuxKernel.vala:134 msgid "Running kernel" msgstr "Εκτέλεση πυρήνα" -#: src/Common/LinuxKernel.vala:258 +#: src/Common/LinuxKernel.vala:259 msgid "loading cached" msgstr "φόρτωση προσωρινά αποθηκευμένου" -#: src/Common/LinuxKernel.vala:270 +#: src/Common/LinuxKernel.vala:271 msgid "queuing download" msgstr "Προσθήκη λήψης στην ουρά" -#: src/Common/LinuxKernel.vala:291 +#: src/Common/LinuxKernel.vala:292 msgid "Fetching individual kernel indexes" msgstr "Λήψη μεμονωμένων ευρετηρίων πυρήνα" -#: src/Common/LinuxKernel.vala:307 +#: src/Common/LinuxKernel.vala:308 msgid "loading downloaded" msgstr "Φόρτωση λήψης" -#: src/Common/LinuxKernel.vala:342 +#: src/Common/LinuxKernel.vala:343 msgid "Updating from" msgstr "Ενημέρωση από" -#: src/Common/LinuxKernel.vala:350 +#: src/Common/LinuxKernel.vala:351 msgid "OK" msgstr "ΟΚ" -#: src/Common/LinuxKernel.vala:353 +#: src/Common/LinuxKernel.vala:354 msgid "FAILED" msgstr "ΑΠΈΤΥΧΕ" -#: src/Common/LinuxKernel.vala:403 +#: src/Common/LinuxKernel.vala:404 msgid "Found installed" msgstr "Βρέθηκε εγκατεστημένο" -#: src/Common/LinuxKernel.vala:741 src/Gtk/MainWindow.vala:522 -#: src/Gtk/MainWindow.vala:535 +#: src/Common/LinuxKernel.vala:742 src/Gtk/MainWindow.vala:523 +#: src/Gtk/MainWindow.vala:536 msgid "Running" msgstr "Ενεργός" -#: src/Common/LinuxKernel.vala:742 +#: src/Common/LinuxKernel.vala:743 msgid "Installed" msgstr "Εγκατεστημένος" -#: src/Common/LinuxKernel.vala:743 +#: src/Common/LinuxKernel.vala:744 msgid "Invalid" msgstr "Άκυρος" -#: src/Common/LinuxKernel.vala:817 +#: src/Common/LinuxKernel.vala:824 msgid "Packages Available" msgstr "Διαθέσιμα πακέτα" -#: src/Common/LinuxKernel.vala:823 +#: src/Common/LinuxKernel.vala:830 msgid "Packages Installed" msgstr "Εγκατεστημένα πακέτα" -#: src/Common/LinuxKernel.vala:847 src/lib/TeeJee.FileSystem.vala:118 +#: src/Common/LinuxKernel.vala:858 src/lib/TeeJee.FileSystem.vala:118 msgid "File not found" msgstr "Το αρχείο δε βρέθηκε" -#: src/Common/LinuxKernel.vala:947 +#: src/Common/LinuxKernel.vala:948 msgid "Available Kernels" msgstr "Διαθέσιμοι πυρήνες" -#: src/Common/LinuxKernel.vala:984 +#: src/Common/LinuxKernel.vala:985 msgid "enabled" msgstr "ενεργοποιημένη" -#: src/Common/LinuxKernel.vala:1008 +#: src/Common/LinuxKernel.vala:1009 msgid "Downloading" msgstr "Κατέβασμα" -#: src/Common/LinuxKernel.vala:1029 +#: src/Common/LinuxKernel.vala:1030 msgid "is already installed." msgstr "είναι ήδη εγκατεστημένο." -#: src/Common/LinuxKernel.vala:1059 +#: src/Common/LinuxKernel.vala:1060 msgid "Uninstalling selected kernels" msgstr "Απεγκατάσταση επιλεγμένων πυρήνων" -#: src/Common/LinuxKernel.vala:1065 +#: src/Common/LinuxKernel.vala:1066 msgid "requested" msgstr "ζητήθηκε" -#: src/Common/LinuxKernel.vala:1068 +#: src/Common/LinuxKernel.vala:1069 msgid "not uninstalling the currently running kernel" msgstr "δεν θα απεγκαταστήσει τον πυρήνα που εκτελείται αυτήν τη στιγμή" -#: src/Common/LinuxKernel.vala:1084 +#: src/Common/LinuxKernel.vala:1085 msgid "found" msgstr "ιδρύω" -#: src/Common/LinuxKernel.vala:1087 +#: src/Common/LinuxKernel.vala:1088 msgid "No packages to un-install!" msgstr "Δεν υπάρχουν πακέτα για απεγκατάσταση!" -#: src/Common/LinuxKernel.vala:1135 +#: src/Common/LinuxKernel.vala:1136 msgid "Could not find running kernel in list" msgstr "Δεν ήταν δυνατή η εύρεση του πυρήνα που εκτελείται αυτήν τη στιγμή" -#: src/Common/LinuxKernel.vala:1140 +#: src/Common/LinuxKernel.vala:1141 msgid "Could not find any kernels to uninstall" msgstr "Δεν βρέθηκε κανένας πυρήνας για απεγκατάσταση" -#: src/Common/LinuxKernel.vala:1148 +#: src/Common/LinuxKernel.vala:1149 msgid "The following kernels will be uninstalled" msgstr "Θα καταργηθεί η εγκατάσταση των ακόλουθων πυρήνων" -#: src/Common/LinuxKernel.vala:1152 +#: src/Common/LinuxKernel.vala:1153 msgid "Continue ?" msgstr "Συνέχεια;" -#: src/Common/LinuxKernel.vala:1174 src/Console/AppConsole.vala:292 +#: src/Common/LinuxKernel.vala:1175 src/Console/AppConsole.vala:292 msgid "Latest update" msgstr "Τελευταία αναβάθμιση" -#: src/Common/LinuxKernel.vala:1185 src/Console/AppConsole.vala:299 +#: src/Common/LinuxKernel.vala:1186 src/Console/AppConsole.vala:299 msgid "Latest point update" msgstr "Τελευταία ενημέρωση συντήρησης" -#: src/Common/LinuxKernel.vala:1193 src/Console/AppConsole.vala:304 +#: src/Common/LinuxKernel.vala:1194 src/Console/AppConsole.vala:304 #: src/Console/AppConsole.vala:320 msgid "No updates found" msgstr "Δεν βρέθηκαν ενημερώσεις" -#: src/Common/LinuxKernel.vala:1202 +#: src/Common/LinuxKernel.vala:1203 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Εγκατάσταση του πυρήνα έκδοσης %s ; (ν/ό):" -#: src/Common/Main.vala:380 +#: src/Common/Main.vala:376 msgid "Called from" msgstr "Κλήθηκε από" -#: src/Common/Main.vala:380 +#: src/Common/Main.vala:376 msgid "at logon" msgstr "κατά την εκκίνηση" -#: src/Common/Main.vala:381 +#: src/Common/Main.vala:377 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" "Αυτό το αρχείο αντικαθίσταται και εκτελείται ξανά κάθε φορά που " "αποθηκεύονται οι ρυθμίσεις στο" -#: src/Common/Main.vala:413 +#: src/Common/Main.vala:409 msgid "Notifications are disabled" msgstr "Οι ειδοποιήσεις είναι απενεργοποιημένες" @@ -216,7 +216,7 @@ msgstr "Εγκατάσταση του καθορισμένου mainline πυρή msgid "Uninstall specified kernel" msgstr "Απεγκατάσταση του καθορισμένου πυρήνα" -#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:331 +#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:332 msgid "Uninstall all but the highest installed version" msgstr "Απεγκαταστήστε όλες εκτός από την υψηλότερη εγκατεστημένη έκδοση" @@ -312,7 +312,7 @@ msgstr "Πυρήνας %s διαθέσιμος" msgid "Show" msgstr "Προβολή" -#: src/Console/AppConsole.vala:347 src/Gtk/MainWindow.vala:298 +#: src/Console/AppConsole.vala:347 src/Gtk/MainWindow.vala:299 msgid "Install" msgstr "Εγκατάσταση" @@ -380,23 +380,23 @@ msgstr "Κατάσταση" msgid "Notes" msgstr "Σημειώσεις" -#: src/Gtk/MainWindow.vala:308 +#: src/Gtk/MainWindow.vala:309 msgid "Uninstall" msgstr "Απεγκατάσταση" -#: src/Gtk/MainWindow.vala:319 +#: src/Gtk/MainWindow.vala:320 msgid "Changelog, build status, etc" msgstr "" -#: src/Gtk/MainWindow.vala:330 +#: src/Gtk/MainWindow.vala:331 msgid "Uninstall Old" msgstr "Απεγκατάσταση παλαιών" -#: src/Gtk/MainWindow.vala:336 +#: src/Gtk/MainWindow.vala:337 msgid "Reload" msgstr "Δροσίζω" -#: src/Gtk/MainWindow.vala:337 +#: src/Gtk/MainWindow.vala:338 msgid "" "Delete cache and reload all kernel info\n" "\n" @@ -406,40 +406,40 @@ msgstr "" "\n" "ΑΥΤΌ ΘΑ ΔΙΑΓΡΆΨΕΙ ΕΠΊΣΗΣ ΌΛΕΣ ΤΙΣ ΣΗΜΕΙΏΣΕΙΣ ΧΡΉΣΤΗ" -#: src/Gtk/MainWindow.vala:342 src/Gtk/SettingsDialog.vala:49 +#: src/Gtk/MainWindow.vala:343 src/Gtk/SettingsDialog.vala:49 msgid "Settings" msgstr "Ρυθμίσεις" -#: src/Gtk/MainWindow.vala:347 +#: src/Gtk/MainWindow.vala:348 msgid "About" msgstr "Σχετικά" -#: src/Gtk/MainWindow.vala:352 +#: src/Gtk/MainWindow.vala:353 msgid "Exit" msgstr "Έξοδος" -#: src/Gtk/MainWindow.vala:421 +#: src/Gtk/MainWindow.vala:422 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Πρόγραμμα αναβάθμισης πυρήνα για διανομές που βασίζονται στο Ubuntu" -#: src/Gtk/MainWindow.vala:422 +#: src/Gtk/MainWindow.vala:423 msgid "Forked" msgstr "Forked" -#: src/Gtk/MainWindow.vala:422 +#: src/Gtk/MainWindow.vala:423 msgid "Original" msgstr "Πρωτότυπο" -#: src/Gtk/MainWindow.vala:460 +#: src/Gtk/MainWindow.vala:461 msgid "Updating kernels" msgstr "Ενημέρωση πυρήνων" -#: src/Gtk/MainWindow.vala:531 +#: src/Gtk/MainWindow.vala:532 msgid "available" msgstr "διαθέσιμος" -#: src/Gtk/MainWindow.vala:574 src/Gtk/MainWindow.vala:615 -#: src/Gtk/MainWindow.vala:650 +#: src/Gtk/MainWindow.vala:575 src/Gtk/MainWindow.vala:616 +#: src/Gtk/MainWindow.vala:651 msgid "DONE" msgstr "ΈΤΟΙΜΟ" diff --git a/po/es.po b/po/es.po index 701c4814..2db0501b 100644 --- a/po/es.po +++ b/po/es.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-20 06:35-0400\n" +"POT-Creation-Date: 2023-05-22 13:54-0400\n" "PO-Revision-Date: 2018-01-03 02:03-0600\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish\n" @@ -13,161 +13,161 @@ msgstr "" "X-Launchpad-Export-Date: 2017-04-13 11:48+0000\n" "X-Generator: Poedit 2.0.5\n" -#: src/Common/LinuxKernel.vala:103 +#: src/Common/LinuxKernel.vala:104 msgid "Distribution" msgstr "Distribución" -#: src/Common/LinuxKernel.vala:118 +#: src/Common/LinuxKernel.vala:119 msgid "Architecture" msgstr "Arquitectura del sistema" -#: src/Common/LinuxKernel.vala:133 +#: src/Common/LinuxKernel.vala:134 msgid "Running kernel" msgstr "Kernel en ejecución" -#: src/Common/LinuxKernel.vala:258 +#: src/Common/LinuxKernel.vala:259 msgid "loading cached" msgstr "carga en caché" -#: src/Common/LinuxKernel.vala:270 +#: src/Common/LinuxKernel.vala:271 msgid "queuing download" msgstr "descarga de colas" -#: src/Common/LinuxKernel.vala:291 +#: src/Common/LinuxKernel.vala:292 msgid "Fetching individual kernel indexes" msgstr "Obtención de índices de kernel individuales" -#: src/Common/LinuxKernel.vala:307 +#: src/Common/LinuxKernel.vala:308 msgid "loading downloaded" msgstr "cargando descargado" -#: src/Common/LinuxKernel.vala:342 +#: src/Common/LinuxKernel.vala:343 msgid "Updating from" msgstr "Actualización desde" -#: src/Common/LinuxKernel.vala:350 +#: src/Common/LinuxKernel.vala:351 msgid "OK" msgstr "Aceptar" -#: src/Common/LinuxKernel.vala:353 +#: src/Common/LinuxKernel.vala:354 msgid "FAILED" msgstr "FRACASADO" -#: src/Common/LinuxKernel.vala:403 +#: src/Common/LinuxKernel.vala:404 msgid "Found installed" msgstr "Encontrado instalado" -#: src/Common/LinuxKernel.vala:741 src/Gtk/MainWindow.vala:522 -#: src/Gtk/MainWindow.vala:535 +#: src/Common/LinuxKernel.vala:742 src/Gtk/MainWindow.vala:523 +#: src/Gtk/MainWindow.vala:536 msgid "Running" msgstr "En ejecución" -#: src/Common/LinuxKernel.vala:742 +#: src/Common/LinuxKernel.vala:743 msgid "Installed" msgstr "Instalado" -#: src/Common/LinuxKernel.vala:743 +#: src/Common/LinuxKernel.vala:744 msgid "Invalid" msgstr "No válido" -#: src/Common/LinuxKernel.vala:817 +#: src/Common/LinuxKernel.vala:824 msgid "Packages Available" msgstr "Paquetes disponibles" -#: src/Common/LinuxKernel.vala:823 +#: src/Common/LinuxKernel.vala:830 msgid "Packages Installed" msgstr "Paquetes instalados" -#: src/Common/LinuxKernel.vala:847 src/lib/TeeJee.FileSystem.vala:118 +#: src/Common/LinuxKernel.vala:858 src/lib/TeeJee.FileSystem.vala:118 msgid "File not found" msgstr "No se encontró el archivo" -#: src/Common/LinuxKernel.vala:947 +#: src/Common/LinuxKernel.vala:948 msgid "Available Kernels" msgstr "Núcleos disponibles" -#: src/Common/LinuxKernel.vala:984 +#: src/Common/LinuxKernel.vala:985 msgid "enabled" msgstr "habilitado" -#: src/Common/LinuxKernel.vala:1008 +#: src/Common/LinuxKernel.vala:1009 msgid "Downloading" msgstr "Descargar" -#: src/Common/LinuxKernel.vala:1029 +#: src/Common/LinuxKernel.vala:1030 msgid "is already installed." msgstr "ya está instalado." -#: src/Common/LinuxKernel.vala:1059 +#: src/Common/LinuxKernel.vala:1060 msgid "Uninstalling selected kernels" msgstr "Desinstalación de kernels seleccionados" -#: src/Common/LinuxKernel.vala:1065 +#: src/Common/LinuxKernel.vala:1066 msgid "requested" msgstr "solicitado" -#: src/Common/LinuxKernel.vala:1068 +#: src/Common/LinuxKernel.vala:1069 msgid "not uninstalling the currently running kernel" msgstr "No desinstalará el kernel que se está ejecutando actualmente" -#: src/Common/LinuxKernel.vala:1084 +#: src/Common/LinuxKernel.vala:1085 msgid "found" msgstr "fundar" -#: src/Common/LinuxKernel.vala:1087 +#: src/Common/LinuxKernel.vala:1088 msgid "No packages to un-install!" msgstr "¡No hay paquetes para desinstalar!" -#: src/Common/LinuxKernel.vala:1135 +#: src/Common/LinuxKernel.vala:1136 msgid "Could not find running kernel in list" msgstr "No se pudo encontrar el kernel en ejecución en la lista" -#: src/Common/LinuxKernel.vala:1140 +#: src/Common/LinuxKernel.vala:1141 msgid "Could not find any kernels to uninstall" msgstr "No se pudo encontrar ningún kernel para desinstalar" -#: src/Common/LinuxKernel.vala:1148 +#: src/Common/LinuxKernel.vala:1149 msgid "The following kernels will be uninstalled" msgstr "Se desinstalarán los siguientes kernels" -#: src/Common/LinuxKernel.vala:1152 +#: src/Common/LinuxKernel.vala:1153 msgid "Continue ?" msgstr "¿Continuar?" -#: src/Common/LinuxKernel.vala:1174 src/Console/AppConsole.vala:292 +#: src/Common/LinuxKernel.vala:1175 src/Console/AppConsole.vala:292 msgid "Latest update" msgstr "Última actualización" -#: src/Common/LinuxKernel.vala:1185 src/Console/AppConsole.vala:299 +#: src/Common/LinuxKernel.vala:1186 src/Console/AppConsole.vala:299 msgid "Latest point update" msgstr "Última actualización puntual" -#: src/Common/LinuxKernel.vala:1193 src/Console/AppConsole.vala:304 +#: src/Common/LinuxKernel.vala:1194 src/Console/AppConsole.vala:304 #: src/Console/AppConsole.vala:320 msgid "No updates found" msgstr "No se encontró ninguna actualización" -#: src/Common/LinuxKernel.vala:1202 +#: src/Common/LinuxKernel.vala:1203 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Instalar la versión del kernel %s? (s/n): " -#: src/Common/Main.vala:380 +#: src/Common/Main.vala:376 msgid "Called from" msgstr "Llamado desde" -#: src/Common/Main.vala:380 +#: src/Common/Main.vala:376 msgid "at logon" msgstr "al inicio" -#: src/Common/Main.vala:381 +#: src/Common/Main.vala:377 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" "Este archivo se sobrescribe y se ejecuta de nuevo cada vez que se guarda la " "configuración en" -#: src/Common/Main.vala:413 +#: src/Common/Main.vala:409 msgid "Notifications are disabled" msgstr "Las notificaciones están deshabilitadas" @@ -216,7 +216,7 @@ msgstr "Instalar núcleo troncal especificado" msgid "Uninstall specified kernel" msgstr "Desinstalar el kernel especificado" -#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:331 +#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:332 msgid "Uninstall all but the highest installed version" msgstr "Desinstale todas las versiones instaladas excepto la más alta" @@ -310,7 +310,7 @@ msgstr "Kernel %s Disponible" msgid "Show" msgstr "Mostrar" -#: src/Console/AppConsole.vala:347 src/Gtk/MainWindow.vala:298 +#: src/Console/AppConsole.vala:347 src/Gtk/MainWindow.vala:299 msgid "Install" msgstr "Instalar" @@ -378,23 +378,23 @@ msgstr "Estado" msgid "Notes" msgstr "Notas" -#: src/Gtk/MainWindow.vala:308 +#: src/Gtk/MainWindow.vala:309 msgid "Uninstall" msgstr "Desinstalar" -#: src/Gtk/MainWindow.vala:319 +#: src/Gtk/MainWindow.vala:320 msgid "Changelog, build status, etc" msgstr "" -#: src/Gtk/MainWindow.vala:330 +#: src/Gtk/MainWindow.vala:331 msgid "Uninstall Old" msgstr "Desinstalar Antiguo" -#: src/Gtk/MainWindow.vala:336 +#: src/Gtk/MainWindow.vala:337 msgid "Reload" msgstr "Recargar" -#: src/Gtk/MainWindow.vala:337 +#: src/Gtk/MainWindow.vala:338 msgid "" "Delete cache and reload all kernel info\n" "\n" @@ -404,41 +404,41 @@ msgstr "" "\n" "ESTO TAMBIÉN ELIMINARÁ TODAS LAS NOTAS DEL USUARIO" -#: src/Gtk/MainWindow.vala:342 src/Gtk/SettingsDialog.vala:49 +#: src/Gtk/MainWindow.vala:343 src/Gtk/SettingsDialog.vala:49 msgid "Settings" msgstr "Configuración" -#: src/Gtk/MainWindow.vala:347 +#: src/Gtk/MainWindow.vala:348 msgid "About" msgstr "Acerca de" -#: src/Gtk/MainWindow.vala:352 +#: src/Gtk/MainWindow.vala:353 msgid "Exit" msgstr "Salida" -#: src/Gtk/MainWindow.vala:421 +#: src/Gtk/MainWindow.vala:422 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "" "Herramienta de renovación de núcleo para distribuciones basadas en Ubuntu" -#: src/Gtk/MainWindow.vala:422 +#: src/Gtk/MainWindow.vala:423 msgid "Forked" msgstr "Bifurcada" -#: src/Gtk/MainWindow.vala:422 +#: src/Gtk/MainWindow.vala:423 msgid "Original" msgstr "Original" -#: src/Gtk/MainWindow.vala:460 +#: src/Gtk/MainWindow.vala:461 msgid "Updating kernels" msgstr "Actualización de kernels" -#: src/Gtk/MainWindow.vala:531 +#: src/Gtk/MainWindow.vala:532 msgid "available" msgstr "disponibles" -#: src/Gtk/MainWindow.vala:574 src/Gtk/MainWindow.vala:615 -#: src/Gtk/MainWindow.vala:650 +#: src/Gtk/MainWindow.vala:575 src/Gtk/MainWindow.vala:616 +#: src/Gtk/MainWindow.vala:651 msgid "DONE" msgstr "HECHO" diff --git a/po/fr.po b/po/fr.po index 51a88d82..f28bb8d7 100644 --- a/po/fr.po +++ b/po/fr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-20 06:35-0400\n" +"POT-Creation-Date: 2023-05-22 13:54-0400\n" "PO-Revision-Date: 2018-08-05 15:50+0200\n" "Last-Translator: Yolateng0 \n" "Language-Team: French\n" @@ -13,161 +13,161 @@ msgstr "" "X-Launchpad-Export-Date: 2017-04-13 11:48+0000\n" "X-Generator: Poedit 2.0.6\n" -#: src/Common/LinuxKernel.vala:103 +#: src/Common/LinuxKernel.vala:104 msgid "Distribution" msgstr "Distribution" -#: src/Common/LinuxKernel.vala:118 +#: src/Common/LinuxKernel.vala:119 msgid "Architecture" msgstr "Architecture" -#: src/Common/LinuxKernel.vala:133 +#: src/Common/LinuxKernel.vala:134 msgid "Running kernel" msgstr "Noyau en cours d'exécution" -#: src/Common/LinuxKernel.vala:258 +#: src/Common/LinuxKernel.vala:259 msgid "loading cached" msgstr "chargement mis en cache" -#: src/Common/LinuxKernel.vala:270 +#: src/Common/LinuxKernel.vala:271 msgid "queuing download" msgstr "enqueuing télécharger" -#: src/Common/LinuxKernel.vala:291 +#: src/Common/LinuxKernel.vala:292 msgid "Fetching individual kernel indexes" msgstr "Récupération d'index de noyau individuels" -#: src/Common/LinuxKernel.vala:307 +#: src/Common/LinuxKernel.vala:308 msgid "loading downloaded" msgstr "chargement téléchargé" -#: src/Common/LinuxKernel.vala:342 +#: src/Common/LinuxKernel.vala:343 msgid "Updating from" msgstr "Mise à jour à partir de" -#: src/Common/LinuxKernel.vala:350 +#: src/Common/LinuxKernel.vala:351 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:353 +#: src/Common/LinuxKernel.vala:354 msgid "FAILED" msgstr "RATÉ" -#: src/Common/LinuxKernel.vala:403 +#: src/Common/LinuxKernel.vala:404 msgid "Found installed" msgstr "Trouvé installé" -#: src/Common/LinuxKernel.vala:741 src/Gtk/MainWindow.vala:522 -#: src/Gtk/MainWindow.vala:535 +#: src/Common/LinuxKernel.vala:742 src/Gtk/MainWindow.vala:523 +#: src/Gtk/MainWindow.vala:536 msgid "Running" msgstr "Actuel" -#: src/Common/LinuxKernel.vala:742 +#: src/Common/LinuxKernel.vala:743 msgid "Installed" msgstr "Installé" -#: src/Common/LinuxKernel.vala:743 +#: src/Common/LinuxKernel.vala:744 msgid "Invalid" msgstr "No válido" -#: src/Common/LinuxKernel.vala:817 +#: src/Common/LinuxKernel.vala:824 msgid "Packages Available" msgstr "Paquets Disponibles" -#: src/Common/LinuxKernel.vala:823 +#: src/Common/LinuxKernel.vala:830 msgid "Packages Installed" msgstr "Paquets Installés" -#: src/Common/LinuxKernel.vala:847 src/lib/TeeJee.FileSystem.vala:118 +#: src/Common/LinuxKernel.vala:858 src/lib/TeeJee.FileSystem.vala:118 msgid "File not found" msgstr "Fichier non trouvé" -#: src/Common/LinuxKernel.vala:947 +#: src/Common/LinuxKernel.vala:948 msgid "Available Kernels" msgstr "Noyaux Disponibles" -#: src/Common/LinuxKernel.vala:984 +#: src/Common/LinuxKernel.vala:985 msgid "enabled" msgstr "activé" -#: src/Common/LinuxKernel.vala:1008 +#: src/Common/LinuxKernel.vala:1009 msgid "Downloading" msgstr "Téléchargement" -#: src/Common/LinuxKernel.vala:1029 +#: src/Common/LinuxKernel.vala:1030 msgid "is already installed." msgstr "est déjà installé." -#: src/Common/LinuxKernel.vala:1059 +#: src/Common/LinuxKernel.vala:1060 msgid "Uninstalling selected kernels" msgstr "Désinstallation des noyaux sélectionnés" -#: src/Common/LinuxKernel.vala:1065 +#: src/Common/LinuxKernel.vala:1066 msgid "requested" msgstr "Demandé" -#: src/Common/LinuxKernel.vala:1068 +#: src/Common/LinuxKernel.vala:1069 msgid "not uninstalling the currently running kernel" msgstr "Ne pas désinstaller le noyau en cours d'exécution" -#: src/Common/LinuxKernel.vala:1084 +#: src/Common/LinuxKernel.vala:1085 msgid "found" msgstr "fonder" -#: src/Common/LinuxKernel.vala:1087 +#: src/Common/LinuxKernel.vala:1088 msgid "No packages to un-install!" msgstr "Pas de paquets à désinstaller !" -#: src/Common/LinuxKernel.vala:1135 +#: src/Common/LinuxKernel.vala:1136 msgid "Could not find running kernel in list" msgstr "Impossible de trouver le noyau en cours d'exécution dans la liste" -#: src/Common/LinuxKernel.vala:1140 +#: src/Common/LinuxKernel.vala:1141 msgid "Could not find any kernels to uninstall" msgstr "Impossible de trouver des noyaux à désinstaller" -#: src/Common/LinuxKernel.vala:1148 +#: src/Common/LinuxKernel.vala:1149 msgid "The following kernels will be uninstalled" msgstr "Les noyaux suivants seront désinstallés" -#: src/Common/LinuxKernel.vala:1152 +#: src/Common/LinuxKernel.vala:1153 msgid "Continue ?" msgstr "Reprendre ?" -#: src/Common/LinuxKernel.vala:1174 src/Console/AppConsole.vala:292 +#: src/Common/LinuxKernel.vala:1175 src/Console/AppConsole.vala:292 msgid "Latest update" msgstr "Dernière mise à jour" -#: src/Common/LinuxKernel.vala:1185 src/Console/AppConsole.vala:299 +#: src/Common/LinuxKernel.vala:1186 src/Console/AppConsole.vala:299 msgid "Latest point update" msgstr "Dernière mise à jour mineure" -#: src/Common/LinuxKernel.vala:1193 src/Console/AppConsole.vala:304 +#: src/Common/LinuxKernel.vala:1194 src/Console/AppConsole.vala:304 #: src/Console/AppConsole.vala:320 msgid "No updates found" msgstr "Aucune mise à jour disponible" -#: src/Common/LinuxKernel.vala:1202 +#: src/Common/LinuxKernel.vala:1203 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Installer le noyau en version %s ? (y/n): " -#: src/Common/Main.vala:380 +#: src/Common/Main.vala:376 msgid "Called from" msgstr "Appelé à partir de" -#: src/Common/Main.vala:380 +#: src/Common/Main.vala:376 msgid "at logon" msgstr "au démarrage" -#: src/Common/Main.vala:381 +#: src/Common/Main.vala:377 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" "Ce fichier est écrasé et exécuté à nouveau chaque fois que les paramètres " "sont enregistrés dans" -#: src/Common/Main.vala:413 +#: src/Common/Main.vala:409 msgid "Notifications are disabled" msgstr "Les notifications sont désactivées" @@ -216,7 +216,7 @@ msgstr "Installer le noyau mainline spécifié" msgid "Uninstall specified kernel" msgstr "Désinstaller le noyau spécifié" -#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:331 +#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:332 msgid "Uninstall all but the highest installed version" msgstr "Désinstallez toutes le version installées, sauf la plus élevée" @@ -312,7 +312,7 @@ msgstr "Paquet %s disponibles" msgid "Show" msgstr "Montrer" -#: src/Console/AppConsole.vala:347 src/Gtk/MainWindow.vala:298 +#: src/Console/AppConsole.vala:347 src/Gtk/MainWindow.vala:299 msgid "Install" msgstr "Installer" @@ -380,23 +380,23 @@ msgstr "Statut" msgid "Notes" msgstr "Notes" -#: src/Gtk/MainWindow.vala:308 +#: src/Gtk/MainWindow.vala:309 msgid "Uninstall" msgstr "Désinstaller" -#: src/Gtk/MainWindow.vala:319 +#: src/Gtk/MainWindow.vala:320 msgid "Changelog, build status, etc" msgstr "" -#: src/Gtk/MainWindow.vala:330 +#: src/Gtk/MainWindow.vala:331 msgid "Uninstall Old" msgstr "Désinstaller Ancien" -#: src/Gtk/MainWindow.vala:336 +#: src/Gtk/MainWindow.vala:337 msgid "Reload" msgstr "Recharger" -#: src/Gtk/MainWindow.vala:337 +#: src/Gtk/MainWindow.vala:338 msgid "" "Delete cache and reload all kernel info\n" "\n" @@ -406,42 +406,42 @@ msgstr "" "\n" "CELA SUPPRIMERA ÉGALEMENT TOUTES LES NOTES DE UTILISATEUR" -#: src/Gtk/MainWindow.vala:342 src/Gtk/SettingsDialog.vala:49 +#: src/Gtk/MainWindow.vala:343 src/Gtk/SettingsDialog.vala:49 msgid "Settings" msgstr "Paramètres" -#: src/Gtk/MainWindow.vala:347 +#: src/Gtk/MainWindow.vala:348 msgid "About" msgstr "À propos" -#: src/Gtk/MainWindow.vala:352 +#: src/Gtk/MainWindow.vala:353 msgid "Exit" msgstr "Sortie" -#: src/Gtk/MainWindow.vala:421 +#: src/Gtk/MainWindow.vala:422 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "" "Utilitaire de mise à niveau des noyaux pour les distributions basées sur " "Ubuntu" -#: src/Gtk/MainWindow.vala:422 +#: src/Gtk/MainWindow.vala:423 msgid "Forked" msgstr "Forkée" -#: src/Gtk/MainWindow.vala:422 +#: src/Gtk/MainWindow.vala:423 msgid "Original" msgstr "Originale" -#: src/Gtk/MainWindow.vala:460 +#: src/Gtk/MainWindow.vala:461 msgid "Updating kernels" msgstr "Mise à jour des noyaux" -#: src/Gtk/MainWindow.vala:531 +#: src/Gtk/MainWindow.vala:532 msgid "available" msgstr "disponible" -#: src/Gtk/MainWindow.vala:574 src/Gtk/MainWindow.vala:615 -#: src/Gtk/MainWindow.vala:650 +#: src/Gtk/MainWindow.vala:575 src/Gtk/MainWindow.vala:616 +#: src/Gtk/MainWindow.vala:651 msgid "DONE" msgstr "FAIT" diff --git a/po/hr.po b/po/hr.po index d29713f7..e8297a4d 100644 --- a/po/hr.po +++ b/po/hr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-20 06:35-0400\n" +"POT-Creation-Date: 2023-05-22 13:54-0400\n" "PO-Revision-Date: 2022-09-22 12:13+0200\n" "Last-Translator: gogo \n" "Language-Team: Croatian\n" @@ -13,160 +13,160 @@ msgstr "" "X-Launchpad-Export-Date: 2017-12-23 23:36+0000\n" "X-Generator: Poedit 3.0.1\n" -#: src/Common/LinuxKernel.vala:103 +#: src/Common/LinuxKernel.vala:104 msgid "Distribution" msgstr "Distribucija" -#: src/Common/LinuxKernel.vala:118 +#: src/Common/LinuxKernel.vala:119 msgid "Architecture" msgstr "Arhitektura" -#: src/Common/LinuxKernel.vala:133 +#: src/Common/LinuxKernel.vala:134 msgid "Running kernel" msgstr "Trčanje kernel" -#: src/Common/LinuxKernel.vala:258 +#: src/Common/LinuxKernel.vala:259 msgid "loading cached" msgstr "učitavanje predmemoriranog" -#: src/Common/LinuxKernel.vala:270 +#: src/Common/LinuxKernel.vala:271 msgid "queuing download" msgstr "preuzimanje u redu čekanja" -#: src/Common/LinuxKernel.vala:291 +#: src/Common/LinuxKernel.vala:292 msgid "Fetching individual kernel indexes" msgstr "Dohvaćanje pojedinačnih indeksa kernel" -#: src/Common/LinuxKernel.vala:307 +#: src/Common/LinuxKernel.vala:308 msgid "loading downloaded" msgstr "učitavanje preuzeto" -#: src/Common/LinuxKernel.vala:342 +#: src/Common/LinuxKernel.vala:343 msgid "Updating from" msgstr "Ažuriranje iz" -#: src/Common/LinuxKernel.vala:350 +#: src/Common/LinuxKernel.vala:351 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:353 +#: src/Common/LinuxKernel.vala:354 msgid "FAILED" msgstr "NIJE USPIO" -#: src/Common/LinuxKernel.vala:403 +#: src/Common/LinuxKernel.vala:404 msgid "Found installed" msgstr "Pronađeno instalirano" -#: src/Common/LinuxKernel.vala:741 src/Gtk/MainWindow.vala:522 -#: src/Gtk/MainWindow.vala:535 +#: src/Common/LinuxKernel.vala:742 src/Gtk/MainWindow.vala:523 +#: src/Gtk/MainWindow.vala:536 msgid "Running" msgstr "Pokrenuto" -#: src/Common/LinuxKernel.vala:742 +#: src/Common/LinuxKernel.vala:743 msgid "Installed" msgstr "Instalirano" -#: src/Common/LinuxKernel.vala:743 +#: src/Common/LinuxKernel.vala:744 msgid "Invalid" msgstr "Érvénytelen" -#: src/Common/LinuxKernel.vala:817 +#: src/Common/LinuxKernel.vala:824 msgid "Packages Available" msgstr "Dostupni Paketi" -#: src/Common/LinuxKernel.vala:823 +#: src/Common/LinuxKernel.vala:830 msgid "Packages Installed" msgstr "Instalirani paketi" -#: src/Common/LinuxKernel.vala:847 src/lib/TeeJee.FileSystem.vala:118 +#: src/Common/LinuxKernel.vala:858 src/lib/TeeJee.FileSystem.vala:118 msgid "File not found" msgstr "Datoteka nije pronađena" -#: src/Common/LinuxKernel.vala:947 +#: src/Common/LinuxKernel.vala:948 msgid "Available Kernels" msgstr "Dostupni kerneli" -#: src/Common/LinuxKernel.vala:984 +#: src/Common/LinuxKernel.vala:985 msgid "enabled" msgstr "omogućen" -#: src/Common/LinuxKernel.vala:1008 +#: src/Common/LinuxKernel.vala:1009 msgid "Downloading" msgstr "Učitavanje" -#: src/Common/LinuxKernel.vala:1029 +#: src/Common/LinuxKernel.vala:1030 msgid "is already installed." msgstr "je već instaliran." -#: src/Common/LinuxKernel.vala:1059 +#: src/Common/LinuxKernel.vala:1060 msgid "Uninstalling selected kernels" msgstr "Deinstaliraj određene kernele" -#: src/Common/LinuxKernel.vala:1065 +#: src/Common/LinuxKernel.vala:1066 msgid "requested" msgstr "Zatražio" -#: src/Common/LinuxKernel.vala:1068 +#: src/Common/LinuxKernel.vala:1069 msgid "not uninstalling the currently running kernel" msgstr "ne deinstaliranje trenutno pokrenute kernel" -#: src/Common/LinuxKernel.vala:1084 +#: src/Common/LinuxKernel.vala:1085 msgid "found" msgstr "pronađen" -#: src/Common/LinuxKernel.vala:1087 +#: src/Common/LinuxKernel.vala:1088 msgid "No packages to un-install!" msgstr "Nema paketa za poništavanje instalacije!" -#: src/Common/LinuxKernel.vala:1135 +#: src/Common/LinuxKernel.vala:1136 msgid "Could not find running kernel in list" msgstr "Nije moguće pronaći pokrenutu kernel na popisu" -#: src/Common/LinuxKernel.vala:1140 +#: src/Common/LinuxKernel.vala:1141 msgid "Could not find any kernels to uninstall" msgstr "Nema pronađenih kernela za deinstaliranje" -#: src/Common/LinuxKernel.vala:1148 +#: src/Common/LinuxKernel.vala:1149 msgid "The following kernels will be uninstalled" msgstr "Deinstalirat će se sljedeće kerneli" -#: src/Common/LinuxKernel.vala:1152 +#: src/Common/LinuxKernel.vala:1153 msgid "Continue ?" msgstr "Nastavi?" -#: src/Common/LinuxKernel.vala:1174 src/Console/AppConsole.vala:292 +#: src/Common/LinuxKernel.vala:1175 src/Console/AppConsole.vala:292 msgid "Latest update" msgstr "Najnovija nadopuna" -#: src/Common/LinuxKernel.vala:1185 src/Console/AppConsole.vala:299 +#: src/Common/LinuxKernel.vala:1186 src/Console/AppConsole.vala:299 msgid "Latest point update" msgstr "Najnovija ciljana nadopuna" -#: src/Common/LinuxKernel.vala:1193 src/Console/AppConsole.vala:304 +#: src/Common/LinuxKernel.vala:1194 src/Console/AppConsole.vala:304 #: src/Console/AppConsole.vala:320 msgid "No updates found" msgstr "Nema pronađenih nadopuna" -#: src/Common/LinuxKernel.vala:1202 +#: src/Common/LinuxKernel.vala:1203 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Instaliraj kernel inačice %s ? (d/n): " -#: src/Common/Main.vala:380 +#: src/Common/Main.vala:376 msgid "Called from" msgstr "Pozvano od" -#: src/Common/Main.vala:380 +#: src/Common/Main.vala:376 msgid "at logon" msgstr "indításkor" -#: src/Common/Main.vala:381 +#: src/Common/Main.vala:377 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" "Ova se datoteka prepisuje i ponovno izvršava kad god se postavke spremaju u" -#: src/Common/Main.vala:413 +#: src/Common/Main.vala:409 msgid "Notifications are disabled" msgstr "Obavijesti su onemogućene" @@ -215,7 +215,7 @@ msgstr "Instaliraj određeni mainline kernel" msgid "Uninstall specified kernel" msgstr "Deinstaliraj određene kernele" -#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:331 +#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:332 msgid "Uninstall all but the highest installed version" msgstr "Deinstaliraj sve osim najnovije instalirane verzije" @@ -309,7 +309,7 @@ msgstr "Kernel %s je dostupan" msgid "Show" msgstr "Prikaži" -#: src/Console/AppConsole.vala:347 src/Gtk/MainWindow.vala:298 +#: src/Console/AppConsole.vala:347 src/Gtk/MainWindow.vala:299 msgid "Install" msgstr "Instaliraj" @@ -377,23 +377,23 @@ msgstr "Stanje" msgid "Notes" msgstr "Bilješke" -#: src/Gtk/MainWindow.vala:308 +#: src/Gtk/MainWindow.vala:309 msgid "Uninstall" msgstr "Deinstaliraj" -#: src/Gtk/MainWindow.vala:319 +#: src/Gtk/MainWindow.vala:320 msgid "Changelog, build status, etc" msgstr "" -#: src/Gtk/MainWindow.vala:330 +#: src/Gtk/MainWindow.vala:331 msgid "Uninstall Old" msgstr "Deinstaliraj staro" -#: src/Gtk/MainWindow.vala:336 +#: src/Gtk/MainWindow.vala:337 msgid "Reload" msgstr "Ponovno učitati" -#: src/Gtk/MainWindow.vala:337 +#: src/Gtk/MainWindow.vala:338 msgid "" "Delete cache and reload all kernel info\n" "\n" @@ -403,40 +403,40 @@ msgstr "" "\n" "EZZEL AZ ÖSSZES FELHASZNÁLÓI JEGYZETET IS TÖRLI" -#: src/Gtk/MainWindow.vala:342 src/Gtk/SettingsDialog.vala:49 +#: src/Gtk/MainWindow.vala:343 src/Gtk/SettingsDialog.vala:49 msgid "Settings" msgstr "Postavke" -#: src/Gtk/MainWindow.vala:347 +#: src/Gtk/MainWindow.vala:348 msgid "About" msgstr "O programu" -#: src/Gtk/MainWindow.vala:352 +#: src/Gtk/MainWindow.vala:353 msgid "Exit" msgstr "Izlaz" -#: src/Gtk/MainWindow.vala:421 +#: src/Gtk/MainWindow.vala:422 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Alat za nadogradnju kernela Ubuntu temeljenih distribucija" -#: src/Gtk/MainWindow.vala:422 +#: src/Gtk/MainWindow.vala:423 msgid "Forked" msgstr "Forkano" -#: src/Gtk/MainWindow.vala:422 +#: src/Gtk/MainWindow.vala:423 msgid "Original" msgstr "Izvornik" -#: src/Gtk/MainWindow.vala:460 +#: src/Gtk/MainWindow.vala:461 msgid "Updating kernels" msgstr "Ažuriranje jezgri" -#: src/Gtk/MainWindow.vala:531 +#: src/Gtk/MainWindow.vala:532 msgid "available" msgstr "dostupno" -#: src/Gtk/MainWindow.vala:574 src/Gtk/MainWindow.vala:615 -#: src/Gtk/MainWindow.vala:650 +#: src/Gtk/MainWindow.vala:575 src/Gtk/MainWindow.vala:616 +#: src/Gtk/MainWindow.vala:651 msgid "DONE" msgstr "UČINJENO" diff --git a/po/it.po b/po/it.po index 37f99a4e..aafc9c12 100644 --- a/po/it.po +++ b/po/it.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-20 06:35-0400\n" +"POT-Creation-Date: 2023-05-22 13:54-0400\n" "PO-Revision-Date: 2020-08-22 15:35+0100\n" "Last-Translator: Demetrio Mendozzi\n" "Language-Team: Italian\n" @@ -11,161 +11,161 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: src/Common/LinuxKernel.vala:103 +#: src/Common/LinuxKernel.vala:104 msgid "Distribution" msgstr "Distribuzione" -#: src/Common/LinuxKernel.vala:118 +#: src/Common/LinuxKernel.vala:119 msgid "Architecture" msgstr "Architettura" -#: src/Common/LinuxKernel.vala:133 +#: src/Common/LinuxKernel.vala:134 msgid "Running kernel" msgstr "Kernel in esecuzione" -#: src/Common/LinuxKernel.vala:258 +#: src/Common/LinuxKernel.vala:259 msgid "loading cached" msgstr "Caricamento file della cache" -#: src/Common/LinuxKernel.vala:270 +#: src/Common/LinuxKernel.vala:271 msgid "queuing download" msgstr "download in coda" -#: src/Common/LinuxKernel.vala:291 +#: src/Common/LinuxKernel.vala:292 msgid "Fetching individual kernel indexes" msgstr "Recupero dei singoli indici del kernel" -#: src/Common/LinuxKernel.vala:307 +#: src/Common/LinuxKernel.vala:308 msgid "loading downloaded" msgstr "caricamento dei file scaricati" -#: src/Common/LinuxKernel.vala:342 +#: src/Common/LinuxKernel.vala:343 msgid "Updating from" msgstr "Aggiornamento da" -#: src/Common/LinuxKernel.vala:350 +#: src/Common/LinuxKernel.vala:351 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:353 +#: src/Common/LinuxKernel.vala:354 msgid "FAILED" msgstr "FALLITO" -#: src/Common/LinuxKernel.vala:403 +#: src/Common/LinuxKernel.vala:404 msgid "Found installed" msgstr "Trovato installato" -#: src/Common/LinuxKernel.vala:741 src/Gtk/MainWindow.vala:522 -#: src/Gtk/MainWindow.vala:535 +#: src/Common/LinuxKernel.vala:742 src/Gtk/MainWindow.vala:523 +#: src/Gtk/MainWindow.vala:536 msgid "Running" msgstr "In esecuzione" -#: src/Common/LinuxKernel.vala:742 +#: src/Common/LinuxKernel.vala:743 msgid "Installed" msgstr "Installato" -#: src/Common/LinuxKernel.vala:743 +#: src/Common/LinuxKernel.vala:744 msgid "Invalid" msgstr "Non valido" -#: src/Common/LinuxKernel.vala:817 +#: src/Common/LinuxKernel.vala:824 msgid "Packages Available" msgstr "Pacchetti disponibili" -#: src/Common/LinuxKernel.vala:823 +#: src/Common/LinuxKernel.vala:830 msgid "Packages Installed" msgstr "Pacchetti installati" -#: src/Common/LinuxKernel.vala:847 src/lib/TeeJee.FileSystem.vala:118 +#: src/Common/LinuxKernel.vala:858 src/lib/TeeJee.FileSystem.vala:118 msgid "File not found" msgstr "File non trovato" -#: src/Common/LinuxKernel.vala:947 +#: src/Common/LinuxKernel.vala:948 msgid "Available Kernels" msgstr "Kernel disponibili" -#: src/Common/LinuxKernel.vala:984 +#: src/Common/LinuxKernel.vala:985 msgid "enabled" msgstr "abilitato" -#: src/Common/LinuxKernel.vala:1008 +#: src/Common/LinuxKernel.vala:1009 msgid "Downloading" msgstr "Scaricamento" -#: src/Common/LinuxKernel.vala:1029 +#: src/Common/LinuxKernel.vala:1030 msgid "is already installed." msgstr "è già installato." -#: src/Common/LinuxKernel.vala:1059 +#: src/Common/LinuxKernel.vala:1060 msgid "Uninstalling selected kernels" msgstr "Disinstalla i kernel specificati" -#: src/Common/LinuxKernel.vala:1065 +#: src/Common/LinuxKernel.vala:1066 msgid "requested" msgstr "richiesto" -#: src/Common/LinuxKernel.vala:1068 +#: src/Common/LinuxKernel.vala:1069 msgid "not uninstalling the currently running kernel" msgstr "non disinstallare il kernel attualmente in esecuzione" -#: src/Common/LinuxKernel.vala:1084 +#: src/Common/LinuxKernel.vala:1085 msgid "found" msgstr "trovato" -#: src/Common/LinuxKernel.vala:1087 +#: src/Common/LinuxKernel.vala:1088 msgid "No packages to un-install!" msgstr "Nessun pacchetto da disinstallare!" -#: src/Common/LinuxKernel.vala:1135 +#: src/Common/LinuxKernel.vala:1136 msgid "Could not find running kernel in list" msgstr "Impossibile trovare il kernel in esecuzione nell'elenco" -#: src/Common/LinuxKernel.vala:1140 +#: src/Common/LinuxKernel.vala:1141 msgid "Could not find any kernels to uninstall" msgstr "Impossibile trovare alcun kernel da rimuovere" -#: src/Common/LinuxKernel.vala:1148 +#: src/Common/LinuxKernel.vala:1149 msgid "The following kernels will be uninstalled" msgstr "I seguenti kernel saranno rimossi" -#: src/Common/LinuxKernel.vala:1152 +#: src/Common/LinuxKernel.vala:1153 msgid "Continue ?" msgstr "Continuare ?" -#: src/Common/LinuxKernel.vala:1174 src/Console/AppConsole.vala:292 +#: src/Common/LinuxKernel.vala:1175 src/Console/AppConsole.vala:292 msgid "Latest update" msgstr "Ultimo aggiornamento" -#: src/Common/LinuxKernel.vala:1185 src/Console/AppConsole.vala:299 +#: src/Common/LinuxKernel.vala:1186 src/Console/AppConsole.vala:299 msgid "Latest point update" msgstr "Ultimo aggiornamento del rilascio parziale" -#: src/Common/LinuxKernel.vala:1193 src/Console/AppConsole.vala:304 +#: src/Common/LinuxKernel.vala:1194 src/Console/AppConsole.vala:304 #: src/Console/AppConsole.vala:320 msgid "No updates found" msgstr "Nessun aggiornamento trovato" -#: src/Common/LinuxKernel.vala:1202 +#: src/Common/LinuxKernel.vala:1203 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Installare la versione del kernel %s ? (y/n): " -#: src/Common/Main.vala:380 +#: src/Common/Main.vala:376 msgid "Called from" msgstr "Chiamato da" -#: src/Common/Main.vala:380 +#: src/Common/Main.vala:376 msgid "at logon" msgstr "all'avvio" -#: src/Common/Main.vala:381 +#: src/Common/Main.vala:377 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" "Questo file viene sovrascritto ed eseguito nuovamente ogni volta che vengono " "salvate le impostazioni" -#: src/Common/Main.vala:413 +#: src/Common/Main.vala:409 msgid "Notifications are disabled" msgstr "Le notifiche sono disabilitate" @@ -216,7 +216,7 @@ msgstr "Installa il kernel mainline specificato" msgid "Uninstall specified kernel" msgstr "Disinstalla i kernel specificati" -#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:331 +#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:332 msgid "Uninstall all but the highest installed version" msgstr "Disinstallare tutti tranne la versione più recente installata" @@ -310,7 +310,7 @@ msgstr "Kernel %s Disponibile" msgid "Show" msgstr "Mostra" -#: src/Console/AppConsole.vala:347 src/Gtk/MainWindow.vala:298 +#: src/Console/AppConsole.vala:347 src/Gtk/MainWindow.vala:299 msgid "Install" msgstr "Installa" @@ -378,23 +378,23 @@ msgstr "Stato" msgid "Notes" msgstr "Note" -#: src/Gtk/MainWindow.vala:308 +#: src/Gtk/MainWindow.vala:309 msgid "Uninstall" msgstr "Disinstalla" -#: src/Gtk/MainWindow.vala:319 +#: src/Gtk/MainWindow.vala:320 msgid "Changelog, build status, etc" msgstr "" -#: src/Gtk/MainWindow.vala:330 +#: src/Gtk/MainWindow.vala:331 msgid "Uninstall Old" msgstr "Disinstalla i vecchi" -#: src/Gtk/MainWindow.vala:336 +#: src/Gtk/MainWindow.vala:337 msgid "Reload" msgstr "Ricarica" -#: src/Gtk/MainWindow.vala:337 +#: src/Gtk/MainWindow.vala:338 msgid "" "Delete cache and reload all kernel info\n" "\n" @@ -404,40 +404,40 @@ msgstr "" "\n" "QUESTO CANCELLERÀ ANCHE TUTTE LE NOTE UTENTE" -#: src/Gtk/MainWindow.vala:342 src/Gtk/SettingsDialog.vala:49 +#: src/Gtk/MainWindow.vala:343 src/Gtk/SettingsDialog.vala:49 msgid "Settings" msgstr "Impostazioni" -#: src/Gtk/MainWindow.vala:347 +#: src/Gtk/MainWindow.vala:348 msgid "About" msgstr "Informazioni" -#: src/Gtk/MainWindow.vala:352 +#: src/Gtk/MainWindow.vala:353 msgid "Exit" msgstr "Chiudi" -#: src/Gtk/MainWindow.vala:421 +#: src/Gtk/MainWindow.vala:422 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Utilità di aggiornamento del kernel per distribuzioni basate su Ubuntu" -#: src/Gtk/MainWindow.vala:422 +#: src/Gtk/MainWindow.vala:423 msgid "Forked" msgstr "Forked" -#: src/Gtk/MainWindow.vala:422 +#: src/Gtk/MainWindow.vala:423 msgid "Original" msgstr "Originale" -#: src/Gtk/MainWindow.vala:460 +#: src/Gtk/MainWindow.vala:461 msgid "Updating kernels" msgstr "Aggiornamento dei kernel" -#: src/Gtk/MainWindow.vala:531 +#: src/Gtk/MainWindow.vala:532 msgid "available" msgstr "disponibile" -#: src/Gtk/MainWindow.vala:574 src/Gtk/MainWindow.vala:615 -#: src/Gtk/MainWindow.vala:650 +#: src/Gtk/MainWindow.vala:575 src/Gtk/MainWindow.vala:616 +#: src/Gtk/MainWindow.vala:651 msgid "DONE" msgstr "FATTO" diff --git a/po/ko.po b/po/ko.po index d7750fbc..71357548 100644 --- a/po/ko.po +++ b/po/ko.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-20 06:35-0400\n" +"POT-Creation-Date: 2023-05-22 13:54-0400\n" "PO-Revision-Date: 2022-09-28 11:48+0900\n" "Last-Translator: Kevin Kim \n" "Language-Team: Korean\n" @@ -13,159 +13,159 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Poedit 3.0.1\n" -#: src/Common/LinuxKernel.vala:103 +#: src/Common/LinuxKernel.vala:104 msgid "Distribution" msgstr "배포판" -#: src/Common/LinuxKernel.vala:118 +#: src/Common/LinuxKernel.vala:119 msgid "Architecture" msgstr "아키텍처" -#: src/Common/LinuxKernel.vala:133 +#: src/Common/LinuxKernel.vala:134 msgid "Running kernel" msgstr "현재 실행 중인 커널" -#: src/Common/LinuxKernel.vala:258 +#: src/Common/LinuxKernel.vala:259 msgid "loading cached" msgstr "캐시된 로드 중" -#: src/Common/LinuxKernel.vala:270 +#: src/Common/LinuxKernel.vala:271 msgid "queuing download" msgstr "대기열 다운로드" -#: src/Common/LinuxKernel.vala:291 +#: src/Common/LinuxKernel.vala:292 msgid "Fetching individual kernel indexes" msgstr "개별 커널 인덱스 페치" -#: src/Common/LinuxKernel.vala:307 +#: src/Common/LinuxKernel.vala:308 msgid "loading downloaded" msgstr "다운로드 로드 중" -#: src/Common/LinuxKernel.vala:342 +#: src/Common/LinuxKernel.vala:343 msgid "Updating from" msgstr "다음에서 업데이트" -#: src/Common/LinuxKernel.vala:350 +#: src/Common/LinuxKernel.vala:351 msgid "OK" msgstr "확인" -#: src/Common/LinuxKernel.vala:353 +#: src/Common/LinuxKernel.vala:354 msgid "FAILED" msgstr "실패" -#: src/Common/LinuxKernel.vala:403 +#: src/Common/LinuxKernel.vala:404 msgid "Found installed" msgstr "설치된 것을 찾았습니다" -#: src/Common/LinuxKernel.vala:741 src/Gtk/MainWindow.vala:522 -#: src/Gtk/MainWindow.vala:535 +#: src/Common/LinuxKernel.vala:742 src/Gtk/MainWindow.vala:523 +#: src/Gtk/MainWindow.vala:536 msgid "Running" msgstr "구동 중" -#: src/Common/LinuxKernel.vala:742 +#: src/Common/LinuxKernel.vala:743 msgid "Installed" msgstr "설치 됨" -#: src/Common/LinuxKernel.vala:743 +#: src/Common/LinuxKernel.vala:744 msgid "Invalid" msgstr "사용할 수 없음" -#: src/Common/LinuxKernel.vala:817 +#: src/Common/LinuxKernel.vala:824 msgid "Packages Available" msgstr "설치 가능한 패키지" -#: src/Common/LinuxKernel.vala:823 +#: src/Common/LinuxKernel.vala:830 msgid "Packages Installed" msgstr "설치된 패키지" -#: src/Common/LinuxKernel.vala:847 src/lib/TeeJee.FileSystem.vala:118 +#: src/Common/LinuxKernel.vala:858 src/lib/TeeJee.FileSystem.vala:118 msgid "File not found" msgstr "파일을 찾을 수 없습니다" -#: src/Common/LinuxKernel.vala:947 +#: src/Common/LinuxKernel.vala:948 msgid "Available Kernels" msgstr "설치 가능한 커널" -#: src/Common/LinuxKernel.vala:984 +#: src/Common/LinuxKernel.vala:985 msgid "enabled" msgstr "사용" -#: src/Common/LinuxKernel.vala:1008 +#: src/Common/LinuxKernel.vala:1009 msgid "Downloading" msgstr "다운로드" -#: src/Common/LinuxKernel.vala:1029 +#: src/Common/LinuxKernel.vala:1030 msgid "is already installed." msgstr "가 이미 설치되어 있습니다" -#: src/Common/LinuxKernel.vala:1059 +#: src/Common/LinuxKernel.vala:1060 msgid "Uninstalling selected kernels" msgstr "선택한 커널 제거" -#: src/Common/LinuxKernel.vala:1065 +#: src/Common/LinuxKernel.vala:1066 msgid "requested" msgstr "요청" -#: src/Common/LinuxKernel.vala:1068 +#: src/Common/LinuxKernel.vala:1069 msgid "not uninstalling the currently running kernel" msgstr "현재 실행 중인 커널을 제거하지 않음" -#: src/Common/LinuxKernel.vala:1084 +#: src/Common/LinuxKernel.vala:1085 msgid "found" msgstr "설립하다" -#: src/Common/LinuxKernel.vala:1087 +#: src/Common/LinuxKernel.vala:1088 msgid "No packages to un-install!" msgstr "제거 할 패키지가 없습니다!" -#: src/Common/LinuxKernel.vala:1135 +#: src/Common/LinuxKernel.vala:1136 msgid "Could not find running kernel in list" msgstr "현재 실행 중인 커널을 찾을 수 없습니다" -#: src/Common/LinuxKernel.vala:1140 +#: src/Common/LinuxKernel.vala:1141 msgid "Could not find any kernels to uninstall" msgstr "삭제할 커널을 찾을 수 없습니다" -#: src/Common/LinuxKernel.vala:1148 +#: src/Common/LinuxKernel.vala:1149 msgid "The following kernels will be uninstalled" msgstr "풀이" -#: src/Common/LinuxKernel.vala:1152 +#: src/Common/LinuxKernel.vala:1153 msgid "Continue ?" msgstr "계속하시겠습니까?" -#: src/Common/LinuxKernel.vala:1174 src/Console/AppConsole.vala:292 +#: src/Common/LinuxKernel.vala:1175 src/Console/AppConsole.vala:292 msgid "Latest update" msgstr "최신 업데이트" -#: src/Common/LinuxKernel.vala:1185 src/Console/AppConsole.vala:299 +#: src/Common/LinuxKernel.vala:1186 src/Console/AppConsole.vala:299 msgid "Latest point update" msgstr "최신 포인트 업데이트" -#: src/Common/LinuxKernel.vala:1193 src/Console/AppConsole.vala:304 +#: src/Common/LinuxKernel.vala:1194 src/Console/AppConsole.vala:304 #: src/Console/AppConsole.vala:320 msgid "No updates found" msgstr "업데이트를 찾을 수 없습니다" -#: src/Common/LinuxKernel.vala:1202 +#: src/Common/LinuxKernel.vala:1203 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "커널 %s 버전을 설치하시겠습니까? (y/n): " -#: src/Common/Main.vala:380 +#: src/Common/Main.vala:376 msgid "Called from" msgstr "에서 호출" -#: src/Common/Main.vala:380 +#: src/Common/Main.vala:376 msgid "at logon" msgstr "로그온 시" -#: src/Common/Main.vala:381 +#: src/Common/Main.vala:377 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "이 파일은 덮어쓰고 설정이 저장될 때마다 다시 실행됩니다." -#: src/Common/Main.vala:413 +#: src/Common/Main.vala:409 msgid "Notifications are disabled" msgstr "알림이 비활성화 되었습니다" @@ -214,7 +214,7 @@ msgstr "지정한 메인라인 커널 설치" msgid "Uninstall specified kernel" msgstr "지정한 커널 삭제" -#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:331 +#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:332 msgid "Uninstall all but the highest installed version" msgstr "설치된 가장 높은 버전을 제외한 모든 버전을 제거합니다" @@ -308,7 +308,7 @@ msgstr "커널 %s 사용 가능" msgid "Show" msgstr "보이기" -#: src/Console/AppConsole.vala:347 src/Gtk/MainWindow.vala:298 +#: src/Console/AppConsole.vala:347 src/Gtk/MainWindow.vala:299 msgid "Install" msgstr "설치" @@ -376,23 +376,23 @@ msgstr "상태" msgid "Notes" msgstr "노트" -#: src/Gtk/MainWindow.vala:308 +#: src/Gtk/MainWindow.vala:309 msgid "Uninstall" msgstr "삭제" -#: src/Gtk/MainWindow.vala:319 +#: src/Gtk/MainWindow.vala:320 msgid "Changelog, build status, etc" msgstr "" -#: src/Gtk/MainWindow.vala:330 +#: src/Gtk/MainWindow.vala:331 msgid "Uninstall Old" msgstr "오래된 커널 제거" -#: src/Gtk/MainWindow.vala:336 +#: src/Gtk/MainWindow.vala:337 msgid "Reload" msgstr "새로고침" -#: src/Gtk/MainWindow.vala:337 +#: src/Gtk/MainWindow.vala:338 msgid "" "Delete cache and reload all kernel info\n" "\n" @@ -402,40 +402,40 @@ msgstr "" "\n" "!! 이렇게 하면 모든 사용자 메모도 삭제됩니다 !!" -#: src/Gtk/MainWindow.vala:342 src/Gtk/SettingsDialog.vala:49 +#: src/Gtk/MainWindow.vala:343 src/Gtk/SettingsDialog.vala:49 msgid "Settings" msgstr "설정" -#: src/Gtk/MainWindow.vala:347 +#: src/Gtk/MainWindow.vala:348 msgid "About" msgstr "정보" -#: src/Gtk/MainWindow.vala:352 +#: src/Gtk/MainWindow.vala:353 msgid "Exit" msgstr "출구" -#: src/Gtk/MainWindow.vala:421 +#: src/Gtk/MainWindow.vala:422 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "우분투 기반 배포판의 커널 업그레이드 도구" -#: src/Gtk/MainWindow.vala:422 +#: src/Gtk/MainWindow.vala:423 msgid "Forked" msgstr "가랑이진" -#: src/Gtk/MainWindow.vala:422 +#: src/Gtk/MainWindow.vala:423 msgid "Original" msgstr "원문 언어" -#: src/Gtk/MainWindow.vala:460 +#: src/Gtk/MainWindow.vala:461 msgid "Updating kernels" msgstr "커널 업데이트" -#: src/Gtk/MainWindow.vala:531 +#: src/Gtk/MainWindow.vala:532 msgid "available" msgstr "사용가능" -#: src/Gtk/MainWindow.vala:574 src/Gtk/MainWindow.vala:615 -#: src/Gtk/MainWindow.vala:650 +#: src/Gtk/MainWindow.vala:575 src/Gtk/MainWindow.vala:616 +#: src/Gtk/MainWindow.vala:651 msgid "DONE" msgstr "수행" diff --git a/po/messages.pot b/po/messages.pot index 2a4eed68..3633ac45 100644 --- a/po/messages.pot +++ b/po/messages.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline 1.2.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-20 06:35-0400\n" +"POT-Creation-Date: 2023-05-22 13:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,159 +17,159 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" -#: src/Common/LinuxKernel.vala:103 +#: src/Common/LinuxKernel.vala:104 msgid "Distribution" msgstr "" -#: src/Common/LinuxKernel.vala:118 +#: src/Common/LinuxKernel.vala:119 msgid "Architecture" msgstr "" -#: src/Common/LinuxKernel.vala:133 +#: src/Common/LinuxKernel.vala:134 msgid "Running kernel" msgstr "" -#: src/Common/LinuxKernel.vala:258 +#: src/Common/LinuxKernel.vala:259 msgid "loading cached" msgstr "" -#: src/Common/LinuxKernel.vala:270 +#: src/Common/LinuxKernel.vala:271 msgid "queuing download" msgstr "" -#: src/Common/LinuxKernel.vala:291 +#: src/Common/LinuxKernel.vala:292 msgid "Fetching individual kernel indexes" msgstr "" -#: src/Common/LinuxKernel.vala:307 +#: src/Common/LinuxKernel.vala:308 msgid "loading downloaded" msgstr "" -#: src/Common/LinuxKernel.vala:342 +#: src/Common/LinuxKernel.vala:343 msgid "Updating from" msgstr "" -#: src/Common/LinuxKernel.vala:350 +#: src/Common/LinuxKernel.vala:351 msgid "OK" msgstr "" -#: src/Common/LinuxKernel.vala:353 +#: src/Common/LinuxKernel.vala:354 msgid "FAILED" msgstr "" -#: src/Common/LinuxKernel.vala:403 +#: src/Common/LinuxKernel.vala:404 msgid "Found installed" msgstr "" -#: src/Common/LinuxKernel.vala:741 src/Gtk/MainWindow.vala:522 -#: src/Gtk/MainWindow.vala:535 +#: src/Common/LinuxKernel.vala:742 src/Gtk/MainWindow.vala:523 +#: src/Gtk/MainWindow.vala:536 msgid "Running" msgstr "" -#: src/Common/LinuxKernel.vala:742 +#: src/Common/LinuxKernel.vala:743 msgid "Installed" msgstr "" -#: src/Common/LinuxKernel.vala:743 +#: src/Common/LinuxKernel.vala:744 msgid "Invalid" msgstr "" -#: src/Common/LinuxKernel.vala:817 +#: src/Common/LinuxKernel.vala:824 msgid "Packages Available" msgstr "" -#: src/Common/LinuxKernel.vala:823 +#: src/Common/LinuxKernel.vala:830 msgid "Packages Installed" msgstr "" -#: src/Common/LinuxKernel.vala:847 src/lib/TeeJee.FileSystem.vala:118 +#: src/Common/LinuxKernel.vala:858 src/lib/TeeJee.FileSystem.vala:118 msgid "File not found" msgstr "" -#: src/Common/LinuxKernel.vala:947 +#: src/Common/LinuxKernel.vala:948 msgid "Available Kernels" msgstr "" -#: src/Common/LinuxKernel.vala:984 +#: src/Common/LinuxKernel.vala:985 msgid "enabled" msgstr "" -#: src/Common/LinuxKernel.vala:1008 +#: src/Common/LinuxKernel.vala:1009 msgid "Downloading" msgstr "" -#: src/Common/LinuxKernel.vala:1029 +#: src/Common/LinuxKernel.vala:1030 msgid "is already installed." msgstr "" -#: src/Common/LinuxKernel.vala:1059 +#: src/Common/LinuxKernel.vala:1060 msgid "Uninstalling selected kernels" msgstr "" -#: src/Common/LinuxKernel.vala:1065 +#: src/Common/LinuxKernel.vala:1066 msgid "requested" msgstr "" -#: src/Common/LinuxKernel.vala:1068 +#: src/Common/LinuxKernel.vala:1069 msgid "not uninstalling the currently running kernel" msgstr "" -#: src/Common/LinuxKernel.vala:1084 +#: src/Common/LinuxKernel.vala:1085 msgid "found" msgstr "" -#: src/Common/LinuxKernel.vala:1087 +#: src/Common/LinuxKernel.vala:1088 msgid "No packages to un-install!" msgstr "" -#: src/Common/LinuxKernel.vala:1135 +#: src/Common/LinuxKernel.vala:1136 msgid "Could not find running kernel in list" msgstr "" -#: src/Common/LinuxKernel.vala:1140 +#: src/Common/LinuxKernel.vala:1141 msgid "Could not find any kernels to uninstall" msgstr "" -#: src/Common/LinuxKernel.vala:1148 +#: src/Common/LinuxKernel.vala:1149 msgid "The following kernels will be uninstalled" msgstr "" -#: src/Common/LinuxKernel.vala:1152 +#: src/Common/LinuxKernel.vala:1153 msgid "Continue ?" msgstr "" -#: src/Common/LinuxKernel.vala:1174 src/Console/AppConsole.vala:292 +#: src/Common/LinuxKernel.vala:1175 src/Console/AppConsole.vala:292 msgid "Latest update" msgstr "" -#: src/Common/LinuxKernel.vala:1185 src/Console/AppConsole.vala:299 +#: src/Common/LinuxKernel.vala:1186 src/Console/AppConsole.vala:299 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:1193 src/Console/AppConsole.vala:304 +#: src/Common/LinuxKernel.vala:1194 src/Console/AppConsole.vala:304 #: src/Console/AppConsole.vala:320 msgid "No updates found" msgstr "" -#: src/Common/LinuxKernel.vala:1202 +#: src/Common/LinuxKernel.vala:1203 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "" -#: src/Common/Main.vala:380 +#: src/Common/Main.vala:376 msgid "Called from" msgstr "" -#: src/Common/Main.vala:380 +#: src/Common/Main.vala:376 msgid "at logon" msgstr "" -#: src/Common/Main.vala:381 +#: src/Common/Main.vala:377 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" -#: src/Common/Main.vala:413 +#: src/Common/Main.vala:409 msgid "Notifications are disabled" msgstr "" @@ -218,7 +218,7 @@ msgstr "" msgid "Uninstall specified kernel" msgstr "" -#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:331 +#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:332 msgid "Uninstall all but the highest installed version" msgstr "" @@ -312,7 +312,7 @@ msgstr "" msgid "Show" msgstr "" -#: src/Console/AppConsole.vala:347 src/Gtk/MainWindow.vala:298 +#: src/Console/AppConsole.vala:347 src/Gtk/MainWindow.vala:299 msgid "Install" msgstr "" @@ -380,63 +380,63 @@ msgstr "" msgid "Notes" msgstr "" -#: src/Gtk/MainWindow.vala:308 +#: src/Gtk/MainWindow.vala:309 msgid "Uninstall" msgstr "" -#: src/Gtk/MainWindow.vala:319 +#: src/Gtk/MainWindow.vala:320 msgid "Changelog, build status, etc" msgstr "" -#: src/Gtk/MainWindow.vala:330 +#: src/Gtk/MainWindow.vala:331 msgid "Uninstall Old" msgstr "" -#: src/Gtk/MainWindow.vala:336 +#: src/Gtk/MainWindow.vala:337 msgid "Reload" msgstr "" -#: src/Gtk/MainWindow.vala:337 +#: src/Gtk/MainWindow.vala:338 msgid "" "Delete cache and reload all kernel info\n" "\n" "THIS WILL ALSO DELETE ALL USER NOTES" msgstr "" -#: src/Gtk/MainWindow.vala:342 src/Gtk/SettingsDialog.vala:49 +#: src/Gtk/MainWindow.vala:343 src/Gtk/SettingsDialog.vala:49 msgid "Settings" msgstr "" -#: src/Gtk/MainWindow.vala:347 +#: src/Gtk/MainWindow.vala:348 msgid "About" msgstr "" -#: src/Gtk/MainWindow.vala:352 +#: src/Gtk/MainWindow.vala:353 msgid "Exit" msgstr "" -#: src/Gtk/MainWindow.vala:421 +#: src/Gtk/MainWindow.vala:422 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "" -#: src/Gtk/MainWindow.vala:422 +#: src/Gtk/MainWindow.vala:423 msgid "Forked" msgstr "" -#: src/Gtk/MainWindow.vala:422 +#: src/Gtk/MainWindow.vala:423 msgid "Original" msgstr "" -#: src/Gtk/MainWindow.vala:460 +#: src/Gtk/MainWindow.vala:461 msgid "Updating kernels" msgstr "" -#: src/Gtk/MainWindow.vala:531 +#: src/Gtk/MainWindow.vala:532 msgid "available" msgstr "" -#: src/Gtk/MainWindow.vala:574 src/Gtk/MainWindow.vala:615 -#: src/Gtk/MainWindow.vala:650 +#: src/Gtk/MainWindow.vala:575 src/Gtk/MainWindow.vala:616 +#: src/Gtk/MainWindow.vala:651 msgid "DONE" msgstr "" diff --git a/po/nl.po b/po/nl.po index 65abf975..1bf3d1ef 100644 --- a/po/nl.po +++ b/po/nl.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-20 06:35-0400\n" +"POT-Creation-Date: 2023-05-22 13:54-0400\n" "PO-Revision-Date: 2020-08-23 13:55+0200\n" "Last-Translator: Heimen Stoffels \n" "Language-Team: Dutch (Netherlands)\n" @@ -13,161 +13,161 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Poedit 3.2.2\n" -#: src/Common/LinuxKernel.vala:103 +#: src/Common/LinuxKernel.vala:104 msgid "Distribution" msgstr "Distributie" -#: src/Common/LinuxKernel.vala:118 +#: src/Common/LinuxKernel.vala:119 msgid "Architecture" msgstr "Architectuur" -#: src/Common/LinuxKernel.vala:133 +#: src/Common/LinuxKernel.vala:134 msgid "Running kernel" msgstr "Kernel uitvoeren" -#: src/Common/LinuxKernel.vala:258 +#: src/Common/LinuxKernel.vala:259 msgid "loading cached" msgstr "laden in cache" -#: src/Common/LinuxKernel.vala:270 +#: src/Common/LinuxKernel.vala:271 msgid "queuing download" msgstr "wachtrijen downloaden" -#: src/Common/LinuxKernel.vala:291 +#: src/Common/LinuxKernel.vala:292 msgid "Fetching individual kernel indexes" msgstr "Afzonderlijke kernelindexen ophalen" -#: src/Common/LinuxKernel.vala:307 +#: src/Common/LinuxKernel.vala:308 msgid "loading downloaded" msgstr "laden gedownload" -#: src/Common/LinuxKernel.vala:342 +#: src/Common/LinuxKernel.vala:343 msgid "Updating from" msgstr "Bijwerken van" -#: src/Common/LinuxKernel.vala:350 +#: src/Common/LinuxKernel.vala:351 msgid "OK" msgstr "Oké" -#: src/Common/LinuxKernel.vala:353 +#: src/Common/LinuxKernel.vala:354 msgid "FAILED" msgstr "MISLUKT" -#: src/Common/LinuxKernel.vala:403 +#: src/Common/LinuxKernel.vala:404 msgid "Found installed" msgstr "Geïnstalleerd gevonden" -#: src/Common/LinuxKernel.vala:741 src/Gtk/MainWindow.vala:522 -#: src/Gtk/MainWindow.vala:535 +#: src/Common/LinuxKernel.vala:742 src/Gtk/MainWindow.vala:523 +#: src/Gtk/MainWindow.vala:536 msgid "Running" msgstr "In gebruik" -#: src/Common/LinuxKernel.vala:742 +#: src/Common/LinuxKernel.vala:743 msgid "Installed" msgstr "Geïnstalleerd" -#: src/Common/LinuxKernel.vala:743 +#: src/Common/LinuxKernel.vala:744 msgid "Invalid" msgstr "Ongeldig" -#: src/Common/LinuxKernel.vala:817 +#: src/Common/LinuxKernel.vala:824 msgid "Packages Available" msgstr "Beschikbare pakketten" -#: src/Common/LinuxKernel.vala:823 +#: src/Common/LinuxKernel.vala:830 msgid "Packages Installed" msgstr "Geïnstalleerde pakketten" -#: src/Common/LinuxKernel.vala:847 src/lib/TeeJee.FileSystem.vala:118 +#: src/Common/LinuxKernel.vala:858 src/lib/TeeJee.FileSystem.vala:118 msgid "File not found" msgstr "Het bestand is niet gevonden" -#: src/Common/LinuxKernel.vala:947 +#: src/Common/LinuxKernel.vala:948 msgid "Available Kernels" msgstr "Beschikbare kernels" -#: src/Common/LinuxKernel.vala:984 +#: src/Common/LinuxKernel.vala:985 msgid "enabled" msgstr "ingeschakeld" -#: src/Common/LinuxKernel.vala:1008 +#: src/Common/LinuxKernel.vala:1009 msgid "Downloading" msgstr "Downloaden" -#: src/Common/LinuxKernel.vala:1029 +#: src/Common/LinuxKernel.vala:1030 msgid "is already installed." msgstr "is al geïnstalleerd." -#: src/Common/LinuxKernel.vala:1059 +#: src/Common/LinuxKernel.vala:1060 msgid "Uninstalling selected kernels" msgstr "Geselecteerde kernels verwijderen" -#: src/Common/LinuxKernel.vala:1065 +#: src/Common/LinuxKernel.vala:1066 msgid "requested" msgstr "verzocht" -#: src/Common/LinuxKernel.vala:1068 +#: src/Common/LinuxKernel.vala:1069 msgid "not uninstalling the currently running kernel" msgstr "de momenteel actieve kernel niet verwijderen" -#: src/Common/LinuxKernel.vala:1084 +#: src/Common/LinuxKernel.vala:1085 msgid "found" msgstr "gevonden" -#: src/Common/LinuxKernel.vala:1087 +#: src/Common/LinuxKernel.vala:1088 msgid "No packages to un-install!" msgstr "Geen pakketten om te verwijderen!" -#: src/Common/LinuxKernel.vala:1135 +#: src/Common/LinuxKernel.vala:1136 msgid "Could not find running kernel in list" msgstr "De in gebruik zijnde kernel staat niet op de lijst" -#: src/Common/LinuxKernel.vala:1140 +#: src/Common/LinuxKernel.vala:1141 msgid "Could not find any kernels to uninstall" msgstr "Er zijn geen te verwijderen kernels" -#: src/Common/LinuxKernel.vala:1148 +#: src/Common/LinuxKernel.vala:1149 msgid "The following kernels will be uninstalled" msgstr "De volgende kernels worden verwijderd" -#: src/Common/LinuxKernel.vala:1152 +#: src/Common/LinuxKernel.vala:1153 msgid "Continue ?" msgstr "Wilt u doorgaan?" -#: src/Common/LinuxKernel.vala:1174 src/Console/AppConsole.vala:292 +#: src/Common/LinuxKernel.vala:1175 src/Console/AppConsole.vala:292 msgid "Latest update" msgstr "Recentste update" -#: src/Common/LinuxKernel.vala:1185 src/Console/AppConsole.vala:299 +#: src/Common/LinuxKernel.vala:1186 src/Console/AppConsole.vala:299 msgid "Latest point update" msgstr "Recentste puntupdate" -#: src/Common/LinuxKernel.vala:1193 src/Console/AppConsole.vala:304 +#: src/Common/LinuxKernel.vala:1194 src/Console/AppConsole.vala:304 #: src/Console/AppConsole.vala:320 msgid "No updates found" msgstr "Geen updates gevonden" -#: src/Common/LinuxKernel.vala:1202 +#: src/Common/LinuxKernel.vala:1203 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Wilt u versie %s installeren? (j/n): " -#: src/Common/Main.vala:380 +#: src/Common/Main.vala:376 msgid "Called from" msgstr "Aangeroepen door" -#: src/Common/Main.vala:380 +#: src/Common/Main.vala:376 msgid "at logon" msgstr "bij het opstarten" -#: src/Common/Main.vala:381 +#: src/Common/Main.vala:377 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" "Dit bestand wordt overschreven en opnieuw uitgevoerd wanneer instellingen " "worden opgeslagen in" -#: src/Common/Main.vala:413 +#: src/Common/Main.vala:409 msgid "Notifications are disabled" msgstr "Meldingen zijn uitgeschakeld" @@ -216,7 +216,7 @@ msgstr "Opgegeven mainline-kernel installeren" msgid "Uninstall specified kernel" msgstr "Opgegeven kernel verwijderen" -#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:331 +#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:332 msgid "Uninstall all but the highest installed version" msgstr "Verwijder alle behalve de hoogst geïnstalleerde versie" @@ -311,7 +311,7 @@ msgstr "Kernel %s is beschikbaar" msgid "Show" msgstr "Tonen" -#: src/Console/AppConsole.vala:347 src/Gtk/MainWindow.vala:298 +#: src/Console/AppConsole.vala:347 src/Gtk/MainWindow.vala:299 msgid "Install" msgstr "Installeren" @@ -379,23 +379,23 @@ msgstr "Status" msgid "Notes" msgstr "Notities" -#: src/Gtk/MainWindow.vala:308 +#: src/Gtk/MainWindow.vala:309 msgid "Uninstall" msgstr "Deïnstalleren" -#: src/Gtk/MainWindow.vala:319 +#: src/Gtk/MainWindow.vala:320 msgid "Changelog, build status, etc" msgstr "" -#: src/Gtk/MainWindow.vala:330 +#: src/Gtk/MainWindow.vala:331 msgid "Uninstall Old" msgstr "Verwijder Oude" -#: src/Gtk/MainWindow.vala:336 +#: src/Gtk/MainWindow.vala:337 msgid "Reload" msgstr "Herladen" -#: src/Gtk/MainWindow.vala:337 +#: src/Gtk/MainWindow.vala:338 msgid "" "Delete cache and reload all kernel info\n" "\n" @@ -405,40 +405,40 @@ msgstr "" "\n" "HIERMEE WORDEN OOK ALLE GEBRUIKERSNOTITIES VERWIJDERD" -#: src/Gtk/MainWindow.vala:342 src/Gtk/SettingsDialog.vala:49 +#: src/Gtk/MainWindow.vala:343 src/Gtk/SettingsDialog.vala:49 msgid "Settings" msgstr "Instellingen" -#: src/Gtk/MainWindow.vala:347 +#: src/Gtk/MainWindow.vala:348 msgid "About" msgstr "Over" -#: src/Gtk/MainWindow.vala:352 +#: src/Gtk/MainWindow.vala:353 msgid "Exit" msgstr "Afsluiten" -#: src/Gtk/MainWindow.vala:421 +#: src/Gtk/MainWindow.vala:422 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Een kernelupgradehulpmiddel voor op Ubuntu gebaseerde distributies" -#: src/Gtk/MainWindow.vala:422 +#: src/Gtk/MainWindow.vala:423 msgid "Forked" msgstr "Geforkt" -#: src/Gtk/MainWindow.vala:422 +#: src/Gtk/MainWindow.vala:423 msgid "Original" msgstr "Origineel" -#: src/Gtk/MainWindow.vala:460 +#: src/Gtk/MainWindow.vala:461 msgid "Updating kernels" msgstr "Kernels bijwerken" -#: src/Gtk/MainWindow.vala:531 +#: src/Gtk/MainWindow.vala:532 msgid "available" msgstr "beschikbaar" -#: src/Gtk/MainWindow.vala:574 src/Gtk/MainWindow.vala:615 -#: src/Gtk/MainWindow.vala:650 +#: src/Gtk/MainWindow.vala:575 src/Gtk/MainWindow.vala:616 +#: src/Gtk/MainWindow.vala:651 msgid "DONE" msgstr "AFGEROND" diff --git a/po/pl.po b/po/pl.po index f153852d..17af672d 100644 --- a/po/pl.po +++ b/po/pl.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-20 06:35-0400\n" +"POT-Creation-Date: 2023-05-22 13:54-0400\n" "PO-Revision-Date: 2023-04-13 07:43+0200\n" "Last-Translator: Matthaiks\n" "Language-Team: Polish\n" @@ -12,161 +12,161 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Poedit 3.2\n" -#: src/Common/LinuxKernel.vala:103 +#: src/Common/LinuxKernel.vala:104 msgid "Distribution" msgstr "Dystrybucja" -#: src/Common/LinuxKernel.vala:118 +#: src/Common/LinuxKernel.vala:119 msgid "Architecture" msgstr "Architektura" -#: src/Common/LinuxKernel.vala:133 +#: src/Common/LinuxKernel.vala:134 msgid "Running kernel" msgstr "Uruchomione jądro" -#: src/Common/LinuxKernel.vala:258 +#: src/Common/LinuxKernel.vala:259 msgid "loading cached" msgstr "ładowanie z pamięci podręcznej" -#: src/Common/LinuxKernel.vala:270 +#: src/Common/LinuxKernel.vala:271 msgid "queuing download" msgstr "pobieranie w kolejce" -#: src/Common/LinuxKernel.vala:291 +#: src/Common/LinuxKernel.vala:292 msgid "Fetching individual kernel indexes" msgstr "Pobieranie indywidualnych indeksów jądra" -#: src/Common/LinuxKernel.vala:307 +#: src/Common/LinuxKernel.vala:308 msgid "loading downloaded" msgstr "ładowanie pobranych" -#: src/Common/LinuxKernel.vala:342 +#: src/Common/LinuxKernel.vala:343 msgid "Updating from" msgstr "Aktualizowanie z" -#: src/Common/LinuxKernel.vala:350 +#: src/Common/LinuxKernel.vala:351 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:353 +#: src/Common/LinuxKernel.vala:354 msgid "FAILED" msgstr "NIEPOWODZENIE" -#: src/Common/LinuxKernel.vala:403 +#: src/Common/LinuxKernel.vala:404 msgid "Found installed" msgstr "Znaleziono zainstalowane" -#: src/Common/LinuxKernel.vala:741 src/Gtk/MainWindow.vala:522 -#: src/Gtk/MainWindow.vala:535 +#: src/Common/LinuxKernel.vala:742 src/Gtk/MainWindow.vala:523 +#: src/Gtk/MainWindow.vala:536 msgid "Running" msgstr "Uruchomione" -#: src/Common/LinuxKernel.vala:742 +#: src/Common/LinuxKernel.vala:743 msgid "Installed" msgstr "Zainstalowane" -#: src/Common/LinuxKernel.vala:743 +#: src/Common/LinuxKernel.vala:744 msgid "Invalid" msgstr "Nieprawidłowe" -#: src/Common/LinuxKernel.vala:817 +#: src/Common/LinuxKernel.vala:824 msgid "Packages Available" msgstr "Dostępne pakiety" -#: src/Common/LinuxKernel.vala:823 +#: src/Common/LinuxKernel.vala:830 msgid "Packages Installed" msgstr "Pakiety zainstalowane" -#: src/Common/LinuxKernel.vala:847 src/lib/TeeJee.FileSystem.vala:118 +#: src/Common/LinuxKernel.vala:858 src/lib/TeeJee.FileSystem.vala:118 msgid "File not found" msgstr "Nie odnaleziono pliku" -#: src/Common/LinuxKernel.vala:947 +#: src/Common/LinuxKernel.vala:948 msgid "Available Kernels" msgstr "Dostępne jądra" -#: src/Common/LinuxKernel.vala:984 +#: src/Common/LinuxKernel.vala:985 msgid "enabled" msgstr "włączone" -#: src/Common/LinuxKernel.vala:1008 +#: src/Common/LinuxKernel.vala:1009 msgid "Downloading" msgstr "Pobieranie" -#: src/Common/LinuxKernel.vala:1029 +#: src/Common/LinuxKernel.vala:1030 msgid "is already installed." msgstr "jest już zainstalowane." -#: src/Common/LinuxKernel.vala:1059 +#: src/Common/LinuxKernel.vala:1060 msgid "Uninstalling selected kernels" msgstr "Odinstalowanie wybranych jąder" -#: src/Common/LinuxKernel.vala:1065 +#: src/Common/LinuxKernel.vala:1066 msgid "requested" msgstr "zażądane" -#: src/Common/LinuxKernel.vala:1068 +#: src/Common/LinuxKernel.vala:1069 msgid "not uninstalling the currently running kernel" msgstr "bez odinstalowywania aktualnie uruchomionego jądra" -#: src/Common/LinuxKernel.vala:1084 +#: src/Common/LinuxKernel.vala:1085 msgid "found" msgstr "znalezione" -#: src/Common/LinuxKernel.vala:1087 +#: src/Common/LinuxKernel.vala:1088 msgid "No packages to un-install!" msgstr "Brak pakietów do odinstalowania!" -#: src/Common/LinuxKernel.vala:1135 +#: src/Common/LinuxKernel.vala:1136 msgid "Could not find running kernel in list" msgstr "Nie można znaleźć uruchomionego jądra na liście" -#: src/Common/LinuxKernel.vala:1140 +#: src/Common/LinuxKernel.vala:1141 msgid "Could not find any kernels to uninstall" msgstr "Nie można znaleźć żadnych jąder do odinstalowania" -#: src/Common/LinuxKernel.vala:1148 +#: src/Common/LinuxKernel.vala:1149 msgid "The following kernels will be uninstalled" msgstr "Następujące jądra zostaną odinstalowane" -#: src/Common/LinuxKernel.vala:1152 +#: src/Common/LinuxKernel.vala:1153 msgid "Continue ?" msgstr "Kontynuować?" -#: src/Common/LinuxKernel.vala:1174 src/Console/AppConsole.vala:292 +#: src/Common/LinuxKernel.vala:1175 src/Console/AppConsole.vala:292 msgid "Latest update" msgstr "Najnowsza aktualizacja" -#: src/Common/LinuxKernel.vala:1185 src/Console/AppConsole.vala:299 +#: src/Common/LinuxKernel.vala:1186 src/Console/AppConsole.vala:299 msgid "Latest point update" msgstr "Najnowsza aktualizacja punktowa" -#: src/Common/LinuxKernel.vala:1193 src/Console/AppConsole.vala:304 +#: src/Common/LinuxKernel.vala:1194 src/Console/AppConsole.vala:304 #: src/Console/AppConsole.vala:320 msgid "No updates found" msgstr "Nie znaleziono aktualizacji" -#: src/Common/LinuxKernel.vala:1202 +#: src/Common/LinuxKernel.vala:1203 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Zainstalować wersję jądra %s? (t/n): " -#: src/Common/Main.vala:380 +#: src/Common/Main.vala:376 msgid "Called from" msgstr "Wywołano z" -#: src/Common/Main.vala:380 +#: src/Common/Main.vala:376 msgid "at logon" msgstr "przy logowaniu" -#: src/Common/Main.vala:381 +#: src/Common/Main.vala:377 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" "Ten plik jest nadpisywany i wykonywany ponownie za każdym razem, gdy " "ustawienia są zapisywane w" -#: src/Common/Main.vala:413 +#: src/Common/Main.vala:409 msgid "Notifications are disabled" msgstr "Powiadomienia są wyłączone" @@ -215,7 +215,7 @@ msgstr "Zainstaluj wybrane jądro" msgid "Uninstall specified kernel" msgstr "Odinstaluj wybrane jądro" -#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:331 +#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:332 msgid "Uninstall all but the highest installed version" msgstr "Odinstaluj wszystkie oprócz najwyższej zainstalowanej wersji" @@ -309,7 +309,7 @@ msgstr "Dostępne %s jądra" msgid "Show" msgstr "Pokaż" -#: src/Console/AppConsole.vala:347 src/Gtk/MainWindow.vala:298 +#: src/Console/AppConsole.vala:347 src/Gtk/MainWindow.vala:299 msgid "Install" msgstr "Zainstaluj" @@ -377,23 +377,23 @@ msgstr "Status" msgid "Notes" msgstr "Notatki" -#: src/Gtk/MainWindow.vala:308 +#: src/Gtk/MainWindow.vala:309 msgid "Uninstall" msgstr "Odinstaluj" -#: src/Gtk/MainWindow.vala:319 +#: src/Gtk/MainWindow.vala:320 msgid "Changelog, build status, etc" msgstr "Dziennik zmian, status kompilacji itd." -#: src/Gtk/MainWindow.vala:330 +#: src/Gtk/MainWindow.vala:331 msgid "Uninstall Old" msgstr "Odinstaluj stare" -#: src/Gtk/MainWindow.vala:336 +#: src/Gtk/MainWindow.vala:337 msgid "Reload" msgstr "Wczytaj ponownie" -#: src/Gtk/MainWindow.vala:337 +#: src/Gtk/MainWindow.vala:338 msgid "" "Delete cache and reload all kernel info\n" "\n" @@ -403,40 +403,40 @@ msgstr "" "\n" "SPOWODUJE TO RÓWNIEŻ USUNIĘCIE WSZYSTKICH NOTATEK UŻYTKOWNIKA" -#: src/Gtk/MainWindow.vala:342 src/Gtk/SettingsDialog.vala:49 +#: src/Gtk/MainWindow.vala:343 src/Gtk/SettingsDialog.vala:49 msgid "Settings" msgstr "Ustawienia" -#: src/Gtk/MainWindow.vala:347 +#: src/Gtk/MainWindow.vala:348 msgid "About" msgstr "O programie" -#: src/Gtk/MainWindow.vala:352 +#: src/Gtk/MainWindow.vala:353 msgid "Exit" msgstr "Wyjdź" -#: src/Gtk/MainWindow.vala:421 +#: src/Gtk/MainWindow.vala:422 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Narzędzie uaktualniania jądra dla dystrybucji z rodziny Ubuntu" -#: src/Gtk/MainWindow.vala:422 +#: src/Gtk/MainWindow.vala:423 msgid "Forked" msgstr "Sforkowane" -#: src/Gtk/MainWindow.vala:422 +#: src/Gtk/MainWindow.vala:423 msgid "Original" msgstr "Oryginalne" -#: src/Gtk/MainWindow.vala:460 +#: src/Gtk/MainWindow.vala:461 msgid "Updating kernels" msgstr "Aktualizowanie jąder" -#: src/Gtk/MainWindow.vala:531 +#: src/Gtk/MainWindow.vala:532 msgid "available" msgstr "dostępne" -#: src/Gtk/MainWindow.vala:574 src/Gtk/MainWindow.vala:615 -#: src/Gtk/MainWindow.vala:650 +#: src/Gtk/MainWindow.vala:575 src/Gtk/MainWindow.vala:616 +#: src/Gtk/MainWindow.vala:651 msgid "DONE" msgstr "GOTOWE" diff --git a/po/ru.po b/po/ru.po index eed2b547..d9417549 100644 --- a/po/ru.po +++ b/po/ru.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-20 06:35-0400\n" +"POT-Creation-Date: 2023-05-22 13:54-0400\n" "PO-Revision-Date: 2023-04-17 20:16+0300\n" "Last-Translator: Danik2343 \n" "Language-Team: Russian\n" @@ -13,160 +13,160 @@ msgstr "" "X-Launchpad-Export-Date: 2016-12-13 11:48+0000\n" "X-Generator: Poedit 3.0.1\n" -#: src/Common/LinuxKernel.vala:103 +#: src/Common/LinuxKernel.vala:104 msgid "Distribution" msgstr "Дистрибутив" -#: src/Common/LinuxKernel.vala:118 +#: src/Common/LinuxKernel.vala:119 msgid "Architecture" msgstr "Архитектура" -#: src/Common/LinuxKernel.vala:133 +#: src/Common/LinuxKernel.vala:134 msgid "Running kernel" msgstr "Запущенное ядро" -#: src/Common/LinuxKernel.vala:258 +#: src/Common/LinuxKernel.vala:259 msgid "loading cached" msgstr "загрузка в кэше" -#: src/Common/LinuxKernel.vala:270 +#: src/Common/LinuxKernel.vala:271 msgid "queuing download" msgstr "загрузка очередей" -#: src/Common/LinuxKernel.vala:291 +#: src/Common/LinuxKernel.vala:292 msgid "Fetching individual kernel indexes" msgstr "Получение отдельных индексов ядра" -#: src/Common/LinuxKernel.vala:307 +#: src/Common/LinuxKernel.vala:308 msgid "loading downloaded" msgstr "загрузка загруженных" -#: src/Common/LinuxKernel.vala:342 +#: src/Common/LinuxKernel.vala:343 msgid "Updating from" msgstr "Обновление из" -#: src/Common/LinuxKernel.vala:350 +#: src/Common/LinuxKernel.vala:351 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:353 +#: src/Common/LinuxKernel.vala:354 msgid "FAILED" msgstr "НЕУДАВШИЙСЯ" -#: src/Common/LinuxKernel.vala:403 +#: src/Common/LinuxKernel.vala:404 msgid "Found installed" msgstr "Найдено установлененное" -#: src/Common/LinuxKernel.vala:741 src/Gtk/MainWindow.vala:522 -#: src/Gtk/MainWindow.vala:535 +#: src/Common/LinuxKernel.vala:742 src/Gtk/MainWindow.vala:523 +#: src/Gtk/MainWindow.vala:536 msgid "Running" msgstr "Используется" -#: src/Common/LinuxKernel.vala:742 +#: src/Common/LinuxKernel.vala:743 msgid "Installed" msgstr "Установлено" -#: src/Common/LinuxKernel.vala:743 +#: src/Common/LinuxKernel.vala:744 msgid "Invalid" msgstr "Негодный" -#: src/Common/LinuxKernel.vala:817 +#: src/Common/LinuxKernel.vala:824 msgid "Packages Available" msgstr "Доступные пакеты" -#: src/Common/LinuxKernel.vala:823 +#: src/Common/LinuxKernel.vala:830 msgid "Packages Installed" msgstr "Установленные пакеты" -#: src/Common/LinuxKernel.vala:847 src/lib/TeeJee.FileSystem.vala:118 +#: src/Common/LinuxKernel.vala:858 src/lib/TeeJee.FileSystem.vala:118 msgid "File not found" msgstr "Файл не найден" -#: src/Common/LinuxKernel.vala:947 +#: src/Common/LinuxKernel.vala:948 msgid "Available Kernels" msgstr "Доступные ядра" -#: src/Common/LinuxKernel.vala:984 +#: src/Common/LinuxKernel.vala:985 msgid "enabled" msgstr "включено" -#: src/Common/LinuxKernel.vala:1008 +#: src/Common/LinuxKernel.vala:1009 msgid "Downloading" msgstr "Загрузки" -#: src/Common/LinuxKernel.vala:1029 +#: src/Common/LinuxKernel.vala:1030 msgid "is already installed." msgstr "уже установлен." -#: src/Common/LinuxKernel.vala:1059 +#: src/Common/LinuxKernel.vala:1060 msgid "Uninstalling selected kernels" msgstr "Удаление выбранных ядер" -#: src/Common/LinuxKernel.vala:1065 +#: src/Common/LinuxKernel.vala:1066 msgid "requested" msgstr "запрошено" -#: src/Common/LinuxKernel.vala:1068 +#: src/Common/LinuxKernel.vala:1069 msgid "not uninstalling the currently running kernel" msgstr "не удаляет текущее работающее ядро" -#: src/Common/LinuxKernel.vala:1084 +#: src/Common/LinuxKernel.vala:1085 msgid "found" msgstr "найдено" -#: src/Common/LinuxKernel.vala:1087 +#: src/Common/LinuxKernel.vala:1088 msgid "No packages to un-install!" msgstr "Нет пакетов для удаления!" -#: src/Common/LinuxKernel.vala:1135 +#: src/Common/LinuxKernel.vala:1136 msgid "Could not find running kernel in list" msgstr "Could not find running kernel in list" -#: src/Common/LinuxKernel.vala:1140 +#: src/Common/LinuxKernel.vala:1141 msgid "Could not find any kernels to uninstall" msgstr "Не удалось найти ядра для деинсталляции" -#: src/Common/LinuxKernel.vala:1148 +#: src/Common/LinuxKernel.vala:1149 msgid "The following kernels will be uninstalled" msgstr "Следующие ядра будут удалены" -#: src/Common/LinuxKernel.vala:1152 +#: src/Common/LinuxKernel.vala:1153 msgid "Continue ?" msgstr "Продолжить ?" -#: src/Common/LinuxKernel.vala:1174 src/Console/AppConsole.vala:292 +#: src/Common/LinuxKernel.vala:1175 src/Console/AppConsole.vala:292 msgid "Latest update" msgstr "Последнее обновление" -#: src/Common/LinuxKernel.vala:1185 src/Console/AppConsole.vala:299 +#: src/Common/LinuxKernel.vala:1186 src/Console/AppConsole.vala:299 msgid "Latest point update" msgstr "Последнее обновление пунктов" -#: src/Common/LinuxKernel.vala:1193 src/Console/AppConsole.vala:304 +#: src/Common/LinuxKernel.vala:1194 src/Console/AppConsole.vala:304 #: src/Console/AppConsole.vala:320 msgid "No updates found" msgstr "Обновлений не найдено" -#: src/Common/LinuxKernel.vala:1202 +#: src/Common/LinuxKernel.vala:1203 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Установить версию ядра %s ? (y/n): " -#: src/Common/Main.vala:380 +#: src/Common/Main.vala:376 msgid "Called from" msgstr "Вызван из" -#: src/Common/Main.vala:380 +#: src/Common/Main.vala:376 msgid "at logon" msgstr "при запуске" -#: src/Common/Main.vala:381 +#: src/Common/Main.vala:377 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" "Этот файл перезаписывается и выполняется снова при сохранении настроек в" -#: src/Common/Main.vala:413 +#: src/Common/Main.vala:409 msgid "Notifications are disabled" msgstr "Уведомления отключены" @@ -215,7 +215,7 @@ msgstr "Установить указанную ветку основного я msgid "Uninstall specified kernel" msgstr "Установить указанное ядро" -#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:331 +#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:332 msgid "Uninstall all but the highest installed version" msgstr "Удаление всех установленных версий, кроме самой высокой" @@ -309,7 +309,7 @@ msgstr "Доступно ядро %s" msgid "Show" msgstr "Показать" -#: src/Console/AppConsole.vala:347 src/Gtk/MainWindow.vala:298 +#: src/Console/AppConsole.vala:347 src/Gtk/MainWindow.vala:299 msgid "Install" msgstr "Установить" @@ -377,23 +377,23 @@ msgstr "Состояние" msgid "Notes" msgstr "Примечания" -#: src/Gtk/MainWindow.vala:308 +#: src/Gtk/MainWindow.vala:309 msgid "Uninstall" msgstr "Удалить" -#: src/Gtk/MainWindow.vala:319 +#: src/Gtk/MainWindow.vala:320 msgid "Changelog, build status, etc" msgstr "Список изменений, статус сборки и т.д" -#: src/Gtk/MainWindow.vala:330 +#: src/Gtk/MainWindow.vala:331 msgid "Uninstall Old" msgstr "Удалить старые" -#: src/Gtk/MainWindow.vala:336 +#: src/Gtk/MainWindow.vala:337 msgid "Reload" msgstr "Перезагрузить" -#: src/Gtk/MainWindow.vala:337 +#: src/Gtk/MainWindow.vala:338 msgid "" "Delete cache and reload all kernel info\n" "\n" @@ -403,40 +403,40 @@ msgstr "" "\n" "ЭТО ТАКЖЕ ПРИВЕДЕТ К УДАЛЕНИЮ ВСЕХ ЗАМЕТОК ПОЛЬЗОВАТЕЛЯ" -#: src/Gtk/MainWindow.vala:342 src/Gtk/SettingsDialog.vala:49 +#: src/Gtk/MainWindow.vala:343 src/Gtk/SettingsDialog.vala:49 msgid "Settings" msgstr "Настройки" -#: src/Gtk/MainWindow.vala:347 +#: src/Gtk/MainWindow.vala:348 msgid "About" msgstr "О программе" -#: src/Gtk/MainWindow.vala:352 +#: src/Gtk/MainWindow.vala:353 msgid "Exit" msgstr "Выход" -#: src/Gtk/MainWindow.vala:421 +#: src/Gtk/MainWindow.vala:422 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Программа обновления ядра для дистрибутивов на базе Ubuntu" -#: src/Gtk/MainWindow.vala:422 +#: src/Gtk/MainWindow.vala:423 msgid "Forked" msgstr "Форк" -#: src/Gtk/MainWindow.vala:422 +#: src/Gtk/MainWindow.vala:423 msgid "Original" msgstr "Оригинал" -#: src/Gtk/MainWindow.vala:460 +#: src/Gtk/MainWindow.vala:461 msgid "Updating kernels" msgstr "Обновление ядер" -#: src/Gtk/MainWindow.vala:531 +#: src/Gtk/MainWindow.vala:532 msgid "available" msgstr "доступно" -#: src/Gtk/MainWindow.vala:574 src/Gtk/MainWindow.vala:615 -#: src/Gtk/MainWindow.vala:650 +#: src/Gtk/MainWindow.vala:575 src/Gtk/MainWindow.vala:616 +#: src/Gtk/MainWindow.vala:651 msgid "DONE" msgstr "ГОТОВО" diff --git a/po/sv.po b/po/sv.po index 03b20878..73a1355f 100644 --- a/po/sv.po +++ b/po/sv.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-20 06:35-0400\n" +"POT-Creation-Date: 2023-05-22 13:54-0400\n" "PO-Revision-Date: 2018-01-13 16:56+0100\n" "Last-Translator: Åke Engelbrektson \n" "Language-Team:Swedish\n" @@ -13,159 +13,159 @@ msgstr "" "X-Generator: Poedit 1.8.7.1\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: src/Common/LinuxKernel.vala:103 +#: src/Common/LinuxKernel.vala:104 msgid "Distribution" msgstr "Distribution" -#: src/Common/LinuxKernel.vala:118 +#: src/Common/LinuxKernel.vala:119 msgid "Architecture" msgstr "Arkitektur" -#: src/Common/LinuxKernel.vala:133 +#: src/Common/LinuxKernel.vala:134 msgid "Running kernel" msgstr "Löpande kernel" -#: src/Common/LinuxKernel.vala:258 +#: src/Common/LinuxKernel.vala:259 msgid "loading cached" msgstr "laddar cachelagrat" -#: src/Common/LinuxKernel.vala:270 +#: src/Common/LinuxKernel.vala:271 msgid "queuing download" msgstr "köbildning nedladdning" -#: src/Common/LinuxKernel.vala:291 +#: src/Common/LinuxKernel.vala:292 msgid "Fetching individual kernel indexes" msgstr "Hämta enskilda kernelindex" -#: src/Common/LinuxKernel.vala:307 +#: src/Common/LinuxKernel.vala:308 msgid "loading downloaded" msgstr "laddar nedladdad" -#: src/Common/LinuxKernel.vala:342 +#: src/Common/LinuxKernel.vala:343 msgid "Updating from" msgstr "Uppdatering från" -#: src/Common/LinuxKernel.vala:350 +#: src/Common/LinuxKernel.vala:351 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:353 +#: src/Common/LinuxKernel.vala:354 msgid "FAILED" msgstr "MISSLYCKADES" -#: src/Common/LinuxKernel.vala:403 +#: src/Common/LinuxKernel.vala:404 msgid "Found installed" msgstr "Hittade installerat" -#: src/Common/LinuxKernel.vala:741 src/Gtk/MainWindow.vala:522 -#: src/Gtk/MainWindow.vala:535 +#: src/Common/LinuxKernel.vala:742 src/Gtk/MainWindow.vala:523 +#: src/Gtk/MainWindow.vala:536 msgid "Running" msgstr "Körs" -#: src/Common/LinuxKernel.vala:742 +#: src/Common/LinuxKernel.vala:743 msgid "Installed" msgstr "Installerad" -#: src/Common/LinuxKernel.vala:743 +#: src/Common/LinuxKernel.vala:744 msgid "Invalid" msgstr "Ogiltig" -#: src/Common/LinuxKernel.vala:817 +#: src/Common/LinuxKernel.vala:824 msgid "Packages Available" msgstr "Tillgängliga paket" -#: src/Common/LinuxKernel.vala:823 +#: src/Common/LinuxKernel.vala:830 msgid "Packages Installed" msgstr "Installerade paket" -#: src/Common/LinuxKernel.vala:847 src/lib/TeeJee.FileSystem.vala:118 +#: src/Common/LinuxKernel.vala:858 src/lib/TeeJee.FileSystem.vala:118 msgid "File not found" msgstr "Filen kan inte hittas" -#: src/Common/LinuxKernel.vala:947 +#: src/Common/LinuxKernel.vala:948 msgid "Available Kernels" msgstr "Tillgängliga kärnor" -#: src/Common/LinuxKernel.vala:984 +#: src/Common/LinuxKernel.vala:985 msgid "enabled" msgstr "aktiverat" -#: src/Common/LinuxKernel.vala:1008 +#: src/Common/LinuxKernel.vala:1009 msgid "Downloading" msgstr "Ladda ner" -#: src/Common/LinuxKernel.vala:1029 +#: src/Common/LinuxKernel.vala:1030 msgid "is already installed." msgstr "är redan installerat." -#: src/Common/LinuxKernel.vala:1059 +#: src/Common/LinuxKernel.vala:1060 msgid "Uninstalling selected kernels" msgstr "Avinstallera valda kärnor" -#: src/Common/LinuxKernel.vala:1065 +#: src/Common/LinuxKernel.vala:1066 msgid "requested" msgstr "begärd" -#: src/Common/LinuxKernel.vala:1068 +#: src/Common/LinuxKernel.vala:1069 msgid "not uninstalling the currently running kernel" msgstr "Avinstallera inte den kärna som körs, för närvarande" -#: src/Common/LinuxKernel.vala:1084 +#: src/Common/LinuxKernel.vala:1085 msgid "found" msgstr "grunda" -#: src/Common/LinuxKernel.vala:1087 +#: src/Common/LinuxKernel.vala:1088 msgid "No packages to un-install!" msgstr "Inga paket att avinstallera!" -#: src/Common/LinuxKernel.vala:1135 +#: src/Common/LinuxKernel.vala:1136 msgid "Could not find running kernel in list" msgstr "Det gick inte att hitta kernel som körs i listan" -#: src/Common/LinuxKernel.vala:1140 +#: src/Common/LinuxKernel.vala:1141 msgid "Could not find any kernels to uninstall" msgstr "Det gick inte att hitta några kärnor att avinstallera" -#: src/Common/LinuxKernel.vala:1148 +#: src/Common/LinuxKernel.vala:1149 msgid "The following kernels will be uninstalled" msgstr "Följande kärnor kommer att avinstalleras" -#: src/Common/LinuxKernel.vala:1152 +#: src/Common/LinuxKernel.vala:1153 msgid "Continue ?" msgstr "Fortsätta?" -#: src/Common/LinuxKernel.vala:1174 src/Console/AppConsole.vala:292 +#: src/Common/LinuxKernel.vala:1175 src/Console/AppConsole.vala:292 msgid "Latest update" msgstr "Senaste uppdatering" -#: src/Common/LinuxKernel.vala:1185 src/Console/AppConsole.vala:299 +#: src/Common/LinuxKernel.vala:1186 src/Console/AppConsole.vala:299 msgid "Latest point update" msgstr "Senaste punktuppdatering" -#: src/Common/LinuxKernel.vala:1193 src/Console/AppConsole.vala:304 +#: src/Common/LinuxKernel.vala:1194 src/Console/AppConsole.vala:304 #: src/Console/AppConsole.vala:320 msgid "No updates found" msgstr "Inga uppdateringar hittades" -#: src/Common/LinuxKernel.vala:1202 +#: src/Common/LinuxKernel.vala:1203 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Installera kärnversion %s ? (j/n):" -#: src/Common/Main.vala:380 +#: src/Common/Main.vala:376 msgid "Called from" msgstr "Ringde från" -#: src/Common/Main.vala:380 +#: src/Common/Main.vala:376 msgid "at logon" msgstr "vid start" -#: src/Common/Main.vala:381 +#: src/Common/Main.vala:377 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "Den här filen skrivs över och körs igen när inställningar sparas i" -#: src/Common/Main.vala:413 +#: src/Common/Main.vala:409 msgid "Notifications are disabled" msgstr "Meddelanden är inaktiverade" @@ -214,7 +214,7 @@ msgstr "Installera angiven huvudkärna" msgid "Uninstall specified kernel" msgstr "Avinstallera angiven kärna" -#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:331 +#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:332 msgid "Uninstall all but the highest installed version" msgstr "Avinstallera alla utom den högsta installerade versionen" @@ -308,7 +308,7 @@ msgstr "Kernel %s tillgängliga" msgid "Show" msgstr "Visa" -#: src/Console/AppConsole.vala:347 src/Gtk/MainWindow.vala:298 +#: src/Console/AppConsole.vala:347 src/Gtk/MainWindow.vala:299 msgid "Install" msgstr "Installera" @@ -376,23 +376,23 @@ msgstr "Status" msgid "Notes" msgstr "Anteckningar" -#: src/Gtk/MainWindow.vala:308 +#: src/Gtk/MainWindow.vala:309 msgid "Uninstall" msgstr "Avinstallera" -#: src/Gtk/MainWindow.vala:319 +#: src/Gtk/MainWindow.vala:320 msgid "Changelog, build status, etc" msgstr "" -#: src/Gtk/MainWindow.vala:330 +#: src/Gtk/MainWindow.vala:331 msgid "Uninstall Old" msgstr "Avinstallera Gamla" -#: src/Gtk/MainWindow.vala:336 +#: src/Gtk/MainWindow.vala:337 msgid "Reload" msgstr "Reload" -#: src/Gtk/MainWindow.vala:337 +#: src/Gtk/MainWindow.vala:338 msgid "" "Delete cache and reload all kernel info\n" "\n" @@ -402,40 +402,40 @@ msgstr "" "\n" "DETTA TAR OCKSÅ BORT ALLA ANVÄNDARANTECKNINGAR" -#: src/Gtk/MainWindow.vala:342 src/Gtk/SettingsDialog.vala:49 +#: src/Gtk/MainWindow.vala:343 src/Gtk/SettingsDialog.vala:49 msgid "Settings" msgstr "Inställningar" -#: src/Gtk/MainWindow.vala:347 +#: src/Gtk/MainWindow.vala:348 msgid "About" msgstr "Om" -#: src/Gtk/MainWindow.vala:352 +#: src/Gtk/MainWindow.vala:353 msgid "Exit" msgstr "Utgång" -#: src/Gtk/MainWindow.vala:421 +#: src/Gtk/MainWindow.vala:422 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Kärnuppgraderingsverktyg för Ubuntu-baserade distributioner" -#: src/Gtk/MainWindow.vala:422 +#: src/Gtk/MainWindow.vala:423 msgid "Forked" msgstr "Kluven" -#: src/Gtk/MainWindow.vala:422 +#: src/Gtk/MainWindow.vala:423 msgid "Original" msgstr "Original" -#: src/Gtk/MainWindow.vala:460 +#: src/Gtk/MainWindow.vala:461 msgid "Updating kernels" msgstr "Uppdatera kärnor" -#: src/Gtk/MainWindow.vala:531 +#: src/Gtk/MainWindow.vala:532 msgid "available" msgstr "tillgänglig" -#: src/Gtk/MainWindow.vala:574 src/Gtk/MainWindow.vala:615 -#: src/Gtk/MainWindow.vala:650 +#: src/Gtk/MainWindow.vala:575 src/Gtk/MainWindow.vala:616 +#: src/Gtk/MainWindow.vala:651 msgid "DONE" msgstr "FÄRDIG" diff --git a/po/tr.po b/po/tr.po index 34279fdf..12e1454d 100644 --- a/po/tr.po +++ b/po/tr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-20 06:35-0400\n" +"POT-Creation-Date: 2023-05-22 13:54-0400\n" "PO-Revision-Date: 2022-08-06 16:48+0300\n" "Last-Translator: Sabri Ünal \n" "Language-Team: Turkish\n" @@ -13,161 +13,161 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Poedit 3.1.1\n" -#: src/Common/LinuxKernel.vala:103 +#: src/Common/LinuxKernel.vala:104 msgid "Distribution" msgstr "Dağıtım" -#: src/Common/LinuxKernel.vala:118 +#: src/Common/LinuxKernel.vala:119 msgid "Architecture" msgstr "Sistem mimarisi" -#: src/Common/LinuxKernel.vala:133 +#: src/Common/LinuxKernel.vala:134 msgid "Running kernel" msgstr "Çalışan çekirdek" -#: src/Common/LinuxKernel.vala:258 +#: src/Common/LinuxKernel.vala:259 msgid "loading cached" msgstr "önbelleğe alınmış yükleme" -#: src/Common/LinuxKernel.vala:270 +#: src/Common/LinuxKernel.vala:271 msgid "queuing download" msgstr "kuyruğa alma indirme" -#: src/Common/LinuxKernel.vala:291 +#: src/Common/LinuxKernel.vala:292 msgid "Fetching individual kernel indexes" msgstr "Tek tek çekirdek dizinlerini alma" -#: src/Common/LinuxKernel.vala:307 +#: src/Common/LinuxKernel.vala:308 msgid "loading downloaded" msgstr "indirilen yükleniyor" -#: src/Common/LinuxKernel.vala:342 +#: src/Common/LinuxKernel.vala:343 msgid "Updating from" msgstr "Şuradan güncelleniyor" -#: src/Common/LinuxKernel.vala:350 +#: src/Common/LinuxKernel.vala:351 msgid "OK" msgstr "Tamam" -#: src/Common/LinuxKernel.vala:353 +#: src/Common/LinuxKernel.vala:354 msgid "FAILED" msgstr "BAŞARISIZ" -#: src/Common/LinuxKernel.vala:403 +#: src/Common/LinuxKernel.vala:404 msgid "Found installed" msgstr "Yüklü bulundu" -#: src/Common/LinuxKernel.vala:741 src/Gtk/MainWindow.vala:522 -#: src/Gtk/MainWindow.vala:535 +#: src/Common/LinuxKernel.vala:742 src/Gtk/MainWindow.vala:523 +#: src/Gtk/MainWindow.vala:536 msgid "Running" msgstr "Çalışıyor" -#: src/Common/LinuxKernel.vala:742 +#: src/Common/LinuxKernel.vala:743 msgid "Installed" msgstr "Kurulu" -#: src/Common/LinuxKernel.vala:743 +#: src/Common/LinuxKernel.vala:744 msgid "Invalid" msgstr "Geçersiz" -#: src/Common/LinuxKernel.vala:817 +#: src/Common/LinuxKernel.vala:824 msgid "Packages Available" msgstr "Mevcut Paketler" -#: src/Common/LinuxKernel.vala:823 +#: src/Common/LinuxKernel.vala:830 msgid "Packages Installed" msgstr "Kurulu Paketler" -#: src/Common/LinuxKernel.vala:847 src/lib/TeeJee.FileSystem.vala:118 +#: src/Common/LinuxKernel.vala:858 src/lib/TeeJee.FileSystem.vala:118 msgid "File not found" msgstr "Dosya bulunamadı" -#: src/Common/LinuxKernel.vala:947 +#: src/Common/LinuxKernel.vala:948 msgid "Available Kernels" msgstr "Mevcut Çekirdekler" -#: src/Common/LinuxKernel.vala:984 +#: src/Common/LinuxKernel.vala:985 msgid "enabled" msgstr "etkin" -#: src/Common/LinuxKernel.vala:1008 +#: src/Common/LinuxKernel.vala:1009 msgid "Downloading" msgstr "Indiriyor" -#: src/Common/LinuxKernel.vala:1029 +#: src/Common/LinuxKernel.vala:1030 msgid "is already installed." msgstr "zaten yüklü." -#: src/Common/LinuxKernel.vala:1059 +#: src/Common/LinuxKernel.vala:1060 msgid "Uninstalling selected kernels" msgstr "Seçili çekirdekleri kaldırma" -#: src/Common/LinuxKernel.vala:1065 +#: src/Common/LinuxKernel.vala:1066 msgid "requested" msgstr "istenen" -#: src/Common/LinuxKernel.vala:1068 +#: src/Common/LinuxKernel.vala:1069 msgid "not uninstalling the currently running kernel" msgstr "çalışmakta olan çekirdeğin kaldırılmaması" -#: src/Common/LinuxKernel.vala:1084 +#: src/Common/LinuxKernel.vala:1085 msgid "found" msgstr "kurmak" -#: src/Common/LinuxKernel.vala:1087 +#: src/Common/LinuxKernel.vala:1088 msgid "No packages to un-install!" msgstr "Kaldırılacak paket yok!" -#: src/Common/LinuxKernel.vala:1135 +#: src/Common/LinuxKernel.vala:1136 msgid "Could not find running kernel in list" msgstr "Listede çalışan çekirdek bulunamadı" -#: src/Common/LinuxKernel.vala:1140 +#: src/Common/LinuxKernel.vala:1141 msgid "Could not find any kernels to uninstall" msgstr "Kaldırılacak çekirdek bulunamadı" -#: src/Common/LinuxKernel.vala:1148 +#: src/Common/LinuxKernel.vala:1149 msgid "The following kernels will be uninstalled" msgstr "Aşağıdaki çekirdekler kaldırılacaktır" -#: src/Common/LinuxKernel.vala:1152 +#: src/Common/LinuxKernel.vala:1153 msgid "Continue ?" msgstr "Devam edilsin mi?" -#: src/Common/LinuxKernel.vala:1174 src/Console/AppConsole.vala:292 +#: src/Common/LinuxKernel.vala:1175 src/Console/AppConsole.vala:292 msgid "Latest update" msgstr "Son güncelleme" # Point burada point release anlamında kullanılıyor. Örneğin 5.10.x sayısının en sonundaki x rakamı point release/nokta sürüm oluyor. -#: src/Common/LinuxKernel.vala:1185 src/Console/AppConsole.vala:299 +#: src/Common/LinuxKernel.vala:1186 src/Console/AppConsole.vala:299 msgid "Latest point update" msgstr "Son nokta güncellemesi" -#: src/Common/LinuxKernel.vala:1193 src/Console/AppConsole.vala:304 +#: src/Common/LinuxKernel.vala:1194 src/Console/AppConsole.vala:304 #: src/Console/AppConsole.vala:320 msgid "No updates found" msgstr "Güncelleme bulunamadı" -#: src/Common/LinuxKernel.vala:1202 +#: src/Common/LinuxKernel.vala:1203 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Linux Çekirdek Sürümü %s Kurulsun mu? (e/h): " -#: src/Common/Main.vala:380 +#: src/Common/Main.vala:376 msgid "Called from" msgstr "Çağrı konumu" -#: src/Common/Main.vala:380 +#: src/Common/Main.vala:376 msgid "at logon" msgstr "başlangıçta" -#: src/Common/Main.vala:381 +#: src/Common/Main.vala:377 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" "Bu dosyanın üzerine yazılır ve ayarlar her kaydedildiğinde yeniden yürütülür" -#: src/Common/Main.vala:413 +#: src/Common/Main.vala:409 msgid "Notifications are disabled" msgstr "Bildirimler devre dışı bırakılmış" @@ -216,7 +216,7 @@ msgstr "Belirtilen mainline çekirdeğini kur" msgid "Uninstall specified kernel" msgstr "Belirtilen çekirdeğini kaldır" -#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:331 +#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:332 msgid "Uninstall all but the highest installed version" msgstr "En yüksek yüklü sürüm dışındaki tüm sürümleri kaldırın" @@ -310,7 +310,7 @@ msgstr "Çekirdek %s Kullanılabilir" msgid "Show" msgstr "Göster" -#: src/Console/AppConsole.vala:347 src/Gtk/MainWindow.vala:298 +#: src/Console/AppConsole.vala:347 src/Gtk/MainWindow.vala:299 msgid "Install" msgstr "Kur" @@ -378,23 +378,23 @@ msgstr "Durum" msgid "Notes" msgstr "Notlar" -#: src/Gtk/MainWindow.vala:308 +#: src/Gtk/MainWindow.vala:309 msgid "Uninstall" msgstr "Kaldır" -#: src/Gtk/MainWindow.vala:319 +#: src/Gtk/MainWindow.vala:320 msgid "Changelog, build status, etc" msgstr "" -#: src/Gtk/MainWindow.vala:330 +#: src/Gtk/MainWindow.vala:331 msgid "Uninstall Old" msgstr "Eskileri Kaldır" -#: src/Gtk/MainWindow.vala:336 +#: src/Gtk/MainWindow.vala:337 msgid "Reload" msgstr "Arjantin" -#: src/Gtk/MainWindow.vala:337 +#: src/Gtk/MainWindow.vala:338 msgid "" "Delete cache and reload all kernel info\n" "\n" @@ -404,40 +404,40 @@ msgstr "" "\n" "BU AYNI ZAMANDA TÜM KULLANICI NOTLARINI DA SILER" -#: src/Gtk/MainWindow.vala:342 src/Gtk/SettingsDialog.vala:49 +#: src/Gtk/MainWindow.vala:343 src/Gtk/SettingsDialog.vala:49 msgid "Settings" msgstr "Ayarlar" -#: src/Gtk/MainWindow.vala:347 +#: src/Gtk/MainWindow.vala:348 msgid "About" msgstr "Hakkında" -#: src/Gtk/MainWindow.vala:352 +#: src/Gtk/MainWindow.vala:353 msgid "Exit" msgstr "Çıkış" -#: src/Gtk/MainWindow.vala:421 +#: src/Gtk/MainWindow.vala:422 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Ubuntu tabanlı dağıtımlar için çekirdek güncelleme aracı" -#: src/Gtk/MainWindow.vala:422 +#: src/Gtk/MainWindow.vala:423 msgid "Forked" msgstr "Çatallandı" -#: src/Gtk/MainWindow.vala:422 +#: src/Gtk/MainWindow.vala:423 msgid "Original" msgstr "Özgün" -#: src/Gtk/MainWindow.vala:460 +#: src/Gtk/MainWindow.vala:461 msgid "Updating kernels" msgstr "Çekirdekleri güncelleme" -#: src/Gtk/MainWindow.vala:531 +#: src/Gtk/MainWindow.vala:532 msgid "available" msgstr "mevcut" -#: src/Gtk/MainWindow.vala:574 src/Gtk/MainWindow.vala:615 -#: src/Gtk/MainWindow.vala:650 +#: src/Gtk/MainWindow.vala:575 src/Gtk/MainWindow.vala:616 +#: src/Gtk/MainWindow.vala:651 msgid "DONE" msgstr "YAPILMIŞ" diff --git a/po/uk.po b/po/uk.po index fc2acdb6..ed35fb51 100644 --- a/po/uk.po +++ b/po/uk.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-20 06:35-0400\n" +"POT-Creation-Date: 2023-05-22 13:54-0400\n" "PO-Revision-Date: 2019-07-25 11:00+0300\n" "Last-Translator: Serhii Golovko \n" "Language-Team: Ukranian\n" @@ -13,160 +13,160 @@ msgstr "" "X-Launchpad-Export-Date: 2016-12-13 11:48+0000\n" "X-Generator: Poedit 2.2.1\n" -#: src/Common/LinuxKernel.vala:103 +#: src/Common/LinuxKernel.vala:104 msgid "Distribution" msgstr "Дистрибутив" -#: src/Common/LinuxKernel.vala:118 +#: src/Common/LinuxKernel.vala:119 msgid "Architecture" msgstr "Системна архитектура" -#: src/Common/LinuxKernel.vala:133 +#: src/Common/LinuxKernel.vala:134 msgid "Running kernel" msgstr "Запуск ядра" -#: src/Common/LinuxKernel.vala:258 +#: src/Common/LinuxKernel.vala:259 msgid "loading cached" msgstr "Завантаження кешованого" -#: src/Common/LinuxKernel.vala:270 +#: src/Common/LinuxKernel.vala:271 msgid "queuing download" msgstr "Черга завантаження" -#: src/Common/LinuxKernel.vala:291 +#: src/Common/LinuxKernel.vala:292 msgid "Fetching individual kernel indexes" msgstr "Вибірка окремих індексів ядра" -#: src/Common/LinuxKernel.vala:307 +#: src/Common/LinuxKernel.vala:308 msgid "loading downloaded" msgstr "Завантаження завантаженого" -#: src/Common/LinuxKernel.vala:342 +#: src/Common/LinuxKernel.vala:343 msgid "Updating from" msgstr "Оновлення з" -#: src/Common/LinuxKernel.vala:350 +#: src/Common/LinuxKernel.vala:351 msgid "OK" msgstr "Добре" -#: src/Common/LinuxKernel.vala:353 +#: src/Common/LinuxKernel.vala:354 msgid "FAILED" msgstr "НЕ ВДАЛОСЯ" -#: src/Common/LinuxKernel.vala:403 +#: src/Common/LinuxKernel.vala:404 msgid "Found installed" msgstr "Знайдено встановленим" -#: src/Common/LinuxKernel.vala:741 src/Gtk/MainWindow.vala:522 -#: src/Gtk/MainWindow.vala:535 +#: src/Common/LinuxKernel.vala:742 src/Gtk/MainWindow.vala:523 +#: src/Gtk/MainWindow.vala:536 msgid "Running" msgstr "Використовується" -#: src/Common/LinuxKernel.vala:742 +#: src/Common/LinuxKernel.vala:743 msgid "Installed" msgstr "Встановлено" -#: src/Common/LinuxKernel.vala:743 +#: src/Common/LinuxKernel.vala:744 msgid "Invalid" msgstr "Інвалід" -#: src/Common/LinuxKernel.vala:817 +#: src/Common/LinuxKernel.vala:824 msgid "Packages Available" msgstr "Доступні пакети" -#: src/Common/LinuxKernel.vala:823 +#: src/Common/LinuxKernel.vala:830 msgid "Packages Installed" msgstr "Встановлені пакети" -#: src/Common/LinuxKernel.vala:847 src/lib/TeeJee.FileSystem.vala:118 +#: src/Common/LinuxKernel.vala:858 src/lib/TeeJee.FileSystem.vala:118 msgid "File not found" msgstr "Файл не знайдено" -#: src/Common/LinuxKernel.vala:947 +#: src/Common/LinuxKernel.vala:948 msgid "Available Kernels" msgstr "Доступні ядра" -#: src/Common/LinuxKernel.vala:984 +#: src/Common/LinuxKernel.vala:985 msgid "enabled" msgstr "увімкнено" -#: src/Common/LinuxKernel.vala:1008 +#: src/Common/LinuxKernel.vala:1009 msgid "Downloading" msgstr "Завантаження" -#: src/Common/LinuxKernel.vala:1029 +#: src/Common/LinuxKernel.vala:1030 msgid "is already installed." msgstr "вже встановлено." -#: src/Common/LinuxKernel.vala:1059 +#: src/Common/LinuxKernel.vala:1060 msgid "Uninstalling selected kernels" msgstr "Видаліть конкретні ядра" -#: src/Common/LinuxKernel.vala:1065 +#: src/Common/LinuxKernel.vala:1066 msgid "requested" msgstr "запитуваний" -#: src/Common/LinuxKernel.vala:1068 +#: src/Common/LinuxKernel.vala:1069 msgid "not uninstalling the currently running kernel" msgstr "не видалятиме поточне запущене ядро" -#: src/Common/LinuxKernel.vala:1084 +#: src/Common/LinuxKernel.vala:1085 msgid "found" msgstr "знайдено" -#: src/Common/LinuxKernel.vala:1087 +#: src/Common/LinuxKernel.vala:1088 msgid "No packages to un-install!" msgstr "Немає пакетів для видалення!" -#: src/Common/LinuxKernel.vala:1135 +#: src/Common/LinuxKernel.vala:1136 msgid "Could not find running kernel in list" msgstr "Не вдалося знайти запущене ядро у списку!" -#: src/Common/LinuxKernel.vala:1140 +#: src/Common/LinuxKernel.vala:1141 msgid "Could not find any kernels to uninstall" msgstr "Не вдалося знайти жодне ядро для вилучення" -#: src/Common/LinuxKernel.vala:1148 +#: src/Common/LinuxKernel.vala:1149 msgid "The following kernels will be uninstalled" msgstr "Наступні ядра будуть видалені" -#: src/Common/LinuxKernel.vala:1152 +#: src/Common/LinuxKernel.vala:1153 msgid "Continue ?" msgstr "Продовжувати ?" -#: src/Common/LinuxKernel.vala:1174 src/Console/AppConsole.vala:292 +#: src/Common/LinuxKernel.vala:1175 src/Console/AppConsole.vala:292 msgid "Latest update" msgstr "Останнє оновлення" -#: src/Common/LinuxKernel.vala:1185 src/Console/AppConsole.vala:299 +#: src/Common/LinuxKernel.vala:1186 src/Console/AppConsole.vala:299 msgid "Latest point update" msgstr "Остання точка оновлення" -#: src/Common/LinuxKernel.vala:1193 src/Console/AppConsole.vala:304 +#: src/Common/LinuxKernel.vala:1194 src/Console/AppConsole.vala:304 #: src/Console/AppConsole.vala:320 msgid "No updates found" msgstr "Оновлень не знайдено" -#: src/Common/LinuxKernel.vala:1202 +#: src/Common/LinuxKernel.vala:1203 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Встановити Ядро Версії %s ? (так/ні): " -#: src/Common/Main.vala:380 +#: src/Common/Main.vala:376 msgid "Called from" msgstr "Викликано з" -#: src/Common/Main.vala:380 +#: src/Common/Main.vala:376 msgid "at logon" msgstr "при запуску" -#: src/Common/Main.vala:381 +#: src/Common/Main.vala:377 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" "Цей файл перезаписується та виконується знову під час збереження налаштувань" -#: src/Common/Main.vala:413 +#: src/Common/Main.vala:409 msgid "Notifications are disabled" msgstr "Повідомлення вимкнено" @@ -215,7 +215,7 @@ msgstr "Встановіть конкретне основне ядро" msgid "Uninstall specified kernel" msgstr "Видаліть конкретні ядра" -#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:331 +#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:332 msgid "Uninstall all but the highest installed version" msgstr "Видаліть усі, крім найвищої встановленої версії" @@ -309,7 +309,7 @@ msgstr "Ядро %s Доступне" msgid "Show" msgstr "Показати" -#: src/Console/AppConsole.vala:347 src/Gtk/MainWindow.vala:298 +#: src/Console/AppConsole.vala:347 src/Gtk/MainWindow.vala:299 msgid "Install" msgstr "Встановити" @@ -377,23 +377,23 @@ msgstr "Стан" msgid "Notes" msgstr "Нотатки" -#: src/Gtk/MainWindow.vala:308 +#: src/Gtk/MainWindow.vala:309 msgid "Uninstall" msgstr "Видалити" -#: src/Gtk/MainWindow.vala:319 +#: src/Gtk/MainWindow.vala:320 msgid "Changelog, build status, etc" msgstr "Журнал змін, статус збірки тощо" -#: src/Gtk/MainWindow.vala:330 +#: src/Gtk/MainWindow.vala:331 msgid "Uninstall Old" msgstr "Видалити старе" -#: src/Gtk/MainWindow.vala:336 +#: src/Gtk/MainWindow.vala:337 msgid "Reload" msgstr "Перезавантажити" -#: src/Gtk/MainWindow.vala:337 +#: src/Gtk/MainWindow.vala:338 msgid "" "Delete cache and reload all kernel info\n" "\n" @@ -403,40 +403,40 @@ msgstr "" "\n" "ЦЕ ТАКОЖ ВИДАЛИТЬ УСІ НОТАТКИ КОРИСТУВАЧА" -#: src/Gtk/MainWindow.vala:342 src/Gtk/SettingsDialog.vala:49 +#: src/Gtk/MainWindow.vala:343 src/Gtk/SettingsDialog.vala:49 msgid "Settings" msgstr "Налаштування" -#: src/Gtk/MainWindow.vala:347 +#: src/Gtk/MainWindow.vala:348 msgid "About" msgstr "Про программу" -#: src/Gtk/MainWindow.vala:352 +#: src/Gtk/MainWindow.vala:353 msgid "Exit" msgstr "Вихід" -#: src/Gtk/MainWindow.vala:421 +#: src/Gtk/MainWindow.vala:422 msgid "Kernel upgrade utility for Ubuntu-based distributions" msgstr "Програма оновлення ядра для дистрибутивів на базі Ubuntu" -#: src/Gtk/MainWindow.vala:422 +#: src/Gtk/MainWindow.vala:423 msgid "Forked" msgstr "Двоєний" -#: src/Gtk/MainWindow.vala:422 +#: src/Gtk/MainWindow.vala:423 msgid "Original" msgstr "Оригінал" -#: src/Gtk/MainWindow.vala:460 +#: src/Gtk/MainWindow.vala:461 msgid "Updating kernels" msgstr "Оновлення ядер" -#: src/Gtk/MainWindow.vala:531 +#: src/Gtk/MainWindow.vala:532 msgid "available" msgstr "доступний" -#: src/Gtk/MainWindow.vala:574 src/Gtk/MainWindow.vala:615 -#: src/Gtk/MainWindow.vala:650 +#: src/Gtk/MainWindow.vala:575 src/Gtk/MainWindow.vala:616 +#: src/Gtk/MainWindow.vala:651 msgid "DONE" msgstr "ГОТОВО" diff --git a/src/Common/LinuxKernel.vala b/src/Common/LinuxKernel.vala index ad36d4fa..75a72144 100644 --- a/src/Common/LinuxKernel.vala +++ b/src/Common/LinuxKernel.vala @@ -42,6 +42,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { public static string RUNNING_KERNEL; public static string PPA_URI; public static string CACHE_DIR; + public static string DATA_DIR; public static string MAIN_INDEX_HTML; public static LinuxKernel kernel_active; @@ -765,6 +766,12 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { } } + public string data_subdir { + owned get { + return DATA_DIR+"/"+version_main; + } + } + public string cached_page { owned get { return cache_subdir+"/index.html"; @@ -779,7 +786,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { public string notes_file { owned get { - return cache_subdir+"/notes"; + return data_subdir+"/notes"; } } @@ -827,11 +834,12 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { // load + // return false if we don't have the cached page or if it's out of date + // return true if we have a valid cached page, whether the kernel itself is a valid build or not private bool load_cached_page() { vprint("load_cached_page(): '"+cached_page+"'",4); string txt = ""; - var url_list = new Gee.HashMap(); int64 d_this = 0; int64 d_max = 0; deb_image = ""; @@ -843,12 +851,14 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { deb_url_list.clear(); notes = ""; + // load locally generated data regardless of the state of the cached index + if (file_exists(notes_file)) notes = file_read(notes_file).strip(); + if (!file_exists(cached_page)) { vprint("load_cached_page(): " + _("File not found") + ": "+cached_page,1,stderr); return false; } - // parse index.html -------------------------- txt = file_read(cached_page); @@ -877,11 +887,9 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { return false; } - // skip if we already know it's a failed build + // skip the rest of the work if we already know it's a failed build if (is_invalid) return true; - if (file_exists(notes_file)) notes = file_read(notes_file).strip(); - // scan for urls to .deb files try { ////same deb name// @@ -893,7 +901,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { string file_name = Path.get_basename (match.fetch(2)); string file_uri = "%s%s".printf(page_uri, match.fetch(1)); - if (url_list.has_key(file_name)) continue; + if (deb_url_list.has_key(file_name)) continue; bool add = false; @@ -923,20 +931,13 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { add = true; } - if (add) url_list[file_name] = file_uri; + if (add) deb_url_list[file_name] = file_uri; } } } catch (Error e) { vprint(e.message,1,stderr); } - - // if ((deb_header.length == 0) || (deb_header_all.length == 0) || (deb_image.length == 0)) - if (deb_image.length<1 || url_list.size<1) mark_invalid(); - - if (is_invalid) return true; - - deb_url_list = url_list; - + if (deb_image.length<1 || deb_url_list.size<1) mark_invalid(); return true; } diff --git a/src/Common/Main.vala b/src/Common/Main.vala index 56118889..99674f69 100644 --- a/src/Common/Main.vala +++ b/src/Common/Main.vala @@ -81,8 +81,11 @@ public class Main : GLib.Object { // constants ---------- + public string CONFIG_DIR = ""; + public string CACHE_DIR = ""; + public string DATA_DIR = ""; public string TMP_PREFIX = ""; - public string APP_CONF_DIR = ""; + public string APP_CONFIG_FILE = ""; public string STARTUP_SCRIPT_FILE = ""; public string STARTUP_DESKTOP_FILE = ""; @@ -92,10 +95,6 @@ public class Main : GLib.Object { public string MAJOR_SEEN_FILE = ""; public string MINOR_SEEN_FILE = ""; - public string user_login = ""; - public string user_home = ""; - public string CACHE_DIR = "~/.cache/"+BRANDING_SHORTNAME ; // some hard-coded non-empty for rm -rf safety - // global progress ---------------- public string status_line = ""; @@ -174,23 +173,20 @@ public class Main : GLib.Object { public void init_paths() { - // user info - user_login = Environment.get_user_name(); - user_home = Environment.get_home_dir(); - - APP_CONF_DIR = user_home + "/.config/" + BRANDING_SHORTNAME; - APP_CONFIG_FILE = APP_CONF_DIR + "/config.json"; - STARTUP_SCRIPT_FILE = APP_CONF_DIR + "/" + BRANDING_SHORTNAME + "-notify.sh"; - STARTUP_DESKTOP_FILE = user_home + "/.config/autostart/" + BRANDING_SHORTNAME + "-notify.desktop"; - OLD_STARTUP_SCRIPT_FILE = APP_CONF_DIR + "/notify-loop.sh"; // TRANSITION - OLD_STARTUP_DESKTOP_FILE = user_home + "/.config/autostart/" + BRANDING_SHORTNAME + ".desktop"; // TRANSITION - NOTIFICATION_ID_FILE = APP_CONF_DIR + "/notification_id"; - MAJOR_SEEN_FILE = APP_CONF_DIR + "/notification_seen.major"; - MINOR_SEEN_FILE = APP_CONF_DIR + "/notification_seen.minor"; - CACHE_DIR = user_home + "/.cache/" + BRANDING_SHORTNAME; + CONFIG_DIR = Environment.get_user_config_dir() + "/" + BRANDING_SHORTNAME; + DATA_DIR = Environment.get_user_data_dir() + "/" + BRANDING_SHORTNAME; + CACHE_DIR = Environment.get_user_cache_dir() + "/" + BRANDING_SHORTNAME; TMP_PREFIX = Environment.get_tmp_dir() + "/." + BRANDING_SHORTNAME; + APP_CONFIG_FILE = CONFIG_DIR + "/config.json"; + STARTUP_SCRIPT_FILE = CONFIG_DIR + "/" + BRANDING_SHORTNAME + "-notify.sh"; + STARTUP_DESKTOP_FILE = CONFIG_DIR + "/autostart/" + BRANDING_SHORTNAME + "-notify.desktop"; + NOTIFICATION_ID_FILE = CONFIG_DIR + "/notification_id"; + MAJOR_SEEN_FILE = CONFIG_DIR + "/notification_seen.major"; + MINOR_SEEN_FILE = CONFIG_DIR + "/notification_seen.minor"; + LinuxKernel.CACHE_DIR = CACHE_DIR; + LinuxKernel.DATA_DIR = DATA_DIR; } @@ -225,7 +221,7 @@ public class Main : GLib.Object { node.set_object(config); json.set_root(node); - dir_create(APP_CONF_DIR); + dir_create(CONFIG_DIR); try { json.to_file(APP_CONFIG_FILE); } catch (Error e) { vprint(e.message,1,stderr); } diff --git a/src/Gtk/MainWindow.vala b/src/Gtk/MainWindow.vala index 87da0273..30e05fde 100644 --- a/src/Gtk/MainWindow.vala +++ b/src/Gtk/MainWindow.vala @@ -182,7 +182,8 @@ public class MainWindow : Gtk.Window { tv.model.get(iter, 1, out k, -1); if (k.notes != data._strip()) { k.notes = data; - file_write(k.notes_file,data); + if (k.notes.strip()=="") file_delete(k.notes_file); + else file_write(k.notes_file,data); tv_refresh(); // updates the sort, otherwise not needed } }); From ee2cd98e999982d67ac32bc544ea764bc9f2afb4 Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Mon, 22 May 2023 17:38:33 -0400 Subject: [PATCH 322/567] 1.2.6 --- .deb_build_number.mak | 2 +- BRANDING.mak | 2 +- debian/changelog | 7 +++++++ 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/.deb_build_number.mak b/.deb_build_number.mak index c45291ac..9c9e210c 100644 --- a/.deb_build_number.mak +++ b/.deb_build_number.mak @@ -1,3 +1,3 @@ # This file is generated by Makefile "make deb_build_number" -DEB_PKG_VERSION := 1.2.5 +DEB_PKG_VERSION := 1.2.6 DEB_BUILD_NUMBER := 0000 diff --git a/BRANDING.mak b/BRANDING.mak index 6b23274e..a1f80c4b 100644 --- a/BRANDING.mak +++ b/BRANDING.mak @@ -3,7 +3,7 @@ VERSION_MAJOR = 1 VERSION_MINOR = 2 -VERSION_MICRO = 5 +VERSION_MICRO = 6 BRANDING_SHORTNAME = mainline BRANDING_LONGNAME = Ubuntu Mainline Kernel Installer BRANDING_AUTHORNAME = Brian K. White diff --git a/debian/changelog b/debian/changelog index 03ed1486..3a8554f3 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +mainline (1.2.6) unstable; urgency=medium + + * move user data (notes, and the upcoming flags) out of cache so it survives Reload + * compare date/timestamps in the cached per-kernel indexes against the main index to detect when a kernel build status changes after we've cached it, and invalidate & reload the cache for that kernel without having to reload all + + -- Brian K. White Mon, 22 May 2023 17:27:38 -0400 + mainline (1.2.5) unstable; urgency=medium * actually do what 1.2.4 claimed From 8039dbee64947cffd75f250cac2cba05426e662f Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Thu, 25 May 2023 07:30:13 -0400 Subject: [PATCH 323/567] add version pinning --- .deb_build_number.mak | 4 +- BRANDING.mak | 4 +- README.md | 6 + README.md.src | 6 + debian/changelog | 6 + po/de.po | 126 ++++++++++++--------- po/el.po | 126 ++++++++++++--------- po/es.po | 126 ++++++++++++--------- po/fr.po | 126 ++++++++++++--------- po/hr.po | 126 ++++++++++++--------- po/it.po | 126 ++++++++++++--------- po/ko.po | 126 ++++++++++++--------- po/messages.pot | 127 ++++++++++++--------- po/nl.po | 126 ++++++++++++--------- po/pl.po | 126 ++++++++++++--------- po/ru.po | 126 ++++++++++++--------- po/sv.po | 126 ++++++++++++--------- po/tr.po | 126 ++++++++++++--------- po/uk.po | 126 ++++++++++++--------- src/Common/LinuxKernel.vala | 173 ++++++++++++++++------------- src/Common/Main.vala | 43 +------- src/Gtk/MainWindow.vala | 215 ++++++++++++++++++------------------ 22 files changed, 1232 insertions(+), 990 deletions(-) diff --git a/.deb_build_number.mak b/.deb_build_number.mak index 9c9e210c..d19e640c 100644 --- a/.deb_build_number.mak +++ b/.deb_build_number.mak @@ -1,3 +1,3 @@ # This file is generated by Makefile "make deb_build_number" -DEB_PKG_VERSION := 1.2.6 -DEB_BUILD_NUMBER := 0000 +DEB_PKG_VERSION := 1.3.0 +DEB_BUILD_NUMBER := 0003 diff --git a/BRANDING.mak b/BRANDING.mak index a1f80c4b..ece913f9 100644 --- a/BRANDING.mak +++ b/BRANDING.mak @@ -2,8 +2,8 @@ # This is the single place where you edit these values manually VERSION_MAJOR = 1 -VERSION_MINOR = 2 -VERSION_MICRO = 6 +VERSION_MINOR = 3 +VERSION_MICRO = 0 BRANDING_SHORTNAME = mainline BRANDING_LONGNAME = Ubuntu Mainline Kernel Installer BRANDING_AUTHORNAME = Brian K. White diff --git a/README.md b/README.md index 05d1196a..d654af20 100644 --- a/README.md +++ b/README.md @@ -89,6 +89,12 @@ For the single manual uninstall button, the button simply isn't activated. For t Clicking on the Notes field allows to attach arbitrary text to a kernel. +The Lock checkbox serves as both whitelist and blacklist. +A locked kernel will not be installed if it's currently uninstalled, and will not be uninstalled if it's currently installed. +This applies to all methods of installing or uninstalling, from the gui or cli, +including the gui Install & Uninstall buttons, cli ""--install" & "--uninstall", +gui "Uninstall Old" & cli "--uninstall-old", and cli "--install-latest" + # Help / FAQ * [MainlineBuilds WIKI](https://wiki.ubuntu.com/Kernel/MainlineBuilds) diff --git a/README.md.src b/README.md.src index c98e250a..4ccb70c1 100644 --- a/README.md.src +++ b/README.md.src @@ -89,6 +89,12 @@ For the single manual uninstall button, the button simply isn't activated. For t Clicking on the Notes field allows to attach arbitrary text to a kernel. +The Lock checkbox serves as both whitelist and blacklist. +A locked kernel will not be installed if it's currently uninstalled, and will not be uninstalled if it's currently installed. +This applies to all methods of installing or uninstalling, from the gui or cli, +including the gui Install & Uninstall buttons, cli ""--install" & "--uninstall", +gui "Uninstall Old" & cli "--uninstall-old", and cli "--install-latest" + # Help / FAQ * [MainlineBuilds WIKI](https://wiki.ubuntu.com/Kernel/MainlineBuilds) diff --git a/debian/changelog b/debian/changelog index 3a8554f3..abb76759 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +mainline (1.3.0) unstable; urgency=medium + + * individual kernels may be locked to prevent installing or uninstalling + + -- Brian K. White Thu, 25 May 2023 06:50:41 -0400 + mainline (1.2.6) unstable; urgency=medium * move user data (notes, and the upcoming flags) out of cache so it survives Reload diff --git a/po/de.po b/po/de.po index 88b03fbb..71cc2a74 100644 --- a/po/de.po +++ b/po/de.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-22 13:54-0400\n" +"POT-Creation-Date: 2023-05-25 07:13-0400\n" "PO-Revision-Date: 2023-02-20 18:40+0100\n" "Last-Translator: Marvin Meysel \n" "Language-Team: German\n" @@ -13,160 +13,174 @@ msgstr "" "X-Launchpad-Export-Date: 2017-04-13 11:48+0000\n" "X-Generator: Poedit 3.1.1\n" -#: src/Common/LinuxKernel.vala:104 +#: src/Common/LinuxKernel.vala:105 msgid "Distribution" msgstr "Distribution" -#: src/Common/LinuxKernel.vala:119 +#: src/Common/LinuxKernel.vala:120 msgid "Architecture" msgstr "Architektur" -#: src/Common/LinuxKernel.vala:134 +#: src/Common/LinuxKernel.vala:135 msgid "Running kernel" msgstr "Laufender kernel" -#: src/Common/LinuxKernel.vala:259 +#: src/Common/LinuxKernel.vala:257 msgid "loading cached" msgstr "laden gecached" -#: src/Common/LinuxKernel.vala:271 +#: src/Common/LinuxKernel.vala:269 msgid "queuing download" msgstr "download der warteschlange" -#: src/Common/LinuxKernel.vala:292 +#: src/Common/LinuxKernel.vala:290 msgid "Fetching individual kernel indexes" msgstr "Abrufen einzelner Kernel-Indizes" -#: src/Common/LinuxKernel.vala:308 +#: src/Common/LinuxKernel.vala:306 msgid "loading downloaded" msgstr "laden von heruntergeladenen Dateien" -#: src/Common/LinuxKernel.vala:343 +#: src/Common/LinuxKernel.vala:341 msgid "Updating from" msgstr "Aktualisieren von" -#: src/Common/LinuxKernel.vala:351 +#: src/Common/LinuxKernel.vala:349 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:354 +#: src/Common/LinuxKernel.vala:352 msgid "FAILED" msgstr "MISSLUNGEN" -#: src/Common/LinuxKernel.vala:404 +#: src/Common/LinuxKernel.vala:405 msgid "Found installed" msgstr "Installiert gefunden" -#: src/Common/LinuxKernel.vala:742 src/Gtk/MainWindow.vala:523 +#: src/Common/LinuxKernel.vala:411 +msgid "locked" +msgstr "" + +#: src/Common/LinuxKernel.vala:495 src/Common/LinuxKernel.vala:1031 +#: src/Common/LinuxKernel.vala:1075 src/Common/LinuxKernel.vala:1142 +msgid "is locked." +msgstr "" + +#: src/Common/LinuxKernel.vala:729 src/Gtk/MainWindow.vala:523 #: src/Gtk/MainWindow.vala:536 msgid "Running" msgstr "Läuft" -#: src/Common/LinuxKernel.vala:743 +#: src/Common/LinuxKernel.vala:730 msgid "Installed" msgstr "Installiert" -#: src/Common/LinuxKernel.vala:744 +#: src/Common/LinuxKernel.vala:731 msgid "Invalid" msgstr "Ungültig" -#: src/Common/LinuxKernel.vala:824 +#: src/Common/LinuxKernel.vala:817 msgid "Packages Available" msgstr "Verfügbare Pakete" -#: src/Common/LinuxKernel.vala:830 +#: src/Common/LinuxKernel.vala:823 msgid "Packages Installed" msgstr "Installierte Pakete" -#: src/Common/LinuxKernel.vala:858 src/lib/TeeJee.FileSystem.vala:118 +#: src/Common/LinuxKernel.vala:851 src/lib/TeeJee.FileSystem.vala:118 msgid "File not found" msgstr "Datei nicht gefunden " -#: src/Common/LinuxKernel.vala:948 +#: src/Common/LinuxKernel.vala:942 msgid "Available Kernels" msgstr "Verfügbare Kernel" -#: src/Common/LinuxKernel.vala:985 +#: src/Common/LinuxKernel.vala:982 msgid "enabled" msgstr "ermöglichte" -#: src/Common/LinuxKernel.vala:1009 +#: src/Common/LinuxKernel.vala:1006 msgid "Downloading" msgstr "Laden" -#: src/Common/LinuxKernel.vala:1030 +#: src/Common/LinuxKernel.vala:1026 msgid "is already installed." msgstr "ist bereits installiert." -#: src/Common/LinuxKernel.vala:1060 +#: src/Common/LinuxKernel.vala:1061 msgid "Uninstalling selected kernels" msgstr "Deinstallation des angegebenen Kernels" -#: src/Common/LinuxKernel.vala:1066 +#: src/Common/LinuxKernel.vala:1067 msgid "requested" msgstr "angefordert" -#: src/Common/LinuxKernel.vala:1069 +#: src/Common/LinuxKernel.vala:1070 msgid "not uninstalling the currently running kernel" msgstr "Den aktuell laufenden Kernel wird nicht deinstalliert" -#: src/Common/LinuxKernel.vala:1085 +#: src/Common/LinuxKernel.vala:1091 msgid "found" msgstr "gründen" -#: src/Common/LinuxKernel.vala:1088 +#: src/Common/LinuxKernel.vala:1094 msgid "No packages to un-install!" msgstr "Keine Pakete zum Deinstallieren!" -#: src/Common/LinuxKernel.vala:1136 +#: src/Common/LinuxKernel.vala:1138 +#, fuzzy +msgid "is the highest installed version." +msgstr "Deinstallieren Sie alle bis auf die höchste installierte Version" + +#: src/Common/LinuxKernel.vala:1151 msgid "Could not find running kernel in list" msgstr "Konnte keinen laufenden Kernel in der Liste finden" -#: src/Common/LinuxKernel.vala:1141 +#: src/Common/LinuxKernel.vala:1156 msgid "Could not find any kernels to uninstall" msgstr "Es konnten keine Kernel zum Deinstallieren gefunden werden" -#: src/Common/LinuxKernel.vala:1149 +#: src/Common/LinuxKernel.vala:1164 msgid "The following kernels will be uninstalled" msgstr "Die folgenden Kernel werden deinstalliert" -#: src/Common/LinuxKernel.vala:1153 +#: src/Common/LinuxKernel.vala:1168 msgid "Continue ?" msgstr "Weiter ?" -#: src/Common/LinuxKernel.vala:1175 src/Console/AppConsole.vala:292 +#: src/Common/LinuxKernel.vala:1190 src/Console/AppConsole.vala:292 msgid "Latest update" msgstr "Neustes Update" -#: src/Common/LinuxKernel.vala:1186 src/Console/AppConsole.vala:299 +#: src/Common/LinuxKernel.vala:1201 src/Console/AppConsole.vala:299 msgid "Latest point update" msgstr "Letzte Punktaktualisierung" -#: src/Common/LinuxKernel.vala:1194 src/Console/AppConsole.vala:304 +#: src/Common/LinuxKernel.vala:1209 src/Console/AppConsole.vala:304 #: src/Console/AppConsole.vala:320 msgid "No updates found" msgstr "Keine Updates gefunden" -#: src/Common/LinuxKernel.vala:1203 +#: src/Common/LinuxKernel.vala:1218 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Kernel-Version %s installieren? (j/n):" -#: src/Common/Main.vala:376 +#: src/Common/Main.vala:336 msgid "Called from" msgstr "Angerufen von" -#: src/Common/Main.vala:376 +#: src/Common/Main.vala:336 msgid "at logon" msgstr "beim start" -#: src/Common/Main.vala:377 +#: src/Common/Main.vala:337 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" "Diese Datei wird überschrieben und erneut ausgeführt, wenn Einstellungen in" -#: src/Common/Main.vala:409 +#: src/Common/Main.vala:369 msgid "Notifications are disabled" msgstr "Benachrichtigungen sind deaktiviert" @@ -216,7 +230,7 @@ msgstr "Angegebenen Mainline-Kernel installieren" msgid "Uninstall specified kernel" msgstr "Deinstallation des angegebenen Kernels" -#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:332 +#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:335 msgid "Uninstall all but the highest installed version" msgstr "Deinstallieren Sie alle bis auf die höchste installierte Version" @@ -312,7 +326,7 @@ msgstr "Kernel %s verfügbar" msgid "Show" msgstr "Zeigen" -#: src/Console/AppConsole.vala:347 src/Gtk/MainWindow.vala:299 +#: src/Console/AppConsole.vala:347 src/Gtk/MainWindow.vala:302 msgid "Install" msgstr "Installieren" @@ -368,35 +382,39 @@ msgstr "Zeige Debug Informationen" msgid "Show all options" msgstr "Alle Optionen anzeigen" -#: src/Gtk/MainWindow.vala:111 +#: src/Gtk/MainWindow.vala:124 msgid "Kernel" msgstr "Kernel" -#: src/Gtk/MainWindow.vala:144 +#: src/Gtk/MainWindow.vala:143 +msgid "Lock" +msgstr "" + +#: src/Gtk/MainWindow.vala:160 msgid "Status" msgstr "Status" -#: src/Gtk/MainWindow.vala:159 +#: src/Gtk/MainWindow.vala:172 msgid "Notes" msgstr "Notizen" -#: src/Gtk/MainWindow.vala:309 +#: src/Gtk/MainWindow.vala:312 msgid "Uninstall" msgstr "Deinstallieren" -#: src/Gtk/MainWindow.vala:320 +#: src/Gtk/MainWindow.vala:323 msgid "Changelog, build status, etc" msgstr "" -#: src/Gtk/MainWindow.vala:331 +#: src/Gtk/MainWindow.vala:334 msgid "Uninstall Old" msgstr "Alte deinstallieren" -#: src/Gtk/MainWindow.vala:337 +#: src/Gtk/MainWindow.vala:340 msgid "Reload" msgstr "Nachladen" -#: src/Gtk/MainWindow.vala:338 +#: src/Gtk/MainWindow.vala:341 msgid "" "Delete cache and reload all kernel info\n" "\n" @@ -406,15 +424,15 @@ msgstr "" "\n" "DADURCH WERDEN AUCH ALLE BENUTZERNOTIZEN GELÖSCHT" -#: src/Gtk/MainWindow.vala:343 src/Gtk/SettingsDialog.vala:49 +#: src/Gtk/MainWindow.vala:346 src/Gtk/SettingsDialog.vala:49 msgid "Settings" msgstr "Einstellungen" -#: src/Gtk/MainWindow.vala:348 +#: src/Gtk/MainWindow.vala:351 msgid "About" msgstr "Über" -#: src/Gtk/MainWindow.vala:353 +#: src/Gtk/MainWindow.vala:356 msgid "Exit" msgstr "Ausgang" @@ -438,8 +456,8 @@ msgstr "Aktualisieren von Kernels" msgid "available" msgstr "Verfügbar" -#: src/Gtk/MainWindow.vala:575 src/Gtk/MainWindow.vala:616 -#: src/Gtk/MainWindow.vala:651 +#: src/Gtk/MainWindow.vala:574 src/Gtk/MainWindow.vala:615 +#: src/Gtk/MainWindow.vala:650 msgid "DONE" msgstr "FERTIG" diff --git a/po/el.po b/po/el.po index 14aae0ec..69f39f57 100644 --- a/po/el.po +++ b/po/el.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-22 13:54-0400\n" +"POT-Creation-Date: 2023-05-25 07:13-0400\n" "PO-Revision-Date: 2023-01-10 02:03-0600\n" "Last-Translator: Vasilis Kosmidis \n" "Language-Team: Greek\n" @@ -13,161 +13,175 @@ msgstr "" "X-Launchpad-Export-Date: 2017-04-13 11:48+0000\n" "X-Generator: Poedit 2.0.5\n" -#: src/Common/LinuxKernel.vala:104 +#: src/Common/LinuxKernel.vala:105 msgid "Distribution" msgstr "Διανομή" -#: src/Common/LinuxKernel.vala:119 +#: src/Common/LinuxKernel.vala:120 msgid "Architecture" msgstr "Αρχιτεκτονική" -#: src/Common/LinuxKernel.vala:134 +#: src/Common/LinuxKernel.vala:135 msgid "Running kernel" msgstr "Εκτέλεση πυρήνα" -#: src/Common/LinuxKernel.vala:259 +#: src/Common/LinuxKernel.vala:257 msgid "loading cached" msgstr "φόρτωση προσωρινά αποθηκευμένου" -#: src/Common/LinuxKernel.vala:271 +#: src/Common/LinuxKernel.vala:269 msgid "queuing download" msgstr "Προσθήκη λήψης στην ουρά" -#: src/Common/LinuxKernel.vala:292 +#: src/Common/LinuxKernel.vala:290 msgid "Fetching individual kernel indexes" msgstr "Λήψη μεμονωμένων ευρετηρίων πυρήνα" -#: src/Common/LinuxKernel.vala:308 +#: src/Common/LinuxKernel.vala:306 msgid "loading downloaded" msgstr "Φόρτωση λήψης" -#: src/Common/LinuxKernel.vala:343 +#: src/Common/LinuxKernel.vala:341 msgid "Updating from" msgstr "Ενημέρωση από" -#: src/Common/LinuxKernel.vala:351 +#: src/Common/LinuxKernel.vala:349 msgid "OK" msgstr "ΟΚ" -#: src/Common/LinuxKernel.vala:354 +#: src/Common/LinuxKernel.vala:352 msgid "FAILED" msgstr "ΑΠΈΤΥΧΕ" -#: src/Common/LinuxKernel.vala:404 +#: src/Common/LinuxKernel.vala:405 msgid "Found installed" msgstr "Βρέθηκε εγκατεστημένο" -#: src/Common/LinuxKernel.vala:742 src/Gtk/MainWindow.vala:523 +#: src/Common/LinuxKernel.vala:411 +msgid "locked" +msgstr "" + +#: src/Common/LinuxKernel.vala:495 src/Common/LinuxKernel.vala:1031 +#: src/Common/LinuxKernel.vala:1075 src/Common/LinuxKernel.vala:1142 +msgid "is locked." +msgstr "" + +#: src/Common/LinuxKernel.vala:729 src/Gtk/MainWindow.vala:523 #: src/Gtk/MainWindow.vala:536 msgid "Running" msgstr "Ενεργός" -#: src/Common/LinuxKernel.vala:743 +#: src/Common/LinuxKernel.vala:730 msgid "Installed" msgstr "Εγκατεστημένος" -#: src/Common/LinuxKernel.vala:744 +#: src/Common/LinuxKernel.vala:731 msgid "Invalid" msgstr "Άκυρος" -#: src/Common/LinuxKernel.vala:824 +#: src/Common/LinuxKernel.vala:817 msgid "Packages Available" msgstr "Διαθέσιμα πακέτα" -#: src/Common/LinuxKernel.vala:830 +#: src/Common/LinuxKernel.vala:823 msgid "Packages Installed" msgstr "Εγκατεστημένα πακέτα" -#: src/Common/LinuxKernel.vala:858 src/lib/TeeJee.FileSystem.vala:118 +#: src/Common/LinuxKernel.vala:851 src/lib/TeeJee.FileSystem.vala:118 msgid "File not found" msgstr "Το αρχείο δε βρέθηκε" -#: src/Common/LinuxKernel.vala:948 +#: src/Common/LinuxKernel.vala:942 msgid "Available Kernels" msgstr "Διαθέσιμοι πυρήνες" -#: src/Common/LinuxKernel.vala:985 +#: src/Common/LinuxKernel.vala:982 msgid "enabled" msgstr "ενεργοποιημένη" -#: src/Common/LinuxKernel.vala:1009 +#: src/Common/LinuxKernel.vala:1006 msgid "Downloading" msgstr "Κατέβασμα" -#: src/Common/LinuxKernel.vala:1030 +#: src/Common/LinuxKernel.vala:1026 msgid "is already installed." msgstr "είναι ήδη εγκατεστημένο." -#: src/Common/LinuxKernel.vala:1060 +#: src/Common/LinuxKernel.vala:1061 msgid "Uninstalling selected kernels" msgstr "Απεγκατάσταση επιλεγμένων πυρήνων" -#: src/Common/LinuxKernel.vala:1066 +#: src/Common/LinuxKernel.vala:1067 msgid "requested" msgstr "ζητήθηκε" -#: src/Common/LinuxKernel.vala:1069 +#: src/Common/LinuxKernel.vala:1070 msgid "not uninstalling the currently running kernel" msgstr "δεν θα απεγκαταστήσει τον πυρήνα που εκτελείται αυτήν τη στιγμή" -#: src/Common/LinuxKernel.vala:1085 +#: src/Common/LinuxKernel.vala:1091 msgid "found" msgstr "ιδρύω" -#: src/Common/LinuxKernel.vala:1088 +#: src/Common/LinuxKernel.vala:1094 msgid "No packages to un-install!" msgstr "Δεν υπάρχουν πακέτα για απεγκατάσταση!" -#: src/Common/LinuxKernel.vala:1136 +#: src/Common/LinuxKernel.vala:1138 +#, fuzzy +msgid "is the highest installed version." +msgstr "Απεγκαταστήστε όλες εκτός από την υψηλότερη εγκατεστημένη έκδοση" + +#: src/Common/LinuxKernel.vala:1151 msgid "Could not find running kernel in list" msgstr "Δεν ήταν δυνατή η εύρεση του πυρήνα που εκτελείται αυτήν τη στιγμή" -#: src/Common/LinuxKernel.vala:1141 +#: src/Common/LinuxKernel.vala:1156 msgid "Could not find any kernels to uninstall" msgstr "Δεν βρέθηκε κανένας πυρήνας για απεγκατάσταση" -#: src/Common/LinuxKernel.vala:1149 +#: src/Common/LinuxKernel.vala:1164 msgid "The following kernels will be uninstalled" msgstr "Θα καταργηθεί η εγκατάσταση των ακόλουθων πυρήνων" -#: src/Common/LinuxKernel.vala:1153 +#: src/Common/LinuxKernel.vala:1168 msgid "Continue ?" msgstr "Συνέχεια;" -#: src/Common/LinuxKernel.vala:1175 src/Console/AppConsole.vala:292 +#: src/Common/LinuxKernel.vala:1190 src/Console/AppConsole.vala:292 msgid "Latest update" msgstr "Τελευταία αναβάθμιση" -#: src/Common/LinuxKernel.vala:1186 src/Console/AppConsole.vala:299 +#: src/Common/LinuxKernel.vala:1201 src/Console/AppConsole.vala:299 msgid "Latest point update" msgstr "Τελευταία ενημέρωση συντήρησης" -#: src/Common/LinuxKernel.vala:1194 src/Console/AppConsole.vala:304 +#: src/Common/LinuxKernel.vala:1209 src/Console/AppConsole.vala:304 #: src/Console/AppConsole.vala:320 msgid "No updates found" msgstr "Δεν βρέθηκαν ενημερώσεις" -#: src/Common/LinuxKernel.vala:1203 +#: src/Common/LinuxKernel.vala:1218 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Εγκατάσταση του πυρήνα έκδοσης %s ; (ν/ό):" -#: src/Common/Main.vala:376 +#: src/Common/Main.vala:336 msgid "Called from" msgstr "Κλήθηκε από" -#: src/Common/Main.vala:376 +#: src/Common/Main.vala:336 msgid "at logon" msgstr "κατά την εκκίνηση" -#: src/Common/Main.vala:377 +#: src/Common/Main.vala:337 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" "Αυτό το αρχείο αντικαθίσταται και εκτελείται ξανά κάθε φορά που " "αποθηκεύονται οι ρυθμίσεις στο" -#: src/Common/Main.vala:409 +#: src/Common/Main.vala:369 msgid "Notifications are disabled" msgstr "Οι ειδοποιήσεις είναι απενεργοποιημένες" @@ -216,7 +230,7 @@ msgstr "Εγκατάσταση του καθορισμένου mainline πυρή msgid "Uninstall specified kernel" msgstr "Απεγκατάσταση του καθορισμένου πυρήνα" -#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:332 +#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:335 msgid "Uninstall all but the highest installed version" msgstr "Απεγκαταστήστε όλες εκτός από την υψηλότερη εγκατεστημένη έκδοση" @@ -312,7 +326,7 @@ msgstr "Πυρήνας %s διαθέσιμος" msgid "Show" msgstr "Προβολή" -#: src/Console/AppConsole.vala:347 src/Gtk/MainWindow.vala:299 +#: src/Console/AppConsole.vala:347 src/Gtk/MainWindow.vala:302 msgid "Install" msgstr "Εγκατάσταση" @@ -368,35 +382,39 @@ msgstr "Εκτύπωση πληροφοριών εντοπισμού σφαλμ msgid "Show all options" msgstr "Εμφάνιση όλων των επιλογών" -#: src/Gtk/MainWindow.vala:111 +#: src/Gtk/MainWindow.vala:124 msgid "Kernel" msgstr "Πυρήνας" -#: src/Gtk/MainWindow.vala:144 +#: src/Gtk/MainWindow.vala:143 +msgid "Lock" +msgstr "" + +#: src/Gtk/MainWindow.vala:160 msgid "Status" msgstr "Κατάσταση" -#: src/Gtk/MainWindow.vala:159 +#: src/Gtk/MainWindow.vala:172 msgid "Notes" msgstr "Σημειώσεις" -#: src/Gtk/MainWindow.vala:309 +#: src/Gtk/MainWindow.vala:312 msgid "Uninstall" msgstr "Απεγκατάσταση" -#: src/Gtk/MainWindow.vala:320 +#: src/Gtk/MainWindow.vala:323 msgid "Changelog, build status, etc" msgstr "" -#: src/Gtk/MainWindow.vala:331 +#: src/Gtk/MainWindow.vala:334 msgid "Uninstall Old" msgstr "Απεγκατάσταση παλαιών" -#: src/Gtk/MainWindow.vala:337 +#: src/Gtk/MainWindow.vala:340 msgid "Reload" msgstr "Δροσίζω" -#: src/Gtk/MainWindow.vala:338 +#: src/Gtk/MainWindow.vala:341 msgid "" "Delete cache and reload all kernel info\n" "\n" @@ -406,15 +424,15 @@ msgstr "" "\n" "ΑΥΤΌ ΘΑ ΔΙΑΓΡΆΨΕΙ ΕΠΊΣΗΣ ΌΛΕΣ ΤΙΣ ΣΗΜΕΙΏΣΕΙΣ ΧΡΉΣΤΗ" -#: src/Gtk/MainWindow.vala:343 src/Gtk/SettingsDialog.vala:49 +#: src/Gtk/MainWindow.vala:346 src/Gtk/SettingsDialog.vala:49 msgid "Settings" msgstr "Ρυθμίσεις" -#: src/Gtk/MainWindow.vala:348 +#: src/Gtk/MainWindow.vala:351 msgid "About" msgstr "Σχετικά" -#: src/Gtk/MainWindow.vala:353 +#: src/Gtk/MainWindow.vala:356 msgid "Exit" msgstr "Έξοδος" @@ -438,8 +456,8 @@ msgstr "Ενημέρωση πυρήνων" msgid "available" msgstr "διαθέσιμος" -#: src/Gtk/MainWindow.vala:575 src/Gtk/MainWindow.vala:616 -#: src/Gtk/MainWindow.vala:651 +#: src/Gtk/MainWindow.vala:574 src/Gtk/MainWindow.vala:615 +#: src/Gtk/MainWindow.vala:650 msgid "DONE" msgstr "ΈΤΟΙΜΟ" diff --git a/po/es.po b/po/es.po index 2db0501b..3a2c123c 100644 --- a/po/es.po +++ b/po/es.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-22 13:54-0400\n" +"POT-Creation-Date: 2023-05-25 07:13-0400\n" "PO-Revision-Date: 2018-01-03 02:03-0600\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish\n" @@ -13,161 +13,175 @@ msgstr "" "X-Launchpad-Export-Date: 2017-04-13 11:48+0000\n" "X-Generator: Poedit 2.0.5\n" -#: src/Common/LinuxKernel.vala:104 +#: src/Common/LinuxKernel.vala:105 msgid "Distribution" msgstr "Distribución" -#: src/Common/LinuxKernel.vala:119 +#: src/Common/LinuxKernel.vala:120 msgid "Architecture" msgstr "Arquitectura del sistema" -#: src/Common/LinuxKernel.vala:134 +#: src/Common/LinuxKernel.vala:135 msgid "Running kernel" msgstr "Kernel en ejecución" -#: src/Common/LinuxKernel.vala:259 +#: src/Common/LinuxKernel.vala:257 msgid "loading cached" msgstr "carga en caché" -#: src/Common/LinuxKernel.vala:271 +#: src/Common/LinuxKernel.vala:269 msgid "queuing download" msgstr "descarga de colas" -#: src/Common/LinuxKernel.vala:292 +#: src/Common/LinuxKernel.vala:290 msgid "Fetching individual kernel indexes" msgstr "Obtención de índices de kernel individuales" -#: src/Common/LinuxKernel.vala:308 +#: src/Common/LinuxKernel.vala:306 msgid "loading downloaded" msgstr "cargando descargado" -#: src/Common/LinuxKernel.vala:343 +#: src/Common/LinuxKernel.vala:341 msgid "Updating from" msgstr "Actualización desde" -#: src/Common/LinuxKernel.vala:351 +#: src/Common/LinuxKernel.vala:349 msgid "OK" msgstr "Aceptar" -#: src/Common/LinuxKernel.vala:354 +#: src/Common/LinuxKernel.vala:352 msgid "FAILED" msgstr "FRACASADO" -#: src/Common/LinuxKernel.vala:404 +#: src/Common/LinuxKernel.vala:405 msgid "Found installed" msgstr "Encontrado instalado" -#: src/Common/LinuxKernel.vala:742 src/Gtk/MainWindow.vala:523 +#: src/Common/LinuxKernel.vala:411 +msgid "locked" +msgstr "" + +#: src/Common/LinuxKernel.vala:495 src/Common/LinuxKernel.vala:1031 +#: src/Common/LinuxKernel.vala:1075 src/Common/LinuxKernel.vala:1142 +msgid "is locked." +msgstr "" + +#: src/Common/LinuxKernel.vala:729 src/Gtk/MainWindow.vala:523 #: src/Gtk/MainWindow.vala:536 msgid "Running" msgstr "En ejecución" -#: src/Common/LinuxKernel.vala:743 +#: src/Common/LinuxKernel.vala:730 msgid "Installed" msgstr "Instalado" -#: src/Common/LinuxKernel.vala:744 +#: src/Common/LinuxKernel.vala:731 msgid "Invalid" msgstr "No válido" -#: src/Common/LinuxKernel.vala:824 +#: src/Common/LinuxKernel.vala:817 msgid "Packages Available" msgstr "Paquetes disponibles" -#: src/Common/LinuxKernel.vala:830 +#: src/Common/LinuxKernel.vala:823 msgid "Packages Installed" msgstr "Paquetes instalados" -#: src/Common/LinuxKernel.vala:858 src/lib/TeeJee.FileSystem.vala:118 +#: src/Common/LinuxKernel.vala:851 src/lib/TeeJee.FileSystem.vala:118 msgid "File not found" msgstr "No se encontró el archivo" -#: src/Common/LinuxKernel.vala:948 +#: src/Common/LinuxKernel.vala:942 msgid "Available Kernels" msgstr "Núcleos disponibles" -#: src/Common/LinuxKernel.vala:985 +#: src/Common/LinuxKernel.vala:982 msgid "enabled" msgstr "habilitado" -#: src/Common/LinuxKernel.vala:1009 +#: src/Common/LinuxKernel.vala:1006 msgid "Downloading" msgstr "Descargar" -#: src/Common/LinuxKernel.vala:1030 +#: src/Common/LinuxKernel.vala:1026 msgid "is already installed." msgstr "ya está instalado." -#: src/Common/LinuxKernel.vala:1060 +#: src/Common/LinuxKernel.vala:1061 msgid "Uninstalling selected kernels" msgstr "Desinstalación de kernels seleccionados" -#: src/Common/LinuxKernel.vala:1066 +#: src/Common/LinuxKernel.vala:1067 msgid "requested" msgstr "solicitado" -#: src/Common/LinuxKernel.vala:1069 +#: src/Common/LinuxKernel.vala:1070 msgid "not uninstalling the currently running kernel" msgstr "No desinstalará el kernel que se está ejecutando actualmente" -#: src/Common/LinuxKernel.vala:1085 +#: src/Common/LinuxKernel.vala:1091 msgid "found" msgstr "fundar" -#: src/Common/LinuxKernel.vala:1088 +#: src/Common/LinuxKernel.vala:1094 msgid "No packages to un-install!" msgstr "¡No hay paquetes para desinstalar!" -#: src/Common/LinuxKernel.vala:1136 +#: src/Common/LinuxKernel.vala:1138 +#, fuzzy +msgid "is the highest installed version." +msgstr "Desinstale todas las versiones instaladas excepto la más alta" + +#: src/Common/LinuxKernel.vala:1151 msgid "Could not find running kernel in list" msgstr "No se pudo encontrar el kernel en ejecución en la lista" -#: src/Common/LinuxKernel.vala:1141 +#: src/Common/LinuxKernel.vala:1156 msgid "Could not find any kernels to uninstall" msgstr "No se pudo encontrar ningún kernel para desinstalar" -#: src/Common/LinuxKernel.vala:1149 +#: src/Common/LinuxKernel.vala:1164 msgid "The following kernels will be uninstalled" msgstr "Se desinstalarán los siguientes kernels" -#: src/Common/LinuxKernel.vala:1153 +#: src/Common/LinuxKernel.vala:1168 msgid "Continue ?" msgstr "¿Continuar?" -#: src/Common/LinuxKernel.vala:1175 src/Console/AppConsole.vala:292 +#: src/Common/LinuxKernel.vala:1190 src/Console/AppConsole.vala:292 msgid "Latest update" msgstr "Última actualización" -#: src/Common/LinuxKernel.vala:1186 src/Console/AppConsole.vala:299 +#: src/Common/LinuxKernel.vala:1201 src/Console/AppConsole.vala:299 msgid "Latest point update" msgstr "Última actualización puntual" -#: src/Common/LinuxKernel.vala:1194 src/Console/AppConsole.vala:304 +#: src/Common/LinuxKernel.vala:1209 src/Console/AppConsole.vala:304 #: src/Console/AppConsole.vala:320 msgid "No updates found" msgstr "No se encontró ninguna actualización" -#: src/Common/LinuxKernel.vala:1203 +#: src/Common/LinuxKernel.vala:1218 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Instalar la versión del kernel %s? (s/n): " -#: src/Common/Main.vala:376 +#: src/Common/Main.vala:336 msgid "Called from" msgstr "Llamado desde" -#: src/Common/Main.vala:376 +#: src/Common/Main.vala:336 msgid "at logon" msgstr "al inicio" -#: src/Common/Main.vala:377 +#: src/Common/Main.vala:337 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" "Este archivo se sobrescribe y se ejecuta de nuevo cada vez que se guarda la " "configuración en" -#: src/Common/Main.vala:409 +#: src/Common/Main.vala:369 msgid "Notifications are disabled" msgstr "Las notificaciones están deshabilitadas" @@ -216,7 +230,7 @@ msgstr "Instalar núcleo troncal especificado" msgid "Uninstall specified kernel" msgstr "Desinstalar el kernel especificado" -#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:332 +#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:335 msgid "Uninstall all but the highest installed version" msgstr "Desinstale todas las versiones instaladas excepto la más alta" @@ -310,7 +324,7 @@ msgstr "Kernel %s Disponible" msgid "Show" msgstr "Mostrar" -#: src/Console/AppConsole.vala:347 src/Gtk/MainWindow.vala:299 +#: src/Console/AppConsole.vala:347 src/Gtk/MainWindow.vala:302 msgid "Install" msgstr "Instalar" @@ -366,35 +380,39 @@ msgstr "Mostrar información de depuración" msgid "Show all options" msgstr "Mostrar todas las opciones" -#: src/Gtk/MainWindow.vala:111 +#: src/Gtk/MainWindow.vala:124 msgid "Kernel" msgstr "Núcleo" -#: src/Gtk/MainWindow.vala:144 +#: src/Gtk/MainWindow.vala:143 +msgid "Lock" +msgstr "" + +#: src/Gtk/MainWindow.vala:160 msgid "Status" msgstr "Estado" -#: src/Gtk/MainWindow.vala:159 +#: src/Gtk/MainWindow.vala:172 msgid "Notes" msgstr "Notas" -#: src/Gtk/MainWindow.vala:309 +#: src/Gtk/MainWindow.vala:312 msgid "Uninstall" msgstr "Desinstalar" -#: src/Gtk/MainWindow.vala:320 +#: src/Gtk/MainWindow.vala:323 msgid "Changelog, build status, etc" msgstr "" -#: src/Gtk/MainWindow.vala:331 +#: src/Gtk/MainWindow.vala:334 msgid "Uninstall Old" msgstr "Desinstalar Antiguo" -#: src/Gtk/MainWindow.vala:337 +#: src/Gtk/MainWindow.vala:340 msgid "Reload" msgstr "Recargar" -#: src/Gtk/MainWindow.vala:338 +#: src/Gtk/MainWindow.vala:341 msgid "" "Delete cache and reload all kernel info\n" "\n" @@ -404,15 +422,15 @@ msgstr "" "\n" "ESTO TAMBIÉN ELIMINARÁ TODAS LAS NOTAS DEL USUARIO" -#: src/Gtk/MainWindow.vala:343 src/Gtk/SettingsDialog.vala:49 +#: src/Gtk/MainWindow.vala:346 src/Gtk/SettingsDialog.vala:49 msgid "Settings" msgstr "Configuración" -#: src/Gtk/MainWindow.vala:348 +#: src/Gtk/MainWindow.vala:351 msgid "About" msgstr "Acerca de" -#: src/Gtk/MainWindow.vala:353 +#: src/Gtk/MainWindow.vala:356 msgid "Exit" msgstr "Salida" @@ -437,8 +455,8 @@ msgstr "Actualización de kernels" msgid "available" msgstr "disponibles" -#: src/Gtk/MainWindow.vala:575 src/Gtk/MainWindow.vala:616 -#: src/Gtk/MainWindow.vala:651 +#: src/Gtk/MainWindow.vala:574 src/Gtk/MainWindow.vala:615 +#: src/Gtk/MainWindow.vala:650 msgid "DONE" msgstr "HECHO" diff --git a/po/fr.po b/po/fr.po index f28bb8d7..c6e898b1 100644 --- a/po/fr.po +++ b/po/fr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-22 13:54-0400\n" +"POT-Creation-Date: 2023-05-25 07:13-0400\n" "PO-Revision-Date: 2018-08-05 15:50+0200\n" "Last-Translator: Yolateng0 \n" "Language-Team: French\n" @@ -13,161 +13,175 @@ msgstr "" "X-Launchpad-Export-Date: 2017-04-13 11:48+0000\n" "X-Generator: Poedit 2.0.6\n" -#: src/Common/LinuxKernel.vala:104 +#: src/Common/LinuxKernel.vala:105 msgid "Distribution" msgstr "Distribution" -#: src/Common/LinuxKernel.vala:119 +#: src/Common/LinuxKernel.vala:120 msgid "Architecture" msgstr "Architecture" -#: src/Common/LinuxKernel.vala:134 +#: src/Common/LinuxKernel.vala:135 msgid "Running kernel" msgstr "Noyau en cours d'exécution" -#: src/Common/LinuxKernel.vala:259 +#: src/Common/LinuxKernel.vala:257 msgid "loading cached" msgstr "chargement mis en cache" -#: src/Common/LinuxKernel.vala:271 +#: src/Common/LinuxKernel.vala:269 msgid "queuing download" msgstr "enqueuing télécharger" -#: src/Common/LinuxKernel.vala:292 +#: src/Common/LinuxKernel.vala:290 msgid "Fetching individual kernel indexes" msgstr "Récupération d'index de noyau individuels" -#: src/Common/LinuxKernel.vala:308 +#: src/Common/LinuxKernel.vala:306 msgid "loading downloaded" msgstr "chargement téléchargé" -#: src/Common/LinuxKernel.vala:343 +#: src/Common/LinuxKernel.vala:341 msgid "Updating from" msgstr "Mise à jour à partir de" -#: src/Common/LinuxKernel.vala:351 +#: src/Common/LinuxKernel.vala:349 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:354 +#: src/Common/LinuxKernel.vala:352 msgid "FAILED" msgstr "RATÉ" -#: src/Common/LinuxKernel.vala:404 +#: src/Common/LinuxKernel.vala:405 msgid "Found installed" msgstr "Trouvé installé" -#: src/Common/LinuxKernel.vala:742 src/Gtk/MainWindow.vala:523 +#: src/Common/LinuxKernel.vala:411 +msgid "locked" +msgstr "" + +#: src/Common/LinuxKernel.vala:495 src/Common/LinuxKernel.vala:1031 +#: src/Common/LinuxKernel.vala:1075 src/Common/LinuxKernel.vala:1142 +msgid "is locked." +msgstr "" + +#: src/Common/LinuxKernel.vala:729 src/Gtk/MainWindow.vala:523 #: src/Gtk/MainWindow.vala:536 msgid "Running" msgstr "Actuel" -#: src/Common/LinuxKernel.vala:743 +#: src/Common/LinuxKernel.vala:730 msgid "Installed" msgstr "Installé" -#: src/Common/LinuxKernel.vala:744 +#: src/Common/LinuxKernel.vala:731 msgid "Invalid" msgstr "No válido" -#: src/Common/LinuxKernel.vala:824 +#: src/Common/LinuxKernel.vala:817 msgid "Packages Available" msgstr "Paquets Disponibles" -#: src/Common/LinuxKernel.vala:830 +#: src/Common/LinuxKernel.vala:823 msgid "Packages Installed" msgstr "Paquets Installés" -#: src/Common/LinuxKernel.vala:858 src/lib/TeeJee.FileSystem.vala:118 +#: src/Common/LinuxKernel.vala:851 src/lib/TeeJee.FileSystem.vala:118 msgid "File not found" msgstr "Fichier non trouvé" -#: src/Common/LinuxKernel.vala:948 +#: src/Common/LinuxKernel.vala:942 msgid "Available Kernels" msgstr "Noyaux Disponibles" -#: src/Common/LinuxKernel.vala:985 +#: src/Common/LinuxKernel.vala:982 msgid "enabled" msgstr "activé" -#: src/Common/LinuxKernel.vala:1009 +#: src/Common/LinuxKernel.vala:1006 msgid "Downloading" msgstr "Téléchargement" -#: src/Common/LinuxKernel.vala:1030 +#: src/Common/LinuxKernel.vala:1026 msgid "is already installed." msgstr "est déjà installé." -#: src/Common/LinuxKernel.vala:1060 +#: src/Common/LinuxKernel.vala:1061 msgid "Uninstalling selected kernels" msgstr "Désinstallation des noyaux sélectionnés" -#: src/Common/LinuxKernel.vala:1066 +#: src/Common/LinuxKernel.vala:1067 msgid "requested" msgstr "Demandé" -#: src/Common/LinuxKernel.vala:1069 +#: src/Common/LinuxKernel.vala:1070 msgid "not uninstalling the currently running kernel" msgstr "Ne pas désinstaller le noyau en cours d'exécution" -#: src/Common/LinuxKernel.vala:1085 +#: src/Common/LinuxKernel.vala:1091 msgid "found" msgstr "fonder" -#: src/Common/LinuxKernel.vala:1088 +#: src/Common/LinuxKernel.vala:1094 msgid "No packages to un-install!" msgstr "Pas de paquets à désinstaller !" -#: src/Common/LinuxKernel.vala:1136 +#: src/Common/LinuxKernel.vala:1138 +#, fuzzy +msgid "is the highest installed version." +msgstr "Désinstallez toutes le version installées, sauf la plus élevée" + +#: src/Common/LinuxKernel.vala:1151 msgid "Could not find running kernel in list" msgstr "Impossible de trouver le noyau en cours d'exécution dans la liste" -#: src/Common/LinuxKernel.vala:1141 +#: src/Common/LinuxKernel.vala:1156 msgid "Could not find any kernels to uninstall" msgstr "Impossible de trouver des noyaux à désinstaller" -#: src/Common/LinuxKernel.vala:1149 +#: src/Common/LinuxKernel.vala:1164 msgid "The following kernels will be uninstalled" msgstr "Les noyaux suivants seront désinstallés" -#: src/Common/LinuxKernel.vala:1153 +#: src/Common/LinuxKernel.vala:1168 msgid "Continue ?" msgstr "Reprendre ?" -#: src/Common/LinuxKernel.vala:1175 src/Console/AppConsole.vala:292 +#: src/Common/LinuxKernel.vala:1190 src/Console/AppConsole.vala:292 msgid "Latest update" msgstr "Dernière mise à jour" -#: src/Common/LinuxKernel.vala:1186 src/Console/AppConsole.vala:299 +#: src/Common/LinuxKernel.vala:1201 src/Console/AppConsole.vala:299 msgid "Latest point update" msgstr "Dernière mise à jour mineure" -#: src/Common/LinuxKernel.vala:1194 src/Console/AppConsole.vala:304 +#: src/Common/LinuxKernel.vala:1209 src/Console/AppConsole.vala:304 #: src/Console/AppConsole.vala:320 msgid "No updates found" msgstr "Aucune mise à jour disponible" -#: src/Common/LinuxKernel.vala:1203 +#: src/Common/LinuxKernel.vala:1218 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Installer le noyau en version %s ? (y/n): " -#: src/Common/Main.vala:376 +#: src/Common/Main.vala:336 msgid "Called from" msgstr "Appelé à partir de" -#: src/Common/Main.vala:376 +#: src/Common/Main.vala:336 msgid "at logon" msgstr "au démarrage" -#: src/Common/Main.vala:377 +#: src/Common/Main.vala:337 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" "Ce fichier est écrasé et exécuté à nouveau chaque fois que les paramètres " "sont enregistrés dans" -#: src/Common/Main.vala:409 +#: src/Common/Main.vala:369 msgid "Notifications are disabled" msgstr "Les notifications sont désactivées" @@ -216,7 +230,7 @@ msgstr "Installer le noyau mainline spécifié" msgid "Uninstall specified kernel" msgstr "Désinstaller le noyau spécifié" -#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:332 +#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:335 msgid "Uninstall all but the highest installed version" msgstr "Désinstallez toutes le version installées, sauf la plus élevée" @@ -312,7 +326,7 @@ msgstr "Paquet %s disponibles" msgid "Show" msgstr "Montrer" -#: src/Console/AppConsole.vala:347 src/Gtk/MainWindow.vala:299 +#: src/Console/AppConsole.vala:347 src/Gtk/MainWindow.vala:302 msgid "Install" msgstr "Installer" @@ -368,35 +382,39 @@ msgstr "Afficher les informations de débogage" msgid "Show all options" msgstr "Afficher toutes les options" -#: src/Gtk/MainWindow.vala:111 +#: src/Gtk/MainWindow.vala:124 msgid "Kernel" msgstr "Noyau" -#: src/Gtk/MainWindow.vala:144 +#: src/Gtk/MainWindow.vala:143 +msgid "Lock" +msgstr "" + +#: src/Gtk/MainWindow.vala:160 msgid "Status" msgstr "Statut" -#: src/Gtk/MainWindow.vala:159 +#: src/Gtk/MainWindow.vala:172 msgid "Notes" msgstr "Notes" -#: src/Gtk/MainWindow.vala:309 +#: src/Gtk/MainWindow.vala:312 msgid "Uninstall" msgstr "Désinstaller" -#: src/Gtk/MainWindow.vala:320 +#: src/Gtk/MainWindow.vala:323 msgid "Changelog, build status, etc" msgstr "" -#: src/Gtk/MainWindow.vala:331 +#: src/Gtk/MainWindow.vala:334 msgid "Uninstall Old" msgstr "Désinstaller Ancien" -#: src/Gtk/MainWindow.vala:337 +#: src/Gtk/MainWindow.vala:340 msgid "Reload" msgstr "Recharger" -#: src/Gtk/MainWindow.vala:338 +#: src/Gtk/MainWindow.vala:341 msgid "" "Delete cache and reload all kernel info\n" "\n" @@ -406,15 +424,15 @@ msgstr "" "\n" "CELA SUPPRIMERA ÉGALEMENT TOUTES LES NOTES DE UTILISATEUR" -#: src/Gtk/MainWindow.vala:343 src/Gtk/SettingsDialog.vala:49 +#: src/Gtk/MainWindow.vala:346 src/Gtk/SettingsDialog.vala:49 msgid "Settings" msgstr "Paramètres" -#: src/Gtk/MainWindow.vala:348 +#: src/Gtk/MainWindow.vala:351 msgid "About" msgstr "À propos" -#: src/Gtk/MainWindow.vala:353 +#: src/Gtk/MainWindow.vala:356 msgid "Exit" msgstr "Sortie" @@ -440,8 +458,8 @@ msgstr "Mise à jour des noyaux" msgid "available" msgstr "disponible" -#: src/Gtk/MainWindow.vala:575 src/Gtk/MainWindow.vala:616 -#: src/Gtk/MainWindow.vala:651 +#: src/Gtk/MainWindow.vala:574 src/Gtk/MainWindow.vala:615 +#: src/Gtk/MainWindow.vala:650 msgid "DONE" msgstr "FAIT" diff --git a/po/hr.po b/po/hr.po index e8297a4d..5d06e0e5 100644 --- a/po/hr.po +++ b/po/hr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-22 13:54-0400\n" +"POT-Creation-Date: 2023-05-25 07:13-0400\n" "PO-Revision-Date: 2022-09-22 12:13+0200\n" "Last-Translator: gogo \n" "Language-Team: Croatian\n" @@ -13,160 +13,174 @@ msgstr "" "X-Launchpad-Export-Date: 2017-12-23 23:36+0000\n" "X-Generator: Poedit 3.0.1\n" -#: src/Common/LinuxKernel.vala:104 +#: src/Common/LinuxKernel.vala:105 msgid "Distribution" msgstr "Distribucija" -#: src/Common/LinuxKernel.vala:119 +#: src/Common/LinuxKernel.vala:120 msgid "Architecture" msgstr "Arhitektura" -#: src/Common/LinuxKernel.vala:134 +#: src/Common/LinuxKernel.vala:135 msgid "Running kernel" msgstr "Trčanje kernel" -#: src/Common/LinuxKernel.vala:259 +#: src/Common/LinuxKernel.vala:257 msgid "loading cached" msgstr "učitavanje predmemoriranog" -#: src/Common/LinuxKernel.vala:271 +#: src/Common/LinuxKernel.vala:269 msgid "queuing download" msgstr "preuzimanje u redu čekanja" -#: src/Common/LinuxKernel.vala:292 +#: src/Common/LinuxKernel.vala:290 msgid "Fetching individual kernel indexes" msgstr "Dohvaćanje pojedinačnih indeksa kernel" -#: src/Common/LinuxKernel.vala:308 +#: src/Common/LinuxKernel.vala:306 msgid "loading downloaded" msgstr "učitavanje preuzeto" -#: src/Common/LinuxKernel.vala:343 +#: src/Common/LinuxKernel.vala:341 msgid "Updating from" msgstr "Ažuriranje iz" -#: src/Common/LinuxKernel.vala:351 +#: src/Common/LinuxKernel.vala:349 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:354 +#: src/Common/LinuxKernel.vala:352 msgid "FAILED" msgstr "NIJE USPIO" -#: src/Common/LinuxKernel.vala:404 +#: src/Common/LinuxKernel.vala:405 msgid "Found installed" msgstr "Pronađeno instalirano" -#: src/Common/LinuxKernel.vala:742 src/Gtk/MainWindow.vala:523 +#: src/Common/LinuxKernel.vala:411 +msgid "locked" +msgstr "" + +#: src/Common/LinuxKernel.vala:495 src/Common/LinuxKernel.vala:1031 +#: src/Common/LinuxKernel.vala:1075 src/Common/LinuxKernel.vala:1142 +msgid "is locked." +msgstr "" + +#: src/Common/LinuxKernel.vala:729 src/Gtk/MainWindow.vala:523 #: src/Gtk/MainWindow.vala:536 msgid "Running" msgstr "Pokrenuto" -#: src/Common/LinuxKernel.vala:743 +#: src/Common/LinuxKernel.vala:730 msgid "Installed" msgstr "Instalirano" -#: src/Common/LinuxKernel.vala:744 +#: src/Common/LinuxKernel.vala:731 msgid "Invalid" msgstr "Érvénytelen" -#: src/Common/LinuxKernel.vala:824 +#: src/Common/LinuxKernel.vala:817 msgid "Packages Available" msgstr "Dostupni Paketi" -#: src/Common/LinuxKernel.vala:830 +#: src/Common/LinuxKernel.vala:823 msgid "Packages Installed" msgstr "Instalirani paketi" -#: src/Common/LinuxKernel.vala:858 src/lib/TeeJee.FileSystem.vala:118 +#: src/Common/LinuxKernel.vala:851 src/lib/TeeJee.FileSystem.vala:118 msgid "File not found" msgstr "Datoteka nije pronađena" -#: src/Common/LinuxKernel.vala:948 +#: src/Common/LinuxKernel.vala:942 msgid "Available Kernels" msgstr "Dostupni kerneli" -#: src/Common/LinuxKernel.vala:985 +#: src/Common/LinuxKernel.vala:982 msgid "enabled" msgstr "omogućen" -#: src/Common/LinuxKernel.vala:1009 +#: src/Common/LinuxKernel.vala:1006 msgid "Downloading" msgstr "Učitavanje" -#: src/Common/LinuxKernel.vala:1030 +#: src/Common/LinuxKernel.vala:1026 msgid "is already installed." msgstr "je već instaliran." -#: src/Common/LinuxKernel.vala:1060 +#: src/Common/LinuxKernel.vala:1061 msgid "Uninstalling selected kernels" msgstr "Deinstaliraj određene kernele" -#: src/Common/LinuxKernel.vala:1066 +#: src/Common/LinuxKernel.vala:1067 msgid "requested" msgstr "Zatražio" -#: src/Common/LinuxKernel.vala:1069 +#: src/Common/LinuxKernel.vala:1070 msgid "not uninstalling the currently running kernel" msgstr "ne deinstaliranje trenutno pokrenute kernel" -#: src/Common/LinuxKernel.vala:1085 +#: src/Common/LinuxKernel.vala:1091 msgid "found" msgstr "pronađen" -#: src/Common/LinuxKernel.vala:1088 +#: src/Common/LinuxKernel.vala:1094 msgid "No packages to un-install!" msgstr "Nema paketa za poništavanje instalacije!" -#: src/Common/LinuxKernel.vala:1136 +#: src/Common/LinuxKernel.vala:1138 +#, fuzzy +msgid "is the highest installed version." +msgstr "Deinstaliraj sve osim najnovije instalirane verzije" + +#: src/Common/LinuxKernel.vala:1151 msgid "Could not find running kernel in list" msgstr "Nije moguće pronaći pokrenutu kernel na popisu" -#: src/Common/LinuxKernel.vala:1141 +#: src/Common/LinuxKernel.vala:1156 msgid "Could not find any kernels to uninstall" msgstr "Nema pronađenih kernela za deinstaliranje" -#: src/Common/LinuxKernel.vala:1149 +#: src/Common/LinuxKernel.vala:1164 msgid "The following kernels will be uninstalled" msgstr "Deinstalirat će se sljedeće kerneli" -#: src/Common/LinuxKernel.vala:1153 +#: src/Common/LinuxKernel.vala:1168 msgid "Continue ?" msgstr "Nastavi?" -#: src/Common/LinuxKernel.vala:1175 src/Console/AppConsole.vala:292 +#: src/Common/LinuxKernel.vala:1190 src/Console/AppConsole.vala:292 msgid "Latest update" msgstr "Najnovija nadopuna" -#: src/Common/LinuxKernel.vala:1186 src/Console/AppConsole.vala:299 +#: src/Common/LinuxKernel.vala:1201 src/Console/AppConsole.vala:299 msgid "Latest point update" msgstr "Najnovija ciljana nadopuna" -#: src/Common/LinuxKernel.vala:1194 src/Console/AppConsole.vala:304 +#: src/Common/LinuxKernel.vala:1209 src/Console/AppConsole.vala:304 #: src/Console/AppConsole.vala:320 msgid "No updates found" msgstr "Nema pronađenih nadopuna" -#: src/Common/LinuxKernel.vala:1203 +#: src/Common/LinuxKernel.vala:1218 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Instaliraj kernel inačice %s ? (d/n): " -#: src/Common/Main.vala:376 +#: src/Common/Main.vala:336 msgid "Called from" msgstr "Pozvano od" -#: src/Common/Main.vala:376 +#: src/Common/Main.vala:336 msgid "at logon" msgstr "indításkor" -#: src/Common/Main.vala:377 +#: src/Common/Main.vala:337 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" "Ova se datoteka prepisuje i ponovno izvršava kad god se postavke spremaju u" -#: src/Common/Main.vala:409 +#: src/Common/Main.vala:369 msgid "Notifications are disabled" msgstr "Obavijesti su onemogućene" @@ -215,7 +229,7 @@ msgstr "Instaliraj određeni mainline kernel" msgid "Uninstall specified kernel" msgstr "Deinstaliraj određene kernele" -#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:332 +#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:335 msgid "Uninstall all but the highest installed version" msgstr "Deinstaliraj sve osim najnovije instalirane verzije" @@ -309,7 +323,7 @@ msgstr "Kernel %s je dostupan" msgid "Show" msgstr "Prikaži" -#: src/Console/AppConsole.vala:347 src/Gtk/MainWindow.vala:299 +#: src/Console/AppConsole.vala:347 src/Gtk/MainWindow.vala:302 msgid "Install" msgstr "Instaliraj" @@ -365,35 +379,39 @@ msgstr "Ispiši informacije otklanjanja grešaka" msgid "Show all options" msgstr "Prikaži sve mogućnosti" -#: src/Gtk/MainWindow.vala:111 +#: src/Gtk/MainWindow.vala:124 msgid "Kernel" msgstr "Kernel" -#: src/Gtk/MainWindow.vala:144 +#: src/Gtk/MainWindow.vala:143 +msgid "Lock" +msgstr "" + +#: src/Gtk/MainWindow.vala:160 msgid "Status" msgstr "Stanje" -#: src/Gtk/MainWindow.vala:159 +#: src/Gtk/MainWindow.vala:172 msgid "Notes" msgstr "Bilješke" -#: src/Gtk/MainWindow.vala:309 +#: src/Gtk/MainWindow.vala:312 msgid "Uninstall" msgstr "Deinstaliraj" -#: src/Gtk/MainWindow.vala:320 +#: src/Gtk/MainWindow.vala:323 msgid "Changelog, build status, etc" msgstr "" -#: src/Gtk/MainWindow.vala:331 +#: src/Gtk/MainWindow.vala:334 msgid "Uninstall Old" msgstr "Deinstaliraj staro" -#: src/Gtk/MainWindow.vala:337 +#: src/Gtk/MainWindow.vala:340 msgid "Reload" msgstr "Ponovno učitati" -#: src/Gtk/MainWindow.vala:338 +#: src/Gtk/MainWindow.vala:341 msgid "" "Delete cache and reload all kernel info\n" "\n" @@ -403,15 +421,15 @@ msgstr "" "\n" "EZZEL AZ ÖSSZES FELHASZNÁLÓI JEGYZETET IS TÖRLI" -#: src/Gtk/MainWindow.vala:343 src/Gtk/SettingsDialog.vala:49 +#: src/Gtk/MainWindow.vala:346 src/Gtk/SettingsDialog.vala:49 msgid "Settings" msgstr "Postavke" -#: src/Gtk/MainWindow.vala:348 +#: src/Gtk/MainWindow.vala:351 msgid "About" msgstr "O programu" -#: src/Gtk/MainWindow.vala:353 +#: src/Gtk/MainWindow.vala:356 msgid "Exit" msgstr "Izlaz" @@ -435,8 +453,8 @@ msgstr "Ažuriranje jezgri" msgid "available" msgstr "dostupno" -#: src/Gtk/MainWindow.vala:575 src/Gtk/MainWindow.vala:616 -#: src/Gtk/MainWindow.vala:651 +#: src/Gtk/MainWindow.vala:574 src/Gtk/MainWindow.vala:615 +#: src/Gtk/MainWindow.vala:650 msgid "DONE" msgstr "UČINJENO" diff --git a/po/it.po b/po/it.po index aafc9c12..1109dc1a 100644 --- a/po/it.po +++ b/po/it.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-22 13:54-0400\n" +"POT-Creation-Date: 2023-05-25 07:13-0400\n" "PO-Revision-Date: 2020-08-22 15:35+0100\n" "Last-Translator: Demetrio Mendozzi\n" "Language-Team: Italian\n" @@ -11,161 +11,175 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: src/Common/LinuxKernel.vala:104 +#: src/Common/LinuxKernel.vala:105 msgid "Distribution" msgstr "Distribuzione" -#: src/Common/LinuxKernel.vala:119 +#: src/Common/LinuxKernel.vala:120 msgid "Architecture" msgstr "Architettura" -#: src/Common/LinuxKernel.vala:134 +#: src/Common/LinuxKernel.vala:135 msgid "Running kernel" msgstr "Kernel in esecuzione" -#: src/Common/LinuxKernel.vala:259 +#: src/Common/LinuxKernel.vala:257 msgid "loading cached" msgstr "Caricamento file della cache" -#: src/Common/LinuxKernel.vala:271 +#: src/Common/LinuxKernel.vala:269 msgid "queuing download" msgstr "download in coda" -#: src/Common/LinuxKernel.vala:292 +#: src/Common/LinuxKernel.vala:290 msgid "Fetching individual kernel indexes" msgstr "Recupero dei singoli indici del kernel" -#: src/Common/LinuxKernel.vala:308 +#: src/Common/LinuxKernel.vala:306 msgid "loading downloaded" msgstr "caricamento dei file scaricati" -#: src/Common/LinuxKernel.vala:343 +#: src/Common/LinuxKernel.vala:341 msgid "Updating from" msgstr "Aggiornamento da" -#: src/Common/LinuxKernel.vala:351 +#: src/Common/LinuxKernel.vala:349 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:354 +#: src/Common/LinuxKernel.vala:352 msgid "FAILED" msgstr "FALLITO" -#: src/Common/LinuxKernel.vala:404 +#: src/Common/LinuxKernel.vala:405 msgid "Found installed" msgstr "Trovato installato" -#: src/Common/LinuxKernel.vala:742 src/Gtk/MainWindow.vala:523 +#: src/Common/LinuxKernel.vala:411 +msgid "locked" +msgstr "" + +#: src/Common/LinuxKernel.vala:495 src/Common/LinuxKernel.vala:1031 +#: src/Common/LinuxKernel.vala:1075 src/Common/LinuxKernel.vala:1142 +msgid "is locked." +msgstr "" + +#: src/Common/LinuxKernel.vala:729 src/Gtk/MainWindow.vala:523 #: src/Gtk/MainWindow.vala:536 msgid "Running" msgstr "In esecuzione" -#: src/Common/LinuxKernel.vala:743 +#: src/Common/LinuxKernel.vala:730 msgid "Installed" msgstr "Installato" -#: src/Common/LinuxKernel.vala:744 +#: src/Common/LinuxKernel.vala:731 msgid "Invalid" msgstr "Non valido" -#: src/Common/LinuxKernel.vala:824 +#: src/Common/LinuxKernel.vala:817 msgid "Packages Available" msgstr "Pacchetti disponibili" -#: src/Common/LinuxKernel.vala:830 +#: src/Common/LinuxKernel.vala:823 msgid "Packages Installed" msgstr "Pacchetti installati" -#: src/Common/LinuxKernel.vala:858 src/lib/TeeJee.FileSystem.vala:118 +#: src/Common/LinuxKernel.vala:851 src/lib/TeeJee.FileSystem.vala:118 msgid "File not found" msgstr "File non trovato" -#: src/Common/LinuxKernel.vala:948 +#: src/Common/LinuxKernel.vala:942 msgid "Available Kernels" msgstr "Kernel disponibili" -#: src/Common/LinuxKernel.vala:985 +#: src/Common/LinuxKernel.vala:982 msgid "enabled" msgstr "abilitato" -#: src/Common/LinuxKernel.vala:1009 +#: src/Common/LinuxKernel.vala:1006 msgid "Downloading" msgstr "Scaricamento" -#: src/Common/LinuxKernel.vala:1030 +#: src/Common/LinuxKernel.vala:1026 msgid "is already installed." msgstr "è già installato." -#: src/Common/LinuxKernel.vala:1060 +#: src/Common/LinuxKernel.vala:1061 msgid "Uninstalling selected kernels" msgstr "Disinstalla i kernel specificati" -#: src/Common/LinuxKernel.vala:1066 +#: src/Common/LinuxKernel.vala:1067 msgid "requested" msgstr "richiesto" -#: src/Common/LinuxKernel.vala:1069 +#: src/Common/LinuxKernel.vala:1070 msgid "not uninstalling the currently running kernel" msgstr "non disinstallare il kernel attualmente in esecuzione" -#: src/Common/LinuxKernel.vala:1085 +#: src/Common/LinuxKernel.vala:1091 msgid "found" msgstr "trovato" -#: src/Common/LinuxKernel.vala:1088 +#: src/Common/LinuxKernel.vala:1094 msgid "No packages to un-install!" msgstr "Nessun pacchetto da disinstallare!" -#: src/Common/LinuxKernel.vala:1136 +#: src/Common/LinuxKernel.vala:1138 +#, fuzzy +msgid "is the highest installed version." +msgstr "Disinstallare tutti tranne la versione più recente installata" + +#: src/Common/LinuxKernel.vala:1151 msgid "Could not find running kernel in list" msgstr "Impossibile trovare il kernel in esecuzione nell'elenco" -#: src/Common/LinuxKernel.vala:1141 +#: src/Common/LinuxKernel.vala:1156 msgid "Could not find any kernels to uninstall" msgstr "Impossibile trovare alcun kernel da rimuovere" -#: src/Common/LinuxKernel.vala:1149 +#: src/Common/LinuxKernel.vala:1164 msgid "The following kernels will be uninstalled" msgstr "I seguenti kernel saranno rimossi" -#: src/Common/LinuxKernel.vala:1153 +#: src/Common/LinuxKernel.vala:1168 msgid "Continue ?" msgstr "Continuare ?" -#: src/Common/LinuxKernel.vala:1175 src/Console/AppConsole.vala:292 +#: src/Common/LinuxKernel.vala:1190 src/Console/AppConsole.vala:292 msgid "Latest update" msgstr "Ultimo aggiornamento" -#: src/Common/LinuxKernel.vala:1186 src/Console/AppConsole.vala:299 +#: src/Common/LinuxKernel.vala:1201 src/Console/AppConsole.vala:299 msgid "Latest point update" msgstr "Ultimo aggiornamento del rilascio parziale" -#: src/Common/LinuxKernel.vala:1194 src/Console/AppConsole.vala:304 +#: src/Common/LinuxKernel.vala:1209 src/Console/AppConsole.vala:304 #: src/Console/AppConsole.vala:320 msgid "No updates found" msgstr "Nessun aggiornamento trovato" -#: src/Common/LinuxKernel.vala:1203 +#: src/Common/LinuxKernel.vala:1218 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Installare la versione del kernel %s ? (y/n): " -#: src/Common/Main.vala:376 +#: src/Common/Main.vala:336 msgid "Called from" msgstr "Chiamato da" -#: src/Common/Main.vala:376 +#: src/Common/Main.vala:336 msgid "at logon" msgstr "all'avvio" -#: src/Common/Main.vala:377 +#: src/Common/Main.vala:337 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" "Questo file viene sovrascritto ed eseguito nuovamente ogni volta che vengono " "salvate le impostazioni" -#: src/Common/Main.vala:409 +#: src/Common/Main.vala:369 msgid "Notifications are disabled" msgstr "Le notifiche sono disabilitate" @@ -216,7 +230,7 @@ msgstr "Installa il kernel mainline specificato" msgid "Uninstall specified kernel" msgstr "Disinstalla i kernel specificati" -#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:332 +#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:335 msgid "Uninstall all but the highest installed version" msgstr "Disinstallare tutti tranne la versione più recente installata" @@ -310,7 +324,7 @@ msgstr "Kernel %s Disponibile" msgid "Show" msgstr "Mostra" -#: src/Console/AppConsole.vala:347 src/Gtk/MainWindow.vala:299 +#: src/Console/AppConsole.vala:347 src/Gtk/MainWindow.vala:302 msgid "Install" msgstr "Installa" @@ -366,35 +380,39 @@ msgstr "Stampa le informazioni di debug" msgid "Show all options" msgstr "Mostra tutte le opzioni" -#: src/Gtk/MainWindow.vala:111 +#: src/Gtk/MainWindow.vala:124 msgid "Kernel" msgstr "Kernel" -#: src/Gtk/MainWindow.vala:144 +#: src/Gtk/MainWindow.vala:143 +msgid "Lock" +msgstr "" + +#: src/Gtk/MainWindow.vala:160 msgid "Status" msgstr "Stato" -#: src/Gtk/MainWindow.vala:159 +#: src/Gtk/MainWindow.vala:172 msgid "Notes" msgstr "Note" -#: src/Gtk/MainWindow.vala:309 +#: src/Gtk/MainWindow.vala:312 msgid "Uninstall" msgstr "Disinstalla" -#: src/Gtk/MainWindow.vala:320 +#: src/Gtk/MainWindow.vala:323 msgid "Changelog, build status, etc" msgstr "" -#: src/Gtk/MainWindow.vala:331 +#: src/Gtk/MainWindow.vala:334 msgid "Uninstall Old" msgstr "Disinstalla i vecchi" -#: src/Gtk/MainWindow.vala:337 +#: src/Gtk/MainWindow.vala:340 msgid "Reload" msgstr "Ricarica" -#: src/Gtk/MainWindow.vala:338 +#: src/Gtk/MainWindow.vala:341 msgid "" "Delete cache and reload all kernel info\n" "\n" @@ -404,15 +422,15 @@ msgstr "" "\n" "QUESTO CANCELLERÀ ANCHE TUTTE LE NOTE UTENTE" -#: src/Gtk/MainWindow.vala:343 src/Gtk/SettingsDialog.vala:49 +#: src/Gtk/MainWindow.vala:346 src/Gtk/SettingsDialog.vala:49 msgid "Settings" msgstr "Impostazioni" -#: src/Gtk/MainWindow.vala:348 +#: src/Gtk/MainWindow.vala:351 msgid "About" msgstr "Informazioni" -#: src/Gtk/MainWindow.vala:353 +#: src/Gtk/MainWindow.vala:356 msgid "Exit" msgstr "Chiudi" @@ -436,8 +454,8 @@ msgstr "Aggiornamento dei kernel" msgid "available" msgstr "disponibile" -#: src/Gtk/MainWindow.vala:575 src/Gtk/MainWindow.vala:616 -#: src/Gtk/MainWindow.vala:651 +#: src/Gtk/MainWindow.vala:574 src/Gtk/MainWindow.vala:615 +#: src/Gtk/MainWindow.vala:650 msgid "DONE" msgstr "FATTO" diff --git a/po/ko.po b/po/ko.po index 71357548..38efab1f 100644 --- a/po/ko.po +++ b/po/ko.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-22 13:54-0400\n" +"POT-Creation-Date: 2023-05-25 07:13-0400\n" "PO-Revision-Date: 2022-09-28 11:48+0900\n" "Last-Translator: Kevin Kim \n" "Language-Team: Korean\n" @@ -13,159 +13,173 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Poedit 3.0.1\n" -#: src/Common/LinuxKernel.vala:104 +#: src/Common/LinuxKernel.vala:105 msgid "Distribution" msgstr "배포판" -#: src/Common/LinuxKernel.vala:119 +#: src/Common/LinuxKernel.vala:120 msgid "Architecture" msgstr "아키텍처" -#: src/Common/LinuxKernel.vala:134 +#: src/Common/LinuxKernel.vala:135 msgid "Running kernel" msgstr "현재 실행 중인 커널" -#: src/Common/LinuxKernel.vala:259 +#: src/Common/LinuxKernel.vala:257 msgid "loading cached" msgstr "캐시된 로드 중" -#: src/Common/LinuxKernel.vala:271 +#: src/Common/LinuxKernel.vala:269 msgid "queuing download" msgstr "대기열 다운로드" -#: src/Common/LinuxKernel.vala:292 +#: src/Common/LinuxKernel.vala:290 msgid "Fetching individual kernel indexes" msgstr "개별 커널 인덱스 페치" -#: src/Common/LinuxKernel.vala:308 +#: src/Common/LinuxKernel.vala:306 msgid "loading downloaded" msgstr "다운로드 로드 중" -#: src/Common/LinuxKernel.vala:343 +#: src/Common/LinuxKernel.vala:341 msgid "Updating from" msgstr "다음에서 업데이트" -#: src/Common/LinuxKernel.vala:351 +#: src/Common/LinuxKernel.vala:349 msgid "OK" msgstr "확인" -#: src/Common/LinuxKernel.vala:354 +#: src/Common/LinuxKernel.vala:352 msgid "FAILED" msgstr "실패" -#: src/Common/LinuxKernel.vala:404 +#: src/Common/LinuxKernel.vala:405 msgid "Found installed" msgstr "설치된 것을 찾았습니다" -#: src/Common/LinuxKernel.vala:742 src/Gtk/MainWindow.vala:523 +#: src/Common/LinuxKernel.vala:411 +msgid "locked" +msgstr "" + +#: src/Common/LinuxKernel.vala:495 src/Common/LinuxKernel.vala:1031 +#: src/Common/LinuxKernel.vala:1075 src/Common/LinuxKernel.vala:1142 +msgid "is locked." +msgstr "" + +#: src/Common/LinuxKernel.vala:729 src/Gtk/MainWindow.vala:523 #: src/Gtk/MainWindow.vala:536 msgid "Running" msgstr "구동 중" -#: src/Common/LinuxKernel.vala:743 +#: src/Common/LinuxKernel.vala:730 msgid "Installed" msgstr "설치 됨" -#: src/Common/LinuxKernel.vala:744 +#: src/Common/LinuxKernel.vala:731 msgid "Invalid" msgstr "사용할 수 없음" -#: src/Common/LinuxKernel.vala:824 +#: src/Common/LinuxKernel.vala:817 msgid "Packages Available" msgstr "설치 가능한 패키지" -#: src/Common/LinuxKernel.vala:830 +#: src/Common/LinuxKernel.vala:823 msgid "Packages Installed" msgstr "설치된 패키지" -#: src/Common/LinuxKernel.vala:858 src/lib/TeeJee.FileSystem.vala:118 +#: src/Common/LinuxKernel.vala:851 src/lib/TeeJee.FileSystem.vala:118 msgid "File not found" msgstr "파일을 찾을 수 없습니다" -#: src/Common/LinuxKernel.vala:948 +#: src/Common/LinuxKernel.vala:942 msgid "Available Kernels" msgstr "설치 가능한 커널" -#: src/Common/LinuxKernel.vala:985 +#: src/Common/LinuxKernel.vala:982 msgid "enabled" msgstr "사용" -#: src/Common/LinuxKernel.vala:1009 +#: src/Common/LinuxKernel.vala:1006 msgid "Downloading" msgstr "다운로드" -#: src/Common/LinuxKernel.vala:1030 +#: src/Common/LinuxKernel.vala:1026 msgid "is already installed." msgstr "가 이미 설치되어 있습니다" -#: src/Common/LinuxKernel.vala:1060 +#: src/Common/LinuxKernel.vala:1061 msgid "Uninstalling selected kernels" msgstr "선택한 커널 제거" -#: src/Common/LinuxKernel.vala:1066 +#: src/Common/LinuxKernel.vala:1067 msgid "requested" msgstr "요청" -#: src/Common/LinuxKernel.vala:1069 +#: src/Common/LinuxKernel.vala:1070 msgid "not uninstalling the currently running kernel" msgstr "현재 실행 중인 커널을 제거하지 않음" -#: src/Common/LinuxKernel.vala:1085 +#: src/Common/LinuxKernel.vala:1091 msgid "found" msgstr "설립하다" -#: src/Common/LinuxKernel.vala:1088 +#: src/Common/LinuxKernel.vala:1094 msgid "No packages to un-install!" msgstr "제거 할 패키지가 없습니다!" -#: src/Common/LinuxKernel.vala:1136 +#: src/Common/LinuxKernel.vala:1138 +#, fuzzy +msgid "is the highest installed version." +msgstr "설치된 가장 높은 버전을 제외한 모든 버전을 제거합니다" + +#: src/Common/LinuxKernel.vala:1151 msgid "Could not find running kernel in list" msgstr "현재 실행 중인 커널을 찾을 수 없습니다" -#: src/Common/LinuxKernel.vala:1141 +#: src/Common/LinuxKernel.vala:1156 msgid "Could not find any kernels to uninstall" msgstr "삭제할 커널을 찾을 수 없습니다" -#: src/Common/LinuxKernel.vala:1149 +#: src/Common/LinuxKernel.vala:1164 msgid "The following kernels will be uninstalled" msgstr "풀이" -#: src/Common/LinuxKernel.vala:1153 +#: src/Common/LinuxKernel.vala:1168 msgid "Continue ?" msgstr "계속하시겠습니까?" -#: src/Common/LinuxKernel.vala:1175 src/Console/AppConsole.vala:292 +#: src/Common/LinuxKernel.vala:1190 src/Console/AppConsole.vala:292 msgid "Latest update" msgstr "최신 업데이트" -#: src/Common/LinuxKernel.vala:1186 src/Console/AppConsole.vala:299 +#: src/Common/LinuxKernel.vala:1201 src/Console/AppConsole.vala:299 msgid "Latest point update" msgstr "최신 포인트 업데이트" -#: src/Common/LinuxKernel.vala:1194 src/Console/AppConsole.vala:304 +#: src/Common/LinuxKernel.vala:1209 src/Console/AppConsole.vala:304 #: src/Console/AppConsole.vala:320 msgid "No updates found" msgstr "업데이트를 찾을 수 없습니다" -#: src/Common/LinuxKernel.vala:1203 +#: src/Common/LinuxKernel.vala:1218 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "커널 %s 버전을 설치하시겠습니까? (y/n): " -#: src/Common/Main.vala:376 +#: src/Common/Main.vala:336 msgid "Called from" msgstr "에서 호출" -#: src/Common/Main.vala:376 +#: src/Common/Main.vala:336 msgid "at logon" msgstr "로그온 시" -#: src/Common/Main.vala:377 +#: src/Common/Main.vala:337 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "이 파일은 덮어쓰고 설정이 저장될 때마다 다시 실행됩니다." -#: src/Common/Main.vala:409 +#: src/Common/Main.vala:369 msgid "Notifications are disabled" msgstr "알림이 비활성화 되었습니다" @@ -214,7 +228,7 @@ msgstr "지정한 메인라인 커널 설치" msgid "Uninstall specified kernel" msgstr "지정한 커널 삭제" -#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:332 +#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:335 msgid "Uninstall all but the highest installed version" msgstr "설치된 가장 높은 버전을 제외한 모든 버전을 제거합니다" @@ -308,7 +322,7 @@ msgstr "커널 %s 사용 가능" msgid "Show" msgstr "보이기" -#: src/Console/AppConsole.vala:347 src/Gtk/MainWindow.vala:299 +#: src/Console/AppConsole.vala:347 src/Gtk/MainWindow.vala:302 msgid "Install" msgstr "설치" @@ -364,35 +378,39 @@ msgstr "디버그 정보 출력" msgid "Show all options" msgstr "모든 옵션 보기" -#: src/Gtk/MainWindow.vala:111 +#: src/Gtk/MainWindow.vala:124 msgid "Kernel" msgstr "커널" -#: src/Gtk/MainWindow.vala:144 +#: src/Gtk/MainWindow.vala:143 +msgid "Lock" +msgstr "" + +#: src/Gtk/MainWindow.vala:160 msgid "Status" msgstr "상태" -#: src/Gtk/MainWindow.vala:159 +#: src/Gtk/MainWindow.vala:172 msgid "Notes" msgstr "노트" -#: src/Gtk/MainWindow.vala:309 +#: src/Gtk/MainWindow.vala:312 msgid "Uninstall" msgstr "삭제" -#: src/Gtk/MainWindow.vala:320 +#: src/Gtk/MainWindow.vala:323 msgid "Changelog, build status, etc" msgstr "" -#: src/Gtk/MainWindow.vala:331 +#: src/Gtk/MainWindow.vala:334 msgid "Uninstall Old" msgstr "오래된 커널 제거" -#: src/Gtk/MainWindow.vala:337 +#: src/Gtk/MainWindow.vala:340 msgid "Reload" msgstr "새로고침" -#: src/Gtk/MainWindow.vala:338 +#: src/Gtk/MainWindow.vala:341 msgid "" "Delete cache and reload all kernel info\n" "\n" @@ -402,15 +420,15 @@ msgstr "" "\n" "!! 이렇게 하면 모든 사용자 메모도 삭제됩니다 !!" -#: src/Gtk/MainWindow.vala:343 src/Gtk/SettingsDialog.vala:49 +#: src/Gtk/MainWindow.vala:346 src/Gtk/SettingsDialog.vala:49 msgid "Settings" msgstr "설정" -#: src/Gtk/MainWindow.vala:348 +#: src/Gtk/MainWindow.vala:351 msgid "About" msgstr "정보" -#: src/Gtk/MainWindow.vala:353 +#: src/Gtk/MainWindow.vala:356 msgid "Exit" msgstr "출구" @@ -434,8 +452,8 @@ msgstr "커널 업데이트" msgid "available" msgstr "사용가능" -#: src/Gtk/MainWindow.vala:575 src/Gtk/MainWindow.vala:616 -#: src/Gtk/MainWindow.vala:651 +#: src/Gtk/MainWindow.vala:574 src/Gtk/MainWindow.vala:615 +#: src/Gtk/MainWindow.vala:650 msgid "DONE" msgstr "수행" diff --git a/po/messages.pot b/po/messages.pot index 3633ac45..8c3283ce 100644 --- a/po/messages.pot +++ b/po/messages.pot @@ -6,9 +6,9 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: mainline 1.2.5\n" +"Project-Id-Version: mainline 1.3.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-22 13:54-0400\n" +"POT-Creation-Date: 2023-05-25 07:13-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,159 +17,172 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" -#: src/Common/LinuxKernel.vala:104 +#: src/Common/LinuxKernel.vala:105 msgid "Distribution" msgstr "" -#: src/Common/LinuxKernel.vala:119 +#: src/Common/LinuxKernel.vala:120 msgid "Architecture" msgstr "" -#: src/Common/LinuxKernel.vala:134 +#: src/Common/LinuxKernel.vala:135 msgid "Running kernel" msgstr "" -#: src/Common/LinuxKernel.vala:259 +#: src/Common/LinuxKernel.vala:257 msgid "loading cached" msgstr "" -#: src/Common/LinuxKernel.vala:271 +#: src/Common/LinuxKernel.vala:269 msgid "queuing download" msgstr "" -#: src/Common/LinuxKernel.vala:292 +#: src/Common/LinuxKernel.vala:290 msgid "Fetching individual kernel indexes" msgstr "" -#: src/Common/LinuxKernel.vala:308 +#: src/Common/LinuxKernel.vala:306 msgid "loading downloaded" msgstr "" -#: src/Common/LinuxKernel.vala:343 +#: src/Common/LinuxKernel.vala:341 msgid "Updating from" msgstr "" -#: src/Common/LinuxKernel.vala:351 +#: src/Common/LinuxKernel.vala:349 msgid "OK" msgstr "" -#: src/Common/LinuxKernel.vala:354 +#: src/Common/LinuxKernel.vala:352 msgid "FAILED" msgstr "" -#: src/Common/LinuxKernel.vala:404 +#: src/Common/LinuxKernel.vala:405 msgid "Found installed" msgstr "" -#: src/Common/LinuxKernel.vala:742 src/Gtk/MainWindow.vala:523 +#: src/Common/LinuxKernel.vala:411 +msgid "locked" +msgstr "" + +#: src/Common/LinuxKernel.vala:495 src/Common/LinuxKernel.vala:1031 +#: src/Common/LinuxKernel.vala:1075 src/Common/LinuxKernel.vala:1142 +msgid "is locked." +msgstr "" + +#: src/Common/LinuxKernel.vala:729 src/Gtk/MainWindow.vala:523 #: src/Gtk/MainWindow.vala:536 msgid "Running" msgstr "" -#: src/Common/LinuxKernel.vala:743 +#: src/Common/LinuxKernel.vala:730 msgid "Installed" msgstr "" -#: src/Common/LinuxKernel.vala:744 +#: src/Common/LinuxKernel.vala:731 msgid "Invalid" msgstr "" -#: src/Common/LinuxKernel.vala:824 +#: src/Common/LinuxKernel.vala:817 msgid "Packages Available" msgstr "" -#: src/Common/LinuxKernel.vala:830 +#: src/Common/LinuxKernel.vala:823 msgid "Packages Installed" msgstr "" -#: src/Common/LinuxKernel.vala:858 src/lib/TeeJee.FileSystem.vala:118 +#: src/Common/LinuxKernel.vala:851 src/lib/TeeJee.FileSystem.vala:118 msgid "File not found" msgstr "" -#: src/Common/LinuxKernel.vala:948 +#: src/Common/LinuxKernel.vala:942 msgid "Available Kernels" msgstr "" -#: src/Common/LinuxKernel.vala:985 +#: src/Common/LinuxKernel.vala:982 msgid "enabled" msgstr "" -#: src/Common/LinuxKernel.vala:1009 +#: src/Common/LinuxKernel.vala:1006 msgid "Downloading" msgstr "" -#: src/Common/LinuxKernel.vala:1030 +#: src/Common/LinuxKernel.vala:1026 msgid "is already installed." msgstr "" -#: src/Common/LinuxKernel.vala:1060 +#: src/Common/LinuxKernel.vala:1061 msgid "Uninstalling selected kernels" msgstr "" -#: src/Common/LinuxKernel.vala:1066 +#: src/Common/LinuxKernel.vala:1067 msgid "requested" msgstr "" -#: src/Common/LinuxKernel.vala:1069 +#: src/Common/LinuxKernel.vala:1070 msgid "not uninstalling the currently running kernel" msgstr "" -#: src/Common/LinuxKernel.vala:1085 +#: src/Common/LinuxKernel.vala:1091 msgid "found" msgstr "" -#: src/Common/LinuxKernel.vala:1088 +#: src/Common/LinuxKernel.vala:1094 msgid "No packages to un-install!" msgstr "" -#: src/Common/LinuxKernel.vala:1136 +#: src/Common/LinuxKernel.vala:1138 +msgid "is the highest installed version." +msgstr "" + +#: src/Common/LinuxKernel.vala:1151 msgid "Could not find running kernel in list" msgstr "" -#: src/Common/LinuxKernel.vala:1141 +#: src/Common/LinuxKernel.vala:1156 msgid "Could not find any kernels to uninstall" msgstr "" -#: src/Common/LinuxKernel.vala:1149 +#: src/Common/LinuxKernel.vala:1164 msgid "The following kernels will be uninstalled" msgstr "" -#: src/Common/LinuxKernel.vala:1153 +#: src/Common/LinuxKernel.vala:1168 msgid "Continue ?" msgstr "" -#: src/Common/LinuxKernel.vala:1175 src/Console/AppConsole.vala:292 +#: src/Common/LinuxKernel.vala:1190 src/Console/AppConsole.vala:292 msgid "Latest update" msgstr "" -#: src/Common/LinuxKernel.vala:1186 src/Console/AppConsole.vala:299 +#: src/Common/LinuxKernel.vala:1201 src/Console/AppConsole.vala:299 msgid "Latest point update" msgstr "" -#: src/Common/LinuxKernel.vala:1194 src/Console/AppConsole.vala:304 +#: src/Common/LinuxKernel.vala:1209 src/Console/AppConsole.vala:304 #: src/Console/AppConsole.vala:320 msgid "No updates found" msgstr "" -#: src/Common/LinuxKernel.vala:1203 +#: src/Common/LinuxKernel.vala:1218 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "" -#: src/Common/Main.vala:376 +#: src/Common/Main.vala:336 msgid "Called from" msgstr "" -#: src/Common/Main.vala:376 +#: src/Common/Main.vala:336 msgid "at logon" msgstr "" -#: src/Common/Main.vala:377 +#: src/Common/Main.vala:337 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" -#: src/Common/Main.vala:409 +#: src/Common/Main.vala:369 msgid "Notifications are disabled" msgstr "" @@ -218,7 +231,7 @@ msgstr "" msgid "Uninstall specified kernel" msgstr "" -#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:332 +#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:335 msgid "Uninstall all but the highest installed version" msgstr "" @@ -312,7 +325,7 @@ msgstr "" msgid "Show" msgstr "" -#: src/Console/AppConsole.vala:347 src/Gtk/MainWindow.vala:299 +#: src/Console/AppConsole.vala:347 src/Gtk/MainWindow.vala:302 msgid "Install" msgstr "" @@ -368,50 +381,54 @@ msgstr "" msgid "Show all options" msgstr "" -#: src/Gtk/MainWindow.vala:111 +#: src/Gtk/MainWindow.vala:124 msgid "Kernel" msgstr "" -#: src/Gtk/MainWindow.vala:144 +#: src/Gtk/MainWindow.vala:143 +msgid "Lock" +msgstr "" + +#: src/Gtk/MainWindow.vala:160 msgid "Status" msgstr "" -#: src/Gtk/MainWindow.vala:159 +#: src/Gtk/MainWindow.vala:172 msgid "Notes" msgstr "" -#: src/Gtk/MainWindow.vala:309 +#: src/Gtk/MainWindow.vala:312 msgid "Uninstall" msgstr "" -#: src/Gtk/MainWindow.vala:320 +#: src/Gtk/MainWindow.vala:323 msgid "Changelog, build status, etc" msgstr "" -#: src/Gtk/MainWindow.vala:331 +#: src/Gtk/MainWindow.vala:334 msgid "Uninstall Old" msgstr "" -#: src/Gtk/MainWindow.vala:337 +#: src/Gtk/MainWindow.vala:340 msgid "Reload" msgstr "" -#: src/Gtk/MainWindow.vala:338 +#: src/Gtk/MainWindow.vala:341 msgid "" "Delete cache and reload all kernel info\n" "\n" "THIS WILL ALSO DELETE ALL USER NOTES" msgstr "" -#: src/Gtk/MainWindow.vala:343 src/Gtk/SettingsDialog.vala:49 +#: src/Gtk/MainWindow.vala:346 src/Gtk/SettingsDialog.vala:49 msgid "Settings" msgstr "" -#: src/Gtk/MainWindow.vala:348 +#: src/Gtk/MainWindow.vala:351 msgid "About" msgstr "" -#: src/Gtk/MainWindow.vala:353 +#: src/Gtk/MainWindow.vala:356 msgid "Exit" msgstr "" @@ -435,8 +452,8 @@ msgstr "" msgid "available" msgstr "" -#: src/Gtk/MainWindow.vala:575 src/Gtk/MainWindow.vala:616 -#: src/Gtk/MainWindow.vala:651 +#: src/Gtk/MainWindow.vala:574 src/Gtk/MainWindow.vala:615 +#: src/Gtk/MainWindow.vala:650 msgid "DONE" msgstr "" diff --git a/po/nl.po b/po/nl.po index 1bf3d1ef..35f94879 100644 --- a/po/nl.po +++ b/po/nl.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-22 13:54-0400\n" +"POT-Creation-Date: 2023-05-25 07:13-0400\n" "PO-Revision-Date: 2020-08-23 13:55+0200\n" "Last-Translator: Heimen Stoffels \n" "Language-Team: Dutch (Netherlands)\n" @@ -13,161 +13,175 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Poedit 3.2.2\n" -#: src/Common/LinuxKernel.vala:104 +#: src/Common/LinuxKernel.vala:105 msgid "Distribution" msgstr "Distributie" -#: src/Common/LinuxKernel.vala:119 +#: src/Common/LinuxKernel.vala:120 msgid "Architecture" msgstr "Architectuur" -#: src/Common/LinuxKernel.vala:134 +#: src/Common/LinuxKernel.vala:135 msgid "Running kernel" msgstr "Kernel uitvoeren" -#: src/Common/LinuxKernel.vala:259 +#: src/Common/LinuxKernel.vala:257 msgid "loading cached" msgstr "laden in cache" -#: src/Common/LinuxKernel.vala:271 +#: src/Common/LinuxKernel.vala:269 msgid "queuing download" msgstr "wachtrijen downloaden" -#: src/Common/LinuxKernel.vala:292 +#: src/Common/LinuxKernel.vala:290 msgid "Fetching individual kernel indexes" msgstr "Afzonderlijke kernelindexen ophalen" -#: src/Common/LinuxKernel.vala:308 +#: src/Common/LinuxKernel.vala:306 msgid "loading downloaded" msgstr "laden gedownload" -#: src/Common/LinuxKernel.vala:343 +#: src/Common/LinuxKernel.vala:341 msgid "Updating from" msgstr "Bijwerken van" -#: src/Common/LinuxKernel.vala:351 +#: src/Common/LinuxKernel.vala:349 msgid "OK" msgstr "Oké" -#: src/Common/LinuxKernel.vala:354 +#: src/Common/LinuxKernel.vala:352 msgid "FAILED" msgstr "MISLUKT" -#: src/Common/LinuxKernel.vala:404 +#: src/Common/LinuxKernel.vala:405 msgid "Found installed" msgstr "Geïnstalleerd gevonden" -#: src/Common/LinuxKernel.vala:742 src/Gtk/MainWindow.vala:523 +#: src/Common/LinuxKernel.vala:411 +msgid "locked" +msgstr "" + +#: src/Common/LinuxKernel.vala:495 src/Common/LinuxKernel.vala:1031 +#: src/Common/LinuxKernel.vala:1075 src/Common/LinuxKernel.vala:1142 +msgid "is locked." +msgstr "" + +#: src/Common/LinuxKernel.vala:729 src/Gtk/MainWindow.vala:523 #: src/Gtk/MainWindow.vala:536 msgid "Running" msgstr "In gebruik" -#: src/Common/LinuxKernel.vala:743 +#: src/Common/LinuxKernel.vala:730 msgid "Installed" msgstr "Geïnstalleerd" -#: src/Common/LinuxKernel.vala:744 +#: src/Common/LinuxKernel.vala:731 msgid "Invalid" msgstr "Ongeldig" -#: src/Common/LinuxKernel.vala:824 +#: src/Common/LinuxKernel.vala:817 msgid "Packages Available" msgstr "Beschikbare pakketten" -#: src/Common/LinuxKernel.vala:830 +#: src/Common/LinuxKernel.vala:823 msgid "Packages Installed" msgstr "Geïnstalleerde pakketten" -#: src/Common/LinuxKernel.vala:858 src/lib/TeeJee.FileSystem.vala:118 +#: src/Common/LinuxKernel.vala:851 src/lib/TeeJee.FileSystem.vala:118 msgid "File not found" msgstr "Het bestand is niet gevonden" -#: src/Common/LinuxKernel.vala:948 +#: src/Common/LinuxKernel.vala:942 msgid "Available Kernels" msgstr "Beschikbare kernels" -#: src/Common/LinuxKernel.vala:985 +#: src/Common/LinuxKernel.vala:982 msgid "enabled" msgstr "ingeschakeld" -#: src/Common/LinuxKernel.vala:1009 +#: src/Common/LinuxKernel.vala:1006 msgid "Downloading" msgstr "Downloaden" -#: src/Common/LinuxKernel.vala:1030 +#: src/Common/LinuxKernel.vala:1026 msgid "is already installed." msgstr "is al geïnstalleerd." -#: src/Common/LinuxKernel.vala:1060 +#: src/Common/LinuxKernel.vala:1061 msgid "Uninstalling selected kernels" msgstr "Geselecteerde kernels verwijderen" -#: src/Common/LinuxKernel.vala:1066 +#: src/Common/LinuxKernel.vala:1067 msgid "requested" msgstr "verzocht" -#: src/Common/LinuxKernel.vala:1069 +#: src/Common/LinuxKernel.vala:1070 msgid "not uninstalling the currently running kernel" msgstr "de momenteel actieve kernel niet verwijderen" -#: src/Common/LinuxKernel.vala:1085 +#: src/Common/LinuxKernel.vala:1091 msgid "found" msgstr "gevonden" -#: src/Common/LinuxKernel.vala:1088 +#: src/Common/LinuxKernel.vala:1094 msgid "No packages to un-install!" msgstr "Geen pakketten om te verwijderen!" -#: src/Common/LinuxKernel.vala:1136 +#: src/Common/LinuxKernel.vala:1138 +#, fuzzy +msgid "is the highest installed version." +msgstr "Verwijder alle behalve de hoogst geïnstalleerde versie" + +#: src/Common/LinuxKernel.vala:1151 msgid "Could not find running kernel in list" msgstr "De in gebruik zijnde kernel staat niet op de lijst" -#: src/Common/LinuxKernel.vala:1141 +#: src/Common/LinuxKernel.vala:1156 msgid "Could not find any kernels to uninstall" msgstr "Er zijn geen te verwijderen kernels" -#: src/Common/LinuxKernel.vala:1149 +#: src/Common/LinuxKernel.vala:1164 msgid "The following kernels will be uninstalled" msgstr "De volgende kernels worden verwijderd" -#: src/Common/LinuxKernel.vala:1153 +#: src/Common/LinuxKernel.vala:1168 msgid "Continue ?" msgstr "Wilt u doorgaan?" -#: src/Common/LinuxKernel.vala:1175 src/Console/AppConsole.vala:292 +#: src/Common/LinuxKernel.vala:1190 src/Console/AppConsole.vala:292 msgid "Latest update" msgstr "Recentste update" -#: src/Common/LinuxKernel.vala:1186 src/Console/AppConsole.vala:299 +#: src/Common/LinuxKernel.vala:1201 src/Console/AppConsole.vala:299 msgid "Latest point update" msgstr "Recentste puntupdate" -#: src/Common/LinuxKernel.vala:1194 src/Console/AppConsole.vala:304 +#: src/Common/LinuxKernel.vala:1209 src/Console/AppConsole.vala:304 #: src/Console/AppConsole.vala:320 msgid "No updates found" msgstr "Geen updates gevonden" -#: src/Common/LinuxKernel.vala:1203 +#: src/Common/LinuxKernel.vala:1218 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Wilt u versie %s installeren? (j/n): " -#: src/Common/Main.vala:376 +#: src/Common/Main.vala:336 msgid "Called from" msgstr "Aangeroepen door" -#: src/Common/Main.vala:376 +#: src/Common/Main.vala:336 msgid "at logon" msgstr "bij het opstarten" -#: src/Common/Main.vala:377 +#: src/Common/Main.vala:337 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" "Dit bestand wordt overschreven en opnieuw uitgevoerd wanneer instellingen " "worden opgeslagen in" -#: src/Common/Main.vala:409 +#: src/Common/Main.vala:369 msgid "Notifications are disabled" msgstr "Meldingen zijn uitgeschakeld" @@ -216,7 +230,7 @@ msgstr "Opgegeven mainline-kernel installeren" msgid "Uninstall specified kernel" msgstr "Opgegeven kernel verwijderen" -#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:332 +#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:335 msgid "Uninstall all but the highest installed version" msgstr "Verwijder alle behalve de hoogst geïnstalleerde versie" @@ -311,7 +325,7 @@ msgstr "Kernel %s is beschikbaar" msgid "Show" msgstr "Tonen" -#: src/Console/AppConsole.vala:347 src/Gtk/MainWindow.vala:299 +#: src/Console/AppConsole.vala:347 src/Gtk/MainWindow.vala:302 msgid "Install" msgstr "Installeren" @@ -367,35 +381,39 @@ msgstr "Foutopsporingsinformatie tonen" msgid "Show all options" msgstr "Alle opties tonen" -#: src/Gtk/MainWindow.vala:111 +#: src/Gtk/MainWindow.vala:124 msgid "Kernel" msgstr "Kernel" -#: src/Gtk/MainWindow.vala:144 +#: src/Gtk/MainWindow.vala:143 +msgid "Lock" +msgstr "" + +#: src/Gtk/MainWindow.vala:160 msgid "Status" msgstr "Status" -#: src/Gtk/MainWindow.vala:159 +#: src/Gtk/MainWindow.vala:172 msgid "Notes" msgstr "Notities" -#: src/Gtk/MainWindow.vala:309 +#: src/Gtk/MainWindow.vala:312 msgid "Uninstall" msgstr "Deïnstalleren" -#: src/Gtk/MainWindow.vala:320 +#: src/Gtk/MainWindow.vala:323 msgid "Changelog, build status, etc" msgstr "" -#: src/Gtk/MainWindow.vala:331 +#: src/Gtk/MainWindow.vala:334 msgid "Uninstall Old" msgstr "Verwijder Oude" -#: src/Gtk/MainWindow.vala:337 +#: src/Gtk/MainWindow.vala:340 msgid "Reload" msgstr "Herladen" -#: src/Gtk/MainWindow.vala:338 +#: src/Gtk/MainWindow.vala:341 msgid "" "Delete cache and reload all kernel info\n" "\n" @@ -405,15 +423,15 @@ msgstr "" "\n" "HIERMEE WORDEN OOK ALLE GEBRUIKERSNOTITIES VERWIJDERD" -#: src/Gtk/MainWindow.vala:343 src/Gtk/SettingsDialog.vala:49 +#: src/Gtk/MainWindow.vala:346 src/Gtk/SettingsDialog.vala:49 msgid "Settings" msgstr "Instellingen" -#: src/Gtk/MainWindow.vala:348 +#: src/Gtk/MainWindow.vala:351 msgid "About" msgstr "Over" -#: src/Gtk/MainWindow.vala:353 +#: src/Gtk/MainWindow.vala:356 msgid "Exit" msgstr "Afsluiten" @@ -437,8 +455,8 @@ msgstr "Kernels bijwerken" msgid "available" msgstr "beschikbaar" -#: src/Gtk/MainWindow.vala:575 src/Gtk/MainWindow.vala:616 -#: src/Gtk/MainWindow.vala:651 +#: src/Gtk/MainWindow.vala:574 src/Gtk/MainWindow.vala:615 +#: src/Gtk/MainWindow.vala:650 msgid "DONE" msgstr "AFGEROND" diff --git a/po/pl.po b/po/pl.po index 17af672d..d11b3ae9 100644 --- a/po/pl.po +++ b/po/pl.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-22 13:54-0400\n" +"POT-Creation-Date: 2023-05-25 07:13-0400\n" "PO-Revision-Date: 2023-04-13 07:43+0200\n" "Last-Translator: Matthaiks\n" "Language-Team: Polish\n" @@ -12,161 +12,175 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Poedit 3.2\n" -#: src/Common/LinuxKernel.vala:104 +#: src/Common/LinuxKernel.vala:105 msgid "Distribution" msgstr "Dystrybucja" -#: src/Common/LinuxKernel.vala:119 +#: src/Common/LinuxKernel.vala:120 msgid "Architecture" msgstr "Architektura" -#: src/Common/LinuxKernel.vala:134 +#: src/Common/LinuxKernel.vala:135 msgid "Running kernel" msgstr "Uruchomione jądro" -#: src/Common/LinuxKernel.vala:259 +#: src/Common/LinuxKernel.vala:257 msgid "loading cached" msgstr "ładowanie z pamięci podręcznej" -#: src/Common/LinuxKernel.vala:271 +#: src/Common/LinuxKernel.vala:269 msgid "queuing download" msgstr "pobieranie w kolejce" -#: src/Common/LinuxKernel.vala:292 +#: src/Common/LinuxKernel.vala:290 msgid "Fetching individual kernel indexes" msgstr "Pobieranie indywidualnych indeksów jądra" -#: src/Common/LinuxKernel.vala:308 +#: src/Common/LinuxKernel.vala:306 msgid "loading downloaded" msgstr "ładowanie pobranych" -#: src/Common/LinuxKernel.vala:343 +#: src/Common/LinuxKernel.vala:341 msgid "Updating from" msgstr "Aktualizowanie z" -#: src/Common/LinuxKernel.vala:351 +#: src/Common/LinuxKernel.vala:349 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:354 +#: src/Common/LinuxKernel.vala:352 msgid "FAILED" msgstr "NIEPOWODZENIE" -#: src/Common/LinuxKernel.vala:404 +#: src/Common/LinuxKernel.vala:405 msgid "Found installed" msgstr "Znaleziono zainstalowane" -#: src/Common/LinuxKernel.vala:742 src/Gtk/MainWindow.vala:523 +#: src/Common/LinuxKernel.vala:411 +msgid "locked" +msgstr "" + +#: src/Common/LinuxKernel.vala:495 src/Common/LinuxKernel.vala:1031 +#: src/Common/LinuxKernel.vala:1075 src/Common/LinuxKernel.vala:1142 +msgid "is locked." +msgstr "" + +#: src/Common/LinuxKernel.vala:729 src/Gtk/MainWindow.vala:523 #: src/Gtk/MainWindow.vala:536 msgid "Running" msgstr "Uruchomione" -#: src/Common/LinuxKernel.vala:743 +#: src/Common/LinuxKernel.vala:730 msgid "Installed" msgstr "Zainstalowane" -#: src/Common/LinuxKernel.vala:744 +#: src/Common/LinuxKernel.vala:731 msgid "Invalid" msgstr "Nieprawidłowe" -#: src/Common/LinuxKernel.vala:824 +#: src/Common/LinuxKernel.vala:817 msgid "Packages Available" msgstr "Dostępne pakiety" -#: src/Common/LinuxKernel.vala:830 +#: src/Common/LinuxKernel.vala:823 msgid "Packages Installed" msgstr "Pakiety zainstalowane" -#: src/Common/LinuxKernel.vala:858 src/lib/TeeJee.FileSystem.vala:118 +#: src/Common/LinuxKernel.vala:851 src/lib/TeeJee.FileSystem.vala:118 msgid "File not found" msgstr "Nie odnaleziono pliku" -#: src/Common/LinuxKernel.vala:948 +#: src/Common/LinuxKernel.vala:942 msgid "Available Kernels" msgstr "Dostępne jądra" -#: src/Common/LinuxKernel.vala:985 +#: src/Common/LinuxKernel.vala:982 msgid "enabled" msgstr "włączone" -#: src/Common/LinuxKernel.vala:1009 +#: src/Common/LinuxKernel.vala:1006 msgid "Downloading" msgstr "Pobieranie" -#: src/Common/LinuxKernel.vala:1030 +#: src/Common/LinuxKernel.vala:1026 msgid "is already installed." msgstr "jest już zainstalowane." -#: src/Common/LinuxKernel.vala:1060 +#: src/Common/LinuxKernel.vala:1061 msgid "Uninstalling selected kernels" msgstr "Odinstalowanie wybranych jąder" -#: src/Common/LinuxKernel.vala:1066 +#: src/Common/LinuxKernel.vala:1067 msgid "requested" msgstr "zażądane" -#: src/Common/LinuxKernel.vala:1069 +#: src/Common/LinuxKernel.vala:1070 msgid "not uninstalling the currently running kernel" msgstr "bez odinstalowywania aktualnie uruchomionego jądra" -#: src/Common/LinuxKernel.vala:1085 +#: src/Common/LinuxKernel.vala:1091 msgid "found" msgstr "znalezione" -#: src/Common/LinuxKernel.vala:1088 +#: src/Common/LinuxKernel.vala:1094 msgid "No packages to un-install!" msgstr "Brak pakietów do odinstalowania!" -#: src/Common/LinuxKernel.vala:1136 +#: src/Common/LinuxKernel.vala:1138 +#, fuzzy +msgid "is the highest installed version." +msgstr "Odinstaluj wszystkie oprócz najwyższej zainstalowanej wersji" + +#: src/Common/LinuxKernel.vala:1151 msgid "Could not find running kernel in list" msgstr "Nie można znaleźć uruchomionego jądra na liście" -#: src/Common/LinuxKernel.vala:1141 +#: src/Common/LinuxKernel.vala:1156 msgid "Could not find any kernels to uninstall" msgstr "Nie można znaleźć żadnych jąder do odinstalowania" -#: src/Common/LinuxKernel.vala:1149 +#: src/Common/LinuxKernel.vala:1164 msgid "The following kernels will be uninstalled" msgstr "Następujące jądra zostaną odinstalowane" -#: src/Common/LinuxKernel.vala:1153 +#: src/Common/LinuxKernel.vala:1168 msgid "Continue ?" msgstr "Kontynuować?" -#: src/Common/LinuxKernel.vala:1175 src/Console/AppConsole.vala:292 +#: src/Common/LinuxKernel.vala:1190 src/Console/AppConsole.vala:292 msgid "Latest update" msgstr "Najnowsza aktualizacja" -#: src/Common/LinuxKernel.vala:1186 src/Console/AppConsole.vala:299 +#: src/Common/LinuxKernel.vala:1201 src/Console/AppConsole.vala:299 msgid "Latest point update" msgstr "Najnowsza aktualizacja punktowa" -#: src/Common/LinuxKernel.vala:1194 src/Console/AppConsole.vala:304 +#: src/Common/LinuxKernel.vala:1209 src/Console/AppConsole.vala:304 #: src/Console/AppConsole.vala:320 msgid "No updates found" msgstr "Nie znaleziono aktualizacji" -#: src/Common/LinuxKernel.vala:1203 +#: src/Common/LinuxKernel.vala:1218 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Zainstalować wersję jądra %s? (t/n): " -#: src/Common/Main.vala:376 +#: src/Common/Main.vala:336 msgid "Called from" msgstr "Wywołano z" -#: src/Common/Main.vala:376 +#: src/Common/Main.vala:336 msgid "at logon" msgstr "przy logowaniu" -#: src/Common/Main.vala:377 +#: src/Common/Main.vala:337 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" "Ten plik jest nadpisywany i wykonywany ponownie za każdym razem, gdy " "ustawienia są zapisywane w" -#: src/Common/Main.vala:409 +#: src/Common/Main.vala:369 msgid "Notifications are disabled" msgstr "Powiadomienia są wyłączone" @@ -215,7 +229,7 @@ msgstr "Zainstaluj wybrane jądro" msgid "Uninstall specified kernel" msgstr "Odinstaluj wybrane jądro" -#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:332 +#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:335 msgid "Uninstall all but the highest installed version" msgstr "Odinstaluj wszystkie oprócz najwyższej zainstalowanej wersji" @@ -309,7 +323,7 @@ msgstr "Dostępne %s jądra" msgid "Show" msgstr "Pokaż" -#: src/Console/AppConsole.vala:347 src/Gtk/MainWindow.vala:299 +#: src/Console/AppConsole.vala:347 src/Gtk/MainWindow.vala:302 msgid "Install" msgstr "Zainstaluj" @@ -365,35 +379,39 @@ msgstr "Wypisz informacje debugujące" msgid "Show all options" msgstr "Pokaż wszystkie opcje" -#: src/Gtk/MainWindow.vala:111 +#: src/Gtk/MainWindow.vala:124 msgid "Kernel" msgstr "Jądro" -#: src/Gtk/MainWindow.vala:144 +#: src/Gtk/MainWindow.vala:143 +msgid "Lock" +msgstr "" + +#: src/Gtk/MainWindow.vala:160 msgid "Status" msgstr "Status" -#: src/Gtk/MainWindow.vala:159 +#: src/Gtk/MainWindow.vala:172 msgid "Notes" msgstr "Notatki" -#: src/Gtk/MainWindow.vala:309 +#: src/Gtk/MainWindow.vala:312 msgid "Uninstall" msgstr "Odinstaluj" -#: src/Gtk/MainWindow.vala:320 +#: src/Gtk/MainWindow.vala:323 msgid "Changelog, build status, etc" msgstr "Dziennik zmian, status kompilacji itd." -#: src/Gtk/MainWindow.vala:331 +#: src/Gtk/MainWindow.vala:334 msgid "Uninstall Old" msgstr "Odinstaluj stare" -#: src/Gtk/MainWindow.vala:337 +#: src/Gtk/MainWindow.vala:340 msgid "Reload" msgstr "Wczytaj ponownie" -#: src/Gtk/MainWindow.vala:338 +#: src/Gtk/MainWindow.vala:341 msgid "" "Delete cache and reload all kernel info\n" "\n" @@ -403,15 +421,15 @@ msgstr "" "\n" "SPOWODUJE TO RÓWNIEŻ USUNIĘCIE WSZYSTKICH NOTATEK UŻYTKOWNIKA" -#: src/Gtk/MainWindow.vala:343 src/Gtk/SettingsDialog.vala:49 +#: src/Gtk/MainWindow.vala:346 src/Gtk/SettingsDialog.vala:49 msgid "Settings" msgstr "Ustawienia" -#: src/Gtk/MainWindow.vala:348 +#: src/Gtk/MainWindow.vala:351 msgid "About" msgstr "O programie" -#: src/Gtk/MainWindow.vala:353 +#: src/Gtk/MainWindow.vala:356 msgid "Exit" msgstr "Wyjdź" @@ -435,8 +453,8 @@ msgstr "Aktualizowanie jąder" msgid "available" msgstr "dostępne" -#: src/Gtk/MainWindow.vala:575 src/Gtk/MainWindow.vala:616 -#: src/Gtk/MainWindow.vala:651 +#: src/Gtk/MainWindow.vala:574 src/Gtk/MainWindow.vala:615 +#: src/Gtk/MainWindow.vala:650 msgid "DONE" msgstr "GOTOWE" diff --git a/po/ru.po b/po/ru.po index d9417549..0becc32a 100644 --- a/po/ru.po +++ b/po/ru.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-22 13:54-0400\n" +"POT-Creation-Date: 2023-05-25 07:13-0400\n" "PO-Revision-Date: 2023-04-17 20:16+0300\n" "Last-Translator: Danik2343 \n" "Language-Team: Russian\n" @@ -13,160 +13,174 @@ msgstr "" "X-Launchpad-Export-Date: 2016-12-13 11:48+0000\n" "X-Generator: Poedit 3.0.1\n" -#: src/Common/LinuxKernel.vala:104 +#: src/Common/LinuxKernel.vala:105 msgid "Distribution" msgstr "Дистрибутив" -#: src/Common/LinuxKernel.vala:119 +#: src/Common/LinuxKernel.vala:120 msgid "Architecture" msgstr "Архитектура" -#: src/Common/LinuxKernel.vala:134 +#: src/Common/LinuxKernel.vala:135 msgid "Running kernel" msgstr "Запущенное ядро" -#: src/Common/LinuxKernel.vala:259 +#: src/Common/LinuxKernel.vala:257 msgid "loading cached" msgstr "загрузка в кэше" -#: src/Common/LinuxKernel.vala:271 +#: src/Common/LinuxKernel.vala:269 msgid "queuing download" msgstr "загрузка очередей" -#: src/Common/LinuxKernel.vala:292 +#: src/Common/LinuxKernel.vala:290 msgid "Fetching individual kernel indexes" msgstr "Получение отдельных индексов ядра" -#: src/Common/LinuxKernel.vala:308 +#: src/Common/LinuxKernel.vala:306 msgid "loading downloaded" msgstr "загрузка загруженных" -#: src/Common/LinuxKernel.vala:343 +#: src/Common/LinuxKernel.vala:341 msgid "Updating from" msgstr "Обновление из" -#: src/Common/LinuxKernel.vala:351 +#: src/Common/LinuxKernel.vala:349 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:354 +#: src/Common/LinuxKernel.vala:352 msgid "FAILED" msgstr "НЕУДАВШИЙСЯ" -#: src/Common/LinuxKernel.vala:404 +#: src/Common/LinuxKernel.vala:405 msgid "Found installed" msgstr "Найдено установлененное" -#: src/Common/LinuxKernel.vala:742 src/Gtk/MainWindow.vala:523 +#: src/Common/LinuxKernel.vala:411 +msgid "locked" +msgstr "" + +#: src/Common/LinuxKernel.vala:495 src/Common/LinuxKernel.vala:1031 +#: src/Common/LinuxKernel.vala:1075 src/Common/LinuxKernel.vala:1142 +msgid "is locked." +msgstr "" + +#: src/Common/LinuxKernel.vala:729 src/Gtk/MainWindow.vala:523 #: src/Gtk/MainWindow.vala:536 msgid "Running" msgstr "Используется" -#: src/Common/LinuxKernel.vala:743 +#: src/Common/LinuxKernel.vala:730 msgid "Installed" msgstr "Установлено" -#: src/Common/LinuxKernel.vala:744 +#: src/Common/LinuxKernel.vala:731 msgid "Invalid" msgstr "Негодный" -#: src/Common/LinuxKernel.vala:824 +#: src/Common/LinuxKernel.vala:817 msgid "Packages Available" msgstr "Доступные пакеты" -#: src/Common/LinuxKernel.vala:830 +#: src/Common/LinuxKernel.vala:823 msgid "Packages Installed" msgstr "Установленные пакеты" -#: src/Common/LinuxKernel.vala:858 src/lib/TeeJee.FileSystem.vala:118 +#: src/Common/LinuxKernel.vala:851 src/lib/TeeJee.FileSystem.vala:118 msgid "File not found" msgstr "Файл не найден" -#: src/Common/LinuxKernel.vala:948 +#: src/Common/LinuxKernel.vala:942 msgid "Available Kernels" msgstr "Доступные ядра" -#: src/Common/LinuxKernel.vala:985 +#: src/Common/LinuxKernel.vala:982 msgid "enabled" msgstr "включено" -#: src/Common/LinuxKernel.vala:1009 +#: src/Common/LinuxKernel.vala:1006 msgid "Downloading" msgstr "Загрузки" -#: src/Common/LinuxKernel.vala:1030 +#: src/Common/LinuxKernel.vala:1026 msgid "is already installed." msgstr "уже установлен." -#: src/Common/LinuxKernel.vala:1060 +#: src/Common/LinuxKernel.vala:1061 msgid "Uninstalling selected kernels" msgstr "Удаление выбранных ядер" -#: src/Common/LinuxKernel.vala:1066 +#: src/Common/LinuxKernel.vala:1067 msgid "requested" msgstr "запрошено" -#: src/Common/LinuxKernel.vala:1069 +#: src/Common/LinuxKernel.vala:1070 msgid "not uninstalling the currently running kernel" msgstr "не удаляет текущее работающее ядро" -#: src/Common/LinuxKernel.vala:1085 +#: src/Common/LinuxKernel.vala:1091 msgid "found" msgstr "найдено" -#: src/Common/LinuxKernel.vala:1088 +#: src/Common/LinuxKernel.vala:1094 msgid "No packages to un-install!" msgstr "Нет пакетов для удаления!" -#: src/Common/LinuxKernel.vala:1136 +#: src/Common/LinuxKernel.vala:1138 +#, fuzzy +msgid "is the highest installed version." +msgstr "Удаление всех установленных версий, кроме самой высокой" + +#: src/Common/LinuxKernel.vala:1151 msgid "Could not find running kernel in list" msgstr "Could not find running kernel in list" -#: src/Common/LinuxKernel.vala:1141 +#: src/Common/LinuxKernel.vala:1156 msgid "Could not find any kernels to uninstall" msgstr "Не удалось найти ядра для деинсталляции" -#: src/Common/LinuxKernel.vala:1149 +#: src/Common/LinuxKernel.vala:1164 msgid "The following kernels will be uninstalled" msgstr "Следующие ядра будут удалены" -#: src/Common/LinuxKernel.vala:1153 +#: src/Common/LinuxKernel.vala:1168 msgid "Continue ?" msgstr "Продолжить ?" -#: src/Common/LinuxKernel.vala:1175 src/Console/AppConsole.vala:292 +#: src/Common/LinuxKernel.vala:1190 src/Console/AppConsole.vala:292 msgid "Latest update" msgstr "Последнее обновление" -#: src/Common/LinuxKernel.vala:1186 src/Console/AppConsole.vala:299 +#: src/Common/LinuxKernel.vala:1201 src/Console/AppConsole.vala:299 msgid "Latest point update" msgstr "Последнее обновление пунктов" -#: src/Common/LinuxKernel.vala:1194 src/Console/AppConsole.vala:304 +#: src/Common/LinuxKernel.vala:1209 src/Console/AppConsole.vala:304 #: src/Console/AppConsole.vala:320 msgid "No updates found" msgstr "Обновлений не найдено" -#: src/Common/LinuxKernel.vala:1203 +#: src/Common/LinuxKernel.vala:1218 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Установить версию ядра %s ? (y/n): " -#: src/Common/Main.vala:376 +#: src/Common/Main.vala:336 msgid "Called from" msgstr "Вызван из" -#: src/Common/Main.vala:376 +#: src/Common/Main.vala:336 msgid "at logon" msgstr "при запуске" -#: src/Common/Main.vala:377 +#: src/Common/Main.vala:337 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" "Этот файл перезаписывается и выполняется снова при сохранении настроек в" -#: src/Common/Main.vala:409 +#: src/Common/Main.vala:369 msgid "Notifications are disabled" msgstr "Уведомления отключены" @@ -215,7 +229,7 @@ msgstr "Установить указанную ветку основного я msgid "Uninstall specified kernel" msgstr "Установить указанное ядро" -#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:332 +#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:335 msgid "Uninstall all but the highest installed version" msgstr "Удаление всех установленных версий, кроме самой высокой" @@ -309,7 +323,7 @@ msgstr "Доступно ядро %s" msgid "Show" msgstr "Показать" -#: src/Console/AppConsole.vala:347 src/Gtk/MainWindow.vala:299 +#: src/Console/AppConsole.vala:347 src/Gtk/MainWindow.vala:302 msgid "Install" msgstr "Установить" @@ -365,35 +379,39 @@ msgstr "Распечатать отладочную информацию" msgid "Show all options" msgstr "Показать все параметры" -#: src/Gtk/MainWindow.vala:111 +#: src/Gtk/MainWindow.vala:124 msgid "Kernel" msgstr "Ядро" -#: src/Gtk/MainWindow.vala:144 +#: src/Gtk/MainWindow.vala:143 +msgid "Lock" +msgstr "" + +#: src/Gtk/MainWindow.vala:160 msgid "Status" msgstr "Состояние" -#: src/Gtk/MainWindow.vala:159 +#: src/Gtk/MainWindow.vala:172 msgid "Notes" msgstr "Примечания" -#: src/Gtk/MainWindow.vala:309 +#: src/Gtk/MainWindow.vala:312 msgid "Uninstall" msgstr "Удалить" -#: src/Gtk/MainWindow.vala:320 +#: src/Gtk/MainWindow.vala:323 msgid "Changelog, build status, etc" msgstr "Список изменений, статус сборки и т.д" -#: src/Gtk/MainWindow.vala:331 +#: src/Gtk/MainWindow.vala:334 msgid "Uninstall Old" msgstr "Удалить старые" -#: src/Gtk/MainWindow.vala:337 +#: src/Gtk/MainWindow.vala:340 msgid "Reload" msgstr "Перезагрузить" -#: src/Gtk/MainWindow.vala:338 +#: src/Gtk/MainWindow.vala:341 msgid "" "Delete cache and reload all kernel info\n" "\n" @@ -403,15 +421,15 @@ msgstr "" "\n" "ЭТО ТАКЖЕ ПРИВЕДЕТ К УДАЛЕНИЮ ВСЕХ ЗАМЕТОК ПОЛЬЗОВАТЕЛЯ" -#: src/Gtk/MainWindow.vala:343 src/Gtk/SettingsDialog.vala:49 +#: src/Gtk/MainWindow.vala:346 src/Gtk/SettingsDialog.vala:49 msgid "Settings" msgstr "Настройки" -#: src/Gtk/MainWindow.vala:348 +#: src/Gtk/MainWindow.vala:351 msgid "About" msgstr "О программе" -#: src/Gtk/MainWindow.vala:353 +#: src/Gtk/MainWindow.vala:356 msgid "Exit" msgstr "Выход" @@ -435,8 +453,8 @@ msgstr "Обновление ядер" msgid "available" msgstr "доступно" -#: src/Gtk/MainWindow.vala:575 src/Gtk/MainWindow.vala:616 -#: src/Gtk/MainWindow.vala:651 +#: src/Gtk/MainWindow.vala:574 src/Gtk/MainWindow.vala:615 +#: src/Gtk/MainWindow.vala:650 msgid "DONE" msgstr "ГОТОВО" diff --git a/po/sv.po b/po/sv.po index 73a1355f..782fe8ea 100644 --- a/po/sv.po +++ b/po/sv.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-22 13:54-0400\n" +"POT-Creation-Date: 2023-05-25 07:13-0400\n" "PO-Revision-Date: 2018-01-13 16:56+0100\n" "Last-Translator: Åke Engelbrektson \n" "Language-Team:Swedish\n" @@ -13,159 +13,173 @@ msgstr "" "X-Generator: Poedit 1.8.7.1\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: src/Common/LinuxKernel.vala:104 +#: src/Common/LinuxKernel.vala:105 msgid "Distribution" msgstr "Distribution" -#: src/Common/LinuxKernel.vala:119 +#: src/Common/LinuxKernel.vala:120 msgid "Architecture" msgstr "Arkitektur" -#: src/Common/LinuxKernel.vala:134 +#: src/Common/LinuxKernel.vala:135 msgid "Running kernel" msgstr "Löpande kernel" -#: src/Common/LinuxKernel.vala:259 +#: src/Common/LinuxKernel.vala:257 msgid "loading cached" msgstr "laddar cachelagrat" -#: src/Common/LinuxKernel.vala:271 +#: src/Common/LinuxKernel.vala:269 msgid "queuing download" msgstr "köbildning nedladdning" -#: src/Common/LinuxKernel.vala:292 +#: src/Common/LinuxKernel.vala:290 msgid "Fetching individual kernel indexes" msgstr "Hämta enskilda kernelindex" -#: src/Common/LinuxKernel.vala:308 +#: src/Common/LinuxKernel.vala:306 msgid "loading downloaded" msgstr "laddar nedladdad" -#: src/Common/LinuxKernel.vala:343 +#: src/Common/LinuxKernel.vala:341 msgid "Updating from" msgstr "Uppdatering från" -#: src/Common/LinuxKernel.vala:351 +#: src/Common/LinuxKernel.vala:349 msgid "OK" msgstr "OK" -#: src/Common/LinuxKernel.vala:354 +#: src/Common/LinuxKernel.vala:352 msgid "FAILED" msgstr "MISSLYCKADES" -#: src/Common/LinuxKernel.vala:404 +#: src/Common/LinuxKernel.vala:405 msgid "Found installed" msgstr "Hittade installerat" -#: src/Common/LinuxKernel.vala:742 src/Gtk/MainWindow.vala:523 +#: src/Common/LinuxKernel.vala:411 +msgid "locked" +msgstr "" + +#: src/Common/LinuxKernel.vala:495 src/Common/LinuxKernel.vala:1031 +#: src/Common/LinuxKernel.vala:1075 src/Common/LinuxKernel.vala:1142 +msgid "is locked." +msgstr "" + +#: src/Common/LinuxKernel.vala:729 src/Gtk/MainWindow.vala:523 #: src/Gtk/MainWindow.vala:536 msgid "Running" msgstr "Körs" -#: src/Common/LinuxKernel.vala:743 +#: src/Common/LinuxKernel.vala:730 msgid "Installed" msgstr "Installerad" -#: src/Common/LinuxKernel.vala:744 +#: src/Common/LinuxKernel.vala:731 msgid "Invalid" msgstr "Ogiltig" -#: src/Common/LinuxKernel.vala:824 +#: src/Common/LinuxKernel.vala:817 msgid "Packages Available" msgstr "Tillgängliga paket" -#: src/Common/LinuxKernel.vala:830 +#: src/Common/LinuxKernel.vala:823 msgid "Packages Installed" msgstr "Installerade paket" -#: src/Common/LinuxKernel.vala:858 src/lib/TeeJee.FileSystem.vala:118 +#: src/Common/LinuxKernel.vala:851 src/lib/TeeJee.FileSystem.vala:118 msgid "File not found" msgstr "Filen kan inte hittas" -#: src/Common/LinuxKernel.vala:948 +#: src/Common/LinuxKernel.vala:942 msgid "Available Kernels" msgstr "Tillgängliga kärnor" -#: src/Common/LinuxKernel.vala:985 +#: src/Common/LinuxKernel.vala:982 msgid "enabled" msgstr "aktiverat" -#: src/Common/LinuxKernel.vala:1009 +#: src/Common/LinuxKernel.vala:1006 msgid "Downloading" msgstr "Ladda ner" -#: src/Common/LinuxKernel.vala:1030 +#: src/Common/LinuxKernel.vala:1026 msgid "is already installed." msgstr "är redan installerat." -#: src/Common/LinuxKernel.vala:1060 +#: src/Common/LinuxKernel.vala:1061 msgid "Uninstalling selected kernels" msgstr "Avinstallera valda kärnor" -#: src/Common/LinuxKernel.vala:1066 +#: src/Common/LinuxKernel.vala:1067 msgid "requested" msgstr "begärd" -#: src/Common/LinuxKernel.vala:1069 +#: src/Common/LinuxKernel.vala:1070 msgid "not uninstalling the currently running kernel" msgstr "Avinstallera inte den kärna som körs, för närvarande" -#: src/Common/LinuxKernel.vala:1085 +#: src/Common/LinuxKernel.vala:1091 msgid "found" msgstr "grunda" -#: src/Common/LinuxKernel.vala:1088 +#: src/Common/LinuxKernel.vala:1094 msgid "No packages to un-install!" msgstr "Inga paket att avinstallera!" -#: src/Common/LinuxKernel.vala:1136 +#: src/Common/LinuxKernel.vala:1138 +#, fuzzy +msgid "is the highest installed version." +msgstr "Avinstallera alla utom den högsta installerade versionen" + +#: src/Common/LinuxKernel.vala:1151 msgid "Could not find running kernel in list" msgstr "Det gick inte att hitta kernel som körs i listan" -#: src/Common/LinuxKernel.vala:1141 +#: src/Common/LinuxKernel.vala:1156 msgid "Could not find any kernels to uninstall" msgstr "Det gick inte att hitta några kärnor att avinstallera" -#: src/Common/LinuxKernel.vala:1149 +#: src/Common/LinuxKernel.vala:1164 msgid "The following kernels will be uninstalled" msgstr "Följande kärnor kommer att avinstalleras" -#: src/Common/LinuxKernel.vala:1153 +#: src/Common/LinuxKernel.vala:1168 msgid "Continue ?" msgstr "Fortsätta?" -#: src/Common/LinuxKernel.vala:1175 src/Console/AppConsole.vala:292 +#: src/Common/LinuxKernel.vala:1190 src/Console/AppConsole.vala:292 msgid "Latest update" msgstr "Senaste uppdatering" -#: src/Common/LinuxKernel.vala:1186 src/Console/AppConsole.vala:299 +#: src/Common/LinuxKernel.vala:1201 src/Console/AppConsole.vala:299 msgid "Latest point update" msgstr "Senaste punktuppdatering" -#: src/Common/LinuxKernel.vala:1194 src/Console/AppConsole.vala:304 +#: src/Common/LinuxKernel.vala:1209 src/Console/AppConsole.vala:304 #: src/Console/AppConsole.vala:320 msgid "No updates found" msgstr "Inga uppdateringar hittades" -#: src/Common/LinuxKernel.vala:1203 +#: src/Common/LinuxKernel.vala:1218 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Installera kärnversion %s ? (j/n):" -#: src/Common/Main.vala:376 +#: src/Common/Main.vala:336 msgid "Called from" msgstr "Ringde från" -#: src/Common/Main.vala:376 +#: src/Common/Main.vala:336 msgid "at logon" msgstr "vid start" -#: src/Common/Main.vala:377 +#: src/Common/Main.vala:337 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "Den här filen skrivs över och körs igen när inställningar sparas i" -#: src/Common/Main.vala:409 +#: src/Common/Main.vala:369 msgid "Notifications are disabled" msgstr "Meddelanden är inaktiverade" @@ -214,7 +228,7 @@ msgstr "Installera angiven huvudkärna" msgid "Uninstall specified kernel" msgstr "Avinstallera angiven kärna" -#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:332 +#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:335 msgid "Uninstall all but the highest installed version" msgstr "Avinstallera alla utom den högsta installerade versionen" @@ -308,7 +322,7 @@ msgstr "Kernel %s tillgängliga" msgid "Show" msgstr "Visa" -#: src/Console/AppConsole.vala:347 src/Gtk/MainWindow.vala:299 +#: src/Console/AppConsole.vala:347 src/Gtk/MainWindow.vala:302 msgid "Install" msgstr "Installera" @@ -364,35 +378,39 @@ msgstr "Skriv ut felsökningsinformation" msgid "Show all options" msgstr "Visa alla alternativ" -#: src/Gtk/MainWindow.vala:111 +#: src/Gtk/MainWindow.vala:124 msgid "Kernel" msgstr "Kärna" -#: src/Gtk/MainWindow.vala:144 +#: src/Gtk/MainWindow.vala:143 +msgid "Lock" +msgstr "" + +#: src/Gtk/MainWindow.vala:160 msgid "Status" msgstr "Status" -#: src/Gtk/MainWindow.vala:159 +#: src/Gtk/MainWindow.vala:172 msgid "Notes" msgstr "Anteckningar" -#: src/Gtk/MainWindow.vala:309 +#: src/Gtk/MainWindow.vala:312 msgid "Uninstall" msgstr "Avinstallera" -#: src/Gtk/MainWindow.vala:320 +#: src/Gtk/MainWindow.vala:323 msgid "Changelog, build status, etc" msgstr "" -#: src/Gtk/MainWindow.vala:331 +#: src/Gtk/MainWindow.vala:334 msgid "Uninstall Old" msgstr "Avinstallera Gamla" -#: src/Gtk/MainWindow.vala:337 +#: src/Gtk/MainWindow.vala:340 msgid "Reload" msgstr "Reload" -#: src/Gtk/MainWindow.vala:338 +#: src/Gtk/MainWindow.vala:341 msgid "" "Delete cache and reload all kernel info\n" "\n" @@ -402,15 +420,15 @@ msgstr "" "\n" "DETTA TAR OCKSÅ BORT ALLA ANVÄNDARANTECKNINGAR" -#: src/Gtk/MainWindow.vala:343 src/Gtk/SettingsDialog.vala:49 +#: src/Gtk/MainWindow.vala:346 src/Gtk/SettingsDialog.vala:49 msgid "Settings" msgstr "Inställningar" -#: src/Gtk/MainWindow.vala:348 +#: src/Gtk/MainWindow.vala:351 msgid "About" msgstr "Om" -#: src/Gtk/MainWindow.vala:353 +#: src/Gtk/MainWindow.vala:356 msgid "Exit" msgstr "Utgång" @@ -434,8 +452,8 @@ msgstr "Uppdatera kärnor" msgid "available" msgstr "tillgänglig" -#: src/Gtk/MainWindow.vala:575 src/Gtk/MainWindow.vala:616 -#: src/Gtk/MainWindow.vala:651 +#: src/Gtk/MainWindow.vala:574 src/Gtk/MainWindow.vala:615 +#: src/Gtk/MainWindow.vala:650 msgid "DONE" msgstr "FÄRDIG" diff --git a/po/tr.po b/po/tr.po index 12e1454d..b806586f 100644 --- a/po/tr.po +++ b/po/tr.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-22 13:54-0400\n" +"POT-Creation-Date: 2023-05-25 07:13-0400\n" "PO-Revision-Date: 2022-08-06 16:48+0300\n" "Last-Translator: Sabri Ünal \n" "Language-Team: Turkish\n" @@ -13,161 +13,175 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Poedit 3.1.1\n" -#: src/Common/LinuxKernel.vala:104 +#: src/Common/LinuxKernel.vala:105 msgid "Distribution" msgstr "Dağıtım" -#: src/Common/LinuxKernel.vala:119 +#: src/Common/LinuxKernel.vala:120 msgid "Architecture" msgstr "Sistem mimarisi" -#: src/Common/LinuxKernel.vala:134 +#: src/Common/LinuxKernel.vala:135 msgid "Running kernel" msgstr "Çalışan çekirdek" -#: src/Common/LinuxKernel.vala:259 +#: src/Common/LinuxKernel.vala:257 msgid "loading cached" msgstr "önbelleğe alınmış yükleme" -#: src/Common/LinuxKernel.vala:271 +#: src/Common/LinuxKernel.vala:269 msgid "queuing download" msgstr "kuyruğa alma indirme" -#: src/Common/LinuxKernel.vala:292 +#: src/Common/LinuxKernel.vala:290 msgid "Fetching individual kernel indexes" msgstr "Tek tek çekirdek dizinlerini alma" -#: src/Common/LinuxKernel.vala:308 +#: src/Common/LinuxKernel.vala:306 msgid "loading downloaded" msgstr "indirilen yükleniyor" -#: src/Common/LinuxKernel.vala:343 +#: src/Common/LinuxKernel.vala:341 msgid "Updating from" msgstr "Şuradan güncelleniyor" -#: src/Common/LinuxKernel.vala:351 +#: src/Common/LinuxKernel.vala:349 msgid "OK" msgstr "Tamam" -#: src/Common/LinuxKernel.vala:354 +#: src/Common/LinuxKernel.vala:352 msgid "FAILED" msgstr "BAŞARISIZ" -#: src/Common/LinuxKernel.vala:404 +#: src/Common/LinuxKernel.vala:405 msgid "Found installed" msgstr "Yüklü bulundu" -#: src/Common/LinuxKernel.vala:742 src/Gtk/MainWindow.vala:523 +#: src/Common/LinuxKernel.vala:411 +msgid "locked" +msgstr "" + +#: src/Common/LinuxKernel.vala:495 src/Common/LinuxKernel.vala:1031 +#: src/Common/LinuxKernel.vala:1075 src/Common/LinuxKernel.vala:1142 +msgid "is locked." +msgstr "" + +#: src/Common/LinuxKernel.vala:729 src/Gtk/MainWindow.vala:523 #: src/Gtk/MainWindow.vala:536 msgid "Running" msgstr "Çalışıyor" -#: src/Common/LinuxKernel.vala:743 +#: src/Common/LinuxKernel.vala:730 msgid "Installed" msgstr "Kurulu" -#: src/Common/LinuxKernel.vala:744 +#: src/Common/LinuxKernel.vala:731 msgid "Invalid" msgstr "Geçersiz" -#: src/Common/LinuxKernel.vala:824 +#: src/Common/LinuxKernel.vala:817 msgid "Packages Available" msgstr "Mevcut Paketler" -#: src/Common/LinuxKernel.vala:830 +#: src/Common/LinuxKernel.vala:823 msgid "Packages Installed" msgstr "Kurulu Paketler" -#: src/Common/LinuxKernel.vala:858 src/lib/TeeJee.FileSystem.vala:118 +#: src/Common/LinuxKernel.vala:851 src/lib/TeeJee.FileSystem.vala:118 msgid "File not found" msgstr "Dosya bulunamadı" -#: src/Common/LinuxKernel.vala:948 +#: src/Common/LinuxKernel.vala:942 msgid "Available Kernels" msgstr "Mevcut Çekirdekler" -#: src/Common/LinuxKernel.vala:985 +#: src/Common/LinuxKernel.vala:982 msgid "enabled" msgstr "etkin" -#: src/Common/LinuxKernel.vala:1009 +#: src/Common/LinuxKernel.vala:1006 msgid "Downloading" msgstr "Indiriyor" -#: src/Common/LinuxKernel.vala:1030 +#: src/Common/LinuxKernel.vala:1026 msgid "is already installed." msgstr "zaten yüklü." -#: src/Common/LinuxKernel.vala:1060 +#: src/Common/LinuxKernel.vala:1061 msgid "Uninstalling selected kernels" msgstr "Seçili çekirdekleri kaldırma" -#: src/Common/LinuxKernel.vala:1066 +#: src/Common/LinuxKernel.vala:1067 msgid "requested" msgstr "istenen" -#: src/Common/LinuxKernel.vala:1069 +#: src/Common/LinuxKernel.vala:1070 msgid "not uninstalling the currently running kernel" msgstr "çalışmakta olan çekirdeğin kaldırılmaması" -#: src/Common/LinuxKernel.vala:1085 +#: src/Common/LinuxKernel.vala:1091 msgid "found" msgstr "kurmak" -#: src/Common/LinuxKernel.vala:1088 +#: src/Common/LinuxKernel.vala:1094 msgid "No packages to un-install!" msgstr "Kaldırılacak paket yok!" -#: src/Common/LinuxKernel.vala:1136 +#: src/Common/LinuxKernel.vala:1138 +#, fuzzy +msgid "is the highest installed version." +msgstr "En yüksek yüklü sürüm dışındaki tüm sürümleri kaldırın" + +#: src/Common/LinuxKernel.vala:1151 msgid "Could not find running kernel in list" msgstr "Listede çalışan çekirdek bulunamadı" -#: src/Common/LinuxKernel.vala:1141 +#: src/Common/LinuxKernel.vala:1156 msgid "Could not find any kernels to uninstall" msgstr "Kaldırılacak çekirdek bulunamadı" -#: src/Common/LinuxKernel.vala:1149 +#: src/Common/LinuxKernel.vala:1164 msgid "The following kernels will be uninstalled" msgstr "Aşağıdaki çekirdekler kaldırılacaktır" -#: src/Common/LinuxKernel.vala:1153 +#: src/Common/LinuxKernel.vala:1168 msgid "Continue ?" msgstr "Devam edilsin mi?" -#: src/Common/LinuxKernel.vala:1175 src/Console/AppConsole.vala:292 +#: src/Common/LinuxKernel.vala:1190 src/Console/AppConsole.vala:292 msgid "Latest update" msgstr "Son güncelleme" # Point burada point release anlamında kullanılıyor. Örneğin 5.10.x sayısının en sonundaki x rakamı point release/nokta sürüm oluyor. -#: src/Common/LinuxKernel.vala:1186 src/Console/AppConsole.vala:299 +#: src/Common/LinuxKernel.vala:1201 src/Console/AppConsole.vala:299 msgid "Latest point update" msgstr "Son nokta güncellemesi" -#: src/Common/LinuxKernel.vala:1194 src/Console/AppConsole.vala:304 +#: src/Common/LinuxKernel.vala:1209 src/Console/AppConsole.vala:304 #: src/Console/AppConsole.vala:320 msgid "No updates found" msgstr "Güncelleme bulunamadı" -#: src/Common/LinuxKernel.vala:1203 +#: src/Common/LinuxKernel.vala:1218 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Linux Çekirdek Sürümü %s Kurulsun mu? (e/h): " -#: src/Common/Main.vala:376 +#: src/Common/Main.vala:336 msgid "Called from" msgstr "Çağrı konumu" -#: src/Common/Main.vala:376 +#: src/Common/Main.vala:336 msgid "at logon" msgstr "başlangıçta" -#: src/Common/Main.vala:377 +#: src/Common/Main.vala:337 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" "Bu dosyanın üzerine yazılır ve ayarlar her kaydedildiğinde yeniden yürütülür" -#: src/Common/Main.vala:409 +#: src/Common/Main.vala:369 msgid "Notifications are disabled" msgstr "Bildirimler devre dışı bırakılmış" @@ -216,7 +230,7 @@ msgstr "Belirtilen mainline çekirdeğini kur" msgid "Uninstall specified kernel" msgstr "Belirtilen çekirdeğini kaldır" -#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:332 +#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:335 msgid "Uninstall all but the highest installed version" msgstr "En yüksek yüklü sürüm dışındaki tüm sürümleri kaldırın" @@ -310,7 +324,7 @@ msgstr "Çekirdek %s Kullanılabilir" msgid "Show" msgstr "Göster" -#: src/Console/AppConsole.vala:347 src/Gtk/MainWindow.vala:299 +#: src/Console/AppConsole.vala:347 src/Gtk/MainWindow.vala:302 msgid "Install" msgstr "Kur" @@ -366,35 +380,39 @@ msgstr "Hata ayıklama bilgisini yazdır" msgid "Show all options" msgstr "Tüm seçenekleri göster" -#: src/Gtk/MainWindow.vala:111 +#: src/Gtk/MainWindow.vala:124 msgid "Kernel" msgstr "Çekirdek" -#: src/Gtk/MainWindow.vala:144 +#: src/Gtk/MainWindow.vala:143 +msgid "Lock" +msgstr "" + +#: src/Gtk/MainWindow.vala:160 msgid "Status" msgstr "Durum" -#: src/Gtk/MainWindow.vala:159 +#: src/Gtk/MainWindow.vala:172 msgid "Notes" msgstr "Notlar" -#: src/Gtk/MainWindow.vala:309 +#: src/Gtk/MainWindow.vala:312 msgid "Uninstall" msgstr "Kaldır" -#: src/Gtk/MainWindow.vala:320 +#: src/Gtk/MainWindow.vala:323 msgid "Changelog, build status, etc" msgstr "" -#: src/Gtk/MainWindow.vala:331 +#: src/Gtk/MainWindow.vala:334 msgid "Uninstall Old" msgstr "Eskileri Kaldır" -#: src/Gtk/MainWindow.vala:337 +#: src/Gtk/MainWindow.vala:340 msgid "Reload" msgstr "Arjantin" -#: src/Gtk/MainWindow.vala:338 +#: src/Gtk/MainWindow.vala:341 msgid "" "Delete cache and reload all kernel info\n" "\n" @@ -404,15 +422,15 @@ msgstr "" "\n" "BU AYNI ZAMANDA TÜM KULLANICI NOTLARINI DA SILER" -#: src/Gtk/MainWindow.vala:343 src/Gtk/SettingsDialog.vala:49 +#: src/Gtk/MainWindow.vala:346 src/Gtk/SettingsDialog.vala:49 msgid "Settings" msgstr "Ayarlar" -#: src/Gtk/MainWindow.vala:348 +#: src/Gtk/MainWindow.vala:351 msgid "About" msgstr "Hakkında" -#: src/Gtk/MainWindow.vala:353 +#: src/Gtk/MainWindow.vala:356 msgid "Exit" msgstr "Çıkış" @@ -436,8 +454,8 @@ msgstr "Çekirdekleri güncelleme" msgid "available" msgstr "mevcut" -#: src/Gtk/MainWindow.vala:575 src/Gtk/MainWindow.vala:616 -#: src/Gtk/MainWindow.vala:651 +#: src/Gtk/MainWindow.vala:574 src/Gtk/MainWindow.vala:615 +#: src/Gtk/MainWindow.vala:650 msgid "DONE" msgstr "YAPILMIŞ" diff --git a/po/uk.po b/po/uk.po index ed35fb51..22a56613 100644 --- a/po/uk.po +++ b/po/uk.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-05-22 13:54-0400\n" +"POT-Creation-Date: 2023-05-25 07:13-0400\n" "PO-Revision-Date: 2019-07-25 11:00+0300\n" "Last-Translator: Serhii Golovko \n" "Language-Team: Ukranian\n" @@ -13,160 +13,174 @@ msgstr "" "X-Launchpad-Export-Date: 2016-12-13 11:48+0000\n" "X-Generator: Poedit 2.2.1\n" -#: src/Common/LinuxKernel.vala:104 +#: src/Common/LinuxKernel.vala:105 msgid "Distribution" msgstr "Дистрибутив" -#: src/Common/LinuxKernel.vala:119 +#: src/Common/LinuxKernel.vala:120 msgid "Architecture" msgstr "Системна архитектура" -#: src/Common/LinuxKernel.vala:134 +#: src/Common/LinuxKernel.vala:135 msgid "Running kernel" msgstr "Запуск ядра" -#: src/Common/LinuxKernel.vala:259 +#: src/Common/LinuxKernel.vala:257 msgid "loading cached" msgstr "Завантаження кешованого" -#: src/Common/LinuxKernel.vala:271 +#: src/Common/LinuxKernel.vala:269 msgid "queuing download" msgstr "Черга завантаження" -#: src/Common/LinuxKernel.vala:292 +#: src/Common/LinuxKernel.vala:290 msgid "Fetching individual kernel indexes" msgstr "Вибірка окремих індексів ядра" -#: src/Common/LinuxKernel.vala:308 +#: src/Common/LinuxKernel.vala:306 msgid "loading downloaded" msgstr "Завантаження завантаженого" -#: src/Common/LinuxKernel.vala:343 +#: src/Common/LinuxKernel.vala:341 msgid "Updating from" msgstr "Оновлення з" -#: src/Common/LinuxKernel.vala:351 +#: src/Common/LinuxKernel.vala:349 msgid "OK" msgstr "Добре" -#: src/Common/LinuxKernel.vala:354 +#: src/Common/LinuxKernel.vala:352 msgid "FAILED" msgstr "НЕ ВДАЛОСЯ" -#: src/Common/LinuxKernel.vala:404 +#: src/Common/LinuxKernel.vala:405 msgid "Found installed" msgstr "Знайдено встановленим" -#: src/Common/LinuxKernel.vala:742 src/Gtk/MainWindow.vala:523 +#: src/Common/LinuxKernel.vala:411 +msgid "locked" +msgstr "" + +#: src/Common/LinuxKernel.vala:495 src/Common/LinuxKernel.vala:1031 +#: src/Common/LinuxKernel.vala:1075 src/Common/LinuxKernel.vala:1142 +msgid "is locked." +msgstr "" + +#: src/Common/LinuxKernel.vala:729 src/Gtk/MainWindow.vala:523 #: src/Gtk/MainWindow.vala:536 msgid "Running" msgstr "Використовується" -#: src/Common/LinuxKernel.vala:743 +#: src/Common/LinuxKernel.vala:730 msgid "Installed" msgstr "Встановлено" -#: src/Common/LinuxKernel.vala:744 +#: src/Common/LinuxKernel.vala:731 msgid "Invalid" msgstr "Інвалід" -#: src/Common/LinuxKernel.vala:824 +#: src/Common/LinuxKernel.vala:817 msgid "Packages Available" msgstr "Доступні пакети" -#: src/Common/LinuxKernel.vala:830 +#: src/Common/LinuxKernel.vala:823 msgid "Packages Installed" msgstr "Встановлені пакети" -#: src/Common/LinuxKernel.vala:858 src/lib/TeeJee.FileSystem.vala:118 +#: src/Common/LinuxKernel.vala:851 src/lib/TeeJee.FileSystem.vala:118 msgid "File not found" msgstr "Файл не знайдено" -#: src/Common/LinuxKernel.vala:948 +#: src/Common/LinuxKernel.vala:942 msgid "Available Kernels" msgstr "Доступні ядра" -#: src/Common/LinuxKernel.vala:985 +#: src/Common/LinuxKernel.vala:982 msgid "enabled" msgstr "увімкнено" -#: src/Common/LinuxKernel.vala:1009 +#: src/Common/LinuxKernel.vala:1006 msgid "Downloading" msgstr "Завантаження" -#: src/Common/LinuxKernel.vala:1030 +#: src/Common/LinuxKernel.vala:1026 msgid "is already installed." msgstr "вже встановлено." -#: src/Common/LinuxKernel.vala:1060 +#: src/Common/LinuxKernel.vala:1061 msgid "Uninstalling selected kernels" msgstr "Видаліть конкретні ядра" -#: src/Common/LinuxKernel.vala:1066 +#: src/Common/LinuxKernel.vala:1067 msgid "requested" msgstr "запитуваний" -#: src/Common/LinuxKernel.vala:1069 +#: src/Common/LinuxKernel.vala:1070 msgid "not uninstalling the currently running kernel" msgstr "не видалятиме поточне запущене ядро" -#: src/Common/LinuxKernel.vala:1085 +#: src/Common/LinuxKernel.vala:1091 msgid "found" msgstr "знайдено" -#: src/Common/LinuxKernel.vala:1088 +#: src/Common/LinuxKernel.vala:1094 msgid "No packages to un-install!" msgstr "Немає пакетів для видалення!" -#: src/Common/LinuxKernel.vala:1136 +#: src/Common/LinuxKernel.vala:1138 +#, fuzzy +msgid "is the highest installed version." +msgstr "Видаліть усі, крім найвищої встановленої версії" + +#: src/Common/LinuxKernel.vala:1151 msgid "Could not find running kernel in list" msgstr "Не вдалося знайти запущене ядро у списку!" -#: src/Common/LinuxKernel.vala:1141 +#: src/Common/LinuxKernel.vala:1156 msgid "Could not find any kernels to uninstall" msgstr "Не вдалося знайти жодне ядро для вилучення" -#: src/Common/LinuxKernel.vala:1149 +#: src/Common/LinuxKernel.vala:1164 msgid "The following kernels will be uninstalled" msgstr "Наступні ядра будуть видалені" -#: src/Common/LinuxKernel.vala:1153 +#: src/Common/LinuxKernel.vala:1168 msgid "Continue ?" msgstr "Продовжувати ?" -#: src/Common/LinuxKernel.vala:1175 src/Console/AppConsole.vala:292 +#: src/Common/LinuxKernel.vala:1190 src/Console/AppConsole.vala:292 msgid "Latest update" msgstr "Останнє оновлення" -#: src/Common/LinuxKernel.vala:1186 src/Console/AppConsole.vala:299 +#: src/Common/LinuxKernel.vala:1201 src/Console/AppConsole.vala:299 msgid "Latest point update" msgstr "Остання точка оновлення" -#: src/Common/LinuxKernel.vala:1194 src/Console/AppConsole.vala:304 +#: src/Common/LinuxKernel.vala:1209 src/Console/AppConsole.vala:304 #: src/Console/AppConsole.vala:320 msgid "No updates found" msgstr "Оновлень не знайдено" -#: src/Common/LinuxKernel.vala:1203 +#: src/Common/LinuxKernel.vala:1218 #, c-format msgid "Install Kernel Version %s ? (y/n): " msgstr "Встановити Ядро Версії %s ? (так/ні): " -#: src/Common/Main.vala:376 +#: src/Common/Main.vala:336 msgid "Called from" msgstr "Викликано з" -#: src/Common/Main.vala:376 +#: src/Common/Main.vala:336 msgid "at logon" msgstr "при запуску" -#: src/Common/Main.vala:377 +#: src/Common/Main.vala:337 msgid "" "This file is over-written and executed again whenever settings are saved in" msgstr "" "Цей файл перезаписується та виконується знову під час збереження налаштувань" -#: src/Common/Main.vala:409 +#: src/Common/Main.vala:369 msgid "Notifications are disabled" msgstr "Повідомлення вимкнено" @@ -215,7 +229,7 @@ msgstr "Встановіть конкретне основне ядро" msgid "Uninstall specified kernel" msgstr "Видаліть конкретні ядра" -#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:332 +#: src/Console/AppConsole.vala:59 src/Gtk/MainWindow.vala:335 msgid "Uninstall all but the highest installed version" msgstr "Видаліть усі, крім найвищої встановленої версії" @@ -309,7 +323,7 @@ msgstr "Ядро %s Доступне" msgid "Show" msgstr "Показати" -#: src/Console/AppConsole.vala:347 src/Gtk/MainWindow.vala:299 +#: src/Console/AppConsole.vala:347 src/Gtk/MainWindow.vala:302 msgid "Install" msgstr "Встановити" @@ -365,35 +379,39 @@ msgstr "Роздрукувати зневадження" msgid "Show all options" msgstr "Показати усі параметри" -#: src/Gtk/MainWindow.vala:111 +#: src/Gtk/MainWindow.vala:124 msgid "Kernel" msgstr "Ядро" -#: src/Gtk/MainWindow.vala:144 +#: src/Gtk/MainWindow.vala:143 +msgid "Lock" +msgstr "" + +#: src/Gtk/MainWindow.vala:160 msgid "Status" msgstr "Стан" -#: src/Gtk/MainWindow.vala:159 +#: src/Gtk/MainWindow.vala:172 msgid "Notes" msgstr "Нотатки" -#: src/Gtk/MainWindow.vala:309 +#: src/Gtk/MainWindow.vala:312 msgid "Uninstall" msgstr "Видалити" -#: src/Gtk/MainWindow.vala:320 +#: src/Gtk/MainWindow.vala:323 msgid "Changelog, build status, etc" msgstr "Журнал змін, статус збірки тощо" -#: src/Gtk/MainWindow.vala:331 +#: src/Gtk/MainWindow.vala:334 msgid "Uninstall Old" msgstr "Видалити старе" -#: src/Gtk/MainWindow.vala:337 +#: src/Gtk/MainWindow.vala:340 msgid "Reload" msgstr "Перезавантажити" -#: src/Gtk/MainWindow.vala:338 +#: src/Gtk/MainWindow.vala:341 msgid "" "Delete cache and reload all kernel info\n" "\n" @@ -403,15 +421,15 @@ msgstr "" "\n" "ЦЕ ТАКОЖ ВИДАЛИТЬ УСІ НОТАТКИ КОРИСТУВАЧА" -#: src/Gtk/MainWindow.vala:343 src/Gtk/SettingsDialog.vala:49 +#: src/Gtk/MainWindow.vala:346 src/Gtk/SettingsDialog.vala:49 msgid "Settings" msgstr "Налаштування" -#: src/Gtk/MainWindow.vala:348 +#: src/Gtk/MainWindow.vala:351 msgid "About" msgstr "Про программу" -#: src/Gtk/MainWindow.vala:353 +#: src/Gtk/MainWindow.vala:356 msgid "Exit" msgstr "Вихід" @@ -435,8 +453,8 @@ msgstr "Оновлення ядер" msgid "available" msgstr "доступний" -#: src/Gtk/MainWindow.vala:575 src/Gtk/MainWindow.vala:616 -#: src/Gtk/MainWindow.vala:651 +#: src/Gtk/MainWindow.vala:574 src/Gtk/MainWindow.vala:615 +#: src/Gtk/MainWindow.vala:650 msgid "DONE" msgstr "ГОТОВО" diff --git a/src/Common/LinuxKernel.vala b/src/Common/LinuxKernel.vala index 75a72144..76efc0a7 100644 --- a/src/Common/LinuxKernel.vala +++ b/src/Common/LinuxKernel.vala @@ -9,7 +9,8 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { public string kname = ""; public string kver = ""; public string version_main = ""; - public string version_package = ""; + //public string pname = ""; + public string pver = ""; public string page_uri = ""; public string notes = ""; @@ -26,7 +27,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { public bool is_installed = false; public bool is_running = false; - public bool is_mainline = false; + public bool is_mainline = true; public int ppa_dirs_ver = 0; // 0 = not set, 1 = old single dirs, 2 = new // subdirs public int64 ppa_datetime = -1; // timestamp from the main index @@ -71,7 +72,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { // class initialize public static void initialize() { - new LinuxKernel("", false); // instance must be created before setting static members + new LinuxKernel(""); // instance must be created before setting static members LINUX_DISTRO = check_distribution(); NATIVE_ARCH = check_package_architecture(); @@ -176,8 +177,8 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { } // constructor - public LinuxKernel(string _name, bool _is_mainline) { - vprint("LinuxKernel("+_name+","+_is_mainline.to_string()+")",4); + public LinuxKernel(string _name) { + vprint("LinuxKernel("+_name+")",4); // _name, kname includes the leading "v" and everything after the version number // same as what's in the urls on the kernel ppa index.html @@ -191,9 +192,6 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { // build url page_uri = PPA_URI + _name; - - // override is_mainline from split_version_string() - is_mainline = _is_mainline; } public LinuxKernel.from_version(string _version) { @@ -374,8 +372,9 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { foreach (string line in txt.split("\n")) { if (!rex.match(line, 0, out match)) continue; - var k = new LinuxKernel(match.fetch(1), true); + var k = new LinuxKernel(match.fetch(1)); kernel_list.add(k); + k.is_mainline = true; // "...2018-05-13 20:40 ..." -> 201805132040 // kernel date/time from main index converted to int @@ -398,15 +397,20 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { vprint("check_installed()",2); var pkg_versions = new Gee.ArrayList(); + string msg = ""; foreach (var pkg in Package.dpkg_list) { if (!pkg.pname.has_prefix("linux-image-")) continue; - vprint(_("Found installed")+" : "+pkg.version); + //vprint(_("Found installed")+" : "+pkg.version); + msg = _("Found installed")+" : "+pkg.version; pkg_versions.add(pkg.version); // temp kernel object for current pkg string pkern_name = pkg.version; - var pkern = new LinuxKernel(pkern_name, false); + var pkern = new LinuxKernel(pkern_name); + if (pkern.is_locked) msg += " (" + _("locked") +")"; + vprint(msg); + pkern.is_mainline = false; pkern.is_installed = true; // dpkg_list[] only contains installed packages pkern.set_pkg_list(); // find assosciated packages and fill pkern.pkg_list[] @@ -414,91 +418,54 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { // fill k.pkg_list list of assosciated pkgs bool found = false; foreach (var k in kernel_list) { + //k.is_mainline = true; // HACK FIXME --uninstall-old thinks all kernels are not mainline if (k.is_invalid) continue; - if (k.version_major 0) { - // (k.version_main.contains(kern_running.version_main) || kern_running.version_main.contains(k.version_main)) - if (k.version_package[0 : k.version_package.last_index_of(".")] == RUNNING_KERNEL) { - k.is_running = true; - k.is_installed = true; - kernel_active = k; - break; - } - } - } - - // scan ubuntu kernels - if (kernel_active == null) { - foreach (var k in kernel_list) { - if (k.is_invalid) continue; - if (k.is_mainline) continue; - //if (kern_running.version_main == k.version_main) { // strict - //if (k.version_main.contains(kern_running.version_main) || kern_running.version_main.contains(k.version_main)) { // forgiving - if (k.version_main.has_prefix(kern_running.version_main) || kern_running.version_main.has_prefix(k.version_main)) { // forgiving - k.is_running = true; - k.is_installed = true; - kernel_active = k; - break; - } - } + if (k.pver.length < 1) continue; + if (k.pver[0 : k.pver.last_index_of(".")] != RUNNING_KERNEL) continue; + k.is_running = true; + k.is_installed = true; // redundant but whatever + kernel_active = k; + break; } kernel_list.sort((a,b) => { return a.compare_to(b) * -1; }); - // find the highest & lowest installed versions ---------------------- + // find the highest & lowest installed versions kernel_latest_installed = new LinuxKernel.from_version("0"); kernel_oldest_installed = kernel_latest_installed; foreach(var k in kernel_list) { + //if (k.is_installed && k.is_mainline) { if (k.is_installed) { if (kernel_latest_installed.version_major==0) kernel_latest_installed = k; kernel_oldest_installed = k; @@ -524,6 +491,10 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { vprint(k.version_main,3); if (k.is_invalid) continue; if (k.is_installed) continue; + if (k.is_locked) { + vprint(k.version_main+" "+_("is locked."),2); + continue; + } if (k.is_unstable && App.hide_unstable) continue; if (k.version_major < threshold_major) break; if (k.compare_to(kernel_latest_installed)<=0) break; @@ -565,17 +536,26 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { if (App.previous_majors<0 || App.previous_majors>=kernel_latest_available.version_major) { threshold_major=0; return; } - // start from the running kernel and work down - kernel_oldest_installed = new LinuxKernel.from_version(RUNNING_KERNEL); - + // start from the latest available and work down, ignore ubuntu kernels + kernel_oldest_installed = kernel_latest_installed; foreach (var pkg in Package.dpkg_list) { if (!pkg.pname.has_prefix("linux-image-")) continue; - var candidate = new LinuxKernel(pkg.version, false); - if (candidate.version_major < kernel_oldest_installed.version_major) kernel_oldest_installed = candidate; + var candidate = new LinuxKernel(pkg.version); + + // override the garbage guess made in split_version_string() + candidate.is_mainline = false; + foreach (var k in LinuxKernel.kernel_list) { + if (k.pver == candidate.kname) { + candidate.is_mainline = true; + break; + } + } + + if (candidate.is_mainline && candidate.version_major < kernel_oldest_installed.version_major) kernel_oldest_installed = candidate; } threshold_major = kernel_latest_available.version_major - App.previous_majors; - if (kernel_oldest_installed.version_major < threshold_major) threshold_major = kernel_oldest_installed.version_major; + if (kernel_oldest_installed.is_mainline && kernel_oldest_installed.version_major < threshold_major) threshold_major = kernel_oldest_installed.version_major; vprint("threshold_major %d".printf(threshold_major),2); } @@ -585,6 +565,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { version_minor = 0; version_point = 0; version_rc = -1; + is_mainline = true; // FIXME garbage assumption if (_version_string.length == 0) return; @@ -623,7 +604,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { if ((version_rc<0) && (num.length<3)) version_extra += "."+num; break; } - if (num.length >= 12) is_mainline = true; + if (num.length < 12) is_mainline = false; // FIXME this is garbage } } @@ -736,6 +717,12 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { } } + public bool is_locked { + get { + return file_exists(locked_file); + } + } + public string status { get { return @@ -790,6 +777,12 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { } } + public string locked_file { + owned get { + return data_subdir+"/locked"; + } + } + public string cached_status_file { owned get { return cache_subdir+"/invalid"; @@ -847,7 +840,7 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { deb_header_all = ""; deb_image_extra = ""; deb_modules = ""; - version_package = ""; + pver = ""; deb_url_list.clear(); notes = ""; @@ -917,7 +910,8 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { if (rex_image.match(file_name, 0, out match)) { deb_image = file_name; - version_package = match.fetch(1); + //pname = file_name.split("_")[0]; + pver = match.fetch(1); add = true; } @@ -958,8 +952,11 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { if (k.version_major < threshold_major) continue; } + string lck = " "; + if (k.is_locked) lck = "🔒"; + if (k.version_main.length>nl) nl = k.version_main.length; - vprint("%-*s %-10s %s".printf(nl, k.version_main, k.status, k.notes)); + vprint("%-*s %s %-10s %s".printf(nl, k.version_main, lck, k.status, k.notes)); } } @@ -1025,12 +1022,16 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { // dep: dpkg public bool kinst() { - // check if installed if (is_installed) { vprint(version_main+" "+_("is already installed."),1,stderr); return false; } + if (is_locked) { + vprint(version_main+" "+_("is locked."),1,stderr); + return false; + } + if (!try_ppa()) return false; bool ok = download_packages(); @@ -1070,6 +1071,11 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { continue; } + if (k.is_locked) { + vprint("! "+k.version_main+" "+_("is locked.")); + continue; + } + found = ""; foreach (var pkg_name in k.pkg_list.values) { //vprint(pkg_name,5); @@ -1107,6 +1113,10 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { update_threshold_major(); check_installed(); + //vprint("kernel_oldest_installed: "+kernel_oldest_installed.version_main,2); + //vprint("kernel_latest_installed: "+kernel_latest_installed.version_main,2); + //vprint("kernel_latest_available: "+kernel_latest_available.version_main,2); + var list = new Gee.ArrayList(); var kern_running = new LinuxKernel.from_version(RUNNING_KERNEL); @@ -1121,13 +1131,18 @@ public class LinuxKernel : GLib.Object, Gee.Comparable { if (!k.is_installed) continue; if (k.version_main == kern_running.version_main) { found_running_kernel = true; - //vprint(k.version_main+" == running_kernel -> skip",4); + vprint(k.version_main+" "+"is running.",2); continue; } if (k.compare_to(kernel_latest_installed) >= 0) { - //vprint(k.version_main+" >= "+kernel_latest_installed.version_main+" -> skip ",4); + vprint(k.version_main+" "+_("is the highest installed version."),2); continue; } + if (k.is_locked) { + vprint(k.version_main+" "+_("is locked."),2); + continue; + } + //vprint(k.version_main+" < "+kernel_latest_installed.version_main+" -> delete",4); list.add(k); } diff --git a/src/Common/Main.vala b/src/Common/Main.vala index 99674f69..05db26b2 100644 --- a/src/Common/Main.vala +++ b/src/Common/Main.vala @@ -89,8 +89,6 @@ public class Main : GLib.Object { public string APP_CONFIG_FILE = ""; public string STARTUP_SCRIPT_FILE = ""; public string STARTUP_DESKTOP_FILE = ""; - public string OLD_STARTUP_SCRIPT_FILE = ""; // TRANSITION - public string OLD_STARTUP_DESKTOP_FILE = ""; // TRANSITION public string NOTIFICATION_ID_FILE = ""; public string MAJOR_SEEN_FILE = ""; public string MINOR_SEEN_FILE = ""; @@ -253,17 +251,6 @@ public class Main : GLib.Object { var node = parser.get_root(); var config = node.get_object(); - // TRANSITION PERIOD - // detect old file format - // hide_unstable, notify_major, notify minor - // are all options that have existed since the oldest version of ukuu, - // still exist today, and are not (now) string type. - // They should be present in all config files no matter how old, - // and if they are stored as a string, - // then the config file is in the old format - bool resave = false; - if (config.get_string_member("hide_unstable")==null) { - // new config file format - values stored in native format #if GLIB_JSON_1_6 vprint("glib-json >= 1.6",3); ppa_uri = config.get_string_member_with_default( "ppa_uri", DEFAULT_PPA_URI ); @@ -305,39 +292,13 @@ public class Main : GLib.Object { term_width = json_get_int( config, "term_width", DEFAULT_TERM_WIDTH ); term_height = json_get_int( config, "term_height", DEFAULT_TERM_HEIGHT ); #endif - } else { - // old config file format - all values stored as string - vprint("detetcted old config file format",2); - resave = true; -#if GLIB_JSON_1_6 - vprint("glib-json >= 1.6",3); - connect_timeout_seconds = int.parse( config.get_string_member_with_default( "connect_timeout_seconds", DEFAULT_CONNECT_TIMEOUT_SECONDS .to_string() ) ); - concurrent_downloads = int.parse( config.get_string_member_with_default( "concurrent_downloads", DEFAULT_CONCURRENT_DOWNLOADS .to_string() ) ); - hide_unstable = bool.parse( config.get_string_member_with_default( "hide_unstable", DEFAULT_HIDE_UNSTABLE .to_string() ) ); - previous_majors = int.parse( config.get_string_member_with_default( "previous_majors", DEFAULT_PREVIOUS_MAJORS .to_string() ) ); - notify_major = bool.parse( config.get_string_member_with_default( "notify_major", DEFAULT_NOTIFY_MAJOR .to_string() ) ); - notify_minor = bool.parse( config.get_string_member_with_default( "notify_minor", DEFAULT_NOTIFY_MINOR .to_string() ) ); - notify_interval_unit = int.parse( config.get_string_member_with_default( "notify_interval_unit", DEFAULT_NOTIFY_INTERVAL_UNIT .to_string() ) ); - notify_interval_value = int.parse( config.get_string_member_with_default( "notify_interval_value", DEFAULT_NOTIFY_INTERVAL_VALUE .to_string() ) ); -#else - vprint("glib-json < 1.6",3); - connect_timeout_seconds = int.parse( json_get_string( config, "connect_timeout_seconds", DEFAULT_CONNECT_TIMEOUT_SECONDS .to_string() ) ); - concurrent_downloads = int.parse( json_get_string( config, "concurrent_downloads", DEFAULT_CONCURRENT_DOWNLOADS .to_string() ) ); - hide_unstable = bool.parse( json_get_string( config, "hide_unstable", DEFAULT_HIDE_UNSTABLE .to_string() ) ); - previous_majors = int.parse( json_get_string( config, "previous_majors", DEFAULT_PREVIOUS_MAJORS .to_string() ) ); - notify_major = bool.parse( json_get_string( config, "notify_major", DEFAULT_NOTIFY_MAJOR .to_string() ) ); - notify_minor = bool.parse( json_get_string( config, "notify_minor", DEFAULT_NOTIFY_MINOR .to_string() ) ); - notify_interval_unit = int.parse( json_get_string( config, "notify_interval_unit", DEFAULT_NOTIFY_INTERVAL_UNIT .to_string() ) ); - notify_interval_value = int.parse( json_get_string( config, "notify_interval_value", DEFAULT_NOTIFY_INTERVAL_VALUE .to_string() ) ); -#endif - } // fixups + bool resave = false; if (ppa_uri.length==0) { ppa_uri = DEFAULT_PPA_URI; resave = true; } if (!ppa_uri.has_suffix("/")) { ppa_uri += "/"; resave = true; } LinuxKernel.PPA_URI = ppa_uri; if (connect_timeout_seconds>600) connect_timeout_seconds = 600; // aria2c max allowed - if (resave) save_app_config(); vprint("Loaded config file: "+APP_CONFIG_FILE,2); @@ -368,7 +329,6 @@ public class Main : GLib.Object { } file_delete(STARTUP_SCRIPT_FILE); - file_delete(OLD_STARTUP_SCRIPT_FILE); // TRANSITION // TODO, ID file should not assume single DISPLAY // ID and SEEN should probably be in /var/run ? @@ -439,7 +399,6 @@ public class Main : GLib.Object { file_write(STARTUP_DESKTOP_FILE,s); } else { file_delete(STARTUP_DESKTOP_FILE); - file_delete(OLD_STARTUP_DESKTOP_FILE); // TRANSITION } } diff --git a/src/Gtk/MainWindow.vala b/src/Gtk/MainWindow.vala index 30e05fde..98ead9a3 100644 --- a/src/Gtk/MainWindow.vala +++ b/src/Gtk/MainWindow.vala @@ -35,16 +35,26 @@ public class MainWindow : Gtk.Window { private Gtk.Box vbox_main; private Gtk.Box hbox_list; - private Gtk.TreeView tv; private Gtk.Button btn_install; private Gtk.Button btn_uninstall; private Gtk.Button btn_ppa; private Gtk.Label lbl_info; - // helper members - + private Gtk.TreeView tv; + private Gtk.ListStore tv_model; private Gee.ArrayList selected_kernels; + enum COL { + INDEX, + KERN, + ICON, + VERSION, + LOCKED, + STATUS, + NOTES, + TOOLTIP + } + public MainWindow() { title = BRANDING_LONGNAME; @@ -55,14 +65,15 @@ public class MainWindow : Gtk.Window { // vbox_main vbox_main = new Gtk.Box(Orientation.VERTICAL, 6); vbox_main.margin = 6; - vbox_main.set_size_request(App._window_width,App._window_height); App._window_width = App.window_width; App._window_height = App.window_height; - - add (vbox_main); + add(vbox_main); selected_kernels = new Gee.ArrayList(); + // 0 index 1 kernel 2 kernel-icon 3 version 4 locked 5 status 6 notes 7 tooltip + tv_model = new Gtk.ListStore(8, typeof(int), typeof(LinuxKernel), typeof(Gdk.Pixbuf), typeof(string), typeof(bool), typeof(string), typeof(string), typeof(string)); + tv = new TreeView.with_model(tv_model); init_ui(); @@ -74,6 +85,7 @@ public class MainWindow : Gtk.Window { private void init_ui() { init_treeview(); + init_actions(); init_infobar(); @@ -86,12 +98,11 @@ public class MainWindow : Gtk.Window { private void init_treeview() { // hbox - hbox_list = new Gtk.Box(Orientation.HORIZONTAL, 6); + hbox_list = new Box(Orientation.HORIZONTAL, 6); // hbox.margin = 6; vbox_main.add(hbox_list); // add treeview - tv = new TreeView(); tv.get_selection().mode = SelectionMode.MULTIPLE; tv.headers_visible = true; tv.set_grid_lines(BOTH); @@ -101,102 +112,94 @@ public class MainWindow : Gtk.Window { tv.get_selection().changed.connect(tv_selection_changed); - var scrollwin = new ScrolledWindow(((Gtk.Scrollable) tv).get_hadjustment(), ((Gtk.Scrollable) tv).get_vadjustment()); - scrollwin.set_shadow_type (ShadowType.ETCHED_IN); + var scrollwin = new ScrolledWindow(((Scrollable) tv).get_hadjustment(), ((Scrollable) tv).get_vadjustment()); + scrollwin.set_shadow_type(ShadowType.ETCHED_IN); scrollwin.add (tv); hbox_list.add(scrollwin); - // column + // kernel icon & version + // sort on the index column not on the version column + // special version/rc sorting by compare_to() var col = new TreeViewColumn(); col.title = _("Kernel"); col.resizable = true; - col.set_sort_column_id(0); - col.set_sort_indicator(true); - col.sort_indicator = true; - col.min_width = 200; + col.set_sort_column_id(COL.INDEX); + col.min_width = 180; tv.append_column(col); - - // cell icon - var cell_pix = new Gtk.CellRendererPixbuf (); - cell_pix.xpad = 4; - cell_pix.ypad = 6; - col.pack_start (cell_pix, false); - col.set_cell_data_func (cell_pix, (cell_layout, cell, model, iter)=>{ - Gdk.Pixbuf pix; - model.get (iter, 2, out pix, -1); - return_if_fail(cell as Gtk.CellRendererPixbuf != null); - ((Gtk.CellRendererPixbuf) cell).pixbuf = pix; - }); - - // cell text - var cellText = new CellRendererText(); - cellText.ellipsize = Pango.EllipsizeMode.END; - col.pack_start (cellText, false); - col.set_cell_data_func (cellText, (cell_layout, cell, model, iter)=>{ + var k_version_icon = new CellRendererPixbuf(); + k_version_icon.xpad = 4; + k_version_icon.ypad = 6; + col.pack_start(k_version_icon, false); + col.add_attribute(k_version_icon, "pixbuf", COL.ICON); + + var k_version_text = new CellRendererText(); + k_version_text.ellipsize = Pango.EllipsizeMode.END; + col.pack_start(k_version_text, true); + col.add_attribute(k_version_text, "text", COL.VERSION); + + // locked + col = new TreeViewColumn(); + col.set_sort_column_id(COL.LOCKED); + col.title = _("Lock"); + var k_lock_toggle = new CellRendererToggle(); + col.pack_start(k_lock_toggle, false); + tv.append_column (col); + col.add_attribute(k_lock_toggle,"active", COL.LOCKED); + k_lock_toggle.toggled.connect((toggle,path) => { + TreeIter iter; + tv_model.get_iter_from_string(out iter, path); LinuxKernel k; - model.get (iter, 1, out k, -1); - return_if_fail(cell as Gtk.CellRendererText != null); - ((Gtk.CellRendererText) cell).text = k.version_main; + tv_model.get(iter, COL.KERN, out k, -1); + if (toggle.active) file_delete(k.locked_file); + else file_write(k.locked_file, ""); + tv_model.set(iter, COL.LOCKED, k.is_locked); }); - // column + // status col = new TreeViewColumn(); col.title = _("Status"); - col.set_sort_column_id(3); - col.set_sort_indicator(true); + col.set_sort_column_id(COL.STATUS); col.resizable = true; - col.min_width = 200; + col.min_width = 100; tv.append_column(col); + var k_status_text = new CellRendererText(); + k_status_text.ellipsize = Pango.EllipsizeMode.END; + col.pack_start(k_status_text, true); + col.add_attribute(k_status_text, "text", COL.STATUS); // text from column 4 - // cell text - cellText = new CellRendererText(); - cellText.ellipsize = Pango.EllipsizeMode.END; - col.pack_start(cellText, true); - col.add_attribute(cellText, "text", 3); - - // column + // notes col = new TreeViewColumn(); col.title = _("Notes"); - col.set_sort_column_id(4); + col.set_sort_column_id(COL.NOTES); col.resizable = true; - col.min_width = 200; + col.min_width = 100; tv.append_column(col); - - // cell text - cellText = new CellRendererText(); - cellText.ellipsize = Pango.EllipsizeMode.END; - - col.pack_start (cellText, false); - col.set_cell_data_func(cellText, (cell_layout, cell, model, iter)=>{ - LinuxKernel k; - model.get(iter, 1, out k, -1); - return_if_fail(cell as Gtk.CellRendererText != null); - ((Gtk.CellRendererText) cell).text = k.notes; - }); - - cellText.editable = true; - cellText.edited.connect((path,data) => { - Gtk.TreeIter iter; + var k_notes_text = new CellRendererText(); + k_notes_text.ellipsize = Pango.EllipsizeMode.END; + col.pack_start (k_notes_text, true); + col.add_attribute(k_notes_text, "text", COL.NOTES); // text from column 5 + k_notes_text.editable = true; + k_notes_text.edited.connect((path, data) => { + TreeIter iter; LinuxKernel k; - tv.model.get_iter_from_string(out iter, path); - tv.model.get(iter, 1, out k, -1); - if (k.notes != data._strip()) { - k.notes = data; - if (k.notes.strip()=="") file_delete(k.notes_file); - else file_write(k.notes_file,data); - tv_refresh(); // updates the sort, otherwise not needed + tv_model.get_iter_from_string(out iter, path); + tv_model.get(iter, COL.KERN, out k, -1); + var t_old = k.notes.strip(); + var t_new = data.strip(); + if (t_old != t_new) { + k.notes = t_new; + if (t_new=="") file_delete(k.notes_file); + else file_write(k.notes_file, t_new); + tv_model.set(iter, COL.NOTES, t_new, -1); } }); - tv.set_tooltip_column(5); + // tooltip + tv.set_tooltip_column(COL.TOOLTIP); + } private void tv_row_activated(TreePath path, TreeViewColumn column) { - TreeIter iter; - tv.model.get_iter_from_string(out iter, path.to_string()); - LinuxKernel k; - tv.model.get (iter, 1, out k, -1); - set_button_state(); } @@ -220,8 +223,6 @@ public class MainWindow : Gtk.Window { private void tv_refresh() { vprint("tv_refresh()",2); - // 0 index 1 kernel 2 icon 3 status 4 notes 5 tooltip - var model = new Gtk.ListStore(6, typeof(int), typeof(LinuxKernel), typeof(Gdk.Pixbuf), typeof(string), typeof(string), typeof(string)); Gdk.Pixbuf pix_ubuntu = null; Gdk.Pixbuf pix_mainline = null; @@ -237,39 +238,41 @@ public class MainWindow : Gtk.Window { } int i = -1; + Gdk.Pixbuf p = null; TreeIter iter; + tv_model.clear(); foreach (var k in LinuxKernel.kernel_list) { - if (k.is_invalid) continue; - if (!k.is_installed) { - if (k.is_unstable && App.hide_unstable) continue; - if (k.version_major < LinuxKernel.threshold_major) continue; + + if (!k.is_installed) { // don't hide anything that's installed + if (k.is_invalid) continue; // hide invalid + if (k.is_unstable && App.hide_unstable) continue; // hide unstable if settings say to + if (k.version_major < LinuxKernel.threshold_major) continue; // hide versions older than settings threshold } - // add row - model.append(out iter); - model.set(iter, 0, ++i); // for sorting the "Kernel" column - model.set(iter, 1, k); + tv_model.append(out iter); // add row - if (!k.is_invalid) { - if (k.is_mainline) { - if (k.is_unstable) model.set(iter, 2, pix_mainline_rc); - else model.set (iter, 2, pix_mainline); - } else model.set(iter, 2, pix_ubuntu); - } + tv_model.set(iter, COL.INDEX, ++i); // saves the special version sorting from compare_to() - model.set(iter, 3, k.status); + tv_model.set(iter, COL.KERN, k); - model.set(iter, 4, k.notes); + p = pix_mainline; + if (k.is_unstable) p = pix_mainline_rc; + if (!k.is_mainline) p = pix_ubuntu; + tv_model.set(iter, COL.ICON, p); - model.set(iter, 5, k.tooltip_text()); - } + tv_model.set(iter, COL.VERSION, k.version_main); + + tv_model.set(iter, COL.LOCKED, k.is_locked); + + tv_model.set(iter, COL.STATUS, k.status); + + tv_model.set(iter, COL.NOTES, k.notes); - tv.set_model(model); - tv.columns_autosize(); + tv_model.set(iter, COL.TOOLTIP, k.tooltip_text()); + } selected_kernels.clear(); set_button_state(); - set_infobar(); } @@ -280,8 +283,8 @@ public class MainWindow : Gtk.Window { btn_ppa.sensitive = true; } else { // only allow selecting a single kernel for install/uninstall, examine the installed state - btn_install.sensitive = (selected_kernels.size == 1) && !selected_kernels[0].is_installed; - btn_uninstall.sensitive = selected_kernels[0].is_installed && !selected_kernels[0].is_running; + btn_install.sensitive = selected_kernels.size==1 && !selected_kernels[0].is_installed && !selected_kernels[0].is_locked; + btn_uninstall.sensitive = selected_kernels[0].is_installed && !selected_kernels[0].is_running && !selected_kernels[0].is_locked ; btn_ppa.sensitive = (selected_kernels.size == 1) && selected_kernels[0].is_mainline; // allow selecting multiple kernels for install/uninstall, but IF only a single selected, examine the installed state // (the rest of the app does not have loops to process a list yet) @@ -367,10 +370,7 @@ public class MainWindow : Gtk.Window { if ( (_previous_majors != App.previous_majors) || (_hide_unstable != App.hide_unstable) - ) { - //reload_cache(); - update_cache(); - } + ) update_cache(); } private void do_exit () { @@ -543,7 +543,6 @@ public class MainWindow : Gtk.Window { // try even if we think the net is down // so the button responds instead of looking broken //if (!ppa_up()) return; - var term = new TerminalWindow.with_parent(this, false, true); string t_dir = create_tmp_dir(); string t_file = get_temp_file_path(t_dir)+".sh"; From b1b1aad5ebebca22db5dc294b765797b72fdc103 Mon Sep 17 00:00:00 2001 From: Matthaiks <3577122+Matthaiks@users.noreply.github.com> Date: Thu, 25 May 2023 13:37:46 +0200 Subject: [PATCH 324/567] Update Polish translation --- po/pl.po | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/po/pl.po b/po/pl.po index d11b3ae9..34bb4792 100644 --- a/po/pl.po +++ b/po/pl.po @@ -3,14 +3,14 @@ msgstr "" "Project-Id-Version: mainline\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-05-25 07:13-0400\n" -"PO-Revision-Date: 2023-04-13 07:43+0200\n" +"PO-Revision-Date: 2023-05-25 13:37+0200\n" "Last-Translator: Matthaiks\n" "Language-Team: Polish\n" "Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Poedit 3.2\n" +"X-Generator: Poedit 3.3.1\n" #: src/Common/LinuxKernel.vala:105 msgid "Distribution" @@ -58,12 +58,12 @@ msgstr "Znaleziono zainstalowane" #: src/Common/LinuxKernel.vala:411 msgid "locked" -msgstr "" +msgstr "zablokowane" #: src/Common/LinuxKernel.vala:495 src/Common/LinuxKernel.vala:1031 #: src/Common/LinuxKernel.vala:1075 src/Common/LinuxKernel.vala:1142 msgid "is locked." -msgstr "" +msgstr "jest zablokowane." #: src/Common/LinuxKernel.vala:729 src/Gtk/MainWindow.vala:523 #: src/Gtk/MainWindow.vala:536 @@ -127,9 +127,8 @@ msgid "No packages to un-install!" msgstr "Brak pakietów do odinstalowania!" #: src/Common/LinuxKernel.vala:1138 -#, fuzzy msgid "is the highest installed version." -msgstr "Odinstaluj wszystkie oprócz najwyższej zainstalowanej wersji" +msgstr "to najwyższa zainstalowana wersja." #: src/Common/LinuxKernel.vala:1151 msgid "Could not find running kernel in list" @@ -385,7 +384,7 @@ msgstr "Jądro" #: src/Gtk/MainWindow.vala:143 msgid "Lock" -msgstr "" +msgstr "Zablokuj" #: src/Gtk/MainWindow.vala:160 msgid "Status" From eef1d78e532fd4ff1169e17b23ef2f6d7b16be7d Mon Sep 17 00:00:00 2001 From: "Brian K. White" Date: Thu, 25 May 2023 08:37:32 -0400 Subject: [PATCH 325/567] readme pic --- main_window.png | Bin 141151 -> 128579 bytes 1 file changed, 0 insertions(+), 0 deletions(-) diff --git a/main_window.png b/main_window.png index de3fdc3f5af825f5e4ced3803c979817399e82d8..d1ed08b5ac9d7a67e84634786f0e3f00dd86a799 100644 GIT binary patch literal 128579 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